/external/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
|
D | IRBuilder.h | 770 Value *CreateNot(Value *V, const Twine &Name = "") { 772 return Insert(Folder.CreateNot(VC), Name); 773 return Insert(BinaryOperator::CreateNot(V), Name);
|
/external/llvm/lib/Transforms/InstCombine/ |
D | InstCombineAndOrXor.cpp | 1140 return BinaryOperator::CreateNot(Or); in visitAnd() 1180 return BinaryOperator::CreateAnd(A, Builder->CreateNot(B)); in visitAnd() 1923 return BinaryOperator::CreateNot(And); in visitOr() 1940 Value *Not = Builder->CreateNot(B, B->getName()+".not"); in visitOr() 1944 Value *Not = Builder->CreateNot(A, A->getName()+".not"); in visitOr() 1958 Value *Not = Builder->CreateNot(NotOp, NotOp->getName()+".not"); in visitOr() 2060 Builder->CreateNot(Op0I->getOperand(1), in visitXor() 2072 Builder->CreateNot(Op0I->getOperand(0), "notlhs"); in visitXor() 2074 Builder->CreateNot(Op0I->getOperand(1), "notrhs"); in visitXor() 2199 return BinaryOperator::CreateAnd(A, Builder->CreateNot(Op1)); in visitXor() [all …]
|
D | InstCombineSelect.cpp | 666 Value *NotCond = Builder->CreateNot(CondVal, "not."+CondVal->getName()); in visitSelectInst() 674 Value *NotCond = Builder->CreateNot(CondVal, "not."+CondVal->getName()); in visitSelectInst() 706 Value *NotCond = Builder->CreateNot(CondVal, "not."+CondVal->getName()); in visitSelectInst() 712 Value *NotCond = Builder->CreateNot(CondVal, "not."+CondVal->getName()); in visitSelectInst()
|
D | InstCombineAddSub.cpp | 564 return BinaryOperator::CreateNot(Op1); in visitSub() 633 Builder->CreateNot(Y, Y->getName() + ".not")); in visitSub()
|
D | InstCombineCompares.cpp | 1650 return BinaryOperator::CreateNot(Result); in visitICmpInstWithCastAndCast() 1850 return BinaryOperator::CreateNot(Xor); in visitICmpInst() 1859 Value *Not = Builder->CreateNot(Op0, I.getName()+"tmp"); in visitICmpInst() 1866 Value *Not = Builder->CreateNot(Op1, I.getName()+"tmp"); in visitICmpInst() 1873 Value *Not = Builder->CreateNot(Op0, I.getName()+"tmp"); in visitICmpInst() 1880 Value *Not = Builder->CreateNot(Op1, I.getName()+"tmp"); in visitICmpInst()
|
D | InstCombineCasts.cpp | 901 In = Builder->CreateNot(In, In->getName()+".not"); in transformSExtICmp()
|
/external/llvm/lib/Transforms/Scalar/ |
D | LowerAtomic.cpp | 62 Res = Builder.CreateNot(Builder.CreateAnd(Orig, Val)); in LowerAtomicRMWInst()
|
/external/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/llvm/lib/CodeGen/ |
D | IntrinsicLowering.cpp | 313 V = Builder.CreateNot(V); in LowerCTLZ() 406 Value *NotSrc = Builder.CreateNot(Src); in LowerIntrinsicCall()
|
/external/llvm/include/llvm/MC/ |
D | MCExpr.h | 278 static const MCUnaryExpr *CreateNot(const MCExpr *Expr, MCContext &Ctx) { in CreateNot() function
|
/external/mesa3d/src/glsl/ |
D | ir_to_llvm.cpp | 535 return bld.CreateNot(ops[0]); in llvm_expression() 863 return bld.CreateNot(ops[0]); in llvm_expression()
|
/external/llvm/lib/Transforms/Utils/ |
D | SimplifyCFG.cpp | 1630 NewCond = Builder.CreateNot(NewCond, in FoldBranchToCommonDest() 1896 PBICond = Builder.CreateNot(PBICond, PBICond->getName()+".not"); in SimplifyCondBranchToCondBranch() 1900 BICond = Builder.CreateNot(BICond, BICond->getName()+".not"); in SimplifyCondBranchToCondBranch()
|
/external/mesa3d/src/pixelflinger2/ |
D | llvm_scanline.cpp | 59 builder.CreateStore(builder.CreateNot(s), sPtr); in StencilOp()
|
/external/clang/lib/CodeGen/ |
D | CGExprScalar.cpp | 1453 return Builder.CreateNot(Op, "neg"); in VisitUnaryNot() 1472 BoolVal = Builder.CreateNot(BoolVal, "lnot"); in VisitUnaryLNot() 2588 llvm::Value *tmp2 = Builder.CreateNot(tmp); in VisitAbstractConditionalOperator()
|
D | CGExpr.cpp | 2820 Result = CGF.Builder.CreateNot(Result); in EmitAtomicOp()
|
/external/llvm/lib/VMCore/ |
D | Instructions.cpp | 1891 BinaryOperator *BinaryOperator::CreateNot(Value *Op, const Twine &Name, in CreateNot() function in BinaryOperator 1898 BinaryOperator *BinaryOperator::CreateNot(Value *Op, const Twine &Name, in CreateNot() function in BinaryOperator
|
D | Core.cpp | 1987 return wrap(unwrap(B)->CreateNot(unwrap(V), Name)); in LLVMBuildNot()
|
/external/llvm/lib/MC/MCParser/ |
D | AsmParser.cpp | 752 Res = MCUnaryExpr::CreateNot(Res, getContext()); in ParsePrimaryExpr()
|
/external/llvm/lib/Transforms/IPO/ |
D | GlobalOpt.cpp | 939 LV = BinaryOperator::CreateNot(LV, "notinit", ICI); in OptimizeGlobalAddressOfMalloc()
|