2001-06-06 20:29:01 +00:00
|
|
|
#!/bin/sh
|
2001-09-07 22:58:50 +00:00
|
|
|
LD_LIBRARY_PATH=../lib/Debug
|
2001-06-06 20:29:01 +00:00
|
|
|
export LD_LIBRARY_PATH
|
|
|
|
|
2001-09-07 22:58:50 +00:00
|
|
|
AS=../tools/Debug/as
|
|
|
|
DIS=../tools/Debug/dis
|
|
|
|
OPT=../tools/Debug/opt
|
|
|
|
export AS
|
|
|
|
export DIS
|
|
|
|
export OPT
|
2001-06-06 20:29:01 +00:00
|
|
|
|
2001-09-07 22:58:50 +00:00
|
|
|
$AS < $1 | $OPT -q -inline -dce -constprop -dce | $DIS | $AS > $1.bc.1 || exit 1
|
2001-06-06 20:29:01 +00:00
|
|
|
|
|
|
|
# Should not be able to optimize further!
|
2001-09-07 22:58:50 +00:00
|
|
|
$OPT -q -constprop -dce < $1.bc.1 > $1.bc.2 || exit 2
|
2001-06-06 20:29:01 +00:00
|
|
|
|
2001-09-07 22:58:50 +00:00
|
|
|
$DIS < $1.bc.1 > $1.ll.1 || exit 3
|
|
|
|
$DIS < $1.bc.2 > $1.ll.2 || exit 3
|
2001-07-26 16:30:18 +00:00
|
|
|
diff $1.ll.[12] || exit 3
|
2001-06-27 23:37:22 +00:00
|
|
|
|
|
|
|
# Try out SCCP
|
2001-09-07 22:58:50 +00:00
|
|
|
$AS < $1 | $OPT -q -inline -dce -sccp -dce | $DIS | $AS > $1.bc.3 || exit 1
|
2001-06-27 23:37:22 +00:00
|
|
|
|
|
|
|
# Should not be able to optimize further!
|
2001-09-07 22:58:50 +00:00
|
|
|
#$OPT -q -sccp -dce < $1.bc.3 > $1.bc.4 || exit 2
|
2001-06-27 23:37:22 +00:00
|
|
|
|
|
|
|
#diff $1.bc.[34] || exit 3
|
2001-07-26 16:30:18 +00:00
|
|
|
rm $1.bc.[123] $1.ll.[12]
|
2001-06-06 20:29:01 +00:00
|
|
|
|