qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Julian Ganz <neither@nut.email>
To: qemu-devel@nongnu.org
Cc: Julian Ganz <neither@nut.email>,
	Richard Henderson <richard.henderson@linaro.org>,
	Helge Deller <deller@gmx.de>
Subject: [PATCH v7 08/25] target/hppa: call plugin trap callbacks
Date: Mon,  6 Oct 2025 11:57:03 +0200	[thread overview]
Message-ID: <bfdf4d5590d40c345a96fda9bc2dda992721f073.1759744337.git.neither@nut.email> (raw)
In-Reply-To: <cover.1759744337.git.neither@nut.email>

We identified a number of exceptions as interrupts, and we assume
exceptions that are not explicitly listed do exist and should be
regarded as interrupts. This unfortunately forces us to list all
(syncroneous) exceptions. We decided to also list every single
known interrupt as they are few and we prefer to complete an almost
complete list, partially as a visual aid to confirm that we did not miss
any named exception index.

PA-RISC appears to not have any form of host-call.

This change places the hook for PA-RISC targets.

Signed-off-by: Julian Ganz <neither@nut.email>
---
 target/hppa/int_helper.c | 44 ++++++++++++++++++++++++++++++++++++++++
 1 file changed, 44 insertions(+)

diff --git a/target/hppa/int_helper.c b/target/hppa/int_helper.c
index 191ae19404..0742990c90 100644
--- a/target/hppa/int_helper.c
+++ b/target/hppa/int_helper.c
@@ -24,6 +24,7 @@
 #include "exec/helper-proto.h"
 #include "hw/core/cpu.h"
 #include "hw/hppa/hppa_hardware.h"
+#include "qemu/plugin.h"
 
 static void eval_interrupt(HPPACPU *cpu)
 {
@@ -95,6 +96,7 @@ void hppa_cpu_do_interrupt(CPUState *cs)
     CPUHPPAState *env = &cpu->env;
     int i = cs->exception_index;
     uint64_t old_psw, old_gva_offset_mask;
+    uint64_t last_pc = cs->cc->get_pc(cs);
 
     /* As documented in pa2.0 -- interruption handling.  */
     /* step 1 */
@@ -212,6 +214,48 @@ void hppa_cpu_do_interrupt(CPUState *cs)
     env->iasq_f = 0;
     env->iasq_b = 0;
 
+    switch (i) {
+    case EXCP_HPMC:
+    case EXCP_POWER_FAIL:
+    case EXCP_RC:
+    case EXCP_EXT_INTERRUPT:
+    case EXCP_LPMC:
+    case EXCP_PER_INTERRUPT:
+    case EXCP_TOC:
+        qemu_plugin_vcpu_interrupt_cb(cs, last_pc);
+        break;
+    case EXCP_ITLB_MISS:
+    case EXCP_IMP:
+    case EXCP_ILL:
+    case EXCP_BREAK:
+    case EXCP_PRIV_OPR:
+    case EXCP_PRIV_REG:
+    case EXCP_OVERFLOW:
+    case EXCP_COND:
+    case EXCP_ASSIST:
+    case EXCP_DTLB_MISS:
+    case EXCP_NA_ITLB_MISS:
+    case EXCP_NA_DTLB_MISS:
+    case EXCP_DMP:
+    case EXCP_DMB:
+    case EXCP_TLB_DIRTY:
+    case EXCP_PAGE_REF:
+    case EXCP_ASSIST_EMU:
+    case EXCP_HPT:
+    case EXCP_LPT:
+    case EXCP_TB:
+    case EXCP_DMAR:
+    case EXCP_DMPI:
+    case EXCP_UNALIGN:
+    case EXCP_SYSCALL:
+    case EXCP_SYSCALL_LWS:
+        qemu_plugin_vcpu_exception_cb(cs, last_pc);
+        break;
+    default:
+        qemu_plugin_vcpu_interrupt_cb(cs, last_pc);
+        break;
+    }
+
     if (qemu_loglevel_mask(CPU_LOG_INT)) {
         static const char * const names[] = {
             [EXCP_HPMC]          = "high priority machine check",
-- 
2.49.1



  parent reply	other threads:[~2025-10-06  9:58 UTC|newest]

Thread overview: 40+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-10-06  9:56 [PATCH v7 00/25] tcg-plugins: add hooks for discontinuities Julian Ganz
2025-10-06  9:56 ` [PATCH v7 01/25] plugins: add types for callbacks related to certain discontinuities Julian Ganz
2025-10-14 11:06   ` Alex Bennée
2025-10-06  9:56 ` [PATCH v7 02/25] plugins: add API for registering discontinuity callbacks Julian Ganz
2025-10-14 11:06   ` Alex Bennée
2025-10-06  9:56 ` [PATCH v7 03/25] plugins: add hooks for new discontinuity related callbacks Julian Ganz
2025-10-06  9:56 ` [PATCH v7 04/25] contrib/plugins: add plugin showcasing new dicontinuity related API Julian Ganz
2025-10-14 11:08   ` Alex Bennée
2025-10-06  9:57 ` [PATCH v7 05/25] target/alpha: call plugin trap callbacks Julian Ganz
2025-10-06  9:57 ` [PATCH v7 06/25] target/arm: " Julian Ganz
2025-10-06 22:32   ` Richard Henderson
2025-10-06  9:57 ` [PATCH v7 07/25] target/avr: " Julian Ganz
2025-10-06  9:57 ` Julian Ganz [this message]
2025-10-06 22:38   ` [PATCH v7 08/25] target/hppa: " Richard Henderson
2025-10-07 13:29     ` Julian Ganz
2025-10-07 14:56       ` Richard Henderson
2025-10-06  9:57 ` [PATCH v7 09/25] target/i386: " Julian Ganz
2025-10-06  9:57 ` [PATCH v7 10/25] target/loongarch: " Julian Ganz
2025-10-14 10:55   ` Alex Bennée
2025-10-14 14:02     ` Julian Ganz
2025-10-06  9:57 ` [PATCH v7 11/25] target/m68k: " Julian Ganz
2025-10-06  9:57 ` [PATCH v7 12/25] target/microblaze: " Julian Ganz
2025-10-06  9:57 ` [PATCH v7 13/25] target/mips: " Julian Ganz
2025-10-06  9:57 ` [PATCH v7 14/25] target/openrisc: " Julian Ganz
2025-10-06  9:57 ` [PATCH v7 15/25] target/ppc: " Julian Ganz
2025-10-06  9:57 ` [PATCH v7 16/25] target/riscv: " Julian Ganz
2025-10-06  9:57 ` [PATCH v7 17/25] target/rx: " Julian Ganz
2025-10-06  9:57 ` [PATCH v7 18/25] target/s390x: " Julian Ganz
2025-10-06  9:57 ` [PATCH v7 19/25] target/sh4: " Julian Ganz
2025-10-06  9:57 ` [PATCH v7 20/25] target/sparc: " Julian Ganz
2025-10-06  9:59 ` [PATCH v7 21/25] target/tricore: " Julian Ganz
2025-10-06  9:59 ` [PATCH v7 22/25] target/xtensa: " Julian Ganz
2025-10-07 11:59   ` Philippe Mathieu-Daudé
2025-10-06  9:59 ` [PATCH v7 23/25] tests: add plugin asserting correctness of discon event's to_pc Julian Ganz
2025-10-06  9:59 ` [PATCH v7 24/25] tests: add test for double-traps on rv64 Julian Ganz
2025-10-09  2:49   ` Alistair Francis
2025-10-06  9:59 ` [PATCH v7 25/25] tests: add test with interrupted memory accesses " Julian Ganz
2025-10-14 12:47   ` Alex Bennée
2025-10-14 14:17     ` Julian Ganz
2025-10-14 12:52 ` [PATCH v7 00/25] tcg-plugins: add hooks for discontinuities Alex Bennée

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=bfdf4d5590d40c345a96fda9bc2dda992721f073.1759744337.git.neither@nut.email \
    --to=neither@nut.email \
    --cc=deller@gmx.de \
    --cc=qemu-devel@nongnu.org \
    --cc=richard.henderson@linaro.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 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).