diff options
| author | Alvin Chang <alvinga@andestech.com> | 2024-06-26 21:22:47 +0800 |
|---|---|---|
| committer | Alistair Francis <alistair.francis@wdc.com> | 2024-06-27 13:09:16 +1000 |
| commit | 2f5a2315b84a9b1f089ecfc3f31b29813609a7b7 (patch) | |
| tree | 1ea2c598a7964b41e8b84500bc5ca2dc251ea8f8 /target/riscv/debug.c | |
| parent | 72dec1666fe92b5a5932d7f5c26bdfc72e238bcb (diff) | |
| download | focaccia-qemu-2f5a2315b84a9b1f089ecfc3f31b29813609a7b7.tar.gz focaccia-qemu-2f5a2315b84a9b1f089ecfc3f31b29813609a7b7.zip | |
target/riscv: Apply modularized matching conditions for icount trigger
We have implemented trigger_common_match(), which checks if the enabled privilege levels of the trigger match CPU's current privilege level. We can invoke trigger_common_match() to check the privilege levels of the type 3 triggers. Signed-off-by: Alvin Chang <alvinga@andestech.com> Acked-by: Alistair Francis <alistair.francis@wdc.com> Message-ID: <20240626132247.2761286-4-alvinga@andestech.com> Signed-off-by: Alistair Francis <alistair.francis@wdc.com>
Diffstat (limited to 'target/riscv/debug.c')
| -rw-r--r-- | target/riscv/debug.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/riscv/debug.c b/target/riscv/debug.c index c290d6002e..0b5099ff9a 100644 --- a/target/riscv/debug.c +++ b/target/riscv/debug.c @@ -624,7 +624,7 @@ void helper_itrigger_match(CPURISCVState *env) if (get_trigger_type(env, i) != TRIGGER_TYPE_INST_CNT) { continue; } - if (check_itrigger_priv(env, i)) { + if (!trigger_common_match(env, TRIGGER_TYPE_INST_CNT, i)) { continue; } count = itrigger_get_count(env, i); |