Home
last modified time | relevance | path

Searched refs:CreateNot (Results 1 – 25 of 28) sorted by relevance

12

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/InstCombine/
DInstCombineAndOrXor.cpp1473 return BinaryOperator::CreateNot(AndOr); in matchDeMorgansLaws()
1622 return BinaryOperator::CreateNot(Builder.CreateXor(A, B)); in foldAndToXor()
1640 return BinaryOperator::CreateNot(Builder.CreateXor(A, B)); in foldOrToXor()
1880 return BinaryOperator::CreateAnd(Op0, Builder.CreateNot(B)); in visitAnd()
1883 return BinaryOperator::CreateAnd(Op1, Builder.CreateNot(B)); in visitAnd()
1889 return BinaryOperator::CreateAnd(Op0, Builder.CreateNot(C)); in visitAnd()
1895 return BinaryOperator::CreateAnd(Op1, Builder.CreateNot(C)); in visitAnd()
2614 Value *Not = Builder.CreateNot(B, B->getName() + ".not"); in visitOr()
2618 Value *Not = Builder.CreateNot(A, A->getName() + ".not"); in visitOr()
2632 Value *Not = Builder.CreateNot(NotOp, NotOp->getName() + ".not"); in visitOr()
[all …]
DInstCombineAddSub.cpp887 return BinaryOperator::CreateAdd(Builder.CreateNot(Y), X); in foldAddWithConstant()
937 return new ZExtInst(Builder.CreateNot(X), Ty); in foldAddWithConstant()
944 Value *NotX = Builder.CreateNot(X); in foldAddWithConstant()
1079 return BinaryOperator::CreateNot(NotMask, I.getName()); in canonicalizeLowbitMask()
1715 return BinaryOperator::CreateNot(Op1); in visitSub()
1724 return BinaryOperator::CreateAdd(Builder.CreateNot(Op1), X); in visitSub()
1728 return BinaryOperator::CreateAdd(Builder.CreateNot(X), Op0); in visitSub()
1888 Y, Builder.CreateNot(Op1, Op1->getName() + ".not")); in visitSub()
1906 Builder.CreateAnd(Op1, Builder.CreateNot(C))); in visitSub()
1971 Builder.CreateNot(Y, Y->getName() + ".not")); in visitSub()
[all …]
DInstCombineSelect.cpp1661 NotA = Builder.CreateNot(A); in foldSPFofSPF()
1663 NotB = Builder.CreateNot(B); in foldSPFofSPF()
1665 NotC = Builder.CreateNot(C); in foldSPFofSPF()
1669 Value *NewOuter = Builder.CreateNot( in foldSPFofSPF()
2383 Value *NotCond = Builder.CreateNot(CondVal, "not." + CondVal->getName()); in visitSelectInst()
2392 Value *NotCond = Builder.CreateNot(CondVal, "not." + CondVal->getName()); in visitSelectInst()
2429 Value *NotCond = Builder.CreateNot(CondVal, "not." + CondVal->getName()); in visitSelectInst()
2435 Value *NotCond = Builder.CreateNot(CondVal, "not." + CondVal->getName()); in visitSelectInst()
2600 Value *B = Builder.CreateNot(Y); in visitSelectInst()
2611 return BinaryOperator::CreateNot(NewMinMax); in visitSelectInst()
DInstCombineCompares.cpp3693 Res = Builder.CreateNot(Res, "umul.not.ov"); in foldUnsignedMultiplicationOverflowCheck()
3719 return new ICmpInst(Pred, Builder.CreateNot(Op1), X); in foldICmpBinOp()
3723 return new ICmpInst(Pred, X, Builder.CreateNot(Op0)); in foldICmpBinOp()
4783 return BinaryOperator::CreateNot(Res); in processUMulZExtIdiom()
5287 return BinaryOperator::CreateNot(A); in canonicalizeICmpBool()
5296 return BinaryOperator::CreateNot(A); in canonicalizeICmpBool()
5307 return BinaryOperator::CreateNot(Builder.CreateXor(A, B)); in canonicalizeICmpBool()
5319 return BinaryOperator::CreateAnd(Builder.CreateNot(A), B); in canonicalizeICmpBool()
5327 return BinaryOperator::CreateAnd(Builder.CreateNot(B), A); in canonicalizeICmpBool()
5335 return BinaryOperator::CreateOr(Builder.CreateNot(A), B); in canonicalizeICmpBool()
[all …]
DInstCombineCalls.cpp4078 Builder.CreateNot(A), II->getName()); in visitCallInst()
4080 Builder.CreateNot(B), II->getName()); in visitCallInst()
DInstCombineCasts.cpp1246 In = Builder.CreateNot(In, In->getName() + ".not"); in transformSExtICmp()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DNoFolder.h202 Instruction *CreateNot(Constant *C) const { in CreateNot() function
203 return BinaryOperator::CreateNot(C); in CreateNot()
DConstantFolder.h133 Constant *CreateNot(Constant *C) const { in CreateNot() function
DInstrTypes.h397 static BinaryOperator *CreateNot(Value *Op, const Twine &Name = "",
399 static BinaryOperator *CreateNot(Value *Op, const Twine &Name,
DIRBuilder.h1617 Value *CreateNot(Value *V, const Twine &Name = "") {
1619 return Insert(Folder.CreateNot(VC), Name);
1620 return Insert(BinaryOperator::CreateNot(V), Name);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
DLowerAtomic.cpp66 Res = Builder.CreateNot(Builder.CreateAnd(Orig, Val)); in LowerAtomicRMWInst()
DStructurizeCFG.cpp424 return BinaryOperator::CreateNot(Condition, "", Parent->getTerminator()); in invert()
429 return BinaryOperator::CreateNot(Condition, in invert()
DGuardWidening.cpp572 Cond1 = BinaryOperator::CreateNot(Cond1, "inverted", InsertPt); in widenCondCommon()
DInductiveRangeCheckElimination.cpp1293 : B.CreateNot(TakeBackedgeLoopCond); in changeIterationSpaceEnd()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DIntrinsicLowering.cpp199 V = Builder.CreateNot(V); in LowerCTLZ()
264 Value *NotSrc = Builder.CreateNot(Src); in LowerIntrinsicCall()
DAtomicExpandPass.cpp539 return Builder.CreateNot(Builder.CreateAnd(Loaded, Inc), "new"); in performAtomicOp()
680 Ret.Inv_Mask = Builder.CreateNot(Ret.Mask, "Inv_Mask"); in createMaskInstrs()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Instrumentation/
DPoisonChecking.cpp254 CreateAssert(B, B.CreateNot(Cond)); in CreateAssertNot()
DMemorySanitizer.cpp1966 Value *V1 = IRB.CreateNot(I.getOperand(0)); in visitOr()
1967 Value *V2 = IRB.CreateNot(I.getOperand(1)); in visitOr()
2250 IRB.CreateOr(IRB.CreateAnd(A, IRB.CreateNot(SaOtherBits)), SaSignBit); in getLowestPossibleValue()
2253 return IRB.CreateAnd(A, IRB.CreateNot(Sa)); in getLowestPossibleValue()
2267 IRB.CreateOr(IRB.CreateAnd(A, IRB.CreateNot(SaSignBit)), SaOtherBits); in getHighestPossibleValue()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/
DTargetFolder.h123 Constant *CreateNot(Constant *C) const { in CreateNot() function
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
DSimplifyCFG.cpp2729 Builder.CreateNot(NewCond, PBI->getCondition()->getName() + ".not"); in FoldBranchToCommonDest()
2836 Builder.CreateNot(PBI->getCondition(), "not.cond")); in FoldBranchToCommonDest()
2851 Builder.CreateNot(PBI->getCondition(), "not.cond")); in FoldBranchToCommonDest()
3072 Value *PPred = PStore->getParent() == PTB ? PCond : QB.CreateNot(PCond); in mergeConditionalStoreToAddress()
3073 Value *QPred = QStore->getParent() == QTB ? QCond : QB.CreateNot(QCond); in mergeConditionalStoreToAddress()
3076 PPred = QB.CreateNot(PPred); in mergeConditionalStoreToAddress()
3078 QPred = QB.CreateNot(QPred); in mergeConditionalStoreToAddress()
3429 PBICond = Builder.CreateNot(PBICond, PBICond->getName() + ".not"); in SimplifyCondBranchToCondBranch()
3433 BICond = Builder.CreateNot(BICond, BICond->getName() + ".not"); in SimplifyCondBranchToCondBranch()
4293 Builder.CreateAssumption(Builder.CreateNot(Cond)); in SimplifyUnreachable()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
DAMDGPUPrintfRuntimeBinding.cpp366 Builder.CreateSExt(Builder.CreateNot(cmp), I32Ty, "printf_res"); in lowerPrintfForGpu()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Vectorize/
DVPlan.cpp325 Value *V = Builder.CreateNot(A); in generateInstruction()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DAutoUpgrade.cpp1890 LHS = Builder.CreateNot(LHS); in UpgradeIntrinsicCall()
1906 LHS = Builder.CreateNot(LHS); in UpgradeIntrinsicCall()
1911 Rep = Builder.CreateNot(Rep); in UpgradeIntrinsicCall()
2227 Value *NotSel = Builder.CreateNot(Sel); in UpgradeIntrinsicCall()
2715 Rep = Builder.CreateNot(Builder.CreateBitCast(CI->getArgOperand(0), ITy)); in UpgradeIntrinsicCall()
DInstructions.cpp2400 BinaryOperator *BinaryOperator::CreateNot(Value *Op, const Twine &Name, in CreateNot() function in BinaryOperator
2407 BinaryOperator *BinaryOperator::CreateNot(Value *Op, const Twine &Name, in CreateNot() function in BinaryOperator
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/
DGlobalOpt.cpp938 LV = BinaryOperator::CreateNot(LV, "notinit", ICI); in OptimizeGlobalAddressOfMalloc()

12