comparison src/share/vm/runtime/globals.hpp @ 2273:2ab52cda08e5

Merge with OpenJDK.
author Thomas Wuerthinger <thomas.wuerthinger@gmail.com>
date Thu, 03 Mar 2011 19:25:53 +0100
parents 0cd39a385a72 cf16c93393f5
children 0654ee04b214
comparison
equal deleted inserted replaced
2219:0a14ff0a8cc4 2273:2ab52cda08e5
738 "use only malloc/free for allocation (no resource area/arena)") \ 738 "use only malloc/free for allocation (no resource area/arena)") \
739 \ 739 \
740 develop(bool, PrintMalloc, false, \ 740 develop(bool, PrintMalloc, false, \
741 "print all malloc/free calls") \ 741 "print all malloc/free calls") \
742 \ 742 \
743 develop(bool, PrintMallocStatistics, false, \
744 "print malloc/free statistics") \
745 \
743 develop(bool, ZapResourceArea, trueInDebug, \ 746 develop(bool, ZapResourceArea, trueInDebug, \
744 "Zap freed resource/arena space with 0xABABABAB") \ 747 "Zap freed resource/arena space with 0xABABABAB") \
745 \ 748 \
746 notproduct(bool, ZapVMHandleArea, trueInDebug, \ 749 notproduct(bool, ZapVMHandleArea, trueInDebug, \
747 "Zap freed VM handle space with 0xBCBCBCBC") \ 750 "Zap freed VM handle space with 0xBCBCBCBC") \
2664 product(bool, AggressiveOpts, false, \ 2667 product(bool, AggressiveOpts, false, \
2665 "Enable aggressive optimizations - see arguments.cpp") \ 2668 "Enable aggressive optimizations - see arguments.cpp") \
2666 \ 2669 \
2667 product(bool, UseStringCache, false, \ 2670 product(bool, UseStringCache, false, \
2668 "Enable String cache capabilities on String.java") \ 2671 "Enable String cache capabilities on String.java") \
2669 \
2670 /* byte strings */ \
2671 product(bool, UseCompressedStrings, false, \
2672 "Enable byte-valued strings") \
2673 \
2674 product(bool, SpecialStringCompress, true, \
2675 "special version of string compress") \
2676 \
2677 product(bool, SpecialStringInflate, true, \
2678 "special version of string inflate") \
2679 \
2680 product(bool, SpecialStringCompareToCC, true, \
2681 "special version of string compareToCC") \
2682 \
2683 product(bool, SpecialStringIndexOfCC, true, \
2684 "special version of string indexOfCC") \
2685 \
2686 product(bool, SpecialStringEqualsCC, true, \
2687 "special version of string equalsCC") \
2688 \ 2672 \
2689 /* statistics */ \ 2673 /* statistics */ \
2690 develop(bool, CountCompiledCalls, false, \ 2674 develop(bool, CountCompiledCalls, false, \
2691 "counts method invocations") \ 2675 "counts method invocations") \
2692 \ 2676 \
3693 "Size of read-write space in permanent generation (in bytes)") \ 3677 "Size of read-write space in permanent generation (in bytes)") \
3694 \ 3678 \
3695 product(uintx, SharedReadOnlySize, 10*M, \ 3679 product(uintx, SharedReadOnlySize, 10*M, \
3696 "Size of read-only space in permanent generation (in bytes)") \ 3680 "Size of read-only space in permanent generation (in bytes)") \
3697 \ 3681 \
3698 product(uintx, SharedMiscDataSize, 4*M, \ 3682 product(uintx, SharedMiscDataSize, NOT_LP64(4*M) LP64_ONLY(5*M), \
3699 "Size of the shared data area adjacent to the heap (in bytes)") \ 3683 "Size of the shared data area adjacent to the heap (in bytes)") \
3700 \ 3684 \
3701 product(uintx, SharedMiscCodeSize, 4*M, \ 3685 product(uintx, SharedMiscCodeSize, 4*M, \
3702 "Size of the shared code area adjacent to the heap (in bytes)") \ 3686 "Size of the shared code area adjacent to the heap (in bytes)") \
3703 \ 3687 \