我正在尝试为Linux中的特定代码执行路径创建函数调用图。我有以下有向图,它使用记录字段(它们已被弃用,我知道,我刚开始使用graphviz并且最近才看到它):
digraph {
node[fontsize=9,shape=Mrecord,style=filled,fillcolor=white];
subgraph cluster_0 {
style=filled; fillcolor=lightgrey;
open[label="open.c|{<f0>do_sys_open()}"];
namei[label="namei.c|{<f0>do_filp_open()\l|\
<f1>path_lookup_open()\l|\
<f2>do_path_lookup()\l}"];
file_table[label="file_table.c|{<f0>get_empty_filp()}"];
open:f0->namei:f0;
namei:f0:e->namei:f1:e;
namei:f1:e->namei:f2:e;
namei:f1:e->file_table:f0;
}
}
生成的图片:
如图所示,指向同一记录节点的端口之间的箭头总是以一定角度出现。有没有办法“简化”它们以便它们直接出来,或以某种方式使它看起来更整洁?