Home
last modified time | relevance | path

Searched refs:elf_word (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/ELF/
H A DELFHeader.h44 typedef uint32_t elf_word; typedef
61 elf_word e_flags; ///< Processor specific flags.
62 elf_word e_version; ///< Version of object file (always 1).
75 elf_word e_phnum; ///< Number of program header entries.
76 elf_word e_shnum; ///< Number of section header entries.
77 elf_word e_shstrndx; ///< String table section index.
160 elf_word sh_name; ///< Section name string index.
161 elf_word sh_type; ///< Section type.
166 elf_word sh_link; ///< Index of associated section.
167 elf_word sh_info; ///< Extra section info (overloaded).
[all …]
H A DObjectFileELF.h26 elf::elf_word n_namesz = 0;
27 elf::elf_word n_descsz = 0;
28 elf::elf_word n_type = 0;
372 elf::elf_word p_type);
375 elf::elf_word p_flags);
386 elf::elf_word sh_type);
H A DObjectFileELF.cpp72 static const elf_word LLDB_NT_FREEBSD_ABI_TAG = 0x01;
73 static const elf_word LLDB_NT_FREEBSD_ABI_SIZE = 4;
75 static const elf_word LLDB_NT_GNU_ABI_TAG = 0x01;
76 static const elf_word LLDB_NT_GNU_ABI_SIZE = 16;
78 static const elf_word LLDB_NT_GNU_BUILD_ID_TAG = 0x03;
80 static const elf_word LLDB_NT_NETBSD_IDENT_TAG = 1;
81 static const elf_word LLDB_NT_NETBSD_IDENT_DESCSZ = 4;
82 static const elf_word LLDB_NT_NETBSD_IDENT_NAMESZ = 7;
83 static const elf_word LLDB_NT_NETBSD_PROCINFO = 1;
86 static const elf_word LLDB_NT_GNU_ABI_OS_LINUX = 0x00;
[all …]