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

/openjdk7/hotspot/src/share/vm/utilities/
H A Dexceptions.hpp56 // The ThreadShadow class is a helper class to access the _pending_exception
64 oop _pending_exception; // Thread has gc actions. member in class:ThreadShadow
67 friend void check_ThreadShadow(); // checks _pending_exception offset
78 oop pending_exception() const { return _pending_exception; }
79 bool has_pending_exception() const { return _pending_exception != NULL; }
84 static ByteSize pending_exception_offset() { return byte_offset_of(ThreadShadow, _pending_exception); }
92 ThreadShadow() : _pending_exception(NULL),
H A Dexceptions.cpp52 const ByteSize offset1 = byte_offset_of(ThreadShadow, _pending_exception);
54 if (offset1 != offset2) fatal("ThreadShadow::_pending_exception is not positioned correctly");
60 _pending_exception = exception;
67 if (_pending_exception != NULL) {
69 _pending_exception->print();
72 _pending_exception = NULL;
/openjdk7/hotspot/src/share/vm/runtime/
H A Dthread.cpp826 f->do_oop((oop*)&_pending_exception);
H A DvmStructs.cpp907 nonstatic_field(ThreadShadow, _pending_exception, oop) \

Completed in 54 milliseconds