====== Memory ====== The Memory tool lets you take a snapshot of the current tab's memory `heap `_. It then provides a number of views of the heap that can show you which objects account for memory usage and exactly where in your code you are allocating memory. .. raw:: html

The basics ********** - :ref:`Opening the memory tool ` - :ref:`Taking a heap snapshot ` - :ref:`Comparing two snapshots ` - :ref:`Deleting snapshots ` - :ref:`Saving and loading snapshots ` - :ref:`Recording call stacks ` Analyzing snapshots ******************* The Tree map view is new in Firefox 48, and the Dominators view is new in Firefox 46. Once you've taken a snapshot, there are three main views the Memory tool provides: - :doc:`the Tree map view ` shows memory usage as a `treemap `_. - :doc:`the Aggregate view ` shows memory usage as a table of allocated types. - :doc:`the Dominators view ` shows the "retained size" of objects: that is, the size of objects plus the size of other objects that they keep alive through references. If you've opted to record allocation stacks for the snapshot, the Aggregate and Dominators views can show you exactly where in your code allocations are happening. Concepts ******** - :doc:`Dominators ` Example pages ************* Examples used in the Memory tool documentation. - :doc:`Monster example ` - :doc:`DOM allocation example `