-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathValidTypes.hpp
More file actions
428 lines (368 loc) · 9 KB
/
ValidTypes.hpp
File metadata and controls
428 lines (368 loc) · 9 KB
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
#ifndef VALIDTYPES_HPP_
#define VALIDTYPES_HPP_
#include <string.h>
#include <iostream>
#include <memory>
#include <assert.h>
#include "llvm/ADT/APFloat.h"
#include "llvm/ADT/STLExtras.h"
#include "llvm/IR/BasicBlock.h"
#include "llvm/IR/Constants.h"
#include "llvm/IR/DerivedTypes.h"
#include "llvm/IR/Function.h"
#include "llvm/IR/IRBuilder.h"
#include "llvm/IR/LLVMContext.h"
#include "llvm/IR/Module.h"
#include "llvm/IR/Type.h"
#include "llvm/IR/Verifier.h"
#include "llvm/IR/GlobalVariable.h"
#include "LLVMGlobals.hpp"
using std::cout;
using std::endl;
using std::string;
using std::unique_ptr;
enum ControlTypes {
EmptyControl,
If,
IfElse,
While,
Return
};
enum BinaryOperationTypes {
EmptyBinaryOperation,
Assign,
Cast,
Multiply,
Divide,
Add,
Subtract,
Equality,
LessThan,
GreaterThan,
Land,
Lor,
};
enum LiteralTypes {
EmptyLiteral,
StringLiteral,
IntLiteral,
FloatLiteral,
BooleanLiteral
};
enum VariableTypes {
EmptyVarType,
IntVarType,
CintVarType,
StringVarType,
FloatVarType,
BooleanVarType,
RefVarType,
VoidVarType,
};
enum UnaryOperationTypes {
EmptyUnaryOperation,
Not,
Minus
};
struct ValidType {
VariableTypes varType_;
ValidType * referredType_ = nullptr;
ValidType() : varType_(EmptyVarType) {}
ValidType(VariableTypes varType) : varType_(varType) {}
ValidType(VariableTypes varType, ValidType * referredType) :
varType_(varType), referredType_(referredType) {}
virtual ~ValidType() {}
virtual string
GetName() = 0;
virtual llvm::Type *
GetLLVMType() = 0;
virtual VariableTypes
GetVarType() {
return this->varType_;
}
static VariableTypes
ConvertLiteralToVariableType(LiteralTypes in) {
switch (in) {
case EmptyLiteral: return EmptyVarType;
case StringLiteral: return StringVarType;
case IntLiteral: return IntVarType;
case FloatLiteral: return FloatVarType;
case BooleanLiteral: return BooleanVarType;
}
return EmptyVarType;
}
static llvm::Type *
ConvertVariableTypeToLLVMType(VariableTypes in) {
switch (in) {
case EmptyVarType: return nullptr;
case IntVarType: return llvm::Type::getInt32Ty(GlobalContext);
case CintVarType: return llvm::Type::getInt32Ty(GlobalContext);
case StringVarType: return nullptr;
case FloatVarType: return llvm::Type::getFloatTy(GlobalContext);
case BooleanVarType: return llvm::Type::getInt1Ty(GlobalContext);
case RefVarType: return nullptr;
case VoidVarType: return llvm::Type::getVoidTy(GlobalContext);
}
return nullptr;
}
llvm::AllocaInst *
CreateEntryBlockAlloca(llvm::Function * function, const string &varName) {
llvm::IRBuilder<> temp(&function->getEntryBlock(),
function->getEntryBlock().begin());
return temp.CreateAlloca(this->GetLLVMType(), nullptr, varName);
return nullptr;
}
static bool
IsValidBinaryOp(ValidType * validTypeL, ValidType * validTypeR) {
if (validTypeL==nullptr || validTypeR==nullptr) {
return false;
}
VariableTypes l = validTypeL->varType_;
VariableTypes r = validTypeR->varType_;
if (l==RefVarType) {
l = validTypeL->referredType_->varType_;
}
if (r==RefVarType) {
r = validTypeR->referredType_->varType_;
}
if (l!=r) {
return false;
} else if (
l==VoidVarType ||
l==StringVarType ||
l==EmptyVarType ||
l==BooleanVarType) {
return false;
}
return true;
}
static bool
IsNumericType(ValidType * type) {
return (type!=nullptr &&
(type->varType_==FloatVarType ||
type->varType_==IntVarType ||
type->varType_==CintVarType));
}
static bool
IsValidCast(ValidType * castTo, ValidType * castFrom) {
if (castTo==nullptr || castFrom==nullptr) {
return false;
} else if (castTo->varType_==BooleanVarType && castTo->varType_==BooleanVarType) {
return true;
} else if (!IsNumericType(castTo) || !IsNumericType(castTo)) {
return false;
}
return true;
}
static ValidType *
GetUnderlyingType(ValidType * in) {
assert(in);
if (in==nullptr) return nullptr;
if (in->varType_==RefVarType) {
return in->referredType_;
}
return in;
}
};
struct IntType : public ValidType {
IntType() : ValidType(IntVarType) {}
string
GetName() {
return string("int");
}
llvm::Type *
GetLLVMType() {
return llvm::Type::getInt32Ty(GlobalContext);
}
};
struct FloatType : public ValidType {
FloatType() : ValidType(FloatVarType) {}
string
GetName() {
return string("float");
}
llvm::Type *
GetLLVMType() {
return llvm::Type::getFloatTy(GlobalContext);
}
};
struct CintType : public ValidType {
CintType() : ValidType(CintVarType) {}
string
GetName() {
return string("cint");
}
llvm::Type *
GetLLVMType() {
return llvm::Type::getInt32Ty(GlobalContext);
}
};
struct BoolType : public ValidType {
BoolType() : ValidType(BooleanVarType) {}
string
GetName() {
return string("bool");
}
llvm::Type *
GetLLVMType() {
return llvm::Type::getInt1Ty(GlobalContext);
}
};
struct VoidType : public ValidType {
VoidType() : ValidType(VoidVarType) {}
string
GetName() {
return string("void");
}
llvm::Type *
GetLLVMType() {
return llvm::Type::getVoidTy(GlobalContext);
}
};
struct RefType : public ValidType {
bool noAlias_ = false;
bool invalidConstructor_ = false;
RefType() : ValidType(RefVarType) {}
RefType(bool noAlias, ValidType * referredType) :
ValidType(RefVarType, referredType), noAlias_(noAlias) {
// Check: a ref type may not contain a 'ref' or 'void' type.
this->invalidConstructor_ = referredType->varType_ == RefVarType ||
referredType->varType_ == VoidVarType;
}
~RefType() {
if (this->referredType_ != nullptr) {
delete this->referredType_;
}
}
string
GetName() {
if (noAlias_) {
return string("noalias ref ") + this->referredType_->GetName();
// To avoid seg fault when "ref ref"
}else if(this->referredType_ == nullptr){
return string("ref");
}else{
return string("ref ") + this->referredType_->GetName();
}
}
llvm::Type *
GetLLVMType() {
llvm::Type * ret = nullptr;
switch (this->referredType_->varType_) {
case IntVarType:
ret = llvm::Type::getInt32PtrTy(GlobalContext, 0);
break;
case CintVarType:
ret = llvm::Type::getInt32PtrTy(GlobalContext, 0);
break;
case StringVarType:
break;
case FloatVarType:
ret = llvm::Type::getFloatPtrTy(GlobalContext, 0);
break;
case BooleanVarType:
ret = llvm::Type::getInt1PtrTy(GlobalContext, 0);
break;
case VoidVarType:
break;
case EmptyVarType:
break;
case RefVarType:
break;
}
return ret;
}
};
struct ControlFlow {
ControlTypes controlType_;
ControlFlow(): controlType_(EmptyControl) {}
ControlFlow(ControlTypes controlType): controlType_(controlType) {}
};
struct IfControl: ControlFlow {
IfControl() : ControlFlow(If) {}
};
struct ElseControl : ControlFlow {
ElseControl() : ControlFlow(IfElse) {}
};
struct WhileControl : ControlFlow {
WhileControl() : ControlFlow(While) {}
};
struct ReturnControl : ControlFlow {
ReturnControl() : ControlFlow(Return) {}
};
struct LiteralValue {
int iValue_;
float fValue_;
string sValue_;
bool bValue_;
};
struct Literal {
LiteralTypes type_ = EmptyLiteral;
string name_;
unique_ptr<LiteralValue> value_;
Literal(int value) : type_(IntLiteral),
name_("ilit"),
value_(new LiteralValue()) {
this->value_->iValue_ = value;
}
Literal(float value) : type_(FloatLiteral),
name_("flit"),
value_(new LiteralValue()) {
this->value_->fValue_ = value;
}
Literal(string value) : type_(StringLiteral),
name_("slit"),
value_(new LiteralValue()) {
this->value_->sValue_ = value;
}
Literal(bool value) : type_(BooleanLiteral),
name_("blit"),
value_(new LiteralValue()) {
this->value_->bValue_ = value;
}
static ValidType *
ConvertToValidType(Literal * in) {
switch (in->type_) {
case EmptyLiteral: return nullptr;
case StringLiteral: return nullptr;
case IntLiteral: return new IntType();
case FloatLiteral: return new FloatType();
case BooleanLiteral: return new BoolType();
}
return nullptr;
}
string
GetName() {
return this->name_;
}
unique_ptr<LiteralValue>&
GetValue() {
return this->value_;
}
};
struct Function {};
struct PrintFunction : Function {
// Borrowed from link below with a little massage
// https://github.com/HongxuChen/snippets_llvm/blob/master/include/LLUtils.hh
static llvm::Constant *
Geti8LLVMValueFromStr(char const * formatStr) {
llvm::Constant * formatStrConstant =
llvm::ConstantDataArray::getString(GlobalContext, formatStr);
llvm::GlobalVariable * formatStrGV =
new llvm::GlobalVariable(*GlobalModule,
formatStrConstant->getType(), true,
llvm::GlobalValue::InternalLinkage,
formatStrConstant);
llvm::Constant * zero = llvm::Constant::getNullValue(
llvm::IntegerType::getInt32Ty(GlobalContext));
llvm::Constant * indices[] = {zero, zero};
llvm::Constant * strVal = llvm::ConstantExpr::
getGetElementPtr(formatStrConstant->getType(),
formatStrGV, indices, true);
return strVal;
}
};
struct RunFunction : Function {};
struct DefFunction : Function {};
struct ExternFunction : Function {};
#endif