Home
last modified time | relevance | path

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

12

/external/llvm/unittests/IR/
DConstantRangeTest.cpp284 EXPECT_EQ(Wrap.unionWith(One), in TEST_F()
286 EXPECT_EQ(One.unionWith(Wrap), Wrap.unionWith(One)); in TEST_F()
287 EXPECT_EQ(Empty.unionWith(Empty), Empty); in TEST_F()
288 EXPECT_EQ(Full.unionWith(Full), Full); in TEST_F()
289 EXPECT_EQ(Some.unionWith(Wrap), Full); in TEST_F()
292 EXPECT_EQ(ConstantRange(APInt(16, 14), APInt(16, 1)).unionWith( in TEST_F()
295 EXPECT_EQ(ConstantRange(APInt(16, 6), APInt(16, 4)).unionWith( in TEST_F()
298 EXPECT_EQ(ConstantRange(APInt(16, 1), APInt(16, 0)).unionWith( in TEST_F()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DConstantRange.cpp553 ConstantRange ConstantRange::unionWith(const ConstantRange &CR, in unionWith() function in ConstantRange
562 return CR.unionWith(*this, Type); in unionWith()
744 UpperDiv.trunc(DstTySize)).unionWith(Union); in truncate()
752 UpperDiv.trunc(DstTySize)).unionWith(Union); in truncate()
1091 PosRes = PosRes.unionWith( in sdiv()
1106 PosRes = PosRes.unionWith( in sdiv()
1111 PosRes = PosRes.unionWith( in sdiv()
1124 NegRes = NegRes.unionWith( in sdiv()
1129 ConstantRange Res = NegRes.unionWith(PosRes, PreferredRangeType::Signed); in sdiv()
1133 Res = Res.unionWith(ConstantRange(Zero)); in sdiv()
[all …]
/external/llvm-project/llvm/lib/IR/
DConstantRange.cpp569 ConstantRange ConstantRange::unionWith(const ConstantRange &CR, in unionWith() function in ConstantRange
578 return CR.unionWith(*this, Type); in unionWith()
760 UpperDiv.trunc(DstTySize)).unionWith(Union); in truncate()
768 UpperDiv.trunc(DstTySize)).unionWith(Union); in truncate()
1157 PosRes = PosRes.unionWith( in sdiv()
1172 PosRes = PosRes.unionWith( in sdiv()
1177 PosRes = PosRes.unionWith( in sdiv()
1190 NegRes = NegRes.unionWith( in sdiv()
1195 ConstantRange Res = NegRes.unionWith(PosRes, PreferredRangeType::Signed); in sdiv()
1199 Res = Res.unionWith(ConstantRange(Zero)); in sdiv()
[all …]
/external/llvm/lib/IR/
DConstantRange.cpp180 return CR0.inverse().unionWith(CR1.inverse()).inverse(); in makeGuaranteedNoWrapRegion()
452 ConstantRange ConstantRange::unionWith(const ConstantRange &CR) const { in unionWith() function in ConstantRange
459 if (!isWrappedSet() && CR.isWrappedSet()) return CR.unionWith(*this); in unionWith()
615 UpperDiv.trunc(DstTySize)).unionWith(Union); in truncate()
621 UpperModulo.trunc(DstTySize)).unionWith(Union); in truncate()
/external/llvm/include/llvm/IR/
DConstantRange.h224 ConstantRange unionWith(const ConstantRange &CR) const;
/external/llvm/lib/Transforms/Scalar/
DFloat2Int.cpp287 return Ops[0].unionWith(Ops[1]); in walkForwards()
365 R = R.unionWith(SeenI->second); in validateAndTransform()
DGuardWidening.cpp430 auto SubsetIntersect = CR0.inverse().unionWith(CR1.inverse()).inverse(); in widenCondCommon()
/external/llvm-project/llvm/lib/Transforms/Scalar/
DFloat2Int.cpp292 return Ops[0].unionWith(Ops[1]); in walkForwards()
370 R = R.unionWith(SeenI->second); in validateAndTransform()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
DFloat2Int.cpp293 return Ops[0].unionWith(Ops[1]); in walkForwards()
371 R = R.unionWith(SeenI->second); in validateAndTransform()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/
DValueLattice.h274 ConstantRange NewR = getConstantRange().unionWith(RHS.getConstantRange()); in mergeIn()
DMemoryLocation.h115 LocationSize unionWith(LocationSize Other) const { in unionWith() function
DAliasSetTracker.h81 Size = isSizeSet() ? Size.unionWith(NewSize) : NewSize; in updateSizeAndAAInfo()
/external/llvm-project/llvm/include/llvm/IR/
DConstantRange.h301 ConstantRange unionWith(const ConstantRange &CR,
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DConstantRange.h285 ConstantRange unionWith(const ConstantRange &CR,
/external/llvm-project/llvm/unittests/IR/
DConstantRangeTest.cpp624 return CR1.unionWith(CR2, Type); in TEST_F()
632 EXPECT_EQ(Wrap.unionWith(One), in TEST_F()
634 EXPECT_EQ(One.unionWith(Wrap), Wrap.unionWith(One)); in TEST_F()
635 EXPECT_EQ(Empty.unionWith(Empty), Empty); in TEST_F()
636 EXPECT_EQ(Full.unionWith(Full), Full); in TEST_F()
637 EXPECT_EQ(Some.unionWith(Wrap), Full); in TEST_F()
640 EXPECT_EQ(ConstantRange(APInt(16, 14), APInt(16, 1)).unionWith( in TEST_F()
643 EXPECT_EQ(ConstantRange(APInt(16, 6), APInt(16, 4)).unionWith( in TEST_F()
646 EXPECT_EQ(ConstantRange(APInt(16, 1), APInt(16, 0)).unionWith( in TEST_F()
/external/llvm-project/llvm/include/llvm/Analysis/
DMemoryLocation.h143 LocationSize unionWith(LocationSize Other) const { in unionWith() function
DValueLattice.h443 ConstantRange NewR = getConstantRange().unionWith(RHS.getConstantRange());
DAliasSetTracker.h85 Size = isSizeSet() ? Size.unionWith(NewSize) : NewSize; in updateSizeAndAAInfo()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
DSparseBitVector.h171 bool unionWith(const SparseBitVectorElement &RHS) { in unionWith() function
575 changed |= Iter1->unionWith(*Iter2);
/external/llvm-project/llvm/include/llvm/ADT/
DSparseBitVector.h171 bool unionWith(const SparseBitVectorElement &RHS) { in unionWith() function
575 changed |= Iter1->unionWith(*Iter2);
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DStackSafetyAnalysis.cpp91 void updateRange(ConstantRange R) { Range = Range.unionWith(R); } in updateRange()
475 US.Range = US.Range.unionWith(CalleeRange); in updateOneUse()
/external/llvm/include/llvm/ADT/
DSparseBitVector.h164 bool unionWith(const SparseBitVectorElement &RHS) {
585 changed |= Iter1->unionWith(*Iter2);
/external/llvm-project/llvm/include/llvm/Transforms/IPO/
DAttributor.h2099 Assumed = Assumed.unionWith(R).intersectWith(Known);
2110 Known = Known.unionWith(R);
2111 Assumed = Assumed.unionWith(Known);
3596 void unionAssumed(const PotentialValuesState &PVS) { unionWith(PVS); }
3635 void unionWith(const PotentialValuesState &R) {
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Transforms/IPO/
DAttributor.h1565 Assumed = Assumed.unionWith(R).intersectWith(Known);
1576 Known = Known.unionWith(R);
1577 Assumed = Assumed.unionWith(Known);
/external/llvm-project/llvm/lib/Analysis/
DStackSafetyAnalysis.cpp90 auto Result = L.unionWith(R); in unionNoWrap()
426 Insert.first->second = Insert.first->second.unionWith(Offsets); in analyzeAllUses()

12