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
|
/*
* Evaluate constants
*
* HACK - Should be replaced with a reentrant typeck/mir pass
*/
#include "main_bindings.hpp"
#include <hir/hir.hpp>
#include <hir/expr.hpp>
#include <hir/visitor.hpp>
#include <algorithm>
namespace {
::HIR::Literal clone_literal(const ::HIR::Literal& v)
{
TU_MATCH(::HIR::Literal, (v), (e),
(Invalid,
return ::HIR::Literal();
),
(List,
::std::vector< ::HIR::Literal> vals;
for(const auto& val : e) {
vals.push_back( clone_literal(val) );
}
return ::HIR::Literal( mv$(vals) );
),
(Integer,
return ::HIR::Literal(e);
),
(Float,
return ::HIR::Literal(e);
),
(String,
return ::HIR::Literal(e);
)
)
throw "";
}
enum class EntType {
Function,
Constant,
Struct,
};
const void* get_ent_simplepath(const Span& sp, const ::HIR::Crate& crate, const ::HIR::SimplePath& path, EntType et)
{
if( path.m_crate_name != "" )
TODO(sp, "get_ent_simplepath in crate");
const ::HIR::Module* mod = &crate.m_root_module;
for( unsigned int i = 0; i < path.m_components.size() - 1; i ++ )
{
const auto& pc = path.m_components[i];
auto it = mod->m_mod_items.find( pc );
if( it == mod->m_mod_items.end() ) {
BUG(sp, "Couldn't find component " << i << " of " << path);
}
TU_MATCH_DEF( ::HIR::TypeItem, (it->second->ent), (e2),
(
BUG(sp, "Node " << i << " of path " << path << " wasn't a module");
),
(Module,
mod = &e2;
)
)
}
switch( et )
{
case EntType::Function: {
auto it = mod->m_value_items.find( path.m_components.back() );
if( it == mod->m_value_items.end() ) {
return nullptr;
}
TU_IFLET( ::HIR::ValueItem, it->second->ent, Function, e,
return &e;
)
else {
BUG(sp, "Path " << path << " didn't point to a functon");
}
} break;
case EntType::Constant: {
auto it = mod->m_value_items.find( path.m_components.back() );
if( it == mod->m_value_items.end() ) {
return nullptr;
}
TU_IFLET( ::HIR::ValueItem, it->second->ent, Constant, e,
return &e;
)
else {
BUG(sp, "Path " << path << " didn't point to a functon");
}
} break;
case EntType::Struct: {
auto it = mod->m_mod_items.find( path.m_components.back() );
if( it == mod->m_mod_items.end() ) {
return nullptr;
}
TU_IFLET( ::HIR::TypeItem, it->second->ent, Struct, e,
return &e;
)
else {
BUG(sp, "Path " << path << " didn't point to a struct");
}
} break;
}
throw "";
}
const void* get_ent_fullpath(const Span& sp, const ::HIR::Crate& crate, const ::HIR::Path& path, EntType et)
{
TU_MATCH(::HIR::Path::Data, (path.m_data), (e),
(Generic,
return get_ent_simplepath(sp, crate, e.m_path, et);
),
(UfcsInherent,
// Easy (ish)
for( const auto& impl : crate.m_type_impls )
{
if( ! impl.matches_type(*e.type) ) {
continue ;
}
switch( et )
{
case EntType::Function: {
auto fit = impl.m_methods.find(e.item);
if( fit == impl.m_methods.end() )
continue ;
return &fit->second.data;
} break;
case EntType::Struct:
break;
case EntType::Constant:
break;
}
}
return nullptr;
),
(UfcsKnown,
TODO(sp, "get_ent_fullpath(path = " << path << ")");
),
(UfcsUnknown,
// TODO - Since this isn't known, can it be searched properly?
TODO(sp, "get_ent_fullpath(path = " << path << ")");
)
)
throw "";
}
const ::HIR::Function& get_function(const Span& sp, const ::HIR::Crate& crate, const ::HIR::Path& path)
{
auto* rv_p = reinterpret_cast<const ::HIR::Function*>( get_ent_fullpath(sp, crate, path, EntType::Function) );
if( !rv_p ) {
TODO(sp, "get_function(path = " << path << ")");
}
return *rv_p;
}
const ::HIR::Struct& get_struct(const Span& sp, const ::HIR::Crate& crate, const ::HIR::SimplePath& path)
{
auto rv_p = reinterpret_cast<const ::HIR::Struct*>( get_ent_simplepath(sp, crate, path, EntType::Struct) );
if( !rv_p ) {
BUG(sp, "Could not find struct name in " << path);
}
return *rv_p;
}
const ::HIR::Constant& get_constant(const Span& sp, const ::HIR::Crate& crate, const ::HIR::Path& path)
{
auto rv_p = reinterpret_cast<const ::HIR::Constant*>( get_ent_fullpath(sp, crate, path, EntType::Constant) );
if( !rv_p ) {
BUG(sp, "Could not find constant in " << path);
}
return *rv_p;
}
::HIR::Literal evaluate_constant(const ::HIR::Crate& crate, const ::HIR::ExprNode& expr)
{
struct Visitor:
public ::HIR::ExprVisitor
{
const ::HIR::Crate& m_crate;
::std::vector< ::std::pair< ::std::string, ::HIR::Literal > > m_values;
::HIR::Literal m_rv;
Visitor(const ::HIR::Crate& crate):
m_crate(crate)
{}
void badnode(const ::HIR::ExprNode& node) const {
ERROR(node.span(), E0000, "Node not allowed in constant expression");
}
void visit(::HIR::ExprNode_Block& node) override {
for(const auto& e : node.m_nodes)
e->visit(*this);
}
void visit(::HIR::ExprNode_Return& node) override {
TODO(node.span(), "ExprNode_Return");
}
void visit(::HIR::ExprNode_Let& node) override {
badnode(node);
}
void visit(::HIR::ExprNode_Loop& node) override {
badnode(node);
}
void visit(::HIR::ExprNode_LoopControl& node) override {
badnode(node);
}
void visit(::HIR::ExprNode_Match& node) override {
badnode(node);
}
void visit(::HIR::ExprNode_If& node) override {
badnode(node);
}
void visit(::HIR::ExprNode_Assign& node) override {
badnode(node);
}
void visit(::HIR::ExprNode_BinOp& node) override {
node.m_left->visit(*this);
auto left = mv$(m_rv);
node.m_right->visit(*this);
auto right = mv$(m_rv);
if( left.tag() != right.tag() ) {
ERROR(node.span(), E0000, "ExprNode_BinOp - Sides mismatched");
}
switch(node.m_op)
{
case ::HIR::ExprNode_BinOp::Op::CmpEqu:
case ::HIR::ExprNode_BinOp::Op::CmpNEqu:
case ::HIR::ExprNode_BinOp::Op::CmpLt:
case ::HIR::ExprNode_BinOp::Op::CmpLtE:
case ::HIR::ExprNode_BinOp::Op::CmpGt:
case ::HIR::ExprNode_BinOp::Op::CmpGtE:
ERROR(node.span(), E0000, "ExprNode_BinOp - Comparisons");
break;
case ::HIR::ExprNode_BinOp::Op::BoolAnd:
case ::HIR::ExprNode_BinOp::Op::BoolOr:
ERROR(node.span(), E0000, "ExprNode_BinOp - Logicals");
break;
case ::HIR::ExprNode_BinOp::Op::Add:
TU_MATCH_DEF(::HIR::Literal, (left, right), (le, re),
( throw ""; ),
(Integer, m_rv = ::HIR::Literal(le + re); ),
(Float, m_rv = ::HIR::Literal(le + re); )
)
break;
case ::HIR::ExprNode_BinOp::Op::Sub:
TU_MATCH_DEF(::HIR::Literal, (left, right), (le, re),
( throw ""; ),
(Integer, m_rv = ::HIR::Literal(le - re); ),
(Float, m_rv = ::HIR::Literal(le - re); )
)
break;
case ::HIR::ExprNode_BinOp::Op::Mul:
TU_MATCH_DEF(::HIR::Literal, (left, right), (le, re),
( throw ""; ),
(Integer, m_rv = ::HIR::Literal(le * re); ),
(Float, m_rv = ::HIR::Literal(le * re); )
)
break;
case ::HIR::ExprNode_BinOp::Op::Div:
TU_MATCH_DEF(::HIR::Literal, (left, right), (le, re),
( throw ""; ),
(Integer, m_rv = ::HIR::Literal(le / re); ),
(Float, m_rv = ::HIR::Literal(le / re); )
)
break;
case ::HIR::ExprNode_BinOp::Op::Mod:
TU_MATCH_DEF(::HIR::Literal, (left, right), (le, re),
( throw ""; ),
(Integer, m_rv = ::HIR::Literal(le % re); ),
(Float, ERROR(node.span(), E0000, "modulo operator on float in constant"); )
)
break;
case ::HIR::ExprNode_BinOp::Op::And:
TU_MATCH_DEF(::HIR::Literal, (left, right), (le, re),
( throw ""; ),
(Integer, m_rv = ::HIR::Literal(le % re); ),
(Float, ERROR(node.span(), E0000, "bitwise and operator on float in constant"); )
)
break;
case ::HIR::ExprNode_BinOp::Op::Or:
TU_MATCH_DEF(::HIR::Literal, (left, right), (le, re),
( throw ""; ),
(Integer, m_rv = ::HIR::Literal(le | re); ),
(Float, ERROR(node.span(), E0000, "bitwise or operator on float in constant"); )
)
break;
case ::HIR::ExprNode_BinOp::Op::Xor:
TU_MATCH_DEF(::HIR::Literal, (left, right), (le, re),
( throw ""; ),
(Integer, m_rv = ::HIR::Literal(le ^ re); ),
(Float, ERROR(node.span(), E0000, "bitwise xor operator on float in constant"); )
)
break;
case ::HIR::ExprNode_BinOp::Op::Shr:
TU_MATCH_DEF(::HIR::Literal, (left, right), (le, re),
( throw ""; ),
(Integer, m_rv = ::HIR::Literal(le >> re); ),
(Float, ERROR(node.span(), E0000, "bitwise shift right operator on float in constant"); )
)
break;
case ::HIR::ExprNode_BinOp::Op::Shl:
TU_MATCH_DEF(::HIR::Literal, (left, right), (le, re),
( throw ""; ),
(Integer, m_rv = ::HIR::Literal(le << re); ),
(Float, ERROR(node.span(), E0000, "bitwise shift left operator on float in constant"); )
)
break;
}
}
void visit(::HIR::ExprNode_UniOp& node) override {
node.m_value->visit(*this);
auto val = mv$(m_rv);
switch(node.m_op)
{
case ::HIR::ExprNode_UniOp::Op::Ref:
case ::HIR::ExprNode_UniOp::Op::RefMut:
TODO(node.span(), "&/&mut in constant");
break;
case ::HIR::ExprNode_UniOp::Op::Invert:
TU_MATCH_DEF(::HIR::Literal, (val), (e),
( throw ""; ),
(Integer, m_rv = ::HIR::Literal(~e); ),
(Float, ERROR(node.span(), E0000, "not operator on float in constant"); )
)
case ::HIR::ExprNode_UniOp::Op::Negate:
TU_MATCH_DEF(::HIR::Literal, (val), (e),
( throw ""; ),
(Integer, m_rv = ::HIR::Literal(-e); ),
(Float, m_rv = ::HIR::Literal(-e); )
)
}
}
void visit(::HIR::ExprNode_Cast& node) override {
node.m_value->visit(*this);
//auto val = mv$(m_rv);
//DEBUG("ExprNode_Cast - val = " << val << " as " << node.m_type);
}
void visit(::HIR::ExprNode_Unsize& node) override {
node.m_value->visit(*this);
//auto val = mv$(m_rv);
//DEBUG("ExprNode_Unsize - val = " << val << " as " << node.m_type);
}
void visit(::HIR::ExprNode_Index& node) override {
badnode(node);
}
void visit(::HIR::ExprNode_Deref& node) override {
badnode(node);
}
void visit(::HIR::ExprNode_TupleVariant& node) override {
TODO(node.span(), "ExprNode_TupleVariant");
}
void visit(::HIR::ExprNode_CallPath& node) override {
auto& fcn = get_function(node.span(), m_crate, node.m_path);
// TODO: Set m_const during parse
//if( ! fcn.m_const ) {
// ERROR(node.span(), E0000, "Calling non-const function in const context - " << node.m_path);
//}
if( fcn.m_args.size() != node.m_args.size() ) {
ERROR(node.span(), E0000, "Incorrect argument count for " << node.m_path << " - expected " << fcn.m_args.size() << ", got " << node.m_args.size());
}
for(unsigned int i = 0; i < fcn.m_args.size(); i ++ )
{
const auto& pattern = fcn.m_args[i].first;
node.m_args[i]->visit(*this);
auto arg_val = mv$(m_rv);
TU_IFLET(::HIR::Pattern::Data, pattern.m_data, Any, e,
m_values.push_back( ::std::make_pair(pattern.m_binding.m_name, mv$(arg_val)) );
)
else {
ERROR(node.span(), E0000, "Constant functions can't have destructuring pattern argments");
}
}
// Call by running the code directly
{
TRACE_FUNCTION_F("Call const fn " << node.m_path);
const_cast<HIR::ExprNode&>(*fcn.m_code).visit( *this );
assert( ! m_rv.is_Invalid() );
}
for(unsigned int i = 0; i < fcn.m_args.size(); i ++ )
{
m_values.pop_back();
}
}
void visit(::HIR::ExprNode_CallValue& node) override {
badnode(node);
}
void visit(::HIR::ExprNode_CallMethod& node) override {
// TODO: const methods
badnode(node);
}
void visit(::HIR::ExprNode_Field& node) override {
badnode(node);
}
void visit(::HIR::ExprNode_Literal& node) override {
TU_MATCH(::HIR::ExprNode_Literal::Data, (node.m_data), (e),
(Integer,
m_rv = ::HIR::Literal(e.m_value);
),
(Float,
m_rv = ::HIR::Literal(e.m_value);
),
(Boolean,
m_rv = ::HIR::Literal(static_cast<uint64_t>(e));
),
(String,
m_rv = ::HIR::Literal(e);
),
(ByteString,
m_rv = ::HIR::Literal::make_String({e.begin(), e.end()});
)
)
}
void visit(::HIR::ExprNode_UnitVariant& node) override {
TODO(node.span(), "Unit varant/struct constructors in constant context");
}
void visit(::HIR::ExprNode_PathValue& node) override {
const auto& c = get_constant(node.span(), m_crate, node.m_path);
if( c.m_value_res.is_Invalid() ) {
const_cast<HIR::ExprNode&>(*c.m_value).visit(*this);
}
else {
m_rv = clone_literal(c.m_value_res);
}
}
void visit(::HIR::ExprNode_Variable& node) override {
for(auto it = m_values.rbegin(); it != m_values.rend(); ++it)
{
if( it->first == node.m_name) {
TU_MATCH_DEF(::HIR::Literal, (it->second), (e),
(
m_rv = mv$(it->second);
),
(Integer,
m_rv = ::HIR::Literal(e);
),
(Float,
m_rv = ::HIR::Literal(e);
)
)
return;
}
}
ERROR(node.span(), E0000, "Couldn't find variable " << node.m_name);
}
void visit(::HIR::ExprNode_StructLiteral& node) override {
const auto& str = get_struct(node.span(), m_crate, node.m_path.m_path);
const auto& fields = str.m_data.as_Named();
::std::vector< ::HIR::Literal> vals;
if( node.m_base_value ) {
node.m_base_value->visit(*this);
auto base_val = mv$(m_rv);
if( !base_val.is_List() || base_val.as_List().size() != fields.size() ) {
BUG(node.span(), "Struct literal base value had an incorrect field count");
}
vals = mv$(base_val.as_List());
}
else {
vals.resize( fields.size() );
}
for( const auto& val_set : node.m_values ) {
unsigned int idx = ::std::find_if( fields.begin(), fields.end(), [&](const auto& v) { return v.first == val_set.first; } ) - fields.begin();
if( idx == fields.size() ) {
ERROR(node.span(), E0000, "Field name " << val_set.first << " isn't a member of " << node.m_path);
}
val_set.second->visit(*this);
vals[idx] = mv$(m_rv);
}
for( unsigned int i = 0; i < vals.size(); i ++ ) {
const auto& val = vals[i];
if( val.is_Invalid() ) {
ERROR(node.span(), E0000, "Field " << fields[i].first << " wasn't set");
}
}
m_rv = ::HIR::Literal::make_List(mv$(vals));
}
void visit(::HIR::ExprNode_Tuple& node) override {
::std::vector< ::HIR::Literal> vals;
for(const auto& vn : node.m_vals ) {
vn->visit(*this);
assert( !m_rv.is_Invalid() );
vals.push_back( mv$(m_rv) );
}
m_rv = ::HIR::Literal::make_List(mv$(vals));
}
void visit(::HIR::ExprNode_ArrayList& node) override {
::std::vector< ::HIR::Literal> vals;
for(const auto& vn : node.m_vals ) {
vn->visit(*this);
assert( !m_rv.is_Invalid() );
vals.push_back( mv$(m_rv) );
}
m_rv = ::HIR::Literal::make_List(mv$(vals));
}
void visit(::HIR::ExprNode_ArraySized& node) override {
TODO(node.span(), "ExprNode_ArraySized");
}
void visit(::HIR::ExprNode_Closure& node) override {
badnode(node);
}
};
Visitor v { crate };
const_cast<::HIR::ExprNode&>(expr).visit(v);
if( v.m_rv.is_Invalid() ) {
BUG(Span(), "Expression did not yeild a literal");
}
return mv$(v.m_rv);
}
class Expander:
public ::HIR::Visitor
{
const ::HIR::Crate& m_crate;
public:
Expander(const ::HIR::Crate& crate):
m_crate(crate)
{}
void visit_type(::HIR::TypeRef& ty)
{
TU_IFLET(::HIR::TypeRef::Data, ty.m_data, Array, e,
::HIR::Visitor::visit_type(*e.inner);
assert(&*e.size != nullptr);
auto val = evaluate_constant(m_crate, *e.size);
if( !val.is_Integer() )
ERROR(e.size->span(), E0000, "Array size isn't an integer");
e.size_val = val.as_Integer();
DEBUG("Array " << ty << " - size = " << e.size_val);
)
else {
::HIR::Visitor::visit_type(ty);
}
}
void visit_constant(::HIR::ItemPath p, ::HIR::Constant& item) override
{
visit_type(item.m_type);
item.m_value_res = evaluate_constant(m_crate, *item.m_value);
DEBUG("constant: " << item.m_type << " = " << item.m_value_res);
}
void visit_static(::HIR::ItemPath p, ::HIR::Static& item) override
{
visit_type(item.m_type);
item.m_value_res = evaluate_constant(m_crate, *item.m_value);
DEBUG("static: " << item.m_type << " = " << item.m_value_res);
}
void visit_expr(::HIR::ExprPtr& expr) override
{
struct Visitor:
public ::HIR::ExprVisitorDef
{
Expander& m_exp;
Visitor(Expander& exp):
m_exp(exp)
{}
void visit(::HIR::ExprNode_Let& node) override {
::HIR::ExprVisitorDef::visit(node);
m_exp.visit_type(node.m_type);
}
void visit(::HIR::ExprNode_Cast& node) override {
::HIR::ExprVisitorDef::visit(node);
m_exp.visit_type(node.m_res_type);
}
// TODO: This shouldn't exist yet?
void visit(::HIR::ExprNode_Unsize& node) override {
::HIR::ExprVisitorDef::visit(node);
m_exp.visit_type(node.m_res_type);
}
void visit(::HIR::ExprNode_Closure& node) override {
::HIR::ExprVisitorDef::visit(node);
m_exp.visit_type(node.m_return);
for(auto& a : node.m_args)
m_exp.visit_type(a.second);
}
void visit(::HIR::ExprNode_ArraySized& node) override {
auto val = evaluate_constant(m_exp.m_crate, *node.m_size);
if( !val.is_Integer() )
ERROR(node.span(), E0000, "Array size isn't an integer");
node.m_size_val = val.as_Integer();
DEBUG("Array literal [?; " << node.m_size_val << "]");
}
void visit(::HIR::ExprNode_CallPath& node) override {
::HIR::ExprVisitorDef::visit(node);
m_exp.visit_path(node.m_path, ::HIR::Visitor::PathContext::VALUE);
}
void visit(::HIR::ExprNode_CallMethod& node) override {
::HIR::ExprVisitorDef::visit(node);
m_exp.visit_path_params(node.m_params);
}
};
if( expr.get() != nullptr )
{
Visitor v { *this };
(*expr).visit(v);
}
}
};
} // namespace
void ConvertHIR_ConstantEvaluate(::HIR::Crate& crate)
{
Expander exp { crate };
exp.visit_crate( crate );
}
|