⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 interp.c

📁 skyeye-1.2-RC7-3的源代码
💻 C
📖 第 1 页 / 共 2 页
字号:
        }    }  if (!sim_hw_configure (sd))    return SIM_RC_FAIL;  /* reset all state information */  sim_board_reset (sd);  return SIM_RC_OK;}SIM_DESCsim_open (SIM_OPEN_KIND kind, host_callback *callback,          bfd *abfd, char **argv){  SIM_DESC sd;  sim_cpu *cpu;  sd = sim_state_alloc (kind, callback);  cpu = STATE_CPU (sd, 0);  SIM_ASSERT (STATE_MAGIC (sd) == SIM_MAGIC_NUMBER);  /* for compatibility */  current_alignment = NONSTRICT_ALIGNMENT;  current_target_byte_order = BIG_ENDIAN;  cpu_initialize (sd, cpu);  if (sim_pre_argv_init (sd, argv[0]) != SIM_RC_OK)    {      free_state (sd);      return 0;    }  /* getopt will print the error message so we just have to exit if this fails.     FIXME: Hmmm...  in the case of gdb we need getopt to call     print_filtered.  */  if (sim_parse_args (sd, argv) != SIM_RC_OK)    {      /* Uninstall the modules to avoid memory leaks,         file descriptor leaks, etc.  */      free_state (sd);      return 0;    }  /* Check for/establish the a reference program image.  */  if (sim_analyze_program (sd,			   (STATE_PROG_ARGV (sd) != NULL			    ? *STATE_PROG_ARGV (sd)			    : NULL), abfd) != SIM_RC_OK)    {      free_state (sd);      return 0;    }  /* Establish any remaining configuration options.  */  if (sim_config (sd) != SIM_RC_OK)    {      free_state (sd);      return 0;    }  if (sim_post_argv_init (sd) != SIM_RC_OK)    {      /* Uninstall the modules to avoid memory leaks,         file descriptor leaks, etc.  */      free_state (sd);      return 0;    }  if (sim_prepare_for_program (sd, abfd) != SIM_RC_OK)    {      free_state (sd);      return 0;    }        /* Fudge our descriptor.  */  return sd;}voidsim_close (SIM_DESC sd, int quitting){  /* shut down modules */  sim_module_uninstall (sd);  /* Ensure that any resources allocated through the callback     mechanism are released: */  sim_io_shutdown (sd);  /* FIXME - free SD */  sim_state_free (sd);  return;}voidsim_set_profile (int n){}voidsim_set_profile_size (int n){}/* Generic implementation of sim_engine_run that works within the   sim_engine setjmp/longjmp framework. */voidsim_engine_run (SIM_DESC sd,                int next_cpu_nr,	/* ignore */		int nr_cpus,	/* ignore */		int siggnal)	/* ignore */{  sim_cpu *cpu;  SIM_ASSERT (STATE_MAGIC (sd) == SIM_MAGIC_NUMBER);  cpu = STATE_CPU (sd, 0);  while (1)    {      cpu_single_step (cpu);      /* process any events */      if (sim_events_tickn (sd, cpu->cpu_current_cycle))	{	  sim_events_process (sd);	}    }}intsim_trace (SIM_DESC sd){  sim_resume (sd, 0, 0);  return 1;}voidsim_info (SIM_DESC sd, int verbose){  const char *cpu_type;  const struct bfd_arch_info *arch;  /* Nothing to do if there is no verbose flag set.  */  if (verbose == 0 && STATE_VERBOSE_P (sd) == 0)    return;  arch = STATE_ARCHITECTURE (sd);  if (arch->arch == bfd_arch_m68hc11)    cpu_type = "68HC11";  else    cpu_type = "68HC12";  sim_io_eprintf (sd, "Simulator info:\n");  sim_io_eprintf (sd, "  CPU Motorola %s\n", cpu_type);  sim_get_info (sd, 0);  sim_module_info (sd, verbose || STATE_VERBOSE_P (sd));}SIM_RCsim_create_inferior (SIM_DESC sd, struct bfd *abfd,                     char **argv, char **env){  return sim_prepare_for_program (sd, abfd);}voidsim_set_callbacks (host_callback *p){  /*  m6811_callback = p; */}intsim_fetch_register (SIM_DESC sd, int rn, unsigned char *memory, int length){  sim_cpu *cpu;  uint16 val;  int size = 2;  cpu = STATE_CPU (sd, 0);  switch (rn)    {    case A_REGNUM:      val = cpu_get_a (cpu);      size = 1;      break;    case B_REGNUM:      val = cpu_get_b (cpu);      size = 1;      break;    case D_REGNUM:      val = cpu_get_d (cpu);      break;    case X_REGNUM:      val = cpu_get_x (cpu);      break;    case Y_REGNUM:      val = cpu_get_y (cpu);      break;    case SP_REGNUM:      val = cpu_get_sp (cpu);      break;    case PC_REGNUM:      val = cpu_get_pc (cpu);      break;    case PSW_REGNUM:      val = cpu_get_ccr (cpu);      size = 1;      break;    case PAGE_REGNUM:      val = cpu_get_page (cpu);      size = 1;      break;    default:      val = 0;      break;    }  if (size == 1)    {      memory[0] = val;    }  else    {      memory[0] = val >> 8;      memory[1] = val & 0x0FF;    }  return size;}intsim_store_register (SIM_DESC sd, int rn, unsigned char *memory, int length){  uint16 val;  sim_cpu *cpu;  cpu = STATE_CPU (sd, 0);  val = *memory++;  if (length == 2)    val = (val << 8) | *memory;  switch (rn)    {    case D_REGNUM:      cpu_set_d (cpu, val);      break;    case A_REGNUM:      cpu_set_a (cpu, val);      return 1;    case B_REGNUM:      cpu_set_b (cpu, val);      return 1;    case X_REGNUM:      cpu_set_x (cpu, val);      break;    case Y_REGNUM:      cpu_set_y (cpu, val);      break;    case SP_REGNUM:      cpu_set_sp (cpu, val);      break;    case PC_REGNUM:      cpu_set_pc (cpu, val);      break;    case PSW_REGNUM:      cpu_set_ccr (cpu, val);      return 1;    case PAGE_REGNUM:      cpu_set_page (cpu, val);      return 1;    default:      break;    }  return 2;}voidsim_size (int s){  ;}voidsim_do_command (SIM_DESC sd, char *cmd){  char *mm_cmd = "memory-map";  char *int_cmd = "interrupt";  sim_cpu *cpu;  cpu = STATE_CPU (sd, 0);  /* Commands available from GDB:   */  if (sim_args_command (sd, cmd) != SIM_RC_OK)    {      if (strncmp (cmd, "info", sizeof ("info") - 1) == 0)	sim_get_info (sd, &cmd[4]);      else if (strncmp (cmd, mm_cmd, strlen (mm_cmd) == 0))	sim_io_eprintf (sd,			"`memory-map' command replaced by `sim memory'\n");      else if (strncmp (cmd, int_cmd, strlen (int_cmd)) == 0)	sim_io_eprintf (sd, "`interrupt' command replaced by `sim watch'\n");      else	sim_io_eprintf (sd, "Unknown command `%s'\n", cmd);    }  /* If the architecture changed, re-configure.  */  if (STATE_ARCHITECTURE (sd) != cpu->cpu_configured_arch)    sim_hw_configure (sd);}/* Halt the simulator after just one instruction */static voidhas_stepped (SIM_DESC sd,	     void *data){  ASSERT (STATE_MAGIC (sd) == SIM_MAGIC_NUMBER);  sim_engine_halt (sd, NULL, NULL, NULL_CIA, sim_stopped, SIM_SIGTRAP);}/* Generic resume - assumes the existance of sim_engine_run */voidsim_resume (SIM_DESC sd,	    int step,	    int siggnal){  sim_engine *engine = STATE_ENGINE (sd);  jmp_buf buf;  int jmpval;  ASSERT (STATE_MAGIC (sd) == SIM_MAGIC_NUMBER);  /* we only want to be single stepping the simulator once */  if (engine->stepper != NULL)    {      sim_events_deschedule (sd, engine->stepper);      engine->stepper = NULL;    }  sim_module_resume (sd);  /* run/resume the simulator */  engine->jmpbuf = &buf;  jmpval = setjmp (buf);  if (jmpval == sim_engine_start_jmpval      || jmpval == sim_engine_restart_jmpval)    {      int last_cpu_nr = sim_engine_last_cpu_nr (sd);      int next_cpu_nr = sim_engine_next_cpu_nr (sd);      int nr_cpus = sim_engine_nr_cpus (sd);      sim_events_preprocess (sd, last_cpu_nr >= nr_cpus, next_cpu_nr >= nr_cpus);      if (next_cpu_nr >= nr_cpus)	next_cpu_nr = 0;      /* Only deliver the siggnal ]sic] the first time through - don't         re-deliver any siggnal during a restart. */      if (jmpval == sim_engine_restart_jmpval)	siggnal = 0;      /* Install the stepping event after having processed some         pending events.  This is necessary for HC11/HC12 simulator         because the tick counter is incremented by the number of cycles         the instruction took.  Some pending ticks to process can still         be recorded internally by the simulator and sim_events_preprocess         will handle them.  If the stepping event is inserted before,         these pending ticks will raise the event and the simulator will         stop without having executed any instruction.  */      if (step)        engine->stepper = sim_events_schedule (sd, 0, has_stepped, sd);#ifdef SIM_CPU_EXCEPTION_RESUME      {	sim_cpu* cpu = STATE_CPU (sd, next_cpu_nr);	SIM_CPU_EXCEPTION_RESUME(sd, cpu, siggnal);      }#endif      sim_engine_run (sd, next_cpu_nr, nr_cpus, siggnal);    }  engine->jmpbuf = NULL;  sim_module_suspend (sd);}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -