Searched refs:MaxValue (Results 1 - 20 of 20) sorted by relevance

/netbsd-current/external/apache2/llvm/dist/llvm/tools/llvm-exegesis/lib/
H A DBenchmarkResult.h107 double max() const { return MaxValue; }
115 double MaxValue = std::numeric_limits<double>::min(); member in class:llvm::exegesis::PerInstructionStats
H A DBenchmarkResult.cpp422 MaxValue = std::max(MaxValue, BM.PerInstructionValue);
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
H A DMemoryLocation.h74 MaxValue = (MapTombstone - 1) & ~ImpreciseBit,
98 : Value(Raw > MaxValue ? AfterPointer : Raw) {}
111 if (LLVM_UNLIKELY(Value > MaxValue))
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/ADT/
H A DBitfields.h218 /// \tparam MaxValue For enums the maximum enum allowed.
220 T MaxValue = std::is_enum<T>::value
239 static_assert(!std::is_enum<T>::value || MaxValue != T(0),
240 "Enum Bitfields must provide a MaxValue");
249 static_cast<IntegerType>(MaxValue);
/netbsd-current/sys/external/bsd/acpica/dist/compiler/
H A Ddtfield.c293 UINT64 MaxValue; local
353 MaxValue = ((UINT64) (-1)) >> (64 - (ByteLength * 8));
357 if (Value > MaxValue)
/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;
86 unsigned MaxValue = Value & std::numeric_limits<unsigned>::max(); local
89 return std::make_pair(MinValue, MaxValue);
212 unsigned MaxValue) {
213 return get(Context, VScaleRange, packVScaleRangeArgs(MinValue, MaxValue));
581 unsigned MinValue, MaxValue; local
582 std::tie(MinValue, MaxValue) = getVScaleRangeArgs();
587 Result += utostr(MaxValue);
1545 unsigned MaxValue) {
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.cpp211 APInt MaxValue = APInt::getSignedMaxValue(BitWidth); local
214 return ConstantRange(-MaxValue, MinValue);
218 Lower = APIntOps::RoundingSDiv(MaxValue, V, APInt::Rounding::UP);
222 Upper = APIntOps::RoundingSDiv(MaxValue, V, APInt::Rounding::DOWN);
735 // Analyze wrapped sets in their two parts: [0, Upper) \/ [Lower, MaxValue]
736 // We use the non-wrapped set code to analyze the [Lower, MaxValue) part, and
737 // then we do the union with [MaxValue, Upper)
739 // If Upper is greater than or equal to MaxValue(DstTy), it covers the whole
748 // Union covers the MaxValue case, so return if the remaining range is just
749 // MaxValue(DstT
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/IR/
H A DAttributes.h112 unsigned MinValue, unsigned MaxValue);
605 unsigned MaxValue);
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 {
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;
473 MaxValue =
480 MaxValue = APInt::getLowBitsSet(SrcScalarSizeInBits, DstScalarSizeInBits);
484 auto *MaxC = Constant::getIntegerValue(ArgTy, MaxValue);
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/MCTargetDesc/
H A DHexagonMCInstrInfo.cpp568 int MaxValue = HexagonMCInstrInfo::getMaxValue(MCII, MCI); local
569 return (MinValue > Value || Value > MaxValue);
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
H A DInstCombineSelect.cpp2193 const APInt *MinValue, *MaxValue; local
2194 if (match(&MinMax1, m_SMin(m_Instruction(MinMax2), m_APInt(MaxValue)))) {
2199 if (!match(MinMax2, m_SMin(m_BinOp(AddSub), m_APInt(MaxValue))))
2206 if (!(*MaxValue + 1).isPowerOf2() || -*MinValue != *MaxValue + 1)
2209 unsigned NewBitWidth = (*MaxValue + 1).logBase2() + 1;
/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/AsmParser/
H A DLLParser.cpp1359 unsigned MinValue, MaxValue; local
1361 if (parseVScaleRangeArguments(MinValue, MaxValue))
1363 B.addVScaleRangeAttr(MinValue, MaxValue);
2400 unsigned &MaxValue) {
2411 if (parseUInt32(MaxValue))
2414 MaxValue = MinValue;
/netbsd-current/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaOpenMP.cpp7160 Expr *MaxValue = nullptr;
8025 if (!IS.MinValue || !IS.MaxValue)
8048 ExprResult MaxValue =
8049 SemaRef.ActOnParenExpr(DefaultLoc, DefaultLoc, IS.MaxValue);
8050 if (!MaxValue.isUsable())
8054 IS.CounterVar, MaxValue.get());
8102 if (!IS.MinValue || !IS.MaxValue)
8125 ExprResult MaxValue =
8126 SemaRef.ActOnParenExpr(DefaultLoc, DefaultLoc, IS.MaxValue);
8127 if (!MaxValue
[all...]
H A DSemaChecking.cpp248 llvm::APSInt MaxValue(
254 if (llvm::APSInt::compareValues(AlignValue, MaxValue) > 0) {
256 << MaxValue.toString(10);
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DScalarEvolution.cpp10307 const SCEV *MaxValue = getZeroExtendExpr(
10309 if (isKnownPredicate(ICmpInst::ICMP_ULE, FoundLHS, MaxValue) &&
10310 isKnownPredicate(ICmpInst::ICMP_ULE, FoundRHS, MaxValue)) {
11197 APInt MaxValue = APInt::getSignedMaxValue(BitWidth);
11201 return (std::move(MaxValue) - MaxStrideMinusOne).slt(MaxRHS);
11205 APInt MaxValue = APInt::getMaxValue(BitWidth);
11209 return (std::move(MaxValue) - MaxStrideMinusOne).ult(MaxRHS);
11269 APInt MaxValue = IsSigned ? APInt::getSignedMaxValue(BitWidth)
11271 APInt Limit = MaxValue - (StrideForMaxBECount - 1);
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
H A DHexagonInstrInfo.cpp2095 int MaxValue = getMaxValue(MI); local
2098 return (ImmValue < MinValue || ImmValue > MaxValue);
/netbsd-current/external/apache2/llvm/dist/clang/lib/AST/
H A DExprConstant.cpp8909 APSInt MaxValue(APInt::getOneBitSet(SrcWidth, SrcWidth - 1));
8910 if (APSInt::compareValues(Alignment, MaxValue) > 0) {
8912 << MaxValue << ForType << Alignment;
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
H A DSIISelLowering.cpp11837 unsigned MaxValue = local
11839 Known.Zero.setHighBits(countLeadingZeros(MaxValue));

Completed in 640 milliseconds