src/cpu/sparc/vm/nativeInst_sparc.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File hotspot Cdiff src/cpu/sparc/vm/nativeInst_sparc.cpp

src/cpu/sparc/vm/nativeInst_sparc.cpp

Print this page

        

*** 129,140 **** } void NativeCall::verify() { NativeInstruction::verify(); // make sure code pattern is actually a call instruction ! if (!is_op(long_at(0), Assembler::call_op)) { ! fatal("not a call"); } } void NativeCall::print() { tty->print_cr(INTPTR_FORMAT ": call " INTPTR_FORMAT, p2i(instruction_address()), p2i(destination())); --- 129,141 ---- } void NativeCall::verify() { NativeInstruction::verify(); // make sure code pattern is actually a call instruction ! int x = long_at(0); ! if (!is_op(x, Assembler::call_op)) { ! fatal("not a call: 0x%x @ " INTPTR_FORMAT, x, p2i(instruction_address())); } } void NativeCall::print() { tty->print_cr(INTPTR_FORMAT ": call " INTPTR_FORMAT, p2i(instruction_address()), p2i(destination()));
src/cpu/sparc/vm/nativeInst_sparc.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File