mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-23 00:50:28 +02:00
+ added the WebAssembly table instructions
This commit is contained in:
parent
534383f686
commit
2888710594
@ -88,6 +88,8 @@ uses
|
||||
a_memory_copy, a_memory_fill, a_memory_init, a_data_drop,
|
||||
// reference instructions
|
||||
a_ref_null, a_ref_is_null, a_ref_func,
|
||||
// table instructions
|
||||
a_table_get, a_table_set, a_table_size, a_table_grow, a_table_fill, a_table_copy, a_table_init, a_elem_drop,
|
||||
// exceptions
|
||||
a_try,a_catch,a_catch_all,a_delegate,a_throw,a_rethrow,a_end_try,
|
||||
// atomic memory accesses - load/store
|
||||
|
@ -87,6 +87,8 @@ interface
|
||||
'memory.copy 0,0', 'memory.fill 0', 'memory.init', 'data.drop',
|
||||
// reference instructions
|
||||
'ref.null', 'ref.is_null', 'ref.func',
|
||||
// table instructions
|
||||
'table.get', 'table.set', 'table.size', 'table.grow', 'table.fill', 'table.copy', 'table.init', 'elem.drop',
|
||||
// exceptions
|
||||
'try','catch','catch_all','delegate','throw','rethrow','end_try',
|
||||
// atomic memory accesses - load/store
|
||||
|
@ -71,6 +71,8 @@
|
||||
'memory.copy', 'memory.fill', 'memory.init', 'data.drop',
|
||||
// reference instructions
|
||||
'ref.null', 'ref.is_null', 'ref.func',
|
||||
// table instructions
|
||||
'table.get', 'table.set', 'table.size', 'table.grow', 'table.fill', 'table.copy', 'table.init', 'elem.drop',
|
||||
// exceptions
|
||||
'try','catch','catch_all','delegate','throw','rethrow','end',
|
||||
// atomic memory accesses - load/store
|
||||
|
Loading…
Reference in New Issue
Block a user