-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdriver.cpp
636 lines (541 loc) · 24.7 KB
/
driver.cpp
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
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
#include "driver.hpp"
#include "parser.hpp"
// Generazione di un'istanza per ciascuna della classi LLVMContext,
// Module e IRBuilder. Nel caso di singolo modulo è sufficiente
LLVMContext *context = new LLVMContext;
Module *module = new Module("Kaleidoscope", *context);
IRBuilder<> *builder = new IRBuilder(*context);
Value *LogErrorV(const std::string Str) {
std::cerr << Str << std::endl;
return nullptr;
}
/* Il codice seguente sulle prime non è semplice da comprendere.
Esso definisce una utility (funzione C++) con due parametri:
1) la rappresentazione di una funzione llvm IR, e
2) il nome per un registro SSA
La chiamata di questa utility restituisce un'istruzione IR che alloca un double
in memoria e ne memorizza il puntatore in un registro SSA cui viene attribuito
il nome passato come secondo parametro. L'istruzione verrà scritta all'inizio
dell'entry block della funzione passata come primo parametro.
Si ricordi che le istruzioni sono generate da un builder. Per non
interferire con il builder globale, la generazione viene dunque effettuata
con un builder temporaneo TmpB
*/
static AllocaInst *CreateEntryBlockAlloca(Function *fun, StringRef VarName, Type* type=Type::getDoubleTy(*context)) {
IRBuilder<> TmpB(&fun->getEntryBlock(), fun->getEntryBlock().begin());
return TmpB.CreateAlloca(type, nullptr, VarName);
}
// Implementazione del costruttore della classe driver
driver::driver(): trace_parsing(false), trace_scanning(false) {};
// Implementazione del metodo parse
int driver::parse (const std::string &f) {
file = f; // File con il programma
location.initialize(&file); // Inizializzazione dell'oggetto location
scan_begin(); // Inizio scanning (ovvero apertura del file programma)
yy::parser parser(*this); // Istanziazione del parser
parser.set_debug_level(trace_parsing); // Livello di debug del parsed
int res = parser.parse(); // Chiamata dell'entry point del parser
scan_end(); // Fine scanning (ovvero chiusura del file programma)
return res;
}
// Implementazione del metodo codegen, che è una "semplice" chiamata del
// metodo omonimo presente nel nodo root (il puntatore root è stato scritto dal parser)
void driver::codegen() {
root->codegen(*this);
};
/************************* Sequence tree **************************/
SeqAST::SeqAST(RootAST* first, RootAST* continuation):
first(first), continuation(continuation) {};
// La generazione del codice per una sequenza è banale:
// mediante chiamate ricorsive viene generato il codice di first e
// poi quello di continuation (con gli opportuni controlli di "esistenza")
Value *SeqAST::codegen(driver& drv) {
if (first != nullptr) {
Value *f = first->codegen(drv);
} else {
if (continuation == nullptr) return nullptr;
}
Value *c = continuation->codegen(drv);
return nullptr;
};
/********************* Number Expression Tree *********************/
NumberExprAST::NumberExprAST(double Val): Val(Val) {};
lexval NumberExprAST::getLexVal() const {
// Non utilizzata, Inserita per continuità con versione precedente
lexval lval = Val;
return lval;
};
// Non viene generata un'struzione; soltanto una costante LLVM IR
// corrispondente al valore float memorizzato nel nodo
// La costante verrà utilizzata in altra parte del processo di generazione
// Si noti che l'uso del contesto garantisce l'unicità della costanti
Value *NumberExprAST::codegen(driver& drv) {
return ConstantFP::get(*context, APFloat(Val));
};
/******************** Variable Expression Tree ********************/
VariableExprAST::VariableExprAST(const std::string &Name, ExprAST* Expr, bool Isarray): Name(Name), Expr(Expr), Isarray(Isarray) {};
lexval VariableExprAST::getLexVal() const {
lexval lval = Name;
return lval;
};
// NamedValues è una tabella che ad ogni variabile (che, in Kaleidoscope1.0,
// può essere solo un parametro di funzione) associa non un valore bensì
// la rappresentazione di una funzione che alloca memoria e restituisce in un
// registro SSA il puntatore alla memoria allocata. Generare il codice corrispondente
// ad una varibile equivale dunque a recuperare il tipo della variabile
// allocata e il nome del registro e generare una corrispondente istruzione di load
// Negli argomenti della CreateLoad ritroviamo quindi: (1) il tipo allocato, (2) il registro
// SSA in cui è stato messo il puntatore alla memoria allocata (si ricordi che A è
// l'istruzione ma è anche il registro, vista la corrispodenza 1-1 fra le due nozioni), (3)
// il nome del registro in cui verrà trasferito il valore dalla memoria
Value *VariableExprAST::codegen(driver& drv) {
AllocaInst *A = drv.NamedValues[Name];
if (!A){
GlobalVariable* globVar = module->getNamedGlobal(Name);
if (!globVar) //se non è ne globale ne locale...
return LogErrorV("Variabile non definita: "+Name);
if(Isarray){ //se è array ed è globale
Value *exprindex= Expr->codegen(drv);
if(!exprindex) return nullptr;
Value *floatIndex = builder->CreateFPTrunc(exprindex, Type::getFloatTy(*context));
Value *intIndex = builder->CreateFPToSI(floatIndex, Type::getInt32Ty(*context));
Value* Cell= builder->CreateInBoundsGEP(globVar->getValueType(),globVar,intIndex);
return builder->CreateLoad(Type::getDoubleTy(*context),Cell,Name.c_str());
}
return builder->CreateLoad(globVar->getValueType(), globVar, Name.c_str());
}
if(Isarray){ //se è array ed è locale
Value *exprindex= Expr->codegen(drv);
if(!exprindex) return nullptr;
Value *floatIndex = builder->CreateFPTrunc(exprindex, Type::getFloatTy(*context));
Value *intIndex = builder->CreateFPToSI(floatIndex, Type::getInt32Ty(*context));
Value* Cell= builder->CreateInBoundsGEP(A->getAllocatedType(),A,intIndex);
return builder->CreateLoad(Type::getDoubleTy(*context),Cell,Name.c_str());
}
return builder->CreateLoad(A->getAllocatedType(), A, Name.c_str());
}
/******************** Binary Expression Tree **********************/
BinaryExprAST::BinaryExprAST(char Op, ExprAST* LHS, ExprAST* RHS):
Op(Op), LHS(LHS), RHS(RHS) {};
// La generazione del codice in questo caso è di facile comprensione.
// Vengono ricorsivamente generati il codice per il primo e quello per il secondo
// operando. Con i valori memorizzati in altrettanti registri SSA si
// costruisce l'istruzione utilizzando l'opportuno operatore
Value *BinaryExprAST::codegen(driver& drv) {
//"intercetto" l'eventuale singolo valore per fare la not
if(Op=='n'){
return builder->CreateNot(RHS->codegen(drv));
}
Value *L = LHS->codegen(drv);
Value *R = RHS->codegen(drv);
if (!L || !R)
return nullptr;
switch (Op) {
case '+':
return builder->CreateFAdd(L,R,"addres");
case '-':
return builder->CreateFSub(L,R,"subres");
case '*':
return builder->CreateFMul(L,R,"mulres");
case '/':
return builder->CreateFDiv(L,R,"addres");
case '<':
return builder->CreateFCmpULT(L,R,"lttest");
case '=':
return builder->CreateFCmpUEQ(L,R,"eqtest");
case 'a':
return builder->CreateLogicalAnd(L,R,"andop");
case 'o':
return builder->CreateLogicalOr(L,R,"orop");
default:
std::cout << Op << std::endl;
return LogErrorV("Operatore binario non supportato");
}
};
/********************* Call Expression Tree ***********************/
/* Call Expression Tree */
CallExprAST::CallExprAST(std::string Callee, std::vector<ExprAST*> Args):
Callee(Callee), Args(std::move(Args)) {};
lexval CallExprAST::getLexVal() const {
lexval lval = Callee;
return lval;
};
Value* CallExprAST::codegen(driver& drv) {
// La generazione del codice corrispondente ad una chiamata di funzione
// inizia cercando nel modulo corrente (l'unico, nel nostro caso) una funzione
// il cui nome coincide con il nome memorizzato nel nodo dell'AST
// Se la funzione non viene trovata (e dunque non è stata precedentemente definita)
// viene generato un errore
Function *CalleeF = module->getFunction(Callee);
if (!CalleeF)
return LogErrorV("Funzione non definita");
// Il secondo controllo è che la funzione recuperata abbia tanti parametri
// quanti sono gi argomenti previsti nel nodo AST
if (CalleeF->arg_size() != Args.size())
return LogErrorV("Numero di argomenti non corretto");
// Passato con successo anche il secondo controllo, viene predisposta
// ricorsivamente la valutazione degli argomenti presenti nella chiamata
// (si ricordi che gli argomenti possono essere espressioni arbitarie)
// I risultati delle valutazioni degli argomenti (registri SSA, come sempre)
// vengono inseriti in un vettore, dove "se li aspetta" il metodo CreateCall
// del builder, che viene chiamato subito dopo per la generazione dell'istruzione
// IR di chiamata
std::vector<Value *> ArgsV;
for (auto arg : Args) {
ArgsV.push_back(arg->codegen(drv));
if (!ArgsV.back())
return nullptr;
}
return builder->CreateCall(CalleeF, ArgsV, "calltmp");
}
/************************* IF expression *************************/
IfExprAST::IfExprAST(ExprAST* cond, ExprAST* trueexp, ExprAST* falseexp) :
cond(cond), trueexp(trueexp), falseexp(falseexp) {};
Value* IfExprAST::codegen(driver& drv){
Value* CondV = cond->codegen(drv);
if (!CondV) return nullptr;
Function *fun = builder->GetInsertBlock()->getParent();
BasicBlock *TrueBB = BasicBlock::Create(*context, "trueblock",fun);
/*
* Non può stare dietro al blocco true perchè non abbiamo ancora creato il body
* del blocco true, nel quale in cui non sappiamo ancora cosa succede.
* Allora creiamo un blocco senza dargli un riferimento dove metterlo.
*/
BasicBlock *FalseBB = BasicBlock::Create(*context, "falseblock");
BasicBlock *MergeBB = BasicBlock::Create(*context, "mergeblock");
/*
* Creazione dell'istruzione di branch nel caso di condizione vera e falsa
*/
builder->CreateCondBr(CondV, TrueBB, FalseBB);
/*
* Per generare il body della condizione true, devo settare il builder per scrivere nel blocco
* di True, poi abbiamo generato il codice per il blocco true
*/
builder->SetInsertPoint(TrueBB);
Value* trueV = trueexp->codegen(drv);
if(!trueV) return nullptr;
/**
* A questo punto possiamo mettere il branch al merge.
* il merge block abbiamo questa istruzione phi
* Se il blocco true non si è ulteriormente spezzato, rimango lì e non fa nulla
* se invece si è spezzato, devo inserire il salto dall'ultimo blocco per inserirla nel phi.
*/
TrueBB = builder->GetInsertBlock();
builder->CreateBr(MergeBB);
fun->insert(fun->end(), FalseBB);
// false expr
builder->SetInsertPoint(FalseBB);
Value* falseV = falseexp->codegen(drv);
if(!falseV) return nullptr;
FalseBB = builder->GetInsertBlock();
builder->CreateBr(MergeBB);
fun->insert(fun->end(),MergeBB);
builder->SetInsertPoint(MergeBB);
PHINode *P = builder->CreatePHI(Type::getDoubleTy(*context),2);
P-> addIncoming(trueV, TrueBB);
P-> addIncoming(falseV, FalseBB);
return P;
};
/************************* Block Tree *************************/
BlockAST::BlockAST(std::vector<InitAST*> Def,std::vector<StmtAST*> Stmts):
Def(std::move(Def)), Stmts(std::move(Stmts)) {};
BlockAST::BlockAST(std::vector<StmtAST*> Stmts):
Stmts(std::move(Stmts)) {};
Value* BlockAST::codegen(driver& drv){
// vettore per il salvataggio della symbol table
std::vector<AllocaInst*> tmp;
for (int i=0; i<Def.size();i++ ){
AllocaInst *boundval = (AllocaInst*) Def[i]->codegen(drv);
if (!boundval) return nullptr;
//salvo il vecchio valore della varaiabile oscurata.
tmp.push_back(drv.NamedValues[Def[i]->getName()]);
drv.NamedValues[Def[i]->getName()] = boundval;
}
Value* blockvalue;
for(int i=0; i<Stmts.size(); i++){
blockvalue = Stmts[i]->codegen(drv);
if(!blockvalue) return nullptr;
}
for (int i=0; i<Def.size();i++ )
drv.NamedValues[Def[i]->getName()] = tmp[i]; //rimetto i valori originali della symb
return blockvalue;
};
/************************* InitAST *************************/
std::string& InitAST::getName() {return Name;};
initType InitAST::getType() {return INIT;};
/************************* VarBindingAST *************************/
VarBindingsAST::VarBindingsAST(std::string Name, ExprAST* Val) : Name(Name), Val(Val) {};
std::string& VarBindingsAST::getName(){ return Name; };
initType VarBindingsAST::getType() {return BINDING;};
AllocaInst* VarBindingsAST::codegen(driver& drv) {
Function *fun = builder->GetInsertBlock()->getParent();
Value* boundval;
if (Val)
boundval = Val->codegen(drv);
else{
NumberExprAST* defaultVal = new NumberExprAST(0.0);
boundval = defaultVal->codegen(drv);
}
AllocaInst* Alloca = CreateEntryBlockAlloca(fun,Name);
builder->CreateStore(boundval,Alloca);
return Alloca;
};
/************************* ArrayBindingAST *************************/
ArrayBindingAST::ArrayBindingAST(std::string Name, double Size, std::vector<ExprAST*> Values):
Name(Name), Size(Size), Values(std::move(Values)) {};
initType ArrayBindingAST::getType(){ return BINDING; };
std::string& ArrayBindingAST::getName(){ return Name; };
AllocaInst* ArrayBindingAST::codegen(driver& drv){
Function *fun = builder->GetInsertBlock()->getParent();
ArrayType *AT = ArrayType::get(Type::getDoubleTy(*context),Size);
AllocaInst* Alloca = CreateEntryBlockAlloca(fun,Name,AT);
Value* actVal;
for(int i=0; i<Size;i++){
actVal=builder->CreateInBoundsGEP(AT,Alloca,ConstantInt::get(*context,APInt(32, i,true)));
if(!actVal) return nullptr;
if(Values.size()){
builder->CreateStore(Values[i]->codegen(drv),actVal);
}
else{ //se non è definita la lista di elementi, inizializzo tutte le celle a 0
builder->CreateStore(ConstantFP::getNullValue(Type::getDoubleTy(*context)),actVal);
}
}
return Alloca;
}
/************************* AssignmentExprAST *************************/
AssignmentExprAST::AssignmentExprAST(std::string Name, ExprAST* Val,ExprAST* index, bool Isarray) : Name(Name), Val(Val), index(index), Isarray(Isarray) {};
std::string& AssignmentExprAST::getName(){ return Name; };
initType AssignmentExprAST::getType() {return ASSIGNMENT;};
Value* AssignmentExprAST::codegen(driver& drv) {
AllocaInst *Variable = drv.NamedValues[Name];
Value* boundval = Val->codegen(drv);
if(!boundval) return nullptr;
if (!Variable){ //variabile non locale
GlobalVariable* globVar = module->getNamedGlobal(Name);
if(!globVar) return nullptr; //var non definita
if(Isarray){ //se è array ed è globale
Value *exprindex= index->codegen(drv);
if(!exprindex) return nullptr;
Value *floatIndex = builder->CreateFPTrunc(exprindex, Type::getFloatTy(*context));
Value *intIndex = builder->CreateFPToSI(floatIndex, Type::getInt32Ty(*context));
Value* Cell= builder->CreateInBoundsGEP(globVar->getValueType(),globVar,intIndex);
builder->CreateStore(boundval,Cell);
return boundval;
}
builder->CreateStore(boundval,globVar);
return boundval;
}
if(Isarray){ //se è array ed è locale
Value *exprindex= index->codegen(drv);
if(!exprindex) return nullptr;
Value *floatIndex = builder->CreateFPTrunc(exprindex, Type::getFloatTy(*context));
Value *intIndex = builder->CreateFPToSI(floatIndex, Type::getInt32Ty(*context));
Value* Cell= builder->CreateInBoundsGEP(Variable->getAllocatedType(),Variable,intIndex);
builder->CreateStore(boundval,Cell);
return boundval;
}
builder->CreateStore(boundval,Variable);
return boundval;
};
/************************* GlobalVariableAST *************************/
GlobalVariableAST::GlobalVariableAST(std::string Name,double Size, bool Isarray) : Name(Name), Isarray(Isarray), Size(Size) {}
std::string& GlobalVariableAST::getName(){ return Name; };
Value* GlobalVariableAST::codegen(driver &drv){
GlobalVariable *globVar;
if(!Isarray){
globVar = new GlobalVariable(*module, Type::getDoubleTy(*context), false, GlobalValue::CommonLinkage, ConstantFP::getNullValue(Type::getDoubleTy(*context)), Name);
}
else if(Isarray){
ArrayType *AT= ArrayType::get(Type::getDoubleTy(*context),Size);
globVar = new GlobalVariable(*module, AT, false, GlobalValue::CommonLinkage, ConstantFP::getNullValue(AT), Name);
}
globVar->print(errs());
fprintf(stderr, "\n");
return globVar;
}
/************************* IF BLOCK *************************/
IfStmtAST::IfStmtAST(ExprAST* cond, StmtAST* trueblock, StmtAST* falseblock):
cond(cond), trueblock(trueblock), falseblock(falseblock) {};
IfStmtAST::IfStmtAST(ExprAST* cond, StmtAST* trueblock):
cond(cond), trueblock(trueblock) {};
Value* IfStmtAST::codegen(driver& drv){
Value* CondV = cond->codegen(drv);
if (!CondV) return nullptr;
Function *fun = builder->GetInsertBlock()->getParent();
BasicBlock *TrueBB = BasicBlock::Create(*context, "trueblock",fun);
BasicBlock *FalseBB = BasicBlock::Create(*context, "falseblock");
BasicBlock *MergeBB = BasicBlock::Create(*context, "mergeblock");
builder->CreateCondBr(CondV, TrueBB, FalseBB);
builder->SetInsertPoint(TrueBB);
Value* trueV = trueblock->codegen(drv);
if(!trueV) return nullptr;
TrueBB = builder->GetInsertBlock();
builder->CreateBr(MergeBB);
builder->SetInsertPoint(FalseBB);
Value* falseV;
fun->insert(fun->end(), FalseBB);
builder->SetInsertPoint(FalseBB);
if(falseblock){
falseV = falseblock->codegen(drv);
if(!falseV) return nullptr;
FalseBB = builder->GetInsertBlock();
}
builder->CreateBr(MergeBB);
fun->insert(fun->end(),MergeBB);
builder->SetInsertPoint(MergeBB);
PHINode *P = builder->CreatePHI(Type::getDoubleTy(*context),2);
P-> addIncoming(ConstantFP::getNullValue(Type::getDoubleTy(*context)), TrueBB);
P-> addIncoming(ConstantFP::getNullValue(Type::getDoubleTy(*context)), FalseBB);
return P;
};
/************************* FOR BLOCK *************************/
ForStmtAST::ForStmtAST(InitAST* init, ExprAST* cond, AssignmentExprAST* step, StmtAST* body):
init(init), cond(cond), step(step), body(body) {};
Value* ForStmtAST::codegen(driver& drv) {
Function *fun = builder->GetInsertBlock()->getParent();
BasicBlock *InitBB = BasicBlock::Create(*context, "init",fun);
builder->CreateBr(InitBB);
//inizializzazione
BasicBlock *CondBB = BasicBlock::Create(*context, "cond",fun);
BasicBlock *LoopBB = BasicBlock::Create(*context, "loop",fun);
BasicBlock *EndLoop = BasicBlock::Create(*context, "endloop",fun);
builder->SetInsertPoint(InitBB);
std::string varName = init->getName();
AllocaInst* oldVar;
Value* initVal = init->codegen(drv);;
if (!initVal) return nullptr;
//controllo se sono assigment -> il getType mi restituisce ASSIGMENT o BINDING
if (init->getType() == BINDING){
oldVar = drv.NamedValues[varName];
drv.NamedValues[varName] = (AllocaInst*) initVal;
}
builder->CreateBr(CondBB);
//valutazione condizione
builder->SetInsertPoint(CondBB);
Value *condVal = cond->codegen(drv);
if(!condVal) return nullptr;
builder->CreateCondBr(condVal, LoopBB, EndLoop);
//body
builder->SetInsertPoint(LoopBB);
Value *bodyVal = body->codegen(drv);
if(!bodyVal) return nullptr;
//step
Value* stepVal = step->codegen(drv);
if(!stepVal) return nullptr;
//br incondizionato all'inizio del loop
builder->CreateBr(CondBB);
//End loop
builder->SetInsertPoint(EndLoop);
PHINode *P = builder->CreatePHI(Type::getDoubleTy(*context),1);
P->addIncoming(ConstantFP::getNullValue(Type::getDoubleTy(*context)),CondBB);
if(init->getType() == BINDING){
drv.NamedValues[varName] = oldVar; //rimetto i valori originali della symb
}
return P;
};
/************************* Prototype Tree *************************/
PrototypeAST::PrototypeAST(std::string Name, std::vector<std::string> Args):
Name(Name), Args(std::move(Args)), emitcode(true) {}; //Di regola il codice viene emesso
lexval PrototypeAST::getLexVal() const {
lexval lval = Name;
return lval;
};
const std::vector<std::string>& PrototypeAST::getArgs() const {
return Args;
};
// Previene la doppia emissione del codice. Si veda il commento più avanti.
void PrototypeAST::noemit() {
emitcode = false;
};
Function *PrototypeAST::codegen(driver& drv) {
// Costruisce una struttura, qui chiamata FT, che rappresenta il "tipo" di una
// funzione. Con ciò si intende a sua volta una coppia composta dal tipo
// del risultato (valore di ritorno) e da un vettore che contiene il tipo di tutti
// i parametri. Si ricordi, tuttavia, che nel nostro caso l'unico tipo è double.
// Prima definiamo il vettore (qui chiamato Doubles) con il tipo degli argomenti
std::vector<Type*> Doubles(Args.size(), Type::getDoubleTy(*context));
// Quindi definiamo il tipo (FT) della funzione
FunctionType *FT = FunctionType::get(Type::getDoubleTy(*context), Doubles, false);
// Infine definiamo una funzione (al momento senza body) del tipo creato e con il nome
// presente nel nodo AST. ExternalLinkage vuol dire che la funzione può avere
// visibilità anche al di fuori del modulo
Function *F = Function::Create(FT, Function::ExternalLinkage, Name, *module);
// Ad ogni parametro della funzione F (che, è bene ricordare, è la rappresentazione
// llvm di una funzione, non è una funzione C++) attribuiamo ora il nome specificato dal
// programmatore e presente nel nodo AST relativo al prototipo
unsigned Idx = 0;
for (auto &Arg : F->args())
Arg.setName(Args[Idx++]);
/* Abbiamo completato la creazione del codice del prototipo.
Il codice può quindi essere emesso, ma solo se esso corrisponde
ad una dichiarazione extern. Se invece il prototipo fa parte
della definizione "completa" di una funzione (prototipo+body) allora
l'emissione viene fatta al momendo dell'emissione della funzione.
In caso contrario nel codice si avrebbe sia una dichiarazione
(come nel caso di funzione esterna) sia una definizione della stessa
funzione.
*/
if (emitcode) {
F->print(errs());
fprintf(stderr, "\n");
};
return F;
}
/************************* Function Tree **************************/
FunctionAST::FunctionAST(PrototypeAST* Proto, ExprAST* Body): Proto(Proto), Body(Body) {};
Function *FunctionAST::codegen(driver& drv) {
// Verifica che la funzione non sia già presente nel modulo, cioò che non
// si tenti una "doppia definizion"
Function *function =
module->getFunction(std::get<std::string>(Proto->getLexVal()));
// Se la funzione non è già presente, si prova a definirla, innanzitutto
// generando (ma non emettendo) il codice del prototipo
if (!function)
function = Proto->codegen(drv);
else
return nullptr;
// Se, per qualche ragione, la definizione "fallisce" si restituisce nullptr
if (!function)
return nullptr;
// Altrimenti si crea un blocco di base in cui iniziare a inserire il codice
BasicBlock *BB = BasicBlock::Create(*context, "entry", function);
builder->SetInsertPoint(BB);
// Ora viene la parte "più delicata". Per ogni parametro formale della
// funzione, nella symbol table si registra una coppia in cui la chiave
// è il nome del parametro mentre il valore è un'istruzione alloca, generata
// invocando l'utility CreateEntryBlockAlloca già commentata.
// Vale comunque la pena ricordare: l'istruzione di allocazione riserva
// spazio in memoria (nel nostro caso per un double) e scrive l'indirizzo
// in un registro SSA
// Il builder crea poi un'istruzione che memorizza il valore del parametro x
// (al momento contenuto nel registro SSA %x) nell'area di memoria allocata.
// Si noti che il builder conosce il registro che contiene il puntatore all'area
// perché esso è parte della rappresentazione C++ dell'istruzione di allocazione
// (variabile Alloca)
for (auto &Arg : function->args()) {
// Genera l'istruzione di allocazione per il parametro corrente
AllocaInst *Alloca = CreateEntryBlockAlloca(function, Arg.getName());
// Genera un'istruzione per la memorizzazione del parametro nell'area
// di memoria allocata
builder->CreateStore(&Arg, Alloca);
// Registra gli argomenti nella symbol table per eventuale riferimento futuro
drv.NamedValues[std::string(Arg.getName())] = Alloca;
}
// Ora può essere generato il codice corssipondente al body (che potrà
// fare riferimento alla symbol table)
if (Value *RetVal = Body->codegen(drv)) {
// Se la generazione termina senza errori, ciò che rimane da fare è
// di generare l'istruzione return, che ("a tempo di esecuzione") prenderà
// il valore lasciato nel registro RetVal
builder->CreateRet(RetVal);
// Effettua la validazione del codice e un controllo di consistenza
verifyFunction(*function);
// Emissione del codice su su stderr)
function->print(errs());
fprintf(stderr, "\n");
return function;
}
// Errore nella definizione. La funzione viene rimossa
function->eraseFromParent();
return nullptr;
};