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

References

lib/Analysis/BlockFrequencyInfoImpl.cpp
  108   RemWeight = Dist.Total;
  126   uint64_t NewTotal = Total + Amount;
  129   bool IsOverflow = NewTotal < Total;
  134   Total = NewTotal;
  225     Total = 1;
  237   else if (Total > UINT32_MAX)
  238     Shift = 33 - countLeadingZeros(Total);
  244     assert(Total == std::accumulate(Weights.begin(), Weights.end(), UINT64_C(0),
  254   Total = 0;
  265     Total += W.Amount;
  267   assert(Total <= UINT32_MAX);
lib/Transforms/Utils/CodeExtractor.cpp
 1365   if (BranchDist.Total == 0)
 1377     BranchProbability BP(Weight.Amount, BranchDist.Total);