HomeSort by relevance Sort by last modified time
    Searched refs:Overlaps (Results 1 - 5 of 5) sorted by null

  /external/llvm/lib/CodeGen/
LiveIntervalUnion.cpp 29 // Merge a LiveInterval's segments. Guarantee no overlaps.
187 // overlaps.
189 Overlaps(LiveUnion->getMap(), Loop->getMap());
190 if (!Overlaps.valid())
194 LiveInterval::iterator VRI = VirtReg->find(Overlaps.start());
199 if (VRI->start < Overlaps.stop())
202 Overlaps.advanceTo(VRI->start);
203 if (!Overlaps.valid())
205 if (Overlaps.start() < VRI->end)
208 VRI = VirtReg->advanceTo(VRI, Overlaps.start())
    [all...]
  /external/llvm/include/llvm/MC/
MCRegisterInfo.h 99 /// a particular register. The Overlaps field contains a pointer to a zero
110 uint32_t Overlaps; // Overlapping registers, described above
411 init(Reg, MCRI->DiffLists + MCRI->get(Reg).Overlaps);
  /external/openfst/src/include/fst/
interval-set.h 145 // Determines if an interval set overlaps with the set. Requires
147 bool Overlaps(const IntervalSet<T> &iset) const;
149 // Determines if an interval set overlaps with the set but neither
271 // Determines if an interval set overlaps with the set. Requires
274 bool IntervalSet<T>::Overlaps(const IntervalSet<T> &iset) const {
291 // Determines if an interval set overlaps with the set but neither
  /external/llvm/utils/TableGen/
CodeGenRegisters.h 204 void computeOverlaps(Set &Overlaps, const CodeGenRegBank&) const;
CodeGenRegisters.cpp 546 void CodeGenRegister::computeOverlaps(CodeGenRegister::Set &Overlaps,
548 assert(!RegUnits.empty() && "Compute register units before overlaps.");
557 Overlaps.insert(Root);
559 Overlaps.insert(Supers.begin(), Supers.end());
    [all...]

Completed in 3373 milliseconds