comparison src/share/vm/c1x/c1x_CodeInstaller.cpp @ 2182:9569fdf936ff

Made merge compile.
author Thomas Wuerthinger <wuerthinger@ssw.jku.at>
date Wed, 16 Feb 2011 14:21:52 +0100
parents 9508a52cbd32
children 999f8086cc4f
comparison
equal deleted inserted replaced
2181:d25d4ca69222 2182:9569fdf936ff
407 jint bci = CiCodePos::bci(code_pos); 407 jint bci = CiCodePos::bci(code_pos);
408 bool reexecute; 408 bool reexecute;
409 if (bci == -1) { 409 if (bci == -1) {
410 reexecute = false; 410 reexecute = false;
411 } else { 411 } else {
412 Bytecodes::Code code = Bytecodes::java_code_at(method->bcp_from(bci)); 412 Bytecodes::Code code = Bytecodes::java_code_at(method, method->bcp_from(bci));
413 reexecute = Interpreter::bytecode_should_reexecute(code); 413 reexecute = Interpreter::bytecode_should_reexecute(code);
414 } 414 }
415 415
416 if (TraceC1X >= 2) { 416 if (TraceC1X >= 2) {
417 tty->print_cr("Recording scope pc_offset=%d bci=%d frame=%d", pc_offset, bci, frame); 417 tty->print_cr("Recording scope pc_offset=%d bci=%d frame=%d", pc_offset, bci, frame);