solang 0.3.5

Solang Solidity Compiler
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
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
// SPDX-License-Identifier: Apache-2.0

pub(crate) mod dispatch;
pub(crate) mod encoding;
pub(crate) mod events;

use self::encoding::{soroban_decode, soroban_decode_arg, soroban_encode, soroban_encode_arg};
use self::events::SorobanEventEmitter;
use crate::codegen::cfg::{ASTFunction, ControlFlowGraph, Instr, InternalCallTy};
use crate::codegen::error::CodegenError;
use crate::codegen::expression::{expression, load_storage};
use crate::codegen::interface::{EventEmitter, TargetCodegen};
use crate::codegen::storage::storage_slots_array_push;
use crate::codegen::vartable::Vartable;
use crate::codegen::Options;
use crate::codegen::{Expression, HostFunctions};
use crate::sema::ast;
use crate::sema::ast::{Function, Namespace, RetrieveType, StructType, Type};
use num_bigint::{BigInt, Sign};
use num_traits::{ToPrimitive, Zero};
use solang_parser::helpers::CodeLocation;
use solang_parser::{diagnostics::Diagnostic, pt};

/// Codegen for the Soroban target. All Soroban-specific lowering lives under this module
/// (`dispatch`, `encoding`, `events`, plus the validation and storage helpers below).
pub(crate) struct SorobanTarget;

impl TargetCodegen for SorobanTarget {
    fn validate_contract(&self, contract_no: usize, ns: &mut Namespace) {
        validate_accessor_abi_types(contract_no, ns);
        if ns.diagnostics.any_errors() {
            return;
        }
        validate_event_abi_types(contract_no, ns);
    }

    fn validate_cfgs(&self, all_cfg: &[ControlFlowGraph], ns: &mut Namespace) {
        validate_abi_types(all_cfg, ns);
    }

    fn function_dispatch(
        &self,
        contract_no: usize,
        all_cfg: &mut [ControlFlowGraph],
        ns: &mut Namespace,
        opt: &Options,
    ) -> Vec<ControlFlowGraph> {
        dispatch::function_dispatch(contract_no, all_cfg, ns, opt)
    }

    fn lower_storage_array_length(
        &self,
        loc: &pt::Loc,
        ty: &Type,
        array: Expression,
        elem_ty: &Type,
        _cfg: &mut ControlFlowGraph,
        _vartab: &mut Vartable,
        _ns: &Namespace,
    ) -> Expression {
        Expression::StorageArrayLength {
            loc: *loc,
            ty: ty.clone(),
            array: Box::new(array),
            elem_ty: elem_ty.clone(),
        }
    }

    /// Soroban lazy decode path: if memory contains encoded handles, decode on demand.
    fn lower_load(
        &self,
        load: Expression,
        cfg: &mut ControlFlowGraph,
        vartab: &mut Vartable,
        ns: &Namespace,
    ) -> Expression {
        if let Expression::Load { ref expr, .. } = load {
            if let Type::Ref(inner) = expr.ty() {
                if matches!(inner.as_ref(), Type::SorobanHandle(_)) {
                    return soroban_decode_arg(load, cfg, vartab, ns, None);
                }
            }
        }
        load
    }

    fn prepare_storage_value(
        &self,
        value: Expression,
        dest: &Expression,
        cfg: &mut ControlFlowGraph,
        vartab: &mut Vartable,
        ns: &Namespace,
    ) -> Expression {
        // For Store to a non-SorobanHandle Ref, pass the value through unchanged.
        if let Type::Ref(inner) = dest.ty() {
            if !matches!(inner.as_ref(), Type::SorobanHandle(_)) {
                return value;
            }
        }
        // SetStorage or Store to a SorobanHandle: encode as ScVal.
        soroban_encode_arg(value, cfg, vartab, ns)
    }

    fn default_storage_value(
        &self,
        loc: &pt::Loc,
        ty: &Type,
        cfg: &mut ControlFlowGraph,
        vartab: &mut Vartable,
        ns: &Namespace,
    ) -> Option<Expression> {
        match ty {
            Type::DynamicBytes => Some(soroban_bytes_new(loc, cfg, vartab)),
            Type::String => {
                let buf = vartab.temp_name("empty_buf", ty);
                cfg.add(
                    vartab,
                    Instr::Set {
                        loc: *loc,
                        res: buf,
                        expr: Expression::AllocDynamicBytes {
                            loc: *loc,
                            ty: ty.clone(),
                            size: Box::new(Expression::NumberLiteral {
                                loc: *loc,
                                ty: Type::Uint(32),
                                value: BigInt::from(0u64),
                            }),
                            initializer: Some(vec![]),
                        },
                    },
                );
                Some(Expression::Variable {
                    loc: *loc,
                    ty: ty.clone(),
                    var_no: buf,
                })
            }
            Type::Bytes(_) => Some(Expression::NumberLiteral {
                loc: *loc,
                ty: ty.clone(),
                value: BigInt::from(0u64),
            }),
            Type::Slice(_) => Some(soroban_vec_new(loc, ty, cfg, vartab)),
            Type::Array(elem_ty, dims)
                if dims.last() == Some(&ast::ArrayLength::Dynamic)
                    && !elem_ty.is_reference_type(ns) =>
            {
                Some(soroban_vec_new(loc, ty, cfg, vartab))
            }
            _ => None,
        }
    }

    fn abi_encode(
        &self,
        loc: &pt::Loc,
        args: Vec<Expression>,
        ns: &Namespace,
        vartab: &mut Vartable,
        cfg: &mut ControlFlowGraph,
        packed: bool,
    ) -> (Expression, Expression) {
        // Soroban encodes to ScVal handles; soroban_encode returns a 3-tuple, drop the spread.
        let (buffer, size, _) = soroban_encode(loc, args, ns, vartab, cfg, packed);
        (buffer, size)
    }

    fn abi_decode(
        &self,
        loc: &pt::Loc,
        buffer: &Expression,
        types: &[Type],
        ns: &Namespace,
        vartab: &mut Vartable,
        cfg: &mut ControlFlowGraph,
        buffer_size_expr: Option<Expression>,
    ) -> Vec<Expression> {
        soroban_decode(loc, buffer, types, ns, vartab, cfg, buffer_size_expr)
    }

    fn storage_array_push(
        &self,
        loc: &pt::Loc,
        args: &[ast::Expression],
        cfg: &mut ControlFlowGraph,
        contract_no: usize,
        func: Option<&Function>,
        ns: &Namespace,
        vartab: &mut Vartable,
        opt: &Options,
    ) -> Expression {
        if args[0].ty().is_storage_bytes() {
            return soroban_bytes_push(loc, args, cfg, contract_no, func, ns, vartab, opt, self);
        }
        // Arrays whose elements are reference types use the shared hashed-slots path (the
        // entry offset and value encoding are routed back through this target); everything
        // else (scalars) goes through the dedicated host-vector push.
        let elem_is_ref = matches!(
            args[0].ty(),
            Type::StorageRef(_, inner)
                if matches!(inner.deref_any(), Type::Array(elem_ty, _)
                    if elem_ty.is_reference_type(ns))
        );
        if elem_is_ref {
            storage_slots_array_push(loc, args, cfg, contract_no, func, ns, vartab, opt, self)
        } else {
            soroban_storage_push(loc, args, cfg, contract_no, func, ns, vartab, opt, self)
        }
    }

    fn storage_array_pop(
        &self,
        loc: &pt::Loc,
        args: &[ast::Expression],
        return_ty: &Type,
        cfg: &mut ControlFlowGraph,
        contract_no: usize,
        func: Option<&Function>,
        ns: &Namespace,
        vartab: &mut Vartable,
        opt: &Options,
    ) -> Expression {
        // `bytes` in storage is a host BytesObject (not a Vec): pop via the dedicated
        // host `bytes_pop`, read-modify-write on the stored handle.
        if args[0].ty().is_storage_bytes() {
            soroban_bytes_pop(
                loc,
                args,
                return_ty,
                cfg,
                contract_no,
                func,
                ns,
                vartab,
                opt,
                self,
            )
        } else {
            soroban_storage_pop(
                loc,
                args,
                return_ty,
                cfg,
                contract_no,
                func,
                ns,
                vartab,
                opt,
                self,
            )
        }
    }

    fn storage_array_entry_offset(
        &self,
        loc: &pt::Loc,
        var_expr: &Expression,
        index: Expression,
        elem_ty: &Type,
        _slot_ty: &Type,
        cfg: &mut ControlFlowGraph,
        vartab: &mut Vartable,
        ns: &Namespace,
    ) -> Expression {
        // Soroban indexes its host vector by an encoded key rather than a hashed slot.
        let index_encoded = soroban_encode_arg(index, cfg, vartab, ns);
        Expression::Subscript {
            loc: *loc,
            ty: elem_ty.clone(),
            array_ty: Type::StorageRef(false, Box::new(elem_ty.clone())),
            expr: Box::new(var_expr.clone()),
            index: Box::new(index_encoded),
        }
    }

    fn event_emitter<'a>(
        &self,
        _loc: &pt::Loc,
        event_no: usize,
        args: &'a [ast::Expression],
        ns: &'a Namespace,
    ) -> Box<dyn EventEmitter + 'a> {
        Box::new(SorobanEventEmitter { args, ns, event_no })
    }

    fn lower_builtin(
        &self,
        loc: &pt::Loc,
        builtin: ast::Builtin,
        args: &[ast::Expression],
        cfg: &mut ControlFlowGraph,
        contract_no: usize,
        func: Option<&Function>,
        ns: &Namespace,
        vartab: &mut Vartable,
        opt: &Options,
    ) -> Option<Expression> {
        match builtin {
            ast::Builtin::GetAddress => {
                // // In soroban, address is retrieved via a host function call
                if let Some(constant_id) = &ns.contracts[contract_no].program_id {
                    return Some(Expression::NumberLiteral {
                        loc: *loc,
                        ty: Type::Address(false),
                        value: BigInt::from_bytes_be(Sign::Plus, constant_id),
                    });
                }
                let address_var_no = vartab.temp_anonymous(&Type::Uint(64));
                let address_var = Expression::Variable {
                    loc: *loc,
                    ty: Type::Address(false),
                    var_no: address_var_no,
                };
                cfg.add(
                    vartab,
                    Instr::Call {
                        res: vec![address_var_no],
                        return_tys: vec![Type::Uint(64)],
                        call: InternalCallTy::HostFunction {
                            name: HostFunctions::GetCurrentContractAddress.name().to_string(),
                        },
                        args: vec![],
                    },
                );
                Some(address_var)
            }
            ast::Builtin::RequireAuth => {
                let var_temp = vartab.temp(
                    &pt::Identifier {
                        name: "auth".to_owned(),
                        loc: *loc,
                    },
                    &Type::Bool,
                );

                let var = Expression::Variable {
                    loc: *loc,
                    ty: Type::Address(false),
                    var_no: var_temp,
                };
                let expr = expression(&args[0], cfg, contract_no, func, ns, vartab, opt, self);

                let expr = if let Type::StorageRef(_, _) = args[0].ty() {
                    let expr_no = vartab.temp_anonymous(&Type::Address(false));
                    let expr = Expression::Variable {
                        loc: pt::Loc::Codegen,
                        ty: Type::Address(false),
                        var_no: expr_no,
                    };

                    let storage_load = Instr::LoadStorage {
                        res: expr_no,
                        ty: Type::Address(false),
                        storage: expr.clone(),
                        storage_type: None,
                    };

                    cfg.add(vartab, storage_load);

                    expr
                } else {
                    expr
                };

                let instr = Instr::Call {
                    res: vec![var_temp],
                    return_tys: vec![Type::Void],
                    call: InternalCallTy::HostFunction {
                        name: HostFunctions::RequireAuth.name().to_string(),
                    },
                    args: vec![expr],
                };

                cfg.add(vartab, instr);

                Some(var)
            }
            // This is the trickiest host function to implement. The reason is takes `InvokerContractAuthEntry` enum as an argument.
            // let x = SubContractInvocation {
            //     context: ContractContext {
            //         contract: c.clone(),
            //         fn_name: symbol_short!("increment"),
            //          args: vec![&env, current_contract.into_val(&env)],
            //     },
            //     sub_invocations: vec![&env],
            //  };
            //  let auth_context = auth::InvokerContractAuthEntry::Contract(x);
            // Most of the logic done here is just to encode the above struct as the host expects it.
            // FIXME: This uses a series of MapNew, and multiple inserts to create the struct.
            // This is not efficient and should be optimized.
            // Instead, we should use MapNewFromLinearMemory to create the struct in one go.
            ast::Builtin::AuthAsCurrContract => {
                let symbol_key_1 = Expression::BytesLiteral {
                    loc: pt::Loc::Codegen,
                    ty: Type::String,
                    value: "contract".as_bytes().to_vec(),
                };
                let symbol_key_2 = Expression::BytesLiteral {
                    loc: pt::Loc::Codegen,
                    ty: Type::String,
                    value: "fn_name".as_bytes().to_vec(),
                };
                let symbol_key_3 = Expression::BytesLiteral {
                    loc: pt::Loc::Codegen,
                    ty: Type::String,
                    value: "args".as_bytes().to_vec(),
                };

                let symbols = soroban_encode(
                    loc,
                    vec![symbol_key_1, symbol_key_2, symbol_key_3],
                    ns,
                    vartab,
                    cfg,
                    false,
                )
                .2;

                let contract_value =
                    expression(&args[0], cfg, contract_no, func, ns, vartab, opt, self);
                let fn_name_symbol =
                    expression(&args[1], cfg, contract_no, func, ns, vartab, opt, self);

                let symbol_string =
                    if let Expression::BytesLiteral { loc, ty: _, value } = fn_name_symbol {
                        Expression::BytesLiteral {
                            loc,
                            ty: Type::String,
                            value,
                        }
                    } else {
                        unreachable!()
                    };
                let encode_func_symbol =
                    soroban_encode(loc, vec![symbol_string], ns, vartab, cfg, false).2[0].clone();

                let mut args_vec = Vec::new();
                for arg in args.iter().skip(2) {
                    let arg = expression(arg, cfg, contract_no, func, ns, vartab, opt, self);
                    args_vec.push(arg);
                }

                let args_encoded = self.abi_encode(loc, args_vec.clone(), ns, vartab, cfg, false);

                let args_buf = args_encoded.0;

                let args_buf_ptr = Expression::VectorData {
                    pointer: Box::new(args_buf.clone()),
                };

                let args_buf_extended = Expression::ZeroExt {
                    loc: pt::Loc::Codegen,
                    ty: Type::Uint(64),
                    expr: Box::new(args_buf_ptr.clone()),
                };

                let args_buf_shifted = Expression::ShiftLeft {
                    loc: pt::Loc::Codegen,
                    ty: Type::Uint(64),
                    left: Box::new(args_buf_extended.clone()),
                    right: Box::new(Expression::NumberLiteral {
                        loc: pt::Loc::Codegen,
                        ty: Type::Uint(64),
                        value: BigInt::from(32),
                    }),
                };

                let args_buf_pos = Expression::Add {
                    loc: pt::Loc::Codegen,
                    ty: Type::Uint(64),
                    left: Box::new(args_buf_shifted.clone()),
                    right: Box::new(Expression::NumberLiteral {
                        loc: pt::Loc::Codegen,
                        ty: Type::Uint(64),
                        value: BigInt::from(4),
                    }),
                    overflowing: false,
                };

                let args_len = Expression::NumberLiteral {
                    loc: pt::Loc::Codegen,
                    ty: Type::Uint(64),
                    value: BigInt::from(args_vec.len()),
                };
                let args_len_encoded = Expression::ShiftLeft {
                    loc: pt::Loc::Codegen,
                    ty: Type::Uint(64),
                    left: Box::new(args_len.clone()),
                    right: Box::new(Expression::NumberLiteral {
                        loc: pt::Loc::Codegen,
                        ty: Type::Uint(64),
                        value: BigInt::from(32),
                    }),
                };
                let args_len_encoded = Expression::Add {
                    loc: pt::Loc::Codegen,
                    ty: Type::Uint(64),
                    left: Box::new(args_len_encoded.clone()),
                    right: Box::new(Expression::NumberLiteral {
                        loc: pt::Loc::Codegen,
                        ty: Type::Uint(64),
                        value: BigInt::from(4),
                    }),
                    overflowing: false,
                };

                let args_vec_var_no = vartab.temp_anonymous(&Type::Uint(64));
                let args_vec_var = Expression::Variable {
                    loc: pt::Loc::Codegen,
                    ty: Type::Uint(64),
                    var_no: args_vec_var_no,
                };

                let vec_new_from_linear_mem = Instr::Call {
                    res: vec![args_vec_var_no],
                    return_tys: vec![Type::Uint(64)],
                    call: InternalCallTy::HostFunction {
                        name: HostFunctions::VectorNewFromLinearMemory.name().to_string(),
                    },
                    args: vec![args_buf_pos.clone(), args_len_encoded],
                };

                cfg.add(vartab, vec_new_from_linear_mem);

                let context_map = vartab.temp_anonymous(&Type::Uint(64));
                let context_map_var = Expression::Variable {
                    loc: pt::Loc::Codegen,
                    ty: Type::Uint(64),
                    var_no: context_map,
                };

                let context_map_new = Instr::Call {
                    res: vec![context_map],
                    return_tys: vec![Type::Uint(64)],
                    call: InternalCallTy::HostFunction {
                        name: HostFunctions::MapNew.name().to_string(),
                    },
                    args: vec![],
                };

                cfg.add(vartab, context_map_new);

                let context_map_put = Instr::Call {
                    res: vec![context_map],
                    return_tys: vec![Type::Uint(64)],
                    call: InternalCallTy::HostFunction {
                        name: HostFunctions::MapPut.name().to_string(),
                    },
                    args: vec![context_map_var.clone(), symbols[0].clone(), contract_value],
                };

                cfg.add(vartab, context_map_put);

                let context_map_put_2 = Instr::Call {
                    res: vec![context_map],
                    return_tys: vec![Type::Uint(64)],
                    call: InternalCallTy::HostFunction {
                        name: HostFunctions::MapPut.name().to_string(),
                    },
                    args: vec![
                        context_map_var.clone(),
                        symbols[1].clone(),
                        encode_func_symbol,
                    ],
                };

                cfg.add(vartab, context_map_put_2);

                let context_map_put_3 = Instr::Call {
                    res: vec![context_map],
                    return_tys: vec![Type::Uint(64)],
                    call: InternalCallTy::HostFunction {
                        name: HostFunctions::MapPut.name().to_string(),
                    },
                    args: vec![
                        context_map_var.clone(),
                        symbols[2].clone(),
                        args_vec_var.clone(),
                    ],
                };

                cfg.add(vartab, context_map_put_3);

                // Now forming "sub invocations" map
                // FIXME: This should eventually be fixed to take other sub_invocations as arguments. For now, it is hardcoded to take an empty vector.

                let key_1 = Expression::BytesLiteral {
                    loc: pt::Loc::Codegen,
                    ty: Type::String,
                    value: "context".as_bytes().to_vec(),
                };

                let key_2 = Expression::BytesLiteral {
                    loc: pt::Loc::Codegen,
                    ty: Type::String,
                    value: "sub_invocations".as_bytes().to_vec(),
                };

                let keys = soroban_encode(loc, vec![key_1, key_2], ns, vartab, cfg, false).2;

                let sub_invocations_map = vartab.temp_anonymous(&Type::Uint(64));
                let sub_invocations_map_var = Expression::Variable {
                    loc: pt::Loc::Codegen,
                    ty: Type::Uint(64),
                    var_no: sub_invocations_map,
                };

                let sub_invocations_map_new = Instr::Call {
                    res: vec![sub_invocations_map],
                    return_tys: vec![Type::Uint(64)],
                    call: InternalCallTy::HostFunction {
                        name: HostFunctions::MapNew.name().to_string(),
                    },
                    args: vec![],
                };

                cfg.add(vartab, sub_invocations_map_new);

                let sub_invocations_map_put = Instr::Call {
                    res: vec![sub_invocations_map],
                    return_tys: vec![Type::Uint(64)],
                    call: InternalCallTy::HostFunction {
                        name: HostFunctions::MapPut.name().to_string(),
                    },
                    args: vec![
                        sub_invocations_map_var.clone(),
                        keys[0].clone(),
                        context_map_var,
                    ],
                };

                cfg.add(vartab, sub_invocations_map_put);

                let empy_vec_var = vartab.temp_anonymous(&Type::Uint(64));
                let empty_vec_expr = Expression::Variable {
                    loc: pt::Loc::Codegen,
                    ty: Type::Uint(64),
                    var_no: empy_vec_var,
                };
                let empty_vec = Instr::Call {
                    res: vec![empy_vec_var],
                    return_tys: vec![Type::Uint(64)],
                    call: InternalCallTy::HostFunction {
                        name: HostFunctions::VectorNew.name().to_string(),
                    },
                    args: vec![],
                };

                cfg.add(vartab, empty_vec);

                let sub_invocations_map_put_2 = Instr::Call {
                    res: vec![sub_invocations_map],
                    return_tys: vec![Type::Uint(64)],
                    call: InternalCallTy::HostFunction {
                        name: HostFunctions::MapPut.name().to_string(),
                    },
                    args: vec![
                        sub_invocations_map_var.clone(),
                        keys[1].clone(),
                        empty_vec_expr,
                    ],
                };

                cfg.add(vartab, sub_invocations_map_put_2);

                // now forming the enum. The enum is a VecObject[Symbol("Contract"), sub invokations map].
                // FIXME: This should use VecNewFromLinearMemory to create the enum in one go.

                let contract_capitalized = Expression::BytesLiteral {
                    loc: pt::Loc::Codegen,
                    ty: Type::String,
                    value: "Contract".as_bytes().to_vec(),
                };

                let contract_capitalized =
                    soroban_encode(loc, vec![contract_capitalized], ns, vartab, cfg, false).2[0]
                        .clone();

                let enum_vec = vartab.temp_anonymous(&Type::Uint(64));
                let enum_vec_var = Expression::Variable {
                    loc: pt::Loc::Codegen,
                    ty: Type::Uint(64),
                    var_no: enum_vec,
                };

                let enum_vec_new = Instr::Call {
                    res: vec![enum_vec],
                    return_tys: vec![Type::Uint(64)],
                    call: InternalCallTy::HostFunction {
                        name: HostFunctions::VectorNew.name().to_string(),
                    },
                    args: vec![],
                };

                cfg.add(vartab, enum_vec_new);

                let enum_vec_put = Instr::Call {
                    res: vec![enum_vec],
                    return_tys: vec![Type::Uint(64)],
                    call: InternalCallTy::HostFunction {
                        name: HostFunctions::VecPushBack.name().to_string(),
                    },
                    args: vec![enum_vec_var.clone(), contract_capitalized],
                };

                cfg.add(vartab, enum_vec_put);

                let enum_vec_put_2 = Instr::Call {
                    res: vec![enum_vec],
                    return_tys: vec![Type::Uint(64)],
                    call: InternalCallTy::HostFunction {
                        name: HostFunctions::VecPushBack.name().to_string(),
                    },
                    args: vec![enum_vec_var.clone(), sub_invocations_map_var],
                };

                cfg.add(vartab, enum_vec_put_2);

                let vec = vartab.temp_anonymous(&Type::Uint(64));
                let vec_var = Expression::Variable {
                    loc: pt::Loc::Codegen,
                    ty: Type::Uint(64),
                    var_no: vec,
                };

                let vec_new = Instr::Call {
                    res: vec![vec],
                    return_tys: vec![Type::Uint(64)],
                    call: InternalCallTy::HostFunction {
                        name: HostFunctions::VectorNew.name().to_string(),
                    },
                    args: vec![],
                };

                cfg.add(vartab, vec_new);

                let vec_push_back = Instr::Call {
                    res: vec![vec],
                    return_tys: vec![Type::Uint(64)],
                    call: InternalCallTy::HostFunction {
                        name: HostFunctions::VecPushBack.name().to_string(),
                    },
                    args: vec![vec_var.clone(), enum_vec_var],
                };

                cfg.add(vartab, vec_push_back);

                let call_res = vartab.temp_anonymous(&Type::Uint(64));
                let call_res_var = Expression::Variable {
                    loc: pt::Loc::Codegen,
                    ty: Type::Uint(64),
                    var_no: call_res,
                };

                let auth_call = Instr::Call {
                    res: vec![call_res],
                    return_tys: vec![Type::Void],
                    call: InternalCallTy::HostFunction {
                        name: HostFunctions::AuthAsCurrContract.name().to_string(),
                    },
                    args: vec![vec_var],
                };

                cfg.add(vartab, auth_call);

                Some(call_res_var)
            }
            ast::Builtin::ExtendTtl => {
                let mut arguments: Vec<Expression> = args
                    .iter()
                    .map(|v| expression(v, cfg, contract_no, func, ns, vartab, opt, self))
                    .collect();

                let var_no = match arguments[0].clone() {
                    Expression::NumberLiteral { value, .. } => value,
                    _ => panic!("First argument of extendTtl() must be a number literal"),
                }
                .to_usize()
                .expect("Unable to convert var_no to usize");
                let var = ns.contracts[contract_no].variables.get(var_no).unwrap();
                let storage_type_usize = match var
                    .storage_type
                    .clone()
                    .expect("Unable to get storage type")
                {
                    pt::StorageType::Temporary(_) => 0,
                    pt::StorageType::Persistent(_) => 1,
                    pt::StorageType::Instance(_) => panic!(
                        "Calling extendTtl() on instance storage is not allowed. Use `extendInstanceTtl()` instead."
                    ),
                };

                arguments.push(Expression::NumberLiteral {
                    loc: *loc,
                    ty: Type::Uint(32),
                    value: BigInt::from(storage_type_usize),
                });

                Some(Expression::Builtin {
                    loc: *loc,
                    tys: vec![Type::Int(64)],
                    kind: (&builtin).into(),
                    args: arguments,
                })
            }
            _ => None,
        }
    }

    fn lower_storage_struct_member(
        &self,
        loc: &pt::Loc,
        var_expr: Expression,
        struct_ty: &StructType,
        field_no: usize,
        ns: &Namespace,
        cfg: &mut ControlFlowGraph,
        vartab: &mut Vartable,
    ) -> Expression {
        let offset: BigInt = struct_ty.definition(ns).fields[..field_no]
            .iter()
            .filter(|field| !field.infinite_size)
            .map(|field| field.ty.storage_slots(ns))
            .sum();
        let offset_expr = Expression::NumberLiteral {
            loc: *loc,
            ty: Type::Uint(32),
            value: offset,
        };
        let offset_encoded = soroban_encode_arg(offset_expr, cfg, vartab, ns);
        let res = vartab.temp_name("vec_push_codegen", &Type::Uint(64));
        cfg.add(
            vartab,
            Instr::Call {
                res: vec![res],
                return_tys: vec![Type::Uint(64)],
                call: InternalCallTy::HostFunction {
                    name: HostFunctions::VecPushBack.name().to_string(),
                },
                args: vec![var_expr, offset_encoded],
            },
        );
        Expression::Variable {
            loc: pt::Loc::Codegen,
            ty: Type::Uint(64),
            var_no: res,
        }
    }

    fn lower_load_storage(
        &self,
        value: Expression,
        cfg: &mut ControlFlowGraph,
        vartab: &mut Vartable,
        ns: &Namespace,
    ) -> Expression {
        soroban_decode_arg(value, cfg, vartab, ns, None)
    }

    fn post_process_program(&self, _ns: &mut Namespace, _opt: &Options) {}

    fn selector_hash_algorithm(&self) -> ast::Builtin {
        ast::Builtin::Keccak256
    }

    fn initial_storage_slot(&self) -> BigInt {
        BigInt::zero()
    }

    fn align_storage_slot(&self, slot: BigInt, _ty: &Type, _ns: &Namespace) -> BigInt {
        slot
    }

    fn default_gas_builtin(&self) -> BigInt {
        BigInt::zero()
    }

    fn lower_print_expr(&self, expr: Expression) -> Expression {
        expr
    }

    fn lower_mapping_subscript(
        &self,
        loc: &pt::Loc,
        elem_ty: &Type,
        array_ty: &Type,
        array: Expression,
        index: Expression,
    ) -> Expression {
        Expression::Subscript {
            loc: *loc,
            ty: elem_ty.clone(),
            array_ty: array_ty.clone(),
            expr: Box::new(array),
            index: Box::new(index),
        }
    }
}

pub(super) fn validate_accessor_abi_types(contract_no: usize, ns: &mut Namespace) {
    for variable in &ns.contracts[contract_no].variables {
        if !matches!(variable.visibility, pt::Visibility::Public(_)) {
            continue;
        }

        if let Some(unsupported_type) = unsupported_accessor_type(&variable.ty, ns) {
            ns.diagnostics.push(Diagnostic::error(
                variable.loc,
                format!(
                    "type '{unsupported_type}' is not supported as a Soroban public variable accessor return value"
                ),
            ));
        }
    }
}

pub(super) fn validate_event_abi_types(contract_no: usize, ns: &mut Namespace) {
    for event_no in ns.contracts[contract_no].emits_events.clone() {
        for field in &ns.events[event_no].fields {
            if let Some(unsupported_type) = unsupported_event_type(&field.ty, ns) {
                ns.diagnostics.push(Diagnostic::error(
                    field.ty_loc.unwrap_or(field.loc),
                    format!(
                        "type '{unsupported_type}' is not supported as a Soroban event parameter"
                    ),
                ));
            }
        }
    }
}

pub(super) fn validate_abi_types(all_cfg: &[ControlFlowGraph], ns: &mut Namespace) {
    for cfg in all_cfg {
        if !cfg.public {
            continue;
        }

        if is_public_accessor(cfg, ns) {
            continue;
        }

        if cfg.returns.len() > 1 {
            let loc = cfg.returns[1].ty_loc.unwrap_or(cfg.returns[1].loc);
            ns.diagnostics.push(Diagnostic::error(
                loc,
                "Soroban external functions can return at most one value".to_string(),
            ));
            continue;
        }

        for param in cfg.params.as_ref() {
            if let Some(unsupported_type) = unsupported_parameter_type(&param.ty, ns) {
                ns.diagnostics.push(Diagnostic::error(
                    param.ty_loc.unwrap_or(param.loc),
                    format!(
                        "type '{unsupported_type}' is not supported as a Soroban external function parameter"
                    ),
                ));
            }
        }

        for ret in cfg.returns.as_ref() {
            if let Some(unsupported_type) = unsupported_return_type(&ret.ty, ns) {
                ns.diagnostics.push(Diagnostic::error(
                    ret.ty_loc.unwrap_or(ret.loc),
                    format!(
                        "type '{unsupported_type}' is not supported as a Soroban external function return value"
                    ),
                ));
            }
        }
    }

    validate_unsupported_codegen_paths(all_cfg, ns);
}

fn unsupported_parameter_type(ty: &Type, ns: &Namespace) -> Option<String> {
    match ty {
        Type::Struct(_) => Some(format!("{} memory", ty.to_string(ns))),
        Type::Array(elem, _) if has_unsupported_soroban_array_element(elem.as_ref()) => {
            Some(format!("{} memory", ty.to_string(ns)))
        }
        _ => None,
    }
}

fn is_public_accessor(cfg: &ControlFlowGraph, ns: &Namespace) -> bool {
    match cfg.function_no {
        ASTFunction::SolidityFunction(function_no) => ns.functions[function_no].is_accessor,
        _ => false,
    }
}

fn unsupported_accessor_type(ty: &Type, ns: &Namespace) -> Option<String> {
    match ty {
        Type::Mapping(mapping) => unsupported_accessor_type(mapping.value.as_ref(), ns),
        Type::Array(elem, _) => unsupported_accessor_type(elem.as_ref(), ns),
        Type::Struct(struct_ty) => {
            let fields = &struct_ty.definition(ns).fields;

            if fields.len() > 1 {
                Some(ty.to_string(ns))
            } else {
                fields
                    .first()
                    .and_then(|field| unsupported_accessor_type(&field.ty, ns))
            }
        }
        _ => None,
    }
}

fn unsupported_event_type(ty: &Type, ns: &Namespace) -> Option<String> {
    match ty {
        Type::Struct(_) => Some(ty.to_string(ns)),
        _ => None,
    }
}

fn unsupported_return_type(ty: &Type, ns: &Namespace) -> Option<String> {
    match ty {
        Type::Struct(_) => Some(format!("{} memory", ty.to_string(ns))),
        Type::Array(_, _) => Some(format!("{} memory", ty.to_string(ns))),
        _ => None,
    }
}

fn has_unsupported_soroban_array_element(ty: &Type) -> bool {
    match ty {
        Type::DynamicBytes | Type::Bytes(_) | Type::Struct(_) => true,
        Type::Array(elem, _) => has_unsupported_soroban_array_element(elem.as_ref()),
        _ => false,
    }
}

fn validate_unsupported_codegen_paths(all_cfg: &[ControlFlowGraph], ns: &mut Namespace) {
    for cfg in all_cfg {
        for block in &cfg.blocks {
            for instr in &block.instr {
                validate_unsupported_codegen_instr(instr, ns);
            }
        }
    }
}

fn validate_unsupported_codegen_instr(instr: &Instr, ns: &mut Namespace) {
    match instr {
        Instr::LoadStorage { ty, storage, .. } => {
            if let Some(unsupported_type) = unsupported_soroban_storage_type(ty, ns) {
                push_codegen_error(
                    ns,
                    CodegenError::unsupported_soroban_type(
                        storage.loc(),
                        "in storage load",
                        unsupported_type,
                    ),
                );
            }
        }
        Instr::SetStorage { ty, storage, .. } => {
            if let Some(unsupported_type) = unsupported_soroban_storage_type(ty, ns) {
                push_codegen_error(
                    ns,
                    CodegenError::unsupported_soroban_type(
                        storage.loc(),
                        "in storage store",
                        unsupported_type,
                    ),
                );
            }
        }
        Instr::PushStorage { ty, storage, .. } => {
            if let Some(unsupported_type) = unsupported_soroban_storage_type(ty, ns) {
                push_codegen_error(
                    ns,
                    CodegenError::unsupported_soroban_type(
                        storage.loc(),
                        "in storage push",
                        unsupported_type,
                    ),
                );
            }
        }
        Instr::PopStorage { ty, storage, .. } => {
            if let Some(unsupported_type) = unsupported_soroban_storage_type(ty, ns) {
                push_codegen_error(
                    ns,
                    CodegenError::unsupported_soroban_type(
                        storage.loc(),
                        "in storage pop",
                        unsupported_type,
                    ),
                );
            }
        }
        Instr::Constructor { loc, .. } => {
            push_codegen_error(
                ns,
                CodegenError::unsupported_soroban_operation(*loc, "contract construction"),
            );
        }
        Instr::ValueTransfer { address, .. } => {
            push_codegen_error(
                ns,
                CodegenError::unsupported_soroban_operation(address.loc(), "value transfer"),
            );
        }
        Instr::SelfDestruct { recipient } => {
            push_codegen_error(
                ns,
                CodegenError::unsupported_soroban_operation(recipient.loc(), "selfdestruct"),
            );
        }
        _ => (),
    }
}

fn unsupported_soroban_storage_type(ty: &Type, ns: &Namespace) -> Option<String> {
    match ty.deref_any() {
        Type::ExternalFunction { .. } => Some(ty.to_string(ns)),
        Type::Array(elem, _) => unsupported_soroban_storage_type(elem.as_ref(), ns),
        Type::Mapping(mapping) => unsupported_soroban_storage_type(mapping.value.as_ref(), ns),
        Type::Struct(struct_ty) => struct_ty
            .definition(ns)
            .fields
            .iter()
            .find_map(|field| unsupported_soroban_storage_type(&field.ty, ns)),
        _ => None,
    }
}

fn push_codegen_error(ns: &mut Namespace, err: CodegenError) {
    if let Some(diagnostic) = err.diagnostic() {
        ns.diagnostics.push(diagnostic);
    }
}

fn soroban_vec_handle_ty(vec_ty: &Type) -> Type {
    let inner_ty = if let Type::StorageRef(_, inner) = vec_ty {
        inner.as_ref().clone()
    } else {
        vec_ty.clone()
    };

    Type::SorobanHandle(Box::new(inner_ty))
}

pub(crate) fn soroban_vec_new(
    loc: &pt::Loc,
    vec_ty: &Type,
    cfg: &mut ControlFlowGraph,
    vartab: &mut Vartable,
) -> Expression {
    let handle_ty = soroban_vec_handle_ty(vec_ty);
    let empty_vec_no = vartab.temp_name("soroban_vec_new", &handle_ty);

    let empty_vec_var = Expression::Variable {
        loc: *loc,
        ty: handle_ty.clone(),
        var_no: empty_vec_no,
    };

    cfg.add(
        vartab,
        Instr::Call {
            call: InternalCallTy::HostFunction {
                name: HostFunctions::VectorNew.name().to_string(),
            },
            args: vec![],
            return_tys: vec![handle_ty],
            res: vec![empty_vec_no],
        },
    );

    empty_vec_var
}

fn soroban_vec_push_back(
    loc: &pt::Loc,
    vec_obj: Expression,
    vec_ty: &Type,
    value: Expression,
    cfg: &mut ControlFlowGraph,
    ns: &Namespace,
    vartab: &mut Vartable,
) -> Expression {
    let value_encoded = soroban_encode_arg(value, cfg, vartab, ns);
    let handle_ty = soroban_vec_handle_ty(vec_ty);

    let new_vec_no = vartab.temp_name("soroban_vec_push", &handle_ty);

    let new_vec_var = Expression::Variable {
        loc: *loc,
        ty: handle_ty.clone(),
        var_no: new_vec_no,
    };

    let instr = Instr::Call {
        res: vec![new_vec_no],
        return_tys: vec![handle_ty],
        call: InternalCallTy::HostFunction {
            name: HostFunctions::VecPushBack.name().to_string(),
        },
        args: vec![vec_obj, value_encoded],
    };

    cfg.add(vartab, instr);

    new_vec_var
}

fn soroban_vec_pop_back(
    loc: &pt::Loc,
    vec_obj: Expression,
    vec_ty: &Type,
    cfg: &mut ControlFlowGraph,
    vartab: &mut Vartable,
) -> Expression {
    let handle_ty = soroban_vec_handle_ty(vec_ty);
    let new_vec_no = vartab.temp_name("soroban_vec_pop", &handle_ty);

    let new_vec_var = Expression::Variable {
        loc: *loc,
        ty: handle_ty.clone(),
        var_no: new_vec_no,
    };

    let instr = Instr::Call {
        res: vec![new_vec_no],
        return_tys: vec![handle_ty],
        call: InternalCallTy::HostFunction {
            name: HostFunctions::VecPopBack.name().to_string(),
        },
        args: vec![vec_obj],
    };

    cfg.add(vartab, instr);

    new_vec_var
}

pub(crate) fn soroban_storage_push(
    loc: &pt::Loc,
    args: &[ast::Expression],
    cfg: &mut ControlFlowGraph,
    contract_no: usize,
    func: Option<&Function>,
    ns: &Namespace,
    vartab: &mut Vartable,
    opt: &Options,
    target: &dyn TargetCodegen,
) -> Expression {
    // Storage wrapper: evaluate storage key/value and load vec object from storage.
    let var_expr = expression(&args[0], cfg, contract_no, func, ns, vartab, opt, target);
    let value = expression(&args[1], cfg, contract_no, func, ns, vartab, opt, target);
    let vec_ty = args[0].ty();

    let old_vec_obj = load_storage(
        loc,
        &vec_ty,
        var_expr.clone(),
        cfg,
        vartab,
        None,
        ns,
        target,
    );
    let new_vec_var = soroban_vec_push_back(loc, old_vec_obj, &vec_ty, value, cfg, ns, vartab);

    // Storage wrapper: store updated vec object.
    let store_instr = Instr::SetStorage {
        ty: vec_ty,
        value: new_vec_var.clone(),
        storage: var_expr.clone(),
        storage_type: None,
    };

    cfg.add(vartab, store_instr);

    var_expr
}

pub(crate) fn soroban_storage_pop(
    loc: &pt::Loc,
    args: &[ast::Expression],
    return_ty: &Type,
    cfg: &mut ControlFlowGraph,
    contract_no: usize,
    func: Option<&Function>,
    ns: &Namespace,
    vartab: &mut Vartable,
    opt: &Options,
    target: &dyn TargetCodegen,
) -> Expression {
    // Storage wrapper: evaluate storage key and load vec object from storage.
    let var_expr = expression(&args[0], cfg, contract_no, func, ns, vartab, opt, target);
    let vec_ty = args[0].ty();

    let old_vec_obj = load_storage(
        loc,
        &vec_ty,
        var_expr.clone(),
        cfg,
        vartab,
        None,
        ns,
        target,
    );
    let new_vec_var = soroban_vec_pop_back(loc, old_vec_obj, &vec_ty, cfg, vartab);
    let new_vec_no = match &new_vec_var {
        Expression::Variable { var_no, .. } => *var_no,
        _ => unreachable!(),
    };

    // Storage wrapper: store updated vec object.
    let store_instr = Instr::SetStorage {
        ty: vec_ty,
        value: new_vec_var.clone(),
        storage: var_expr.clone(),
        storage_type: None,
    };

    cfg.add(vartab, store_instr);

    Expression::Variable {
        loc: *loc,
        ty: return_ty.clone(),
        var_no: new_vec_no,
    }
}

/// Storage `bytes.push(x)` on Soroban. A storage `bytes` slot holds a host
/// `BytesObject` handle, so this is a read-modify-write on the handle:
/// load the raw handle, `bytes_push(handle, U32Val(byte))`, store the new handle.
pub(crate) fn soroban_bytes_push(
    loc: &pt::Loc,
    args: &[ast::Expression],
    cfg: &mut ControlFlowGraph,
    contract_no: usize,
    func: Option<&Function>,
    ns: &Namespace,
    vartab: &mut Vartable,
    opt: &Options,
    target: &dyn TargetCodegen,
) -> Expression {
    /*
     * old_handle : BytesObject = BytesObject(args[0]);
     * element    : U32Val = U32Val(args[1]);
     * new_handle : BytesObject = bytes_push(old_handle, element);
     * args[0] = new_handle;
     * */
    let var_expr = expression(&args[0], cfg, contract_no, func, ns, vartab, opt, target);
    let value = expression(&args[1], cfg, contract_no, func, ns, vartab, opt, target);
    let bytes_ty = args[0].ty();

    let handle = soroban_load_storage_handle(loc, var_expr.clone(), cfg, vartab);

    let byte_u32 = value.cast(&Type::Uint(8), ns).cast(&Type::Uint(32), ns);
    let value_encoded = soroban_encode_arg(byte_u32, cfg, vartab, ns);

    let new_no = vartab.temp_name("bytes_push", &Type::Uint(64));
    cfg.add(
        vartab,
        Instr::Call {
            res: vec![new_no],
            return_tys: vec![Type::Uint(64)],
            call: InternalCallTy::HostFunction {
                name: HostFunctions::BytesPush.name().to_string(),
            },
            args: vec![handle, value_encoded],
        },
    );
    let new_handle = Expression::Variable {
        loc: *loc,
        ty: Type::Uint(64),
        var_no: new_no,
    };

    cfg.add(
        vartab,
        Instr::SetStorage {
            ty: bytes_ty,
            value: new_handle,
            storage: var_expr.clone(),
            storage_type: None,
        },
    );

    var_expr
}

/// Storage `bytes.pop()` on Soroban: load the raw handle, `bytes_pop(handle)`, store
/// the new handle. Solidity storage `.pop()` is void, so no value is returned.
pub(crate) fn soroban_bytes_pop(
    loc: &pt::Loc,
    args: &[ast::Expression],
    return_ty: &Type,
    cfg: &mut ControlFlowGraph,
    contract_no: usize,
    func: Option<&Function>,
    ns: &Namespace,
    vartab: &mut Vartable,
    opt: &Options,
    target: &dyn TargetCodegen,
) -> Expression {
    /*
     * old_handle : BytesObject = BytesObject(args[0]);
     * new_handle : BytesObject = bytes_pop(old_handle);
     * args[0] = new_handle;
     * */
    let var_expr = expression(&args[0], cfg, contract_no, func, ns, vartab, opt, target);
    let bytes_ty = args[0].ty();

    let handle = soroban_load_storage_handle(loc, var_expr.clone(), cfg, vartab);

    let new_no = vartab.temp_name("bytes_pop", &Type::Uint(64));
    cfg.add(
        vartab,
        Instr::Call {
            res: vec![new_no],
            return_tys: vec![Type::Uint(64)],
            call: InternalCallTy::HostFunction {
                name: HostFunctions::BytesPop.name().to_string(),
            },
            args: vec![handle],
        },
    );
    let new_handle = Expression::Variable {
        loc: *loc,
        ty: Type::Uint(64),
        var_no: new_no,
    };

    cfg.add(
        vartab,
        Instr::SetStorage {
            ty: bytes_ty,
            value: new_handle,
            storage: var_expr,
            storage_type: None,
        },
    );

    Expression::Undefined {
        ty: return_ty.clone(),
    }
}

pub(crate) fn soroban_bytes_length(
    loc: &pt::Loc,
    bytes_var: Expression,
    cfg: &mut ControlFlowGraph,
    vartab: &mut Vartable,
    ns: &Namespace,
) -> Expression {
    /*
     * bytes_handle : BytesObject = BytesObject(bytes_var);
     * length       : U32Val      = BytesLength(bytes_handle);
     * encoded_len  : u32         = soroban_decode_arg(length);
     * */
    let bytes_handle = soroban_load_storage_handle(loc, bytes_var, cfg, vartab);
    let var_no = vartab.temp_name("bytes_obj_length", &Type::Uint(64));
    let var = Expression::Variable {
        loc: *loc,
        ty: Type::Uint(64),
        var_no,
    };
    cfg.add(
        vartab,
        Instr::Call {
            res: vec![var_no],
            return_tys: vec![Type::Uint(64)],
            call: InternalCallTy::HostFunction {
                name: HostFunctions::BytesLen.name().to_string(),
            },
            args: vec![bytes_handle],
        },
    );
    soroban_decode_arg(var, cfg, vartab, ns, Some(Type::Uint(32)))
}

pub(crate) fn soroban_strings_length(
    loc: &pt::Loc,
    bytes_var: Expression,
    cfg: &mut ControlFlowGraph,
    vartab: &mut Vartable,
    ns: &Namespace,
) -> Expression {
    let string_handle = soroban_load_storage_handle(loc, bytes_var, cfg, vartab);
    let var_no = vartab.temp_name("string_obj_length", &Type::Uint(64));
    let var = Expression::Variable {
        loc: *loc,
        ty: Type::Uint(64),
        var_no,
    };
    cfg.add(
        vartab,
        Instr::Call {
            res: vec![var_no],
            return_tys: vec![Type::Uint(64)],
            call: InternalCallTy::HostFunction {
                name: HostFunctions::StringLen.name().to_string(),
            },
            args: vec![string_handle],
        },
    );
    soroban_decode_arg(var, cfg, vartab, ns, Some(Type::Uint(32)))
}

pub(crate) fn soroban_bytes_new(
    loc: &pt::Loc,
    cfg: &mut ControlFlowGraph,
    vartab: &mut Vartable,
) -> Expression {
    let ty = Type::SorobanHandle(Box::new(Type::DynamicBytes));
    let bytes_no = vartab.temp_name("bytes_obj_new", &ty);
    cfg.add(
        vartab,
        Instr::Call {
            res: vec![bytes_no],
            return_tys: vec![ty.clone()],
            call: InternalCallTy::HostFunction {
                name: HostFunctions::BytesNew.name().to_string(),
            },
            args: vec![],
        },
    );
    Expression::Variable {
        loc: *loc,
        ty,
        var_no: bytes_no,
    }
}

/// Load the raw Soroban host-object handle stored at `storage` as a `Uint(64)` `Val`,
/// bypassing the per-type decode that `load_storage` would apply.
fn soroban_load_storage_handle(
    loc: &pt::Loc,
    storage: Expression,
    cfg: &mut ControlFlowGraph,
    vartab: &mut Vartable,
) -> Expression {
    let handle_no = vartab.temp_name("storage_handle", &Type::Uint(64));
    cfg.add(
        vartab,
        Instr::LoadStorage {
            res: handle_no,
            ty: Type::Uint(64),
            storage,
            storage_type: None,
        },
    );
    Expression::Variable {
        loc: *loc,
        ty: Type::Uint(64),
        var_no: handle_no,
    }
}