Search
lxdream.org :: lxdream/src/sh4/sh4trans.h
lxdream 0.9.1
released Jun 29
Download Now
filename src/sh4/sh4trans.h
changeset 1186:2dc47c67bb93
prev1182:b38a327ad8fa
next1188:1cc9bb0b3848
author nkeynes
date Tue Nov 29 17:11:40 2011 +1000 (12 years ago)
permissions -rw-r--r--
last change Add support for block linking when the block target is fixed. Only a small
(~3% improvement) so far.
view annotate diff log raw
     1 /**
     2  * $Id$
     3  * 
     4  * SH4->x86 translation module
     5  *
     6  * Copyright (c) 2005 Nathan Keynes.
     7  *
     8  * This program is free software; you can redistribute it and/or modify
     9  * it under the terms of the GNU General Public License as published by
    10  * the Free Software Foundation; either version 2 of the License, or
    11  * (at your option) any later version.
    12  *
    13  * This program is distributed in the hope that it will be useful,
    14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
    15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    16  * GNU General Public License for more details.
    17  */
    19 #ifndef lxdream_sh4trans_H
    20 #define lxdream_sh4trans_H 1
    22 #include "xlat/xltcache.h"
    23 #include "dream.h"
    24 #include "mem.h"
    26 #ifdef __cplusplus
    27 extern "C" {
    28 #endif
    30 /** Maximum size of a translated instruction, in bytes. Current worst case seems
    31  * to be a BF/S followed by one of the long FMOVs.
    32  */
    33 #define MAX_INSTRUCTION_SIZE 512
    34 /** Maximum size of the translation epilogue (current real size is 116 bytes, so
    35  * allows a little room
    36  */
    37 #define EPILOGUE_SIZE 136
    39 /** Maximum number of recovery records for a translated block (2048 based on
    40  * 1 record per SH4 instruction in a 4K page).
    41  */
    42 #define MAX_RECOVERY_SIZE 2049
    44 typedef void (*xlat_block_begin_callback_t)();
    45 typedef void (*xlat_block_end_callback_t)();
    47 /**
    48  */
    49 uint32_t sh4_translate_run_slice( uint32_t nanosecs );
    51 /**
    52  * Initialize the translation engine (if required). Note xlat cache
    53  * must already be initialized.
    54  */
    55 void sh4_translate_init( void);
    57 /**
    58  * Translate the specified block of code starting from the specified start
    59  * address until the first branch/jump instruction.
    60  */
    61 void *sh4_translate_basic_block( sh4addr_t start );
    63 /**
    64  * Add a recovery record for the current code generation position, with the
    65  * specified instruction count
    66  */
    67 void sh4_translate_add_recovery( uint32_t icount );
    69 /**
    70  * Initialize shadow execution mode
    71  */
    72 void sh4_shadow_init( void );
    74 extern uint8_t *xlat_output;
    75 extern struct xlat_recovery_record xlat_recovery[MAX_RECOVERY_SIZE];
    76 extern xlat_cache_block_t xlat_current_block;
    77 extern uint32_t xlat_recovery_posn;
    79 /******************************************************************************
    80  * Code generation - these methods must be provided by the
    81  * actual code gen (eg sh4x86.c) 
    82  ******************************************************************************/
    84 #define TARGET_X86 1
    86 void sh4_translate_begin_block( sh4addr_t pc );
    87 uint32_t sh4_translate_instruction( sh4addr_t pc );
    88 void sh4_translate_end_block( sh4addr_t pc );
    89 uint32_t sh4_translate_end_block_size();
    90 void sh4_translate_emit_breakpoint( sh4vma_t pc );
    91 void sh4_translate_crashdump();
    93 typedef void (*unwind_thunk_t)(void);
    95 /**
    96  * Set instrumentation callbacks
    97  */
    98 void sh4_translate_set_callbacks( xlat_block_begin_callback_t begin, xlat_block_end_callback_t end );
   100 /**
   101  * Enable/disable memory optimizations that bypass the mmu
   102  */
   103 void sh4_translate_set_fastmem( gboolean flag );
   105 /**
   106  * Enable/disable basic block profiling
   107  */
   108 void sh4_translate_set_profile_blocks( gboolean flag );
   110 /**
   111  * Get the boolean flag indicating whether block profiling is on.
   112  */
   113 gboolean sh4_translate_get_profile_blocks();
   115 /**
   116  * Set the address spaces for the translated code.
   117  */
   118 void sh4_translate_set_address_space( struct mem_region_fn **priv, struct mem_region_fn **user );
   120 /**
   121  * From within the translator, (typically called from MMU exception handling routines)
   122  * immediately exit the current translation block (performing cleanup as necessary) and
   123  * return to sh4_translate_run_slice(). Effectively a fast longjmp w/ xlat recovery.
   124  *
   125  * Note: The correct working of this method depends on the translator anticipating the
   126  * exception and generating the appropriate recovery block(s) - currently this means 
   127  * that it should ONLY be called from within the context of a memory read or write.
   128  *
   129  * @param is_completion If TRUE, exit after completing the current instruction (effectively),
   130  *   otherwise abort the current instruction with no effect. 
   131  * @param thunk A function to execute after perform xlat recovery, but before returning
   132  * to run_slice. If NULL, control returns directly.
   133  * @return This method never returns. 
   134  */
   135 void sh4_translate_unwind_stack( gboolean is_completion, unwind_thunk_t thunk );
   137 /**
   138  * Called when doing a break out of the translator - finalizes the system state up to
   139  * the end of the current instruction.
   140  */
   141 void sh4_translate_exit_recover( );
   143 /**
   144  * Called when doing a break out of the translator following a taken exception - 
   145  * finalizes the system state up to the start of the current instruction.
   146  */
   147 void sh4_translate_exception_exit_recover( );
   149 /**
   150  * From within the translator, exit the current block at the end of the 
   151  * current instruction, flush the translation cache (completely) 
   152  * @return TRUE to perform a vm-exit/continue after the flush
   153  */
   154 gboolean sh4_translate_flush_cache( void );
   156 /**
   157  * Given a block's use_list, remove all direct links to the block.
   158  */
   159 void sh4_translate_unlink_block( void *use_list );
   161 /**
   162  * Support function called from the translator when a breakpoint is hit.
   163  * Either returns immediately (to skip the breakpoint), or aborts the current
   164  * cycle and never returns.
   165  */
   166 void FASTCALL sh4_translate_breakpoint_hit( sh4vma_t pc );
   168 /**
   169  * Disassemble the given translated code block, and it's source SH4 code block
   170  * side-by-side. The current native pc will be marked if non-null.
   171  */
   172 void sh4_translate_disasm_block( FILE *out, void *code, sh4addr_t source_start, void *native_pc );
   174 #ifdef __cplusplus
   175 }
   176 #endif
   178 #endif /* !lxdream_sh4trans_H */
.