qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Bastian Koppelmann <kbastian@mail.uni-paderborn.de>
To: qemu-devel@nongnu.org
Cc: rth@twiddle.net
Subject: [Qemu-devel] [PATCH 2/5] target-tricore: Save the pc before CSA operations for exceptions
Date: Thu, 11 Feb 2016 17:01:57 +0100	[thread overview]
Message-ID: <1455206520-6465-3-git-send-email-kbastian@mail.uni-paderborn.de> (raw)
In-Reply-To: <1455206520-6465-1-git-send-email-kbastian@mail.uni-paderborn.de>

Exceptions that can occur during CSA operations need the PC as
the return address of the exception.

Signed-off-by: Bastian Koppelmann <kbastian@mail.uni-paderborn.de>
---
 target-tricore/translate.c | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

diff --git a/target-tricore/translate.c b/target-tricore/translate.c
index 721878d..775d4c6 100644
--- a/target-tricore/translate.c
+++ b/target-tricore/translate.c
@@ -3336,6 +3336,8 @@ static void gen_compute_branch(DisasContext *ctx, uint32_t opc, int r1,
         break;
     case OPC1_32_B_CALL:
     case OPC1_16_SB_CALL:
+        /* save pc for the exception return address */
+        gen_save_pc(ctx->pc);
         gen_helper_1arg(call, ctx->next_pc);
         gen_goto_tb(ctx, 0, ctx->pc + offset * 2);
         break;
@@ -3408,6 +3410,8 @@ static void gen_compute_branch(DisasContext *ctx, uint32_t opc, int r1,
         break;
     case OPC2_32_SYS_RET:
     case OPC2_16_SR_RET:
+        /* save pc for the exception return address */
+        gen_save_pc(ctx->pc);
         gen_helper_ret(cpu_env);
         tcg_gen_exit_tb(0);
         break;
@@ -3782,6 +3786,8 @@ static void decode_sc_opc(DisasContext *ctx, int op1)
         tcg_gen_andi_tl(cpu_gpr_d[15], cpu_gpr_d[15], const16);
         break;
     case OPC1_16_SC_BISR:
+        /* save pc for the exception return address */
+        gen_save_pc(ctx->pc);
         gen_helper_1arg(bisr, const16 & 0xff);
         break;
     case OPC1_16_SC_LD_A:
@@ -3897,6 +3903,8 @@ static void decode_sr_system(CPUTriCoreState *env, DisasContext *ctx)
         gen_compute_branch(ctx, op2, 0, 0, 0, 0);
         break;
     case OPC2_16_SR_RFE:
+        /* save pc for the exception return address */
+        gen_save_pc(ctx->pc);
         gen_helper_rfe(cpu_env);
         tcg_gen_exit_tb(0);
         ctx->bstate = BS_BRANCH;
@@ -7895,6 +7903,8 @@ static void decode_sys_interrupts(CPUTriCoreState *env, DisasContext *ctx)
         gen_fret(ctx);
         break;
     case OPC2_32_SYS_RFE:
+        /* save pc for the exception return address */
+        gen_save_pc(ctx->pc);
         gen_helper_rfe(cpu_env);
         tcg_gen_exit_tb(0);
         ctx->bstate = BS_BRANCH;
@@ -7917,9 +7927,13 @@ static void decode_sys_interrupts(CPUTriCoreState *env, DisasContext *ctx)
         }
         break;
     case OPC2_32_SYS_RSLCX:
+        /* save pc for the exception return address */
+        gen_save_pc(ctx->pc);
         gen_helper_rslcx(cpu_env);
         break;
     case OPC2_32_SYS_SVLCX:
+        /* save pc for the exception return address */
+        gen_save_pc(ctx->pc);
         gen_helper_svlcx(cpu_env);
         break;
     case OPC2_32_SYS_RESTORE:
-- 
2.7.1

  parent reply	other threads:[~2016-02-11 16:02 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-02-11 16:01 [Qemu-devel] [PATCH 0/5] TriCore exception patches Bastian Koppelmann
2016-02-11 16:01 ` [Qemu-devel] [PATCH 1/5] target-tricore: Add trap handling Bastian Koppelmann
2016-02-12  2:39   ` Richard Henderson
2016-02-12 11:12     ` Bastian Koppelmann
2016-02-12 18:55       ` Richard Henderson
2016-02-12 20:08         ` Bastian Koppelmann
2016-02-12  2:44   ` Richard Henderson
2016-02-11 16:01 ` Bastian Koppelmann [this message]
2016-02-11 16:01 ` [Qemu-devel] [PATCH 3/5] target-tricore: add context managment trap generation Bastian Koppelmann
2016-02-11 16:01 ` [Qemu-devel] [PATCH 4/5] target-tricore: add illegal opcode " Bastian Koppelmann
2016-02-11 16:02 ` [Qemu-devel] [PATCH 5/5] target-tricore: add opd " Bastian Koppelmann

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=1455206520-6465-3-git-send-email-kbastian@mail.uni-paderborn.de \
    --to=kbastian@mail.uni-paderborn.de \
    --cc=qemu-devel@nongnu.org \
    --cc=rth@twiddle.net \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).