Searched defs:BestRC (Results 1 - 2 of 2) sorted by relevance

/external/llvm/lib/Target/
H A DTargetRegisterInfo.cpp102 const TargetRegisterClass* BestRC = 0; local
106 (!BestRC || BestRC->hasSubClass(RC)))
107 BestRC = RC;
110 assert(BestRC && "Couldn't find the register class");
111 return BestRC;
204 const TargetRegisterClass *BestRC = 0; local
231 // Is RC a better candidate than BestRC?
232 if (BestRC && RC->getSize() >= BestRC
[all...]
/external/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp721 const TargetRegisterClass *BestRC = RC; local
725 if (SuperRC->getSize() <= BestRC->getSize())
729 BestRC = SuperRC;
731 return std::make_pair(BestRC, 1);

Completed in 152 milliseconds