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

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

revision 37 by dpavlin, Mon Oct 8 16:21:34 2007 UTC revision 38 by dpavlin, Mon Oct 8 16:21:53 2007 UTC
# Line 25  Line 25 
25   *  SUCH DAMAGE.   *  SUCH DAMAGE.
26   *   *
27   *   *
28   *  $Id: cpu_sparc.c,v 1.42 2007/03/18 02:54:59 debug Exp $   *  $Id: cpu_sparc.c,v 1.44 2007/03/26 02:18:44 debug Exp $
29   *   *
30   *  SPARC CPU emulation.   *  SPARC CPU emulation.
31   */   */
# Line 380  void sparc_cpu_tlbdump(struct machine *m Line 380  void sparc_cpu_tlbdump(struct machine *m
380  }  }
381    
382    
 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);  
 }  
   
   
 /*  
  *  sparc_cpu_gdb_stub():  
  *  
  *  Execute a "remote GDB" command. Returns a newly allocated response string  
  *  on success, NULL on failure.  
  */  
 char *sparc_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';  
                 /*  TODO  */  
                 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 = sizeof(uint32_t);  
                 /*  TODO: 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 < N_SPARC_REG) {  
                         add_response_word(cpu, r,  
                             cpu->cd.sparc.r[regnr], len, wlen);  
                 } else if (regnr == 0x44) {  
                         add_response_word(cpu, r, cpu->pc, len, wlen);  
 /* TODO:  
 20..3f = f0..f31  
 40 = y  
 41 = psr  
 42 = wim  
 43 = tbr  
 45 = npc  
 46 = fsr  
 47 = csr  
 */  
                 } else {  
                         /*  Unimplemented:  */  
                         add_response_word(cpu, r, 0xcc000 + regnr, len, wlen);  
                 }  
                 return r;  
         }  
   
         fatal("sparc_cpu_gdb_stub(): TODO\n");  
         return NULL;  
 }  
   
   
 /*  
  *  sparc_cpu_interrupt():  
  */  
 int sparc_cpu_interrupt(struct cpu *cpu, uint64_t irq_nr)  
 {  
         fatal("sparc_cpu_interrupt(): TODO\n");  
         return 0;  
 }  
   
   
 /*  
  *  sparc_cpu_interrupt_ack():  
  */  
 int sparc_cpu_interrupt_ack(struct cpu *cpu, uint64_t irq_nr)  
 {  
         /*  fatal("sparc_cpu_interrupt_ack(): TODO\n");  */  
         return 0;  
 }  
   
   
383  /*  /*
384   *  sparc_cpu_instruction_has_delayslot():   *  sparc_cpu_instruction_has_delayslot():
385   *   *

Legend:
Removed from v.37  
changed lines
  Added in v.38

  ViewVC Help
Powered by ViewVC 1.1.26