/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/ |
H A D | RelLookupTableConverter.cpp | 113 Constant *Sub = llvm::ConstantExpr::getSub(Target, Base); in createRelLookupTable()
|
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/IR/ |
H A D | Constants.h | 980 static Constant *getSub(Constant *C1, Constant *C2, bool HasNUW = false, 1032 return getSub(C1, C2, false, true); 1036 return getSub(C1, C2, true, false);
|
H A D | ConstantFolder.h | 49 return ConstantExpr::getSub(LHS, RHS, HasNUW, HasNSW);
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/ |
H A D | ConstantInitBuilder.cpp | 143 llvm::Constant *offset = llvm::ConstantExpr::getSub(target, base); in getRelativeOffsetToPosition()
|
H A D | CodeGenFunction.cpp | 571 auto *PCRelAsInt = llvm::ConstantExpr::getSub(GOTAsInt, FuncAsInt); in EncodeAddrForUseInPrologue()
|
H A D | CGExprConstant.cpp | 2110 llvm::Constant *AddrLabelDiff = llvm::ConstantExpr::getSub(LHS, RHS); in tryEmitPrivate()
|
H A D | MicrosoftCXXABI.cpp | 560 llvm::ConstantExpr::getSub(PtrValAsInt, ImageBaseAsInt, in getImageRelativeConstant()
|
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/ |
H A D | TargetFolder.h | 58 return Fold(ConstantExpr::getSub(LHS, RHS, HasNUW, HasNSW));
|
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/InstCombine/ |
H A D | InstCombiner.h | 206 return ConstantExpr::getSub(C, ConstantInt::get(C->getType(), 1)); in SubOne()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/ |
H A D | InstCombineShifts.cpp | 283 ConstantExpr::getSub(ConstantInt::get(ShAmtsDiff->getType(), in dropRedundantMaskingOfLeftShiftInput() 418 Constant *Mask = ConstantExpr::getSub(C, ConstantInt::get(I.getType(), 1)); in commonShiftTransforms()
|
H A D | InstCombineAddSub.cpp | 1750 return BinaryOperator::CreateSub(ConstantExpr::getSub(C, C2), X); in visitSub() 1866 return BinaryOperator::CreateAdd(X, ConstantExpr::getSub(C, C2)); in visitSub()
|
H A D | InstCombineCasts.cpp | 1532 Constant *NumLowbitsLeft = ConstantExpr::getSub( in visitSExt() 1534 Constant *NewShAmt = ConstantExpr::getSub( in visitSExt()
|
H A D | InstCombineCalls.cpp | 1103 Constant *LeftShiftC = ConstantExpr::getSub(WidthC, ShAmtC); in visitCallInst() 1120 ConstantExpr::getSub(WidthC, ShAmtC)); in visitCallInst()
|
H A D | InstCombineCompares.cpp | 3013 return new ICmpInst(Pred, BOp0, ConstantExpr::getSub(RHS, BOC)); in foldICmpBinOpEqualityWithConstant() 3047 return new ICmpInst(Pred, BOp1, ConstantExpr::getSub(BOC, RHS)); in foldICmpBinOpEqualityWithConstant()
|
H A D | InstCombineSelect.cpp | 1337 auto *ThresholdHighExcl = ConstantExpr::getSub(C0, C1); in canonicalizeClampLike()
|
H A D | InstructionCombining.cpp | 2947 Constant *NewCase = ConstantExpr::getSub(Case.getCaseValue(), AddRHS); in visitSwitchInst()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/ |
H A D | HWAddressSanitizer.cpp | 456 ConstantExpr::getSub(ConstantExpr::getPtrToInt(Ptr, Int64Ty), in createHwasanCtorComdat() 1409 ConstantExpr::getSub( in instrumentGlobal()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/ |
H A D | Constants.cpp | 2662 return getSub(ConstantFP::getZeroValueForNegation(C->getType()), in getNeg() 2689 Constant *ConstantExpr::getSub(Constant *C1, Constant *C2, in getSub() function in ConstantExpr
|
H A D | Core.cpp | 1560 return wrap(ConstantExpr::getSub(unwrap<Constant>(LHSConstant), in LLVMConstSub()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/ |
H A D | InlineCost.cpp | 1650 if (Constant *C = ConstantExpr::getSub(CLHS, CRHS)) { in visitSub()
|
H A D | ConstantFolding.cpp | 892 Res = ConstantExpr::getSub(Res, CE->getOperand(1)); in SymbolicallyEvaluateGEP()
|
H A D | InstructionSimplify.cpp | 726 return ConstantExpr::getSub(LHSOffset, RHSOffset); in computePointerDifference()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/ |
H A D | LowerTypeTests.cpp | 773 ConstantExpr::getSub( in lowerTypeTestCall()
|
/netbsd-src/external/apache2/llvm/dist/llvm/bindings/ocaml/llvm/ |
H A D | llvm.mli | 1107 constants. See the method [llvm::ConstantExpr::getSub]. *)
|