2 # CGEN generic assembler support code.
4 # Copyright (C) 2000-2024 Free Software Foundation, Inc.
6 # This file is part of the GNU opcodes library.
8 # This library 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 3, or (at your option)
13 # It is distributed in the hope that it will be useful, but WITHOUT
14 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
15 # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
16 # 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 # 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, 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 \
27 # arch-file opc-file options [extrafiles]
29 # ACTION is currently always "opcodes". It exists to be consistent with the
31 # ARCH is the name of the architecture.
32 # It is substituted into @arch@ and @ARCH@ in the generated files.
33 # PREFIX is both the generated file prefix and is substituted into
34 # @prefix@ in the generated files.
35 # ARCH-FILE is the name of the .cpu file (including path).
36 # OPC-FILE is the name of the .opc file (including path).
37 # OPTIONS is comma separated list of options (???).
38 # EXTRAFILES is a space separated list (1 arg still) of extra files to build:
39 # - opinst - arch-opinst.c is being made, causes semantic analysis
41 # We store the generated files in the source directory until we decide to
42 # ship a Scheme interpreter (or other implementation) with gdb/binutils.
43 # Maybe we never will.
45 # We want to behave like make, any error forces us to stop.
59 # List of extra files to build.
60 # Values: opinst (only 1 extra file at present)
65 # $arch is $6, as passed on the command line.
66 # $ARCH is the same argument but in all uppercase.
67 # Both forms are used in this script.
69 lowercase
='abcdefghijklmnopqrstuvwxyz'
70 uppercase
='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
71 ARCH
=`echo ${arch} | tr "${lowercase}" "${uppercase}"`
73 # Allow parallel makes to run multiple cgen's without colliding.
77 for ef
in ..
$extrafiles
81 opinst
) extrafile_args
="-Q ${tmp}-opinst.c1 $extrafile_args" ;;
85 header
="/* DO NOT EDIT! -*- buffer-read-only: t -*- vi:set ro: */"
89 # Remove residual working files.
90 rm -f ${tmp}-desc.h
${tmp}-desc.h1
91 rm -f ${tmp}-desc.c
${tmp}-desc.c1
92 rm -f ${tmp}-opc.h
${tmp}-opc.h1
93 rm -f ${tmp}-opc.c
${tmp}-opc.c1
94 rm -f ${tmp}-opinst.c
${tmp}-opinst.c1
95 rm -f ${tmp}-ibld.h
${tmp}-ibld.h1
96 rm -f ${tmp}-ibld.c
${tmp}-ibld.in1
97 rm -f ${tmp}-asm.c
${tmp}-asm.in1
98 rm -f ${tmp}-dis.c
${tmp}-dis.in1
101 ${cgen} ${cgendir}/cgen-opc.scm \
116 # Customise generated files for the particular architecture.
118 -e "s/@ARCH@/${ARCH}/g" -e "s/@arch@/${arch}/g" \
119 -e 's/[ ][ ]*$//' < ${tmp}-desc.h1
> ${tmp}-desc.h
120 ${rootdir}/move-if-change ${tmp}-desc.h ${srcdir}/${prefix}-desc.h
123 -e "s/@ARCH@/${ARCH}/g" -e "s/@arch@/${arch}/g" \
124 -e "s/@prefix@/${prefix}/" -e 's/[ ][ ]*$//' \
125 < ${tmp}-desc.c1
> ${tmp}-desc.c
126 ${rootdir}/move-if-change ${tmp}-desc.c ${srcdir}/${prefix}-desc.c
129 -e "s/@ARCH@/${ARCH}/g" -e "s/@arch@/${arch}/g" \
130 -e 's/[ ][ ]*$//' < ${tmp}-opc.h1
> ${tmp}-opc.h
131 ${rootdir}/move-if-change ${tmp}-opc.h ${srcdir}/${prefix}-opc.h
134 -e "s/@ARCH@/${ARCH}/g" -e "s/@arch@/${arch}/g" \
135 -e "s/@prefix@/${prefix}/" -e 's/[ ][ ]*$//' \
136 < ${tmp}-opc.c1
> ${tmp}-opc.c
137 ${rootdir}/move-if-change ${tmp}-opc.c ${srcdir}/${prefix}-opc.c
142 -e "s/@ARCH@/${ARCH}/g" -e "s/@arch@/${arch}/g" \
143 -e "s/@prefix@/${prefix}/" -e 's/[ ][ ]*$//' \
144 < ${tmp}-opinst.c1
>${tmp}-opinst.c
145 ${rootdir}/move-if-change ${tmp}-opinst.c ${srcdir}/${prefix}-opinst.c
149 cat ${srcdir}/cgen-ibld.
in ${tmp}-ibld.in1 | \
151 -e "s/@ARCH@/${ARCH}/g" -e "s/@arch@/${arch}/g" \
152 -e "s/@prefix@/${prefix}/" -e 's/[ ][ ]*$//' > ${tmp}-ibld.c
153 ${rootdir}/move-if-change ${tmp}-ibld.c ${srcdir}/${prefix}-ibld.c
155 sed -e "/ -- assembler routines/ r ${tmp}-asm.in1" ${srcdir}/cgen-asm.
in \
156 |
sed -e "1i$header" \
157 -e "s/@ARCH@/${ARCH}/g" -e "s/@arch@/${arch}/g" \
158 -e "s/@prefix@/${prefix}/" -e 's/[ ][ ]*$//' \
160 ${rootdir}/move-if-change ${tmp}-asm.c ${srcdir}/${prefix}-asm.c
162 sed -e "/ -- disassembler routines/ r ${tmp}-dis.in1" ${srcdir}/cgen-dis.
in \
163 |
sed -e "1i$header" \
164 -e "s/@ARCH@/${ARCH}/g" -e "s/@arch@/${arch}/g" \
165 -e "s/@prefix@/${prefix}/" -e 's/[ ][ ]*$//' \
167 ${rootdir}/move-if-change ${tmp}-dis.c ${srcdir}/${prefix}-dis.c
169 # Remove temporary files.
170 rm -f ${tmp}-desc.h1
${tmp}-desc.c1
171 rm -f ${tmp}-opc.h1
${tmp}-opc.c1
172 rm -f ${tmp}-opinst.c1
173 rm -f ${tmp}-ibld.h1
${tmp}-ibld.in1
174 rm -f ${tmp}-asm.in1
${tmp}-dis.in1
178 # For ports that only generate the desc module & opc header.
179 rm -f ${tmp}-desc.h1
${tmp}-desc.h
180 rm -f ${tmp}-desc.c1
${tmp}-desc.c
181 rm -f ${tmp}-opc.h1
${tmp}-opc.h
183 ${cgen} ${cgendir}/cgen-opc.scm \
194 sed -e "s/@ARCH@/${ARCH}/g" -e "s/@arch@/${arch}/g" \
195 -e "s/@prefix@/${prefix}/g" -e 's/[ ][ ]*$//' \
196 < ${tmp}-desc.h1
> ${tmp}-desc.h
197 ${rootdir}/move-if-change ${tmp}-desc.h ${srcdir}/${arch}-desc.h
198 sed -e "s/@ARCH@/${ARCH}/g" -e "s/@arch@/${arch}/g" \
199 -e "s/@prefix@/${prefix}/g" -e 's/[ ][ ]*$//' \
200 < ${tmp}-desc.c1
> ${tmp}-desc.c
201 ${rootdir}/move-if-change ${tmp}-desc.c ${srcdir}/${arch}-desc.c
202 sed -e "s/@ARCH@/${ARCH}/g" -e "s/@arch@/${arch}/g" \
203 -e "s/@prefix@/${prefix}/g" -e 's/[ ][ ]*$//' \
204 < ${tmp}-opc.h1
> ${tmp}-opc.h
205 ${rootdir}/move-if-change ${tmp}-opc.h ${srcdir}/${arch}-opc.h
207 rm -f ${tmp}-desc.h1 ${tmp}-desc.c1 ${tmp}-opc.h1
211 echo "$0: bad action: ${action}" >&2