diff options
author | Richard Henderson <rth@twiddle.net> | 2012-03-24 09:51:08 -0700 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2012-03-24 17:07:26 +0000 |
commit | b9f0923eb782b92a85657092b625d96b0af26e2e (patch) | |
tree | 4d26507413f71430b939deac31e394047904ea5a /target-alpha/cpu.h | |
parent | 0be034bc2cc0e06584ee368759c47e5efa1439e7 (diff) | |
download | qemu-b9f0923eb782b92a85657092b625d96b0af26e2e.tar.gz qemu-b9f0923eb782b92a85657092b625d96b0af26e2e.tar.bz2 qemu-b9f0923eb782b92a85657092b625d96b0af26e2e.zip |
target-alpha: Move exception helpers to helper.c.
Signed-off-by: Richard Henderson <rth@twiddle.net>
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'target-alpha/cpu.h')
-rw-r--r-- | target-alpha/cpu.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/target-alpha/cpu.h b/target-alpha/cpu.h index 48c0fdc188..c7787f6007 100644 --- a/target-alpha/cpu.h +++ b/target-alpha/cpu.h @@ -434,6 +434,9 @@ int cpu_alpha_handle_mmu_fault (CPUAlphaState *env, uint64_t address, int rw, int mmu_idx); #define cpu_handle_mmu_fault cpu_alpha_handle_mmu_fault void do_interrupt (CPUAlphaState *env); +void do_restore_state(CPUAlphaState *, void *retaddr); +void QEMU_NORETURN dynamic_excp(CPUAlphaState *, void *, int, int); +void QEMU_NORETURN arith_excp(CPUAlphaState *, void *, int, uint64_t); uint64_t cpu_alpha_load_fpcr (CPUAlphaState *env); void cpu_alpha_store_fpcr (CPUAlphaState *env, uint64_t val); |