https://github.com/adrianherrera/categorize-instructions
Intel Pin tool for categorizing x86 instructions
https://github.com/adrianherrera/categorize-instructions
Last synced: 5 months 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 (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2023-08-27T05:56:19.000Z (almost 2 years ago)
- Last Synced: 2025-01-17T22:43:28.328Z (6 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.