Thomas, while adding newly freed regions to the head of a common global free region list<br>probably achieves much reuse, I was suggesting something even stronger and deliberate, in that a much smaller set of<br>regions be preferred for repeated reuse for Eden allocation and for reuse as survivor regions, kind of<br>
segregating that smaller subset completely from regions used for tenuring objects. On the other<br>hand, that view of object access frequencies is likely much too simplistic, conflating object age<br>with (the inverse of) short-term access frequency. Anyway, with G1+NUMA, I am sure some of<br>
these region allocation policies will get somewhat tweaked and revised.<br><br>-- ramki<br><br><br><div class="gmail_quote">On Thu, Oct 25, 2012 at 3:48 PM, Thomas Schatzl <span dir="ltr"><<a href="mailto:thomas.schatzl@jku.at" target="_blank">thomas.schatzl@jku.at</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi,<br>
<br>
  some more info about the implementation which might clear up other<br>
questions. Did not know where to jump in this discussion because of all<br>
that top-posting.<br>
<div class="im"><br>
On Fri, 2012-10-26 at 00:11 +0200, Thomas Schatzl wrote:<br>
> Hi,<br>
><br>
> On Thu, 2012-10-25 at 10:53 -0700, Srinivas Ramakrishna wrote:<br>
><br>
> > John might be able to tell us whether or how hard G1 tries to reuse<br>
> > Eden/Survivor pages (I had often lobbied for that because AFAIR old G1<br>
> > code did not make any such attempts, but G1 has seen many recent<br>
> > improvements since I last looked).<br>
><br>
>   afaik all recently emptied regions (evacuated ones) are first put into<br>
> a list in the order they've been put into the collection set (i.e. the<br>
> regions that were targets for evacuation) and then bulk-added at the<br>
> head of the free region list.<br>
<br>
</div>The collection set in G1 seems to consist of regions in that order:<br>
<br>
[old gen regions +] new young gen/eden regions [+ survivor regions]<br>
<br>
where region types in brackets are optional depending on whether they<br>
are available.<br>
<br>
During that process, survivor regions are relabeled as normal young<br>
gen/eden regions. Very briefly looking through the code the reason why<br>
G1 has explicit survivor regions (it does not have from/to spaces!)<br>
seems to be for statistical reasons which may include that some tools<br>
(or the users :) probably expect the collector to have survivor regions.<br>
<br>
Imo, from a pure evacuation point of view, for g1 the survivor regions<br>
may be considered just as a fancy label for "the regions that I copied<br>
over the old contents of the eden to if an object does not meet the age<br>
threshold or the amount space I thought would be appropriate for it so<br>
that I avoid copying over too many objects and maybe ten other<br>
conditions". It's just so much shorter ;)<br>
<br>
@Kirk: this is very similar to what you described about the IBM<br>
collector.<br>
<div class="im"><br>
><br>
> I.e. to where the next region allocations will occur from. So you will<br>
> automatically get the desired effect to some extent.<br>
<br>
</div>Note that any of the regions in the collection set have just been<br>
touched, except in the probably unusual case that it has been completely<br>
empty. Maybe a preference of just recently allocated/used regions would<br>
in case of tight space improve the situation a little. I.e. it is<br>
possible that by choosing the wrong regions the gc could cause paging of<br>
other young gen regions that in turn are needed later (paged in +<br>
kicking out others all the time). Maybe someone else tried to evaluate<br>
that already?<br>
<br>
Then again, is a configuration that does not even have enough space to<br>
keep the young gen in memory a realistic one?<br>
<br>
(Just thinking loud).<br>
<span class="HOEnZb"><font color="#888888"><br>
Thomas<br>
<br>
<br>
<br>
</font></span></blockquote></div><br>