2 # CGEN generic assembler support code.
4 # Copyright 2001 Free Software Foundation, Inc.
6 # This file is part of the GNU Binutils and GDB, the GNU debugger.
8 # This program is free software; you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 2, or (at your option)
13 # This program is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
18 # You should have received a copy of the GNU General Public License along
19 # with this program; if not, write to the Free Software Foundation, Inc.,
20 # 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
22 # Generate CGEN opcode files: arch-desc.[ch], arch-opc.[ch],
23 # arch-asm.c, arch-dis.c, arch-opinst.c, arch-ibld.[ch].
26 # cgen.sh action srcdir cgen cgendir cgenflags arch prefix options
28 # ACTION is currently always "opcodes". It exists to be consistent with the
30 # OPTIONS is comma separated list of options:
31 # - opinst - arch-opinst.c is being made, causes semantic analysis
33 # We store the generated files in the source directory until we decide to
34 # ship a Scheme interpreter (or other implementation) with gdb/binutils.
35 # Maybe we never will.
37 # We want to behave like make, any error forces us to stop.
49 # List of extra files to build.
50 # Values: opinst (only 1 extra file at present)
55 # $arch is $6, as passed on the command line.
56 # $ARCH is the same argument but in all uppercase.
57 # Both forms are used in this script.
59 lowercase
='abcdefghijklmnopqrstuvwxyz'
60 uppercase
='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
61 ARCH
=`echo ${arch} | tr "${lowercase}" "${uppercase}"`
64 for ef
in ..
$extrafiles
68 opinst
) extrafile_args
="-Q tmp-opinst.c1 $extrafile_args" ;;
74 # Remove residual working files.
75 rm -f tmp-desc.h tmp-desc.h1
76 rm -f tmp-desc.c tmp-desc.c1
77 rm -f tmp-opc.h tmp-opc.h1
78 rm -f tmp-opc.c tmp-opc.c1
79 rm -f tmp-opinst.c tmp-opinst.c1
80 rm -f tmp-ibld.h tmp-ibld.h1
81 rm -f tmp-ibld.c tmp-ibld.in1
82 rm -f tmp-asm.c tmp-asm.in1
83 rm -f tmp-dis.c tmp-dis.in1
86 ${cgen} -s ${cgendir}/cgen-opc.scm \
101 # Customise generated files for the particular architecture.
102 sed -e "s/@ARCH@/${ARCH}/g" -e "s/@arch@/${arch}/g" < tmp-desc.h1
> tmp-desc.h
103 ${rootdir}/move-if-change tmp-desc.h ${srcdir}/${prefix}-desc.h
105 sed -e "s/@ARCH@/${ARCH}/g" -e "s/@arch@/${arch}/g" \
106 -e "s/@prefix@/${prefix}/" < tmp-desc.c1
> tmp-desc.c
107 ${rootdir}/move-if-change tmp-desc.c ${srcdir}/${prefix}-desc.c
109 sed -e "s/@ARCH@/${ARCH}/g" -e "s/@arch@/${arch}/g" < tmp-opc.h1
> tmp-opc.h
110 ${rootdir}/move-if-change tmp-opc.h ${srcdir}/${prefix}-opc.h
112 sed -e "s/@ARCH@/${ARCH}/g" -e "s/@arch@/${arch}/g" \
113 -e "s/@prefix@/${prefix}/" < tmp-opc.c1
> tmp-opc.c
114 ${rootdir}/move-if-change tmp-opc.c ${srcdir}/${prefix}-opc.c
118 sed -e "s/@ARCH@/${ARCH}/g" -e "s/@arch@/${arch}/g" \
119 -e "s/@prefix@/${prefix}/" < tmp-opinst.c1
>tmp-opinst.c
120 ${rootdir}/move-if-change tmp-opinst.c ${srcdir}/${prefix}-opinst.c
124 cat ${srcdir}/cgen-ibld.
in tmp-ibld.in1 | \
125 sed -e "s/@ARCH@/${ARCH}/g" -e "s/@arch@/${arch}/g" \
126 -e "s/@prefix@/${prefix}/" > tmp-ibld.c
127 ${rootdir}/move-if-change tmp-ibld.c ${srcdir}/${prefix}-ibld.c
129 sed -e "/ -- assembler routines/ r tmp-asm.in1" ${srcdir}/cgen-asm.
in \
130 |
sed -e "s/@ARCH@/${ARCH}/g" -e "s/@arch@/${arch}/g" \
131 -e "s/@prefix@/${prefix}/" > tmp-asm.c
132 ${rootdir}/move-if-change tmp-asm.c ${srcdir}/${prefix}-asm.c
134 sed -e "/ -- disassembler routines/ r tmp-dis.in1" ${srcdir}/cgen-dis.
in \
135 |
sed -e "s/@ARCH@/${ARCH}/g" -e "s/@arch@/${arch}/g" \
136 -e "s/@prefix@/${prefix}/" > tmp-dis.c
137 ${rootdir}/move-if-change tmp-dis.c ${srcdir}/${prefix}-dis.c
139 # Remove temporary files.
140 rm -f tmp-desc.h1 tmp-desc.c1
141 rm -f tmp-opc.h1 tmp-opc.c1
143 rm -f tmp-ibld.h1 tmp-ibld.in1
144 rm -f tmp-asm.in1 tmp-dis.in1
148 echo "$0: bad action: ${action}" >&2