filename | src/sh4/sh4trans.h |
changeset | 408:af496b734734 |
prev | 389:3e354da62264 |
next | 410:5f8413358e7f |
author | nkeynes |
date | Fri Sep 28 07:27:20 2007 +0000 (15 years ago) |
permissions | -rw-r--r-- |
last change | Change block signature to return pointer to next block (if known) Rewrite block-exit code |
view | annotate | diff | log | raw |
1 /**
2 * $Id: sh4trans.h,v 1.3 2007-09-28 07:27:20 nkeynes Exp $
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 #include "dream.h"
20 #include "mem.h"
22 /** Maximum size of a translated instruction, in bytes. This includes potentially
23 * writing the entire epilogue
24 */
25 #define MAX_INSTRUCTION_SIZE 256
27 /**
29 */
30 uint32_t sh4_xlat_run_slice( uint32_t nanosecs );
32 /**
33 * Translate the specified block of code starting from the specified start
34 * address until the first branch/jump instruction.
35 */
36 void *sh4_translate_basic_block( sh4addr_t start );
38 extern uint8_t *xlat_output;
40 /************** Output generation ***************/
42 void sh4_translate_begin_block( sh4addr_t pc );
44 uint32_t sh4_x86_translate_instruction( sh4addr_t pc );
46 void sh4_translate_end_block( sh4addr_t pc );
.