You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We currently hardwire elf procs to have a 64k stack. We have the opportunity to find out their actual required stack size, using the keep-stack-sizes compiler directive (perhaps aided by https://crates.io/crates/stack-sizes) and some kind of call graph analysis, to figure out the maximum possible stack size. (This will break on recursive code, which is actually desirable. We at least want an explicit opt-out for that.)
The text was updated successfully, but these errors were encountered:
mullr
changed the title
Determine elf proc stack size with build output
Determine elf proc stack size by inspecting binary
Aug 14, 2019
We currently hardwire elf procs to have a 64k stack. We have the opportunity to find out their actual required stack size, using the keep-stack-sizes compiler directive (perhaps aided by https://crates.io/crates/stack-sizes) and some kind of call graph analysis, to figure out the maximum possible stack size. (This will break on recursive code, which is actually desirable. We at least want an explicit opt-out for that.)
The text was updated successfully, but these errors were encountered: