Searched refs:Intersection (Results 1 - 9 of 9) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/MSF/
H A DMappedBlockStream.cpp135 Interval Intersection = intersect(CachedExtent, RequestExtent); local
138 if (Intersection != RequestExtent)
142 AbsoluteDifference(CachedExtent.first, Intersection.first);
297 auto Intersection = intersect(WriteInterval, CachedInterval); local
298 assert(Intersection.first <= Intersection.second);
300 uint32_t Length = Intersection.second - Intersection.first;
302 AbsoluteDifference(WriteInterval.first, Intersection.first);
304 AbsoluteDifference(CachedInterval.first, Intersection
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DAliasSetTracker.h89 AAMDNodes Intersection(AAInfo.intersect(NewAAInfo));
90 SizeChanged |= Intersection != AAInfo;
91 AAInfo = Intersection;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DVectorUtils.cpp680 SmallVector<Metadata *, 4> Intersection; local
684 Intersection.push_back(MD1);
690 Intersection.push_back(Item);
694 if (Intersection.size() == 0)
696 if (Intersection.size() == 1)
697 return cast<MDNode>(Intersection.front());
700 return MDNode::get(Ctx, Intersection);
H A DDependenceAnalysis.cpp3650 SmallBitVector Intersection = Pair[SI].GroupLoops; local
3651 Intersection &= Pair[SJ].GroupLoops;
3652 if (Intersection.any()) {
3985 SmallBitVector Intersection = Pair[SI].GroupLoops; local
3986 Intersection &= Pair[SJ].GroupLoops;
3987 if (Intersection.any()) {
H A DValueTracking.cpp5918 ConstantRange Intersection = DomCR.intersectWith(CR); local
5920 if (Intersection.isEmptySet())
/freebsd-13-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DCodeGenRegisters.cpp1947 std::set<unsigned> Intersection; local
1952 std::inserter(Intersection, Intersection.begin()));
1953 if (Intersection.empty())
2158 CodeGenRegister::Vec Intersection; local
2161 std::inserter(Intersection, Intersection.begin()),
2165 if (Intersection.empty())
2173 getOrCreateSubClass(RC1, &Intersection,
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DLoopUtils.cpp1079 auto *Intersection = (OpValue == nullptr) ? dyn_cast<Instruction>(VL[0])
1081 if (!Intersection)
1083 const unsigned Opcode = Intersection->getOpcode();
1084 VecOp->copyIRFlags(Intersection);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DControlHeightReduction.cpp1108 std::vector<Value *> Intersection; local
1110 Bases.end(), std::back_inserter(Intersection));
1111 if (Intersection.empty()) {
1113 CHR_DEBUG(dbgs() << "Split. Intersection empty\n");
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp1523 ConstantRange Intersection = DominatingCR.intersectWith(CR); local
1525 if (Intersection.isEmptySet())
1540 if (const APInt *EqC = Intersection.getSingleElement())

Completed in 312 milliseconds