Debugger.Memory - Firefox Developer Tools 编辑
/wiki/en-US/docs/Tools/Debugger-API/Debugger.Memory
The /wiki/en-US/docs/Tools/Debugger-API/Debugger API
can help tools observe the debuggee’s memory use in various ways:
It can mark each new object with the JavaScript call stack at which it was allocated.
It can log all object allocations, yielding a stream of JavaScript call stacks at which allocations have occurred.
It can compute a census of items belonging to the debuggee, categorizing items in various ways, and yielding item counts.
Ifdbg is a /wiki/en-US/docs/Tools/Debugger-API/Debugger
instance, then the methods and accessor properties of dbg.memory
control howdbg observes its debuggees’ memory use. The dbg.memory
object is an instance of /wiki/en-US/docs/Tools/Debugger-API/Debugger.Memory
; its inherited accesors and methods are described below.
Allocation Site Tracking
The JavaScript engine marks each new object with the call stack at which it was allocated, if:
the object is allocated in the scope of a global object that is a debuggee of some
/wiki/en-US/docs/Tools/Debugger-API/Debugger
instancedbg; anddbg.memory.trackingAllocationSites
is set totrue
.A Bernoulli trial succeeds, with probability equal to the maximum of
d.memory.allocationSamplingProbability
of all/wiki/en-US/docs/Tools/Debugger-API/Debugger
instancesd
that are observing the global that this object is allocated within the scope of.
Given a /wiki/en-US/docs/Tools/Debugger-API/Debugger.Object
instancedobj referring to some object, dobj.allocationSite
returns a saved call stack indicating wheredobj’s referent was allocated.
Allocation Logging
Ifdbg is a /wiki/en-US/docs/Tools/Debugger-API/Debugger
instance, and dbg.memory.trackingAllocationSites
is set to true
, then the JavaScript engine logs each object allocated bydbg’s debuggee code. You can retrieve the current log by calling dbg.memory.drainAllocationsLog
. You can control the limit on the log’s size by setting dbg.memory.maxAllocationsLogLength
.
Censuses
A census is a complete traversal of the graph of all reachable memory items belonging to a particular /wiki/en-US/docs/Tools/Debugger-API/Debugger
‘s debuggees. It produces a count of those items, broken down by various criteria. Ifdbg is a /wiki/en-US/docs/Tools/Debugger-API/Debugger
instance, you can call dbg.memory.takeCensus
to conduct a census of its debuggees’ possessions.
Accessor Properties of the /wiki/en-US/docs/Tools/Debugger-API/Debugger.Memory.prototype Object
Ifdbg is a /wiki/en-US/docs/Tools/Debugger-API/Debugger
instance, then <i>dbg</i>.memory
is a /wiki/en-US/docs/Tools/Debugger-API/Debugger.Memory
instance, which inherits the following accessor properties from its prototype:
trackingAllocationSites
A boolean value indicating whether this
/wiki/en-US/docs/Tools/Debugger-API/Debugger.Memory
instance is capturing the JavaScript execution stack when each Object is allocated. This accessor property has both a getter and setter: assigning to it enables or disables the allocation site tracking. Reading the accessor producestrue
if the /wiki/en-US/docs/Tools/Debugger-API/Debugger is capturing stacks for Object allocations, andfalse
otherwise. Allocation site tracking is initially disabled in a new /wiki/en-US/docs/Tools/Debugger-API/Debugger.Assignment is fallible: if the /wiki/en-US/docs/Tools/Debugger-API/Debugger cannot track allocation sites, it throws an
Error
instance.You can retrieve the allocation site for a given object with the
/wiki/en-US/docs/Tools/Debugger-API/Debugger.Object.prototype.allocationSite
accessor property.allocationSamplingProbability
A number between 0 and 1 that indicates the probability with which each new allocation should be entered into the allocations log. 0 is equivalent to “never”, 1 is “always”, and .05 would be “one out of twenty”.
The default is 1, or logging every allocation.
Note that in the presence of multiple
/wiki/en-US/docs/Tools/Debugger-API/Debugger
instances observing the same allocations within a global’s scope, the maximumallocationSamplingProbability
of all the/wiki/en-US/docs/Tools/Debugger-API/Debugger
s is used.maxAllocationsLogLength
- The maximum number of allocation sites to accumulate in the allocations log at a time. This accessor can be both fetched and stored to. Its default value is
5000
. allocationsLogOverflowed
- Returns
true
if there have been more than [maxAllocationsLogLength
][#max-alloc-log] allocations since the last time [drainAllocationsLog
][#drain-alloc-log] was called and some data has been lost. Returnsfalse
otherwise.
/wiki/en-US/docs/Tools/Debugger-API/Debugger.Memory Handler Functions
Similar to /wiki/en-US/docs/Tools/Debugger-API/Debugger
’s handler functions, /wiki/en-US/docs/Tools/Debugger-API/Debugger.Memory
inherits accessor properties that store handler functions for SpiderMonkey to call when given events occur in debuggee code.
Unlike /wiki/en-US/docs/Tools/Debugger-API/Debugger
‘s hooks, /wiki/en-US/docs/Tools/Debugger-API/Debugger.Memory
’s handlers’ return values are not significant, and are ignored. The handler functions receive the /wiki/en-US/docs/Tools/Debugger-API/Debugger.Memory
’s owning /wiki/en-US/docs/Tools/Debugger-API/Debugger
instance as their this
value. The owning /wiki/en-US/docs/Tools/Debugger-API/Debugger
’s uncaughtExceptionHandler
is still fired for errors thrown in /wiki/en-US/docs/Tools/Debugger-API/Debugger.Memory
hooks.
On a new /wiki/en-US/docs/Tools/Debugger-API/Debugger.Memory
instance, each of these properties is initially undefined
. Any value assigned to a debugging handler must be either a function or undefined
; otherwise a TypeError
is thrown.
Handler functions run in the same thread in which the event occurred. They run in the compartment to which they belong, not in a debuggee compartment.
onGarbageCollection(statistics)
A garbage collection cycle spanning one or more debuggees has just been completed.
The statistics parameter is an object containing information about the GC cycle. It has the following properties:
collections
The
collections
property’s value is an array. Because SpiderMonkey’s collector is incremental, a full collection cycle may consist of multiple discrete collection slices with the JS mutator running interleaved. For each collection slice that occurred, there is an entry in thecollections
array with the following form:{ "startTimestamp":timestamp, "endTimestamp":timestamp, }
Here the timestamp values are timestamps of the GC slice’s start and end events.
reason
A very short string describing the reason why the collection was triggered. Known values include the following:
- “API”
- “EAGER_ALLOC_TRIGGER”
- “DESTROY_RUNTIME”
- “LAST_DITCH”
- “TOO_MUCH_MALLOC”
- “ALLOC_TRIGGER”
- “DEBUG_GC”
- “COMPARTMENT_REVIVED”
- “RESET”
- “OUT_OF_NURSERY”
- “EVICT_NURSERY”
- “FULL_STORE_BUFFER”
- “SHARED_MEMORY_LIMIT”
- “PERIODIC_FULL_GC”
- “INCREMENTAL_TOO_SLOW”
- “DOM_WINDOW_UTILS”
- “COMPONENT_UTILS”
- “MEM_PRESSURE”
- “CC_WAITING”
- “CC_FORCED”
- “LOAD_END”
- “PAGE_HIDE”
- “NSJSCONTEXT_DESTROY”
- “SET_NEW_DOCUMENT”
- “SET_DOC_SHELL”
- “DOM_UTILS”
- “DOM_IPC”
- “DOM_WORKER”
- “INTER_SLICE_GC”
- “REFRESH_FRAME”
- “FULL_GC_TIMER”
- “SHUTDOWN_CC”
- “USER_INACTIVE”
nonincrementalReason
If SpiderMonkey’s collector determined it could not incrementally collect garbage, and had to do a full GC all at once, this is a short string describing the reason it determined the full GC was necessary. Otherwise,
null
is returned. Known values include the following:- “GC mode”
- “malloc bytes trigger”
- “allocation trigger”
- “requested”
gcCycleNumber
- The GC cycle’s “number”. Does not correspond to the number of GC cycles that have run, but is guaranteed to be monotonically increasing.
Function Properties of the /wiki/en-US/docs/Tools/Debugger-API/Debugger.Memory.prototype Object
Memory Use Analysis Exposes Implementation Details
Memory analysis may yield surprising results, because browser implementation details that are transparent to content JavaScript often have visible effects on memory consumption. Web developers need to know their pages’ actual memory consumption on real browsers, so it is correct for the tool to expose these behaviors, as long as it is done in a way that helps developers make decisions about their own code.
This section covers some areas where Firefox’s actual behavior deviates from what one might expect from the specified behavior of the web platform.
Objects
SpiderMonkey objects usually use less memory than the naïve “table of properties with attributes” model would suggest. For example, it is typical for many objects to have identical sets of properties, with only the properties’ values varying from one object to the next. To take advantage of this regularity, SpiderMonkey objects with identical sets of properties may share their property metadata; only property values are stored directly in the object.
Array objects may also be optimized, if the set of live indices is dense.
Strings
SpiderMonkey has three representations of strings:
Normal: the string’s text is counted in its size.
Substring: the string is a substring of some other string, and points to that string for its storage. This representation may result in a small string retaining a very large string. However, the memory consumed by the string itself is a small constant independent of its size, since it is a reference to the larger string, a start position, and a length.
Concatenations: When asked to concatenate two strings, SpiderMonkey may elect to delay copying the strings’ data, and represent the result as a pointer to the two original strings. Again, such a string retains other strings, but the memory consumed by the string itself is a small constant independent of its size, since it is a pair of pointers.
SpiderMonkey converts strings from the more complex representations to the simpler ones when it pleases. Such conversions usually increase memory consumption.
SpiderMonkey shares some strings amongst all web pages and browser JS. These shared strings, called atoms, are not included in censuses’ string counts.
Scripts
SpiderMonkey has a complex, hybrid representation of JavaScript code. There are four representations kept in memory:
Source code. SpiderMonkey retains a copy of most JavaScript source code.
Compressed source code. SpiderMonkey compresses JavaScript source code, and de-compresses it on demand. Heuristics determine how long to retain the uncompressed code.
Bytecode. This is SpiderMonkey’s parsed representation of JavaScript. Bytecode can be interpreted directly, or used as input to a just-in-time compiler. Source is parsed into bytecode on demand; functions that are never called are never parsed.
Machine code. SpiderMonkey includes several just-in-time compilers, each of which translates JavaScript source or bytecode to machine code. Heuristics determine which code to compile, and which compiler to use. Machine code may be dropped in response to memory pressure, and regenerated as needed.
Furthermore, SpiderMonkey tracks which types of values have appeared in variables and object properties. This type information can be large.
In a census, all the various forms of JavaScript code are placed in the "script"
category. Type information is accounted to the "types"
category.
Source Metadata
- Generated from file:
- js/src/doc//wiki/en-US/docs/Tools/Debugger-API/Debugger//wiki/en-US/docs/Tools/Debugger-API/Debugger.Memory.md
- Watermark:
- sha256:2c1529d6932efec8c624a6f1f366b09cb7fce625a6468657fab81788240bc7ae
- Changeset:
- e91b2c85aacd
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论