llvm_stackmap 0.1.5

A library capable of parsing stack maps emitted by the LLVM compiler.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
# llvm-stackmap
This is a library that can be used to parse stack maps emitted by the experimental [stack maps feature](https://llvm.org/docs/StackMaps.html) provided by LLVM

## Example
Parsing a stack map embedded into the binary `objdump` can be done via the following snippet:
```rust
use llvm_stackmap::StackMap;
use std::path::PathBuf;

let path_to_elf = PathBuf::from_str("objdump").unwrap();
let sm = StackMap::from_path(path_to_elf).unwrap();
```