mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
b772cdc96b
--HG-- extra : rebase_source : 6f12d47ca8cedc96b0dd0477ca4f71de08e47181
577 lines
18 KiB
C++
577 lines
18 KiB
C++
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
* vim: set ts=8 sts=4 et sw=4 tw=99:
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
#ifndef js_MemoryMetrics_h
|
|
#define js_MemoryMetrics_h
|
|
|
|
// These declarations are highly likely to change in the future. Depend on them
|
|
// at your own risk.
|
|
|
|
#include "mozilla/MemoryReporting.h"
|
|
#include "mozilla/NullPtr.h"
|
|
#include "mozilla/PodOperations.h"
|
|
|
|
#include <string.h>
|
|
|
|
#include "jsalloc.h"
|
|
#include "jspubtd.h"
|
|
|
|
#include "js/HashTable.h"
|
|
#include "js/Utility.h"
|
|
#include "js/Vector.h"
|
|
|
|
class nsISupports; // Needed for ObjectPrivateVisitor.
|
|
|
|
namespace JS {
|
|
|
|
struct TabSizes
|
|
{
|
|
enum Kind {
|
|
Objects,
|
|
Strings,
|
|
Private,
|
|
Other
|
|
};
|
|
|
|
TabSizes() { mozilla::PodZero(this); }
|
|
|
|
void add(Kind kind, size_t n) {
|
|
switch (kind) {
|
|
case Objects: objects += n; break;
|
|
case Strings: strings += n; break;
|
|
case Private: private_ += n; break;
|
|
case Other: other += n; break;
|
|
default: MOZ_CRASH("bad TabSizes kind");
|
|
}
|
|
}
|
|
|
|
size_t objects;
|
|
size_t strings;
|
|
size_t private_;
|
|
size_t other;
|
|
};
|
|
|
|
} // namespace JS
|
|
|
|
namespace js {
|
|
|
|
// In memory reporting, we have concept of "sundries", line items which are too
|
|
// small to be worth reporting individually. Under some circumstances, a memory
|
|
// reporter gets tossed into the sundries bucket if it's smaller than
|
|
// MemoryReportingSundriesThreshold() bytes.
|
|
//
|
|
// We need to define this value here, rather than in the code which actually
|
|
// generates the memory reports, because NotableStringInfo uses this value.
|
|
JS_FRIEND_API(size_t) MemoryReportingSundriesThreshold();
|
|
|
|
// This hash policy avoids flattening ropes (which perturbs the site being
|
|
// measured and requires a JSContext) at the expense of doing a FULL ROPE COPY
|
|
// on every hash and match! Beware.
|
|
struct InefficientNonFlatteningStringHashPolicy
|
|
{
|
|
typedef JSString *Lookup;
|
|
static HashNumber hash(const Lookup &l);
|
|
static bool match(const JSString *const &k, const Lookup &l);
|
|
};
|
|
|
|
// This file features many classes with numerous size_t fields, and each such
|
|
// class has one or more methods that need to operate on all of these fields.
|
|
// Writing these individually is error-prone -- it's easy to add a new field
|
|
// without updating all the required methods. So we define a single macro list
|
|
// in each class to name the fields (and notable characteristics of them), and
|
|
// then use the following macros to transform those lists into the required
|
|
// methods.
|
|
//
|
|
// In some classes, one or more of the macro arguments aren't used. We use '_'
|
|
// for those.
|
|
//
|
|
#define DECL_SIZE(kind, gc, mSize) size_t mSize;
|
|
#define ZERO_SIZE(kind, gc, mSize) mSize(0),
|
|
#define COPY_OTHER_SIZE(kind, gc, mSize) mSize(other.mSize),
|
|
#define ADD_OTHER_SIZE(kind, gc, mSize) mSize += other.mSize;
|
|
#define ADD_SIZE_TO_N_IF_LIVE_GC_THING(kind, gc, mSize) n += (js::gc) ? mSize : 0;
|
|
#define ADD_TO_TAB_SIZES(kind, gc, mSize) sizes->add(JS::TabSizes::kind, mSize);
|
|
|
|
// Used to annotate which size_t fields measure live GC things and which don't.
|
|
enum {
|
|
NotLiveGCThing = false,
|
|
IsLiveGCThing = true
|
|
};
|
|
|
|
struct ZoneStatsPod
|
|
{
|
|
#define FOR_EACH_SIZE(macro) \
|
|
macro(Other, NotLiveGCThing, gcHeapArenaAdmin) \
|
|
macro(Other, NotLiveGCThing, unusedGCThings) \
|
|
macro(Other, IsLiveGCThing, lazyScriptsGCHeap) \
|
|
macro(Other, NotLiveGCThing, lazyScriptsMallocHeap) \
|
|
macro(Other, IsLiveGCThing, jitCodesGCHeap) \
|
|
macro(Other, IsLiveGCThing, typeObjectsGCHeap) \
|
|
macro(Other, NotLiveGCThing, typeObjectsMallocHeap) \
|
|
macro(Other, NotLiveGCThing, typePool) \
|
|
macro(Strings, IsLiveGCThing, stringsShortGCHeap) \
|
|
macro(Strings, IsLiveGCThing, stringsNormalGCHeap) \
|
|
macro(Strings, NotLiveGCThing, stringsNormalMallocHeap)
|
|
|
|
ZoneStatsPod()
|
|
: FOR_EACH_SIZE(ZERO_SIZE)
|
|
extra()
|
|
{}
|
|
|
|
void add(const ZoneStatsPod &other) {
|
|
FOR_EACH_SIZE(ADD_OTHER_SIZE)
|
|
// Do nothing with |extra|.
|
|
}
|
|
|
|
size_t sizeOfLiveGCThings() const {
|
|
size_t n = 0;
|
|
FOR_EACH_SIZE(ADD_SIZE_TO_N_IF_LIVE_GC_THING)
|
|
// Do nothing with |extra|.
|
|
return n;
|
|
}
|
|
|
|
void addToTabSizes(JS::TabSizes *sizes) const {
|
|
FOR_EACH_SIZE(ADD_TO_TAB_SIZES)
|
|
// Do nothing with |extra|.
|
|
}
|
|
|
|
FOR_EACH_SIZE(DECL_SIZE)
|
|
void *extra; // This field can be used by embedders.
|
|
|
|
#undef FOR_EACH_SIZE
|
|
};
|
|
|
|
} // namespace js
|
|
|
|
namespace JS {
|
|
|
|
// Data for tracking memory usage of things hanging off objects.
|
|
struct ObjectsExtraSizes
|
|
{
|
|
#define FOR_EACH_SIZE(macro) \
|
|
macro(Objects, NotLiveGCThing, mallocHeapSlots) \
|
|
macro(Objects, NotLiveGCThing, mallocHeapElementsNonAsmJS) \
|
|
macro(Objects, NotLiveGCThing, mallocHeapElementsAsmJS) \
|
|
macro(Objects, NotLiveGCThing, nonHeapElementsAsmJS) \
|
|
macro(Objects, NotLiveGCThing, nonHeapCodeAsmJS) \
|
|
macro(Objects, NotLiveGCThing, mallocHeapAsmJSModuleData) \
|
|
macro(Objects, NotLiveGCThing, mallocHeapArgumentsData) \
|
|
macro(Objects, NotLiveGCThing, mallocHeapRegExpStatics) \
|
|
macro(Objects, NotLiveGCThing, mallocHeapPropertyIteratorData) \
|
|
macro(Objects, NotLiveGCThing, mallocHeapCtypesData)
|
|
|
|
ObjectsExtraSizes()
|
|
: FOR_EACH_SIZE(ZERO_SIZE)
|
|
dummy()
|
|
{}
|
|
|
|
void add(const ObjectsExtraSizes &other) {
|
|
FOR_EACH_SIZE(ADD_OTHER_SIZE)
|
|
}
|
|
|
|
size_t sizeOfLiveGCThings() const {
|
|
size_t n = 0;
|
|
FOR_EACH_SIZE(ADD_SIZE_TO_N_IF_LIVE_GC_THING)
|
|
return n;
|
|
}
|
|
|
|
void addToTabSizes(TabSizes *sizes) const {
|
|
FOR_EACH_SIZE(ADD_TO_TAB_SIZES)
|
|
}
|
|
|
|
FOR_EACH_SIZE(DECL_SIZE)
|
|
int dummy; // present just to absorb the trailing comma from FOR_EACH_SIZE(ZERO_SIZE)
|
|
|
|
#undef FOR_EACH_SIZE
|
|
};
|
|
|
|
// Data for tracking JIT-code memory usage.
|
|
struct CodeSizes
|
|
{
|
|
#define FOR_EACH_SIZE(macro) \
|
|
macro(_, _, ion) \
|
|
macro(_, _, baseline) \
|
|
macro(_, _, regexp) \
|
|
macro(_, _, other) \
|
|
macro(_, _, unused)
|
|
|
|
CodeSizes()
|
|
: FOR_EACH_SIZE(ZERO_SIZE)
|
|
dummy()
|
|
{}
|
|
|
|
FOR_EACH_SIZE(DECL_SIZE)
|
|
int dummy; // present just to absorb the trailing comma from FOR_EACH_SIZE(ZERO_SIZE)
|
|
|
|
#undef FOR_EACH_SIZE
|
|
};
|
|
|
|
// Data for tracking GC memory usage.
|
|
struct GCSizes
|
|
{
|
|
#define FOR_EACH_SIZE(macro) \
|
|
macro(_, _, marker) \
|
|
macro(_, _, nursery) \
|
|
macro(_, _, storeBufferVals) \
|
|
macro(_, _, storeBufferCells) \
|
|
macro(_, _, storeBufferSlots) \
|
|
macro(_, _, storeBufferWholeCells) \
|
|
macro(_, _, storeBufferRelocVals) \
|
|
macro(_, _, storeBufferRelocCells) \
|
|
macro(_, _, storeBufferGenerics)
|
|
|
|
GCSizes()
|
|
: FOR_EACH_SIZE(ZERO_SIZE)
|
|
dummy()
|
|
{}
|
|
|
|
FOR_EACH_SIZE(DECL_SIZE)
|
|
int dummy; // present just to absorb the trailing comma from FOR_EACH_SIZE(ZERO_SIZE)
|
|
|
|
#undef FOR_EACH_SIZE
|
|
};
|
|
|
|
// This class holds information about the memory taken up by identical copies of
|
|
// a particular string. Multiple JSStrings may have their sizes aggregated
|
|
// together into one StringInfo object. Note that two strings with identical
|
|
// chars will not be aggregated together if one is a short string and the other
|
|
// is not.
|
|
struct StringInfo
|
|
{
|
|
StringInfo()
|
|
: numCopies(0),
|
|
isShort(0),
|
|
gcHeap(0),
|
|
mallocHeap(0)
|
|
{}
|
|
|
|
StringInfo(bool isShort, size_t gcSize, size_t mallocSize)
|
|
: numCopies(1),
|
|
isShort(isShort),
|
|
gcHeap(gcSize),
|
|
mallocHeap(mallocSize)
|
|
{}
|
|
|
|
void add(bool isShort, size_t gcSize, size_t mallocSize) {
|
|
numCopies++;
|
|
MOZ_ASSERT(isShort == this->isShort);
|
|
gcHeap += gcSize;
|
|
mallocHeap += mallocSize;
|
|
}
|
|
|
|
void add(const StringInfo& info) {
|
|
numCopies += info.numCopies;
|
|
MOZ_ASSERT(info.isShort == isShort);
|
|
gcHeap += info.gcHeap;
|
|
mallocHeap += info.mallocHeap;
|
|
}
|
|
|
|
uint32_t numCopies:31; // How many copies of the string have we seen?
|
|
uint32_t isShort:1; // Is it a short string?
|
|
|
|
// These are all totals across all copies of the string we've seen.
|
|
size_t gcHeap;
|
|
size_t mallocHeap;
|
|
};
|
|
|
|
// Holds data about a notable string (one which uses more than
|
|
// NotableStringInfo::notableSize() bytes of memory), so we can report it
|
|
// individually.
|
|
//
|
|
// Essentially the only difference between this class and StringInfo is that
|
|
// NotableStringInfo holds a copy of the string's chars.
|
|
struct NotableStringInfo : public StringInfo
|
|
{
|
|
NotableStringInfo();
|
|
NotableStringInfo(JSString *str, const StringInfo &info);
|
|
NotableStringInfo(NotableStringInfo &&info);
|
|
NotableStringInfo &operator=(NotableStringInfo &&info);
|
|
|
|
~NotableStringInfo() {
|
|
js_free(buffer);
|
|
}
|
|
|
|
// A string needs to take up this many bytes of storage before we consider
|
|
// it to be "notable".
|
|
static size_t notableSize() {
|
|
return js::MemoryReportingSundriesThreshold();
|
|
}
|
|
|
|
char *buffer;
|
|
size_t length;
|
|
|
|
private:
|
|
NotableStringInfo(const NotableStringInfo& info) MOZ_DELETE;
|
|
};
|
|
|
|
// These measurements relate directly to the JSRuntime, and not to zones and
|
|
// compartments within it.
|
|
struct RuntimeSizes
|
|
{
|
|
#define FOR_EACH_SIZE(macro) \
|
|
macro(_, _, object) \
|
|
macro(_, _, atomsTable) \
|
|
macro(_, _, contexts) \
|
|
macro(_, _, dtoa) \
|
|
macro(_, _, temporary) \
|
|
macro(_, _, regexpData) \
|
|
macro(_, _, interpreterStack) \
|
|
macro(_, _, mathCache) \
|
|
macro(_, _, sourceDataCache) \
|
|
macro(_, _, scriptData) \
|
|
macro(_, _, scriptSources)
|
|
|
|
RuntimeSizes()
|
|
: FOR_EACH_SIZE(ZERO_SIZE)
|
|
code(),
|
|
gc()
|
|
{}
|
|
|
|
FOR_EACH_SIZE(DECL_SIZE)
|
|
CodeSizes code;
|
|
GCSizes gc;
|
|
|
|
#undef FOR_EACH_SIZE
|
|
};
|
|
|
|
struct ZoneStats : js::ZoneStatsPod
|
|
{
|
|
ZoneStats()
|
|
: strings(nullptr)
|
|
{}
|
|
|
|
ZoneStats(ZoneStats &&other)
|
|
: ZoneStatsPod(mozilla::Move(other)),
|
|
strings(other.strings),
|
|
notableStrings(mozilla::Move(other.notableStrings))
|
|
{
|
|
other.strings = nullptr;
|
|
}
|
|
|
|
bool initStrings(JSRuntime *rt);
|
|
|
|
// Add |other|'s numbers to this object's numbers. The strings data isn't
|
|
// touched.
|
|
void addIgnoringStrings(const ZoneStats &other) {
|
|
ZoneStatsPod::add(other);
|
|
}
|
|
|
|
// Add |other|'s strings data to this object's strings data. (We don't do
|
|
// anything with notableStrings.)
|
|
void addStrings(const ZoneStats &other) {
|
|
for (StringsHashMap::Range r = other.strings->all(); !r.empty(); r.popFront()) {
|
|
StringsHashMap::AddPtr p = strings->lookupForAdd(r.front().key());
|
|
if (p) {
|
|
// We've seen this string before; add its size to our tally.
|
|
p->value().add(r.front().value());
|
|
} else {
|
|
// We haven't seen this string before; add it to the hashtable.
|
|
strings->add(p, r.front().key(), r.front().value());
|
|
}
|
|
}
|
|
}
|
|
|
|
size_t sizeOfLiveGCThings() const {
|
|
size_t n = ZoneStatsPod::sizeOfLiveGCThings();
|
|
for (size_t i = 0; i < notableStrings.length(); i++) {
|
|
const JS::NotableStringInfo& info = notableStrings[i];
|
|
n += info.gcHeap;
|
|
}
|
|
return n;
|
|
}
|
|
|
|
typedef js::HashMap<JSString*,
|
|
StringInfo,
|
|
js::InefficientNonFlatteningStringHashPolicy,
|
|
js::SystemAllocPolicy> StringsHashMap;
|
|
|
|
// |strings| is only used transiently. During the zone traversal it is
|
|
// filled with info about every string in the zone. It's then used to fill
|
|
// in |notableStrings| (which actually gets reported), and immediately
|
|
// discarded afterwards.
|
|
StringsHashMap *strings;
|
|
js::Vector<NotableStringInfo, 0, js::SystemAllocPolicy> notableStrings;
|
|
};
|
|
|
|
struct CompartmentStats
|
|
{
|
|
#define FOR_EACH_SIZE(macro) \
|
|
macro(Objects, IsLiveGCThing, objectsGCHeapOrdinary) \
|
|
macro(Objects, IsLiveGCThing, objectsGCHeapFunction) \
|
|
macro(Objects, IsLiveGCThing, objectsGCHeapDenseArray) \
|
|
macro(Objects, IsLiveGCThing, objectsGCHeapSlowArray) \
|
|
macro(Objects, IsLiveGCThing, objectsGCHeapCrossCompartmentWrapper) \
|
|
macro(Private, NotLiveGCThing, objectsPrivate) \
|
|
macro(Other, IsLiveGCThing, shapesGCHeapTreeGlobalParented) \
|
|
macro(Other, IsLiveGCThing, shapesGCHeapTreeNonGlobalParented) \
|
|
macro(Other, IsLiveGCThing, shapesGCHeapDict) \
|
|
macro(Other, IsLiveGCThing, shapesGCHeapBase) \
|
|
macro(Other, NotLiveGCThing, shapesMallocHeapTreeTables) \
|
|
macro(Other, NotLiveGCThing, shapesMallocHeapDictTables) \
|
|
macro(Other, NotLiveGCThing, shapesMallocHeapTreeShapeKids) \
|
|
macro(Other, NotLiveGCThing, shapesMallocHeapCompartmentTables) \
|
|
macro(Other, IsLiveGCThing, scriptsGCHeap) \
|
|
macro(Other, NotLiveGCThing, scriptsMallocHeapData) \
|
|
macro(Other, NotLiveGCThing, baselineData) \
|
|
macro(Other, NotLiveGCThing, baselineStubsFallback) \
|
|
macro(Other, NotLiveGCThing, baselineStubsOptimized) \
|
|
macro(Other, NotLiveGCThing, ionData) \
|
|
macro(Other, NotLiveGCThing, typeInferenceTypeScripts) \
|
|
macro(Other, NotLiveGCThing, typeInferenceAllocationSiteTables) \
|
|
macro(Other, NotLiveGCThing, typeInferenceArrayTypeTables) \
|
|
macro(Other, NotLiveGCThing, typeInferenceObjectTypeTables) \
|
|
macro(Other, NotLiveGCThing, compartmentObject) \
|
|
macro(Other, NotLiveGCThing, crossCompartmentWrappersTable) \
|
|
macro(Other, NotLiveGCThing, regexpCompartment) \
|
|
macro(Other, NotLiveGCThing, debuggeesSet)
|
|
|
|
CompartmentStats()
|
|
: FOR_EACH_SIZE(ZERO_SIZE)
|
|
objectsExtra(),
|
|
extra()
|
|
{}
|
|
|
|
CompartmentStats(const CompartmentStats &other)
|
|
: FOR_EACH_SIZE(COPY_OTHER_SIZE)
|
|
objectsExtra(other.objectsExtra),
|
|
extra(other.extra)
|
|
{}
|
|
|
|
void add(const CompartmentStats &other) {
|
|
FOR_EACH_SIZE(ADD_OTHER_SIZE)
|
|
objectsExtra.add(other.objectsExtra);
|
|
// Do nothing with |extra|.
|
|
}
|
|
|
|
size_t sizeOfLiveGCThings() const {
|
|
size_t n = 0;
|
|
FOR_EACH_SIZE(ADD_SIZE_TO_N_IF_LIVE_GC_THING)
|
|
n += objectsExtra.sizeOfLiveGCThings();
|
|
// Do nothing with |extra|.
|
|
return n;
|
|
}
|
|
|
|
void addToTabSizes(TabSizes *sizes) const {
|
|
FOR_EACH_SIZE(ADD_TO_TAB_SIZES);
|
|
objectsExtra.addToTabSizes(sizes);
|
|
// Do nothing with |extra|.
|
|
}
|
|
|
|
FOR_EACH_SIZE(DECL_SIZE)
|
|
ObjectsExtraSizes objectsExtra;
|
|
void *extra; // This field can be used by embedders.
|
|
|
|
#undef FOR_EACH_SIZE
|
|
};
|
|
|
|
typedef js::Vector<CompartmentStats, 0, js::SystemAllocPolicy> CompartmentStatsVector;
|
|
typedef js::Vector<ZoneStats, 0, js::SystemAllocPolicy> ZoneStatsVector;
|
|
|
|
struct RuntimeStats
|
|
{
|
|
#define FOR_EACH_SIZE(macro) \
|
|
macro(_, _, gcHeapChunkTotal) \
|
|
macro(_, _, gcHeapDecommittedArenas) \
|
|
macro(_, _, gcHeapUnusedChunks) \
|
|
macro(_, _, gcHeapUnusedArenas) \
|
|
macro(_, _, gcHeapChunkAdmin) \
|
|
macro(_, _, gcHeapGCThings) \
|
|
|
|
RuntimeStats(mozilla::MallocSizeOf mallocSizeOf)
|
|
: FOR_EACH_SIZE(ZERO_SIZE)
|
|
runtime(),
|
|
cTotals(),
|
|
zTotals(),
|
|
compartmentStatsVector(),
|
|
zoneStatsVector(),
|
|
currZoneStats(nullptr),
|
|
mallocSizeOf_(mallocSizeOf)
|
|
{}
|
|
|
|
// Here's a useful breakdown of the GC heap.
|
|
//
|
|
// - rtStats.gcHeapChunkTotal
|
|
// - decommitted bytes
|
|
// - rtStats.gcHeapDecommittedArenas (decommitted arenas in non-empty chunks)
|
|
// - unused bytes
|
|
// - rtStats.gcHeapUnusedChunks (empty chunks)
|
|
// - rtStats.gcHeapUnusedArenas (empty arenas within non-empty chunks)
|
|
// - rtStats.zTotals.unusedGCThings (empty GC thing slots within non-empty arenas)
|
|
// - used bytes
|
|
// - rtStats.gcHeapChunkAdmin
|
|
// - rtStats.zTotals.gcHeapArenaAdmin
|
|
// - rtStats.gcHeapGCThings (in-use GC things)
|
|
// == rtStats.zTotals.sizeOfLiveGCThings() + rtStats.cTotals.sizeOfLiveGCThings()
|
|
//
|
|
// It's possible that some arenas in empty chunks may be decommitted, but
|
|
// we don't count those under rtStats.gcHeapDecommittedArenas because (a)
|
|
// it's rare, and (b) this means that rtStats.gcHeapUnusedChunks is a
|
|
// multiple of the chunk size, which is good.
|
|
|
|
FOR_EACH_SIZE(DECL_SIZE)
|
|
|
|
RuntimeSizes runtime;
|
|
|
|
CompartmentStats cTotals; // The sum of this runtime's compartments' measurements.
|
|
ZoneStats zTotals; // The sum of this runtime's zones' measurements.
|
|
|
|
CompartmentStatsVector compartmentStatsVector;
|
|
ZoneStatsVector zoneStatsVector;
|
|
|
|
ZoneStats *currZoneStats;
|
|
|
|
mozilla::MallocSizeOf mallocSizeOf_;
|
|
|
|
virtual void initExtraCompartmentStats(JSCompartment *c, CompartmentStats *cstats) = 0;
|
|
virtual void initExtraZoneStats(JS::Zone *zone, ZoneStats *zstats) = 0;
|
|
|
|
#undef FOR_EACH_SIZE
|
|
};
|
|
|
|
class ObjectPrivateVisitor
|
|
{
|
|
public:
|
|
// Within CollectRuntimeStats, this method is called for each JS object
|
|
// that has an nsISupports pointer.
|
|
virtual size_t sizeOfIncludingThis(nsISupports *aSupports) = 0;
|
|
|
|
// A callback that gets a JSObject's nsISupports pointer, if it has one.
|
|
// Note: this function does *not* addref |iface|.
|
|
typedef bool(*GetISupportsFun)(JSObject *obj, nsISupports **iface);
|
|
GetISupportsFun getISupports_;
|
|
|
|
ObjectPrivateVisitor(GetISupportsFun getISupports)
|
|
: getISupports_(getISupports)
|
|
{}
|
|
};
|
|
|
|
extern JS_PUBLIC_API(bool)
|
|
CollectRuntimeStats(JSRuntime *rt, RuntimeStats *rtStats, ObjectPrivateVisitor *opv);
|
|
|
|
extern JS_PUBLIC_API(size_t)
|
|
SystemCompartmentCount(JSRuntime *rt);
|
|
|
|
extern JS_PUBLIC_API(size_t)
|
|
UserCompartmentCount(JSRuntime *rt);
|
|
|
|
extern JS_PUBLIC_API(size_t)
|
|
PeakSizeOfTemporary(const JSRuntime *rt);
|
|
|
|
extern JS_PUBLIC_API(bool)
|
|
AddSizeOfTab(JSRuntime *rt, JS::HandleObject obj, mozilla::MallocSizeOf mallocSizeOf,
|
|
ObjectPrivateVisitor *opv, TabSizes *sizes);
|
|
|
|
} // namespace JS
|
|
|
|
#undef DECL_SIZE
|
|
#undef ZERO_SIZE
|
|
#undef COPY_OTHER_SIZE
|
|
#undef ADD_OTHER_SIZE
|
|
#undef ADD_SIZE_TO_N_IF_LIVE_GC_THING
|
|
#undef ADD_TO_TAB_SIZES
|
|
|
|
#endif /* js_MemoryMetrics_h */
|