/[gxemul]/trunk/src/emul.c
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /trunk/src/emul.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 24 by dpavlin, Mon Oct 8 16:19:56 2007 UTC revision 30 by dpavlin, Mon Oct 8 16:20:40 2007 UTC
# Line 25  Line 25 
25   *  SUCH DAMAGE.   *  SUCH DAMAGE.
26   *   *
27   *   *
28   *  $Id: emul.c,v 1.254 2006/06/22 13:22:40 debug Exp $   *  $Id: emul.c,v 1.260 2006/07/26 23:21:47 debug Exp $
29   *   *
30   *  Emulation startup and misc. routines.   *  Emulation startup and misc. routines.
31   */   */
# Line 55  Line 55 
55  #include "x11.h"  #include "x11.h"
56    
57    
 extern int force_debugger_at_exit;  
   
58  extern int extra_argc;  extern int extra_argc;
59  extern char **extra_argv;  extern char **extra_argv;
60    
61  extern int verbose;  extern int verbose;
62  extern int quiet_mode;  extern int quiet_mode;
63    extern int force_debugger_at_exit;
64    extern int single_step;
65    extern int old_show_trace_tree;
66    extern int old_instruction_trace;
67    extern int old_quiet_mode;
68    extern int quiet_mode;
69    
70  extern struct emul *debugger_emul;  extern struct emul *debugger_emul;
71  extern struct diskimage *diskimages[];  extern struct diskimage *diskimages[];
# Line 1267  void emul_machine_setup(struct machine * Line 1271  void emul_machine_setup(struct machine *
1271                          break;                          break;
1272    
1273                  case ARCH_SH:                  case ARCH_SH:
1274                          if (cpu->cd.sh.bits == 32)                          if (cpu->cd.sh.cpu_type.bits == 32)
1275                                  cpu->pc &= 0xffffffffULL;                                  cpu->pc &= 0xffffffffULL;
1276                          cpu->pc &= ~1;                          cpu->pc &= ~1;
1277                          break;                          break;
# Line 1275  void emul_machine_setup(struct machine * Line 1279  void emul_machine_setup(struct machine *
1279                  case ARCH_SPARC:                  case ARCH_SPARC:
1280                          break;                          break;
1281    
1282                    case ARCH_TRANSPUTER:
1283                            cpu->pc &= 0xffffffffULL;
1284                            break;
1285    
1286                  case ARCH_X86:                  case ARCH_X86:
1287                          /*                          /*
1288                           *  NOTE: The toc field is used to indicate an ELF32                           *  NOTE: The toc field is used to indicate an ELF32
# Line 1328  void emul_machine_setup(struct machine * Line 1336  void emul_machine_setup(struct machine *
1336                  useremul_setup(cpu, n_load, load_names);                  useremul_setup(cpu, n_load, load_names);
1337    
1338          /*  Startup the bootstrap CPU:  */          /*  Startup the bootstrap CPU:  */
1339          cpu->bootstrap_cpu_flag = 1;          cpu->running = 1;
         cpu->running            = 1;  
1340    
1341          /*  ... or pause all CPUs, if start_paused is set:  */          /*  ... or pause all CPUs, if start_paused is set:  */
1342          if (m->start_paused) {          if (m->start_paused) {
# Line 1577  void emul_run(struct emul **emuls, int n Line 1584  void emul_run(struct emul **emuls, int n
1584          while (go) {          while (go) {
1585                  go = 0;                  go = 0;
1586    
1587                  x11_check_event(emuls, n_emuls);                  /*  Flush X11 and serial console output every now and then:  */
1588                    if (emuls[0]->machines[0]->ninstrs >
1589                  for (i=0; i<n_emuls; i++) {                      emuls[0]->machines[0]->ninstrs_flush + (1<<19)) {
1590                          e = emuls[i];                          x11_check_event(emuls, n_emuls);
1591                          if (e == NULL)                          console_flush();
1592                                  continue;                          emuls[0]->machines[0]->ninstrs_flush =
1593                                emuls[0]->machines[0]->ninstrs;
1594                          for (j=0; j<e->n_machines; j++) {                  }
1595                                  if (e->machines[j]->gdb.port > 0)  
1596                                          debugger_gdb_check_incoming(                  if (emuls[0]->machines[0]->ninstrs >
1597                                              e->machines[j]);                      emuls[0]->machines[0]->ninstrs_show + (1<<25)) {
1598                            emuls[0]->machines[0]->ninstrs_since_gettimeofday +=
1599                                  /*  TODO: cpu_run() is a strange name, since                              (emuls[0]->machines[0]->ninstrs -
1600                                      there can be multiple cpus in a machine  */                               emuls[0]->machines[0]->ninstrs_show);
1601                                  anything = cpu_run(e, e->machines[j]);                          cpu_show_cycles(emuls[0]->machines[0], 0);
1602                                  if (anything)                          emuls[0]->machines[0]->ninstrs_show =
1603                                          go = 1;                              emuls[0]->machines[0]->ninstrs;
1604                          }                  }
1605    
1606                    if (single_step == ENTER_SINGLE_STEPPING) {
1607                            /*  TODO: Cleanup!  */
1608                            old_instruction_trace =
1609                                emuls[0]->machines[0]->instruction_trace;
1610                            old_quiet_mode = quiet_mode;
1611                            old_show_trace_tree =
1612                                emuls[0]->machines[0]->show_trace_tree;
1613                            emuls[0]->machines[0]->instruction_trace = 1;
1614                            emuls[0]->machines[0]->show_trace_tree = 1;
1615                            quiet_mode = 0;
1616                            single_step = SINGLE_STEPPING;
1617                    }
1618    
1619                    if (single_step == SINGLE_STEPPING)
1620                            debugger();
1621    
1622                    e = emuls[0];   /*  Note: Only 1 emul supported now.  */
1623    
1624                    for (j=0; j<e->n_machines; j++) {
1625                            if (e->machines[j]->gdb.port > 0)
1626                                    debugger_gdb_check_incoming(e->machines[j]);
1627    
1628                            anything = machine_run(e->machines[j]);
1629                            if (anything)
1630                                    go = 1;
1631                  }                  }
1632          }          }
1633    

Legend:
Removed from v.24  
changed lines
  Added in v.30

  ViewVC Help
Powered by ViewVC 1.1.26