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

/openjdk7/hotspot/src/share/vm/code/
H A DexceptionHandlerTable.hpp32 // of ExceptionHandlerTable. An entry consists of a pair(bci, pco),
33 // where bci is the exception handler bci, and pco is the pc offset
49 HandlerTableEntry(int bci, int pco, int scope_depth) { argument
50 assert( 0 <= pco, "pco must be positive");
53 _pco = pco;
59 int pco() const { return _pco; } function in class:HandlerTableEntry
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_Compilation.cpp478 exception_handler_table()->add_subtable(info->pco(), bcis, scope_depths, pcos);
536 void Compilation::add_exception_handlers_for_pco(int pco, XHandlers* exception_handlers) { argument
539 tty->print_cr(" added exception scope for pco %d", pco);
543 exception_info_list()->push(new ExceptionInfo(pco, exception_handlers));
H A Dc1_Compilation.hpp158 void add_exception_handlers_for_pco(int pco, XHandlers* exception_handlers);
290 ExceptionInfo(int pco, XHandlers* exception_handlers) argument
291 : _pco(pco)
295 int pco() { return _pco; } function in class:ExceptionInfo

Completed in 37 milliseconds