• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Commit MetaInfo

Revisión672189cd586ea38a2c1d8ab91eb1f9dcff5ceb05 (tree)
Tiempo2018-07-24 01:21:14
AutorRichard Henderson <richard.henderson@lina...>
CommiterRichard Henderson

Log Message

tcg/i386: Mark xmm registers call-clobbered

When host vector registers and operations were introduced, I failed
to mark the registers call clobbered as required by the ABI.

Fixes: 770c2fc7bb7
Cc: qemu-stable@nongnu.org
Reported-by: Jason A. Donenfeld <Jason@zx2c4.com>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>

Cambiar Resumen

Diferencia incremental

--- a/tcg/i386/tcg-target.inc.c
+++ b/tcg/i386/tcg-target.inc.c
@@ -3532,7 +3532,7 @@ static void tcg_target_init(TCGContext *s)
35323532 tcg_target_available_regs[TCG_TYPE_V256] = ALL_VECTOR_REGS;
35333533 }
35343534
3535- tcg_target_call_clobber_regs = 0;
3535+ tcg_target_call_clobber_regs = ALL_VECTOR_REGS;
35363536 tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_EAX);
35373537 tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_EDX);
35383538 tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_ECX);