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

/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_LinearScan.cpp4494 // returns true if the interval has any hole between hole_from and hole_to
4496 bool Interval::has_hole_between(int hole_from, int hole_to) { argument
4497 assert(hole_from < hole_to, "check");
4498 assert(from() <= hole_from && hole_to <= to(), "index out of interval");
4505 if (hole_from < cur->from()) {
4513 } else if (hole_from <= cur->to()) {

Completed in 79 milliseconds