<div dir="ltr"><div class="gmail_extra"><br><div class="gmail_quote">On Thu, Aug 22, 2013 at 4:35 PM, Yves S. Garret <span dir="ltr"><<a href="mailto:yoursurrogategod@gmail.com" target="_blank">yoursurrogategod@gmail.com</a>></span> wrote:<br>

<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div>Am I understanding this correctly?  You have two heaps and if a piece of memory keeps getting </div><div>referenced, it gets moved into the "old" heap and the "new" heap's memory gets freed up a little, </div>


<div>yes?</div></blockquote></div><br>Well the heap is divided in two regions, old and young. New data is allocated on the young heap. When it fills, the young heap is garbage collected. Data which is dead is removed and data which is still live survives on the young heap. When it has survived enough times (3) then it is promoted to the old heap.</div>

<div class="gmail_extra"><br></div><div class="gmail_extra">The reason for this scheme is that you keep the young heap small and collect it often. Collection is faster in a small heap. Also, since most objects tend to be used only once at most, they are usually dead when the young heap collects. Objects which survive are usually long lived, so they get promoted into the old heap. It is then collected more rarely.</div>

<div class="gmail_extra"><br></div><div class="gmail_extra">The view here is simplified, but it might do.<br></div></div>