Search
lxdream.org :: lxdream/src/test/testsh4x86.c
lxdream 0.9.1
released Jun 29
Download Now
filename src/test/testsh4x86.c
changeset 740:dd11269ee48b
prev672:cc2c2b0ab272
next775:b50989a63120
author nkeynes
date Wed Jul 23 11:10:49 2008 +0000 (15 years ago)
permissions -rw-r--r--
last change Change sprintf to snprintf (safer)
view annotate diff log raw
     1 /**
     2  * $Id$
     3  *
     4  * Test cases for the SH4 => x86 translator core. Takes as
     5  * input a binary SH4 object (and VMA), generates the
     6  * corresponding x86 code, and outputs the disassembly.
     7  *
     8  * Copyright (c) 2005 Nathan Keynes.
     9  *
    10  * This program is free software; you can redistribute it and/or modify
    11  * it under the terms of the GNU General Public License as published by
    12  * the Free Software Foundation; either version 2 of the License, or
    13  * (at your option) any later version.
    14  *
    15  * This program is distributed in the hope that it will be useful,
    16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
    17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    18  * GNU General Public License for more details.
    19  */
    21 #include <stdio.h>
    22 #include <stdarg.h>
    23 #include <getopt.h>
    24 #include <sys/stat.h>
    25 #include "x86dasm/x86dasm.h"
    26 #include "sh4/sh4trans.h"
    27 #include "sh4/sh4core.h"
    28 #include "sh4/sh4mmio.h"
    30 struct mmio_region mmio_region_MMU;
    31 struct breakpoint_struct sh4_breakpoints[MAX_BREAKPOINTS];
    32 int sh4_breakpoint_count = 0;
    34 #define MAX_INS_SIZE 32
    36 char *option_list = "s:o:d:h";
    37 struct option longopts[1] = { { NULL, 0, 0, 0 } };
    39 char *input_file = NULL;
    40 char *diff_file = NULL;
    41 char *output_file = NULL;
    42 gboolean sh4_starting;
    43 uint32_t start_addr = 0x8C010000;
    44 uint32_t sh4_cpu_period = 5;
    45 sh4ptr_t sh4_main_ram;
    46 FILE *in;
    48 char *inbuf;
    50 struct x86_symbol local_symbols[] = {
    51     { "_sh4_read_byte", sh4_read_byte },
    52     { "_sh4_read_word", sh4_read_word },
    53     { "_sh4_read_long", sh4_read_long },
    54     { "_sh4_write_byte", sh4_write_byte },
    55     { "_sh4_write_word", sh4_write_word },
    56     { "_sh4_write_long", sh4_write_long }
    57 };
    59 int32_t sh4_read_byte( uint32_t addr ) 
    60 {
    61     return *(uint8_t *)(inbuf+(addr-start_addr));
    62 }
    63 int32_t sh4_read_word( uint32_t addr ) 
    64 {
    65     return *(uint16_t *)(inbuf+(addr-start_addr));
    66 }
    67 int32_t sh4_read_long( uint32_t addr ) 
    68 {
    69     return *(uint32_t *)(inbuf+(addr-start_addr));
    70 }
    71 // Stubs
    72 gboolean sh4_execute_instruction( ) { }
    73 void sh4_accept_interrupt() {}
    74 void sh4_set_breakpoint( uint32_t pc, breakpoint_type_t type ) { }
    75 gboolean sh4_clear_breakpoint( uint32_t pc, breakpoint_type_t type ) { }
    76 int sh4_get_breakpoint( uint32_t pc ) { }
    77 void sh4_core_exit( int exit_code ){}
    78 void sh4_flush_icache(){}
    79 void event_execute() {}
    80 void TMU_run_slice( uint32_t nanos ) {}
    81 void SCIF_run_slice( uint32_t nanos ) {}
    82 void sh4_write_byte( uint32_t addr, uint32_t val ) {}
    83 void sh4_write_word( uint32_t addr, uint32_t val ) {}
    84 void sh4_write_long( uint32_t addr, uint32_t val ) {}
    85 void sh4_write_fpscr( uint32_t val ) { }
    86 void sh4_switch_fr_banks() { }
    87 void mem_copy_to_sh4( sh4addr_t addr, sh4ptr_t src, size_t size ) { }
    88 void sh4_write_sr( uint32_t val ) { }
    89 gboolean sh4_has_page( sh4vma_t vma ) { return TRUE; }
    90 void syscall_invoke( uint32_t val ) { }
    91 void dreamcast_stop() {} 
    92 void dreamcast_reset() {}
    93 uint32_t sh4_read_sr( void ) { }
    94 gboolean sh4_raise_reset( int exc ) {}
    95 gboolean sh4_raise_exception( int exc ) {}
    96 gboolean sh4_raise_tlb_exception( int exc ) {}
    97 gboolean sh4_raise_trap( int exc ) {}
    98 void sh4_sleep() { }
    99 uint32_t sh4_sleep_run_slice(uint32_t nanosecs) { }
   100 void sh4_fsca( uint32_t angle, float *fr ) { }
   101 void sh4_ftrv( float *fv ) { }
   102 void signsat48(void) { }
   103 gboolean gui_error_dialog( const char *fmt, ... ) { }
   104 struct sh4_icache_struct sh4_icache;
   106 void usage()
   107 {
   108     fprintf( stderr, "Usage: testsh4x86 [options] <input bin file>\n");
   109     fprintf( stderr, "Options:\n");
   110     fprintf( stderr, "  -d <filename>  Diff results against contents of file\n" );
   111     fprintf( stderr, "  -h             Display this help message\n" );
   112     fprintf( stderr, "  -o <filename>  Output disassembly to file [stdout]\n" );
   113     fprintf( stderr, "  -s <addr>      Specify start address of binary [8C010000]\n" );
   114 }
   116 void emit( void *ptr, int level, const gchar *source, const char *msg, ... )
   117 {
   118     va_list ap;
   119     va_start( ap, msg );
   120     vfprintf( stderr, msg, ap );
   121     fprintf( stderr, "\n" );
   122     va_end(ap);
   123 }
   126 struct sh4_registers sh4r;
   129 int main( int argc, char *argv[] )
   130 {
   131     struct stat st;
   132     int opt;
   133     while( (opt = getopt_long( argc, argv, option_list, longopts, NULL )) != -1 ) {
   134 	switch( opt ) {
   135 	case 'd':
   136 	    diff_file = optarg;
   137 	    break;
   138 	case 'o':
   139 	    output_file = optarg;
   140 	    break;
   141 	case 's':
   142 	    start_addr = strtoul(optarg, NULL, 0);
   143 	    break;
   144 	case 'h':
   145 	    usage();
   146 	    exit(0);
   147 	}
   148     }
   149     if( optind < argc ) {
   150 	input_file = argv[optind++];
   151     } else {
   152 	usage();
   153 	exit(1);
   154     }
   156     in = fopen( input_file, "ro" );
   157     if( in == NULL ) {
   158 	perror( "Unable to open input file" );
   159 	exit(2);
   160     }
   161     fstat( fileno(in), &st );
   162     inbuf = malloc( st.st_size );
   163     fread( inbuf, st.st_size, 1, in );
   165     xlat_cache_init();
   166     uint32_t pc;
   167     uint8_t *buf = sh4_translate_basic_block( start_addr );
   168     uint32_t buflen = xlat_get_block_size(buf);
   169     x86_disasm_init( buf, 0x8c010000, buflen );
   170     x86_set_symtab( local_symbols, 6 );
   171     for( pc = 0x8c010000; pc < 0x8c010000 + buflen;  ) {
   172 	char buf[256];
   173 	char op[256];
   174 	uint32_t pc2 = x86_disasm_instruction( pc, buf, sizeof(buf), op );
   175 	fprintf( stdout, "%08X: %-20s %s\n", pc, op, buf );
   176 	pc = pc2;
   177     }
   178 }
.