Statistics
| Branch: | Revision:

root / target-arm / exec.h @ 14899cdf

History | View | Annotate | Download (1.7 kB)

1 2c0262af bellard
/*
2 2c0262af bellard
 *  ARM execution defines
3 5fafdf24 ths
 *
4 2c0262af bellard
 *  Copyright (c) 2003 Fabrice Bellard
5 2c0262af bellard
 *
6 2c0262af bellard
 * This library is free software; you can redistribute it and/or
7 2c0262af bellard
 * modify it under the terms of the GNU Lesser General Public
8 2c0262af bellard
 * License as published by the Free Software Foundation; either
9 2c0262af bellard
 * version 2 of the License, or (at your option) any later version.
10 2c0262af bellard
 *
11 2c0262af bellard
 * This library is distributed in the hope that it will be useful,
12 2c0262af bellard
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 2c0262af bellard
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 2c0262af bellard
 * Lesser General Public License for more details.
15 2c0262af bellard
 *
16 2c0262af bellard
 * You should have received a copy of the GNU Lesser General Public
17 2c0262af bellard
 * License along with this library; if not, write to the Free Software
18 fad6cb1a aurel32
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA  02110-1301 USA
19 2c0262af bellard
 */
20 8294eba1 ths
#include "config.h"
21 2c0262af bellard
#include "dyngen-exec.h"
22 2c0262af bellard
23 2c0262af bellard
register struct CPUARMState *env asm(AREG0);
24 2c0262af bellard
register uint32_t T0 asm(AREG1);
25 2c0262af bellard
register uint32_t T1 asm(AREG2);
26 2c0262af bellard
27 18c9b560 balrog
#define M0   env->iwmmxt.val
28 18c9b560 balrog
29 2c0262af bellard
#include "cpu.h"
30 2c0262af bellard
#include "exec-all.h"
31 2c0262af bellard
32 0d1a29f9 bellard
static inline void env_to_regs(void)
33 0d1a29f9 bellard
{
34 0d1a29f9 bellard
}
35 0d1a29f9 bellard
36 0d1a29f9 bellard
static inline void regs_to_env(void)
37 0d1a29f9 bellard
{
38 0d1a29f9 bellard
}
39 b8a9e8f1 bellard
40 6a4955a8 aliguori
static inline int cpu_has_work(CPUState *env)
41 6a4955a8 aliguori
{
42 6a4955a8 aliguori
    return (env->interrupt_request &
43 6a4955a8 aliguori
            (CPU_INTERRUPT_FIQ | CPU_INTERRUPT_HARD | CPU_INTERRUPT_EXITTB));
44 6a4955a8 aliguori
}
45 6a4955a8 aliguori
46 bfed01fc ths
static inline int cpu_halted(CPUState *env) {
47 bfed01fc ths
    if (!env->halted)
48 bfed01fc ths
        return 0;
49 bfed01fc ths
    /* An interrupt wakes the CPU even if the I and F CPSR bits are
50 bfed01fc ths
       set.  We use EXITTB to silently wake CPU without causing an
51 bfed01fc ths
       actual interrupt.  */
52 6a4955a8 aliguori
    if (cpu_has_work(env)) {
53 bfed01fc ths
        env->halted = 0;
54 bfed01fc ths
        return 0;
55 bfed01fc ths
    }
56 bfed01fc ths
    return EXCP_HALTED;
57 bfed01fc ths
}
58 bfed01fc ths
59 b5ff1b31 bellard
#if !defined(CONFIG_USER_ONLY)
60 b5ff1b31 bellard
#include "softmmu_exec.h"
61 b5ff1b31 bellard
#endif
62 b5ff1b31 bellard
63 b7bcbe95 bellard
void raise_exception(int);