reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

include/llvm/Support/BlockFrequency.h
   49   BlockFrequency operator+(BlockFrequency Freq) const;

References

lib/CodeGen/MachineBlockPlacement.cpp
  831     BlockFrequency BaseCost = P + V;
  832     BlockFrequency DupCost = Qout + QinU + std::max(Qin, F) * VProb;
  832     BlockFrequency DupCost = Qout + QinU + std::max(Qin, F) * VProb;
  874         (P + V), (Qout + std::max(Qin, F) * VProb + std::min(Qin, F) * UProb),
  874         (P + V), (Qout + std::max(Qin, F) * VProb + std::min(Qin, F) * UProb),
  874         (P + V), (Qout + std::max(Qin, F) * VProb + std::min(Qin, F) * UProb),
  877   return greaterWithBias((P + U),
  878                          (Qout + std::min(Qin, F) * AdjustedSuccSumProb +
  878                          (Qout + std::min(Qin, F) * AdjustedSuccSumProb +
  964     BlockFrequency BestAScore = BestA->Weight + SecondBestB->Weight;
  965     BlockFrequency BestBScore = BestB->Weight + SecondBestA->Weight;
 1921    BlockFrequency Gains = BackEdgeFreq + NewFreq;
 1922    BlockFrequency Lost = FallThrough2Top + FallThrough2Exit +
 1922    BlockFrequency Lost = FallThrough2Top + FallThrough2Exit +
 2400         Cost += ScaleBlockFrequency(TailToHeadFreq, MisfetchCost) +
lib/CodeGen/MachineCSE.cpp
  878          MBFI->getBlockFreq(MBB) + MBFI->getBlockFreq(MBB1);
lib/CodeGen/SpillPlacement.cpp
  110     return BiasN >= BiasP + SumLinkWeights;
  175     if (SumN >= SumP + Threshold)
  177     else if (SumP >= SumN + Threshold)
usr/include/c++/7.4.0/bits/stl_numeric.h
  127 	__init = __init + *__first;