|
| From: | Richard Henderson |
| Subject: | Re: [PATCH v2 11/36] tcg: Introduce TYPE_CONST temporaries |
| Date: | Wed, 22 Apr 2020 09:55:13 -0700 |
| User-agent: | Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.7.0 |
On 4/22/20 8:17 AM, Alex Bennée wrote:
>> static inline bool temp_readonly(TCGTemp *ts)
>> {
>> - return ts->kind == TEMP_FIXED;
>> + return ts->kind >= TEMP_FIXED;
>
> I should have clarified in the previous patch - TEMP_FIXED is a fixed
> value, e.g. env or other internal pointer which we won't be overwriting
> or otherwise trashing anywhere in the block?
Correct. Only env, actually. There are (currently) no other internal pointers
that are fixed.
r~
| [Prev in Thread] | Current Thread | [Next in Thread] |