4 * Copyright (c) 2005-2007 CodeSourcery, LLC
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, see <http://www.gnu.org/licenses/>.
19 #include "qemu/osdep.h"
21 #include "exec/helper-proto.h"
22 #include "internals.h"
23 #include "exec/cpu_ldst.h"
25 #define SIGNBIT (uint32_t)0x80000000
26 #define SIGNBIT64 ((uint64_t)1 << 63)
28 static void raise_exception(CPUARMState
*env
, uint32_t excp
,
29 uint32_t syndrome
, uint32_t target_el
)
31 CPUState
*cs
= CPU(arm_env_get_cpu(env
));
33 assert(!excp_is_internal(excp
));
34 cs
->exception_index
= excp
;
35 env
->exception
.syndrome
= syndrome
;
36 env
->exception
.target_el
= target_el
;
40 static int exception_target_el(CPUARMState
*env
)
42 int target_el
= MAX(1, arm_current_el(env
));
44 /* No such thing as secure EL1 if EL3 is aarch32, so update the target EL
45 * to EL3 in this case.
47 if (arm_is_secure(env
) && !arm_el_is_aa64(env
, 3) && target_el
== 1) {
54 uint32_t HELPER(neon_tbl
)(CPUARMState
*env
, uint32_t ireg
, uint32_t def
,
55 uint32_t rn
, uint32_t maxindex
)
62 table
= (uint64_t *)&env
->vfp
.regs
[rn
];
64 for (shift
= 0; shift
< 32; shift
+= 8) {
65 index
= (ireg
>> shift
) & 0xff;
66 if (index
< maxindex
) {
67 tmp
= (table
[index
>> 3] >> ((index
& 7) << 3)) & 0xff;
70 val
|= def
& (0xff << shift
);
76 #if !defined(CONFIG_USER_ONLY)
78 /* try to fill the TLB and return an exception if error. If retaddr is
79 * NULL, it means that the function was called in C code (i.e. not
80 * from generated code or from helper.c)
82 void tlb_fill(CPUState
*cs
, target_ulong addr
, int is_write
, int mmu_idx
,
87 ARMMMUFaultInfo fi
= {};
89 ret
= arm_tlb_fill(cs
, addr
, is_write
, mmu_idx
, &fsr
, &fi
);
91 ARMCPU
*cpu
= ARM_CPU(cs
);
92 CPUARMState
*env
= &cpu
->env
;
94 unsigned int target_el
;
98 /* now we have a real cpu fault */
99 cpu_restore_state(cs
, retaddr
);
102 target_el
= exception_target_el(env
);
105 env
->cp15
.hpfar_el2
= extract64(fi
.s2addr
, 12, 47) << 4;
107 same_el
= arm_current_el(env
) == target_el
;
108 /* AArch64 syndrome does not have an LPAE bit */
109 syn
= fsr
& ~(1 << 9);
111 /* For insn and data aborts we assume there is no instruction syndrome
112 * information; this is always true for exceptions reported to EL1.
115 syn
= syn_insn_abort(same_el
, 0, fi
.s1ptw
, syn
);
116 exc
= EXCP_PREFETCH_ABORT
;
118 syn
= syn_data_abort(same_el
, 0, 0, fi
.s1ptw
, is_write
== 1, syn
);
119 if (is_write
== 1 && arm_feature(env
, ARM_FEATURE_V6
)) {
122 exc
= EXCP_DATA_ABORT
;
125 env
->exception
.vaddress
= addr
;
126 env
->exception
.fsr
= fsr
;
127 raise_exception(env
, exc
, syn
, target_el
);
131 /* Raise a data fault alignment exception for the specified virtual address */
132 void arm_cpu_do_unaligned_access(CPUState
*cs
, vaddr vaddr
, int is_write
,
133 int is_user
, uintptr_t retaddr
)
135 ARMCPU
*cpu
= ARM_CPU(cs
);
136 CPUARMState
*env
= &cpu
->env
;
141 /* now we have a real cpu fault */
142 cpu_restore_state(cs
, retaddr
);
145 target_el
= exception_target_el(env
);
146 same_el
= (arm_current_el(env
) == target_el
);
148 env
->exception
.vaddress
= vaddr
;
150 /* the DFSR for an alignment fault depends on whether we're using
151 * the LPAE long descriptor format, or the short descriptor format
153 if (arm_s1_regime_using_lpae_format(env
, cpu_mmu_index(env
, false))) {
154 env
->exception
.fsr
= 0x21;
156 env
->exception
.fsr
= 0x1;
159 if (is_write
== 1 && arm_feature(env
, ARM_FEATURE_V6
)) {
160 env
->exception
.fsr
|= (1 << 11);
163 raise_exception(env
, EXCP_DATA_ABORT
,
164 syn_data_abort(same_el
, 0, 0, 0, is_write
== 1, 0x21),
168 #endif /* !defined(CONFIG_USER_ONLY) */
170 uint32_t HELPER(add_setq
)(CPUARMState
*env
, uint32_t a
, uint32_t b
)
172 uint32_t res
= a
+ b
;
173 if (((res
^ a
) & SIGNBIT
) && !((a
^ b
) & SIGNBIT
))
178 uint32_t HELPER(add_saturate
)(CPUARMState
*env
, uint32_t a
, uint32_t b
)
180 uint32_t res
= a
+ b
;
181 if (((res
^ a
) & SIGNBIT
) && !((a
^ b
) & SIGNBIT
)) {
183 res
= ~(((int32_t)a
>> 31) ^ SIGNBIT
);
188 uint32_t HELPER(sub_saturate
)(CPUARMState
*env
, uint32_t a
, uint32_t b
)
190 uint32_t res
= a
- b
;
191 if (((res
^ a
) & SIGNBIT
) && ((a
^ b
) & SIGNBIT
)) {
193 res
= ~(((int32_t)a
>> 31) ^ SIGNBIT
);
198 uint32_t HELPER(double_saturate
)(CPUARMState
*env
, int32_t val
)
201 if (val
>= 0x40000000) {
204 } else if (val
<= (int32_t)0xc0000000) {
213 uint32_t HELPER(add_usaturate
)(CPUARMState
*env
, uint32_t a
, uint32_t b
)
215 uint32_t res
= a
+ b
;
223 uint32_t HELPER(sub_usaturate
)(CPUARMState
*env
, uint32_t a
, uint32_t b
)
225 uint32_t res
= a
- b
;
233 /* Signed saturation. */
234 static inline uint32_t do_ssat(CPUARMState
*env
, int32_t val
, int shift
)
240 mask
= (1u << shift
) - 1;
244 } else if (top
< -1) {
251 /* Unsigned saturation. */
252 static inline uint32_t do_usat(CPUARMState
*env
, int32_t val
, int shift
)
256 max
= (1u << shift
) - 1;
260 } else if (val
> max
) {
267 /* Signed saturate. */
268 uint32_t HELPER(ssat
)(CPUARMState
*env
, uint32_t x
, uint32_t shift
)
270 return do_ssat(env
, x
, shift
);
273 /* Dual halfword signed saturate. */
274 uint32_t HELPER(ssat16
)(CPUARMState
*env
, uint32_t x
, uint32_t shift
)
278 res
= (uint16_t)do_ssat(env
, (int16_t)x
, shift
);
279 res
|= do_ssat(env
, ((int32_t)x
) >> 16, shift
) << 16;
283 /* Unsigned saturate. */
284 uint32_t HELPER(usat
)(CPUARMState
*env
, uint32_t x
, uint32_t shift
)
286 return do_usat(env
, x
, shift
);
289 /* Dual halfword unsigned saturate. */
290 uint32_t HELPER(usat16
)(CPUARMState
*env
, uint32_t x
, uint32_t shift
)
294 res
= (uint16_t)do_usat(env
, (int16_t)x
, shift
);
295 res
|= do_usat(env
, ((int32_t)x
) >> 16, shift
) << 16;
299 void HELPER(setend
)(CPUARMState
*env
)
301 env
->uncached_cpsr
^= CPSR_E
;
304 /* Function checks whether WFx (WFI/WFE) instructions are set up to be trapped.
305 * The function returns the target EL (1-3) if the instruction is to be trapped;
306 * otherwise it returns 0 indicating it is not trapped.
308 static inline int check_wfx_trap(CPUARMState
*env
, bool is_wfe
)
310 int cur_el
= arm_current_el(env
);
313 /* If we are currently in EL0 then we need to check if SCTLR is set up for
314 * WFx instructions being trapped to EL1. These trap bits don't exist in v7.
316 if (cur_el
< 1 && arm_feature(env
, ARM_FEATURE_V8
)) {
319 mask
= is_wfe
? SCTLR_nTWE
: SCTLR_nTWI
;
320 if (arm_is_secure_below_el3(env
) && !arm_el_is_aa64(env
, 3)) {
321 /* Secure EL0 and Secure PL1 is at EL3 */
327 if (!(env
->cp15
.sctlr_el
[target_el
] & mask
)) {
332 /* We are not trapping to EL1; trap to EL2 if HCR_EL2 requires it
333 * No need for ARM_FEATURE check as if HCR_EL2 doesn't exist the
334 * bits will be zero indicating no trap.
336 if (cur_el
< 2 && !arm_is_secure(env
)) {
337 mask
= (is_wfe
) ? HCR_TWE
: HCR_TWI
;
338 if (env
->cp15
.hcr_el2
& mask
) {
343 /* We are not trapping to EL1 or EL2; trap to EL3 if SCR_EL3 requires it */
345 mask
= (is_wfe
) ? SCR_TWE
: SCR_TWI
;
346 if (env
->cp15
.scr_el3
& mask
) {
354 void HELPER(wfi
)(CPUARMState
*env
)
356 CPUState
*cs
= CPU(arm_env_get_cpu(env
));
357 int target_el
= check_wfx_trap(env
, false);
359 if (cpu_has_work(cs
)) {
360 /* Don't bother to go into our "low power state" if
361 * we would just wake up immediately.
368 raise_exception(env
, EXCP_UDEF
, syn_wfx(1, 0xe, 0), target_el
);
371 cs
->exception_index
= EXCP_HLT
;
376 void HELPER(wfe
)(CPUARMState
*env
)
378 /* This is a hint instruction that is semantically different
379 * from YIELD even though we currently implement it identically.
380 * Don't actually halt the CPU, just yield back to top
381 * level loop. This is not going into a "low power state"
382 * (ie halting until some event occurs), so we never take
383 * a configurable trap to a different exception level.
388 void HELPER(yield
)(CPUARMState
*env
)
390 ARMCPU
*cpu
= arm_env_get_cpu(env
);
391 CPUState
*cs
= CPU(cpu
);
393 /* This is a non-trappable hint instruction that generally indicates
394 * that the guest is currently busy-looping. Yield control back to the
395 * top level loop so that a more deserving VCPU has a chance to run.
397 cs
->exception_index
= EXCP_YIELD
;
401 /* Raise an internal-to-QEMU exception. This is limited to only
402 * those EXCP values which are special cases for QEMU to interrupt
403 * execution and not to be used for exceptions which are passed to
404 * the guest (those must all have syndrome information and thus should
405 * use exception_with_syndrome).
407 void HELPER(exception_internal
)(CPUARMState
*env
, uint32_t excp
)
409 CPUState
*cs
= CPU(arm_env_get_cpu(env
));
411 assert(excp_is_internal(excp
));
412 cs
->exception_index
= excp
;
416 /* Raise an exception with the specified syndrome register value */
417 void HELPER(exception_with_syndrome
)(CPUARMState
*env
, uint32_t excp
,
418 uint32_t syndrome
, uint32_t target_el
)
420 raise_exception(env
, excp
, syndrome
, target_el
);
423 uint32_t HELPER(cpsr_read
)(CPUARMState
*env
)
425 return cpsr_read(env
) & ~(CPSR_EXEC
| CPSR_RESERVED
);
428 void HELPER(cpsr_write
)(CPUARMState
*env
, uint32_t val
, uint32_t mask
)
430 cpsr_write(env
, val
, mask
, CPSRWriteByInstr
);
433 /* Write the CPSR for a 32-bit exception return */
434 void HELPER(cpsr_write_eret
)(CPUARMState
*env
, uint32_t val
)
436 cpsr_write(env
, val
, CPSR_ERET_MASK
, CPSRWriteExceptionReturn
);
439 /* Access to user mode registers from privileged modes. */
440 uint32_t HELPER(get_user_reg
)(CPUARMState
*env
, uint32_t regno
)
445 val
= env
->banked_r13
[BANK_USRSYS
];
446 } else if (regno
== 14) {
447 val
= env
->banked_r14
[BANK_USRSYS
];
448 } else if (regno
>= 8
449 && (env
->uncached_cpsr
& 0x1f) == ARM_CPU_MODE_FIQ
) {
450 val
= env
->usr_regs
[regno
- 8];
452 val
= env
->regs
[regno
];
457 void HELPER(set_user_reg
)(CPUARMState
*env
, uint32_t regno
, uint32_t val
)
460 env
->banked_r13
[BANK_USRSYS
] = val
;
461 } else if (regno
== 14) {
462 env
->banked_r14
[BANK_USRSYS
] = val
;
463 } else if (regno
>= 8
464 && (env
->uncached_cpsr
& 0x1f) == ARM_CPU_MODE_FIQ
) {
465 env
->usr_regs
[regno
- 8] = val
;
467 env
->regs
[regno
] = val
;
471 void HELPER(set_r13_banked
)(CPUARMState
*env
, uint32_t mode
, uint32_t val
)
473 if ((env
->uncached_cpsr
& CPSR_M
) == mode
) {
476 env
->banked_r13
[bank_number(mode
)] = val
;
480 uint32_t HELPER(get_r13_banked
)(CPUARMState
*env
, uint32_t mode
)
482 if ((env
->uncached_cpsr
& CPSR_M
) == ARM_CPU_MODE_SYS
) {
483 /* SRS instruction is UNPREDICTABLE from System mode; we UNDEF.
484 * Other UNPREDICTABLE and UNDEF cases were caught at translate time.
486 raise_exception(env
, EXCP_UDEF
, syn_uncategorized(),
487 exception_target_el(env
));
490 if ((env
->uncached_cpsr
& CPSR_M
) == mode
) {
491 return env
->regs
[13];
493 return env
->banked_r13
[bank_number(mode
)];
497 void HELPER(access_check_cp_reg
)(CPUARMState
*env
, void *rip
, uint32_t syndrome
,
500 const ARMCPRegInfo
*ri
= rip
;
503 if (arm_feature(env
, ARM_FEATURE_XSCALE
) && ri
->cp
< 14
504 && extract32(env
->cp15
.c15_cpar
, ri
->cp
, 1) == 0) {
505 raise_exception(env
, EXCP_UDEF
, syndrome
, exception_target_el(env
));
512 switch (ri
->accessfn(env
, ri
, isread
)) {
516 target_el
= exception_target_el(env
);
518 case CP_ACCESS_TRAP_EL2
:
519 /* Requesting a trap to EL2 when we're in EL3 or S-EL0/1 is
520 * a bug in the access function.
522 assert(!arm_is_secure(env
) && arm_current_el(env
) != 3);
525 case CP_ACCESS_TRAP_EL3
:
528 case CP_ACCESS_TRAP_UNCATEGORIZED
:
529 target_el
= exception_target_el(env
);
530 syndrome
= syn_uncategorized();
532 case CP_ACCESS_TRAP_UNCATEGORIZED_EL2
:
534 syndrome
= syn_uncategorized();
536 case CP_ACCESS_TRAP_UNCATEGORIZED_EL3
:
538 syndrome
= syn_uncategorized();
540 case CP_ACCESS_TRAP_FP_EL2
:
542 /* Since we are an implementation that takes exceptions on a trapped
543 * conditional insn only if the insn has passed its condition code
544 * check, we take the IMPDEF choice to always report CV=1 COND=0xe
545 * (which is also the required value for AArch64 traps).
547 syndrome
= syn_fp_access_trap(1, 0xe, false);
549 case CP_ACCESS_TRAP_FP_EL3
:
551 syndrome
= syn_fp_access_trap(1, 0xe, false);
554 g_assert_not_reached();
557 raise_exception(env
, EXCP_UDEF
, syndrome
, target_el
);
560 void HELPER(set_cp_reg
)(CPUARMState
*env
, void *rip
, uint32_t value
)
562 const ARMCPRegInfo
*ri
= rip
;
564 ri
->writefn(env
, ri
, value
);
567 uint32_t HELPER(get_cp_reg
)(CPUARMState
*env
, void *rip
)
569 const ARMCPRegInfo
*ri
= rip
;
571 return ri
->readfn(env
, ri
);
574 void HELPER(set_cp_reg64
)(CPUARMState
*env
, void *rip
, uint64_t value
)
576 const ARMCPRegInfo
*ri
= rip
;
578 ri
->writefn(env
, ri
, value
);
581 uint64_t HELPER(get_cp_reg64
)(CPUARMState
*env
, void *rip
)
583 const ARMCPRegInfo
*ri
= rip
;
585 return ri
->readfn(env
, ri
);
588 void HELPER(msr_i_pstate
)(CPUARMState
*env
, uint32_t op
, uint32_t imm
)
590 /* MSR_i to update PSTATE. This is OK from EL0 only if UMA is set.
591 * Note that SPSel is never OK from EL0; we rely on handle_msr_i()
592 * to catch that case at translate time.
594 if (arm_current_el(env
) == 0 && !(env
->cp15
.sctlr_el
[1] & SCTLR_UMA
)) {
595 uint32_t syndrome
= syn_aa64_sysregtrap(0, extract32(op
, 0, 3),
596 extract32(op
, 3, 3), 4,
598 raise_exception(env
, EXCP_UDEF
, syndrome
, exception_target_el(env
));
602 case 0x05: /* SPSel */
603 update_spsel(env
, imm
);
605 case 0x1e: /* DAIFSet */
606 env
->daif
|= (imm
<< 6) & PSTATE_DAIF
;
608 case 0x1f: /* DAIFClear */
609 env
->daif
&= ~((imm
<< 6) & PSTATE_DAIF
);
612 g_assert_not_reached();
616 void HELPER(clear_pstate_ss
)(CPUARMState
*env
)
618 env
->pstate
&= ~PSTATE_SS
;
621 void HELPER(pre_hvc
)(CPUARMState
*env
)
623 ARMCPU
*cpu
= arm_env_get_cpu(env
);
624 int cur_el
= arm_current_el(env
);
625 /* FIXME: Use actual secure state. */
629 if (arm_is_psci_call(cpu
, EXCP_HVC
)) {
630 /* If PSCI is enabled and this looks like a valid PSCI call then
631 * that overrides the architecturally mandated HVC behaviour.
636 if (!arm_feature(env
, ARM_FEATURE_EL2
)) {
637 /* If EL2 doesn't exist, HVC always UNDEFs */
639 } else if (arm_feature(env
, ARM_FEATURE_EL3
)) {
640 /* EL3.HCE has priority over EL2.HCD. */
641 undef
= !(env
->cp15
.scr_el3
& SCR_HCE
);
643 undef
= env
->cp15
.hcr_el2
& HCR_HCD
;
646 /* In ARMv7 and ARMv8/AArch32, HVC is undef in secure state.
647 * For ARMv8/AArch64, HVC is allowed in EL3.
648 * Note that we've already trapped HVC from EL0 at translation
651 if (secure
&& (!is_a64(env
) || cur_el
== 1)) {
656 raise_exception(env
, EXCP_UDEF
, syn_uncategorized(),
657 exception_target_el(env
));
661 void HELPER(pre_smc
)(CPUARMState
*env
, uint32_t syndrome
)
663 ARMCPU
*cpu
= arm_env_get_cpu(env
);
664 int cur_el
= arm_current_el(env
);
665 bool secure
= arm_is_secure(env
);
666 bool smd
= env
->cp15
.scr_el3
& SCR_SMD
;
667 /* On ARMv8 with EL3 AArch64, SMD applies to both S and NS state.
668 * On ARMv8 with EL3 AArch32, or ARMv7 with the Virtualization
669 * extensions, SMD only applies to NS state.
670 * On ARMv7 without the Virtualization extensions, the SMD bit
671 * doesn't exist, but we forbid the guest to set it to 1 in scr_write(),
672 * so we need not special case this here.
674 bool undef
= arm_feature(env
, ARM_FEATURE_AARCH64
) ? smd
: smd
&& !secure
;
676 if (arm_is_psci_call(cpu
, EXCP_SMC
)) {
677 /* If PSCI is enabled and this looks like a valid PSCI call then
678 * that overrides the architecturally mandated SMC behaviour.
683 if (!arm_feature(env
, ARM_FEATURE_EL3
)) {
684 /* If we have no EL3 then SMC always UNDEFs */
686 } else if (!secure
&& cur_el
== 1 && (env
->cp15
.hcr_el2
& HCR_TSC
)) {
687 /* In NS EL1, HCR controlled routing to EL2 has priority over SMD. */
688 raise_exception(env
, EXCP_HYP_TRAP
, syndrome
, 2);
692 raise_exception(env
, EXCP_UDEF
, syn_uncategorized(),
693 exception_target_el(env
));
697 static int el_from_spsr(uint32_t spsr
)
699 /* Return the exception level that this SPSR is requesting a return to,
700 * or -1 if it is invalid (an illegal return)
702 if (spsr
& PSTATE_nRW
) {
703 switch (spsr
& CPSR_M
) {
704 case ARM_CPU_MODE_USR
:
706 case ARM_CPU_MODE_HYP
:
708 case ARM_CPU_MODE_FIQ
:
709 case ARM_CPU_MODE_IRQ
:
710 case ARM_CPU_MODE_SVC
:
711 case ARM_CPU_MODE_ABT
:
712 case ARM_CPU_MODE_UND
:
713 case ARM_CPU_MODE_SYS
:
715 case ARM_CPU_MODE_MON
:
716 /* Returning to Mon from AArch64 is never possible,
717 * so this is an illegal return.
723 if (extract32(spsr
, 1, 1)) {
724 /* Return with reserved M[1] bit set */
727 if (extract32(spsr
, 0, 4) == 1) {
728 /* return to EL0 with M[0] bit set */
731 return extract32(spsr
, 2, 2);
735 void HELPER(exception_return
)(CPUARMState
*env
)
737 int cur_el
= arm_current_el(env
);
738 unsigned int spsr_idx
= aarch64_banked_spsr_index(cur_el
);
739 uint32_t spsr
= env
->banked_spsr
[spsr_idx
];
741 bool return_to_aa64
= (spsr
& PSTATE_nRW
) == 0;
743 aarch64_save_sp(env
, cur_el
);
745 env
->exclusive_addr
= -1;
747 /* We must squash the PSTATE.SS bit to zero unless both of the
749 * 1. debug exceptions are currently disabled
750 * 2. singlestep will be active in the EL we return to
751 * We check 1 here and 2 after we've done the pstate/cpsr write() to
752 * transition to the EL we're going to.
754 if (arm_generate_debug_exceptions(env
)) {
758 new_el
= el_from_spsr(spsr
);
763 || (new_el
== 2 && !arm_feature(env
, ARM_FEATURE_EL2
))) {
764 /* Disallow return to an EL which is unimplemented or higher
765 * than the current one.
770 if (new_el
!= 0 && arm_el_is_aa64(env
, new_el
) != return_to_aa64
) {
771 /* Return to an EL which is configured for a different register width */
775 if (new_el
== 2 && arm_is_secure_below_el3(env
)) {
776 /* Return to the non-existent secure-EL2 */
780 if (new_el
== 1 && (env
->cp15
.hcr_el2
& HCR_TGE
)
781 && !arm_is_secure_below_el3(env
)) {
785 if (!return_to_aa64
) {
787 /* We do a raw CPSR write because aarch64_sync_64_to_32()
788 * will sort the register banks out for us, and we've already
789 * caught all the bad-mode cases in el_from_spsr().
791 cpsr_write(env
, spsr
, ~0, CPSRWriteRaw
);
792 if (!arm_singlestep_active(env
)) {
793 env
->uncached_cpsr
&= ~PSTATE_SS
;
795 aarch64_sync_64_to_32(env
);
798 env
->regs
[15] = env
->elr_el
[cur_el
] & ~0x1;
800 env
->regs
[15] = env
->elr_el
[cur_el
] & ~0x3;
804 pstate_write(env
, spsr
);
805 if (!arm_singlestep_active(env
)) {
806 env
->pstate
&= ~PSTATE_SS
;
808 aarch64_restore_sp(env
, new_el
);
809 env
->pc
= env
->elr_el
[cur_el
];
815 /* Illegal return events of various kinds have architecturally
816 * mandated behaviour:
817 * restore NZCV and DAIF from SPSR_ELx
819 * restore PC from ELR_ELx
820 * no change to exception level, execution state or stack pointer
822 env
->pstate
|= PSTATE_IL
;
823 env
->pc
= env
->elr_el
[cur_el
];
824 spsr
&= PSTATE_NZCV
| PSTATE_DAIF
;
825 spsr
|= pstate_read(env
) & ~(PSTATE_NZCV
| PSTATE_DAIF
);
826 pstate_write(env
, spsr
);
827 if (!arm_singlestep_active(env
)) {
828 env
->pstate
&= ~PSTATE_SS
;
832 /* Return true if the linked breakpoint entry lbn passes its checks */
833 static bool linked_bp_matches(ARMCPU
*cpu
, int lbn
)
835 CPUARMState
*env
= &cpu
->env
;
836 uint64_t bcr
= env
->cp15
.dbgbcr
[lbn
];
837 int brps
= extract32(cpu
->dbgdidr
, 24, 4);
838 int ctx_cmps
= extract32(cpu
->dbgdidr
, 20, 4);
842 /* Links to unimplemented or non-context aware breakpoints are
843 * CONSTRAINED UNPREDICTABLE: either behave as if disabled, or
844 * as if linked to an UNKNOWN context-aware breakpoint (in which
845 * case DBGWCR<n>_EL1.LBN must indicate that breakpoint).
846 * We choose the former.
848 if (lbn
> brps
|| lbn
< (brps
- ctx_cmps
)) {
852 bcr
= env
->cp15
.dbgbcr
[lbn
];
854 if (extract64(bcr
, 0, 1) == 0) {
855 /* Linked breakpoint disabled : generate no events */
859 bt
= extract64(bcr
, 20, 4);
861 /* We match the whole register even if this is AArch32 using the
862 * short descriptor format (in which case it holds both PROCID and ASID),
863 * since we don't implement the optional v7 context ID masking.
865 contextidr
= extract64(env
->cp15
.contextidr_el
[1], 0, 32);
868 case 3: /* linked context ID match */
869 if (arm_current_el(env
) > 1) {
870 /* Context matches never fire in EL2 or (AArch64) EL3 */
873 return (contextidr
== extract64(env
->cp15
.dbgbvr
[lbn
], 0, 32));
874 case 5: /* linked address mismatch (reserved in AArch64) */
875 case 9: /* linked VMID match (reserved if no EL2) */
876 case 11: /* linked context ID and VMID match (reserved if no EL2) */
878 /* Links to Unlinked context breakpoints must generate no
879 * events; we choose to do the same for reserved values too.
887 static bool bp_wp_matches(ARMCPU
*cpu
, int n
, bool is_wp
)
889 CPUARMState
*env
= &cpu
->env
;
891 int pac
, hmc
, ssc
, wt
, lbn
;
892 /* Note that for watchpoints the check is against the CPU security
893 * state, not the S/NS attribute on the offending data access.
895 bool is_secure
= arm_is_secure(env
);
896 int access_el
= arm_current_el(env
);
899 CPUWatchpoint
*wp
= env
->cpu_watchpoint
[n
];
901 if (!wp
|| !(wp
->flags
& BP_WATCHPOINT_HIT
)) {
904 cr
= env
->cp15
.dbgwcr
[n
];
905 if (wp
->hitattrs
.user
) {
906 /* The LDRT/STRT/LDT/STT "unprivileged access" instructions should
907 * match watchpoints as if they were accesses done at EL0, even if
908 * the CPU is at EL1 or higher.
913 uint64_t pc
= is_a64(env
) ? env
->pc
: env
->regs
[15];
915 if (!env
->cpu_breakpoint
[n
] || env
->cpu_breakpoint
[n
]->pc
!= pc
) {
918 cr
= env
->cp15
.dbgbcr
[n
];
920 /* The WATCHPOINT_HIT flag guarantees us that the watchpoint is
921 * enabled and that the address and access type match; for breakpoints
922 * we know the address matched; check the remaining fields, including
923 * linked breakpoints. We rely on WCR and BCR having the same layout
924 * for the LBN, SSC, HMC, PAC/PMC and is-linked fields.
925 * Note that some combinations of {PAC, HMC, SSC} are reserved and
926 * must act either like some valid combination or as if the watchpoint
927 * were disabled. We choose the former, and use this together with
928 * the fact that EL3 must always be Secure and EL2 must always be
929 * Non-Secure to simplify the code slightly compared to the full
930 * table in the ARM ARM.
932 pac
= extract64(cr
, 1, 2);
933 hmc
= extract64(cr
, 13, 1);
934 ssc
= extract64(cr
, 14, 2);
960 if (extract32(pac
, 0, 1) == 0) {
965 if (extract32(pac
, 1, 1) == 0) {
970 g_assert_not_reached();
973 wt
= extract64(cr
, 20, 1);
974 lbn
= extract64(cr
, 16, 4);
976 if (wt
&& !linked_bp_matches(cpu
, lbn
)) {
983 static bool check_watchpoints(ARMCPU
*cpu
)
985 CPUARMState
*env
= &cpu
->env
;
988 /* If watchpoints are disabled globally or we can't take debug
989 * exceptions here then watchpoint firings are ignored.
991 if (extract32(env
->cp15
.mdscr_el1
, 15, 1) == 0
992 || !arm_generate_debug_exceptions(env
)) {
996 for (n
= 0; n
< ARRAY_SIZE(env
->cpu_watchpoint
); n
++) {
997 if (bp_wp_matches(cpu
, n
, true)) {
1004 static bool check_breakpoints(ARMCPU
*cpu
)
1006 CPUARMState
*env
= &cpu
->env
;
1009 /* If breakpoints are disabled globally or we can't take debug
1010 * exceptions here then breakpoint firings are ignored.
1012 if (extract32(env
->cp15
.mdscr_el1
, 15, 1) == 0
1013 || !arm_generate_debug_exceptions(env
)) {
1017 for (n
= 0; n
< ARRAY_SIZE(env
->cpu_breakpoint
); n
++) {
1018 if (bp_wp_matches(cpu
, n
, false)) {
1025 void HELPER(check_breakpoints
)(CPUARMState
*env
)
1027 ARMCPU
*cpu
= arm_env_get_cpu(env
);
1029 if (check_breakpoints(cpu
)) {
1030 HELPER(exception_internal(env
, EXCP_DEBUG
));
1034 bool arm_debug_check_watchpoint(CPUState
*cs
, CPUWatchpoint
*wp
)
1036 /* Called by core code when a CPU watchpoint fires; need to check if this
1037 * is also an architectural watchpoint match.
1039 ARMCPU
*cpu
= ARM_CPU(cs
);
1041 return check_watchpoints(cpu
);
1044 void arm_debug_excp_handler(CPUState
*cs
)
1046 /* Called by core code when a watchpoint or breakpoint fires;
1047 * need to check which one and raise the appropriate exception.
1049 ARMCPU
*cpu
= ARM_CPU(cs
);
1050 CPUARMState
*env
= &cpu
->env
;
1051 CPUWatchpoint
*wp_hit
= cs
->watchpoint_hit
;
1054 if (wp_hit
->flags
& BP_CPU
) {
1055 bool wnr
= (wp_hit
->flags
& BP_WATCHPOINT_HIT_WRITE
) != 0;
1056 bool same_el
= arm_debug_target_el(env
) == arm_current_el(env
);
1058 cs
->watchpoint_hit
= NULL
;
1060 if (extended_addresses_enabled(env
)) {
1061 env
->exception
.fsr
= (1 << 9) | 0x22;
1063 env
->exception
.fsr
= 0x2;
1065 env
->exception
.vaddress
= wp_hit
->hitaddr
;
1066 raise_exception(env
, EXCP_DATA_ABORT
,
1067 syn_watchpoint(same_el
, 0, wnr
),
1068 arm_debug_target_el(env
));
1071 uint64_t pc
= is_a64(env
) ? env
->pc
: env
->regs
[15];
1072 bool same_el
= (arm_debug_target_el(env
) == arm_current_el(env
));
1074 /* (1) GDB breakpoints should be handled first.
1075 * (2) Do not raise a CPU exception if no CPU breakpoint has fired,
1076 * since singlestep is also done by generating a debug internal
1079 if (cpu_breakpoint_test(cs
, pc
, BP_GDB
)
1080 || !cpu_breakpoint_test(cs
, pc
, BP_CPU
)) {
1084 if (extended_addresses_enabled(env
)) {
1085 env
->exception
.fsr
= (1 << 9) | 0x22;
1087 env
->exception
.fsr
= 0x2;
1089 /* FAR is UNKNOWN, so doesn't need setting */
1090 raise_exception(env
, EXCP_PREFETCH_ABORT
,
1091 syn_breakpoint(same_el
),
1092 arm_debug_target_el(env
));
1096 /* ??? Flag setting arithmetic is awkward because we need to do comparisons.
1097 The only way to do that in TCG is a conditional branch, which clobbers
1098 all our temporaries. For now implement these as helper functions. */
1100 /* Similarly for variable shift instructions. */
1102 uint32_t HELPER(shl_cc
)(CPUARMState
*env
, uint32_t x
, uint32_t i
)
1104 int shift
= i
& 0xff;
1111 } else if (shift
!= 0) {
1112 env
->CF
= (x
>> (32 - shift
)) & 1;
1118 uint32_t HELPER(shr_cc
)(CPUARMState
*env
, uint32_t x
, uint32_t i
)
1120 int shift
= i
& 0xff;
1123 env
->CF
= (x
>> 31) & 1;
1127 } else if (shift
!= 0) {
1128 env
->CF
= (x
>> (shift
- 1)) & 1;
1134 uint32_t HELPER(sar_cc
)(CPUARMState
*env
, uint32_t x
, uint32_t i
)
1136 int shift
= i
& 0xff;
1138 env
->CF
= (x
>> 31) & 1;
1139 return (int32_t)x
>> 31;
1140 } else if (shift
!= 0) {
1141 env
->CF
= (x
>> (shift
- 1)) & 1;
1142 return (int32_t)x
>> shift
;
1147 uint32_t HELPER(ror_cc
)(CPUARMState
*env
, uint32_t x
, uint32_t i
)
1151 shift
= shift1
& 0x1f;
1154 env
->CF
= (x
>> 31) & 1;
1157 env
->CF
= (x
>> (shift
- 1)) & 1;
1158 return ((uint32_t)x
>> shift
) | (x
<< (32 - shift
));