Searched defs:scope_depth (Results 1 - 2 of 2) sorted by relevance

/openjdk7/hotspot/src/share/vm/code/
H A DexceptionHandlerTable.hpp49 HandlerTableEntry(int bci, int pco, int scope_depth) { argument
51 assert( 0 <= scope_depth, "scope_depth must be positive");
54 _scope_depth = scope_depth;
60 int scope_depth() const { return _scope_depth; } function in class:HandlerTableEntry
121 HandlerTableEntry* entry_for(int catch_pco, int handler_bci, int scope_depth) const;
/openjdk7/hotspot/src/share/vm/runtime/
H A DsharedRuntime.cpp637 int scope_depth = 0; local
671 ++scope_depth;
680 HandlerTableEntry *t = table.entry_for(catch_pco, handler_bci, scope_depth);

Completed in 67 milliseconds