From: andrzej zaborowski <balrogg@gmail.com>
To: Aurelien Jarno <aurelien@aurel32.net>
Cc: qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH 3/3] tcg/arm: improve constant loading
Date: Mon, 10 Jan 2011 00:33:50 +0100 [thread overview]
Message-ID: <AANLkTikPtA11Qwx-tX3YVsAzHzA+6QamS=TOC9a1SjV4@mail.gmail.com> (raw)
In-Reply-To: <20110109224002.GC21189@volta.aurel32.net>
On 9 January 2011 23:40, Aurelien Jarno <aurelien@aurel32.net> wrote:
> On Fri, Jan 07, 2011 at 04:56:32PM +0100, andrzej zaborowski wrote:
>> On 7 January 2011 15:40, Aurelien Jarno <aurelien@aurel32.net> wrote:
>> > On Fri, Jan 07, 2011 at 01:52:25PM +0100, andrzej zaborowski wrote:
>> >> On 6 January 2011 22:54, Aurelien Jarno <aurelien@aurel32.net> wrote:
>> >> ...
>> >> > }
>> >> > + } else {
>> >> > + int opc = ARITH_MOV;
>> >> > + int rn = 0;
>> >> > +
>> >> > + do {
>> >> > + int i, rot;
>> >> > +
>> >> > + i = ctz32(arg) & ~1;
>> >> > + rot = ((32 - i) << 7) & 0xf00;
>> >> > + tcg_out_dat_imm(s, cond, opc, rd, rn, ((arg >> i) & 0xff) | rot);
>> >> > + arg &= ~(0xff << i);
>> >> > +
>> >> > + opc = ARITH_ORR;
>> >> > + rn = rd;
>> >>
>> >> I think you could get rid of rn and just use rd from the start of the
>> >> loop. Otherwise acked by me too.
>> >>
>> >
>> > What do you mean exactly? rn has to be 0 when opc is ARITH_MOV in order
>> > to generate a correct ARM instruction.
>>
>> According to my ARM926 manual rn is ignored for MOV/MVN, perhaps it's
>> different in later revisions.
>>
>
> I have just tried, and it actually works (tried on ARMv5 and ARMv7).
Also works under qemu-arm :)
> Note that binutils is not able to disassemble such an instruction and
> outputs in qemu.log something like:
> | 0x01000008: e3aa50ff undefined instruction 0xe3aa50ff
>
> However what worries me the most is that the "ARM Architecture Reference
> Manual ARMv7-A and ARMv7-R edition" defines this opcode with the rn field
> as "(0)(0)(0)(0)". Looking at what it means:
>
> | An instruction is UNPREDICTABLE if:
> | [...]
> | * the pseudocode for that encoding does not indicate that a different
> | special case applies, and a bit marked (0) or (1) in the encoding
> | diagram of an instruction is not 0 or 1 respectively.
>
> In short is it still going to work on newer CPUs?
Perhaps let's be on the safe side and use your version with rn = 0.
I think it *should* work on the new ARM ISAs because of backwards
compatibility: x works under ARMv4 & ARMv5 and x is not listed under
the differences between new and old ISA, thus it needs to work under a
new ISA.
Cheers
next prev parent reply other threads:[~2011-01-09 23:34 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-01-06 21:54 [Qemu-devel] [PATCH 1/3] tcg/arm: fix branch target change during code retranslation Aurelien Jarno
2011-01-06 21:54 ` [Qemu-devel] [PATCH 2/3] tcg/arm: fix qemu_st64 for big endian targets Aurelien Jarno
2011-01-07 12:37 ` andrzej zaborowski
2011-01-06 21:54 ` [Qemu-devel] [PATCH 3/3] tcg/arm: improve constant loading Aurelien Jarno
2011-01-07 12:52 ` andrzej zaborowski
2011-01-07 12:55 ` andrzej zaborowski
2011-01-07 14:40 ` Aurelien Jarno
2011-01-07 15:56 ` andrzej zaborowski
2011-01-09 22:40 ` Aurelien Jarno
2011-01-09 23:33 ` andrzej zaborowski [this message]
2011-01-10 3:41 ` Peter Maydell
2011-01-07 9:12 ` [Qemu-devel] [PATCH 1/3] tcg/arm: fix branch target change during code retranslation Edgar E. Iglesias
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='AANLkTikPtA11Qwx-tX3YVsAzHzA+6QamS=TOC9a1SjV4@mail.gmail.com' \
--to=balrogg@gmail.com \
--cc=aurelien@aurel32.net \
--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 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).