Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>The "Analyzing Data with the ObjectAlloc Instrument" section of the Instruments User Guide used to provide some description of the detail view for this instrument (the whole guide has since been rewritten):</p> <blockquote> <p>The Detail pane (while it is in Table mode) displays other useful information to help you spot potential allocation issues. The net versus overall allocations column of the table shows a histogram of the currently active objects and the total number that were ever created. As the ratio of net allocations to overall allocations shrinks, the color of the histogram bar changes. Blue histogram bars represent a reasonable ratio while colors shifted towards the red spectrum represent lower ratios that might warrant some investigation.</p> </blockquote> <p>Object allocations are grouped by type, which is what appears under the <code>Category</code> header. The <code>Live Bytes</code> column indicates how many of this type of object have been allocated and still are around in memory. Likewise, the <code># Living</code> column tells you how many objects of this type are still around in memory. The <code>Overall Bytes</code> and <code># Overall</code> columns show the total size in memory and number of all allocated objects of that type, whether or not they are still around in memory at this time. Finally, the <code># Transitory</code> is simply the difference between <code># Living</code> and <code># Overall</code>, showing how many objects of that type were created and destroyed during the time period you are analyzing.</p> <p>The histogram at the right of this table is described by the above-quoted section from the documentation, but it simply provides a graphical measure of the numbers described above.</p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload