Home | History | Annotate | Download | only in TableGen

Lines Matching defs:Ranges

464 bool TGParser::ParseRangePiece(std::vector<unsigned> &Ranges) {
477 Ranges.push_back(Start);
497 Ranges.push_back(Start);
500 Ranges.push_back(Start);
505 /// ParseRangeList - Parse a list of scalars and ranges into scalar values.
528 bool TGParser::ParseOptionalRangeList(std::vector<unsigned> &Ranges) {
536 Ranges
537 if (Ranges.empty()) return true;
550 bool TGParser::ParseOptionalBitList(std::vector<unsigned> &Ranges) {
558 Ranges = ParseRangeList();
559 if (Ranges.empty()) return true;
1315 std::vector<unsigned> Ranges = ParseRangeList();
1316 if (Ranges.empty()) return 0;
1319 std::reverse(Ranges.begin(), Ranges.end());
1320 Result = Result->convertInitializerBitRange(Ranges);
1337 std::vector<unsigned> Ranges = ParseRangeList();
1338 if (Ranges.empty()) return 0;
1340 Result = Result->convertInitListSlice(Ranges);