qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Laurent Desnogues <laurent.desnogues@gmail.com>
To: Aurelien Jarno <aurelien@aurel32.net>
Cc: qemu-devel@nongnu.org, Richard Henderson <rth@twiddle.net>
Subject: Re: [Qemu-devel] [PATCH 5/5] tcg-i386: Implement setcond.
Date: Tue, 22 Dec 2009 13:20:05 +0100	[thread overview]
Message-ID: <761ea48b0912220420o4a9ac9e6x1e765c314600f0f5@mail.gmail.com> (raw)
In-Reply-To: <20091219231134.GA2167@volta.aurel32.net>

On Sun, Dec 20, 2009 at 12:11 AM, Aurelien Jarno <aurelien@aurel32.net> wrote:
> On Sat, Dec 19, 2009 at 10:46:38AM -0800, Richard Henderson wrote:
>> Signed-off-by: Richard Henderson <rth@twiddle.net>
>
> This looks ok, though I would appreciate someone else to review it in
> details.

It looks good to me too (though I didn't test it explicitly).


Laurent

>> ---
>>  tcg/i386/tcg-target.c |   73 +++++++++++++++++++++++++++++++++++++++++++++++--
>>  1 files changed, 70 insertions(+), 3 deletions(-)
>>
>> diff --git a/tcg/i386/tcg-target.c b/tcg/i386/tcg-target.c
>> index 4c42caf..43e0155 100644
>> --- a/tcg/i386/tcg-target.c
>> +++ b/tcg/i386/tcg-target.c
>> @@ -360,9 +360,8 @@ static void tcg_out_jxx(TCGContext *s, int opc, int label_index, int small)
>>      }
>>  }
>>
>> -static void tcg_out_brcond(TCGContext *s, int cond,
>> -                           TCGArg arg1, TCGArg arg2, int const_arg2,
>> -                           int label_index, int small)
>> +static void tcg_out_cmp(TCGContext *s, TCGArg arg1, TCGArg arg2,
>> +                        int const_arg2)
>>  {
>>      if (const_arg2) {
>>          if (arg2 == 0) {
>> @@ -374,6 +373,13 @@ static void tcg_out_brcond(TCGContext *s, int cond,
>>      } else {
>>          tcg_out_modrm(s, 0x01 | (ARITH_CMP << 3), arg2, arg1);
>>      }
>> +}
>> +
>> +static void tcg_out_brcond(TCGContext *s, int cond,
>> +                           TCGArg arg1, TCGArg arg2, int const_arg2,
>> +                           int label_index, int small)
>> +{
>> +    tcg_out_cmp(s, arg1, arg2, const_arg2);
>>      tcg_out_jxx(s, tcg_cond_to_jcc[cond], label_index, small);
>>  }
>>
>> @@ -459,6 +465,57 @@ static void tcg_out_brcond2(TCGContext *s, const TCGArg *args,
>>      tcg_out_label(s, label_next, (tcg_target_long)s->code_ptr);
>>  }
>>
>> +static void tcg_out_setcond(TCGContext *s, int cond, TCGArg dest,
>> +                            TCGArg arg1, TCGArg arg2, int const_arg2)
>> +{
>> +    tcg_out_cmp(s, arg1, arg2, const_arg2);
>> +    /* setcc */
>> +    tcg_out_modrm(s, 0x90 | tcg_cond_to_jcc[cond] | P_EXT, 0, dest);
>> +    tgen_arithi(s, ARITH_AND, dest, 0xff, 0);
>> +}
>> +
>> +static void tcg_out_setcond2(TCGContext *s, const TCGArg *args,
>> +                             const int *const_args)
>> +{
>> +    TCGArg new_args[6];
>> +    int label_true, label_over;
>> +
>> +    memcpy(new_args, args+1, 5*sizeof(TCGArg));
>> +
>> +    if (args[0] == args[1] || args[0] == args[2]
>> +        || (!const_args[3] && args[0] == args[3])
>> +        || (!const_args[4] && args[0] == args[4])) {
>> +        /* When the destination overlaps with one of the argument
>> +           registers, don't do anything tricky.  */
>> +        label_true = gen_new_label();
>> +        label_over = gen_new_label();
>> +
>> +        new_args[5] = label_true;
>> +        tcg_out_brcond2(s, new_args, const_args+1, 1);
>> +
>> +        tcg_out_movi(s, TCG_TYPE_I32, args[0], 0);
>> +        tcg_out_jxx(s, JCC_JMP, label_over, 1);
>> +        tcg_out_label(s, label_true, (tcg_target_long)s->code_ptr);
>> +
>> +        tcg_out_movi(s, TCG_TYPE_I32, args[0], 1);
>> +        tcg_out_label(s, label_over, (tcg_target_long)s->code_ptr);
>> +    } else {
>> +        /* When the destination does not overlap one of the arguments,
>> +           clear the destination first, jump if cond false, and emit an
>> +           increment in the true case.  This results in smaller code.  */
>> +
>> +        tcg_out_movi(s, TCG_TYPE_I32, args[0], 0);
>> +
>> +        label_over = gen_new_label();
>> +        new_args[4] = tcg_invert_cond(new_args[4]);
>> +        new_args[5] = label_over;
>> +        tcg_out_brcond2(s, new_args, const_args+1, 1);
>> +
>> +        tgen_arithi(s, ARITH_ADD, args[0], 1, 0);
>> +        tcg_out_label(s, label_over, (tcg_target_long)s->code_ptr);
>> +    }
>> +}
>> +
>>  #if defined(CONFIG_SOFTMMU)
>>
>>  #include "../../softmmu_defs.h"
>> @@ -1120,6 +1177,13 @@ static inline void tcg_out_op(TCGContext *s, int opc,
>>          tcg_out_modrm(s, 0xb7 | P_EXT, args[0], args[1]);
>>          break;
>>
>> +    case INDEX_op_setcond_i32:
>> +        tcg_out_setcond(s, args[3], args[0], args[1], args[2], const_args[2]);
>> +        break;
>> +    case INDEX_op_setcond2_i32:
>> +        tcg_out_setcond2(s, args, const_args);
>> +        break;
>> +
>>      case INDEX_op_qemu_ld8u:
>>          tcg_out_qemu_ld(s, args, 0);
>>          break;
>> @@ -1208,6 +1272,9 @@ static const TCGTargetOpDef x86_op_defs[] = {
>>      { INDEX_op_ext8u_i32, { "r", "q"} },
>>      { INDEX_op_ext16u_i32, { "r", "r"} },
>>
>> +    { INDEX_op_setcond_i32, { "q", "r", "ri" } },
>> +    { INDEX_op_setcond2_i32, { "r", "r", "r", "ri", "ri" } },
>> +
>>  #if TARGET_LONG_BITS == 32
>>      { INDEX_op_qemu_ld8u, { "r", "L" } },
>>      { INDEX_op_qemu_ld8s, { "r", "L" } },
>> --
>> 1.6.5.2
>>
>>
>>
>>
>
> --
> Aurelien Jarno                          GPG: 1024D/F1BCDB73
> aurelien@aurel32.net                 http://www.aurel32.net
>
>
>

  reply	other threads:[~2009-12-22 12:20 UTC|newest]

Thread overview: 34+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-12-19 18:52 [Qemu-devel] [PATCH 0/5] tcg conditional set, round 4 Richard Henderson
2009-12-19 16:50 ` [Qemu-devel] [PATCH 2/5] tcg-x86_64: Implement setcond Richard Henderson
2009-12-19 23:11   ` Aurelien Jarno
2009-12-19 18:01 ` [Qemu-devel] [PATCH 1/5] tcg: Generic support for conditional set Richard Henderson
2009-12-19 23:11   ` Aurelien Jarno
2009-12-19 23:24     ` Richard Henderson
2009-12-19 23:45       ` Aurelien Jarno
2009-12-22 11:27   ` Laurent Desnogues
2009-12-22 16:09     ` Richard Henderson
2009-12-19 18:44 ` [Qemu-devel] [PATCH 3/5] tcg-i386: Implement small forward branches Richard Henderson
2009-12-19 23:11   ` Aurelien Jarno
2009-12-19 23:32   ` Laurent Desnogues
2009-12-20  1:17     ` Richard Henderson
2009-12-19 18:44 ` [Qemu-devel] [PATCH 4/5] tcg: Add tcg_invert_cond Richard Henderson
2009-12-19 23:11   ` Aurelien Jarno
2009-12-19 18:46 ` [Qemu-devel] [PATCH 5/5] tcg-i386: Implement setcond Richard Henderson
2009-12-19 23:11   ` Aurelien Jarno
2009-12-22 12:20     ` Laurent Desnogues [this message]
2009-12-19 23:11 ` [Qemu-devel] [PATCH 0/5] tcg conditional set, round 4 Aurelien Jarno
2009-12-19 23:43   ` malc
2009-12-20 11:03     ` Blue Swirl
2009-12-20 22:57 ` Paul Brook
2009-12-21  2:00   ` Richard Henderson
2009-12-21  9:13     ` Laurent Desnogues
2009-12-21  9:47       ` [Qemu-devel] " Paolo Bonzini
2009-12-21 10:03         ` Laurent Desnogues
2009-12-21 20:28       ` [Qemu-devel] " Richard Henderson
2009-12-21 22:21         ` Laurent Desnogues
2009-12-21 22:50           ` Richard Henderson
2009-12-21 23:08             ` Laurent Desnogues
2009-12-22  0:02               ` Richard Henderson
2009-12-22 14:46                 ` Laurent Desnogues
2009-12-22  7:19         ` Aurelien Jarno
2009-12-21 10:08     ` Aurelien Jarno

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=761ea48b0912220420o4a9ac9e6x1e765c314600f0f5@mail.gmail.com \
    --to=laurent.desnogues@gmail.com \
    --cc=aurelien@aurel32.net \
    --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).