Searched refs:table_index (Results 1 - 4 of 4) sorted by relevance

/openjdk7/hotspot/src/share/vm/opto/
H A Dparse2.cpp248 int table_index() const { return _table_index; } function in class:SwitchRange
251 void setRange(jint lo, jint hi, int dest, int table_index) { argument
253 _lo = lo, _hi = hi; _dest = dest; _table_index = table_index;
255 bool adjoinRange(jint lo, jint hi, int dest, int table_index) { argument
257 if (lo == _hi+1 && dest == _dest && table_index == _table_index) {
264 void set (jint value, int dest, int table_index) { argument
265 setRange(value, value, dest, table_index);
267 bool adjoin(jint value, int dest, int table_index) { argument
268 return adjoinRange(value, value, dest, table_index);
313 int table_index local
[all...]
H A DphaseX.hpp89 Node *at(uint table_index) { argument
90 assert(table_index < _max, "Must be within table");
91 return _table[table_index];
H A DparseHelper.cpp573 void Parse::profile_switch_case(int table_index) { argument
581 if (table_index >= 0) {
582 increment_md_counter_at(md, data, MultiBranchData::case_count_offset(table_index));
H A Dparse.hpp570 void profile_switch_case(int table_index);

Completed in 37 milliseconds