src/arm/isa-arm.c (view raw)
1/* Copyright (c) 2013-2014 Jeffrey Pfau
2 *
3 * This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6#include <mgba/internal/arm/isa-arm.h>
7
8#include <mgba/internal/arm/arm.h>
9#include <mgba/internal/arm/emitter-arm.h>
10#include <mgba/internal/arm/isa-inlines.h>
11
12#define PSR_USER_MASK 0xF0000000
13#define PSR_PRIV_MASK 0x000000CF
14#define PSR_STATE_MASK 0x00000020
15
16// Addressing mode 1
17static inline void _shiftLSL(struct ARMCore* cpu, uint32_t opcode) {
18 int rm = opcode & 0x0000000F;
19 if (opcode & 0x00000010) {
20 int rs = (opcode >> 8) & 0x0000000F;
21 ++cpu->cycles;
22 int shift = cpu->gprs[rs];
23 if (rs == ARM_PC) {
24 shift += 4;
25 }
26 shift &= 0xFF;
27 int32_t shiftVal = cpu->gprs[rm];
28 if (rm == ARM_PC) {
29 shiftVal += 4;
30 }
31 if (!shift) {
32 cpu->shifterOperand = shiftVal;
33 cpu->shifterCarryOut = cpu->cpsr.c;
34 } else if (shift < 32) {
35 cpu->shifterOperand = shiftVal << shift;
36 cpu->shifterCarryOut = (shiftVal >> (32 - shift)) & 1;
37 } else if (shift == 32) {
38 cpu->shifterOperand = 0;
39 cpu->shifterCarryOut = shiftVal & 1;
40 } else {
41 cpu->shifterOperand = 0;
42 cpu->shifterCarryOut = 0;
43 }
44 } else {
45 int immediate = (opcode & 0x00000F80) >> 7;
46 if (!immediate) {
47 cpu->shifterOperand = cpu->gprs[rm];
48 cpu->shifterCarryOut = cpu->cpsr.c;
49 } else {
50 cpu->shifterOperand = cpu->gprs[rm] << immediate;
51 cpu->shifterCarryOut = (cpu->gprs[rm] >> (32 - immediate)) & 1;
52 }
53 }
54}
55
56static inline void _shiftLSR(struct ARMCore* cpu, uint32_t opcode) {
57 int rm = opcode & 0x0000000F;
58 if (opcode & 0x00000010) {
59 int rs = (opcode >> 8) & 0x0000000F;
60 ++cpu->cycles;
61 int shift = cpu->gprs[rs];
62 if (rs == ARM_PC) {
63 shift += 4;
64 }
65 shift &= 0xFF;
66 uint32_t shiftVal = cpu->gprs[rm];
67 if (rm == ARM_PC) {
68 shiftVal += 4;
69 }
70 if (!shift) {
71 cpu->shifterOperand = shiftVal;
72 cpu->shifterCarryOut = cpu->cpsr.c;
73 } else if (shift < 32) {
74 cpu->shifterOperand = shiftVal >> shift;
75 cpu->shifterCarryOut = (shiftVal >> (shift - 1)) & 1;
76 } else if (shift == 32) {
77 cpu->shifterOperand = 0;
78 cpu->shifterCarryOut = shiftVal >> 31;
79 } else {
80 cpu->shifterOperand = 0;
81 cpu->shifterCarryOut = 0;
82 }
83 } else {
84 int immediate = (opcode & 0x00000F80) >> 7;
85 if (immediate) {
86 cpu->shifterOperand = ((uint32_t) cpu->gprs[rm]) >> immediate;
87 cpu->shifterCarryOut = (cpu->gprs[rm] >> (immediate - 1)) & 1;
88 } else {
89 cpu->shifterOperand = 0;
90 cpu->shifterCarryOut = ARM_SIGN(cpu->gprs[rm]);
91 }
92 }
93}
94
95static inline void _shiftASR(struct ARMCore* cpu, uint32_t opcode) {
96 int rm = opcode & 0x0000000F;
97 if (opcode & 0x00000010) {
98 int rs = (opcode >> 8) & 0x0000000F;
99 ++cpu->cycles;
100 int shift = cpu->gprs[rs];
101 if (rs == ARM_PC) {
102 shift += 4;
103 }
104 shift &= 0xFF;
105 int shiftVal = cpu->gprs[rm];
106 if (rm == ARM_PC) {
107 shiftVal += 4;
108 }
109 if (!shift) {
110 cpu->shifterOperand = shiftVal;
111 cpu->shifterCarryOut = cpu->cpsr.c;
112 } else if (shift < 32) {
113 cpu->shifterOperand = shiftVal >> shift;
114 cpu->shifterCarryOut = (shiftVal >> (shift - 1)) & 1;
115 } else if (cpu->gprs[rm] >> 31) {
116 cpu->shifterOperand = 0xFFFFFFFF;
117 cpu->shifterCarryOut = 1;
118 } else {
119 cpu->shifterOperand = 0;
120 cpu->shifterCarryOut = 0;
121 }
122 } else {
123 int immediate = (opcode & 0x00000F80) >> 7;
124 if (immediate) {
125 cpu->shifterOperand = cpu->gprs[rm] >> immediate;
126 cpu->shifterCarryOut = (cpu->gprs[rm] >> (immediate - 1)) & 1;
127 } else {
128 cpu->shifterCarryOut = ARM_SIGN(cpu->gprs[rm]);
129 cpu->shifterOperand = cpu->shifterCarryOut;
130 }
131 }
132}
133
134static inline void _shiftROR(struct ARMCore* cpu, uint32_t opcode) {
135 int rm = opcode & 0x0000000F;
136 if (opcode & 0x00000010) {
137 int rs = (opcode >> 8) & 0x0000000F;
138 ++cpu->cycles;
139 int shift = cpu->gprs[rs];
140 if (rs == ARM_PC) {
141 shift += 4;
142 }
143 shift &= 0xFF;
144 int shiftVal = cpu->gprs[rm];
145 if (rm == ARM_PC) {
146 shiftVal += 4;
147 }
148 int rotate = shift & 0x1F;
149 if (!shift) {
150 cpu->shifterOperand = shiftVal;
151 cpu->shifterCarryOut = cpu->cpsr.c;
152 } else if (rotate) {
153 cpu->shifterOperand = ROR(shiftVal, rotate);
154 cpu->shifterCarryOut = (shiftVal >> (rotate - 1)) & 1;
155 } else {
156 cpu->shifterOperand = shiftVal;
157 cpu->shifterCarryOut = ARM_SIGN(shiftVal);
158 }
159 } else {
160 int immediate = (opcode & 0x00000F80) >> 7;
161 if (immediate) {
162 cpu->shifterOperand = ROR(cpu->gprs[rm], immediate);
163 cpu->shifterCarryOut = (cpu->gprs[rm] >> (immediate - 1)) & 1;
164 } else {
165 // RRX
166 cpu->shifterOperand = (cpu->cpsr.c << 31) | (((uint32_t) cpu->gprs[rm]) >> 1);
167 cpu->shifterCarryOut = cpu->gprs[rm] & 0x00000001;
168 }
169 }
170}
171
172static inline void _immediate(struct ARMCore* cpu, uint32_t opcode) {
173 int rotate = (opcode & 0x00000F00) >> 7;
174 int immediate = opcode & 0x000000FF;
175 if (!rotate) {
176 cpu->shifterOperand = immediate;
177 cpu->shifterCarryOut = cpu->cpsr.c;
178 } else {
179 cpu->shifterOperand = ROR(immediate, rotate);
180 cpu->shifterCarryOut = ARM_SIGN(cpu->shifterOperand);
181 }
182}
183
184// Instruction definitions
185// Beware pre-processor antics
186
187ATTRIBUTE_NOINLINE static void _additionS(struct ARMCore* cpu, int32_t m, int32_t n, int32_t d) {
188 cpu->cpsr.flags = 0;
189 cpu->cpsr.n = ARM_SIGN(d);
190 cpu->cpsr.z = !d;
191 cpu->cpsr.c = ARM_CARRY_FROM(m, n, d);
192 cpu->cpsr.v = ARM_V_ADDITION(m, n, d);
193}
194
195ATTRIBUTE_NOINLINE static void _subtractionS(struct ARMCore* cpu, int32_t m, int32_t n, int32_t d) {
196 cpu->cpsr.flags = 0;
197 cpu->cpsr.n = ARM_SIGN(d);
198 cpu->cpsr.z = !d;
199 cpu->cpsr.c = ARM_BORROW_FROM(m, n, d);
200 cpu->cpsr.v = ARM_V_SUBTRACTION(m, n, d);
201}
202
203ATTRIBUTE_NOINLINE static void _neutralS(struct ARMCore* cpu, int32_t d) {
204 cpu->cpsr.n = ARM_SIGN(d);
205 cpu->cpsr.z = !d; \
206 cpu->cpsr.c = cpu->shifterCarryOut; \
207}
208
209#define ARM_ADDITION_S(M, N, D) \
210 if (rd == ARM_PC && _ARMModeHasSPSR(cpu->cpsr.priv)) { \
211 cpu->cpsr = cpu->spsr; \
212 _ARMReadCPSR(cpu); \
213 } else { \
214 _additionS(cpu, M, N, D); \
215 }
216
217#define ARM_SUBTRACTION_S(M, N, D) \
218 if (rd == ARM_PC && _ARMModeHasSPSR(cpu->cpsr.priv)) { \
219 cpu->cpsr = cpu->spsr; \
220 _ARMReadCPSR(cpu); \
221 } else { \
222 _subtractionS(cpu, M, N, D); \
223 }
224
225#define ARM_SUBTRACTION_CARRY_S(M, N, D, C) \
226 if (rd == ARM_PC && _ARMModeHasSPSR(cpu->cpsr.priv)) { \
227 cpu->cpsr = cpu->spsr; \
228 _ARMReadCPSR(cpu); \
229 } else { \
230 cpu->cpsr.n = ARM_SIGN(D); \
231 cpu->cpsr.z = !(D); \
232 cpu->cpsr.c = ARM_BORROW_FROM_CARRY(M, N, D, C); \
233 cpu->cpsr.v = ARM_V_SUBTRACTION(M, N, D); \
234 }
235
236#define ARM_NEUTRAL_S(M, N, D) \
237 if (rd == ARM_PC && _ARMModeHasSPSR(cpu->cpsr.priv)) { \
238 cpu->cpsr = cpu->spsr; \
239 _ARMReadCPSR(cpu); \
240 } else { \
241 _neutralS(cpu, D); \
242 }
243
244#define ARM_NEUTRAL_HI_S(DLO, DHI) \
245 cpu->cpsr.n = ARM_SIGN(DHI); \
246 cpu->cpsr.z = !((DHI) | (DLO));
247
248#define ADDR_MODE_2_I_TEST (opcode & 0x00000F80)
249#define ADDR_MODE_2_I ((opcode & 0x00000F80) >> 7)
250#define ADDR_MODE_2_ADDRESS (address)
251#define ADDR_MODE_2_RN (cpu->gprs[rn])
252#define ADDR_MODE_2_RM (cpu->gprs[rm])
253#define ADDR_MODE_2_IMMEDIATE (opcode & 0x00000FFF)
254#define ADDR_MODE_2_INDEX(U_OP, M) (cpu->gprs[rn] U_OP M)
255#define ADDR_MODE_2_WRITEBACK(ADDR) \
256 cpu->gprs[rn] = ADDR; \
257 if (UNLIKELY(rn == ARM_PC)) { \
258 currentCycles += ARMWritePC(cpu); \
259 }
260
261#define ADDR_MODE_2_WRITEBACK_PRE_STORE(WB)
262#define ADDR_MODE_2_WRITEBACK_POST_STORE(WB) WB
263#define ADDR_MODE_2_WRITEBACK_PRE_LOAD(WB) WB
264#define ADDR_MODE_2_WRITEBACK_POST_LOAD(WB)
265
266#define ADDR_MODE_2_LSL (cpu->gprs[rm] << ADDR_MODE_2_I)
267#define ADDR_MODE_2_LSR (ADDR_MODE_2_I_TEST ? ((uint32_t) cpu->gprs[rm]) >> ADDR_MODE_2_I : 0)
268#define ADDR_MODE_2_ASR (ADDR_MODE_2_I_TEST ? ((int32_t) cpu->gprs[rm]) >> ADDR_MODE_2_I : ((int32_t) cpu->gprs[rm]) >> 31)
269#define ADDR_MODE_2_ROR (ADDR_MODE_2_I_TEST ? ROR(cpu->gprs[rm], ADDR_MODE_2_I) : (cpu->cpsr.c << 31) | (((uint32_t) cpu->gprs[rm]) >> 1))
270
271#define ADDR_MODE_3_ADDRESS ADDR_MODE_2_ADDRESS
272#define ADDR_MODE_3_RN ADDR_MODE_2_RN
273#define ADDR_MODE_3_RM ADDR_MODE_2_RM
274#define ADDR_MODE_3_IMMEDIATE (((opcode & 0x00000F00) >> 4) | (opcode & 0x0000000F))
275#define ADDR_MODE_3_INDEX(U_OP, M) ADDR_MODE_2_INDEX(U_OP, M)
276#define ADDR_MODE_3_WRITEBACK(ADDR) ADDR_MODE_2_WRITEBACK(ADDR)
277
278#define ADDR_MODE_4_WRITEBACK_LDM \
279 if (!((1 << rn) & rs)) { \
280 cpu->gprs[rn] = address; \
281 }
282
283#define ADDR_MODE_4_WRITEBACK_STM cpu->gprs[rn] = address;
284
285#define ARM_LOAD_POST_BODY \
286 currentCycles += cpu->memory.activeNonseqCycles32 - cpu->memory.activeSeqCycles32; \
287 if (rd == ARM_PC) { \
288 currentCycles += ARMWritePC(cpu); \
289 }
290
291#define ARM_STORE_POST_BODY \
292 currentCycles += cpu->memory.activeNonseqCycles32 - cpu->memory.activeSeqCycles32;
293
294#define DEFINE_INSTRUCTION_ARM(NAME, BODY) \
295 static void _ARMInstruction ## NAME (struct ARMCore* cpu, uint32_t opcode) { \
296 int currentCycles = ARM_PREFETCH_CYCLES; \
297 BODY; \
298 cpu->cycles += currentCycles; \
299 }
300
301#define DEFINE_ALU_INSTRUCTION_EX_ARM(NAME, S_BODY, SHIFTER, BODY) \
302 DEFINE_INSTRUCTION_ARM(NAME, \
303 int rd = (opcode >> 12) & 0xF; \
304 int rn = (opcode >> 16) & 0xF; \
305 int32_t n = cpu->gprs[rn]; \
306 if (UNLIKELY(rn == ARM_PC && (opcode & 0x02000010) == 0x00000010)) { \
307 n += WORD_SIZE_ARM; \
308 } \
309 SHIFTER(cpu, opcode); \
310 BODY; \
311 S_BODY; \
312 if (rd == ARM_PC) { \
313 if (cpu->executionMode == MODE_ARM) { \
314 currentCycles += ARMWritePC(cpu); \
315 } else { \
316 currentCycles += ThumbWritePC(cpu); \
317 } \
318 })
319
320#define DEFINE_ALU_INSTRUCTION_ARM(NAME, S_BODY, BODY) \
321 DEFINE_ALU_INSTRUCTION_EX_ARM(NAME ## _LSL, , _shiftLSL, BODY) \
322 DEFINE_ALU_INSTRUCTION_EX_ARM(NAME ## S_LSL, S_BODY, _shiftLSL, BODY) \
323 DEFINE_ALU_INSTRUCTION_EX_ARM(NAME ## _LSR, , _shiftLSR, BODY) \
324 DEFINE_ALU_INSTRUCTION_EX_ARM(NAME ## S_LSR, S_BODY, _shiftLSR, BODY) \
325 DEFINE_ALU_INSTRUCTION_EX_ARM(NAME ## _ASR, , _shiftASR, BODY) \
326 DEFINE_ALU_INSTRUCTION_EX_ARM(NAME ## S_ASR, S_BODY, _shiftASR, BODY) \
327 DEFINE_ALU_INSTRUCTION_EX_ARM(NAME ## _ROR, , _shiftROR, BODY) \
328 DEFINE_ALU_INSTRUCTION_EX_ARM(NAME ## S_ROR, S_BODY, _shiftROR, BODY) \
329 DEFINE_ALU_INSTRUCTION_EX_ARM(NAME ## I, , _immediate, BODY) \
330 DEFINE_ALU_INSTRUCTION_EX_ARM(NAME ## SI, S_BODY, _immediate, BODY)
331
332#define DEFINE_ALU_INSTRUCTION_S_ONLY_ARM(NAME, S_BODY, BODY) \
333 DEFINE_ALU_INSTRUCTION_EX_ARM(NAME ## _LSL, S_BODY, _shiftLSL, BODY) \
334 DEFINE_ALU_INSTRUCTION_EX_ARM(NAME ## _LSR, S_BODY, _shiftLSR, BODY) \
335 DEFINE_ALU_INSTRUCTION_EX_ARM(NAME ## _ASR, S_BODY, _shiftASR, BODY) \
336 DEFINE_ALU_INSTRUCTION_EX_ARM(NAME ## _ROR, S_BODY, _shiftROR, BODY) \
337 DEFINE_ALU_INSTRUCTION_EX_ARM(NAME ## I, S_BODY, _immediate, BODY)
338
339#define DEFINE_MULTIPLY_INSTRUCTION_EX_ARM(NAME, BODY, S_BODY) \
340 DEFINE_INSTRUCTION_ARM(NAME, \
341 int rd = (opcode >> 16) & 0xF; \
342 int rs = (opcode >> 8) & 0xF; \
343 int rm = opcode & 0xF; \
344 if (rd == ARM_PC) { \
345 return; \
346 } \
347 ARM_WAIT_MUL(cpu->gprs[rs]); \
348 BODY; \
349 S_BODY; \
350 currentCycles += cpu->memory.activeNonseqCycles32 - cpu->memory.activeSeqCycles32)
351
352#define DEFINE_MULTIPLY_INSTRUCTION_2_EX_ARM(NAME, BODY, S_BODY, WAIT) \
353 DEFINE_INSTRUCTION_ARM(NAME, \
354 int rd = (opcode >> 12) & 0xF; \
355 int rdHi = (opcode >> 16) & 0xF; \
356 int rs = (opcode >> 8) & 0xF; \
357 int rm = opcode & 0xF; \
358 if (rdHi == ARM_PC || rd == ARM_PC) { \
359 return; \
360 } \
361 currentCycles += cpu->memory.stall(cpu, WAIT); \
362 BODY; \
363 S_BODY; \
364 currentCycles += cpu->memory.activeNonseqCycles32 - cpu->memory.activeSeqCycles32)
365
366#define DEFINE_MULTIPLY_INSTRUCTION_ARM(NAME, BODY, S_BODY) \
367 DEFINE_MULTIPLY_INSTRUCTION_EX_ARM(NAME, BODY, ) \
368 DEFINE_MULTIPLY_INSTRUCTION_EX_ARM(NAME ## S, BODY, S_BODY)
369
370#define DEFINE_MULTIPLY_INSTRUCTION_2_ARM(NAME, BODY, S_BODY, WAIT) \
371 DEFINE_MULTIPLY_INSTRUCTION_2_EX_ARM(NAME, BODY, , WAIT) \
372 DEFINE_MULTIPLY_INSTRUCTION_2_EX_ARM(NAME ## S, BODY, S_BODY, WAIT)
373
374#define DEFINE_LOAD_STORE_INSTRUCTION_EX_ARM(NAME, ADDRESS, WRITEBACK, LS, BODY) \
375 DEFINE_INSTRUCTION_ARM(NAME, \
376 uint32_t address; \
377 int rn = (opcode >> 16) & 0xF; \
378 int rd = (opcode >> 12) & 0xF; \
379 int rm = opcode & 0xF; \
380 UNUSED(rm); \
381 address = ADDRESS; \
382 ADDR_MODE_2_WRITEBACK_PRE_ ## LS (WRITEBACK); \
383 BODY; \
384 ADDR_MODE_2_WRITEBACK_POST_ ## LS (WRITEBACK);)
385
386#define DEFINE_LOAD_STORE_INSTRUCTION_SHIFTER_ARM(NAME, SHIFTER, LS, BODY) \
387 DEFINE_LOAD_STORE_INSTRUCTION_EX_ARM(NAME, ADDR_MODE_2_RN, ADDR_MODE_2_WRITEBACK(ADDR_MODE_2_INDEX(-, SHIFTER)), LS, BODY) \
388 DEFINE_LOAD_STORE_INSTRUCTION_EX_ARM(NAME ## U, ADDR_MODE_2_RN, ADDR_MODE_2_WRITEBACK(ADDR_MODE_2_INDEX(+, SHIFTER)), LS, BODY) \
389 DEFINE_LOAD_STORE_INSTRUCTION_EX_ARM(NAME ## P, ADDR_MODE_2_INDEX(-, SHIFTER), , LS, BODY) \
390 DEFINE_LOAD_STORE_INSTRUCTION_EX_ARM(NAME ## PW, ADDR_MODE_2_INDEX(-, SHIFTER), ADDR_MODE_2_WRITEBACK(ADDR_MODE_2_ADDRESS), LS, BODY) \
391 DEFINE_LOAD_STORE_INSTRUCTION_EX_ARM(NAME ## PU, ADDR_MODE_2_INDEX(+, SHIFTER), , LS, BODY) \
392 DEFINE_LOAD_STORE_INSTRUCTION_EX_ARM(NAME ## PUW, ADDR_MODE_2_INDEX(+, SHIFTER), ADDR_MODE_2_WRITEBACK(ADDR_MODE_2_ADDRESS), LS, BODY)
393
394#define DEFINE_LOAD_STORE_INSTRUCTION_ARM(NAME, LS, BODY) \
395 DEFINE_LOAD_STORE_INSTRUCTION_SHIFTER_ARM(NAME ## _LSL_, ADDR_MODE_2_LSL, LS, BODY) \
396 DEFINE_LOAD_STORE_INSTRUCTION_SHIFTER_ARM(NAME ## _LSR_, ADDR_MODE_2_LSR, LS, BODY) \
397 DEFINE_LOAD_STORE_INSTRUCTION_SHIFTER_ARM(NAME ## _ASR_, ADDR_MODE_2_ASR, LS, BODY) \
398 DEFINE_LOAD_STORE_INSTRUCTION_SHIFTER_ARM(NAME ## _ROR_, ADDR_MODE_2_ROR, LS, BODY) \
399 DEFINE_LOAD_STORE_INSTRUCTION_EX_ARM(NAME ## I, ADDR_MODE_2_RN, ADDR_MODE_2_WRITEBACK(ADDR_MODE_2_INDEX(-, ADDR_MODE_2_IMMEDIATE)), LS, BODY) \
400 DEFINE_LOAD_STORE_INSTRUCTION_EX_ARM(NAME ## IU, ADDR_MODE_2_RN, ADDR_MODE_2_WRITEBACK(ADDR_MODE_2_INDEX(+, ADDR_MODE_2_IMMEDIATE)), LS, BODY) \
401 DEFINE_LOAD_STORE_INSTRUCTION_EX_ARM(NAME ## IP, ADDR_MODE_2_INDEX(-, ADDR_MODE_2_IMMEDIATE), , LS, BODY) \
402 DEFINE_LOAD_STORE_INSTRUCTION_EX_ARM(NAME ## IPW, ADDR_MODE_2_INDEX(-, ADDR_MODE_2_IMMEDIATE), ADDR_MODE_2_WRITEBACK(ADDR_MODE_2_ADDRESS), LS, BODY) \
403 DEFINE_LOAD_STORE_INSTRUCTION_EX_ARM(NAME ## IPU, ADDR_MODE_2_INDEX(+, ADDR_MODE_2_IMMEDIATE), , LS, BODY) \
404 DEFINE_LOAD_STORE_INSTRUCTION_EX_ARM(NAME ## IPUW, ADDR_MODE_2_INDEX(+, ADDR_MODE_2_IMMEDIATE), ADDR_MODE_2_WRITEBACK(ADDR_MODE_2_ADDRESS), LS, BODY) \
405
406#define DEFINE_LOAD_STORE_MODE_3_INSTRUCTION_ARM(NAME, LS, BODY) \
407 DEFINE_LOAD_STORE_INSTRUCTION_EX_ARM(NAME, ADDR_MODE_3_RN, ADDR_MODE_3_WRITEBACK(ADDR_MODE_3_INDEX(-, ADDR_MODE_3_RM)), LS, BODY) \
408 DEFINE_LOAD_STORE_INSTRUCTION_EX_ARM(NAME ## U, ADDR_MODE_3_RN, ADDR_MODE_3_WRITEBACK(ADDR_MODE_3_INDEX(+, ADDR_MODE_3_RM)), LS, BODY) \
409 DEFINE_LOAD_STORE_INSTRUCTION_EX_ARM(NAME ## P, ADDR_MODE_3_INDEX(-, ADDR_MODE_3_RM), , LS, BODY) \
410 DEFINE_LOAD_STORE_INSTRUCTION_EX_ARM(NAME ## PW, ADDR_MODE_3_INDEX(-, ADDR_MODE_3_RM), ADDR_MODE_3_WRITEBACK(ADDR_MODE_3_ADDRESS), LS, BODY) \
411 DEFINE_LOAD_STORE_INSTRUCTION_EX_ARM(NAME ## PU, ADDR_MODE_3_INDEX(+, ADDR_MODE_3_RM), , LS, BODY) \
412 DEFINE_LOAD_STORE_INSTRUCTION_EX_ARM(NAME ## PUW, ADDR_MODE_3_INDEX(+, ADDR_MODE_3_RM), ADDR_MODE_3_WRITEBACK(ADDR_MODE_3_ADDRESS), LS, BODY) \
413 DEFINE_LOAD_STORE_INSTRUCTION_EX_ARM(NAME ## I, ADDR_MODE_3_RN, ADDR_MODE_3_WRITEBACK(ADDR_MODE_3_INDEX(-, ADDR_MODE_3_IMMEDIATE)), LS, BODY) \
414 DEFINE_LOAD_STORE_INSTRUCTION_EX_ARM(NAME ## IU, ADDR_MODE_3_RN, ADDR_MODE_3_WRITEBACK(ADDR_MODE_3_INDEX(+, ADDR_MODE_3_IMMEDIATE)), LS, BODY) \
415 DEFINE_LOAD_STORE_INSTRUCTION_EX_ARM(NAME ## IP, ADDR_MODE_3_INDEX(-, ADDR_MODE_3_IMMEDIATE), , LS, BODY) \
416 DEFINE_LOAD_STORE_INSTRUCTION_EX_ARM(NAME ## IPW, ADDR_MODE_3_INDEX(-, ADDR_MODE_3_IMMEDIATE), ADDR_MODE_3_WRITEBACK(ADDR_MODE_3_ADDRESS), LS, BODY) \
417 DEFINE_LOAD_STORE_INSTRUCTION_EX_ARM(NAME ## IPU, ADDR_MODE_3_INDEX(+, ADDR_MODE_3_IMMEDIATE), , LS, BODY) \
418 DEFINE_LOAD_STORE_INSTRUCTION_EX_ARM(NAME ## IPUW, ADDR_MODE_3_INDEX(+, ADDR_MODE_3_IMMEDIATE), ADDR_MODE_3_WRITEBACK(ADDR_MODE_3_ADDRESS), LS, BODY) \
419
420#define DEFINE_LOAD_STORE_T_INSTRUCTION_SHIFTER_ARM(NAME, SHIFTER, LS, BODY) \
421 DEFINE_LOAD_STORE_INSTRUCTION_EX_ARM(NAME, SHIFTER, ADDR_MODE_2_WRITEBACK(ADDR_MODE_2_INDEX(-, ADDR_MODE_2_RM)), LS, BODY) \
422 DEFINE_LOAD_STORE_INSTRUCTION_EX_ARM(NAME ## U, SHIFTER, ADDR_MODE_2_WRITEBACK(ADDR_MODE_2_INDEX(+, ADDR_MODE_2_RM)), LS, BODY) \
423
424#define DEFINE_LOAD_STORE_T_INSTRUCTION_ARM(NAME, LS, BODY) \
425 DEFINE_LOAD_STORE_T_INSTRUCTION_SHIFTER_ARM(NAME ## _LSL_, ADDR_MODE_2_LSL, LS, BODY) \
426 DEFINE_LOAD_STORE_T_INSTRUCTION_SHIFTER_ARM(NAME ## _LSR_, ADDR_MODE_2_LSR, LS, BODY) \
427 DEFINE_LOAD_STORE_T_INSTRUCTION_SHIFTER_ARM(NAME ## _ASR_, ADDR_MODE_2_ASR, LS, BODY) \
428 DEFINE_LOAD_STORE_T_INSTRUCTION_SHIFTER_ARM(NAME ## _ROR_, ADDR_MODE_2_ROR, LS, BODY) \
429 DEFINE_LOAD_STORE_INSTRUCTION_EX_ARM(NAME ## I, ADDR_MODE_2_RN, ADDR_MODE_2_WRITEBACK(ADDR_MODE_2_INDEX(-, ADDR_MODE_2_IMMEDIATE)), LS, BODY) \
430 DEFINE_LOAD_STORE_INSTRUCTION_EX_ARM(NAME ## IU, ADDR_MODE_2_RN, ADDR_MODE_2_WRITEBACK(ADDR_MODE_2_INDEX(+, ADDR_MODE_2_IMMEDIATE)), LS, BODY) \
431
432#define ARM_MS_PRE \
433 enum PrivilegeMode privilegeMode = cpu->privilegeMode; \
434 ARMSetPrivilegeMode(cpu, MODE_SYSTEM);
435
436#define ARM_MS_POST ARMSetPrivilegeMode(cpu, privilegeMode);
437
438#define DEFINE_LOAD_STORE_MULTIPLE_INSTRUCTION_EX_ARM(NAME, LS, WRITEBACK, S_PRE, S_POST, DIRECTION, POST_BODY) \
439 DEFINE_INSTRUCTION_ARM(NAME, \
440 int rn = (opcode >> 16) & 0xF; \
441 int rs = opcode & 0x0000FFFF; \
442 uint32_t address = cpu->gprs[rn]; \
443 S_PRE; \
444 address = cpu->memory. LS ## Multiple(cpu, address, rs, LSM_ ## DIRECTION, ¤tCycles); \
445 S_POST; \
446 POST_BODY; \
447 WRITEBACK;)
448
449
450#define DEFINE_LOAD_STORE_MULTIPLE_INSTRUCTION_ARM(NAME, LS, POST_BODY) \
451 DEFINE_LOAD_STORE_MULTIPLE_INSTRUCTION_EX_ARM(NAME ## DA, LS, , , , DA, POST_BODY) \
452 DEFINE_LOAD_STORE_MULTIPLE_INSTRUCTION_EX_ARM(NAME ## DAW, LS, ADDR_MODE_4_WRITEBACK_ ## NAME, , , DA, POST_BODY) \
453 DEFINE_LOAD_STORE_MULTIPLE_INSTRUCTION_EX_ARM(NAME ## DB, LS, , , , DB, POST_BODY) \
454 DEFINE_LOAD_STORE_MULTIPLE_INSTRUCTION_EX_ARM(NAME ## DBW, LS, ADDR_MODE_4_WRITEBACK_ ## NAME, , , DB, POST_BODY) \
455 DEFINE_LOAD_STORE_MULTIPLE_INSTRUCTION_EX_ARM(NAME ## IA, LS, , , , IA, POST_BODY) \
456 DEFINE_LOAD_STORE_MULTIPLE_INSTRUCTION_EX_ARM(NAME ## IAW, LS, ADDR_MODE_4_WRITEBACK_ ## NAME, , , IA, POST_BODY) \
457 DEFINE_LOAD_STORE_MULTIPLE_INSTRUCTION_EX_ARM(NAME ## IB, LS, , , , IB, POST_BODY) \
458 DEFINE_LOAD_STORE_MULTIPLE_INSTRUCTION_EX_ARM(NAME ## IBW, LS, ADDR_MODE_4_WRITEBACK_ ## NAME, , , IB, POST_BODY) \
459 DEFINE_LOAD_STORE_MULTIPLE_INSTRUCTION_EX_ARM(NAME ## SDA, LS, , ARM_MS_PRE, ARM_MS_POST, DA, POST_BODY) \
460 DEFINE_LOAD_STORE_MULTIPLE_INSTRUCTION_EX_ARM(NAME ## SDAW, LS, ADDR_MODE_4_WRITEBACK_ ## NAME, ARM_MS_PRE, ARM_MS_POST, DA, POST_BODY) \
461 DEFINE_LOAD_STORE_MULTIPLE_INSTRUCTION_EX_ARM(NAME ## SDB, LS, , ARM_MS_PRE, ARM_MS_POST, DB, POST_BODY) \
462 DEFINE_LOAD_STORE_MULTIPLE_INSTRUCTION_EX_ARM(NAME ## SDBW, LS, ADDR_MODE_4_WRITEBACK_ ## NAME, ARM_MS_PRE, ARM_MS_POST, DB, POST_BODY) \
463 DEFINE_LOAD_STORE_MULTIPLE_INSTRUCTION_EX_ARM(NAME ## SIA, LS, , ARM_MS_PRE, ARM_MS_POST, IA, POST_BODY) \
464 DEFINE_LOAD_STORE_MULTIPLE_INSTRUCTION_EX_ARM(NAME ## SIAW, LS, ADDR_MODE_4_WRITEBACK_ ## NAME, ARM_MS_PRE, ARM_MS_POST, IA, POST_BODY) \
465 DEFINE_LOAD_STORE_MULTIPLE_INSTRUCTION_EX_ARM(NAME ## SIB, LS, , ARM_MS_PRE, ARM_MS_POST, IB, POST_BODY) \
466 DEFINE_LOAD_STORE_MULTIPLE_INSTRUCTION_EX_ARM(NAME ## SIBW, LS, ADDR_MODE_4_WRITEBACK_ ## NAME, ARM_MS_PRE, ARM_MS_POST, IB, POST_BODY)
467
468// Begin ALU definitions
469
470DEFINE_ALU_INSTRUCTION_ARM(ADD, ARM_ADDITION_S(n, cpu->shifterOperand, cpu->gprs[rd]),
471 cpu->gprs[rd] = n + cpu->shifterOperand;)
472
473DEFINE_ALU_INSTRUCTION_ARM(ADC, ARM_ADDITION_S(n, cpu->shifterOperand, cpu->gprs[rd]),
474 cpu->gprs[rd] = n + cpu->shifterOperand + cpu->cpsr.c;)
475
476DEFINE_ALU_INSTRUCTION_ARM(AND, ARM_NEUTRAL_S(n, cpu->shifterOperand, cpu->gprs[rd]),
477 cpu->gprs[rd] = n & cpu->shifterOperand;)
478
479DEFINE_ALU_INSTRUCTION_ARM(BIC, ARM_NEUTRAL_S(n, cpu->shifterOperand, cpu->gprs[rd]),
480 cpu->gprs[rd] = n & ~cpu->shifterOperand;)
481
482DEFINE_ALU_INSTRUCTION_S_ONLY_ARM(CMN, ARM_ADDITION_S(n, cpu->shifterOperand, aluOut),
483 int32_t aluOut = n + cpu->shifterOperand;)
484
485DEFINE_ALU_INSTRUCTION_S_ONLY_ARM(CMP, ARM_SUBTRACTION_S(n, cpu->shifterOperand, aluOut),
486 int32_t aluOut = n - cpu->shifterOperand;)
487
488DEFINE_ALU_INSTRUCTION_ARM(EOR, ARM_NEUTRAL_S(n, cpu->shifterOperand, cpu->gprs[rd]),
489 cpu->gprs[rd] = n ^ cpu->shifterOperand;)
490
491DEFINE_ALU_INSTRUCTION_ARM(MOV, ARM_NEUTRAL_S(n, cpu->shifterOperand, cpu->gprs[rd]),
492 cpu->gprs[rd] = cpu->shifterOperand;)
493
494DEFINE_ALU_INSTRUCTION_ARM(MVN, ARM_NEUTRAL_S(n, cpu->shifterOperand, cpu->gprs[rd]),
495 cpu->gprs[rd] = ~cpu->shifterOperand;)
496
497DEFINE_ALU_INSTRUCTION_ARM(ORR, ARM_NEUTRAL_S(n, cpu->shifterOperand, cpu->gprs[rd]),
498 cpu->gprs[rd] = n | cpu->shifterOperand;)
499
500DEFINE_ALU_INSTRUCTION_ARM(RSB, ARM_SUBTRACTION_S(cpu->shifterOperand, n, cpu->gprs[rd]),
501 cpu->gprs[rd] = cpu->shifterOperand - n;)
502
503DEFINE_ALU_INSTRUCTION_ARM(RSC, ARM_SUBTRACTION_CARRY_S(cpu->shifterOperand, n, cpu->gprs[rd], !cpu->cpsr.c),
504 cpu->gprs[rd] = cpu->shifterOperand - n - !cpu->cpsr.c;)
505
506DEFINE_ALU_INSTRUCTION_ARM(SBC, ARM_SUBTRACTION_CARRY_S(n, cpu->shifterOperand, cpu->gprs[rd], !cpu->cpsr.c),
507 cpu->gprs[rd] = n - cpu->shifterOperand - !cpu->cpsr.c;)
508
509DEFINE_ALU_INSTRUCTION_ARM(SUB, ARM_SUBTRACTION_S(n, cpu->shifterOperand, cpu->gprs[rd]),
510 cpu->gprs[rd] = n - cpu->shifterOperand;)
511
512DEFINE_ALU_INSTRUCTION_S_ONLY_ARM(TEQ, ARM_NEUTRAL_S(n, cpu->shifterOperand, aluOut),
513 int32_t aluOut = n ^ cpu->shifterOperand;)
514
515DEFINE_ALU_INSTRUCTION_S_ONLY_ARM(TST, ARM_NEUTRAL_S(n, cpu->shifterOperand, aluOut),
516 int32_t aluOut = n & cpu->shifterOperand;)
517
518// End ALU definitions
519
520// Begin multiply definitions
521
522DEFINE_MULTIPLY_INSTRUCTION_2_ARM(MLA, cpu->gprs[rdHi] = cpu->gprs[rm] * cpu->gprs[rs] + cpu->gprs[rd], ARM_NEUTRAL_S(, , cpu->gprs[rdHi]), 2)
523DEFINE_MULTIPLY_INSTRUCTION_ARM(MUL, cpu->gprs[rd] = cpu->gprs[rm] * cpu->gprs[rs], ARM_NEUTRAL_S(cpu->gprs[rm], cpu->gprs[rs], cpu->gprs[rd]))
524
525DEFINE_MULTIPLY_INSTRUCTION_2_ARM(SMLAL,
526 int64_t d = ((int64_t) cpu->gprs[rm]) * ((int64_t) cpu->gprs[rs]);
527 int32_t dm = cpu->gprs[rd];
528 int32_t dn = d;
529 cpu->gprs[rd] = dm + dn;
530 cpu->gprs[rdHi] = cpu->gprs[rdHi] + (d >> 32) + ARM_CARRY_FROM(dm, dn, cpu->gprs[rd]);,
531 ARM_NEUTRAL_HI_S(cpu->gprs[rd], cpu->gprs[rdHi]), 3)
532
533DEFINE_MULTIPLY_INSTRUCTION_2_ARM(SMULL,
534 int64_t d = ((int64_t) cpu->gprs[rm]) * ((int64_t) cpu->gprs[rs]);
535 cpu->gprs[rd] = d;
536 cpu->gprs[rdHi] = d >> 32;,
537 ARM_NEUTRAL_HI_S(cpu->gprs[rd], cpu->gprs[rdHi]), 2)
538
539DEFINE_MULTIPLY_INSTRUCTION_2_ARM(UMLAL,
540 uint64_t d = ARM_UXT_64(cpu->gprs[rm]) * ARM_UXT_64(cpu->gprs[rs]);
541 int32_t dm = cpu->gprs[rd];
542 int32_t dn = d;
543 cpu->gprs[rd] = dm + dn;
544 cpu->gprs[rdHi] = cpu->gprs[rdHi] + (d >> 32) + ARM_CARRY_FROM(dm, dn, cpu->gprs[rd]);,
545 ARM_NEUTRAL_HI_S(cpu->gprs[rd], cpu->gprs[rdHi]), 3)
546
547DEFINE_MULTIPLY_INSTRUCTION_2_ARM(UMULL,
548 uint64_t d = ARM_UXT_64(cpu->gprs[rm]) * ARM_UXT_64(cpu->gprs[rs]);
549 cpu->gprs[rd] = d;
550 cpu->gprs[rdHi] = d >> 32;,
551 ARM_NEUTRAL_HI_S(cpu->gprs[rd], cpu->gprs[rdHi]), 2)
552
553// End multiply definitions
554
555// Begin load/store definitions
556
557DEFINE_LOAD_STORE_INSTRUCTION_ARM(LDR, LOAD, cpu->gprs[rd] = cpu->memory.load32(cpu, address, ¤tCycles); ARM_LOAD_POST_BODY;)
558DEFINE_LOAD_STORE_INSTRUCTION_ARM(LDRB, LOAD, cpu->gprs[rd] = cpu->memory.load8(cpu, address, ¤tCycles); ARM_LOAD_POST_BODY;)
559DEFINE_LOAD_STORE_MODE_3_INSTRUCTION_ARM(LDRH, LOAD, cpu->gprs[rd] = cpu->memory.load16(cpu, address, ¤tCycles); ARM_LOAD_POST_BODY;)
560DEFINE_LOAD_STORE_MODE_3_INSTRUCTION_ARM(LDRSB, LOAD, cpu->gprs[rd] = ARM_SXT_8(cpu->memory.load8(cpu, address, ¤tCycles)); ARM_LOAD_POST_BODY;)
561DEFINE_LOAD_STORE_MODE_3_INSTRUCTION_ARM(LDRSH, LOAD, cpu->gprs[rd] = address & 1 ? ARM_SXT_8(cpu->memory.load16(cpu, address, ¤tCycles)) : ARM_SXT_16(cpu->memory.load16(cpu, address, ¤tCycles)); ARM_LOAD_POST_BODY;)
562DEFINE_LOAD_STORE_INSTRUCTION_ARM(STR, STORE, cpu->memory.store32(cpu, address, cpu->gprs[rd], ¤tCycles); ARM_STORE_POST_BODY;)
563DEFINE_LOAD_STORE_INSTRUCTION_ARM(STRB, STORE, cpu->memory.store8(cpu, address, cpu->gprs[rd], ¤tCycles); ARM_STORE_POST_BODY;)
564DEFINE_LOAD_STORE_MODE_3_INSTRUCTION_ARM(STRH, STORE, cpu->memory.store16(cpu, address, cpu->gprs[rd], ¤tCycles); ARM_STORE_POST_BODY;)
565
566DEFINE_LOAD_STORE_T_INSTRUCTION_ARM(LDRBT, LOAD,
567 enum PrivilegeMode priv = cpu->privilegeMode;
568 ARMSetPrivilegeMode(cpu, MODE_USER);
569 int32_t r = cpu->memory.load8(cpu, address, ¤tCycles);
570 ARMSetPrivilegeMode(cpu, priv);
571 cpu->gprs[rd] = r;
572 ARM_LOAD_POST_BODY;)
573
574DEFINE_LOAD_STORE_T_INSTRUCTION_ARM(LDRT, LOAD,
575 enum PrivilegeMode priv = cpu->privilegeMode;
576 ARMSetPrivilegeMode(cpu, MODE_USER);
577 int32_t r = cpu->memory.load32(cpu, address, ¤tCycles);
578 ARMSetPrivilegeMode(cpu, priv);
579 cpu->gprs[rd] = r;
580 ARM_LOAD_POST_BODY;)
581
582DEFINE_LOAD_STORE_T_INSTRUCTION_ARM(STRBT, STORE,
583 enum PrivilegeMode priv = cpu->privilegeMode;
584 int32_t r = cpu->gprs[rd];
585 ARMSetPrivilegeMode(cpu, MODE_USER);
586 cpu->memory.store8(cpu, address, r, ¤tCycles);
587 ARMSetPrivilegeMode(cpu, priv);
588 ARM_STORE_POST_BODY;)
589
590DEFINE_LOAD_STORE_T_INSTRUCTION_ARM(STRT, STORE,
591 enum PrivilegeMode priv = cpu->privilegeMode;
592 int32_t r = cpu->gprs[rd];
593 ARMSetPrivilegeMode(cpu, MODE_USER);
594 cpu->memory.store32(cpu, address, r, ¤tCycles);
595 ARMSetPrivilegeMode(cpu, priv);
596 ARM_STORE_POST_BODY;)
597
598DEFINE_LOAD_STORE_MULTIPLE_INSTRUCTION_ARM(LDM,
599 load,
600 currentCycles += cpu->memory.activeNonseqCycles32 - cpu->memory.activeSeqCycles32;
601 if ((rs & 0x8000) || !rs) {
602 currentCycles += ARMWritePC(cpu);
603 })
604
605DEFINE_LOAD_STORE_MULTIPLE_INSTRUCTION_ARM(STM,
606 store,
607 ARM_STORE_POST_BODY;)
608
609DEFINE_INSTRUCTION_ARM(SWP,
610 int rm = opcode & 0xF;
611 int rd = (opcode >> 12) & 0xF;
612 int rn = (opcode >> 16) & 0xF;
613 int32_t d = cpu->memory.load32(cpu, cpu->gprs[rn], ¤tCycles);
614 cpu->memory.store32(cpu, cpu->gprs[rn], cpu->gprs[rm], ¤tCycles);
615 cpu->gprs[rd] = d;)
616
617DEFINE_INSTRUCTION_ARM(SWPB,
618 int rm = opcode & 0xF;
619 int rd = (opcode >> 12) & 0xF;
620 int rn = (opcode >> 16) & 0xF;
621 int32_t d = cpu->memory.load8(cpu, cpu->gprs[rn], ¤tCycles);
622 cpu->memory.store8(cpu, cpu->gprs[rn], cpu->gprs[rm], ¤tCycles);
623 cpu->gprs[rd] = d;)
624
625// End load/store definitions
626
627// Begin branch definitions
628
629DEFINE_INSTRUCTION_ARM(B,
630 int32_t offset = opcode << 8;
631 offset >>= 6;
632 cpu->gprs[ARM_PC] += offset;
633 currentCycles += ARMWritePC(cpu);)
634
635DEFINE_INSTRUCTION_ARM(BL,
636 int32_t immediate = (opcode & 0x00FFFFFF) << 8;
637 cpu->gprs[ARM_LR] = cpu->gprs[ARM_PC] - WORD_SIZE_ARM;
638 cpu->gprs[ARM_PC] += immediate >> 6;
639 currentCycles += ARMWritePC(cpu);)
640
641DEFINE_INSTRUCTION_ARM(BX,
642 int rm = opcode & 0x0000000F;
643 _ARMSetMode(cpu, cpu->gprs[rm] & 0x00000001);
644 cpu->gprs[ARM_PC] = cpu->gprs[rm] & 0xFFFFFFFE;
645 if (cpu->executionMode == MODE_THUMB) {
646 currentCycles += ThumbWritePC(cpu);
647 } else {
648 currentCycles += ARMWritePC(cpu);
649 })
650
651// End branch definitions
652
653// Begin coprocessor definitions
654
655DEFINE_INSTRUCTION_ARM(CDP, ARM_STUB)
656DEFINE_INSTRUCTION_ARM(LDC, ARM_STUB)
657DEFINE_INSTRUCTION_ARM(STC, ARM_STUB)
658DEFINE_INSTRUCTION_ARM(MCR, ARM_STUB)
659DEFINE_INSTRUCTION_ARM(MRC, ARM_STUB)
660
661// Begin miscellaneous definitions
662
663DEFINE_INSTRUCTION_ARM(BKPT, cpu->irqh.bkpt32(cpu, ((opcode >> 4) & 0xFFF0) | (opcode & 0xF))); // Not strictly in ARMv4T, but here for convenience
664DEFINE_INSTRUCTION_ARM(ILL, ARM_ILL) // Illegal opcode
665
666DEFINE_INSTRUCTION_ARM(MSR,
667 int c = opcode & 0x00010000;
668 int f = opcode & 0x00080000;
669 int32_t operand = cpu->gprs[opcode & 0x0000000F];
670 int32_t mask = (c ? 0x000000FF : 0) | (f ? 0xFF000000 : 0);
671 if (mask & PSR_USER_MASK) {
672 cpu->cpsr.packed = (cpu->cpsr.packed & ~PSR_USER_MASK) | (operand & PSR_USER_MASK);
673 }
674 if (mask & PSR_STATE_MASK) {
675 cpu->cpsr.packed = (cpu->cpsr.packed & ~PSR_STATE_MASK) | (operand & PSR_STATE_MASK);
676 }
677 if (cpu->privilegeMode != MODE_USER && (mask & PSR_PRIV_MASK)) {
678 ARMSetPrivilegeMode(cpu, (enum PrivilegeMode) ((operand & 0x0000000F) | 0x00000010));
679 cpu->cpsr.packed = (cpu->cpsr.packed & ~PSR_PRIV_MASK) | (operand & PSR_PRIV_MASK);
680 }
681 _ARMReadCPSR(cpu);
682 if (cpu->executionMode == MODE_THUMB) {
683 cpu->prefetch[0] = 0x46C0; // nop
684 cpu->prefetch[1] &= 0xFFFF;
685 cpu->gprs[ARM_PC] += WORD_SIZE_THUMB;
686 } else {
687 LOAD_32(cpu->prefetch[0], (cpu->gprs[ARM_PC] - WORD_SIZE_ARM) & cpu->memory.activeMask, cpu->memory.activeRegion);
688 LOAD_32(cpu->prefetch[1], cpu->gprs[ARM_PC] & cpu->memory.activeMask, cpu->memory.activeRegion);
689 })
690
691DEFINE_INSTRUCTION_ARM(MSRR,
692 int c = opcode & 0x00010000;
693 int f = opcode & 0x00080000;
694 int32_t operand = cpu->gprs[opcode & 0x0000000F];
695 int32_t mask = (c ? 0x000000FF : 0) | (f ? 0xFF000000 : 0);
696 mask &= PSR_USER_MASK | PSR_PRIV_MASK | PSR_STATE_MASK;
697 cpu->spsr.packed = (cpu->spsr.packed & ~mask) | (operand & mask) | 0x00000010;)
698
699DEFINE_INSTRUCTION_ARM(MRS, \
700 int rd = (opcode >> 12) & 0xF; \
701 cpu->gprs[rd] = cpu->cpsr.packed;)
702
703DEFINE_INSTRUCTION_ARM(MRSR, \
704 int rd = (opcode >> 12) & 0xF; \
705 cpu->gprs[rd] = cpu->spsr.packed;)
706
707DEFINE_INSTRUCTION_ARM(MSRI,
708 int c = opcode & 0x00010000;
709 int f = opcode & 0x00080000;
710 int rotate = (opcode & 0x00000F00) >> 7;
711 int32_t operand = ROR(opcode & 0x000000FF, rotate);
712 int32_t mask = (c ? 0x000000FF : 0) | (f ? 0xFF000000 : 0);
713 if (mask & PSR_USER_MASK) {
714 cpu->cpsr.packed = (cpu->cpsr.packed & ~PSR_USER_MASK) | (operand & PSR_USER_MASK);
715 }
716 if (mask & PSR_STATE_MASK) {
717 cpu->cpsr.packed = (cpu->cpsr.packed & ~PSR_STATE_MASK) | (operand & PSR_STATE_MASK);
718 }
719 if (cpu->privilegeMode != MODE_USER && (mask & PSR_PRIV_MASK)) {
720 ARMSetPrivilegeMode(cpu, (enum PrivilegeMode) ((operand & 0x0000000F) | 0x00000010));
721 cpu->cpsr.packed = (cpu->cpsr.packed & ~PSR_PRIV_MASK) | (operand & PSR_PRIV_MASK);
722 }
723 _ARMReadCPSR(cpu);
724 if (cpu->executionMode == MODE_THUMB) {
725 cpu->prefetch[0] = 0x46C0; // nop
726 cpu->prefetch[1] &= 0xFFFF;
727 cpu->gprs[ARM_PC] += WORD_SIZE_THUMB;
728 } else {
729 LOAD_32(cpu->prefetch[0], (cpu->gprs[ARM_PC] - WORD_SIZE_ARM) & cpu->memory.activeMask, cpu->memory.activeRegion);
730 LOAD_32(cpu->prefetch[1], cpu->gprs[ARM_PC] & cpu->memory.activeMask, cpu->memory.activeRegion);
731 })
732
733DEFINE_INSTRUCTION_ARM(MSRRI,
734 int c = opcode & 0x00010000;
735 int f = opcode & 0x00080000;
736 int rotate = (opcode & 0x00000F00) >> 7;
737 int32_t operand = ROR(opcode & 0x000000FF, rotate);
738 int32_t mask = (c ? 0x000000FF : 0) | (f ? 0xFF000000 : 0);
739 mask &= PSR_USER_MASK | PSR_PRIV_MASK | PSR_STATE_MASK;
740 cpu->spsr.packed = (cpu->spsr.packed & ~mask) | (operand & mask) | 0x00000010;)
741
742DEFINE_INSTRUCTION_ARM(SWI, cpu->irqh.swi32(cpu, opcode & 0xFFFFFF))
743
744const ARMInstruction _armTable[0x1000] = {
745 DECLARE_ARM_EMITTER_BLOCK(_ARMInstruction)
746};