-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathir_generator.c
585 lines (565 loc) · 15.4 KB
/
ir_generator.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
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
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
/* Compilers Project Group 2
// Aditya Raisinghani 2011A7PS042P
// Utkarsh Verma 2011A7PS137P
// BITS Pilani, Pilani Campus
// Second semester 2014
*/
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include "tokens.h"
#include "lexer.h"
#include "parserDef.h"
#include "first_follow_gen.h"
#include "parser.h"
#include "symbol_table.h"
#include "type_extractor.h"
#include "semantic_analyzer.h"
#include "ir_generator.h"
astTree currentASTNode;
STList stList;
IRTable currentIR;
IRTable headIR;
int curTempVar;
int lineNum;
void initialiseIRTable()
{
currentIR = malloc(sizeof(struct _IRTable));
currentIR->lineNum = 0;
lineNum = 1;
currentIR->nextEntry = NULL;
headIR = currentIR;
curTempVar = 0;
}
int getLengthFromStringTable(char* name)
{
stringSizes entry = stList->stringTable;
while(strcmp(entry->stringName,name))
{
entry = entry->nextEntry;
if(entry->stringName == NULL)
break;
}
return entry->length;
}
IRItem findTempNodeForID(char* name)
{
IRTable findIR = headIR;
while(findIR != NULL)
{
if(findIR->arg1->entry != NULL)
{
if(!strcmp(findIR->arg1->entry,name) && !findIR->arg1->isSize)
return findIR->arg1;
}
if(findIR->arg2 != NULL && findIR->arg2->entry != NULL)
{
if(!strcmp(findIR->arg2->entry,name) && !findIR->arg2->isSize)
return findIR->arg2;
}
if(findIR->result != NULL && findIR->result->entry != NULL)
{
if(!strcmp(findIR->result->entry,name) && !findIR->result->isSize)
return findIR->result;
}
findIR = findIR->nextEntry;
}
return NULL;
}
matrixSizes findMatrixInMatrixTable(char* name)
{
matrixSizes entry = stList->matrixTable;
while(strcmp(entry->matrixName,name))
{
entry = entry->nextEntry;
if(entry->stringName == NULL)
break;
}
return entry;
}
IRItem findTempNodeForMatrixElement(char* name, char* row, char* col)
{
int rows = atoi(row);
int column = atoi(col);
IRTable findIR = headIR;
while(findIR != NULL)
{
if(findIR->arg1->entry != NULL)
{
if(!strcmp(findIR->arg1->entry,name) && findIR->arg1->isSize && findIR->arg1->rowNum == rows && findIR->arg1->colNum == column)
return findIR->arg1;
}
if(findIR->arg2 != NULL && findIR->arg2->entry != NULL)
{
if(!strcmp(findIR->arg2->entry,name) && findIR->arg2->isSize && findIR->arg2->rowNum == rows && findIR->arg2->colNum == column)
return findIR->arg2;
}
if(findIR->result != NULL && findIR->result->entry != NULL)
{
if(!strcmp(findIR->result->entry,name) && findIR->result->isSize && findIR->result->rowNum == rows && findIR->result->colNum == column)
return findIR->result;
}
findIR = findIR->nextEntry;
}
return NULL;
}
token getTypeFromSymbolTable(char* name)
{
STable entry = stList->table;
while(strcmp(entry->data->value,name))
{
entry = entry->nextEntry;
if(entry->data == NULL)
{
// All entries in current scope over. Check above scope.
if(stList->parentList == NULL)
{
STError();
entry = NULL;
break;
}
entry = stList->parentList->table;
}
}
return convertType(entry->data->type);
}
IRItem createIRForArithmeticTerm(IRItem leftVar, astTree node)
{
astTree term = node->childNode->sisterNode;
astTree op = node->childNode;
astTree factor = term->childNode;
IRItem var1 = malloc(sizeof(struct _IRItem));
IRItem returnItem = malloc(sizeof(struct _IRItem));
char tempName[3];
sprintf(tempName,"t%d",curTempVar++);
returnItem->temp_name = tempName;
if(factor->ruleNum == 48)
{
// It is just a variable. Assign it an IR node.
IRItem item = malloc(sizeof(struct _IRItem));
astTree varNode = factor->childNode;
if(varNode->ruleNum == 65)
{
item = findTempNodeForID(varNode->data.token_data);
if(varNode->childNode->sisterNode->ruleNum == 78)
{
if(item != NULL)
{
var1 = item;
}
else
{
// Temp node for variable does not exist.
var1->entry = varNode->data.token_data;
sprintf(tempName,"t%d",curTempVar++);
var1->temp_name = tempName;
}
}
else
{
// It is a matrix element node.
item = findTempNodeForMatrixElement(varNode->data.token_data,varNode->sisterNode->childNode->data.token_data,varNode->sisterNode->childNode->sisterNode->data.token_data);
if(item != NULL)
{
var1 = item;
}
else
{
// Temp node for matrix element does not exist
var1->entry = varNode->data.token_data;
sprintf(tempName,"t%d",curTempVar++);
var1->temp_name = tempName;
var1->typeName = MAT;
var1->isSize = TRUE;
var1->rowNum = atoi(varNode->sisterNode->childNode->data.token_data);
var1->colNum = atoi(varNode->sisterNode->childNode->sisterNode->data.token_data);
}
}
}
else if(varNode->ruleNum == 66)
{
// Number element.
var1->entry = NULL;
var1->temp_name = tempName;
var1->typeName = INTEGER;
var1->value = atoi(varNode->childNode->data.token_data);
var1->strValue = NULL;
}
else if(varNode->ruleNum == 67)
{
var1->entry = NULL;
var1->temp_name = tempName;
var1->typeName = FLOAT;
var1->floatValue = atof(varNode->childNode->data.token_data);
var1->strValue = NULL;
}
else if(varNode->ruleNum == 68)
{
var1->entry = NULL;
var1->temp_name = tempName;
var1->typeName = STRINGENUM;
var1->strValue = varNode->childNode->data.token_data;
var1->strValue = NULL;
}
}
else
{
// Arithmetic Expression.
var1 = createIRForArithmeticExpression(factor->childNode);
}
astTree varNode2 = factor->sisterNode;
if(varNode2->ruleNum == 54)
{
// End of operators.
if(op->ruleNum == 57)
currentIR->op = MUL;
else
currentIR->op = DIV;
currentIR->result = returnItem;
currentIR->arg1 = leftVar;
currentIR->arg2 = var1;
currentIR->lineNum = lineNum++;
currentIR->nextEntry = malloc(sizeof(struct _IRTable));
currentIR = currentIR->nextEntry;
}
else
{
}
}
IRItem createIRForArithmeticExpression(astTree node)
{
astTree term = node->childNode;
astTree factor = term->childNode;
IRItem var1 = malloc(sizeof(struct _IRItem));
IRItem returnItem = malloc(sizeof(struct _IRItem));
char tempName[3];
sprintf(tempName,"t%d",curTempVar++);
returnItem->temp_name = tempName;
if(factor->ruleNum == 48)
{
// It is just a variable. Assign it an IR node.
IRItem item = malloc(sizeof(struct _IRItem));
astTree varNode = factor->childNode;
if(varNode->ruleNum == 65)
{
item = findTempNodeForID(varNode->data.token_data);
if(varNode->childNode->sisterNode->ruleNum == 78)
{
if(item != NULL)
{
// Item already exists.
var1 = item;
}
else
{
// Temp node for variable does not exist.
var1->entry = varNode->data.token_data;
sprintf(tempName,"t%d",curTempVar++);
var1->temp_name = tempName;
}
}
else
{
// It is a matrix element node.
item = findTempNodeForMatrixElement(varNode->data.token_data,varNode->sisterNode->childNode->data.token_data,varNode->sisterNode->childNode->sisterNode->data.token_data);
if(item != NULL)
{
var1 = item;
}
else
{
// Temp node for matrix element does not exist
var1->entry = varNode->data.token_data;
sprintf(tempName,"t%d",curTempVar++);
var1->temp_name = tempName;
var1->typeName = MAT;
var1->isSize = TRUE;
var1->rowNum = atoi(varNode->sisterNode->childNode->data.token_data);
var1->colNum = atoi(varNode->sisterNode->childNode->sisterNode->data.token_data);
}
}
}
else if(varNode->ruleNum == 66)
{
// Number element.
var1->entry = NULL;
var1->temp_name = tempName;
var1->typeName = INTEGER;
var1->value = atoi(varNode->childNode->data.token_data);
var1->strValue = NULL;
}
else if(varNode->ruleNum == 67)
{
var1->entry = NULL;
var1->temp_name = tempName;
var1->typeName = FLOAT;
var1->floatValue = atof(varNode->childNode->data.token_data);
var1->strValue = NULL;
}
else if(varNode->ruleNum == 68)
{
var1->entry = NULL;
var1->temp_name = tempName;
var1->typeName = STRINGENUM;
var1->strValue = varNode->childNode->data.token_data;
var1->strValue = NULL;
}
// Matrix additions being handled elsewhere.
}
else
{
// Arithmetic Expression.
var1 = createIRForArithmeticExpression(factor->childNode);
}
// Check the other node.
astTree varNode2 = term->childNode->sisterNode;
if(varNode2->ruleNum == 53)
{
// High precedence operator rules.
var1 = createIRForArithmeticTerm(var1,varNode2);
}
varNode2 = term->sisterNode;
if(varNode2->ruleNum == 51)
{
// There is no low precendence operator rules.
currentIR->op = MOV;
currentIR->result = returnItem;
currentIR->arg1 = var1;
currentIR->lineNum = lineNum++;
currentIR->arg2 = NULL;
currentIR->nextEntry = malloc(sizeof(struct _IRTable));
currentIR = currentIR->nextEntry;
}
else
{
// There is a low precedence operator.
IRTable curIR = currentIR;
if(varNode2->childNode->ruleNum == 55)
{
curIR->op = ADD;
}
else
{
curIR->op = SUB;
}
curIR->nextEntry = malloc(sizeof(struct _IRTable));
currentIR = curIR->nextEntry;
IRItem var2 = malloc(sizeof(struct _IRItem));
var2 = createIRForArithmeticExpression(varNode2->childNode->sisterNode);
curIR->result = returnItem;
curIR->arg1 = var1;
curIR->arg2 = var2;
// Reset this to the current entry.
curIR = currentIR;
curIR->nextEntry = malloc(sizeof(struct _IRTable));
currentIR = curIR->nextEntry;
}
return returnItem;
}
void createIRForAssignmentStmt()
{
// arithmetic Expression or size Expression.
astTree stmtNode = currentASTNode->childNode;
if(stmtNode->childNode->sisterNode->ruleNum == 27)
{
// Size Expression.
astTree idNode = stmtNode->childNode->sisterNode->childNode->childNode; // ruleNum 34 ID.
currentIR->op = MOV;
token type = getTypeFromSymbolTable(idNode->data.token_data);
if(type == STR)
{
// Add one node containing the value of string length.
int length = getLengthFromStringTable(idNode->data.token_data);
currentIR->lineNum = lineNum++;
currentIR->arg1 = malloc(sizeof(struct _IRItem));
currentIR->result = malloc(sizeof(struct _IRItem));
sprintf(currentIR->arg1->temp_name,"t%d",curTempVar++);
currentIR->arg1->value = length;
currentIR->arg1->typeName = INTEGER;
currentIR->arg1->isSize = TRUE;
currentIR->arg1->jumpStmt = FALSE;
currentIR->arg1->entry = idNode->data.token_data;
astTree assignNode = stmtNode->childNode->childNode;
char tempName[3];
IRItem item = findTempNodeForID(assignNode->data.token_data);
if(item != NULL)
{
// The item already exists in the temp nodes.
currentIR->result->temp_name = item->temp_name;
}
else
{
// Need to create a new temp name.
sprintf(tempName,"t%d",curTempVar++);
currentIR->result->temp_name = tempName;
}
currentIR->result->entry = assignNode->data.token_data;
currentIR->result->isSize = FALSE;
currentIR->result->typeName = INTEGER;
currentIR->result->jumpStmt = FALSE;
currentIR->arg2 = NULL;
currentIR->nextEntry = malloc(sizeof(struct _IRTable));
currentIR = currentIR->nextEntry;
}
}
else
{
// Arithmetic Expression.
// Assign a name to the variable being assigned the value.
astTree assignNode = stmtNode->childNode->childNode;
char tempName[3];
IRItem item = findTempNodeForID(assignNode->data.token_data);
currentIR->result = malloc(sizeof(struct _IRItem));
token type = getTypeFromSymbolTable(assignNode->data.token_data);
currentIR->result->typeName = INTEGER;
if(type == RNUM)
{
currentIR->result->typeName = FLOAT;
}
else if(type == STRINGENUM)
{
currentIR->result->typeName = STRINGENUM;
}
else if(type == MAT)
{
// Addition for each element of the matrix. :/
}
if(item != NULL)
{
currentIR->result->temp_name = item->temp_name;
}
else
{
// Create a new temp name.
sprintf(tempName,"t%d",curTempVar++);
currentIR->result->temp_name = tempName;
}
astTree rhsNodes = stmtNode->childNode->sisterNode;
astTree arithNode = rhsNodes->childNode;
IRItem finalNode = createIRForArithmeticExpression(arithNode);
}
}
void createIRForAssignmentStmtType2()
{
astTree stmtNode = currentASTNode->childNode;
if(stmtNode->childNode->sisterNode->ruleNum == 29)
{
// Size Expression.
astTree idNode = stmtNode->childNode->sisterNode->childNode->childNode; // ruleNum 34 ID.
currentIR->op = MOV;
token type = getTypeFromSymbolTable(idNode->data.token_data);
if(type == MAT)
{
// It is a matrix.
// Add two nodes containing the value of matrix lengths.
matrixSizes matrix = findMatrixInMatrixTable(idNode->data.token_data);
currentIR->lineNum = lineNum++;
currentIR->arg1 = malloc(sizeof(struct _IRItem));
currentIR->result = malloc(sizeof(struct _IRItem));
sprintf(currentIR->arg1->temp_name,"t%d",curTempVar++);
currentIR->arg1->value = matrix->rows;
currentIR->arg1->isSize = TRUE;
currentIR->arg1->jumpStmt = FALSE;
currentIR->arg1->entry = idNode->data.token_data;
astTree assignNode = stmtNode->childNode->childNode;
char tempName[3];
IRItem item = findTempNodeForID(assignNode->data.token_data);
if(item != NULL)
{
// The item already exists in the temp nodes.
currentIR->result->temp_name = item->temp_name;
}
else
{
// Need to create a new temp name.
sprintf(tempName,"t%d",curTempVar++);
currentIR->result->temp_name = tempName;
}
currentIR->result->entry = assignNode->data.token_data;
currentIR->result->isSize = FALSE;
currentIR->result->jumpStmt = FALSE;
currentIR->arg2 = NULL;
currentIR->nextEntry = malloc(sizeof(struct _IRTable));
// Column value.
currentIR = currentIR->nextEntry;
currentIR->arg1 = malloc(sizeof(struct _IRItem));
currentIR->result = malloc(sizeof(struct _IRItem));
sprintf(currentIR->arg1->temp_name,"%d",matrix->columns);
currentIR->arg1->isSize = TRUE;
currentIR->arg1->jumpStmt = FALSE;
currentIR->arg1->entry = idNode->data.token_data;
item = findTempNodeForID(assignNode->data.token_data);
if(item != NULL)
{
// The item already exists in the temp nodes.
currentIR->result->temp_name = item->temp_name;
}
else
{
// Need to create a new temp name.
sprintf(tempName,"t%d",curTempVar++);
currentIR->result->temp_name = tempName;
}
currentIR->result->entry = assignNode->data.token_data;
currentIR->result->isSize = FALSE;
currentIR->result->jumpStmt = FALSE;
currentIR->arg2 = NULL;
currentIR->nextEntry = malloc(sizeof(struct _IRTable));
currentIR = currentIR->nextEntry;
}
}
}
void createIRForNextStatement()
{
if(currentASTNode == NULL)
return;
if(currentASTNode->ruleNum == 6)
{
// It is a nullable.
// End of program. Stop.
currentASTNode = NULL;
return;
}
else
{
// More statements exist.
currentASTNode = currentASTNode->childNode->childNode;
return;
}
}
void createIRCode()
{
while(currentASTNode != NULL)
{
if(currentASTNode->ruleNum == 4)
{
// It is a function.
// That isn't allowed.
}
else
{
currentASTNode = currentASTNode->childNode;
switch(currentASTNode->ruleNum)
{
case 7: break; // declaration stmt.
case 8: createIRForAssignmentStmt();break;
case 9: createIRForAssignmentStmtType2();break;
case 10: createIRForIfStmt();break;
case 11: createIRForIOStmt();break; // ioStmt
case 12: break; // funCall stmt.
}
}
currentASTNode = currentASTNode->parentNode->sisterNode;
createIRForNextStatement();
}
}
int irGenerator(astTree astRoot, STList headList)
{
// No need to maintain scopes as there is only one true function.
initialiseIRTable();
stList = headList;
currentASTNode = astRoot->childNode->childNode;
createIRCode();
printf("IR code generated\n");
return 0;
}