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 108 const TargetRegisterClass* BestRC = 0;
112 (!BestRC || BestRC->hasSubClass(RC)))
113 BestRC = RC;
116 assert(BestRC && "Couldn't find the register class");
117 return BestRC;
210 const TargetRegisterClass *BestRC = 0;
237 // Is RC a better candidate than BestRC?
238 if (BestRC && RC->getSize() >= BestRC->getSize()
    [all...]
TargetLoweringBase.cpp 852 const TargetRegisterClass *BestRC = RC;
856 if (SuperRC->getSize() <= BestRC->getSize())
860 BestRC = SuperRC;
862 return std::make_pair(BestRC, 1);
    [all...]

Completed in 3037 milliseconds