Home
last modified time | relevance | path

Searched refs:ProfilingData (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/llvm/include/llvm/ProfileData/
H A DInstrProfWriter.h38 using ProfilingData = SmallDenseMap<uint64_t, InstrProfRecord>;
42 StringMap<ProfilingData> FunctionData;
62 StringMap<ProfilingData> &getProfileData() { return FunctionData; } in getProfileData()
153 bool shouldEncodeData(const ProfilingData &PD);
/llvm-project-15.0.7/compiler-rt/lib/xray/
H A Dxray_profiling.cpp42 struct ProfilingData { struct
62 thread_local ProfilingData TLD{{0}, {0}};
74 static ProfilingData *getThreadLocalData() XRAY_NEVER_INSTRUMENT { in getThreadLocalData()
167 static void postCurrentThreadFCT(ProfilingData &T) XRAY_NEVER_INSTRUMENT { in postCurrentThreadFCT()
437 auto T = reinterpret_cast<ProfilingData *>(P); in profilingLoggingInit()
/llvm-project-15.0.7/llvm/lib/ProfileData/
H A DInstrProfWriter.cpp101 using data_type = const InstrProfWriter::ProfilingData *const;
102 using data_type_ref = const InstrProfWriter::ProfilingData *const;
212 ProfilingData::iterator Where; in overlapRecord()
234 ProfilingData::iterator Where; in addRecord()
303 bool InstrProfWriter::shouldEncodeData(const ProfilingData &PD) { in shouldEncodeData()