提交 be6bdedc 编写于 作者: N never

7034513: enable fast accessors and empty methods for ZERO and -Xint

Reviewed-by: kvn, iveresov
上级 410d0079
...@@ -962,6 +962,16 @@ void Arguments::set_mode_flags(Mode mode) { ...@@ -962,6 +962,16 @@ void Arguments::set_mode_flags(Mode mode) {
UseCompiler = true; UseCompiler = true;
UseLoopCounter = 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 - // Default values may be platform/compiler dependent -
// use the saved values // use the saved values
ClipInlining = Arguments::_ClipInlining; ClipInlining = Arguments::_ClipInlining;
......
...@@ -2726,10 +2726,10 @@ class CommandLineFlags { ...@@ -2726,10 +2726,10 @@ class CommandLineFlags {
product(bool, UseLoopCounter, true, \ product(bool, UseLoopCounter, true, \
"Increment invocation counter on backward branch") \ "Increment invocation counter on backward branch") \
\ \
product(bool, UseFastEmptyMethods, false, \ product(bool, UseFastEmptyMethods, true, \
"Use fast method entry code for empty methods") \ "Use fast method entry code for empty methods") \
\ \
product(bool, UseFastAccessorMethods, false, \ product(bool, UseFastAccessorMethods, true, \
"Use fast method entry code for accessor methods") \ "Use fast method entry code for accessor methods") \
\ \
product_pd(bool, UseOnStackReplacement, \ product_pd(bool, UseOnStackReplacement, \
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册