-
Notifications
You must be signed in to change notification settings - Fork 10
/
fig_flow_srctraces.dot
61 lines (46 loc) · 1.52 KB
/
fig_flow_srctraces.dot
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
digraph {
node [fontsize = 9]
edge [fontsize = 9, arrowsize=0.7]
setup [shape=box, label="gnatcov setup"]
/*-------------------
Using Source traces
-------------------*/
subgraph "cluster_src_traces" {
label = "Instrument / Build / Execute / Analyze";
fontsize = 10;
labeljust = l;
/* processes */
node [shape = box];
node [color = green];
instrument [label = "Instrument Original Sources\n(gnatcov instrument -P<gpr>)"];
build_instr [label = "Build from Instrumented Sources\n(gprbuild -P... --src-subdirs ...)"];
regular_execution [label = "Regular Execution\n(instrumented executable)"];
node [color = blue];
srct_coverage [label = "Analyze/Consolidate\n(gnatcov coverage -P...)"];
/* products or inputs */
node [shape = ellipse, color = green];
st1 [label = "strace1"];
stdots [label = "..."];
st2 [label = "strace2"];
node [shape = ellipse, color = blue];
srct_report [label = "Report"];
srct_checkpoint [label = "Checkpoint"];
src [shape = ellipse, label = "Original Sources"];
/* Links */
src -> instrument;
instrument -> build_instr;
build_instr -> regular_execution;
{rank = same;
st1; stdots; st2;
}
regular_execution -> st1 [style = dotted];
regular_execution -> stdots [style = dotted];
regular_execution -> st2 [style = dotted];
st1 -> srct_coverage;
stdots -> srct_coverage;
st2 -> srct_coverage;
srct_coverage -> srct_report [style = dotted];
srct_coverage -> srct_checkpoint [style = dotted];
srct_checkpoint -> srct_coverage;
}
}