Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(445)

Side by Side Diff: src/trusted/validator_ragel/unreviewed/files32.dot

Issue 10883051: Add documentation for the dynamic code modifications. (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client/
Patch Set: Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 digraph files32 {
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 validator_x86_32_rl [label="validator_x86_32.rl" style="filled" fillcolo r="lightgray"];
16 validator_internal_h [label="validator_internal.h" style="filled" fillco lor="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 validator_x86_32_c [label="validator_x86_32.c"];
23 validator_x86_32_instruction_rl [label="validator_x86_32_instruction.rl" ];
24 byte_machines_rl [label="byte_machines.rl"];
25 validator_x86_32_o [label="validator_x86_32.o"];
26 def_files -> gen_dfa [color="black:black"];
27 gen_dfa_cc -> gen_dfa [label="g++" weight="0"];
28 gen_dfa -> validator_x86_32_instruction_rl [color="black:black"];
29 byte_machines_py -> byte_machines_rl [label="python" weight="0"];
30 byte_machines_rl -> ragel [color="black:black"];
31 parse_instruction_rl -> ragel [color="black:black" weight="0"];
32 validator_x86_32_rl -> ragel [color="black:black" weight="0"];
33 validator_x86_32_instruction_rl -> ragel [color="black:black"];
34 ragel -> validator_x86_32_c [color="black:black"];
35 validator_x86_32_c -> gcc [color="black:black"];
36 validator_internal_h -> gcc [color="black:black"];
37 gcc -> validator_x86_32_o [color="black:black"];
38 }
OLDNEW
« no previous file with comments | « src/trusted/validator_ragel/unreviewed/dfa_validate_64.c ('k') | src/trusted/validator_ragel/unreviewed/files32.svg » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698