-
Notifications
You must be signed in to change notification settings - Fork 1
/
ast.ml
executable file
·164 lines (145 loc) · 4.74 KB
/
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
(* Abstract Syntax Tree and functions for printing it
* Anthony Chan
* Gabriel Kramer-Garcia
* Brian Tsau
* Teresa Choe
*)
type op = Add | Sub | Mult | Div | Equal | Neq | Less | Leq | Greater | Geq |
And | Or | Shiftleft | Shiftright | Bitand | Bitor | Bitxor | Mod
type uop = Neg | Not | IntCast | FloatCast
type expr =
Int_Literal of int
| Float_Literal of float
| Char_Literal of char
| String_Literal of string
| Vector_Literal of expr list
| Matrix_Literal of expr list list
| Bool_Literal of bool
| Id of string
| Binop of expr * op * expr
| Unop of uop * expr
| Assign of expr * expr
| Call of string * expr list
| VecAccess of string * expr
| MatAccess of string * expr * expr
| MatRow of string * expr
| MatCol of string * expr
| SizeOf of string
(*| ImAccess of string * int*)
| Noexpr
type typ =
Int
| Bool
| Float
| Char
| String
| Void
(*| Image of expr * expr *)
| Vector of typ * expr
| Matrix of typ * expr * expr
type bind = typ * string
type stmt =
Block of stmt list
| Expr of expr
| Return of expr
| If of expr * stmt * stmt
| For of expr * expr * expr * stmt
| While of expr * stmt
(* | Break
| Continue *)
type func_decl = {
typ : typ;
fname : string;
formals : bind list;
locals : bind list;
body : stmt list;
}
type program = bind list * func_decl list
(* Pretty-printing functions *)
let string_of_op = function
Add -> "+"
| Sub -> "-"
| Mult -> "*"
| Div -> "/"
| Equal -> "=="
| Neq -> "!="
| Less -> "<"
| Leq -> "<="
| Greater -> ">"
| Geq -> ">="
| And -> "&&"
| Or -> "||"
| Mod -> "%"
| Shiftleft -> "<<"
| Shiftright -> ">>"
| Bitand -> "&"
| Bitor -> "|"
| Bitxor -> "^"
let string_of_uop = function
Neg -> "-"
| Not -> "!"
| IntCast -> "(Int) "
| FloatCast -> "(Float) "
let rec string_of_vector el =
"[" ^ String.concat ", " (List.map (fun e -> string_of_expr e) el) ^ "]"
and(* rec *) string_of_matrix el = "[|" ^
String.concat " & " (List.map (fun v -> string_of_vector v) el) ^ "|]"
and(* rec *) string_of_expr = function
Int_Literal(i) -> string_of_int i
| Float_Literal(f) -> string_of_float f
| Char_Literal(c) -> Char.escaped c
| String_Literal(s) -> s
| Bool_Literal(b) -> if b then "true" else "false"
| Vector_Literal(el) -> string_of_vector el
| Matrix_Literal(el) -> string_of_matrix el
| Id(s) -> s
| Binop(e1, o, e2) ->
string_of_expr e1 ^ " " ^ string_of_op o ^ " " ^ string_of_expr e2
| Unop(o, e) -> string_of_uop o ^ string_of_expr e
| Assign(e1, e2) -> string_of_expr e1 ^ " = " ^ string_of_expr e2
(* | Assign(v, e2) -> v ^ " = " ^ string_of_expr e2 *)
| SizeOf(s) -> "sizeof(" ^ s ^ ")"
| Call(f, el) ->
f ^ "(" ^ String.concat ", " (List.map string_of_expr el) ^ ")"
| VecAccess(v, e) -> v ^ "[" ^ string_of_expr e ^ "]"
| MatAccess(v, e1, e2) -> v ^ "[" ^ string_of_expr e1 ^ "]" ^
"[" ^ string_of_expr e2 ^ "]"
| MatRow(v, e) -> v ^ "[" ^ string_of_expr e ^ "][]"
| MatCol(v, e) -> v ^ "[][" ^ string_of_expr e ^ "]"
(*| ImAccess(v, c) -> v ^ ".[" ^ string_of_int c ^ "]"*)
| Noexpr -> ""
let rec string_of_stmt = function
Block(stmts) ->
"{\n" ^ String.concat "" (List.map string_of_stmt stmts) ^ "}\n"
| Expr(expr) -> string_of_expr expr ^ ";\n";
| Return(expr) -> "return " ^ string_of_expr expr ^ ";\n";
| If(e, s, Block([])) -> "if (" ^ string_of_expr e ^ ")\n" ^ string_of_stmt s
| If(e, s1, s2) -> "if (" ^ string_of_expr e ^ ")\n" ^
string_of_stmt s1 ^ "else\n" ^ string_of_stmt s2
| For(e1, e2, e3, s) ->
"for (" ^ string_of_expr e1 ^ " ; " ^ string_of_expr e2 ^ " ; " ^
string_of_expr e3 ^ ") " ^ string_of_stmt s
| While(e, s) -> "while (" ^ string_of_expr e ^ ") " ^ string_of_stmt s
(* | Break -> "break;"
| Continue -> "continue;" *)
let rec string_of_typ = function
Int -> "int"
| Bool -> "bool"
| Char -> "char"
| Float -> "float"
| String -> "string"
| Void -> "void"
(*| Image(h, w) -> "Image[" ^ string_of_expr h ^ "," ^ string_of_expr w ^ "]"*)
| Vector(t, e) -> string_of_typ t ^ "[" ^ string_of_expr e ^ "]"
| Matrix(t, e1, e2) -> string_of_typ t ^ "[" ^ string_of_expr e1 ^ "][" ^ string_of_expr e2 ^ "]"
let string_of_vdecl (t, id) = string_of_typ t ^ " " ^ id ^ ";\n"
let string_of_fdecl fdecl =
"def " ^ string_of_typ fdecl.typ ^ " " ^
fdecl.fname ^ "(" ^ String.concat ", " (List.map snd fdecl.formals) ^
")\n{\n" ^
String.concat "" (List.map string_of_vdecl fdecl.locals) ^
String.concat "" (List.map string_of_stmt fdecl.body) ^
"}\n"
let string_of_program (vars, funcs) =
String.concat "" (List.map string_of_vdecl vars) ^ "\n" ^
String.concat "\n" (List.map string_of_fdecl funcs)