-
Notifications
You must be signed in to change notification settings - Fork 0
/
StaticChecker.cpp
514 lines (429 loc) · 12.3 KB
/
StaticChecker.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
#include "StaticChecker.h"
#include "Package.h"
#include "Class.h"
#include "Variable.h"
#include "Function.h"
#include "NameLookup.h"
#include "TypeLookup.h"
#include "Statement.h"
#include "AllExprs.h"
#include "TypeConversion.h"
#include "ClassType.h"
#include "Local.h"
namespace SS {
StaticChecker::StaticChecker(Package* pkg) : m_pkg(pkg)
{
SSAssert(pkg != 0);
}
bool StaticChecker::Check()
{
Package* pkg = m_pkg;
// Check the package name
if(!IsValidName(pkg->GetName()))
{
ReportError("Invalid package name: %s", SS_QUOTE(pkg->GetName()));
return false;
}
// TODO: Load up other packages.
// Watch out for duplicate package names, package names aliasing/referencing current package,
// infinite recursion (maybe not possible)
// Check all classes for name conflicts, add them to member list if they pass.
for(int i = 0; i < pkg->GetClassCount(); ++i)
{
Class* cls = pkg->GetClass(i);
if(!CheckChild(pkg, cls))
continue;
if(cls->GetAccess() == ACCESS_PUBLIC)
cls->SetAccessDomain(AccessDomain::Universal());
else if(cls->GetAccess() == ACCESS_PRIVATE)
cls->SetAccessDomain(AccessDomain::Lexical(pkg));
else
SS_UNREACHABLE;
cls->SetParent(m_pkg);
cls->SetPackage(m_pkg);
pkg->GetScope()->Add(cls);
}
// Quit if we hit any errors.
if(AnyErrors())
return false;
// Resolve all bases for classes.
for(int i = 0; i < pkg->GetClassCount(); ++i)
ResolveClassBase(pkg->GetClass(i));
// Quit if we hit any errors.
if(AnyErrors())
return false;
// At this point all classes have their bases set up properly,
// and they're known not to have cycles.
// Now we have to process all of the members of each class, starting with
// the base classes and moving upwards...
for(int i = 0; i < pkg->GetClassCount(); ++i)
ProcessClassMembersRecursive(pkg->GetClass(i));
if(AnyErrors())
return false;
// TODO: Somewhere in here we need to work out overloading, function overriding, etc.
// Classes and their vars, functions, and inheritance have been worked out;
// now we need to go through statements & expressions.
for(int i = 0; i < pkg->GetClassCount(); ++i)
{
Class* cls = pkg->GetClass(i);
for(int j=0; j < cls->GetFunctionCount(); ++j)
CheckFunctionBody(cls->GetFunction(j));
}
if(AnyErrors())
return false;
return true;
}
void StaticChecker::ResolveClassBase(Class* cls)
{
if(cls->GetBaseExpr() == 0)
{
// TODO: Set object as base class if there's no base expr
return;
}
// This will do error messages itself
Type* typ = TypeLookup::LookupType(cls->GetBaseExpr(), m_pkg);
if(!typ)
return;
// Check that it is a class.
// TODO: Allow "object" as a base class!
if(!typ->IsA<ClassType>())
{
ReportError(cls, "Base must be another class");
return;
}
// Check that we are not setting up a cycle
// (e.g., make sure that cls is not in type's bases)
Class* baseClass = dynamic_cast<ClassType*>(typ)->GetClass();
Class* currBase = baseClass;
while(currBase != 0)
{
if(currBase == cls)
{
ReportError(cls, "Inheritance cycle!");
return;
}
currBase = currBase->GetBase();
}
cls->SetBase(baseClass);
}
void StaticChecker::ProcessClassMembersRecursive(Class* cls)
{
SSAssert(cls != 0);
// TODO: Don't want to process classes from a different package!
SSAssert(cls->GetPackage() != 0);
if(cls->GetPackage() != m_pkg)
return;
// If we're already processed, quit.
if(cls->IsProcessed())
return;
// If we have a base class, make sure its members are processed first!
if(cls->GetBase() != 0 && cls->GetBase()->GetPackage() == m_pkg)
{
ProcessClassMembersRecursive(cls->GetBase());
// If processing it failed, quit.
if(cls->GetBase()->Failed())
{
cls->SetFailed(true);
return;
}
}
if(!ProcessClassMembers(cls))
{
cls->SetFailed(true);
cls->SetProcessed(true);
return;
}
else
cls->SetProcessed(true);
}
bool StaticChecker::ProcessClassMembers(Class* cls)
{
bool errors = false;
// Here, all global types are known, but the members of classes are not.
// We need to go through & make sure they are all semantically OK,
// as far as names, types, flags, etc.
// Processing the init exprs. for vars and the bodies of functions is more complicated
// and will come later.
// TODO: Shadowing checks for stuff
for(int i = 0; i < cls->GetVariableCount(); ++i)
{
Variable* var = cls->GetVariable(i);
if(!CheckChild(cls, var))
{
errors = true;
continue;
}
if(var->GetAccess() == ACCESS_PUBLIC)
var->SetAccessDomain(cls->GetAccessDomain());
else if(var->GetAccess() == ACCESS_PROTECTED)
var->SetAccessDomain(AccessDomain::ClassAndSubclasses(cls));
else if(var->GetAccess() == ACCESS_PRIVATE)
var->SetAccessDomain(AccessDomain::Lexical(cls));
else
SS_UNREACHABLE;
var->SetParent(cls);
if(!CheckVariable(var))
{
errors = true;
continue;
}
// TODO: We have to check against the base class's scope
// Try to fit it into the current scope
cls->GetScope()->Add(var);
}
for(int i = 0; i < cls->GetFunctionCount(); ++i)
{
Function* func = cls->GetFunction(i);
if(!CheckChild(cls, func))
{
errors = true;
continue;
}
if(func->GetAccess() == ACCESS_PUBLIC)
func->SetAccessDomain(cls->GetAccessDomain());
else if(func->GetAccess() == ACCESS_PROTECTED)
func->SetAccessDomain(AccessDomain::ClassAndSubclasses(cls));
else if(func->GetAccess() == ACCESS_PRIVATE)
func->SetAccessDomain(AccessDomain::Lexical(cls));
else
SS_UNREACHABLE;
func->SetParent(cls);
if(!CheckFunction(func))
{
errors = true;
continue;
}
// TODO: We have to check against the base class's scope
cls->GetScope()->Add(func);
}
return !errors;
}
bool StaticChecker::CheckVariable(Variable* var)
{
SSAssert(var->GetParent() != 0);
SSAssert(var->GetTypeExpr() != 0);
if(var->IsStatic() && var->IsConst())
{
ReportError(var, "Cannot combine const and static flags");
return false;
}
// This prints its own errors
Type* typ = TypeLookup::LookupType(var->GetTypeExpr(), var->GetParent());
if(!typ)
return false;
if(typ == Type::GetBasicType(BT_VOID))
{
ReportError(var, "Void cannot be used for variable types");
return false;
}
var->SetType(typ);
return true;
}
bool StaticChecker::CheckFunction(Function* func)
{
SSAssert(func->GetParent() != 0);
SSAssert(func->GetReturnTypeExpr() != 0);
Type* returnType = TypeLookup::LookupType(func->GetReturnTypeExpr(), func->GetParent());
if(!returnType)
return false;
func->SetReturnType(returnType);
if(func->IsStatic() && func->IsSealed())
{
ReportError(func, "Cannot have sealed static funcs");
return false;
}
if(func->IsStatic() && func->IsVirtual())
{
ReportError(func, "Cannot have virtual static funcs");
return false;
}
if(func->IsSealed() && func->IsVirtual())
{
ReportError(func, "Cannot have sealed virtual funcs");
return false;
}
if(func->GetParameterCount() > SS_MAX_PARAMETERS)
{
ReportError(func, "Function has too many parameters. Maximum is %d", SS_MAX_PARAMETERS);
return false;
}
// Now, we have to check params
bool paramsFailed = false;
int id = 0;
for(int i = 0; i < func->GetParameterCount(); ++i)
{
Parameter* param = func->GetParameter(i);
if(!CheckChild(func, param))
{
paramsFailed = true;
continue;
}
param->SetParent(func);
Type* paramType = TypeLookup::LookupType(param->GetTypeExpr(), param->GetParent());
if(!paramType)
{
paramsFailed = true;
continue;
}
if(paramType == SS_T_VOID)
{
paramsFailed = true;
ReportError(param, "Parameter %s cannot have type void", param->GetName().c_str());
continue;
}
param->SetType(paramType);
param->SetID(id);
++id;
func->GetScope()->Add(param);
}
if(paramsFailed)
return false;
return true;
}
bool StaticChecker::CheckChild(Node* parent, Node* child)
{
SSAssert(parent != 0);
SSAssert(child != 0);
SSAssert(parent->HasName());
SSAssert(child->HasName());
if(!IsValidName(child->GetName()))
{
// TODO: Can we do better than this? E.g. say what's wrong with the name?
ReportError(child, "Invalid name %s", SS_QUOTE(child->GetName()));
return false;
}
if(NamesEqual(parent->GetName(), child->GetName()))
{
ReportError(child, "Name %s conflicts with name of enclosing object %s",
SS_QUOTE(child->GetName()),
parent->GetDesc().c_str());
return false;
}
Node* conflict = parent->GetScope()->Find(child->GetName());
if(conflict != 0)
{
// TODO: Better error message
ReportError(child, "Name %s conflicts with %s",
SS_QUOTE(child->GetName()),
conflict->GetDesc().c_str());
return false;
}
return true;
}
void StaticChecker::CheckFunctionBody(Function* func)
{
StatementContext ctx;
Scope scope;
ctx.func = func;
ctx.scope = &scope;
// TODO: Don't compile abstract funcs, of course -- etc.
SSAssert(func->GetBody());
CheckStatement(func->GetBody(), ctx);
}
// Debug dump of an expr to check that it's processing correctly
// TODO: handle transform exprs
String StaticChecker::DumpExpr(Expr* expr) const
{
if(expr == 0)
{
return "<NULL>";
}
else if(expr->IsA<AssignExpr>())
{
AssignExpr* assignExpr = dynamic_cast<AssignExpr*>(expr);
return "(" + DumpExpr(assignExpr->GetLeft()) + " " + assignExpr->GetOpName() + " " +
DumpExpr(assignExpr->GetRight()) + ")";
}
else if(expr->IsA<BinaryExpr>())
{
BinaryExpr* binExpr = dynamic_cast<BinaryExpr*>(expr);
return "(" + DumpExpr(binExpr->GetLeft()) + " " + binExpr->GetOpName() + " " +
DumpExpr(binExpr->GetRight()) + ")";
}
else if(expr->IsA<CallExpr>())
{
CallExpr* callExpr = dynamic_cast<CallExpr*>(expr);
String s = "call(" + DumpExpr(callExpr->GetLeft());
for(int i=0; i < callExpr->GetParameterCount(); ++i)
{
s += ", ";
s += DumpExpr(callExpr->GetParameter(i));
}
s += ")";
return s;
}
else if(expr->IsA<CastExpr>())
{
CastExpr* castExpr = dynamic_cast<CastExpr*>(expr);
return "cast(" + castExpr->GetTypeExpr()->Dump() + ", " + DumpExpr(castExpr->GetRight()) + ")";
}
else if(expr->IsA<IndexExpr>())
{
IndexExpr* indexExpr = dynamic_cast<IndexExpr*>(expr);
return "index(" + DumpExpr(indexExpr->GetLeft()) + ", " + DumpExpr(indexExpr->GetRight()) + ")";
}
else if(expr->IsA<NullLiteralExpr>())
{
return "null";
}
else if(expr->IsA<BoolLiteralExpr>())
{
BoolLiteralExpr* boolExpr = dynamic_cast<BoolLiteralExpr*>(expr);
return boolExpr->GetValue() ? "true" : "false";
}
else if(expr->IsA<IntLiteralExpr>())
{
IntLiteralExpr* castedExpr = dynamic_cast<IntLiteralExpr*>(expr);
char buf[32];
sprintf(buf, "%d", castedExpr->GetValue());
return buf;
}
else if(expr->IsA<FloatLiteralExpr>())
{
FloatLiteralExpr* castedExpr = dynamic_cast<FloatLiteralExpr*>(expr);
return castedExpr->GetValue();
}
else if(expr->IsA<CharLiteralExpr>())
{
CharLiteralExpr* castedExpr = dynamic_cast<CharLiteralExpr*>(expr);
return castedExpr->GetValue();
}
else if(expr->IsA<StringLiteralExpr>())
{
StringLiteralExpr* castedExpr = dynamic_cast<StringLiteralExpr*>(expr);
return castedExpr->GetValue();
}
else if(expr->IsA<MemberExpr>())
{
MemberExpr* memberExpr = dynamic_cast<MemberExpr*>(expr);
return "(" + DumpExpr(memberExpr->GetLeft()) + "." +
memberExpr->GetIdentifier() + ")";
}
else if(expr->IsA<NameExpr>())
{
NameExpr* nameExpr = dynamic_cast<NameExpr*>(expr);
return "'"+nameExpr->GetIdentifier()+"'";
}
else if(expr->IsA<TernaryExpr>())
{
TernaryExpr* ternaryExpr = dynamic_cast<TernaryExpr*>(expr);
return "ternary(" + DumpExpr(ternaryExpr->GetCondition()) + ", " +
DumpExpr(ternaryExpr->GetTrueExpr()) + ", " +
DumpExpr(ternaryExpr->GetFalseExpr()) + ")";
}
else if(expr->IsA<ThisExpr>())
{
return "this";
}
else if(expr->IsA<UnaryExpr>())
{
UnaryExpr* unaryExpr = dynamic_cast<UnaryExpr*>(expr);
return "(" + unaryExpr->GetPrefixOpName() + DumpExpr(unaryExpr->GetOperand()) + unaryExpr->GetPostfixOpName() + ")";
}
else
{
SS_UNREACHABLE;
return "";
}
}
}