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

References

include/llvm/ProfileData/SampleProf.h
  269   sampleprof_error merge(const SampleRecord &Other, uint64_t Weight = 1) {
  285 raw_ostream &operator<<(raw_ostream &OS, const SampleRecord &Sample);
  289 using BodySampleMap = std::map<LineLocation, SampleRecord>;
  352   ErrorOr<SampleRecord::CallTargetMap>
  450       const SampleRecord &Rec = I.second;
  620   using SamplesWithLoc = std::pair<const LocationT, SampleT>;
  623   SampleSorter(const std::map<LocationT, SampleT> &Samples) {
lib/ProfileData/SampleProf.cpp
  122                                           const SampleRecord &Sample) {
  135     SampleSorter<LineLocation, SampleRecord> SortedBodySamples(BodySamples);
lib/ProfileData/SampleProfWriter.cpp
  238   SampleSorter<LineLocation, SampleRecord> SortedSamples(S.getBodySamples());
  241     const SampleRecord &Sample = I->second;
  290     const SampleRecord &Sample = I.second;
  508     const SampleRecord &Sample = I.second;
lib/Target/X86/X86InsertPrefetch.cpp
   66 using PrefetchHints = SampleRecord::CallTargetMap;
lib/Transforms/IPO/SampleProfile.cpp
 1346   for (const auto &I : SampleRecord::SortCallTargets(M)) {
unittests/ProfileData/SampleProfTest.cpp
  182     ErrorOr<SampleRecord::CallTargetMap> CTMap =
usr/include/c++/7.4.0/bits/stl_map.h
  103       typedef _Tp					mapped_type;
  104       typedef std::pair<const _Key, _Tp>		value_type;
usr/include/c++/7.4.0/bits/stl_pair.h
  209     : private __pair_base<_T1, _T2>
  212       typedef _T2 second_type;   /// @c second_type is the second bound type
  215       _T2 second;                /// @c second is a copy of the second object
  252       using _PCCP = _PCC<true, _T1, _T2>;
  260       constexpr pair(const _T1& __a, const _T2& __b)
  269       explicit constexpr pair(const _T1& __a, const _T2& __b)
  283 			    _T1, _T2>;
  311        constexpr pair(_U1&& __x, const _T2& __y)
  318        explicit constexpr pair(_U1&& __x, const _T2& __y)
  380 		       is_copy_assignable<_T2>>::value,
  391 		       is_move_assignable<_T2>>::value,