Home
last modified time | relevance | path

Searched refs:unionWith (Results 1 – 19 of 19) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/
H A DConstantRange.cpp574 ConstantRange ConstantRange::unionWith(const ConstantRange &CR, in unionWith() function in ConstantRange
583 return CR.unionWith(*this, Type); in unionWith()
765 UpperDiv.trunc(DstTySize)).unionWith(Union); in truncate()
773 UpperDiv.trunc(DstTySize)).unionWith(Union); in truncate()
1068 return Res.intersectWith(unionWith(Other, Signed), Signed); in smax()
1082 return Res.intersectWith(unionWith(Other, Unsigned), Unsigned); in umax()
1096 return Res.intersectWith(unionWith(Other, Signed), Signed); in smin()
1110 return Res.intersectWith(unionWith(Other, Unsigned), Unsigned); in umin()
1174 PosRes = PosRes.unionWith( in sdiv()
1189 PosRes = PosRes.unionWith( in sdiv()
[all …]
H A DMetadata.cpp994 ConstantRange Union = LastRange.unionWith(NewRange); in tryMergeRange()
/netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/
H A Dintrange.h147 IntRange unionWith(const IntRange& other) const;
H A Dintrange.c441 IntRange IntRange::unionWith(const IntRange& other) const in unionWith() function
H A Ddcast.c3526 range = ir1.unionWith(ir2).cast(e->type); in getIntRange()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
H A DFloat2Int.cpp291 return Ops[0].unionWith(Ops[1]); in walkForwards()
369 R = R.unionWith(SeenI->second); in validateAndTransform()
H A DGuardWidening.cpp526 auto SubsetIntersect = CR0.inverse().unionWith(CR1.inverse()).inverse(); in widenCondCommon()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/IR/
H A DConstantRange.h305 ConstantRange unionWith(const ConstantRange &CR,
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
H A DSparseBitVector.h171 bool unionWith(const SparseBitVectorElement &RHS) { in unionWith() function
575 changed |= Iter1->unionWith(*Iter2);
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
H A DMemoryLocation.h143 LocationSize unionWith(LocationSize Other) const { in unionWith() function
H A DValueLattice.h443 ConstantRange NewR = getConstantRange().unionWith(RHS.getConstantRange());
H A DAliasSetTracker.h82 Size = isSizeSet() ? Size.unionWith(NewSize) : NewSize; in updateSizeAndAAInfo()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/IPO/
H A DAttributor.h2154 Assumed = Assumed.unionWith(R).intersectWith(Known);
2165 Known = Known.unionWith(R);
2166 Assumed = Assumed.unionWith(Known);
3651 void unionAssumed(const PotentialValuesState &PVS) { unionWith(PVS); }
3690 void unionWith(const PotentialValuesState &R) {
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DStackSafetyAnalysis.cpp90 auto Result = L.unionWith(R); in unionNoWrap()
426 Insert.first->second = Insert.first->second.unionWith(Offsets); in analyzeAllUses()
H A DLazyValueInfo.cpp1383 EdgesVals = EdgesVals.unionWith(EdgeVal); in getEdgeValueLocal()
H A DScalarEvolution.cpp6027 RangeFromOps = RangeFromOps.unionWith(OpRange); in getRangeRef()
6130 SR = SR.unionWith(getRangeForAffineARHelper(StepSRange.getSignedMax(), in getRangeForAffineAR()
6191 ConstantRange RangeBetween = StartRange.unionWith(EndRange); in getRangeForAffineNoSelfWrappingAR()
6323 return TrueRange.unionWith(FalseRange); in getRangeViaFactoring()
H A DInstructionSimplify.cpp1612 if (!IsAnd && Range0.unionWith(Range1).isFullSet()) in simplifyAndOrOfICmpsWithConstants()
/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/
H A Dintrange.d492 IntRange unionWith(const ref IntRange other) const in unionWith() function
H A Ddcast.d3837 return ir1.unionWith(ir2)._cast(e.type); in getIntRange()