diff options
| author | Richard Henderson | 2017-07-14 20:40:24 +0200 |
|---|---|---|
| committer | Richard Henderson | 2017-09-06 17:06:47 +0200 |
| commit | 5dc66895b0113034cd37fd5e65911d7959fc26a9 (patch) | |
| tree | e1ec5d2241a188a6733ca8e86373e459210613bf /include | |
| parent | Revert "kvm: use DIV_ROUND_UP" (diff) | |
| download | qemu-5dc66895b0113034cd37fd5e65911d7959fc26a9.tar.gz qemu-5dc66895b0113034cd37fd5e65911d7959fc26a9.tar.xz qemu-5dc66895b0113034cd37fd5e65911d7959fc26a9.zip | |
tcg: Add generic DISAS_NORETURN
This will allow some amount of cleanup to happen before
switching the backends over to enum DisasJumpType.
Reviewed-by: Emilio G. Cota <cota@braap.org>
Reviewed-by: LluĂs Vilanova <vilanova@ac.upc.edu>
Signed-off-by: Richard Henderson <rth@twiddle.net>
Diffstat (limited to 'include')
| -rw-r--r-- | include/exec/exec-all.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/exec/exec-all.h b/include/exec/exec-all.h index 440fc31b37..b434988979 100644 --- a/include/exec/exec-all.h +++ b/include/exec/exec-all.h @@ -63,6 +63,7 @@ typedef ram_addr_t tb_page_addr_t; #define DISAS_JUMP 1 /* only pc was modified dynamically */ #define DISAS_TB_JUMP 2 /* only pc was modified statically */ #define DISAS_UPDATE 3 /* cpu state was modified dynamically */ +#define DISAS_NORETURN 4 /* the tb has already been exited */ #include "qemu/log.h" |
