-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathmodels.rs
More file actions
1077 lines (926 loc) · 23.3 KB
/
Copy pathmodels.rs
File metadata and controls
1077 lines (926 loc) · 23.3 KB
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
// Copyright (c) 2024-2026 Elias Bachaalany
// SPDX-License-Identifier: LicenseRef-Human-Origin-Source-1.0
//
// This file is licensed under the Human-Origin Source License v1.0.
// See LICENSE.
// Enums
#[derive(Debug, Clone, Copy, PartialEq, Eq, Default)]
pub enum ShutdownPolicy {
#[default]
Unspecified,
Save,
Discard,
None,
}
#[derive(Debug, Clone, Copy, PartialEq, Eq, Default)]
pub enum CommentKind {
#[default]
Unspecified,
Eol,
Pre,
Post,
Plate,
Repeatable,
}
#[derive(Debug, Clone, Copy, PartialEq, Eq, Default)]
pub enum DecompileLocalKind {
#[default]
Unspecified,
Param,
Local,
Temp,
}
#[derive(Debug, Clone, Copy, PartialEq, Eq, Default)]
pub enum DecompileTokenKind {
#[default]
Unspecified,
Keyword,
Comment,
Type,
Function,
Variable,
Const,
Parameter,
Global,
Default,
Error,
Special,
}
// Records
#[derive(Debug, Clone, Default)]
pub struct Capability {
pub id: String,
pub status: String,
pub note: String,
}
#[derive(Debug, Clone, Default)]
pub struct HealthStatus {
pub ok: bool,
pub service_name: String,
pub service_version: String,
pub host_mode: String,
pub modification_number: u64,
pub warnings: Vec<String>,
}
#[derive(Debug, Clone, Default)]
pub struct OpenProjectRequest {
pub project_path: String,
pub project_name: String,
pub create: bool,
pub read_only: bool,
}
#[derive(Debug, Clone, Default)]
pub struct OpenProjectResponse {
pub project_path: String,
pub project_name: String,
pub created: bool,
}
#[derive(Debug, Clone, Default)]
pub struct CloseProjectResponse {
pub closed: bool,
}
#[derive(Debug, Clone, Default)]
pub struct ProjectFile {
pub path: String,
pub name: String,
pub folder_path: String,
pub content_type: String,
pub domain_object_class: String,
pub is_folder: bool,
pub is_program: bool,
}
#[derive(Debug, Clone, Default)]
pub struct ListProjectFilesRequest {
pub include_folders: bool,
pub programs_only: bool,
}
#[derive(Debug, Clone, Default)]
pub struct ListProjectFilesResponse {
pub files: Vec<ProjectFile>,
}
#[derive(Debug, Clone, Default)]
pub struct LoaderArg {
pub name: String,
pub value: String,
}
#[derive(Debug, Clone, Default)]
pub struct ImportProgramRequest {
pub source_path: String,
pub project_folder_path: String,
pub program_name: String,
pub overwrite: bool,
pub analyze: bool,
pub language_id: String,
pub compiler_spec_id: String,
pub loader_class: String,
pub loader_args: Vec<LoaderArg>,
}
#[derive(Debug, Clone, Default)]
pub struct ImportProgramResponse {
pub program_paths: Vec<String>,
pub primary_program_path: String,
}
#[derive(Debug, Clone, Default)]
pub struct OpenProgramRequest {
pub project_path: String,
pub project_name: String,
pub program_path: String,
pub analyze: bool,
pub read_only: bool,
pub language_id: String,
pub compiler_spec_id: String,
pub format: String,
pub base_address: u64,
}
#[derive(Debug, Clone, Default)]
pub struct OpenProgramResponse {
pub program_name: String,
pub language_id: String,
pub compiler_spec: String,
pub image_base: u64,
pub md5: String,
pub sha256: String,
pub executable_format: String,
pub entry_point: u64,
pub has_entry_point: bool,
}
#[derive(Debug, Clone, Default)]
pub struct CloseProgramResponse {
pub closed: bool,
}
#[derive(Debug, Clone, Default)]
pub struct SaveProgramResponse {
pub saved: bool,
}
#[derive(Debug, Clone, Default)]
pub struct DiscardProgramResponse {
pub discarded: bool,
}
#[derive(Debug, Clone, Default)]
pub struct RevisionResponse {
pub program_id: u64,
pub modification_number: u64,
pub program_path: String,
pub file_id: String,
pub file_version: i32,
pub file_last_modified_time: i64,
}
#[derive(Debug, Clone, Default)]
pub struct ShutdownResponse {
pub accepted: bool,
}
#[derive(Debug, Clone, Default)]
pub struct ReadBytesResponse {
pub data: Vec<u8>,
}
#[derive(Debug, Clone, Default)]
pub struct WriteBytesResponse {
pub bytes_written: u32,
}
#[derive(Debug, Clone, Default)]
pub struct BytePatch {
pub address: u64,
pub data: Vec<u8>,
}
#[derive(Debug, Clone, Default)]
pub struct PatchBytesBatchResponse {
pub patch_count: u32,
pub bytes_written: u32,
}
#[derive(Debug, Clone, Default)]
pub struct MemoryBlockRecord {
pub name: String,
pub start_address: u64,
pub end_address: u64,
pub size: u64,
pub is_read: bool,
pub is_write: bool,
pub is_execute: bool,
pub is_volatile: bool,
pub is_initialized: bool,
pub source_name: String,
pub comment: String,
}
#[derive(Debug, Clone, Default)]
pub struct ListMemoryBlocksResponse {
pub blocks: Vec<MemoryBlockRecord>,
}
/// Spec for creating a new memory block (the writable memory map). Mirrors the
/// C++ `CreateMemoryBlockSpec`; `Default` yields a readable+writable,
/// non-executable, uninitialized, non-overlay block.
#[derive(Debug, Clone)]
pub struct CreateMemoryBlockSpec {
pub name: String,
pub start_address: u64,
pub size: u64,
pub is_read: bool,
pub is_write: bool,
pub is_execute: bool,
pub initialized: bool,
pub overlay: bool,
}
impl Default for CreateMemoryBlockSpec {
fn default() -> Self {
Self {
name: String::new(),
start_address: 0,
size: 0,
is_read: true,
is_write: true,
is_execute: false,
initialized: false,
overlay: false,
}
}
}
#[derive(Debug, Clone, Default)]
pub struct CreateMemoryBlockResponse {
pub created: bool,
pub block: Option<MemoryBlockRecord>,
}
#[derive(Debug, Clone, Default)]
pub struct RemoveMemoryBlockResponse {
pub removed: bool,
}
#[derive(Debug, Clone, Default)]
pub struct MoveMemoryBlockResponse {
pub moved: bool,
pub block: Option<MemoryBlockRecord>,
}
#[derive(Debug, Clone, Default)]
pub struct FunctionRecord {
pub entry_address: u64,
pub name: String,
pub start_address: u64,
pub end_address: u64,
pub size: u64,
pub namespace_name: String,
pub prototype: String,
pub is_thunk: bool,
pub parameter_count: u32,
}
#[derive(Debug, Clone, Default)]
pub struct GetFunctionResponse {
pub function: Option<FunctionRecord>,
}
#[derive(Debug, Clone, Default)]
pub struct ListFunctionsResponse {
pub functions: Vec<FunctionRecord>,
}
#[derive(Debug, Clone, Default)]
pub struct RenameFunctionResponse {
pub renamed: bool,
pub name: String,
}
#[derive(Debug, Clone, Default)]
pub struct BasicBlockRecord {
pub function_entry: u64,
pub start_address: u64,
pub end_address: u64,
pub in_degree: u32,
pub out_degree: u32,
}
#[derive(Debug, Clone, Default)]
pub struct ListBasicBlocksResponse {
pub blocks: Vec<BasicBlockRecord>,
}
#[derive(Debug, Clone, Default)]
pub struct CFGEdgeRecord {
pub function_entry: u64,
pub src_block_start: u64,
pub dst_block_start: u64,
pub edge_kind: String,
}
#[derive(Debug, Clone, Default)]
pub struct ListCFGEdgesResponse {
pub edges: Vec<CFGEdgeRecord>,
}
#[derive(Debug, Clone, Default)]
pub struct SymbolRecord {
pub symbol_id: u64,
pub address: u64,
pub name: String,
pub full_name: String,
pub r#type: String,
pub namespace_name: String,
pub source: String,
pub is_primary: bool,
pub is_external: bool,
pub is_dynamic: bool,
pub is_external_entry_point: bool,
}
#[derive(Debug, Clone, Default)]
pub struct GetSymbolResponse {
pub symbol: Option<SymbolRecord>,
}
#[derive(Debug, Clone, Default)]
pub struct ListSymbolsResponse {
pub symbols: Vec<SymbolRecord>,
}
#[derive(Debug, Clone, Default)]
pub struct RenameSymbolResponse {
pub renamed: bool,
pub name: String,
}
#[derive(Debug, Clone, Default)]
pub struct DeleteSymbolResponse {
pub deleted: bool,
pub deleted_count: u32,
}
#[derive(Debug, Clone, Default)]
pub struct XrefRecord {
pub from_address: u64,
pub to_address: u64,
pub operand_index: i32,
pub ref_type: String,
pub is_primary: bool,
pub source: String,
pub symbol_id: i64,
pub is_external: bool,
pub is_memory: bool,
pub is_flow: bool,
}
#[derive(Debug, Clone, Default)]
pub struct ListXrefsResponse {
pub xrefs: Vec<XrefRecord>,
}
#[derive(Debug, Clone, Default)]
pub struct StackVariableRecord {
pub var_id: String,
pub name: String,
pub data_type: String,
pub stack_offset: i64,
pub size: u32,
pub is_parameter: bool,
pub first_use_offset: i32,
pub source_type: String,
}
#[derive(Debug, Clone, Default)]
pub struct FunctionFrameRecord {
pub function_entry: u64,
pub frame_size: i64,
pub local_size: i64,
pub parameter_size: i64,
pub parameter_offset: i64,
pub return_address_offset: i64,
pub grows_negative: bool,
pub stack_pointer_register: String,
pub stack_variables: Vec<StackVariableRecord>,
}
#[derive(Debug, Clone, Default)]
pub struct PerfBenchmarkRecord {
pub bench_id: String,
pub query_family: String,
pub dataset_profile: String,
pub cold_ms_p50: f64,
pub cold_ms_p95: f64,
pub warm_ms_p50: f64,
pub warm_ms_p95: f64,
pub throughput_qps: f64,
pub regression_pct: f64,
pub status: String,
}
#[derive(Debug, Clone, Default)]
pub struct ClearPerfBenchmarksResponse {
pub cleared: bool,
pub removed_count: u32,
}
#[derive(Debug, Clone, Default)]
pub struct TypeRecord {
pub type_id: u64,
pub name: String,
pub path_name: String,
pub category_path: String,
pub display_name: String,
pub kind: String,
pub length: i32,
pub is_not_yet_defined: bool,
pub source_archive: String,
pub universal_id: String,
}
#[derive(Debug, Clone, Default)]
pub struct GetTypeResponse {
pub r#type: Option<TypeRecord>,
}
#[derive(Debug, Clone, Default)]
pub struct ListTypesResponse {
pub types: Vec<TypeRecord>,
}
#[derive(Debug, Clone, Default)]
pub struct TypeAliasRecord {
pub type_id: u64,
pub path_name: String,
pub name: String,
pub target_type: String,
pub declaration: String,
}
#[derive(Debug, Clone, Default)]
pub struct ListTypeAliasesResponse {
pub aliases: Vec<TypeAliasRecord>,
}
#[derive(Debug, Clone, Default)]
pub struct TypeUnionRecord {
pub type_id: u64,
pub path_name: String,
pub name: String,
pub size: u64,
pub declaration: String,
}
#[derive(Debug, Clone, Default)]
pub struct ListTypeUnionsResponse {
pub unions: Vec<TypeUnionRecord>,
}
#[derive(Debug, Clone, Default)]
pub struct TypeEnumRecord {
pub type_id: u64,
pub path_name: String,
pub name: String,
pub width: u64,
pub is_signed: bool,
pub declaration: String,
}
#[derive(Debug, Clone, Default)]
pub struct ListTypeEnumsResponse {
pub enums: Vec<TypeEnumRecord>,
}
#[derive(Debug, Clone, Default)]
pub struct TypeEnumMemberRecord {
pub type_id: u64,
pub type_path_name: String,
pub type_name: String,
pub ordinal: u64,
pub name: String,
pub value: i64,
}
#[derive(Debug, Clone, Default)]
pub struct ListTypeEnumMembersResponse {
pub members: Vec<TypeEnumMemberRecord>,
}
#[derive(Debug, Clone, Default)]
pub struct TypeMemberRecord {
pub parent_type_id: u64,
pub parent_type_path_name: String,
pub parent_type_name: String,
pub ordinal: u64,
pub name: String,
pub member_type: String,
pub offset: i64,
pub size: u64,
}
#[derive(Debug, Clone, Default)]
pub struct ListTypeMembersResponse {
pub members: Vec<TypeMemberRecord>,
}
#[derive(Debug, Clone, Default)]
pub struct ParameterRecord {
pub ordinal: i32,
pub name: String,
pub data_type: String,
pub formal_data_type: String,
pub is_auto_parameter: bool,
pub is_forced_indirect: bool,
}
#[derive(Debug, Clone, Default)]
pub struct FunctionSignatureRecord {
pub function_entry_address: u64,
pub function_name: String,
pub prototype: String,
pub return_type: String,
pub has_var_args: bool,
pub calling_convention: String,
pub parameters: Vec<ParameterRecord>,
}
#[derive(Debug, Clone, Default)]
pub struct GetFunctionSignatureResponse {
pub signature: Option<FunctionSignatureRecord>,
}
#[derive(Debug, Clone, Default)]
pub struct ListFunctionSignaturesResponse {
pub signatures: Vec<FunctionSignatureRecord>,
}
#[derive(Debug, Clone, Default)]
pub struct SetFunctionSignatureResponse {
pub updated: bool,
pub function_name: String,
pub prototype: String,
}
#[derive(Debug, Clone, Default)]
pub struct RenameFunctionParameterResponse {
pub updated: bool,
pub name: String,
}
#[derive(Debug, Clone, Default)]
pub struct SetFunctionParameterTypeResponse {
pub updated: bool,
pub data_type: String,
}
#[derive(Debug, Clone, Default)]
pub struct RenameFunctionLocalResponse {
pub updated: bool,
pub local_id: String,
pub name: String,
}
#[derive(Debug, Clone, Default)]
pub struct SetFunctionLocalTypeResponse {
pub updated: bool,
pub local_id: String,
pub data_type: String,
}
#[derive(Debug, Clone, Default)]
pub struct ApplyDataTypeResponse {
pub updated: bool,
pub data_type: String,
}
#[derive(Debug, Clone, Default)]
pub struct CreateTypeResponse {
pub updated: bool,
}
#[derive(Debug, Clone, Default)]
pub struct DeleteTypeResponse {
pub deleted: bool,
}
#[derive(Debug, Clone, Default)]
pub struct RenameTypeResponse {
pub updated: bool,
pub name: String,
}
#[derive(Debug, Clone, Default)]
pub struct CreateTypeAliasResponse {
pub updated: bool,
}
#[derive(Debug, Clone, Default)]
pub struct DeleteTypeAliasResponse {
pub deleted: bool,
}
#[derive(Debug, Clone, Default)]
pub struct SetTypeAliasTargetResponse {
pub updated: bool,
}
#[derive(Debug, Clone, Default)]
pub struct CreateTypeEnumResponse {
pub updated: bool,
}
#[derive(Debug, Clone, Default)]
pub struct DeleteTypeEnumResponse {
pub deleted: bool,
}
#[derive(Debug, Clone, Default)]
pub struct AddTypeEnumMemberResponse {
pub updated: bool,
}
#[derive(Debug, Clone, Default)]
pub struct DeleteTypeEnumMemberResponse {
pub deleted: bool,
}
#[derive(Debug, Clone, Default)]
pub struct RenameTypeEnumMemberResponse {
pub updated: bool,
}
#[derive(Debug, Clone, Default)]
pub struct SetTypeEnumMemberValueResponse {
pub updated: bool,
}
#[derive(Debug, Clone, Default)]
pub struct AddTypeMemberResponse {
pub updated: bool,
}
#[derive(Debug, Clone, Default)]
pub struct DeleteTypeMemberResponse {
pub deleted: bool,
}
#[derive(Debug, Clone, Default)]
pub struct RenameTypeMemberResponse {
pub updated: bool,
}
#[derive(Debug, Clone, Default)]
pub struct SetTypeMemberTypeResponse {
pub updated: bool,
}
#[derive(Debug, Clone, Default)]
pub struct SetTypeMemberCommentResponse {
pub updated: bool,
}
#[derive(Debug, Clone, Default)]
pub struct SetTypeEnumMemberCommentResponse {
pub updated: bool,
}
#[derive(Debug, Clone, Default)]
pub struct DecompileLocalRecord {
pub local_id: String,
pub kind: DecompileLocalKind,
pub name: String,
pub data_type: String,
pub storage: String,
pub ordinal: i32,
}
#[derive(Debug, Clone, Default)]
pub struct DecompileTokenRecord {
pub text: String,
pub kind: DecompileTokenKind,
pub line_number: i32,
pub column_offset: i32,
pub var_name: String,
pub var_type: String,
pub var_storage: String,
}
#[derive(Debug, Clone, Default)]
pub struct DecompilationRecord {
pub function_entry_address: u64,
pub function_name: String,
pub prototype: String,
pub pseudocode: String,
pub completed: bool,
pub is_fallback: bool,
pub error_message: String,
pub locals: Vec<DecompileLocalRecord>,
pub tokens: Vec<DecompileTokenRecord>,
}
#[derive(Debug, Clone, Default)]
pub struct GetDecompilationResponse {
pub decompilation: Option<DecompilationRecord>,
}
#[derive(Debug, Clone, Default)]
pub struct ListDecompilationsResponse {
pub decompilations: Vec<DecompilationRecord>,
}
/// A single P-code varnode (operand). `kind` is the canonical operand kind:
/// `reg` / `imm` / `mem` / `result` / `var`.
#[derive(Debug, Clone, Default)]
pub struct VarnodeRecord {
pub space: String,
pub offset: u64,
pub size: u32,
pub kind: String,
}
/// A single high P-code (SSA) op. `op` is the canonical P-code mnemonic
/// (COPY, INT_ADD, LOAD, CALL, MULTIEQUAL, ...). `has_address` distinguishes a
/// real address zero from an op with no source address. `has_output` is false
/// when the op defines no varnode (RETURN, STORE, ...), in which case `output`
/// is default.
#[derive(Debug, Clone, Default)]
pub struct PcodeOpRecord {
pub seq: u64,
pub op: String,
pub addr: u64,
pub has_address: bool,
pub has_output: bool,
pub output: VarnodeRecord,
pub inputs: Vec<VarnodeRecord>,
}
/// P-code maturity rung: `High` (refined SSA, `getPcodeOps`) or `Raw`
/// (per-instruction, non-SSA, `getPcode`).
#[derive(Debug, Clone, Copy, PartialEq, Eq, Default)]
pub enum PcodeMaturity {
#[default]
High,
Raw,
}
/// A function's P-code op stream (the Ghidra leg of the cross-tool low-IR).
#[derive(Debug, Clone, Default)]
pub struct PcodeRecord {
pub function_entry_address: u64,
pub ops: Vec<PcodeOpRecord>,
pub completed: bool,
pub error_message: String,
/// The rung actually produced (echoed by the host).
pub maturity: PcodeMaturity,
}
#[derive(Debug, Clone, Default)]
pub struct GetPcodeResponse {
pub pcode: Option<PcodeRecord>,
}
#[derive(Debug, Clone, Default)]
pub struct SwitchCaseRecord {
pub value: i64,
pub target_address: u64,
}
#[derive(Debug, Clone, Default)]
pub struct SwitchTableRecord {
pub function_entry: u64,
pub switch_address: u64,
pub case_count: u32,
pub cases: Vec<SwitchCaseRecord>,
pub default_address: u64,
}
#[derive(Debug, Clone, Default)]
pub struct ListSwitchTablesResponse {
pub switch_tables: Vec<SwitchTableRecord>,
}
#[derive(Debug, Clone, Default)]
pub struct DominatorRecord {
pub function_entry: u64,
pub block_address: u64,
pub idom_address: u64,
pub depth: u32,
pub is_entry: bool,
}
#[derive(Debug, Clone, Default)]
pub struct ListDominatorsResponse {
pub dominators: Vec<DominatorRecord>,
}
#[derive(Debug, Clone, Default)]
pub struct PostDominatorRecord {
pub function_entry: u64,
pub block_address: u64,
pub ipdom_address: u64,
pub depth: u32,
pub is_exit: bool,
}
#[derive(Debug, Clone, Default)]
pub struct ListPostDominatorsResponse {
pub post_dominators: Vec<PostDominatorRecord>,
}
#[derive(Debug, Clone, Default)]
pub struct LoopRecord {
pub function_entry: u64,
pub header_address: u64,
pub back_edge_source: u64,
pub loop_kind: String,
pub block_count: u32,
pub depth: u32,
}
#[derive(Debug, Clone, Default)]
pub struct ListLoopsResponse {
pub loops: Vec<LoopRecord>,
}
#[derive(Debug, Clone, Default)]
pub struct InstructionRecord {
pub address: u64,
pub mnemonic: String,
pub operand_text: String,
pub disassembly: String,
pub length: u32,
}
#[derive(Debug, Clone, Default)]
pub struct GetInstructionResponse {
pub instruction: Option<InstructionRecord>,
}
#[derive(Debug, Clone, Default)]
pub struct ListInstructionsResponse {
pub instructions: Vec<InstructionRecord>,
}
/// One decoded operand of an instruction (the operand leg of the low-IR).
#[derive(Debug, Clone, Default)]
pub struct InstructionOperandRecord {
pub address: u64,
pub operand_index: u32,
pub text: String,
pub type_name: String,
pub ref_type: String,
}
#[derive(Debug, Clone, Default)]
pub struct ListInstructionOperandsResponse {
pub operands: Vec<InstructionOperandRecord>,
}
#[derive(Debug, Clone, Default)]
pub struct CommentRecord {
pub address: u64,
pub kind: CommentKind,
pub text: String,
}
#[derive(Debug, Clone, Default)]
pub struct GetCommentsResponse {
pub comments: Vec<CommentRecord>,
}
#[derive(Debug, Clone, Default)]
pub struct SetCommentResponse {
pub updated: bool,
}
#[derive(Debug, Clone, Default)]
pub struct DeleteCommentResponse {
pub deleted: bool,
}
#[derive(Debug, Clone, Default)]
pub struct RenameDataItemResponse {
pub updated: bool,
pub name: String,
}
#[derive(Debug, Clone, Default)]
pub struct DeleteDataItemResponse {
pub deleted: bool,
}
#[derive(Debug, Clone, Default)]
pub struct DataItemRecord {
pub address: u64,
pub end_address: u64,
pub name: String,
pub data_type: String,
pub size: u64,
pub value_repr: String,
}
#[derive(Debug, Clone, Default)]
pub struct ListDataItemsResponse {
pub data_items: Vec<DataItemRecord>,
}
#[derive(Debug, Clone, Default)]
pub struct BookmarkRecord {
pub address: u64,
pub r#type: String,
pub category: String,
pub comment: String,
}
#[derive(Debug, Clone, Default)]
pub struct ListBookmarksResponse {
pub bookmarks: Vec<BookmarkRecord>,
}
#[derive(Debug, Clone, Default)]
pub struct AddBookmarkResponse {
pub updated: bool,
}
#[derive(Debug, Clone, Default)]
pub struct DeleteBookmarkResponse {
pub deleted: bool,
}
#[derive(Debug, Clone, Default)]
pub struct BreakpointRecord {
pub address: u64,
pub enabled: bool,
pub kind: String,
pub size: u64,
pub condition: String,
pub group: String,
}
#[derive(Debug, Clone, Default)]
pub struct ListBreakpointsResponse {
pub breakpoints: Vec<BreakpointRecord>,
}
#[derive(Debug, Clone, Default)]
pub struct AddBreakpointResponse {
pub updated: bool,
}
#[derive(Debug, Clone, Default)]
pub struct SetBreakpointEnabledResponse {
pub updated: bool,
}
#[derive(Debug, Clone, Default)]
pub struct SetBreakpointKindResponse {
pub updated: bool,
}
#[derive(Debug, Clone, Default)]
pub struct SetBreakpointSizeResponse {
pub updated: bool,
}