summaryrefslogtreecommitdiff
path: root/src/ast.ml
diff options
context:
space:
mode:
Diffstat (limited to 'src/ast.ml')
-rw-r--r--src/ast.ml186
1 files changed, 93 insertions, 93 deletions
diff --git a/src/ast.ml b/src/ast.ml
index 64659f2c..f27c2a89 100644
--- a/src/ast.ml
+++ b/src/ast.ml
@@ -59,14 +59,19 @@ base_kind_aux = (* base kind *)
type
+base_kind =
+ BK_aux of base_kind_aux * l
+
+
+type
id_aux = (* Identifier *)
Id of x
| DeIid of terminal * x * terminal (* remove infix status *)
type
-base_kind =
- BK_aux of base_kind_aux * l
+kind_aux = (* kinds *)
+ K_kind of (base_kind * terminal) list
type
@@ -75,12 +80,7 @@ id =
type
-kind_aux = (* kinds *)
- K_kind of (base_kind * terminal) list
-
-
-type
-effect_aux = (* effect *)
+efct_aux = (* effect *)
Effect_rreg of terminal (* read register *)
| Effect_wreg of terminal (* write register *)
| Effect_rmem of terminal (* read memory *)
@@ -91,9 +91,14 @@ effect_aux = (* effect *)
type
+kind =
+ K_aux of kind_aux * l
+
+
+type
nexp_aux = (* expression of kind $_$, for vector sizes and origins *)
Nexp_id of id (* identifier *)
- | Nexp_constant of terminal * int (* constant *)
+ | Nexp_constant of (terminal * int) (* constant *)
| Nexp_times of nexp * terminal * nexp (* product *)
| Nexp_sum of nexp * terminal * nexp (* sum *)
| Nexp_exp of terminal * terminal * nexp (* exponential *)
@@ -103,13 +108,14 @@ and nexp =
type
-kind =
- K_aux of kind_aux * l
+efct =
+ Effect_aux of efct_aux * l
type
-effect =
- Effect_aux of effect_aux * l
+kinded_id_aux = (* optionally kind-annotated identifier *)
+ KOpt_none of id (* identifier *)
+ | KOpt_kind of kind * id (* kind-annotated variable *)
type
@@ -117,19 +123,13 @@ type
NC_fixed of nexp * terminal * nexp
| NC_bounded_ge of nexp * terminal * nexp
| NC_bounded_le of nexp * terminal * nexp
- | NC_nat_set_bounded of id * terminal * terminal * (terminal * int * terminal) list * terminal
-
-
-type
-kinded_id_aux = (* optionally kind-annotated identifier *)
- KOpt_none of id (* identifier *)
- | KOpt_kind of kind * id (* kind-annotated variable *)
+ | NC_nat_set_bounded of id * terminal * terminal * ((terminal * int) * terminal) list * terminal
type
effects_aux = (* effect set, of kind $_$ *)
- Effects_var of id
- | Effects_set of terminal * (effect * terminal) list * terminal (* effect set *)
+ Effects_var of terminal * id
+ | Effects_set of terminal * terminal * (efct * terminal) list * terminal (* effect set *)
type
@@ -140,13 +140,13 @@ order_aux = (* vector order specifications, of kind $_$ *)
type
-'a nexp_constraint =
- NC_aux of 'a nexp_constraint_aux * 'a annot
+kinded_id =
+ KOpt_aux of kinded_id_aux * l
type
-kinded_id =
- KOpt_aux of kinded_id_aux * l
+'a nexp_constraint =
+ NC_aux of 'a nexp_constraint_aux * 'a annot
type
@@ -167,6 +167,19 @@ type
type
+lit_aux = (* Literal constant *)
+ L_unit of terminal * terminal (* $() : _$ *)
+ | L_zero of terminal (* $_ : _$ *)
+ | L_one of terminal (* $_ : _$ *)
+ | L_true of terminal (* $_ : _$ *)
+ | L_false of terminal (* $_ : _$ *)
+ | L_num of (terminal * int) (* natural number constant *)
+ | L_hex of terminal * string (* bit vector constant, C-style *)
+ | L_bin of terminal * string (* bit vector constant, C-style *)
+ | L_string of terminal * string (* string constant *)
+
+
+type
typ_aux = (* Type expressions, of kind $_$ *)
Typ_wild of terminal (* Unspecified type *)
| Typ_var of id (* Type variable *)
@@ -193,31 +206,13 @@ type
type
-lit_aux = (* Literal constant *)
- L_unit of terminal * terminal (* $() : _$ *)
- | L_zero of terminal (* $_ : _$ *)
- | L_one of terminal (* $_ : _$ *)
- | L_true of terminal (* $_ : _$ *)
- | L_false of terminal (* $_ : _$ *)
- | L_num of terminal * int (* natural number constant *)
- | L_hex of terminal * string (* bit vector constant, C-style *)
- | L_bin of terminal * string (* bit vector constant, C-style *)
- | L_string of terminal * string (* string constant *)
-
-
-type
-'a typschm_aux = (* type scheme *)
- TypSchm_ts of 'a typquant * typ
-
-
-type
lit =
L_aux of lit_aux * l
type
-'a typschm =
- TypSchm_aux of 'a typschm_aux * 'a annot
+'a typschm_aux = (* type scheme *)
+ TypSchm_ts of 'a typquant * typ
type
@@ -230,7 +225,7 @@ type
| P_app of id * ('a pat) list (* union constructor pattern *)
| P_record of terminal * ('a fpat * terminal) list * terminal * bool * terminal (* struct pattern *)
| P_vector of terminal * ('a pat * terminal) list * terminal (* vector pattern *)
- | P_vector_indexed of terminal * ((terminal * int * terminal * 'a pat) * terminal) list * terminal (* vector pattern (with explicit indices) *)
+ | P_vector_indexed of terminal * (((terminal * int) * terminal * 'a pat) * terminal) list * terminal (* vector pattern (with explicit indices) *)
| P_vector_concat of ('a pat * terminal) list (* concatenated vector pattern *)
| P_tup of terminal * ('a pat * terminal) list * terminal (* tuple pattern *)
| P_list of terminal * ('a pat * terminal) list * terminal (* list pattern *)
@@ -246,7 +241,15 @@ and 'a fpat =
type
-'a exp_aux = (* Expression *)
+'a typschm =
+ TypSchm_aux of 'a typschm_aux * 'a annot
+
+
+type
+'a letbind =
+ LB_aux of 'a letbind_aux * 'a annot
+
+and 'a exp_aux = (* Expression *)
E_block of terminal * ('a exp * terminal) list * terminal (* block (parsing conflict with structs?) *)
| E_id of id (* identifier *)
| E_lit of lit (* literal constant *)
@@ -256,7 +259,7 @@ type
| E_tuple of terminal * ('a exp * terminal) list * terminal (* tuple *)
| E_if of terminal * 'a exp * terminal * 'a exp * terminal * 'a exp (* conditional *)
| E_vector of terminal * ('a exp * terminal) list * terminal (* vector (indexed from 0) *)
- | E_vector_indexed of terminal * ((terminal * int * terminal * 'a exp) * terminal) list * terminal (* vector (indexed consecutively) *)
+ | E_vector_indexed of terminal * (((terminal * int) * terminal * 'a exp) * terminal) list * terminal (* vector (indexed consecutively) *)
| E_vector_access of 'a exp * terminal * 'a exp * terminal (* vector access *)
| E_vector_subrange of 'a exp * terminal * 'a exp * terminal * 'a exp * terminal (* subvector extraction *)
| E_vector_update of terminal * 'a exp * terminal * 'a exp * terminal * 'a exp * terminal (* vector functional update *)
@@ -304,9 +307,6 @@ and 'a letbind_aux = (* Let binding *)
LB_val_explicit of 'a typschm * 'a pat * terminal * 'a exp (* value binding, explicit type ('a pat must be total) *)
| LB_val_implicit of terminal * 'a pat * terminal * 'a exp (* value binding, implicit type ('a pat must be total) *)
-and 'a letbind =
- LB_aux of 'a letbind_aux * 'a annot
-
type
naming_scheme_opt_aux = (* Optional variable-naming-scheme specification for variables of defined type *)
@@ -315,37 +315,32 @@ naming_scheme_opt_aux = (* Optional variable-naming-scheme specification for va
type
-'a tannot_opt_aux = (* Optional type annotation for functions *)
- Typ_annot_opt_none
- | Typ_annot_opt_some of terminal * typ
-
-
-type
rec_opt_aux = (* Optional recursive annotation for functions *)
Rec_nonrec (* non-recursive *)
| Rec_rec of terminal (* recursive *)
type
-'a effects_opt_aux = (* Optional effect annotation for functions *)
- Effects_opt_pure (* sugar for empty effect set *)
- | Effects_opt_effects of effects
+'a funcl_aux = (* Function clause *)
+ FCL_Funcl of id * 'a pat * terminal * 'a exp
type
-'a funcl_aux = (* Function clause *)
- FCL_Funcl of id * 'a pat * terminal * 'a exp
+'a tannot_opt_aux = (* Optional type annotation for functions *)
+ Typ_annot_opt_none
+ | Typ_annot_opt_some of terminal * typ
type
-naming_scheme_opt =
- Name_sect_aux of naming_scheme_opt_aux * l
+'a effects_opt_aux = (* Optional effect annotation for functions *)
+ Effects_opt_pure (* sugar for empty effect set *)
+ | Effects_opt_effects of effects
type
index_range_aux = (* index specification, for bitfields in register types *)
- BF_single of terminal * int (* single index *)
- | BF_range of terminal * int * terminal * terminal * int (* index range *)
+ BF_single of (terminal * int) (* single index *)
+ | BF_range of (terminal * int) * terminal * (terminal * int) (* index range *)
| BF_concat of index_range * terminal * index_range (* concatenation of index ranges *)
and index_range =
@@ -353,8 +348,8 @@ and index_range =
type
-'a tannot_opt =
- Typ_annot_opt_aux of 'a tannot_opt_aux * 'a annot
+naming_scheme_opt =
+ Name_sect_aux of naming_scheme_opt_aux * l
type
@@ -363,19 +358,18 @@ rec_opt =
type
-'a effects_opt =
- Effects_opt_aux of 'a effects_opt_aux * 'a annot
+'a funcl =
+ FCL_aux of 'a funcl_aux * 'a annot
type
-'a funcl =
- FCL_aux of 'a funcl_aux * 'a annot
+'a tannot_opt =
+ Typ_annot_opt_aux of 'a tannot_opt_aux * 'a annot
type
-'a default_typing_spec_aux = (* Default kinding or typing assumption *)
- DT_kind of terminal * base_kind * id
- | DT_typ of terminal * 'a typschm * id
+'a effects_opt =
+ Effects_opt_aux of 'a effects_opt_aux * 'a annot
type
@@ -388,18 +382,19 @@ type
type
-'a fundef_aux = (* Function definition *)
- FD_function of terminal * rec_opt * 'a tannot_opt * 'a effects_opt * ('a funcl * terminal) list
+'a val_spec_aux = (* Value type specification *)
+ VS_val_spec of terminal * 'a typschm * id
type
-'a val_spec_aux = (* Value type specification *)
- VS_val_spec of terminal * 'a typschm * id
+'a default_typing_spec_aux = (* Default kinding or typing assumption *)
+ DT_kind of terminal * base_kind * id
+ | DT_typ of terminal * 'a typschm * id
type
-'a default_typing_spec =
- DT_aux of 'a default_typing_spec_aux * 'a annot
+'a fundef_aux = (* Function definition *)
+ FD_function of terminal * rec_opt * 'a tannot_opt * 'a effects_opt * ('a funcl * terminal) list
type
@@ -408,13 +403,18 @@ type
type
-'a fundef =
- FD_aux of 'a fundef_aux * 'a annot
+'a val_spec =
+ VS_aux of 'a val_spec_aux * 'a annot
type
-'a val_spec =
- VS_aux of 'a val_spec_aux * 'a annot
+'a default_typing_spec =
+ DT_aux of 'a default_typing_spec_aux * 'a annot
+
+
+type
+'a fundef =
+ FD_aux of 'a fundef_aux * 'a annot
type
@@ -433,11 +433,6 @@ type
type
-'a def =
- DEF_aux of 'a def_aux * 'a annot
-
-
-type
'a typ_lib_aux = (* library types and syntactic sugar for them *)
Typ_lib_unit of terminal (* unit type with value $()$ *)
| Typ_lib_bool of terminal (* booleans $_$ and $_$ *)
@@ -461,8 +456,8 @@ type
type
-'a defs = (* Definition sequence *)
- Defs of ('a def) list
+'a def =
+ DEF_aux of 'a def_aux * 'a annot
type
@@ -475,4 +470,9 @@ type
CT_aux of 'a ctor_def_aux * 'a annot
+type
+'a defs = (* Definition sequence *)
+ Defs of ('a def) list
+
+