[PATCH] 8037924 CMM Testing: Check Min/MaxHeapFreeRatio flags allows to shrink the heap when using ParallelGC
Igor Ignatyev
igor.ignatyev at oracle.com
Thu Mar 27 22:29:13 UTC 2014
Andrey,
you've placed the wrong link, the correct one is
http://cr.openjdk.java.net/~jwilhelm/8037924/webrev.02/.
And as I said in 8037925:
> You don't need to use enum here and string constant (Labels.*) in TestDynShrinkHeap. I've mistakenly think that MemoryUsagePrinter uses String argument to change its own behavior. Sorry for useless extra work.
MemoryUsagePrinter:
> 44 float freeratio = 1f - (float) memusage.getUsed() / memusage.getCommitted();
I'd prefer '1.0f', but it's only my fad, it's not necessary to change.
TestDynShrinkHeap:
> 96 StringBuilder strb = new StringBuilder("committed heap size under pressure is not less than committed full heap size, heap hasn't been shrunk?");
> 97 strb.append(System.getProperty("line.separator"));
> 98 strb.append(MinFreeRatioFlagName + " = " + minHeapFreeValue);
> 99 strb.append(System.getProperty("line.separator"));
> 100 strb.append(MaxFreeRatioFlagName + " = " + maxHeapFreeValue);
> 101 throw new RuntimeException(strb.toString());
it can be replaced by:
throw new RuntimeException(String.format("committed heap size under
pressure is not less than committed full heap size, heap hasn't been
shrunk?%n%s=%d%n%s=%n",MinFreeRatioFlagName,minHeapFreeValue,MaxFreeRatioFlagName,maxHeapFreeValue));
but it's also not necessary.
Thanks
Igor
On 03/27/2014 04:42 PM, Andrey Zakharov wrote:
> Here is updated webrev with string constants:
> http://cr.openjdk.java.net/~jwilhelm/8037925/webrev.02/
>
> Thanks.
>
>
> On 26.03.2014 20:02, Andrey Zakharov wrote:
>> Test to check that ParallelGC respect dynamic change of MaxFreeRatio
>> and shrinks heap.
>> webrev: http://cr.openjdk.java.net/~jwilhelm/8037924/webrev/
>> bug: https://bugs.openjdk.java.net/browse/JDK-8037924
>>
>> Thanks.
>>
>
More information about the hotspot-gc-dev
mailing list