Skip to content
This repository was archived by the owner on Nov 3, 2021. It is now read-only.

Commit df2a55f

Browse files
authoredOct 7, 2019
[spec] Specify instantiate (#114)
Incorporate active/passive segments into instantiation. While doing so, drop the notion of segment types as well as initelem/initdata administrative instructions and express the latter in terms of table.init and memory.init instructions. Adjust interpreter accordingly.
1 parent f47a675 commit df2a55f

20 files changed

+266
-351
lines changed
 

‎document/core/appendix/index-rules.rst

+4-4
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ Construct Judgement
2525
:ref:`Table <valid-table>` :math:`C \vdashtable \table : \tabletype`
2626
:ref:`Memory <valid-mem>` :math:`C \vdashmem \mem : \memtype`
2727
:ref:`Global <valid-global>` :math:`C \vdashglobal \global : \globaltype`
28-
:ref:`Element segment <valid-elem>` :math:`C \vdashelem \elem : \segtype`
29-
:ref:`Element mode <valid-elemmode>` :math:`C \vdashelemmode \elemmode : \segtype`
30-
:ref:`Data segment <valid-data>` :math:`C \vdashdata \data : \segtype`
31-
:ref:`Data mode <valid-datamode>` :math:`C \vdashdatamode \datamode : \segtype`
28+
:ref:`Element segment <valid-elem>` :math:`C \vdashelem \elem \ok`
29+
:ref:`Element mode <valid-elemmode>` :math:`C \vdashelemmode \elemmode \ok`
30+
:ref:`Data segment <valid-data>` :math:`C \vdashdata \data \ok`
31+
:ref:`Data mode <valid-datamode>` :math:`C \vdashdatamode \datamode \ok`
3232
:ref:`Start function <valid-start>` :math:`C \vdashstart \start \ok`
3333
:ref:`Export <valid-export>` :math:`C \vdashexport \export : \externtype`
3434
:ref:`Export description <valid-exportdesc>` :math:`C \vdashexportdesc \exportdesc : \externtype`

‎document/core/appendix/properties.rst

-48
Original file line numberDiff line numberDiff line change
@@ -485,54 +485,6 @@ To that end, all previous typing judgements :math:`C \vdash \X{prop}` are genera
485485
}
486486
487487
488-
.. index:: element, table, table address, module instance, function index
489-
490-
:math:`\INITELEM~\tableaddr~o~x^n`
491-
..................................
492-
493-
* The :ref:`external table value <syntax-externval>` :math:`\EVTABLE~\tableaddr` must be :ref:`valid <valid-externval-table>` with some :ref:`external table type <syntax-externtype>` :math:`\ETTABLE~\limits~\FUNCREF`.
494-
495-
* The index :math:`o + n` must be smaller than or equal to :math:`\limits.\LMIN`.
496-
497-
* The :ref:`module instance <syntax-moduleinst>` :math:`\moduleinst` must be :ref:`valid <valid-moduleinst>` with some :ref:`context <context>` :math:`C`.
498-
499-
* Each :ref:`function index <syntax-funcidx>` :math:`x_i` in :math:`x^n` must be defined in the context :math:`C`.
500-
501-
* Then the instruction is valid.
502-
503-
.. math::
504-
\frac{
505-
S \vdashexternval \EVTABLE~\tableaddr : \ETTABLE~\limits~\FUNCREF
506-
\qquad
507-
o + n \leq \limits.\LMIN
508-
\qquad
509-
(C.\CFUNCS[x] = \functype)^n
510-
}{
511-
S; C \vdashadmininstr \INITELEM~\tableaddr~o~x^n \ok
512-
}
513-
514-
515-
.. index:: data, memory, memory address, byte
516-
517-
:math:`\INITDATA~\memaddr~o~b^n`
518-
................................
519-
520-
* The :ref:`external memory value <syntax-externval>` :math:`\EVMEM~\memaddr` must be :ref:`valid <valid-externval-mem>` with some :ref:`external memory type <syntax-externtype>` :math:`\ETMEM~\limits`.
521-
522-
* The index :math:`o + n` must be smaller than or equal to :math:`\limits.\LMIN` divided by the :ref:`page size <page-size>` :math:`64\,\F{Ki}`.
523-
524-
* Then the instruction is valid.
525-
526-
.. math::
527-
\frac{
528-
S \vdashexternval \EVMEM~\memaddr : \ETMEM~\limits
529-
\qquad
530-
o + n \leq \limits.\LMIN \cdot 64\,\F{Ki}
531-
}{
532-
S; C \vdashadmininstr \INITDATA~\memaddr~o~b^n \ok
533-
}
534-
535-
536488
.. index:: label, instruction, result type
537489

538490
:math:`\LABEL_n\{\instr_0^\ast\}~\instr^\ast~\END`

‎document/core/binary/modules.rst

+6-6
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@ Element Section
321321
~~~~~~~~~~~~~~~
322322

323323
The *element section* has the id 9.
324-
It decodes into a vector of :ref:`element segments <syntax-elem>` that represent the |MELEM| component of a :ref:`module <syntax-module>`.
324+
It decodes into a vector of :ref:`element segments <syntax-elem>` that represent the |MELEMS| component of a :ref:`module <syntax-module>`.
325325

326326
.. math::
327327
\begin{array}{llclll}
@@ -354,7 +354,7 @@ It decodes into a vector of :ref:`element segments <syntax-elem>` that represent
354354
bit 2 indicates the use of element type and element expressions instead of element kind and element indices.
355355

356356
In the current version of WebAssembly, at most one table may be defined or
357-
imported in a single module, so all valid :ref:`active <syntax-active>`
357+
imported in a single module, so all valid :ref:`active <syntax-elem>`
358358
element segments have a |ETABLE| value of :math:`0`.
359359

360360
Additional element kinds may be added in future versions of WebAssembly.
@@ -429,7 +429,7 @@ Data Section
429429
~~~~~~~~~~~~
430430

431431
The *data section* has the id 11.
432-
It decodes into a vector of :ref:`data segments <syntax-data>` that represent the |MDATA| component of a :ref:`module <syntax-module>`.
432+
It decodes into a vector of :ref:`data segments <syntax-data>` that represent the |MDATAS| component of a :ref:`module <syntax-module>`.
433433

434434
.. math::
435435
\begin{array}{llclll}
@@ -450,7 +450,7 @@ It decodes into a vector of :ref:`data segments <syntax-data>` that represent th
450450
bit 1 indicates the presence of an explicit memory index for an active segment.
451451

452452
In the current version of WebAssembly, at most one memory may be defined or
453-
imported in a single module, so all valid :ref:`active <syntax-active>` data
453+
imported in a single module, so all valid :ref:`active <syntax-data>` data
454454
segments have a |DMEM| value of :math:`0`.
455455

456456

@@ -543,8 +543,8 @@ Furthermore, it must be present if any :math:`data index <syntax-dataidx>` occur
543543
\MTABLES~\table^\ast, \\
544544
\MMEMS~\mem^\ast, \\
545545
\MGLOBALS~\global^\ast, \\
546-
\MELEM~\elem^\ast, \\
547-
\MDATA~\data^m, \\
546+
\MELEMS~\elem^\ast, \\
547+
\MDATAS~\data^m, \\
548548
\MSTART~\start^?, \\
549549
\MIMPORTS~\import^\ast, \\
550550
\MEXPORTS~\export^\ast ~\} \\

0 commit comments

Comments
 (0)
This repository has been archived.