reoxide 0.7.0

Rust-bindings for the ReOxide decompiler extension framework
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
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
#![allow(non_snake_case)]
use core::mem::MaybeUninit;
use core::ptr;
use super::*;
use super::bindings::*;
use crate::cpp::*;

impl AddTreeState {
    pub fn apply(&mut self) -> bool {
        unsafe {
            AddTreeState_apply(self)
        }
    }

    pub fn init_alternate_form(&mut self) -> bool {
        unsafe {
            AddTreeState_initAlternateForm(self)
        }
    }
}

impl AdditiveEdge {
    pub fn get_multiplier(&self) -> Option<&mut PcodeOp> {
        unsafe {
            AdditiveEdge_getMultiplier(self).as_mut()
        }
    }

    pub fn get_op(&self) -> Option<&mut PcodeOp> {
        unsafe {
            AdditiveEdge_getOp(self).as_mut()
        }
    }

    pub fn get_slot(&self) -> i32 {
        unsafe {
            AdditiveEdge_getSlot(self)
        }
    }

    pub fn get_varnode(&self) -> Option<&mut Varnode> {
        unsafe {
            AdditiveEdge_getVarnode(self).as_mut()
        }
    }
}

impl AddrSpace {
    pub fn does_deadcode(&self) -> bool {
        unsafe {
            AddrSpace_doesDeadcode(self)
        }
    }

    pub fn get_addr_size(&self) -> u32 {
        unsafe {
            AddrSpace_getAddrSize(self)
        }
    }

    pub fn get_contain(&self) -> Option<&mut AddrSpace> {
        unsafe {
            AddrSpace_getContain(self).as_mut()
        }
    }

    pub fn get_highest(&self) -> u64 {
        unsafe {
            AddrSpace_getHighest(self)
        }
    }

    pub fn get_index(&self) -> i32 {
        unsafe {
            AddrSpace_getIndex(self)
        }
    }

    pub fn get_type(&self) -> Spacetype {
        unsafe {
            AddrSpace_getType(self)
        }
    }

    pub fn get_word_size(&self) -> u32 {
        unsafe {
            AddrSpace_getWordSize(self)
        }
    }

    pub fn is_big_endian(&self) -> bool {
        unsafe {
            AddrSpace_isBigEndian(self)
        }
    }

    pub fn is_truncated(&self) -> bool {
        unsafe {
            AddrSpace_isTruncated(self)
        }
    }
}

impl AddrSpaceManager {
    pub fn find_join(&self, offset: u64) -> Option<&mut JoinRecord> {
        unsafe {
            AddrSpaceManager_findJoin(self, offset).as_mut()
        }
    }

    pub fn get_constant(&self, val: u64) -> Address {
        unsafe {
            let mut retval = MaybeUninit::uninit();
            AddrSpaceManager_getConstant(self, val, retval.as_mut_ptr());
            retval.assume_init()
        }
    }

    pub fn get_default_code_space(&self) -> Option<&mut AddrSpace> {
        unsafe {
            AddrSpaceManager_getDefaultCodeSpace(self).as_mut()
        }
    }

    pub fn get_default_data_space(&self) -> Option<&mut AddrSpace> {
        unsafe {
            AddrSpaceManager_getDefaultDataSpace(self).as_mut()
        }
    }
}

impl Address {
    pub fn is_big_endian(&self) -> bool {
        unsafe {
            Address_isBigEndian(self)
        }
    }

    pub fn is_join(&self) -> bool {
        unsafe {
            Address_isJoin(self)
        }
    }

    pub fn overlap(&self, skip: i32, op: &Address, size: i32) -> i32 {
        unsafe {
            Address_overlap(self, skip, op, size)
        }
    }

    pub fn renormalize(&mut self, size: i32) {
        unsafe {
            Address_renormalize(self, size)
        }
    }
}

impl Architecture {
    pub fn get_space_by_spacebase(&self, loc: &Address, size: i32) -> Option<&mut AddrSpace> {
        unsafe {
            Architecture_getSpaceBySpacebase(self, loc, size).as_mut()
        }
    }
}

impl BlockBasic {
    pub fn earliest_use(&mut self, vn: &mut Varnode) -> Option<&mut PcodeOp> {
        unsafe {
            BlockBasic_earliestUse(self, vn).as_mut()
        }
    }

    pub fn get_start(&self) -> Address {
        unsafe {
            let mut retval = MaybeUninit::uninit();
            BlockBasic_getStart(self, retval.as_mut_ptr());
            retval.assume_init()
        }
    }

    pub fn last_op(&self) -> Option<&mut PcodeOp> {
        unsafe {
            BlockBasic_lastOp(self).as_mut()
        }
    }
}

impl BlockGraph {
    pub fn clear(&mut self) {
        unsafe {
            BlockGraph_clear(self)
        }
    }

    pub fn get_block(&self, i: i32) -> Option<&mut FlowBlock> {
        unsafe {
            BlockGraph_getBlock(self, i).as_mut()
        }
    }
}

impl CPoolRecord {
    pub fn get_tag(&self) -> u32 {
        unsafe {
            CPoolRecord_getTag(self)
        }
    }

    pub fn get_type(&self) -> Option<&mut Datatype> {
        unsafe {
            CPoolRecord_getType(self).as_mut()
        }
    }

    pub fn get_value(&self) -> u64 {
        unsafe {
            CPoolRecord_getValue(self)
        }
    }
}

impl CircleRange {
    pub fn circle_union(&mut self, op2: &CircleRange) -> i32 {
        unsafe {
            CircleRange_circleUnion(self, op2)
        }
    }

    pub fn intersect(&mut self, op2: &CircleRange) -> i32 {
        unsafe {
            CircleRange_intersect(self, op2)
        }
    }

    pub fn translate_2_op(&self, opc: &mut OpCode, c: &mut u64, cslot: &mut i32) -> i32 {
        unsafe {
            CircleRange_translate2Op(self, opc, c, cslot)
        }
    }
}

impl CloneBlockOps {
    pub fn clone_expression(&mut self, ops: &mut StdVector<&mut PcodeOp>, followOp: &mut PcodeOp) -> Option<&mut Varnode> {
        unsafe {
            CloneBlockOps_cloneExpression(self, ptr::from_mut(ops).cast(), followOp).as_mut()
        }
    }
}

impl ConstantPool {
    pub fn get_record(&self, refs: &StdVector<u64>) -> Option<&CPoolRecord> {
        unsafe {
            ConstantPool_getRecord(self, ptr::from_ref(refs).cast()).as_ref()
        }
    }
}

impl Datatype {
    pub fn get_align_size(&self) -> i32 {
        unsafe {
            Datatype_getAlignSize(self)
        }
    }

    pub fn get_metatype(&self) -> TypeMetatype {
        unsafe {
            Datatype_getMetatype(self)
        }
    }

    pub fn get_size(&self) -> i32 {
        unsafe {
            Datatype_getSize(self)
        }
    }

    pub fn get_sub_type(&self, off: i64, newoff: &mut i64) -> Option<&mut Datatype> {
        unsafe {
            Datatype_getSubType(self, off, newoff).as_mut()
        }
    }

    pub fn is_char_print(&self) -> bool {
        unsafe {
            Datatype_isCharPrint(self)
        }
    }

    pub fn is_enum_type(&self) -> bool {
        unsafe {
            Datatype_isEnumType(self)
        }
    }

    pub fn is_formal_pointer_rel(&self) -> bool {
        unsafe {
            Datatype_isFormalPointerRel(self)
        }
    }

    pub fn is_piece_structured(&self) -> bool {
        unsafe {
            Datatype_isPieceStructured(self)
        }
    }

    pub fn is_ptrsub_matching(&self, off: i64, extra: i64, multiplier: i64) -> bool {
        unsafe {
            Datatype_isPtrsubMatching(self, off, extra, multiplier)
        }
    }

    pub fn needs_resolution(&self) -> bool {
        unsafe {
            Datatype_needsResolution(self)
        }
    }

    pub fn resolve_in_flow(&mut self, op: &mut PcodeOp, slot: i32) -> Option<&mut Datatype> {
        unsafe {
            Datatype_resolveInFlow(self, op, slot).as_mut()
        }
    }
}

impl FlowBlock {
    pub fn get_false_out(&self) -> Option<&mut FlowBlock> {
        unsafe {
            FlowBlock_getFalseOut(self).as_mut()
        }
    }

    pub fn get_in(&mut self, i: i32) -> Option<&mut FlowBlock> {
        unsafe {
            FlowBlock_getIn(self, i).as_mut()
        }
    }

    pub fn get_index(&self) -> i32 {
        unsafe {
            FlowBlock_getIndex(self)
        }
    }

    pub fn get_out(&mut self, i: i32) -> Option<&mut FlowBlock> {
        unsafe {
            FlowBlock_getOut(self, i).as_mut()
        }
    }

    pub fn get_true_out(&self) -> Option<&mut FlowBlock> {
        unsafe {
            FlowBlock_getTrueOut(self).as_mut()
        }
    }

    pub fn has_loop_in(&self) -> bool {
        unsafe {
            FlowBlock_hasLoopIn(self)
        }
    }

    pub fn last_op(&self) -> Option<&mut PcodeOp> {
        unsafe {
            FlowBlock_lastOp(self).as_mut()
        }
    }

    pub fn size_in(&self) -> i32 {
        unsafe {
            FlowBlock_sizeIn(self)
        }
    }

    pub fn size_out(&self) -> i32 {
        unsafe {
            FlowBlock_sizeOut(self)
        }
    }
}

impl FuncCallSpecs {
    pub fn get_name(&self) -> Option<&StdString> {
        unsafe {
            FuncCallSpecs_getName(self).as_ref()
        }
    }

    pub fn is_input_active(&self) -> bool {
        unsafe {
            FuncCallSpecs_isInputActive(self)
        }
    }

    pub fn is_output_active(&self) -> bool {
        unsafe {
            FuncCallSpecs_isOutputActive(self)
        }
    }

    pub fn resolve_spacebase_relative(&mut self, data: &mut Funcdata, phvn: &mut Varnode) {
        unsafe {
            FuncCallSpecs_resolveSpacebaseRelative(self, data, phvn)
        }
    }

    pub fn set_input_bytes_consumed(&self, slot: i32, val: i32) -> bool {
        unsafe {
            FuncCallSpecs_setInputBytesConsumed(self, slot, val)
        }
    }
}

impl FuncProto {
    pub fn is_input_locked(&self) -> bool {
        unsafe {
            FuncProto_isInputLocked(self)
        }
    }

    pub fn is_output_locked(&self) -> bool {
        unsafe {
            FuncProto_isOutputLocked(self)
        }
    }

    pub fn set_return_bytes_consumed(&mut self, val: i32) -> bool {
        unsafe {
            FuncProto_setReturnBytesConsumed(self, val)
        }
    }
}

impl Funcdata {
    pub fn cse_eliminate_list(&mut self, list: &mut StdVector<CSEHashPair>, outlist: &mut StdVector<&mut Varnode>) {
        unsafe {
            Funcdata_cseEliminateList(self, ptr::from_mut(list).cast(), ptr::from_mut(outlist).cast())
        }
    }

    pub fn dead_removal_allowed_seen(&mut self, spc: &mut AddrSpace) -> bool {
        unsafe {
            Funcdata_deadRemovalAllowedSeen(self, spc)
        }
    }

    pub fn delete_varnode(&mut self, vn: &mut Varnode) {
        unsafe {
            Funcdata_deleteVarnode(self, vn)
        }
    }

    pub fn distribute_int_mult_add(&mut self, op: &mut PcodeOp) -> bool {
        unsafe {
            Funcdata_distributeIntMultAdd(self, op)
        }
    }

    pub fn find_jump_table(&self, op: &PcodeOp) -> Option<&mut JumpTable> {
        unsafe {
            Funcdata_findJumpTable(self, op).as_mut()
        }
    }

    pub fn get_arch(&self) -> Option<&mut Architecture> {
        unsafe {
            Funcdata_getArch(self).as_mut()
        }
    }

    pub fn get_basic_blocks(&self) -> Option<&BlockGraph> {
        unsafe {
            Funcdata_getBasicBlocks(self).as_ref()
        }
    }

    pub fn get_call_specs(&self, op: &PcodeOp) -> Option<&mut FuncCallSpecs> {
        unsafe {
            Funcdata_getCallSpecs(self, op).as_mut()
        }
    }

    pub fn get_func_proto(&mut self) -> Option<&mut FuncProto> {
        unsafe {
            Funcdata_getFuncProto(self).as_mut()
        }
    }

    pub fn get_merge(&mut self) -> Option<&mut Merge> {
        unsafe {
            Funcdata_getMerge(self).as_mut()
        }
    }

    pub fn get_scope_local(&mut self) -> Option<&mut ScopeLocal> {
        unsafe {
            Funcdata_getScopeLocal(self).as_mut()
        }
    }

    pub fn get_store_guard(&self, op: &mut PcodeOp) -> Option<&LoadGuard> {
        unsafe {
            Funcdata_getStoreGuard(self, op).as_ref()
        }
    }

    pub fn get_structure(&mut self) -> Option<&mut BlockGraph> {
        unsafe {
            Funcdata_getStructure(self).as_mut()
        }
    }

    pub fn has_type_recovery_started(&self) -> bool {
        unsafe {
            Funcdata_hasTypeRecoveryStarted(self)
        }
    }

    pub fn inherit_resolution(&mut self, parent: &mut Datatype, op: &PcodeOp, slot: i32, oldOp: &mut PcodeOp, oldSlot: i32) -> i32 {
        unsafe {
            Funcdata_inheritResolution(self, parent, op, slot, oldOp, oldSlot)
        }
    }

    pub fn is_type_recovery_on(&self) -> bool {
        unsafe {
            Funcdata_isTypeRecoveryOn(self)
        }
    }

    pub fn new_code_ref(&mut self, m: &Address) -> Option<&mut Varnode> {
        unsafe {
            Funcdata_newCodeRef(self, m).as_mut()
        }
    }

    pub fn new_constant(&mut self, s: i32, constant_val: u64) -> Option<&mut Varnode> {
        unsafe {
            Funcdata_newConstant(self, s, constant_val).as_mut()
        }
    }

    pub fn new_extended_constant(&mut self, s: i32, val: &mut u64, op: &mut PcodeOp) -> Option<&mut Varnode> {
        unsafe {
            Funcdata_newExtendedConstant(self, s, val, op).as_mut()
        }
    }

    pub fn new_indirect_creation(&mut self, indeffect: &mut PcodeOp, addr: &Address, sz: i32, possibleout: bool) -> Option<&mut PcodeOp> {
        unsafe {
            Funcdata_newIndirectCreation(self, indeffect, addr, sz, possibleout).as_mut()
        }
    }

    pub fn new_op(&mut self, inputs: i32, pc: &Address) -> Option<&mut PcodeOp> {
        unsafe {
            Funcdata_newOp(self, inputs, pc).as_mut()
        }
    }

    pub fn new_op_before(&mut self, follow: &mut PcodeOp, opc: OpCode, in1: &mut Varnode, in2: &mut Varnode, in3: &mut Varnode) -> Option<&mut PcodeOp> {
        unsafe {
            Funcdata_newOpBefore(self, follow, opc, in1, in2, in3).as_mut()
        }
    }

    pub fn new_unique(&mut self, s: i32, ct: &mut Datatype) -> Option<&mut Varnode> {
        unsafe {
            Funcdata_newUnique(self, s, ct).as_mut()
        }
    }

    pub fn new_unique_out(&mut self, s: i32, op: &mut PcodeOp) -> Option<&mut Varnode> {
        unsafe {
            Funcdata_newUniqueOut(self, s, op).as_mut()
        }
    }

    pub fn new_varnode(&mut self, s: i32, m: &Address, ct: &mut Datatype) -> Option<&mut Varnode> {
        unsafe {
            Funcdata_newVarnode(self, s, m, ct).as_mut()
        }
    }

    pub fn new_varnode1(&mut self, s: i32, base: &mut AddrSpace, off: u64) -> Option<&mut Varnode> {
        unsafe {
            Funcdata_newVarnode1(self, s, base, off).as_mut()
        }
    }

    pub fn new_varnode_iop(&mut self, op: &mut PcodeOp) -> Option<&mut Varnode> {
        unsafe {
            Funcdata_newVarnodeIop(self, op).as_mut()
        }
    }

    pub fn new_varnode_out(&mut self, s: i32, m: &Address, op: &mut PcodeOp) -> Option<&mut Varnode> {
        unsafe {
            Funcdata_newVarnodeOut(self, s, m, op).as_mut()
        }
    }

    pub fn op_bool_negate(&mut self, vn: &mut Varnode, op: &mut PcodeOp, insertafter: bool) -> Option<&mut Varnode> {
        unsafe {
            Funcdata_opBoolNegate(self, vn, op, insertafter).as_mut()
        }
    }

    pub fn op_destroy(&mut self, op: &mut PcodeOp) {
        unsafe {
            Funcdata_opDestroy(self, op)
        }
    }

    pub fn op_flip_condition(&mut self, op: &mut PcodeOp) {
        unsafe {
            Funcdata_opFlipCondition(self, op)
        }
    }

    pub fn op_insert_after(&mut self, op: &mut PcodeOp, prev: &mut PcodeOp) {
        unsafe {
            Funcdata_opInsertAfter(self, op, prev)
        }
    }

    pub fn op_insert_before(&mut self, op: &mut PcodeOp, follow: &mut PcodeOp) {
        unsafe {
            Funcdata_opInsertBefore(self, op, follow)
        }
    }

    pub fn op_insert_begin(&mut self, op: &mut PcodeOp, bl: &mut BlockBasic) {
        unsafe {
            Funcdata_opInsertBegin(self, op, bl)
        }
    }

    pub fn op_insert_input(&mut self, op: &mut PcodeOp, vn: &mut Varnode, slot: i32) {
        unsafe {
            Funcdata_opInsertInput(self, op, vn, slot)
        }
    }

    pub fn op_mark_calculated_bool(&mut self, op: &mut PcodeOp) {
        unsafe {
            Funcdata_opMarkCalculatedBool(self, op)
        }
    }

    pub fn op_mark_cpool_transformed(&mut self, op: &mut PcodeOp) {
        unsafe {
            Funcdata_opMarkCpoolTransformed(self, op)
        }
    }

    pub fn op_mark_no_collapse(&mut self, op: &mut PcodeOp) {
        unsafe {
            Funcdata_opMarkNoCollapse(self, op)
        }
    }

    pub fn op_mark_special_print(&mut self, op: &mut PcodeOp) {
        unsafe {
            Funcdata_opMarkSpecialPrint(self, op)
        }
    }

    pub fn op_remove_input(&mut self, op: &mut PcodeOp, slot: i32) {
        unsafe {
            Funcdata_opRemoveInput(self, op, slot)
        }
    }

    pub fn op_set_all_input(&mut self, op: &mut PcodeOp, vvec: &StdVector<&mut Varnode>) {
        unsafe {
            Funcdata_opSetAllInput(self, op, ptr::from_ref(vvec).cast())
        }
    }

    pub fn op_set_input(&mut self, op: &mut PcodeOp, vn: &mut Varnode, slot: i32) {
        unsafe {
            Funcdata_opSetInput(self, op, vn, slot)
        }
    }

    pub fn op_set_opcode(&mut self, op: &mut PcodeOp, opc: OpCode) {
        unsafe {
            Funcdata_opSetOpcode(self, op, opc)
        }
    }

    pub fn op_set_output(&mut self, op: &mut PcodeOp, vn: &mut Varnode) {
        unsafe {
            Funcdata_opSetOutput(self, op, vn)
        }
    }

    pub fn op_swap_input(&mut self, op: &mut PcodeOp, slot1: i32, slot2: i32) {
        unsafe {
            Funcdata_opSwapInput(self, op, slot1, slot2)
        }
    }

    pub fn op_undo_ptradd(&mut self, op: &mut PcodeOp, finalize: bool) {
        unsafe {
            Funcdata_opUndoPtradd(self, op, finalize)
        }
    }

    pub fn op_uninsert(&mut self, op: &mut PcodeOp) {
        unsafe {
            Funcdata_opUninsert(self, op)
        }
    }

    pub fn op_unlink(&mut self, op: &mut PcodeOp) {
        unsafe {
            Funcdata_opUnlink(self, op)
        }
    }

    pub fn op_unset_input(&mut self, op: &mut PcodeOp, slot: i32) {
        unsafe {
            Funcdata_opUnsetInput(self, op, slot)
        }
    }

    pub fn op_unset_output(&mut self, op: &mut PcodeOp) {
        unsafe {
            Funcdata_opUnsetOutput(self, op)
        }
    }

    pub fn remove_jump_table(&mut self, jt: &mut JumpTable) {
        unsafe {
            Funcdata_removeJumpTable(self, jt)
        }
    }

    pub fn replace_lessequal(&mut self, op: &mut PcodeOp) -> bool {
        unsafe {
            Funcdata_replaceLessequal(self, op)
        }
    }

    pub fn total_replace(&mut self, vn: &mut Varnode, newvn: &mut Varnode) {
        unsafe {
            Funcdata_totalReplace(self, vn, newvn)
        }
    }

    pub fn warning(&self, txt: &StdString, ad: &Address) {
        unsafe {
            Funcdata_warning(self, txt, ad)
        }
    }

    pub fn warning_header(&self, txt: &StdString) {
        unsafe {
            Funcdata_warningHeader(self, txt)
        }
    }
}

impl JoinRecord {
    pub fn get_piece(&self, i: i32) -> Option<&VarnodeData> {
        unsafe {
            JoinRecord_getPiece(self, i).as_ref()
        }
    }

    pub fn num_pieces(&self) -> i32 {
        unsafe {
            JoinRecord_numPieces(self)
        }
    }
}

impl JumpTable {
    pub fn get_address_by_index(&self, i: i32) -> Address {
        unsafe {
            let mut retval = MaybeUninit::uninit();
            JumpTable_getAddressByIndex(self, i, retval.as_mut_ptr());
            retval.assume_init()
        }
    }

    pub fn is_labelled(&self) -> bool {
        unsafe {
            JumpTable_isLabelled(self)
        }
    }

    pub fn num_entries(&self) -> i32 {
        unsafe {
            JumpTable_numEntries(self)
        }
    }
}

impl LoadGuard {
    pub fn is_guarded(&self, addr: &Address) -> bool {
        unsafe {
            LoadGuard_isGuarded(self, addr)
        }
    }
}

impl Merge {
    pub fn register_proto_partial_root(&mut self, vn: &mut Varnode) {
        unsafe {
            Merge_registerProtoPartialRoot(self, vn)
        }
    }
}

impl PcodeOp {
    pub fn clear_mark(&self) {
        unsafe {
            PcodeOp_clearMark(self)
        }
    }

    pub fn clear_stop_type_propagation(&mut self) {
        unsafe {
            PcodeOp_clearStopTypePropagation(self)
        }
    }

    pub fn code(&self) -> OpCode {
        unsafe {
            PcodeOp_code(self)
        }
    }

    pub fn collapse(&self, markedInput: &mut bool) -> u64 {
        unsafe {
            PcodeOp_collapse(self, markedInput)
        }
    }

    pub fn collapse_constant_symbol(&self, newConst: &mut Varnode) {
        unsafe {
            PcodeOp_collapseConstantSymbol(self, newConst)
        }
    }

    pub fn does_special_printing(&self) -> bool {
        unsafe {
            PcodeOp_doesSpecialPrinting(self)
        }
    }

    pub fn get_addr(&self) -> Option<&Address> {
        unsafe {
            PcodeOp_getAddr(self).as_ref()
        }
    }

    pub fn get_cse_hash(&self) -> u32 {
        unsafe {
            PcodeOp_getCseHash(self)
        }
    }

    pub fn get_eval_type(&self) -> u32 {
        unsafe {
            PcodeOp_getEvalType(self)
        }
    }

    pub fn get_in(&mut self, slot: i32) -> Option<&mut Varnode> {
        unsafe {
            PcodeOp_getIn(self, slot).as_mut()
        }
    }

    pub fn get_opcode(&self) -> Option<&mut TypeOp> {
        unsafe {
            PcodeOp_getOpcode(self).as_mut()
        }
    }

    pub fn get_out(&mut self) -> Option<&mut Varnode> {
        unsafe {
            PcodeOp_getOut(self).as_mut()
        }
    }

    pub fn get_parent(&mut self) -> Option<&mut BlockBasic> {
        unsafe {
            PcodeOp_getParent(self).as_mut()
        }
    }

    pub fn get_seq_num(&self) -> Option<&SeqNum> {
        unsafe {
            PcodeOp_getSeqNum(self).as_ref()
        }
    }

    pub fn get_slot(&self, vn: &Varnode) -> i32 {
        unsafe {
            PcodeOp_getSlot(self, vn)
        }
    }

    pub fn is_bool_output(&self) -> bool {
        unsafe {
            PcodeOp_isBoolOutput(self)
        }
    }

    pub fn is_boolean_flip(&self) -> bool {
        unsafe {
            PcodeOp_isBooleanFlip(self)
        }
    }

    pub fn is_call(&self) -> bool {
        unsafe {
            PcodeOp_isCall(self)
        }
    }

    pub fn is_collapsible(&self) -> bool {
        unsafe {
            PcodeOp_isCollapsible(self)
        }
    }

    pub fn is_cpool_transformed(&self) -> bool {
        unsafe {
            PcodeOp_isCpoolTransformed(self)
        }
    }

    pub fn is_cse_match(&self, op: &PcodeOp) -> bool {
        unsafe {
            PcodeOp_isCseMatch(self, op)
        }
    }

    pub fn is_dead(&self) -> bool {
        unsafe {
            PcodeOp_isDead(self)
        }
    }

    pub fn is_indirect_creation(&self) -> bool {
        unsafe {
            PcodeOp_isIndirectCreation(self)
        }
    }

    pub fn is_indirect_source(&self) -> bool {
        unsafe {
            PcodeOp_isIndirectSource(self)
        }
    }

    pub fn is_mark(&self) -> bool {
        unsafe {
            PcodeOp_isMark(self)
        }
    }

    pub fn is_marker(&self) -> bool {
        unsafe {
            PcodeOp_isMarker(self)
        }
    }

    pub fn is_partial_root(&self) -> bool {
        unsafe {
            PcodeOp_isPartialRoot(self)
        }
    }

    pub fn is_ptr_flow(&self) -> bool {
        unsafe {
            PcodeOp_isPtrFlow(self)
        }
    }

    pub fn is_return_copy(&self) -> bool {
        unsafe {
            PcodeOp_isReturnCopy(self)
        }
    }

    pub fn is_store_unmapped(&self) -> bool {
        unsafe {
            PcodeOp_isStoreUnmapped(self)
        }
    }

    pub fn no_indirect_collapse(&self) -> bool {
        unsafe {
            PcodeOp_noIndirectCollapse(self)
        }
    }

    pub fn num_input(&self) -> i32 {
        unsafe {
            PcodeOp_numInput(self)
        }
    }

    pub fn set_mark(&self) {
        unsafe {
            PcodeOp_setMark(self)
        }
    }

    pub fn set_partial_root(&mut self) {
        unsafe {
            PcodeOp_setPartialRoot(self)
        }
    }

    pub fn set_ptr_flow(&mut self) {
        unsafe {
            PcodeOp_setPtrFlow(self)
        }
    }

    pub fn set_stop_type_propagation(&mut self) {
        unsafe {
            PcodeOp_setStopTypePropagation(self)
        }
    }

    pub fn uses_spacebase_ptr(&self) -> bool {
        unsafe {
            PcodeOp_usesSpacebasePtr(self)
        }
    }
}

impl PieceNode {
    pub fn get_op(&self) -> Option<&mut PcodeOp> {
        unsafe {
            PieceNode_getOp(self).as_mut()
        }
    }

    pub fn get_slot(&self) -> i32 {
        unsafe {
            PieceNode_getSlot(self)
        }
    }

    pub fn get_type_offset(&self) -> i32 {
        unsafe {
            PieceNode_getTypeOffset(self)
        }
    }

    pub fn get_varnode(&self) -> Option<&mut Varnode> {
        unsafe {
            PieceNode_getVarnode(self).as_mut()
        }
    }

    pub fn is_leaf(&self) -> bool {
        unsafe {
            PieceNode_isLeaf(self)
        }
    }
}

impl Scope {
    pub fn is_read_only(&self, addr: &Address, size: i32, usepoint: &Address) -> bool {
        unsafe {
            Scope_isReadOnly(self, addr, size, usepoint)
        }
    }
}

impl ScopeLocal {
    pub fn mark_not_mapped(&mut self, spc: &mut AddrSpace, first: u64, sz: i32, param: bool) {
        unsafe {
            ScopeLocal_markNotMapped(self, spc, first, sz, param)
        }
    }
}

impl SegmentOp {
    pub fn execute(&self, input: &StdVector<u64>) -> u64 {
        unsafe {
            SegmentOp_execute(self, ptr::from_ref(input).cast())
        }
    }

    pub fn has_far_pointer_support(&self) -> bool {
        unsafe {
            SegmentOp_hasFarPointerSupport(self)
        }
    }
}

impl SeqNum {
    pub fn get_order(&self) -> u32 {
        unsafe {
            SeqNum_getOrder(self)
        }
    }
}

impl StringManager {
    pub fn is_string(&mut self, addr: &Address, charType: &mut Datatype) -> bool {
        unsafe {
            StringManager_isString(self, addr, charType)
        }
    }
}

impl Symbol {
    pub fn is_name_locked(&self) -> bool {
        unsafe {
            Symbol_isNameLocked(self)
        }
    }
}

impl SymbolEntry {
    pub fn get_addr(&self) -> Option<&Address> {
        unsafe {
            SymbolEntry_getAddr(self).as_ref()
        }
    }

    pub fn get_offset(&self) -> i32 {
        unsafe {
            SymbolEntry_getOffset(self)
        }
    }

    pub fn get_symbol(&self) -> Option<&mut Symbol> {
        unsafe {
            SymbolEntry_getSymbol(self).as_mut()
        }
    }
}

impl TermOrder {
    pub fn collect(&mut self) {
        unsafe {
            TermOrder_collect(self)
        }
    }

    pub fn get_sort(&mut self) -> Option<&StdVectorPtrAdditiveEdge> {
        unsafe {
            TermOrder_getSort(self).as_ref()
        }
    }

    pub fn sort_terms(&mut self) {
        unsafe {
            TermOrder_sortTerms(self)
        }
    }
}

impl TypeArray {
    pub fn num_elements(&self) -> i32 {
        unsafe {
            TypeArray_numElements(self)
        }
    }
}

impl TypeEnum {
    pub fn has_named_value(&self, val: u64) -> bool {
        unsafe {
            TypeEnum_hasNamedValue(self, val)
        }
    }
}

impl TypeFactory {
    pub fn get_base(&mut self, s: i32, m: TypeMetatype) -> Option<&mut Datatype> {
        unsafe {
            TypeFactory_getBase(self, s, m).as_mut()
        }
    }

    pub fn get_exact_piece(&mut self, ct: &mut Datatype, offset: i32, size: i32) -> Option<&mut Datatype> {
        unsafe {
            TypeFactory_getExactPiece(self, ct, offset, size).as_mut()
        }
    }
}

impl TypeOp {
    pub fn evaluate_binary(&self, sizeout: i32, sizein: i32, in1: u64, in2: u64) -> u64 {
        unsafe {
            TypeOp_evaluateBinary(self, sizeout, sizein, in1, in2)
        }
    }

    pub fn is_floating_point_op(&self) -> bool {
        unsafe {
            TypeOp_isFloatingPointOp(self)
        }
    }
}

impl TypePointer {
    pub fn get_ptr_to(&self) -> Option<&mut Datatype> {
        unsafe {
            TypePointer_getPtrTo(self).as_mut()
        }
    }

    pub fn get_word_size(&self) -> u32 {
        unsafe {
            TypePointer_getWordSize(self)
        }
    }
}

impl TypePointerRel {
    pub fn evaluate_thru_parent(&self, addrOff: u64) -> bool {
        unsafe {
            TypePointerRel_evaluateThruParent(self, addrOff)
        }
    }

    pub fn get_byte_offset(&self) -> i32 {
        unsafe {
            TypePointerRel_getByteOffset(self)
        }
    }

    pub fn get_parent(&self) -> Option<&mut Datatype> {
        unsafe {
            TypePointerRel_getParent(self).as_mut()
        }
    }
}

impl TypeSpacebase {
    pub fn get_address(&self, off: u64, sz: i32, point: &Address) -> Address {
        unsafe {
            let mut retval = MaybeUninit::uninit();
            TypeSpacebase_getAddress(self, off, sz, point, retval.as_mut_ptr());
            retval.assume_init()
        }
    }

    pub fn get_map(&self) -> Option<&mut Scope> {
        unsafe {
            TypeSpacebase_getMap(self).as_mut()
        }
    }
}

impl UserOpManage {
    pub fn get_segment_op(&self, i: i32) -> Option<&mut SegmentOp> {
        unsafe {
            UserOpManage_getSegmentOp(self, i).as_mut()
        }
    }
}

impl Varnode {
    pub fn begin_descend(&self) -> StdConstIterPtrPcodeOp {
        unsafe {
            let mut retval = MaybeUninit::uninit();
            Varnode_beginDescend(self, retval.as_mut_ptr());
            retval.assume_init()
        }
    }

    pub fn characterize_overlap(&self, op: &Varnode) -> i32 {
        unsafe {
            Varnode_characterizeOverlap(self, op)
        }
    }

    pub fn clear_mark(&self) {
        unsafe {
            Varnode_clearMark(self)
        }
    }

    pub fn clear_spacebase_placeholder(&mut self) {
        unsafe {
            Varnode_clearSpacebasePlaceholder(self)
        }
    }

    pub fn constant_match(&self, val: u64) -> bool {
        unsafe {
            Varnode_constantMatch(self, val)
        }
    }

    pub fn contains(&self, op: &Varnode) -> i32 {
        unsafe {
            Varnode_contains(self, op)
        }
    }

    pub fn copy_symbol(&mut self, vn: &Varnode) {
        unsafe {
            Varnode_copySymbol(self, vn)
        }
    }

    pub fn copy_symbol_if_valid(&mut self, vn: &Varnode) {
        unsafe {
            Varnode_copySymbolIfValid(self, vn)
        }
    }

    pub fn end_descend(&self) -> StdConstIterPtrPcodeOp {
        unsafe {
            let mut retval = MaybeUninit::uninit();
            Varnode_endDescend(self, retval.as_mut_ptr());
            retval.assume_init()
        }
    }

    pub fn get_addr(&self) -> Option<&Address> {
        unsafe {
            Varnode_getAddr(self).as_ref()
        }
    }

    pub fn get_consume(&self) -> u64 {
        unsafe {
            Varnode_getConsume(self)
        }
    }

    pub fn get_def(&mut self) -> Option<&mut PcodeOp> {
        unsafe {
            Varnode_getDef(self).as_mut()
        }
    }

    pub fn get_n_z_mask(&self) -> u64 {
        unsafe {
            Varnode_getNZMask(self)
        }
    }

    pub fn get_offset(&self) -> u64 {
        unsafe {
            Varnode_getOffset(self)
        }
    }

    pub fn get_size(&self) -> i32 {
        unsafe {
            Varnode_getSize(self)
        }
    }

    pub fn get_space(&self) -> Option<&mut AddrSpace> {
        unsafe {
            Varnode_getSpace(self).as_mut()
        }
    }

    pub fn get_space_from_const(&self) -> Option<&mut AddrSpace> {
        unsafe {
            Varnode_getSpaceFromConst(self).as_mut()
        }
    }

    pub fn get_structured_type(&self) -> Option<&mut Datatype> {
        unsafe {
            Varnode_getStructuredType(self).as_mut()
        }
    }

    pub fn get_symbol_entry(&self) -> Option<&mut SymbolEntry> {
        unsafe {
            Varnode_getSymbolEntry(self).as_mut()
        }
    }

    pub fn get_type(&self) -> Option<&mut Datatype> {
        unsafe {
            Varnode_getType(self).as_mut()
        }
    }

    pub fn get_type_def_facing(&self) -> Option<&mut Datatype> {
        unsafe {
            Varnode_getTypeDefFacing(self).as_mut()
        }
    }

    pub fn get_type_read_facing(&self, op: &PcodeOp) -> Option<&mut Datatype> {
        unsafe {
            Varnode_getTypeReadFacing(self, op).as_mut()
        }
    }

    pub fn has_no_descend(&self) -> bool {
        unsafe {
            Varnode_hasNoDescend(self)
        }
    }

    pub fn has_no_local_alias(&self) -> bool {
        unsafe {
            Varnode_hasNoLocalAlias(self)
        }
    }

    pub fn is_addr_force(&self) -> bool {
        unsafe {
            Varnode_isAddrForce(self)
        }
    }

    pub fn is_addr_tied(&self) -> bool {
        unsafe {
            Varnode_isAddrTied(self)
        }
    }

    pub fn is_auto_live(&self) -> bool {
        unsafe {
            Varnode_isAutoLive(self)
        }
    }

    pub fn is_boolean_value(&self, useAnnotation: bool) -> bool {
        unsafe {
            Varnode_isBooleanValue(self, useAnnotation)
        }
    }

    pub fn is_constant(&self) -> bool {
        unsafe {
            Varnode_isConstant(self)
        }
    }

    pub fn is_constant_extended(&self, val: &mut u64) -> bool {
        unsafe {
            Varnode_isConstantExtended(self, val)
        }
    }

    pub fn is_free(&self) -> bool {
        unsafe {
            Varnode_isFree(self)
        }
    }

    pub fn is_heritage_known(&self) -> bool {
        unsafe {
            Varnode_isHeritageKnown(self)
        }
    }

    pub fn is_indirect_zero(&self) -> bool {
        unsafe {
            Varnode_isIndirectZero(self)
        }
    }

    pub fn is_input(&self) -> bool {
        unsafe {
            Varnode_isInput(self)
        }
    }

    pub fn is_mark(&self) -> bool {
        unsafe {
            Varnode_isMark(self)
        }
    }

    pub fn is_name_lock(&self) -> bool {
        unsafe {
            Varnode_isNameLock(self)
        }
    }

    pub fn is_persist(&self) -> bool {
        unsafe {
            Varnode_isPersist(self)
        }
    }

    pub fn is_precis_hi(&self) -> bool {
        unsafe {
            Varnode_isPrecisHi(self)
        }
    }

    pub fn is_precis_lo(&self) -> bool {
        unsafe {
            Varnode_isPrecisLo(self)
        }
    }

    pub fn is_proto_partial(&self) -> bool {
        unsafe {
            Varnode_isProtoPartial(self)
        }
    }

    pub fn is_ptr_flow(&self) -> bool {
        unsafe {
            Varnode_isPtrFlow(self)
        }
    }

    pub fn is_spacebase(&self) -> bool {
        unsafe {
            Varnode_isSpacebase(self)
        }
    }

    pub fn is_spacebase_placeholder(&self) -> bool {
        unsafe {
            Varnode_isSpacebasePlaceholder(self)
        }
    }

    pub fn is_type_lock(&self) -> bool {
        unsafe {
            Varnode_isTypeLock(self)
        }
    }

    pub fn is_written(&self) -> bool {
        unsafe {
            Varnode_isWritten(self)
        }
    }

    pub fn lone_descend(&self) -> Option<&mut PcodeOp> {
        unsafe {
            Varnode_loneDescend(self).as_mut()
        }
    }

    pub fn overlap(&self, op: &Varnode) -> i32 {
        unsafe {
            Varnode_overlap(self, op)
        }
    }

    pub fn set_mark(&self) {
        unsafe {
            Varnode_setMark(self)
        }
    }

    pub fn set_proto_partial(&mut self) {
        unsafe {
            Varnode_setProtoPartial(self)
        }
    }

    pub fn set_ptr_flow(&mut self) {
        unsafe {
            Varnode_setPtrFlow(self)
        }
    }

    pub fn set_stack_store(&mut self) {
        unsafe {
            Varnode_setStackStore(self)
        }
    }

    pub fn update_type(&mut self, ct: &mut Datatype) -> bool {
        unsafe {
            Varnode_updateType(self, ct)
        }
    }

    pub fn update_type1(&mut self, ct: &mut Datatype, lock: bool, over: bool) -> bool {
        unsafe {
            Varnode_updateType1(self, ct, lock, over)
        }
    }
}

impl VarnodeData {
    pub fn get_addr(&self) -> Address {
        unsafe {
            let mut retval = MaybeUninit::uninit();
            VarnodeData_getAddr(self, retval.as_mut_ptr());
            retval.assume_init()
        }
    }
}