Searched refs:RangeWidth (Results 1 - 9 of 9) sorted by relevance

/freebsd-current/contrib/llvm-project/llvm/lib/Support/
H A DAPInt.cpp2790 unsigned RangeWidth) {
2793 assert(RangeWidth <= CoeffWidth &&
2795 assert(RangeWidth > 1 && "Value range bit width should be > 1");
2798 << "x + " << C << ", rw:" << RangeWidth << '\n');
2801 if (C.sextOrTrunc(RangeWidth).isZero()) {
2855 APInt R = APInt::getOneBitSet(CoeffWidth, RangeWidth);
2915 << B << "x + " << C << ", rw:" << RangeWidth << '\n');
/freebsd-current/contrib/llvm-project/llvm/lib/Analysis/
H A DStackSafetyAnalysis.cpp1117 const ConstantRange FullSet(FunctionSummary::ParamAccess::RangeWidth, true);
1143 .emplace(PS.ParamNo, FunctionSummary::ParamAccess::RangeWidth)
1171 FunctionSummary::ParamAccess::RangeWidth, std::move(Functions));
H A DScalarEvolution.cpp7054 const SCEV *RangeWidth = getMinusOne(AddRec->getType());
7056 const SCEV *MaxItersWithoutWrap = getUDivExpr(RangeWidth, StepAbs);
/freebsd-current/contrib/llvm-project/llvm/include/llvm/IR/
H A DModuleSummaryIndex.h775 static constexpr uint32_t RangeWidth = 64; member in struct:llvm::CalleeInfo::AllocationType::FunctionSummary::ParamAccess
783 ConstantRange Offsets{/*BitWidth=*/RangeWidth, /*isFullSet=*/true};
795 ConstantRange Use{/*BitWidth=*/RangeWidth, /*isFullSet=*/true};
/freebsd-current/contrib/llvm-project/llvm/lib/IR/
H A DModuleSummaryIndex.cpp37 constexpr uint32_t FunctionSummary::ParamAccess::RangeWidth; member in class:FunctionSummary::ParamAccess
/freebsd-current/contrib/llvm-project/llvm/include/llvm/ADT/
H A DAPInt.h2276 unsigned RangeWidth);
/freebsd-current/contrib/llvm-project/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp7139 APInt Lower(FunctionSummary::ParamAccess::RangeWidth,
7142 APInt Upper(FunctionSummary::ParamAccess::RangeWidth,
/freebsd-current/contrib/llvm-project/llvm/lib/AsmParser/
H A DLLParser.cpp9396 Val = Val.extOrTrunc(FunctionSummary::ParamAccess::RangeWidth);
9411 ? ConstantRange::getEmpty(FunctionSummary::ParamAccess::RangeWidth)
/freebsd-current/contrib/llvm-project/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp3874 Range = Range.sextOrTrunc(FunctionSummary::ParamAccess::RangeWidth);

Completed in 326 milliseconds