Searched refs:exceptionOop (Results 1 - 4 of 4) sorted by relevance

/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_LIRAssembler.hpp229 void throw_op(LIR_Opr exceptionPC, LIR_Opr exceptionOop, CodeEmitInfo* info);
230 void unwind_op(LIR_Opr exceptionOop);
H A Dc1_LIR.hpp2020 void throw_exception(LIR_Opr exceptionPC, LIR_Opr exceptionOop, CodeEmitInfo* info) { argument
2021 append(new LIR_Op2(lir_throw, exceptionPC, exceptionOop, LIR_OprFact::illegalOpr, info));
2023 void unwind_exception(LIR_Opr exceptionOop) { argument
2024 append(new LIR_Op1(lir_unwind, exceptionOop));
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dc1_LIRAssembler_sparc.cpp2035 void LIR_Assembler::throw_op(LIR_Opr exceptionPC, LIR_Opr exceptionOop, CodeEmitInfo* info) { argument
2036 assert(exceptionOop->as_register() == Oexception, "should match");
2039 info->add_register_oop(exceptionOop);
2053 void LIR_Assembler::unwind_op(LIR_Opr exceptionOop) { argument
2054 assert(exceptionOop->as_register() == Oexception, "should match");
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dc1_LIRAssembler_x86.cpp2911 void LIR_Assembler::throw_op(LIR_Opr exceptionPC, LIR_Opr exceptionOop, CodeEmitInfo* info) { argument
2912 assert(exceptionOop->as_register() == rax, "must match");
2917 info->add_register_oop(exceptionOop);
2941 void LIR_Assembler::unwind_op(LIR_Opr exceptionOop) { argument
2942 assert(exceptionOop->as_register() == rax, "must match");

Completed in 73 milliseconds