/external/llvm/lib/Transforms/InstCombine/ |
D | InstCombineSelect.cpp | 749 NotA = Builder->CreateNot(A); in FoldSPFofSPF() 751 NotB = Builder->CreateNot(B); in FoldSPFofSPF() 753 NotC = Builder->CreateNot(C); in FoldSPFofSPF() 757 Value *NewOuter = Builder->CreateNot(generateMinMaxSelectPattern( in FoldSPFofSPF() 930 Value *NotCond = Builder->CreateNot(CondVal, "not." + CondVal->getName()); in visitSelectInst() 939 Value *NotCond = Builder->CreateNot(CondVal, "not." + CondVal->getName()); in visitSelectInst() 975 Value *NotCond = Builder->CreateNot(CondVal, "not." + CondVal->getName()); in visitSelectInst() 981 Value *NotCond = Builder->CreateNot(CondVal, "not." + CondVal->getName()); in visitSelectInst() 1163 Value *NewLHS = Builder->CreateNot(LHS); in visitSelectInst() 1164 Value *NewRHS = Builder->CreateNot(RHS); in visitSelectInst() [all …]
|
D | InstCombineAndOrXor.cpp | 1170 return BinaryOperator::CreateNot(LogicOp); in matchDeMorgansLaws() 1188 Value *Not = Builder->CreateNot(LogicOp); in matchDeMorgansLaws() 1476 return BinaryOperator::CreateAnd(A, Builder->CreateNot(B)); in visitAnd() 1492 return BinaryOperator::CreateAnd(Op0, Builder->CreateNot(C)); in visitAnd() 1498 return BinaryOperator::CreateAnd(Op1, Builder->CreateNot(C)); in visitAnd() 2209 return BinaryOperator::CreateOr(Builder->CreateNot(A), B); in visitOr() 2366 Value *Not = Builder->CreateNot(B, B->getName()+".not"); in visitOr() 2370 Value *Not = Builder->CreateNot(A, A->getName()+".not"); in visitOr() 2384 Value *Not = Builder->CreateNot(NotOp, NotOp->getName()+".not"); in visitOr() 2391 return BinaryOperator::CreateXor(Builder->CreateNot(A), B); in visitOr() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/InstCombine/ |
D | InstCombineAndOrXor.cpp | 1153 return BinaryOperator::CreateNot(AndOr); in matchDeMorgansLaws() 1302 return BinaryOperator::CreateNot(Builder.CreateXor(A, B)); in foldAndToXor() 1320 return BinaryOperator::CreateNot(Builder.CreateXor(A, B)); in foldOrToXor() 1556 return BinaryOperator::CreateAnd(Op0, Builder.CreateNot(B)); in visitAnd() 1559 return BinaryOperator::CreateAnd(Op1, Builder.CreateNot(B)); in visitAnd() 1565 return BinaryOperator::CreateAnd(Op0, Builder.CreateNot(C)); in visitAnd() 1571 return BinaryOperator::CreateAnd(Op1, Builder.CreateNot(C)); in visitAnd() 2180 Value *Not = Builder.CreateNot(B, B->getName() + ".not"); in visitOr() 2184 Value *Not = Builder.CreateNot(A, A->getName() + ".not"); in visitOr() 2198 Value *Not = Builder.CreateNot(NotOp, NotOp->getName() + ".not"); in visitOr() [all …]
|
D | InstCombineAddSub.cpp | 934 return BinaryOperator::CreateAdd(Builder.CreateNot(Y), X); in foldAddWithConstant() 984 return new ZExtInst(Builder.CreateNot(X), Ty); in foldAddWithConstant() 991 Value *NotX = Builder.CreateNot(X); in foldAddWithConstant() 1126 return BinaryOperator::CreateNot(NotMask, I.getName()); in canonicalizeLowbitMask() 1610 return BinaryOperator::CreateNot(Op1); in visitSub() 1619 return BinaryOperator::CreateAdd(Builder.CreateNot(Op1), X); in visitSub() 1623 return BinaryOperator::CreateAdd(Builder.CreateNot(X), Op0); in visitSub() 1733 Y, Builder.CreateNot(Op1, Op1->getName() + ".not")); in visitSub() 1748 Builder.CreateNot(Y, Y->getName() + ".not")); in visitSub()
|
D | InstCombineSelect.cpp | 1143 NotA = Builder.CreateNot(A); in foldSPFofSPF() 1145 NotB = Builder.CreateNot(B); in foldSPFofSPF() 1147 NotC = Builder.CreateNot(C); in foldSPFofSPF() 1151 Value *NewOuter = Builder.CreateNot( in foldSPFofSPF() 1560 Value *NotCond = Builder.CreateNot(CondVal, "not." + CondVal->getName()); in visitSelectInst() 1569 Value *NotCond = Builder.CreateNot(CondVal, "not." + CondVal->getName()); in visitSelectInst() 1606 Value *NotCond = Builder.CreateNot(CondVal, "not." + CondVal->getName()); in visitSelectInst() 1612 Value *NotCond = Builder.CreateNot(CondVal, "not." + CondVal->getName()); in visitSelectInst() 1807 return BinaryOperator::CreateNot(NewSel); in visitSelectInst()
|
/external/swiftshader/third_party/LLVM/include/llvm/Support/ |
D | NoFolder.h | 172 Instruction *CreateNot(Constant *C) const { in CreateNot() function 173 return BinaryOperator::CreateNot(C); in CreateNot()
|
D | ConstantFolder.h | 113 Constant *CreateNot(Constant *C) const { in CreateNot() function
|
D | TargetFolder.h | 125 Constant *CreateNot(Constant *C) const { in CreateNot() function
|
/external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/ |
D | InstCombineAndOrXor.cpp | 1160 return BinaryOperator::CreateNot(Or); in visitAnd() 1200 return BinaryOperator::CreateAnd(A, Builder->CreateNot(B)); in visitAnd() 1961 return BinaryOperator::CreateNot(And); in visitOr() 1975 Value *Not = Builder->CreateNot(B, B->getName()+".not"); in visitOr() 1979 Value *Not = Builder->CreateNot(A, A->getName()+".not"); in visitOr() 1993 Value *Not = Builder->CreateNot(NotOp, NotOp->getName()+".not"); in visitOr() 2092 Builder->CreateNot(Op0I->getOperand(1), in visitXor() 2104 Builder->CreateNot(Op0I->getOperand(0), "notlhs"); in visitXor() 2106 Builder->CreateNot(Op0I->getOperand(1), "notrhs"); in visitXor() 2231 return BinaryOperator::CreateAnd(A, Builder->CreateNot(Op1)); in visitXor() [all …]
|
D | InstCombineSelect.cpp | 664 Value *NotCond = Builder->CreateNot(CondVal, "not."+CondVal->getName()); in visitSelectInst() 672 Value *NotCond = Builder->CreateNot(CondVal, "not."+CondVal->getName()); in visitSelectInst() 697 Value *NotCond = Builder->CreateNot(CondVal, "not."+CondVal->getName()); in visitSelectInst() 703 Value *NotCond = Builder->CreateNot(CondVal, "not."+CondVal->getName()); in visitSelectInst()
|
D | InstCombineAddSub.cpp | 553 return BinaryOperator::CreateNot(Op1); in visitSub() 619 Builder->CreateNot(Y, Y->getName() + ".not")); in visitSub()
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/ |
D | NoFolder.h | 203 Instruction *CreateNot(Constant *C) const { in CreateNot() function 204 return BinaryOperator::CreateNot(C); in CreateNot()
|
D | ConstantFolder.h | 134 Constant *CreateNot(Constant *C) const { in CreateNot() function
|
/external/llvm/include/llvm/IR/ |
D | NoFolder.h | 172 Instruction *CreateNot(Constant *C) const { in CreateNot() function 173 return BinaryOperator::CreateNot(C); in CreateNot()
|
D | ConstantFolder.h | 113 Constant *CreateNot(Constant *C) const { in CreateNot() function
|
/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/ |
D | LowerAtomic.cpp | 62 Res = Builder.CreateNot(Builder.CreateAnd(Orig, Val)); in LowerAtomicRMWInst()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/ |
D | LowerAtomic.cpp | 66 Res = Builder.CreateNot(Builder.CreateAnd(Orig, Val)); in LowerAtomicRMWInst()
|
/external/llvm/lib/Transforms/Scalar/ |
D | LowerAtomic.cpp | 67 Res = Builder.CreateNot(Builder.CreateAnd(Orig, Val)); in LowerAtomicRMWInst()
|
D | StructurizeCFG.cpp | 402 return BinaryOperator::CreateNot(Condition, "", Parent->getTerminator()); in invert() 407 return BinaryOperator::CreateNot(Condition, in invert()
|
/external/llvm/lib/CodeGen/ |
D | IntrinsicLowering.cpp | 313 V = Builder.CreateNot(V); in LowerCTLZ() 406 Value *NotSrc = Builder.CreateNot(Src); in LowerIntrinsicCall()
|
/external/swiftshader/third_party/LLVM/lib/CodeGen/ |
D | IntrinsicLowering.cpp | 313 V = Builder.CreateNot(V); in LowerCTLZ() 406 Value *NotSrc = Builder.CreateNot(Src); in LowerIntrinsicCall()
|
/external/swiftshader/third_party/LLVM/include/llvm/ |
D | InstrTypes.h | 305 static BinaryOperator *CreateNot(Value *Op, const Twine &Name = "", 307 static BinaryOperator *CreateNot(Value *Op, const Twine &Name,
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/ |
D | IntrinsicLowering.cpp | 310 V = Builder.CreateNot(V); in LowerCTLZ() 403 Value *NotSrc = Builder.CreateNot(Src); in LowerIntrinsicCall()
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/ |
D | TargetFolder.h | 124 Constant *CreateNot(Constant *C) const { in CreateNot() function
|
/external/llvm/include/llvm/Analysis/ |
D | TargetFolder.h | 125 Constant *CreateNot(Constant *C) const { in CreateNot() function
|