summaryrefslogtreecommitdiff
path: root/misc-test/compilateur_c_en_c/compil.yy
blob: 3543258e4fc102ca84951449cc7f606204385460 (plain)
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
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
%{
	#include "y.tab.h"
	#include "table_sym.h"
	#include "reloc.h"
	#include "asm_defs.h"

	#include <stdio.h>
	#include <stdlib.h>
	#include <string.h>


	symbolStack tableSym = NULL; // Table de symboles initialement vide
	extern int yylineno; // Bidouille pour avoir le numero de ligne du lexer ^^

	int SP = 0; // StackPointer
	int contextProf = 0; // Profondeur de contexte
	int tempCount = 0; // Compteur pour génerer des noms de temporaires uniques
	int structCount = 0; // Compteur pour génerer des noms de labels pour les structures unique

	
	int yylex();
	void yyerror(char *s);
	void warning(char *msg);

	struct symbolEntry * addSym(char *varName, int contextProf, int readOnly);
	void genCode(int opcode, int op1, int op2, int op3);
	void genCodeJump(int opcode, int op1, int op2, int op3, char *targetLabel);
	void genLabel(char *lbl, char *prefix, int id);
%}


%token ERROR

%token IF
%token ELSE
%token WHILE
%token DO

%token MAIN
%token CONST
%token INT
%token PRINTF
%left FOIS DIV
%left '+' '-'
%left '>' '<'
%left EGALE DIFFERENT
	/* TODO : if contractés : <cond>?<then>:<else> */
%token AFF
	/* TODO : += -= *= /= */
%token <str> IDENTIFICATEUR
%token <nb> ENTIER

%type <nb> InitVarLoc
%type <sym> DeclVarLoc1
%type <sym> DeclConst1

%type <sym> Symbole
%type <sym> Constante

%type <sym> LValue
%type <sym> RValue

	/* %type <str> BeginIfWithoutElse */

%type <nb> BeginIf
%type <nb> BeginWhile
%type <nb> BeginDoWhile

%union { int nb; char *str; struct symbolEntry *sym; } 

%start Prog
%%

Prog: MAIN Block				{ /* printSymTable(tableSym);*/ }
Block:	'{'	{ contextProf++; }
	Declarations
	Instructions
	'}'	{ 	/* printf("Block\n");*/
			/*printSymTable(tableSym);*/
			cleanSymStack(&tableSym, --contextProf);
		}

BlockOuInstr:	Block
		| Instruction


Declarations:	/*vide*/			{ printf("Declaration vide\n"); }
	    | Decl ';' Declarations

Decl:		INT DeclVarLocList		{ /*printf("Decl\n");*/ }
    		| CONST INT DeclConstList
		| error		/* TODO : essayer de perdre moins d'informations */

/***********************
** Liste de variables **
***********************/
DeclVarLocList: DeclVarLoc			{ /* printf("DeclVarLoc\n");*/ }
	      	| DeclVarLoc ',' DeclVarLocList


DeclVarLoc: DeclVarLoc1				{  /*printf("Variable non initalisee : '%s'\n", $1->symName);*/ }
	  	| DeclVarLoc1 InitVarLoc	{
							//printf("Variable initalisee '%s' à %i\n", $1->symName, $2);
							if ( $1 == NULL )
							{
								yyerror("Symbol already declared");
								YYERROR;
							} else {
								genCode(I_AFC, $1->address, $2, PAD);
								$1->initialized = 1; // oui (et pas peut-être, car nouveau profondeur)
							}
						}

DeclVarLoc1: IDENTIFICATEUR			{ $$ = addSym($1, contextProf, 0); }

InitVarLoc: AFF ENTIER				{ $$=$2; /*printf("Init à la valeur %i\n", $2);*/ }

/************************
** Liste de constantes **
************************/
DeclConstList: DeclConst
	     | DeclConst ',' DeclConstList

DeclConst: DeclConst1 AFF ENTIER		{
							if ( $1 == NULL ) {
								yyerror("Symbol already declared");
								YYERROR;
							} else {
								genCode(I_AFC, $1->address, $3, PAD);
								$1->initialized = 1; // oui (et pas peut-être, car nouveau profondeur)
							}
						}

DeclConst1: IDENTIFICATEUR			{ $$ = addSym($1, contextProf, 1); }

/*****************
** Instructions **
*****************/
Instructions:	/* Vide */
	    |	Instruction Instructions /* TODO : ajouter gestion d'erreur */

Instruction:	PRINTF '(' RValue ')' ';'	
						{
							if ( $3->initialized == 0) // non
							{
								yyerror("Symbol uninitialized");
								YYERROR;
							} else {
								if ( $3->initialized == 2 ) // peut-etre
								{
									warning("Symbol may be uninitialized");
								}
								genCode(I_PRI, $3->address, PAD, PAD);
							}
						}

	   | LValue AFF RValue ';' 	{
							genCode(I_COP, $1->address, $3->address, PAD);

							if ( contextProf > 0 )
							{
								$1->initialized=2; // TODO peut-être (gestion très limitée car nécessiterai un arbre de contextes numerotés au minimum pour être plus fin)
							} else {
								$1->initialized=1; // oui (on est dans le main)
							}
						}

	   | BeginIf Block/*OuInstr*/		{ // TODO : comprendre pourquoi ça génère un décalage/réduction
							char lbl[MAX_LABEL_LEN];
							genLabel(lbl, "if1_",$1);
							writeLabel(lbl);
						}


	   | BeginIf Block/*OuInstr*/ ELSE			{
							char lbl[MAX_LABEL_LEN];
							genLabel(lbl, "if2_", $1);
							genCodeJump(I_JMP, UNK, PAD, PAD, lbl);

							genLabel(lbl, "if1_", $1);
							writeLabel(lbl);
						}
		 		BlockOuInstr	{
							char lbl[MAX_LABEL_LEN];
							genLabel(lbl,"if2_",$1);
							writeLabel(lbl);
						}

	   | BeginWhile BlockOuInstr			{
							char lbl[MAX_LABEL_LEN];
							genLabel(lbl, "wh1_", $1);
							genCodeJump(I_JMP, UNK, PAD, PAD, lbl);

							genLabel(lbl, "wh2_", $1);
							writeLabel(lbl);
						}

	   | BeginDoWhile BlockOuInstr WHILE '(' RValue ')' ';'
						{
							char lbl1[MAX_LABEL_LEN], lbl2[MAX_LABEL_LEN];
							genLabel(lbl1, "do1_", $1);
							genLabel(lbl2, "do2_", $1);

							genCodeJump(I_JMF, $5->address, PAD, PAD, lbl2);
							genCodeJump(I_JMP, UNK, PAD, PAD, lbl1);

							writeLabel(lbl2);
						}


BeginIf: IF '(' RValue ')'		{
							char lbl[MAX_LABEL_LEN];
							$$=structCount++;
							genLabel(lbl, "if1_", $$);
							genCodeJump(I_JMF, $3->address, UNK, PAD, lbl);
						}

BeginWhile: WHILE '(' RValue ')'		{
							char lbl[MAX_LABEL_LEN];
							$$=structCount++;
							genLabel(lbl, "wh1_", $$);
							writeLabel(lbl);
							genLabel(lbl, "wh2_", $$);
							genCodeJump(I_JMF, $3->address, UNK, PAD, lbl);
						}

BeginDoWhile: DO 				{
							char lbl[MAX_LABEL_LEN];
							$$=structCount++;
							genLabel(lbl, "do1_", $$);
							writeLabel(lbl);
						}

Symbole: IDENTIFICATEUR				{ 
							$$=symbolFind(tableSym, $1, contextProf, contextProf);
							if ( $$==NULL ) {
								yyerror("Symbol not declared");
								YYERROR;
							}
						}

LValue:	Symbole					{
							if ( $1->readOnly )
							{
								$$=NULL;
								yyerror("Not a valid LValue : is read-only");
								YYERROR;
							} else {
								$$=$1;
							}
						}

RValue: Constante				{	$$=$1;	}
      	| Symbole				{  
							//TODO : expression complete et pas symbole (qui retourne addresse ou symbole ?)
							$$=$1;
						}

Constante: ENTIER				{
	 						char tempoName[MAX_LABEL_LEN];
							sprintf(tempoName, "!tempo%d", tempCount++); // TODO : si tempo trop long, bug
							$$ = addSym(tempoName, contextProf, 1);
							if ( $$ == NULL ) {
								yyerror("Error while declaring a temp variable");
								YYERROR;
							} else {
								$$->initialized=1;
								genCode(I_AFC, $$->address, $1, PAD);
							}
						}
%%
void yyerror(char *s)
{
	//fprintf(stderr, "Syntax Error : '%s' at l%d,c%d-l%d,c%d\n", s, @$.first_column, @$.last_line, @$.last_column); // Nécessite l'option %locations et un lexer qui va bien
	fprintf(stderr, "(stdin):%i: error: %s\n", yylineno, s);
}

void warning(char *msg)
{
	fprintf(stderr, "(stdin):%i: warning: %s\n", yylineno, msg);
}

int main(int argc, char **argv)
{	// Par défaut, c'est l'analyse LEXICALE qui est lancée !
	if ( argc != 2 ) {
		fprintf(stderr, "Usage : %s <nom_fichier_sortie>\n", argv[0]);
		exit(-1);
	}

	printf("Opening...\n");
	openWriteDestFiles(argv[1]);
	printf("Parsing...\n"); // TODO : fichier d'entrée
	yyparse();
	printf("Closing...\n");
	closeDestFiles();
	printf("Linking...\n");
	linker(argv[1],0); // TODO tester autre que 0

	return 0;
}

// TODO : passer &tableSym en param
struct symbolEntry * addSym(char *varName, int contextProf, int readOnly)
{
	struct symbolEntry *sym = NULL;
	
	if ( symbolFind(tableSym, varName, contextProf, contextProf) == NULL )
	{
		sym = malloc(1*sizeof(struct symbolEntry));

		sym->symName = malloc(strlen(varName) * sizeof(char));
		strcpy(sym->symName,varName);
		sym->address = SP++;
		sym->readOnly = readOnly;
		sym->initialized = 0;
		sym->contextProf = contextProf;


		symbolPush(&tableSym,sym);
	} /* else return NULL */


	return sym; 
}

void genCode(int opcode, int op1, int op2, int op3)
{
	writeCode(opcode,op1,op2,op3);
}

void genCodeJump(int opcode, int op1, int op2, int op3, char *targetLabel)
{
	int addr=writeCode(opcode,op1,op2,op3);
	switch (opcode) {
	case I_JMP:
		writeHole(addr+1, targetLabel);
		break;
	case I_JMF:
		writeHole(addr+2, targetLabel);
		break;
	default:
		yyerror("Internal error : genCodeJump called whiout a I_JMP or I_JMF opcode");
		/* YYERROR; TODO : dégager...*/
		break;
	}
}

void genLabel(char *lbl, char *prefix, int id)
{
	sprintf(lbl, "!%s%d", prefix, id);
}

// TODO : variable globales en dehors du main ?