Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/adrianherrera/categorize-instructions
Intel Pin tool for categorizing x86 instructions
https://github.com/adrianherrera/categorize-instructions
Last synced: 11 days ago
JSON representation
Intel Pin tool for categorizing x86 instructions
- Host: GitHub
- URL: https://github.com/adrianherrera/categorize-instructions
- Owner: adrianherrera
- Created: 2020-09-29T02:24:57.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-08-27T05:56:19.000Z (over 1 year ago)
- Last Synced: 2024-11-08T11:53:19.269Z (2 months ago)
- Language: C++
- Size: 314 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Categorize Instructions
Simple Intel PIN tool to categorize dynamically-executed instructions.
To build:
```bash
export PIN_ROOT=/path/to/pin
make
```To run:
```bash
export PATH=$PIN_ROOT:$PATH
pin -t obj-intel64/categorize-insts -- /path/to/executable
```This will produce `inst-categories.csv`.
To change the output file, use the `-o` option (to the PIN tool).
To append to an existing output file, use the `-a` option.