/external/llvm/lib/Analysis/ |
D | LazyValueInfo.cpp | 103 static LVILatticeVal getNot(Constant *C) { in getNot() function in __anonb20e53550111::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-10.0/llvm/include/llvm/Analysis/ |
D | ValueLattice.h | 125 static ValueLatticeElement getNot(Constant *C) { in getNot() function
|
D | TargetFolder.h | 124 return Fold(ConstantExpr::getNot(C)); in CreateNot()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
D | LazyValueInfo.cpp | 648 Res = ValueLatticeElement::getNot(ConstantPointerNull::get(PT)); in solveBlockValueImpl() 735 Result = ValueLatticeElement::getNot(ConstantPointerNull::get(PTy)); in solveBlockValueNonLocal() 770 Result = ValueLatticeElement::getNot(ConstantPointerNull::get(PTy)); in solveBlockValueNonLocal() 978 ValueLatticeElement::getNot(ResNot)); in solveBlockValueSelect() 986 ValueLatticeElement::getNot(ResNot)); in solveBlockValueSelect() 1207 return ValueLatticeElement::getNot(cast<Constant>(RHS)); in getValueFromICmpCondition()
|
/external/llvm-project/llvm/lib/Analysis/ |
D | LazyValueInfo.cpp | 610 return ValueLatticeElement::getNot(ConstantPointerNull::get(PT)); in solveBlockValueImpl() 791 BBLV = ValueLatticeElement::getNot(ConstantPointerNull::get(PTy)); in intersectAssumeOrGuardBlockValueConstantRange() 905 ValueLatticeElement::getNot(ResNot)); in solveBlockValueSelect() 913 ValueLatticeElement::getNot(ResNot)); in solveBlockValueSelect() 1136 return ValueLatticeElement::getNot(cast<Constant>(RHS)); in getValueFromICmpCondition()
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
D | ConstantFolder.h | 134 return ConstantExpr::getNot(C); in CreateNot()
|
D | Constants.h | 931 static Constant *getNot(Constant *C);
|
/external/llvm/include/llvm/IR/ |
D | ConstantFolder.h | 114 return ConstantExpr::getNot(C); in CreateNot()
|
D | Constants.h | 877 static Constant *getNot(Constant *C);
|
/external/llvm-project/llvm/include/llvm/Analysis/ |
D | ValueLattice.h | 209 static ValueLatticeElement getNot(Constant *C) { in getNot() function
|
D | TargetFolder.h | 129 return Fold(ConstantExpr::getNot(C)); in CreateNot()
|
/external/llvm-project/llvm/include/llvm/IR/ |
D | ConstantFolder.h | 137 return ConstantExpr::getNot(C); in CreateNot()
|
D | Constants.h | 978 static Constant *getNot(Constant *C);
|
/external/llvm/include/llvm/Analysis/ |
D | TargetFolder.h | 126 return Fold(ConstantExpr::getNot(C)); in CreateNot()
|
/external/llvm-project/llvm/unittests/Analysis/ |
D | ValueLatticeTest.cpp | 40 EXPECT_TRUE(ValueLatticeElement::getNot(C2).isNotConstant()); in TEST_F()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/InstCombine/ |
D | InstCombineAndOrXor.cpp | 2131 if (AConst == ConstantExpr::getNot(BConst)) in getSelectCondition() 3062 return BinaryOperator::CreateLShr(ConstantExpr::getNot(C), Y); in visitXor() 3067 return BinaryOperator::CreateAShr(ConstantExpr::getNot(C), Y); in visitXor() 3080 Value *And = Builder.CreateAnd(X, ConstantExpr::getNot(C2)); in visitXor() 3081 return BinaryOperator::CreateXor(And, ConstantExpr::getNot(C1)); in visitXor() 3085 Value *Or = Builder.CreateOr(X, ConstantExpr::getNot(C2)); in visitXor() 3086 return BinaryOperator::CreateXor(Or, ConstantExpr::getNot(C1)); in visitXor()
|
/external/llvm-project/llvm/lib/Transforms/InstCombine/ |
D | InstCombineNegator.cpp | 411 Value *Xor = Builder.CreateXor(Ops[0], ConstantExpr::getNot(C)); in visitImpl()
|
D | InstCombineAndOrXor.cpp | 2220 if (AConst == ConstantExpr::getNot(BConst)) in getSelectCondition() 3181 return BinaryOperator::CreateLShr(ConstantExpr::getNot(C), Y); in visitXor() 3191 return BinaryOperator::CreateAShr(ConstantExpr::getNot(C), Y); in visitXor() 3210 Value *And = Builder.CreateAnd(X, ConstantExpr::getNot(C2)); in visitXor() 3211 return BinaryOperator::CreateXor(And, ConstantExpr::getNot(C1)); in visitXor() 3215 Value *Or = Builder.CreateOr(X, ConstantExpr::getNot(C2)); in visitXor() 3216 return BinaryOperator::CreateXor(Or, ConstantExpr::getNot(C1)); in visitXor()
|
/external/llvm/unittests/IR/ |
D | ConstantsTest.cpp | 233 CHECK(ConstantExpr::getNot(P0), "xor i32 " P0STR ", -1"); in TEST()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
D | StructurizeCFG.cpp | 408 return ConstantExpr::getNot(C); in invert()
|
/external/llvm-project/llvm/lib/Transforms/Scalar/ |
D | SCCP.cpp | 1137 return ValueLatticeElement::getNot( in getValueFromMetadata() 1357 ValueLatticeElement::getNot(CondVal.getConstant())); in handleCallResult()
|
/external/llvm-project/llvm/unittests/IR/ |
D | ConstantsTest.cpp | 233 CHECK(ConstantExpr::getNot(P0), "xor i32 " P0STR ", -1"); in TEST()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
D | ConstantFold.cpp | 1877 return ConstantExpr::getXor(C1, ConstantExpr::getNot(C2)); in ConstantFoldCompareInstruction() 1878 return ConstantExpr::getXor(ConstantExpr::getNot(C1), C2); in ConstantFoldCompareInstruction()
|
/external/llvm/lib/IR/ |
D | ConstantFold.cpp | 1739 return ConstantExpr::getXor(C1, ConstantExpr::getNot(C2)); in ConstantFoldCompareInstruction() 1740 return ConstantExpr::getXor(ConstantExpr::getNot(C1), C2); in ConstantFoldCompareInstruction()
|
/external/llvm-project/llvm/lib/IR/ |
D | ConstantFold.cpp | 2007 return ConstantExpr::getXor(C1, ConstantExpr::getNot(C2)); in ConstantFoldCompareInstruction() 2008 return ConstantExpr::getXor(ConstantExpr::getNot(C1), C2); in ConstantFoldCompareInstruction()
|