Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/lib/ProfileData/
H A DSampleProfWriter.cpp211 SecHdrTable.push_back({Type, Entry.Flags, SectionStart - FileStart, in addNewSection()
222 SecHdrTable.clear(); in write()
760 assert(SecHdrTable.size() == SectionHdrLayout.size() && in writeSecHdrTable()
762 SmallVector<uint32_t, 16> IndexMap(SecHdrTable.size(), -1); in writeSecHdrTable()
763 for (uint32_t TableIdx = 0; TableIdx < SecHdrTable.size(); TableIdx++) { in writeSecHdrTable()
764 IndexMap[SecHdrTable[TableIdx].LayoutIndex] = TableIdx; in writeSecHdrTable()
781 assert(IndexMap[LayoutIdx] < SecHdrTable.size() && in writeSecHdrTable()
783 auto Entry = SecHdrTable[IndexMap[LayoutIdx]]; in writeSecHdrTable()
H A DSampleProfReader.cpp993 for (auto &Entry : SecHdrTable) { in readImpl()
1291 SecHdrTable.push_back(std::move(Entry)); in readSecHdrTableEntry()
1324 for (auto &Entry : SecHdrTable) { in getSectionSize()
1338 for (auto &Entry : SecHdrTable) { in getFileSize()
1396 for (auto &Entry : SecHdrTable) { in dumpSectionInfo()
1403 uint64_t HeaderSize = SecHdrTable.front().Offset; in dumpSectionInfo()
/freebsd-14.2/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DELFEmitter.cpp363 ELFYAML::SectionHeaderTable *SecHdrTable = nullptr; in ELFState() local
369 if (SecHdrTable) in ELFState()
371 SecHdrTable = S; in ELFState()
417 if (!SecHdrTable || !SecHdrTable->NoHeaders.value_or(false)) in ELFState()
444 if (Doc.Chunks.back().get() == SecHdrTable) in ELFState()
452 if (!SecHdrTable) in ELFState()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DSampleProfWriter.h381 std::vector<SecHdrTableEntry> SecHdrTable; variable
H A DSampleProfReader.h719 std::vector<SecHdrTableEntry> SecHdrTable;