comparison src/share/vm/runtime/globals.hpp @ 686:a9d9d7e06593

Merge
author trims
date Thu, 02 Apr 2009 17:01:00 -0700
parents 4e35bfab60a5
children 922aedc96ef5 e5b0439ef4ae
comparison
equal deleted inserted replaced
663:032c6af894da 686:a9d9d7e06593
45 define_pd_global(intx, Tier4BackEdgeThreshold, 0); 45 define_pd_global(intx, Tier4BackEdgeThreshold, 0);
46 46
47 define_pd_global(intx, OnStackReplacePercentage, 0); 47 define_pd_global(intx, OnStackReplacePercentage, 0);
48 define_pd_global(bool, ResizeTLAB, false); 48 define_pd_global(bool, ResizeTLAB, false);
49 define_pd_global(intx, FreqInlineSize, 0); 49 define_pd_global(intx, FreqInlineSize, 0);
50 define_pd_global(intx, InlineSmallCode, 0);
50 define_pd_global(intx, NewSizeThreadIncrease, 4*K); 51 define_pd_global(intx, NewSizeThreadIncrease, 4*K);
51 define_pd_global(intx, NewRatio, 4); 52 define_pd_global(intx, NewRatio, 4);
52 define_pd_global(intx, InlineClassNatives, true); 53 define_pd_global(intx, InlineClassNatives, true);
53 define_pd_global(intx, InlineUnsafeOps, true); 54 define_pd_global(intx, InlineUnsafeOps, true);
54 define_pd_global(intx, InitialCodeCacheSize, 160*K); 55 define_pd_global(intx, InitialCodeCacheSize, 160*K);
488 "special version of string compareTo") \ 489 "special version of string compareTo") \
489 \ 490 \
490 develop(bool, SpecialStringIndexOf, true, \ 491 develop(bool, SpecialStringIndexOf, true, \
491 "special version of string indexOf") \ 492 "special version of string indexOf") \
492 \ 493 \
493 product(bool, SpecialArraysEquals, false, \ 494 develop(bool, SpecialStringEquals, true, \
495 "special version of string equals") \
496 \
497 develop(bool, SpecialArraysEquals, true, \
494 "special version of Arrays.equals(char[],char[])") \ 498 "special version of Arrays.equals(char[],char[])") \
499 \
500 product(bool, UseSSE42Intrinsics, false, \
501 "SSE4.2 versions of intrinsics") \
495 \ 502 \
496 develop(bool, TraceCallFixup, false, \ 503 develop(bool, TraceCallFixup, false, \
497 "traces all call fixups") \ 504 "traces all call fixups") \
498 \ 505 \
499 develop(bool, DeoptimizeALot, false, \ 506 develop(bool, DeoptimizeALot, false, \
1314 "Print (survivor space) promotion labs sizing decisions") \ 1321 "Print (survivor space) promotion labs sizing decisions") \
1315 \ 1322 \
1316 product(intx, ParGCArrayScanChunk, 50, \ 1323 product(intx, ParGCArrayScanChunk, 50, \
1317 "Scan a subset and push remainder, if array is bigger than this") \ 1324 "Scan a subset and push remainder, if array is bigger than this") \
1318 \ 1325 \
1326 product(bool, ParGCTrimOverflow, true, \
1327 "Eagerly trim the overflow lists (useful for UseCompressedOops") \
1328 \
1319 notproduct(bool, ParGCWorkQueueOverflowALot, false, \ 1329 notproduct(bool, ParGCWorkQueueOverflowALot, false, \
1320 "Whether we should simulate work queue overflow in ParNew") \ 1330 "Whether we should simulate work queue overflow in ParNew") \
1321 \ 1331 \
1322 notproduct(uintx, ParGCWorkQueueOverflowInterval, 1000, \ 1332 notproduct(uintx, ParGCWorkQueueOverflowInterval, 1000, \
1323 "An `interval' counter that determines how frequently" \ 1333 "An `interval' counter that determines how frequently" \
2614 "maximum number of nested calls that are inlined") \ 2624 "maximum number of nested calls that are inlined") \
2615 \ 2625 \
2616 develop(intx, MaxRecursiveInlineLevel, 1, \ 2626 develop(intx, MaxRecursiveInlineLevel, 1, \
2617 "maximum number of nested recursive calls that are inlined") \ 2627 "maximum number of nested recursive calls that are inlined") \
2618 \ 2628 \
2619 product(intx, InlineSmallCode, 1000, \ 2629 product_pd(intx, InlineSmallCode, \
2620 "Only inline already compiled methods if their code size is " \ 2630 "Only inline already compiled methods if their code size is " \
2621 "less than this") \ 2631 "less than this") \
2622 \ 2632 \
2623 product(intx, MaxInlineSize, 35, \ 2633 product(intx, MaxInlineSize, 35, \
2624 "maximum bytecode size of a method to be inlined") \ 2634 "maximum bytecode size of a method to be inlined") \