Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
elf/ | 03-May-2024 | - | 904 | 599 | ||
vtable/ | 03-May-2024 | - | 457 | 310 | ||
README.md | D | 03-May-2024 | 539 | 12 | 9 | |
__init__.py | D | 03-May-2024 | 0 | 1 | 0 | |
ar_parser.py | D | 03-May-2024 | 2.7 KiB | 93 | 61 | |
elf_parser.py | D | 03-May-2024 | 22.8 KiB | 690 | 546 | |
elf_parser_test.py | D | 03-May-2024 | 6.5 KiB | 164 | 116 |
README.md
1This directory contains ELF parsing utilities for VTS ABI test. 2 3* elf_parser.py: Contains ElfParser that reads metadata from an ELF file. 4* elf/consts.py: Contains ELF constants. 5* elf/structs.py: Contains ELF C structs and data types. 6* vtable/vtable_dumper.py: Contains VtableDumper that dumps vtable structures 7 from an ELF file. 8 9For more info about the meanings and definitions of each ELF constant and 10structs, please consult the System V ABI: 11https://refspecs.linuxfoundation.org/elf/gabi4+/contents.html 12