Bug 1196925 - Remove the non-existing relocatable store buffer counts from about:memory; r=njn

This commit is contained in:
Terrence Cole 2015-08-26 14:51:43 -07:00
Родитель e391ea26d3
Коммит 4955cf8ac2
2 изменённых файлов: 0 добавлений и 10 удалений

Просмотреть файл

@ -283,8 +283,6 @@ struct GCSizes
macro(_, MallocHeap, storeBufferCells) \
macro(_, MallocHeap, storeBufferSlots) \
macro(_, MallocHeap, storeBufferWholeCells) \
macro(_, MallocHeap, storeBufferRelocVals) \
macro(_, MallocHeap, storeBufferRelocCells) \
macro(_, MallocHeap, storeBufferGenerics)
GCSizes()

Просмотреть файл

@ -2507,14 +2507,6 @@ ReportJSRuntimeExplicitTreeStats(const JS::RuntimeStats& rtStats,
KIND_HEAP, rtStats.runtime.gc.storeBufferWholeCells,
"Whole cells in the store buffer.");
RREPORT_BYTES(rtPath + NS_LITERAL_CSTRING("runtime/gc/store-buffer/reloc-vals"),
KIND_HEAP, rtStats.runtime.gc.storeBufferRelocVals,
"Relocatable values in the store buffer.");
RREPORT_BYTES(rtPath + NS_LITERAL_CSTRING("runtime/gc/store-buffer/reloc-cells"),
KIND_HEAP, rtStats.runtime.gc.storeBufferRelocCells,
"Relocatable cells in the store buffer.");
RREPORT_BYTES(rtPath + NS_LITERAL_CSTRING("runtime/gc/store-buffer/generics"),
KIND_HEAP, rtStats.runtime.gc.storeBufferGenerics,
"Generic things in the store buffer.");