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

Subversion Repositories or1k

[/] [or1k/] [tags/] [nog_patch_66/] [or1ksim/] [toplevel.c] - Diff between revs 1242 and 1245

Go to most recent revision | Show entire file | Details | Blame | View Log

Rev 1242 Rev 1245
Line 58... Line 58...
#include "mprofiler.h"
#include "mprofiler.h"
#include "mc.h"
#include "mc.h"
#include "atahost.h"
#include "atahost.h"
 
 
/* CVS revision number. */
/* CVS revision number. */
const char rcsrev[] = "$Revision: 1.97 $";
const char rcsrev[] = "$Revision: 1.98 $";
 
 
/* History of execution */
/* History of execution */
int histexec[HISTEXEC_LEN];
int histexec[HISTEXEC_LEN];
 
 
char *sim_commands [] = {
char *sim_commands [] = {
Line 143... Line 143...
  PRINTF("pr <r> <value>                - patch register <r> with <value>\n");
  PRINTF("pr <r> <value>                - patch register <r> with <value>\n");
  PRINTF("dm <fromaddr> [<toaddr>]      - display memory from <fromaddr> to <toaddr>\n");
  PRINTF("dm <fromaddr> [<toaddr>]      - display memory from <fromaddr> to <toaddr>\n");
  PRINTF("de <fromaddr> [<toaddr>]      - debug insn memory\n");
  PRINTF("de <fromaddr> [<toaddr>]      - debug insn memory\n");
  PRINTF("pm <addr> <value>             - patch memory location <addr> with <value>\n");
  PRINTF("pm <addr> <value>             - patch memory location <addr> with <value>\n");
  PRINTF("pc <value>                    - patch PC register with <value>\n");
  PRINTF("pc <value>                    - patch PC register with <value>\n");
  PRINTF("cm <fromaddr> <toaddr> <size> - copy memory
  PRINTF("cm <fromaddr> <toaddr> <size> - copy memory\n");
  PRINTF("break <addr>      - toggle breakpoint at address <addr>\n");
  PRINTF("break <addr>      - toggle breakpoint at address <addr>\n");
  PRINTF("breaks            - print all set breakpoints\n");
  PRINTF("breaks            - print all set breakpoints\n");
  PRINTF("reset             - simulator reset\n");
  PRINTF("reset             - simulator reset\n");
  PRINTF("hist              - execution history\n");
  PRINTF("hist              - execution history\n");
  PRINTF("stall             - stalls the processor and gives control to the debugger\n");
  PRINTF("stall             - stalls the processor and gives control to the debugger\n");
  PRINTF("stats <num|clear> - execution statistics num or clear it.\n");
  PRINTF("stats <num|clear> - execution statistics num or clear it.\n");
  PRINTF("info              - configuration info (caches etc.)\n");
  PRINTF("info              - configuration info (caches etc.)\n");
  PRINTF("dv <fromaddr> [<toaddr>] [<modname>] - dumps memory as verilog (use redirect)\n");
  PRINTF("dv <fromaddr> [<toaddr>] [<modname>] - dumps memory as verilog (use redirect)\n");
  PRINTF("dh <fromaddr> [<toaddr>]             - dumps memory as hex code (use redirect)\n");
  PRINTF("dh <fromaddr> [<toaddr>]             - dumps memory as hex code (use redirect)\n");
  PRINTF("<cmd> > <filename> - redirect simulator stdout to <filename> (and not emulated PRINTF)\n");
  PRINTF("<cmd> > <filename> - redirect simulator stdout to <filename> (and not emulated PRINTF)\n");
#if !FAST_SIM
#if !FAST_SIM
  PRINTF("set <section> <item> = <param>  - set configuration.  See sim.cfg for more information.\n");
  PRINTF("set <section> <item> = <param>  - set configuration.  See sim.cfg for more information.\n");
  PRINTF("debug      - toggles simulator debug mode\n");
  PRINTF("debug      - toggles simulator debug mode\n");
  mp_help ();
  mp_help ();
  prof_help ();
  prof_help ();
  PRINTF("cuc        - enters Custom Unit Compiler command prompt\n");
  PRINTF("cuc        - enters Custom Unit Compiler command prompt\n");
#endif
#endif
  PRINTF("help       - available commands (this list)\n");
  PRINTF("help       - available commands (this list)\n");
}
}
 
 
void debugmem (unsigned long from, unsigned long to );
void debugmem (unsigned long from, unsigned long to );
 
 
/* Resets all subunits */
/* Resets all subunits */
void sim_reset ()
void sim_reset ()
{
{
  SCHED_INIT();
  SCHED_INIT();
  uart_reset();
  uart_reset();
  dma_reset();
  dma_reset();
  eth_reset();
  eth_reset();
  gpio_reset();
  gpio_reset();
  vga_reset ();
  vga_reset ();
  fb_reset ();
  fb_reset ();
  kbd_reset ();
  kbd_reset ();
  ata_reset();
  ata_reset();
  tick_reset();
  tick_reset();
  pm_reset();
  pm_reset();
  pic_reset();
  pic_reset();
  mc_reset();
  mc_reset();
  du_reset ();
  du_reset ();
  cpu_reset();
  cpu_reset();
}
}
 
 
/* Initalizes all devices and sim */
/* Initalizes all devices and sim */
void sim_init ()
void sim_init ()
{
{
  init_memory_table ();
  init_memory_table ();
  init_labels();
  init_labels();
  init_breakpoints();
  init_breakpoints();
  initstats();
  initstats();
  build_automata();
  build_automata();
 
 
  if (config.sim.profile) {
  if (config.sim.profile) {
    runtime.sim.fprof = fopen(config.sim.prof_fn, "wt+");
    runtime.sim.fprof = fopen(config.sim.prof_fn, "wt+");
    if(!runtime.sim.fprof) {
    if(!runtime.sim.fprof) {
      fprintf(stderr, "ERROR: Problems opening profile file.\n");
      fprintf(stderr, "ERROR: Problems opening profile file.\n");
      exit (1);
      exit (1);
    } else
    } else
      fprintf(runtime.sim.fprof, "+00000000 FFFFFFFF FFFFFFFF [outside_functions]\n");
      fprintf(runtime.sim.fprof, "+00000000 FFFFFFFF FFFFFFFF [outside_functions]\n");
  }
  }
 
 
  if (config.sim.mprofile) {
  if (config.sim.mprofile) {
    runtime.sim.fmprof = fopen(config.sim.mprof_fn, "wb+");
    runtime.sim.fmprof = fopen(config.sim.mprof_fn, "wb+");
    if(!runtime.sim.fmprof) {
    if(!runtime.sim.fmprof) {
      fprintf(stderr, "ERROR: Problems opening memory profile file.\n");
      fprintf(stderr, "ERROR: Problems opening memory profile file.\n");
      exit (1);
      exit (1);
    }
    }
  }
  }
 
 
  if (config.sim.exe_log) {
  if (config.sim.exe_log) {
    runtime.sim.fexe_log = fopen(config.sim.exe_log_fn, "wt+");
    runtime.sim.fexe_log = fopen(config.sim.exe_log_fn, "wt+");
    if(!runtime.sim.fexe_log) {
    if(!runtime.sim.fexe_log) {
      PRINTF("ERROR: Problems opening exe_log file.\n");
      PRINTF("ERROR: Problems opening exe_log file.\n");
      exit (1);
      exit (1);
    }
    }
  }
  }
 
 
  if (config.sim.spr_log) {
  if (config.sim.spr_log) {
    PRINTF("OPENING SPRLOG\n");
    PRINTF("OPENING SPRLOG\n");
    runtime.sim.fspr_log = fopen(config.sim.spr_log_fn, "wt+");
    runtime.sim.fspr_log = fopen(config.sim.spr_log_fn, "wt+");
    if (!runtime.sim.fspr_log) {
    if (!runtime.sim.fspr_log) {
      PRINTF("ERROR: Problems opening spr_log file.\n");
      PRINTF("ERROR: Problems opening spr_log file.\n");
      exit(1);
      exit(1);
    }
    }
  }
  }
 
 
  /* Initialize memory */
  /* Initialize memory */
  {
  {
    extern struct dev_memarea *dev_list;
    extern struct dev_memarea *dev_list;
    struct dev_memarea *area;
    struct dev_memarea *area;
    int i;
    int i;
    if (config.memory.type == MT_RANDOM) {
    if (config.memory.type == MT_RANDOM) {
      unsigned int val = 0;
      unsigned int val = 0;
 
 
      if (config.memory.random_seed == -1) {
      if (config.memory.random_seed == -1) {
        runtime.memory.random_seed = time(NULL);
        runtime.memory.random_seed = time(NULL);
        /* Print out the seed just in case we ever need to debug */
        /* Print out the seed just in case we ever need to debug */
        PRINTF("Seeding random generator with value %d\n", config.memory.random_seed);
        PRINTF("Seeding random generator with value %d\n", config.memory.random_seed);
      } else
      } else
        runtime.memory.random_seed = config.memory.random_seed;
        runtime.memory.random_seed = config.memory.random_seed;
      srandom(runtime.memory.random_seed);
      srandom(runtime.memory.random_seed);
 
 
      for (area = dev_list; area; area = area->next)
      for (area = dev_list; area; area = area->next)
        for(i = 0; i < area->size; i++) {
        for(i = 0; i < area->size; i++) {
          val = random();
          val = random();
          setsim_mem8(i + area->addr_compare, val & 0xFF);
          setsim_mem8(i + area->addr_compare, val & 0xFF);
        }
        }
    } else if(config.memory.type == MT_PATTERN) {
    } else if(config.memory.type == MT_PATTERN) {
      for (area = dev_list; area; area = area->next)
      for (area = dev_list; area; area = area->next)
        for(i = 0; i < area->size; i++)
        for(i = 0; i < area->size; i++)
          setsim_mem8(i + area->addr_compare, config.memory.pattern);
          setsim_mem8(i + area->addr_compare, config.memory.pattern);
    } else if (config.memory.type != MT_UNKNOWN) {
    } else if (config.memory.type != MT_UNKNOWN) {
      fprintf(stderr, "Invalid memory configuration type.\n");
      fprintf(stderr, "Invalid memory configuration type.\n");
      exit(1);
      exit(1);
    }
    }
  }
  }
 
 
  if(runtime.sim.filename) {
  if(runtime.sim.filename) {
    unsigned long endaddr = 0xFFFFFFFF;
    unsigned long endaddr = 0xFFFFFFFF;
    endaddr = loadcode(runtime.sim.filename, 0, 0); /* MM170901 always load at address zero.  */
    endaddr = loadcode(runtime.sim.filename, 0, 0); /* MM170901 always load at address zero.  */
    if (endaddr == -1) {
    if (endaddr == -1) {
      fprintf(stderr, "Problems loading boot code.\n");
      fprintf(stderr, "Problems loading boot code.\n");
      exit(1);
      exit(1);
    }
    }
  }
  }
 
 
#if !FAST_SIM /* We assume we have valid configuration with fsim*/
#if !FAST_SIM /* We assume we have valid configuration with fsim*/
  /* Disable gdb debugging, if debug module is not available.  */
  /* Disable gdb debugging, if debug module is not available.  */
  if (config.debug.gdb_enabled && !config.debug.enabled) {
  if (config.debug.gdb_enabled && !config.debug.enabled) {
    config.debug.gdb_enabled = 0;
    config.debug.gdb_enabled = 0;
    if (config.sim.verbose)
    if (config.sim.verbose)
      fprintf (stderr, "WARNING: Debug module not enabled, cannot start gdb.\n");
      fprintf (stderr, "WARNING: Debug module not enabled, cannot start gdb.\n");
  }
  }
#endif
#endif
 
 
  if (config.debug.gdb_enabled)
  if (config.debug.gdb_enabled)
    gdbcomm_init ();
    gdbcomm_init ();
 
 
#if !FAST_SIM /* We assume we have valid configuration with fsim*/
#if !FAST_SIM /* We assume we have valid configuration with fsim*/
  /* Enable dependency stats, if we want to do history analisis */
  /* Enable dependency stats, if we want to do history analisis */
  if (config.sim.history && !config.cpu.dependstats) {
  if (config.sim.history && !config.cpu.dependstats) {
    config.cpu.dependstats = 1;
    config.cpu.dependstats = 1;
    if (config.sim.verbose)
    if (config.sim.verbose)
      fprintf (stderr, "WARNING: dependstats stats must be enabled to do history analisis.\n");
      fprintf (stderr, "WARNING: dependstats stats must be enabled to do history analisis.\n");
  }
  }
#endif
#endif
 
 
#if !FAST_SIM /* We assume we have valid configuration with fsim*/
#if !FAST_SIM /* We assume we have valid configuration with fsim*/  
  /* Debug forces verbose */
  /* Debug forces verbose */
  if (config.sim.debug && !config.sim.verbose) {
  if (config.sim.debug && !config.sim.verbose) {
    config.sim.verbose = 1;
    config.sim.verbose = 1;
    fprintf (stderr, "WARNING: verbose turned on.\n");
    fprintf (stderr, "WARNING: verbose turned on.\n");
  }
  }
#endif
#endif
 
 
  /* Start VAPI before device initialization.  */
  /* Start VAPI before device initialization.  */
  if (config.vapi.enabled) {
  if (config.vapi.enabled) {
    runtime.vapi.enabled = 1;
    runtime.vapi.enabled = 1;
    vapi_init ();
    vapi_init ();
    if (config.sim.verbose)
    if (config.sim.verbose)
      PRINTF ("VAPI started, waiting for clients.\n");
      PRINTF ("VAPI started, waiting for clients.\n");
  }
  }
 
 
  sim_reset ();
 
 
 
  lock_memory_table ();
 
 
 
  /* Wait till all test are connected.  */
 
  if (runtime.vapi.enabled) {
 
    int numu = vapi_num_unconnected (0);
 
    if (numu) {
 
      PRINTF ("\nWaiting for VAPI tests with ids:\n");
 
      vapi_num_unconnected (1);
 
      PRINTF ("\n");
 
      while (numu = vapi_num_unconnected (0)) {
 
        vapi_check ();
 
        PRINTF ("\rStill waiting for %i VAPI test(s) to connect.       ", numu);
 
        usleep (100);
 
      }
 
      PRINTF ("\n");
 
    }
 
    PRINTF ("All devices connected                         \n");
 
  }
 
  /* simulator is initialized */
 
  runtime.sim.init = 0;
 
}
 
 
 
/* Display info about various modules */
 
void sim_info () {
 
  sprs_status();
 
  PRINTF ("\n");
 
  memory_table_status ();
 
  if (config.immu.enabled) itlb_status(-1);
 
  if (config.dmmu.enabled) dtlb_status(-1);
 
  if (config.ic.enabled) ic_info();
 
  if (config.dc.enabled) dc_info();
 
 
 
  if (config.bpb.enabled) bpb_info();
 
  if (config.bpb.btic) btic_info();
 
 
 
  if (config.mc.enabled) mc_status();
 
  if (config.nuarts) uart_status();
 
  if (config.ndmas) dma_status();
 
  if (config.nethernets) eth_status();
 
  if (config.ngpios) gpio_status();
 
  if (config.natas) ata_status();
 
  kbd_info();
 
}
 
 
 
/* Cleanup */
 
void sim_done ()
 
{
 
  if (config.sim.profile) {
 
    fprintf(runtime.sim.fprof,"-%08X FFFFFFFF\n", runtime.sim.cycles);
 
    fclose(runtime.sim.fprof);
 
  }
 
 
 
  if (config.sim.mprofile) fclose(runtime.sim.fmprof);
 
  if (config.sim.exe_log)   fclose(runtime.sim.fexe_log);
 
  if (runtime.vapi.enabled)  vapi_done ();
 
  done_memory_table ();
 
  exit(0);
 
}
 
 
 
/* change result if item found in linestr */
 
static void addr_from_linestr(char *linestr, int index, int *result)
 
{
 
        char item[20];
 
        strtoken(linestr, item, index);
 
        if (strlen(item))
 
        {
 
        if (item[0] == '_')
 
                        *result = eval_label(item);
 
        else
 
                        *result = strtoul(item, NULL, 0);
 
        };
 
};
 
 
 
/* Executes jobs in time queue */
 
static inline void do_scheduler ()
 
{
 
  void (*func)(int);
 
  int param;
 
 
 
  /* Execute all jobs till now */
 
  do {
 
    func = SCHED_PEEK().func;
 
    param = SCHED_PEEK().param;
 
    SCHED_REMOVE();
 
    func (param);
 
  } while (runtime.sim.cycles >= SCHED_PEEK().time);
 
}
 
 
 
/* Main function */
 
int main(argc, argv)
 
     int argc;
 
     char *argv[];
 
{
 
  char *linestr;
 
  char item1[500], b2[500], prev_str[500] = "";
 
  char *redirstr;
 
  int hush = 0;
 
  int first_prompt = 1;
 
 
 
  srand(getpid());
 
  init_defconfig();
 
  if (parse_args(argc, argv)) {
 
    PRINTF("Usage: %s [options] <filename>\n", argv[0]);
 
    PRINTF("Options:\n");
 
    PRINTF(" -v                   version and copyright note\n");
 
    PRINTF(" -i                   enable interactive command prompt\n");
 
    PRINTF(" --nosrv              do not launch JTAG proxy server\n"); /* (CZ) */
 
    PRINTF(" --srv <n>            launch JTAG proxy server on port <n>; [random]\n"); /* (CZ) */
 
#if !FAST_SIM
 
    PRINTF(" -f or --file         load script file [sim.cfg]\n");
 
    PRINTF(" --enable-profile     enable profiling.\n");
 
    PRINTF(" --enable-mprofile    enable memory profiling.\n");
 
#endif
 
    PRINTF(" --output-cfg         prints C structure of current\n");
 
    PRINTF("                      configuration to standard output\n");
 
    PRINTF("\nor   : %s ", argv[0]);
 
    mp_help ();
 
    PRINTF("\nor   : %s ", argv[0]);
 
    prof_help ();
 
    exit(-1);
 
  }
 
 
 
#ifdef HAVE_LIBREADLINE
 
  initialize_readline (); /* Bind our completer. */
 
#endif
 
 
 
#if !FAST_SIM
 
  /* Read configuration file.  */
 
  if (!runtime.sim.script_file_specified)
 
    read_script_file ("sim.cfg");
 
 
 
  /* Overide parameters with command line ones */
 
  if (runtime.simcmd.profile) config.sim.profile = 1;
 
  if (runtime.simcmd.mprofile) config.sim.mprofile = 1;
 
 
 
  if (!runtime.sim.script_file_specified && config.sim.verbose)
 
    fprintf (stderr, "WARNING: No config file read, assuming default configuration.\n");
 
#else
 
  PRINTF ("\n\tNOTE: running fast sim with fixed configuration!\n\n");
 
#endif
 
  if (runtime.sim.output_cfg) {
 
    output_cfg (stdout);
 
    exit (0);
 
  }
 
  print_config();
 
  sim_init ();
 
  signal(SIGINT, ctrl_c);
 
 
 
  while(1) {
 
    if (runtime.sim.iprompt) {
 
      if (config.debug.gdb_enabled)
 
        {
 
          PRINTF ("(sim) ");
 
          fflush(stdout);
 
          HandleServerSocket(true);  /* block & check_stdin = true */
 
        }
 
#ifdef HAVE_LIBREADLINE
 
      /* Must disable readline in new mode. It isn't compatible
 
         with non blocking environments */
 
wait_input:
 
      if(!config.debug.gdb_enabled)
 
        linestr = readline("(sim) ");
 
      else
 
        linestr = fgets(b2, sizeof b2, stdin);
 
#else
 
      if(!config.debug.gdb_enabled)
 
        PRINTF ("(sim) ");
 
wait_input:
 
      linestr = fgets(b2, sizeof b2, stdin);
 
#endif
 
    } else
 
      strcpy(linestr = b2, "run -1 hush");
 
 
 
    if (!linestr) {
 
      usleep (1000);
 
      goto wait_input;
 
    }
 
    linestr = stripwhite (linestr);
 
 
 
#ifdef HAVE_LIBREADLINE
 
    /* Readline only works in the old mode */
 
    if(!server_fd)
 
      {
 
        if (strlen(linestr) == 0) {
 
          char *l = repeat_last_command ();
 
 
 
          if (l) {
 
      free (linestr);
 
      linestr = l;
 
          }
 
        }
 
 
 
        if (*linestr) {
 
          add_history (linestr);
 
        }
 
      }
 
#endif /* HAVE_LIBREADLINE */
 
 
 
    if (redirstr = strstr(linestr, ">")) {
 
      *redirstr = '\0';
 
      strtoken(&redirstr[1], item1, 1);
 
      runtime.sim.fout = fopen(item1, "w+");
 
      if (!runtime.sim.fout) runtime.sim.fout = stdout;
 
    }
 
 
 
    if (linestr[0] == '\n')
 
      strcpy (linestr, &prev_str[0]);
 
    else
 
      strcpy (&prev_str[0], linestr);
 
 
 
    strtoken(linestr, item1, 1);
 
    if (strcmp(item1, "q") == 0) {  /* quit */
 
      PRINTF ("\n");
 
      sim_done ();
 
    } else
 
    if (strcmp(item1, "help") == 0) /* help */
 
      help();
 
    else
 
    if (strcmp(item1, "t") == 0) {  /* trace */
 
      runtime.sim.cont_run = 1;
 
    } else
 
    if (strcmp(item1, "dm") == 0) { /* dump memory */
 
      char item2[20];
 
      char item3[20];
 
      static int from = 0, to = 0;
 
 
 
      strtoken(linestr, item2, 2);
 
      strtoken(linestr, item3, 3);
 
 
 
      if (strlen(item2)) {
 
        if (item2[0] == '_')
 
          from = eval_label(item2);
 
        else
 
          from = strtoul(item2, NULL, 0);
 
        to = from + 0x40;
 
      }
 
      if (strlen(item3))
 
        to = strtoul(item3, NULL, 0);
 
      dumpmemory(from, to, 0, 1);
 
            PRINTF("\n");
 
    } else
 
    if (strcmp(item1, "dv") == 0) {/* dump memory as verilog*/
 
      char item2[20];
 
      char item3[20];
 
      char item4[20];
 
      static int from = 0, to = 0;
 
 
 
      strtoken(linestr, item2, 2);
 
      strtoken(linestr, item3, 3);
 
      strtoken(linestr, item4, 4);
 
 
 
      if (strlen(item2)) {
 
        if (item2[0] == '_')
 
          from = eval_label(item2);
 
        else
 
          from = strtoul(item2, NULL, 0);
 
        to = from + 0x40;
 
      }
 
      if (strlen(item3))
 
        to = strtoul(item3, NULL, 0);
 
      if (!strlen(item4))
 
        strcpy(item4, "or1k_mem");
 
      dumpverilog(item4, from, to);
 
        PRINTF("\n");
 
    } else
 
    if (strcmp(item1, "dh") == 0) {/* dump memory as hex*/
 
      char item2[20];
 
      char item3[20];
 
      static int from = 0, to = 0;
 
 
 
      strtoken(linestr, item2, 2);
 
      strtoken(linestr, item3, 3);
 
 
 
      if (strlen(item2)) {
 
        if (item2[0] == '_')
 
          from = eval_label(item2);
 
        else
 
          from = strtoul(item2, NULL, 0);
 
        to = from + 0x40;
 
      }
 
      if (strlen(item3))
 
        to = strtoul(item3, NULL, 0);
 
      dumphex(from, to);
 
        PRINTF("\n");
 
    } else
 
    if (strcmp(item1, "pm") == 0) { /* patch memory */
 
      char item2[20];
 
      char item3[20];
 
      static int addr = 0;
 
      int breakpoint = 0;
 
 
 
      strtoken(linestr, item2, 2);
 
      strtoken(linestr, item3, 3);
 
      if (strlen(item2))
 
        if (item2[0] == '_')
 
          addr = eval_label(item2);
 
        else
 
          addr = strtoul(item2, NULL, 0);
 
      set_mem32(addr, strtoul(item3, NULL, 0), &breakpoint);
 
    } else
 
    if (strcmp(item1, "cm") == 0) {     /* copy memory 2004-01-20 hpanther*/
 
          static int from=0, to=0, size=0;
 
      int i;
 
      addr_from_linestr(linestr, 2, &from);
 
      addr_from_linestr(linestr, 3, &to);
 
      addr_from_linestr(linestr, 4, &size);
 
          for(i=0; i<size; i+=4)
 
            setsim_mem32(to+i, evalsim_mem32(from+i));
 
    } else
 
    if (strcmp(item1, "pr") == 0) { /* patch regs */
 
      char item2[20];
 
      char item3[20];
 
 
 
      strtoken(linestr, item2, 2);
 
      strtoken(linestr, item3, 3);
 
      setsim_reg32(strtoul(item2, NULL,0), strtoul(item3, NULL, 0));
 
    } else
 
    if (strcmp(item1, "pc") == 0) { /* patch PC */
 
      char item2[20];
 
 
 
      strtoken(linestr, item2, 2);
 
      pc = strtoul(item2, NULL, 0);
 
    } else
 
    if (strcmp(item1, "breaks") == 0) { /* print breakpoints */
 
        print_breakpoints();
 
    } else
 
    if (strcmp(item1, "break") == 0) {  /* set/clear breakpoint */
 
      char item2[20];
 
      char *p;
 
      unsigned long addr;
 
      strtoken(linestr, item2, 2);
 
      addr = strtoul(item2, &p, 0);
 
      if (*p) {
 
        struct label_entry *l = find_label (item2);
 
        if (l) {
 
          addr = l->addr;
 
        } else addr = 0xffffffff;
 
      }
 
      if (addr != 0xffffffff) set_insnbrkpoint(addr);
 
      else PRINTF ("'%s' is invalid address!\n");
 
    } else
 
    if (strcmp(item1, "r") == 0) {  /* dump regs */
 
      dumpreg();
 
    } else
 
    if (strcmp(item1, "de") == 0) { /* reset simulator */
 
      char item2[20];
 
      char item3[20];
 
      static int from = 0, to = 0;
 
 
 
      strtoken(linestr, item2, 2);
 
      strtoken(linestr, item3, 3);
 
 
 
      if (strlen(item2)) {
 
        if (item2[0] == '_')
 
          from = eval_label(item2);
 
        else
 
          from = strtoul(item2, NULL, 0);
 
        to = from + 0x40;
 
      }
 
      if (strlen(item3))
 
        to = strtoul(item3, NULL, 0);
 
      debugmem(from, to);
 
      PRINTF("\n");
 
    } else
 
    if (strcmp(item1, "reset") == 0) {  /* reset simulator */
 
      sim_reset();
 
    } else
 
#if !FAST_SIM
 
    if (strcmp(item1, "debug") == 0) {  /* debug mode */
 
      config.sim.debug ^= 1;
 
    } else
 
#endif
 
    if (strcmp(item1, "hist") == 0) { /* dump history */
 
      int i;
 
      for(i = HISTEXEC_LEN; i; i--)
 
        dumpmemory(histexec[i - 1], histexec[i - 1] + 4, 1, 1);
 
      PRINTF("\n");
 
    } else
 
    if (strcmp(item1, "run") == 0) { /* run */
 
      char item2[20];
 
      char item3[20];
 
 
 
      strtoken(linestr, item2, 2);
 
      strtoken(linestr, item3, 3);
 
      if (strcmp(item3, "hush") == 0)
 
        hush = 1;
 
      else
 
        hush = 0;
 
      runtime.sim.cont_run = strtol(item2, NULL, 0);
 
    } else
 
    if(!strcmp(item1, "stall")) { /* Added by CZ 210801 */
 
      set_stall_state (1);
 
      runtime.sim.iprompt = 0;
 
      runtime.sim.cont_run = -1;
 
      hush = 1;
 
    } else
 
    if (strcmp(item1, "stats") == 0) { /* stats */
 
      char item2[20];
 
      int i = 0;
 
 
 
      strtoken(linestr, item2, 2);
 
      if (strcmp(item2, "clear") == 0) {
 
        initstats();
 
        PRINTF("Cleared.\n");
 
      } else {
 
        i = strtoul(item2, NULL, 0);
 
        printstats(i);
 
      }
 
    } else
 
    if (strcmp(item1, "info") == 0) /* configuration info */
 
      sim_info ();
 
    else
 
#if !FAST_SIM
 
    if (strcmp (item1, "profiler") == 0) { /* run profiler utility */
 
      char *argv[10];
 
      int argc = tokenize_line (linestr, argv, 10);
 
      main_profiler (argc, argv);
 
    } else
 
    if (strcmp (item1, "mprofiler") == 0) { /* run mprofiler utility */
 
      char *argv[10];
 
      int argc = tokenize_line (linestr, argv, 10);
 
      main_mprofiler (argc, argv);
 
    } else
 
    if (strcmp (item1, "cuc") == 0) { /* run Custom Unit Compiler */
 
      main_cuc (runtime.sim.filename);
 
    } else
 
    if (strcmp(item1, "set") == 0) { /* configuration info */
 
      char *s = linestr;
 
      int i;
 
      extern section;
 
      extern struct section sections[];
 
      while (*s != ' ' && *s) s++;
 
      set_config_command (s);
 
    } else
 
#endif /* !FAST_SIM */
 
      PRINTF("%s: Unknown command.\n", linestr);
 
 
 
    { /* Needed by execution */
 
      extern int do_stats;
 
      do_stats = config.cpu.dependstats || config.cpu.superscalar || config.cpu.dependstats
 
              || config.sim.history || config.sim.exe_log;
 
    }
 
 
 
    /* MM: 'run -1' means endless execution.  */
 
    while(runtime.sim.cont_run) {
 
      IFF (config.debug.enabled) {
 
                  du_clock();   // reset watchpoints etc.
 
        if (runtime.cpu.stalled) {
 
          if(config.debug.gdb_enabled) {
 
            BlockJTAG();
 
            HandleServerSocket(false);
 
          } else {
 
            fprintf (stderr, "WARNING: CPU stalled and gdb connection not enabled.");
 
            runtime.sim.cont_run = 0;
 
          }
 
          continue;
 
        }
 
      }
 
 
 
      /* Each cycle has counter of mem_cycles; this value is joined with cycles
  sim_reset ();
 
 
 
  lock_memory_table ();
 
 
 
  /* Wait till all test are connected.  */
 
  if (runtime.vapi.enabled) {
 
    int numu = vapi_num_unconnected (0);
 
    if (numu) {
 
      PRINTF ("\nWaiting for VAPI tests with ids:\n");
 
      vapi_num_unconnected (1);
 
      PRINTF ("\n");
 
      while (numu = vapi_num_unconnected (0)) {
 
        vapi_check ();
 
        PRINTF ("\rStill waiting for %i VAPI test(s) to connect.       ", numu);
 
        usleep (100);
 
      }
 
      PRINTF ("\n");
 
    }
 
    PRINTF ("All devices connected                         \n");
 
  }
 
  /* simulator is initialized */
 
  runtime.sim.init = 0;
 
}
 
 
 
/* Display info about various modules */
 
void sim_info () {
 
  sprs_status();
 
  PRINTF ("\n");
 
  memory_table_status ();
 
  if (config.immu.enabled) itlb_status(-1);
 
  if (config.dmmu.enabled) dtlb_status(-1);
 
  if (config.ic.enabled) ic_info();
 
  if (config.dc.enabled) dc_info();
 
 
 
  if (config.bpb.enabled) bpb_info();
 
  if (config.bpb.btic) btic_info();
 
 
 
  if (config.mc.enabled) mc_status();
 
  if (config.nuarts) uart_status();
 
  if (config.ndmas) dma_status();
 
  if (config.nethernets) eth_status();
 
  if (config.ngpios) gpio_status();
 
  if (config.natas) ata_status();
 
  kbd_info();
 
}
 
 
 
/* Cleanup */
 
void sim_done ()
 
{
 
  if (config.sim.profile) {
 
    fprintf(runtime.sim.fprof,"-%08X FFFFFFFF\n", runtime.sim.cycles);
 
    fclose(runtime.sim.fprof);
 
  }
 
 
 
  if (config.sim.mprofile) fclose(runtime.sim.fmprof);
 
  if (config.sim.exe_log)   fclose(runtime.sim.fexe_log);
 
  if (runtime.vapi.enabled)  vapi_done ();
 
  done_memory_table ();
 
  exit(0);
 
}
 
 
 
/* change result if item found in linestr */
 
static void addr_from_linestr(char *linestr, int index, int *result)
 
{
 
        char item[20];
 
        strtoken(linestr, item, index);
 
        if (strlen(item))
 
        {
 
        if (item[0] == '_')
 
                        *result = eval_label(item);
 
        else
 
                        *result = strtoul(item, NULL, 0);
 
        };
 
};
 
 
 
/* Executes jobs in time queue */
 
static inline void do_scheduler ()
 
{
 
  void (*func)(int);
 
  int param;
 
 
 
  /* Execute all jobs till now */
 
  do {
 
    func = SCHED_PEEK().func;
 
    param = SCHED_PEEK().param;
 
    SCHED_REMOVE();
 
    func (param);
 
  } while (runtime.sim.cycles >= SCHED_PEEK().time);
 
}
 
 
 
/* Main function */
 
int main(argc, argv)
 
     int argc;
 
     char *argv[];
 
{
 
  char *linestr;
 
  char item1[500], b2[500], prev_str[500] = "";
 
  char *redirstr;
 
  int hush = 0;
 
  int first_prompt = 1;
 
 
 
  srand(getpid());
 
  init_defconfig();
 
  if (parse_args(argc, argv)) {
 
    PRINTF("Usage: %s [options] <filename>\n", argv[0]);
 
    PRINTF("Options:\n");
 
    PRINTF(" -v                   version and copyright note\n");
 
    PRINTF(" -i                   enable interactive command prompt\n");
 
    PRINTF(" --nosrv              do not launch JTAG proxy server\n"); /* (CZ) */
 
    PRINTF(" --srv <n>            launch JTAG proxy server on port <n>; [random]\n"); /* (CZ) */
 
#if !FAST_SIM
 
    PRINTF(" -f or --file         load script file [sim.cfg]\n");
 
    PRINTF(" --enable-profile     enable profiling.\n");
 
    PRINTF(" --enable-mprofile    enable memory profiling.\n");
 
#endif
 
    PRINTF(" --output-cfg         prints C structure of current\n");
 
    PRINTF("                      configuration to standard output\n");
 
    PRINTF("\nor   : %s ", argv[0]);
 
    mp_help ();
 
    PRINTF("\nor   : %s ", argv[0]);
 
    prof_help ();
 
    exit(-1);
 
  }
 
 
 
#ifdef HAVE_LIBREADLINE
 
  initialize_readline (); /* Bind our completer. */
 
#endif
 
 
 
#if !FAST_SIM
 
  /* Read configuration file.  */
 
  if (!runtime.sim.script_file_specified)
 
    read_script_file ("sim.cfg");
 
 
 
  /* Overide parameters with command line ones */
 
  if (runtime.simcmd.profile) config.sim.profile = 1;
 
  if (runtime.simcmd.mprofile) config.sim.mprofile = 1;
 
 
 
  if (!runtime.sim.script_file_specified && config.sim.verbose)
 
    fprintf (stderr, "WARNING: No config file read, assuming default configuration.\n");
 
#else
 
  PRINTF ("\n\tNOTE: running fast sim with fixed configuration!\n\n");
 
#endif
 
  if (runtime.sim.output_cfg) {
 
    output_cfg (stdout);
 
    exit (0);
 
  }
 
  print_config();
 
  sim_init ();
 
  signal(SIGINT, ctrl_c);
 
 
 
  while(1) {
 
    if (runtime.sim.iprompt) {
 
      if (config.debug.gdb_enabled)
 
        {
 
          PRINTF ("(sim) ");
 
          fflush(stdout);
 
          HandleServerSocket(true);  /* block & check_stdin = true */
 
        }
 
#ifdef HAVE_LIBREADLINE
 
      /* Must disable readline in new mode. It isn't compatible
 
         with non blocking environments */
 
wait_input:
 
      if(!config.debug.gdb_enabled)
 
        linestr = readline("(sim) ");
 
      else
 
        linestr = fgets(b2, sizeof b2, stdin);
 
#else
 
      if(!config.debug.gdb_enabled)
 
        PRINTF ("(sim) ");
 
wait_input:
 
      linestr = fgets(b2, sizeof b2, stdin);
 
#endif
 
    } else
 
      strcpy(linestr = b2, "run -1 hush");
 
 
 
    if (!linestr) {
 
      usleep (1000);
 
      goto wait_input;
 
    }
 
    linestr = stripwhite (linestr);
 
 
 
#ifdef HAVE_LIBREADLINE
 
    /* Readline only works in the old mode */
 
    if(!server_fd)
 
      {
 
        if (strlen(linestr) == 0) {
 
          char *l = repeat_last_command ();
 
 
 
          if (l) {
 
      free (linestr);
 
      linestr = l;
 
          }
 
        }
 
 
 
        if (*linestr) {
 
          add_history (linestr);
 
        }
 
      }
 
#endif /* HAVE_LIBREADLINE */
 
 
 
    if (redirstr = strstr(linestr, ">")) {
 
      *redirstr = '\0';
 
      strtoken(&redirstr[1], item1, 1);
 
      runtime.sim.fout = fopen(item1, "w+");
 
      if (!runtime.sim.fout) runtime.sim.fout = stdout;
 
    }
 
 
 
    if (linestr[0] == '\n')
 
      strcpy (linestr, &prev_str[0]);
 
    else
 
      strcpy (&prev_str[0], linestr);
 
 
 
    strtoken(linestr, item1, 1);
 
    if (strcmp(item1, "q") == 0) {  /* quit */
 
      PRINTF ("\n");
 
      sim_done ();
 
    } else
 
    if (strcmp(item1, "help") == 0) /* help */
 
      help();
 
    else
 
    if (strcmp(item1, "t") == 0) {  /* trace */
 
      runtime.sim.cont_run = 1;
 
    } else
 
    if (strcmp(item1, "dm") == 0) { /* dump memory */
 
      char item2[20];
 
      char item3[20];
 
      static int from = 0, to = 0;
 
 
 
      strtoken(linestr, item2, 2);
 
      strtoken(linestr, item3, 3);
 
 
 
      if (strlen(item2)) {
 
        if (item2[0] == '_')
 
          from = eval_label(item2);
 
        else
 
          from = strtoul(item2, NULL, 0);
 
        to = from + 0x40;
 
      }
 
      if (strlen(item3))
 
        to = strtoul(item3, NULL, 0);
 
      dumpmemory(from, to, 0, 1);
 
            PRINTF("\n");
 
    } else
 
    if (strcmp(item1, "dv") == 0) {/* dump memory as verilog*/
 
      char item2[20];
 
      char item3[20];
 
      char item4[20];
 
      static int from = 0, to = 0;
 
 
 
      strtoken(linestr, item2, 2);
 
      strtoken(linestr, item3, 3);
 
      strtoken(linestr, item4, 4);
 
 
 
      if (strlen(item2)) {
 
        if (item2[0] == '_')
 
          from = eval_label(item2);
 
        else
 
          from = strtoul(item2, NULL, 0);
 
        to = from + 0x40;
 
      }
 
      if (strlen(item3))
 
        to = strtoul(item3, NULL, 0);
 
      if (!strlen(item4))
 
        strcpy(item4, "or1k_mem");
 
      dumpverilog(item4, from, to);
 
        PRINTF("\n");
 
    } else
 
    if (strcmp(item1, "dh") == 0) {/* dump memory as hex*/
 
      char item2[20];
 
      char item3[20];
 
      static int from = 0, to = 0;
 
 
 
      strtoken(linestr, item2, 2);
 
      strtoken(linestr, item3, 3);
 
 
 
      if (strlen(item2)) {
 
        if (item2[0] == '_')
 
          from = eval_label(item2);
 
        else
 
          from = strtoul(item2, NULL, 0);
 
        to = from + 0x40;
 
      }
 
      if (strlen(item3))
 
        to = strtoul(item3, NULL, 0);
 
      dumphex(from, to);
 
        PRINTF("\n");
 
    } else
 
    if (strcmp(item1, "pm") == 0) { /* patch memory */
 
      char item2[20];
 
      char item3[20];
 
      static int addr = 0;
 
      int breakpoint = 0;
 
 
 
      strtoken(linestr, item2, 2);
 
      strtoken(linestr, item3, 3);
 
      if (strlen(item2))
 
        if (item2[0] == '_')
 
          addr = eval_label(item2);
 
        else
 
          addr = strtoul(item2, NULL, 0);
 
      set_mem32(addr, strtoul(item3, NULL, 0), &breakpoint);
 
    } else
 
    if (strcmp(item1, "cm") == 0) {      /* copy memory 2004-01-20 hpanther*/
 
          static int from=0, to=0, size=0;
 
      int i;
 
      addr_from_linestr(linestr, 2, &from);
 
      addr_from_linestr(linestr, 3, &to);
 
      addr_from_linestr(linestr, 4, &size);
 
          for(i=0; i<size; i+=4)
 
            setsim_mem32(to+i, evalsim_mem32(from+i));
 
    } else
 
    if (strcmp(item1, "pr") == 0) { /* patch regs */
 
      char item2[20];
 
      char item3[20];
 
 
 
      strtoken(linestr, item2, 2);
 
      strtoken(linestr, item3, 3);
 
      setsim_reg32(strtoul(item2, NULL,0), strtoul(item3, NULL, 0));
 
    } else
 
    if (strcmp(item1, "pc") == 0) { /* patch PC */
 
      char item2[20];
 
 
 
      strtoken(linestr, item2, 2);
 
      pc = strtoul(item2, NULL, 0);
 
    } else
 
    if (strcmp(item1, "breaks") == 0) { /* print breakpoints */
 
        print_breakpoints();
 
    } else
 
    if (strcmp(item1, "break") == 0) {  /* set/clear breakpoint */
 
      char item2[20];
 
      char *p;
 
      unsigned long addr;
 
      strtoken(linestr, item2, 2);
 
      addr = strtoul(item2, &p, 0);
 
      if (*p) {
 
        struct label_entry *l = find_label (item2);
 
        if (l) {
 
          addr = l->addr;
 
        } else addr = 0xffffffff;
 
      }
 
      if (addr != 0xffffffff) set_insnbrkpoint(addr);
 
      else PRINTF ("'%s' is invalid address!\n");
 
    } else
 
    if (strcmp(item1, "r") == 0) {  /* dump regs */
 
      dumpreg();
 
    } else
 
    if (strcmp(item1, "de") == 0) { /* reset simulator */
 
      char item2[20];
 
      char item3[20];
 
      static int from = 0, to = 0;
 
 
 
      strtoken(linestr, item2, 2);
 
      strtoken(linestr, item3, 3);
 
 
 
      if (strlen(item2)) {
 
        if (item2[0] == '_')
 
          from = eval_label(item2);
 
        else
 
          from = strtoul(item2, NULL, 0);
 
        to = from + 0x40;
 
      }
 
      if (strlen(item3))
 
        to = strtoul(item3, NULL, 0);
 
      debugmem(from, to);
 
      PRINTF("\n");
 
    } else
 
    if (strcmp(item1, "reset") == 0) {  /* reset simulator */
 
      sim_reset();
 
    } else
 
#if !FAST_SIM
 
    if (strcmp(item1, "debug") == 0) {  /* debug mode */
 
      config.sim.debug ^= 1;
 
    } else
 
#endif
 
    if (strcmp(item1, "hist") == 0) { /* dump history */
 
      int i;
 
      for(i = HISTEXEC_LEN; i; i--)
 
        dumpmemory(histexec[i - 1], histexec[i - 1] + 4, 1, 1);
 
      PRINTF("\n");
 
    } else
 
    if (strcmp(item1, "run") == 0) { /* run */
 
      char item2[20];
 
      char item3[20];
 
 
 
      strtoken(linestr, item2, 2);
 
      strtoken(linestr, item3, 3);
 
      if (strcmp(item3, "hush") == 0)
 
        hush = 1;
 
      else
 
        hush = 0;
 
      runtime.sim.cont_run = strtol(item2, NULL, 0);
 
    } else
 
    if(!strcmp(item1, "stall")) { /* Added by CZ 210801 */
 
      set_stall_state (1);
 
      runtime.sim.iprompt = 0;
 
      runtime.sim.cont_run = -1;
 
      hush = 1;
 
    } else
 
    if (strcmp(item1, "stats") == 0) { /* stats */
 
      char item2[20];
 
      int i = 0;
 
 
 
      strtoken(linestr, item2, 2);
 
      if (strcmp(item2, "clear") == 0) {
 
        initstats();
 
        PRINTF("Cleared.\n");
 
      } else {
 
        i = strtoul(item2, NULL, 0);
 
        printstats(i);
 
      }
 
    } else
 
    if (strcmp(item1, "info") == 0) /* configuration info */
 
      sim_info ();
 
    else
 
#if !FAST_SIM
 
    if (strcmp (item1, "profiler") == 0) { /* run profiler utility */
 
      char *argv[10];
 
      int argc = tokenize_line (linestr, argv, 10);
 
      main_profiler (argc, argv);
 
    } else
 
    if (strcmp (item1, "mprofiler") == 0) { /* run mprofiler utility */
 
      char *argv[10];
 
      int argc = tokenize_line (linestr, argv, 10);
 
      main_mprofiler (argc, argv);
 
    } else
 
    if (strcmp (item1, "cuc") == 0) { /* run Custom Unit Compiler */
 
      main_cuc (runtime.sim.filename);
 
    } else
 
    if (strcmp(item1, "set") == 0) { /* configuration info */
 
      char *s = linestr;
 
      int i;
 
      extern section;
 
      extern struct section sections[];
 
      while (*s != ' ' && *s) s++;
 
      set_config_command (s);
 
    } else
 
#endif /* !FAST_SIM */
 
      PRINTF("%s: Unknown command.\n", linestr);
 
 
 
    { /* Needed by execution */
 
      extern int do_stats;
 
      do_stats = config.cpu.dependstats || config.cpu.superscalar || config.cpu.dependstats
 
              || config.sim.history || config.sim.exe_log;
 
    }
 
 
 
    /* MM: 'run -1' means endless execution.  */
 
    while(runtime.sim.cont_run) {
 
      IFF (config.debug.enabled) {
 
                  du_clock();   // reset watchpoints etc.
 
        if (runtime.cpu.stalled) {
 
          if(config.debug.gdb_enabled) {
 
            BlockJTAG();
 
            HandleServerSocket(false);
 
          } else {
 
            fprintf (stderr, "WARNING: CPU stalled and gdb connection not enabled.");
 
            runtime.sim.cont_run = 0;
 
          }
 
          continue;
 
        }
 
      }
 
 
 
      /* Each cycle has counter of mem_cycles; this value is joined with cycles
         at the end of the cycle; no sim originated memory accesses should be
         at the end of the cycle; no sim originated memory accesses should be
         performed inbetween. */
         performed inbetween. */
      runtime.sim.mem_cycles = 0;
      runtime.sim.mem_cycles = 0;
      if (!config.pm.enabled || !testsprbits(SPR_PMR, SPR_PMR_DME | SPR_PMR_SME)) {
      if (!config.pm.enabled || !testsprbits(SPR_PMR, SPR_PMR_DME | SPR_PMR_SME)) {
        if (runtime.sim.cont_run > 0) runtime.sim.cont_run--;
        if (runtime.sim.cont_run > 0) runtime.sim.cont_run--;
        pic_clock ();
        pic_clock ();
        if (cpu_clock ()) break;
        if (cpu_clock ()) break;
        if (config.dc.enabled) dc_clock();
        if (config.dc.enabled) dc_clock();
        if (config.ic.enabled) ic_clock();
        if (config.ic.enabled) ic_clock();
      }
      }
 
 
      if (config.dmas) dma_clock();
      if (config.dmas) dma_clock();
      if (config.ethernets) eth_clock();
      if (config.ethernets) eth_clock();
      if (config.ngpios) gpio_clock();
      if (config.ngpios) gpio_clock();
      if (config.vapi.enabled && runtime.vapi.enabled) vapi_check();
      if (config.vapi.enabled && runtime.vapi.enabled) vapi_check();
      if (config.debug.gdb_enabled) HandleServerSocket(false); /* block & check_stdin = false */
      if (config.debug.gdb_enabled) HandleServerSocket(false); /* block & check_stdin = false */
      IFF(config.debug.enabled)
      IFF(config.debug.enabled)
        if (testsprbits(SPR_DMR1, SPR_DMR1_ST)) set_stall_state (1);
        if (testsprbits(SPR_DMR1, SPR_DMR1_ST)) set_stall_state (1);
 
 
      runtime.sim.cycles += runtime.sim.mem_cycles;
      runtime.sim.cycles += runtime.sim.mem_cycles;
      if (runtime.sim.cycles >= SCHED_PEEK().time) do_scheduler ();
      if (runtime.sim.cycles >= SCHED_PEEK().time) do_scheduler ();
      if (!hush) dumpreg();
      if (!hush) dumpreg();
    }
    }
    hush = 0;
    hush = 0;
    fflush(stdout);
    fflush(stdout);
    runtime.sim.fout = stdout;
    runtime.sim.fout = stdout;
 
 
    if (!runtime.sim.iprompt)  /* non-interactive quit */
    if (!runtime.sim.iprompt)  /* non-interactive quit */
      sim_done();
      sim_done();
 
 
#ifdef HAVE_LIBREADLINE
 
    if (linestr)
 
      free (linestr);
 
#endif
 
 
 
  }
 
  sim_done();
 
}
 
 
 
#ifdef HAVE_LIBREADLINE
 
char *command_generator ();
 
char **sim_completion ();
 
 
 
/* Tell the GNU readline library how to complete.  We want to try to complete
#ifdef HAVE_LIBREADLINE
 
    if (linestr)
 
      free (linestr);
 
#endif
 
 
 
  }
 
  sim_done();
 
}
 
 
 
#ifdef HAVE_LIBREADLINE
 
char *command_generator ();
 
char **sim_completion ();
 
 
 
/* Tell the GNU readline library how to complete.  We want to try to complete
   on command names if this is the first word in the line, or on filenames
   on command names if this is the first word in the line, or on filenames
   if not. */
   if not. */
void initialize_readline ()
void initialize_readline ()
{
{
  /* Allow conditional parsing of the ~/.inputrc file. */
  /* Allow conditional parsing of the ~/.inputrc file. */
  rl_readline_name = "or1ksim";
  rl_readline_name = "or1ksim";
 
 
  /* Tell the completer that we want a crack first. */
 
  rl_attempted_completion_function = (CPPFunction *)sim_completion;
 
}
 
 
 
/* Attempt to complete on the contents of TEXT.  START and END bound the
  /* Tell the completer that we want a crack first. */
 
  rl_attempted_completion_function = (CPPFunction *)sim_completion;
 
}
 
 
 
/* Attempt to complete on the contents of TEXT.  START and END bound the
   region of rl_line_buffer that contains the word to complete.  TEXT is
   region of rl_line_buffer that contains the word to complete.  TEXT is
   the word to complete.  We can use the entire contents of rl_line_buffer
   the word to complete.  We can use the entire contents of rl_line_buffer
   in case we want to do some simple parsing.  Return the array of matches,
   in case we want to do some simple parsing.  Return the array of matches,
   or NULL if there aren't any. */
   or NULL if there aren't any. */
char **
char **
sim_completion (text, start, end)
sim_completion (text, start, end)
     char *text;
     char *text;
     int start, end;
     int start, end;
{
{
  char **matches;
  char **matches;
 
 
  matches = (char **)NULL;
  matches = (char **)NULL;
 
 
  /* If this word is at the start of the line, then it is a command
  /* If this word is at the start of the line, then it is a command
     to complete.  Otherwise it is the name of a file in the current
     to complete.  Otherwise it is the name of a file in the current
     directory. */
     directory. */
  if (start == 0)
  if (start == 0)
    matches = completion_matches (text, command_generator);
    matches = completion_matches (text, command_generator);
 
 
  return (matches);
  return (matches);
}
}
 
 
/* Generator function for command completion.  STATE lets us know whether
/* Generator function for command completion.  STATE lets us know whether
   to start from scratch; without any state (i.e. STATE == 0), then we
   to start from scratch; without any state (i.e. STATE == 0), then we
   start at the top of the list. */
   start at the top of the list. */
char *
char *
command_generator (text, state)
command_generator (text, state)
     char *text;
     char *text;
     int state;
     int state;
{
{
  static int list_index, len;
  static int list_index, len;
  char *name;
  char *name;
 
 
  /* If this is a new word to complete, initialize now.  This includes
  /* If this is a new word to complete, initialize now.  This includes
     saving the length of TEXT for efficiency, and initializing the index
     saving the length of TEXT for efficiency, and initializing the index
     variable to 0. */
 
  if (!state)
 
    {
 
      list_index = 0;
 
      len = strlen (text);
 
    }
 
 
 
  /* Return the next name which partially matches from the command list. */
 
  while (name = sim_commands[list_index])
 
    {
 
      list_index++;
 
 
 
      if (strncmp (name, text, len) == 0)
 
        return (dupstr(name));
 
    }
 
 
 
  /* If no names matched, then return NULL. */
 
  return ((char *)NULL);
 
}
 
 
 
/* Repeats the last command.  */
 
char *
 
repeat_last_command ()
 
{
 
  int offset = where_history ();
 
  HIST_ENTRY *hist;
 
 
 
  if (hist = history_get (offset))
 
    return dupstr (hist->line);
 
  return 0;
 
}
 
 
 
#endif
 
 
 
extern char *disassembled;
 
void debugmem( unsigned long from, unsigned long to )
 
{
 
  int i;
 
  PRINTF("starting to dump mem...\n");
 
  for(i=from; i<to; ) {
 
    struct label_entry *entry;
 
    unsigned int _insn;
 
    PRINTF("i=%x :: ", i);
 
 
 
    if (verify_memoryarea(i) && (entry = get_label(i)))
 
      PRINTF("label: %s |", entry->name);
 
 
 
    iqueue[0].insn = _insn = evalsim_mem32(i);
 
    iqueue[0].insn_index = insn_decode(_insn);
 
    disassemble_insn (_insn);
 
    PRINTF("%08x %s\n", _insn, disassembled);
 
    i += insn_len( iqueue[0].insn_index );
 
  }
 
}
 
 
 
 No newline at end of file
 No newline at end of file
 
     variable to 0. */
 
  if (!state)
 
    {
 
      list_index = 0;
 
      len = strlen (text);
 
    }
 
 
 
  /* Return the next name which partially matches from the command list. */
 
  while (name = sim_commands[list_index])
 
    {
 
      list_index++;
 
 
 
      if (strncmp (name, text, len) == 0)
 
        return (dupstr(name));
 
    }
 
 
 
  /* If no names matched, then return NULL. */
 
  return ((char *)NULL);
 
}
 
 
 
/* Repeats the last command.  */
 
char *
 
repeat_last_command ()
 
{
 
  int offset = where_history ();
 
  HIST_ENTRY *hist;
 
 
 
  if (hist = history_get (offset))
 
    return dupstr (hist->line);
 
  return 0;
 
}
 
 
 
#endif
 
 
 
extern char *disassembled;
 
void debugmem( unsigned long from, unsigned long to )
 
{
 
  int i;
 
  PRINTF("starting to dump mem...\n");
 
  for(i=from; i<to; ) {
 
    struct label_entry *entry;
 
    unsigned int _insn;
 
    PRINTF("i=%x :: ", i);
 
 
 
    if (verify_memoryarea(i) && (entry = get_label(i)))
 
      PRINTF("label: %s |", entry->name);
 
 
 
    iqueue[0].insn = _insn = evalsim_mem32(i);
 
    iqueue[0].insn_index = insn_decode(_insn);
 
    disassemble_insn (_insn);
 
    PRINTF("%08x %s\n", _insn, disassembled);
 
    i += insn_len( iqueue[0].insn_index );
 
  }
 
}
 
 
 No newline at end of file
 No newline at end of file

powered by: WebSVN 2.1.0

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