qemu-arm
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH 1/4] target/arm: Add TB flag for "MVE insns not predicated"


From: Richard Henderson
Subject: Re: [PATCH 1/4] target/arm: Add TB flag for "MVE insns not predicated"
Date: Fri, 3 Sep 2021 17:28:26 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.13.0

On 9/3/21 4:17 PM, Peter Maydell wrote:
I don't really understand what you mean here. What's the difference
between ending the TB now and translating a few more insns in
this TB before we end it?

  VCMP (pred now on or off)
  B    label

The code we emit for B uses goto_tb.

When goto_tb is unlinked (e.g. first execute), we exit with a code that causes the current cpu state to be evaluated, the new TB created, and the link filled in. This makes permanent the cpu state we evaluated, and thus the state change across goto_tb must be constant. This is fine for B, since only the PC changes and to a known destination.

So we have two choices: end the TB immediately after the VCMP, or set another flag to cause gen_goto_tb to fall back to goto_ptr.

But I sorta think that it's just easier to end after VCMP.


r~



reply via email to

[Prev in Thread] Current Thread [Next in Thread]