r500/diagrams/vertex_inputs.dot
2025-10-23 13:27:37 -05:00

37 lines
483 B
Plaintext

digraph D {
graph [ranksep="1" splines=line];
node [shape=box];
edge [arrowhead=none];
input
const
temp
alt_temp
opcode [shape=none];
a [label = "a"];
b [label = "b"];
c [label = "c"];
subgraph cluster_R {
{rank=same opcode a b c}
}
input:s -> a:n
input:s -> b:n
input:s -> c:n
const:s -> a:n
const:s -> b:n
const:s -> c:n
temp:s -> a:n
temp:s -> b:n
temp:s -> c:n
alt_temp:s -> a:n
alt_temp:s -> b:n
alt_temp:s -> c:n
}