Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/ProfileData/
H A DSampleProfWriter.cpp219 CSNameTable.clear(); in write()
246 const auto &Ret = CSNameTable.find(Context); in writeCSNameIdx()
247 if (Ret == CSNameTable.end()) in writeCSNameIdx()
388 for (const auto &I : CSNameTable) in writeCSNameTableSection()
390 assert(OrderedContexts.size() == CSNameTable.size() && in writeCSNameTableSection()
394 CSNameTable[Context] = I++; in writeCSNameTableSection()
673 CSNameTable.insert(std::make_pair(Context, 0)); in addContext()
H A DSampleProfReader.cpp365 SampleContext FContext(FName, CSNameTable); in readImpl()
558 if (*ContextIdx >= CSNameTable.size()) in readContextFromTable()
562 return CSNameTable[*ContextIdx]; in readContextFromTable()
1215 CSNameTable.clear(); in readCSNameTableSec()
1216 CSNameTable.reserve(*Size); in readCSNameTableSec()
1226 CSNameTable.emplace_back(SampleContextFrameVector()); in readCSNameTableSec()
1245 CSNameTable.back().emplace_back( in readCSNameTableSec()
/freebsd/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DSampleProfReader.h633 std::list<SampleContextFrameVector> CSNameTable;
717 std::vector<SampleContextFrameVector> CSNameTable; variable
H A DSampleProf.h558 std::list<SampleContextFrameVector> &CSNameTable,
569 CSNameTable.emplace_back();
570 SampleContextFrameVector &Context = CSNameTable.back();
H A DSampleProfWriter.h407 MapVector<SampleContext, uint32_t> CSNameTable; variable