OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-old/] [gdb-7.1/] [sim/] [common/] [cgen.sh] - Diff between revs 834 and 842

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 834 Rev 842
#! /bin/sh
#! /bin/sh
# Generate CGEN simulator files.
# Generate CGEN simulator files.
#
#
# Usage: /bin/sh cgen.sh {"arch"|"cpu"|"decode"|"defs"|"cpu-decode"} \
# Usage: /bin/sh cgen.sh {"arch"|"cpu"|"decode"|"defs"|"cpu-decode"} \
#       srcdir cgen cgendir cgenflags \
#       srcdir cgen cgendir cgenflags \
#       arch archflags cpu mach suffix archfile extrafiles opcfile
#       arch archflags cpu mach suffix archfile extrafiles opcfile
#
#
# We store the generated files in the source directory until we decide to
# We store the generated files in the source directory until we decide to
# ship a Scheme interpreter (or other implementation) with gdb/binutils.
# ship a Scheme interpreter (or other implementation) with gdb/binutils.
# Maybe we never will.
# Maybe we never will.
 
 
# We want to behave like make, any error forces us to stop.
# We want to behave like make, any error forces us to stop.
set -e
set -e
 
 
action=$1
action=$1
srcdir=$2
srcdir=$2
cgen="$3"
cgen="$3"
cgendir=$4
cgendir=$4
cgenflags=$5
cgenflags=$5
arch=$6
arch=$6
archflags=$7
archflags=$7
cpu=$8
cpu=$8
isa=$9
isa=$9
# portably bring parameters beyond $9 into view
# portably bring parameters beyond $9 into view
shift ; mach=$9
shift ; mach=$9
shift ; suffix=$9
shift ; suffix=$9
shift ; archfile=$9
shift ; archfile=$9
shift ; extrafiles=$9
shift ; extrafiles=$9
shift ; opcfile=$9
shift ; opcfile=$9
 
 
rootdir=${srcdir}/../..
rootdir=${srcdir}/../..
 
 
test -z "${opcfile}" && opcfile=/dev/null
test -z "${opcfile}" && opcfile=/dev/null
 
 
if test -z "$isa" ; then
if test -z "$isa" ; then
  isa=all
  isa=all
  prefix=$cpu
  prefix=$cpu
else
else
  prefix=${cpu}_$isa
  prefix=${cpu}_$isa
fi
fi
 
 
lowercase='abcdefghijklmnopqrstuvwxyz'
lowercase='abcdefghijklmnopqrstuvwxyz'
uppercase='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
uppercase='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
ARCH=`echo ${arch} | tr "${lowercase}" "${uppercase}"`
ARCH=`echo ${arch} | tr "${lowercase}" "${uppercase}"`
CPU=`echo ${cpu} | tr "${lowercase}" "${uppercase}"`
CPU=`echo ${cpu} | tr "${lowercase}" "${uppercase}"`
PREFIX=`echo ${prefix} | tr "${lowercase}" "${uppercase}"`
PREFIX=`echo ${prefix} | tr "${lowercase}" "${uppercase}"`
 
 
sedscript="\
sedscript="\
-e s/@ARCH@/${ARCH}/g -e s/@arch@/${arch}/g \
-e s/@ARCH@/${ARCH}/g -e s/@arch@/${arch}/g \
-e s/@CPU@/${CPU}/g -e s/@cpu@/${cpu}/g \
-e s/@CPU@/${CPU}/g -e s/@cpu@/${cpu}/g \
-e s/@PREFIX@/${PREFIX}/g -e s/@prefix@/${prefix}/g"
-e s/@PREFIX@/${PREFIX}/g -e s/@prefix@/${prefix}/g"
 
 
# avoid collisions in parallel makes
# avoid collisions in parallel makes
tmp=tmp-$$
tmp=tmp-$$
 
 
case $action in
case $action in
arch)
arch)
        rm -f ${tmp}-arch.h1 ${tmp}-arch.h
        rm -f ${tmp}-arch.h1 ${tmp}-arch.h
        rm -f ${tmp}-arch.c1 ${tmp}-arch.c
        rm -f ${tmp}-arch.c1 ${tmp}-arch.c
        rm -f ${tmp}-all.h1 ${tmp}-all.h
        rm -f ${tmp}-all.h1 ${tmp}-all.h
 
 
        ${cgen} ${cgendir}/cgen-sim.scm \
        ${cgen} ${cgendir}/cgen-sim.scm \
                -s ${cgendir} \
                -s ${cgendir} \
                ${cgenflags} \
                ${cgenflags} \
                -f "${archflags}" \
                -f "${archflags}" \
                -m ${mach} \
                -m ${mach} \
                -a ${archfile} \
                -a ${archfile} \
                -i ${isa} \
                -i ${isa} \
                -A ${tmp}-arch.h1 \
                -A ${tmp}-arch.h1 \
                -B ${tmp}-arch.c1 \
                -B ${tmp}-arch.c1 \
                -N ${tmp}-all.h1
                -N ${tmp}-all.h1
        sed $sedscript < ${tmp}-arch.h1 > ${tmp}-arch.h
        sed $sedscript < ${tmp}-arch.h1 > ${tmp}-arch.h
        ${rootdir}/move-if-change ${tmp}-arch.h ${srcdir}/arch.h
        ${rootdir}/move-if-change ${tmp}-arch.h ${srcdir}/arch.h
        sed $sedscript < ${tmp}-arch.c1 > ${tmp}-arch.c
        sed $sedscript < ${tmp}-arch.c1 > ${tmp}-arch.c
        ${rootdir}/move-if-change ${tmp}-arch.c ${srcdir}/arch.c
        ${rootdir}/move-if-change ${tmp}-arch.c ${srcdir}/arch.c
        sed $sedscript < ${tmp}-all.h1 > ${tmp}-all.h
        sed $sedscript < ${tmp}-all.h1 > ${tmp}-all.h
        ${rootdir}/move-if-change ${tmp}-all.h ${srcdir}/cpuall.h
        ${rootdir}/move-if-change ${tmp}-all.h ${srcdir}/cpuall.h
 
 
        rm -f ${tmp}-arch.h1 ${tmp}-arch.c1 ${tmp}-all.h1
        rm -f ${tmp}-arch.h1 ${tmp}-arch.c1 ${tmp}-all.h1
        ;;
        ;;
 
 
cpu | decode | cpu-decode)
cpu | decode | cpu-decode)
 
 
        fileopts=""
        fileopts=""
 
 
        case $action in
        case $action in
        *cpu*)
        *cpu*)
                rm -f ${tmp}-cpu.h1 ${tmp}-cpu.c1
                rm -f ${tmp}-cpu.h1 ${tmp}-cpu.c1
                rm -f ${tmp}-ext.c1 ${tmp}-read.c1 ${tmp}-write.c1
                rm -f ${tmp}-ext.c1 ${tmp}-read.c1 ${tmp}-write.c1
                rm -f ${tmp}-sem.c1 ${tmp}-semsw.c1
                rm -f ${tmp}-sem.c1 ${tmp}-semsw.c1
                rm -f ${tmp}-mod.c1
                rm -f ${tmp}-mod.c1
                rm -f ${tmp}-cpu.h ${tmp}-cpu.c
                rm -f ${tmp}-cpu.h ${tmp}-cpu.c
                rm -f ${tmp}-ext.c ${tmp}-read.c ${tmp}-write.c
                rm -f ${tmp}-ext.c ${tmp}-read.c ${tmp}-write.c
                rm -f ${tmp}-sem.c ${tmp}-semsw.c ${tmp}-mod.c
                rm -f ${tmp}-sem.c ${tmp}-semsw.c ${tmp}-mod.c
                fileopts="$fileopts \
                fileopts="$fileopts \
                        -C ${tmp}-cpu.h1 \
                        -C ${tmp}-cpu.h1 \
                        -U ${tmp}-cpu.c1 \
                        -U ${tmp}-cpu.c1 \
                        -M ${tmp}-mod.c1"
                        -M ${tmp}-mod.c1"
                ;;
                ;;
        esac
        esac
 
 
        case $action in
        case $action in
        *decode*)
        *decode*)
                rm -f ${tmp}-dec.h1 ${tmp}-dec.h ${tmp}-dec.c1 ${tmp}-dec.c
                rm -f ${tmp}-dec.h1 ${tmp}-dec.h ${tmp}-dec.c1 ${tmp}-dec.c
                fileopts="$fileopts \
                fileopts="$fileopts \
                        -T ${tmp}-dec.h1 \
                        -T ${tmp}-dec.h1 \
                        -D ${tmp}-dec.c1"
                        -D ${tmp}-dec.c1"
                ;;
                ;;
        esac
        esac
 
 
        case "$extrafiles" in
        case "$extrafiles" in
        */extr/*) fileopts="${fileopts} -E ${tmp}-ext.c1" ;;
        */extr/*) fileopts="${fileopts} -E ${tmp}-ext.c1" ;;
        esac
        esac
        case "$extrafiles" in
        case "$extrafiles" in
        */read/*) fileopts="${fileopts} -R ${tmp}-read.c1" ;;
        */read/*) fileopts="${fileopts} -R ${tmp}-read.c1" ;;
        esac
        esac
        case "$extrafiles" in
        case "$extrafiles" in
        */write/*) fileopts="${fileopts} -W ${tmp}-write.c1" ;;
        */write/*) fileopts="${fileopts} -W ${tmp}-write.c1" ;;
        esac
        esac
        case "$extrafiles" in
        case "$extrafiles" in
        */sem/*) fileopts="${fileopts} -S ${tmp}-sem.c1" ;;
        */sem/*) fileopts="${fileopts} -S ${tmp}-sem.c1" ;;
        esac
        esac
        case "$extrafiles" in
        case "$extrafiles" in
        */semsw/*) fileopts="${fileopts} -X ${tmp}-semsw.c1" ;;
        */semsw/*) fileopts="${fileopts} -X ${tmp}-semsw.c1" ;;
        esac
        esac
 
 
        ${cgen} ${cgendir}/cgen-sim.scm \
        ${cgen} ${cgendir}/cgen-sim.scm \
                -s ${cgendir} \
                -s ${cgendir} \
                ${cgenflags} \
                ${cgenflags} \
                -f "${archflags}" \
                -f "${archflags}" \
                -m ${mach} \
                -m ${mach} \
                -a ${archfile} \
                -a ${archfile} \
                -i ${isa} \
                -i ${isa} \
                ${fileopts}
                ${fileopts}
 
 
        case $action in
        case $action in
        *cpu*)
        *cpu*)
                sed $sedscript < ${tmp}-cpu.h1 > ${tmp}-cpu.h
                sed $sedscript < ${tmp}-cpu.h1 > ${tmp}-cpu.h
                ${rootdir}/move-if-change ${tmp}-cpu.h ${srcdir}/cpu${suffix}.h
                ${rootdir}/move-if-change ${tmp}-cpu.h ${srcdir}/cpu${suffix}.h
                sed $sedscript < ${tmp}-cpu.c1 > ${tmp}-cpu.c
                sed $sedscript < ${tmp}-cpu.c1 > ${tmp}-cpu.c
                ${rootdir}/move-if-change ${tmp}-cpu.c ${srcdir}/cpu${suffix}.c
                ${rootdir}/move-if-change ${tmp}-cpu.c ${srcdir}/cpu${suffix}.c
                sed $sedscript < ${tmp}-mod.c1 > ${tmp}-mod.c
                sed $sedscript < ${tmp}-mod.c1 > ${tmp}-mod.c
                ${rootdir}/move-if-change ${tmp}-mod.c ${srcdir}/model${suffix}.c
                ${rootdir}/move-if-change ${tmp}-mod.c ${srcdir}/model${suffix}.c
                rm -f ${tmp}-cpu.h1 ${tmp}-cpu.c1 ${tmp}-mod.c1
                rm -f ${tmp}-cpu.h1 ${tmp}-cpu.c1 ${tmp}-mod.c1
                ;;
                ;;
        esac
        esac
 
 
        case $action in
        case $action in
        *decode*)
        *decode*)
                sed $sedscript < ${tmp}-dec.h1 > ${tmp}-dec.h
                sed $sedscript < ${tmp}-dec.h1 > ${tmp}-dec.h
                ${rootdir}/move-if-change ${tmp}-dec.h ${srcdir}/decode${suffix}.h
                ${rootdir}/move-if-change ${tmp}-dec.h ${srcdir}/decode${suffix}.h
                sed $sedscript < ${tmp}-dec.c1 > ${tmp}-dec.c
                sed $sedscript < ${tmp}-dec.c1 > ${tmp}-dec.c
                ${rootdir}/move-if-change ${tmp}-dec.c ${srcdir}/decode${suffix}.c
                ${rootdir}/move-if-change ${tmp}-dec.c ${srcdir}/decode${suffix}.c
                rm -f ${tmp}-dec.h1 ${tmp}-dec.c1
                rm -f ${tmp}-dec.h1 ${tmp}-dec.c1
                ;;
                ;;
        esac
        esac
 
 
        if test -f ${tmp}-ext.c1 ; then \
        if test -f ${tmp}-ext.c1 ; then \
                sed $sedscript < ${tmp}-ext.c1 > ${tmp}-ext.c ; \
                sed $sedscript < ${tmp}-ext.c1 > ${tmp}-ext.c ; \
                ${rootdir}/move-if-change ${tmp}-ext.c ${srcdir}/extract${suffix}.c ; \
                ${rootdir}/move-if-change ${tmp}-ext.c ${srcdir}/extract${suffix}.c ; \
                rm -f ${tmp}-ext.c1
                rm -f ${tmp}-ext.c1
        fi
        fi
        if test -f ${tmp}-read.c1 ; then \
        if test -f ${tmp}-read.c1 ; then \
                sed $sedscript < ${tmp}-read.c1 > ${tmp}-read.c ; \
                sed $sedscript < ${tmp}-read.c1 > ${tmp}-read.c ; \
                ${rootdir}/move-if-change ${tmp}-read.c ${srcdir}/read${suffix}.c ; \
                ${rootdir}/move-if-change ${tmp}-read.c ${srcdir}/read${suffix}.c ; \
                rm -f ${tmp}-read.c1
                rm -f ${tmp}-read.c1
        fi
        fi
        if test -f ${tmp}-write.c1 ; then \
        if test -f ${tmp}-write.c1 ; then \
                sed $sedscript < ${tmp}-write.c1 > ${tmp}-write.c ; \
                sed $sedscript < ${tmp}-write.c1 > ${tmp}-write.c ; \
                ${rootdir}/move-if-change ${tmp}-write.c ${srcdir}/write${suffix}.c ; \
                ${rootdir}/move-if-change ${tmp}-write.c ${srcdir}/write${suffix}.c ; \
                rm -f ${tmp}-write.c1
                rm -f ${tmp}-write.c1
        fi
        fi
        if test -f ${tmp}-sem.c1 ; then \
        if test -f ${tmp}-sem.c1 ; then \
                sed $sedscript < ${tmp}-sem.c1 > ${tmp}-sem.c ; \
                sed $sedscript < ${tmp}-sem.c1 > ${tmp}-sem.c ; \
                ${rootdir}/move-if-change ${tmp}-sem.c ${srcdir}/sem${suffix}.c ; \
                ${rootdir}/move-if-change ${tmp}-sem.c ${srcdir}/sem${suffix}.c ; \
                rm -f ${tmp}-sem.c1
                rm -f ${tmp}-sem.c1
        fi
        fi
        if test -f ${tmp}-semsw.c1 ; then \
        if test -f ${tmp}-semsw.c1 ; then \
                sed $sedscript < ${tmp}-semsw.c1 > ${tmp}-semsw.c ; \
                sed $sedscript < ${tmp}-semsw.c1 > ${tmp}-semsw.c ; \
                ${rootdir}/move-if-change ${tmp}-semsw.c ${srcdir}/sem${suffix}-switch.c ; \
                ${rootdir}/move-if-change ${tmp}-semsw.c ${srcdir}/sem${suffix}-switch.c ; \
                rm -f ${tmp}-semsw.c1
                rm -f ${tmp}-semsw.c1
        fi
        fi
 
 
        ;;
        ;;
 
 
defs)
defs)
        rm -f ${tmp}-defs.h1 ${tmp}-defs.h
        rm -f ${tmp}-defs.h1 ${tmp}-defs.h
 
 
        ${cgen} ${cgendir}/cgen-sim.scm \
        ${cgen} ${cgendir}/cgen-sim.scm \
                -s ${cgendir} \
                -s ${cgendir} \
                ${cgenflags} \
                ${cgenflags} \
                -f "${archflags}" \
                -f "${archflags}" \
                -m ${mach} \
                -m ${mach} \
                -a ${archfile} \
                -a ${archfile} \
                -i ${isa} \
                -i ${isa} \
                -G ${tmp}-defs.h1
                -G ${tmp}-defs.h1
        sed $sedscript < ${tmp}-defs.h1 > ${tmp}-defs.h
        sed $sedscript < ${tmp}-defs.h1 > ${tmp}-defs.h
        ${rootdir}/move-if-change ${tmp}-defs.h ${srcdir}/defs${suffix}.h
        ${rootdir}/move-if-change ${tmp}-defs.h ${srcdir}/defs${suffix}.h
        rm -f ${tmp}-defs.h1
        rm -f ${tmp}-defs.h1
        ;;
        ;;
 
 
desc)
desc)
        rm -f ${tmp}-desc.h1 ${tmp}-desc.h
        rm -f ${tmp}-desc.h1 ${tmp}-desc.h
        rm -f ${tmp}-desc.c1 ${tmp}-desc.c
        rm -f ${tmp}-desc.c1 ${tmp}-desc.c
        rm -f ${tmp}-opc.h1 ${tmp}-opc.h
        rm -f ${tmp}-opc.h1 ${tmp}-opc.h
 
 
        ${cgen} ${cgendir}/cgen-opc.scm \
        ${cgen} ${cgendir}/cgen-opc.scm \
                -s ${cgendir} \
                -s ${cgendir} \
                ${cgenflags} \
                ${cgenflags} \
                -OPC ${opcfile} \
                -OPC ${opcfile} \
                -f "${archflags}" \
                -f "${archflags}" \
                -m ${mach} \
                -m ${mach} \
                -a ${archfile} \
                -a ${archfile} \
                -i ${isa} \
                -i ${isa} \
                -H ${tmp}-desc.h1 \
                -H ${tmp}-desc.h1 \
                -C ${tmp}-desc.c1 \
                -C ${tmp}-desc.c1 \
                -O ${tmp}-opc.h1
                -O ${tmp}-opc.h1
        sed $sedscript < ${tmp}-desc.h1 > ${tmp}-desc.h
        sed $sedscript < ${tmp}-desc.h1 > ${tmp}-desc.h
        ${rootdir}/move-if-change ${tmp}-desc.h ${srcdir}/${arch}-desc.h
        ${rootdir}/move-if-change ${tmp}-desc.h ${srcdir}/${arch}-desc.h
        sed $sedscript < ${tmp}-desc.c1 > ${tmp}-desc.c
        sed $sedscript < ${tmp}-desc.c1 > ${tmp}-desc.c
        ${rootdir}/move-if-change ${tmp}-desc.c ${srcdir}/${arch}-desc.c
        ${rootdir}/move-if-change ${tmp}-desc.c ${srcdir}/${arch}-desc.c
        sed $sedscript < ${tmp}-opc.h1 > ${tmp}-opc.h
        sed $sedscript < ${tmp}-opc.h1 > ${tmp}-opc.h
        ${rootdir}/move-if-change ${tmp}-opc.h ${srcdir}/${arch}-opc.h
        ${rootdir}/move-if-change ${tmp}-opc.h ${srcdir}/${arch}-opc.h
 
 
        rm -f ${tmp}-desc.h1 ${tmp}-desc.c1 ${tmp}-opc.h1
        rm -f ${tmp}-desc.h1 ${tmp}-desc.c1 ${tmp}-opc.h1
        ;;
        ;;
 
 
*)
*)
        echo "`basename $0`: unknown action: ${action}" >&2
        echo "`basename $0`: unknown action: ${action}" >&2
        exit 1
        exit 1
        ;;
        ;;
 
 
esac
esac
 
 
exit 0
exit 0
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.