Lines Matching refs:kind

994         // TODO: move this directly to position where use-kind is computed
2867 assert(cur_state->kind() == ValueStack::EmptyExceptionState, "should be");
4317 assert(_use_pos_and_kinds.at(i + 1) >= firstValidKind && _use_pos_and_kinds.at(i + 1) <= lastValidKind, "invalid use kind");
4429 assert(_use_pos_and_kinds.length() % 2 == 0, "must have use kind for each use pos");
4430 assert(result->_use_pos_and_kinds.length() % 2 == 0, "must have use kind for each use pos");
4435 assert(_use_pos_and_kinds.at(i + 1) >= firstValidKind && _use_pos_and_kinds.at(i + 1) <= lastValidKind, "invalid use kind");
4439 assert(result->_use_pos_and_kinds.at(i + 1) >= firstValidKind && result->_use_pos_and_kinds.at(i + 1) <= lastValidKind, "invalid use kind");
4573 assert(_use_pos_and_kinds.at(i + 1) >= firstValidKind && _use_pos_and_kinds.at(i + 1) <= lastValidKind, "invalid use kind");
4672 for_each_interval_kind(kind) {
4673 Interval** prev = state == activeState ? active_first_addr(kind) : inactive_first_addr(kind);
4694 interval_moved(cur, kind, state, handledState);
4697 append_sorted(active_first_addr(kind), cur);
4703 interval_moved(cur, kind, state, activeState);
4706 append_sorted(inactive_first_addr(kind), cur);
4712 interval_moved(cur, kind, state, inactiveState);
4724 IntervalKind kind;
4730 kind = fixed != Interval::end() && fixed->from() <= any->from() ? fixedKind : anyKind;
4732 assert (kind == fixedKind && fixed->from() <= any->from() ||
4733 kind == anyKind && any->from() <= fixed->from(), "wrong interval!!!");
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;
4741 _current_kind = kind;
4742 _current = _unhandled_first[kind];
4743 _unhandled_first[kind] = _current->next();
4778 void IntervalWalker::interval_moved(Interval* interval, IntervalKind kind, IntervalState from, IntervalState to) {
4914 void LinearScanWalker::free_collect_unhandled(IntervalKind kind, Interval* cur) {
4915 Interval* list = unhandled_first(kind);
4918 if (kind == fixedKind && cur->to() <= list->from()) {