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

/openjdk7/hotspot/src/share/vm/oops/
H A DgenerateOopMap.hpp57 GrowableArray<intptr_t> * _jsrs; // List of return addresses (bytecode index) member in class:RetTableEntry
60 RetTableEntry(int target, RetTableEntry *next) { _target_bci=target; _jsrs = new GrowableArray<intptr_t>(_init_nof_jsrs); _next = next; }
64 int nof_jsrs() const { return _jsrs->length(); }
65 int jsrs(int i) const { assert(i>=0 && i<nof_jsrs(), "Index out of bounds"); return _jsrs->at(i); }
68 void add_jsr (int return_bci) { _jsrs->append(return_bci); }
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DGenerateOopMap.java171 private List/*<int>*/ _jsrs; // List of return addresses (bytecode index) field in class:GenerateOopMap.RetTableEntry
176 _jsrs = new ArrayList(_init_nof_jsrs);
182 int nofJsrs() { return _jsrs.size(); }
183 int jsrs(int i) { return ((Integer) _jsrs.get(i)).intValue(); }
186 void addJsr (int return_bci) { _jsrs.add(new Integer(return_bci)); }
195 _jsrs.set(k, new Integer(jsr+delta));
/openjdk7/hotspot/src/share/vm/ci/
H A DciTypeFlow.hpp533 JsrSet* _jsrs; member in class:ciTypeFlow::Block
585 JsrSet* jsrs() const { return _jsrs; }
589 int backedge_copy_count() const { return outer()->backedge_copy_count(ciblock()->index(), _jsrs); }
639 return _jsrs->is_compatible_with(other);
649 _jsrs->copy_into(copy);

Completed in 43 milliseconds