2 * ARM virtual CPU header
4 * Copyright (c) 2003 Fabrice Bellard
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 #define TARGET_LONG_BITS 32
27 #include "softfloat.h"
29 #define EXCP_UDEF 1 /* undefined instruction */
30 #define EXCP_SWI 2 /* software interrupt */
31 #define EXCP_PREFETCH_ABORT 3
32 #define EXCP_DATA_ABORT 4
34 /* We currently assume float and double are IEEE single and double
35 precision respectively.
36 Doing runtime conversions is tricky because VFP registers may contain
37 integer values (eg. as the result of a FTOSI instruction).
38 s<2n> maps to the least significant half of d<n>
39 s<2n+1> maps to the most significant half of d<n>
42 typedef struct CPUARMState {
46 /* cpsr flag cache for faster execution */
47 uint32_t CF; /* 0 or 1 */
48 uint32_t VF; /* V is the bit 31. All other bits are undefined */
49 uint32_t NZF; /* N is bit 31. Z is computed from NZF */
50 uint32_t QF; /* 0 or 1 */
52 int thumb; /* 0 = arm mode, 1 = thumb mode */
54 /* coprocessor 15 (MMU) status */
57 /* exception/interrupt handling */
60 int interrupt_request;
61 struct TranslationBlock *current_tb;
65 /* in order to avoid passing too many arguments to the memory
66 write helpers, we store some rarely used information in the CPU
68 unsigned long mem_write_pc; /* host pc at which the memory was
70 unsigned long mem_write_vaddr; /* target virtual addr at which the
72 /* VFP coprocessor state. */
76 /* We store these fpcsr fields separately for convenience. */
82 /* Temporary variables if we don't have spare fp regs. */
86 float_status fp_status;
93 CPUARMState *cpu_arm_init(void);
94 int cpu_arm_exec(CPUARMState *s);
95 void cpu_arm_close(CPUARMState *s);
96 /* you can call this signal handler from your SIGBUS and SIGSEGV
97 signal handlers to inform the virtual CPU of exceptions. non zero
98 is returned if the signal was handled by the virtual CPU. */
100 int cpu_arm_signal_handler(int host_signum, struct siginfo *info,
103 #define TARGET_PAGE_BITS 12