Home | History | Annotate | Download | only in TableGen

Lines Matching defs:To

166 // (sequence "Format", From, To) Generate a sequence of records by name.
172 PrintFatalError(Loc, "Bad args to (sequence \"Format\", From, To): " +
188 int64_t From, To;
197 To = II->getValue();
200 if (To < 0 || To >= (1 << 30))
201 PrintFatalError(Loc, "To out of range");
206 Step *= From <= To ? 1 : -1;
208 if (Step > 0 && From > To)
210 else if (Step < 0 && From < To)
219 // Try to reevaluate Rec in case it is a set.
242 // Pin the vtables to this file.