diff options
author | Max Filippov <jcmvbkbc@gmail.com> | 2011-09-06 03:55:27 +0400 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2011-09-10 16:57:36 +0000 |
commit | dedc5eae2324b3c4a6d25af2138396aa5dc3d9e0 (patch) | |
tree | bf35ca79f9216521142c8679f0713b69a6c5c093 /target-xtensa/op_helper.c | |
parent | cfa550c6acc6718c3f932e858366e3e1e81266d6 (diff) |
target-xtensa: implement disas_xtensa_insn
Set up disas_xtensa_insn switch structure, mark required options on high
level groups. Implement arithmetic/bit logic/jump/call0.
Implement code generation loop with single step/breakpoint checking.
Signed-off-by: Max Filippov <jcmvbkbc@gmail.com>
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'target-xtensa/op_helper.c')
-rw-r--r-- | target-xtensa/op_helper.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/target-xtensa/op_helper.c b/target-xtensa/op_helper.c index aafa33d8bd..0392fbe6bb 100644 --- a/target-xtensa/op_helper.c +++ b/target-xtensa/op_helper.c @@ -27,6 +27,7 @@ #include "cpu.h" #include "dyngen-exec.h" +#include "helpers.h" #define MMUSUFFIX _mmu @@ -50,3 +51,9 @@ void tlb_fill(target_ulong addr, int is_write, int mmu_idx, void *retaddr) PAGE_READ | PAGE_WRITE | PAGE_EXEC, mmu_idx, TARGET_PAGE_SIZE); } + +void HELPER(exception)(uint32_t excp) +{ + env->exception_index = excp; + cpu_loop_exit(env); +} |