diff options
author | Anton Johansson <anjo@rev.ng> | 2023-02-27 14:51:36 +0100 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2023-03-01 07:31:09 -1000 |
commit | 5b6dfc6c9b56372b674ceeabde26f1260c663645 (patch) | |
tree | 8f768989f8577127a9d3e716227ae74060d9f101 | |
parent | d507e6c565c8c44488eaf04ff4da3ba2183c6be5 (diff) | |
download | qemu-5b6dfc6c9b56372b674ceeabde26f1260c663645.zip qemu-5b6dfc6c9b56372b674ceeabde26f1260c663645.tar.gz qemu-5b6dfc6c9b56372b674ceeabde26f1260c663645.tar.bz2 |
include/exec: Introduce `CF_PCREL`
Adds a new field to TranslationBlock.cflags denoting whether or not the
instructions of a given translation block are pc-relative. This field
aims to replace the macro `TARGET_TB_PCREL`.
Signed-off-by: Anton Johansson <anjo@rev.ng>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Message-Id: <20230227135202.9710-2-anjo@rev.ng>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
-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 b631832..1574eab 100644 --- a/include/exec/exec-all.h +++ b/include/exec/exec-all.h @@ -546,6 +546,7 @@ struct TranslationBlock { #define CF_INVALID 0x00040000 /* TB is stale. Set with @jmp_lock held */ #define CF_PARALLEL 0x00080000 /* Generate code for a parallel context */ #define CF_NOIRQ 0x00100000 /* Generate an uninterruptible TB */ +#define CF_PCREL 0x00200000 /* Opcodes in TB are PC-relative */ #define CF_CLUSTER_MASK 0xff000000 /* Top 8 bits are cluster ID */ #define CF_CLUSTER_SHIFT 24 |