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
use super::*;
use crate::ast::{Program, Statement, WordDef};
use crate::config::CompilerConfig;
use std::collections::HashMap;
#[test]
fn test_codegen_hello_world() {
let mut codegen = CodeGen::new();
let program = Program {
includes: vec![],
unions: vec![],
words: vec![WordDef {
name: "main".to_string(),
effect: None,
body: vec![
Statement::StringLiteral("Hello, World!".to_string()),
Statement::WordCall {
name: "io.write-line".to_string(),
span: None,
},
],
source: None,
allowed_lints: vec![],
}],
};
let ir = codegen
.codegen_program(&program, HashMap::new(), HashMap::new())
.unwrap();
assert!(ir.contains("define i32 @main(i32 %argc, ptr %argv)"));
// main uses C calling convention (no tailcc) since it's called from C runtime
assert!(ir.contains("define ptr @seq_main(ptr %stack)"));
assert!(ir.contains("call ptr @patch_seq_push_string"));
assert!(ir.contains("call ptr @patch_seq_write_line"));
assert!(ir.contains("\"Hello, World!\\00\""));
}
#[test]
fn test_codegen_io_write() {
// Test io.write (write without newline)
let mut codegen = CodeGen::new();
let program = Program {
includes: vec![],
unions: vec![],
words: vec![WordDef {
name: "main".to_string(),
effect: None,
body: vec![
Statement::StringLiteral("no newline".to_string()),
Statement::WordCall {
name: "io.write".to_string(),
span: None,
},
],
source: None,
allowed_lints: vec![],
}],
};
let ir = codegen
.codegen_program(&program, HashMap::new(), HashMap::new())
.unwrap();
assert!(ir.contains("call ptr @patch_seq_push_string"));
assert!(ir.contains("call ptr @patch_seq_write"));
assert!(ir.contains("\"no newline\\00\""));
}
#[test]
fn test_codegen_arithmetic() {
// Test inline tagged stack arithmetic with virtual registers (Issue #189)
let mut codegen = CodeGen::new();
let program = Program {
includes: vec![],
unions: vec![],
words: vec![WordDef {
name: "main".to_string(),
effect: None,
body: vec![
Statement::IntLiteral(2),
Statement::IntLiteral(3),
Statement::WordCall {
name: "i.add".to_string(),
span: None,
},
],
source: None,
allowed_lints: vec![],
}],
};
let ir = codegen
.codegen_program(&program, HashMap::new(), HashMap::new())
.unwrap();
// Issue #189: With virtual registers, integers are kept in SSA variables
// Using identity add: %n = add i64 0, <value>
assert!(ir.contains("add i64 0, 2"), "Should create SSA var for 2");
assert!(ir.contains("add i64 0, 3"), "Should create SSA var for 3");
// The add operation uses virtual registers directly
assert!(ir.contains("add i64 %"), "Should add SSA variables");
}
#[test]
fn test_pure_inline_test_mode() {
let mut codegen = CodeGen::new_pure_inline_test();
// Simple program: 5 3 add (should return 8)
let program = Program {
includes: vec![],
unions: vec![],
words: vec![WordDef {
name: "main".to_string(),
effect: None,
body: vec![
Statement::IntLiteral(5),
Statement::IntLiteral(3),
Statement::WordCall {
name: "i.add".to_string(),
span: None,
},
],
source: None,
allowed_lints: vec![],
}],
};
let ir = codegen
.codegen_program(&program, HashMap::new(), HashMap::new())
.unwrap();
// Pure inline test mode should:
// 1. NOT CALL the scheduler (declarations are ok, calls are not)
assert!(!ir.contains("call void @patch_seq_scheduler_init"));
assert!(!ir.contains("call i64 @patch_seq_strand_spawn"));
// 2. Have main allocate tagged stack and call seq_main directly
assert!(ir.contains("call ptr @seq_stack_new_default()"));
assert!(ir.contains("call ptr @seq_main(ptr %stack_base)"));
// 3. Read result from stack and return as exit code
// SSA name is a dynamic temp (not hardcoded %result), so check line-level
assert!(
ir.lines()
.any(|l| l.contains("trunc i64 %") && l.contains("to i32")),
"Expected a trunc i64 %N to i32 instruction"
);
assert!(ir.contains("ret i32 %exit_code"));
// 4. Use inline push with virtual registers (Issue #189)
assert!(!ir.contains("call ptr @patch_seq_push_int"));
// Values are kept in SSA variables via identity add
assert!(ir.contains("add i64 0, 5"), "Should create SSA var for 5");
assert!(ir.contains("add i64 0, 3"), "Should create SSA var for 3");
// 5. Use inline add with virtual registers (add i64 %, not call patch_seq_add)
assert!(!ir.contains("call ptr @patch_seq_add"));
assert!(ir.contains("add i64 %"), "Should add SSA variables");
}
#[test]
fn test_escape_llvm_string() {
assert_eq!(CodeGen::escape_llvm_string("hello").unwrap(), "hello");
assert_eq!(CodeGen::escape_llvm_string("a\nb").unwrap(), r"a\0Ab");
assert_eq!(CodeGen::escape_llvm_string("a\tb").unwrap(), r"a\09b");
assert_eq!(CodeGen::escape_llvm_string("a\"b").unwrap(), r"a\22b");
}
#[test]
#[allow(deprecated)] // Testing codegen in isolation, not full pipeline
fn test_external_builtins_declared() {
use crate::config::{CompilerConfig, ExternalBuiltin};
let mut codegen = CodeGen::new();
let program = Program {
includes: vec![],
unions: vec![],
words: vec![WordDef {
name: "main".to_string(),
effect: None, // Codegen doesn't check effects
body: vec![
Statement::IntLiteral(42),
Statement::WordCall {
name: "my-external-op".to_string(),
span: None,
},
],
source: None,
allowed_lints: vec![],
}],
};
let config = CompilerConfig::new()
.with_builtin(ExternalBuiltin::new("my-external-op", "test_runtime_my_op"));
let ir = codegen
.codegen_program_with_config(&program, HashMap::new(), HashMap::new(), &config)
.unwrap();
// Should declare the external builtin
assert!(
ir.contains("declare ptr @test_runtime_my_op(ptr)"),
"IR should declare external builtin"
);
// Should call the external builtin
assert!(
ir.contains("call ptr @test_runtime_my_op"),
"IR should call external builtin"
);
}
#[test]
#[allow(deprecated)] // Testing codegen in isolation, not full pipeline
fn test_multiple_external_builtins() {
use crate::config::{CompilerConfig, ExternalBuiltin};
let mut codegen = CodeGen::new();
let program = Program {
includes: vec![],
unions: vec![],
words: vec![WordDef {
name: "main".to_string(),
effect: None, // Codegen doesn't check effects
body: vec![
Statement::WordCall {
name: "actor-self".to_string(),
span: None,
},
Statement::WordCall {
name: "journal-append".to_string(),
span: None,
},
],
source: None,
allowed_lints: vec![],
}],
};
let config = CompilerConfig::new()
.with_builtin(ExternalBuiltin::new("actor-self", "seq_actors_self"))
.with_builtin(ExternalBuiltin::new(
"journal-append",
"seq_actors_journal_append",
));
let ir = codegen
.codegen_program_with_config(&program, HashMap::new(), HashMap::new(), &config)
.unwrap();
// Should declare both external builtins
assert!(ir.contains("declare ptr @seq_actors_self(ptr)"));
assert!(ir.contains("declare ptr @seq_actors_journal_append(ptr)"));
// Should call both
assert!(ir.contains("call ptr @seq_actors_self"));
assert!(ir.contains("call ptr @seq_actors_journal_append"));
}
#[test]
#[allow(deprecated)] // Testing config builder, not full pipeline
fn test_external_builtins_with_library_paths() {
use crate::config::{CompilerConfig, ExternalBuiltin};
let config = CompilerConfig::new()
.with_builtin(ExternalBuiltin::new("my-op", "runtime_my_op"))
.with_library_path("/custom/lib")
.with_library("myruntime");
assert_eq!(config.external_builtins.len(), 1);
assert_eq!(config.library_paths, vec!["/custom/lib"]);
assert_eq!(config.libraries, vec!["myruntime"]);
}
#[test]
fn test_external_builtin_full_pipeline() {
// Test that external builtins work through the full compile pipeline
// including parser, AST validation, type checker, and codegen
use crate::compile_to_ir_with_config;
use crate::config::{CompilerConfig, ExternalBuiltin};
use crate::types::{Effect, StackType, Type};
let source = r#"
: main ( -- Int )
42 my-transform
0
;
"#;
// External builtins must have explicit effects (v2.0 requirement)
let effect = Effect::new(StackType::singleton(Type::Int), StackType::Empty);
let config = CompilerConfig::new().with_builtin(ExternalBuiltin::with_effect(
"my-transform",
"ext_runtime_transform",
effect,
));
// This should succeed - the external builtin is registered
let result = compile_to_ir_with_config(source, &config);
assert!(
result.is_ok(),
"Compilation should succeed: {:?}",
result.err()
);
let ir = result.unwrap();
assert!(ir.contains("declare ptr @ext_runtime_transform(ptr)"));
assert!(ir.contains("call ptr @ext_runtime_transform"));
}
#[test]
fn test_external_builtin_without_config_fails() {
// Test that using an external builtin without config fails validation
use crate::compile_to_ir;
let source = r#"
: main ( -- Int )
42 unknown-builtin
0
;
"#;
// This should fail - unknown-builtin is not registered
let result = compile_to_ir(source);
assert!(result.is_err());
assert!(result.unwrap_err().contains("unknown-builtin"));
}
#[test]
fn test_match_exhaustiveness_error() {
use crate::compile_to_ir;
let source = r#"
union Result { Ok { value: Int } Err { msg: String } }
: handle ( Variant -- Int )
match
Ok -> drop 1
# Missing Err arm!
end
;
: main ( -- ) 42 Make-Ok handle drop ;
"#;
let result = compile_to_ir(source);
assert!(result.is_err());
let err = result.unwrap_err();
assert!(err.contains("Non-exhaustive match"));
assert!(err.contains("Result"));
assert!(err.contains("Err"));
}
#[test]
fn test_match_exhaustive_compiles() {
use crate::compile_to_ir;
let source = r#"
union Result { Ok { value: Int } Err { msg: String } }
: handle ( Variant -- Int )
match
Ok -> drop 1
Err -> drop 0
end
;
: main ( -- ) 42 Make-Ok handle drop ;
"#;
let result = compile_to_ir(source);
assert!(
result.is_ok(),
"Exhaustive match should compile: {:?}",
result
);
}
#[test]
fn test_codegen_symbol() {
// Test symbol literal codegen
let mut codegen = CodeGen::new();
let program = Program {
includes: vec![],
unions: vec![],
words: vec![WordDef {
name: "main".to_string(),
effect: None,
body: vec![
Statement::Symbol("hello".to_string()),
Statement::WordCall {
name: "symbol->string".to_string(),
span: None,
},
Statement::WordCall {
name: "io.write-line".to_string(),
span: None,
},
],
source: None,
allowed_lints: vec![],
}],
};
let ir = codegen
.codegen_program(&program, HashMap::new(), HashMap::new())
.unwrap();
assert!(ir.contains("call ptr @patch_seq_push_interned_symbol"));
assert!(ir.contains("call ptr @patch_seq_symbol_to_string"));
assert!(ir.contains("\"hello\\00\""));
}
#[test]
fn test_symbol_interning_dedup() {
// Issue #166: Test that duplicate symbol literals share the same global
let mut codegen = CodeGen::new();
let program = Program {
includes: vec![],
unions: vec![],
words: vec![WordDef {
name: "main".to_string(),
effect: None,
body: vec![
// Use :hello twice - should share the same .sym global
Statement::Symbol("hello".to_string()),
Statement::Symbol("hello".to_string()),
Statement::Symbol("world".to_string()), // Different symbol
],
source: None,
allowed_lints: vec![],
}],
};
let ir = codegen
.codegen_program(&program, HashMap::new(), HashMap::new())
.unwrap();
// Should have exactly one .sym global for "hello" and one for "world"
// Count occurrences of symbol global definitions (lines starting with @.sym)
let sym_defs: Vec<_> = ir
.lines()
.filter(|l| l.trim().starts_with("@.sym."))
.collect();
// There should be 2 definitions: .sym.0 for "hello" and .sym.1 for "world"
assert_eq!(
sym_defs.len(),
2,
"Expected 2 symbol globals, got: {:?}",
sym_defs
);
// Verify deduplication: :hello appears twice but .sym.0 is reused
let hello_uses: usize = ir.matches("@.sym.0").count();
assert_eq!(
hello_uses, 3,
"Expected 3 occurrences of .sym.0 (1 def + 2 uses)"
);
// The IR should contain static symbol structure with capacity=0
assert!(
ir.contains("i64 0, i8 1"),
"Symbol global should have capacity=0 and global=1"
);
}
#[test]
fn test_dup_optimization_for_int() {
// Test that dup on Int uses optimized load/store instead of clone_value
// This verifies the Issue #186 optimization actually fires
let mut codegen = CodeGen::new();
use crate::types::Type;
let program = Program {
includes: vec![],
unions: vec![],
words: vec![
WordDef {
name: "test_dup".to_string(),
effect: None,
body: vec![
Statement::IntLiteral(42), // stmt 0: push Int
Statement::WordCall {
// stmt 1: dup
name: "dup".to_string(),
span: None,
},
Statement::WordCall {
name: "drop".to_string(),
span: None,
},
Statement::WordCall {
name: "drop".to_string(),
span: None,
},
],
source: None,
allowed_lints: vec![],
},
WordDef {
name: "main".to_string(),
effect: None,
body: vec![Statement::WordCall {
name: "test_dup".to_string(),
span: None,
}],
source: None,
allowed_lints: vec![],
},
],
};
// Provide type info: before statement 1 (dup), top of stack is Int
let mut statement_types = HashMap::new();
statement_types.insert(("test_dup".to_string(), 1), Type::Int);
let ir = codegen
.codegen_program(&program, HashMap::new(), statement_types)
.unwrap();
// Extract just the test_dup function
let func_start = ir.find("define tailcc ptr @seq_test_dup").unwrap();
let func_end = ir[func_start..].find("\n}\n").unwrap() + func_start + 3;
let test_dup_fn = &ir[func_start..func_end];
// The optimized path should use load/store directly (no clone_value call)
assert!(
test_dup_fn.contains("load i64"),
"Optimized dup should use 'load i64', got:\n{}",
test_dup_fn
);
assert!(
test_dup_fn.contains("store i64"),
"Optimized dup should use 'store i64', got:\n{}",
test_dup_fn
);
// The optimized path should NOT call clone_value
assert!(
!test_dup_fn.contains("@patch_seq_clone_value"),
"Optimized dup should NOT call clone_value for Int, got:\n{}",
test_dup_fn
);
}
#[test]
fn test_dup_optimization_after_literal() {
// Test Issue #195: dup after literal push uses optimized path
// Pattern: `42 dup` should be optimized even without type map info
let mut codegen = CodeGen::new();
let program = Program {
includes: vec![],
unions: vec![],
words: vec![
WordDef {
name: "test_dup".to_string(),
effect: None,
body: vec![
Statement::IntLiteral(42), // Previous statement is Int literal
Statement::WordCall {
// dup should be optimized
name: "dup".to_string(),
span: None,
},
Statement::WordCall {
name: "drop".to_string(),
span: None,
},
Statement::WordCall {
name: "drop".to_string(),
span: None,
},
],
source: None,
allowed_lints: vec![],
},
WordDef {
name: "main".to_string(),
effect: None,
body: vec![Statement::WordCall {
name: "test_dup".to_string(),
span: None,
}],
source: None,
allowed_lints: vec![],
},
],
};
// No type info provided - but literal heuristic should optimize
let ir = codegen
.codegen_program(&program, HashMap::new(), HashMap::new())
.unwrap();
// Extract just the test_dup function
let func_start = ir.find("define tailcc ptr @seq_test_dup").unwrap();
let func_end = ir[func_start..].find("\n}\n").unwrap() + func_start + 3;
let test_dup_fn = &ir[func_start..func_end];
// With literal heuristic, should use optimized path
assert!(
test_dup_fn.contains("load i64"),
"Dup after int literal should use optimized load, got:\n{}",
test_dup_fn
);
assert!(
test_dup_fn.contains("store i64"),
"Dup after int literal should use optimized store, got:\n{}",
test_dup_fn
);
assert!(
!test_dup_fn.contains("@patch_seq_clone_value"),
"Dup after int literal should NOT call clone_value, got:\n{}",
test_dup_fn
);
}
#[test]
fn test_dup_no_optimization_after_word_call() {
// Test that dup after word call (unknown type) uses safe clone_value path
let mut codegen = CodeGen::new();
let program = Program {
includes: vec![],
unions: vec![],
words: vec![
WordDef {
name: "get_value".to_string(),
effect: None,
body: vec![Statement::IntLiteral(42)],
source: None,
allowed_lints: vec![],
},
WordDef {
name: "test_dup".to_string(),
effect: None,
body: vec![
Statement::WordCall {
// Previous statement is word call (unknown type)
name: "get_value".to_string(),
span: None,
},
Statement::WordCall {
// dup should NOT be optimized
name: "dup".to_string(),
span: None,
},
Statement::WordCall {
name: "drop".to_string(),
span: None,
},
Statement::WordCall {
name: "drop".to_string(),
span: None,
},
],
source: None,
allowed_lints: vec![],
},
WordDef {
name: "main".to_string(),
effect: None,
body: vec![Statement::WordCall {
name: "test_dup".to_string(),
span: None,
}],
source: None,
allowed_lints: vec![],
},
],
};
// No type info provided and no literal before dup
let ir = codegen
.codegen_program(&program, HashMap::new(), HashMap::new())
.unwrap();
// Extract just the test_dup function
let func_start = ir.find("define tailcc ptr @seq_test_dup").unwrap();
let func_end = ir[func_start..].find("\n}\n").unwrap() + func_start + 3;
let test_dup_fn = &ir[func_start..func_end];
// Without literal or type info, should call clone_value (safe path)
assert!(
test_dup_fn.contains("@patch_seq_clone_value"),
"Dup after word call should call clone_value, got:\n{}",
test_dup_fn
);
}
#[test]
fn test_roll_constant_optimization() {
// Test Issue #192: roll with constant N uses optimized inline code
// Pattern: `2 roll` should generate rot-like inline code
let mut codegen = CodeGen::new();
let program = Program {
includes: vec![],
unions: vec![],
words: vec![
WordDef {
name: "test_roll".to_string(),
effect: None,
body: vec![
Statement::IntLiteral(1),
Statement::IntLiteral(2),
Statement::IntLiteral(3),
Statement::IntLiteral(2), // Constant N for roll
Statement::WordCall {
// 2 roll = rot
name: "roll".to_string(),
span: None,
},
Statement::WordCall {
name: "drop".to_string(),
span: None,
},
Statement::WordCall {
name: "drop".to_string(),
span: None,
},
Statement::WordCall {
name: "drop".to_string(),
span: None,
},
],
source: None,
allowed_lints: vec![],
},
WordDef {
name: "main".to_string(),
effect: None,
body: vec![Statement::WordCall {
name: "test_roll".to_string(),
span: None,
}],
source: None,
allowed_lints: vec![],
},
],
};
let ir = codegen
.codegen_program(&program, HashMap::new(), HashMap::new())
.unwrap();
// Extract just the test_roll function
let func_start = ir.find("define tailcc ptr @seq_test_roll").unwrap();
let func_end = ir[func_start..].find("\n}\n").unwrap() + func_start + 3;
let test_roll_fn = &ir[func_start..func_end];
// With constant N=2, should NOT do dynamic calculation
// Should NOT have dynamic add/sub for offset calculation
assert!(
!test_roll_fn.contains("= add i64 %"),
"Constant roll should use constant offset, not dynamic add, got:\n{}",
test_roll_fn
);
// Should NOT call memmove for small N (n=2 uses direct loads/stores)
assert!(
!test_roll_fn.contains("@llvm.memmove"),
"2 roll should not use memmove, got:\n{}",
test_roll_fn
);
}
#[test]
fn test_pick_constant_optimization() {
// Test Issue #192: pick with constant N uses constant offset
// Pattern: `1 pick` should generate code with constant -3 offset
let mut codegen = CodeGen::new();
let program = Program {
includes: vec![],
unions: vec![],
words: vec![
WordDef {
name: "test_pick".to_string(),
effect: None,
body: vec![
Statement::IntLiteral(10),
Statement::IntLiteral(20),
Statement::IntLiteral(1), // Constant N for pick
Statement::WordCall {
// 1 pick = over
name: "pick".to_string(),
span: None,
},
Statement::WordCall {
name: "drop".to_string(),
span: None,
},
Statement::WordCall {
name: "drop".to_string(),
span: None,
},
Statement::WordCall {
name: "drop".to_string(),
span: None,
},
],
source: None,
allowed_lints: vec![],
},
WordDef {
name: "main".to_string(),
effect: None,
body: vec![Statement::WordCall {
name: "test_pick".to_string(),
span: None,
}],
source: None,
allowed_lints: vec![],
},
],
};
let ir = codegen
.codegen_program(&program, HashMap::new(), HashMap::new())
.unwrap();
// Extract just the test_pick function
let func_start = ir.find("define tailcc ptr @seq_test_pick").unwrap();
let func_end = ir[func_start..].find("\n}\n").unwrap() + func_start + 3;
let test_pick_fn = &ir[func_start..func_end];
// With constant N=1, should use constant offset -3
// Should NOT have dynamic add/sub for offset calculation
assert!(
!test_pick_fn.contains("= add i64 %"),
"Constant pick should use constant offset, not dynamic add, got:\n{}",
test_pick_fn
);
// Should have the constant offset -3 in getelementptr
assert!(
test_pick_fn.contains("i64 -3"),
"1 pick should use offset -3 (-(1+2)), got:\n{}",
test_pick_fn
);
}
#[test]
fn test_small_word_marked_alwaysinline() {
// Test Issue #187: Small words get alwaysinline attribute
let mut codegen = CodeGen::new();
let program = Program {
includes: vec![],
unions: vec![],
words: vec![
WordDef {
name: "double".to_string(), // Small word: dup i.+
effect: None,
body: vec![
Statement::WordCall {
name: "dup".to_string(),
span: None,
},
Statement::WordCall {
name: "i.+".to_string(),
span: None,
},
],
source: None,
allowed_lints: vec![],
},
WordDef {
name: "main".to_string(),
effect: None,
body: vec![
Statement::IntLiteral(21),
Statement::WordCall {
name: "double".to_string(),
span: None,
},
],
source: None,
allowed_lints: vec![],
},
],
};
let ir = codegen
.codegen_program(&program, HashMap::new(), HashMap::new())
.unwrap();
// Small word 'double' should have alwaysinline attribute
assert!(
ir.contains("define tailcc ptr @seq_double(ptr %stack) alwaysinline"),
"Small word should have alwaysinline attribute, got:\n{}",
ir.lines()
.filter(|l| l.contains("define"))
.collect::<Vec<_>>()
.join("\n")
);
// main should NOT have alwaysinline (uses C calling convention)
assert!(
ir.contains("define ptr @seq_main(ptr %stack) {"),
"main should not have alwaysinline, got:\n{}",
ir.lines()
.filter(|l| l.contains("define"))
.collect::<Vec<_>>()
.join("\n")
);
}
#[test]
fn test_recursive_word_not_inlined() {
// Test Issue #187: Recursive words should NOT get alwaysinline
let mut codegen = CodeGen::new();
let program = Program {
includes: vec![],
unions: vec![],
words: vec![
WordDef {
name: "countdown".to_string(), // Recursive
effect: None,
body: vec![
Statement::WordCall {
name: "dup".to_string(),
span: None,
},
Statement::If {
then_branch: vec![
Statement::IntLiteral(1),
Statement::WordCall {
name: "i.-".to_string(),
span: None,
},
Statement::WordCall {
name: "countdown".to_string(), // Recursive call
span: None,
},
],
else_branch: Some(vec![]),
span: None,
},
],
source: None,
allowed_lints: vec![],
},
WordDef {
name: "main".to_string(),
effect: None,
body: vec![
Statement::IntLiteral(5),
Statement::WordCall {
name: "countdown".to_string(),
span: None,
},
],
source: None,
allowed_lints: vec![],
},
],
};
let ir = codegen
.codegen_program(&program, HashMap::new(), HashMap::new())
.unwrap();
// Recursive word should NOT have alwaysinline
assert!(
ir.contains("define tailcc ptr @seq_countdown(ptr %stack) {"),
"Recursive word should NOT have alwaysinline, got:\n{}",
ir.lines()
.filter(|l| l.contains("define"))
.collect::<Vec<_>>()
.join("\n")
);
}
#[test]
fn test_recursive_word_in_match_not_inlined() {
// Test Issue #187: Recursive calls inside match arms should prevent inlining
use crate::ast::{MatchArm, Pattern, UnionDef, UnionVariant};
let mut codegen = CodeGen::new();
let program = Program {
includes: vec![],
unions: vec![UnionDef {
name: "Option".to_string(),
variants: vec![
UnionVariant {
name: "Some".to_string(),
fields: vec![],
source: None,
},
UnionVariant {
name: "None".to_string(),
fields: vec![],
source: None,
},
],
source: None,
}],
words: vec![
WordDef {
name: "process".to_string(), // Recursive in match arm
effect: None,
body: vec![Statement::Match {
arms: vec![
MatchArm {
pattern: Pattern::Variant("Some".to_string()),
body: vec![Statement::WordCall {
name: "process".to_string(), // Recursive call
span: None,
}],
span: None,
},
MatchArm {
pattern: Pattern::Variant("None".to_string()),
body: vec![],
span: None,
},
],
span: None,
}],
source: None,
allowed_lints: vec![],
},
WordDef {
name: "main".to_string(),
effect: None,
body: vec![Statement::WordCall {
name: "process".to_string(),
span: None,
}],
source: None,
allowed_lints: vec![],
},
],
};
let ir = codegen
.codegen_program(&program, HashMap::new(), HashMap::new())
.unwrap();
// Recursive word (via match arm) should NOT have alwaysinline
assert!(
ir.contains("define tailcc ptr @seq_process(ptr %stack) {"),
"Recursive word in match should NOT have alwaysinline, got:\n{}",
ir.lines()
.filter(|l| l.contains("define"))
.collect::<Vec<_>>()
.join("\n")
);
}
#[test]
fn test_issue_338_specialized_call_in_if_branch_has_terminator() {
// Issue #338: When a specialized function is called in an if-then branch,
// the generated IR was missing a terminator instruction because:
// 1. will_emit_tail_call returned true (expecting musttail + ret)
// 2. But try_specialized_dispatch took the specialized path instead
// 3. The specialized path doesn't emit ret, leaving the basic block unterminated
//
// The fix skips specialized dispatch in tail position for user-defined words.
use crate::types::{Effect, StackType, Type};
let mut codegen = CodeGen::new();
// Create a specializable word: get-value ( Int -- Int )
// This will get a specialized version that returns i64 directly
let get_value_effect = Effect {
inputs: StackType::Cons {
rest: Box::new(StackType::RowVar("S".to_string())),
top: Type::Int,
},
outputs: StackType::Cons {
rest: Box::new(StackType::RowVar("S".to_string())),
top: Type::Int,
},
effects: vec![],
};
// Create a word that calls get-value in an if-then branch
// This pattern triggered the bug in issue #338
let program = Program {
includes: vec![],
unions: vec![],
words: vec![
// : get-value ( Int -- Int ) dup ;
WordDef {
name: "get-value".to_string(),
effect: Some(get_value_effect),
body: vec![Statement::WordCall {
name: "dup".to_string(),
span: None,
}],
source: None,
allowed_lints: vec![],
},
// : test-caller ( Bool Int -- Int )
// if get-value else drop 0 then ;
WordDef {
name: "test-caller".to_string(),
effect: None,
body: vec![Statement::If {
then_branch: vec![Statement::WordCall {
name: "get-value".to_string(),
span: None,
}],
else_branch: Some(vec![
Statement::WordCall {
name: "drop".to_string(),
span: None,
},
Statement::IntLiteral(0),
]),
span: None,
}],
source: None,
allowed_lints: vec![],
},
// : main ( -- ) true 42 test-caller drop ;
WordDef {
name: "main".to_string(),
effect: None,
body: vec![
Statement::BoolLiteral(true),
Statement::IntLiteral(42),
Statement::WordCall {
name: "test-caller".to_string(),
span: None,
},
Statement::WordCall {
name: "drop".to_string(),
span: None,
},
],
source: None,
allowed_lints: vec![],
},
],
};
// This should NOT panic with "basic block lacks terminator"
let ir = codegen
.codegen_program(&program, HashMap::new(), HashMap::new())
.expect("Issue #338: codegen should succeed for specialized call in if branch");
// Verify the specialized version was generated
assert!(
ir.contains("@seq_get_value_i64"),
"Should generate specialized version of get-value"
);
// Verify the test-caller function has proper structure
// (both branches should have terminators leading to merge or return)
assert!(
ir.contains("define tailcc ptr @seq_test_caller"),
"Should generate test-caller function"
);
// The then branch should use tail call (musttail + ret) for get-value
// NOT the specialized dispatch (which would leave the block unterminated)
assert!(
ir.contains("musttail call tailcc ptr @seq_get_value"),
"Then branch should use tail call to stack-based version, not specialized dispatch"
);
}
#[test]
fn test_report_call_in_normal_mode() {
let mut codegen = CodeGen::new();
let program = Program {
includes: vec![],
unions: vec![],
words: vec![WordDef {
name: "main".to_string(),
effect: None,
body: vec![
Statement::IntLiteral(42),
Statement::WordCall {
name: "io.write-line".to_string(),
span: None,
},
],
source: None,
allowed_lints: vec![],
}],
};
let ir = codegen
.codegen_program(&program, HashMap::new(), HashMap::new())
.unwrap();
// Normal mode should call patch_seq_report after scheduler_run
assert!(
ir.contains("call void @patch_seq_report()"),
"Normal mode should emit report call"
);
}
#[test]
fn test_report_call_absent_in_pure_inline() {
let mut codegen = CodeGen::new_pure_inline_test();
let program = Program {
includes: vec![],
unions: vec![],
words: vec![WordDef {
name: "main".to_string(),
effect: None,
body: vec![Statement::IntLiteral(42)],
source: None,
allowed_lints: vec![],
}],
};
let ir = codegen
.codegen_program(&program, HashMap::new(), HashMap::new())
.unwrap();
// Pure inline test mode should NOT call patch_seq_report
assert!(
!ir.contains("call void @patch_seq_report()"),
"Pure inline mode should not emit report call"
);
}
#[test]
fn test_instrument_emits_counters_and_atomicrmw() {
let mut codegen = CodeGen::new();
let program = Program {
includes: vec![],
unions: vec![],
words: vec![
WordDef {
name: "helper".to_string(),
effect: None,
body: vec![Statement::IntLiteral(1)],
source: None,
allowed_lints: vec![],
},
WordDef {
name: "main".to_string(),
effect: None,
body: vec![Statement::WordCall {
name: "helper".to_string(),
span: None,
}],
source: None,
allowed_lints: vec![],
},
],
};
let config = CompilerConfig {
instrument: true,
..CompilerConfig::default()
};
let ir = codegen
.codegen_program_with_config(&program, HashMap::new(), HashMap::new(), &config)
.unwrap();
// Should emit counter array
assert!(
ir.contains("@seq_word_counters = global [2 x i64] zeroinitializer"),
"Should emit counter array for 2 words"
);
// Should emit word name strings
assert!(
ir.contains("@seq_word_name_"),
"Should emit word name constants"
);
// Should emit name pointer table
assert!(
ir.contains("@seq_word_names = private constant [2 x ptr]"),
"Should emit name pointer table"
);
// Should emit atomicrmw in each word
assert!(
ir.contains("atomicrmw add ptr %instr_ptr_"),
"Should emit atomicrmw add for word counters"
);
// Should emit report_init call
assert!(
ir.contains(
"call void @patch_seq_report_init(ptr @seq_word_counters, ptr @seq_word_names, i64 2)"
),
"Should emit report_init call with correct count"
);
}
#[test]
fn test_no_instrument_no_counters() {
let mut codegen = CodeGen::new();
let program = Program {
includes: vec![],
unions: vec![],
words: vec![WordDef {
name: "main".to_string(),
effect: None,
body: vec![Statement::IntLiteral(42)],
source: None,
allowed_lints: vec![],
}],
};
let config = CompilerConfig::default();
assert!(!config.instrument);
let ir = codegen
.codegen_program_with_config(&program, HashMap::new(), HashMap::new(), &config)
.unwrap();
// Should NOT emit counter array
assert!(
!ir.contains("@seq_word_counters"),
"Should not emit counters when instrument=false"
);
// Should NOT emit atomicrmw
assert!(
!ir.contains("atomicrmw"),
"Should not emit atomicrmw when instrument=false"
);
// Should NOT emit report_init call
assert!(
!ir.contains("call void @patch_seq_report_init"),
"Should not emit report_init when instrument=false"
);
}