-
Notifications
You must be signed in to change notification settings - Fork 0
/
interpreteurmixte.ml
292 lines (272 loc) · 10.1 KB
/
interpreteurmixte.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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
open Expr
open Compilateur
(* fonction qui trouve tous les sous-programmes purs *)
let rec purifier p =
match p with
Const n -> (true,p)
| Variable x -> (true,p)
| Add(p1,p2,_) -> let (b1,pp1)=purifier p1 and (b2,pp2)=purifier p2 in
if(b1 && b2)
then
(true, Add(pp1,pp2, true))
else
(false, Add(pp1,pp2, false))
| Mul(p1,p2,_) -> let (b1,pp1)=purifier p1 and (b2,pp2)=purifier p2 in
if(b1&&b2)
then
(true, Mul(pp1,pp2,true))
else
(false, Mul(pp1,pp2,false))
| Min(p1,p2,_) -> let (b1,pp1)=purifier p1 and (b2,pp2)=purifier p2 in
if(b1&&b2)
then
(true, Min(pp1,pp2,true))
else
(false, Min(pp1,pp2,false))
| Letin(x,p1,p2,_) -> let (b1,pp1)=purifier p1 and (b2,pp2)=purifier p2 in
if(b1&&b2)
then
(true, Letin(x,pp1,pp2,true))
else
(false, Letin(x, pp1, pp2, false))
| RecFunction(x,p1,p2) ->let (b1,pp1)=purifier p1 and (b2,pp2)=purifier p2 in
(false, RecFunction(x,pp1,pp2))
| IfThenElse (b,p1,p2) -> let (b1,pp1)=purifier p1 and (b2,pp2)=purifier p2 in
(false, IfThenElse(b,pp1,pp2))
| ApplyFun (p1,p2) -> let (b1,pp1)=purifier p1 and (b2,pp2)=purifier p2 in
(false, ApplyFun(pp1,pp2))
| Function (x,p1) -> let (b1,pp1)=purifier p1 in
(false, Function(x,pp1))
| PrInt (p1,_) -> let (b1,pp1)=purifier p1 in
(b1, PrInt(pp1, b1))
| LetRef (x,p1,p2) -> let (b1,pp1)=purifier p1 and (b2,pp2)=purifier p2 in
(false, LetRef(x, pp1, pp2))
| Bang(x) -> (false, Bang(x))
| RefAff(x,p1,p2) -> let (b1,pp1)=purifier p1 and (b2,pp2)=purifier p2 in
(false, RefAff(x,pp1,pp2))
| TryWith(p1,p2,p3) -> let (b1,pp1)=purifier p1 and (b2,pp2)= purifier p2 and (b3,pp3)=purifier p3 in
(false, TryWith(pp1,pp2,pp3))
| Raise (p1) -> let (b1,pp1)=purifier p1 in
(false, Raise(pp1))
| Excep (p1) -> let (b1,pp1)=purifier p1 in
(false, Excep(pp1))
(* La fonction la plus importante : l'interpréteur ! *)
let rec interpmixte:prog->env->valeur=fun p l ->
(* fonction d'interprétation d'une expression booléenne *)
let interpbool b l =
match b with
Eq (p1,p2) -> (interpmixte p1 l) = (interpmixte p2 l)
| Neq (p1,p2) -> (interpmixte p1 l) != (interpmixte p2 l)
| Gt (p1,p2) -> (interpmixte p1 l) > (interpmixte p2 l)
| Ge (p1,p2) -> (interpmixte p1 l) >= (interpmixte p2 l)
| Lt (p1,p2) -> (interpmixte p1 l) < (interpmixte p2 l)
| Le (p1,p2) -> (interpmixte p1 l) <= (interpmixte p2 l)
| Vrai -> true
| Faux -> false
in
match p with
(* Si c'est une constante : rien à faire *)
Const n -> VInt n
(* Si un nom de variable apparaît, on va chercher dans l'environnement à quoi elle correspond *)
| Variable x -> begin match lookup x l with
VInt n -> VInt n
| _ -> failwith("Trying to use a function as a variable.")
end
(* Les fonctions arithmétiques, qui ne peuvent additioner que des entiers *)
| Add (e1,e2,b) ->begin
if b
then begin
let code = Compilateur.compile p in
VInt (exec code l)
end
else
match ((interpmixte e1 l),(interpmixte e2 l)) with
(VInt n1, VInt n2) -> VInt (n1+n2)
| (_,_) -> failwith("Trying to add functions or references.")
end
| Mul (e1,e2,b) -> begin
if b
then begin
let code = Compilateur.compile p in
VInt (exec code l)
end
else
match ((interpmixte e1 l),(interpmixte e2 l)) with
(VInt n1, VInt n2) -> VInt (n1*n2)
| (_,_) -> failwith("Trying to multiply functions.")
end
| Min (e1,e2,b) ->begin
if b
then begin
let code = Compilateur.compile p in
VInt(exec code l)
end
else
match ((interpmixte e1 l),(interpmixte e2 l)) with
(VInt n1, VInt n2) -> VInt (n1-n2)
| (_,_) -> failwith("Trying to substract functions.")
end
(* LetIn peut soir correspondre à la définition d'une fonction, soit à la définition d'un entier, ça dépend de si interp p1 l renvoie une VFun ou un VInt *)
| Letin (x,p1,p2,b) -> let new_val = interpmixte p1 l in
if b
then begin
let code = Compilateur.compile p in
VInt(exec code l)
end
else
begin
l:=((x,new_val)::(!l));
let res = interpmixte p2 l in
begin
pop x l;
res
end
end
(* Définition de type let rec d'une fonction récursive *)
| RecFunction (f,p1,p2) -> let val_fun = interpmixte p1 l in
begin
match val_fun with
VFun (x, body, clo) -> l:=((f,VFunR (x,body, clo))::(!l));
let res = interpmixte p2 l in
begin
pop f l;
res
end
| _ -> failwith("Defining something that isn't a recursive function.")
end
(* Ici c'est un if then else, donc on fait un if then else *)
| IfThenElse (b,pif,pelse) -> if (interpbool b l) then interpmixte pif l else interpmixte pelse l
(* Là c'est une fonction anonyme : donc un argument et le corps de la fonction *)
| Function (x,pfun) -> VFun (x,pfun,ref !l)
(* Ici on souhaite appliquer une fonction *)
| ApplyFun (f,p) -> let argument = interpmixte p l in
begin
match f with
(* On a tous les arguments : alors on peut appliquer la fonction *)
Variable s -> begin
match lookup s l with
VFun (x,body,clo) -> let fenv = (x, argument)::(!clo) and cloanc = !clo in
begin
clo:= fenv;
match interpmixte body clo with
VFun (y,bodyp,clop) -> VFun (y,bodyp,clop)
| VFunR (y, bodyp,clop) -> VFunR (y, bodyp,clop)
| n -> clo:= cloanc;
n
end
(* On utilise la cloture associée à la fonction *)
| VFunR (x, body, clo) -> let fenv = (s, VFunR (x, body, clo))::(x, argument)::(!clo) and cloanc = !clo in
begin
clo:= fenv;
match interpmixte body clo with
VFun (y,bodyp,clop) -> VFun (y,bodyp,clop)
| VFunR (y,bodyp,clop) -> VFunR (y,bodyp,clop)
| n -> clo:= cloanc;
n
end
| _ -> failwith("Trying to use something that isn't a function as a fonction.")
end
(* Cas où il manque encore des arguments : on cherche alors les autres*)
| ApplyFun(_,_) -> begin
let lanc = !l in
match interpmixte f l with
VFun (y, body, clo) -> begin
l:=((y, argument)::(!clo));
match interpmixte body l with
VFun (z,bodyp,clop) -> VFun (z,bodyp,clop)
| VFunR (z,bodyp,clop) -> VFunR (z,bodyp,clop)
| n -> l:=lanc;
n
end
| _ -> failwith("trying to apply something that isn't a function or too much arguments given.")
end
(* Cas où on définit une fonction anonyme puis qu'on l'applique juste après *)
| Function(x,body) -> let fenv = (x, argument)::(!l) and lanc = !l in
begin
l:= fenv;
match interpmixte body l with
VFun (y,bodyp,clop) -> VFun (y,bodyp,clop)
| VFunR (y,boyp,clop) -> VFunR (y,body,clop)
| n -> l:= lanc;
n
end
(* On crée en fait un nouvel environnement d'exécution car on fait un appel fonction *)
| _ -> failwith("Not the right number of arguments or not applying a function")
end
(* Si on fait un prInt, alors on print et on renvoie la valeur *)
| PrInt (x,b) -> begin
if b
then
let code = Compilateur.compile p in
VInt (exec code l)
else
let n = interpmixte x l in
match n with
VInt k -> print_int k; print_newline (); n
| _ -> failwith("Trying to prInt a function or a reference.")
end
(* LetIn mais pour une référence cette fois-ci. Alors on crée une référence dans notre environnement *)
| LetRef (x, p1, p2) -> let new_val = interpmixte p1 l in
begin
match new_val with
| VInt n -> begin
l := (x, VRef (ref n)) :: !l;
interpmixte p2 l
end
| _ -> failwith("Impossible to assign a ref from a function or a ref")
end
(* On a un bang : on récupère la valeur et on la renvoie *)
| Bang x -> begin
match lookup x l with
| VRef n -> VInt (!n)
| _ -> failwith("Trying to deference a non-reference object.")
end
(* On veut changer la valeur, on fait appel à la fonction update *)
| RefAff (x, p1, p2) -> begin
begin match interpmixte p1 l with
| VInt n -> update x l n
| _ -> failwith("Affectation error : the right member is not an interger")
end;
interpmixte p2 l
end
| TryWith (p1,e,p2) ->begin
match e with
(* On vérifie que e est bien un code d'erreur *)
Excep (p) -> begin
match p with
(* Son argument doit soit être une variable... *)
Variable x -> begin
try interpmixte p1 l
with (E y) -> begin
l:= (x, VInt y)::(!l);
let res = interpmixte p2 l in
begin
pop x l;
res
end
end
end
| _ -> begin
match interpmixte p l with
(* ...Soit un programme qui renvoie un int *)
VInt n -> begin
try interpmixte p1 l
(* On catch l'erreur et on vérifie que c'est la bonne, sinon on fait remonter l'erreur *)
with (E k) -> if n=k then interpmixte p2 l
else raise (E k)
end
| _ -> failwith("Wrong type of exception in try with.")
end
end
| _ -> failwith("Catching something that isn't an error")
end
| Raise (p) -> begin
match interpmixte p l with
VErr e -> raise e
| _ -> failwith("Not raising an error")
end
| Excep (p) -> begin
match interpmixte p l with
VInt n -> VErr (E n)
| _ -> failwith("Giving an argument that isn't an int to the exception.")
end