Home
last modified time | relevance | path

Searched refs:Overlaps (Results 1 – 7 of 7) sorted by relevance

/llvm-project-15.0.7/llvm/include/llvm/ADT/
H A DCoalescingBitVector.h161 SmallVector<IntervalT, 8> Overlaps; variable
162 getOverlaps(RHS, Overlaps);
179 SmallVector<IntervalT, 8> Overlaps; variable
180 getOverlaps(RHS, Overlaps);
183 for (IntervalT Overlap : Overlaps)
189 SmallVector<IntervalT, 8> Overlaps; in intersectWithComplement() local
190 if (!getOverlaps(Other, Overlaps)) { in intersectWithComplement()
197 for (IntervalT Overlap : Overlaps) { in intersectWithComplement()
408 assert(llvm::is_sorted(Overlaps, in getOverlaps()
413 return !Overlaps.empty(); in getOverlaps()
[all …]
/llvm-project-15.0.7/libc/benchmarks/automemcpy/lib/
H A DCodeGen.cpp130 std::vector<Overlap> Overlaps; member
268 for (const auto &O : FI.Overlaps) in operator <<()
294 Impl.Overlaps.push_back(Overlap{2 * I, ElementType{I}}); in getImplementation()
/llvm-project-15.0.7/llvm/lib/CodeGen/AsmPrinter/
H A DDbgEntityHistoryCalculator.cpp379 bool Overlaps = DIExpr->fragmentsOverlap(DV.getDebugExpression()); in handleNewDebugValue() local
380 if (Overlaps) { in handleNewDebugValue()
387 TrackedRegs[Op.getReg()] |= !Overlaps; in handleNewDebugValue()
/llvm-project-15.0.7/llvm/lib/CodeGen/LiveDebugValues/
H A DInstrRefBasedImpl.h744 auto Overlaps = OverlappingFragments.find( in considerOverlaps() local
746 if (Overlaps == OverlappingFragments.end()) in considerOverlaps()
750 for (auto FragmentInfo : Overlaps->second) { in considerOverlaps()
/llvm-project-15.0.7/llvm/unittests/CodeGen/
H A DInstrRefLDVTest.cpp56 LiveDebugValues::OverlapMap Overlaps; member in InstrRefLDVTest
177 VTracker = std::make_unique<VLocTracker>(Overlaps, EmptyExpr); in addVTracker()
2521 VLocs.resize(1, VLocTracker(Overlaps, EmptyExpr)); in TEST_F()
2584 VLocs.resize(4, VLocTracker(Overlaps, EmptyExpr)); in TEST_F()
2796 VLocs.resize(3, VLocTracker(Overlaps, EmptyExpr)); in TEST_F()
3051 VLocs.resize(5, VLocTracker(Overlaps, EmptyExpr)); in TEST_F()
/llvm-project-15.0.7/llvm/lib/CodeGen/
H A DPrologEpilogInserter.cpp191 auto Overlaps = [Var, Expr](const MachineInstr *DV) { in stashEntryDbgValues() local
198 if (llvm::none_of(FrameIndexValues, Overlaps)) in stashEntryDbgValues()
/llvm-project-15.0.7/llvm/unittests/ADT/
H A DIntervalMapTest.cpp633 TEST(IntervalMapTest, Overlaps) { in TEST() argument