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

--HG--
extra : rebase_source : 7b704f68283b7921225e43ec607315f283556817
This commit is contained in:
Terrence Cole 2015-08-26 14:51:43 -07:00
Родитель 899ec10be3
Коммит 23db9f8879
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()

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

@ -2511,14 +2511,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.");