Separate r5900 specifoc and mips16 instructions.
[deliverable/binutils-gdb.git] / sim / mips / .Sanitize
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
18 Do-first:
19
20 r5900_files="r5900.igen"
21 if ( echo $* | grep keep\-r5900 > /dev/null ) ; then
22 keep_these_too="${r5900_files} ${keep_these_too}"
23 else
24 lose_these_too="${r5900_files} ${lose_these_too}"
25 fi
26
27 vr5400_files="vr5400.igen"
28 if ( echo $* | grep keep\-vr5400 > /dev/null ) ; then
29 keep_these_too="${vr5400_files} ${keep_these_too}"
30 else
31 lose_these_too="${vr5400_files} ${lose_these_too}"
32 fi
33
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
40 Things-to-keep:
41
42 ChangeLog
43 Makefile.in
44 README.Cygnus
45 config.in
46 configure
47 configure.in
48 gencode.c
49 interp.c
50 sim-main.h
51 support.h
52 tconfig.in
53 mips.igen
54 m16.igen
55 mips.dc
56
57 Things-to-lose:
58
59
60 Do-last:
61
62 r5900_files="ChangeLog configure configure.in interp.c gencode.c mips.igen mips.dc m16.igen r5900.igen"
63
64 if ( 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
72 else
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
89 fi
90
91
92 tx19_files="ChangeLog configure configure.in interp.c gencode.c mips.igen mips.dc m16.igen"
93
94 if ( 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
102 else
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
119 fi
120
121
122 vr5400_files="ChangeLog configure configure.in interp.c gencode.c mips.igen mips.dc m16.igen vr5400.igen"
123
124 if ( 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
132 else
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
149 fi
150
151
152
153 never_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
173
174 # End of file.
This page took 0.033112 seconds and 4 git commands to generate.