Searched refs:BestRC (Results 1 - 3 of 3) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DTargetRegisterInfo.cpp196 const TargetRegisterClass* BestRC = nullptr;
199 RC->contains(reg) && (!BestRC || BestRC->hasSubClass(RC)))
200 BestRC = RC;
203 assert(BestRC && "Couldn't find the register class");
204 return BestRC;
296 const TargetRegisterClass *BestRC = nullptr;
323 // Is RC a better candidate than BestRC?
324 if (BestRC && getRegSizeInBits(*RC) >= getRegSizeInBits(*BestRC))
[all...]
H A DTargetLoweringBase.cpp1126 const TargetRegisterClass *BestRC = RC; local
1130 if (TRI->getSpillSize(*SuperRC) <= TRI->getSpillSize(*BestRC))
1134 BestRC = SuperRC;
1136 return std::make_pair(BestRC, 1);
/freebsd-12-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DCodeGenRegisters.cpp2375 const CodeGenRegisterClass *BestRC = nullptr; local
2378 RC.contains(Reg) && (!BestRC || BestRC->hasSubClass(&RC)))
2379 BestRC = &RC;
2382 assert(BestRC && "Couldn't find the register class");
2383 return BestRC;

Completed in 173 milliseconds