/[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 4 by dpavlin, Mon Oct 8 16:18:00 2007 UTC revision 22 by dpavlin, Mon Oct 8 16:19:37 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.184 2005/04/20 04:43:52 debug Exp $   *  $Id: emul.c,v 1.247 2006/02/04 12:27:12 debug Exp $
29   *   *
30   *  Emulation startup and misc. routines.   *  Emulation startup and misc. routines.
31   */   */
# Line 46  Line 46 
46  #include "debugger.h"  #include "debugger.h"
47  #include "device.h"  #include "device.h"
48  #include "diskimage.h"  #include "diskimage.h"
49    #include "exec_elf.h"
50  #include "machine.h"  #include "machine.h"
51  #include "memory.h"  #include "memory.h"
52  #include "mips_cpu_types.h"  #include "mips_cpu_types.h"
# Line 66  extern int quiet_mode; Line 67  extern int quiet_mode;
67  extern struct emul *debugger_emul;  extern struct emul *debugger_emul;
68  extern struct diskimage *diskimages[];  extern struct diskimage *diskimages[];
69    
70    static char *diskimage_types[] = DISKIMAGE_TYPES;
71    
72    
73    static void print_separator(void)
74    {
75            int i = 79;
76            while (i-- > 0)
77                    debug("-");
78            debug("\n");
79    }
80    
81    
82  /*  /*
83   *  add_dump_points():   *  add_dump_points():
# Line 109  static void add_dump_points(struct machi Line 121  static void add_dump_points(struct machi
121                   *  were automatically converted into the correct address.                   *  were automatically converted into the correct address.
122                   */                   */
123    
124                  if ((dp >> 32) == 0 && ((dp >> 31) & 1))                  if (m->arch == ARCH_MIPS) {
125                          dp |= 0xffffffff00000000ULL;                          if ((dp >> 32) == 0 && ((dp >> 31) & 1))
126                                    dp |= 0xffffffff00000000ULL;
127                    }
128    
129                  m->breakpoint_addr[i] = dp;                  m->breakpoint_addr[i] = dp;
130    
131                  debug("breakpoint %i: 0x%016llx", i, (long long)dp);                  debug("breakpoint %i: 0x%llx", i, (long long)dp);
132                  if (string_flag)                  if (string_flag)
133                          debug(" (%s)", m->breakpoint_string[i]);                          debug(" (%s)", m->breakpoint_string[i]);
134                  debug("\n");                  debug("\n");
# Line 131  static void fix_console(void) Line 146  static void fix_console(void)
146    
147    
148  /*  /*
149     *  iso_load_bootblock():
150     *
151     *  Try to load a kernel from an ISO 9660 disk image. iso_type is 1 for
152     *  "CD001" (standard), 2 for "CDW01" (ECMA), and 3 for "CDROM" (Sierra).
153     *
154     *  TODO: This function uses too many magic offsets and so on; it should be
155     *  cleaned up some day.
156     *
157     *  Returns 1 on success, 0 on failure.
158     */
159    static int iso_load_bootblock(struct machine *m, struct cpu *cpu,
160            int disk_id, int disk_type, int iso_type, unsigned char *buf,
161            int *n_loadp, char ***load_namesp)
162    {
163            char str[35];
164            int filenr, i, ofs, dirlen, res = 0, res2, iadd = DEBUG_INDENTATION;
165            int found_dir;
166            uint64_t dirofs;
167            uint64_t fileofs, filelen;
168            unsigned char *dirbuf = NULL, *dp;
169            unsigned char *match_entry = NULL;
170            char *p, *filename_orig;
171            char *filename = strdup(cpu->machine->boot_kernel_filename);
172            unsigned char *filebuf = NULL;
173            char *tmpfname = NULL;
174            char **new_array;
175            int tmpfile_handle;
176    
177            if (filename == NULL) {
178                    fatal("out of memory\n");
179                    exit(1);
180            }
181            filename_orig = filename;
182    
183            debug("ISO9660 boot:\n");
184            debug_indentation(iadd);
185    
186            /*  Volume ID:  */
187            ofs = iso_type == 3? 48 : 40;
188            memcpy(str, buf + ofs, sizeof(str));
189            str[32] = '\0';  i = 31;
190            while (i >= 0 && str[i]==' ')
191                    str[i--] = '\0';
192            if (str[0])
193                    debug("\"%s\"", str);
194            else {
195                    /*  System ID:  */
196                    ofs = iso_type == 3? 16 : 8;
197                    memcpy(str, buf + ofs, sizeof(str));
198                    str[32] = '\0';  i = 31;
199                    while (i >= 0 && str[i]==' ')
200                            str[i--] = '\0';
201                    if (str[0])
202                            debug("\"%s\"", str);
203                    else
204                            debug("(no ID)");
205            }
206    
207            debug(":%s\n", filename);
208    
209    
210            /*
211             *  Traverse the directory structure to find the kernel.
212             */
213    
214            dirlen = buf[0x84] + 256*buf[0x85] + 65536*buf[0x86];
215            if (dirlen != buf[0x8b] + 256*buf[0x8a] + 65536*buf[0x89])
216                    fatal("WARNING: Root directory length mismatch?\n");
217    
218            dirofs = (int64_t)(buf[0x8c] + (buf[0x8d] << 8) + (buf[0x8e] << 16) +
219                ((uint64_t)buf[0x8f] << 24)) * 2048;
220    
221            /*  debug("root = %i bytes at 0x%llx\n", dirlen, (long long)dirofs);  */
222    
223            dirbuf = malloc(dirlen);
224            if (dirbuf == NULL) {
225                    fatal("out of memory in iso_load_bootblock()\n");
226                    exit(1);
227            }
228    
229            res2 = diskimage_access(m, disk_id, disk_type, 0, dirofs, dirbuf,
230                dirlen);
231            if (!res2) {
232                    fatal("Couldn't read the disk image. Aborting.\n");
233                    goto ret;
234            }
235    
236            found_dir = 1;  /*  Assume root dir  */
237            dp = dirbuf; filenr = 1;
238            p = NULL;
239            while (dp < dirbuf + dirlen) {
240                    size_t i, nlen = dp[0];
241                    int x = dp[2] + (dp[3] << 8) + (dp[4] << 16) +
242                        ((uint64_t)dp[5] << 24);
243                    int y = dp[6] + (dp[7] << 8);
244                    char direntry[65];
245    
246                    dp += 8;
247    
248                    /*
249                     *  As long as there is an \ or / in the filename, then we
250                     *  have not yet found the directory.
251                     */
252                    p = strchr(filename, '/');
253                    if (p == NULL)
254                            p = strchr(filename, '\\');
255    
256                    /*  debug("%i%s: %i, %i, \"", filenr, filenr == found_dir?
257                        " [CURRENT]" : "", x, y);  */
258                    for (i=0; i<nlen && i<sizeof(direntry)-1; i++)
259                            if (dp[i]) {
260                                    direntry[i] = dp[i];
261                                    /*  debug("%c", dp[i]);  */
262                            } else
263                                    break;
264                    /*  debug("\"\n");  */
265                    direntry[i] = '\0';
266    
267                    /*  A directory name match?  */
268                    if (p != NULL && strncasecmp(filename, direntry, nlen) == 0
269                        && nlen == (size_t)p - (size_t)filename && found_dir == y) {
270                            found_dir = filenr;
271                            filename = p+1;
272                            dirofs = 2048 * (int64_t)x;
273                    }
274    
275                    dp += nlen;
276    
277                    /*  16-bit aligned lenght:  */
278                    if (nlen & 1)
279                            dp ++;
280    
281                    filenr ++;
282            }
283    
284            p = strchr(filename, '/');
285            if (p == NULL)
286                    p = strchr(filename, '\\');
287    
288            if (p != NULL) {
289                    char *blah = filename_orig;
290    
291                    fatal("could not find '%s' in /", filename);
292    
293                    /*  Print the first part of the filename:  */
294                    while (blah != filename)
295                            fatal("%c", *blah++);
296                    
297                    fatal("\n");
298                    goto ret;
299            }
300    
301            /*  debug("dirofs = 0x%llx\n", (long long)dirofs);  */
302    
303            /*  Free the old dirbuf, and allocate a new one:  */
304            free(dirbuf);
305            dirbuf = malloc(512);
306            if (dirbuf == NULL) {
307                    fatal("out of memory in iso_load_bootblock()\n");
308                    exit(1);
309            }
310    
311            for (;;) {
312                    size_t len, i;
313    
314                    /*  Too close to another sector? Then realign.  */
315                    if ((dirofs & 2047) + 70 > 2047) {
316                            dirofs = (dirofs | 2047) + 1;
317                            /*  debug("realign dirofs = 0x%llx\n", dirofs);  */
318                    }
319    
320                    res2 = diskimage_access(m, disk_id, disk_type, 0, dirofs,
321                        dirbuf, 256);
322                    if (!res2) {
323                            fatal("Couldn't read the disk image. Aborting.\n");
324                            goto ret;
325                    }
326    
327                    dp = dirbuf;
328                    len = dp[0];
329                    if (len < 2)
330                            break;
331    
332                    /*
333                     *  TODO: Actually parse the directory entry!
334                     *
335                     *  Haha, this must be rewritten.
336                     */
337                    for (i=32; i<len; i++) {
338                            if (i < len - strlen(filename))
339                                    if (strncasecmp(filename, (char *)dp + i,
340                                        strlen(filename)) == 0) {
341                                            /*  The filename was found somewhere
342                                                in the directory entry.  */
343                                            if (match_entry != NULL) {
344                                                    fatal("TODO: I'm too lazy to"
345                                                        " implement a correct "
346                                                        "directory parser right "
347                                                        "now... (BUG)\n");
348                                                    exit(1);
349                                            }
350                                            match_entry = malloc(512);
351                                            if (match_entry == NULL) {
352                                                    fatal("out of memory\n");
353                                                    exit(1);
354                                            }
355                                            memcpy(match_entry, dp, 512);
356                                            break;
357                                    }
358                    }
359    
360                    dirofs += len;
361            }
362    
363            if (match_entry == NULL) {
364                    char *blah = filename_orig;
365    
366                    fatal("could not find '%s' in /", filename);
367    
368                    /*  Print the first part of the filename:  */
369                    while (blah != filename)
370                            fatal("%c", *blah++);
371                    
372                    fatal("\n");
373                    goto ret;
374            }
375    
376            fileofs = match_entry[2] + (match_entry[3] << 8) +
377                (match_entry[4] << 16) + ((uint64_t)match_entry[5] << 24);
378            filelen = match_entry[10] + (match_entry[11] << 8) +
379                (match_entry[12] << 16) + ((uint64_t)match_entry[13] << 24);
380            fileofs *= 2048;
381    
382            /*  debug("filelen=%llx fileofs=%llx\n", (long long)filelen,
383                (long long)fileofs);  */
384    
385            filebuf = malloc(filelen);
386            if (filebuf == NULL) {
387                    fatal("could not allocate %lli bytes to read the file"
388                        " from the disk image!\n", (long long)filelen);
389                    goto ret;
390            }
391    
392            tmpfname = strdup("/tmp/gxemul.XXXXXXXXXXXX");
393    
394            res2 = diskimage_access(m, disk_id, disk_type, 0, fileofs, filebuf,
395                filelen);
396            if (!res2) {
397                    fatal("could not read the file from the disk image!\n");
398                    goto ret;
399            }
400    
401            tmpfile_handle = mkstemp(tmpfname);
402            if (tmpfile_handle < 0) {
403                    fatal("could not create %s\n", tmpfname);
404                    exit(1);
405            }
406            write(tmpfile_handle, filebuf, filelen);
407            close(tmpfile_handle);
408    
409            debug("extracted %lli bytes into %s\n", (long long)filelen, tmpfname);
410    
411            /*  Add the temporary filename to the load_namesp array:  */
412            (*n_loadp)++;
413            new_array = malloc(sizeof(char *) * (*n_loadp));
414            if (new_array == NULL) {
415                    fatal("out of memory\n");
416                    exit(1);
417            }
418            memcpy(new_array, *load_namesp, sizeof(char *) * (*n_loadp));
419            *load_namesp = new_array;
420    
421            /*  This adds a Backspace char in front of the filename; this
422                is a special hack which causes the file to be removed once
423                it has been loaded.  */
424            tmpfname = realloc(tmpfname, strlen(tmpfname) + 2);
425            memmove(tmpfname + 1, tmpfname, strlen(tmpfname) + 1);
426            tmpfname[0] = 8;
427    
428            (*load_namesp)[*n_loadp - 1] = tmpfname;
429    
430            res = 1;
431    
432    ret:
433            if (dirbuf != NULL)
434                    free(dirbuf);
435    
436            if (filebuf != NULL)
437                    free(filebuf);
438    
439            if (match_entry != NULL)
440                    free(match_entry);
441    
442            free(filename_orig);
443    
444            debug_indentation(-iadd);
445            return res;
446    }
447    
448    
449    /*
450     *  apple_load_bootblock():
451     *
452     *  Try to load a kernel from a disk image with an Apple Partition Table.
453     *
454     *  TODO: This function uses too many magic offsets and so on; it should be
455     *  cleaned up some day. See http://www.awprofessional.com/articles/
456     *      article.asp?p=376123&seqNum=3&rl=1  for some info on the Apple
457     *  partition format.
458     *
459     *  Returns 1 on success, 0 on failure.
460     */
461    static int apple_load_bootblock(struct machine *m, struct cpu *cpu,
462            int disk_id, int disk_type, int *n_loadp, char ***load_namesp)
463    {
464            unsigned char buf[0x8000];
465            int res, partnr, n_partitions = 0, n_hfs_partitions = 0;
466            uint64_t hfs_start, hfs_length;
467    
468            res = diskimage_access(m, disk_id, disk_type, 0, 0x0, buf, sizeof(buf));
469            if (!res) {
470                    fatal("apple_load_bootblock: couldn't read the disk "
471                        "image. Aborting.\n");
472                    return 0;
473            }
474    
475            partnr = 0;
476            do {
477                    int start, length;
478                    int ofs = 0x200 * (partnr + 1);
479                    if (partnr == 0)
480                            n_partitions = buf[ofs + 7];
481                    start = ((uint64_t)buf[ofs + 8] << 24) + (buf[ofs + 9] << 16) +
482                        (buf[ofs + 10] << 8) + buf[ofs + 11];
483                    length = ((uint64_t)buf[ofs+12] << 24) + (buf[ofs + 13] << 16) +
484                        (buf[ofs + 14] << 8) + buf[ofs + 15];
485    
486                    debug("partition %i: '%s', type '%s', start %i, length %i\n",
487                        partnr, buf + ofs + 0x10, buf + ofs + 0x30,
488                        start, length);
489    
490                    if (strcmp((char *)buf + ofs + 0x30, "Apple_HFS") == 0) {
491                            n_hfs_partitions ++;
492                            hfs_start = 512 * start;
493                            hfs_length = 512 * length;
494                    }
495    
496                    /*  Any more partitions?  */
497                    partnr ++;
498            } while (partnr < n_partitions);
499    
500            if (n_hfs_partitions == 0) {
501                    fatal("Error: No HFS partition found! TODO\n");
502                    return 0;
503            }
504            if (n_hfs_partitions >= 2) {
505                    fatal("Error: Too many HFS partitions found! TODO\n");
506                    return 0;
507            }
508    
509            return 0;
510    }
511    
512    
513    /*
514   *  load_bootblock():   *  load_bootblock():
515   *   *
516   *  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
517   *  loading a bootblock from a specific disk offset into memory, and executing   *  loading a bootblock from a specific disk offset into memory, and executing
518   *  that, instead of requiring a separate kernel file.  It is then up to the   *  that, instead of requiring a separate kernel file.  It is then up to the
519   *  bootblock to load a kernel.   *  bootblock to load a kernel.
520     *
521     *  Returns 1 on success, 0 on failure.
522   */   */
523  static void load_bootblock(struct machine *m, struct cpu *cpu)  static int load_bootblock(struct machine *m, struct cpu *cpu,
524            int *n_loadp, char ***load_namesp)
525  {  {
526          int boot_disk_id;          int boot_disk_id, boot_disk_type = 0, n_blocks, res, readofs,
527                iso_type, retval = 0;
528          unsigned char minibuf[0x20];          unsigned char minibuf[0x20];
529          unsigned char *bootblock_buf;          unsigned char *bootblock_buf;
530          uint64_t bootblock_offset;          uint64_t bootblock_offset;
531          uint64_t bootblock_loadaddr, bootblock_pc;          uint64_t bootblock_loadaddr, bootblock_pc;
         int n_blocks, res, readofs;  
532    
533          boot_disk_id = diskimage_bootdev(m);          boot_disk_id = diskimage_bootdev(m, &boot_disk_type);
534          if (boot_disk_id < 0)          if (boot_disk_id < 0)
535                  return;                  return 0;
536    
537          switch (m->machine_type) {          switch (m->machine_type) {
538          case MACHINE_DEC:          case MACHINE_PMAX:
539                  /*                  /*
540                   *  The first few bytes of a disk contains information about                   *  The first few bytes of a disk contains information about
541                   *  where the bootblock(s) are located. (These are all 32-bit                   *  where the bootblock(s) are located. (These are all 32-bit
# Line 169  static void load_bootblock(struct machin Line 552  static void load_bootblock(struct machin
552                   *  nr of blocks to read and offset are repeated until nr of                   *  nr of blocks to read and offset are repeated until nr of
553                   *  blocks to read is zero.                   *  blocks to read is zero.
554                   */                   */
555                  res = diskimage_access(m, boot_disk_id, 0, 0,                  res = diskimage_access(m, boot_disk_id, boot_disk_type, 0, 0,
556                      minibuf, sizeof(minibuf));                      minibuf, sizeof(minibuf));
557    
558                  bootblock_loadaddr = minibuf[0x10] + (minibuf[0x11] << 8)                  bootblock_loadaddr = minibuf[0x10] + (minibuf[0x11] << 8)
559                    + (minibuf[0x12] << 16) + (minibuf[0x13] << 24);                    + (minibuf[0x12] << 16) + ((uint64_t)minibuf[0x13] << 24);
560    
561                  /*  Convert loadaddr to uncached:  */                  /*  Convert loadaddr to uncached:  */
562                  if ((bootblock_loadaddr & 0xf0000000ULL) != 0x80000000 &&                  if ((bootblock_loadaddr & 0xf0000000ULL) != 0x80000000 &&
# Line 184  static void load_bootblock(struct machin Line 567  static void load_bootblock(struct machin
567                  bootblock_loadaddr |= 0xffffffffa0000000ULL;                  bootblock_loadaddr |= 0xffffffffa0000000ULL;
568    
569                  bootblock_pc = minibuf[0x14] + (minibuf[0x15] << 8)                  bootblock_pc = minibuf[0x14] + (minibuf[0x15] << 8)
570                    + (minibuf[0x16] << 16) + (minibuf[0x17] << 24);                    + (minibuf[0x16] << 16) + ((uint64_t)minibuf[0x17] << 24);
571    
572                  bootblock_pc &= 0x0fffffffULL;                  bootblock_pc &= 0x0fffffffULL;
573                  bootblock_pc |= 0xffffffffa0000000ULL;                  bootblock_pc |= 0xffffffffa0000000ULL;
# Line 196  static void load_bootblock(struct machin Line 579  static void load_bootblock(struct machin
579                  readofs = 0x18;                  readofs = 0x18;
580    
581                  for (;;) {                  for (;;) {
582                          res = diskimage_access(m, boot_disk_id, 0, readofs,                          res = diskimage_access(m, boot_disk_id, boot_disk_type,
583                              minibuf, sizeof(minibuf));                              0, readofs, minibuf, sizeof(minibuf));
584                          if (!res) {                          if (!res) {
585                                  printf("couldn't read disk?\n");                                  fatal("Couldn't read the disk image. "
586                                  exit(1);                                      "Aborting.\n");
587                                    return 0;
588                          }                          }
589    
590                          n_blocks = minibuf[0] + (minibuf[1] << 8)                          n_blocks = minibuf[0] + (minibuf[1] << 8)
591                            + (minibuf[2] << 16) + (minibuf[3] << 24);                            + (minibuf[2] << 16) + ((uint64_t)minibuf[3] << 24);
592    
593                          bootblock_offset = (minibuf[4] + (minibuf[5] << 8)                          bootblock_offset = (minibuf[4] + (minibuf[5] << 8) +
594                            + (minibuf[6] << 16) + (minibuf[7] << 24)) * 512;                            (minibuf[6]<<16) + ((uint64_t)minibuf[7]<<24)) * 512;
595    
596                          if (n_blocks < 1)                          if (n_blocks < 1)
597                                  break;                                  break;
# Line 225  static void load_bootblock(struct machin Line 609  static void load_bootblock(struct machin
609                                  exit(1);                                  exit(1);
610                          }                          }
611    
612                          res = diskimage_access(m, boot_disk_id, 0,                          res = diskimage_access(m, boot_disk_id, boot_disk_type,
613                              bootblock_offset, bootblock_buf, n_blocks * 512);                              0, bootblock_offset, bootblock_buf, n_blocks * 512);
614                          if (!res) {                          if (!res) {
615                                  fatal("WARNING: could not load bootblocks from"                                  fatal("WARNING: could not load bootblocks from"
616                                      " disk offset 0x%llx\n",                                      " disk offset 0x%llx\n",
# Line 242  static void load_bootblock(struct machin Line 626  static void load_bootblock(struct machin
626                  }                  }
627    
628                  debug(readofs == 0x18? ": no blocks?\n" : " blocks\n");                  debug(readofs == 0x18? ": no blocks?\n" : " blocks\n");
629                  break;                  return 1;
630    
631          case MACHINE_X86:          case MACHINE_X86:
632                  cpu->cd.x86.mode = 16;                  /*  TODO: "El Torito" etc?  */
633                  cpu->pc = 0x7c00;                  if (diskimage_is_a_cdrom(cpu->machine, boot_disk_id,
634                        boot_disk_type))
635                            break;
636    
637                  bootblock_buf = malloc(512);                  bootblock_buf = malloc(512);
638                  if (bootblock_buf == NULL) {                  if (bootblock_buf == NULL) {
# Line 254  static void load_bootblock(struct machin Line 640  static void load_bootblock(struct machin
640                          exit(1);                          exit(1);
641                  }                  }
642    
643                  res = diskimage_access(m, boot_disk_id, 0, 0,                  debug("loading PC bootsector from %s id %i\n",
644                        diskimage_types[boot_disk_type], boot_disk_id);
645    
646                    res = diskimage_access(m, boot_disk_id, boot_disk_type, 0, 0,
647                      bootblock_buf, 512);                      bootblock_buf, 512);
648                  if (!res) {                  if (!res) {
649                          printf("Couldn't read the disk image. Aborting.\n");                          fatal("Couldn't read the disk image. Aborting.\n");
650                          exit(1);                          return 0;
651                  }                  }
652    
                 debug("loading PC bootsector from disk %i\n", boot_disk_id);  
653                  if (bootblock_buf[510] != 0x55 || bootblock_buf[511] != 0xaa)                  if (bootblock_buf[510] != 0x55 || bootblock_buf[511] != 0xaa)
654                          debug("WARNING! The 0x55,0xAA marker is missing! "                          debug("WARNING! The 0x55,0xAA marker is missing! "
655                              "Booting anyway.\n");                              "Booting anyway.\n");
656                  store_buf(cpu, 0x7c00, (char *)bootblock_buf, 512);                  store_buf(cpu, 0x7c00, (char *)bootblock_buf, 512);
657                  free(bootblock_buf);                  free(bootblock_buf);
                 break;  
658    
659          default:                  return 1;
660                  fatal("Booting from disk without a separate kernel "          }
661                      "doesn't work in this emulation mode.\n");  
662    
663            /*
664             *  Try reading a kernel manually from the disk. The code here
665             *  does not rely on machine-dependent boot blocks etc.
666             */
667            /*  ISO9660: (0x800 bytes at 0x8000)  */
668            bootblock_buf = malloc(0x800);
669            if (bootblock_buf == NULL) {
670                    fprintf(stderr, "Out of memory.\n");
671                  exit(1);                  exit(1);
672          }          }
673    
674            res = diskimage_access(m, boot_disk_id, boot_disk_type,
675                0, 0x8000, bootblock_buf, 0x800);
676            if (!res) {
677                    fatal("Couldn't read the disk image. Aborting.\n");
678                    return 0;
679            }
680    
681            iso_type = 0;
682            if (strncmp((char *)bootblock_buf+1, "CD001", 5) == 0)
683                    iso_type = 1;
684            if (strncmp((char *)bootblock_buf+1, "CDW01", 5) == 0)
685                    iso_type = 2;
686            if (strncmp((char *)bootblock_buf+1, "CDROM", 5) == 0)
687                    iso_type = 3;
688    
689            if (iso_type != 0) {
690                    /*  We can't load a kernel if the name
691                        isn't specified.  */
692                    if (cpu->machine->boot_kernel_filename == NULL ||
693                        cpu->machine->boot_kernel_filename[0] == '\0')
694                            fatal("\nISO9660 filesystem, but no kernel "
695                                "specified? (Use the -j option.)\n");
696                    else
697                            retval = iso_load_bootblock(m, cpu, boot_disk_id,
698                                boot_disk_type, iso_type, bootblock_buf,
699                                n_loadp, load_namesp);
700            }
701    
702            if (retval != 0)
703                    goto ret_ok;
704    
705            /*  Apple parition table:  */
706            res = diskimage_access(m, boot_disk_id, boot_disk_type,
707                0, 0x0, bootblock_buf, 0x800);
708            if (!res) {
709                    fatal("Couldn't read the disk image. Aborting.\n");
710                    return 0;
711            }
712            if (bootblock_buf[0x000] == 'E' && bootblock_buf[0x001] == 'R' &&
713                bootblock_buf[0x200] == 'P' && bootblock_buf[0x201] == 'M') {
714                    /*  We can't load a kernel if the name
715                        isn't specified.  */
716                    if (cpu->machine->boot_kernel_filename == NULL ||
717                        cpu->machine->boot_kernel_filename[0] == '\0')
718                            fatal("\nApple partition table, but no kernel "
719                                "specified? (Use the -j option.)\n");
720                    else
721                            retval = apple_load_bootblock(m, cpu, boot_disk_id,
722                                boot_disk_type, n_loadp, load_namesp);
723            }
724    
725    ret_ok:
726            free(bootblock_buf);
727            return retval;
728  }  }
729    
730    
# Line 295  struct emul *emul_new(char *name) Line 746  struct emul *emul_new(char *name)
746    
747          /*  Sane default values:  */          /*  Sane default values:  */
748          e->n_machines = 0;          e->n_machines = 0;
749            e->next_serial_nr = 1;
750    
751          if (name != NULL) {          if (name != NULL) {
752                  e->name = strdup(name);                  e->name = strdup(name);
# Line 357  static void add_arc_components(struct ma Line 809  static void add_arc_components(struct ma
809    
810          len += 1048576 * m->memory_offset_in_mb;          len += 1048576 * m->memory_offset_in_mb;
811    
812          /*  NOTE/TODO: magic 12MB end of load program area  */          /*
813             *  NOTE/TODO: magic 12MB end of load program area
814             *
815             *  Hm. This breaks the old FreeBSD/MIPS snapshots...
816             */
817    #if 0
818          arcbios_add_memory_descriptor(cpu,          arcbios_add_memory_descriptor(cpu,
819              0x60000 + m->memory_offset_in_mb * 1048576,              0x60000 + m->memory_offset_in_mb * 1048576,
820              start-0x60000 - m->memory_offset_in_mb * 1048576,              start-0x60000 - m->memory_offset_in_mb * 1048576,
821              ARCBIOS_MEM_FreeMemory);              ARCBIOS_MEM_FreeMemory);
822    #endif
823          arcbios_add_memory_descriptor(cpu,          arcbios_add_memory_descriptor(cpu,
824              start, len, ARCBIOS_MEM_LoadedProgram);              start, len, ARCBIOS_MEM_LoadedProgram);
825    
826          scsicontroller = arcbios_get_scsicontroller();          scsicontroller = arcbios_get_scsicontroller(m);
827          if (scsicontroller == 0)          if (scsicontroller == 0)
828                  return;                  return;
829    
# Line 413  static void add_arc_components(struct ma Line 871  static void add_arc_components(struct ma
871                                  snprintf(component_string,                                  snprintf(component_string,
872                                      sizeof(component_string),                                      sizeof(component_string),
873                                      "scsi(0)cdrom(%i)", d->id);                                      "scsi(0)cdrom(%i)", d->id);
874                                  arcbios_add_string_to_component(                                  arcbios_add_string_to_component(m,
875                                      component_string, scsidevice);                                      component_string, scsidevice);
876    
877                                  snprintf(component_string,                                  snprintf(component_string,
878                                      sizeof(component_string),                                      sizeof(component_string),
879                                      "scsi(0)cdrom(%i)fdisk(0)", d->id);                                      "scsi(0)cdrom(%i)fdisk(0)", d->id);
880                                  arcbios_add_string_to_component(                                  arcbios_add_string_to_component(m,
881                                      component_string, scsidisk);                                      component_string, scsidisk);
882                          } else {                          } else {
883                                  snprintf(component_string,                                  snprintf(component_string,
884                                      sizeof(component_string),                                      sizeof(component_string),
885                                      "scsi(0)disk(%i)", d->id);                                      "scsi(0)disk(%i)", d->id);
886                                  arcbios_add_string_to_component(                                  arcbios_add_string_to_component(m,
887                                      component_string, scsidevice);                                      component_string, scsidevice);
888    
889                                  snprintf(component_string,                                  snprintf(component_string,
890                                      sizeof(component_string),                                      sizeof(component_string),
891                                      "scsi(0)disk(%i)rdisk(0)", d->id);                                      "scsi(0)disk(%i)rdisk(0)", d->id);
892                                  arcbios_add_string_to_component(                                  arcbios_add_string_to_component(m,
893                                      component_string, scsidisk);                                      component_string, scsidisk);
894                          }                          }
895                  }                  }
# Line 454  static void add_arc_components(struct ma Line 912  static void add_arc_components(struct ma
912  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,
913          int n_devices, char **device_names)          int n_devices, char **device_names)
914  {  {
         struct emul *emul;  
915          struct cpu *cpu;          struct cpu *cpu;
916          int i, iadd=4;          int i, iadd = DEBUG_INDENTATION;
917          uint64_t addr, memory_amount, entrypoint = 0, gp = 0, toc = 0;          uint64_t memory_amount, entrypoint = 0, gp = 0, toc = 0;
918          int byte_order;          int byte_order;
919    
         emul = m->emul;  
   
920          debug("machine \"%s\":\n", m->name);          debug("machine \"%s\":\n", m->name);
921          debug_indentation(iadd);          debug_indentation(iadd);
922    
# Line 482  void emul_machine_setup(struct machine * Line 937  void emul_machine_setup(struct machine *
937    
938          m->cpu_family = cpu_family_ptr_by_number(m->arch);          m->cpu_family = cpu_family_ptr_by_number(m->arch);
939    
940            if (m->arch == ARCH_ALPHA)
941                    m->arch_pagesize = 8192;
942    
943            if (m->arch != ARCH_MIPS)
944                    m->bintrans_enable = 0;
945    
946          machine_memsize_fix(m);          machine_memsize_fix(m);
947    
948          /*          /*
# Line 502  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 544  void emul_machine_setup(struct machine * Line 1005  void emul_machine_setup(struct machine *
1005          }          }
1006          debug("\n");          debug("\n");
1007    
1008    #if 0
1009            /*  Special case: The Playstation Portable has an additional CPU:  */
1010            if (m->machine_type == MACHINE_PSP) {
1011                    debug("cpu%i: ", m->ncpus);
1012                    m->cpus[m->ncpus] = cpu_new(m->memory, m,
1013                        0  /*  use 0 here to show info with debug()  */,
1014                        "Allegrex" /*  TODO  */);
1015                    if (m->bintrans_enable)
1016                            bintrans_init_cpu(m->cpus[m->ncpus]);
1017                    debug("\n");
1018                    m->ncpus ++;
1019            }
1020    #endif
1021    
1022          if (m->use_random_bootstrap_cpu)          if (m->use_random_bootstrap_cpu)
1023                  m->bootstrap_cpu = random() % m->ncpus;                  m->bootstrap_cpu = random() % m->ncpus;
1024          else          else
# Line 555  void emul_machine_setup(struct machine * Line 1030  void emul_machine_setup(struct machine *
1030          if (m->userland_emul != NULL) {          if (m->userland_emul != NULL) {
1031                  useremul_name_to_useremul(cpu,                  useremul_name_to_useremul(cpu,
1032                      m->userland_emul, NULL, NULL, NULL);                      m->userland_emul, NULL, NULL, NULL);
1033                  cpu->memory_rw = userland_memory_rw;  
1034                    switch (m->arch) {
1035    #ifdef ENABLE_ALPHA
1036                    case ARCH_ALPHA:
1037                            cpu->memory_rw = alpha_userland_memory_rw;
1038                            break;
1039    #endif
1040                    default:cpu->memory_rw = userland_memory_rw;
1041                    }
1042          }          }
1043    
1044          if (m->use_x11)          if (m->use_x11)
1045                  x11_init(m);                  x11_init(m);
1046    
1047          /*  Fill memory with random bytes:  */          /*  Fill memory with random bytes:  */
         /*  TODO: This is MIPS-specific!  */  
1048          if (m->random_mem_contents) {          if (m->random_mem_contents) {
1049                  for (i=0; i<m->physical_ram_in_mb * 1048576; i+=256) {                  for (i=0; i<m->physical_ram_in_mb * 1048576; i+=256) {
1050                          unsigned char data[256];                          unsigned char data[256];
1051                          unsigned int j;                          unsigned int j;
1052                          for (j=0; j<sizeof(data); j++)                          for (j=0; j<sizeof(data); j++)
1053                                  data[j] = random() & 255;                                  data[j] = random() & 255;
1054                          addr = 0xffffffff80000000ULL + i;                          cpu->memory_rw(cpu, m->memory, i, data, sizeof(data),
1055                          cpu->memory_rw(cpu, m->memory, addr, data, sizeof(data),                              MEM_WRITE, CACHE_NONE | NO_EXCEPTIONS | PHYSICAL);
                             MEM_WRITE, CACHE_NONE | NO_EXCEPTIONS);  
1056                  }                  }
1057          }          }
1058    
         if ((m->machine_type == MACHINE_ARC ||  
             m->machine_type == MACHINE_SGI) && m->prom_emulation)  
                 arcbios_init();  
   
1059          if (m->userland_emul != NULL) {          if (m->userland_emul != NULL) {
1060                  /*                  /*
1061                   *  For userland-only emulation, no machine emulation                   *  For userland-only emulation, no machine emulation
# Line 592  void emul_machine_setup(struct machine * Line 1069  void emul_machine_setup(struct machine *
1069          }          }
1070    
1071          diskimage_dump_info(m);          diskimage_dump_info(m);
1072            console_debug_dump(m);
1073    
1074          /*  Load files (ROM code, boot code, ...) into memory:  */          /*  Load files (ROM code, boot code, ...) into memory:  */
1075          if (n_load == 0) {          if (n_load == 0) {
1076                  if (m->first_diskimage != NULL)                  if (m->first_diskimage != NULL) {
1077                          load_bootblock(m, cpu);                          if (!load_bootblock(m, cpu, &n_load, &load_names)) {
1078                  else {                                  fprintf(stderr, "\nNo executable files were"
1079                                        " specified, and booting directly from disk"
1080                                        " failed.\n");
1081                                    exit(1);
1082                            }
1083                    } else {
1084                          fprintf(stderr, "No executable file(s) loaded, and "                          fprintf(stderr, "No executable file(s) loaded, and "
1085                              "we are not booting directly from a disk image."                              "we are not booting directly from a disk image."
1086                              "\nAborting.\n");                              "\nAborting.\n");
# Line 606  void emul_machine_setup(struct machine * Line 1089  void emul_machine_setup(struct machine *
1089          }          }
1090    
1091          while (n_load > 0) {          while (n_load > 0) {
1092                    FILE *tmp_f;
1093                    char *name_to_load = *load_names;
1094                    int remove_after_load = 0;
1095    
1096                    /*  Special hack for removing temporary files:  */
1097                    if (name_to_load[0] == 8) {
1098                            name_to_load ++;
1099                            remove_after_load = 1;
1100                    }
1101    
1102                    /*
1103                     *  gzipped files are automagically gunzipped:
1104                     *  NOTE/TODO: This isn't secure. system() is used.
1105                     */
1106                    tmp_f = fopen(name_to_load, "r");
1107                    if (tmp_f != NULL) {
1108                            unsigned char buf[2];           /*  gzip header  */
1109                            memset(buf, 0, sizeof(buf));
1110                            fread(buf, 1, sizeof(buf), tmp_f);
1111                            if (buf[0]==0x1f && buf[1]==0x8b) {
1112                                    size_t zzlen = strlen(name_to_load)*2 + 100;
1113                                    char *zz = malloc(zzlen);
1114                                    debug("gunziping %s\n", name_to_load);
1115                                    /*
1116                                     *  gzip header found.  If this was a file
1117                                     *  extracted from, say, a CDROM image, then it
1118                                     *  already has a temporary name. Otherwise we
1119                                     *  have to gunzip into a temporary file.
1120                                     */
1121                                    if (remove_after_load) {
1122                                            snprintf(zz, zzlen, "mv %s %s.gz",
1123                                                name_to_load, name_to_load);
1124                                            system(zz);
1125                                            snprintf(zz, zzlen, "gunzip %s.gz",
1126                                                name_to_load);
1127                                            system(zz);
1128                                    } else {
1129                                            /*  gunzip into new temp file:  */
1130                                            int tmpfile_handle;
1131                                            char *new_temp_name =
1132                                                strdup("/tmp/gxemul.XXXXXXXXXXXX");
1133                                            tmpfile_handle = mkstemp(new_temp_name);
1134                                            close(tmpfile_handle);
1135                                            snprintf(zz, zzlen, "gunzip -c '%s' > "
1136                                                "%s", name_to_load, new_temp_name);
1137                                            system(zz);
1138                                            name_to_load = new_temp_name;
1139                                            remove_after_load = 1;
1140                                    }
1141                                    free(zz);
1142                            }
1143                            fclose(tmp_f);
1144                    }
1145    
1146                    /*
1147                     *  Ugly (but usable) hack for Playstation Portable:  If the
1148                     *  filename ends with ".pbp" and the file contains an ELF
1149                     *  header, then extract the ELF file into a temporary file.
1150                     */
1151                    if (strlen(name_to_load) > 4 && strcasecmp(name_to_load +
1152                        strlen(name_to_load) - 4, ".pbp") == 0 &&
1153                        (tmp_f = fopen(name_to_load, "r")) != NULL) {
1154                            off_t filesize, j, found=0;
1155                            unsigned char *buf;
1156                            fseek(tmp_f, 0, SEEK_END);
1157                            filesize = ftello(tmp_f);
1158                            fseek(tmp_f, 0, SEEK_SET);
1159                            buf = malloc(filesize);
1160                            if (buf == NULL) {
1161                                    fprintf(stderr, "out of memory while trying"
1162                                        " to read %s\n", name_to_load);
1163                                    exit(1);
1164                            }
1165                            fread(buf, 1, filesize, tmp_f);
1166                            fclose(tmp_f);
1167                            /*  Search for the ELF header, from offset 1 (!):  */
1168                            for (j=1; j<filesize - 4; j++)
1169                                    if (memcmp(buf + j, ELFMAG, SELFMAG) == 0) {
1170                                            found = j;
1171                                            break;
1172                                    }
1173                            if (found != 0) {
1174                                    int tmpfile_handle;
1175                                    char *new_temp_name =
1176                                        strdup("/tmp/gxemul.XXXXXXXXXXXX");
1177                                    debug("extracting ELF from %s (offset 0x%x)\n",
1178                                        name_to_load, (int)found);
1179                                    tmpfile_handle = mkstemp(new_temp_name);
1180                                    write(tmpfile_handle, buf + found,
1181                                        filesize - found);
1182                                    close(tmpfile_handle);
1183                                    name_to_load = new_temp_name;
1184                                    remove_after_load = 1;
1185                            }
1186                    }
1187    
1188                    /*  Special things required _before_ loading the file:  */
1189                    switch (m->arch) {
1190                    case ARCH_X86:
1191                            /*
1192                             *  X86 machines normally don't need to load any files,
1193                             *  they can boot from disk directly. Therefore, an x86
1194                             *  machine usually boots up in 16-bit real mode. When
1195                             *  loading a 32-bit (or even 64-bit) ELF, that's not
1196                             *  very nice, hence this special case.
1197                             */
1198                            pc_bios_simple_pmode_setup(cpu);
1199                            break;
1200                    }
1201    
1202                  byte_order = NO_BYTE_ORDER_OVERRIDE;                  byte_order = NO_BYTE_ORDER_OVERRIDE;
1203    
1204                  file_load(m, m->memory, *load_names, &entrypoint,                  /*
1205                     *  Load the file:  :-)
1206                     */
1207                    file_load(m, m->memory, name_to_load, &entrypoint,
1208                      m->arch, &gp, &byte_order, &toc);                      m->arch, &gp, &byte_order, &toc);
1209    
1210                    if (remove_after_load) {
1211                            debug("removing %s\n", name_to_load);
1212                            unlink(name_to_load);
1213                    }
1214    
1215                  if (byte_order != NO_BYTE_ORDER_OVERRIDE)                  if (byte_order != NO_BYTE_ORDER_OVERRIDE)
1216                          cpu->byte_order = byte_order;                          cpu->byte_order = byte_order;
1217    
1218                  cpu->pc = entrypoint;                  cpu->pc = entrypoint;
1219    
1220                  switch (m->arch) {                  switch (m->arch) {
1221    
1222                    case ARCH_ALPHA:
1223                            /*  For position-independent code:  */
1224                            cpu->cd.alpha.r[ALPHA_T12] = cpu->pc;
1225                            break;
1226    
1227                    case ARCH_ARM:
1228                            if (cpu->pc & 3) {
1229                                    fatal("ARM: lowest bits of pc set: TODO\n");
1230                                    exit(1);
1231                            }
1232                            cpu->pc &= 0xfffffffc;
1233                            break;
1234    
1235                    case ARCH_AVR:
1236                            cpu->pc &= 0xfffff;
1237                            if (cpu->pc & 1) {
1238                                    fatal("AVR: lowest bit of pc set: TODO\n");
1239                                    exit(1);
1240                            }
1241                            break;
1242    
1243                    case ARCH_HPPA:
1244                            break;
1245    
1246                    case ARCH_I960:
1247                            break;
1248    
1249                    case ARCH_IA64:
1250                            break;
1251    
1252                    case ARCH_M68K:
1253                            break;
1254    
1255                  case ARCH_MIPS:                  case ARCH_MIPS:
1256                          if ((cpu->pc >> 32) == 0                          if ((cpu->pc >> 32) == 0 && (cpu->pc & 0x80000000ULL))
                             && (cpu->pc & 0x80000000ULL))  
1257                                  cpu->pc |= 0xffffffff00000000ULL;                                  cpu->pc |= 0xffffffff00000000ULL;
1258    
1259                          cpu->cd.mips.gpr[MIPS_GPR_GP] = gp;                          cpu->cd.mips.gpr[MIPS_GPR_GP] = gp;
# Line 631  void emul_machine_setup(struct machine * Line 1265  void emul_machine_setup(struct machine *
1265                          break;                          break;
1266    
1267                  case ARCH_PPC:                  case ARCH_PPC:
1268                            /*  See http://www.linuxbase.org/spec/ELF/ppc64/
1269                                spec/x458.html for more info.  */
1270                          cpu->cd.ppc.gpr[2] = toc;                          cpu->cd.ppc.gpr[2] = toc;
1271                            /*  TODO  */
1272                            if (cpu->cd.ppc.bits == 32)
1273                                    cpu->pc &= 0xffffffffULL;
1274                            break;
1275    
1276                    case ARCH_SH:
1277                            if (cpu->cd.sh.bits == 32)
1278                                    cpu->pc &= 0xffffffffULL;
1279                            cpu->pc &= ~1;
1280                          break;                          break;
1281    
                 case ARCH_ALPHA:  
                 case ARCH_HPPA:  
1282                  case ARCH_SPARC:                  case ARCH_SPARC:
                 case ARCH_URISC:  
1283                          break;                          break;
1284    
1285                  case ARCH_X86:                  case ARCH_X86:
1286                          /*                          /*
1287                           *  NOTE: The toc field is used to indicate an ELF64                           *  NOTE: The toc field is used to indicate an ELF32
1288                           *  load, on AMD64!                           *  or ELF64 load.
1289                           */                           */
1290                          if (toc != 0) {                          switch (toc) {
1291                                  cpu->cd.x86.mode = 64;                          case 0: /*  16-bit? TODO  */
1292                          } else                                  cpu->pc &= 0xffffffffULL;
1293                                    break;
1294                            case 1: /*  32-bit.  */
1295                                  cpu->pc &= 0xffffffffULL;                                  cpu->pc &= 0xffffffffULL;
1296                                    break;
1297                            case 2: /*  64-bit:  TODO  */
1298                                    fatal("64-bit x86 load. TODO\n");
1299                                    exit(1);
1300                            }
1301                          break;                          break;
1302    
1303                  default:                  default:
# Line 699  void emul_machine_setup(struct machine * Line 1348  void emul_machine_setup(struct machine *
1348          add_dump_points(m);          add_dump_points(m);
1349    
1350          /*  TODO: This is MIPS-specific!  */          /*  TODO: This is MIPS-specific!  */
1351          if (m->machine_type == MACHINE_DEC &&          if (m->machine_type == MACHINE_PMAX &&
1352              cpu->cd.mips.cpu_type.mmu_model == MMU3K)              cpu->cd.mips.cpu_type.mmu_model == MMU3K)
1353                  add_symbol_name(&m->symbol_context,                  add_symbol_name(&m->symbol_context,
1354                      0x9fff0000, 0x10000, "r2k3k_cache", 0);                      0x9fff0000, 0x10000, "r2k3k_cache", 0, 0);
1355    
1356          symbol_recalc_sizes(&m->symbol_context);          symbol_recalc_sizes(&m->symbol_context);
1357    
# Line 717  void emul_machine_setup(struct machine * Line 1366  void emul_machine_setup(struct machine *
1366    
1367          debug("starting cpu%i at ", m->bootstrap_cpu);          debug("starting cpu%i at ", m->bootstrap_cpu);
1368          switch (m->arch) {          switch (m->arch) {
1369    
1370            case ARCH_ARM:
1371                    /*  ARM cpus aren't 64-bit:  */
1372                    debug("0x%08x", (int)entrypoint);
1373                    break;
1374    
1375            case ARCH_AVR:
1376                    /*  Atmel AVR uses a 16-bit or 22-bit program counter:  */
1377                    debug("0x%04x", (int)entrypoint);
1378                    break;
1379    
1380          case ARCH_MIPS:          case ARCH_MIPS:
1381                  if (cpu->cd.mips.cpu_type.isa_level < 3 ||                  if (cpu->is_32bit) {
                     cpu->cd.mips.cpu_type.isa_level == 32) {  
1382                          debug("0x%08x", (int)m->cpus[                          debug("0x%08x", (int)m->cpus[
1383                              m->bootstrap_cpu]->pc);                              m->bootstrap_cpu]->pc);
1384                          if (cpu->cd.mips.gpr[MIPS_GPR_GP] != 0)                          if (cpu->cd.mips.gpr[MIPS_GPR_GP] != 0)
# Line 734  void emul_machine_setup(struct machine * Line 1393  void emul_machine_setup(struct machine *
1393                                      cpu->cd.mips.gpr[MIPS_GPR_GP]);                                      cpu->cd.mips.gpr[MIPS_GPR_GP]);
1394                  }                  }
1395                  break;                  break;
1396    
1397          case ARCH_PPC:          case ARCH_PPC:
1398                  if (cpu->cd.ppc.bits == 32)                  if (cpu->cd.ppc.bits == 32)
1399                          debug("0x%08x", (int)entrypoint);                          debug("0x%08x", (int)entrypoint);
1400                  else                  else
1401                          debug("0x%016llx", (long long)entrypoint);                          debug("0x%016llx", (long long)entrypoint);
1402                  break;                  break;
1403          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];  
                         }  
   
                         sprintf(tmps, "0x%%0%illx", cpu->cd.urisc.wordlen / 4);  
                         debug(tmps, (long long)entrypoint);  
                         cpu->pc = entrypoint;  
                 }  
                 break;  
1404          case ARCH_X86:          case ARCH_X86:
1405                  if (cpu->cd.x86.mode == 16)                  debug("0x%04x:0x%llx", cpu->cd.x86.s[X86_S_CS],
1406                          debug("0x%04x:0x%04x", cpu->cd.x86.s[X86_S_CS],                      (long long)cpu->pc);
1407                              (int)cpu->pc);                  break;
1408                  else if (cpu->cd.x86.mode == 32)  
1409            default:
1410                    if (cpu->is_32bit)
1411                          debug("0x%08x", (int)cpu->pc);                          debug("0x%08x", (int)cpu->pc);
1412                  else                  else
1413                          debug("0x%016llx", (long long)cpu->pc);                          debug("0x%016llx", (long long)cpu->pc);
                 break;  
         default:  
                 debug("0x%016llx", (long long)cpu->pc);  
1414          }          }
1415          debug("\n");          debug("\n");
1416    
# Line 788  void emul_machine_setup(struct machine * Line 1425  void emul_machine_setup(struct machine *
1425   */   */
1426  void emul_dumpinfo(struct emul *e)  void emul_dumpinfo(struct emul *e)
1427  {  {
1428          int j, nm, iadd = 4;          int j, nm, iadd = DEBUG_INDENTATION;
1429    
1430          if (e->net != NULL)          if (e->net != NULL)
1431                  net_dumpinfo(e->net);                  net_dumpinfo(e->net);
# Line 817  void emul_dumpinfo(struct emul *e) Line 1454  void emul_dumpinfo(struct emul *e)
1454   */   */
1455  void emul_simple_init(struct emul *emul)  void emul_simple_init(struct emul *emul)
1456  {  {
1457          int iadd=4;          int iadd = DEBUG_INDENTATION;
1458          struct machine *m;          struct machine *m;
1459    
1460          if (emul->n_machines != 1) {          if (emul->n_machines != 1) {
# Line 831  void emul_simple_init(struct emul *emul) Line 1468  void emul_simple_init(struct emul *emul)
1468                  debug("Simple setup...\n");                  debug("Simple setup...\n");
1469                  debug_indentation(iadd);                  debug_indentation(iadd);
1470    
1471                  /*  Create a network:  */                  /*  Create a simple network:  */
1472                  emul->net = net_init(emul, NET_INIT_FLAG_GATEWAY,                  emul->net = net_init(emul, NET_INIT_FLAG_GATEWAY,
1473                      "10.0.0.0", 8);                      "10.0.0.0", 8, NULL, 0, 0);
1474          } else {          } else {
1475                  /*  Userland pseudo-machine:  */                  /*  Userland pseudo-machine:  */
1476                  debug("Syscall emulation (userland-only) setup...\n");                  debug("Syscall emulation (userland-only) setup...\n");
# Line 854  void emul_simple_init(struct emul *emul) Line 1491  void emul_simple_init(struct emul *emul)
1491   */   */
1492  struct emul *emul_create_from_configfile(char *fname)  struct emul *emul_create_from_configfile(char *fname)
1493  {  {
1494          int iadd = 4;          int iadd = DEBUG_INDENTATION;
1495          struct emul *e = emul_new(fname);          struct emul *e = emul_new(fname);
1496          FILE *f;          FILE *f;
1497          char buf[128];          char buf[128];
# Line 908  void emul_run(struct emul **emuls, int n Line 1545  void emul_run(struct emul **emuls, int n
1545    
1546          atexit(fix_console);          atexit(fix_console);
1547    
         i = 79;  
         while (i-- > 0)  
                 debug("-");  
         debug("\n\n");  
   
1548          /*  Initialize the interactive debugger:  */          /*  Initialize the interactive debugger:  */
1549          debugger_init(emuls, n_emuls);          debugger_init(emuls, n_emuls);
1550    
1551            /*  Run any additional debugger commands before starting:  */
1552            for (i=0; i<n_emuls; i++) {
1553                    struct emul *emul = emuls[i];
1554                    if (emul->n_debugger_cmds > 0) {
1555                            int j;
1556                            if (i == 0)
1557                                    print_separator();
1558                            for (j = 0; j < emul->n_debugger_cmds; j ++) {
1559                                    debug("> %s\n", emul->debugger_cmds[j]);
1560                                    debugger_execute_cmd(emul->debugger_cmds[j],
1561                                        strlen(emul->debugger_cmds[j]));
1562                            }
1563                    }
1564            }
1565    
1566            print_separator();
1567            debug("\n");
1568    
1569    
1570          /*          /*
1571           *  console_init_main() makes sure that the terminal is in a           *  console_init_main() makes sure that the terminal is in a
1572           *  reasonable state.           *  reasonable state.
# Line 940  void emul_run(struct emul **emuls, int n Line 1591  void emul_run(struct emul **emuls, int n
1591                  if (e == NULL)                  if (e == NULL)
1592                          continue;                          continue;
1593                  for (j=0; j<e->n_machines; j++)                  for (j=0; j<e->n_machines; j++)
1594                          cpu_run_init(e, e->machines[j]);                          cpu_run_init(e->machines[j]);
1595          }          }
1596    
1597            /*  TODO: Generalize:  */
1598            if (emuls[0]->machines[0]->show_trace_tree)
1599                    cpu_functioncall_trace(emuls[0]->machines[0]->cpus[0],
1600                        emuls[0]->machines[0]->cpus[0]->pc);
1601    
1602          /*          /*
1603           *  MAIN LOOP:           *  MAIN LOOP:
1604           *           *
# Line 975  void emul_run(struct emul **emuls, int n Line 1631  void emul_run(struct emul **emuls, int n
1631                  if (e == NULL)                  if (e == NULL)
1632                          continue;                          continue;
1633                  for (j=0; j<e->n_machines; j++)                  for (j=0; j<e->n_machines; j++)
1634                          cpu_run_deinit(e, e->machines[j]);                          cpu_run_deinit(e->machines[j]);
1635          }          }
1636    
1637          /*  force_debugger_at_exit flag set? Then enter the debugger:  */          /*  force_debugger_at_exit flag set? Then enter the debugger:  */

Legend:
Removed from v.4  
changed lines
  Added in v.22

  ViewVC Help
Powered by ViewVC 1.1.26