-
Notifications
You must be signed in to change notification settings - Fork 0
/
anasem.c
220 lines (216 loc) · 8.99 KB
/
anasem.c
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
/* anasem.c */
#include <assert.h>
#include <ctype.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "arbre.h"
#include "pppascal.tab.h"
/*------------------FONCTIONS ---------------------------------------------------*/
/*------------------types--------------------------------------------------------*/
void typ_error(char *mess,int ligne)
{fprintf(stderr, "TYPERROR: %s: ligne %d \n", mess, ligne);
return;}
/* renvoie le type de e : TYPEF \in T_int, T_boo, T_com, T_err, T_bot */
/* affecte ce type a la racine */
/* suppose corrects les types des fils */
/* envoie message d'erreur si mal type a la racine et fils bien types */
/* renvoie T_err si l'arbre est mal-type */
type calcul_type(BILENVTY rho_gb, NOE e, int ligne)
{ type tp;
tp= creer_type(0,T_bot);/* type par defaut */
if(e != NULL)
{ type tfg,tfd; /* type du fils gauche, fils droit */
type terr=creer_type(0,T_err); /* type erreur */
/* un des fils est mal-type */
if ((e->FG && type_eq(e->FG->typno,terr))||(e->FD && type_eq(e->FD->typno,terr)))
{type_copy(&tp,terr);/* valeur du type */
type_copy(&(e->typno),terr); /* affecte type erreur */
return(tp);}
/* e != NULL et tous les fils sont bien-types */
switch(e->codop)
{case true:
tp=e->typno;
return(tp);/* typno deja affecte */
case false:
tp=e->typno;
return(tp);/* typno deja affecte */
case Ind: /* (tab_dim k of tau) x int -> (tab_dim k-1 of tau) */
{type tint; /* type entier */
tint=creer_type(0,T_int);
tfg=e->FG->typno;/* type des fils */
tfd=e->FD->typno;
if ((tfg.DIM > 0) && type_eq(tfd,tint))
{type_copy(&tp,tfg); /* type du tableau fils gauche */
(tp.DIM)--; /* calcule le type */
type_copy(&e->typno,tp); /* affecte le type */
}
else if (tfg.DIM == 0)
{type_copy(&tp,terr); /* calcule le type */
type_copy(&e->typno,tp); /* affecte le type */
typ_error("index dans un tab de dim 0",ligne); /* envoi message erreur*/
}
else
{type_copy(&tp,terr); /* calcule le type */
type_copy(&e->typno,tp); /* affecte le type */
typ_error("index non entier dans un tableau",ligne);/*env message erreur*/
};
return(tp);}
case Pl:case Mo:case Mu: /* int x int -> int */
{type tint; /* type des fils */
tint=creer_type(0,T_int);
tfg=e->FG->typno;
tfd=e->FD->typno;
if (type_eq(tfg,tint) && type_eq(tfd,tint))
{ type_copy(&tp,tfg); /* calcule le type */
type_copy(&(e->typno),tfg);/* affecte le type */
}
else
{type_copy(&tp,terr);/* calcule le type */
type_copy(&(e->typno),terr); /* affecte type */
typ_error("op entier sur args non-entiers",ligne);/* message erreur */
}
return(tp);
}
case Lt:case Eq: /* int x int -> boo */
{type tint,tboo; /* types entier, booleen */
tint=creer_type(0,T_int);
tboo=creer_type(0,T_boo);
tfg=e->FG->typno;
tfd=e->FD->typno;
if (type_eq(tfg,tint) && type_eq(tfd,tint))
{ type_copy(&tp,tboo); /* valeur du type */
type_copy(&(e->typno),tboo); /* affecte le type */
}
else
{type_copy(&tp,terr);/* valeur du type */
type_copy(&(e->typno),terr); /* affecte type */
typ_error("op de comparaison sur args non-entiers",ligne);/* message */
}
return(tp);
}
case And:case Or: /* boo x boo -> boo */
{type tboo; /* type booleen */
tboo=creer_type(0,T_boo);
tfg=e->FG->typno;
tfd=e->FD->typno;
if (type_eq(tfg,tboo) && type_eq(tfd,tboo))
{ type_copy(&tp,tboo); /* valeur du type */
type_copy(&(e->typno),tboo); /* affecte le type */
}
else
{type_copy(&tp,terr);/* valeur du type */
type_copy(&(e->typno),terr); /* affecte type */
typ_error("op booleen sur args non-booleens",ligne);/*message erreur*/
}
return(tp);
}
case Not: /* boo -> boo */
{type tboo; /* type booleen */
tboo=creer_type(0,T_boo);
tfg=e->FG->typno;
assert(e->FD==NULL); /* op unaire */
if (type_eq(tfg,tboo))
{ type_copy(&tp,tboo); /* valeur du type */
type_copy(&(e->typno),tboo); /* affecte le type */
}
else
{type_copy(&tp,terr);/* valeur du type */
type_copy(&(e->typno),terr); /* affecte type */
typ_error("op booleen sur arg non-booleen",ligne);/* message erreur */
}
return(tp);
}
case I: /* constante T_int */
{type tint; /* type du noeud */
tint=creer_type(0,T_int);
assert(type_eq(e->typno,tint));/*verif du type */
type_copy(&tp,tint); /* valeur du type */
return(tp);
}
case V: /* variable */
{ ENVTY pos=rechty(e->ETIQ,rho_gb.debut); /* pos var dans rho */
if (pos!=NULL)
{ type_copy(&tp, pos->TYPE); /* valeur du type := rho(var) */
type_copy(&(e->typno), pos->TYPE);/* affecte le type */
}
else
{type_copy(&tp,terr); /* tp := erreur */
type_copy(&(e->typno),tp); /* affecte type */
typ_error("variable inconnue ",ligne);/* message erreur */
};
return(tp); /* renvoie le type */
}
case NewAr: /* creation tableau */
{
type tint;
tint=creer_type(0,T_int);
tfd=e->FD->typno;
if (type_eq(tfd,tint)){
type_copy(&tp, e->typno);
}else{
type_copy(&tp,terr); /* tp := erreur */
type_copy(&(e->typno),tp); /* affecte type */
typ_error("index tableau n'est pas un int",ligne);/* message erreur */
}
return(tp);
}
case Af: /* affectation */
{if (type_eq(e->FG->typno,e->FD->typno)==0)/* type(lhs) <> type(rhs) */
{ type_copy(&(e->typno),terr); /* affecte type */
typ_error("affectation de types incoherents ", ligne);
return(terr);
}
else /* type(lhs) == type(rhs) */
type_copy(&(e->typno), creer_type(0,T_com));
return(tp);
}
case Se:
{ type tcom= creer_type(0,T_com); /* type commande */
type_copy(&(e->typno),tcom);
type_copy(&tp,tcom);
return(tp);
}
case If:
{ type tcom= creer_type(0,T_com); /* type commande */
type tboo=creer_type(0,T_boo); /* type booleen */
tfg=e->FG->typno; /* type des 3 fils */
type tthen=e->FD->FG->typno;
type telse=e->FD->FD->typno;
if (type_eq(tfg,tboo)==0) /* type arg0 <> booleen */
{type_copy(&(e->typno),terr); /* affecte type */
type_copy(&tp,terr);
typ_error("condition non booleenne dans un IfThEl", ligne);
}
else if (!type_eq(tthen,tcom) ||!type_eq(telse,tcom)) /* arg <> tcom */
{type_copy(&(e->typno),terr); /* affecte type */
type_copy(&tp,terr);
}
else
{type_copy(&(e->typno),tcom); /* affecte type */
type_copy(&tp,tcom);
}
return(tp);
}
case Wh:
{ type tcom= creer_type(0,T_com); /* type commande */
type tboo=creer_type(0,T_boo); /* type booleen */
tfg=e->FG->typno; /* type des fils */
tfd=e->FD->typno;
if (type_eq(tfg,tboo)==0) /* type arg0 <> booleen */
{type_copy(&(e->typno),terr); /* affecte type */
type_copy(&tp,terr);
typ_error("condition non booleenne dans un While", ligne);
}
else
{type_copy(&(e->typno),tcom); /* affecte type */
type_copy(&tp,tcom);
}
return(tp);
}
default: return(tp); /* codop inconnu au bataillon */
}/* fin switch */
}/* fin if (e!=NULL) */
else
return(tp); /* e==NULL, arbre vide, type T_bot */
}