2012-03-09 09:48:50 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
|
|
* vim: set ts=8 sw=4 et tw=99 ft=cpp:
|
|
|
|
*
|
2012-05-21 11:12:37 +00:00
|
|
|
* 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/. */
|
2011-12-24 08:27:39 +00:00
|
|
|
|
|
|
|
#ifndef js_MemoryMetrics_h
|
|
|
|
#define js_MemoryMetrics_h
|
|
|
|
|
|
|
|
/*
|
|
|
|
* These declarations are not within jsapi.h because they are highly likely
|
|
|
|
* to change in the future. Depend on them at your own risk.
|
|
|
|
*/
|
|
|
|
|
2012-01-11 08:23:08 +00:00
|
|
|
#include <string.h>
|
|
|
|
|
2012-01-11 08:23:08 +00:00
|
|
|
#include "jsalloc.h"
|
2011-12-24 08:27:39 +00:00
|
|
|
#include "jspubtd.h"
|
|
|
|
|
|
|
|
#include "js/Utility.h"
|
2012-01-11 08:23:08 +00:00
|
|
|
#include "js/Vector.h"
|
2011-12-24 08:27:39 +00:00
|
|
|
|
|
|
|
namespace JS {
|
|
|
|
|
|
|
|
/* Data for tracking analysis/inference memory usage. */
|
2012-01-27 03:09:31 +00:00
|
|
|
struct TypeInferenceSizes
|
2011-12-24 08:27:39 +00:00
|
|
|
{
|
2012-01-29 22:13:18 +00:00
|
|
|
size_t scripts;
|
|
|
|
size_t objects;
|
|
|
|
size_t tables;
|
|
|
|
size_t temporary;
|
2011-12-24 08:27:39 +00:00
|
|
|
};
|
|
|
|
|
2012-05-16 02:29:14 +00:00
|
|
|
// These measurements relate directly to the JSRuntime, and not to
|
|
|
|
// compartments within it.
|
|
|
|
struct RuntimeSizes
|
|
|
|
{
|
|
|
|
RuntimeSizes()
|
|
|
|
: object(0)
|
|
|
|
, atomsTable(0)
|
|
|
|
, contexts(0)
|
|
|
|
, dtoa(0)
|
|
|
|
, temporary(0)
|
|
|
|
, mjitCode(0)
|
|
|
|
, regexpCode(0)
|
|
|
|
, unusedCodeMemory(0)
|
|
|
|
, stackCommitted(0)
|
|
|
|
, gcMarker(0)
|
2012-05-16 02:30:28 +00:00
|
|
|
, mathCache(0)
|
|
|
|
, scriptFilenames(0)
|
|
|
|
, compartmentObjects(0)
|
2012-05-16 02:29:14 +00:00
|
|
|
{}
|
|
|
|
|
|
|
|
size_t object;
|
|
|
|
size_t atomsTable;
|
|
|
|
size_t contexts;
|
|
|
|
size_t dtoa;
|
|
|
|
size_t temporary;
|
|
|
|
size_t mjitCode;
|
|
|
|
size_t regexpCode;
|
|
|
|
size_t unusedCodeMemory;
|
|
|
|
size_t stackCommitted;
|
|
|
|
size_t gcMarker;
|
2012-05-16 02:30:28 +00:00
|
|
|
size_t mathCache;
|
|
|
|
size_t scriptFilenames;
|
|
|
|
|
|
|
|
// This is the exception to the "RuntimeSizes doesn't measure things within
|
|
|
|
// compartments" rule. We combine the sizes of all the JSCompartment
|
|
|
|
// objects into a single measurement because each one is fairly small, and
|
|
|
|
// they're all the same size.
|
|
|
|
size_t compartmentObjects;
|
2012-05-16 02:29:14 +00:00
|
|
|
};
|
|
|
|
|
2012-01-11 08:23:08 +00:00
|
|
|
struct CompartmentStats
|
|
|
|
{
|
2012-03-09 09:48:50 +00:00
|
|
|
CompartmentStats() {
|
2012-01-11 08:23:08 +00:00
|
|
|
memset(this, 0, sizeof(*this));
|
|
|
|
}
|
|
|
|
|
2012-03-09 09:48:50 +00:00
|
|
|
void *extra;
|
2012-01-29 22:13:18 +00:00
|
|
|
size_t gcHeapArenaHeaders;
|
|
|
|
size_t gcHeapArenaPadding;
|
|
|
|
size_t gcHeapArenaUnused;
|
|
|
|
|
|
|
|
size_t gcHeapObjectsNonFunction;
|
|
|
|
size_t gcHeapObjectsFunction;
|
|
|
|
size_t gcHeapStrings;
|
|
|
|
size_t gcHeapShapesTree;
|
|
|
|
size_t gcHeapShapesDict;
|
|
|
|
size_t gcHeapShapesBase;
|
|
|
|
size_t gcHeapScripts;
|
|
|
|
size_t gcHeapTypeObjects;
|
2012-05-17 21:24:32 +00:00
|
|
|
#if JS_HAS_XML_SUPPORT
|
2012-01-29 22:13:18 +00:00
|
|
|
size_t gcHeapXML;
|
2012-05-17 21:24:32 +00:00
|
|
|
#endif
|
2012-01-29 22:13:18 +00:00
|
|
|
|
|
|
|
size_t objectSlots;
|
|
|
|
size_t objectElements;
|
2012-01-31 02:12:03 +00:00
|
|
|
size_t objectMisc;
|
2012-01-29 22:13:18 +00:00
|
|
|
size_t stringChars;
|
|
|
|
size_t shapesExtraTreeTables;
|
|
|
|
size_t shapesExtraDictTables;
|
|
|
|
size_t shapesExtraTreeShapeKids;
|
|
|
|
size_t shapesCompartmentTables;
|
|
|
|
size_t scriptData;
|
|
|
|
size_t mjitData;
|
2012-05-16 02:31:01 +00:00
|
|
|
size_t crossCompartmentWrappers;
|
2012-05-03 07:12:47 +00:00
|
|
|
|
2012-01-27 03:09:31 +00:00
|
|
|
TypeInferenceSizes typeInferenceSizes;
|
2012-01-11 08:23:08 +00:00
|
|
|
};
|
|
|
|
|
2012-01-29 22:11:32 +00:00
|
|
|
struct RuntimeStats
|
2012-01-11 08:23:08 +00:00
|
|
|
{
|
2012-03-09 09:48:50 +00:00
|
|
|
RuntimeStats(JSMallocSizeOfFun mallocSizeOf)
|
2012-05-16 02:29:14 +00:00
|
|
|
: runtime()
|
2012-01-11 08:23:08 +00:00
|
|
|
, gcHeapChunkTotal(0)
|
2012-04-16 02:20:54 +00:00
|
|
|
, gcHeapCommitted(0)
|
|
|
|
, gcHeapUnused(0)
|
2012-01-11 08:23:08 +00:00
|
|
|
, gcHeapChunkCleanUnused(0)
|
|
|
|
, gcHeapChunkDirtyUnused(0)
|
|
|
|
, gcHeapChunkCleanDecommitted(0)
|
|
|
|
, gcHeapChunkDirtyDecommitted(0)
|
|
|
|
, gcHeapArenaUnused(0)
|
|
|
|
, gcHeapChunkAdmin(0)
|
|
|
|
, totalObjects(0)
|
|
|
|
, totalShapes(0)
|
|
|
|
, totalScripts(0)
|
|
|
|
, totalStrings(0)
|
|
|
|
, totalMjit(0)
|
|
|
|
, totalTypeInference(0)
|
|
|
|
, totalAnalysisTemp(0)
|
|
|
|
, compartmentStatsVector()
|
|
|
|
, currCompartmentStats(NULL)
|
|
|
|
, mallocSizeOf(mallocSizeOf)
|
|
|
|
{}
|
|
|
|
|
2012-05-18 00:08:57 +00:00
|
|
|
RuntimeSizes runtime;
|
2012-05-16 02:29:14 +00:00
|
|
|
|
2012-01-29 22:13:18 +00:00
|
|
|
size_t gcHeapChunkTotal;
|
2012-04-16 02:20:54 +00:00
|
|
|
size_t gcHeapCommitted;
|
|
|
|
size_t gcHeapUnused;
|
2012-01-29 22:13:18 +00:00
|
|
|
size_t gcHeapChunkCleanUnused;
|
|
|
|
size_t gcHeapChunkDirtyUnused;
|
|
|
|
size_t gcHeapChunkCleanDecommitted;
|
|
|
|
size_t gcHeapChunkDirtyDecommitted;
|
|
|
|
size_t gcHeapArenaUnused;
|
|
|
|
size_t gcHeapChunkAdmin;
|
|
|
|
size_t totalObjects;
|
|
|
|
size_t totalShapes;
|
|
|
|
size_t totalScripts;
|
|
|
|
size_t totalStrings;
|
|
|
|
size_t totalMjit;
|
|
|
|
size_t totalTypeInference;
|
|
|
|
size_t totalAnalysisTemp;
|
2012-01-11 08:23:08 +00:00
|
|
|
|
|
|
|
js::Vector<CompartmentStats, 0, js::SystemAllocPolicy> compartmentStatsVector;
|
|
|
|
CompartmentStats *currCompartmentStats;
|
|
|
|
|
|
|
|
JSMallocSizeOfFun mallocSizeOf;
|
2012-03-09 09:48:50 +00:00
|
|
|
|
|
|
|
virtual void initExtraCompartmentStats(JSCompartment *c, CompartmentStats *cstats) = 0;
|
2012-01-11 08:23:08 +00:00
|
|
|
};
|
|
|
|
|
2012-01-11 16:21:26 +00:00
|
|
|
#ifdef JS_THREADSAFE
|
|
|
|
|
2012-01-11 08:23:08 +00:00
|
|
|
extern JS_PUBLIC_API(bool)
|
2012-01-29 22:11:32 +00:00
|
|
|
CollectRuntimeStats(JSRuntime *rt, RuntimeStats *rtStats);
|
2012-01-11 08:23:08 +00:00
|
|
|
|
2012-02-29 20:23:53 +00:00
|
|
|
extern JS_PUBLIC_API(int64_t)
|
|
|
|
GetExplicitNonHeapForRuntime(JSRuntime *rt, JSMallocSizeOfFun mallocSizeOf);
|
2012-01-11 08:23:08 +00:00
|
|
|
|
2012-01-11 16:21:26 +00:00
|
|
|
#endif /* JS_THREADSAFE */
|
|
|
|
|
2011-12-24 08:27:39 +00:00
|
|
|
extern JS_PUBLIC_API(size_t)
|
|
|
|
SystemCompartmentCount(const JSRuntime *rt);
|
|
|
|
|
|
|
|
extern JS_PUBLIC_API(size_t)
|
|
|
|
UserCompartmentCount(const JSRuntime *rt);
|
|
|
|
|
|
|
|
} // namespace JS
|
|
|
|
|
|
|
|
#endif // js_MemoryMetrics_h
|