Home
last modified time | relevance | path

Searched refs:getNot (Results 1 – 25 of 44) sorted by relevance

12

/external/swiftshader/third_party/LLVM/lib/Analysis/
DLazyValueInfo.cpp88 static LVILatticeVal getNot(Constant *C) { in getNot() function in __anonba15b7e30111::LVILatticeVal
550 BBLV = LVILatticeVal::getNot(ConstantPointerNull::get(AI->getType())); in solveBlockValue()
634 Result = LVILatticeVal::getNot(ConstantPointerNull::get(PTy)); in solveBlockValueNonLocal()
662 Result = LVILatticeVal::getNot(ConstantPointerNull::get(PTy)); in solveBlockValueNonLocal()
834 Result = LVILatticeVal::getNot(cast<Constant>(ICI->getOperand(1))); in getEdgeValue()
/external/llvm/lib/Analysis/
DLazyValueInfo.cpp103 static LVILatticeVal getNot(Constant *C) { in getNot() function in __anonadeae0b70111::LVILatticeVal
675 Res = LVILatticeVal::getNot(ConstantPointerNull::get(PT)); in solveBlockValue()
764 Result = LVILatticeVal::getNot(ConstantPointerNull::get(PTy)); in solveBlockValueNonLocal()
793 Result = LVILatticeVal::getNot(ConstantPointerNull::get(PTy)); in solveBlockValueNonLocal()
982 LVILatticeVal::getNot(ResNot)); in solveBlockValueSelect()
990 LVILatticeVal::getNot(ResNot)); in solveBlockValueSelect()
1178 Result = LVILatticeVal::getNot(cast<Constant>(ICI->getOperand(1))); in getValueFromFromCondition()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
DLazyValueInfo.cpp630 Res = ValueLatticeElement::getNot(ConstantPointerNull::get(PT)); in solveBlockValueImpl()
712 Result = ValueLatticeElement::getNot(ConstantPointerNull::get(PTy)); in solveBlockValueNonLocal()
747 Result = ValueLatticeElement::getNot(ConstantPointerNull::get(PTy)); in solveBlockValueNonLocal()
932 ValueLatticeElement::getNot(ResNot)); in solveBlockValueSelect()
940 ValueLatticeElement::getNot(ResNot)); in solveBlockValueSelect()
1083 return ValueLatticeElement::getNot(cast<Constant>(RHS)); in getValueFromICmpCondition()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/
DValueLattice.h126 static ValueLatticeElement getNot(Constant *C) { in getNot() function
DTargetFolder.h125 return Fold(ConstantExpr::getNot(C)); in CreateNot()
/external/swiftshader/third_party/LLVM/include/llvm/Support/
DConstantFolder.h114 return ConstantExpr::getNot(C); in CreateNot()
DTargetFolder.h126 return Fold(ConstantExpr::getNot(C)); in CreateNot()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/
DConstantFolder.h135 return ConstantExpr::getNot(C); in CreateNot()
DConstants.h927 static Constant *getNot(Constant *C);
/external/llvm/include/llvm/IR/
DConstantFolder.h114 return ConstantExpr::getNot(C); in CreateNot()
DConstants.h877 static Constant *getNot(Constant *C);
/external/llvm/include/llvm/Analysis/
DTargetFolder.h126 return Fold(ConstantExpr::getNot(C)); in CreateNot()
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/Analysis/
DValueLatticeTest.cpp44 EXPECT_TRUE(ValueLatticeElement::getNot(C2).isNotConstant()); in TEST_F()
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/IR/
DConstantsTest.cpp234 CHECK(ConstantExpr::getNot(P0), "xor i32 " P0STR ", -1"); in TEST()
/external/llvm/unittests/IR/
DConstantsTest.cpp233 CHECK(ConstantExpr::getNot(P0), "xor i32 " P0STR ", -1"); in TEST()
/external/swiftshader/third_party/LLVM/include/llvm/
DConstants.h628 static Constant *getNot(Constant *C);
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/
DStructurizeCFG.cpp401 return ConstantExpr::getNot(C); in invert()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/
DConstantFold.cpp1764 return ConstantExpr::getXor(C1, ConstantExpr::getNot(C2)); in ConstantFoldCompareInstruction()
1765 return ConstantExpr::getXor(ConstantExpr::getNot(C1), C2); in ConstantFoldCompareInstruction()
/external/llvm/lib/IR/
DConstantFold.cpp1739 return ConstantExpr::getXor(C1, ConstantExpr::getNot(C2)); in ConstantFoldCompareInstruction()
1740 return ConstantExpr::getXor(ConstantExpr::getNot(C1), C2); in ConstantFoldCompareInstruction()
/external/swiftshader/third_party/LLVM/lib/VMCore/
DConstantFold.cpp1896 return ConstantExpr::getXor(C1, ConstantExpr::getNot(C2)); in ConstantFoldCompareInstruction()
1897 return ConstantExpr::getXor(ConstantExpr::getNot(C1), C2); in ConstantFoldCompareInstruction()
/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
DJumpThreading.cpp438 Result[i].first = ConstantExpr::getNot(Result[i].first); in ComputeValueKnownInPredecessors()
/external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
DInstCombineCompares.cpp1433 Constant *NotCI = ConstantExpr::getNot(RHS); in visitICmpInstWithInstAndIntCst()
2450 return new ICmpInst(I.getPredicate(), ConstantExpr::getNot(RHSC), A); in visitICmpInst()
/external/llvm/lib/Transforms/InstCombine/
DInstCombineCompares.cpp2273 Constant *NotCI = ConstantExpr::getNot(RHS); in visitICmpInstWithInstAndIntCst()
2281 Constant *NotBOC = ConstantExpr::getNot(BOC); in visitICmpInstWithInstAndIntCst()
4105 return new ICmpInst(I.getPredicate(), ConstantExpr::getNot(RHSC), A); in visitICmpInst()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/InstCombine/
DInstCombineAndOrXor.cpp2546 Constant *NotC = ConstantExpr::getNot(C); in visitXor()
2553 Constant *NotC = ConstantExpr::getNot(C); in visitXor()
/external/llvm/lib/Transforms/Scalar/
DJumpThreading.cpp517 R.first = ConstantExpr::getNot(R.first); in ComputeValueKnownInPredecessors()

12