/external/swiftshader/third_party/LLVM/unittests/VMCore/ |
D | ConstantsTest.cpp | 40 EXPECT_EQ(Zero, ConstantExpr::getSub(NegOne, One)); in TEST() 44 EXPECT_EQ(Zero, ConstantExpr::getSub(One, NegOne)); in TEST() 48 EXPECT_EQ(Zero, ConstantExpr::getSub(One, One)); in TEST()
|
/external/llvm/unittests/IR/ |
D | ConstantsTest.cpp | 47 EXPECT_EQ(Zero, ConstantExpr::getSub(NegOne, One)); in TEST() 51 EXPECT_EQ(Zero, ConstantExpr::getSub(One, NegOne)); in TEST() 55 EXPECT_EQ(Zero, ConstantExpr::getSub(One, One)); in TEST() 240 CHECK(ConstantExpr::getSub(P0, P0), "sub i32 " P0STR ", " P0STR); in TEST()
|
/external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/ |
D | InstCombineAddSub.cpp | 589 return BinaryOperator::CreateSub(ConstantExpr::getSub(C, C2), X); in visitSub() 633 Constant *CP1 = ConstantExpr::getSub(ConstantInt::get(I.getType(),1), CI); in visitSub() 640 C = ConstantExpr::getSub(One, ConstantExpr::getShl(One, CI)); in visitSub() 667 return BinaryOperator::CreateMul(X, ConstantExpr::getSub(C1, C2)); in visitSub()
|
D | InstCombineCompares.cpp | 36 return ConstantExpr::getSub(C, ConstantInt::get(C->getType(), 1)); in SubOne() 93 Result = ConstantExpr::getSub(In1, In2); in SubWithOverflow() 708 ConstantExpr::getSub(ConstantInt::getAllOnesValue(CI->getType()), CI); in FoldICmpAddOpCst() 729 return new ICmpInst(ICmpInst::ICMP_SGT, X, ConstantExpr::getSub(SMax, CI)); in FoldICmpAddOpCst() 740 return new ICmpInst(ICmpInst::ICMP_SLT, X, ConstantExpr::getSub(SMax, C)); in FoldICmpAddOpCst() 1388 ConstantExpr::getSub(RHS, BOp1C)); in visitICmpInstWithInstAndIntCst() 1422 ConstantExpr::getSub(BOp0C, RHS)); in visitICmpInstWithInstAndIntCst()
|
D | InstCombineAndOrXor.cpp | 1564 AddCST = ConstantExpr::getSub(AddOne(RHSCst), LHSCst); in FoldOrOfICmps() 2150 Constant *ConstantRHS = ConstantExpr::getSub(NegOp0I0C, in visitXor() 2161 ConstantExpr::getSub(NegOp0CI, in visitXor()
|
D | InstructionCombining.cpp | 1242 Constant* NewCaseVal = ConstantExpr::getSub(cast<Constant>(CaseVal), in visitSwitchInst()
|
/external/swiftshader/third_party/LLVM/include/llvm/ |
D | Constants.h | 632 static Constant *getSub(Constant *C1, Constant *C2, 673 return getSub(C1, C2, false, true); 676 return getSub(C1, C2, true, false);
|
/external/llvm/include/llvm/IR/ |
D | Constants.h | 881 static Constant *getSub(Constant *C1, Constant *C2, 929 return getSub(C1, C2, false, true); 932 return getSub(C1, C2, true, false);
|
D | ConstantFolder.h | 43 return ConstantExpr::getSub(LHS, RHS, HasNUW, HasNSW);
|
/external/swiftshader/third_party/LLVM/include/llvm/Support/ |
D | ConstantFolder.h | 43 return ConstantExpr::getSub(LHS, RHS, HasNUW, HasNSW);
|
D | TargetFolder.h | 59 return Fold(ConstantExpr::getSub(LHS, RHS, HasNUW, HasNSW));
|
/external/llvm/include/llvm/Analysis/ |
D | TargetFolder.h | 59 return Fold(ConstantExpr::getSub(LHS, RHS, HasNUW, HasNSW));
|
/external/llvm/lib/Transforms/IPO/ |
D | LowerTypeTests.cpp | 640 Constant *Disp = ConstantExpr::getSub(DestInt, SrcInt); in createJumpTableEntry() 643 Constant *OffsetedDisp = ConstantExpr::getSub(Disp, DispOffset); in createJumpTableEntry()
|
/external/llvm/lib/Transforms/InstCombine/ |
D | InstCombineInternal.h | 70 return ConstantExpr::getSub(C, ConstantInt::get(C->getType(), 1)); in SubOne()
|
D | InstCombineCompares.cpp | 98 Result = ConstantExpr::getSub(In1, In2); in SubWithOverflow() 1149 ConstantExpr::getSub(ConstantInt::getAllOnesValue(CI->getType()), CI); in FoldICmpAddOpCst() 1170 return new ICmpInst(ICmpInst::ICMP_SGT, X, ConstantExpr::getSub(SMax, CI)); in FoldICmpAddOpCst() 1181 return new ICmpInst(ICmpInst::ICMP_SLT, X, ConstantExpr::getSub(SMax, C)); in FoldICmpAddOpCst() 2225 ConstantExpr::getSub(RHS, BOp1C)); in visitICmpInstWithInstAndIntCst() 2261 ConstantExpr::getSub(BOp0C, RHS)); in visitICmpInstWithInstAndIntCst()
|
D | InstCombineAndOrXor.cpp | 1910 AddCST = ConstantExpr::getSub(AddOne(RHSCst), LHSCst); in FoldOrOfICmps() 2568 Constant *ConstantRHS = ConstantExpr::getSub(NegOp0I0C, in visitXor() 2579 ConstantExpr::getSub(NegOp0CI, in visitXor()
|
D | InstCombineAddSub.cpp | 1524 return BinaryOperator::CreateSub(ConstantExpr::getSub(C, C2), X); in visitSub()
|
/external/swiftshader/third_party/LLVM/lib/VMCore/ |
D | Constants.cpp | 1764 return getSub(ConstantFP::getZeroValueForNegation(C->getType()), in getNeg() 1791 Constant *ConstantExpr::getSub(Constant *C1, Constant *C2, in getSub() function in ConstantExpr
|
D | Core.cpp | 740 return wrap(ConstantExpr::getSub(unwrap<Constant>(LHSConstant), in LLVMConstSub()
|
D | ConstantFold.cpp | 1301 Res.push_back(ConstantExpr::getSub(C1, C2)); in ConstantFoldBinaryInstruction()
|
/external/llvm/lib/Analysis/ |
D | InlineCost.cpp | 744 if (Constant *C = ConstantExpr::getSub(CLHS, CRHS)) { in visitSub()
|
D | ConstantFolding.cpp | 776 Res = ConstantExpr::getSub(Res, CE->getOperand(1)); in SymbolicallyEvaluateGEP()
|
/external/swiftshader/third_party/LLVM/lib/Analysis/ |
D | ConstantFolding.cpp | 602 Res = ConstantExpr::getSub(Res, CE->getOperand(1)); in SymbolicallyEvaluateGEP()
|
/external/llvm/lib/IR/ |
D | Constants.cpp | 2116 return getSub(ConstantFP::getZeroValueForNegation(C->getType()), in getNeg() 2143 Constant *ConstantExpr::getSub(Constant *C1, Constant *C2, in getSub() function in ConstantExpr
|
/external/clang/lib/CodeGen/ |
D | CGExprConstant.cpp | 1403 llvm::Constant *AddrLabelDiff = llvm::ConstantExpr::getSub(LHS, RHS); in EmitConstantValue()
|