• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
Aucun tag

Frequently used words (click to add to your profile)

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

Commit MetaInfo

Révision7370981bd1ef58b3c20ba8b83cc342d1c61bc773 (tree)
l'heure2018-11-04 19:04:40
AuteurRichard Henderson <richard.henderson@lina...>
CommiterRichard Henderson

Message de Log

softfloat: Don't execute divdeu without power7

The divdeu instruction was added to ISA 2.06 (Power7).
Exclude this block from older cpus.

Fixes: 27ae5109a2ba (softfloat: Specialize udiv_qrnnd for ppc64)
Reported-by: Laurent Vivier <laurent@vivier.eu>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>

Change Summary

Modification

--- a/include/fpu/softfloat-macros.h
+++ b/include/fpu/softfloat-macros.h
@@ -647,8 +647,8 @@ static inline uint64_t udiv_qrnnd(uint64_t *r, uint64_t n1,
647647 asm("dlgr %0, %1" : "+r"(n) : "r"(d));
648648 *r = n >> 64;
649649 return n;
650-#elif defined(_ARCH_PPC64)
651- /* From Power ISA 3.0B, programming note for divdeu. */
650+#elif defined(_ARCH_PPC64) && defined(_ARCH_PWR7)
651+ /* From Power ISA 2.06, programming note for divdeu. */
652652 uint64_t q1, q2, Q, r1, r2, R;
653653 asm("divdeu %0,%2,%4; divdu %1,%3,%4"
654654 : "=&r"(q1), "=r"(q2)