-
Notifications
You must be signed in to change notification settings - Fork 0
/
alloc_ast.ml
67 lines (49 loc) · 1.92 KB
/
alloc_ast.ml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
open Ast
open Typed_ast
module Sset = Set.Make(struct type t = string let compare = compare end)
type allocated_expression =
{
amain : allocated_corp;
aloc : Ast.location;
atyp : _type
}
and allocated_corp =
| AEcst of constant
| AEacc of allocated_acces
| AEeg of allocated_acces * allocated_expression
| AEcall of ident * (allocated_expression list)
| AEbinop of binop * allocated_expression * allocated_expression
| AEunop of unop * allocated_expression
| AEif of allocated_expression * (allocated_blocexpr) * ((allocated_blocexpr) option)
| AEwhile of allocated_expression * (allocated_blocexpr)
| AEreturn of allocated_expression option
| AEfun of (param list) * _type option * allocated_bloc * Sset.t
and allocated_acces =
| Glovar of ident * location * _type
| Locvar of int * location * _type
| AAdot of allocated_expression * ident * location * _type
| AAwhat of allocated_expression * ident * location * _type
and allocated_blocexpr =
| AB of allocated_bloc | AE of allocated_expression
and allocated_bloc = {
ablc : allocated_varexpr list ;
abtyp : _type
}
and allocated_varexpr=
| AV of allocated_var
| AE2 of allocated_expression
and allocated_var =
| AVar of ident * (_type option) * allocated_expression * location * _type * int
| AVal of ident * (_type option) * allocated_expression * location * _type * int
(*
and allocated_func=
| AFunc of ((ident list) option) * ident * (param list) * (_type option) * allocated_bloc * location * _type
*)
and allocated_func =
| AFunc of ident * allocated_bloc
and allocated_class = ACls of ident * ((ident list) option) * (paramc list) * (allocated_var list) * location
and allocated_decl =
| ADvar of allocated_var * int
| ADclass of allocated_class * int
| ADfun of allocated_func * int
type allocated_file = allocated_decl list