Separate r5900 specifoc and mips16 instructions.
[deliverable/binutils-gdb.git] / sim / mips / .Sanitize
CommitLineData
c21ee46b
JSC
1# Sanitize.in for devo.
2# $Id$
3#
4
5# Each directory to survive it's way into a release will need a file
6# like this one called "./.Sanitize". All keyword lines must exist,
7# and must exist in the order specified by this file. Each directory
8# in the tree will be processed, top down, in the following order.
9
10# Hash started lines like this one are comments and will be deleted
11# before anything else is done. Blank lines will also be squashed
12# out.
13
14# The lines between the "Do-first:" line and the "Things-to-keep:"
15# line are executed as a /bin/sh shell script before anything else is
16# done in this
17
18Do-first:
19
16bd5d6e
AC
20r5900_files="r5900.igen"
21if ( echo $* | grep keep\-r5900 > /dev/null ) ; then
22 keep_these_too="${r5900_files} ${keep_these_too}"
23else
24 lose_these_too="${r5900_files} ${lose_these_too}"
25fi
26
27vr5400_files="vr5400.igen"
28if ( echo $* | grep keep\-vr5400 > /dev/null ) ; then
29 keep_these_too="${vr5400_files} ${keep_these_too}"
30else
31 lose_these_too="${vr5400_files} ${lose_these_too}"
32fi
33
c21ee46b
JSC
34# All files listed between the "Things-to-keep:" line and the
35# "Files-to-sed:" line will be kept. All other files will be removed.
36# Directories listed in this section will have their own Sanitize
37# called. Directories not listed will be removed in their entirety
38# with rm -rf.
39
40Things-to-keep:
41
42ChangeLog
43Makefile.in
44README.Cygnus
45config.in
46configure
47configure.in
48gencode.c
49interp.c
2e61a3ad 50sim-main.h
c21ee46b 51support.h
e3d12c65 52tconfig.in
90ad43b2 53mips.igen
16bd5d6e 54m16.igen
90ad43b2 55mips.dc
c21ee46b
JSC
56
57Things-to-lose:
58
391c7170 59
c21ee46b
JSC
60Do-last:
61
16bd5d6e 62r5900_files="ChangeLog configure configure.in interp.c gencode.c mips.igen mips.dc m16.igen r5900.igen"
276c2d7d
GRK
63
64if ( echo $* | grep keep\-r5900 > /dev/null ) ; then
65 for i in $r5900_files ; do
66 if test ! -d $i && (grep sanitize-r5900 $i > /dev/null) ; then
67 if [ -n "${verbose}" ] ; then
68 echo Keeping r5900 stuff in $i
69 fi
70 fi
71 done
72else
73 for i in * ; do
74 if test ! -d $i && (grep sanitize-r5900 $i > /dev/null) ; then
75 if [ -n "${verbose}" ] ; then
76 echo Removing traces of \"r5900\" from $i...
77 fi
78 cp $i new
79 sed '/start\-sanitize\-r5900/,/end-\sanitize\-r5900/d' < $i > new
80 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
81 if [ -n "${verbose}" ] ; then
82 echo Caching $i in .Recover...
83 fi
84 mv $i .Recover
85 fi
86 mv new $i
87 fi
88 done
89fi
90
91
16bd5d6e 92tx19_files="ChangeLog configure configure.in interp.c gencode.c mips.igen mips.dc m16.igen"
318b499d
GRK
93
94if ( echo $* | grep keep\-tx19 > /dev/null ) ; then
95 for i in $tx19_files ; do
96 if test ! -d $i && (grep sanitize-tx19 $i > /dev/null) ; then
97 if [ -n "${verbose}" ] ; then
98 echo Keeping tx19 stuff in $i
99 fi
100 fi
101 done
102else
103 for i in * ; do
104 if test ! -d $i && (grep sanitize-tx19 $i > /dev/null) ; then
105 if [ -n "${verbose}" ] ; then
106 echo Removing traces of \"tx19\" from $i...
107 fi
108 cp $i new
109 sed '/start\-sanitize\-tx19/,/end-\sanitize\-tx19/d' < $i > new
110 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
111 if [ -n "${verbose}" ] ; then
112 echo Caching $i in .Recover...
113 fi
114 mv $i .Recover
115 fi
116 mv new $i
117 fi
118 done
119fi
120
121
16bd5d6e 122vr5400_files="ChangeLog configure configure.in interp.c gencode.c mips.igen mips.dc m16.igen vr5400.igen"
90ad43b2
AC
123
124if ( echo $* | grep keep\-vr5400 > /dev/null ) ; then
125 for i in $vr5400_files ; do
126 if test ! -d $i && (grep sanitize-vr5400 $i > /dev/null) ; then
127 if [ -n "${verbose}" ] ; then
128 echo Keeping vr5400 stuff in $i
129 fi
130 fi
131 done
132else
133 for i in * ; do
134 if test ! -d $i && (grep sanitize-vr5400 $i > /dev/null) ; then
135 if [ -n "${verbose}" ] ; then
136 echo Removing traces of \"vr5400\" from $i...
137 fi
138 cp $i new
139 sed '/start\-sanitize\-vr5400/,/end-\sanitize\-vr5400/d' < $i > new
140 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
141 if [ -n "${verbose}" ] ; then
142 echo Caching $i in .Recover...
143 fi
144 mv $i .Recover
145 fi
146 mv new $i
147 fi
148 done
149fi
150
151
152
153never_files="ChangeLog configure configure.in interp.c gencode.c mips.igen mips.dc"
154
155 for i in * ; do
156 if test ! -d $i && (grep sanitize-cygnus-never $i > /dev/null) ; then
157 if [ -n "${verbose}" ] ; then
158 echo Removing traces of \"cygnus-never\" from $i...
159 fi
160 cp $i new
161 sed '/start\-sanitize\-cygnus\-never/,/end-\sanitize\-cygnus\-never/d' < $i > new
162 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
163 if [ -n "${verbose}" ] ; then
164 echo Caching $i in .Recover...
165 fi
166 mv $i .Recover
167 fi
168 mv new $i
169 fi
170 done
171
172
c21ee46b
JSC
173
174# End of file.
This page took 0.084049 seconds and 4 git commands to generate.