HomeSort by: relevance | last modified time | path
    Searched refs:CreateNot (Results 1 - 25 of 38) sorted by relevancy

1 2

  /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombineAndOrXor.cpp 1545 return BinaryOperator::CreateNot(AndOr);
1694 return BinaryOperator::CreateNot(Builder.CreateXor(A, B));
1712 return BinaryOperator::CreateNot(Builder.CreateXor(A, B));
1720 return BinaryOperator::CreateNot(Builder.CreateAnd(A, B));
1986 return BinaryOperator::CreateAnd(Op0, Builder.CreateNot(B));
1989 return BinaryOperator::CreateAnd(Op1, Builder.CreateNot(B));
2002 return BinaryOperator::CreateAnd(Op0, Builder.CreateNot(C));
2008 return BinaryOperator::CreateAnd(Op1, Builder.CreateNot(C));
2813 Value *Not = Builder.CreateNot(B, B->getName() + ".not");
2817 Value *Not = Builder.CreateNot(A, A->getName() + ".not")
    [all...]
InstCombineNegator.cpp 179 return Builder.CreateNot(Ops[0], I->getName() + ".neg");
372 return Builder.CreateNot(Ops[0], I->getName() + ".neg");
InstCombineAddSub.cpp 885 return BinaryOperator::CreateAdd(Builder.CreateNot(Y), X);
974 return new ZExtInst(Builder.CreateNot(X), Ty);
981 Value *NotX = Builder.CreateNot(X);
1124 return BinaryOperator::CreateNot(NotMask, I.getName());
1797 return BinaryOperator::CreateNot(Op1);
1806 return BinaryOperator::CreateAdd(Builder.CreateNot(Op1), X);
1944 Y, Builder.CreateNot(Op1, Op1->getName() + ".not"));
1962 Builder.CreateAnd(Op1, Builder.CreateNot(C)));
2019 Op0, Builder.CreateNot(Y, Y->getName() + ".not"));
2045 Value *Not = Builder.CreateNot(MinMax)
    [all...]
InstCombineSelect.cpp 1702 NotA = Builder.CreateNot(A);
1704 NotB = Builder.CreateNot(B);
1706 NotC = Builder.CreateNot(C);
1710 Value *NewOuter = Builder.CreateNot(
2681 Value *NotCond = Builder.CreateNot(CondVal, "not." + CondVal->getName());
2686 Value *NotCond = Builder.CreateNot(CondVal, "not." + CondVal->getName());
2809 Value *NotCond = Builder.CreateNot(CondVal, "not." + CondVal->getName());
2815 Value *NotCond = Builder.CreateNot(CondVal, "not." + CondVal->getName());
2982 Value *B = Builder.CreateNot(Y);
2993 return BinaryOperator::CreateNot(NewMinMax)
    [all...]
InstCombineCompares.cpp 3738 Res = Builder.CreateNot(Res, "umul.not.ov");
3789 return new ICmpInst(Pred, Builder.CreateNot(Op1), X);
3793 return new ICmpInst(Pred, X, Builder.CreateNot(Op0));
4856 return BinaryOperator::CreateNot(Res);
5387 return BinaryOperator::CreateNot(A);
5396 return BinaryOperator::CreateNot(A);
5407 return BinaryOperator::CreateNot(Builder.CreateXor(A, B));
5419 return BinaryOperator::CreateAnd(Builder.CreateNot(A), B);
5427 return BinaryOperator::CreateAnd(Builder.CreateNot(B), A);
5435 return BinaryOperator::CreateOr(Builder.CreateNot(A), B)
    [all...]
InstCombineCalls.cpp 986 return BinaryOperator::CreateNot(InvMaxMin);
992 return BinaryOperator::CreateNot(InvMaxMin);
1698 Builder.CreateNot(A), OpBundles, II->getName());
1700 Builder.CreateNot(B), II->getName());
InstCombinePHI.cpp 1293 return Self.Builder.CreateNot(Cond);
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
NoFolder.h 169 Instruction *CreateNot(Constant *C) const override {
170 return BinaryOperator::CreateNot(C);
IRBuilderFolder.h 68 virtual Value *CreateNot(Constant *C) const = 0;
ConstantFolder.h 136 Constant *CreateNot(Constant *C) const override {
InstrTypes.h 390 static BinaryOperator *CreateNot(Value *Op, const Twine &Name = "",
392 static BinaryOperator *CreateNot(Value *Op, const Twine &Name,
IRBuilder.h 1595 Value *CreateNot(Value *V, const Twine &Name = "") {
1597 return Insert(Folder.CreateNot(VC), Name);
1598 return Insert(BinaryOperator::CreateNot(V), Name);
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
LowerAtomic.cpp 66 Res = Builder.CreateNot(Builder.CreateAnd(Orig, Val));
GuardWidening.cpp 571 Cond1 = BinaryOperator::CreateNot(Cond1, "inverted", InsertPt);
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
IntrinsicLowering.cpp 198 V = Builder.CreateNot(V);
261 Value *NotSrc = Builder.CreateNot(Src);
AtomicExpandPass.cpp 509 return Builder.CreateNot(Builder.CreateAnd(Loaded, Inc), "new");
684 PMV.Inv_Mask = Builder.CreateNot(PMV.Mask, "Inv_Mask");
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/
PoisonChecking.cpp 258 CreateAssert(B, B.CreateNot(Cond));
MemorySanitizer.cpp 2097 Value *V1 = IRB.CreateNot(I.getOperand(0));
2098 Value *V2 = IRB.CreateNot(I.getOperand(1));
2382 IRB.CreateOr(IRB.CreateAnd(A, IRB.CreateNot(SaOtherBits)), SaSignBit);
2385 return IRB.CreateAnd(A, IRB.CreateNot(Sa));
2399 IRB.CreateOr(IRB.CreateAnd(A, IRB.CreateNot(SaSignBit)), SaOtherBits);
3013 Value *OperandUnsetBits = IRB.CreateNot(I.getOperand(0));
  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
TargetFolder.h 128 Constant *CreateNot(Constant *C) const override {
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
FlattenCFG.cpp 493 CInst2 = cast<Instruction>(Builder.CreateNot(CInst2));
SimplifyCFG.cpp 3086 Builder.CreateNot(NewCond, PBI->getCondition()->getName() + ".not");
3473 Value *PPred = PStore->getParent() == PTB ? PCond : QB.CreateNot(PCond);
3474 Value *QPred = QStore->getParent() == QTB ? QCond : QB.CreateNot(QCond);
3477 PPred = QB.CreateNot(PPred);
3479 QPred = QB.CreateNot(QPred);
3830 PBICond = Builder.CreateNot(PBICond, PBICond->getName() + ".not");
3834 BICond = Builder.CreateNot(BICond, BICond->getName() + ".not");
4734 Builder.CreateAssumption(Builder.CreateNot(Cond));
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDGPUPrintfRuntimeBinding.cpp 362 Builder.CreateSExt(Builder.CreateNot(cmp), I32Ty, "printf_res");
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGExprScalar.cpp 2771 return Builder.CreateNot(Op, "neg");
2797 BoolVal = Builder.CreateNot(BoolVal, "lnot");
3308 llvm::Value *NotOverflow = Builder.CreateNot(overflow);
3313 CGF.EmitTrapCheck(Builder.CreateNot(overflow), OverflowKind);
4547 llvm::Value *tmp2 = Builder.CreateNot(tmp);
5081 auto *NoOffsetOverflow = Builder.CreateNot(EvaluatedGEP.OffsetOverflows);
CGAtomic.cpp 688 Result = CGF.Builder.CreateNot(Result);
1273 ResVal = Builder.CreateNot(ResVal);
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Vectorize/
VPlan.cpp 586 Value *V = Builder.CreateNot(A);

Completed in 55 milliseconds

1 2