📄 wrapper.c
字号:
/* run front end support for arm Copyright (C) 1995, 1996, 1997, 2000, 2001, 2002 Free Software Foundation, Inc. This file is part of ARM SIM. GCC 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, or (at your option) any later version. GCC 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. *//* This file provides the interface between the simulator and run.c and gdb (when the simulator is linked with gdb). All simulator interaction should go through this file. */#include <stdio.h>#include <stdarg.h>#include <string.h>#include <bfd.h>#include <signal.h>#include "gdb/callback.h"#include "gdb/remote-sim.h"#include "armdefs.h"#include "armemu.h"#include "dbg_rdi.h"#include "ansidecl.h"#include "sim-utils.h"#include "run-sim.h"#include "gdb/sim-arm.h"host_callback *sim_callback;static struct ARMul_State *state;/* Who is using the simulator. */static SIM_OPEN_KIND sim_kind;/* argv[0] */static char *myname;/* Memory size in bytes. */static int mem_size = (1 << 21);/* Non-zero to display start up banner, and maybe other things. */static int verbosity;/* Non-zero to set big endian mode. */static int big_endian;int stop_simulator;/* Cirrus DSP registers. We need to define these registers outside of maverick.c because maverick.c might not be linked in unless --target=arm9e-* in which case wrapper.c will not compile because it tries to access Cirrus registers. This should all go away once we get the Cirrus and ARM Coprocessor to coexist in armcopro.c-- aldyh. */struct maverick_regs{ union { int i; float f; } upper; union { int i; float f; } lower;};union maverick_acc_regs{ long double ld; /* Acc registers are 72-bits. */};struct maverick_regs DSPregs[16];union maverick_acc_regs DSPacc[4];ARMword DSPsc;static voidinit (){ static int done; if (!done) { ARMul_EmulateInit (); state = ARMul_NewState (); state->bigendSig = (big_endian ? HIGH : LOW); ARMul_MemoryInit (state, mem_size); ARMul_OSInit (state); state->verbose = verbosity; done = 1; }}/* Set verbosity level of simulator. This is not intended to produce detailed tracing or debugging information. Just summaries. *//* FIXME: common/run.c doesn't do this yet. */voidsim_set_verbose (v) int v;{ verbosity = v;}/* Set the memory size to SIZE bytes. Must be called before initializing simulator. *//* FIXME: Rename to sim_set_mem_size. */voidsim_size (size) int size;{ mem_size = size;}voidARMul_ConsolePrint VPARAMS ((ARMul_State * state, const char * format, ...)){ va_list ap; if (state->verbose) { va_start (ap, format); vprintf (format, ap); va_end (ap); }}ARMwordARMul_Debug (state, pc, instr) ARMul_State * state ATTRIBUTE_UNUSED; ARMword pc ATTRIBUTE_UNUSED; ARMword instr ATTRIBUTE_UNUSED;{ return 0;}intsim_write (sd, addr, buffer, size) SIM_DESC sd ATTRIBUTE_UNUSED; SIM_ADDR addr; unsigned char * buffer; int size;{ int i; init (); for (i = 0; i < size; i++) ARMul_SafeWriteByte (state, addr + i, buffer[i]); return size;}intsim_read (sd, addr, buffer, size) SIM_DESC sd ATTRIBUTE_UNUSED; SIM_ADDR addr; unsigned char * buffer; int size;{ int i; init (); for (i = 0; i < size; i++) buffer[i] = ARMul_SafeReadByte (state, addr + i); return size;}intsim_trace (sd) SIM_DESC sd ATTRIBUTE_UNUSED;{ (*sim_callback->printf_filtered) (sim_callback, "This simulator does not support tracing\n"); return 1;}intsim_stop (sd) SIM_DESC sd ATTRIBUTE_UNUSED;{ state->Emulate = STOP; stop_simulator = 1; return 1;}voidsim_resume (sd, step, siggnal) SIM_DESC sd ATTRIBUTE_UNUSED; int step; int siggnal ATTRIBUTE_UNUSED;{ state->EndCondition = 0; stop_simulator = 0; if (step) { state->Reg[15] = ARMul_DoInstr (state); if (state->EndCondition == 0) state->EndCondition = RDIError_BreakpointReached; } else { state->NextInstr = RESUME; /* treat as PC change */ state->Reg[15] = ARMul_DoProg (state); } FLUSHPIPE;}SIM_RCsim_create_inferior (sd, abfd, argv, env) SIM_DESC sd ATTRIBUTE_UNUSED; struct bfd * abfd; char ** argv; char ** env;{ int argvlen = 0; int mach; char **arg; if (abfd != NULL) ARMul_SetPC (state, bfd_get_start_address (abfd)); else ARMul_SetPC (state, 0); /* ??? */ mach = bfd_get_mach (abfd); switch (mach) { default: (*sim_callback->printf_filtered) (sim_callback, "Unknown machine type '%d'; please update sim_create_inferior.\n", mach); /* fall through */ case 0: /* We wouldn't set the machine type with earlier toolchains, so we explicitly select a processor capable of supporting all ARMs in 32bit mode. */ /* We choose the XScale rather than the iWMMXt, because the iWMMXt removes the FPE emulator, since it conflicts with its coprocessors. For the most generic ARM support, we want the FPE emulator in place. */ case bfd_mach_arm_XScale: ARMul_SelectProcessor (state, ARM_v5_Prop | ARM_v5e_Prop | ARM_XScale_Prop); break; case bfd_mach_arm_iWMMXt: { extern int SWI_vector_installed; ARMword i; if (! SWI_vector_installed) { /* Intialise the hardware vectors to zero. */ if (! SWI_vector_installed) for (i = ARMul_ResetV; i <= ARMFIQV; i += 4) ARMul_WriteWord (state, i, 0); /* ARM_WriteWord will have detected the write to the SWI vector, but we want SWI_vector_installed to remain at 0 so that thumb mode breakpoints will work. */ SWI_vector_installed = 0; } } ARMul_SelectProcessor (state, ARM_v5_Prop | ARM_v5e_Prop | ARM_XScale_Prop | ARM_iWMMXt_Prop); break; case bfd_mach_arm_ep9312: ARMul_SelectProcessor (state, ARM_v4_Prop | ARM_ep9312_Prop); break; case bfd_mach_arm_5: if (bfd_family_coff (abfd)) { /* This is a special case in order to support COFF based ARM toolchains. The COFF header does not have enough room to store all the different kinds of ARM cpu, so the XScale, v5T and v5TE architectures all default to v5. (See coff_set_flags() in bdf/coffcode.h). So if we see a v5 machine type here, we assume it could be any of the above architectures and so select the most feature-full. */ ARMul_SelectProcessor (state, ARM_v5_Prop | ARM_v5e_Prop | ARM_XScale_Prop); break; } /* Otherwise drop through. */ case bfd_mach_arm_5T: ARMul_SelectProcessor (state, ARM_v5_Prop); break; case bfd_mach_arm_5TE: ARMul_SelectProcessor (state, ARM_v5_Prop | ARM_v5e_Prop); break; case bfd_mach_arm_4: case bfd_mach_arm_4T: ARMul_SelectProcessor (state, ARM_v4_Prop); break; case bfd_mach_arm_3: case bfd_mach_arm_3M: ARMul_SelectProcessor (state, ARM_Lock_Prop); break; case bfd_mach_arm_2: case bfd_mach_arm_2a: ARMul_SelectProcessor (state, ARM_Fix26_Prop); break; } if ( mach != bfd_mach_arm_3 && mach != bfd_mach_arm_3M && mach != bfd_mach_arm_2 && mach != bfd_mach_arm_2a) { /* Reset mode to ARM. A gdb user may rerun a program that had entered THUMB mode from the start and cause the ARM-mode startup code to be executed in THUMB mode. */ ARMul_SetCPSR (state, SVC32MODE); } if (argv != NULL) { /* Set up the command line by laboriously stringing together the environment carefully picked apart by our caller. */ /* Free any old stuff. */ if (state->CommandLine != NULL) { free (state->CommandLine); state->CommandLine = NULL; } /* See how much we need. */ for (arg = argv; *arg != NULL; arg++) argvlen += strlen (*arg) + 1; /* Allocate it. */ state->CommandLine = malloc (argvlen + 1); if (state->CommandLine != NULL) { arg = argv; state->CommandLine[0] = '\0'; for (arg = argv; *arg != NULL; arg++) { strcat (state->CommandLine, *arg); strcat (state->CommandLine, " "); } } } if (env != NULL) { /* Now see if there's a MEMSIZE spec in the environment. */ while (*env) { if (strncmp (*env, "MEMSIZE=", sizeof ("MEMSIZE=") - 1) == 0) { char *end_of_num; /* Set up memory limit. */ state->MemSize = strtoul (*env + sizeof ("MEMSIZE=") - 1, &end_of_num, 0); } env++; } } return SIM_RC_OK;}voidsim_info (sd, verbose) SIM_DESC sd ATTRIBUTE_UNUSED; int verbose ATTRIBUTE_UNUSED;{}static intfrommem (state, memory) struct ARMul_State *state; unsigned char *memory;{ if (state->bigendSig == HIGH) return (memory[0] << 24) | (memory[1] << 16) | (memory[2] << 8) | (memory[3] << 0); else return (memory[3] << 24) | (memory[2] << 16) | (memory[1] << 8) | (memory[0] << 0);}static voidtomem (state, memory, val) struct ARMul_State *state; unsigned char *memory; int val;{ if (state->bigendSig == HIGH) { memory[0] = val >> 24; memory[1] = val >> 16; memory[2] = val >> 8; memory[3] = val >> 0; } else { memory[3] = val >> 24; memory[2] = val >> 16; memory[1] = val >> 8; memory[0] = val >> 0; }}intsim_store_register (sd, rn, memory, length) SIM_DESC sd ATTRIBUTE_UNUSED; int rn; unsigned char *memory; int length ATTRIBUTE_UNUSED;{ init (); switch ((enum sim_arm_regs) rn) { case SIM_ARM_R0_REGNUM: case SIM_ARM_R1_REGNUM: case SIM_ARM_R2_REGNUM: case SIM_ARM_R3_REGNUM: case SIM_ARM_R4_REGNUM: case SIM_ARM_R5_REGNUM: case SIM_ARM_R6_REGNUM: case SIM_ARM_R7_REGNUM: case SIM_ARM_R8_REGNUM: case SIM_ARM_R9_REGNUM: case SIM_ARM_R10_REGNUM: case SIM_ARM_R11_REGNUM: case SIM_ARM_R12_REGNUM: case SIM_ARM_R13_REGNUM: case SIM_ARM_R14_REGNUM: case SIM_ARM_R15_REGNUM: /* PC */ case SIM_ARM_FP0_REGNUM: case SIM_ARM_FP1_REGNUM: case SIM_ARM_FP2_REGNUM: case SIM_ARM_FP3_REGNUM: case SIM_ARM_FP4_REGNUM:
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -