├── .gitignore ├── BC1s ├── Makefile ├── README.md ├── TEST-FTRACE ├── base64log.py ├── compat.h ├── dtools.c ├── dtools.h ├── dumpkcore.c ├── dwarf.c ├── dwarf.h ├── elf.c ├── elf.h ├── fastdecode.c ├── fastdecode.man ├── kernel.c ├── kernel.h ├── loop.c ├── map.c ├── map.h ├── onoff.c ├── ptfeature.c ├── ptfeature.man ├── ptregs ├── pttp.h ├── simple-pt.c ├── simple-pt.h ├── sptarchive ├── sptarchive.man ├── sptcmd ├── sptcmd.man ├── sptdecode.c ├── sptdecode.man ├── sptdump.c ├── sptdump.man ├── sptsideband.py ├── spttrace ├── symtab.c ├── symtab.h ├── test-ftrace.c └── tester /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/simple-pt/HEAD/.gitignore -------------------------------------------------------------------------------- /BC1s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/simple-pt/HEAD/BC1s -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/simple-pt/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/simple-pt/HEAD/README.md -------------------------------------------------------------------------------- /TEST-FTRACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/simple-pt/HEAD/TEST-FTRACE -------------------------------------------------------------------------------- /base64log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/simple-pt/HEAD/base64log.py -------------------------------------------------------------------------------- /compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/simple-pt/HEAD/compat.h -------------------------------------------------------------------------------- /dtools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/simple-pt/HEAD/dtools.c -------------------------------------------------------------------------------- /dtools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/simple-pt/HEAD/dtools.h -------------------------------------------------------------------------------- /dumpkcore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/simple-pt/HEAD/dumpkcore.c -------------------------------------------------------------------------------- /dwarf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/simple-pt/HEAD/dwarf.c -------------------------------------------------------------------------------- /dwarf.h: -------------------------------------------------------------------------------- 1 | int print_addr(char *fn, unsigned long addr); 2 | -------------------------------------------------------------------------------- /elf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/simple-pt/HEAD/elf.c -------------------------------------------------------------------------------- /elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/simple-pt/HEAD/elf.h -------------------------------------------------------------------------------- /fastdecode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/simple-pt/HEAD/fastdecode.c -------------------------------------------------------------------------------- /fastdecode.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/simple-pt/HEAD/fastdecode.man -------------------------------------------------------------------------------- /kernel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/simple-pt/HEAD/kernel.c -------------------------------------------------------------------------------- /kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/simple-pt/HEAD/kernel.h -------------------------------------------------------------------------------- /loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/simple-pt/HEAD/loop.c -------------------------------------------------------------------------------- /map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/simple-pt/HEAD/map.c -------------------------------------------------------------------------------- /map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/simple-pt/HEAD/map.h -------------------------------------------------------------------------------- /onoff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/simple-pt/HEAD/onoff.c -------------------------------------------------------------------------------- /ptfeature.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/simple-pt/HEAD/ptfeature.c -------------------------------------------------------------------------------- /ptfeature.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/simple-pt/HEAD/ptfeature.man -------------------------------------------------------------------------------- /ptregs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/simple-pt/HEAD/ptregs -------------------------------------------------------------------------------- /pttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/simple-pt/HEAD/pttp.h -------------------------------------------------------------------------------- /simple-pt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/simple-pt/HEAD/simple-pt.c -------------------------------------------------------------------------------- /simple-pt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/simple-pt/HEAD/simple-pt.h -------------------------------------------------------------------------------- /sptarchive: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/simple-pt/HEAD/sptarchive -------------------------------------------------------------------------------- /sptarchive.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/simple-pt/HEAD/sptarchive.man -------------------------------------------------------------------------------- /sptcmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/simple-pt/HEAD/sptcmd -------------------------------------------------------------------------------- /sptcmd.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/simple-pt/HEAD/sptcmd.man -------------------------------------------------------------------------------- /sptdecode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/simple-pt/HEAD/sptdecode.c -------------------------------------------------------------------------------- /sptdecode.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/simple-pt/HEAD/sptdecode.man -------------------------------------------------------------------------------- /sptdump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/simple-pt/HEAD/sptdump.c -------------------------------------------------------------------------------- /sptdump.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/simple-pt/HEAD/sptdump.man -------------------------------------------------------------------------------- /sptsideband.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/simple-pt/HEAD/sptsideband.py -------------------------------------------------------------------------------- /spttrace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/simple-pt/HEAD/spttrace -------------------------------------------------------------------------------- /symtab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/simple-pt/HEAD/symtab.c -------------------------------------------------------------------------------- /symtab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/simple-pt/HEAD/symtab.h -------------------------------------------------------------------------------- /test-ftrace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/simple-pt/HEAD/test-ftrace.c -------------------------------------------------------------------------------- /tester: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/simple-pt/HEAD/tester --------------------------------------------------------------------------------