arm64.rs |
|
0 |
lib.rs |
Zero-copy parsers of the contents of the `.pdata` section and unwind information in PE
binaries.
On top of these parsers, some higher-level interfaces are provided to easily unwind frames. The
parsers and the higher interfaces are written with efficiency in mind, doing minimal copying of
data. There is no heap allocation. |
382 |
x86_64.rs |
Unwind information for x86_64 (usually called x64 in microsoft documentation).
The high-level API is accessed through `FunctionTableEntries::unwind_frame`. This function
allows you to unwind a frame to get the return address and all updated contextual registers. |
44989 |