Difference between revisions of "WebAssembly/Roadmap"

From Lazarus wiki
Jump to navigationJump to search
(Created page with "Category:WebAssembly")
 
Line 1: Line 1:
 +
{|class="wikitable"
 +
!Feature
 +
!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 (vmt and procedure variables)
 +
|WebAssembly has a specific way of indirect calls
 +
|}
 +
==See Also==
 +
*[[WebAssembly]]
 
[[Category:WebAssembly]]
 
[[Category:WebAssembly]]

Revision as of 04:40, 11 October 2019

Feature 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 (vmt and procedure variables) WebAssembly has a specific way of indirect calls

See Also