Searched defs:pending_exception (Results 1 - 3 of 3) sorted by relevance

/openjdk7/hotspot/src/share/vm/utilities/
H A Dexceptions.hpp78 oop pending_exception() const { return _pending_exception; } function in class:ThreadShadow
193 #define PENDING_EXCEPTION (((ThreadShadow*)THREAD)->pending_exception())
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkTopLevelBlock.cpp400 Value *pending_exception = get_pending_exception(); local
402 handle_exception(pending_exception, EX_CHECK_FULL);
427 Value *pending_exception = get_pending_exception(); local
429 handle_exception(pending_exception, EX_CHECK_FULL);
442 Value *pending_exception = get_pending_exception(); local
444 builder()->CreateICmpEQ(pending_exception, LLVMValue::null()),
457 handle_exception(pending_exception, action);
1559 Value *pending_exception = get_pending_exception(); local
1561 handle_exception(pending_exception, EX_CHECK_FULL);
/openjdk7/hotspot/src/share/vm/prims/
H A Djvm.cpp1223 Handle pending_exception; variable
1235 pending_exception = Handle(THREAD, PENDING_EXCEPTION);
1238 if ( pending_exception->is_a(SystemDictionary::Exception_klass()) &&
1239 !pending_exception->is_a(SystemDictionary::RuntimeException_klass())) {
1241 JavaCallArguments args(pending_exception);
1248 if (pending_exception.not_null()) THROW_OOP_0(pending_exception());

Completed in 3009 milliseconds