Home
last modified time | relevance | path

Searched refs:BestRC (Results 1 – 2 of 2) sorted by relevance

/external/llvm/lib/Target/
DTargetRegisterInfo.cpp102 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()
[all …]
/external/llvm/lib/CodeGen/SelectionDAG/
DTargetLowering.cpp721 const TargetRegisterClass *BestRC = RC; in findRepresentativeClass() local
725 if (SuperRC->getSize() <= BestRC->getSize()) in findRepresentativeClass()
729 BestRC = SuperRC; in findRepresentativeClass()
731 return std::make_pair(BestRC, 1); in findRepresentativeClass()