Home
last modified time | relevance | path

Searched refs:CSNameTable (Results 1 – 5 of 5) sorted by relevance

/llvm-project-15.0.7/llvm/lib/ProfileData/
H A DSampleProfWriter.cpp143 const auto &Ret = CSNameTable.find(Context); in writeCSNameIdx()
144 if (Ret == CSNameTable.end()) in writeCSNameIdx()
283 for (const auto &I : CSNameTable) in writeCSNameTableSection()
285 assert(OrderedContexts.size() == CSNameTable.size() && in writeCSNameTableSection()
289 CSNameTable[Context] = I++; in writeCSNameTableSection()
574 CSNameTable.insert(std::make_pair(Context, 0)); in addContext()
H A DSampleProfReader.cpp279 SampleContext FContext(FName, CSNameTable); in readImpl()
626 if (*ContextIdx >= CSNameTable->size()) in readContextFromTable()
628 return (*CSNameTable)[*ContextIdx]; in readContextFromTable()
1081 CSNameTable.reset(PNameVec); in readCSNameTableSec()
/llvm-project-15.0.7/llvm/include/llvm/ProfileData/
H A DSampleProfReader.h578 std::list<SampleContextFrameVector> CSNameTable;
753 std::unique_ptr<const std::vector<SampleContextFrameVector>> CSNameTable; variable
H A DSampleProf.h519 std::list<SampleContextFrameVector> &CSNameTable,
530 CSNameTable.emplace_back();
531 SampleContextFrameVector &Context = CSNameTable.back();
H A DSampleProfWriter.h320 MapVector<SampleContext, uint32_t> CSNameTable; variable