Lines Matching refs:ELFState

176 template <class ELFT> class ELFState {  class
309 ELFState(ELFYAML::Object &D, yaml::ErrorHandler EH);
338 ELFState<ELFT>::ELFState(ELFYAML::Object &D, yaml::ErrorHandler EH) in ELFState() function in ELFState
456 void ELFState<ELFT>::writeELFHeader(raw_ostream &OS) { in writeELFHeader()
533 void ELFState<ELFT>::initProgramHeaders(std::vector<Elf_Phdr> &PHeaders) { in initProgramHeaders()
581 unsigned ELFState<ELFT>::toSectionIndex(StringRef S, StringRef LocSec, in toSectionIndex()
618 unsigned ELFState<ELFT>::toSymbolIndex(StringRef S, StringRef LocSec, in toSymbolIndex()
651 bool ELFState<ELFT>::initImplicitHeader(ContiguousBlobAccumulator &CBA, in initImplicitHeader()
709 uint64_t ELFState<ELFT>::getSectionNameOffset(StringRef Name) { in getSectionNameOffset()
757 void ELFState<ELFT>::initSectionHeaders(std::vector<Elf_Shdr> &SHeaders, in initSectionHeaders()
908 void ELFState<ELFT>::assignSectionAddress(Elf_Shdr &SHeader, in assignSectionAddress()
937 ELFState<ELFT>::toELFSymbols(ArrayRef<ELFYAML::Symbol> Symbols, in toELFSymbols()
969 void ELFState<ELFT>::initSymtabSectionHeader(Elf_Shdr &SHeader, in initSymtabSectionHeader()
1034 void ELFState<ELFT>::initStrtabSectionHeader(Elf_Shdr &SHeader, StringRef Name, in initStrtabSectionHeader()
1093 void ELFState<ELFT>::initDWARFSectionHeader(Elf_Shdr &SHeader, StringRef Name, in initDWARFSectionHeader()
1133 template <class ELFT> void ELFState<ELFT>::reportError(const Twine &Msg) { in reportError()
1138 template <class ELFT> void ELFState<ELFT>::reportError(Error Err) { in reportError()
1146 ELFState<ELFT>::getPhdrFragments(const ELFYAML::ProgramHeader &Phdr, in getPhdrFragments()
1164 void ELFState<ELFT>::setProgramHeaderLayout(std::vector<Elf_Phdr> &PHeaders, in setProgramHeaderLayout()
1236 void ELFState<ELFT>::writeSectionContent(Elf_Shdr &SHeader, in writeSectionContent()
1252 void ELFState<ELFT>::writeSectionContent( in writeSectionContent()
1266 void ELFState<ELFT>::writeSectionContent( in writeSectionContent()
1305 void ELFState<ELFT>::writeSectionContent(Elf_Shdr &SHeader, in writeSectionContent()
1322 void ELFState<ELFT>::writeSectionContent( in writeSectionContent()
1339 void ELFState<ELFT>::writeSectionContent(Elf_Shdr &SHeader, in writeSectionContent()
1364 void ELFState<ELFT>::writeSectionContent(Elf_Shdr &SHeader, in writeSectionContent()
1376 void ELFState<ELFT>::writeSectionContent( in writeSectionContent()
1389 void ELFState<ELFT>::writeSectionContent( in writeSectionContent()
1424 void ELFState<ELFT>::writeSectionContent( in writeSectionContent()
1440 void ELFState<ELFT>::writeSectionContent( in writeSectionContent()
1455 ELFState<ELFT>::alignToOffset(ContiguousBlobAccumulator &CBA, uint64_t Align, in alignToOffset()
1478 void ELFState<ELFT>::writeSectionContent( in writeSectionContent()
1491 void ELFState<ELFT>::writeSectionContent(Elf_Shdr &SHeader, in writeSectionContent()
1513 void ELFState<ELFT>::writeSectionContent(Elf_Shdr &SHeader, in writeSectionContent()
1559 void ELFState<ELFT>::writeSectionContent(Elf_Shdr &SHeader, in writeSectionContent()
1607 void ELFState<ELFT>::writeSectionContent( in writeSectionContent()
1621 void ELFState<ELFT>::writeSectionContent(Elf_Shdr &SHeader, in writeSectionContent()
1646 void ELFState<ELFT>::writeSectionContent(Elf_Shdr &SHeader, in writeSectionContent()
1663 void ELFState<ELFT>::writeSectionContent(Elf_Shdr &SHeader, in writeSectionContent()
1675 void ELFState<ELFT>::writeSectionContent(Elf_Shdr &SHeader, in writeSectionContent()
1716 void ELFState<ELFT>::writeSectionContent(Elf_Shdr &SHeader, in writeSectionContent()
1767 void ELFState<ELFT>::writeFill(ELFYAML::Fill &Fill, in writeFill()
1783 DenseMap<StringRef, size_t> ELFState<ELFT>::buildSectionHeaderReorderMap() { in buildSectionHeaderReorderMap()
1825 template <class ELFT> void ELFState<ELFT>::buildSectionIndex() { in buildSectionIndex()
1860 template <class ELFT> void ELFState<ELFT>::buildSymbolIndexes() { in buildSymbolIndexes()
1875 template <class ELFT> void ELFState<ELFT>::finalizeStrings() { in finalizeStrings()
1915 bool ELFState<ELFT>::writeELF(raw_ostream &OS, ELFYAML::Object &Doc, in writeELF()
1917 ELFState<ELFT> State(Doc, EH); in writeELF()
1989 return ELFState<object::ELF64LE>::writeELF(Out, Doc, EH, MaxSize); in yaml2elf()
1990 return ELFState<object::ELF64BE>::writeELF(Out, Doc, EH, MaxSize); in yaml2elf()
1993 return ELFState<object::ELF32LE>::writeELF(Out, Doc, EH, MaxSize); in yaml2elf()
1994 return ELFState<object::ELF32BE>::writeELF(Out, Doc, EH, MaxSize); in yaml2elf()