On 4/18/22 20:36, Richard Henderson wrote:
[E-MAIL EXTERNO] Não clique em links ou abra anexos, a menos que você
possa confirmar o remetente e saber que o conteúdo é seguro. Em caso de
e-mail suspeito entre imediatamente em contato com o DTI.
On 4/18/22 12:10, Leandro Lupori wrote:
+static inline uint64_t sh_swap64(CPUArchState *env, uint64_t val)
+{
+ return msr_le ? val : tswap64(val);
+}
+
+static inline uint32_t sh_swap32(CPUArchState *env, uint32_t val)
+{
+ return msr_le ? val : tswap32(val);
+}
That doesn't work -- tswap itself is conditional.
You want
return msr_le ? le32_to_cpu(x) : be32_to_cpu(x);
etc. One of them will be a nop, and the other will bswap.
Right, I'll make this change.
Thanks,
Leandro
r~