Home
last modified time | relevance | path

Searched refs:TotalRootEntryCount (Results 1 – 7 of 7) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/ProfileData/
H A DPGOCtxProfWriter.cpp57 DescribeRecord(PGOCtxProfileRecords::TotalRootEntryCount, in PGOCtxProfileWriter()
95 void PGOCtxProfileWriter::writeRootEntryCount(uint64_t TotalRootEntryCount) { in writeRootEntryCount() argument
96 Writer.EmitRecord(PGOCtxProfileRecords::TotalRootEntryCount, in writeRootEntryCount()
97 SmallVector<uint64_t, 1>{TotalRootEntryCount}); in writeRootEntryCount()
139 uint64_t TotalRootEntryCount) { in writeContextual() argument
140 if (!IncludeEmpty && (!TotalRootEntryCount || (RootNode.counters_size() > 0 && in writeContextual()
145 writeRootEntryCount(TotalRootEntryCount); in writeContextual()
179 uint64_t TotalRootEntryCount = 0; member
238 IO.mapRequired("TotalRootEntryCount", R.TotalRootEntryCount); in mapping()
285 Writer.writeContextual(*TopList, FirstUnhandled, DC.TotalRootEntryCount); in createCtxProfFromYAML()
H A DPGOCtxProfReader.cpp150 case PGOCtxProfileRecords::TotalRootEntryCount: in readProfile()
310 std::optional<uint64_t> TotalRootEntryCount = std::nullopt, in toYaml() argument
322 if (TotalRootEntryCount) {
324 yaml::yamlize(Out, *TotalRootEntryCount, true, Empty);
341 assert(TotalRootEntryCount.has_value());
/freebsd/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DPGOCtxProfWriter.h29 TotalRootEntryCount enumerator
100 uint64_t TotalRootEntryCount) override;
H A DCtxInstrContextNode.h145 uint64_t TotalRootEntryCount) = 0;
/freebsd/contrib/llvm-project/compiler-rt/lib/ctx_profile/
H A DCtxInstrContextNode.h145 uint64_t TotalRootEntryCount) = 0;
/freebsd/contrib/llvm-project/compiler-rt/lib/ctx_profile/tests/
H A DCtxInstrProfilingTest.cpp244 uint64_t TotalRootEntryCount) override { in TEST_F() argument
245 EXPECT_EQ(TotalRootEntryCount, Entries); in TEST_F()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DCtxProfAnalysis.cpp723 const uint64_t TotalRootEntryCount = CtxRoot.getTotalRootEntryCount(); in flattenVirtCalls() local
730 Subctx.second.getEntrycount() * TotalRootEntryCount; in flattenVirtCalls()