Home
last modified time | relevance | path

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

/external/llvm/include/llvm/Support/
DNoFolder.h172 Instruction *CreateNot(Constant *C) const { in CreateNot() function
173 return BinaryOperator::CreateNot(C); in CreateNot()
DConstantFolder.h113 Constant *CreateNot(Constant *C) const { in CreateNot() function
DTargetFolder.h125 Constant *CreateNot(Constant *C) const { in CreateNot() function
DIRBuilder.h770 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/
DInstCombineAndOrXor.cpp1140 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 …]
DInstCombineSelect.cpp666 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()
DInstCombineAddSub.cpp564 return BinaryOperator::CreateNot(Op1); in visitSub()
633 Builder->CreateNot(Y, Y->getName() + ".not")); in visitSub()
DInstCombineCompares.cpp1650 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()
DInstCombineCasts.cpp901 In = Builder->CreateNot(In, In->getName()+".not"); in transformSExtICmp()
/external/llvm/lib/Transforms/Scalar/
DLowerAtomic.cpp62 Res = Builder.CreateNot(Builder.CreateAnd(Orig, Val)); in LowerAtomicRMWInst()
/external/llvm/include/llvm/
DInstrTypes.h305 static BinaryOperator *CreateNot(Value *Op, const Twine &Name = "",
307 static BinaryOperator *CreateNot(Value *Op, const Twine &Name,
/external/llvm/lib/CodeGen/
DIntrinsicLowering.cpp313 V = Builder.CreateNot(V); in LowerCTLZ()
406 Value *NotSrc = Builder.CreateNot(Src); in LowerIntrinsicCall()
/external/llvm/include/llvm/MC/
DMCExpr.h278 static const MCUnaryExpr *CreateNot(const MCExpr *Expr, MCContext &Ctx) { in CreateNot() function
/external/mesa3d/src/glsl/
Dir_to_llvm.cpp535 return bld.CreateNot(ops[0]); in llvm_expression()
863 return bld.CreateNot(ops[0]); in llvm_expression()
/external/llvm/lib/Transforms/Utils/
DSimplifyCFG.cpp1630 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/
Dllvm_scanline.cpp59 builder.CreateStore(builder.CreateNot(s), sPtr); in StencilOp()
/external/clang/lib/CodeGen/
DCGExprScalar.cpp1453 return Builder.CreateNot(Op, "neg"); in VisitUnaryNot()
1472 BoolVal = Builder.CreateNot(BoolVal, "lnot"); in VisitUnaryLNot()
2588 llvm::Value *tmp2 = Builder.CreateNot(tmp); in VisitAbstractConditionalOperator()
DCGExpr.cpp2820 Result = CGF.Builder.CreateNot(Result); in EmitAtomicOp()
/external/llvm/lib/VMCore/
DInstructions.cpp1891 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
DCore.cpp1987 return wrap(unwrap(B)->CreateNot(unwrap(V), Name)); in LLVMBuildNot()
/external/llvm/lib/MC/MCParser/
DAsmParser.cpp752 Res = MCUnaryExpr::CreateNot(Res, getContext()); in ParsePrimaryExpr()
/external/llvm/lib/Transforms/IPO/
DGlobalOpt.cpp939 LV = BinaryOperator::CreateNot(LV, "notinit", ICI); in OptimizeGlobalAddressOfMalloc()