1 /* armemu.h -- ARMulator emulation macros: ARM6 Instruction Emulator.
2 Copyright (C) 1994 Advanced RISC Machines Ltd.
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 3 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, see <http://www.gnu.org/licenses/>. */
22 extern int trace_funcs
;
23 extern void print_insn (ARMword
);
25 /* Condition code values. */
49 /* Macros to twiddle the status flags and mode. */
50 #define NBIT ((unsigned)1L << 31)
51 #define ZBIT (1L << 30)
52 #define CBIT (1L << 29)
53 #define VBIT (1L << 28)
54 #define SBIT (1L << 27)
55 #define GE0 (1L << 16)
56 #define GE1 (1L << 17)
57 #define GE2 (1L << 18)
58 #define GE3 (1L << 19)
59 #define IBIT (1L << 7)
60 #define FBIT (1L << 6)
61 #define IFBITS (3L << 6)
62 #define R15IBIT (1L << 27)
63 #define R15FBIT (1L << 26)
64 #define R15IFBITS (3L << 26)
66 #define POS(i) ( (~(i)) >> 31 )
67 #define NEG(i) ( (i) >> 31 )
69 #ifdef MODET /* Thumb support. */
70 /* ??? This bit is actually in the low order bit of the PC in the hardware.
71 It isn't clear if the simulator needs to model that or not. */
72 #define TBIT (1L << 5)
73 #define TFLAG state->TFlag
74 #define SETT state->TFlag = 1
75 #define CLEART state->TFlag = 0
76 #define ASSIGNT(res) state->TFlag = res
77 #define INSN_SIZE (TFLAG ? 2 : 4)
82 #define NFLAG state->NFlag
83 #define SETN state->NFlag = 1
84 #define CLEARN state->NFlag = 0
85 #define ASSIGNN(res) state->NFlag = res
87 #define ZFLAG state->ZFlag
88 #define SETZ state->ZFlag = 1
89 #define CLEARZ state->ZFlag = 0
90 #define ASSIGNZ(res) state->ZFlag = res
92 #define CFLAG state->CFlag
93 #define SETC state->CFlag = 1
94 #define CLEARC state->CFlag = 0
95 #define ASSIGNC(res) state->CFlag = res
97 #define VFLAG state->VFlag
98 #define SETV state->VFlag = 1
99 #define CLEARV state->VFlag = 0
100 #define ASSIGNV(res) state->VFlag = res
102 #define SFLAG state->SFlag
103 #define SETS state->SFlag = 1
104 #define CLEARS state->SFlag = 0
105 #define ASSIGNS(res) state->SFlag = res
107 #define IFLAG (state->IFFlags >> 1)
108 #define FFLAG (state->IFFlags & 1)
109 #define IFFLAGS state->IFFlags
110 #define ASSIGNINT(res) state->IFFlags = (((res) >> 6) & 3)
111 #define ASSIGNR15INT(res) state->IFFlags = (((res) >> 26) & 3) ;
113 #define PSR_FBITS (0xff000000L)
114 #define PSR_SBITS (0x00ff0000L)
115 #define PSR_XBITS (0x0000ff00L)
116 #define PSR_CBITS (0x000000ffL)
118 #if defined MODE32 || defined MODET
119 #define CCBITS (0xf8000000L)
121 #define CCBITS (0xf0000000L)
124 #define INTBITS (0xc0L)
126 #if defined MODET && defined MODE32
127 #define PCBITS (0xffffffffL)
129 #define PCBITS (0xfffffffcL)
132 #define MODEBITS (0x1fL)
133 #define R15INTBITS (3L << 26)
135 #if defined MODET && defined MODE32
136 #define R15PCBITS (0x03ffffffL)
138 #define R15PCBITS (0x03fffffcL)
141 #define R15PCMODEBITS (0x03ffffffL)
142 #define R15MODEBITS (0x3L)
145 #define PCMASK PCBITS
146 #define PCWRAP(pc) (pc)
148 #define PCMASK R15PCBITS
149 #define PCWRAP(pc) ((pc) & R15PCBITS)
152 #define PC (state->Reg[15] & PCMASK)
153 #define R15CCINTMODE (state->Reg[15] & (CCBITS | R15INTBITS | R15MODEBITS))
154 #define R15INT (state->Reg[15] & R15INTBITS)
155 #define R15INTPC (state->Reg[15] & (R15INTBITS | R15PCBITS))
156 #define R15INTPCMODE (state->Reg[15] & (R15INTBITS | R15PCBITS | R15MODEBITS))
157 #define R15INTMODE (state->Reg[15] & (R15INTBITS | R15MODEBITS))
158 #define R15PC (state->Reg[15] & R15PCBITS)
159 #define R15PCMODE (state->Reg[15] & (R15PCBITS | R15MODEBITS))
160 #define R15MODE (state->Reg[15] & R15MODEBITS)
162 #define ECC ((NFLAG << 31) | (ZFLAG << 30) | (CFLAG << 29) | (VFLAG << 28) | (SFLAG << 27))
163 #define EINT (IFFLAGS << 6)
164 #define ER15INT (IFFLAGS << 26)
165 #define EMODE (state->Mode)
168 #define CPSR (ECC | EINT | EMODE | (TFLAG << 5))
170 #define CPSR (ECC | EINT | EMODE)
176 #define PATCHR15 state->Reg[15] = ECC | ER15INT | EMODE | R15PC
179 #define GETSPSR(bank) (ARMul_GetSPSR (state, EMODE))
180 #define SETPSR_F(d,s) d = ((d) & ~PSR_FBITS) | ((s) & PSR_FBITS)
181 #define SETPSR_S(d,s) d = ((d) & ~PSR_SBITS) | ((s) & PSR_SBITS)
182 #define SETPSR_X(d,s) d = ((d) & ~PSR_XBITS) | ((s) & PSR_XBITS)
183 #define SETPSR_C(d,s) d = ((d) & ~PSR_CBITS) | ((s) & PSR_CBITS)
185 #define SETR15PSR(s) \
188 if (state->Mode == USER26MODE) \
190 state->Reg[15] = ((s) & CCBITS) | R15PC | ER15INT | EMODE; \
191 ASSIGNN ((state->Reg[15] & NBIT) != 0); \
192 ASSIGNZ ((state->Reg[15] & ZBIT) != 0); \
193 ASSIGNC ((state->Reg[15] & CBIT) != 0); \
194 ASSIGNV ((state->Reg[15] & VBIT) != 0); \
198 state->Reg[15] = R15PC | ((s) & (CCBITS | R15INTBITS | R15MODEBITS)); \
199 ARMul_R15Altered (state); \
204 #define SETABORT(i, m, d) \
207 int SETABORT_mode = (m); \
209 ARMul_SetSPSR (state, SETABORT_mode, ARMul_GetCPSR (state)); \
210 ARMul_SetCPSR (state, ((ARMul_GetCPSR (state) & ~(EMODE | TBIT)) \
211 | (i) | SETABORT_mode)); \
212 state->Reg[14] = temp - (d); \
218 #define LEGALADDR 0x03ffffff
219 #define VECTORACCESS(address) (address < VECTORS && ARMul_MODE26BIT && state->prog32Sig)
220 #define ADDREXCEPT(address) (address > LEGALADDR && !state->data32Sig)
223 #define INTERNALABORT(address) \
226 if (address < VECTORS) \
227 state->Aborted = ARMul_DataAbortV; \
229 state->Aborted = ARMul_AddrExceptnV; \
234 #define TAKEABORT ARMul_Abort (state, ARMul_DataAbortV)
239 if (state->Aborted == ARMul_AddrExceptnV) \
240 ARMul_Abort (state, ARMul_AddrExceptnV); \
242 ARMul_Abort (state, ARMul_DataAbortV); \
247 #define CPTAKEABORT \
250 if (!state->Aborted) \
251 ARMul_Abort (state, ARMul_UndefinedInstrV); \
252 else if (state->Aborted == ARMul_AddrExceptnV) \
253 ARMul_Abort (state, ARMul_AddrExceptnV); \
255 ARMul_Abort (state, ARMul_DataAbortV); \
260 /* Different ways to start the next instruction. */
264 #define PCINCEDNONSEQ 3
268 #define NORMALCYCLE state->NextInstr = 0
269 #define BUSUSEDN state->NextInstr |= 1 /* The next fetch will be an N cycle. */
270 #define BUSUSEDINCPCS \
273 if (! state->is_v4) \
275 /* A standard PC inc and an S cycle. */ \
276 state->Reg[15] += isize; \
277 state->NextInstr = (state->NextInstr & 0xff) | 2; \
282 #define BUSUSEDINCPCN \
289 /* A standard PC inc and an N cycle. */ \
290 state->Reg[15] += isize; \
291 state->NextInstr |= 3; \
299 /* A standard PC inc. */ \
300 state->Reg[15] += isize; \
301 state->NextInstr |= 2; \
305 #define FLUSHPIPE state->NextInstr |= PRIMEPIPE
307 /* Cycle based emulation. */
309 #define OUTPUTCP(i,a,b)
316 /* Macros to extract parts of instructions. */
317 #define DESTReg (BITS (12, 15))
318 #define LHSReg (BITS (16, 19))
319 #define RHSReg (BITS ( 0, 3))
321 #define DEST (state->Reg[DESTReg])
325 #define LHS ((LHSReg == 15) ? (state->Reg[15] & 0xFFFFFFFC): (state->Reg[LHSReg]))
327 #define LHS (state->Reg[LHSReg])
330 #define LHS ((LHSReg == 15) ? R15PC : (state->Reg[LHSReg]))
333 #define MULDESTReg (BITS (16, 19))
334 #define MULLHSReg (BITS ( 0, 3))
335 #define MULRHSReg (BITS ( 8, 11))
336 #define MULACCReg (BITS (12, 15))
338 #define DPImmRHS (ARMul_ImmedTable[BITS(0, 11)])
339 #define DPSImmRHS temp = BITS(0,11) ; \
340 rhs = ARMul_ImmedTable[temp] ; \
341 if (temp > 255) /* There was a shift. */ \
342 ASSIGNC (rhs >> 31) ;
345 #define DPRegRHS ((BITS (4,11) == 0) ? state->Reg[RHSReg] \
346 : GetDPRegRHS (state, instr))
347 #define DPSRegRHS ((BITS (4,11) == 0) ? state->Reg[RHSReg] \
348 : GetDPSRegRHS (state, instr))
350 #define DPRegRHS ((BITS (0, 11) < 15) ? state->Reg[RHSReg] \
351 : GetDPRegRHS (state, instr))
352 #define DPSRegRHS ((BITS (0, 11) < 15) ? state->Reg[RHSReg] \
353 : GetDPSRegRHS (state, instr))
356 #define LSBase state->Reg[LHSReg]
357 #define LSImmRHS (BITS(0,11))
360 #define LSRegRHS ((BITS (4, 11) == 0) ? state->Reg[RHSReg] \
361 : GetLSRegRHS (state, instr))
363 #define LSRegRHS ((BITS (0, 11) < 15) ? state->Reg[RHSReg] \
364 : GetLSRegRHS (state, instr))
367 #define LSMNumRegs ((ARMword) ARMul_BitList[BITS (0, 7)] + \
368 (ARMword) ARMul_BitList[BITS (8, 15)] )
369 #define LSMBaseFirst ((LHSReg == 0 && BIT (0)) || \
370 (BIT (LHSReg) && BITS (0, LHSReg - 1) == 0))
372 #define SWAPSRC (state->Reg[RHSReg])
374 #define LSCOff (BITS (0, 7) << 2)
375 #define CPNum BITS (8, 11)
377 /* Determine if access to coprocessor CP is permitted.
378 The XScale has a register in CP15 which controls access to CP0 - CP13. */
379 #define CP_ACCESS_ALLOWED(STATE, CP) \
381 || (! (STATE)->is_XScale) \
382 || (read_cp15_reg (15, 0, 1) & (1 << (CP))))
384 /* Macro to rotate n right by b bits. */
385 #define ROTATER(n, b) (((n) >> (b)) | ((n) << (32 - (b))))
387 /* Macros to store results of instructions. */
388 #define WRITEDEST(d) \
392 WriteR15 (state, d); \
398 #define WRITESDEST(d) \
402 WriteSR15 (state, d); \
406 ARMul_NegZero (state, d); \
411 #define WRITEDESTB(d) \
415 WriteR15Load (state, d); \
421 #define BYTETOBUS(data) ((data & 0xff) | \
422 ((data & 0xff) << 8) | \
423 ((data & 0xff) << 16) | \
424 ((data & 0xff) << 24))
426 #define BUSTOBYTE(address, data) \
429 if (state->bigendSig) \
430 temp = (data >> (((address ^ 3) & 3) << 3)) & 0xff; \
432 temp = (data >> ((address & 3) << 3)) & 0xff; \
436 #define LOADMULT(instr, address, wb) LoadMult (state, instr, address, wb)
437 #define LOADSMULT(instr, address, wb) LoadSMult (state, instr, address, wb)
438 #define STOREMULT(instr, address, wb) StoreMult (state, instr, address, wb)
439 #define STORESMULT(instr, address, wb) StoreSMult (state, instr, address, wb)
441 #define POSBRANCH ((instr & 0x7fffff) << 2)
442 #define NEGBRANCH ((0xff000000 |(instr & 0xffffff)) << 2)
445 /* Values for Emulate. */
446 #define STOP 0 /* stop */
447 #define CHANGEMODE 1 /* change mode */
448 #define ONCE 2 /* execute just one interation */
449 #define RUN 3 /* continuous execution */
451 /* Stuff that is shared across modes. */
452 extern unsigned ARMul_MultTable
[]; /* Number of I cycles for a mult. */
453 extern ARMword ARMul_ImmedTable
[]; /* Immediate DP LHS values. */
454 extern char ARMul_BitList
[]; /* Number of bits in a byte table. */
456 #define EVENTLISTSIZE 1024L
461 t_undefined
, /* Undefined Thumb instruction. */
462 t_decoded
, /* Instruction decoded to ARM equivalent. */
463 t_branch
/* Thumb branch (already processed). */
467 #define t_resolved t_branch
469 /* Macros to scrutinize instructions. The dummy do loop is to keep the compiler
470 happy when the statement is used in an otherwise empty else statement. */
471 #define UNDEF_Test do { ; } while (0)
472 #define UNDEF_Shift do { ; } while (0)
473 #define UNDEF_MSRPC do { ; } while (0)
474 #define UNDEF_MRSPC do { ; } while (0)
475 #define UNDEF_MULPCDest do { ; } while (0)
476 #define UNDEF_MULDestEQOp1 do { ; } while (0)
477 #define UNDEF_LSRBPC do { ; } while (0)
478 #define UNDEF_LSRBaseEQOffWb do { ; } while (0)
479 #define UNDEF_LSRBaseEQDestWb do { ; } while (0)
480 #define UNDEF_LSRPCBaseWb do { ; } while (0)
481 #define UNDEF_LSRPCOffWb do { ; } while (0)
482 #define UNDEF_LSMNoRegs do { ; } while (0)
483 #define UNDEF_LSMPCBase do { ; } while (0)
484 #define UNDEF_LSMUserBankWb do { ; } while (0)
485 #define UNDEF_LSMBaseInListWb do { ; } while (0)
486 #define UNDEF_SWPPC do { ; } while (0)
487 #define UNDEF_CoProHS do { ; } while (0)
488 #define UNDEF_MCRPC do { ; } while (0)
489 #define UNDEF_LSCPCBaseWb do { ; } while (0)
490 #define UNDEF_UndefNotBounced do { ; } while (0)
491 #define UNDEF_ShortInt do { ; } while (0)
492 #define UNDEF_IllegalMode do { ; } while (0)
493 #define UNDEF_Prog32SigChange do { ; } while (0)
494 #define UNDEF_Data32SigChange do { ; } while (0)
496 /* Prototypes for exported functions. */
497 extern unsigned ARMul_NthReg (ARMword
, unsigned);
498 extern int AddOverflow (ARMword
, ARMword
, ARMword
);
499 extern int SubOverflow (ARMword
, ARMword
, ARMword
);
500 extern ARMword
ARMul_Emulate26 (ARMul_State
*);
501 extern ARMword
ARMul_Emulate32 (ARMul_State
*);
502 extern unsigned IntPending (ARMul_State
*);
503 extern void ARMul_CPSRAltered (ARMul_State
*);
504 extern void ARMul_R15Altered (ARMul_State
*);
505 extern ARMword
ARMul_GetPC (ARMul_State
*);
506 extern ARMword
ARMul_GetNextPC (ARMul_State
*);
507 extern ARMword
ARMul_GetR15 (ARMul_State
*);
508 extern ARMword
ARMul_GetCPSR (ARMul_State
*);
509 extern void ARMul_EnvokeEvent (ARMul_State
*);
510 extern unsigned long ARMul_Time (ARMul_State
*);
511 extern void ARMul_NegZero (ARMul_State
*, ARMword
);
512 extern void ARMul_SetPC (ARMul_State
*, ARMword
);
513 extern void ARMul_SetR15 (ARMul_State
*, ARMword
);
514 extern void ARMul_SetCPSR (ARMul_State
*, ARMword
);
515 extern ARMword
ARMul_GetSPSR (ARMul_State
*, ARMword
);
516 extern void ARMul_Abort26 (ARMul_State
*, ARMword
);
517 extern void ARMul_Abort32 (ARMul_State
*, ARMword
);
518 extern ARMword
ARMul_MRC (ARMul_State
*, ARMword
);
519 extern void ARMul_CDP (ARMul_State
*, ARMword
);
520 extern void ARMul_LDC (ARMul_State
*, ARMword
, ARMword
);
521 extern void ARMul_STC (ARMul_State
*, ARMword
, ARMword
);
522 extern void ARMul_MCR (ARMul_State
*, ARMword
, ARMword
);
523 extern void ARMul_SetSPSR (ARMul_State
*, ARMword
, ARMword
);
524 extern ARMword
ARMul_SwitchMode (ARMul_State
*, ARMword
, ARMword
);
525 extern ARMword
ARMul_Align (ARMul_State
*, ARMword
, ARMword
);
526 extern ARMword
ARMul_SwitchMode (ARMul_State
*, ARMword
, ARMword
);
527 extern void ARMul_MSRCpsr (ARMul_State
*, ARMword
, ARMword
);
528 extern void ARMul_SubOverflow (ARMul_State
*, ARMword
, ARMword
, ARMword
);
529 extern void ARMul_AddOverflow (ARMul_State
*, ARMword
, ARMword
, ARMword
);
530 extern void ARMul_SubCarry (ARMul_State
*, ARMword
, ARMword
, ARMword
);
531 extern void ARMul_AddCarry (ARMul_State
*, ARMword
, ARMword
, ARMword
);
532 extern tdstate
ARMul_ThumbDecode (ARMul_State
*, ARMword
, ARMword
, ARMword
*);
533 extern ARMword
ARMul_GetReg (ARMul_State
*, unsigned, unsigned);
534 extern void ARMul_SetReg (ARMul_State
*, unsigned, unsigned, ARMword
);
535 extern void ARMul_ScheduleEvent (ARMul_State
*, unsigned long, unsigned (*) (ARMul_State
*));
536 /* Coprocessor support functions. */
537 extern unsigned ARMul_CoProInit (ARMul_State
*);
538 extern void ARMul_CoProExit (ARMul_State
*);
539 extern void ARMul_CoProAttach (ARMul_State
*, unsigned, ARMul_CPInits
*, ARMul_CPExits
*,
540 ARMul_LDCs
*, ARMul_STCs
*, ARMul_MRCs
*, ARMul_MCRs
*,
541 ARMul_CDPs
*, ARMul_CPReads
*, ARMul_CPWrites
*);
542 extern void ARMul_CoProDetach (ARMul_State
*, unsigned);
543 extern ARMword
read_cp15_reg (unsigned, unsigned, unsigned);
545 extern unsigned DSPLDC4 (ARMul_State
*, unsigned, ARMword
, ARMword
);
546 extern unsigned DSPMCR4 (ARMul_State
*, unsigned, ARMword
, ARMword
);
547 extern unsigned DSPMRC4 (ARMul_State
*, unsigned, ARMword
, ARMword
*);
548 extern unsigned DSPSTC4 (ARMul_State
*, unsigned, ARMword
, ARMword
*);
549 extern unsigned DSPCDP4 (ARMul_State
*, unsigned, ARMword
);
550 extern unsigned DSPMCR5 (ARMul_State
*, unsigned, ARMword
, ARMword
);
551 extern unsigned DSPMRC5 (ARMul_State
*, unsigned, ARMword
, ARMword
*);
552 extern unsigned DSPLDC5 (ARMul_State
*, unsigned, ARMword
, ARMword
);
553 extern unsigned DSPSTC5 (ARMul_State
*, unsigned, ARMword
, ARMword
*);
554 extern unsigned DSPCDP5 (ARMul_State
*, unsigned, ARMword
);
555 extern unsigned DSPMCR6 (ARMul_State
*, unsigned, ARMword
, ARMword
);
556 extern unsigned DSPMRC6 (ARMul_State
*, unsigned, ARMword
, ARMword
*);
557 extern unsigned DSPCDP6 (ARMul_State
*, unsigned, ARMword
);