diff options
author | Andrew Cagney <cagney@redhat.com> | 1998-02-28 02:51:06 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 1998-02-28 02:51:06 +0000 |
commit | 0e701ac37b0154048977636afe262f55a9150492 (patch) | |
tree | e84fefe5fad67b84aa35d7556388e8cc6161ed5f /sim/m32r | |
parent | 7c5d88c1bb671d64d01766531d48a1dfca8c8ee1 (diff) | |
download | gdb-0e701ac37b0154048977636afe262f55a9150492.zip gdb-0e701ac37b0154048977636afe262f55a9150492.tar.gz gdb-0e701ac37b0154048977636afe262f55a9150492.tar.bz2 |
Add generic sim-info.c:sim_info() function using module mechanism.
Clean up compile probs in mips/vr5400.
Diffstat (limited to 'sim/m32r')
-rw-r--r-- | sim/m32r/ChangeLog | 6 | ||||
-rw-r--r-- | sim/m32r/Makefile.in | 18 | ||||
-rw-r--r-- | sim/m32r/sim-if.c | 175 |
3 files changed, 181 insertions, 18 deletions
diff --git a/sim/m32r/ChangeLog b/sim/m32r/ChangeLog index 6958fc5..d40632e 100644 --- a/sim/m32r/ChangeLog +++ b/sim/m32r/ChangeLog @@ -1,3 +1,9 @@ +Thu Feb 26 18:38:35 1998 Andrew Cagney <cagney@b1.cygnus.com> + + * sim-if.c (sim_open): Initialize PROFILE_INFO_CPU_CALLBACK. + + * sim-if.c (sim_info): Delete. + start-sanitize-m32rx Fri Feb 27 10:14:29 1998 Doug Evans <devans@canuck.cygnus.com> diff --git a/sim/m32r/Makefile.in b/sim/m32r/Makefile.in index 1ad6bb4..add004b 100644 --- a/sim/m32r/Makefile.in +++ b/sim/m32r/Makefile.in @@ -20,14 +20,18 @@ ## COMMON_PRE_CONFIG_FRAG -M32R_OBJS = m32r.o decode.o extract.o sem.o model.o mloop.o +M32R_OBJS = m32r.o cpu.o decode.o extract.o sem.o model.o mloop.o # start-sanitize-m32rx -M32RX_OBJS = m32rx.o decodex.o semx.o modelx.o mloopx.o +M32RX_OBJS = m32rx.o cpux.o decodex.o semx.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 \ + sim-engine.o \ + sim-hload.o \ + sim-hrw.o \ + sim-model.o \ + sim-reason.o \ cgen-utils.o cgen-trace.o cgen-scache.o \ sim-if.o arch.o \ $(start-sanitize-m32rx) \ @@ -47,6 +51,9 @@ SIM_EXTRA_CFLAGS = SIM_RUN_OBJS = nrun.o SIM_EXTRA_CLEAN = m32r-clean +# This selects the m32r newlib/libgloss syscall definitions. +NL_TARGET = -DNL_TARGET_m32r + ## COMMON_POST_CONFIG_FRAG arch = m32r @@ -81,10 +88,12 @@ mloop.c: $(srcdir)/../common/genmloop.sh mloop.in Makefile | 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 +cpu.o: cpu.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 $(CC) -c $(srcdir)/extract.c $(ALL_CFLAGS) -DSCACHE_P sem.o: sem.c decode.h $(INCLUDE_DEPS) $(OPS_INCLUDE_DEPS) cpu.h + $(CC) -c $(srcdir)/sem.c $(ALL_CFLAGS) -DSCACHE_P model.o: model.c $(INCLUDE_DEPS) cpu-opc.h cpu.h #sem-cache.o: sem.c decode.h $(INCLUDE_DEPS) $(OPS_INCLUDE_DEPS) cpu.h @@ -99,11 +108,12 @@ m32rx.o: m32rx.c $(INCLUDE_DEPS) $(OPS_INCLUDE_DEPS) cpux.h mloopx.c: $(srcdir)/../common/genmloop.sh mloopx.in Makefile rm -f mloopx.c $(SHELL) $(srcdir)/../common/genmloop.sh $(SHELL) \ - -mono -no-scache -no-fast -no-parallel \ + -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 $(INCLUDE_DEPS) $(OPS_INCLUDE_DEPS) cpux.h +cpux.o: cpux.c $(INCLUDE_DEPS) $(OPS_INCLUDE_DEPS) cpux.h decodex.o: decodex.c decodex.h $(INCLUDE_DEPS) $(OPS_INCLUDE_DEPS) cpu-opc.h 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 diff --git a/sim/m32r/sim-if.c b/sim/m32r/sim-if.c index cb11a27..2335f39 100644 --- a/sim/m32r/sim-if.c +++ b/sim/m32r/sim-if.c @@ -24,9 +24,11 @@ with this program; if not, write to the Free Software Foundation, Inc., #include "libiberty.h" #include "bfd.h" #include "sim-core.h" +#include "targ-vals.h" static SIM_RC alloc_cpu (SIM_DESC, struct _bfd *, char **); static void free_state (SIM_DESC); +static void print_m32r_misc_cpu (SIM_CPU *cpu, int verbose); /* Records simulator descriptor so utilities like m32r_dump_regs can be called from gdb. */ @@ -155,10 +157,15 @@ sim_open (kind, callback, abfd, argv) { int i; - /* Only needed for profiling, but the structure member is small. */ for (i = 0; i < MAX_NR_PROCESSORS; ++i) - memset (& CPU_M32R_MISC_PROFILE (STATE_CPU (sd, i)), 0, - sizeof (CPU_M32R_MISC_PROFILE (STATE_CPU (sd, i)))); + { + /* Only needed for profiling, but the structure member is small. */ + memset (& CPU_M32R_MISC_PROFILE (STATE_CPU (sd, i)), 0, + sizeof (CPU_M32R_MISC_PROFILE (STATE_CPU (sd, i)))); + /* Hook in callback for reporting these stats */ + PROFILE_INFO_CPU_CALLBACK (CPU_PROFILE_DATA (STATE_CPU (sd, i))) + = print_m32r_misc_cpu; + } } /* Store in a global so things like sparc32_dump_regs can be invoked @@ -185,14 +192,12 @@ sim_create_inferior (sd, abfd, argv, envp) { SIM_CPU *current_cpu = STATE_CPU (sd, 0); SIM_ADDR addr; - SI taddr; if (abfd != NULL) addr = bfd_get_start_address (abfd); else addr = 0; - taddr = endian_h2t_4 (addr); - sim_store_register (sd, PC_REGNUM, (unsigned char *) &taddr, 4); + h_pc_set (current_cpu, addr); #if 0 STATE_ARGV (sd) = sim_copy_argv (argv); @@ -260,14 +265,6 @@ print_m32r_misc_cpu (SIM_CPU *cpu, int verbose) } } -void -sim_info (sd, verbose) - SIM_DESC sd; - int verbose; -{ - profile_print (sd, STATE_VERBOSE_P (sd), NULL, print_m32r_misc_cpu); -} - /* The contents of BUF are in target byte order. */ int @@ -341,3 +338,153 @@ sim_engine_illegal_insn (current_cpu, pc) sim_engine_halt (CPU_STATE (current_cpu), current_cpu, NULL, pc, sim_stopped, SIM_SIGILL); } + +/* Utility fns to access registers, without knowing the current mach. + FIXME: Machine generate? */ + +USI +h_pc_get (SIM_CPU *current_cpu) +{ + switch (STATE_ARCHITECTURE (CPU_STATE (current_cpu))->mach) + { + case bfd_mach_m32r : + return m32r_h_pc_get (current_cpu); +/* start-sanitize-m32rx */ +#ifdef HAVE_CPU_M32RX + case bfd_mach_m32rx : + return m32rx_h_pc_get (current_cpu); +#endif +/* end-sanitize-m32rx */ + default : + abort (); + } +} + +void +h_pc_set (SIM_CPU *current_cpu, USI newval) +{ + switch (STATE_ARCHITECTURE (CPU_STATE (current_cpu))->mach) + { + case bfd_mach_m32r : + m32r_h_pc_set (current_cpu, newval); + break; +/* start-sanitize-m32rx */ +#ifdef HAVE_CPU_M32RX + case bfd_mach_m32rx : + m32rx_h_pc_set (current_cpu, newval); + break; +#endif +/* end-sanitize-m32rx */ + default : + abort (); + } +} + +SI +h_gr_get (SIM_CPU *current_cpu, UINT regno) +{ + switch (STATE_ARCHITECTURE (CPU_STATE (current_cpu))->mach) + { + case bfd_mach_m32r : + return m32r_h_gr_get (current_cpu, regno); +/* start-sanitize-m32rx */ +#ifdef HAVE_CPU_M32RX + case bfd_mach_m32rx : + return m32rx_h_gr_get (current_cpu, regno); +#endif +/* end-sanitize-m32rx */ + default : + abort (); + } +} + +void +h_gr_set (SIM_CPU *current_cpu, UINT regno, SI newval) +{ + switch (STATE_ARCHITECTURE (CPU_STATE (current_cpu))->mach) + { + case bfd_mach_m32r : + m32r_h_gr_set (current_cpu, regno, newval); + break; +/* start-sanitize-m32rx */ +#ifdef HAVE_CPU_M32RX + case bfd_mach_m32rx : + m32rx_h_gr_set (current_cpu, regno, newval); + break; +#endif +/* end-sanitize-m32rx */ + default : + abort (); + } +} + +/* Read/write functions for system call interface. */ + +static int +syscall_read_mem (host_callback *cb, struct cb_syscall *sc, + unsigned long taddr, char *buf, int bytes) +{ + SIM_DESC sd = (SIM_DESC) sc->p1; + SIM_CPU *cpu = (SIM_CPU *) sc->p2; + + return sim_core_read_buffer (sd, cpu, sim_core_read_map, buf, taddr, bytes); +} + +static int +syscall_write_mem (host_callback *cb, struct cb_syscall *sc, + unsigned long taddr, const char *buf, int bytes) +{ + SIM_DESC sd = (SIM_DESC) sc->p1; + SIM_CPU *cpu = (SIM_CPU *) sc->p2; + + return sim_core_write_buffer (sd, cpu, sim_core_write_map, buf, taddr, bytes); +} + +/* Trap support. */ + +void +do_trap (SIM_CPU *current_cpu, int num) +{ + SIM_DESC sd = CPU_STATE (current_cpu); + host_callback *cb = STATE_CALLBACK (sd); + + switch (num) + { + case 0 : + /* Trap 0 is used for system calls. */ + { + CB_SYSCALL s; + + CB_SYSCALL_INIT (&s); + s.func = h_gr_get (current_cpu, 0); + s.arg1 = h_gr_get (current_cpu, 1); + s.arg2 = h_gr_get (current_cpu, 2); + s.arg3 = h_gr_get (current_cpu, 3); + + if (s.func == TARGET_SYS_exit) + { + sim_engine_halt (sd, current_cpu, NULL, h_pc_get (current_cpu), + sim_exited, s.arg1); + } + + s.p1 = (PTR) sd; + s.p2 = (PTR) current_cpu; + s.read_mem = syscall_read_mem; + s.write_mem = syscall_write_mem; + cb_syscall (STATE_CALLBACK (sd), &s); + h_gr_set (current_cpu, 2, s.errcode); + h_gr_set (current_cpu, 0, s.result); + h_gr_set (current_cpu, 1, s.result2); + break; + } + + case 1: /* breakpoint trap */ + sim_engine_halt (sd, current_cpu, NULL, NULL_CIA, + sim_stopped, SIM_SIGTRAP); + break; + + default : + /* Unless environment operating, ignore other traps. */ + break; + } +} |