aboutsummaryrefslogtreecommitdiff
path: root/target/loongarch/translate.h
diff options
context:
space:
mode:
authorJiajie Chen <c@jia.je>2023-08-22 09:13:50 +0200
committerSong Gao <gaosong@loongson.cn>2023-08-24 11:17:56 +0800
commit3966582099b0c94b45a2ea0fd8afb0dcac8ad292 (patch)
treeecba00eab0af59449f4d8e6f724fda683c845815 /target/loongarch/translate.h
parent50fffcc49b0e68f53de5c1eaf21ec07819540d5a (diff)
target/loongarch: Add LA64 & VA32 to DisasContext
Add LA64 and VA32(32-bit Virtual Address) to DisasContext to allow the translator to reject doubleword instructions in LA32 mode for example. Signed-off-by: Jiajie Chen <c@jia.je> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Signed-off-by: Song Gao <gaosong@loongson.cn> Message-ID: <20230822032724.1353391-5-gaosong@loongson.cn> Message-Id: <20230822071405.35386-5-philmd@linaro.org>
Diffstat (limited to 'target/loongarch/translate.h')
-rw-r--r--target/loongarch/translate.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/target/loongarch/translate.h b/target/loongarch/translate.h
index 7f60090580..b6fa5df82d 100644
--- a/target/loongarch/translate.h
+++ b/target/loongarch/translate.h
@@ -33,6 +33,8 @@ typedef struct DisasContext {
uint16_t plv;
int vl; /* Vector length */
TCGv zero;
+ bool la64; /* LoongArch64 mode */
+ bool va32; /* 32-bit virtual address */
} DisasContext;
void generate_exception(DisasContext *ctx, int excp);