comparison src/share/vm/runtime/globals.hpp @ 9088:89e4d67fdd2a

Merge
author Gilles Duboscq <duboscq@ssw.jku.at>
date Fri, 12 Apr 2013 14:05:42 +0200
parents b9a918201d47 83f27710f5f7
children b78686983a75
comparison
equal deleted inserted replaced
9037:b008f40b67d0 9088:89e4d67fdd2a
2138 "How far ahead to prefetch scan area (<= 0 means off)") \ 2138 "How far ahead to prefetch scan area (<= 0 means off)") \
2139 \ 2139 \
2140 product(intx, PrefetchFieldsAhead, -1, \ 2140 product(intx, PrefetchFieldsAhead, -1, \
2141 "How many fields ahead to prefetch in oop scan (<= 0 means off)") \ 2141 "How many fields ahead to prefetch in oop scan (<= 0 means off)") \
2142 \ 2142 \
2143 diagnostic(bool, VerifyDuringStartup, false, \
2144 "Verify memory system before executing any Java code " \
2145 "during VM initialization") \
2146 \
2143 diagnostic(bool, VerifyBeforeExit, trueInDebug, \ 2147 diagnostic(bool, VerifyBeforeExit, trueInDebug, \
2144 "Verify system before exiting") \ 2148 "Verify system before exiting") \
2145 \ 2149 \
2146 diagnostic(bool, VerifyBeforeGC, false, \ 2150 diagnostic(bool, VerifyBeforeGC, false, \
2147 "Verify memory system before GC") \ 2151 "Verify memory system before GC") \
3682 "Enable internal testing APIs") \ 3686 "Enable internal testing APIs") \
3683 \ 3687 \
3684 product(bool, PrintGCCause, true, \ 3688 product(bool, PrintGCCause, true, \
3685 "Include GC cause in GC logging") \ 3689 "Include GC cause in GC logging") \
3686 \ 3690 \
3687 product(bool, AllowNonVirtualCalls, false, \ 3691 product(bool , AllowNonVirtualCalls, false, \
3688 "Obey the ACC_SUPER flag and allow invokenonvirtual calls") 3692 "Obey the ACC_SUPER flag and allow invokenonvirtual calls") \
3693 \
3694 experimental(uintx, ArrayAllocatorMallocLimit, \
3695 SOLARIS_ONLY(64*K) NOT_SOLARIS(max_uintx), \
3696 "Allocation less than this value will be allocated " \
3697 "using malloc. Larger allocations will use mmap.")
3689 3698
3690 /* 3699 /*
3691 * Macros for factoring of globals 3700 * Macros for factoring of globals
3692 */ 3701 */
3693 3702