Files
Construction-of-Compilers/Project-02-03-04-05/cfgdots/smoke_test_simple_dfa_reached_uses.dot
2026-03-05 18:03:55 +01:00

24 lines
728 B
Plaintext

digraph CFG {
// Analysis: Reached Uses
node [fontname="Helvetica"];
n1 [label="START", shape=ellipse, style=filled, color=gray];
n1 -> n9;
n9 [label="2", shape=box];
n9 -> n10;
n10 [label="CALL g", shape=box, style=filled, color=orange];
n10 -> n3;
n10 -> n12;
n3 [label="START g(x, y)\nRU: [8]", shape=ellipse, style=filled, color=green];
n3 -> n6;
n6 [label="3", shape=box];
n6 -> n7;
n7 [label="y = 3\nRU: []", shape=box];
n7 -> n8;
n8 [label="x", shape=box];
n8 -> n4;
n4 [label="END g(x, y)", shape=ellipse, style=filled, color=green];
n4 -> n12;
n12 [label="RET g", shape=box, style=filled, color=orange];
n12 -> n2;
n2 [label="END", shape=ellipse, style=filled, color=gray];
}