# HG changeset patch # User never # Date 1302130970 25200 # Node ID 98c560260039766e907829f8e66858e4f9e45f67 # Parent 527977d4f740456a7cc0ec2ac677e333107a76df 7034513: enable fast accessors and empty methods for ZERO and -Xint Reviewed-by: kvn, iveresov diff -r 527977d4f740 -r 98c560260039 src/share/vm/runtime/arguments.cpp --- a/src/share/vm/runtime/arguments.cpp Tue Apr 05 19:16:52 2011 -0700 +++ b/src/share/vm/runtime/arguments.cpp Wed Apr 06 16:02:50 2011 -0700 @@ -962,6 +962,16 @@ UseCompiler = true; UseLoopCounter = true; +#ifndef ZERO + // Turn these off for mixed and comp. Leave them on for Zero. + if (FLAG_IS_DEFAULT(UseFastAccessorMethods)) { + UseFastAccessorMethods = mode == _int; + } + if (FLAG_IS_DEFAULT(UseFastEmptyMethods)) { + UseFastEmptyMethods = mode == _int; + } +#endif + // Default values may be platform/compiler dependent - // use the saved values ClipInlining = Arguments::_ClipInlining; diff -r 527977d4f740 -r 98c560260039 src/share/vm/runtime/globals.hpp --- a/src/share/vm/runtime/globals.hpp Tue Apr 05 19:16:52 2011 -0700 +++ b/src/share/vm/runtime/globals.hpp Wed Apr 06 16:02:50 2011 -0700 @@ -2726,10 +2726,10 @@ product(bool, UseLoopCounter, true, \ "Increment invocation counter on backward branch") \ \ - product(bool, UseFastEmptyMethods, false, \ + product(bool, UseFastEmptyMethods, true, \ "Use fast method entry code for empty methods") \ \ - product(bool, UseFastAccessorMethods, false, \ + product(bool, UseFastAccessorMethods, true, \ "Use fast method entry code for accessor methods") \ \ product_pd(bool, UseOnStackReplacement, \