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

/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_LIR.hpp2170 // _index_and_count[i * 2]: the index into lir list where "count" ops should be inserted
2171 // _index_and_count[i * 2 + 1]: the number of ops to be inserted at index
2172 intStack _index_and_count; member in class:LIR_InsertionBuffer
2177 void append_new(int index, int count) { _index_and_count.append(index); _index_and_count.append(count); }
2178 void set_index_at(int i, int value) { _index_and_count.at_put((i << 1), value); }
2179 void set_count_at(int i, int value) { _index_and_count.at_put((i << 1) + 1, value); }
2185 LIR_InsertionBuffer() : _lir(NULL), _index_and_count(8), _ops(8) { }
2188 void init(LIR_List* lir) { assert(!initialized(), "already initialized"); _lir = lir; _index_and_count.clear(); _ops.clear(); }
2195 int number_of_insertion_points() const { return _index_and_count
[all...]

Completed in 1086 milliseconds