HomeSort by relevance Sort by last modified time
    Searched defs:Intervals (Results 1 - 4 of 4) sorted by null

  /external/llvm/include/llvm/Analysis/
IntervalPartition.h 19 // they should be represented as distinct intervals.
36 // maximal intervals, as defined with the properties above. Intuitively, a
46 std::vector<Interval*> Intervals;
73 bool isDegeneratePartition() { return Intervals.size() == 1; }
88 // Interface to Intervals vector...
89 const std::vector<Interval*> &getIntervals() const { return Intervals; }
95 // addIntervalToPartition - Add an interval to the internal list of intervals,
103 // run through all of the intervals and propagate successor info as
  /external/llvm/include/llvm/CodeGen/
MachineLoopRanges.h 41 /// Map intervals to a bit mask.
43 Map Intervals;
68 const Map &getMap() { return Intervals; }
  /external/openfst/src/include/fst/
interval-set.h 19 // Class to represent and operate on sets of intervals.
34 // Stores and operates on a set of half-open integral intervals [a,b)
80 vector<Interval> *Intervals() { return &intervals_; }
82 const vector<Interval> *Intervals() const { return &intervals_; }
88 // Number of points in the intervals (undefined if not normalized).
98 const vector<Interval> *intervals = iset.Intervals(); local
99 for (typename vector<Interval>::const_iterator it = intervals->begin();
100 it != intervals->end(); ++it)
104 // Requires intervals be normalized
275 const vector<Interval> *intervals = iset.Intervals(); local
295 const vector<Interval> *intervals = iset.Intervals(); local
344 const vector<Interval> *intervals = iset.Intervals(); local
366 const vector<Interval> *intervals = s.Intervals(); local
    [all...]
  /external/llvm/lib/CodeGen/
StackColoring.cpp 102 /// Maps liveness intervals for each slot.
103 SmallVector<LiveInterval*, 16> Intervals;
358 // and update the live intervals.
413 VNInfo *ValNum = Intervals[i]->getValNumInfo(0);
418 Intervals[i]->addRange(LiveRange(S, F, ValNum));
424 Intervals[i]->addRange(LiveRange(NewStart, F, ValNum));
425 Intervals[i]->addRange(LiveRange(S, NewFin, ValNum));
527 LiveInterval* Interval = Intervals[FromSlot];
571 Intervals.clear();
583 Intervals.reserve(NumSlots)
    [all...]

Completed in 141 milliseconds