* [Qemu-devel] understanding how arpl is translated
@ 2008-05-13 3:32 Jun Koi
2008-05-13 17:59 ` Fabrice Bellard
0 siblings, 1 reply; 3+ messages in thread
From: Jun Koi @ 2008-05-13 3:32 UTC (permalink / raw)
To: qemu-devel
Hi,
I am trying to understand how "arpl" insn (i386) is translated. In
translate.c we have:
.....
modrm = ldub_code(s->pc++);
reg = (modrm >> 3) & 7;
mod = (modrm >> 6) & 3;
rm = modrm & 7;
if (mod != 3) {
gen_lea_modrm(s, modrm, ®_addr, &offset_addr);
gen_op_ld_T0_A0(ot + s->mem_index); // (1) ****
} else {
gen_op_mov_TN_reg(ot, 0, rm); // (2) ****
}
if (s->cc_op != CC_OP_DYNAMIC)
gen_op_set_cc_op(s->cc_op);
gen_op_arpl();
s->cc_op = CC_OP_EFLAGS;
...
I can see that we decrypt 2 operands of arpl and then call
gen_op_arpl(). This function finally leads to execute op_arpl(), which
is defined as:
void OPPROTO op_arpl(void)
{
if ((T0 & 3) < (T1 & 3)) {
/* XXX: emulate bug or 0xff3f0000 oring as in bochs ? */
T0 = (T0 & ~3) | (T1 & 3);
T1 = CC_Z;
} else {
T1 = 0;
}
FORCE_RET();
}
Obviously op_arpl() relies on T0 and T1 have the value of the 1st and
2nd operands of the above "arpl" insn. However, I can only see that we
copy the 1st operand into T0 at (1) or (2) in the first snippet, but I
never see when we copy 2nd operand into T1. This confuses me, or I
missed something here?
Many thanks,
Jun
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [Qemu-devel] understanding how arpl is translated
2008-05-13 3:32 [Qemu-devel] understanding how arpl is translated Jun Koi
@ 2008-05-13 17:59 ` Fabrice Bellard
2008-05-15 10:11 ` Jun Koi
0 siblings, 1 reply; 3+ messages in thread
From: Fabrice Bellard @ 2008-05-13 17:59 UTC (permalink / raw)
To: qemu-devel
Jun Koi wrote:
> Hi,
>
> I am trying to understand how "arpl" insn (i386) is translated. In
> translate.c we have:
>
> .....
> modrm = ldub_code(s->pc++);
> reg = (modrm >> 3) & 7;
> mod = (modrm >> 6) & 3;
> rm = modrm & 7;
> if (mod != 3) {
> gen_lea_modrm(s, modrm, ®_addr, &offset_addr);
> gen_op_ld_T0_A0(ot + s->mem_index); // (1) ****
> } else {
> gen_op_mov_TN_reg(ot, 0, rm); // (2) ****
> }
> if (s->cc_op != CC_OP_DYNAMIC)
> gen_op_set_cc_op(s->cc_op);
> gen_op_arpl();
> s->cc_op = CC_OP_EFLAGS;
> ...
>
> I can see that we decrypt 2 operands of arpl and then call
> gen_op_arpl(). This function finally leads to execute op_arpl(), which
> is defined as:
>
> void OPPROTO op_arpl(void)
> {
> if ((T0 & 3) < (T1 & 3)) {
> /* XXX: emulate bug or 0xff3f0000 oring as in bochs ? */
> T0 = (T0 & ~3) | (T1 & 3);
> T1 = CC_Z;
> } else {
> T1 = 0;
> }
> FORCE_RET();
> }
>
> Obviously op_arpl() relies on T0 and T1 have the value of the 1st and
> 2nd operands of the above "arpl" insn. However, I can only see that we
> copy the 1st operand into T0 at (1) or (2) in the first snippet, but I
> never see when we copy 2nd operand into T1. This confuses me, or I
> missed something here?
You are right. Moreover, the eflags update is also invalid because arpl
is not signaled in the opc_write_flags array...
Fabrice.
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [Qemu-devel] understanding how arpl is translated
2008-05-13 17:59 ` Fabrice Bellard
@ 2008-05-15 10:11 ` Jun Koi
0 siblings, 0 replies; 3+ messages in thread
From: Jun Koi @ 2008-05-15 10:11 UTC (permalink / raw)
To: qemu-devel
On Wed, May 14, 2008 at 2:59 AM, Fabrice Bellard <fabrice@bellard.org> wrote:
> Jun Koi wrote:
>> Hi,
>>
>> I am trying to understand how "arpl" insn (i386) is translated. In
>> translate.c we have:
>>
>> .....
>> modrm = ldub_code(s->pc++);
>> reg = (modrm >> 3) & 7;
>> mod = (modrm >> 6) & 3;
>> rm = modrm & 7;
>> if (mod != 3) {
>> gen_lea_modrm(s, modrm, ®_addr, &offset_addr);
>> gen_op_ld_T0_A0(ot + s->mem_index); // (1) ****
>> } else {
>> gen_op_mov_TN_reg(ot, 0, rm); // (2) ****
>> }
>> if (s->cc_op != CC_OP_DYNAMIC)
>> gen_op_set_cc_op(s->cc_op);
>> gen_op_arpl();
>> s->cc_op = CC_OP_EFLAGS;
>> ...
>>
>> I can see that we decrypt 2 operands of arpl and then call
>> gen_op_arpl(). This function finally leads to execute op_arpl(), which
>> is defined as:
>>
>> void OPPROTO op_arpl(void)
>> {
>> if ((T0 & 3) < (T1 & 3)) {
>> /* XXX: emulate bug or 0xff3f0000 oring as in bochs ? */
>> T0 = (T0 & ~3) | (T1 & 3);
>> T1 = CC_Z;
>> } else {
>> T1 = 0;
>> }
>> FORCE_RET();
>> }
>>
>> Obviously op_arpl() relies on T0 and T1 have the value of the 1st and
>> 2nd operands of the above "arpl" insn. However, I can only see that we
>> copy the 1st operand into T0 at (1) or (2) in the first snippet, but I
>> never see when we copy 2nd operand into T1. This confuses me, or I
>> missed something here?
>
> You are right. Moreover, the eflags update is also invalid because arpl
> is not signaled in the opc_write_flags array...
OK, so that means ARPL is incorrectly implemented?
No wonder why I badly struggle to understand how it works :-)
Many thanks,
Jun
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2008-05-15 10:11 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-05-13 3:32 [Qemu-devel] understanding how arpl is translated Jun Koi
2008-05-13 17:59 ` Fabrice Bellard
2008-05-15 10:11 ` Jun Koi
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).