Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/thlorenz/lldb-ifl
Adds *gdb* `info registers eflags` feature to lldb.
https://github.com/thlorenz/lldb-ifl
Last synced: 26 days ago
JSON representation
Adds *gdb* `info registers eflags` feature to lldb.
- Host: GitHub
- URL: https://github.com/thlorenz/lldb-ifl
- Owner: thlorenz
- License: mit
- Created: 2015-03-22T17:20:30.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-03-22T20:41:31.000Z (almost 10 years ago)
- Last Synced: 2024-10-23T06:15:04.700Z (2 months ago)
- Language: Python
- Size: 121 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# lldb-ifl
Adds *gdb* `info registers eflags` feature to lldb.
## Installation
```sh
curl -L https://raw.githubusercontent.com/thlorenz/lldb-ifl/master/ifl.py > ifl.py
```## Usage
```
(lldb) command script import ifl.py
(lldb) ifl
rflags: 0x0000000000000246 ['PF', 'ZF', 'IF']
```## Flags Docs
Learn about what the abbreviations mean [on this Flags register page](http://en.wikipedia.org/wiki/FLAGS_register).
How various flags [affect jump instructions](http://unixwiz.net/techtips/x86-jumps.html).
## Caveats
Reserved flags (i.e. Bit# 1) are ignored in the abbreviated output.
## License
MIT