We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
show current function assembly code
https://github.com/pacak/cargo-show-asm
Integrate cargo-show-asm into rust-analyzer.
cargo-show-asm
rust-analyzer
#[inline(never)] pub fn add42(x: u8) -> u8 { let mut a: u8 = x; a += 21u8; a += 21u8; a }
$ cargo asm --simplify --lib -p cargo_show_asm_example cargo_show_asm_example::add42 2>/dev/null cargo_show_asm_example::add42: lea eax, [rdi + 42] ret
The text was updated successfully, but these errors were encountered:
CC #14356
Sorry, something went wrong.
No branches or pull requests
feat
show current function assembly code
description
https://github.com/pacak/cargo-show-asm
Integrate
cargo-show-asm
intorust-analyzer
.$ cargo asm --simplify --lib -p cargo_show_asm_example cargo_show_asm_example::add42 2>/dev/null cargo_show_asm_example::add42: lea eax, [rdi + 42] ret
The text was updated successfully, but these errors were encountered: