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

/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_LinearScan.hpp649 Interval* _unhandled_first[nofKinds]; // sorted list of intervals, not life before the current position member in class:IntervalWalker
667 Interval** unhandled_first_addr(IntervalKind kind) { check_bounds(kind); return &_unhandled_first[kind]; }
696 Interval* unhandled_first(IntervalKind kind) { check_bounds(kind); return _unhandled_first[kind]; }
H A Dc1_LinearScan.cpp4593 _unhandled_first[fixedKind] = unhandled_fixed_first;
4594 _unhandled_first[anyKind] = unhandled_any_first;
4725 Interval* any = _unhandled_first[anyKind];
4726 Interval* fixed = _unhandled_first[fixedKind];
4742 _current = _unhandled_first[kind];
4743 _unhandled_first[kind] = _current->next();

Completed in 81 milliseconds