veryl-analyzer 0.20.0

A modern hardware description language
Documentation
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
use crate::conv::Context;
use crate::conv::checker::clock_domain::check_clock_domain;
use crate::ir::assign_table::{AssignContext, AssignTable};
use crate::ir::utils::convert_cast;
use crate::ir::{
    Comptime, ExpressionContext, FfTable, FunctionCall, Op, Signature, SystemFunctionCall,
    SystemFunctionKind, Type, TypeKind, ValueVariant, VarId, VarIndex, VarSelect,
};
use crate::symbol::{ClockDomain, Symbol, SymbolKind};
use crate::value::{Value, ValueBigUint};
use std::fmt;
use veryl_parser::resource_table::StrId;
use veryl_parser::token_range::TokenRange;

#[derive(Clone, Debug)]
pub enum Expression {
    Term(Box<Factor>),
    Unary(Op, Box<Expression>, Box<Comptime>),
    Binary(Box<Expression>, Op, Box<Expression>, Box<Comptime>),
    Ternary(
        Box<Expression>,
        Box<Expression>,
        Box<Expression>,
        Box<Comptime>,
    ),
    Concatenation(Vec<(Expression, Option<Expression>)>, Box<Comptime>),
    ArrayLiteral(Vec<ArrayLiteralItem>, Box<Comptime>),
    StructConstructor(Type, Vec<(StrId, Expression)>, Box<Comptime>),
}

impl Expression {
    pub fn create_value(value: Value, token: TokenRange) -> Self {
        Self::Term(Box::new(Factor::create_value(value, token)))
    }
}

impl fmt::Display for Expression {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        let ret = match self {
            Expression::Term(x) => x.to_string(),
            Expression::Unary(x, y, _) => {
                format!("({x} {y})")
            }
            Expression::Binary(x, y, z, _) => {
                format!("({x} {y} {z})")
            }
            Expression::Ternary(x, y, z, _) => {
                format!("({x} ? {y} : {z})")
            }
            Expression::Concatenation(x, _) => {
                let mut ret = String::new();
                for (x, y) in x {
                    if let Some(y) = y {
                        ret = format!("{ret}, {x} repeat {y}")
                    } else {
                        ret = format!("{ret}, {x}")
                    }
                }
                format!("{{{}}}", &ret[2..])
            }
            Expression::ArrayLiteral(x, _) => {
                let mut ret = String::new();
                for x in x {
                    ret = format!("{ret}, {x}")
                }
                format!("'{{{}}}", &ret[2..])
            }
            Expression::StructConstructor(_, x, _) => {
                let mut ret = String::new();
                for x in x {
                    ret = format!("{ret}, {}: {}", x.0, x.1)
                }
                format!("'{{{}}}", &ret[2..])
            }
        };

        ret.fmt(f)
    }
}

impl Expression {
    pub fn is_assignable(&self) -> bool {
        match self {
            Expression::Term(x) => x.is_assignable(),
            Expression::Concatenation(x, _) => {
                x.iter().all(|x| x.0.is_assignable() && x.1.is_none())
            }
            _ => false,
        }
    }

    pub fn gather_context(&mut self, context: &mut Context) -> ExpressionContext {
        match self {
            Expression::Term(x) => x.gather_context(context),
            Expression::Unary(op, x, comptime) => {
                let x = x.gather_context(context);

                comptime.is_const = x.is_const;
                comptime.is_global = x.is_global;

                op.eval_context_unary(x)
            }
            Expression::Binary(x, op, y, comptime) => {
                let (x, y) = if op.binary_op_self_determined() {
                    let expr_context = x.gather_context(context).merge(y.gather_context(context));
                    x.apply_context(context, expr_context);
                    y.apply_context(context, expr_context);
                    (expr_context, expr_context)
                } else {
                    let x = if op.binary_x_self_determined() {
                        let expr_context = x.gather_context(context);
                        x.apply_context(context, expr_context);
                        x.comptime().expr_context
                    } else {
                        x.gather_context(context)
                    };

                    let y = if op.binary_y_self_determined() {
                        let expr_context = y.gather_context(context);
                        y.apply_context(context, expr_context);
                        y.comptime().expr_context
                    } else {
                        y.gather_context(context)
                    };

                    (x, y)
                };

                comptime.is_const = x.is_const & y.is_const;
                comptime.is_global = x.is_global & y.is_global;

                op.eval_context_binary(x, y)
            }
            Expression::Ternary(x, y, z, comptime) => {
                // x is self-determined
                let expr_context = x.gather_context(context);
                x.apply_context(context, expr_context);
                let x = x.comptime();

                let y = y.gather_context(context);
                let z = z.gather_context(context);

                let is_const = x.is_const & y.is_const & z.is_const;
                let is_global = x.is_global & y.is_global & z.is_global;

                comptime.is_const = is_const;
                comptime.is_global = is_global;

                ExpressionContext {
                    width: y.width.max(z.width),
                    signed: y.signed & z.signed,
                    is_const,
                    is_global,
                }
            }
            Expression::Concatenation(x, comptime) => {
                let op = Op::Concatenation;
                op.eval_type_concatenation(context, x, comptime);
                comptime.evaluated = true;

                ExpressionContext {
                    width: comptime.r#type.total_width().unwrap_or(0),
                    signed: comptime.r#type.signed,
                    is_const: comptime.is_const,
                    is_global: comptime.is_global,
                }
            }
            Expression::StructConstructor(r#type, exprs, comptime) => {
                let mut is_const = true;
                let mut is_global = true;
                for (_, expr) in exprs {
                    let expr_context = expr.gather_context(context);
                    is_const &= expr_context.is_const;
                    is_global &= expr_context.is_global;

                    let expr = expr.comptime();
                    check_clock_domain(context, comptime, expr, &comptime.token.beg);
                    comptime.clock_domain = expr.clock_domain;
                }

                comptime.r#type = r#type.clone();
                comptime.is_const = is_const;
                comptime.is_global = is_global;
                comptime.evaluated = true;

                ExpressionContext {
                    width: r#type.total_width().unwrap_or(0),
                    signed: false,
                    is_const,
                    is_global,
                }
            }
            Expression::ArrayLiteral(items, comptime) => {
                let mut is_const = true;
                let mut is_global = true;
                for item in items {
                    match item {
                        ArrayLiteralItem::Value(x, y) => {
                            let x_context = x.gather_context(context);
                            is_const &= x_context.is_const;
                            is_global &= x_context.is_global;
                            if let Some(y) = y {
                                let y_context = y.gather_context(context);
                                is_const &= y_context.is_const;
                                is_global &= y_context.is_global;
                            }
                        }
                        ArrayLiteralItem::Defaul(x) => {
                            let x_context = x.gather_context(context);
                            is_const &= x_context.is_const;
                            is_global &= x_context.is_global;
                        }
                    }
                }

                comptime.is_const = is_const;
                comptime.is_global = is_global;
                comptime.evaluated = true;

                // ArrayLiteral doesn't affect context width
                ExpressionContext {
                    width: 0,
                    signed: false,
                    is_const,
                    is_global,
                }
            }
        }
    }

    pub fn apply_context(&mut self, context: &mut Context, expr_context: ExpressionContext) {
        match self {
            Expression::Term(x) => x.apply_context(expr_context),
            Expression::Unary(op, x, comptime) => {
                x.apply_context(context, expr_context);
                comptime.expr_context = expr_context;
                op.eval_type_unary(context, x.comptime(), comptime);
                comptime.evaluated = true;
            }
            Expression::Binary(x, op, y, comptime) => {
                if !op.binary_op_self_determined() {
                    if !op.binary_x_self_determined() {
                        x.apply_context(context, expr_context);
                    }
                    if !op.binary_y_self_determined() {
                        y.apply_context(context, expr_context);
                    }
                }

                comptime.expr_context = expr_context;
                op.eval_type_binary(context, x.comptime(), y.comptime(), comptime);
                comptime.evaluated = true;
            }
            Expression::Ternary(x, y, z, comptime) => {
                y.apply_context(context, expr_context);
                z.apply_context(context, expr_context);

                comptime.expr_context = expr_context;
                let op = Op::Ternary;
                op.eval_type_ternary(context, x.comptime(), y.comptime(), z.comptime(), comptime);
                comptime.evaluated = true;
            }
            Expression::Concatenation(_, _) => (),
            Expression::StructConstructor(_, _, _) => (),
            Expression::ArrayLiteral(_, _) => (),
        }
    }

    pub fn eval_value(&self, context: &mut Context) -> Option<Value> {
        let context_width = self.comptime().expr_context.width;
        let signed = self.comptime().expr_context.signed;

        match self {
            Expression::Term(x) => x.eval_value(context),
            Expression::Unary(op, x, _) => {
                let ret = x.eval_value(context)?;
                let x_kind = &x.comptime().r#type.kind;
                if x_kind.is_float() {
                    op.eval_float_unary(&ret, x_kind)
                } else {
                    let ret =
                        op.eval_value_unary(&ret, context_width, signed, &mut context.mask_cache);
                    Some(ret)
                }
            }
            Expression::Binary(x, op, y, comptime) => {
                if op == &Op::As {
                    let src_kind = &x.comptime().r#type.kind;
                    let dst_kind = &comptime.r#type.kind;

                    let val = x.eval_value(context)?;
                    if src_kind.is_float() || dst_kind.is_float() {
                        return Some(convert_cast(val, src_kind, dst_kind, context_width));
                    }

                    let cast_width = comptime.r#type.total_width()?;
                    let val_width = val.width();
                    if val_width > cast_width {
                        let mut val = val.clone();
                        val.trunc(cast_width);
                        return Some(convert_cast(val, src_kind, dst_kind, context_width));
                    } else if val_width < cast_width {
                        let val = val.expand(cast_width, false).into_owned();
                        return Some(convert_cast(val, src_kind, dst_kind, context_width));
                    } else {
                        return Some(convert_cast(val, src_kind, dst_kind, context_width));
                    }
                }

                // Re-derive signed from the operands for Div/Rem: the
                // outer-propagated expr_context may have dropped signed
                // via merge() when a sibling branch is unsigned.
                let signed = if matches!(op, Op::Div | Op::Rem) {
                    x.comptime().expr_context.signed & y.comptime().expr_context.signed
                } else {
                    signed
                };

                let x_kind = x.comptime().r#type.kind.clone();
                let y_kind = y.comptime().r#type.kind.clone();
                let x = x.eval_value(context)?;
                let y = y.eval_value(context)?;
                if x_kind.is_float() || y_kind.is_float() {
                    let float_kind = if x_kind.is_float() { &x_kind } else { &y_kind };
                    let float_width = if matches!(float_kind, TypeKind::F32) {
                        32
                    } else {
                        64
                    };
                    let x = if !x_kind.is_float() {
                        convert_cast(x, &x_kind, float_kind, float_width)
                    } else {
                        x
                    };
                    let y = if !y_kind.is_float() {
                        convert_cast(y, &y_kind, float_kind, float_width)
                    } else {
                        y
                    };
                    op.eval_float_binary(&x, &y, float_kind)
                } else {
                    let ret = op.eval_value_binary(
                        &x,
                        &y,
                        context_width,
                        signed,
                        &mut context.mask_cache,
                    );
                    Some(ret)
                }
            }
            Expression::Ternary(x, y, z, _) => {
                let x = x.eval_value(context)?;
                let y = y.eval_value(context)?;
                let z = z.eval_value(context)?;

                let width = y.width().max(z.width());

                let ret = if x.to_usize().unwrap_or(0) == 0 { z } else { y };
                let ret = ret.expand(width, false).into_owned();
                Some(ret)
            }
            Expression::Concatenation(x, _) => {
                let mut ret = Value::new(0, 0, false);
                for (exp, rep) in x.iter() {
                    let exp = exp.eval_value(context)?;

                    let rep = if let Some(rep) = rep {
                        let token = rep.token_range();
                        let rep = rep.eval_value(context)?;
                        let rep = rep.to_usize()?;
                        context.check_size(rep, token)?
                    } else {
                        1
                    };

                    for _ in 0..rep {
                        ret = ret.concat(&exp);
                    }
                }
                Some(ret)
            }
            Expression::StructConstructor(r#type, exprs, _) => {
                let mut ret = Value::new(0u32.into(), 0, false);
                for (name, expr) in exprs {
                    let sub_type = r#type.get_member_type(*name)?;
                    let width = sub_type.total_width()?;
                    let mut value = expr.eval_value(context)?;
                    value.trunc(width);
                    ret = ret.concat(&value);
                }
                Some(ret)
            }
            // ArrayLiteral doesn't require evaluation because it is expanded in conv phase
            Expression::ArrayLiteral(_, _) => None,
        }
    }

    pub fn eval_comptime(
        &mut self,
        context: &mut Context,
        context_width: Option<usize>,
    ) -> &Comptime {
        if !self.comptime().evaluated {
            let mut expr_context = self.gather_context(context);
            expr_context.width = expr_context.width.max(context_width.unwrap_or(0));
            self.apply_context(context, expr_context);

            let value = self.eval_value(context);
            let comptime = self.comptime_mut();
            if comptime.value.is_unknown()
                && let Some(x) = &value
            {
                comptime.value = ValueVariant::Numeric(x.clone());
            }

            // const optimization
            if !context.disalbe_const_opt
                && comptime.is_const
                && let Some(value) = value
                && !value.is_xz()
            {
                let is_global = comptime.is_global;
                let r#type = comptime.r#type.clone();
                let mut expr = Expression::create_value(value.clone(), self.token_range());

                let expr_comptime = expr.comptime_mut();
                expr_comptime.is_global = is_global;
                expr_comptime.r#type = r#type;
                expr_comptime.evaluated = true;

                *self = expr;
            }
        }

        self.comptime()
    }

    pub fn eval_assign(
        &self,
        context: &mut Context,
        assign_table: &mut AssignTable,
        assign_context: AssignContext,
    ) {
        match self {
            Expression::Term(x) => x.eval_assign(context, assign_table, assign_context),
            Expression::Unary(_, x, _) => x.eval_assign(context, assign_table, assign_context),
            Expression::Binary(x, _, y, _) => {
                x.eval_assign(context, assign_table, assign_context);
                y.eval_assign(context, assign_table, assign_context);
            }
            Expression::Ternary(x, y, z, _) => {
                x.eval_assign(context, assign_table, assign_context);
                y.eval_assign(context, assign_table, assign_context);
                z.eval_assign(context, assign_table, assign_context);
            }
            Expression::Concatenation(x, _) => {
                for (x, y) in x {
                    x.eval_assign(context, assign_table, assign_context);
                    if let Some(y) = y {
                        y.eval_assign(context, assign_table, assign_context);
                    }
                }
            }
            Expression::StructConstructor(_, exprs, _) => {
                for (_, expr) in exprs {
                    expr.eval_assign(context, assign_table, assign_context);
                }
            }
            // ArrayLiteral doesn't require evaluation because it is expanded in conv phase
            Expression::ArrayLiteral(_, _) => (),
        }
    }

    pub fn gather_ff(
        &self,
        context: &mut Context,
        table: &mut FfTable,
        decl: usize,
        assign_target: Option<(VarId, Option<usize>)>,
        from_ff: bool,
    ) {
        match self {
            Expression::Term(x) => x.gather_ff(context, table, decl, assign_target, from_ff),
            Expression::Unary(_, x, _) => x.gather_ff(context, table, decl, assign_target, from_ff),
            Expression::Binary(x, _, y, _) => {
                x.gather_ff(context, table, decl, assign_target, from_ff);
                y.gather_ff(context, table, decl, assign_target, from_ff);
            }
            Expression::Ternary(x, y, z, _) => {
                x.gather_ff(context, table, decl, assign_target, from_ff);
                y.gather_ff(context, table, decl, assign_target, from_ff);
                z.gather_ff(context, table, decl, assign_target, from_ff);
            }
            Expression::Concatenation(x, _) => {
                for (x, y) in x {
                    x.gather_ff(context, table, decl, assign_target, from_ff);
                    if let Some(y) = y {
                        y.gather_ff(context, table, decl, assign_target, from_ff);
                    }
                }
            }
            Expression::StructConstructor(_, exprs, _) => {
                for (_, expr) in exprs {
                    expr.gather_ff(context, table, decl, assign_target, from_ff);
                }
            }
            // ArrayLiteral doesn't require evaluation because it is expanded in conv phase
            Expression::ArrayLiteral(_, _) => (),
        }
    }

    pub fn set_index(&mut self, index: &VarIndex) {
        match self {
            Expression::Term(x) => x.set_index(index),
            Expression::Unary(_, x, _) => x.set_index(index),
            Expression::Binary(x, _, y, _) => {
                x.set_index(index);
                y.set_index(index);
            }
            Expression::Ternary(x, y, z, _) => {
                x.set_index(index);
                y.set_index(index);
                z.set_index(index);
            }
            Expression::Concatenation(x, _) => {
                for (x, y) in x {
                    x.set_index(index);
                    if let Some(y) = y {
                        y.set_index(index);
                    }
                }
            }
            Expression::StructConstructor(_, exprs, _) => {
                for (_, expr) in exprs {
                    expr.set_index(index);
                }
            }
            // ArrayLiteral doesn't require evaluation because it is expanded in conv phase
            Expression::ArrayLiteral(_, _) => (),
        }
    }

    pub fn comptime(&self) -> &Comptime {
        match self {
            Expression::Term(x) => x.comptime(),
            Expression::Unary(_, _, x) => x,
            Expression::Binary(_, _, _, x) => x,
            Expression::Ternary(_, _, _, x) => x,
            Expression::Concatenation(_, x) => x,
            Expression::ArrayLiteral(_, x) => x,
            Expression::StructConstructor(_, _, x) => x,
        }
    }

    pub fn comptime_mut(&mut self) -> &mut Comptime {
        match self {
            Expression::Term(x) => x.comptime_mut(),
            Expression::Unary(_, _, x) => x,
            Expression::Binary(_, _, _, x) => x,
            Expression::Ternary(_, _, _, x) => x,
            Expression::Concatenation(_, x) => x,
            Expression::ArrayLiteral(_, x) => x,
            Expression::StructConstructor(_, _, x) => x,
        }
    }

    pub fn token_range(&self) -> TokenRange {
        match self {
            Expression::Term(x) => x.token_range(),
            Expression::Unary(_, _, x) => x.token,
            Expression::Binary(_, _, _, x) => x.token,
            Expression::Ternary(_, _, _, x) => x.token,
            Expression::Concatenation(_, x) => x.token,
            Expression::ArrayLiteral(_, x) => x.token,
            Expression::StructConstructor(_, _, x) => x.token,
        }
    }
}

#[derive(Clone, Debug)]
pub enum Factor {
    Variable(VarId, VarIndex, VarSelect, Comptime),
    Value(Comptime),
    SystemFunctionCall(SystemFunctionCall),
    FunctionCall(FunctionCall),
    Anonymous(Comptime),
    Unknown(Comptime),
}

impl Factor {
    pub fn create_value(value: Value, token: TokenRange) -> Self {
        let comptime = Comptime::create_value(value, token);
        Factor::Value(comptime)
    }

    pub fn from_component_symbol(symbol: &Symbol, token: TokenRange) -> Self {
        let sig = Signature::new(symbol.id);
        let kind = match &symbol.kind {
            SymbolKind::Module(_)
            | SymbolKind::ProtoModule(_)
            | SymbolKind::AliasModule(_)
            | SymbolKind::ProtoAliasModule(_) => TypeKind::Module(sig),
            SymbolKind::Interface(_)
            | SymbolKind::ProtoInterface(_)
            | SymbolKind::AliasInterface(_)
            | SymbolKind::ProtoAliasInterface(_) => TypeKind::Interface(sig),
            SymbolKind::Package(_)
            | SymbolKind::ProtoPackage(_)
            | SymbolKind::AliasPackage(_)
            | SymbolKind::ProtoAliasPackage(_) => TypeKind::Package(sig),
            _ => unreachable!(),
        };
        let r#type = Type::new(kind);

        let mut comptime = Comptime::from_type(r#type, ClockDomain::None, token);
        comptime.is_const = true;
        comptime.is_global = true;

        Factor::Value(comptime)
    }

    pub fn is_assignable(&self) -> bool {
        match self {
            // SystemVerilog member is interpreted as Factor::Value, but it may be assignable.
            Factor::Value(x) => x.r#type.is_systemverilog(),
            Factor::FunctionCall(_) | Factor::SystemFunctionCall(_) => false,
            _ => true,
        }
    }

    pub fn gather_context(&mut self, context: &mut Context) -> ExpressionContext {
        match self {
            Factor::Variable(_, _index, select, comptime) => {
                // Array dimensions are already drained at Factor construction time
                // (in VarPathSelect::to_expression and eval_factor).

                if !comptime.evaluated {
                    // Struct/Union/Enum should be treated as flatten bit/logic when it is bit-selected
                    if !select.is_empty() {
                        comptime.r#type.flatten_struct_union_enum();
                    }

                    // Skip on empty select to preserve parametric `width_expr`.
                    if !select.is_empty()
                        && let Some(width) = select.eval_comptime(context, &comptime.r#type, false)
                    {
                        comptime.r#type.set_concrete_width(width);
                    }
                }

                ExpressionContext {
                    width: comptime.r#type.total_width().unwrap_or(0),
                    signed: comptime.r#type.signed,
                    is_const: comptime.is_const,
                    is_global: comptime.is_global,
                }
            }
            Factor::Value(x) => ExpressionContext {
                width: x.r#type.total_width().unwrap_or(0),
                signed: x.r#type.signed,
                is_const: x.is_const,
                is_global: x.is_global,
            },
            Factor::FunctionCall(x) => {
                x.eval_type(context);
                ExpressionContext {
                    width: x.comptime.r#type.total_width().unwrap_or(0),
                    signed: x.comptime.r#type.signed,
                    is_const: x.comptime.is_const,
                    is_global: x.comptime.is_global,
                }
            }
            Factor::SystemFunctionCall(x) => ExpressionContext {
                width: x.comptime.r#type.total_width().unwrap_or(0),
                signed: x.comptime.expr_context.signed,
                is_const: x.comptime.is_const,
                is_global: x.comptime.is_global,
            },
            Factor::Anonymous(_) | Factor::Unknown(_) => ExpressionContext::default(),
        }
    }

    pub fn apply_context(&mut self, expr_context: ExpressionContext) {
        match self {
            Factor::Variable(_, _, _, x) => {
                x.expr_context = expr_context;
                x.evaluated = true;
            }
            Factor::Value(x) => {
                x.expr_context = expr_context;
                x.evaluated = true;
            }
            Factor::SystemFunctionCall(x) => {
                // Preserve the signed flag set by $signed / $unsigned:
                // the outer-propagated expr_context must not clobber the
                // explicit cast intent.
                let preserve_signed = matches!(
                    x.kind,
                    SystemFunctionKind::Signed(_) | SystemFunctionKind::Unsigned(_)
                );
                let kept = x.comptime.expr_context.signed;
                x.comptime.expr_context = expr_context;
                if preserve_signed {
                    x.comptime.expr_context.signed = kept;
                }
                x.comptime.evaluated = true;
            }
            Factor::FunctionCall(x) => {
                x.comptime.expr_context = expr_context;
                x.comptime.evaluated = true;
            }
            Factor::Anonymous(x) => {
                x.expr_context = expr_context;
                x.evaluated = true
            }
            Factor::Unknown(x) => {
                x.expr_context = expr_context;
                x.evaluated = true;
            }
        }
    }

    pub fn eval_value(&self, context: &mut Context) -> Option<Value> {
        match self {
            Factor::Variable(id, index, select, comptime) => {
                let index = index.eval_value(context)?;
                let value = context.variables.get(id)?.get_value(&index)?.clone();

                if !select.is_empty() {
                    let (beg, end) = select.eval_value(context, &comptime.r#type, false)?;
                    Some(value.select(beg, end))
                } else {
                    Some(value)
                }
            }
            Factor::Value(x) => x.get_value().ok().cloned(),
            Factor::SystemFunctionCall(x) => x.eval_value(context),
            Factor::FunctionCall(x) => x.eval_value(context),
            Factor::Anonymous(_) => None,
            Factor::Unknown(_) => None,
        }
    }

    pub fn eval_assign(
        &self,
        context: &mut Context,
        assign_table: &mut AssignTable,
        assign_context: AssignContext,
    ) {
        match self {
            Factor::Variable(id, index, select, _) => {
                // `insert_reference` bails out on arrays over `array_limit`;
                // short-circuit to avoid cloning the full Variable (value
                // vec scales with array size).
                let total_array = context
                    .variables
                    .get(id)
                    .map(|v| v.r#type.total_array().unwrap_or(0))
                    .unwrap_or(0);
                if total_array > assign_table.array_limit {
                    return;
                }
                if let Some(index) = index.eval_value(context)
                    && let Some(variable) = context.variables.get(id).cloned()
                    && let Some((beg, end)) = select.eval_value(context, &variable.r#type, false)
                {
                    let mask = ValueBigUint::gen_mask_range(beg, end);
                    assign_table.insert_reference(&variable, index, mask);
                }
            }
            Factor::FunctionCall(x) => {
                x.eval_assign(context, assign_table, assign_context);
            }
            Factor::SystemFunctionCall(x) => {
                x.eval_assign(context, assign_table, assign_context);
            }
            _ => (),
        }
    }

    pub fn gather_ff(
        &self,
        context: &mut Context,
        table: &mut FfTable,
        decl: usize,
        assign_target: Option<(VarId, Option<usize>)>,
        from_ff: bool,
    ) {
        match self {
            Factor::Variable(id, index, _, _) => {
                if let Some(variable) = context.get_variable_info(*id) {
                    if let Some(index) = index.eval_value(context) {
                        if let Some(index) = variable.r#type.array.calc_index(&index) {
                            table.insert_refered(*id, index, decl, assign_target, from_ff);
                        }
                    } else if let Some(total_array) = variable.r#type.total_array() {
                        for i in 0..total_array {
                            table.insert_refered(*id, i, decl, assign_target, from_ff);
                        }
                    }
                }
            }
            Factor::FunctionCall(x) => {
                x.gather_ff(context, table, decl, assign_target, from_ff);
            }
            _ => (),
        }
    }

    pub fn set_index(&mut self, index: &VarIndex) {
        match self {
            Factor::Variable(_, i, _, _) => {
                *i = index.clone();
            }
            Factor::FunctionCall(x) => {
                x.set_index(index);
            }
            _ => (),
        }
    }

    pub fn comptime(&self) -> &Comptime {
        match self {
            Factor::Variable(_, _, _, x) => x,
            Factor::Value(x) => x,
            Factor::SystemFunctionCall(x) => &x.comptime,
            Factor::FunctionCall(x) => &x.comptime,
            Factor::Anonymous(x) => x,
            Factor::Unknown(x) => x,
        }
    }

    pub fn comptime_mut(&mut self) -> &mut Comptime {
        match self {
            Factor::Variable(_, _, _, x) => x,
            Factor::Value(x) => x,
            Factor::SystemFunctionCall(x) => &mut x.comptime,
            Factor::FunctionCall(x) => &mut x.comptime,
            Factor::Anonymous(x) => x,
            Factor::Unknown(x) => x,
        }
    }

    pub fn token_range(&self) -> TokenRange {
        match self {
            Factor::Variable(_, _, _, x) => x.token,
            Factor::Value(x) => x.token,
            Factor::SystemFunctionCall(x) => x.comptime.token,
            Factor::FunctionCall(x) => x.comptime.token,
            Factor::Anonymous(x) => x.token,
            Factor::Unknown(x) => x.token,
        }
    }
}

impl fmt::Display for Factor {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        let ret = match self {
            Factor::Variable(id, index, select, _) => {
                format!("{id}{index}{select}")
            }
            Factor::Value(x) => {
                if let Ok(x) = x.get_value() {
                    format!("{:x}", x)
                } else {
                    String::from("unknown")
                }
            }
            Factor::SystemFunctionCall(x) => x.to_string(),
            Factor::FunctionCall(x) => x.to_string(),
            Factor::Anonymous(_) => String::from("_"),
            Factor::Unknown(_) => String::from("unknown"),
        };

        ret.fmt(f)
    }
}

#[derive(Clone, Debug)]
pub enum ArrayLiteralItem {
    Value(Box<Expression>, Option<Box<Expression>>),
    Defaul(Box<Expression>),
}

impl ArrayLiteralItem {
    pub fn token_range(&self) -> TokenRange {
        match self {
            ArrayLiteralItem::Value(x, y) => {
                let beg = x.token_range();
                let mut end = if let Some(y) = y {
                    y.token_range()
                } else {
                    beg
                };
                end.set_beg(beg);
                end
            }
            ArrayLiteralItem::Defaul(x) => x.token_range(),
        }
    }

    pub fn is_const(&self) -> bool {
        match self {
            ArrayLiteralItem::Value(x, y) => {
                let mut ret = x.comptime().is_const;
                if let Some(y) = y {
                    ret &= y.comptime().is_const;
                }
                ret
            }
            ArrayLiteralItem::Defaul(x) => x.comptime().is_const,
        }
    }

    pub fn is_global(&self) -> bool {
        match self {
            ArrayLiteralItem::Value(x, y) => {
                let mut ret = x.comptime().is_global;
                if let Some(y) = y {
                    ret &= y.comptime().is_global;
                }
                ret
            }
            ArrayLiteralItem::Defaul(x) => x.comptime().is_global,
        }
    }
}

impl fmt::Display for ArrayLiteralItem {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        let ret = match self {
            ArrayLiteralItem::Value(x, y) => {
                if let Some(y) = y {
                    format!("{} repeat {}", x, y)
                } else {
                    format!("{}", x)
                }
            }
            ArrayLiteralItem::Defaul(x) => {
                format!("default: {}", x)
            }
        };

        ret.fmt(f)
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::conv::utils::parse_expression;
    use crate::conv::{Context, Conv};
    use crate::ir::{Shape, TypeKind};

    fn calc_expression(s: &str, context_width: Option<usize>) -> Value {
        let mut context = Context::default();
        let x = parse_expression(s);
        let mut x: Expression = Conv::conv(&mut context, &x).unwrap();
        x.eval_comptime(&mut context, context_width)
            .get_value()
            .unwrap()
            .clone()
    }

    #[test]
    fn arithmetic() {
        let x00 = calc_expression("1 + 2", None);
        let x01 = calc_expression("5 - 1", None);
        let x02 = calc_expression("2 * 7", None);
        let x03 = calc_expression("8 / 3", None);
        let x04 = calc_expression("9 % 4", None);
        let x05 = calc_expression("2 ** 3", None);
        let x06 = calc_expression("+5", None);
        let x07 = calc_expression("-1", None);
        let x08 = calc_expression("1 << 2", None);
        let x09 = calc_expression("1 <<< 2", None);
        let x10 = calc_expression("-8 >> 2", None);
        let x11 = calc_expression("-8 >>> 2", None);

        assert_eq!(format!("{:x}", x00), "32'sh00000003");
        assert_eq!(format!("{:x}", x01), "32'sh00000004");
        assert_eq!(format!("{:x}", x02), "32'sh0000000e");
        assert_eq!(format!("{:x}", x03), "32'sh00000002");
        assert_eq!(format!("{:x}", x04), "32'sh00000001");
        assert_eq!(format!("{:x}", x05), "32'sh00000008");
        assert_eq!(format!("{:x}", x06), "32'sh00000005");
        assert_eq!(format!("{:x}", x07), "32'shffffffff");
        assert_eq!(format!("{:x}", x08), "32'h00000004");
        assert_eq!(format!("{:x}", x09), "32'sh00000004");
        assert_eq!(format!("{:x}", x10), "32'h3ffffffe");
        assert_eq!(format!("{:x}", x11), "32'shfffffffe");
    }

    #[test]
    fn relational() {
        let x0 = calc_expression("1 <: 2", None);
        let x1 = calc_expression("1 >: 2", None);
        let x2 = calc_expression("1 <= 2", None);
        let x3 = calc_expression("1 >= 2", None);
        let x4 = calc_expression("2 <: 2", None);
        let x5 = calc_expression("2 >: 2", None);
        let x6 = calc_expression("2 <= 2", None);
        let x7 = calc_expression("2 >= 2", None);

        assert_eq!(format!("{:x}", x0), "1'h1");
        assert_eq!(format!("{:x}", x1), "1'h0");
        assert_eq!(format!("{:x}", x2), "1'h1");
        assert_eq!(format!("{:x}", x3), "1'h0");
        assert_eq!(format!("{:x}", x4), "1'h0");
        assert_eq!(format!("{:x}", x5), "1'h0");
        assert_eq!(format!("{:x}", x6), "1'h1");
        assert_eq!(format!("{:x}", x7), "1'h1");
    }

    #[test]
    fn equality() {
        let x0 = calc_expression("1 == 2", None);
        let x1 = calc_expression("1 != 2", None);
        let x2 = calc_expression("2 == 2", None);
        let x3 = calc_expression("2 != 2", None);

        assert_eq!(format!("{:x}", x0), "1'h0");
        assert_eq!(format!("{:x}", x1), "1'h1");
        assert_eq!(format!("{:x}", x2), "1'h1");
        assert_eq!(format!("{:x}", x3), "1'h0");
    }

    #[test]
    fn wildcard_equality() {
        let x0 = calc_expression("4'b0000 ==? 4'b00xx", None);
        let x1 = calc_expression("4'b0011 ==? 4'b00xx", None);
        let x2 = calc_expression("4'b0100 ==? 4'b00xx", None);
        let x3 = calc_expression("4'b0111 ==? 4'b00xx", None);
        let x4 = calc_expression("4'b0000 !=? 4'b00xx", None);
        let x5 = calc_expression("4'b0011 !=? 4'b00xx", None);
        let x6 = calc_expression("4'b0100 !=? 4'b00xx", None);
        let x7 = calc_expression("4'b0111 !=? 4'b00xx", None);

        assert_eq!(format!("{:x}", x0), "1'h1");
        assert_eq!(format!("{:x}", x1), "1'h1");
        assert_eq!(format!("{:x}", x2), "1'h0");
        assert_eq!(format!("{:x}", x3), "1'h0");
        assert_eq!(format!("{:x}", x4), "1'h0");
        assert_eq!(format!("{:x}", x5), "1'h0");
        assert_eq!(format!("{:x}", x6), "1'h1");
        assert_eq!(format!("{:x}", x7), "1'h1");
    }

    #[test]
    fn logical() {
        let x0 = calc_expression("10 && 0", None);
        let x1 = calc_expression("10 || 0", None);
        let x2 = calc_expression("!0", None);
        let x3 = calc_expression("!10", None);

        assert_eq!(format!("{:x}", x0), "1'h0");
        assert_eq!(format!("{:x}", x1), "1'h1");
        assert_eq!(format!("{:x}", x2), "1'h1");
        assert_eq!(format!("{:x}", x3), "1'h0");
    }

    #[test]
    fn bitwise() {
        let x0 = calc_expression("4'b0001  & 4'b0101", None);
        let x1 = calc_expression("4'b0001  | 4'b0101", None);
        let x2 = calc_expression("4'b0001  ^ 4'b0101", None);
        let x3 = calc_expression("4'b0001 ~^ 4'b0101", None);
        let x4 = calc_expression("~4'b0101", None);

        assert_eq!(format!("{:x}", x0), "4'h1");
        assert_eq!(format!("{:x}", x1), "4'h5");
        assert_eq!(format!("{:x}", x2), "4'h4");
        assert_eq!(format!("{:x}", x3), "4'hb");
        assert_eq!(format!("{:x}", x4), "4'ha");
    }

    #[test]
    fn reduction() {
        let x00 = calc_expression(" &4'b0000", None);
        let x01 = calc_expression(" |4'b0000", None);
        let x02 = calc_expression(" ^4'b0000", None);
        let x03 = calc_expression("~&4'b0000", None);
        let x04 = calc_expression("~|4'b0000", None);
        let x05 = calc_expression("~^4'b0000", None);

        let x06 = calc_expression(" &4'b1111", None);
        let x07 = calc_expression(" |4'b1111", None);
        let x08 = calc_expression(" ^4'b1111", None);
        let x09 = calc_expression("~&4'b1111", None);
        let x10 = calc_expression("~|4'b1111", None);
        let x11 = calc_expression("~^4'b1111", None);

        let x12 = calc_expression(" &4'b0110", None);
        let x13 = calc_expression(" |4'b0110", None);
        let x14 = calc_expression(" ^4'b0110", None);
        let x15 = calc_expression("~&4'b0110", None);
        let x16 = calc_expression("~|4'b0110", None);
        let x17 = calc_expression("~^4'b0110", None);

        let x18 = calc_expression(" &4'b1000", None);
        let x19 = calc_expression(" |4'b1000", None);
        let x20 = calc_expression(" ^4'b1000", None);
        let x21 = calc_expression("~&4'b1000", None);
        let x22 = calc_expression("~|4'b1000", None);
        let x23 = calc_expression("~^4'b1000", None);

        assert_eq!(format!("{:x}", x00), "1'h0");
        assert_eq!(format!("{:x}", x01), "1'h0");
        assert_eq!(format!("{:x}", x02), "1'h0");
        assert_eq!(format!("{:x}", x03), "1'h1");
        assert_eq!(format!("{:x}", x04), "1'h1");
        assert_eq!(format!("{:x}", x05), "1'h1");

        assert_eq!(format!("{:x}", x06), "1'h1");
        assert_eq!(format!("{:x}", x07), "1'h1");
        assert_eq!(format!("{:x}", x08), "1'h0");
        assert_eq!(format!("{:x}", x09), "1'h0");
        assert_eq!(format!("{:x}", x10), "1'h0");
        assert_eq!(format!("{:x}", x11), "1'h1");

        assert_eq!(format!("{:x}", x12), "1'h0");
        assert_eq!(format!("{:x}", x13), "1'h1");
        assert_eq!(format!("{:x}", x14), "1'h0");
        assert_eq!(format!("{:x}", x15), "1'h1");
        assert_eq!(format!("{:x}", x16), "1'h0");
        assert_eq!(format!("{:x}", x17), "1'h1");

        assert_eq!(format!("{:x}", x18), "1'h0");
        assert_eq!(format!("{:x}", x19), "1'h1");
        assert_eq!(format!("{:x}", x20), "1'h1");
        assert_eq!(format!("{:x}", x21), "1'h1");
        assert_eq!(format!("{:x}", x22), "1'h0");
        assert_eq!(format!("{:x}", x23), "1'h0");
    }

    #[test]
    fn conditional() {
        let x0 = calc_expression("if 0 ? 1 : 2", None);
        let x1 = calc_expression("if 1 ? 1 : 2", None);

        assert_eq!(format!("{:x}", x0), "32'sh00000002");
        assert_eq!(format!("{:x}", x1), "32'sh00000001");
    }

    #[test]
    fn concatenation() {
        let x0 = calc_expression("{4'h1, 4'h3}", None);
        let x1 = calc_expression("{4'h1 repeat 3, 4'h3}", None);

        assert_eq!(format!("{:x}", x0), "8'h13");
        assert_eq!(format!("{:x}", x1), "16'h1113");
    }

    #[test]
    fn inside_outside() {
        let x0 = calc_expression("inside 1 {1, 2}", None);
        let x1 = calc_expression("inside 0 {1, 2}", None);
        let x2 = calc_expression("inside 5 {3, 2..=10}", None);
        let x3 = calc_expression("inside 1 {3, 2..=10}", None);
        let x4 = calc_expression("outside 1 {1, 2}", None);
        let x5 = calc_expression("outside 0 {1, 2}", None);
        let x6 = calc_expression("outside 5 {3, 2..=10}", None);
        let x7 = calc_expression("outside 1 {3, 2..=10}", None);

        assert_eq!(format!("{:x}", x0), "1'h1");
        assert_eq!(format!("{:x}", x1), "1'h0");
        assert_eq!(format!("{:x}", x2), "1'h1");
        assert_eq!(format!("{:x}", x3), "1'h0");
        assert_eq!(format!("{:x}", x4), "1'h0");
        assert_eq!(format!("{:x}", x5), "1'h1");
        assert_eq!(format!("{:x}", x6), "1'h0");
        assert_eq!(format!("{:x}", x7), "1'h1");
    }

    #[test]
    fn mixed_int_float_pow() {
        let x0 = calc_expression("2 ** (41 as f64)", None);
        let x1 = calc_expression("2 ** ((48 - 7) as f64)", None);

        let expected = 2.0_f64.powf(41.0).to_bits();
        assert_eq!(x0.to_u64(), Some(expected), "2 ** (41 as f64)");
        assert_eq!(x1.to_u64(), Some(expected), "2 ** ((48-7) as f64)");
    }

    #[test]
    fn context_width() {
        let x0 = calc_expression("(2'd0 - 2'd1) == 3'd7", None);

        assert_eq!(format!("{:x}", x0), "1'h1");
    }

    fn bit(width: usize) -> Box<Expression> {
        let mut t = Type::new(TypeKind::Bit);
        t.set_concrete_width(Shape::new(vec![Some(width)]));
        let ret = Comptime {
            value: ValueVariant::Unknown,
            r#type: t,
            ..Default::default()
        };
        Box::new(Expression::Term(Box::new(Factor::Value(ret))))
    }

    fn logic(width: usize) -> Box<Expression> {
        let mut t = Type::new(TypeKind::Logic);
        t.set_concrete_width(Shape::new(vec![Some(width)]));
        let ret = Comptime {
            value: ValueVariant::Unknown,
            r#type: t,
            ..Default::default()
        };
        Box::new(Expression::Term(Box::new(Factor::Value(ret))))
    }

    fn signed_bit(width: usize) -> Box<Expression> {
        let mut t = Type::new(TypeKind::Bit);
        t.set_concrete_width(Shape::new(vec![Some(width)]));
        t.signed = true;
        let ret = Comptime {
            value: ValueVariant::Unknown,
            r#type: t,
            ..Default::default()
        };
        Box::new(Expression::Term(Box::new(Factor::Value(ret))))
    }

    fn signed_logic(width: usize) -> Box<Expression> {
        let mut t = Type::new(TypeKind::Logic);
        t.set_concrete_width(Shape::new(vec![Some(width)]));
        t.signed = true;
        let ret = Comptime {
            value: ValueVariant::Unknown,
            r#type: t,
            ..Default::default()
        };
        Box::new(Expression::Term(Box::new(Factor::Value(ret))))
    }

    fn value(value: usize) -> Box<Expression> {
        let mut t = Type::new(TypeKind::Logic);
        t.set_concrete_width(Shape::new(vec![Some(32)]));
        let ret = Comptime {
            value: ValueVariant::Numeric(Value::new(value as u64, 32, false)),
            r#type: t,
            is_const: true,
            is_global: true,
            ..Default::default()
        };
        Box::new(Expression::Term(Box::new(Factor::Value(ret))))
    }

    fn eval_comptime_unary(context: &mut Context, op: Op, x: Box<Expression>) -> Comptime {
        let comptime = Box::new(Comptime::create_unknown(TokenRange::default()));
        let mut ret = Expression::Unary(op, x, comptime);
        ret.eval_comptime(context, None).clone()
    }

    fn eval_comptime_binary(
        context: &mut Context,
        x: Box<Expression>,
        op: Op,
        y: Box<Expression>,
    ) -> Comptime {
        let comptime = Box::new(Comptime::create_unknown(TokenRange::default()));
        let mut ret = Expression::Binary(x, op, y, comptime);
        ret.eval_comptime(context, None).clone()
    }

    fn eval_comptime_ternary(
        context: &mut Context,
        x: Box<Expression>,
        y: Box<Expression>,
        z: Box<Expression>,
    ) -> Comptime {
        let comptime = Box::new(Comptime::create_unknown(TokenRange::default()));
        let mut ret = Expression::Ternary(x, y, z, comptime);
        ret.eval_comptime(context, None).clone()
    }

    fn eval_comptime_concat(
        context: &mut Context,
        x: Vec<(Expression, Option<Expression>)>,
    ) -> Comptime {
        let comptime = Box::new(Comptime::create_unknown(TokenRange::default()));
        let mut ret = Expression::Concatenation(x, comptime);
        ret.eval_comptime(context, None).clone()
    }

    #[test]
    fn unary_type() {
        let mut context = Context::default();

        let x0 = eval_comptime_unary(&mut context, Op::BitAnd, bit(3));
        let x1 = eval_comptime_unary(&mut context, Op::BitAnd, logic(4));
        let x2 = eval_comptime_unary(&mut context, Op::BitNot, bit(3));
        let x3 = eval_comptime_unary(&mut context, Op::BitNot, logic(4));
        let x4 = eval_comptime_unary(&mut context, Op::LogicNot, bit(1));
        let x5 = eval_comptime_unary(&mut context, Op::LogicNot, logic(1));
        let x6 = eval_comptime_unary(&mut context, Op::Add, bit(3));
        let x7 = eval_comptime_unary(&mut context, Op::Add, logic(4));

        let errors = context.drain_errors();
        assert!(errors.is_empty());

        assert_eq!(format!("{}", x0.r#type), "bit<1>");
        assert_eq!(format!("{}", x1.r#type), "logic<1>");
        assert_eq!(format!("{}", x2.r#type), "bit<3>");
        assert_eq!(format!("{}", x3.r#type), "logic<4>");
        assert_eq!(format!("{}", x4.r#type), "bit<1>");
        assert_eq!(format!("{}", x5.r#type), "logic<1>");
        assert_eq!(format!("{}", x6.r#type), "bit<3>");
        assert_eq!(format!("{}", x7.r#type), "logic<4>");
    }

    #[test]
    fn binary_type() {
        let mut context = Context::default();

        let x00 = eval_comptime_binary(&mut context, bit(4), Op::Add, bit(3));
        let x01 = eval_comptime_binary(&mut context, bit(4), Op::Add, logic(3));
        let x02 = eval_comptime_binary(&mut context, logic(4), Op::Add, logic(3));
        let x03 = eval_comptime_binary(&mut context, bit(4), Op::Eq, bit(3));
        let x04 = eval_comptime_binary(&mut context, bit(4), Op::Eq, logic(3));
        let x05 = eval_comptime_binary(&mut context, logic(4), Op::Eq, logic(3));
        let x06 = eval_comptime_binary(&mut context, bit(1), Op::LogicAnd, bit(1));
        let x07 = eval_comptime_binary(&mut context, bit(1), Op::LogicAnd, logic(1));
        let x08 = eval_comptime_binary(&mut context, logic(1), Op::LogicAnd, logic(1));
        let x09 = eval_comptime_binary(&mut context, signed_bit(4), Op::ArithShiftL, bit(3));
        let x10 = eval_comptime_binary(&mut context, signed_bit(4), Op::ArithShiftL, logic(3));
        let x11 = eval_comptime_binary(&mut context, signed_logic(4), Op::ArithShiftL, logic(3));

        let errors = context.drain_errors();
        assert!(errors.is_empty());

        assert_eq!(format!("{}", x00.r#type), "bit<4>");
        assert_eq!(format!("{}", x01.r#type), "logic<4>");
        assert_eq!(format!("{}", x02.r#type), "logic<4>");
        assert_eq!(format!("{}", x03.r#type), "bit<1>");
        assert_eq!(format!("{}", x04.r#type), "logic<1>");
        assert_eq!(format!("{}", x05.r#type), "logic<1>");
        assert_eq!(format!("{}", x06.r#type), "bit<1>");
        assert_eq!(format!("{}", x07.r#type), "logic<1>");
        assert_eq!(format!("{}", x08.r#type), "logic<1>");
        assert_eq!(format!("{}", x09.r#type), "signed bit<4>");
        assert_eq!(format!("{}", x10.r#type), "signed bit<4>");
        assert_eq!(format!("{}", x11.r#type), "signed logic<4>");
    }

    #[test]
    fn ternary_type() {
        let mut context = Context::default();

        let x0 = eval_comptime_ternary(&mut context, bit(1), bit(4), bit(3));
        let x1 = eval_comptime_ternary(&mut context, bit(1), bit(4), logic(3));
        let x2 = eval_comptime_ternary(&mut context, bit(1), logic(4), bit(3));
        let x3 = eval_comptime_ternary(&mut context, bit(1), logic(4), logic(3));
        let x4 = eval_comptime_ternary(&mut context, logic(1), bit(4), bit(3));
        let x5 = eval_comptime_ternary(&mut context, logic(1), bit(4), logic(3));
        let x6 = eval_comptime_ternary(&mut context, logic(1), logic(4), bit(3));
        let x7 = eval_comptime_ternary(&mut context, logic(1), logic(4), logic(3));

        let errors = context.drain_errors();
        assert!(errors.is_empty());

        assert_eq!(format!("{}", x0.r#type), "bit<4>");
        assert_eq!(format!("{}", x1.r#type), "logic<4>");
        assert_eq!(format!("{}", x2.r#type), "logic<4>");
        assert_eq!(format!("{}", x3.r#type), "logic<4>");
        assert_eq!(format!("{}", x4.r#type), "bit<4>");
        assert_eq!(format!("{}", x5.r#type), "logic<4>");
        assert_eq!(format!("{}", x6.r#type), "logic<4>");
        assert_eq!(format!("{}", x7.r#type), "logic<4>");
    }

    #[test]
    fn concat_type() {
        let mut context = Context::default();

        let x0 = eval_comptime_concat(
            &mut context,
            vec![(*bit(1), None), (*bit(4), None), (*bit(3), None)],
        );
        let x1 = eval_comptime_concat(
            &mut context,
            vec![(*bit(1), None), (*logic(4), None), (*bit(3), None)],
        );
        let x2 = eval_comptime_concat(
            &mut context,
            vec![(*logic(1), None), (*logic(4), None), (*logic(3), None)],
        );
        let x3 = eval_comptime_concat(
            &mut context,
            vec![(*bit(1), Some(*value(2))), (*bit(4), None), (*bit(3), None)],
        );
        let x4 = eval_comptime_concat(
            &mut context,
            vec![
                (*bit(1), None),
                (*logic(4), Some(*value(2))),
                (*bit(3), None),
            ],
        );
        let x5 = eval_comptime_concat(
            &mut context,
            vec![
                (*logic(1), None),
                (*logic(4), None),
                (*logic(3), Some(*value(3))),
            ],
        );

        let errors = context.drain_errors();
        assert!(errors.is_empty());

        assert_eq!(format!("{}", x0.r#type), "bit<8>");
        assert_eq!(format!("{}", x1.r#type), "logic<8>");
        assert_eq!(format!("{}", x2.r#type), "logic<8>");
        assert_eq!(format!("{}", x3.r#type), "bit<9>");
        assert_eq!(format!("{}", x4.r#type), "logic<12>");
        assert_eq!(format!("{}", x5.r#type), "logic<14>");
    }
}