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

References

include/llvm/ProfileData/InstrProf.h
  681                OverlapStats &Overlap, OverlapStats &FuncLevelOverlap);
  681                OverlapStats &Overlap, OverlapStats &FuncLevelOverlap);
  774   void overlap(InstrProfRecord &Other, OverlapStats &Overlap,
  775                OverlapStats &FuncLevelOverlap, uint64_t ValueCutoff);
  779                             OverlapStats &Overlap,
  780                             OverlapStats &FuncLevelOverlap);
include/llvm/ProfileData/InstrProfWriter.h
  105   void overlapRecord(NamedInstrProfRecord &&Other, OverlapStats &Overlap,
  106                      OverlapStats &FuncLevelOverlap,
lib/ProfileData/InstrProf.cpp
  503                                        OverlapStats &Overlap,
  504                                        OverlapStats &FuncLevelOverlap) {
  514       Score += OverlapStats::score(I->Count, J->Count,
  517       FuncLevelScore += OverlapStats::score(
  534                                            OverlapStats &Overlap,
  535                                            OverlapStats &FuncLevelOverlap) {
  550 void InstrProfRecord::overlap(InstrProfRecord &Other, OverlapStats &Overlap,
  551                               OverlapStats &FuncLevelOverlap,
  582     Score += OverlapStats::score(Counts[I], Other.Counts[I],
  592       FuncScore += OverlapStats::score(Counts[I], Other.Counts[I],
lib/ProfileData/InstrProfWriter.cpp
  191                                     OverlapStats &Overlap,
  192                                     OverlapStats &FuncLevelOverlap,
tools/llvm-profdata/llvm-profdata.cpp
  201                          OverlapStats &Overlap,
  215     OverlapStats FuncOverlap(OverlapStats::FunctionLevel);
  215     OverlapStats FuncOverlap(OverlapStats::FunctionLevel);
  704   OverlapStats Overlap;