From: Aurelien Jarno <aurelien@aurel32.net>
To: Eric Johnson <ericj@mips.com>
Cc: qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH] Add privilege level check to several Cop0 instructions.
Date: Mon, 27 Aug 2012 13:44:59 +0200 [thread overview]
Message-ID: <20120827114457.GO3553@ohm.aurel32.net> (raw)
In-Reply-To: <20110918000532.GA28991@linux-ericj.mips.com>
On Sat, Sep 17, 2011 at 05:05:32PM -0700, Eric Johnson wrote:
> The MIPS Architecture Verification Programs (AVPs) check privileged
> instructions for the required privilege level. These changes are needed
> to pass the AVP suite.
>
> Signed-off-by: Eric Johnson <ericj@mips.com>
> ---
> target-mips/translate.c | 10 ++++++++++
> 1 files changed, 10 insertions(+), 0 deletions(-)
>
> diff --git a/target-mips/translate.c b/target-mips/translate.c
> index d5b1c76..d99a716 100644
> --- a/target-mips/translate.c
> +++ b/target-mips/translate.c
> @@ -5940,6 +5940,8 @@ static void gen_cp0 (CPUState *env, DisasContext *ctx, uint32_t opc, int rt, int
> {
> const char *opn = "ldst";
>
> + check_cp0_enabled(ctx);
> +
> switch (opc) {
> case OPC_MFC0:
> if (rt == 0) {
> @@ -10125,6 +10127,7 @@ static void gen_pool32axf (CPUState *env, DisasContext *ctx, int rt, int rs,
> #ifndef CONFIG_USER_ONLY
> case MFC0:
> case MFC0 + 32:
> + check_cp0_enabled(ctx);
> if (rt == 0) {
> /* Treat as NOP. */
> break;
> @@ -10136,6 +10139,7 @@ static void gen_pool32axf (CPUState *env, DisasContext *ctx, int rt, int rs,
> {
> TCGv t0 = tcg_temp_new();
>
> + check_cp0_enabled(ctx);
> gen_load_gpr(t0, rt);
> gen_mtc0(env, ctx, t0, rs, (ctx->opcode >> 11) & 0x7);
> tcg_temp_free(t0);
> @@ -10230,10 +10234,12 @@ static void gen_pool32axf (CPUState *env, DisasContext *ctx, int rt, int rs,
> switch (minor) {
> case RDPGPR:
> check_insn(env, ctx, ISA_MIPS32R2);
> + check_cp0_enabled(ctx);
> gen_load_srsgpr(rt, rs);
> break;
> case WRPGPR:
> check_insn(env, ctx, ISA_MIPS32R2);
> + check_cp0_enabled(ctx);
> gen_store_srsgpr(rt, rs);
> break;
> default:
> @@ -10276,6 +10282,7 @@ static void gen_pool32axf (CPUState *env, DisasContext *ctx, int rt, int rs,
> {
> TCGv t0 = tcg_temp_new();
>
> + check_cp0_enabled(ctx);
> save_cpu_state(ctx, 1);
> gen_helper_di(t0);
> gen_store_gpr(t0, rs);
> @@ -10288,6 +10295,7 @@ static void gen_pool32axf (CPUState *env, DisasContext *ctx, int rt, int rs,
> {
> TCGv t0 = tcg_temp_new();
>
> + check_cp0_enabled(ctx);
> save_cpu_state(ctx, 1);
> gen_helper_ei(t0);
> gen_store_gpr(t0, rs);
> @@ -10765,6 +10773,7 @@ static void decode_micromips32_opc (CPUState *env, DisasContext *ctx,
> minor = (ctx->opcode >> 12) & 0xf;
> switch (minor) {
> case CACHE:
> + check_cp0_enabled(ctx);
> /* Treat as no-op. */
> break;
> case LWC2:
> @@ -12216,6 +12225,7 @@ static void decode_opc (CPUState *env, DisasContext *ctx, int *is_branch)
> break;
> case OPC_CACHE:
> check_insn(env, ctx, ISA_MIPS3 | ISA_MIPS32);
> + check_cp0_enabled(ctx);
> /* Treat as NOP. */
> break;
> case OPC_PREF:
>
>
Thanks, applied.
--
Aurelien Jarno GPG: 1024D/F1BCDB73
aurelien@aurel32.net http://www.aurel32.net
prev parent reply other threads:[~2012-08-27 11:45 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-09-18 0:05 [Qemu-devel] [PATCH] Add privilege level check to several Cop0 instructions Eric Johnson
2011-09-18 0:20 ` Johnson, Eric
2012-08-27 11:44 ` Aurelien Jarno [this message]
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=20120827114457.GO3553@ohm.aurel32.net \
--to=aurelien@aurel32.net \
--cc=ericj@mips.com \
--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.