qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* Re: [Qemu-devel] [PATCH] tcg/mips: Bugfix for crash when runningprogram with qemu-i386.
@ 2017-07-10  2:04 jiang.biao2
  2017-07-10  2:15 ` Richard Henderson
  0 siblings, 1 reply; 2+ messages in thread
From: jiang.biao2 @ 2017-07-10  2:04 UTC (permalink / raw)
  To: rth
  Cc: qemu-devel, james.hogan, zhong.weidong, wang.liang82,
	shi.zhongbing, jinguojie, jiang.yong5

>>       if (TCG_TARGET_REG_BITS > TARGET_LONG_BITS) {



>>           tcg_out_ext32u(s, base, addr_regl)
>> -        addr_regl = base
>> +        tcg_out_mov(s, TCG_TYPE_PTR, addr_regl, base)
>>       }
>>       if (guest_base == 0 && data_regl != addr_regl) {
>>           base = addr_regl
> 
> This is wrong, because you're not allowed to modify the input operands.
> 
> Try this, just a few lines lower in the function:

> -        tcg_out_movi(s, TCG_TYPE_PTR, base, guest_base)
> -        tcg_out_opc_reg(s, ALIAS_PADD, base, base, addr_regl)
> +        tcg_out_movi(s, TCG_TYPE_PTR, TCG_TMP0, guest_base)
> +        tcg_out_opc_reg(s, ALIAS_PADD, base, TCG_TMP0, addr_regl)
>

Got it, but the real problem is for addr_regl instead of guest_base.


Using your code for reference, I'll use TCG_TMP0 for addr_regl instead 


of modifying it, and then send patch of new version later.





>


> and you'll need the same change within tcg_out_qemu_st.
I'll write a test demo to produce crash in tcg_out_qemu_st flow, and send

another patch for that.





> Better would be to reserve a register for the guest_base, like we do for ppc. 
> See all of the uses of TCG_GUEST_BASE_REG in tcg/ppc/tcg-target.inc.c.
It uses base(TCG_REG_A0) for temperary use for guest_base in this case.




Thanks a lot.

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2017-07-10  2:17 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-07-10  2:04 [Qemu-devel] [PATCH] tcg/mips: Bugfix for crash when runningprogram with qemu-i386 jiang.biao2
2017-07-10  2:15 ` Richard Henderson

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).