Home | History | Annotate | Download | only in crankshaft

Lines Matching full:interval

254   // Find the last interval that ends before the position. If the
256 // split that interval and use the first part.
259 // If the split position coincides with the beginning of a use interval
264 // When splitting at start we need to locate the previous use interval.
285 ? after // Only interval in the range after split.
286 : last_interval_; // Last interval of the original range.
295 // The split position coincides with the beginning of a use interval (the
297 // the split child because split child owns use interval covering it.
367 LAllocator::TraceAlloc("Ensure live range %d in interval [%d %d[\n",
392 LAllocator::TraceAlloc("Add to live range %d interval [%d %d[\n",
397 UseInterval* interval = new(zone) UseInterval(start, end);
398 first_interval_ = interval;
399 last_interval_ = interval;
404 UseInterval* interval = new(zone) UseInterval(start, end);
405 interval->set_next(first_interval_);
406 first_interval_ = interval;
409 // that each new use interval either precedes or intersects with
410 // last added interval.
477 for (UseInterval* interval = start_search;
478 interval != NULL;
479 interval = interval->next()) {
480 DCHECK(interval->next() == NULL ||
481 interval->next()->start().Value() >= interval->start().Value());
482 AdvanceLastProcessedMarker(interval, position);
483 if (interval->Contains(position)) return true;
484 if (interval->start().Value() > position.Value()) return false;
572 // Add an interval that includes the entire block to the live range for
1278 // The live range interval already ends at the first instruction of the
1530 TraceAlloc("Processing interval %d start=%d\n",
2071 // The interval is split in the same basic block. Split at the latest