Searched defs:jsrs (Results 1 - 4 of 4) sorted by relevance

/openjdk7/hotspot/src/share/vm/oops/
H A DgenerateOopMap.hpp55 static int _init_nof_jsrs; // Default size of jsrs list
65 int jsrs(int i) const { assert(i>=0 && i<nof_jsrs(), "Index out of bounds"); return _jsrs->at(i); } function in class:RetTableEntry
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DGenerateOopMap.java169 private static int _init_nof_jsrs; // Default size of jsrs list
183 int jsrs(int i) { return ((Integer) _jsrs.get(i)).intValue(); } method in class:GenerateOopMap.RetTableEntry
193 int jsr = jsrs(k);
2022 int target_bci = rtEnt.jsrs(i);
/openjdk7/hotspot/src/share/vm/ci/
H A DciTypeFlow.cpp66 void ciTypeFlow::JsrSet::copy_into(JsrSet* jsrs) { argument
68 jsrs->_set->clear();
70 jsrs->_set->append(_set->at(i));
220 // Ret-state underflow: Hit a ret w/o any previous jsrs. Bail out.
370 JsrSet* jsrs = new JsrSet(NULL, 16); local
371 Block* non_osr_block = non_osr_flow->existing_block_at(start_bci(), jsrs);
384 Block* block = block_at(non_osr_start, jsrs);
386 flow_block(block, state, jsrs);
1583 ciTypeFlow::JsrSet* jsrs) {
1590 new (outer->arena()) JsrSet(outer->arena(), jsrs
1581 Block(ciTypeFlow* outer, ciBlock *ciblk, ciTypeFlow::JsrSet* jsrs) argument
1625 successors(ciBytecodeStream* str, ciTypeFlow::StateVector* state, ciTypeFlow::JsrSet* jsrs) argument
2035 block_at(int bci, ciTypeFlow::JsrSet* jsrs, CreateOption option) argument
2294 flow_block(ciTypeFlow::Block* block, ciTypeFlow::StateVector* state, ciTypeFlow::JsrSet* jsrs) argument
2800 get_block_for(int ciBlockIndex, ciTypeFlow::JsrSet* jsrs, CreateOption option) argument
[all...]
H A DciTypeFlow.hpp130 void copy_into(JsrSet* jsrs);
569 Block(ciTypeFlow* outer, ciBlock* ciblk, JsrSet* jsrs);
585 JsrSet* jsrs() const { return _jsrs; } function in class:ciTypeFlow::Block
614 JsrSet* jsrs);
827 // with jsrs.
831 Block* get_block_for(int ciBlockIndex, JsrSet* jsrs, CreateOption option = create_public_copy);
834 int backedge_copy_count(int ciBlockIndex, JsrSet* jsrs) const;
837 // with jsrs, or NULL if there is none.

Completed in 49 milliseconds