Searched refs:_exception_handlers (Results 1 - 8 of 8) sorted by relevance

/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_Compilation.hpp287 XHandlers* _exception_handlers; // flat list of exception handlers covering this PC member in class:ExceptionInfo
292 , _exception_handlers(exception_handlers)
296 XHandlers* exception_handlers() { return _exception_handlers; }
H A Dc1_IR.hpp253 XHandlers* _exception_handlers; member in class:CodeEmitInfo
273 XHandlers* exception_handlers() const { return _exception_handlers; }
H A Dc1_IR.cpp190 , _exception_handlers(exception_handlers)
198 , _exception_handlers(NULL)
205 if (info->_exception_handlers != NULL) {
206 _exception_handlers = new XHandlers(info->_exception_handlers);
H A Dc1_Instruction.hpp302 XHandlers* _exception_handlers; // Flat list of exception handlers covering this instruction member in class:Instruction
388 , _exception_handlers(NULL)
421 XHandlers* exception_handlers() const { return _exception_handlers; }
453 void set_exception_handlers(XHandlers *xhandlers) { _exception_handlers = xhandlers; }
1541 BlockList _exception_handlers; // the exception handlers potentially invoked by this block
1590 , _exception_handlers(1)
1676 bool is_exception_handler(BlockBegin* b) const { return _exception_handlers.contains(b); }
1677 int number_of_exception_handlers() const { return _exception_handlers.length(); }
1678 BlockBegin* exception_handler_at(int i) const { return _exception_handlers.at(i); }
H A Dc1_Instruction.cpp681 if (!_exception_handlers.contains(b)) _exception_handlers.append(b);
/openjdk7/hotspot/src/share/vm/ci/
H A DciStreams.hpp380 ciExceptionHandler* handler = _method->_exception_handlers[_pos];
412 return _method->_exception_handlers[_pos];
H A DciMethod.cpp89 _exception_handlers = NULL;
207 _exception_handlers =
212 _exception_handlers[i] = new (arena) ciExceptionHandler(
223 _exception_handlers[_handler_count] =
H A DciMethod.hpp81 ciExceptionHandler** _exception_handlers; member in class:ciMethod

Completed in 61 milliseconds