Commit 8c9ef9dd authored by Keith Randall's avatar Keith Randall

runtime: don't use CMOV for 386

CMOVs were not introduced until P6.  We need 386 to run on
Pentium MMX.

Fixes #13923

Change-Id: Iee9572cd83e64c3a1336bc1e6b300b048fbcc996
Reviewed-on: https://go-review.googlesource.com/18621Reviewed-by: 's avatarMinux Ma <minux@golang.org>
Run-TryBot: Brad Fitzpatrick <bradfitz@golang.org>
parent 608ddc38
...@@ -1439,7 +1439,8 @@ TEXT strings·IndexByte(SB),NOSPLIT,$0-16 ...@@ -1439,7 +1439,8 @@ TEXT strings·IndexByte(SB),NOSPLIT,$0-16
TEXT runtime·cmpbody(SB),NOSPLIT,$0-0 TEXT runtime·cmpbody(SB),NOSPLIT,$0-0
MOVL DX, BP MOVL DX, BP
SUBL BX, DX // DX = blen-alen SUBL BX, DX // DX = blen-alen
CMOVLGT BX, BP // BP = min(alen, blen) JLE 2(PC)
MOVL BX, BP // BP = min(alen, blen)
CMPL SI, DI CMPL SI, DI
JEQ allsame JEQ allsame
CMPL BP, $4 CMPL BP, $4
...@@ -1558,7 +1559,8 @@ TEXT runtime·fastrand1(SB), NOSPLIT, $0-4 ...@@ -1558,7 +1559,8 @@ TEXT runtime·fastrand1(SB), NOSPLIT, $0-4
ADDL DX, DX ADDL DX, DX
MOVL DX, BX MOVL DX, BX
XORL $0x88888eef, DX XORL $0x88888eef, DX
CMOVLMI BX, DX JPL 2(PC)
MOVL BX, DX
MOVL DX, m_fastrand(AX) MOVL DX, m_fastrand(AX)
MOVL DX, ret+0(FP) MOVL DX, ret+0(FP)
RET RET
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment