equal
deleted
inserted
replaced
75 method->is_constant_getter()) { |
75 method->is_constant_getter()) { |
76 return true; |
76 return true; |
77 } |
77 } |
78 #if INCLUDE_JVMCI |
78 #if INCLUDE_JVMCI |
79 if (UseJVMCICompiler) { |
79 if (UseJVMCICompiler) { |
80 if (TieredCompilation && CompileBroker::compiler(CompLevel_full_optimization) != NULL && |
80 AbstractCompiler* comp = CompileBroker::compiler(CompLevel_full_optimization); |
81 CompileBroker::compiler(CompLevel_full_optimization)->is_trivial(method)) { |
81 if (TieredCompilation && comp != NULL && comp->is_trivial(method)) { |
82 return true; |
82 return true; |
83 } |
83 } |
84 } |
84 } |
85 #endif |
85 #endif |
86 if (method->has_loops() || method->code_size() >= 15) { |
86 if (method->has_loops() || method->code_size() >= 15) { |