xref: /qemu/accel/tcg/user-exec.c (revision 52ba13f042714c4086416973fb88e2465e0888a1)
142a623c7SBlue Swirl /*
242a623c7SBlue Swirl  *  User emulator execution
342a623c7SBlue Swirl  *
442a623c7SBlue Swirl  *  Copyright (c) 2003-2005 Fabrice Bellard
542a623c7SBlue Swirl  *
642a623c7SBlue Swirl  * This library is free software; you can redistribute it and/or
742a623c7SBlue Swirl  * modify it under the terms of the GNU Lesser General Public
842a623c7SBlue Swirl  * License as published by the Free Software Foundation; either
9fb0343d5SThomas Huth  * version 2.1 of the License, or (at your option) any later version.
1042a623c7SBlue Swirl  *
1142a623c7SBlue Swirl  * This library is distributed in the hope that it will be useful,
1242a623c7SBlue Swirl  * but WITHOUT ANY WARRANTY; without even the implied warranty of
1342a623c7SBlue Swirl  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
1442a623c7SBlue Swirl  * Lesser General Public License for more details.
1542a623c7SBlue Swirl  *
1642a623c7SBlue Swirl  * You should have received a copy of the GNU Lesser General Public
1742a623c7SBlue Swirl  * License along with this library; if not, see <http://www.gnu.org/licenses/>.
1842a623c7SBlue Swirl  */
19d38ea87aSPeter Maydell #include "qemu/osdep.h"
203e457172SBlue Swirl #include "cpu.h"
2176cad711SPaolo Bonzini #include "disas/disas.h"
2263c91552SPaolo Bonzini #include "exec/exec-all.h"
2342a623c7SBlue Swirl #include "tcg.h"
24023b0ae3SPeter Maydell #include "qemu/bitops.h"
25f08b6170SPaolo Bonzini #include "exec/cpu_ldst.h"
261652b974SPaolo Bonzini #include "translate-all.h"
27a411d296SPhilippe Mathieu-Daudé #include "exec/helper-proto.h"
28e6cd4bb5SRichard Henderson #include "qemu/atomic128.h"
2942a623c7SBlue Swirl 
3042a623c7SBlue Swirl #undef EAX
3142a623c7SBlue Swirl #undef ECX
3242a623c7SBlue Swirl #undef EDX
3342a623c7SBlue Swirl #undef EBX
3442a623c7SBlue Swirl #undef ESP
3542a623c7SBlue Swirl #undef EBP
3642a623c7SBlue Swirl #undef ESI
3742a623c7SBlue Swirl #undef EDI
3842a623c7SBlue Swirl #undef EIP
3942a623c7SBlue Swirl #ifdef __linux__
4042a623c7SBlue Swirl #include <sys/ucontext.h>
4142a623c7SBlue Swirl #endif
4242a623c7SBlue Swirl 
43ec603b55SRichard Henderson __thread uintptr_t helper_retaddr;
44ec603b55SRichard Henderson 
4542a623c7SBlue Swirl //#define DEBUG_SIGNAL
4642a623c7SBlue Swirl 
4742a623c7SBlue Swirl /* exit the current TB from a signal handler. The host registers are
4842a623c7SBlue Swirl    restored in a state compatible with the CPU emulator
4942a623c7SBlue Swirl  */
50a5852dc5SPeter Maydell static void cpu_exit_tb_from_sighandler(CPUState *cpu, sigset_t *old_set)
5142a623c7SBlue Swirl {
5242a623c7SBlue Swirl     /* XXX: use siglongjmp ? */
53a5852dc5SPeter Maydell     sigprocmask(SIG_SETMASK, old_set, NULL);
546886b980SPeter Maydell     cpu_loop_exit_noexc(cpu);
5542a623c7SBlue Swirl }
5642a623c7SBlue Swirl 
5742a623c7SBlue Swirl /* 'pc' is the host PC at which the exception was raised. 'address' is
5842a623c7SBlue Swirl    the effective address of the memory exception. 'is_write' is 1 if a
5942a623c7SBlue Swirl    write caused the exception and otherwise 0'. 'old_set' is the
6042a623c7SBlue Swirl    signal set which should be restored */
61a78b1299SPeter Maydell static inline int handle_cpu_signal(uintptr_t pc, siginfo_t *info,
62a5852dc5SPeter Maydell                                     int is_write, sigset_t *old_set)
6342a623c7SBlue Swirl {
6402bed6bdSAlex Bennée     CPUState *cpu = current_cpu;
657510454eSAndreas Färber     CPUClass *cc;
66a78b1299SPeter Maydell     unsigned long address = (unsigned long)info->si_addr;
67*52ba13f0SRichard Henderson     MMUAccessType access_type = is_write ? MMU_DATA_STORE : MMU_DATA_LOAD;
6842a623c7SBlue Swirl 
69*52ba13f0SRichard Henderson     switch (helper_retaddr) {
70*52ba13f0SRichard Henderson     default:
71*52ba13f0SRichard Henderson         /*
72*52ba13f0SRichard Henderson          * Fault during host memory operation within a helper function.
73*52ba13f0SRichard Henderson          * The helper's host return address, saved here, gives us a
74*52ba13f0SRichard Henderson          * pointer into the generated code that will unwind to the
75*52ba13f0SRichard Henderson          * correct guest pc.
76ec603b55SRichard Henderson          */
77ec603b55SRichard Henderson         pc = helper_retaddr;
78*52ba13f0SRichard Henderson         break;
79*52ba13f0SRichard Henderson 
80*52ba13f0SRichard Henderson     case 0:
81*52ba13f0SRichard Henderson         /*
82*52ba13f0SRichard Henderson          * Fault during host memory operation within generated code.
83*52ba13f0SRichard Henderson          * (Or, a unrelated bug within qemu, but we can't tell from here).
84*52ba13f0SRichard Henderson          *
85*52ba13f0SRichard Henderson          * We take the host pc from the signal frame.  However, we cannot
86*52ba13f0SRichard Henderson          * use that value directly.  Within cpu_restore_state_from_tb, we
87*52ba13f0SRichard Henderson          * assume PC comes from GETPC(), as used by the helper functions,
88*52ba13f0SRichard Henderson          * so we adjust the address by -GETPC_ADJ to form an address that
89*52ba13f0SRichard Henderson          * is within the call insn, so that the address does not accidentially
90*52ba13f0SRichard Henderson          * match the beginning of the next guest insn.  However, when the
91*52ba13f0SRichard Henderson          * pc comes from the signal frame it points to the actual faulting
92*52ba13f0SRichard Henderson          * host memory insn and not the return from a call insn.
93*52ba13f0SRichard Henderson          *
94*52ba13f0SRichard Henderson          * Therefore, adjust to compensate for what will be done later
95*52ba13f0SRichard Henderson          * by cpu_restore_state_from_tb.
96*52ba13f0SRichard Henderson          */
97ec603b55SRichard Henderson         pc += GETPC_ADJ;
98*52ba13f0SRichard Henderson         break;
99*52ba13f0SRichard Henderson 
100*52ba13f0SRichard Henderson     case 1:
101*52ba13f0SRichard Henderson         /*
102*52ba13f0SRichard Henderson          * Fault during host read for translation, or loosely, "execution".
103*52ba13f0SRichard Henderson          *
104*52ba13f0SRichard Henderson          * The guest pc is already pointing to the start of the TB for which
105*52ba13f0SRichard Henderson          * code is being generated.  If the guest translator manages the
106*52ba13f0SRichard Henderson          * page crossings correctly, this is exactly the correct address
107*52ba13f0SRichard Henderson          * (and if the translator doesn't handle page boundaries correctly
108*52ba13f0SRichard Henderson          * there's little we can do about that here).  Therefore, do not
109*52ba13f0SRichard Henderson          * trigger the unwinder.
110*52ba13f0SRichard Henderson          *
111*52ba13f0SRichard Henderson          * Like tb_gen_code, release the memory lock before cpu_loop_exit.
112*52ba13f0SRichard Henderson          */
113*52ba13f0SRichard Henderson         pc = 0;
114*52ba13f0SRichard Henderson         access_type = MMU_INST_FETCH;
115*52ba13f0SRichard Henderson         mmap_unlock();
116*52ba13f0SRichard Henderson         break;
117ec603b55SRichard Henderson     }
118ec603b55SRichard Henderson 
11902bed6bdSAlex Bennée     /* For synchronous signals we expect to be coming from the vCPU
12002bed6bdSAlex Bennée      * thread (so current_cpu should be valid) and either from running
12102bed6bdSAlex Bennée      * code or during translation which can fault as we cross pages.
12202bed6bdSAlex Bennée      *
12302bed6bdSAlex Bennée      * If neither is true then something has gone wrong and we should
12402bed6bdSAlex Bennée      * abort rather than try and restart the vCPU execution.
12502bed6bdSAlex Bennée      */
12602bed6bdSAlex Bennée     if (!cpu || !cpu->running) {
12702bed6bdSAlex Bennée         printf("qemu:%s received signal outside vCPU context @ pc=0x%"
12802bed6bdSAlex Bennée                PRIxPTR "\n",  __func__, pc);
12902bed6bdSAlex Bennée         abort();
13002bed6bdSAlex Bennée     }
13102bed6bdSAlex Bennée 
13242a623c7SBlue Swirl #if defined(DEBUG_SIGNAL)
13371baf787SPeter Maydell     printf("qemu: SIGSEGV pc=0x%08lx address=%08lx w=%d oldset=0x%08lx\n",
13442a623c7SBlue Swirl            pc, address, is_write, *(unsigned long *)old_set);
13542a623c7SBlue Swirl #endif
13642a623c7SBlue Swirl     /* XXX: locking issue */
1379c4bbee9SPeter Maydell     /* Note that it is important that we don't call page_unprotect() unless
1389c4bbee9SPeter Maydell      * this is really a "write to nonwriteable page" fault, because
1399c4bbee9SPeter Maydell      * page_unprotect() assumes that if it is called for an access to
1409c4bbee9SPeter Maydell      * a page that's writeable this means we had two threads racing and
1419c4bbee9SPeter Maydell      * another thread got there first and already made the page writeable;
1429c4bbee9SPeter Maydell      * so we will retry the access. If we were to call page_unprotect()
1439c4bbee9SPeter Maydell      * for some other kind of fault that should really be passed to the
1449c4bbee9SPeter Maydell      * guest, we'd end up in an infinite loop of retrying the faulting
1459c4bbee9SPeter Maydell      * access.
1469c4bbee9SPeter Maydell      */
1479c4bbee9SPeter Maydell     if (is_write && info->si_signo == SIGSEGV && info->si_code == SEGV_ACCERR &&
1489c4bbee9SPeter Maydell         h2g_valid(address)) {
149f213e72fSPeter Maydell         switch (page_unprotect(h2g(address), pc)) {
150f213e72fSPeter Maydell         case 0:
151f213e72fSPeter Maydell             /* Fault not caused by a page marked unwritable to protect
152ec603b55SRichard Henderson              * cached translations, must be the guest binary's problem.
153f213e72fSPeter Maydell              */
154f213e72fSPeter Maydell             break;
155f213e72fSPeter Maydell         case 1:
156f213e72fSPeter Maydell             /* Fault caused by protection of cached translation; TBs
157ec603b55SRichard Henderson              * invalidated, so resume execution.  Retain helper_retaddr
158ec603b55SRichard Henderson              * for a possible second fault.
159f213e72fSPeter Maydell              */
16042a623c7SBlue Swirl             return 1;
161f213e72fSPeter Maydell         case 2:
162f213e72fSPeter Maydell             /* Fault caused by protection of cached translation, and the
163f213e72fSPeter Maydell              * currently executing TB was modified and must be exited
164ec603b55SRichard Henderson              * immediately.  Clear helper_retaddr for next execution.
165f213e72fSPeter Maydell              */
16608b97f7fSRichard Henderson             clear_helper_retaddr();
16702bed6bdSAlex Bennée             cpu_exit_tb_from_sighandler(cpu, old_set);
168ec603b55SRichard Henderson             /* NORETURN */
169ec603b55SRichard Henderson 
170f213e72fSPeter Maydell         default:
171f213e72fSPeter Maydell             g_assert_not_reached();
172f213e72fSPeter Maydell         }
17342a623c7SBlue Swirl     }
17442a623c7SBlue Swirl 
175732f9e89SAlexander Graf     /* Convert forcefully to guest address space, invalid addresses
176732f9e89SAlexander Graf        are still valid segv ones */
177732f9e89SAlexander Graf     address = h2g_nocheck(address);
178732f9e89SAlexander Graf 
179da6bbf85SRichard Henderson     /*
180da6bbf85SRichard Henderson      * There is no way the target can handle this other than raising
181da6bbf85SRichard Henderson      * an exception.  Undo signal and retaddr state prior to longjmp.
182ec603b55SRichard Henderson      */
183da6bbf85SRichard Henderson     sigprocmask(SIG_SETMASK, old_set, NULL);
18408b97f7fSRichard Henderson     clear_helper_retaddr();
185ec603b55SRichard Henderson 
186da6bbf85SRichard Henderson     cc = CPU_GET_CLASS(cpu);
187da6bbf85SRichard Henderson     cc->tlb_fill(cpu, address, 0, access_type, MMU_USER_IDX, false, pc);
188da6bbf85SRichard Henderson     g_assert_not_reached();
18942a623c7SBlue Swirl }
19042a623c7SBlue Swirl 
19142a623c7SBlue Swirl #if defined(__i386__)
19242a623c7SBlue Swirl 
193c5679026SPeter Maydell #if defined(__NetBSD__)
19442a623c7SBlue Swirl #include <ucontext.h>
19542a623c7SBlue Swirl 
19642a623c7SBlue Swirl #define EIP_sig(context)     ((context)->uc_mcontext.__gregs[_REG_EIP])
19742a623c7SBlue Swirl #define TRAP_sig(context)    ((context)->uc_mcontext.__gregs[_REG_TRAPNO])
19842a623c7SBlue Swirl #define ERROR_sig(context)   ((context)->uc_mcontext.__gregs[_REG_ERR])
19942a623c7SBlue Swirl #define MASK_sig(context)    ((context)->uc_sigmask)
20042a623c7SBlue Swirl #elif defined(__FreeBSD__) || defined(__DragonFly__)
20142a623c7SBlue Swirl #include <ucontext.h>
20242a623c7SBlue Swirl 
20342a623c7SBlue Swirl #define EIP_sig(context)  (*((unsigned long *)&(context)->uc_mcontext.mc_eip))
20442a623c7SBlue Swirl #define TRAP_sig(context)    ((context)->uc_mcontext.mc_trapno)
20542a623c7SBlue Swirl #define ERROR_sig(context)   ((context)->uc_mcontext.mc_err)
20642a623c7SBlue Swirl #define MASK_sig(context)    ((context)->uc_sigmask)
20742a623c7SBlue Swirl #elif defined(__OpenBSD__)
20842a623c7SBlue Swirl #define EIP_sig(context)     ((context)->sc_eip)
20942a623c7SBlue Swirl #define TRAP_sig(context)    ((context)->sc_trapno)
21042a623c7SBlue Swirl #define ERROR_sig(context)   ((context)->sc_err)
21142a623c7SBlue Swirl #define MASK_sig(context)    ((context)->sc_mask)
21242a623c7SBlue Swirl #else
21342a623c7SBlue Swirl #define EIP_sig(context)     ((context)->uc_mcontext.gregs[REG_EIP])
21442a623c7SBlue Swirl #define TRAP_sig(context)    ((context)->uc_mcontext.gregs[REG_TRAPNO])
21542a623c7SBlue Swirl #define ERROR_sig(context)   ((context)->uc_mcontext.gregs[REG_ERR])
21642a623c7SBlue Swirl #define MASK_sig(context)    ((context)->uc_sigmask)
21742a623c7SBlue Swirl #endif
21842a623c7SBlue Swirl 
21942a623c7SBlue Swirl int cpu_signal_handler(int host_signum, void *pinfo,
22042a623c7SBlue Swirl                        void *puc)
22142a623c7SBlue Swirl {
22242a623c7SBlue Swirl     siginfo_t *info = pinfo;
22342a623c7SBlue Swirl #if defined(__NetBSD__) || defined(__FreeBSD__) || defined(__DragonFly__)
22442a623c7SBlue Swirl     ucontext_t *uc = puc;
22542a623c7SBlue Swirl #elif defined(__OpenBSD__)
22642a623c7SBlue Swirl     struct sigcontext *uc = puc;
22742a623c7SBlue Swirl #else
22804b33e21SKhem Raj     ucontext_t *uc = puc;
22942a623c7SBlue Swirl #endif
23042a623c7SBlue Swirl     unsigned long pc;
23142a623c7SBlue Swirl     int trapno;
23242a623c7SBlue Swirl 
23342a623c7SBlue Swirl #ifndef REG_EIP
23442a623c7SBlue Swirl /* for glibc 2.1 */
23542a623c7SBlue Swirl #define REG_EIP    EIP
23642a623c7SBlue Swirl #define REG_ERR    ERR
23742a623c7SBlue Swirl #define REG_TRAPNO TRAPNO
23842a623c7SBlue Swirl #endif
23942a623c7SBlue Swirl     pc = EIP_sig(uc);
24042a623c7SBlue Swirl     trapno = TRAP_sig(uc);
241a78b1299SPeter Maydell     return handle_cpu_signal(pc, info,
242a78b1299SPeter Maydell                              trapno == 0xe ? (ERROR_sig(uc) >> 1) & 1 : 0,
243a5852dc5SPeter Maydell                              &MASK_sig(uc));
24442a623c7SBlue Swirl }
24542a623c7SBlue Swirl 
24642a623c7SBlue Swirl #elif defined(__x86_64__)
24742a623c7SBlue Swirl 
24842a623c7SBlue Swirl #ifdef __NetBSD__
24942a623c7SBlue Swirl #define PC_sig(context)       _UC_MACHINE_PC(context)
25042a623c7SBlue Swirl #define TRAP_sig(context)     ((context)->uc_mcontext.__gregs[_REG_TRAPNO])
25142a623c7SBlue Swirl #define ERROR_sig(context)    ((context)->uc_mcontext.__gregs[_REG_ERR])
25242a623c7SBlue Swirl #define MASK_sig(context)     ((context)->uc_sigmask)
25342a623c7SBlue Swirl #elif defined(__OpenBSD__)
25442a623c7SBlue Swirl #define PC_sig(context)       ((context)->sc_rip)
25542a623c7SBlue Swirl #define TRAP_sig(context)     ((context)->sc_trapno)
25642a623c7SBlue Swirl #define ERROR_sig(context)    ((context)->sc_err)
25742a623c7SBlue Swirl #define MASK_sig(context)     ((context)->sc_mask)
25842a623c7SBlue Swirl #elif defined(__FreeBSD__) || defined(__DragonFly__)
25942a623c7SBlue Swirl #include <ucontext.h>
26042a623c7SBlue Swirl 
26142a623c7SBlue Swirl #define PC_sig(context)  (*((unsigned long *)&(context)->uc_mcontext.mc_rip))
26242a623c7SBlue Swirl #define TRAP_sig(context)     ((context)->uc_mcontext.mc_trapno)
26342a623c7SBlue Swirl #define ERROR_sig(context)    ((context)->uc_mcontext.mc_err)
26442a623c7SBlue Swirl #define MASK_sig(context)     ((context)->uc_sigmask)
26542a623c7SBlue Swirl #else
26642a623c7SBlue Swirl #define PC_sig(context)       ((context)->uc_mcontext.gregs[REG_RIP])
26742a623c7SBlue Swirl #define TRAP_sig(context)     ((context)->uc_mcontext.gregs[REG_TRAPNO])
26842a623c7SBlue Swirl #define ERROR_sig(context)    ((context)->uc_mcontext.gregs[REG_ERR])
26942a623c7SBlue Swirl #define MASK_sig(context)     ((context)->uc_sigmask)
27042a623c7SBlue Swirl #endif
27142a623c7SBlue Swirl 
27242a623c7SBlue Swirl int cpu_signal_handler(int host_signum, void *pinfo,
27342a623c7SBlue Swirl                        void *puc)
27442a623c7SBlue Swirl {
27542a623c7SBlue Swirl     siginfo_t *info = pinfo;
27642a623c7SBlue Swirl     unsigned long pc;
27742a623c7SBlue Swirl #if defined(__NetBSD__) || defined(__FreeBSD__) || defined(__DragonFly__)
27842a623c7SBlue Swirl     ucontext_t *uc = puc;
27942a623c7SBlue Swirl #elif defined(__OpenBSD__)
28042a623c7SBlue Swirl     struct sigcontext *uc = puc;
28142a623c7SBlue Swirl #else
28204b33e21SKhem Raj     ucontext_t *uc = puc;
28342a623c7SBlue Swirl #endif
28442a623c7SBlue Swirl 
28542a623c7SBlue Swirl     pc = PC_sig(uc);
286a78b1299SPeter Maydell     return handle_cpu_signal(pc, info,
287a78b1299SPeter Maydell                              TRAP_sig(uc) == 0xe ? (ERROR_sig(uc) >> 1) & 1 : 0,
288a5852dc5SPeter Maydell                              &MASK_sig(uc));
28942a623c7SBlue Swirl }
29042a623c7SBlue Swirl 
29142a623c7SBlue Swirl #elif defined(_ARCH_PPC)
29242a623c7SBlue Swirl 
29342a623c7SBlue Swirl /***********************************************************************
29442a623c7SBlue Swirl  * signal context platform-specific definitions
29542a623c7SBlue Swirl  * From Wine
29642a623c7SBlue Swirl  */
29742a623c7SBlue Swirl #ifdef linux
29842a623c7SBlue Swirl /* All Registers access - only for local access */
29942a623c7SBlue Swirl #define REG_sig(reg_name, context)              \
30042a623c7SBlue Swirl     ((context)->uc_mcontext.regs->reg_name)
30142a623c7SBlue Swirl /* Gpr Registers access  */
30242a623c7SBlue Swirl #define GPR_sig(reg_num, context)              REG_sig(gpr[reg_num], context)
30342a623c7SBlue Swirl /* Program counter */
30442a623c7SBlue Swirl #define IAR_sig(context)                       REG_sig(nip, context)
30542a623c7SBlue Swirl /* Machine State Register (Supervisor) */
30642a623c7SBlue Swirl #define MSR_sig(context)                       REG_sig(msr, context)
30742a623c7SBlue Swirl /* Count register */
30842a623c7SBlue Swirl #define CTR_sig(context)                       REG_sig(ctr, context)
30942a623c7SBlue Swirl /* User's integer exception register */
31042a623c7SBlue Swirl #define XER_sig(context)                       REG_sig(xer, context)
31142a623c7SBlue Swirl /* Link register */
31242a623c7SBlue Swirl #define LR_sig(context)                        REG_sig(link, context)
31342a623c7SBlue Swirl /* Condition register */
31442a623c7SBlue Swirl #define CR_sig(context)                        REG_sig(ccr, context)
31542a623c7SBlue Swirl 
31642a623c7SBlue Swirl /* Float Registers access  */
31742a623c7SBlue Swirl #define FLOAT_sig(reg_num, context)                                     \
31842a623c7SBlue Swirl     (((double *)((char *)((context)->uc_mcontext.regs + 48 * 4)))[reg_num])
31942a623c7SBlue Swirl #define FPSCR_sig(context) \
32042a623c7SBlue Swirl     (*(int *)((char *)((context)->uc_mcontext.regs + (48 + 32 * 2) * 4)))
32142a623c7SBlue Swirl /* Exception Registers access */
32242a623c7SBlue Swirl #define DAR_sig(context)                       REG_sig(dar, context)
32342a623c7SBlue Swirl #define DSISR_sig(context)                     REG_sig(dsisr, context)
32442a623c7SBlue Swirl #define TRAP_sig(context)                      REG_sig(trap, context)
32542a623c7SBlue Swirl #endif /* linux */
32642a623c7SBlue Swirl 
32742a623c7SBlue Swirl #if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
32842a623c7SBlue Swirl #include <ucontext.h>
32942a623c7SBlue Swirl #define IAR_sig(context)               ((context)->uc_mcontext.mc_srr0)
33042a623c7SBlue Swirl #define MSR_sig(context)               ((context)->uc_mcontext.mc_srr1)
33142a623c7SBlue Swirl #define CTR_sig(context)               ((context)->uc_mcontext.mc_ctr)
33242a623c7SBlue Swirl #define XER_sig(context)               ((context)->uc_mcontext.mc_xer)
33342a623c7SBlue Swirl #define LR_sig(context)                ((context)->uc_mcontext.mc_lr)
33442a623c7SBlue Swirl #define CR_sig(context)                ((context)->uc_mcontext.mc_cr)
33542a623c7SBlue Swirl /* Exception Registers access */
33642a623c7SBlue Swirl #define DAR_sig(context)               ((context)->uc_mcontext.mc_dar)
33742a623c7SBlue Swirl #define DSISR_sig(context)             ((context)->uc_mcontext.mc_dsisr)
33842a623c7SBlue Swirl #define TRAP_sig(context)              ((context)->uc_mcontext.mc_exc)
33942a623c7SBlue Swirl #endif /* __FreeBSD__|| __FreeBSD_kernel__ */
34042a623c7SBlue Swirl 
34142a623c7SBlue Swirl int cpu_signal_handler(int host_signum, void *pinfo,
34242a623c7SBlue Swirl                        void *puc)
34342a623c7SBlue Swirl {
34442a623c7SBlue Swirl     siginfo_t *info = pinfo;
34542a623c7SBlue Swirl #if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
34642a623c7SBlue Swirl     ucontext_t *uc = puc;
34742a623c7SBlue Swirl #else
34804b33e21SKhem Raj     ucontext_t *uc = puc;
34942a623c7SBlue Swirl #endif
35042a623c7SBlue Swirl     unsigned long pc;
35142a623c7SBlue Swirl     int is_write;
35242a623c7SBlue Swirl 
35342a623c7SBlue Swirl     pc = IAR_sig(uc);
35442a623c7SBlue Swirl     is_write = 0;
35542a623c7SBlue Swirl #if 0
35642a623c7SBlue Swirl     /* ppc 4xx case */
35742a623c7SBlue Swirl     if (DSISR_sig(uc) & 0x00800000) {
35842a623c7SBlue Swirl         is_write = 1;
35942a623c7SBlue Swirl     }
36042a623c7SBlue Swirl #else
36142a623c7SBlue Swirl     if (TRAP_sig(uc) != 0x400 && (DSISR_sig(uc) & 0x02000000)) {
36242a623c7SBlue Swirl         is_write = 1;
36342a623c7SBlue Swirl     }
36442a623c7SBlue Swirl #endif
365a78b1299SPeter Maydell     return handle_cpu_signal(pc, info, is_write, &uc->uc_sigmask);
36642a623c7SBlue Swirl }
36742a623c7SBlue Swirl 
36842a623c7SBlue Swirl #elif defined(__alpha__)
36942a623c7SBlue Swirl 
37042a623c7SBlue Swirl int cpu_signal_handler(int host_signum, void *pinfo,
37142a623c7SBlue Swirl                            void *puc)
37242a623c7SBlue Swirl {
37342a623c7SBlue Swirl     siginfo_t *info = pinfo;
37404b33e21SKhem Raj     ucontext_t *uc = puc;
37542a623c7SBlue Swirl     uint32_t *pc = uc->uc_mcontext.sc_pc;
37642a623c7SBlue Swirl     uint32_t insn = *pc;
37742a623c7SBlue Swirl     int is_write = 0;
37842a623c7SBlue Swirl 
37942a623c7SBlue Swirl     /* XXX: need kernel patch to get write flag faster */
38042a623c7SBlue Swirl     switch (insn >> 26) {
38142a623c7SBlue Swirl     case 0x0d: /* stw */
38242a623c7SBlue Swirl     case 0x0e: /* stb */
38342a623c7SBlue Swirl     case 0x0f: /* stq_u */
38442a623c7SBlue Swirl     case 0x24: /* stf */
38542a623c7SBlue Swirl     case 0x25: /* stg */
38642a623c7SBlue Swirl     case 0x26: /* sts */
38742a623c7SBlue Swirl     case 0x27: /* stt */
38842a623c7SBlue Swirl     case 0x2c: /* stl */
38942a623c7SBlue Swirl     case 0x2d: /* stq */
39042a623c7SBlue Swirl     case 0x2e: /* stl_c */
39142a623c7SBlue Swirl     case 0x2f: /* stq_c */
39242a623c7SBlue Swirl         is_write = 1;
39342a623c7SBlue Swirl     }
39442a623c7SBlue Swirl 
395a78b1299SPeter Maydell     return handle_cpu_signal(pc, info, is_write, &uc->uc_sigmask);
39642a623c7SBlue Swirl }
39742a623c7SBlue Swirl #elif defined(__sparc__)
39842a623c7SBlue Swirl 
39942a623c7SBlue Swirl int cpu_signal_handler(int host_signum, void *pinfo,
40042a623c7SBlue Swirl                        void *puc)
40142a623c7SBlue Swirl {
40242a623c7SBlue Swirl     siginfo_t *info = pinfo;
40342a623c7SBlue Swirl     int is_write;
40442a623c7SBlue Swirl     uint32_t insn;
40542a623c7SBlue Swirl #if !defined(__arch64__) || defined(CONFIG_SOLARIS)
40642a623c7SBlue Swirl     uint32_t *regs = (uint32_t *)(info + 1);
40742a623c7SBlue Swirl     void *sigmask = (regs + 20);
40842a623c7SBlue Swirl     /* XXX: is there a standard glibc define ? */
40942a623c7SBlue Swirl     unsigned long pc = regs[1];
41042a623c7SBlue Swirl #else
41142a623c7SBlue Swirl #ifdef __linux__
41242a623c7SBlue Swirl     struct sigcontext *sc = puc;
41342a623c7SBlue Swirl     unsigned long pc = sc->sigc_regs.tpc;
41442a623c7SBlue Swirl     void *sigmask = (void *)sc->sigc_mask;
41542a623c7SBlue Swirl #elif defined(__OpenBSD__)
41642a623c7SBlue Swirl     struct sigcontext *uc = puc;
41742a623c7SBlue Swirl     unsigned long pc = uc->sc_pc;
41842a623c7SBlue Swirl     void *sigmask = (void *)(long)uc->sc_mask;
4197ccfb495STobias Nygren #elif defined(__NetBSD__)
4207ccfb495STobias Nygren     ucontext_t *uc = puc;
4217ccfb495STobias Nygren     unsigned long pc = _UC_MACHINE_PC(uc);
4227ccfb495STobias Nygren     void *sigmask = (void *)&uc->uc_sigmask;
42342a623c7SBlue Swirl #endif
42442a623c7SBlue Swirl #endif
42542a623c7SBlue Swirl 
42642a623c7SBlue Swirl     /* XXX: need kernel patch to get write flag faster */
42742a623c7SBlue Swirl     is_write = 0;
42842a623c7SBlue Swirl     insn = *(uint32_t *)pc;
42942a623c7SBlue Swirl     if ((insn >> 30) == 3) {
43042a623c7SBlue Swirl         switch ((insn >> 19) & 0x3f) {
43142a623c7SBlue Swirl         case 0x05: /* stb */
43242a623c7SBlue Swirl         case 0x15: /* stba */
43342a623c7SBlue Swirl         case 0x06: /* sth */
43442a623c7SBlue Swirl         case 0x16: /* stha */
43542a623c7SBlue Swirl         case 0x04: /* st */
43642a623c7SBlue Swirl         case 0x14: /* sta */
43742a623c7SBlue Swirl         case 0x07: /* std */
43842a623c7SBlue Swirl         case 0x17: /* stda */
43942a623c7SBlue Swirl         case 0x0e: /* stx */
44042a623c7SBlue Swirl         case 0x1e: /* stxa */
44142a623c7SBlue Swirl         case 0x24: /* stf */
44242a623c7SBlue Swirl         case 0x34: /* stfa */
44342a623c7SBlue Swirl         case 0x27: /* stdf */
44442a623c7SBlue Swirl         case 0x37: /* stdfa */
44542a623c7SBlue Swirl         case 0x26: /* stqf */
44642a623c7SBlue Swirl         case 0x36: /* stqfa */
44742a623c7SBlue Swirl         case 0x25: /* stfsr */
44842a623c7SBlue Swirl         case 0x3c: /* casa */
44942a623c7SBlue Swirl         case 0x3e: /* casxa */
45042a623c7SBlue Swirl             is_write = 1;
45142a623c7SBlue Swirl             break;
45242a623c7SBlue Swirl         }
45342a623c7SBlue Swirl     }
454a78b1299SPeter Maydell     return handle_cpu_signal(pc, info, is_write, sigmask);
45542a623c7SBlue Swirl }
45642a623c7SBlue Swirl 
45742a623c7SBlue Swirl #elif defined(__arm__)
45842a623c7SBlue Swirl 
4597ccfb495STobias Nygren #if defined(__NetBSD__)
4607ccfb495STobias Nygren #include <ucontext.h>
4617ccfb495STobias Nygren #endif
4627ccfb495STobias Nygren 
46342a623c7SBlue Swirl int cpu_signal_handler(int host_signum, void *pinfo,
46442a623c7SBlue Swirl                        void *puc)
46542a623c7SBlue Swirl {
46642a623c7SBlue Swirl     siginfo_t *info = pinfo;
4677ccfb495STobias Nygren #if defined(__NetBSD__)
4687ccfb495STobias Nygren     ucontext_t *uc = puc;
4697ccfb495STobias Nygren #else
47004b33e21SKhem Raj     ucontext_t *uc = puc;
4717ccfb495STobias Nygren #endif
47242a623c7SBlue Swirl     unsigned long pc;
47342a623c7SBlue Swirl     int is_write;
47442a623c7SBlue Swirl 
4757ccfb495STobias Nygren #if defined(__NetBSD__)
4767ccfb495STobias Nygren     pc = uc->uc_mcontext.__gregs[_REG_R15];
4777ccfb495STobias Nygren #elif defined(__GLIBC__) && (__GLIBC__ < 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ <= 3))
47842a623c7SBlue Swirl     pc = uc->uc_mcontext.gregs[R15];
47942a623c7SBlue Swirl #else
48042a623c7SBlue Swirl     pc = uc->uc_mcontext.arm_pc;
48142a623c7SBlue Swirl #endif
482023b0ae3SPeter Maydell 
483023b0ae3SPeter Maydell     /* error_code is the FSR value, in which bit 11 is WnR (assuming a v6 or
484023b0ae3SPeter Maydell      * later processor; on v5 we will always report this as a read).
485023b0ae3SPeter Maydell      */
486023b0ae3SPeter Maydell     is_write = extract32(uc->uc_mcontext.error_code, 11, 1);
487a78b1299SPeter Maydell     return handle_cpu_signal(pc, info, is_write, &uc->uc_sigmask);
48842a623c7SBlue Swirl }
48942a623c7SBlue Swirl 
490f129061cSClaudio Fontana #elif defined(__aarch64__)
491f129061cSClaudio Fontana 
492f454a54fSPeter Maydell #ifndef ESR_MAGIC
493f454a54fSPeter Maydell /* Pre-3.16 kernel headers don't have these, so provide fallback definitions */
494f454a54fSPeter Maydell #define ESR_MAGIC 0x45535201
495f454a54fSPeter Maydell struct esr_context {
496f454a54fSPeter Maydell     struct _aarch64_ctx head;
497f454a54fSPeter Maydell     uint64_t esr;
498f454a54fSPeter Maydell };
499f454a54fSPeter Maydell #endif
500f454a54fSPeter Maydell 
501f454a54fSPeter Maydell static inline struct _aarch64_ctx *first_ctx(ucontext_t *uc)
502f454a54fSPeter Maydell {
503f454a54fSPeter Maydell     return (struct _aarch64_ctx *)&uc->uc_mcontext.__reserved;
504f454a54fSPeter Maydell }
505f454a54fSPeter Maydell 
506f454a54fSPeter Maydell static inline struct _aarch64_ctx *next_ctx(struct _aarch64_ctx *hdr)
507f454a54fSPeter Maydell {
508f454a54fSPeter Maydell     return (struct _aarch64_ctx *)((char *)hdr + hdr->size);
509f454a54fSPeter Maydell }
510f454a54fSPeter Maydell 
511661f7fa4SRichard Henderson int cpu_signal_handler(int host_signum, void *pinfo, void *puc)
512f129061cSClaudio Fontana {
513f129061cSClaudio Fontana     siginfo_t *info = pinfo;
51404b33e21SKhem Raj     ucontext_t *uc = puc;
515661f7fa4SRichard Henderson     uintptr_t pc = uc->uc_mcontext.pc;
516661f7fa4SRichard Henderson     bool is_write;
517f454a54fSPeter Maydell     struct _aarch64_ctx *hdr;
518f454a54fSPeter Maydell     struct esr_context const *esrctx = NULL;
519f129061cSClaudio Fontana 
520f454a54fSPeter Maydell     /* Find the esr_context, which has the WnR bit in it */
521f454a54fSPeter Maydell     for (hdr = first_ctx(uc); hdr->magic; hdr = next_ctx(hdr)) {
522f454a54fSPeter Maydell         if (hdr->magic == ESR_MAGIC) {
523f454a54fSPeter Maydell             esrctx = (struct esr_context const *)hdr;
524f454a54fSPeter Maydell             break;
525f454a54fSPeter Maydell         }
526f454a54fSPeter Maydell     }
527f454a54fSPeter Maydell 
528f454a54fSPeter Maydell     if (esrctx) {
529f454a54fSPeter Maydell         /* For data aborts ESR.EC is 0b10010x: then bit 6 is the WnR bit */
530f454a54fSPeter Maydell         uint64_t esr = esrctx->esr;
531f454a54fSPeter Maydell         is_write = extract32(esr, 27, 5) == 0x12 && extract32(esr, 6, 1) == 1;
532f454a54fSPeter Maydell     } else {
533f454a54fSPeter Maydell         /*
534f454a54fSPeter Maydell          * Fall back to parsing instructions; will only be needed
535f454a54fSPeter Maydell          * for really ancient (pre-3.16) kernels.
536f454a54fSPeter Maydell          */
537f454a54fSPeter Maydell         uint32_t insn = *(uint32_t *)pc;
538f454a54fSPeter Maydell 
539661f7fa4SRichard Henderson         is_write = ((insn & 0xbfff0000) == 0x0c000000   /* C3.3.1 */
540661f7fa4SRichard Henderson                     || (insn & 0xbfe00000) == 0x0c800000   /* C3.3.2 */
541661f7fa4SRichard Henderson                     || (insn & 0xbfdf0000) == 0x0d000000   /* C3.3.3 */
542661f7fa4SRichard Henderson                     || (insn & 0xbfc00000) == 0x0d800000   /* C3.3.4 */
543661f7fa4SRichard Henderson                     || (insn & 0x3f400000) == 0x08000000   /* C3.3.6 */
544661f7fa4SRichard Henderson                     || (insn & 0x3bc00000) == 0x39000000   /* C3.3.13 */
545661f7fa4SRichard Henderson                     || (insn & 0x3fc00000) == 0x3d800000   /* ... 128bit */
546f454a54fSPeter Maydell                     /* Ignore bits 10, 11 & 21, controlling indexing.  */
547661f7fa4SRichard Henderson                     || (insn & 0x3bc00000) == 0x38000000   /* C3.3.8-12 */
548661f7fa4SRichard Henderson                     || (insn & 0x3fe00000) == 0x3c800000   /* ... 128bit */
549661f7fa4SRichard Henderson                     /* Ignore bits 23 & 24, controlling indexing.  */
550661f7fa4SRichard Henderson                     || (insn & 0x3a400000) == 0x28000000); /* C3.3.7,14-16 */
551f454a54fSPeter Maydell     }
552a78b1299SPeter Maydell     return handle_cpu_signal(pc, info, is_write, &uc->uc_sigmask);
553f129061cSClaudio Fontana }
554f129061cSClaudio Fontana 
55542a623c7SBlue Swirl #elif defined(__s390__)
55642a623c7SBlue Swirl 
55742a623c7SBlue Swirl int cpu_signal_handler(int host_signum, void *pinfo,
55842a623c7SBlue Swirl                        void *puc)
55942a623c7SBlue Swirl {
56042a623c7SBlue Swirl     siginfo_t *info = pinfo;
56104b33e21SKhem Raj     ucontext_t *uc = puc;
56242a623c7SBlue Swirl     unsigned long pc;
56342a623c7SBlue Swirl     uint16_t *pinsn;
56442a623c7SBlue Swirl     int is_write = 0;
56542a623c7SBlue Swirl 
56642a623c7SBlue Swirl     pc = uc->uc_mcontext.psw.addr;
56742a623c7SBlue Swirl 
56842a623c7SBlue Swirl     /* ??? On linux, the non-rt signal handler has 4 (!) arguments instead
56942a623c7SBlue Swirl        of the normal 2 arguments.  The 3rd argument contains the "int_code"
57042a623c7SBlue Swirl        from the hardware which does in fact contain the is_write value.
57142a623c7SBlue Swirl        The rt signal handler, as far as I can tell, does not give this value
57242a623c7SBlue Swirl        at all.  Not that we could get to it from here even if it were.  */
57342a623c7SBlue Swirl     /* ??? This is not even close to complete, since it ignores all
57442a623c7SBlue Swirl        of the read-modify-write instructions.  */
57542a623c7SBlue Swirl     pinsn = (uint16_t *)pc;
57642a623c7SBlue Swirl     switch (pinsn[0] >> 8) {
57742a623c7SBlue Swirl     case 0x50: /* ST */
57842a623c7SBlue Swirl     case 0x42: /* STC */
57942a623c7SBlue Swirl     case 0x40: /* STH */
58042a623c7SBlue Swirl         is_write = 1;
58142a623c7SBlue Swirl         break;
58242a623c7SBlue Swirl     case 0xc4: /* RIL format insns */
58342a623c7SBlue Swirl         switch (pinsn[0] & 0xf) {
58442a623c7SBlue Swirl         case 0xf: /* STRL */
58542a623c7SBlue Swirl         case 0xb: /* STGRL */
58642a623c7SBlue Swirl         case 0x7: /* STHRL */
58742a623c7SBlue Swirl             is_write = 1;
58842a623c7SBlue Swirl         }
58942a623c7SBlue Swirl         break;
59042a623c7SBlue Swirl     case 0xe3: /* RXY format insns */
59142a623c7SBlue Swirl         switch (pinsn[2] & 0xff) {
59242a623c7SBlue Swirl         case 0x50: /* STY */
59342a623c7SBlue Swirl         case 0x24: /* STG */
59442a623c7SBlue Swirl         case 0x72: /* STCY */
59542a623c7SBlue Swirl         case 0x70: /* STHY */
59642a623c7SBlue Swirl         case 0x8e: /* STPQ */
59742a623c7SBlue Swirl         case 0x3f: /* STRVH */
59842a623c7SBlue Swirl         case 0x3e: /* STRV */
59942a623c7SBlue Swirl         case 0x2f: /* STRVG */
60042a623c7SBlue Swirl             is_write = 1;
60142a623c7SBlue Swirl         }
60242a623c7SBlue Swirl         break;
60342a623c7SBlue Swirl     }
604a78b1299SPeter Maydell     return handle_cpu_signal(pc, info, is_write, &uc->uc_sigmask);
60542a623c7SBlue Swirl }
60642a623c7SBlue Swirl 
60742a623c7SBlue Swirl #elif defined(__mips__)
60842a623c7SBlue Swirl 
60942a623c7SBlue Swirl int cpu_signal_handler(int host_signum, void *pinfo,
61042a623c7SBlue Swirl                        void *puc)
61142a623c7SBlue Swirl {
61242a623c7SBlue Swirl     siginfo_t *info = pinfo;
61304b33e21SKhem Raj     ucontext_t *uc = puc;
61442a623c7SBlue Swirl     greg_t pc = uc->uc_mcontext.pc;
61542a623c7SBlue Swirl     int is_write;
61642a623c7SBlue Swirl 
61742a623c7SBlue Swirl     /* XXX: compute is_write */
61842a623c7SBlue Swirl     is_write = 0;
619a78b1299SPeter Maydell     return handle_cpu_signal(pc, info, is_write, &uc->uc_sigmask);
62042a623c7SBlue Swirl }
62142a623c7SBlue Swirl 
622464e447aSAlistair Francis #elif defined(__riscv)
623464e447aSAlistair Francis 
624464e447aSAlistair Francis int cpu_signal_handler(int host_signum, void *pinfo,
625464e447aSAlistair Francis                        void *puc)
626464e447aSAlistair Francis {
627464e447aSAlistair Francis     siginfo_t *info = pinfo;
628464e447aSAlistair Francis     ucontext_t *uc = puc;
629464e447aSAlistair Francis     greg_t pc = uc->uc_mcontext.__gregs[REG_PC];
630464e447aSAlistair Francis     uint32_t insn = *(uint32_t *)pc;
631464e447aSAlistair Francis     int is_write = 0;
632464e447aSAlistair Francis 
633464e447aSAlistair Francis     /* Detect store by reading the instruction at the program
634464e447aSAlistair Francis        counter. Note: we currently only generate 32-bit
635464e447aSAlistair Francis        instructions so we thus only detect 32-bit stores */
636464e447aSAlistair Francis     switch (((insn >> 0) & 0b11)) {
637464e447aSAlistair Francis     case 3:
638464e447aSAlistair Francis         switch (((insn >> 2) & 0b11111)) {
639464e447aSAlistair Francis         case 8:
640464e447aSAlistair Francis             switch (((insn >> 12) & 0b111)) {
641464e447aSAlistair Francis             case 0: /* sb */
642464e447aSAlistair Francis             case 1: /* sh */
643464e447aSAlistair Francis             case 2: /* sw */
644464e447aSAlistair Francis             case 3: /* sd */
645464e447aSAlistair Francis             case 4: /* sq */
646464e447aSAlistair Francis                 is_write = 1;
647464e447aSAlistair Francis                 break;
648464e447aSAlistair Francis             default:
649464e447aSAlistair Francis                 break;
650464e447aSAlistair Francis             }
651464e447aSAlistair Francis             break;
652464e447aSAlistair Francis         case 9:
653464e447aSAlistair Francis             switch (((insn >> 12) & 0b111)) {
654464e447aSAlistair Francis             case 2: /* fsw */
655464e447aSAlistair Francis             case 3: /* fsd */
656464e447aSAlistair Francis             case 4: /* fsq */
657464e447aSAlistair Francis                 is_write = 1;
658464e447aSAlistair Francis                 break;
659464e447aSAlistair Francis             default:
660464e447aSAlistair Francis                 break;
661464e447aSAlistair Francis             }
662464e447aSAlistair Francis             break;
663464e447aSAlistair Francis         default:
664464e447aSAlistair Francis             break;
665464e447aSAlistair Francis         }
666464e447aSAlistair Francis     }
667464e447aSAlistair Francis 
668464e447aSAlistair Francis     /* Check for compressed instructions */
669464e447aSAlistair Francis     switch (((insn >> 13) & 0b111)) {
670464e447aSAlistair Francis     case 7:
671464e447aSAlistair Francis         switch (insn & 0b11) {
672464e447aSAlistair Francis         case 0: /*c.sd */
673464e447aSAlistair Francis         case 2: /* c.sdsp */
674464e447aSAlistair Francis             is_write = 1;
675464e447aSAlistair Francis             break;
676464e447aSAlistair Francis         default:
677464e447aSAlistair Francis             break;
678464e447aSAlistair Francis         }
679464e447aSAlistair Francis         break;
680464e447aSAlistair Francis     case 6:
681464e447aSAlistair Francis         switch (insn & 0b11) {
682464e447aSAlistair Francis         case 0: /* c.sw */
683464e447aSAlistair Francis         case 3: /* c.swsp */
684464e447aSAlistair Francis             is_write = 1;
685464e447aSAlistair Francis             break;
686464e447aSAlistair Francis         default:
687464e447aSAlistair Francis             break;
688464e447aSAlistair Francis         }
689464e447aSAlistair Francis         break;
690464e447aSAlistair Francis     default:
691464e447aSAlistair Francis         break;
692464e447aSAlistair Francis     }
693464e447aSAlistair Francis 
694464e447aSAlistair Francis     return handle_cpu_signal(pc, info, is_write, &uc->uc_sigmask);
695464e447aSAlistair Francis }
696464e447aSAlistair Francis 
69742a623c7SBlue Swirl #else
69842a623c7SBlue Swirl 
69942a623c7SBlue Swirl #error host CPU specific signal handler needed
70042a623c7SBlue Swirl 
70142a623c7SBlue Swirl #endif
702a411d296SPhilippe Mathieu-Daudé 
703a411d296SPhilippe Mathieu-Daudé /* The softmmu versions of these helpers are in cputlb.c.  */
704a411d296SPhilippe Mathieu-Daudé 
705a411d296SPhilippe Mathieu-Daudé /* Do not allow unaligned operations to proceed.  Return the host address.  */
706a411d296SPhilippe Mathieu-Daudé static void *atomic_mmu_lookup(CPUArchState *env, target_ulong addr,
707a411d296SPhilippe Mathieu-Daudé                                int size, uintptr_t retaddr)
708a411d296SPhilippe Mathieu-Daudé {
709a411d296SPhilippe Mathieu-Daudé     /* Enforce qemu required alignment.  */
710a411d296SPhilippe Mathieu-Daudé     if (unlikely(addr & (size - 1))) {
71129a0af61SRichard Henderson         cpu_loop_exit_atomic(env_cpu(env), retaddr);
712a411d296SPhilippe Mathieu-Daudé     }
71308b97f7fSRichard Henderson     void *ret = g2h(addr);
71408b97f7fSRichard Henderson     set_helper_retaddr(retaddr);
71508b97f7fSRichard Henderson     return ret;
716a411d296SPhilippe Mathieu-Daudé }
717a411d296SPhilippe Mathieu-Daudé 
718a411d296SPhilippe Mathieu-Daudé /* Macro to call the above, with local variables from the use context.  */
71934d49937SPeter Maydell #define ATOMIC_MMU_DECLS do {} while (0)
720a411d296SPhilippe Mathieu-Daudé #define ATOMIC_MMU_LOOKUP  atomic_mmu_lookup(env, addr, DATA_SIZE, GETPC())
72108b97f7fSRichard Henderson #define ATOMIC_MMU_CLEANUP do { clear_helper_retaddr(); } while (0)
722a411d296SPhilippe Mathieu-Daudé 
723a411d296SPhilippe Mathieu-Daudé #define ATOMIC_NAME(X)   HELPER(glue(glue(atomic_ ## X, SUFFIX), END))
724a411d296SPhilippe Mathieu-Daudé #define EXTRA_ARGS
725a411d296SPhilippe Mathieu-Daudé 
726a411d296SPhilippe Mathieu-Daudé #define DATA_SIZE 1
727a411d296SPhilippe Mathieu-Daudé #include "atomic_template.h"
728a411d296SPhilippe Mathieu-Daudé 
729a411d296SPhilippe Mathieu-Daudé #define DATA_SIZE 2
730a411d296SPhilippe Mathieu-Daudé #include "atomic_template.h"
731a411d296SPhilippe Mathieu-Daudé 
732a411d296SPhilippe Mathieu-Daudé #define DATA_SIZE 4
733a411d296SPhilippe Mathieu-Daudé #include "atomic_template.h"
734a411d296SPhilippe Mathieu-Daudé 
735a411d296SPhilippe Mathieu-Daudé #ifdef CONFIG_ATOMIC64
736a411d296SPhilippe Mathieu-Daudé #define DATA_SIZE 8
737a411d296SPhilippe Mathieu-Daudé #include "atomic_template.h"
738a411d296SPhilippe Mathieu-Daudé #endif
739a411d296SPhilippe Mathieu-Daudé 
740a411d296SPhilippe Mathieu-Daudé /* The following is only callable from other helpers, and matches up
741a411d296SPhilippe Mathieu-Daudé    with the softmmu version.  */
742a411d296SPhilippe Mathieu-Daudé 
743e6cd4bb5SRichard Henderson #if HAVE_ATOMIC128 || HAVE_CMPXCHG128
744a411d296SPhilippe Mathieu-Daudé 
745a411d296SPhilippe Mathieu-Daudé #undef EXTRA_ARGS
746a411d296SPhilippe Mathieu-Daudé #undef ATOMIC_NAME
747a411d296SPhilippe Mathieu-Daudé #undef ATOMIC_MMU_LOOKUP
748a411d296SPhilippe Mathieu-Daudé 
749a411d296SPhilippe Mathieu-Daudé #define EXTRA_ARGS     , TCGMemOpIdx oi, uintptr_t retaddr
750a411d296SPhilippe Mathieu-Daudé #define ATOMIC_NAME(X) \
751a411d296SPhilippe Mathieu-Daudé     HELPER(glue(glue(glue(atomic_ ## X, SUFFIX), END), _mmu))
752a411d296SPhilippe Mathieu-Daudé #define ATOMIC_MMU_LOOKUP  atomic_mmu_lookup(env, addr, DATA_SIZE, retaddr)
753a411d296SPhilippe Mathieu-Daudé 
754a411d296SPhilippe Mathieu-Daudé #define DATA_SIZE 16
755a411d296SPhilippe Mathieu-Daudé #include "atomic_template.h"
756e6cd4bb5SRichard Henderson #endif
757