WebAssembly / binaryen

Optimizer and compiler/toolchain library for WebAssembly

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

How to remove no-op exported functions?

orsinium opened this issue · comments

commented

Discussed in #6501

Originally posted by orsinium April 15, 2024
Quite often, after all optimizations, wasm-opt leaves exported functions empty:

(module
  (type (func))
  (func (type 0)
    nop)
  (export "example" (func 0)))

Is there a way to tell wasm-opt that it is also safe to remove the exported functions if they are empty? I know for sure that the target runtime handles missed exports correctly.

Based on the discussion, there is currently no way to do so. Hence we decided that it's worth opening a proper feature request. The feature would help a lot with code optimization on both guest and host sides in situations when the host doesn't require the exported functions to be present.

Two possible ways to add such a feature:

  1. As a pass-option for RemoveUnusedModuleElements pass.
  2. Add a flag to wasm-metadce.
    In both cases the option would be something like "consider empty exports unused".

Which runtime is this, btw, that will safely ignore empty exports?

commented

Which runtime is this, btw, that will safely ignore empty exports?

I'm building my own Rust runtime on top of wasmi. Knowing that the guest does not implement certain functions lets me do host-side optimizations. Similar to how pico-8 changes the frame rate to 60 FPS if _UPDATE60 function is provided.

Another example is wasm-4. It expects start and update exports both of which may be omitted:

I see, thanks for the info @orsinium !

With multiple VMs that could benefit here, this sounds very reasonable to add as an option.

Probably the first option I mentioned before (pass-option for RemoveUnusedModuleElements) is best. If someone has time to look into that but doesn't know where to start I can help out with guidance.