comparison src/share/vm/compiler/compileBroker.cpp @ 14957:4062efea018b

Remove compiled method call intrinsic.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Thu, 03 Apr 2014 17:47:29 +0200
parents 4ca6dc0799b6
children a20be10ad437
comparison
equal deleted inserted replaced
14953:5a87cbdd8a09 14957:4062efea018b
1253 const char* comment, Thread* THREAD) { 1253 const char* comment, Thread* THREAD) {
1254 // make sure arguments make sense 1254 // make sure arguments make sense
1255 assert(method->method_holder()->oop_is_instance(), "not an instance method"); 1255 assert(method->method_holder()->oop_is_instance(), "not an instance method");
1256 assert(osr_bci == InvocationEntryBci || (0 <= osr_bci && osr_bci < method->code_size()), "bci out of range"); 1256 assert(osr_bci == InvocationEntryBci || (0 <= osr_bci && osr_bci < method->code_size()), "bci out of range");
1257 assert(!method->is_abstract() && (osr_bci == InvocationEntryBci || !method->is_native()), "cannot compile abstract/native methods"); 1257 assert(!method->is_abstract() && (osr_bci == InvocationEntryBci || !method->is_native()), "cannot compile abstract/native methods");
1258 assert(!method->method_holder()->is_not_initialized() || method->intrinsic_id() == vmIntrinsics::_CompilerToVMImpl_executeCompiledMethod, "method holder must be initialized"); 1258 assert(!method->method_holder()->is_not_initialized(), "method holder must be initialized");
1259 // allow any levels for WhiteBox 1259 // allow any levels for WhiteBox
1260 assert(WhiteBoxAPI || TieredCompilation || comp_level == CompLevel_highest_tier, "only CompLevel_highest_tier must be used in non-tiered"); 1260 assert(WhiteBoxAPI || TieredCompilation || comp_level == CompLevel_highest_tier, "only CompLevel_highest_tier must be used in non-tiered");
1261 // return quickly if possible 1261 // return quickly if possible
1262 1262
1263 // lock, make sure that the compilation 1263 // lock, make sure that the compilation