2
2
[ ![ Build Status] ( https://travis-ci.org/thestr4ng3r/llvm-dbas.svg?branch=master )] ( https://travis-ci.org/thestr4ng3r/llvm-dbas )
3
3
4
4
llvm-dbas is an LLVM Assembler adding Debug Information at IR Level.
5
- This version is based on ** LLVM 3.8 ** .
5
+ This version is based on ** LLVM 4.0 ** . A version for LLVM 3.8 is available in a separate branch .
6
6
7
7
When compiling LLVM IR code to machine code, there usually is afterwards no
8
8
easy way to keep track of which native instructions resulted from which LLVM
@@ -40,7 +40,7 @@ Process 2523 stopped
40
40
```
41
41
42
42
## Building
43
- llvm-dbas uses CMake as its build system. It only depends on LLVM 3.8 and can be build like this:
43
+ llvm-dbas uses CMake as its build system. It only depends on LLVM 4.0 and can be built like this:
44
44
```
45
45
$ mkdir build && cd build
46
46
$ cmake ..
50
50
## Usage
51
51
llvm-dbas can be used exactly the same way as llvm-as:
52
52
```
53
- OVERVIEW: llvm .ll -> .bc assembler adding debug information on IR level
53
+ OVERVIEW: llvm .ll -> .bc assembler adding debug information at IR level
54
54
55
55
USAGE: llvm-dbas [options] <input .ll file>
56
56
@@ -61,10 +61,11 @@ General options:
61
61
-disable-output - Disable output
62
62
-f - Enable binary output on terminals
63
63
-filter-print-funcs=<function names> - Only print IR for functions whose name match this for all print-[before|after][-all] options
64
- -function-summary - Emit function summary index
64
+ -module-hash - Emit module hash
65
65
-o=<filename> - Override output filename
66
66
-print-after-all - Print IR after each pass
67
67
-print-before-all - Print IR before each pass
68
+ -reverse-iterate -
68
69
-rng-seed=<seed> - Seed for the random number generator
69
70
-time-passes - Time each pass, printing elapsed time for each on exit
70
71
-verify-debug-info -
@@ -86,7 +87,8 @@ Changes include:
86
87
* LLParser uses LLDebugInfo while parsing the code.
87
88
88
89
## About
89
- Created by Florian Märkl: https://www.metallic.software
90
+ Created by Florian Märkl: https://www.metallic.software
91
+ LLVM 4.0 port by Stefan Gränitz [ @weliveindetail ] ( https://github.com/weliveindetail )
90
92
91
93
This project is distributed under the University of Illinois Open Source License.
92
94
See [ LICENSE.TXT] ( LICENSE.TXT ) for details.
0 commit comments