mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-26 05:20:30 +00:00
f14397f057
* archures.c,bfd-in2.h (bfd_mach_mips4121): New. * cpu-mips.c: Added vr4121. * elf32-mips.c (elf_mips_mach): Same. (_bfd_mips_elf_final_write_processing): Same. for gas: * config/tc-mips.c (mips_4121): New. (md_begin,mips_ip,md_longopts,md_parse_option): Add vr4121. for gcc: * config/mips/mips.c (override_options): Add vr4121. * config/mips/t-vr4xxx (MULTILIB_MATCHES): Same. for include/elf: * mips.h (E_MIPS_MACH_4121): New. for include/opcode: * mips.h (INSN_4121): New. for opcodes: * mips-dis.c (set_mips_isa_type): Add bfd_mach_mips4121. (_print_insn_mips): Same. * mips-opc.c: Add vr4121. for sim/mips: * configure.in,mips.igen,vr.igen: Add vr4121. * configure: Rebuilt.
314 lines
7.5 KiB
Plaintext
314 lines
7.5 KiB
Plaintext
# Sanitize.in for devo/include/elf.
|
|
|
|
# Each directory to survive it's way into a release will need a file
|
|
# like this one called "./.Sanitize". All keyword lines must exist,
|
|
# and must exist in the order specified by this file. Each directory
|
|
# in the tree will be processed, top down, in the following order.
|
|
|
|
# Hash started lines like this one are comments and will be deleted
|
|
# before anything else is done. Blank lines will also be squashed
|
|
# out.
|
|
|
|
# The lines between the "Do-first:" line and the "Things-to-keep:"
|
|
# line are executed as a /bin/sh shell script before anything else is
|
|
# done in this
|
|
|
|
Do-first:
|
|
|
|
# All files listed between the "Things-to-keep:" line and the
|
|
# "Files-to-sed:" line will be kept. All other files will be removed.
|
|
# Directories listed in this section will have their own Sanitize
|
|
# called. Directories not listed will be removed in their entirety
|
|
# with rm -rf.
|
|
|
|
Things-to-keep:
|
|
|
|
ChangeLog
|
|
alpha.h
|
|
arc.h
|
|
arm.h
|
|
common.h
|
|
d10v.h
|
|
d30v.h
|
|
dwarf.h
|
|
dwarf2.h
|
|
external.h
|
|
fr30.h
|
|
hppa.h
|
|
i386.h
|
|
internal.h
|
|
m32r.h
|
|
m68k.h
|
|
mips.h
|
|
mn10200.h
|
|
mn10300.h
|
|
ppc.h
|
|
reloc-macros.h
|
|
sh.h
|
|
sparc.h
|
|
v850.h
|
|
|
|
Things-to-lose:
|
|
|
|
Do-last:
|
|
|
|
am33_files="mn10300.h"
|
|
if ( echo $* | grep keep\-am33 > /dev/null ) ; then
|
|
for i in $am33_files ; do
|
|
if test ! -d $i && (grep sanitize-am33 $i > /dev/null) ; then
|
|
if [ -n "${verbose}" ] ; then
|
|
echo Keeping am33 stuff in $i
|
|
fi
|
|
fi
|
|
done
|
|
else
|
|
for i in $am33_files ; do
|
|
if test ! -d $i && (grep sanitize-am33 $i > /dev/null) ; then
|
|
if [ -n "${verbose}" ] ; then
|
|
echo Removing traces of \"am33\" from $i...
|
|
fi
|
|
cp $i new
|
|
sed '/start\-sanitize\-am33/,/end-\sanitize\-am33/d' < $i > new
|
|
if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
|
|
if [ -n "${verbose}" ] ; then
|
|
echo Caching $i in .Recover...
|
|
fi
|
|
mv $i .Recover
|
|
fi
|
|
mv new $i
|
|
fi
|
|
done
|
|
fi
|
|
|
|
v850_files="ChangeLog common.h v850.h"
|
|
if ( echo $* | grep keep\-v850e > /dev/null ) ; then
|
|
for i in $v850_files ; do
|
|
if test ! -d $i && (grep sanitize-v850e $i > /dev/null) ; then
|
|
if [ -n "${verbose}" ] ; then
|
|
echo Keeping v850e stuff in $i
|
|
fi
|
|
fi
|
|
done
|
|
else
|
|
for i in $v850_files ; do
|
|
if test ! -d $i && (grep sanitize-v850e $i > /dev/null) ; then
|
|
if [ -n "${verbose}" ] ; then
|
|
echo Removing traces of \"v850e\" from $i...
|
|
fi
|
|
cp $i new
|
|
sed '/start\-sanitize\-v850e/,/end\-sanitize\-v850e/d' < $i > new
|
|
if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
|
|
if [ -n "${verbose}" ] ; then
|
|
echo Caching $i in .Recover...
|
|
fi
|
|
mv $i .Recover
|
|
fi
|
|
mv new $i
|
|
fi
|
|
done
|
|
fi
|
|
|
|
m32rx_files="ChangeLog m32r.h"
|
|
if ( echo $* | grep keep\-m32rx > /dev/null ) ; then
|
|
for i in $m32rx_files ; do
|
|
if test ! -d $i && (grep sanitize-m32rx $i > /dev/null) ; then
|
|
if [ -n "${verbose}" ] ; then
|
|
echo Keeping m32rx stuff in $i
|
|
fi
|
|
fi
|
|
done
|
|
else
|
|
for i in $m32rx_files ; do
|
|
if test ! -d $i && (grep sanitize-m32rx $i > /dev/null) ; then
|
|
if [ -n "${verbose}" ] ; then
|
|
echo Removing traces of \"m32rx\" from $i...
|
|
fi
|
|
cp $i new
|
|
sed '/start\-sanitize\-m32rx/,/end\-sanitize\-m32rx/d' < $i > new
|
|
if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
|
|
if [ -n "${verbose}" ] ; then
|
|
echo Caching $i in .Recover...
|
|
fi
|
|
mv $i .Recover
|
|
fi
|
|
mv new $i
|
|
fi
|
|
done
|
|
fi
|
|
|
|
sky_files="ChangeLog mips.h"
|
|
if ( echo $* | grep keep\-sky > /dev/null ) ; then
|
|
for i in $sky_files ; do
|
|
if test ! -d $i && (grep sanitize-sky $i > /dev/null) ; then
|
|
if [ -n "${verbose}" ] ; then
|
|
echo Keeping sky stuff in $i
|
|
fi
|
|
fi
|
|
done
|
|
else
|
|
for i in $sky_files ; do
|
|
if test ! -d $i && (grep sanitize-sky $i > /dev/null) ; then
|
|
if [ -n "${verbose}" ] ; then
|
|
echo Removing traces of \"sky\" from $i...
|
|
fi
|
|
cp $i new
|
|
sed '/start\-sanitize\-sky/,/end\-sanitize\-sky/d' < $i > new
|
|
if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
|
|
if [ -n "${verbose}" ] ; then
|
|
echo Caching $i in .Recover...
|
|
fi
|
|
mv $i .Recover
|
|
fi
|
|
mv new $i
|
|
fi
|
|
done
|
|
fi
|
|
|
|
vr4320_files="mips.h"
|
|
if ( echo $* | grep keep\-vr4320 > /dev/null ) ; then
|
|
for i in $vr4320_files ; do
|
|
if test ! -d $i && (grep sanitize-vr4320 $i > /dev/null) ; then
|
|
if [ -n "${verbose}" ] ; then
|
|
echo Keeping vr4320 stuff in $i
|
|
fi
|
|
fi
|
|
done
|
|
else
|
|
for i in $vr4320_files ; do
|
|
if test ! -d $i && (grep sanitize-vr4320 $i > /dev/null) ; then
|
|
if [ -n "${verbose}" ] ; then
|
|
echo Removing traces of \"vr4320\" from $i...
|
|
fi
|
|
cp $i new
|
|
sed '/start\-sanitize\-vr4320/,/end-\sanitize\-vr4320/d' < $i > new
|
|
if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
|
|
if [ -n "${verbose}" ] ; then
|
|
echo Caching $i in .Recover...
|
|
fi
|
|
mv $i .Recover
|
|
fi
|
|
mv new $i
|
|
fi
|
|
done
|
|
fi
|
|
|
|
vr4xxx_files="ChangeLog mips.h"
|
|
if ( echo $* | grep keep\-vr4xxx > /dev/null ) ; then
|
|
for i in $vr4xxx_files ; do
|
|
if test ! -d $i && (grep sanitize-vr4xxx $i > /dev/null) ; then
|
|
if [ -n "${verbose}" ] ; then
|
|
echo Keeping vr4xxx stuff in $i
|
|
fi
|
|
fi
|
|
done
|
|
else
|
|
for i in $vr4xxx_files ; do
|
|
if test ! -d $i && (grep sanitize-vr4xxx $i > /dev/null) ; then
|
|
if [ -n "${verbose}" ] ; then
|
|
echo Removing traces of \"vr4xxx\" from $i...
|
|
fi
|
|
cp $i new
|
|
sed '/start\-sanitize\-vr4xxx/,/end-\sanitize\-vr4xxx/d' < $i > new
|
|
if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
|
|
if [ -n "${verbose}" ] ; then
|
|
echo Caching $i in .Recover...
|
|
fi
|
|
mv $i .Recover
|
|
fi
|
|
mv new $i
|
|
fi
|
|
done
|
|
fi
|
|
|
|
tx49_files="mips.h"
|
|
if ( echo $* | grep keep\-tx49 > /dev/null ) ; then
|
|
for i in $tx49_files ; do
|
|
if test ! -d $i && (grep sanitize-tx49 $i > /dev/null) ; then
|
|
if [ -n "${verbose}" ] ; then
|
|
echo Keeping tx49 stuff in $i
|
|
fi
|
|
fi
|
|
done
|
|
else
|
|
for i in $tx49_files ; do
|
|
if test ! -d $i && (grep sanitize-tx49 $i > /dev/null) ; then
|
|
if [ -n "${verbose}" ] ; then
|
|
echo Removing traces of \"tx49\" from $i...
|
|
fi
|
|
cp $i new
|
|
sed '/start\-sanitize\-tx49/,/end-\sanitize\-tx49/d' < $i > new
|
|
if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
|
|
if [ -n "${verbose}" ] ; then
|
|
echo Caching $i in .Recover...
|
|
fi
|
|
mv $i .Recover
|
|
fi
|
|
mv new $i
|
|
fi
|
|
done
|
|
fi
|
|
|
|
cygnus_files="mips.h"
|
|
if ( echo $* | grep keep\-cygnus > /dev/null ) ; then
|
|
for i in $cygnus_files ; do
|
|
if test ! -d $i && (grep sanitize-cygnus $i > /dev/null) ; then
|
|
if [ -n "${verbose}" ] ; then
|
|
echo Keeping cygnus stuff in $i
|
|
fi
|
|
fi
|
|
done
|
|
else
|
|
for i in $cygnus_files ; do
|
|
if test ! -d $i && (grep sanitize-cygnus $i > /dev/null) ; then
|
|
if [ -n "${verbose}" ] ; then
|
|
echo Removing traces of \"cygnus\" from $i...
|
|
fi
|
|
cp $i new
|
|
sed '/start\-sanitize\-cygnus/,/end-\sanitize\-cygnus/d' < $i > new
|
|
if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
|
|
if [ -n "${verbose}" ] ; then
|
|
echo Caching $i in .Recover...
|
|
fi
|
|
mv $i .Recover
|
|
fi
|
|
mv new $i
|
|
fi
|
|
done
|
|
fi
|
|
|
|
r5900_files="mips.h ChangeLog"
|
|
if ( echo $* | grep keep\-r5900 > /dev/null ) ; then
|
|
for i in $r5900_files ; do
|
|
if test ! -d $i && (grep sanitize-r5900 $i > /dev/null) ; then
|
|
if [ -n "${verbose}" ] ; then
|
|
echo Keeping r5900 stuff in $i
|
|
fi
|
|
fi
|
|
done
|
|
else
|
|
for i in $r5900_files ; do
|
|
if test ! -d $i && (grep sanitize-r5900 $i > /dev/null) ; then
|
|
if [ -n "${verbose}" ] ; then
|
|
echo Removing traces of \"r5900\" from $i...
|
|
fi
|
|
cp $i new
|
|
sed '/start\-sanitize\-r5900/,/end-\sanitize\-r5900/d' < $i > new
|
|
if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
|
|
if [ -n "${verbose}" ] ; then
|
|
echo Caching $i in .Recover...
|
|
fi
|
|
mv $i .Recover
|
|
fi
|
|
mv new $i
|
|
fi
|
|
done
|
|
fi
|
|
|
|
for i in * ; do
|
|
if test ! -d $i && (grep sanitize $i > /dev/null) ; then
|
|
echo '***' Some mentions of Sanitize are still left in $i! 1>&2
|
|
fi
|
|
done
|
|
|
|
# End of file.
|