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

  /external/llvm/lib/CodeGen/
CalcSpillWeights.cpp 115 unsigned loopDepth = 0;
143 loopDepth = loop ? loop->getLoopDepth() : 0;
150 weight = LiveIntervals::getSpillWeight(writes, reads, loopDepth);
StackSlotColoring.cpp 142 unsigned loopDepth = loopInfo->getLoopDepth(MBB);
157 li.weight += LiveIntervals::getSpillWeight(false, true, loopDepth);
LiveIntervalAnalysis.cpp 612 LiveIntervals::getSpillWeight(bool isDef, bool isUse, unsigned loopDepth) {
614 if (loopDepth > 200)
615 loopDepth = 200;
624 float lc = std::pow(1 + (100.0 / (loopDepth + 10)), (double)loopDepth);
    [all...]
  /external/llvm/include/llvm/CodeGen/
LiveIntervalAnalysis.h 103 static float getSpillWeight(bool isDef, bool isUse, unsigned loopDepth);

Completed in 860 milliseconds