Home | History | Annotate | Download | only in LD

Lines Matching refs:ELF

16 #include <llvm/Support/ELF.h>
32 * \brief ELFReaderIF provides common interface for all kind of ELF readers.
46 /// isELF - is this a ELF file
49 /// isMyEndian - is this ELF file in the same endian to me?
52 /// isMyMachine - is this ELF file generated for the same machine.
66 /// readSectionHeaders - read ELF section header table and create LDSections
81 /// readSymbols - read ELF symbols and create LDSymbol
93 /// readRela - read ELF rela and create Relocation
99 /// readRel - read ELF rel and create Relocation
152 typedef llvm::ELF::Elf32_Ehdr ELFHeader;
153 typedef llvm::ELF::Elf32_Shdr SectionHeader;
154 typedef llvm::ELF::Elf32_Sym Symbol;
155 typedef llvm::ELF::Elf32_Rel Rel;
156 typedef llvm::ELF::Elf32_Rela Rela;
167 /// isELF - is this a ELF file
170 /// isMyEndian - is this ELF file in the same endian to me?
173 /// isMyMachine - is this ELF file generated for the same machine.
179 /// readSectionHeaders - read ELF section header table and create LDSections
194 /// readSymbols - read ELF symbols and create LDSymbol
206 /// readRela - read ELF rela and create Relocation
212 /// readRel - read ELF rel and create Relocation