walpurgis/graphviz/global_flow.dot

27 lines
721 B
Plaintext
Raw Permalink Normal View History

2023-11-14 13:23:54 -07:00
digraph flow {
// Global settings
graph [fontname = "cc wild words"];
node [fontname = "cc wild words"];
edge [fontname = "cc wild words"];
2023-11-14 18:11:43 -07:00
rankdir=LR;
2023-11-14 13:23:54 -07:00
A0 [label="Global" style=filled fillcolor=gold];
C0 [label="end generation"];
D0 [label="for each undefined subroutine"];
F0 [label="return" style=filled fillcolor=lightskyblue1];
node [shape=diamond style=filled fillcolor=lightsalmon];
2023-11-14 18:11:43 -07:00
FA0 [label="fn_gen_global_decl()"];
2023-11-14 13:23:54 -07:00
FB0 [label="fn_gen_main()"];
FC0 [label="fn_define_subroutine(SubRoutine)"];
FD0 [label="fn_declare_subroutine()"];
FE0 [label="fn_gen_typedef()"];
2023-11-14 18:11:43 -07:00
A0 -> FA0 -> A0;
2023-11-14 13:23:54 -07:00
A0 -> C0 -> FB0 -> D0;
A0 -> FD0 -> A0;
A0 -> FE0 -> A0;
D0 -> FC0 -> D0;
D0 -> F0;
}