[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v8 06/12] target/hexagon: expose next PC in DisasContext
From: |
Anton Johansson |
Subject: |
[PATCH v8 06/12] target/hexagon: expose next PC in DisasContext |
Date: |
Wed, 9 Feb 2022 18:03:06 +0100 |
From: Paolo Montesel <babush@rev.ng>
Signed-off-by: Alessandro Di Federico <ale@rev.ng>
Signed-off-by: Paolo Montesel <babush@rev.ng>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: Taylor Simpson <tsimpson@quicinc.com>
---
target/hexagon/translate.c | 3 ++-
target/hexagon/translate.h | 1 +
2 files changed, 3 insertions(+), 1 deletion(-)
diff --git a/target/hexagon/translate.c b/target/hexagon/translate.c
index b6f541ecb2..d4d4bcf3b2 100644
--- a/target/hexagon/translate.c
+++ b/target/hexagon/translate.c
@@ -741,11 +741,12 @@ static void decode_and_translate_packet(CPUHexagonState
*env, DisasContext *ctx)
if (decode_packet(nwords, words, &pkt, false) > 0) {
HEX_DEBUG_PRINT_PKT(&pkt);
gen_start_packet(ctx, &pkt);
+ ctx->npc = ctx->base.pc_next + pkt.encod_pkt_size_in_bytes;
for (i = 0; i < pkt.num_insns; i++) {
gen_insn(env, ctx, &pkt.insn[i], &pkt);
}
gen_commit_packet(env, ctx, &pkt);
- ctx->base.pc_next += pkt.encod_pkt_size_in_bytes;
+ ctx->base.pc_next = ctx->npc;
} else {
gen_exception_end_tb(ctx, HEX_EXCP_INVALID_PACKET);
}
diff --git a/target/hexagon/translate.h b/target/hexagon/translate.h
index fccfb94340..0eb96b9621 100644
--- a/target/hexagon/translate.h
+++ b/target/hexagon/translate.h
@@ -52,6 +52,7 @@ typedef struct DisasContext {
bool qreg_is_predicated[NUM_QREGS];
int qreg_log_idx;
bool pre_commit;
+ uint32_t npc;
} DisasContext;
static inline void ctx_log_reg_write(DisasContext *ctx, int rnum)
--
2.34.1
- [PATCH v8 02/12] target/hexagon: import README for idef-parser, (continued)
- [PATCH v8 02/12] target/hexagon: import README for idef-parser, Anton Johansson, 2022/02/09
- [PATCH v8 05/12] target/hexagon: introduce new helper functions, Anton Johansson, 2022/02/09
- [PATCH v8 03/12] target/hexagon: make slot number an unsigned, Anton Johansson, 2022/02/09
- [PATCH v8 01/12] target/hexagon: update MAINTAINERS for idef-parser, Anton Johansson, 2022/02/09
- [PATCH v8 07/12] target/hexagon: prepare input for the idef-parser, Anton Johansson, 2022/02/09
- [PATCH v8 11/12] target/hexagon: call idef-parser functions, Anton Johansson, 2022/02/09
- [PATCH v8 12/12] target/hexagon: import additional tests, Anton Johansson, 2022/02/09
- [PATCH v8 04/12] target/hexagon: make helper functions non-static, Anton Johansson, 2022/02/09
- [PATCH v8 10/12] target/hexagon: import parser for idef-parser, Anton Johansson, 2022/02/09
- [PATCH v8 09/12] target/hexagon: import lexer for idef-parser, Anton Johansson, 2022/02/09
- [PATCH v8 06/12] target/hexagon: expose next PC in DisasContext,
Anton Johansson <=