Searched refs:MinValue (Results 1 - 14 of 14) sorted by relevance

/netbsd-current/external/apache2/llvm/dist/llvm/tools/llvm-exegesis/lib/
H A DBenchmarkResult.h106 double min() const { return MinValue; }
116 double MinValue = std::numeric_limits<double>::max(); member in class:llvm::exegesis::PerInstructionStats
H A DBenchmarkResult.cpp423 MinValue = std::min(MinValue, BM.PerInstructionValue);
/netbsd-current/external/apache2/llvm/dist/llvm/lib/IR/
H A DAttributes.cpp81 static uint64_t packVScaleRangeArgs(unsigned MinValue, unsigned MaxValue) { argument
82 return uint64_t(MinValue) << 32 | MaxValue;
87 unsigned MinValue = Value >> 32; local
89 return std::make_pair(MinValue, MaxValue);
211 unsigned MinValue,
213 return get(Context, VScaleRange, packVScaleRangeArgs(MinValue, MaxValue));
581 unsigned MinValue, MaxValue; local
582 std::tie(MinValue, MaxValue) = getVScaleRangeArgs();
585 Result += utostr(MinValue);
1544 unsigned MinValue,
210 getWithVScaleRangeArgs(LLVMContext &Context, unsigned MinValue, unsigned MaxValue) argument
1543 addVScaleRangeAttr(LLVMContext &C, unsigned Index, unsigned MinValue, unsigned MaxValue) argument
1899 addVScaleRangeAttr(unsigned MinValue, unsigned MaxValue) argument
[all...]
H A DConstantRange.cpp210 APInt MinValue = APInt::getSignedMinValue(BitWidth);
214 return ConstantRange(-MaxValue, MinValue);
219 Upper = APIntOps::RoundingSDiv(MinValue, V, APInt::Rounding::DOWN);
221 Lower = APIntOps::RoundingSDiv(MinValue, V, APInt::Rounding::UP);
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/IR/
H A DAttributes.h112 unsigned MinValue, unsigned MaxValue);
604 unsigned MinValue,
960 AttrBuilder &addVScaleRangeAttr(unsigned MinValue, unsigned MaxValue);
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/SystemZ/AsmParser/
H A DSystemZAsmParser.cpp42 // Return true if Expr is in the range [MinValue, MaxValue].
43 static bool inRange(const MCExpr *Expr, int64_t MinValue, int64_t MaxValue) { argument
46 return Value >= MinValue && Value <= MaxValue;
234 bool isImm(int64_t MinValue, int64_t MaxValue) const { argument
235 return Kind == KindImm && inRange(Imm, MinValue, MaxValue);
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/X86/
H A DX86InstCombineIntrinsic.cpp466 APInt MinValue, MaxValue;
471 MinValue =
479 MinValue = APInt::getNullValue(SrcScalarSizeInBits);
483 auto *MinC = Constant::getIntegerValue(ArgTy, MinValue);
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/MCTargetDesc/
H A DHexagonMCInstrInfo.cpp567 int MinValue = HexagonMCInstrInfo::getMinValue(MCII, MCI); local
569 return (MinValue > Value || Value > MaxValue);
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/AsmParser/
H A DLLParser.h284 bool parseVScaleRangeArguments(unsigned &MinValue, unsigned &MaxValue);
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
H A DInstCombineSelect.cpp2193 const APInt *MinValue, *MaxValue; local
2195 if (!match(MinMax2, m_SMax(m_BinOp(AddSub), m_APInt(MinValue))))
2198 m_SMax(m_Instruction(MinMax2), m_APInt(MinValue)))) {
2206 if (!(*MaxValue + 1).isPowerOf2() || -*MinValue != *MaxValue + 1)
/netbsd-current/external/apache2/llvm/dist/llvm/lib/AsmParser/
H A DLLParser.cpp1359 unsigned MinValue, MaxValue; local
1361 if (parseVScaleRangeArguments(MinValue, MaxValue))
1363 B.addVScaleRangeAttr(MinValue, MaxValue);
2399 bool LLParser::parseVScaleRangeArguments(unsigned &MinValue,
2407 if (parseUInt32(MinValue))
2414 MaxValue = MinValue;
/netbsd-current/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaOpenMP.cpp7156 Expr *MinValue = nullptr;
8025 if (!IS.MinValue || !IS.MaxValue)
8028 ExprResult MinValue =
8029 SemaRef.ActOnParenExpr(DefaultLoc, DefaultLoc, IS.MinValue);
8030 if (!MinValue.isUsable())
8034 IS.CounterVar, MinValue.get());
8102 if (!IS.MinValue || !IS.MaxValue)
8105 ExprResult MinValue =
8106 SemaRef.ActOnParenExpr(DefaultLoc, DefaultLoc, IS.MinValue);
8107 if (!MinValue
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
H A DHexagonInstrInfo.cpp2094 int MinValue = getMinValue(MI); local
2098 return (ImmValue < MinValue || ImmValue > MaxValue);
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DScalarEvolution.cpp11221 APInt MinValue = APInt::getSignedMinValue(BitWidth);
11225 return (std::move(MinValue) + MaxStrideMinusOne).sgt(MinRHS);
11229 APInt MinValue = APInt::getMinValue(BitWidth);
11233 return (std::move(MinValue) + MaxStrideMinusOne).ugt(MinRHS);

Completed in 426 milliseconds