HomeSort by: relevance | last modified time | path
    Searched refs:FuncOffsetTable (Results 1 - 4 of 4) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/ProfileData/
SampleProfReader.cpp 651 // If there are more than one FuncOffsetTable, the profile read associated
652 // with previous FuncOffsetTable has to be done before next FuncOffsetTable
654 FuncOffsetTable.clear();
660 FuncOffsetTable.reserve(*Size);
670 FuncOffsetTable[*FName] = *Offset;
703 auto iter = FuncOffsetTable.find(StringRef(GUID));
704 if (iter == FuncOffsetTable.end())
722 for (auto Name : FuncOffsetTable) {
728 for (auto NameOffset : FuncOffsetTable) {
    [all...]
SampleProfWriter.cpp 153 FuncOffsetTable[Name] = Offset - SecLBRProfileStart;
162 encodeULEB128(FuncOffsetTable.size(), OS);
164 // Write out FuncOffsetTable.
165 for (auto Entry : FuncOffsetTable) {
171 FuncOffsetTable.clear();
512 // Fill the slot remembered by TableOffset with the offset of FuncOffsetTable.
523 encodeULEB128(FuncOffsetTable.size(), OS);
525 // Write out FuncOffsetTable.
526 for (auto Entry : FuncOffsetTable) {
659 // be populated with the offset of FuncOffsetTable later
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/ProfileData/
SampleProfWriter.h 285 // in FuncOffsetTable.
315 // FuncOffsetTable maps function name to its profile offset in SecLBRProfile
317 MapVector<StringRef, uint64_t> FuncOffsetTable;
389 MapVector<StringRef, uint64_t> FuncOffsetTable;
390 /// The offset of the slot to be filled with the offset of FuncOffsetTable
SampleProfReader.h 672 DenseMap<StringRef, uint64_t> FuncOffsetTable;
746 DenseMap<StringRef, uint64_t> FuncOffsetTable;

Completed in 24 milliseconds