Searched refs:_use_pos_and_kinds (Results 1 - 2 of 2) sorted by relevance

/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_LinearScan.cpp4073 _use_pos_and_kinds(12),
4262 for (int i = _use_pos_and_kinds.length() - 2; i >= 0; i -= 2) {
4263 if (_use_pos_and_kinds.at(i + 1) >= min_use_kind) {
4264 return _use_pos_and_kinds.at(i);
4273 for (int i = _use_pos_and_kinds.length() - 2; i >= 0; i -= 2) {
4274 if (_use_pos_and_kinds.at(i) >= from && _use_pos_and_kinds.at(i + 1) >= min_use_kind) {
4275 return _use_pos_and_kinds.at(i);
4284 for (int i = _use_pos_and_kinds.length() - 2; i >= 0; i -= 2) {
4285 if (_use_pos_and_kinds
[all...]
H A Dc1_LinearScan.hpp521 intStack _use_pos_and_kinds; // sorted list of use-positions and their according use-kinds member in class:Interval
562 int num_use_positions() const { return _use_pos_and_kinds.length() / 2; }
622 void remove_first_use_pos() { _use_pos_and_kinds.truncate(_use_pos_and_kinds.length() - 2); }

Completed in 47 milliseconds