Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/flopsreallygotit/logpass
Generates log info about IR
https://github.com/flopsreallygotit/logpass
llvm llvm-clang llvm-ir llvm-pass
Last synced: 2 months ago
JSON representation
Generates log info about IR
- Host: GitHub
- URL: https://github.com/flopsreallygotit/logpass
- Owner: flopsreallygotit
- Created: 2024-03-17T14:54:34.000Z (9 months ago)
- Default Branch: dev
- Last Pushed: 2024-07-13T16:32:16.000Z (5 months ago)
- Last Synced: 2024-10-14T02:42:17.016Z (2 months ago)
- Topics: llvm, llvm-clang, llvm-ir, llvm-pass
- Language: C++
- Homepage:
- Size: 14.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# LogPass
LLVM Pass that logs all IR info and collects code coverage. The project is under development.
## Quick Start
To build pass library write:
```bash
mkdir build
cd build
cmake ..
make
```Then you can test it on your sources with:
```bash
clang -flegacy-pass-manager -Xclang -load -Xclang build/lib/liblog_pass.so test/test.c
```