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

/external/llvm/lib/Transforms/Scalar/
H A DLowerAtomic.cpp62 Res = Builder.CreateNot(Builder.CreateAnd(Orig, Val));
/external/llvm/include/llvm/Support/
H A DNoFolder.h172 Instruction *CreateNot(Constant *C) const { function in class:llvm::NoFolder
173 return BinaryOperator::CreateNot(C);
H A DConstantFolder.h113 Constant *CreateNot(Constant *C) const { function in class:llvm::ConstantFolder
H A DTargetFolder.h125 Constant *CreateNot(Constant *C) const { function in class:llvm::TargetFolder
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineAndOrXor.cpp1144 return BinaryOperator::CreateNot(Or);
1184 return BinaryOperator::CreateAnd(A, Builder->CreateNot(B));
1927 return BinaryOperator::CreateNot(And);
1949 Value *Not = Builder->CreateNot(B, B->getName()+".not");
1953 Value *Not = Builder->CreateNot(A, A->getName()+".not");
1967 Value *Not = Builder->CreateNot(NotOp, NotOp->getName()+".not");
2069 Builder->CreateNot(Op0I->getOperand(1),
2081 Builder->CreateNot(Op0I->getOperand(0), "notlhs");
2083 Builder->CreateNot(Op0I->getOperand(1), "notrhs");
2208 return BinaryOperator::CreateAnd(A, Builder->CreateNot(Op
[all...]
H A DInstCombineSelect.cpp672 Value *NotCond = Builder->CreateNot(CondVal, "not."+CondVal->getName());
680 Value *NotCond = Builder->CreateNot(CondVal, "not."+CondVal->getName());
712 Value *NotCond = Builder->CreateNot(CondVal, "not."+CondVal->getName());
718 Value *NotCond = Builder->CreateNot(CondVal, "not."+CondVal->getName());
H A DInstCombineAddSub.cpp519 return BinaryOperator::CreateNot(Op1);
583 Builder->CreateNot(Y, Y->getName() + ".not"));
H A DInstCombineCompares.cpp1651 return BinaryOperator::CreateNot(Result);
1851 return BinaryOperator::CreateNot(Xor);
1860 Value *Not = Builder->CreateNot(Op0, I.getName()+"tmp");
1867 Value *Not = Builder->CreateNot(Op1, I.getName()+"tmp");
1874 Value *Not = Builder->CreateNot(Op0, I.getName()+"tmp");
1881 Value *Not = Builder->CreateNot(Op1, I.getName()+"tmp");
H A DInstCombineCasts.cpp899 In = Builder->CreateNot(In, In->getName()+".not");
/external/llvm/include/llvm/
H A DInstrTypes.h286 /// CreateNeg, CreateNot - Create the NEG and NOT
305 static BinaryOperator *CreateNot(Value *Op, const Twine &Name = "",
307 static BinaryOperator *CreateNot(Value *Op, const Twine &Name,
H A DIRBuilder.h785 Value *CreateNot(Value *V, const Twine &Name = "") { function in class:llvm::IRBuilder
787 return Insert(Folder.CreateNot(VC), Name);
788 return Insert(BinaryOperator::CreateNot(V), Name);
/external/llvm/lib/CodeGen/
H A DIntrinsicLowering.cpp313 V = Builder.CreateNot(V);
406 Value *NotSrc = Builder.CreateNot(Src);
/external/llvm/include/llvm/MC/
H A DMCExpr.h283 static const MCUnaryExpr *CreateNot(const MCExpr *Expr, MCContext &Ctx) { function in class:llvm::MCUnaryExpr
/external/llvm/lib/Transforms/Utils/
H A DSimplifyCFG.cpp1895 NewCond = Builder.CreateNot(NewCond,
1946 cast<Instruction>(Builder.CreateNot(PBI->getCondition(),
1967 cast<Instruction>(Builder.CreateNot(PBI->getCondition(),
2212 PBICond = Builder.CreateNot(PBICond, PBICond->getName()+".not");
2216 BICond = Builder.CreateNot(BICond, BICond->getName()+".not");
/external/mesa3d/src/glsl/
H A Dir_to_llvm.cpp535 return bld.CreateNot(ops[0]);
863 return bld.CreateNot(ops[0]);
/external/mesa3d/src/pixelflinger2/
H A Dllvm_scanline.cpp59 builder.CreateStore(builder.CreateNot(s), sPtr);
/external/clang/lib/CodeGen/
H A DCGExprScalar.cpp1456 return Builder.CreateNot(Op, "neg");
1475 BoolVal = Builder.CreateNot(BoolVal, "lnot");
1855 CGF.EmitCheck(Builder.CreateNot(overflow));
2586 llvm::Value *tmp2 = Builder.CreateNot(tmp);
H A DCGExpr.cpp2989 Result = CGF.Builder.CreateNot(Result);
/external/llvm/lib/VMCore/
H A DInstructions.cpp1897 BinaryOperator *BinaryOperator::CreateNot(Value *Op, const Twine &Name, function in class:BinaryOperator
1904 BinaryOperator *BinaryOperator::CreateNot(Value *Op, const Twine &Name, function in class:BinaryOperator
H A DCore.cpp2006 return wrap(unwrap(B)->CreateNot(unwrap(V), Name));
/external/llvm/lib/MC/MCParser/
H A DAsmParser.cpp791 Res = MCUnaryExpr::CreateNot(Res, getContext());
/external/llvm/lib/Transforms/IPO/
H A DGlobalOpt.cpp1109 LV = BinaryOperator::CreateNot(LV, "notinit", ICI);

Completed in 946 milliseconds