WebAssembly/Roadmap

From Free Pascal wiki
Revision as of 15:05, 17 October 2019 by Skalogryz (talk | contribs)
Jump to navigationJump to search
Feature Status Description
Assembly (textual wasm)
Basic function calls and local variables
Global variables
Stack/Call frame support WebAssembly doesn't have any native stack and/or frame support.

It has to be emulated using global and local variables.

Indirect function calls WebAssembly has a specific way of indirect calls

Needed for vmt and procedure variables (callback) calls

See Also