Skip to content

Commit fc990e3

Browse files
authored
[spec] Fix validation context for globals (#77)
1 parent 22ce5e3 commit fc990e3

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

document/core/valid/modules.rst

+11-3
Original file line numberDiff line numberDiff line change
@@ -543,7 +543,15 @@ Instead, the context :math:`C` for validation of the module's content is constru
543543

544544
* :math:`C.\CREFS` is the set :math:`\freefuncidx(\module.\MELEMS)`, i.e., the set of :ref:`function indices <syntax-funcidx>` occurring in any of the module's :ref:`element segments <syntax-elem>`.
545545

546-
* Let :math:`C'` be the :ref:`context <context>` where :math:`C'.\CGLOBALS` is the sequence :math:`\etglobals(\X{it}^\ast)` and all other fields are empty.
546+
* Let :math:`C'` be the :ref:`context <context>` where:
547+
548+
* :math:`C'.\CGLOBALS` is the sequence :math:`\etglobals(\X{it}^\ast)`,
549+
550+
* :math:`C'.\CFUNCS` is the same as :math:`C.\CFUNCS`,
551+
552+
* :math:`C'.\CREFS` is the same as :math:`C.\CREFS`,
553+
554+
* all other fields are empty.
547555

548556
* Under the context :math:`C`:
549557

@@ -630,7 +638,7 @@ Instead, the context :math:`C` for validation of the module's content is constru
630638
\\
631639
C = \{ \CTYPES~\functype^\ast, \CFUNCS~\X{ift}^\ast~\X{ft}^\ast, \CTABLES~\X{itt}^\ast~\X{tt}^\ast, \CMEMS~\X{imt}^\ast~\X{mt}^\ast, \CGLOBALS~\X{igt}^\ast~\X{gt}^\ast, \CELEMS~{\ok}^{N_e}, \CDATAS~{\ok}^{N_d}, \CREFS~\freefuncidx(\elem^{N_e}) \}
632640
\\
633-
C' = \{ \CGLOBALS~\X{igt}^\ast \}
641+
C' = \{ \CGLOBALS~\X{igt}^\ast, \CFUNCS~(C.\CFUNCS), \CREFS~(C.\CREFS) \}
634642
\qquad
635643
|C.\CMEMS| \leq 1
636644
\qquad
@@ -661,7 +669,7 @@ Instead, the context :math:`C` for validation of the module's content is constru
661669
All types needed to construct :math:`C` can easily be determined from a simple pre-pass over the module that does not perform any actual validation.
662670

663671
Globals, however, are not recursive.
664-
The effect of defining the limited context :math:`C'` for validating the module's globals is that their initialization expressions can only access imported globals and nothing else.
672+
The effect of defining the limited context :math:`C'` for validating the module's globals is that their initialization expressions can only access functions and imported globals and nothing else.
665673

666674
.. note::
667675
The restriction on the number of memories may be lifted in future versions of WebAssembly.

0 commit comments

Comments
 (0)