comparison src/share/vm/interpreter/interpreter.cpp @ 22298:c28cb37b2e1d

Rename JVMCI to INCLUDE_JVMCI.
author twisti
date Wed, 22 Jul 2015 08:56:03 -0700
parents be896a1983c0
children
comparison
equal deleted inserted replaced
22297:571202729bbf 22298:c28cb37b2e1d
407 // Note: Bytecodes::_athrow is a special case in that it does not return 407 // Note: Bytecodes::_athrow is a special case in that it does not return
408 // Interpreter::deopt_entry(vtos, 0) like others 408 // Interpreter::deopt_entry(vtos, 0) like others
409 address AbstractInterpreter::deopt_reexecute_entry(Method* method, address bcp) { 409 address AbstractInterpreter::deopt_reexecute_entry(Method* method, address bcp) {
410 assert(method->contains(bcp), "just checkin'"); 410 assert(method->contains(bcp), "just checkin'");
411 Bytecodes::Code code = Bytecodes::java_code_at(method, bcp); 411 Bytecodes::Code code = Bytecodes::java_code_at(method, bcp);
412 #if defined(COMPILER1) || defined(JVMCI) 412 #if defined(COMPILER1) || INCLUDE_JVMCI
413 if(code == Bytecodes::_athrow ) { 413 if(code == Bytecodes::_athrow ) {
414 return Interpreter::rethrow_exception_entry(); 414 return Interpreter::rethrow_exception_entry();
415 } 415 }
416 #endif /* COMPILER1 */ 416 #endif /* COMPILER1 */
417 return Interpreter::deopt_entry(vtos, 0); 417 return Interpreter::deopt_entry(vtos, 0);