Searched refs:fixedKind (Results 1 - 3 of 3) sorted by relevance

/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_LinearScan.hpp75 fixedKind = 0, // interval pre-colored by LIR_Generator enumerator in enum:IntervalKind
78 firstKind = fixedKind
665 void check_bounds(IntervalKind kind) { assert(kind >= fixedKind && kind <= anyKind, "invalid interval_kind"); }
H A Dc1_LinearScan.cpp2388 for (Interval* interval = iw->active_first(fixedKind); interval != Interval::end(); interval = interval->next()) {
3296 for (Interval* interval = iw->active_first(fixedKind);
4593 _unhandled_first[fixedKind] = unhandled_fixed_first;
4595 _active_first[fixedKind] = Interval::end();
4596 _inactive_first[fixedKind] = Interval::end();
4726 Interval* fixed = _unhandled_first[fixedKind];
4730 kind = fixed != Interval::end() && fixed->from() <= any->from() ? fixedKind : anyKind;
4732 assert (kind == fixedKind && fixed->from() <= any->from() ||
4734 assert(any == Interval::end() || fixed == Interval::end() || any->from() != fixed->from() || kind == fixedKind, "if fixed and any-Interval start at same position, fixed must be processed first");
4737 kind = fixedKind;
[all...]
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dc1_LinearScan_x86.cpp77 Interval* interval = iw.active_first(fixedKind);

Completed in 53 milliseconds