comparison src/share/vm/runtime/globals.hpp @ 3910:d968f546734e

Merge
author iveresov
date Wed, 07 Sep 2011 11:52:00 -0700
parents 3cd0157e1d4d 2f9b79ddb05c
children f08d439fab8c
comparison
equal deleted inserted replaced
3890:4668545121b8 3910:d968f546734e
1983 "Print various TLAB related information") \ 1983 "Print various TLAB related information") \
1984 \ 1984 \
1985 product(bool, TLABStats, true, \ 1985 product(bool, TLABStats, true, \
1986 "Print various TLAB related information") \ 1986 "Print various TLAB related information") \
1987 \ 1987 \
1988 product(bool, UseBlockZeroing, false, \
1989 "Use special cpu instructions for block zeroing") \
1990 \
1991 product(intx, BlockZeroingLowLimit, 2048, \
1992 "Minimum size in bytes when block zeroing will be used") \
1993 \
1994 product(bool, UseBlockCopy, false, \
1995 "Use special cpu instructions for block copy") \
1996 \
1997 product(intx, BlockCopyLowLimit, 2048, \
1998 "Minimum size in bytes when block copy will be used") \
1999 \
1988 product(bool, PrintRevisitStats, false, \ 2000 product(bool, PrintRevisitStats, false, \
1989 "Print revisit (klass and MDO) stack related information") \ 2001 "Print revisit (klass and MDO) stack related information") \
1990 \ 2002 \
1991 EMBEDDED_ONLY(product(bool, LowMemoryProtection, true, \ 2003 EMBEDDED_ONLY(product(bool, LowMemoryProtection, true, \
1992 "Enable LowMemoryProtection")) \ 2004 "Enable LowMemoryProtection")) \
2915 product(intx, AllocatePrefetchInstr, 0, \ 2927 product(intx, AllocatePrefetchInstr, 0, \
2916 "Prefetch instruction to prefetch ahead of allocation pointer") \ 2928 "Prefetch instruction to prefetch ahead of allocation pointer") \
2917 \ 2929 \
2918 product(intx, ReadPrefetchInstr, 0, \ 2930 product(intx, ReadPrefetchInstr, 0, \
2919 "Prefetch instruction to prefetch ahead") \ 2931 "Prefetch instruction to prefetch ahead") \
2932 \
2933 product(uintx, ArraycopySrcPrefetchDistance, 0, \
2934 "Distance to prefetch source array in arracopy") \
2935 \
2936 product(uintx, ArraycopyDstPrefetchDistance, 0, \
2937 "Distance to prefetch destination array in arracopy") \
2920 \ 2938 \
2921 /* deoptimization */ \ 2939 /* deoptimization */ \
2922 develop(bool, TraceDeoptimization, false, \ 2940 develop(bool, TraceDeoptimization, false, \
2923 "Trace deoptimization") \ 2941 "Trace deoptimization") \
2924 \ 2942 \