HomeSort by relevance Sort by last modified time
    Searched defs:RegUnits (Results 1 - 5 of 5) sorted by null

  /external/llvm/lib/CodeGen/
InterferenceCache.h 87 /// more than 4 RegUnits.
88 SmallVector<RegUnitInfo, 4> RegUnits;
  /external/llvm/include/llvm/MC/
MCRegisterInfo.h 114 // RegUnits - Points to the list of register units. The low 4 bits holds the
116 uint32_t RegUnits;
161 unsigned NumRegUnits; // Number of regunits.
540 assert(Reg && "Null register has no regunits");
541 // Decode the RegUnits MCRegisterDesc field.
542 unsigned RU = MCRI->get(Reg).RegUnits;
  /external/llvm/utils/TableGen/
RegisterInfoEmitter.cpp 187 std::vector<unsigned> RegUnits;
188 RC.buildRegUnitSet(RegUnits);
190 << ", " << RegBank.getRegUnitSetWeight(RegUnits);
239 const RegUnitSet &RegUnits = RegBank.getRegSetAt(i);
240 MaxRegUnitWeight = std::max(MaxRegUnitWeight, RegUnits.Weight);
241 OS << " \"" << RegUnits.Name << "\",\n";
254 const RegUnitSet &RegUnits = RegBank.getRegSetAt(i);
255 OS << " " << RegUnits.Weight << ", \t// " << i << ": "
256 << RegUnits.Name << "\n";
    [all...]
CodeGenRegisters.h 208 const RegUnitList &getRegUnits() const { return RegUnits; }
224 // Return true if the RegUnits changed.
229 void adoptRegUnit(unsigned RUID) { RegUnits.set(RUID); }
255 RegUnitList RegUnits;
398 void buildRegUnitSet(std::vector<unsigned> &RegUnits) const;
499 SmallVector<RegUnit, 8> RegUnits;
621 RegUnits.resize(RegUnits.size() + 1);
622 RegUnits.back().Roots[0] = R0;
623 RegUnits.back().Roots[1] = R1
    [all...]
CodeGenRegisters.cpp 195 // Return true of this unit appears in RegUnits.
196 static bool hasRegUnit(CodeGenRegister::RegUnitList &RegUnits, unsigned Unit) {
197 return RegUnits.test(Unit);
201 // Return true if the RegUnits changed.
207 // Merge the subregister's units into this register's RegUnits.
208 changed |= (RegUnits |= SR->RegUnits);
360 RegUnits |= SR->RegUnits;
380 RegUnits.set(Unit)
    [all...]

Completed in 841 milliseconds