Description
There are two issues here. The first one I consider a (compiler) bug and the second one a missing
feature.
Panic strings kept in the binary
Even when panic_fmt
(the panic handler) is defined to simply abort
the compiler still produces
machine code that passes the (unused) arguments (panic message, file name, line number and column
number) to that function at runtime. This causes the arguments to be stored in the program which
takes up a sizable amount of non volatile memory (.rodata).
Here's @nagisa's description of the issue.
@nagisa was looking into this and they may have found the root of the problem. They'll open an issue Here's @nagisa proposed solution.
in the rust-lang/rust repo with more details.
This is also a problem on WASM land; see rust-lang-nursery/rust-wasm#19. If this can't be fixed in
the compiler then this RFC (rust-lang/rfcs#2305) for optionally removing the arguments of
panic_fmt
could be a solution.
Reduce footprint of panic messages
When panic_fmt
is defined to print / log panic messages complete strings are stored in the binary.
This takes up precious space in non volatile memory (.rodata).
It would be great to be able to store the strings, along with file position data, in a table in
debuginfo, which is not flashed into the device, and store only the address to each table entry
in the binary. A external tool would be required to turn that address back into a panic location.
A related RFC has been proposed: rust-lang/rfcs#2154