| /minix3/external/bsd/llvm/dist/llvm/lib/Transforms/InstCombine/ |
| H A D | InstCombineAndOrXor.cpp | 1356 return BinaryOperator::CreateNot(Or); in visitAnd() 1396 return BinaryOperator::CreateAnd(A, Builder->CreateNot(B)); in visitAnd() 1412 return BinaryOperator::CreateAnd(Op0, Builder->CreateNot(C)); in visitAnd() 1418 return BinaryOperator::CreateAnd(Op1, Builder->CreateNot(C)); in visitAnd() 2252 return BinaryOperator::CreateOr(Builder->CreateNot(A), B); in visitOr() 2384 return BinaryOperator::CreateNot(And); in visitOr() 2406 Value *Not = Builder->CreateNot(B, B->getName()+".not"); in visitOr() 2410 Value *Not = Builder->CreateNot(A, A->getName()+".not"); in visitOr() 2424 Value *Not = Builder->CreateNot(NotOp, NotOp->getName()+".not"); in visitOr() 2431 return BinaryOperator::CreateXor(Builder->CreateNot(A), B); in visitOr() [all …]
|
| H A D | InstCombineSelect.cpp | 867 Value *NotCond = Builder->CreateNot(CondVal, "not."+CondVal->getName()); in visitSelectInst() 876 Value *NotCond = Builder->CreateNot(CondVal, "not."+CondVal->getName()); in visitSelectInst() 908 Value *NotCond = Builder->CreateNot(CondVal, "not."+CondVal->getName()); in visitSelectInst() 914 Value *NotCond = Builder->CreateNot(CondVal, "not."+CondVal->getName()); in visitSelectInst()
|
| H A D | InstCombineAddSub.cpp | 1539 return BinaryOperator::CreateNot(Op1); in visitSub() 1617 Y, Builder->CreateNot(Op1, Op1->getName() + ".not")); in visitSub() 1635 Builder->CreateNot(Y, Y->getName() + ".not")); in visitSub()
|
| H A D | InstCombineCompares.cpp | 2027 return BinaryOperator::CreateNot(Result); in visitICmpInstWithCastAndCast() 2375 return BinaryOperator::CreateNot(Res); in ProcessUMulZExtIdiom() 2621 return BinaryOperator::CreateNot(Xor); in visitICmpInst() 2630 Value *Not = Builder->CreateNot(Op0, I.getName()+"tmp"); in visitICmpInst() 2637 Value *Not = Builder->CreateNot(Op1, I.getName()+"tmp"); in visitICmpInst() 2644 Value *Not = Builder->CreateNot(Op0, I.getName()+"tmp"); in visitICmpInst() 2651 Value *Not = Builder->CreateNot(Op1, I.getName()+"tmp"); in visitICmpInst()
|
| H A D | InstCombineCalls.cpp | 1064 Builder->CreateCall(AssumeIntrinsic, Builder->CreateNot(A), in visitCallInst() 1066 Builder->CreateCall(AssumeIntrinsic, Builder->CreateNot(B), in visitCallInst()
|
| H A D | InstCombineCasts.cpp | 920 In = Builder->CreateNot(In, In->getName()+".not"); in transformSExtICmp()
|
| /minix3/external/bsd/llvm/dist/llvm/include/llvm/IR/ |
| H A D | NoFolder.h | 172 Instruction *CreateNot(Constant *C) const { in CreateNot() function 173 return BinaryOperator::CreateNot(C); in CreateNot()
|
| H A D | ConstantFolder.h | 113 Constant *CreateNot(Constant *C) const { in CreateNot() function
|
| H A D | InstrTypes.h | 298 static BinaryOperator *CreateNot(Value *Op, const Twine &Name = "", 300 static BinaryOperator *CreateNot(Value *Op, const Twine &Name,
|
| H A D | IRBuilder.h | 940 Value *CreateNot(Value *V, const Twine &Name = "") { 942 return Insert(Folder.CreateNot(VC), Name); 943 return Insert(BinaryOperator::CreateNot(V), Name);
|
| /minix3/external/bsd/llvm/dist/llvm/lib/Transforms/Scalar/ |
| H A D | LowerAtomic.cpp | 66 Res = Builder.CreateNot(Builder.CreateAnd(Orig, Val)); in LowerAtomicRMWInst()
|
| H A D | StructurizeCFG.cpp | 339 return BinaryOperator::CreateNot(Condition, "", Parent->getTerminator()); in invert() 344 return BinaryOperator::CreateNot(Condition, in invert()
|
| /minix3/external/bsd/llvm/dist/llvm/lib/CodeGen/ |
| H A D | IntrinsicLowering.cpp | 313 V = Builder.CreateNot(V); in LowerCTLZ() 406 Value *NotSrc = Builder.CreateNot(Src); in LowerIntrinsicCall()
|
| H A D | AtomicExpandPass.cpp | 257 return Builder.CreateNot(Builder.CreateAnd(Loaded, Inc), "new"); in performAtomicOp()
|
| /minix3/external/bsd/llvm/dist/llvm/include/llvm/Analysis/ |
| H A D | TargetFolder.h | 125 Constant *CreateNot(Constant *C) const { in CreateNot() function
|
| /minix3/external/bsd/llvm/dist/llvm/include/llvm/MC/ |
| H A D | MCExpr.h | 371 static const MCUnaryExpr *CreateNot(const MCExpr *Expr, MCContext &Ctx) { in CreateNot() function
|
| /minix3/external/bsd/llvm/dist/llvm/lib/Transforms/Instrumentation/ |
| H A D | MemorySanitizer.cpp | 1293 Value *V1 = IRB.CreateNot(I.getOperand(0)); in visitOr() 1294 Value *V2 = IRB.CreateNot(I.getOperand(1)); in visitOr() 1563 IRB.CreateOr(IRB.CreateAnd(A, IRB.CreateNot(SaOtherBits)), SaSignBit); in getLowestPossibleValue() 1566 return IRB.CreateAnd(A, IRB.CreateNot(Sa)); in getLowestPossibleValue() 1580 IRB.CreateOr(IRB.CreateAnd(A, IRB.CreateNot(SaSignBit)), SaOtherBits); in getHighestPossibleValue()
|
| /minix3/external/bsd/llvm/dist/clang/lib/CodeGen/ |
| H A D | CGExprScalar.cpp | 721 Check = Builder.CreateNot(Builder.CreateAnd(GE, LE)); in EmitFloatConversionCheck() 1840 return Builder.CreateNot(Op, "neg"); in VisitUnaryNot() 1862 BoolVal = Builder.CreateNot(BoolVal, "lnot"); in VisitUnaryLNot() 2311 llvm::Value *NotOverflow = Builder.CreateNot(overflow); in EmitOverflowCheckedBinOp() 2316 CGF.EmitTrapCheck(Builder.CreateNot(overflow)); in EmitOverflowCheckedBinOp() 3220 llvm::Value *tmp2 = Builder.CreateNot(tmp); in VisitAbstractConditionalOperator()
|
| H A D | CGAtomic.cpp | 455 Result = CGF.Builder.CreateNot(Result); in EmitAtomicOp()
|
| H A D | CGBuiltin.cpp | 3814 Value *EltsFromTbl = Builder.CreateAnd(Builder.CreateNot(CmpRes), TblRes); in EmitAArch64TblBuiltinExpr() 3837 Value *EltsFromTbl = Builder.CreateAnd(Builder.CreateNot(CmpRes), TblRes); in EmitAArch64TblBuiltinExpr() 4663 Ops[2] = Builder.CreateAnd(Builder.CreateNot(Ops[0]), Ops[2], "vbsl"); in EmitAArch64BuiltinExpr()
|
| /minix3/external/bsd/llvm/dist/llvm/lib/Transforms/Utils/ |
| H A D | SimplifyCFG.cpp | 2203 NewCond = Builder.CreateNot(NewCond, in FoldBranchToCommonDest() 2312 cast<Instruction>(Builder.CreateNot(PBI->getCondition(), in FoldBranchToCommonDest() 2333 cast<Instruction>(Builder.CreateNot(PBI->getCondition(), in FoldBranchToCommonDest() 2511 PBICond = Builder.CreateNot(PBICond, PBICond->getName()+".not"); in SimplifyCondBranchToCondBranch() 2515 BICond = Builder.CreateNot(BICond, BICond->getName()+".not"); in SimplifyCondBranchToCondBranch()
|
| /minix3/external/bsd/llvm/dist/llvm/lib/IR/ |
| H A D | Instructions.cpp | 1914 BinaryOperator *BinaryOperator::CreateNot(Value *Op, const Twine &Name, in CreateNot() function in BinaryOperator 1921 BinaryOperator *BinaryOperator::CreateNot(Value *Op, const Twine &Name, in CreateNot() function in BinaryOperator
|
| H A D | Core.cpp | 2429 return wrap(unwrap(B)->CreateNot(unwrap(V), Name)); in LLVMBuildNot()
|
| /minix3/external/bsd/llvm/dist/llvm/lib/Transforms/IPO/ |
| H A D | GlobalOpt.cpp | 918 LV = BinaryOperator::CreateNot(LV, "notinit", ICI); in OptimizeGlobalAddressOfMalloc()
|
| /minix3/external/bsd/llvm/dist/llvm/lib/MC/MCParser/ |
| H A D | AsmParser.cpp | 936 Res = MCUnaryExpr::CreateNot(Res, getContext()); in parsePrimaryExpr()
|