msvc-demangler

Crates.iomsvc-demangler
lib.rsmsvc-demangler
version0.10.1
sourcesrc
created_at2018-04-18 18:15:25.456646
updated_at2024-05-10 17:16:36.058211
descriptionA rust library that demangles / undecorates C++ symbols mangled by MSVC
homepage
repositoryhttps://github.com/mstange/msvc-demangler-rust
max_upload_size
id61250
size248,944
Armin Ronacher (mitsuhiko)

documentation

https://docs.rs/msvc-demangler/

README

msvc-demangler

msvc-demangler is a crate for Rust that can demangle C++ symbols which use the MSVC mangling scheme. These are emitted by the Microsoft C++ compiler for Windows as well as some others.

Example

use msvc_demangler;
let flags = msvc_demangler::DemangleFlags::llvm();
let result = msvc_demangler::demangle("??_0klass@@QEAAHH@Z", flags).unwrap();
println!("{}", result);

Behavior

It's functionality is similar to undname on Windows and the underlying UnDecorateSymbolName function. Since Microsoft does not document the mangling scheme this is likely not to be entirely accurate. When unclear the implementation tries to follow what LLVM does.

License

This msvc-demangler is dual licensed under the MIT and the University of Illinois Open Source Licenses.

License: MIT/NCSA

Commit count: 121

cargo fmt