Statistics
| Branch: | Revision:

root / target-sparc / exec.h @ 604457d7

History | View | Annotate | Download (660 Bytes)

1 7a3f1944 bellard
#ifndef EXEC_SPARC_H
2 7a3f1944 bellard
#define EXEC_SPARC_H 1
3 3475187d bellard
#include "config.h"
4 8294eba1 ths
#include "dyngen-exec.h"
5 7a3f1944 bellard
6 7a3f1944 bellard
register struct CPUSPARCState *env asm(AREG0);
7 3475187d bellard
8 e8af50a3 bellard
#define DT0 (env->dt0)
9 e8af50a3 bellard
#define DT1 (env->dt1)
10 1f587329 blueswir1
#define QT0 (env->qt0)
11 1f587329 blueswir1
#define QT1 (env->qt1)
12 7a3f1944 bellard
13 7a3f1944 bellard
#include "cpu.h"
14 7a3f1944 bellard
#include "exec-all.h"
15 7a3f1944 bellard
16 0d1a29f9 bellard
static inline void env_to_regs(void)
17 0d1a29f9 bellard
{
18 0d1a29f9 bellard
}
19 0d1a29f9 bellard
20 0d1a29f9 bellard
static inline void regs_to_env(void)
21 0d1a29f9 bellard
{
22 0d1a29f9 bellard
}
23 0d1a29f9 bellard
24 91736d37 blueswir1
/* op_helper.c */
25 f2bc7e7f blueswir1
void do_interrupt(CPUState *env);
26 9d893301 bellard
27 22548760 blueswir1
static inline int cpu_halted(CPUState *env1) {
28 22548760 blueswir1
    if (!env1->halted)
29 bfed01fc ths
        return 0;
30 22548760 blueswir1
    if ((env1->interrupt_request & CPU_INTERRUPT_HARD) && (env1->psret != 0)) {
31 22548760 blueswir1
        env1->halted = 0;
32 bfed01fc ths
        return 0;
33 bfed01fc ths
    }
34 bfed01fc ths
    return EXCP_HALTED;
35 bfed01fc ths
}
36 bfed01fc ths
37 7a3f1944 bellard
#endif