├── .gitignore ├── LICENSE ├── README.md ├── bscan_proc.py ├── example ├── aha363.tcl ├── bscan_dump.tcl ├── bscan_values.txt ├── pin_renamings.txt ├── pin_report.ann.txt └── pin_report.txt ├── requirements.txt └── run_bscan_proc.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomverbeure/bscan_tools/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomverbeure/bscan_tools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomverbeure/bscan_tools/HEAD/README.md -------------------------------------------------------------------------------- /bscan_proc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomverbeure/bscan_tools/HEAD/bscan_proc.py -------------------------------------------------------------------------------- /example/aha363.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomverbeure/bscan_tools/HEAD/example/aha363.tcl -------------------------------------------------------------------------------- /example/bscan_dump.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomverbeure/bscan_tools/HEAD/example/bscan_dump.tcl -------------------------------------------------------------------------------- /example/bscan_values.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomverbeure/bscan_tools/HEAD/example/bscan_values.txt -------------------------------------------------------------------------------- /example/pin_renamings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomverbeure/bscan_tools/HEAD/example/pin_renamings.txt -------------------------------------------------------------------------------- /example/pin_report.ann.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomverbeure/bscan_tools/HEAD/example/pin_report.ann.txt -------------------------------------------------------------------------------- /example/pin_report.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomverbeure/bscan_tools/HEAD/example/pin_report.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | appdirs 2 | bsdl-parser 3 | -------------------------------------------------------------------------------- /run_bscan_proc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomverbeure/bscan_tools/HEAD/run_bscan_proc.sh --------------------------------------------------------------------------------