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

/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_LinearScan.cpp1842 int from_op_id = block->first_lir_instruction_id(); local
1843 int to_op_id = from_op_id + 1; // short live range of length 1
1844 assert(interval->from() <= from_op_id && interval->to() >= to_op_id,
1847 if (interval->from() != from_op_id) {
1848 // the part before from_op_id is unchanged
1849 interval = interval->split(from_op_id);
1855 assert(interval->from() == from_op_id, "must be true now");
1866 assert(spilled_part->from() == from_op_id && spilled_part->to() == to_op_id, "just checking");

Completed in 46 milliseconds