369fba3089
* arch-defs.h: Deleted. * mloop.in: Renamed from mainloop.in. * sem.c: Renamed from semantics.c. * Makefile.in: Update. * sem-ops.h: Deleted. * mem-ops.h: Deleted. start-sanitize-cygnus Add cgen support for generating files. end-sanitize-cygnus (arch): Renamed from CPU. * decode.c: Redone. * decode.h: Redone. * extract.c: Redone. * model.c: Redone. * sem-switch.c: Redone. * sem.c: Renamed from semantics.c, and redone. * m32r-sim.h (PROFILE_COUNT_FILLNOPS): Update. (GETTWI,SETTWI,BRANCH_NEW_PC): Define. * m32r.c (WANT_CPU,WANT_CPU_M32R): Define. (m32r_{fetch,store}_register): New functions. (model_mark_{get,set}_h_gr): Prefix with m32r_. (m32r_model_mark_{busy,unbusy}_reg): Prefix with m32r_. (h_cr_{get,set}): Prefix with m32r_. (do_trap): Fetch state from current_cpu, not current_state. Call sim_engine_halt instead of engine_halt. * sim-if.c (alloc_cpu): New function. (free_state): New function. (sim_open): Call sim_state_alloc, and malloc space for selected cpu type. Call sim_analyze_program. (sim_create_inferior): Handle selected cpu type when setting PC. start-sanitize-m32rx (sim_resume): Handle m32rx. end-sanitize-m32rx (sim_stop_reason): Deleted. (print_m32r_misc_cpu): Update. start-sanitize-m32rx (sim_{fetch,store}_register): Handle m32rx. end-sanitize-m32rx (sim_{read,write}): Deleted. (sim_engine_illegal_insn): New function. * sim-main.h: Don't include arch-defs.h,sim-core.h,sim-events.h. Include arch.h,cpuall.h. Include cpu.h,decode.h if m32r. start-sanitize-m32rx Include cpux.h,decodex.h if m32rx. end-sanitize-m32rx (_sim_cpu): Include member appropriate cpu_data member for the cpu. (M32R_MISC_PROFILE): Renamed from M32R_PROFILE. (sim_state): Delete members core,events,halt_jmp_buf. Change `cpu' member to be a pointer to the cpu's struct, rather than record inside the state struct. * tconfig.in (WITH_DEVICES): Define here. (WITH_FAST,WITH_SEM_SWITCH_{FULL,FAST}): Define for the cpu.
153 lines
5.4 KiB
Makefile
153 lines
5.4 KiB
Makefile
# Makefile template for Configure for the m32r simulator
|
|
# Copyright (C) 1996, 1997, 1998 Free Software Foundation, Inc.
|
|
# Contributed by Cygnus Support.
|
|
#
|
|
# This file is part of GDB, the GNU debugger.
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License along
|
|
# with this program; if not, write to the Free Software Foundation, Inc.,
|
|
# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
## COMMON_PRE_CONFIG_FRAG
|
|
|
|
M32R_OBJS = m32r.o decode.o extract.o sem.o model.o mloop.o
|
|
# start-sanitize-m32rx
|
|
M32RX_OBJS = m32rx.o decodex.o modelx.o mloopx.o
|
|
# end-sanitize-m32rx
|
|
|
|
SIM_OBJS = \
|
|
$(SIM_NEW_COMMON_OBJS) \
|
|
sim-hload.o sim-hrw.o sim-engine.o sim-model.o sim-reason.o \
|
|
cgen-utils.o cgen-trace.o cgen-scache.o \
|
|
sim-if.o arch.o \
|
|
$(M32R_OBJS)
|
|
|
|
# Extra headers included by sim-main.h.
|
|
SIM_EXTRA_DEPS = \
|
|
$(srcdir)/../common/cgen-types.h \
|
|
$(srcdir)/../common/cgen-sim.h \
|
|
$(srcdir)/../common/cgen-trace.h \
|
|
arch.h cpuall.h m32r-sim.h
|
|
|
|
SIM_EXTRA_CFLAGS =
|
|
|
|
SIM_RUN_OBJS = nrun.o
|
|
SIM_EXTRA_CLEAN = m32r-clean
|
|
|
|
## COMMON_POST_CONFIG_FRAG
|
|
|
|
arch = m32r
|
|
|
|
MAIN_INCLUDE_DEPS = \
|
|
sim-main.h \
|
|
$(srcdir)/../common/sim-config.h \
|
|
$(srcdir)/../common/sim-base.h \
|
|
$(srcdir)/../common/sim-basics.h \
|
|
$(srcdir)/../common/sim-module.h \
|
|
$(srcdir)/../common/sim-trace.h \
|
|
$(srcdir)/../common/sim-profile.h \
|
|
tconfig.h
|
|
INCLUDE_DEPS = $(MAIN_INCLUDE_DEPS) $(SIM_EXTRA_DEPS) cpu-sim.h
|
|
OPS_INCLUDE_DEPS = \
|
|
$(srcdir)/../common/cgen-mem.h \
|
|
$(srcdir)/../common/cgen-ops.h
|
|
|
|
sim-if.o: sim-if.c $(INCLUDE_DEPS) $(srcdir)/../common/sim-core.h
|
|
m32r.o: m32r.c $(INCLUDE_DEPS) $(OPS_INCLUDE_DEPS)
|
|
|
|
arch.o: arch.c $(INCLUDE_DEPS) cpu-opc.h
|
|
|
|
# M32R objs
|
|
|
|
# FIXME: Use of `mono' is wip.
|
|
mloop.c: $(srcdir)/../common/genmloop.sh mloop.in Makefile
|
|
rm -f mloop.c
|
|
$(SHELL) $(srcdir)/../common/genmloop.sh $(SHELL) -mono -scache -fast m32r $(srcdir)/mloop.in | sed -e 's/@cpu@/m32r/' -e 's/@CPU@/M32R/' >mloop.c
|
|
mloop.o: mloop.c sem-switch.c $(INCLUDE_DEPS) $(OPS_INCLUDE_DEPS) cpu.h
|
|
|
|
decode.o: decode.c decode.h $(INCLUDE_DEPS) $(OPS_INCLUDE_DEPS) cpu-opc.h cpu.h
|
|
extract.o: extract.c decode.h $(INCLUDE_DEPS) $(OPS_INCLUDE_DEPS) cpu.h
|
|
sem.o: sem.c decode.h $(INCLUDE_DEPS) $(OPS_INCLUDE_DEPS) cpu.h
|
|
model.o: model.c $(INCLUDE_DEPS) cpu-opc.h cpu.h
|
|
|
|
# wip
|
|
#extr-cache.o: extract.c $(INCLUDE_DEPS) $(OPS_INCLUDE_DEPS)
|
|
# $(CC) -c $(srcdir)/extract.c -o extr-cache.o -DSCACHE_P $(ALL_CFLAGS)
|
|
sem-cache.o: sem.c decode.h $(INCLUDE_DEPS) $(OPS_INCLUDE_DEPS) cpu.h
|
|
$(CC) -c $(srcdir)/sem.c -o sem-cache.o -DSCACHE_P $(ALL_CFLAGS)
|
|
|
|
# start-sanitize-m32rx
|
|
# M32RX objs
|
|
|
|
# FIXME: Use of `mono' is wip.
|
|
mloopx.c: $(srcdir)/../common/genmloop.sh mloopx.in Makefile
|
|
rm -f mloopx.c
|
|
$(SHELL) $(srcdir)/../common/genmloop.sh $(SHELL) -mono -no-scache -no-fast -parallel m32r $(srcdir)/mloopx.in | sed -e 's/@cpu@/m32rx/' -e 's/@CPU@/M32RX/' >mloopx.c
|
|
mloopx.o: mloopx.c readx.c semx-switch.c $(INCLUDE_DEPS) $(OPS_INCLUDE_DEPS) cpux.h
|
|
|
|
decodex.o: decodex.c decodex.h $(INCLUDE_DEPS) $(OPS_INCLUDE_DEPS) cpu-opc.h cpux.h
|
|
extractx.o: extractx.c decodex.h $(INCLUDE_DEPS) $(OPS_INCLUDE_DEPS) cpux.h
|
|
semx.o: semx.c decodex.h $(INCLUDE_DEPS) $(OPS_INCLUDE_DEPS) cpux.h
|
|
modelx.o: modelx.c $(INCLUDE_DEPS) cpu-opc.h cpux.h
|
|
|
|
# wip
|
|
#extr-cache.o: extract.c $(INCLUDE_DEPS) $(OPS_INCLUDE_DEPS)
|
|
# $(CC) -c $(srcdir)/extract.c -o extr-cache.o -DSCACHE_P $(ALL_CFLAGS)
|
|
semx-cache.o: semx.c decode.h $(INCLUDE_DEPS) $(OPS_INCLUDE_DEPS) cpux.h
|
|
$(CC) -c $(srcdir)/semx.c -o semx-cache.o -DSCACHE_P $(ALL_CFLAGS)
|
|
# end-sanitize-m32rx
|
|
|
|
m32r-clean:
|
|
rm -f mloop.c stamp-arch stamp-cpu stamp-decode
|
|
# start-sanitize-m32rx
|
|
rm -f mloopx.c stamp-xcpu stamp-xdecode
|
|
# end-sanitize-m32rx
|
|
rm -f tmp-*
|
|
|
|
# start-sanitize-cygnus
|
|
# cgen support
|
|
# For now, require developers to configure with --enable-maintainer-mode.
|
|
# ??? Do we need to use a different option?
|
|
|
|
stamp-arch: $(CGEN_MAIN_SCM) $(srccgen)/m32r.cpu
|
|
$(MAKE) cgen-arch
|
|
touch stamp-arch
|
|
arch.h arch.c cpuall.h: @MAINT@ stamp-arch
|
|
@true
|
|
|
|
stamp-cpu: $(CGEN_MAIN_SCM) $(CGEN_CPU_SCM) $(srccgen)/m32r.cpu
|
|
$(MAKE) cgen-cpu cpu=m32r mach=m32r SUFFIX= FLAGS="with-scache,with-profile fn" EXTRAFILES="$(CGEN_CPU_EXTR) $(CGEN_CPU_SEM) $(CGEN_CPU_SEMSW)"
|
|
touch stamp-cpu
|
|
cpu.h extract.c sem.c sem-switch.c model.c: @MAINT@ stamp-cpu
|
|
@true
|
|
|
|
stamp-decode: $(CGEN_MAIN_SCM) $(CGEN_DECODE_SCM) $(srccgen)/m32r.cpu
|
|
$(MAKE) cgen-decode cpu=m32r mach=m32r SUFFIX= FLAGS="with-scache,with-profile fn"
|
|
touch stamp-decode
|
|
decode.h decode.c: @MAINT@ stamp-decode
|
|
@true
|
|
# start-sanitize-cygnus
|
|
|
|
# start-sanitize-m32rx
|
|
stamp-xcpu: $(CGEN_MAIN_SCM) $(CGEN_CPU_SCM) $(srccgen)/m32r.cpu
|
|
$(MAKE) cgen-cpu cpu=m32rx mach=m32rx SUFFIX=x FLAGS="" EXTRAFILES="$(CGEN_CPU_READ) $(CGEN_CPU_SEMSW)"
|
|
touch stamp-xcpu
|
|
cpux.h readx.c semx-switch.c modelx.c: @MAINT@ stamp-xcpu
|
|
@true
|
|
|
|
stamp-xdecode: $(CGEN_MAIN_SCM) $(CGEN_DECODE_SCM) $(srccgen)/m32r.cpu
|
|
$(MAKE) cgen-decode cpu=m32rx mach=m32rx SUFFIX=x
|
|
touch stamp-xdecode
|
|
decodex.h decodex.c: @MAINT@ stamp-xdecode
|
|
@true
|
|
# end-sanitize-m32rx
|