HomeSort by: relevance | last modified time | path
    Searched refs:MaxValue (Results 1 - 20 of 20) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/tools/llvm-exegesis/lib/
BenchmarkResult.h 107 double max() const { return MaxValue; }
115 double MaxValue = std::numeric_limits<double>::min();
BenchmarkResult.cpp 422 MaxValue = std::max(MaxValue, BM.PerInstructionValue);
  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
Bitfields.h 218 /// \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);
  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
MemoryLocation.h 74 MaxValue = (MapTombstone - 1) & ~ImpreciseBit,
98 : Value(Raw > MaxValue ? AfterPointer : Raw) {}
111 if (LLVM_UNLIKELY(Value > MaxValue))
  /src/sys/external/bsd/acpica/dist/compiler/
dtfield.c 293 UINT64 MaxValue;
353 MaxValue = ((UINT64) (-1)) >> (64 - (ByteLength * 8));
357 if (Value > MaxValue)
  /src/external/apache2/llvm/dist/llvm/lib/IR/
Attributes.cpp 81 static uint64_t packVScaleRangeArgs(unsigned MinValue, unsigned MaxValue) {
82 return uint64_t(MinValue) << 32 | MaxValue;
86 unsigned MaxValue = Value & std::numeric_limits<unsigned>::max();
89 return std::make_pair(MinValue, MaxValue);
212 unsigned MaxValue) {
213 return get(Context, VScaleRange, packVScaleRangeArgs(MinValue, MaxValue));
581 unsigned MinValue, MaxValue;
582 std::tie(MinValue, MaxValue) = getVScaleRangeArgs();
587 Result += utostr(MaxValue);
1545 unsigned MaxValue) {
    [all...]
ConstantRange.cpp 211 APInt MaxValue = APInt::getSignedMaxValue(BitWidth);
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(DstTy)
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
Attributes.h 112 unsigned MinValue, unsigned MaxValue);
605 unsigned MaxValue);
960 AttrBuilder &addVScaleRangeAttr(unsigned MinValue, unsigned MaxValue);
  /src/external/apache2/llvm/dist/llvm/lib/Target/SystemZ/AsmParser/
SystemZAsmParser.cpp 42 // Return true if Expr is in the range [MinValue, MaxValue].
43 static bool inRange(const MCExpr *Expr, int64_t MinValue, int64_t MaxValue) {
46 return Value >= MinValue && Value <= MaxValue;
234 bool isImm(int64_t MinValue, int64_t MaxValue) const {
235 return Kind == KindImm && inRange(Imm, MinValue, MaxValue);
  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/
X86InstCombineIntrinsic.cpp 466 APInt MinValue, MaxValue;
473 MaxValue =
480 MaxValue = APInt::getLowBitsSet(SrcScalarSizeInBits, DstScalarSizeInBits);
484 auto *MaxC = Constant::getIntegerValue(ArgTy, MaxValue);
  /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/MCTargetDesc/
HexagonMCInstrInfo.cpp 568 int MaxValue = HexagonMCInstrInfo::getMaxValue(MCII, MCI);
569 return (MinValue > Value || Value > MaxValue);
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombineSelect.cpp 2193 const APInt *MinValue, *MaxValue;
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;
  /src/external/apache2/llvm/dist/llvm/include/llvm/AsmParser/
LLParser.h 284 bool parseVScaleRangeArguments(unsigned &MinValue, unsigned &MaxValue);
  /src/external/apache2/llvm/dist/llvm/lib/AsmParser/
LLParser.cpp 1359 unsigned MinValue, MaxValue;
1361 if (parseVScaleRangeArguments(MinValue, MaxValue))
1363 B.addVScaleRangeAttr(MinValue, MaxValue);
2400 unsigned &MaxValue) {
2411 if (parseUInt32(MaxValue))
2414 MaxValue = MinValue;
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaOpenMP.cpp 7160 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.isUsable()
    [all...]
SemaChecking.cpp 248 llvm::APSInt MaxValue(
254 if (llvm::APSInt::compareValues(AlignValue, MaxValue) > 0) {
256 << MaxValue.toString(10);
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
ScalarEvolution.cpp 10307 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);
  /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
HexagonInstrInfo.cpp 2095 int MaxValue = getMaxValue(MI);
2098 return (ImmValue < MinValue || ImmValue > MaxValue);
  /src/external/apache2/llvm/dist/clang/lib/AST/
ExprConstant.cpp 8909 APSInt MaxValue(APInt::getOneBitSet(SrcWidth, SrcWidth - 1));
8910 if (APSInt::compareValues(Alignment, MaxValue) > 0) {
8912 << MaxValue << ForType << Alignment;
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
SIISelLowering.cpp 11837 unsigned MaxValue =
11839 Known.Zero.setHighBits(countLeadingZeros(MaxValue));

Completed in 141 milliseconds