/[gxemul]/trunk/src/cpus/cpu_alpha.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/cpus/cpu_alpha.c

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

revision 26 by dpavlin, Mon Oct 8 16:20:10 2007 UTC revision 42 by dpavlin, Mon Oct 8 16:22:32 2007 UTC
# Line 1  Line 1 
1  /*  /*
2   *  Copyright (C) 2005-2006  Anders Gavare.  All rights reserved.   *  Copyright (C) 2005-2007  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: cpu_alpha.c,v 1.17 2006/06/24 21:47:23 debug Exp $   *  $Id: cpu_alpha.c,v 1.27 2007/06/07 15:36:24 debug Exp $
29   *   *
30   *  Alpha CPU emulation.   *  Alpha CPU emulation.
31   *   *
# Line 41  Line 41 
41  #include <ctype.h>  #include <ctype.h>
42    
43  #include "cpu.h"  #include "cpu.h"
44    #include "interrupt.h"
45  #include "machine.h"  #include "machine.h"
46  #include "memory.h"  #include "memory.h"
47  #include "misc.h"  #include "misc.h"
48    #include "settings.h"
49  #include "symbol.h"  #include "symbol.h"
50    #include "timer.h"
51    
52  #define DYNTRANS_8K  #define DYNTRANS_8K
53  #define DYNTRANS_PAGESIZE       8192  #define DYNTRANS_PAGESIZE       8192
54  #include "tmp_alpha_head.c"  #include "tmp_alpha_head.c"
55    
56    
57    extern int native_code_translation_enabled;
58    
59  /*  Alpha symbolic register names:  */  /*  Alpha symbolic register names:  */
60  static char *alpha_regname[N_ALPHA_REGS] = ALPHA_REG_NAMES;  static char *alpha_regname[N_ALPHA_REGS] = ALPHA_REG_NAMES;
61    
62    void alpha_irq_interrupt_assert(struct interrupt *interrupt);
63    void alpha_irq_interrupt_deassert(struct interrupt *interrupt);
64    
65    
66  /*  /*
67   *  alpha_cpu_new():   *  alpha_cpu_new():
# Line 77  int alpha_cpu_new(struct cpu *cpu, struc Line 85  int alpha_cpu_new(struct cpu *cpu, struc
85          if (cpu_type_defs[i].name == NULL)          if (cpu_type_defs[i].name == NULL)
86                  return 0;                  return 0;
87    
88            cpu->is_32bit = 0;
89            cpu->byte_order = EMUL_LITTLE_ENDIAN;
90    
91          cpu->memory_rw = alpha_memory_rw;          cpu->memory_rw = alpha_memory_rw;
92            cpu->run_instr = alpha_run_instr;
93          cpu->translate_v2p = alpha_translate_v2p;          cpu->translate_v2p = alpha_translate_v2p;
94          cpu->update_translation_table = alpha_update_translation_table;          cpu->update_translation_table = alpha_update_translation_table;
95          cpu->invalidate_translation_caches =          cpu->invalidate_translation_caches =
96              alpha_invalidate_translation_caches;              alpha_invalidate_translation_caches;
97          cpu->invalidate_code_translation = alpha_invalidate_code_translation;          cpu->invalidate_code_translation = alpha_invalidate_code_translation;
98          cpu->is_32bit = 0;  
99            cpu->cd.alpha.cpu_type = cpu_type_defs[i];
100    
101          /*  Only show name and caches etc for CPU nr 0:  */          /*  Only show name and caches etc for CPU nr 0:  */
102          if (cpu_id == 0) {          if (cpu_id == 0) {
# Line 92  int alpha_cpu_new(struct cpu *cpu, struc Line 105  int alpha_cpu_new(struct cpu *cpu, struc
105    
106          cpu->cd.alpha.r[ALPHA_SP] = 0xfffffc000000ff00ULL;          cpu->cd.alpha.r[ALPHA_SP] = 0xfffffc000000ff00ULL;
107    
108            /*  Set up dummy kentry pointers to something which crashes
109                the machine:  */
110            store_32bit_word(cpu, 0x10010, 0x3fffffc);
111            for (i=0; i<N_ALPHA_KENTRY; i++)
112                    cpu->cd.alpha.kentry[i] = 0x10010;
113    
114            /*  Bogus initial context (will be overwritten on first
115                context switch):  */
116            cpu->cd.alpha.ctx = 0x10100;
117    
118            CPU_SETTINGS_ADD_REGISTER64("pc", cpu->pc);
119            for (i=0; i<N_ALPHA_REGS; i++)
120                    CPU_SETTINGS_ADD_REGISTER64(alpha_regname[i],
121                        cpu->cd.alpha.r[i]);
122    
123            /*  Register the CPU interrupt pin:  */
124            {
125                    struct interrupt template;
126    
127                    memset(&template, 0, sizeof(template));
128                    template.line = 0;
129                    template.name = cpu->path;
130                    template.extra = cpu;
131                    template.interrupt_assert = alpha_irq_interrupt_assert;
132                    template.interrupt_deassert = alpha_irq_interrupt_deassert;
133                    interrupt_handler_register(&template);
134            }
135    
136            if (native_code_translation_enabled)
137                    cpu->sampling_timer = timer_add(CPU_SAMPLE_TIMER_HZ,
138                        alpha_timer_sample_tick, cpu);
139    
140          return 1;          return 1;
141  }  }
142    
# Line 119  void alpha_cpu_list_available_types(void Line 164  void alpha_cpu_list_available_types(void
164          i = 0;          i = 0;
165          while (tdefs[i].name != NULL) {          while (tdefs[i].name != NULL) {
166                  debug("%s", tdefs[i].name);                  debug("%s", tdefs[i].name);
167                  for (j=16 - strlen(tdefs[i].name); j>0; j--)                  for (j=13 - strlen(tdefs[i].name); j>0; j--)
168                          debug(" ");                          debug(" ");
169                  i++;                  i++;
170                  if ((i % 4) == 0 || tdefs[i].name == NULL)                  if ((i % 4) == 0 || tdefs[i].name == NULL)
# Line 129  void alpha_cpu_list_available_types(void Line 174  void alpha_cpu_list_available_types(void
174    
175    
176  /*  /*
  *  alpha_cpu_register_match():  
  */  
 void alpha_cpu_register_match(struct machine *m, char *name,  
         int writeflag, uint64_t *valuep, int *match_register)  
 {  
         int i, cpunr = 0;  
   
         /*  CPU number:  */  
   
         /*  TODO  */  
   
         if (strcasecmp(name, "pc") == 0) {  
                 if (writeflag) {  
                         m->cpus[cpunr]->pc = *valuep;  
                 } else  
                         *valuep = m->cpus[cpunr]->pc;  
                 *match_register = 1;  
         }  
   
         /*  Register names:  */  
         for (i=0; i<N_ALPHA_REGS; i++) {  
                 if (strcasecmp(name, alpha_regname[i]) == 0) {  
                         if (writeflag)  
                                 m->cpus[cpunr]->cd.alpha.r[i] = *valuep;  
                         else  
                                 *valuep = m->cpus[cpunr]->cd.alpha.r[i];  
                         *match_register = 1;  
                 }  
         }  
 }  
   
   
 /*  
177   *  alpha_cpu_register_dump():   *  alpha_cpu_register_dump():
178   *     *  
179   *  Dump cpu registers in a relatively readable format.   *  Dump cpu registers in a relatively readable format.
# Line 207  void alpha_cpu_tlbdump(struct machine *m Line 219  void alpha_cpu_tlbdump(struct machine *m
219  }  }
220    
221    
 static void add_response_word(struct cpu *cpu, char *r, uint64_t value,  
         size_t maxlen, int len)  
 {  
         char *format = (len == 4)? "%08"PRIx64 : "%016"PRIx64;  
         if (len == 4)  
                 value &= 0xffffffffULL;  
         if (cpu->byte_order == EMUL_LITTLE_ENDIAN) {  
                 if (len == 4) {  
                         value = ((value & 0xff) << 24) +  
                                 ((value & 0xff00) << 8) +  
                                 ((value & 0xff0000) >> 8) +  
                                 ((value & 0xff000000) >> 24);  
                 } else {  
                         value = ((value & 0xff) << 56) +  
                                 ((value & 0xff00) << 40) +  
                                 ((value & 0xff0000) << 24) +  
                                 ((value & 0xff000000ULL) << 8) +  
                                 ((value & 0xff00000000ULL) >> 8) +  
                                 ((value & 0xff0000000000ULL) >> 24) +  
                                 ((value & 0xff000000000000ULL) >> 40) +  
                                 ((value & 0xff00000000000000ULL) >> 56);  
                 }  
         }  
         snprintf(r + strlen(r), maxlen - strlen(r), format, (uint64_t)value);  
 }  
   
   
 /*  
  *  alpha_cpu_gdb_stub():  
  *  
  *  Execute a "remote GDB" command. Returns a newly allocated response string  
  *  on success, NULL on failure.  
  */  
 char *alpha_cpu_gdb_stub(struct cpu *cpu, char *cmd)  
 {  
         if (strcmp(cmd, "g") == 0) {  
                 int i;  
                 char *r;  
                 size_t wlen = cpu->is_32bit?  
                     sizeof(uint32_t) : sizeof(uint64_t);  
                 size_t len = 1 + 76 * wlen;  
                 r = malloc(len);  
                 if (r == NULL) {  
                         fprintf(stderr, "out of memory\n");  
                         exit(1);  
                 }  
                 r[0] = '\0';  
                 for (i=0; i<128; i++)  
                         add_response_word(cpu, r, i, len, wlen);  
                 return r;  
         }  
   
         if (cmd[0] == 'p') {  
                 int regnr = strtol(cmd + 1, NULL, 16);  
                 size_t wlen = cpu->is_32bit?  
                     sizeof(uint32_t) : sizeof(uint64_t);  
                 size_t len = 2 * wlen + 1;  
                 char *r = malloc(len);  
                 r[0] = '\0';  
                 if (regnr >= 0 && regnr <= 31) {  
                         add_response_word(cpu, r,  
                             cpu->cd.alpha.r[regnr], len, wlen);  
                 } else if (regnr >= 32 && regnr <= 62) {  
                         add_response_word(cpu, r,  
                             cpu->cd.alpha.f[regnr - 32], len, wlen);  
                 } else if (regnr == 0x3f) {  
                         add_response_word(cpu, r, cpu->cd.alpha.fpcr,  
                             len, wlen);  
                 } else if (regnr == 0x40) {  
                         add_response_word(cpu, r, cpu->pc, len, wlen);  
                 } else {  
                         /*  Unimplemented:  */  
                         add_response_word(cpu, r, 0xcc000 + regnr, len, wlen);  
                 }  
                 return r;  
         }  
   
         fatal("alpha_cpu_gdb_stub(): TODO\n");  
         return NULL;  
 }  
   
   
222  /*  /*
223   *  alpha_cpu_interrupt():   *  alpha_irq_interrupt_assert():
224     *  alpha_irq_interrupt_deassert():
225   */   */
226  int alpha_cpu_interrupt(struct cpu *cpu, uint64_t irq_nr)  void alpha_irq_interrupt_assert(struct interrupt *interrupt)
227  {  {
228          fatal("alpha_cpu_interrupt(): TODO\n");          struct cpu *cpu = (struct cpu *) interrupt->extra;
229          return 0;          cpu->cd.alpha.irq_asserted = 1;
230  }  }
231    void alpha_irq_interrupt_deassert(struct interrupt *interrupt)
   
 /*  
  *  alpha_cpu_interrupt_ack():  
  */  
 int alpha_cpu_interrupt_ack(struct cpu *cpu, uint64_t irq_nr)  
232  {  {
233          /*  fatal("alpha_cpu_interrupt_ack(): TODO\n");  */          struct cpu *cpu = (struct cpu *) interrupt->extra;
234          return 0;          cpu->cd.alpha.irq_asserted = 0;
235  }  }
236    
237    
# Line 500  int alpha_cpu_disassemble_instr(struct c Line 426  int alpha_cpu_disassemble_instr(struct c
426                  case 0x061: mnem = "amask"; break;                  case 0x061: mnem = "amask"; break;
427                  case 0x064: mnem = "cmovle"; break;                  case 0x064: mnem = "cmovle"; break;
428                  case 0x066: mnem = "cmovgt"; break;                  case 0x066: mnem = "cmovgt"; break;
429                    case 0x06c: mnem = "implver"; break;
430                  default:debug("UNIMPLEMENTED opcode 0x%x func 0x%x\n",                  default:debug("UNIMPLEMENTED opcode 0x%x func 0x%x\n",
431                              opcode, func);                              opcode, func);
432                  }                  }
# Line 518  int alpha_cpu_disassemble_instr(struct c Line 445  int alpha_cpu_disassemble_instr(struct c
445                          else                          else
446                                  debug("mov\t%s,%s\n", alpha_regname[ra],                                  debug("mov\t%s,%s\n", alpha_regname[ra],
447                                      alpha_regname[rc]);                                      alpha_regname[rc]);
448                    } else if (func == 0x1ec) {
449                            /*  implver  */
450                            debug("%s\t%s\n", mnem, alpha_regname[rc]);
451                  } else if (func & 0x80)                  } else if (func & 0x80)
452                          debug("%s\t%s,0x%x,%s\n", mnem,                          debug("%s\t%s,0x%x,%s\n", mnem,
453                              alpha_regname[ra], (rb << 3) + (func >> 8),                              alpha_regname[ra], (rb << 3) + (func >> 8),

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

  ViewVC Help
Powered by ViewVC 1.1.26