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
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
use std::collections::{HashMap, HashSet};
use cranelift::codegen::Context;
use cranelift::{codegen::ir::StackSlot, prelude::*};
use cranelift_module::{DataDescription, DataId, FuncId, Linkage, Module};
use cranelift_object::{ObjectBuilder, ObjectModule};
use crate::ir::irgen::StructLayout;
use crate::ir::tac::{CastType, Instruction, IrOp, ScopedMap, Value};
use crate::parse::parsing::Type;
use crate::semantics::analysis::FunctionSignature;
fn strip_mangling(name: &str) -> &str {
let cut = [name.find("__"), name.find('.'), name.find('<')]
.into_iter()
.flatten()
.min();
match cut {
Some(idx) => &name[..idx],
None => name,
}
}
/// The backend type a TAC `Value` naturally carries: literals get their
/// obvious type, and named values (`Var`/`Temp`) fall back to `Int64` if
/// they aren't in `var_types` for some reason (shouldn't normally happen).
fn value_backend_type(value: &Value, var_types: &ScopedMap) -> BackendType {
match value {
Value::Var(name) | Value::Temp(name) => var_types
.get(name)
.map(BackendType::from_frontend)
.unwrap_or(BackendType::Int64),
Value::Char(_) => BackendType::Char,
Value::Const(_) => BackendType::Int64,
Value::Bool(_) => BackendType::Bool,
Value::Str(_) => BackendType::Ptr,
Value::Void => BackendType::Int64,
}
}
/// Looks up the Cranelift `Variable` bound to `name`, declaring a fresh one
/// (with type `ty`) the first time it's seen. `var_idx` hands out the next
/// free `Variable` slot.
fn get_or_create_var(
builder: &mut FunctionBuilder,
var_map: &mut HashMap<String, Variable>,
var_idx: &mut usize,
name: &str,
ty: BackendType,
ptr_type: cranelift::prelude::Type,
) -> Variable {
if let Some(&v) = var_map.get(name) {
return v;
}
let v = Variable::new(*var_idx);
*var_idx += 1;
builder.declare_var(v, ty.to_clif_type(ptr_type));
var_map.insert(name.to_string(), v);
v
}
fn get_or_create_block(
builder: &mut FunctionBuilder,
block_map: &mut HashMap<String, Block>,
all_blocks: &mut Vec<Block>,
name: &str,
) -> Block {
if let Some(&blk) = block_map.get(name) {
return blk;
}
let blk = builder.create_block();
block_map.insert(name.to_string(), blk);
all_blocks.push(blk);
blk
}
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum BackendType {
Int8,
Int32,
Int64,
UInt8,
UInt32,
UInt64,
Char,
Bool,
Ptr,
}
impl BackendType {
pub fn to_clif_type(&self, ptr_type: cranelift::prelude::Type) -> cranelift::prelude::Type {
match self {
BackendType::Char => types::I8,
BackendType::Bool => types::I8,
BackendType::Int8 | BackendType::UInt8 => types::I8,
BackendType::Int32 | BackendType::UInt32 => types::I32,
BackendType::Int64 | BackendType::UInt64 => types::I64,
BackendType::Ptr => ptr_type,
}
}
pub fn byte_size(&self) -> u32 {
match self {
BackendType::Char => 1,
BackendType::Bool => 1,
BackendType::Int8 | BackendType::UInt8 => 1,
BackendType::Int32 | BackendType::UInt32 => 4,
BackendType::Int64 | BackendType::UInt64 => 8,
BackendType::Ptr => 8,
}
}
pub fn from_frontend(ty: &Type) -> Self {
match ty {
Type::Str => BackendType::Ptr,
Type::GenericInstance { name, .. } => {
unreachable!(
"{}",
format!(
"generic instances '{}' must be monomorphised before codegen",
name
)
)
}
Type::GenericParam(s) => {
unreachable!(
"{}",
format!(
"generic parameters '{}' must be monomorphised before codegen",
s
)
)
}
Type::VariadicPack { .. } => {
unreachable!(
"variadic pack must be resolved to a concrete __variadic__ struct before codegen"
)
}
Type::Any => BackendType::Ptr,
Type::Int => BackendType::Int64,
Type::Int8 => BackendType::Int8,
Type::UInt8 => BackendType::UInt8,
Type::UInt => BackendType::UInt64,
Type::Char => BackendType::Char,
Type::Bool => BackendType::Bool,
Type::Ptr(_) => BackendType::Ptr,
Type::Struct(_) => BackendType::Ptr,
Type::Void => BackendType::Int64,
Type::Array { .. } => BackendType::Ptr,
}
}
}
enum AbiType {
Void,
Primitive(cranelift::prelude::Type),
Aggregate { chunk_count: usize, total_size: u32 },
}
impl AbiType {
fn from_frontend(
ty: &Type,
struct_defs: &HashMap<String, StructLayout>,
ptr_type: cranelift::prelude::Type,
) -> Self {
match ty {
Type::Void => AbiType::Void,
Type::Struct(name) => {
let stripped = strip_mangling(name);
let layout = struct_defs
.get(name)
.or_else(|| struct_defs.get(stripped))
.or_else(|| {
name.split("::")
.last()
.and_then(|suffix| struct_defs.get(suffix))
})
.or_else(|| {
stripped
.split("::")
.last()
.and_then(|suffix| struct_defs.get(suffix))
});
if let Some(layout) = layout {
let total_size = layout.total_size;
let chunk_count = ((total_size + 7) / 8) as usize;
AbiType::Aggregate {
chunk_count,
total_size: total_size.try_into().unwrap(),
}
} else {
AbiType::Primitive(ptr_type)
}
}
_ => AbiType::Primitive(BackendType::from_frontend(ty).to_clif_type(ptr_type)),
}
}
fn append_to_signature_returns(&self, sig: &mut Signature) {
match self {
Self::Void => {}
Self::Primitive(clif_ty) => {
sig.returns.push(AbiParam::new(*clif_ty));
}
Self::Aggregate { chunk_count, .. } => {
for _ in 0..*chunk_count {
sig.returns.push(AbiParam::new(types::I64));
}
}
}
}
}
pub struct CraneliftBackend {
pub module: ObjectModule,
pub struct_defs: HashMap<String, StructLayout>,
pub functions: HashMap<String, FunctionSignature>,
pub string_literals: HashMap<String, DataId>,
pub declared_funcs: HashMap<String, FuncId>,
/// Functions compiled into this object file (not runtime / libc symbols).
defined_funcs: HashSet<String>,
}
impl CraneliftBackend {
pub fn new(
struct_defs: HashMap<String, StructLayout>,
functions: HashMap<String, FunctionSignature>,
) -> Self {
let mut flag_builder = settings::builder();
flag_builder.set("use_colocated_libcalls", "false").unwrap();
flag_builder.set("is_pic", "true").unwrap();
let isa_builder = cranelift_native::builder().unwrap_or_else(|msg| {
panic!("host machine is not supported: {}", msg);
});
let isa = isa_builder
.finish(settings::Flags::new(flag_builder))
.unwrap();
let builder = ObjectBuilder::new(
isa,
"mysz_output",
cranelift_module::default_libcall_names(),
)
.unwrap();
let module = ObjectModule::new(builder);
Self {
module,
struct_defs,
functions,
string_literals: HashMap::new(),
declared_funcs: HashMap::new(),
defined_funcs: HashSet::new(),
}
}
fn is_defined_in_module(&self, name: &str) -> bool {
self.defined_funcs.contains(name) || self.defined_funcs.contains(strip_mangling(name))
}
fn linkage_for_callee(&self, callee_name: &str) -> Linkage {
if self.is_defined_in_module(callee_name) {
Linkage::Local
} else {
Linkage::Import
}
}
/// Registers every function that will be emitted in this object file so
/// call sites do not treat monomorphised / variadic instantiations as
/// external imports before their bodies are compiled.
pub fn register_defined_functions(&mut self, names: impl IntoIterator<Item = String>) {
self.defined_funcs.extend(names);
}
pub fn scan_externs(&mut self, insts: &[Instruction]) {
for inst in insts {
if let Instruction::Extern { fnname } = inst {
let s_name = strip_mangling(fnname);
let linkage = Linkage::Import;
let mut sig = self.module.make_signature();
if let Some(func_sig) = self
.functions
.get(fnname)
.or_else(|| self.functions.get(strip_mangling(fnname)))
{
let ptr_type = self.module.target_config().pointer_type();
for param_ty in &func_sig.param_types {
let backend_ty = BackendType::from_frontend(param_ty);
sig.params
.push(AbiParam::new(backend_ty.to_clif_type(ptr_type)));
}
let abi =
AbiType::from_frontend(&func_sig.return_type, &self.struct_defs, ptr_type);
abi.append_to_signature_returns(&mut sig);
} else {
sig.returns.push(AbiParam::new(types::I64));
}
let fn_id = self.module.declare_function(s_name, linkage, &sig).unwrap();
self.declared_funcs.insert(fnname.clone(), fn_id);
}
}
}
pub fn pre_declare_strings(&mut self, insts: &[&Instruction]) {
let mut idx = 0;
for inst in insts {
if let Instruction::Arg {
value: Value::Str(text),
} = inst
&& !self.string_literals.contains_key(text)
{
let name = format!("_str_lit_{}", idx);
idx += 1;
let data_id = self
.module
.declare_data(&name, Linkage::Local, false, false)
.unwrap();
let mut desc = DataDescription::new();
let mut bytes = text.as_bytes().to_vec();
bytes.push(0);
desc.define(bytes.into_boxed_slice());
self.module.define_data(data_id, &desc).unwrap();
self.string_literals.insert(text.clone(), data_id);
}
}
}
fn declare_string_literal(&mut self, text: &str) -> DataId {
if let Some(&id) = self.string_literals.get(text) {
id
} else {
let idx = self.string_literals.len();
let name = format!("_str_lit_{}", idx);
let data_id = self
.module
.declare_data(&name, Linkage::Local, false, false)
.unwrap();
let mut desc = DataDescription::new();
let mut bytes = text.as_bytes().to_vec();
bytes.push(0);
desc.define(bytes.into_boxed_slice());
self.module.define_data(data_id, &desc).unwrap();
self.string_literals.insert(text.to_string(), data_id);
data_id
}
}
fn get_or_declare_func(
&mut self,
name: &str,
public: bool,
param_types: &[BackendType],
return_type: Option<&Type>,
) -> FuncId {
if let Some(&id) = self.declared_funcs.get(name) {
return id;
}
let s_name = name;
let linkage = if public {
Linkage::Export
} else {
Linkage::Local
};
let ptr_type = self.module.target_config().pointer_type();
let mut sig = self.module.make_signature();
for ty in param_types {
sig.params.push(AbiParam::new(ty.to_clif_type(ptr_type)));
}
if let Some(front_ret) = return_type {
let abi = AbiType::from_frontend(front_ret, &self.struct_defs, ptr_type);
abi.append_to_signature_returns(&mut sig);
} else {
sig.returns.push(AbiParam::new(types::I64));
}
let id = self.module.declare_function(s_name, linkage, &sig).unwrap();
self.declared_funcs.insert(name.to_string(), id);
id
}
/// Materialises a TAC `Value` as a Cranelift SSA value: constants become
/// immediates, string literals become data references, and named values
/// are either loaded from their stack slot (if they're an out-of-line aggregate) or read from their SSA variable.
///
/// This is the single place that knows how to turn a `Value` into a
/// `cranelift::prelude::Value`; every instruction handler below that
/// needs to read an operand goes through here.
#[allow(clippy::too_many_arguments)]
fn lower_value(
&mut self,
builder: &mut FunctionBuilder,
value: &Value,
var_types: &ScopedMap,
var_map: &mut HashMap<String, Variable>,
var_idx: &mut usize,
stack_slot_map: &HashMap<String, StackSlot>,
ptr_type: cranelift::prelude::Type,
) -> cranelift::prelude::Value {
let ty = value_backend_type(value, var_types).to_clif_type(ptr_type);
match value {
Value::Const(n) => builder.ins().iconst(ty, *n),
Value::Bool(b) => builder.ins().iconst(ty, if *b { 1 } else { 0 }),
Value::Void => builder.ins().iconst(ty, 0),
Value::Char(ch) => {
let mut buffer = [0; 4];
let byte_val = ch.encode_utf8(&mut buffer).as_bytes()[0];
builder.ins().iconst(ty, byte_val as i64)
}
Value::Str(text) => {
let data_id = self.declare_string_literal(text);
let local_ref = self.module.declare_data_in_func(data_id, builder.func);
builder.ins().global_value(ty, local_ref)
}
Value::Var(name) | Value::Temp(name) => {
if let Some(&slot) = stack_slot_map.get(name) {
builder.ins().stack_load(ty, slot, 0)
} else {
let var_ty = value_backend_type(value, var_types);
let v = get_or_create_var(builder, var_map, var_idx, name, var_ty, ptr_type);
builder.use_var(v)
}
}
}
}
pub fn compile_function(
&mut self,
name: &str,
public: bool,
insts: &[&Instruction],
ctx: &mut Context,
func_ctx: &mut FunctionBuilderContext,
incoming_var_types: &ScopedMap,
) {
self.defined_funcs.insert(name.to_string());
let mut terminated = false;
let ptr_type = self.module.target_config().pointer_type();
let mut var_types = incoming_var_types.clone();
var_types.push_scope();
let mut param_idx = 0;
for inst in insts {
if let Instruction::Param { p } = inst {
let resolved_ty = if let Some(func_sig) = self
.functions
.get(name)
.or_else(|| self.functions.get(strip_mangling(name)))
{
if let Some(formal_ty) = func_sig.param_types.get(param_idx) {
formal_ty.clone()
} else {
incoming_var_types.get(p).cloned().unwrap_or(Type::Int)
}
} else {
incoming_var_types.get(p).cloned().unwrap_or(Type::Int)
};
var_types.insert(p.clone(), resolved_ty);
param_idx += 1;
}
}
let current_func_ret_front = self
.functions
.get(name)
.or_else(|| self.functions.get(strip_mangling(name)))
.map(|sig| sig.return_type.clone());
let mut sig = self.module.make_signature();
if let Some(ref front_ret) = current_func_ret_front {
let abi = AbiType::from_frontend(front_ret, &self.struct_defs, ptr_type);
abi.append_to_signature_returns(&mut sig);
} else {
sig.returns.push(AbiParam::new(types::I64));
}
let mut param_backend_types: Vec<BackendType> = Vec::new();
let mut param_idx = 0;
for inst in insts {
if let Instruction::Param { p } = inst {
let ty = if let Some(func_sig) = self
.functions
.get(name)
.or_else(|| self.functions.get(strip_mangling(name)))
{
if let Some(formal_ty) = func_sig.param_types.get(param_idx) {
BackendType::from_frontend(formal_ty)
} else {
var_types
.get(p)
.map(BackendType::from_frontend)
.unwrap_or(BackendType::Int64)
}
} else {
var_types
.get(p)
.map(BackendType::from_frontend)
.unwrap_or(BackendType::Int64)
};
sig.params.push(AbiParam::new(ty.to_clif_type(ptr_type)));
param_backend_types.push(ty);
param_idx += 1;
}
}
let func_id = self.get_or_declare_func(
name,
public,
¶m_backend_types,
current_func_ret_front.as_ref(),
);
self.declared_funcs.insert(name.to_string(), func_id);
ctx.func.signature = sig;
let mut builder = FunctionBuilder::new(&mut ctx.func, func_ctx);
let entry_block = builder.create_block();
builder.append_block_params_for_function_params(entry_block);
builder.switch_to_block(entry_block);
let mut var_map: HashMap<String, Variable> = HashMap::new();
let mut stack_slot_map: HashMap<String, StackSlot> = HashMap::new();
let mut var_idx = 0;
let mut block_map: HashMap<String, Block> = HashMap::new();
for inst in insts {
if let Instruction::Param { p } = inst {
let frontend_type = var_types
.get(p)
.or_else(|| {
let combined = format!("{}::{}", name, p);
var_types.get(&combined)
})
.or_else(|| {
p.split("::")
.last()
.and_then(|suffix| var_types.get(suffix))
});
if let Some(frontend_type) = frontend_type {
let abi = AbiType::from_frontend(frontend_type, &self.struct_defs, ptr_type);
if let AbiType::Aggregate { total_size, .. } = abi
&& !stack_slot_map.contains_key(p)
{
let slot = builder.create_sized_stack_slot(StackSlotData::new(
StackSlotKind::ExplicitSlot,
total_size,
));
stack_slot_map.insert(p.clone(), slot);
}
}
}
if let Instruction::Store { ptr, source } = inst {
for val in [ptr, source] {
if let Value::Var(var_name) | Value::Temp(var_name) = val {
let frontend_type = var_types
.get(var_name)
.or_else(|| {
let combined = format!("{}::{}", name, var_name);
var_types.get(&combined)
})
.or_else(|| {
var_name
.split("::")
.last()
.and_then(|suffix| var_types.get(suffix))
});
if let Some(frontend_type) = frontend_type {
let abi =
AbiType::from_frontend(frontend_type, &self.struct_defs, ptr_type);
if let AbiType::Aggregate { total_size, .. } = abi
&& !stack_slot_map.contains_key(var_name)
{
let slot = builder.create_sized_stack_slot(StackSlotData::new(
StackSlotKind::ExplicitSlot,
total_size,
));
stack_slot_map.insert(var_name.clone(), slot);
}
}
}
}
}
if let Instruction::Assign { dst: dest_name, .. }
| Instruction::Load { dst: dest_name, .. }
| Instruction::Binary { dst: dest_name, .. }
| Instruction::Unary { dst: dest_name, .. } = inst
{
let frontend_type = var_types
.get(dest_name)
.or_else(|| {
let combined = format!("{}::{}", name, dest_name);
var_types.get(&combined)
})
.or_else(|| {
dest_name
.split("::")
.last()
.and_then(|suffix| var_types.get(suffix))
});
if let Some(frontend_type) = frontend_type {
let abi = AbiType::from_frontend(frontend_type, &self.struct_defs, ptr_type);
if let AbiType::Aggregate { total_size, .. } = abi
&& !stack_slot_map.contains_key(dest_name)
{
let slot = builder.create_sized_stack_slot(StackSlotData::new(
StackSlotKind::ExplicitSlot,
total_size,
));
stack_slot_map.insert(dest_name.clone(), slot);
}
}
}
if let Instruction::Unary {
dst: dest_name,
op,
value: src,
} = inst
{
let f_ty = var_types
.get(dest_name)
.or_else(|| {
let combined = format!("{}::{}", name, dest_name);
var_types.get(&combined)
})
.or_else(|| {
dest_name
.split("::")
.last()
.and_then(|suffix| var_types.get(suffix))
});
if let Some(frontend_type) = f_ty {
let abi = AbiType::from_frontend(frontend_type, &self.struct_defs, ptr_type);
if let AbiType::Aggregate { total_size, .. } = abi
&& !stack_slot_map.contains_key(dest_name)
{
let slot = builder.create_sized_stack_slot(StackSlotData::new(
StackSlotKind::ExplicitSlot,
total_size,
));
stack_slot_map.insert(dest_name.clone(), slot);
}
}
if *op == IrOp::Ref
&& let Value::Var(src_name) | Value::Temp(src_name) = src
{
let src_front_ty = var_types
.get(src_name)
.or_else(|| {
let combined = format!("{}::{}", name, src_name);
var_types.get(&combined)
})
.or_else(|| {
src_name
.split("::")
.last()
.and_then(|suffix| var_types.get(suffix))
});
if let Some(src_front_ty) = src_front_ty {
let abi = AbiType::from_frontend(src_front_ty, &self.struct_defs, ptr_type);
let size = match abi {
AbiType::Aggregate { total_size, .. } => total_size,
_ => BackendType::from_frontend(src_front_ty).byte_size(),
};
if !stack_slot_map.contains_key(src_name) {
let slot = builder.create_sized_stack_slot(StackSlotData::new(
StackSlotKind::ExplicitSlot,
size,
));
stack_slot_map.insert(src_name.clone(), slot);
}
}
}
}
if let Instruction::Binary { dst: dest_name, .. }
| Instruction::Load { dst: dest_name, .. }
| Instruction::Assign { dst: dest_name, .. } = inst
{
let f_ty = var_types
.get(dest_name)
.or_else(|| {
let combined = format!("{}::{}", name, dest_name);
var_types.get(&combined)
})
.or_else(|| {
dest_name
.split("::")
.last()
.and_then(|suffix| var_types.get(suffix))
});
if let Some(frontend_type) = f_ty {
let abi = AbiType::from_frontend(frontend_type, &self.struct_defs, ptr_type);
if let AbiType::Aggregate { total_size, .. } = abi
&& !stack_slot_map.contains_key(dest_name)
{
let slot = builder.create_sized_stack_slot(StackSlotData::new(
StackSlotKind::ExplicitSlot,
total_size,
));
stack_slot_map.insert(dest_name.clone(), slot);
}
}
}
if let Instruction::Call {
dest: Some(dest_name),
..
} = inst
{
let frontend_type = var_types
.get(dest_name)
.or_else(|| {
let combined = format!("{}::{}", name, dest_name);
var_types.get(&combined)
})
.or_else(|| {
dest_name
.split("::")
.last()
.and_then(|suffix| var_types.get(suffix))
});
if let Some(frontend_type) = frontend_type {
let abi = AbiType::from_frontend(frontend_type, &self.struct_defs, ptr_type);
if let AbiType::Aggregate { total_size, .. } = abi
&& !stack_slot_map.contains_key(dest_name)
{
let slot = builder.create_sized_stack_slot(StackSlotData::new(
StackSlotKind::ExplicitSlot,
total_size,
));
stack_slot_map.insert(dest_name.clone(), slot);
}
}
}
}
let mut all_blocks = Vec::new();
all_blocks.push(entry_block);
let mut current_param_idx = 0;
for inst in insts {
if let Instruction::Param { p } = inst {
let arg_val = builder.block_params(entry_block)[current_param_idx];
current_param_idx += 1;
let ty = var_types
.get(p)
.map(BackendType::from_frontend)
.unwrap_or(BackendType::Int64);
let frontend_type = var_types.get(p).unwrap_or(&Type::Int);
let abi = AbiType::from_frontend(frontend_type, &self.struct_defs, ptr_type);
if let AbiType::Aggregate { total_size, .. } = abi {
let slot = *stack_slot_map.get(p).unwrap();
let addr = builder.ins().stack_addr(ptr_type, slot, 0);
let size_val = builder.ins().iconst(ptr_type, total_size as i64);
builder.call_memcpy(self.module.target_config(), addr, arg_val, size_val);
} else {
let v = get_or_create_var(
&mut builder,
&mut var_map,
&mut var_idx,
p,
ty,
ptr_type,
);
builder.def_var(v, arg_val);
}
}
}
for (var_name, &slot) in &stack_slot_map {
let is_param = insts.iter().any(|inst| {
if let Instruction::Param { p } = inst {
p == var_name
} else {
false
}
});
if is_param {
continue;
}
let frontend_type = var_types
.get(var_name)
.or_else(|| {
let combined = format!("{}::{}", name, var_name);
var_types.get(&combined)
})
.or_else(|| {
var_name
.split("::")
.last()
.and_then(|suffix| var_types.get(suffix))
});
if let Some(frontend_type) = frontend_type {
let abi = AbiType::from_frontend(frontend_type, &self.struct_defs, ptr_type);
if let AbiType::Aggregate { total_size, .. } = abi {
let mut offset = 0;
while offset < total_size {
let remaining = total_size - offset;
if remaining >= 8 {
let zero = builder.ins().iconst(types::I64, 0);
builder.ins().stack_store(zero, slot, offset as i32);
offset += 8;
} else if remaining >= 4 {
let zero = builder.ins().iconst(types::I32, 0);
builder.ins().stack_store(zero, slot, offset as i32);
offset += 4;
} else if remaining >= 2 {
let zero = builder.ins().iconst(types::I16, 0);
builder.ins().stack_store(zero, slot, offset as i32);
offset += 2;
} else {
let zero = builder.ins().iconst(types::I8, 0);
builder.ins().stack_store(zero, slot, offset as i32);
offset += 1;
}
}
}
}
}
let mut call_args: Vec<cranelift::prelude::Value> = Vec::new();
let mut call_arg_types: Vec<BackendType> = Vec::new();
let mut param_index = 0;
for inst in insts {
if terminated && !matches!(inst, Instruction::Label(_)) {
continue;
}
match inst {
Instruction::FunctionLabel(_) | Instruction::Extern { .. } => {}
Instruction::Label(lbl_name) => {
let blk = get_or_create_block(
&mut builder,
&mut block_map,
&mut all_blocks,
lbl_name,
);
all_blocks.push(blk);
let current_blk = builder.current_block();
let needs_jump = if let Some(curr) = current_blk {
match builder.func.layout.last_inst(curr) {
Some(last_inst) => {
!builder.func.dfg.insts[last_inst].opcode().is_terminator()
}
None => true,
}
} else {
false
};
if needs_jump {
builder.ins().jump(blk, &[]);
}
builder.switch_to_block(blk);
terminated = false;
}
Instruction::Param { p } => {
let arg_val = builder.block_params(entry_block)[param_index];
let frontend_type = var_types
.get(p)
.or_else(|| {
let combined = format!("{}::{}", name, p);
var_types.get(&combined)
})
.or_else(|| {
p.split("::")
.last()
.and_then(|suffix| var_types.get(suffix))
})
.unwrap_or(&Type::Int);
let abi = AbiType::from_frontend(frontend_type, &self.struct_defs, ptr_type);
match abi {
AbiType::Aggregate { .. } => {}
_ => {
let dest_ty = BackendType::from_frontend(frontend_type);
let var_id = get_or_create_var(
&mut builder,
&mut var_map,
&mut var_idx,
p,
dest_ty,
ptr_type,
);
builder.def_var(var_id, arg_val);
}
}
param_index += 1;
}
Instruction::Arg { value } => {
if let Value::Var(var_name) | Value::Temp(var_name) = value {
let frontend_type = var_types
.get(var_name)
.or_else(|| {
let combined = format!("{}::{}", name, var_name);
var_types.get(&combined)
})
.or_else(|| {
var_name
.split("::")
.last()
.and_then(|suffix| var_types.get(suffix))
});
if let Some(frontend_type) = frontend_type {
let abi =
AbiType::from_frontend(frontend_type, &self.struct_defs, ptr_type);
if let AbiType::Aggregate { .. } = abi {
let slot = *stack_slot_map
.get(var_name)
.or_else(|| {
let combined = format!("{}::{}", name, var_name);
stack_slot_map.get(&combined)
})
.or_else(|| {
var_name
.split("::")
.last()
.and_then(|suffix| stack_slot_map.get(suffix))
})
.unwrap_or_else(|| {
panic!("Arg stack slot not found for: {}", var_name)
});
let addr_val = builder.ins().stack_addr(ptr_type, slot, 0);
call_args.push(addr_val);
call_arg_types.push(BackendType::Ptr);
continue;
}
}
}
let arg_ty = value_backend_type(value, &var_types);
let val = self.lower_value(
&mut builder,
value,
&var_types,
&mut var_map,
&mut var_idx,
&stack_slot_map,
ptr_type,
);
call_args.push(val);
call_arg_types.push(arg_ty);
}
Instruction::Cast {
dst: dest_name,
cast_ty,
value,
to_type,
} => {
let source_val = self.lower_value(
&mut builder,
value,
&var_types,
&mut var_map,
&mut var_idx,
&stack_slot_map,
ptr_type,
);
let dest_backend_ty = BackendType::from_frontend(to_type);
let clif_target_ty = dest_backend_ty.to_clif_type(ptr_type);
let casted_val = match cast_ty {
CastType::BitCast => {
// A bitcast reinterprets the bits without changing them
builder
.ins()
.bitcast(clif_target_ty, MemFlags::new(), source_val)
}
CastType::Extend => {
// If signed use ireduce/sextend. For safety with generic ints,
// standard zero/sign extension depending on signedness layout:
// Assuming unsigned/zero-extension default here:
builder.ins().uextend(clif_target_ty, source_val)
}
CastType::Truncate => {
// High bits are chopped off
builder.ins().ireduce(clif_target_ty, source_val)
}
};
if let Some(&slot) = stack_slot_map.get(dest_name) {
builder.ins().stack_store(casted_val, slot, 0);
} else {
let v_dest = get_or_create_var(
&mut builder,
&mut var_map,
&mut var_idx,
dest_name,
dest_backend_ty,
ptr_type,
);
builder.def_var(v_dest, casted_val);
}
}
Instruction::Call {
name: callee_name,
dest,
..
} => {
let mut final_sig = self.module.make_signature();
for ty in &call_arg_types {
final_sig
.params
.push(AbiParam::new(ty.to_clif_type(ptr_type)));
}
let callee_ret_front = self
.functions
.get(callee_name)
.or_else(|| self.functions.get(strip_mangling(callee_name)))
.map(|sig| sig.return_type.clone());
if let Some(ref front_ret) = callee_ret_front {
let abi = AbiType::from_frontend(front_ret, &self.struct_defs, ptr_type);
abi.append_to_signature_returns(&mut final_sig);
} else if let Some(d_name) = dest {
if let Some(front_ret) = var_types.get(d_name) {
let abi =
AbiType::from_frontend(front_ret, &self.struct_defs, ptr_type);
abi.append_to_signature_returns(&mut final_sig);
} else {
final_sig.returns.push(AbiParam::new(types::I64));
}
} else {
final_sig.returns.push(AbiParam::new(types::I64));
}
let fn_id = if let Some(&id) = self.declared_funcs.get(callee_name) {
id
} else {
let stripped = strip_mangling(callee_name);
if let Some(&id) = self.declared_funcs.get(stripped) {
id
} else {
let linkage = self.linkage_for_callee(callee_name);
let id = self
.module
.declare_function(callee_name, linkage, &final_sig)
.unwrap();
self.declared_funcs.insert(callee_name.to_string(), id);
id
}
};
let local_func = self.module.declare_func_in_func(fn_id, builder.func);
let inst_call = builder.ins().call(local_func, &call_args);
let call_results = builder.inst_results(inst_call).to_vec();
if let Some(dest_name) = dest {
let frontend_type = var_types
.get(dest_name)
.or_else(|| {
let combined = format!("{}::{}", name, dest_name);
var_types.get(&combined)
})
.or_else(|| {
dest_name
.split("::")
.last()
.and_then(|suffix| var_types.get(suffix))
})
.unwrap_or(&Type::Int);
let abi =
AbiType::from_frontend(frontend_type, &self.struct_defs, ptr_type);
if let AbiType::Aggregate {
chunk_count,
total_size,
} = abi
{
if !stack_slot_map.contains_key(dest_name) {
let slot = builder.create_sized_stack_slot(StackSlotData::new(
StackSlotKind::ExplicitSlot,
total_size,
));
stack_slot_map.insert(dest_name.clone(), slot);
}
let slot = *stack_slot_map.get(dest_name).unwrap();
for (i, _item) in call_results.iter().enumerate().take(chunk_count) {
let val_part = call_results[i];
builder.ins().stack_store(val_part, slot, (i * 8) as i32);
}
} else {
let dest_ty = BackendType::from_frontend(frontend_type);
if !call_results.is_empty() {
let res_val = call_results[0];
if let Some(&slot) = stack_slot_map.get(dest_name) {
builder.ins().stack_store(res_val, slot, 0);
} else {
let v = get_or_create_var(
&mut builder,
&mut var_map,
&mut var_idx,
dest_name,
dest_ty,
ptr_type,
);
builder.def_var(v, res_val);
}
}
}
}
call_args.clear();
call_arg_types.clear();
}
Instruction::Assign {
dst: dst_name,
src: value,
} => {
let frontend_type = var_types
.get(dst_name)
.or_else(|| {
let combined = format!("{}::{}", name, dst_name);
var_types.get(&combined)
})
.or_else(|| {
dst_name
.split("::")
.last()
.and_then(|suffix| var_types.get(suffix))
})
.unwrap_or(&Type::Int);
let abi = AbiType::from_frontend(frontend_type, &self.struct_defs, ptr_type);
if let AbiType::Aggregate {
total_size,
chunk_count,
} = abi
{
let dest_slot = *stack_slot_map
.get(dst_name)
.or_else(|| {
let combined = format!("{}::{}", name, dst_name);
stack_slot_map.get(&combined)
})
.or_else(|| {
dst_name
.split("::")
.last()
.and_then(|suffix| stack_slot_map.get(suffix))
})
.unwrap_or_else(|| {
panic!("Destination block space unallocated: {}", dst_name)
});
let dest_addr = builder.ins().stack_addr(ptr_type, dest_slot, 0);
match value {
Value::Var(src_name) | Value::Temp(src_name) => {
let src_slot = stack_slot_map.get(src_name)
.copied()
.or_else(|| {
let combined_prefix = format!("{}::{}", name, src_name);
stack_slot_map.get(&combined_prefix).copied()
})
.or_else(|| {
src_name.split("::").last().and_then(|suffix| stack_slot_map.get(suffix).copied())
})
.unwrap_or_else(|| {
panic!(
"Source block space unallocated. Tried: '{}', '{}::{}', and '{}'",
src_name, name, src_name, src_name.split("::").last().unwrap_or("")
)
});
let src_addr = builder.ins().stack_addr(ptr_type, src_slot, 0);
let size_val = builder.ins().iconst(ptr_type, total_size as i64);
builder.call_memcpy(
self.module.target_config(),
dest_addr,
src_addr,
size_val,
);
}
Value::Const(0) => {
let zero_val = builder.ins().iconst(types::I64, 0);
for i in 0..chunk_count {
builder
.ins()
.stack_store(zero_val, dest_slot, (i * 8) as i32);
}
}
_ => panic!("Direct block assignment from literals is unsupported."),
}
} else {
let dest_ty = BackendType::from_frontend(frontend_type);
let val = self.lower_value(
&mut builder,
value,
&var_types,
&mut var_map,
&mut var_idx,
&stack_slot_map,
ptr_type,
);
if let Some(&slot) = stack_slot_map.get(dst_name) {
builder.ins().stack_store(val, slot, 0);
} else {
let v_dest = get_or_create_var(
&mut builder,
&mut var_map,
&mut var_idx,
dst_name,
dest_ty,
ptr_type,
);
builder.def_var(v_dest, val);
}
}
}
Instruction::Load {
dst: dest_name,
ptr,
..
} => {
let ptr_val = self.lower_value(
&mut builder,
ptr,
&var_types,
&mut var_map,
&mut var_idx,
&stack_slot_map,
ptr_type,
);
let dest_ty = var_types
.get(dest_name)
.map(BackendType::from_frontend)
.unwrap_or(BackendType::Int64);
let mut handled_as_aggregate = false;
let dest_f_ty = var_types.get(dest_name);
if let Some(frontend_type) = dest_f_ty {
let abi =
AbiType::from_frontend(frontend_type, &self.struct_defs, ptr_type);
if let AbiType::Aggregate { total_size, .. } = abi
&& let Some(&dest_slot) = stack_slot_map.get(dest_name)
{
let dest_addr = builder.ins().stack_addr(ptr_type, dest_slot, 0);
let size_val = builder.ins().iconst(ptr_type, total_size as i64);
builder.call_memcpy(
self.module.target_config(),
dest_addr,
ptr_val,
size_val,
);
handled_as_aggregate = true;
}
}
if !handled_as_aggregate {
let clif_ty = dest_ty.to_clif_type(ptr_type);
let loaded_val = builder.ins().load(clif_ty, MemFlags::new(), ptr_val, 0);
if let Some(&slot) = stack_slot_map.get(dest_name) {
builder.ins().stack_store(loaded_val, slot, 0);
} else {
let v_dest = get_or_create_var(
&mut builder,
&mut var_map,
&mut var_idx,
dest_name,
dest_ty,
ptr_type,
);
builder.def_var(v_dest, loaded_val);
}
}
}
Instruction::Store { ptr, source: value } => {
let ptr_val = self.lower_value(
&mut builder,
ptr,
&var_types,
&mut var_map,
&mut var_idx,
&stack_slot_map,
ptr_type,
);
let mut handled_as_aggregate = false;
if let Value::Var(src_name) | Value::Temp(src_name) = value
&& let Some(frontend_type) = var_types.get(src_name)
{
let abi =
AbiType::from_frontend(frontend_type, &self.struct_defs, ptr_type);
if let AbiType::Aggregate { total_size, .. } = abi {
let slot = stack_slot_map
.get(src_name)
.copied()
.or_else(|| {
let combined = format!("{}::{}", src_name, src_name);
stack_slot_map.get(&combined).copied()
})
.or_else(|| {
src_name
.split("::")
.last()
.and_then(|suffix| stack_slot_map.get(suffix).copied())
});
let src_addr = if let Some(s) = slot {
builder.ins().stack_addr(ptr_type, s, 0)
} else {
self.lower_value(
&mut builder,
value,
&var_types,
&mut var_map,
&mut var_idx,
&stack_slot_map,
ptr_type,
)
};
let size_val = builder.ins().iconst(ptr_type, total_size as i64);
builder.call_memcpy(
self.module.target_config(),
ptr_val,
src_addr,
size_val,
);
handled_as_aggregate = true;
}
}
if !handled_as_aggregate {
let val = self.lower_value(
&mut builder,
value,
&var_types,
&mut var_map,
&mut var_idx,
&stack_slot_map,
ptr_type,
);
builder.ins().store(MemFlags::new(), val, ptr_val, 0);
}
}
Instruction::Binary {
dst: dest,
op,
lhs,
rhs,
} => {
let dest_ty = var_types
.get(dest)
.map(BackendType::from_frontend)
.unwrap_or(BackendType::Int64);
let v_dest = get_or_create_var(
&mut builder,
&mut var_map,
&mut var_idx,
dest,
dest_ty,
ptr_type,
);
let lhs_val = self.lower_value(
&mut builder,
lhs,
&var_types,
&mut var_map,
&mut var_idx,
&stack_slot_map,
ptr_type,
);
let rhs_val = self.lower_value(
&mut builder,
rhs,
&var_types,
&mut var_map,
&mut var_idx,
&stack_slot_map,
ptr_type,
);
let is_unsigned = matches!(dest_ty, BackendType::UInt32 | BackendType::UInt64)
|| match lhs {
Value::Var(name) | Value::Temp(name) => {
if let Some(t) = var_types.get(name) {
matches!(
BackendType::from_frontend(t),
BackendType::UInt32 | BackendType::UInt64
)
} else {
false
}
}
_ => false,
};
let res = match op {
IrOp::Add => builder.ins().iadd(lhs_val, rhs_val),
IrOp::Sub => builder.ins().isub(lhs_val, rhs_val),
IrOp::Mul => builder.ins().imul(lhs_val, rhs_val),
IrOp::Div => {
if is_unsigned {
builder.ins().udiv(lhs_val, rhs_val)
} else {
builder.ins().sdiv(lhs_val, rhs_val)
}
}
IrOp::Mod => {
if is_unsigned {
builder.ins().urem(lhs_val, rhs_val)
} else {
builder.ins().srem(lhs_val, rhs_val)
}
}
IrOp::Eq => builder.ins().icmp(IntCC::Equal, lhs_val, rhs_val),
IrOp::NEq => builder.ins().icmp(IntCC::NotEqual, lhs_val, rhs_val),
IrOp::And => {
let lhs_bool = builder.ins().icmp_imm(IntCC::NotEqual, lhs_val, 0);
let rhs_bool = builder.ins().icmp_imm(IntCC::NotEqual, rhs_val, 0);
let res_bool = builder.ins().band(lhs_bool, rhs_bool);
let cl_type = dest_ty.to_clif_type(ptr_type);
let target_bits = cl_type.bits();
if target_bits > 8 {
builder.ins().uextend(cl_type, res_bool)
} else if target_bits < 8 {
builder.ins().ireduce(cl_type, res_bool)
} else {
res_bool
}
}
IrOp::Or => {
let lhs_bool = builder.ins().icmp_imm(IntCC::NotEqual, lhs_val, 0);
let rhs_bool = builder.ins().icmp_imm(IntCC::NotEqual, rhs_val, 0);
let res_bool = builder.ins().bor(lhs_bool, rhs_bool);
let cl_type = dest_ty.to_clif_type(ptr_type);
let target_bits = cl_type.bits();
if target_bits > 8 {
builder.ins().uextend(cl_type, res_bool)
} else if target_bits < 8 {
builder.ins().ireduce(cl_type, res_bool)
} else {
res_bool
}
}
IrOp::Lt => {
let cond = if is_unsigned {
IntCC::UnsignedLessThan
} else {
IntCC::SignedLessThan
};
builder.ins().icmp(cond, lhs_val, rhs_val)
}
IrOp::LtE => {
let cond = if is_unsigned {
IntCC::UnsignedLessThanOrEqual
} else {
IntCC::SignedLessThanOrEqual
};
builder.ins().icmp(cond, lhs_val, rhs_val)
}
IrOp::Gt => {
let cond = if is_unsigned {
IntCC::UnsignedGreaterThan
} else {
IntCC::SignedGreaterThan
};
builder.ins().icmp(cond, lhs_val, rhs_val)
}
IrOp::GtE => {
let cond = if is_unsigned {
IntCC::UnsignedGreaterThanOrEqual
} else {
IntCC::SignedGreaterThanOrEqual
};
builder.ins().icmp(cond, lhs_val, rhs_val)
}
IrOp::Neg | IrOp::Pos | IrOp::Ref | IrOp::Not => unreachable!(),
};
builder.def_var(v_dest, res);
}
Instruction::Unary {
dst: dest,
op,
value: src,
} => {
let dest_ty = var_types
.get(dest)
.map(BackendType::from_frontend)
.unwrap_or(BackendType::Int64);
let v_dest = get_or_create_var(
&mut builder,
&mut var_map,
&mut var_idx,
dest,
dest_ty,
ptr_type,
);
let src_val = self.lower_value(
&mut builder,
src,
&var_types,
&mut var_map,
&mut var_idx,
&stack_slot_map,
ptr_type,
);
let res = match op {
IrOp::Neg => builder.ins().ineg(src_val),
IrOp::Pos => src_val,
IrOp::Not => {
let is_zero = builder.ins().icmp_imm(
cranelift_codegen::ir::condcodes::IntCC::Equal,
src_val,
0,
);
let clif_ty = dest_ty.to_clif_type(ptr_type);
let one = builder.ins().iconst(clif_ty, 1);
let zero = builder.ins().iconst(clif_ty, 0);
builder.ins().select(is_zero, one, zero)
}
IrOp::Ref => {
if let Value::Var(name) | Value::Temp(name) = src {
let slot = stack_slot_map
.get(name)
.copied()
.or_else(|| {
let combined = format!("{}::{}", name, name);
stack_slot_map.get(&combined).copied()
})
.or_else(|| {
name.split("::")
.last()
.and_then(|suffix| stack_slot_map.get(suffix).copied())
});
let slot = if let Some(s) = slot {
s
} else {
let src_front_ty =
var_types.get(name).cloned().unwrap_or(Type::Int);
let abi = AbiType::from_frontend(
&src_front_ty,
&self.struct_defs,
ptr_type,
);
let size = match abi {
AbiType::Aggregate { total_size, .. } => total_size,
_ => BackendType::from_frontend(&src_front_ty).byte_size(),
};
let size = if size == 0 { 1 } else { size };
let slot = builder.create_sized_stack_slot(StackSlotData::new(
StackSlotKind::ExplicitSlot,
size,
));
let var_ty = value_backend_type(src, &var_types);
let v = get_or_create_var(
&mut builder,
&mut var_map,
&mut var_idx,
name,
var_ty,
ptr_type,
);
let current_val = builder.use_var(v);
builder.ins().stack_store(current_val, slot, 0);
stack_slot_map.insert(name.clone(), slot);
slot
};
builder.ins().stack_addr(ptr_type, slot, 0)
} else {
panic!("Cannot take a reference of a non-lvalue: {:?}", src);
}
}
_ => panic!("Unsupported unary structural instruction operation"),
};
if let Some(&slot) = stack_slot_map.get(dest) {
builder.ins().stack_store(res, slot, 0);
} else {
builder.def_var(v_dest, res);
}
}
Instruction::JumpIfFalse { cond, target } => {
let cond_val = self.lower_value(
&mut builder,
cond,
&var_types,
&mut var_map,
&mut var_idx,
&stack_slot_map,
ptr_type,
);
let f_blk =
get_or_create_block(&mut builder, &mut block_map, &mut all_blocks, target);
let next_blk = builder.create_block();
all_blocks.push(next_blk);
builder.ins().brif(cond_val, next_blk, &[], f_blk, &[]);
builder.switch_to_block(next_blk);
terminated = false;
}
Instruction::Jump(lbl) => {
let blk =
get_or_create_block(&mut builder, &mut block_map, &mut all_blocks, lbl);
builder.ins().jump(blk, &[]);
terminated = true;
}
Instruction::Return { value } => {
if let Some(front_ret) = ¤t_func_ret_front {
let abi = AbiType::from_frontend(front_ret, &self.struct_defs, ptr_type);
match abi {
AbiType::Void => {
builder.ins().return_(&[]);
}
AbiType::Primitive(clif_ty) => {
let val = match value {
Value::Const(n) => builder.ins().iconst(clif_ty, *n),
Value::Bool(b) => {
builder.ins().iconst(clif_ty, if *b { 1 } else { 0 })
}
Value::Var(name) | Value::Temp(name) => {
let ty = var_types
.get(name)
.map(BackendType::from_frontend)
.unwrap_or(BackendType::Int64);
let v = get_or_create_var(
&mut builder,
&mut var_map,
&mut var_idx,
name,
ty,
ptr_type,
);
builder.use_var(v)
}
Value::Void => builder.ins().iconst(clif_ty, 0),
_ => panic!("Primitive unexpected literal type matching"),
};
builder.ins().return_(&[val]);
}
AbiType::Aggregate { chunk_count, .. } => {
if let Value::Var(name) | Value::Temp(name) = value {
if !stack_slot_map.contains_key(name) {
panic!(
"Return aggregate slot missing for '{}' - ensure Call handler creates stack slot for aggregate results.",
name
);
}
let slot = *stack_slot_map.get(name).unwrap();
let mut chunks = Vec::new();
for i in 0..chunk_count {
let val_part = builder.ins().stack_load(
types::I64,
slot,
(i * 8) as i32,
);
chunks.push(val_part);
}
builder.ins().return_(&chunks);
} else {
panic!(
"Returning structural structures from raw primitive literal fields unhandled."
);
}
}
}
} else {
builder.ins().return_(&[]);
}
terminated = true;
}
}
}
let default_ret_abi = current_func_ret_front
.as_ref()
.map(|front_ret| AbiType::from_frontend(front_ret, &self.struct_defs, ptr_type))
.unwrap_or(AbiType::Primitive(types::I64));
for &block in &all_blocks {
let needs_fallback = match builder.func.layout.last_inst(block) {
Some(last_inst) => !builder.func.dfg.insts[last_inst].opcode().is_terminator(),
None => true,
};
if needs_fallback {
builder.switch_to_block(block);
let ret_vals: Vec<_> = match &default_ret_abi {
AbiType::Void => Vec::new(),
AbiType::Primitive(clif_ty) => {
vec![builder.ins().iconst(*clif_ty, 0)]
}
AbiType::Aggregate { chunk_count, .. } => (0..*chunk_count)
.map(|_| builder.ins().iconst(types::I64, 0))
.collect(),
};
builder.ins().return_(&ret_vals);
}
}
let mut sealed_blocks = std::collections::HashSet::new();
builder.seal_block(entry_block);
sealed_blocks.insert(entry_block);
for &block in &all_blocks {
if sealed_blocks.insert(block) {
builder.seal_block(block);
}
}
builder.finalize();
match self.module.define_function(func_id, ctx) {
Ok(_) => {}
Err(cranelift_module::ModuleError::DuplicateDefinition(fnname)) => {
eprintln!(
"warning: function '{}' has been defined more than once, more recently seen definition has been ignored.",
fnname
);
}
Err(e) => panic!("Failed to define function: {:?}", e),
}
ctx.clear();
}
pub fn finish(self) -> cranelift_object::ObjectProduct {
self.module.finish()
}
}