#RUN: llvm-xray graph %s -o - -m %S/Inputs/simple-instrmap.yaml -e sum -c sum \ #RUN: | FileCheck %s -check-prefix=EDGE #RUN: llvm-xray graph %s -o - -m %S/Inputs/simple-instrmap.yaml -v sum -b sum \ #RUN: | FileCheck %s -check-prefix=VERTEX --- header: version: 1 type: 0 constant-tsc: true nonstop-tsc: true cycle-frequency: 1 records: - { type: 0, func-id: 1, cpu: 1, thread: 111, kind: function-enter, tsc: 10000 } - { type: 0, func-id: 1, cpu: 1, thread: 111, kind: function-exit, tsc: 10010 } - { type: 0, func-id: 2, cpu: 1, thread: 111, kind: function-enter, tsc: 10100 } - { type: 0, func-id: 2, cpu: 1, thread: 111, kind: function-exit, tsc: 10120 } - { type: 0, func-id: 3, cpu: 1, thread: 111, kind: function-enter, tsc: 10200 } - { type: 0, func-id: 3, cpu: 1, thread: 111, kind: function-exit, tsc: 10230 } - { type: 0, func-id: 4, cpu: 1, thread: 111, kind: function-enter, tsc: 10300 } - { type: 0, func-id: 4, cpu: 1, thread: 111, kind: function-exit, tsc: 10340 } - { type: 0, func-id: 5, cpu: 1, thread: 111, kind: function-enter, tsc: 10400 } - { type: 0, func-id: 5, cpu: 1, thread: 111, kind: function-exit, tsc: 10450 } - { type: 0, func-id: 6, cpu: 1, thread: 111, kind: function-enter, tsc: 10500 } - { type: 0, func-id: 6, cpu: 1, thread: 111, kind: function-exit, tsc: 10560 } - { type: 0, func-id: 7, cpu: 1, thread: 111, kind: function-enter, tsc: 10600 } - { type: 0, func-id: 7, cpu: 1, thread: 111, kind: function-exit, tsc: 10670 } - { type: 0, func-id: 8, cpu: 1, thread: 111, kind: function-enter, tsc: 10700 } - { type: 0, func-id: 8, cpu: 1, thread: 111, kind: function-exit, tsc: 10780 } - { type: 0, func-id: 9, cpu: 1, thread: 111, kind: function-enter, tsc: 10800 } - { type: 0, func-id: 9, cpu: 1, thread: 111, kind: function-exit, tsc: 10890 } --- #EDGE: digraph xray { #EDGE-DAG: F0 -> F7 [label="7.{{[0-9]*}}e+01" color="#B00000"]; #EDGE-DAG: F0 -> F2 [label="2.{{[0-9]*}}e+01" color="#FC9963"]; #EDGE-DAG: F0 -> F9 [label="9.{{[0-9]*}}e+01" color="#7F0000"]; #EDGE-DAG: F0 -> F4 [label="4.{{[0-9]*}}e+01" color="#E75339"]; #EDGE-DAG: F0 -> F6 [label="6.{{[0-9]*}}e+01" color="#C4150D"]; #EDGE-DAG: F0 -> F1 [label="1.{{[0-9]*}}e+01" color="#FDC48D"]; #EDGE-DAG: F0 -> F8 [label="8.{{[0-9]*}}e+01" color="#970000"]; #EDGE-DAG: F0 -> F3 [label="3.{{[0-9]*}}e+01" color="#F4744E"]; #EDGE-DAG: F0 -> F5 [label="5.{{[0-9]*}}e+01" color="#D83220"]; #EDGE-DAG: F7 [label="@(7)"]; #EDGE-DAG: F2 [label="@(2)"]; #EDGE-DAG: F9 [label="@(9)"]; #EDGE-DAG: F4 [label="@(4)"]; #EDGE-DAG: F6 [label="@(6)"]; #EDGE-DAG: F1 [label="@(1)"]; #EDGE-DAG: F8 [label="@(8)"]; #EDGE-DAG: F3 [label="@(3)"]; #EDGE-DAG: F5 [label="@(5)"]; #EDGE-NEXT: } # #VERTEX: digraph xray { #VERTEX-DAG: node [shape=record]; #VERTEX-DAG: F0 -> F7 [label=""]; #VERTEX-DAG: F0 -> F2 [label=""]; #VERTEX-DAG: F0 -> F9 [label=""]; #VERTEX-DAG: F0 -> F4 [label=""]; #VERTEX-DAG: F0 -> F6 [label=""]; #VERTEX-DAG: F0 -> F1 [label=""]; #VERTEX-DAG: F0 -> F8 [label=""]; #VERTEX-DAG: F0 -> F3 [label=""]; #VERTEX-DAG: F0 -> F5 [label=""]; #VERTEX-DAG: F7 [label="{@(7)|7.{{[0-9]*}}e+01}" color="#B00000"]; #VERTEX-DAG: F2 [label="{@(2)|2.{{[0-9]*}}e+01}" color="#FC9963"]; #VERTEX-DAG: F9 [label="{@(9)|9.{{[0-9]*}}e+01}" color="#7F0000"]; #VERTEX-DAG: F4 [label="{@(4)|4.{{[0-9]*}}e+01}" color="#E75339"]; #VERTEX-DAG: F6 [label="{@(6)|6.{{[0-9]*}}e+01}" color="#C4150D"]; #VERTEX-DAG: F1 [label="{@(1)|1.{{[0-9]*}}e+01}" color="#FDC48D"]; #VERTEX-DAG: F8 [label="{@(8)|8.{{[0-9]*}}e+01}" color="#970000"]; #VERTEX-DAG: F3 [label="{@(3)|3.{{[0-9]*}}e+01}" color="#F4744E"]; #VERTEX-DAG: F5 [label="{@(5)|5.{{[0-9]*}}e+01}" color="#D83220"]; #VERTEX-NEXT: }