You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
1. Try :ref:`instantiating <exec-instantiation>` :math:`\module` in :math:`\store` with :ref:`external values <syntax-externval>` :math:`\externval^\ast` as imports:
.. index:: ! profile, abstract syntax, validation, execution, binary format, text format
2
+
.. _profiles:
3
+
4
+
Profiles
5
+
--------
6
+
7
+
To enable the use of WebAssembly in as many environments as possible, *profiles* specify coherent language subsets that fit constraints imposed by common classes of host environments.
8
+
A host platform can thereby decide to support the language only under a restricted profile, or even the intersection of multiple profiles.
9
+
10
+
11
+
Conventions
12
+
~~~~~~~~~~~
13
+
14
+
A profile modification is specified by decorating selected rules in the main body of this specification with a *profile annotation* that defines them as conditional on the choice of profile.
15
+
16
+
For that purpose, every profile defines a *profile marker*, an alphanumeric short-hand like :math:`\profilename{ABC}`.
17
+
A profile annotation of the form :math:`\exprofiles{\profile{ABC}~\profile{XYZ}}` on a rule indicates that this rule is *excluded* for either of the profiles whose marker is :math:`\profilename{ABC}` or :math:`\profilename{XYZ}`.
18
+
19
+
There are two ways of subsetting the language in a profile:
20
+
21
+
* *Syntactic*, by *omitting* a feature, in which case certain constructs are removed from the syntax altogether.
22
+
23
+
* *Semantic*, by *restricting* a feature, in which case certain constructs are still present but some behaviours are ruled out.
24
+
25
+
26
+
Syntax Annotations
27
+
..................
28
+
29
+
To omit a construct from a profile syntactically, respective productions in the grammar of the :ref:`abstract syntax <syntax>` are annotated with an associated profile marker.
30
+
This is defined to have the following implications:
31
+
32
+
1. Any production in the :ref:`binary <binary>` or :ref:`textual <text>` syntax that produces abstract syntax with a marked construct is omitted by extension.
33
+
34
+
2. Any :ref:`validation <valid>` or :ref:`execution <exec>` rule that handles a marked construct is omitted by extension.
35
+
36
+
The overall effect is that the respective construct is no longer part of the language under a respective profile.
37
+
38
+
.. note::
39
+
For example, a "busy" profile marked :math:`\profilename{BUSY}` could rule out the |NOP| instruction by marking the production for it in the abstract syntax as follows:
40
+
41
+
.. math::
42
+
\begin{array}{llcl}
43
+
\production{instruction} & \instr &::=&
44
+
\dots \\
45
+
& \exprofiles{\profile{BUSY}} &|& \NOP \\
46
+
& &|& \UNREACHABLE \\
47
+
\end{array}
48
+
49
+
A rule may be annotated by multiple markers, which could be the case if a construct is in the intersection of multiple features.
50
+
51
+
52
+
Semantics Annotations
53
+
.....................
54
+
55
+
To restrict certain behaviours in a profile, individual :ref:`validation <valid>` or :ref:`reduction <exec>` rules or auxiliary definitions are annotated with an associated marker.
56
+
57
+
This has the consequence that the respective rule is no longer applicable under the given profile.
58
+
59
+
.. note::
60
+
For example, an "infinite" profile marked :math:`\profilename{INF}` could define that growing memory never fails:
All profiles are defined such that the following properties are preserved:
80
+
81
+
* All profiles represent syntactic and semantic subsets of the :ref:`full profile <profile-full>`, i.e., they do not *add* syntax or *alter* behaviour.
82
+
83
+
* All profiles are mutually compatible, i.e., no two profiles subset semantic behaviour in inconsistent or ambiguous ways, and any intersection of profiles preserves the properties described here.
84
+
85
+
* Profiles do not violate :ref:`soundness <soundness>`, i.e., all :ref:`configurations <syntax-config>` valid under that profile still have well-defined execution behaviour.
86
+
87
+
.. note::
88
+
Tools are generally expected to handle and produce code for the full profile by default.
89
+
In particular, producers should not generate code that *depends* on specific profiles. Instead, all code should preserve correctness when executed under the full profile.
90
+
91
+
Moreover, profiles should be considered static and fixed for a given platform or ecosystem. Runtime conditioning on the "current" profile is not intended and should be avoided.
92
+
93
+
94
+
95
+
Defined Profiles
96
+
~~~~~~~~~~~~~~~~
97
+
98
+
.. note::
99
+
The number of defined profiles is expected to remain small in the future. Profiles are intended for broad and permanent use cases only. In particular, profiles are not intended for language versioning.
100
+
101
+
102
+
.. index:: full profile
103
+
single: profile; full
104
+
.. _profile-full:
105
+
106
+
Full Profile (:math:`{\small{\mathrm{FUL}}}`)
107
+
.............................................
108
+
109
+
The *full* profile contains the complete language and all possible behaviours.
110
+
It imposes no restrictions, i.e., all rules and definitions are active.
111
+
All other profiles define sub-languages of this profile.
The *deterministic* profile excludes all rules marked :math:`\exprofiles{\PROFDET}`.
122
+
It defines a sub-language that does not exhibit any incidental non-deterministic behaviour:
123
+
124
+
* All :ref:`NaN <syntax-nan>` values :ref:`generated <aux-nans>` by :ref:`floating-point instructions <syntax-instr-numeric>` are canonical and positive.
125
+
126
+
* All :ref:`relaxed vector instructions <syntax-instr-relaxed>` have a fixed behaviour that does not depend on the implementation.
127
+
128
+
Even under this profile, the |MEMORYGROW| and |TABLEGROW| instructions technically remain :ref:`non-deterministic <exec-memory.grow>`, in order to be able to indicate resource exhaustion.
129
+
130
+
.. note::
131
+
In future versions of WebAssembly, new non-deterministic behaviour may be added to the language, such that the deterministic profile will induce additional restrictions.
0 commit comments