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

/external/llvm/lib/CodeGen/
H A DRegAllocGreedy.cpp1580 /// GapWeight[i] represents the gap between UseSlots[i] and UseSlots[i+1].
1583 SmallVectorImpl<float> &GapWeight) {
1595 GapWeight.assign(NumGaps, 0.0f);
1623 GapWeight[Gap] = std::max(GapWeight[Gap], weight);
1647 GapWeight[Gap] = llvm::huge_valf;
1742 SmallVector<float, 8> GapWeight; local
1748 calcGapWeights(PhysReg, GapWeight);
1753 GapWeight[RegMaskGaps[i]] = llvm::huge_valf;
1761 // MaxGap should always be max(GapWeight[SplitBefor
1582 calcGapWeights(unsigned PhysReg, SmallVectorImpl<float> &GapWeight) argument
[all...]

Completed in 240 milliseconds