@@ -17,6 +17,7 @@ static const RzCmdDescDetail analysis_all_esil_details[2];
17
17
static const RzCmdDescDetail analyze_all_preludes_details[2];
18
18
static const RzCmdDescDetail analysis_functions_merge_details[2];
19
19
static const RzCmdDescDetail analysis_appcall_details[2];
20
+ static const RzCmdDescDetail analysis_graph_write_details[2];
20
21
static const RzCmdDescDetail ag_details[2];
21
22
static const RzCmdDescDetail analysis_reg_cond_details[4];
22
23
static const RzCmdDescDetail ar_details[2];
@@ -3431,6 +3432,22 @@ static const RzCmdDescHelp analysis_graph_custom_edge_remove_help = {
3431
3432
.args = analysis_graph_custom_edge_remove_args,
3432
3433
};
3433
3434
3435
+ static const RzCmdDescDetailEntry analysis_graph_write_Graph_space_Type_detail_entries[] = {
3436
+ { .text = "dataref", .arg_str = NULL, .comment = "Data reference graph" },
3437
+ { .text = "funcall", .arg_str = NULL, .comment = "Function call graph" },
3438
+ { .text = "diff", .arg_str = NULL, .comment = "Diff graph" },
3439
+ { .text = "funblock", .arg_str = NULL, .comment = "Function basic block graph" },
3440
+ { .text = "import", .arg_str = NULL, .comment = "Imports graph" },
3441
+ { .text = "ref", .arg_str = NULL, .comment = "References graph" },
3442
+ { .text = "line", .arg_str = NULL, .comment = "Line graph" },
3443
+ { .text = "xref", .arg_str = NULL, .comment = "Cross references graph" },
3444
+ { .text = "custom", .arg_str = NULL, .comment = "Custom made graph" },
3445
+ { 0 },
3446
+ };
3447
+ static const RzCmdDescDetail analysis_graph_write_details[] = {
3448
+ { .name = "Graph Type", .entries = analysis_graph_write_Graph_space_Type_detail_entries },
3449
+ { 0 },
3450
+ };
3434
3451
static const char *analysis_graph_write_graphtype_choices[] = { "dataref", "funcall", "diff", "funblock", "import", "ref", "line", "xref", "custom", NULL };
3435
3452
static const RzCmdDescArg analysis_graph_write_args[] = {
3436
3453
{
@@ -3456,6 +3473,7 @@ static const RzCmdDescArg analysis_graph_write_args[] = {
3456
3473
};
3457
3474
static const RzCmdDescHelp analysis_graph_write_help = {
3458
3475
.summary = "Write to path or display graph image (see graph.gv.format)",
3476
+ .details = analysis_graph_write_details,
3459
3477
.args = analysis_graph_write_args,
3460
3478
};
3461
3479
0 commit comments