[FIR-TEST] Update CFG dumps according to new nodes order

This commit is contained in:
Dmitriy Novozhilov
2020-06-16 12:17:31 +03:00
parent 4e6542a646
commit 12ed8c3bb4
67 changed files with 9862 additions and 9862 deletions
@@ -8,55 +8,55 @@ digraph postponedLambdas_kt {
0 [label="Enter function foo" style="filled" fillcolor=red];
subgraph cluster_1 {
color=blue
2 [label="Enter block"];
3 [label="Exit block"];
1 [label="Enter block"];
2 [label="Exit block"];
}
1 [label="Exit function foo" style="filled" fillcolor=red];
3 [label="Exit function foo" style="filled" fillcolor=red];
}
0 -> {2};
0 -> {1};
1 -> {2};
2 -> {3};
3 -> {1};
subgraph cluster_2 {
color=red
4 [label="Enter function test" style="filled" fillcolor=red];
subgraph cluster_3 {
color=blue
6 [label="Enter block"];
7 [label="Access variable R|<local>/a|"];
8 [label="Postponed enter to lambda"];
5 [label="Enter block"];
6 [label="Access variable R|<local>/a|"];
7 [label="Postponed enter to lambda"];
subgraph cluster_4 {
color=blue
13 [label="Enter function anonymousFunction" style="filled" fillcolor=red];
subgraph cluster_5 {
color=blue
15 [label="Enter block"];
16 [label="Const: String()"];
17 [label="Exit block"];
14 [label="Enter block"];
15 [label="Const: String()"];
16 [label="Exit block"];
}
14 [label="Exit function anonymousFunction" style="filled" fillcolor=red];
17 [label="Exit function anonymousFunction" style="filled" fillcolor=red];
}
9 [label="Postponed exit from lambda"];
10 [label="Access variable R|<local>/b|"];
11 [label="Function call: R|/foo|(...)"];
12 [label="Exit block"];
8 [label="Postponed exit from lambda"];
9 [label="Access variable R|<local>/b|"];
10 [label="Function call: R|/foo|(...)"];
11 [label="Exit block"];
}
5 [label="Exit function test" style="filled" fillcolor=red];
12 [label="Exit function test" style="filled" fillcolor=red];
}
4 -> {6};
4 -> {5};
5 -> {6};
6 -> {7};
7 -> {8};
8 -> {13};
8 -> {9} [color=red];
7 -> {13};
7 -> {8} [color=red];
8 -> {9};
9 -> {10};
10 -> {11};
11 -> {12};
12 -> {5};
13 -> {14 15};
14 -> {9} [color=green];
14 -> {13} [color=green style=dashed];
13 -> {17 14};
14 -> {15};
15 -> {16};
16 -> {17};
17 -> {14};
17 -> {8} [color=green];
17 -> {13} [color=green style=dashed];
}