Searched refs:pco (Results 1 - 6 of 6) 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
H A DexceptionHandlerTable.cpp48 if (t->pco() == catch_pco) {
94 assert(entry_for(catch_pco, handler_bcis->at(i), scope_depth)->pco() == handler_pcos->at(i), "entry not added correctly (1)");
122 tty->print_cr("catch_pco = %d (%d entries)", t->pco(), l);
125 tty->print_cr(" bci %d at scope depth %d -> pco %d", t->bci(), t->scope_depth(), t->pco());
/openjdk7/hotspot/src/share/vm/c1/
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
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_Instruction.hpp1646 void set_exception_handler_pco(int pco) { _exception_handler_pco = pco; }
/openjdk7/hotspot/src/share/vm/runtime/
H A DsharedRuntime.cpp710 return nm->code_begin() + t->pco();

Completed in 431 milliseconds