1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
#! /bin/sh
set -e
# get expression to optimise
lhs="$1"
rhs="$2"
create_reduce_script ()
{
lhs="$1"
rhs="$2"
cat <<EOF
off echo$
load scope$
on double$
on noconvert$
on rounded$
off int$
off nat$
out "${tmp}"$
optimize mtt_tmp0 :=: ${rhs} iname mtt_tmp$
write "${lhs} := mtt_tmp0 $"$
shut "${tmp}"$
;end;
EOF
return
}
# set work file names
tmp="$0.tmp"
log="$0.log"
create_reduce_script "${lhs}" "${rhs}" | reduce > ${log}
cat ${tmp}
rm -f ${tmp}
exit 0
|
>
>
|
|
|
|
|
>
|
|
|
<
|
<
<
<
<
<
<
<
<
<
|
<
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
#! /bin/sh
set -e
filename="$1"
# get expression to optimise
lhs=`cat ${filename} | gawk '{ print $1 }'`
rhs=`cat ${filename} | gawk '{ print $2 }'`
# set work file names
tmp="$0.tmp"
log="$0.log"
cat <<EOF | reduce > $log
off echo$
load scope$
on double$
on noconvert$
on rounded$
off int$
off nat$
out "${tmp}"$
optimize mtt_tmp0 :=: ${rhs} iname mtt_tmp$
write "${lhs} := mtt_tmp0"$
shut "${tmp}"$
;end;
EOF
mv ${tmp} ${filename}
exit 0
|