Searched refs:exception_oop (Results 1 - 7 of 7) sorted by relevance

/openjdk7/hotspot/src/share/vm/opto/
H A Druntime.cpp944 static void trace_exception(oop exception_oop, address exception_pc, const char* msg) PRODUCT_RETURN;
951 // Do not confuse exception_oop with pending_exception. The exception_oop
955 assert(thread->exception_oop() != NULL, "exception oop is found");
958 Handle exception(thread, thread->exception_oop());
1321 static void trace_exception(oop exception_oop, address exception_pc, const char* msg) { argument
1325 exception_oop->print_value();
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dc1_Runtime1_x86.cpp647 const Register exception_oop = rax; local
665 __ movptr(exception_oop, Address(thread, Thread::pending_exception_offset()));
702 __ verify_not_null_oop(exception_oop);
725 __ movptr(Address(thread, JavaThread::exception_oop_offset()), exception_oop); local
776 const Register exception_oop = rax; local
777 // callee-saved copy of exception_oop during runtime call
806 // save exception_oop in callee-saved register to preserve it during runtime calls
807 __ verify_not_null_oop(exception_oop);
808 __ movptr(exception_oop_callee_saved, exception_oop);
825 __ movptr(exception_oop, exception_oop_callee_save
[all...]
H A DstubGenerator_x86_32.cpp396 const Register exception_oop = rax; local
429 __ movptr(exception_oop, Address(thread, Thread::pending_exception_offset()));
435 __ testptr(exception_oop, exception_oop);
443 __ verify_oop(exception_oop);
/openjdk7/hotspot/src/share/vm/interpreter/
H A DinterpreterRuntime.cpp288 oop exception_oop = klass->allocate_instance(CHECK_(exception)); local
289 exception = Handle(THREAD, exception_oop);
/openjdk7/hotspot/src/share/vm/runtime/
H A DsharedRuntime.cpp741 oop exception_oop = instanceKlass::cast(k)->allocate_instance(CHECK); variable
742 Handle exception (thread, exception_oop);
H A Dthread.hpp1243 oop exception_oop() const { return _exception_oop; } function in class:JavaThread
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_Runtime1.cpp578 oop exception = thread->exception_oop();

Completed in 74 milliseconds