OLD | NEW |
(Empty) | |
| 1 digraph filesdecoder { |
| 2 node [shape=tab]; |
| 3 def_files [label=< |
| 4 <table border="0"> |
| 5 <tr><td align="left">general_purpose_instructions.def</td></tr> |
| 6 <tr><td align="left">mmx_instructions.def</td></tr> |
| 7 <tr><td align="left">nops.def</td></tr> |
| 8 <tr><td align="left">system_instructions.def</td></tr> |
| 9 <tr><td align="left">x87_instructions.def</td></tr> |
| 10 <tr><td align="left">xmm_instructions.def</td></tr></table> |
| 11 > style="filled" fillcolor="lightgray"]; |
| 12 gen_dfa_cc [label="gen_dfa.cc" style="filled" fillcolor="lightgray"]; |
| 13 byte_machines_py [label="byte_machines.py" style="filled" fillcolor="lig
htgray"]; |
| 14 parse_instruction_rl [label="parse_instruction.rl" style="filled" fillco
lor="lightgray"]; |
| 15 decoder_x86_3264_rl [label="decoder_x86_32.rl\nor\ndecoder_x86_64.rl" st
yle="filled" fillcolor="lightgray"]; |
| 16 decoder_internal_h [label="decoder_internal.h" style="filled" fillcolor=
"lightgray"]; |
| 17 node [shape="invtrapezium"]; |
| 18 gen_dfa [label="gen_dfa" style="filled" fillcolor="gray"]; |
| 19 ragel [label="ragel" style="filled" fillcolor="gray"]; |
| 20 gcc [label="gcc" style="filled" fillcolor="gray"]; |
| 21 node [shape=rect]; |
| 22 decoder_x86_3264_c [label="decoder_x86_32.c\nor\ndecoder_x86_64.c"]; |
| 23 decoder_x86_3264_instruction_rl [label="decoder_x86_32_instruction.rl\no
r\ndecoder_x86_64_instruction.rl"]; |
| 24 decoder_x86_3264_instruction_consts_c [label="decoder_x86_32_instruction
_consts.c\nor\ndecoder_x86_64_instruction_consts.c"]; |
| 25 byte_machines_rl [label="byte_machines.rl"]; |
| 26 decoder_x86_3264_o [label="decoder_x86_32.o\nor\ndecoder_x86_64.o"]; |
| 27 def_files -> gen_dfa [color="black:black"]; |
| 28 gen_dfa_cc -> gen_dfa [label="g++" weight="0"]; |
| 29 gen_dfa -> decoder_x86_3264_instruction_rl [color="black:black"]; |
| 30 gen_dfa -> decoder_x86_3264_instruction_consts_c [color="black:black" we
ight="2"]; |
| 31 byte_machines_py -> byte_machines_rl [label="python" weight="0"]; |
| 32 byte_machines_rl -> ragel [color="black:black"]; |
| 33 parse_instruction_rl -> ragel [color="black:black" weight="0"]; |
| 34 decoder_x86_3264_rl -> ragel [color="black:black" weight="0"]; |
| 35 decoder_x86_3264_instruction_rl -> ragel [color="black:black"]; |
| 36 ragel -> decoder_x86_3264_c [color="black:black"]; |
| 37 decoder_x86_3264_instruction_consts_c -> gcc [color="black:black" weight
="2"]; |
| 38 decoder_x86_3264_c -> gcc [color="black:black"]; |
| 39 decoder_internal_h -> gcc [color="black:black"]; |
| 40 gcc -> decoder_x86_3264_o [color="black:black"]; |
| 41 } |
OLD | NEW |