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
5f8c04a8d26b Towards better modularity
Windel Bouwman
parents:
diff changeset
1 #!/usr/bin/bash
5f8c04a8d26b Towards better modularity
Windel Bouwman
parents:
diff changeset
2
5f8c04a8d26b Towards better modularity
Windel Bouwman
parents:
diff changeset
3 DIR=.
5f8c04a8d26b Towards better modularity
Windel Bouwman
parents:
diff changeset
4 while :; do
5f8c04a8d26b Towards better modularity
Windel Bouwman
parents:
diff changeset
5 python tcodegen.py
5f8c04a8d26b Towards better modularity
Windel Bouwman
parents:
diff changeset
6
5f8c04a8d26b Towards better modularity
Windel Bouwman
parents:
diff changeset
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
5f8c04a8d26b Towards better modularity
Windel Bouwman
parents:
diff changeset
11 echo "Awaiting changes in $DIR"
5f8c04a8d26b Towards better modularity
Windel Bouwman
parents:
diff changeset
12 inotifywait -r -e modify $DIR
5f8c04a8d26b Towards better modularity
Windel Bouwman
parents:
diff changeset
13 done
5f8c04a8d26b Towards better modularity
Windel Bouwman
parents:
diff changeset
14
5f8c04a8d26b Towards better modularity
Windel Bouwman
parents:
diff changeset
15
5f8c04a8d26b Towards better modularity
Windel Bouwman
parents:
diff changeset
16