Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:BestRC

133   const TargetRegisterClass* BestRC = nullptr;
137 (!BestRC || BestRC->hasSubClass(RC)))
138 BestRC = RC;
141 assert(BestRC && "Couldn't find the register class");
142 return BestRC;
243 const TargetRegisterClass *BestRC = nullptr;
270 // Is RC a better candidate than BestRC?
271 if (BestRC && RC->getSize() >= BestRC->getSize())
275 BestRC = RC;
280 if (BestRC->getSize() == MinSize)
281 return BestRC;
284 return BestRC;