This is a library that can be used to parse stack maps emitted by the experimental stack maps feature provided by LLVM
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 pathtoelf = PathBuf::fromstr("objdump").unwrap(); let sm = StackMap::frompath(pathtoelf).unwrap(); ```