All of lore.kernel.org
 help / color / mirror / Atom feed
From: Richard Henderson <richard.henderson@linaro.org>
To: qemu-devel@nongnu.org
Cc: "Philippe Mathieu-Daudé" <philmd@linaro.org>
Subject: [PULL v2 16/20] target/microblaze: Use insn_start from DisasContextBase
Date: Tue,  9 Apr 2024 09:35:59 -1000	[thread overview]
Message-ID: <20240409193603.1703216-17-richard.henderson@linaro.org> (raw)
In-Reply-To: <20240409193603.1703216-1-richard.henderson@linaro.org>

Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
 target/microblaze/translate.c | 8 ++------
 1 file changed, 2 insertions(+), 6 deletions(-)

diff --git a/target/microblaze/translate.c b/target/microblaze/translate.c
index 4e52ef32db..fc451befae 100644
--- a/target/microblaze/translate.c
+++ b/target/microblaze/translate.c
@@ -62,9 +62,6 @@ typedef struct DisasContext {
     DisasContextBase base;
     const MicroBlazeCPUConfig *cfg;
 
-    /* TCG op of the current insn_start.  */
-    TCGOp *insn_start;
-
     TCGv_i32 r0;
     bool r0_set;
 
@@ -699,14 +696,14 @@ static TCGv compute_ldst_addr_ea(DisasContext *dc, int ra, int rb)
 static void record_unaligned_ess(DisasContext *dc, int rd,
                                  MemOp size, bool store)
 {
-    uint32_t iflags = tcg_get_insn_start_param(dc->insn_start, 1);
+    uint32_t iflags = tcg_get_insn_start_param(dc->base.insn_start, 1);
 
     iflags |= ESR_ESS_FLAG;
     iflags |= rd << 5;
     iflags |= store * ESR_S;
     iflags |= (size == MO_32) * ESR_W;
 
-    tcg_set_insn_start_param(dc->insn_start, 1, iflags);
+    tcg_set_insn_start_param(dc->base.insn_start, 1, iflags);
 }
 #endif
 
@@ -1624,7 +1621,6 @@ static void mb_tr_insn_start(DisasContextBase *dcb, CPUState *cs)
     DisasContext *dc = container_of(dcb, DisasContext, base);
 
     tcg_gen_insn_start(dc->base.pc_next, dc->tb_flags & ~MSR_TB_MASK);
-    dc->insn_start = tcg_last_op();
 }
 
 static void mb_tr_translate_insn(DisasContextBase *dcb, CPUState *cs)
-- 
2.34.1



  parent reply	other threads:[~2024-04-09 19:38 UTC|newest]

Thread overview: 25+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-04-09 19:35 [PULL v2 00/20] misc patch queue Richard Henderson
2024-04-09 19:35 ` [PULL v2 01/20] tcg/optimize: Do not attempt to constant fold neg_vec Richard Henderson
2024-04-09 19:35 ` [PULL v2 02/20] linux-user: Fix waitid return of siginfo_t and rusage Richard Henderson
2024-04-09 19:35 ` [PULL v2 03/20] linux-user: replace calloc() with g_new0() Richard Henderson
2024-04-09 19:35 ` [PULL v2 04/20] target/hppa: Fix IIAOQ, IIASQ for pa2.0 Richard Henderson
2024-04-09 19:35 ` [PULL v2 05/20] target/sh4: mac.w: memory accesses are 16-bit words Richard Henderson
2024-04-09 19:35 ` [PULL v2 06/20] target/sh4: Merge mach and macl into a union Richard Henderson
2024-04-09 19:35 ` [PULL v2 07/20] target/sh4: Fix mac.l with saturation enabled Richard Henderson
2024-04-09 19:35 ` [PULL v2 08/20] target/sh4: Fix mac.w " Richard Henderson
2024-04-09 19:35 ` [PULL v2 09/20] target/sh4: add missing CHECK_NOT_DELAY_SLOT Richard Henderson
2024-04-09 19:35 ` [PULL v2 10/20] target/m68k: Map FPU exceptions to FPSR register Richard Henderson
2024-04-09 19:35 ` [PULL v2 11/20] tcg: Add TCGContext.emit_before_op Richard Henderson
2024-04-09 19:35 ` [PULL v2 12/20] accel/tcg: Add insn_start to DisasContextBase Richard Henderson
2024-04-09 19:35 ` [PULL v2 13/20] target/arm: Use insn_start from DisasContextBase Richard Henderson
2024-04-09 19:35 ` [PULL v2 14/20] target/hppa: " Richard Henderson
2024-04-09 19:35 ` [PULL v2 15/20] target/i386: Preserve DisasContextBase.insn_start across rewind Richard Henderson
2024-04-09 19:35 ` Richard Henderson [this message]
2024-04-09 19:36 ` [PULL v2 17/20] target/riscv: Use insn_start from DisasContextBase Richard Henderson
2024-04-09 19:36 ` [PULL v2 18/20] target/s390x: " Richard Henderson
2024-04-09 19:36 ` [PULL v2 19/20] accel/tcg: Improve can_do_io management Richard Henderson
2024-04-09 19:36 ` [PULL v2 20/20] linux-user: Preserve unswapped siginfo_t for strace Richard Henderson
2024-04-10 13:42 ` [PULL v2 00/20] misc patch queue Peter Maydell
2024-04-10 16:10 ` Michael Tokarev
2024-04-10 16:38   ` Richard Henderson
2024-04-10 17:44     ` Michael Tokarev

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20240409193603.1703216-17-richard.henderson@linaro.org \
    --to=richard.henderson@linaro.org \
    --cc=philmd@linaro.org \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.