HomeSort by relevance Sort by last modified time
    Searched refs:BestRC (Results 1 - 2 of 2) sorted by null

  /external/llvm/lib/CodeGen/
TargetRegisterInfo.cpp 106 const TargetRegisterClass* BestRC = 0;
110 (!BestRC || BestRC->hasSubClass(RC)))
111 BestRC = RC;
114 assert(BestRC && "Couldn't find the register class");
115 return BestRC;
208 const TargetRegisterClass *BestRC = 0;
235 // Is RC a better candidate than BestRC?
236 if (BestRC && RC->getSize() >= BestRC->getSize()
    [all...]
TargetLoweringBase.cpp 849 const TargetRegisterClass *BestRC = RC;
853 if (SuperRC->getSize() <= BestRC->getSize())
857 BestRC = SuperRC;
859 return std::make_pair(BestRC, 1);
    [all...]

Completed in 258 milliseconds