Home
last modified time | relevance | path

Searched refs:LBound (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMicroMipsSizeReduction.cpp52 ImmField() : ImmFieldOperand(-1), Shift(0), LBound(0), HBound(0) {} in ImmField()
53 ImmField(uint8_t Shift, int16_t LBound, int16_t HBound, in ImmField()
55 : ImmFieldOperand(ImmFieldOperand), Shift(Shift), LBound(LBound), in ImmField()
59 int16_t LBound; // Low bound of the immediate operand member
103 int16_t LBound() const { return Imm.LBound; } in LBound() function
327 static bool InRange(int64_t Value, unsigned short Shift, int LBound, in InRange() argument
331 (Value2 >= LBound) && (Value2 < HBound)) in InRange()
344 if (!InRange(offset, Entry.Shift(), Entry.LBound(), Entry.HBound())) in ImmInRange()
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DAsmWriter.cpp2035 auto *LBound = N->getRawLowerBound(); in writeDISubrange() local
2036 if (auto *LE = dyn_cast_or_null<ConstantAsMetadata>(LBound)) { in writeDISubrange()
2041 Printer.printMetadata("lowerBound", LBound, /*ShouldSkipNull */ true); in writeDISubrange()
2088 auto *LBound = N->getRawLowerBound(); in writeDIGenericSubrange() local
2089 if (IsConstant(LBound)) in writeDIGenericSubrange()
2090 Printer.printInt("lowerBound", GetConstant(LBound), in writeDIGenericSubrange()
2093 Printer.printMetadata("lowerBound", LBound, /*ShouldSkipNull */ true); in writeDIGenericSubrange()
H A DVerifier.cpp1159 auto *LBound = N.getRawLowerBound(); in visitDISubrange() local
1160 CheckDI(!LBound || isa<ConstantAsMetadata>(LBound) || in visitDISubrange()
1161 isa<DIVariable>(LBound) || isa<DIExpression>(LBound), in visitDISubrange()
1182 auto *LBound = N.getRawLowerBound(); in visitDIGenericSubrange() local
1183 CheckDI(LBound, "GenericSubrange must contain lowerBound", &N); in visitDIGenericSubrange()
1184 CheckDI(isa<DIVariable>(LBound) || isa<DIExpression>(LBound), in visitDIGenericSubrange()