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

  /src/external/apache2/llvm/dist/llvm/lib/Target/Mips/
MicroMipsSizeReduction.cpp 52 ImmField() : ImmFieldOperand(-1), Shift(0), LBound(0), HBound(0) {}
53 ImmField(uint8_t Shift, int16_t LBound, int16_t HBound,
55 : ImmFieldOperand(ImmFieldOperand), Shift(Shift), LBound(LBound),
59 int16_t LBound; // Low bound of the immediate operand
103 int16_t LBound() const { return Imm.LBound; }
213 // ImmField(Shift, LBound, HBound, ImmFieldPosition)
327 static bool InRange(int64_t Value, unsigned short Shift, int LBound,
331 (Value2 >= LBound) && (Value2 < HBound)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/IR/
AsmWriter.cpp 1910 auto *LBound = N->getRawLowerBound();
1911 if (auto *LE = dyn_cast_or_null<ConstantAsMetadata>(LBound)) {
1916 Printer.printMetadata("lowerBound", LBound, /*ShouldSkipNull */ true);
1966 auto *LBound = N->getRawLowerBound();
1967 if (IsConstant(LBound))
1968 Printer.printInt("lowerBound", GetConstant(LBound),
1971 Printer.printMetadata("lowerBound", LBound, /*ShouldSkipNull */ true);
Verifier.cpp 957 auto *LBound = N.getRawLowerBound();
958 AssertDI(!LBound || isa<ConstantAsMetadata>(LBound) ||
959 isa<DIVariable>(LBound) || isa<DIExpression>(LBound),
982 auto *LBound = N.getRawLowerBound();
983 AssertDI(LBound, "GenericSubrange must contain lowerBound", &N);
984 AssertDI(isa<DIVariable>(LBound) || isa<DIExpression>(LBound),

Completed in 45 milliseconds