Home | History | Annotate | Download | only in TableGen

Lines Matching refs:RegUnits

190     const RegUnitList &getRegUnits() const { return RegUnits; }
194 return makeArrayRef(RegUnits).slice(0, NumNativeRegUnits);
198 // Return true if the RegUnits changed.
203 void adoptRegUnit(unsigned RUID) { RegUnits.push_back(RUID); }
238 RegUnitList RegUnits;
366 void buildRegUnitSet(std::vector<unsigned> &RegUnits) const;
468 SmallVector<RegUnit, 8> RegUnits;
579 RegUnits.resize(RegUnits.size() + 1);
580 RegUnits.back().Roots[0] = R0;
581 RegUnits.back().Roots[1] = R1;
582 return RegUnits.size() - 1;
588 RegUnits.resize(RegUnits.size() + 1);
589 RegUnits.back().Weight = Weight;
590 return RegUnits.size() - 1;
604 RegUnit &getRegUnit(unsigned RUID) { return RegUnits[RUID]; }
605 const RegUnit &getRegUnit(unsigned RUID) const { return RegUnits[RUID]; }