-
Notifications
You must be signed in to change notification settings - Fork 59
New issue
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
Remove unused data segments #21
Comments
You can easily remove the data sections automatically; the problem is mostly figuring out which ones you can safely remove, as any references to them in the bytecode look like normal integers, AFAIK. |
I think it is hard to solve in general. Segments can be not separated (so you can't always know exact length of data blob) and these integers can be crafted. |
I believe https://github.com/rust-lang-nursery/rust-wasm/issues/2 combined with https://reviews.llvm.org/D42511 should solve this. |
@alexcrichton I think there still left this problem https://github.com/rust-lang-nursery/rust-wasm/issues/19#issuecomment-358455513 |
Done now that LLD is merged! |
I used
wasm-snip
to remove all the panicking and formatting code from my.wasm
, but my data section is still mostly fragments of diagnostic messages for panicking and formatting, andwasm-gc
andwasm-opt
can't remove them.This is almost 20% of my
.wasm
's code size.We need some way to mechanically remove this stuff -- doing it by hand is not feasible.
The text was updated successfully, but these errors were encountered: