Home
last modified time | relevance | path

Searched refs:FuncOffsetTable (Results 1 – 4 of 4) sorted by relevance

/freebsd-12.1/contrib/llvm/lib/ProfileData/
H A DSampleProfWriter.cpp196 encodeULEB128(FuncOffsetTable.size(), OS); in writeFuncOffsetTable()
199 for (auto entry : FuncOffsetTable) { in writeFuncOffsetTable()
338 FuncOffsetTable[Name] = Offset; in write()
H A DSampleProfReader.cpp474 auto iter = FuncOffsetTable.find(StringRef(GUID)); in read()
475 if (iter == FuncOffsetTable.end()) in read()
577 FuncOffsetTable.reserve(*Size); in readFuncOffsetTable()
587 FuncOffsetTable[*FName] = *Offset; in readFuncOffsetTable()
/freebsd-12.1/contrib/llvm/include/llvm/ProfileData/
H A DSampleProfWriter.h180 MapVector<StringRef, uint64_t> FuncOffsetTable;
H A DSampleProfReader.h462 DenseMap<StringRef, uint64_t> FuncOffsetTable; variable