Lines Matching refs:Interval
1 //===- Interval.cpp - Interval class code ---------------------------------===//
10 // This file contains the definition of the Interval class, which represents a
15 #include "llvm/Analysis/Interval.h"
24 // Interval Implementation
27 // isLoop - Find out if there is a back edge in this interval...
29 bool Interval::isLoop() const {
30 // There is a loop in this interval iff one of the predecessors of the header
31 // node lives in the interval.
40 void Interval::print(raw_ostream &OS) const {
42 << "Interval Contents:\n";
44 // Print out all of the basic blocks in the interval...
49 OS << "Interval Predecessors:\n";
54 OS << "Interval Successors:\n";