Mercurial > lcfOS
annotate python/trunner2.sh @ 278:9fca39eebe50
First implementation of regalloc with coalsesc
author | Windel Bouwman |
---|---|
date | Sun, 29 Sep 2013 14:08:15 +0200 |
parents | ea93e0a7a31e |
children | 2ccd57b1d78c |
rev | line source |
---|---|
269 | 1 #!/usr/bin/bash |
2 | |
3 DIR=. | |
4 while :; do | |
5 python tcodegen.py | |
6 | |
7 # Create svg from dot file: | |
278
9fca39eebe50
First implementation of regalloc with coalsesc
Windel Bouwman
parents:
274
diff
changeset
|
8 # dot -Tpdf -o ir.pdf ir.gv |
9fca39eebe50
First implementation of regalloc with coalsesc
Windel Bouwman
parents:
274
diff
changeset
|
9 #dot -Tpdf -o cfg.pdf cfg.gv |
9fca39eebe50
First implementation of regalloc with coalsesc
Windel Bouwman
parents:
274
diff
changeset
|
10 #dot -Tpdf -o ig.pdf ig.gv |
269 | 11 echo "Awaiting changes in $DIR" |
12 inotifywait -r -e modify $DIR | |
13 done | |
14 | |
15 | |
16 |