Lines Matching refs:BestRC
102 const TargetRegisterClass* BestRC = 0; in getMinimalPhysRegClass() local
106 (!BestRC || BestRC->hasSubClass(RC))) in getMinimalPhysRegClass()
107 BestRC = RC; in getMinimalPhysRegClass()
110 assert(BestRC && "Couldn't find the register class"); in getMinimalPhysRegClass()
111 return BestRC; in getMinimalPhysRegClass()
204 const TargetRegisterClass *BestRC = 0; in getCommonSuperRegClass() local
232 if (BestRC && RC->getSize() >= BestRC->getSize()) in getCommonSuperRegClass()
236 BestRC = RC; in getCommonSuperRegClass()
241 if (BestRC->getSize() == MinSize) in getCommonSuperRegClass()
242 return BestRC; in getCommonSuperRegClass()
245 return BestRC; in getCommonSuperRegClass()