Skip to content

Commit f8183a1

Browse files
committed
Update README.md after LLVM 4.0 port
1 parent d4427ed commit f8183a1

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

README.md

+7-5
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
[![Build Status](https://travis-ci.org/thestr4ng3r/llvm-dbas.svg?branch=master)](https://travis-ci.org/thestr4ng3r/llvm-dbas)
33

44
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.
66

77
When compiling LLVM IR code to machine code, there usually is afterwards no
88
easy way to keep track of which native instructions resulted from which LLVM
@@ -40,7 +40,7 @@ Process 2523 stopped
4040
```
4141

4242
## 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:
4444
```
4545
$ mkdir build && cd build
4646
$ cmake ..
@@ -50,7 +50,7 @@ $ make
5050
## Usage
5151
llvm-dbas can be used exactly the same way as llvm-as:
5252
```
53-
OVERVIEW: llvm .ll -> .bc assembler adding debug information on IR level
53+
OVERVIEW: llvm .ll -> .bc assembler adding debug information at IR level
5454
5555
USAGE: llvm-dbas [options] <input .ll file>
5656
@@ -61,10 +61,11 @@ General options:
6161
-disable-output - Disable output
6262
-f - Enable binary output on terminals
6363
-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
6565
-o=<filename> - Override output filename
6666
-print-after-all - Print IR after each pass
6767
-print-before-all - Print IR before each pass
68+
-reverse-iterate -
6869
-rng-seed=<seed> - Seed for the random number generator
6970
-time-passes - Time each pass, printing elapsed time for each on exit
7071
-verify-debug-info -
@@ -86,7 +87,8 @@ Changes include:
8687
* LLParser uses LLDebugInfo while parsing the code.
8788

8889
## 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)
9092

9193
This project is distributed under the University of Illinois Open Source License.
9294
See [LICENSE.TXT](LICENSE.TXT) for details.

0 commit comments

Comments
 (0)