gitextract_4nemvxd8/ ├── .editorconfig ├── .gitattributes ├── .github/ │ └── workflows/ │ ├── publish.yml │ └── test.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── assets/ │ ├── github-social-card.xcf │ └── logo.xcf ├── pyproject.toml ├── src/ │ └── systrack/ │ ├── __init__.py │ ├── __main__.py │ ├── arch/ │ │ ├── __init__.py │ │ ├── arch_base.py │ │ ├── arm.py │ │ ├── arm64.py │ │ ├── mips.py │ │ ├── powerpc.py │ │ ├── riscv.py │ │ ├── s390.py │ │ └── x86.py │ ├── elf.py │ ├── kconfig.py │ ├── kconfig_options.py │ ├── kernel.py │ ├── location.py │ ├── log.py │ ├── output.py │ ├── signature.py │ ├── syscall.py │ ├── templates/ │ │ ├── syscall_table.css │ │ ├── syscall_table.html │ │ └── syscall_table.js │ ├── type_hints.py │ ├── utils.py │ └── version.py └── tests/ ├── __init__.py ├── data/ │ ├── .gitignore │ ├── Makefile │ └── x86_no_table_syscall_handlers.s ├── test_arch_sanity.py ├── test_mips.py ├── test_powerpc.py ├── test_x86.py └── utils.py