/[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 6 by dpavlin, Mon Oct 8 16:18:11 2007 UTC revision 26 by dpavlin, Mon Oct 8 16:20:10 2007 UTC
# Line 1  Line 1 
1  /*  /*
2   *  Copyright (C) 2003-2005  Anders Gavare.  All rights reserved.   *  Copyright (C) 2003-2006  Anders Gavare.  All rights reserved.
3   *   *
4   *  Redistribution and use in source and binary forms, with or without   *  Redistribution and use in source and binary forms, with or without
5   *  modification, are permitted provided that the following conditions are met:   *  modification, are permitted provided that the following conditions are met:
# Line 25  Line 25 
25   *  SUCH DAMAGE.   *  SUCH DAMAGE.
26   *   *
27   *   *
28   *  $Id: emul.c,v 1.203 2005/06/03 07:39:27 debug Exp $   *  $Id: emul.c,v 1.255 2006/06/24 19:52:27 debug Exp $
29   *   *
30   *  Emulation startup and misc. routines.   *  Emulation startup and misc. routines.
31   */   */
# Line 39  Line 39 
39  #include <unistd.h>  #include <unistd.h>
40    
41  #include "arcbios.h"  #include "arcbios.h"
 #include "bintrans.h"  
42  #include "cpu.h"  #include "cpu.h"
43  #include "emul.h"  #include "emul.h"
44  #include "console.h"  #include "console.h"
45  #include "debugger.h"  #include "debugger.h"
46  #include "device.h"  #include "device.h"
47  #include "diskimage.h"  #include "diskimage.h"
48    #include "exec_elf.h"
49  #include "machine.h"  #include "machine.h"
50  #include "memory.h"  #include "memory.h"
51  #include "mips_cpu_types.h"  #include "mips_cpu_types.h"
# 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 69  extern struct diskimage *diskimages[]; Line 73  extern struct diskimage *diskimages[];
73  static char *diskimage_types[] = DISKIMAGE_TYPES;  static char *diskimage_types[] = DISKIMAGE_TYPES;
74    
75    
76    static void print_separator(void)
77    {
78            int i = 79;
79            while (i-- > 0)
80                    debug("-");
81            debug("\n");
82    }
83    
84    
85  /*  /*
86   *  add_dump_points():   *  add_dump_points():
87   *   *
# Line 95  static void add_dump_points(struct machi Line 108  static void add_dump_points(struct machi
108                          uint64_t addr;                          uint64_t addr;
109                          int res = get_symbol_addr(&m->symbol_context,                          int res = get_symbol_addr(&m->symbol_context,
110                              m->breakpoint_string[i], &addr);                              m->breakpoint_string[i], &addr);
111                          if (!res)                          if (!res) {
112                                  fprintf(stderr,                                  fprintf(stderr,
113                                      "WARNING! Breakpoint '%s' could not be"                                      "ERROR! Breakpoint '%s' could not be"
114                                          " parsed\n",                                          " parsed\n",
115                                      m->breakpoint_string[i]);                                      m->breakpoint_string[i]);
116                          else {                          } else {
117                                  dp = addr;                                  dp = addr;
118                                  string_flag = 1;                                  string_flag = 1;
119                          }                          }
# Line 111  static void add_dump_points(struct machi Line 124  static void add_dump_points(struct machi
124                   *  were automatically converted into the correct address.                   *  were automatically converted into the correct address.
125                   */                   */
126    
127                  if ((dp >> 32) == 0 && ((dp >> 31) & 1))                  if (m->arch == ARCH_MIPS) {
128                          dp |= 0xffffffff00000000ULL;                          if ((dp >> 32) == 0 && ((dp >> 31) & 1))
129                                    dp |= 0xffffffff00000000ULL;
130                    }
131    
132                  m->breakpoint_addr[i] = dp;                  m->breakpoint_addr[i] = dp;
133    
134                  debug("breakpoint %i: 0x%016llx", i, (long long)dp);                  debug("breakpoint %i: 0x%llx", i, (long long)dp);
135                  if (string_flag)                  if (string_flag)
136                          debug(" (%s)", m->breakpoint_string[i]);                          debug(" (%s)", m->breakpoint_string[i]);
137                  debug("\n");                  debug("\n");
# Line 148  static int iso_load_bootblock(struct mac Line 164  static int iso_load_bootblock(struct mac
164          int *n_loadp, char ***load_namesp)          int *n_loadp, char ***load_namesp)
165  {  {
166          char str[35];          char str[35];
167          int filenr, i, ofs, dirlen, res = 0, res2, iadd = 4;          int filenr, i, ofs, dirlen, res = 0, res2, iadd = DEBUG_INDENTATION;
168          int found_dir;          int found_dir;
169          uint64_t dirofs;          uint64_t dirofs;
170          uint64_t fileofs, filelen;          uint64_t fileofs, filelen;
# Line 157  static int iso_load_bootblock(struct mac Line 173  static int iso_load_bootblock(struct mac
173          char *p, *filename_orig;          char *p, *filename_orig;
174          char *filename = strdup(cpu->machine->boot_kernel_filename);          char *filename = strdup(cpu->machine->boot_kernel_filename);
175          unsigned char *filebuf = NULL;          unsigned char *filebuf = NULL;
176          char *tmpfilename = NULL;          char *tmpfname = NULL;
177          char **new_array;          char **new_array;
178          int tmpfile_handle;          int tmpfile_handle;
179    
# Line 203  static int iso_load_bootblock(struct mac Line 219  static int iso_load_bootblock(struct mac
219                  fatal("WARNING: Root directory length mismatch?\n");                  fatal("WARNING: Root directory length mismatch?\n");
220    
221          dirofs = (int64_t)(buf[0x8c] + (buf[0x8d] << 8) + (buf[0x8e] << 16) +          dirofs = (int64_t)(buf[0x8c] + (buf[0x8d] << 8) + (buf[0x8e] << 16) +
222              (buf[0x8f] << 24)) * 2048;              ((uint64_t)buf[0x8f] << 24)) * 2048;
223    
224          /*  debug("root = %i bytes at 0x%llx\n", dirlen, (long long)dirofs);  */          /*  debug("root = %i bytes at 0x%llx\n", dirlen, (long long)dirofs);  */
225    
# Line 224  static int iso_load_bootblock(struct mac Line 240  static int iso_load_bootblock(struct mac
240          dp = dirbuf; filenr = 1;          dp = dirbuf; filenr = 1;
241          p = NULL;          p = NULL;
242          while (dp < dirbuf + dirlen) {          while (dp < dirbuf + dirlen) {
243                  int i, nlen = dp[0];                  size_t i, nlen = dp[0];
244                  int x = dp[2] + (dp[3] << 8) + (dp[4] << 16) + (dp[5] << 24);                  int x = dp[2] + (dp[3] << 8) + (dp[4] << 16) +
245                        ((uint64_t)dp[5] << 24);
246                  int y = dp[6] + (dp[7] << 8);                  int y = dp[6] + (dp[7] << 8);
247                  char direntry[65];                  char direntry[65];
248    
# Line 295  static int iso_load_bootblock(struct mac Line 312  static int iso_load_bootblock(struct mac
312          }          }
313    
314          for (;;) {          for (;;) {
315                  int len, i;                  size_t len, i;
316    
317                  /*  Too close to another sector? Then realign.  */                  /*  Too close to another sector? Then realign.  */
318                  if ((dirofs & 2047) + 70 > 2047) {                  if ((dirofs & 2047) + 70 > 2047) {
# Line 360  static int iso_load_bootblock(struct mac Line 377  static int iso_load_bootblock(struct mac
377          }          }
378    
379          fileofs = match_entry[2] + (match_entry[3] << 8) +          fileofs = match_entry[2] + (match_entry[3] << 8) +
380              (match_entry[4] << 16) + (match_entry[5] << 24);              (match_entry[4] << 16) + ((uint64_t)match_entry[5] << 24);
381          filelen = match_entry[10] + (match_entry[11] << 8) +          filelen = match_entry[10] + (match_entry[11] << 8) +
382              (match_entry[12] << 16) + (match_entry[13] << 24);              (match_entry[12] << 16) + ((uint64_t)match_entry[13] << 24);
383          fileofs *= 2048;          fileofs *= 2048;
384    
385          /*  debug("filelen=%llx fileofs=%llx\n", (long long)filelen,          /*  debug("filelen=%llx fileofs=%llx\n", (long long)filelen,
# Line 375  static int iso_load_bootblock(struct mac Line 392  static int iso_load_bootblock(struct mac
392                  goto ret;                  goto ret;
393          }          }
394    
395          tmpfilename = strdup("/tmp/gxemul.XXXXXXXXXXXX");          tmpfname = strdup("/tmp/gxemul.XXXXXXXXXXXX");
   
         debug("extracting %lli bytes into %s\n",  
             (long long)filelen, tmpfilename);  
396    
397          res2 = diskimage_access(m, disk_id, disk_type, 0, fileofs, filebuf,          res2 = diskimage_access(m, disk_id, disk_type, 0, fileofs, filebuf,
398              filelen);              filelen);
# Line 387  static int iso_load_bootblock(struct mac Line 401  static int iso_load_bootblock(struct mac
401                  goto ret;                  goto ret;
402          }          }
403    
404          tmpfile_handle = mkstemp(tmpfilename);          tmpfile_handle = mkstemp(tmpfname);
405          if (tmpfile_handle < 0) {          if (tmpfile_handle < 0) {
406                  fatal("could not create %s\n", tmpfilename);                  fatal("could not create %s\n", tmpfname);
407                  exit(1);                  exit(1);
408          }          }
409          write(tmpfile_handle, filebuf, filelen);          write(tmpfile_handle, filebuf, filelen);
410          close(tmpfile_handle);          close(tmpfile_handle);
411    
412            debug("extracted %lli bytes into %s\n", (long long)filelen, tmpfname);
413    
414          /*  Add the temporary filename to the load_namesp array:  */          /*  Add the temporary filename to the load_namesp array:  */
415          (*n_loadp)++;          (*n_loadp)++;
416          new_array = malloc(sizeof(char *) * (*n_loadp));          new_array = malloc(sizeof(char *) * (*n_loadp));
# Line 408  static int iso_load_bootblock(struct mac Line 424  static int iso_load_bootblock(struct mac
424          /*  This adds a Backspace char in front of the filename; this          /*  This adds a Backspace char in front of the filename; this
425              is a special hack which causes the file to be removed once              is a special hack which causes the file to be removed once
426              it has been loaded.  */              it has been loaded.  */
427          tmpfilename = realloc(tmpfilename, strlen(tmpfilename) + 2);          tmpfname = realloc(tmpfname, strlen(tmpfname) + 2);
428          memmove(tmpfilename + 1, tmpfilename, strlen(tmpfilename) + 1);          memmove(tmpfname + 1, tmpfname, strlen(tmpfname) + 1);
429          tmpfilename[0] = 8;          tmpfname[0] = 8;
430    
431          (*load_namesp)[*n_loadp - 1] = tmpfilename;          (*load_namesp)[*n_loadp - 1] = tmpfname;
432    
433          res = 1;          res = 1;
434    
# Line 434  ret: Line 450  ret:
450    
451    
452  /*  /*
453     *  apple_load_bootblock():
454     *
455     *  Try to load a kernel from a disk image with an Apple Partition Table.
456     *
457     *  TODO: This function uses too many magic offsets and so on; it should be
458     *  cleaned up some day. See http://www.awprofessional.com/articles/
459     *      article.asp?p=376123&seqNum=3&rl=1  for some info on the Apple
460     *  partition format.
461     *
462     *  Returns 1 on success, 0 on failure.
463     */
464    static int apple_load_bootblock(struct machine *m, struct cpu *cpu,
465            int disk_id, int disk_type, int *n_loadp, char ***load_namesp)
466    {
467            unsigned char buf[0x8000];
468            int res, partnr, n_partitions = 0, n_hfs_partitions = 0;
469            uint64_t hfs_start, hfs_length;
470    
471            res = diskimage_access(m, disk_id, disk_type, 0, 0x0, buf, sizeof(buf));
472            if (!res) {
473                    fatal("apple_load_bootblock: couldn't read the disk "
474                        "image. Aborting.\n");
475                    return 0;
476            }
477    
478            partnr = 0;
479            do {
480                    int start, length;
481                    int ofs = 0x200 * (partnr + 1);
482                    if (partnr == 0)
483                            n_partitions = buf[ofs + 7];
484                    start = ((uint64_t)buf[ofs + 8] << 24) + (buf[ofs + 9] << 16) +
485                        (buf[ofs + 10] << 8) + buf[ofs + 11];
486                    length = ((uint64_t)buf[ofs+12] << 24) + (buf[ofs + 13] << 16) +
487                        (buf[ofs + 14] << 8) + buf[ofs + 15];
488    
489                    debug("partition %i: '%s', type '%s', start %i, length %i\n",
490                        partnr, buf + ofs + 0x10, buf + ofs + 0x30,
491                        start, length);
492    
493                    if (strcmp((char *)buf + ofs + 0x30, "Apple_HFS") == 0) {
494                            n_hfs_partitions ++;
495                            hfs_start = 512 * start;
496                            hfs_length = 512 * length;
497                    }
498    
499                    /*  Any more partitions?  */
500                    partnr ++;
501            } while (partnr < n_partitions);
502    
503            if (n_hfs_partitions == 0) {
504                    fatal("Error: No HFS partition found! TODO\n");
505                    return 0;
506            }
507            if (n_hfs_partitions >= 2) {
508                    fatal("Error: Too many HFS partitions found! TODO\n");
509                    return 0;
510            }
511    
512            return 0;
513    }
514    
515    
516    /*
517   *  load_bootblock():   *  load_bootblock():
518   *   *
519   *  For some emulation modes, it is possible to boot from a harddisk image by   *  For some emulation modes, it is possible to boot from a harddisk image by
# Line 458  static int load_bootblock(struct machine Line 538  static int load_bootblock(struct machine
538                  return 0;                  return 0;
539    
540          switch (m->machine_type) {          switch (m->machine_type) {
541          case MACHINE_DEC:          case MACHINE_PMAX:
542                  /*                  /*
543                   *  The first few bytes of a disk contains information about                   *  The first few bytes of a disk contains information about
544                   *  where the bootblock(s) are located. (These are all 32-bit                   *  where the bootblock(s) are located. (These are all 32-bit
# Line 479  static int load_bootblock(struct machine Line 559  static int load_bootblock(struct machine
559                      minibuf, sizeof(minibuf));                      minibuf, sizeof(minibuf));
560    
561                  bootblock_loadaddr = minibuf[0x10] + (minibuf[0x11] << 8)                  bootblock_loadaddr = minibuf[0x10] + (minibuf[0x11] << 8)
562                    + (minibuf[0x12] << 16) + (minibuf[0x13] << 24);                    + (minibuf[0x12] << 16) + ((uint64_t)minibuf[0x13] << 24);
563    
564                  /*  Convert loadaddr to uncached:  */                  /*  Convert loadaddr to uncached:  */
565                  if ((bootblock_loadaddr & 0xf0000000ULL) != 0x80000000 &&                  if ((bootblock_loadaddr & 0xf0000000ULL) != 0x80000000 &&
# Line 490  static int load_bootblock(struct machine Line 570  static int load_bootblock(struct machine
570                  bootblock_loadaddr |= 0xffffffffa0000000ULL;                  bootblock_loadaddr |= 0xffffffffa0000000ULL;
571    
572                  bootblock_pc = minibuf[0x14] + (minibuf[0x15] << 8)                  bootblock_pc = minibuf[0x14] + (minibuf[0x15] << 8)
573                    + (minibuf[0x16] << 16) + (minibuf[0x17] << 24);                    + (minibuf[0x16] << 16) + ((uint64_t)minibuf[0x17] << 24);
574    
575                  bootblock_pc &= 0x0fffffffULL;                  bootblock_pc &= 0x0fffffffULL;
576                  bootblock_pc |= 0xffffffffa0000000ULL;                  bootblock_pc |= 0xffffffffa0000000ULL;
# Line 511  static int load_bootblock(struct machine Line 591  static int load_bootblock(struct machine
591                          }                          }
592    
593                          n_blocks = minibuf[0] + (minibuf[1] << 8)                          n_blocks = minibuf[0] + (minibuf[1] << 8)
594                            + (minibuf[2] << 16) + (minibuf[3] << 24);                            + (minibuf[2] << 16) + ((uint64_t)minibuf[3] << 24);
595    
596                          bootblock_offset = (minibuf[4] + (minibuf[5] << 8)                          bootblock_offset = (minibuf[4] + (minibuf[5] << 8) +
597                            + (minibuf[6] << 16) + (minibuf[7] << 24)) * 512;                            (minibuf[6]<<16) + ((uint64_t)minibuf[7]<<24)) * 512;
598    
599                          if (n_blocks < 1)                          if (n_blocks < 1)
600                                  break;                                  break;
# Line 585  static int load_bootblock(struct machine Line 665  static int load_bootblock(struct machine
665    
666          /*          /*
667           *  Try reading a kernel manually from the disk. The code here           *  Try reading a kernel manually from the disk. The code here
668           *  does not rely on machine-dependant boot blocks etc.           *  does not rely on machine-dependent boot blocks etc.
669           */           */
670          /*  ISO9660: (0x800 bytes at 0x8000)  */          /*  ISO9660: (0x800 bytes at 0x8000)  */
671          bootblock_buf = malloc(0x800);          bootblock_buf = malloc(0x800);
# Line 622  static int load_bootblock(struct machine Line 702  static int load_bootblock(struct machine
702                              n_loadp, load_namesp);                              n_loadp, load_namesp);
703          }          }
704    
705            if (retval != 0)
706                    goto ret_ok;
707    
708            /*  Apple parition table:  */
709            res = diskimage_access(m, boot_disk_id, boot_disk_type,
710                0, 0x0, bootblock_buf, 0x800);
711            if (!res) {
712                    fatal("Couldn't read the disk image. Aborting.\n");
713                    return 0;
714            }
715            if (bootblock_buf[0x000] == 'E' && bootblock_buf[0x001] == 'R' &&
716                bootblock_buf[0x200] == 'P' && bootblock_buf[0x201] == 'M') {
717                    /*  We can't load a kernel if the name
718                        isn't specified.  */
719                    if (cpu->machine->boot_kernel_filename == NULL ||
720                        cpu->machine->boot_kernel_filename[0] == '\0')
721                            fatal("\nApple partition table, but no kernel "
722                                "specified? (Use the -j option.)\n");
723                    else
724                            retval = apple_load_bootblock(m, cpu, boot_disk_id,
725                                boot_disk_type, n_loadp, load_namesp);
726            }
727    
728    ret_ok:
729          free(bootblock_buf);          free(bootblock_buf);
730          return retval;          return retval;
731  }  }
# Line 645  struct emul *emul_new(char *name) Line 749  struct emul *emul_new(char *name)
749    
750          /*  Sane default values:  */          /*  Sane default values:  */
751          e->n_machines = 0;          e->n_machines = 0;
752            e->next_serial_nr = 1;
753    
754          if (name != NULL) {          if (name != NULL) {
755                  e->name = strdup(name);                  e->name = strdup(name);
# Line 707  static void add_arc_components(struct ma Line 812  static void add_arc_components(struct ma
812    
813          len += 1048576 * m->memory_offset_in_mb;          len += 1048576 * m->memory_offset_in_mb;
814    
815          /*  NOTE/TODO: magic 12MB end of load program area  */          /*
816             *  NOTE/TODO: magic 12MB end of load program area
817             *
818             *  Hm. This breaks the old FreeBSD/MIPS snapshots...
819             */
820    #if 0
821          arcbios_add_memory_descriptor(cpu,          arcbios_add_memory_descriptor(cpu,
822              0x60000 + m->memory_offset_in_mb * 1048576,              0x60000 + m->memory_offset_in_mb * 1048576,
823              start-0x60000 - m->memory_offset_in_mb * 1048576,              start-0x60000 - m->memory_offset_in_mb * 1048576,
824              ARCBIOS_MEM_FreeMemory);              ARCBIOS_MEM_FreeMemory);
825    #endif
826          arcbios_add_memory_descriptor(cpu,          arcbios_add_memory_descriptor(cpu,
827              start, len, ARCBIOS_MEM_LoadedProgram);              start, len, ARCBIOS_MEM_LoadedProgram);
828    
# Line 804  static void add_arc_components(struct ma Line 915  static void add_arc_components(struct ma
915  void emul_machine_setup(struct machine *m, int n_load, char **load_names,  void emul_machine_setup(struct machine *m, int n_load, char **load_names,
916          int n_devices, char **device_names)          int n_devices, char **device_names)
917  {  {
         struct emul *emul;  
918          struct cpu *cpu;          struct cpu *cpu;
919          int i, iadd=4;          int i, iadd = DEBUG_INDENTATION;
920          uint64_t memory_amount, entrypoint = 0, gp = 0, toc = 0;          uint64_t memory_amount, entrypoint = 0, gp = 0, toc = 0;
921          int byte_order;          int byte_order;
922    
         emul = m->emul;  
   
923          debug("machine \"%s\":\n", m->name);          debug("machine \"%s\":\n", m->name);
924          debug_indentation(iadd);          debug_indentation(iadd);
925    
# Line 832  void emul_machine_setup(struct machine * Line 940  void emul_machine_setup(struct machine *
940    
941          m->cpu_family = cpu_family_ptr_by_number(m->arch);          m->cpu_family = cpu_family_ptr_by_number(m->arch);
942    
943            if (m->arch == ARCH_ALPHA)
944                    m->arch_pagesize = 8192;
945    
946          machine_memsize_fix(m);          machine_memsize_fix(m);
947    
948          /*          /*
# Line 852  void emul_machine_setup(struct machine * Line 963  void emul_machine_setup(struct machine *
963                  debug(" (offset by %iMB)", m->memory_offset_in_mb);                  debug(" (offset by %iMB)", m->memory_offset_in_mb);
964                  memory_amount += 1048576 * m->memory_offset_in_mb;                  memory_amount += 1048576 * m->memory_offset_in_mb;
965          }          }
966          m->memory = memory_new(memory_amount);          m->memory = memory_new(memory_amount, m->arch);
967          if (m->machine_type != MACHINE_USERLAND)          if (m->machine_type != MACHINE_USERLAND)
968                  debug("\n");                  debug("\n");
969    
# Line 879  void emul_machine_setup(struct machine * Line 990  void emul_machine_setup(struct machine *
990          }          }
991          memset(m->cpus, 0, sizeof(struct cpu *) * m->ncpus);          memset(m->cpus, 0, sizeof(struct cpu *) * m->ncpus);
992    
         /*  Initialize dynamic binary translation, if available:  */  
         if (m->bintrans_enable)  
                 bintrans_init(m, m->memory);  
   
993          debug("cpu0");          debug("cpu0");
994          if (m->ncpus > 1)          if (m->ncpus > 1)
995                  debug(" .. cpu%i", m->ncpus - 1);                  debug(" .. cpu%i", m->ncpus - 1);
996          debug(": ");          debug(": ");
997          for (i=0; i<m->ncpus; i++) {          for (i=0; i<m->ncpus; i++) {
998                  m->cpus[i] = cpu_new(m->memory, m, i, m->cpu_name);                  m->cpus[i] = cpu_new(m->memory, m, i, m->cpu_name);
999                  if (m->bintrans_enable)                  if (m->cpus[i] == NULL) {
1000                          bintrans_init_cpu(m->cpus[i]);                          fprintf(stderr, "Unable to create CPU object. "
1001                                "Aborting.");
1002                            exit(1);
1003                    }
1004          }          }
1005          debug("\n");          debug("\n");
1006    
1007    #if 0
1008            /*  Special case: The Playstation Portable has an additional CPU:  */
1009            if (m->machine_type == MACHINE_PSP) {
1010                    debug("cpu%i: ", m->ncpus);
1011                    m->cpus[m->ncpus] = cpu_new(m->memory, m,
1012                        0  /*  use 0 here to show info with debug()  */,
1013                        "Allegrex" /*  TODO  */);
1014                    debug("\n");
1015                    m->ncpus ++;
1016            }
1017    #endif
1018    
1019          if (m->use_random_bootstrap_cpu)          if (m->use_random_bootstrap_cpu)
1020                  m->bootstrap_cpu = random() % m->ncpus;                  m->bootstrap_cpu = random() % m->ncpus;
1021          else          else
# Line 905  void emul_machine_setup(struct machine * Line 1027  void emul_machine_setup(struct machine *
1027          if (m->userland_emul != NULL) {          if (m->userland_emul != NULL) {
1028                  useremul_name_to_useremul(cpu,                  useremul_name_to_useremul(cpu,
1029                      m->userland_emul, NULL, NULL, NULL);                      m->userland_emul, NULL, NULL, NULL);
1030                  cpu->memory_rw = userland_memory_rw;  
1031                    switch (m->arch) {
1032    #ifdef ENABLE_ALPHA
1033                    case ARCH_ALPHA:
1034                            cpu->memory_rw = alpha_userland_memory_rw;
1035                            break;
1036    #endif
1037                    default:cpu->memory_rw = userland_memory_rw;
1038                    }
1039          }          }
1040    
1041          if (m->use_x11)          if (m->use_x11)
# Line 936  void emul_machine_setup(struct machine * Line 1066  void emul_machine_setup(struct machine *
1066          }          }
1067    
1068          diskimage_dump_info(m);          diskimage_dump_info(m);
1069            console_debug_dump(m);
1070    
1071          /*  Load files (ROM code, boot code, ...) into memory:  */          /*  Load files (ROM code, boot code, ...) into memory:  */
1072          if (n_load == 0) {          if (n_load == 0) {
# Line 966  void emul_machine_setup(struct machine * Line 1097  void emul_machine_setup(struct machine *
1097                  }                  }
1098    
1099                  /*                  /*
1100                   *  Another special hack for temporary files; running gunzip                   *  gzipped files are automagically gunzipped:
1101                   *  on them, if they have a gzip header.  TODO: Change this                   *  NOTE/TODO: This isn't secure. system() is used.
                  *  into some kind of generic support for gzipped files!  
1102                   */                   */
1103                  tmp_f = fopen(name_to_load, "r");                  tmp_f = fopen(name_to_load, "r");
1104                  if (tmp_f != NULL) {                  if (tmp_f != NULL) {
# Line 976  void emul_machine_setup(struct machine * Line 1106  void emul_machine_setup(struct machine *
1106                          memset(buf, 0, sizeof(buf));                          memset(buf, 0, sizeof(buf));
1107                          fread(buf, 1, sizeof(buf), tmp_f);                          fread(buf, 1, sizeof(buf), tmp_f);
1108                          if (buf[0]==0x1f && buf[1]==0x8b) {                          if (buf[0]==0x1f && buf[1]==0x8b) {
1109                                  char *zz = malloc(strlen(name_to_load)*2 + 100);                                  size_t zzlen = strlen(name_to_load)*2 + 100;
1110                                    char *zz = malloc(zzlen);
1111                                  debug("gunziping %s\n", name_to_load);                                  debug("gunziping %s\n", name_to_load);
1112                                  sprintf(zz, "mv %s %s.gz", name_to_load,                                  /*
1113                                      name_to_load);                                   *  gzip header found.  If this was a file
1114                                  system(zz);                                   *  extracted from, say, a CDROM image, then it
1115                                  sprintf(zz, "gunzip %s.gz", name_to_load);                                   *  already has a temporary name. Otherwise we
1116                                  system(zz);                                   *  have to gunzip into a temporary file.
1117                                     */
1118                                    if (remove_after_load) {
1119                                            snprintf(zz, zzlen, "mv %s %s.gz",
1120                                                name_to_load, name_to_load);
1121                                            system(zz);
1122                                            snprintf(zz, zzlen, "gunzip %s.gz",
1123                                                name_to_load);
1124                                            system(zz);
1125                                    } else {
1126                                            /*  gunzip into new temp file:  */
1127                                            int tmpfile_handle;
1128                                            char *new_temp_name =
1129                                                strdup("/tmp/gxemul.XXXXXXXXXXXX");
1130                                            tmpfile_handle = mkstemp(new_temp_name);
1131                                            close(tmpfile_handle);
1132                                            snprintf(zz, zzlen, "gunzip -c '%s' > "
1133                                                "%s", name_to_load, new_temp_name);
1134                                            system(zz);
1135                                            name_to_load = new_temp_name;
1136                                            remove_after_load = 1;
1137                                    }
1138                                  free(zz);                                  free(zz);
1139                          }                          }
1140                          fclose(tmp_f);                          fclose(tmp_f);
1141                  }                  }
1142    
1143                    /*
1144                     *  Ugly (but usable) hack for Playstation Portable:  If the
1145                     *  filename ends with ".pbp" and the file contains an ELF
1146                     *  header, then extract the ELF file into a temporary file.
1147                     */
1148                    if (strlen(name_to_load) > 4 && strcasecmp(name_to_load +
1149                        strlen(name_to_load) - 4, ".pbp") == 0 &&
1150                        (tmp_f = fopen(name_to_load, "r")) != NULL) {
1151                            off_t filesize, j, found=0;
1152                            unsigned char *buf;
1153                            fseek(tmp_f, 0, SEEK_END);
1154                            filesize = ftello(tmp_f);
1155                            fseek(tmp_f, 0, SEEK_SET);
1156                            buf = malloc(filesize);
1157                            if (buf == NULL) {
1158                                    fprintf(stderr, "out of memory while trying"
1159                                        " to read %s\n", name_to_load);
1160                                    exit(1);
1161                            }
1162                            fread(buf, 1, filesize, tmp_f);
1163                            fclose(tmp_f);
1164                            /*  Search for the ELF header, from offset 1 (!):  */
1165                            for (j=1; j<filesize - 4; j++)
1166                                    if (memcmp(buf + j, ELFMAG, SELFMAG) == 0) {
1167                                            found = j;
1168                                            break;
1169                                    }
1170                            if (found != 0) {
1171                                    int tmpfile_handle;
1172                                    char *new_temp_name =
1173                                        strdup("/tmp/gxemul.XXXXXXXXXXXX");
1174                                    debug("extracting ELF from %s (offset 0x%x)\n",
1175                                        name_to_load, (int)found);
1176                                    tmpfile_handle = mkstemp(new_temp_name);
1177                                    write(tmpfile_handle, buf + found,
1178                                        filesize - found);
1179                                    close(tmpfile_handle);
1180                                    name_to_load = new_temp_name;
1181                                    remove_after_load = 1;
1182                            }
1183                    }
1184    
1185                  /*  Special things required _before_ loading the file:  */                  /*  Special things required _before_ loading the file:  */
1186                  switch (m->arch) {                  switch (m->arch) {
1187                  case ARCH_X86:                  case ARCH_X86:
# Line 1021  void emul_machine_setup(struct machine * Line 1215  void emul_machine_setup(struct machine *
1215                  cpu->pc = entrypoint;                  cpu->pc = entrypoint;
1216    
1217                  switch (m->arch) {                  switch (m->arch) {
1218    
1219                    case ARCH_ALPHA:
1220                            /*  For position-independent code:  */
1221                            cpu->cd.alpha.r[ALPHA_T12] = cpu->pc;
1222                            break;
1223    
1224                    case ARCH_ARM:
1225                            if (cpu->pc & 3) {
1226                                    fatal("ARM: lowest bits of pc set: TODO\n");
1227                                    exit(1);
1228                            }
1229                            cpu->pc &= 0xfffffffc;
1230                            break;
1231    
1232                    case ARCH_AVR:
1233                            cpu->pc &= 0xfffff;
1234                            if (cpu->pc & 1) {
1235                                    fatal("AVR: lowest bit of pc set: TODO\n");
1236                                    exit(1);
1237                            }
1238                            break;
1239    
1240                    case ARCH_HPPA:
1241                            break;
1242    
1243                    case ARCH_I960:
1244                            break;
1245    
1246                    case ARCH_IA64:
1247                            break;
1248    
1249                    case ARCH_M68K:
1250                            break;
1251    
1252                  case ARCH_MIPS:                  case ARCH_MIPS:
1253                          if ((cpu->pc >> 32) == 0                          if ((cpu->pc >> 32) == 0 && (cpu->pc & 0x80000000ULL))
                             && (cpu->pc & 0x80000000ULL))  
1254                                  cpu->pc |= 0xffffffff00000000ULL;                                  cpu->pc |= 0xffffffff00000000ULL;
1255    
1256                          cpu->cd.mips.gpr[MIPS_GPR_GP] = gp;                          cpu->cd.mips.gpr[MIPS_GPR_GP] = gp;
# Line 1039  void emul_machine_setup(struct machine * Line 1266  void emul_machine_setup(struct machine *
1266                              spec/x458.html for more info.  */                              spec/x458.html for more info.  */
1267                          cpu->cd.ppc.gpr[2] = toc;                          cpu->cd.ppc.gpr[2] = toc;
1268                          /*  TODO  */                          /*  TODO  */
1269                            if (cpu->cd.ppc.bits == 32)
1270                                    cpu->pc &= 0xffffffffULL;
1271                          break;                          break;
1272    
1273                  case ARCH_ALPHA:                  case ARCH_SH:
1274                  case ARCH_HPPA:                          if (cpu->cd.sh.bits == 32)
1275                  case ARCH_SPARC:                                  cpu->pc &= 0xffffffffULL;
1276                  case ARCH_URISC:                          cpu->pc &= ~1;
1277                          break;                          break;
1278    
1279                  case ARCH_ARM:                  case ARCH_SPARC:
                         cpu->pc &= 0xffffffff;  
1280                          break;                          break;
1281    
1282                  case ARCH_X86:                  case ARCH_X86:
# Line 1117  void emul_machine_setup(struct machine * Line 1345  void emul_machine_setup(struct machine *
1345          add_dump_points(m);          add_dump_points(m);
1346    
1347          /*  TODO: This is MIPS-specific!  */          /*  TODO: This is MIPS-specific!  */
1348          if (m->machine_type == MACHINE_DEC &&          if (m->machine_type == MACHINE_PMAX &&
1349              cpu->cd.mips.cpu_type.mmu_model == MMU3K)              cpu->cd.mips.cpu_type.mmu_model == MMU3K)
1350                  add_symbol_name(&m->symbol_context,                  add_symbol_name(&m->symbol_context,
1351                      0x9fff0000, 0x10000, "r2k3k_cache", 0);                      0x9fff0000, 0x10000, "r2k3k_cache", 0, 0);
1352    
1353          symbol_recalc_sizes(&m->symbol_context);          symbol_recalc_sizes(&m->symbol_context);
1354    
         if (m->max_random_cycles_per_chunk > 0)  
                 debug("using random cycle chunks (1 to %i cycles)\n",  
                     m->max_random_cycles_per_chunk);  
   
1355          /*  Special hack for ARC/SGI emulation:  */          /*  Special hack for ARC/SGI emulation:  */
1356          if ((m->machine_type == MACHINE_ARC ||          if ((m->machine_type == MACHINE_ARC ||
1357              m->machine_type == MACHINE_SGI) && m->prom_emulation)              m->machine_type == MACHINE_SGI) && m->prom_emulation)
# Line 1135  void emul_machine_setup(struct machine * Line 1359  void emul_machine_setup(struct machine *
1359    
1360          debug("starting cpu%i at ", m->bootstrap_cpu);          debug("starting cpu%i at ", m->bootstrap_cpu);
1361          switch (m->arch) {          switch (m->arch) {
1362    
1363            case ARCH_ARM:
1364                    /*  ARM cpus aren't 64-bit:  */
1365                    debug("0x%08x", (int)entrypoint);
1366                    break;
1367    
1368            case ARCH_AVR:
1369                    /*  Atmel AVR uses a 16-bit or 22-bit program counter:  */
1370                    debug("0x%04x", (int)entrypoint);
1371                    break;
1372    
1373          case ARCH_MIPS:          case ARCH_MIPS:
1374                  if (cpu->cd.mips.cpu_type.isa_level < 3 ||                  if (cpu->is_32bit) {
                     cpu->cd.mips.cpu_type.isa_level == 32) {  
1375                          debug("0x%08x", (int)m->cpus[                          debug("0x%08x", (int)m->cpus[
1376                              m->bootstrap_cpu]->pc);                              m->bootstrap_cpu]->pc);
1377                          if (cpu->cd.mips.gpr[MIPS_GPR_GP] != 0)                          if (cpu->cd.mips.gpr[MIPS_GPR_GP] != 0)
# Line 1152  void emul_machine_setup(struct machine * Line 1386  void emul_machine_setup(struct machine *
1386                                      cpu->cd.mips.gpr[MIPS_GPR_GP]);                                      cpu->cd.mips.gpr[MIPS_GPR_GP]);
1387                  }                  }
1388                  break;                  break;
1389    
1390          case ARCH_PPC:          case ARCH_PPC:
1391                  if (cpu->cd.ppc.bits == 32)                  if (cpu->cd.ppc.bits == 32)
1392                          debug("0x%08x", (int)entrypoint);                          debug("0x%08x", (int)entrypoint);
1393                  else                  else
1394                          debug("0x%016llx", (long long)entrypoint);                          debug("0x%016llx", (long long)entrypoint);
1395                  break;                  break;
         case ARCH_ARM:  
                 /*  ARM cpus aren't 64-bit:  */  
                 debug("0x%08x", (int)entrypoint);  
                 break;  
         case ARCH_URISC:  
                 {  
                         char tmps[100];  
                         unsigned char buf[sizeof(uint64_t)];  
   
                         cpu->memory_rw(cpu, m->memory, 0, buf, sizeof(buf),  
                             MEM_READ, CACHE_NONE | NO_EXCEPTIONS);  
   
                         entrypoint = 0;  
                         for (i=0; i<cpu->cd.urisc.wordlen/8; i++) {  
                                 entrypoint <<= 8;  
                                 if (cpu->byte_order == EMUL_BIG_ENDIAN)  
                                         entrypoint += buf[i];  
                                 else  
                                         entrypoint += buf[cpu->  
                                             cd.urisc.wordlen/8 - 1 - i];  
                         }  
1396    
                         sprintf(tmps, "0x%%0%illx", cpu->cd.urisc.wordlen / 4);  
                         debug(tmps, (long long)entrypoint);  
                         cpu->pc = entrypoint;  
                 }  
                 break;  
1397          case ARCH_X86:          case ARCH_X86:
1398                  debug("0x%04x:0x%llx", cpu->cd.x86.s[X86_S_CS],                  debug("0x%04x:0x%llx", cpu->cd.x86.s[X86_S_CS],
1399                      (long long)cpu->pc);                      (long long)cpu->pc);
1400                  break;                  break;
1401    
1402          default:          default:
1403                  debug("0x%016llx", (long long)cpu->pc);                  if (cpu->is_32bit)
1404                            debug("0x%08x", (int)cpu->pc);
1405                    else
1406                            debug("0x%016llx", (long long)cpu->pc);
1407          }          }
1408          debug("\n");          debug("\n");
1409    
# Line 1205  void emul_machine_setup(struct machine * Line 1418  void emul_machine_setup(struct machine *
1418   */   */
1419  void emul_dumpinfo(struct emul *e)  void emul_dumpinfo(struct emul *e)
1420  {  {
1421          int j, nm, iadd = 4;          int j, nm, iadd = DEBUG_INDENTATION;
1422    
1423          if (e->net != NULL)          if (e->net != NULL)
1424                  net_dumpinfo(e->net);                  net_dumpinfo(e->net);
# Line 1234  void emul_dumpinfo(struct emul *e) Line 1447  void emul_dumpinfo(struct emul *e)
1447   */   */
1448  void emul_simple_init(struct emul *emul)  void emul_simple_init(struct emul *emul)
1449  {  {
1450          int iadd=4;          int iadd = DEBUG_INDENTATION;
1451          struct machine *m;          struct machine *m;
1452    
1453          if (emul->n_machines != 1) {          if (emul->n_machines != 1) {
# Line 1248  void emul_simple_init(struct emul *emul) Line 1461  void emul_simple_init(struct emul *emul)
1461                  debug("Simple setup...\n");                  debug("Simple setup...\n");
1462                  debug_indentation(iadd);                  debug_indentation(iadd);
1463    
1464                  /*  Create a network:  */                  /*  Create a simple network:  */
1465                  emul->net = net_init(emul, NET_INIT_FLAG_GATEWAY,                  emul->net = net_init(emul, NET_INIT_FLAG_GATEWAY,
1466                      "10.0.0.0", 8);                      "10.0.0.0", 8, NULL, 0, 0);
1467          } else {          } else {
1468                  /*  Userland pseudo-machine:  */                  /*  Userland pseudo-machine:  */
1469                  debug("Syscall emulation (userland-only) setup...\n");                  debug("Syscall emulation (userland-only) setup...\n");
# Line 1271  void emul_simple_init(struct emul *emul) Line 1484  void emul_simple_init(struct emul *emul)
1484   */   */
1485  struct emul *emul_create_from_configfile(char *fname)  struct emul *emul_create_from_configfile(char *fname)
1486  {  {
1487          int iadd = 4;          int iadd = DEBUG_INDENTATION;
1488          struct emul *e = emul_new(fname);          struct emul *e = emul_new(fname);
         FILE *f;  
         char buf[128];  
         size_t len;  
1489    
1490          debug("Creating emulation from configfile \"%s\":\n", fname);          debug("Creating emulation from configfile \"%s\":\n", fname);
1491          debug_indentation(iadd);          debug_indentation(iadd);
1492    
1493          f = fopen(fname, "r");          emul_parse_config(e, fname);
         if (f == NULL) {  
                 perror(fname);  
                 exit(1);  
         }  
1494    
         /*  Read header: (must be !!gxemul)  */  
         len = fread(buf, 1, 8, f);  
         if (len != 8 || strncmp(buf, "!!gxemul", 8) != 0) {  
                 fprintf(stderr, "%s: must start with '!!gxemul'\n", fname);  
                 exit(1);  
         }  
   
         /*  Restart from beginning:  */  
         rewind(f);  
   
         emul_parse_config(e, f);  
   
         fclose(f);  
1495          debug_indentation(-iadd);          debug_indentation(-iadd);
1496          return e;          return e;
1497  }  }
# Line 1325  void emul_run(struct emul **emuls, int n Line 1518  void emul_run(struct emul **emuls, int n
1518    
1519          atexit(fix_console);          atexit(fix_console);
1520    
         i = 79;  
         while (i-- > 0)  
                 debug("-");  
         debug("\n\n");  
   
1521          /*  Initialize the interactive debugger:  */          /*  Initialize the interactive debugger:  */
1522          debugger_init(emuls, n_emuls);          debugger_init(emuls, n_emuls);
1523    
1524            /*  Run any additional debugger commands before starting:  */
1525            for (i=0; i<n_emuls; i++) {
1526                    struct emul *emul = emuls[i];
1527                    if (emul->n_debugger_cmds > 0) {
1528                            int j;
1529                            if (i == 0)
1530                                    print_separator();
1531                            for (j = 0; j < emul->n_debugger_cmds; j ++) {
1532                                    debug("> %s\n", emul->debugger_cmds[j]);
1533                                    debugger_execute_cmd(emul->debugger_cmds[j],
1534                                        strlen(emul->debugger_cmds[j]));
1535                            }
1536                    }
1537            }
1538    
1539            print_separator();
1540            debug("\n");
1541    
1542    
1543          /*          /*
1544           *  console_init_main() makes sure that the terminal is in a           *  console_init_main() makes sure that the terminal is in a
1545           *  reasonable state.           *  reasonable state.
# Line 1357  void emul_run(struct emul **emuls, int n Line 1564  void emul_run(struct emul **emuls, int n
1564                  if (e == NULL)                  if (e == NULL)
1565                          continue;                          continue;
1566                  for (j=0; j<e->n_machines; j++)                  for (j=0; j<e->n_machines; j++)
1567                          cpu_run_init(e, e->machines[j]);                          cpu_run_init(e->machines[j]);
1568          }          }
1569    
1570            /*  TODO: Generalize:  */
1571            if (emuls[0]->machines[0]->show_trace_tree)
1572                    cpu_functioncall_trace(emuls[0]->machines[0]->cpus[0],
1573                        emuls[0]->machines[0]->cpus[0]->pc);
1574    
1575          /*          /*
1576           *  MAIN LOOP:           *  MAIN LOOP:
1577           *           *
# Line 1369  void emul_run(struct emul **emuls, int n Line 1581  void emul_run(struct emul **emuls, int n
1581          while (go) {          while (go) {
1582                  go = 0;                  go = 0;
1583    
1584                  x11_check_event(emuls, n_emuls);                  /*  Flush X11 and serial console output every now and then:  */
1585                    if (emuls[0]->machines[0]->ncycles >
1586                  for (i=0; i<n_emuls; i++) {                      emuls[0]->machines[0]->ncycles_flush + (1<<18)) {
1587                          e = emuls[i];                          x11_check_event(emuls, n_emuls);
1588                          if (e == NULL)                          console_flush();
1589                                  continue;                          emuls[0]->machines[0]->ncycles_flush =
1590                                emuls[0]->machines[0]->ncycles;
1591                          for (j=0; j<e->n_machines; j++) {                  }
1592                                  /*  TODO: cpu_run() is a strange name, since  
1593                                      there can be multiple cpus in a machine  */                  if (emuls[0]->machines[0]->ncycles >
1594                                  anything = cpu_run(e, e->machines[j]);                      emuls[0]->machines[0]->ncycles_show + (1<<25)) {
1595                                  if (anything)                          emuls[0]->machines[0]->ncycles_since_gettimeofday +=
1596                                          go = 1;                              (emuls[0]->machines[0]->ncycles -
1597                          }                               emuls[0]->machines[0]->ncycles_show);
1598                            cpu_show_cycles(emuls[0]->machines[0], 0);
1599                            emuls[0]->machines[0]->ncycles_show =
1600                                emuls[0]->machines[0]->ncycles;
1601                    }
1602    
1603                    if (single_step == ENTER_SINGLE_STEPPING) {
1604                            /*  TODO: Cleanup!  */
1605                            old_instruction_trace =
1606                                emuls[0]->machines[0]->instruction_trace;
1607                            old_quiet_mode = quiet_mode;
1608                            old_show_trace_tree =
1609                                emuls[0]->machines[0]->show_trace_tree;
1610                            emuls[0]->machines[0]->instruction_trace = 1;
1611                            emuls[0]->machines[0]->show_trace_tree = 1;
1612                            quiet_mode = 0;
1613                            single_step = SINGLE_STEPPING;
1614                    }
1615    
1616                    if (single_step == SINGLE_STEPPING)
1617                            debugger();
1618    
1619                    e = emuls[0];   /*  Note: Only 1 emul supported now.  */
1620    
1621                    for (j=0; j<e->n_machines; j++) {
1622                            if (e->machines[j]->gdb.port > 0)
1623                                    debugger_gdb_check_incoming(e->machines[j]);
1624    
1625                            anything = machine_run(e->machines[j]);
1626                            if (anything)
1627                                    go = 1;
1628                  }                  }
1629          }          }
1630    
# Line 1392  void emul_run(struct emul **emuls, int n Line 1634  void emul_run(struct emul **emuls, int n
1634                  if (e == NULL)                  if (e == NULL)
1635                          continue;                          continue;
1636                  for (j=0; j<e->n_machines; j++)                  for (j=0; j<e->n_machines; j++)
1637                          cpu_run_deinit(e, e->machines[j]);                          cpu_run_deinit(e->machines[j]);
1638          }          }
1639    
1640          /*  force_debugger_at_exit flag set? Then enter the debugger:  */          /*  force_debugger_at_exit flag set? Then enter the debugger:  */

Legend:
Removed from v.6  
changed lines
  Added in v.26

  ViewVC Help
Powered by ViewVC 1.1.26