Updated roadmap, added sample input to RVM testcase assembler.
This commit is contained in:
parent
c19d7bb66e
commit
4862dd244d
2 changed files with 22 additions and 1 deletions
|
|
@ -2,8 +2,9 @@ digraph {
|
||||||
graph [rankdir=LR];
|
graph [rankdir=LR];
|
||||||
subgraph complete {
|
subgraph complete {
|
||||||
node [color="gray",fontcolor="gray"];
|
node [color="gray",fontcolor="gray"];
|
||||||
regex_gen;
|
|
||||||
glue;
|
glue;
|
||||||
|
regex_svm;
|
||||||
|
regex_rvm;
|
||||||
}
|
}
|
||||||
/* The end result of the milestone, along with the subtasks listed */
|
/* The end result of the milestone, along with the subtasks listed */
|
||||||
milestone2 [color="green",style="filled"];
|
milestone2 [color="green",style="filled"];
|
||||||
|
|
@ -18,6 +19,9 @@ tests -> milestone2;
|
||||||
|
|
||||||
regex_gen -> regex;
|
regex_gen -> regex;
|
||||||
regex_driver -> regex;
|
regex_driver -> regex;
|
||||||
|
regex_svm -> regex_driver;
|
||||||
|
regex_rvm -> regex_driver;
|
||||||
|
regex_svm_actions -> regex_driver;
|
||||||
llk_driver -> llk;
|
llk_driver -> llk;
|
||||||
llk_gen -> llk;
|
llk_gen -> llk;
|
||||||
|
|
||||||
|
|
|
||||||
17
docs/rvm_sample_input.rvm
Normal file
17
docs/rvm_sample_input.rvm
Normal file
|
|
@ -0,0 +1,17 @@
|
||||||
|
+C
|
||||||
|
int foo() {
|
||||||
|
return 42;
|
||||||
|
}
|
||||||
|
|
||||||
|
+SVM /svm/simple
|
||||||
|
@input ""
|
||||||
|
@output "()"
|
||||||
|
0 ACCEPT
|
||||||
|
|
||||||
|
+SVM /svm/string
|
||||||
|
@input "quux"
|
||||||
|
@outut "(<5555>)"
|
||||||
|
1 MARK
|
||||||
|
2 CAPTURE
|
||||||
|
2 ACCEPT
|
||||||
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue