Open xphoniex opened 1 year ago
I'm running a program for ARM target which calls function A, which calls B, and B calls B1 and B2. Each of those call B_end:
A
B
B1
B2
B_end
A──►B┌─► B.1 ─► B_end │ └─► B.2 ─► B_end
none of the fns are inline, when running cargo +nightly call-stack --bin <name>, I'm only getting:
cargo +nightly call-stack --bin <name>
name::B.2 name::B_end
where are the rest? are they inlined? I'm even seeing calls to other crates that they make but nothing else from my own crate.
I'm running a program for ARM target which calls function
A
, which callsB
, andB
callsB1
andB2
. Each of those callB_end
:none of the fns are inline, when running
cargo +nightly call-stack --bin <name>
, I'm only getting:where are the rest? are they inlined? I'm even seeing calls to other crates that they make but nothing else from my own crate.