pacak / cargo-show-asm

cargo subcommand showing the assembly, LLVM-IR and MIR generated for Rust code
Apache License 2.0
710 stars 33 forks source link

Detect inlined/generic items #335

Open pacak opened 1 week ago

pacak commented 1 week ago

rustc will skip generating asm code for items that require generics (it can't) and might do the same for items it considers simple enough to be always inline - they still should go somewhere. Find out where, parse and present to user?