Search
lxdream.org :: lxdream/src/test/testsh4x86.c
lxdream 0.9.1
released Jun 29
Download Now
filename src/test/testsh4x86.c
changeset 578:5fbe050b0558
prev571:9bc09948d0f2
next1065:bc1cc0c54917
author nkeynes
date Mon Jan 14 10:34:57 2008 +0000 (16 years ago)
branchlxdream-mmu
permissions -rw-r--r--
last change Repair testsh4x86 again
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 uint32_t start_addr = 0x8C010000;
    43 uint32_t sh4_cpu_period = 5;
    44 sh4ptr_t sh4_main_ram;
    45 FILE *in;
    47 char *inbuf;
    49 struct x86_symbol local_symbols[] = {
    50     { "_sh4_read_byte", sh4_read_byte },
    51     { "_sh4_read_word", sh4_read_word },
    52     { "_sh4_read_long", sh4_read_long },
    53     { "_sh4_write_byte", sh4_write_byte },
    54     { "_sh4_write_word", sh4_write_word },
    55     { "_sh4_write_long", sh4_write_long }
    56 };
    58 int32_t sh4_read_byte( uint32_t addr ) 
    59 {
    60     return *(uint8_t *)(inbuf+(addr-start_addr));
    61 }
    62 int32_t sh4_read_word( uint32_t addr ) 
    63 {
    64     return *(uint16_t *)(inbuf+(addr-start_addr));
    65 }
    66 int32_t sh4_read_long( uint32_t addr ) 
    67 {
    68     return *(uint32_t *)(inbuf+(addr-start_addr));
    69 }
    70 // Stubs
    71 gboolean sh4_execute_instruction( ) { }
    72 void sh4_accept_interrupt() {}
    73 void sh4_set_breakpoint( uint32_t pc, breakpoint_type_t type ) { }
    74 gboolean sh4_clear_breakpoint( uint32_t pc, breakpoint_type_t type ) { }
    75 gboolean sh4_is_using_xlat() { return TRUE; }
    76 int sh4_get_breakpoint( uint32_t pc ) { }
    77 void event_execute() {}
    78 void TMU_run_slice( uint32_t nanos ) {}
    79 void SCIF_run_slice( uint32_t nanos ) {}
    80 void sh4_write_byte( uint32_t addr, uint32_t val ) {}
    81 void sh4_write_word( uint32_t addr, uint32_t val ) {}
    82 void sh4_write_long( uint32_t addr, uint32_t val ) {}
    83 void mem_copy_to_sh4( sh4addr_t addr, sh4ptr_t src, size_t size ) { }
    84 void sh4_write_sr( uint32_t val ) { }
    85 void syscall_invoke( uint32_t val ) { }
    86 void dreamcast_stop() {} 
    87 uint32_t sh4_read_sr( void ) { }
    88 gboolean sh4_raise_reset( int exc ) {}
    89 gboolean sh4_raise_exception( int exc ) {}
    90 gboolean sh4_raise_tlb_exception( int exc ) {}
    91 gboolean sh4_raise_trap( int exc ) {}
    92 void sh4_sleep() { }
    93 void sh4_fsca( uint32_t angle, float *fr ) { }
    94 void sh4_ftrv( float *fv, float *xmtrx ) { }
    95 void signsat48(void) { }
    96 gboolean gui_error_dialog( const char *fmt, ... ) { }
    97 struct sh4_icache_struct sh4_icache;
    99 void usage()
   100 {
   101     fprintf( stderr, "Usage: testsh4x86 [options] <input bin file>\n");
   102     fprintf( stderr, "Options:\n");
   103     fprintf( stderr, "  -d <filename>  Diff results against contents of file\n" );
   104     fprintf( stderr, "  -h             Display this help message\n" );
   105     fprintf( stderr, "  -o <filename>  Output disassembly to file [stdout]\n" );
   106     fprintf( stderr, "  -s <addr>      Specify start address of binary [8C010000]\n" );
   107 }
   109 void emit( void *ptr, int level, const gchar *source, const char *msg, ... )
   110 {
   111     va_list ap;
   112     va_start( ap, msg );
   113     vfprintf( stderr, msg, ap );
   114     fprintf( stderr, "\n" );
   115     va_end(ap);
   116 }
   119 struct sh4_registers sh4r;
   122 int main( int argc, char *argv[] )
   123 {
   124     struct stat st;
   125     int opt;
   126     while( (opt = getopt_long( argc, argv, option_list, longopts, NULL )) != -1 ) {
   127 	switch( opt ) {
   128 	case 'd':
   129 	    diff_file = optarg;
   130 	    break;
   131 	case 'o':
   132 	    output_file = optarg;
   133 	    break;
   134 	case 's':
   135 	    start_addr = strtoul(optarg, NULL, 0);
   136 	    break;
   137 	case 'h':
   138 	    usage();
   139 	    exit(0);
   140 	}
   141     }
   142     if( optind < argc ) {
   143 	input_file = argv[optind++];
   144     } else {
   145 	usage();
   146 	exit(1);
   147     }
   149     in = fopen( input_file, "ro" );
   150     if( in == NULL ) {
   151 	perror( "Unable to open input file" );
   152 	exit(2);
   153     }
   154     fstat( fileno(in), &st );
   155     inbuf = malloc( st.st_size );
   156     fread( inbuf, st.st_size, 1, in );
   158     xlat_cache_init();
   159     uint32_t pc;
   160     uint8_t *buf = sh4_translate_basic_block( start_addr );
   161     uint32_t buflen = xlat_get_block_size(buf);
   162     x86_disasm_init( buf, 0x8c010000, buflen );
   163     x86_set_symtab( local_symbols, 6 );
   164     for( pc = 0x8c010000; pc < 0x8c010000 + buflen;  ) {
   165 	char buf[256];
   166 	char op[256];
   167 	uint32_t pc2 = x86_disasm_instruction( pc, buf, sizeof(buf), op );
   168 	fprintf( stdout, "%08X: %-20s %s\n", pc, op, buf );
   169 	pc = pc2;
   170     }
   171 }
.