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