Merge pull request #1834 from fengrl/develop
register push/pop command change
This commit is contained in:
commit
35653e38b3
|
@ -6,6 +6,11 @@ CROTKERNEL = ../mips/zrot.c
|
||||||
ZROTKERNEL = ../mips/zrot.c
|
ZROTKERNEL = ../mips/zrot.c
|
||||||
CSWAPKERNEL = ../mips/zswap.c
|
CSWAPKERNEL = ../mips/zswap.c
|
||||||
ZSWAPKERNEL = ../mips/zswap.c
|
ZSWAPKERNEL = ../mips/zswap.c
|
||||||
|
SDOTKERNEL = ../mips/dot.c
|
||||||
|
DDOTKERNEL = ../mips/dot.c
|
||||||
|
CDOTKERNEL = ../mips/zdot.c
|
||||||
|
ZDOTKERNEL = ../mips/zdot.c
|
||||||
|
|
||||||
|
|
||||||
ifndef SNRM2KERNEL
|
ifndef SNRM2KERNEL
|
||||||
SNRM2KERNEL = snrm2.S
|
SNRM2KERNEL = snrm2.S
|
||||||
|
|
|
@ -146,11 +146,11 @@
|
||||||
sd $21, 40($sp)
|
sd $21, 40($sp)
|
||||||
sd $22, 48($sp)
|
sd $22, 48($sp)
|
||||||
|
|
||||||
ST $f24, 56($sp)
|
sdc1 $f24, 56($sp)
|
||||||
ST $f25, 64($sp)
|
sdc1 $f25, 64($sp)
|
||||||
ST $f26, 72($sp)
|
sdc1 $f26, 72($sp)
|
||||||
ST $f27, 80($sp)
|
sdc1 $f27, 80($sp)
|
||||||
ST $f28, 88($sp)
|
sdc1 $f28, 88($sp)
|
||||||
|
|
||||||
#if defined(TRMMKERNEL)
|
#if defined(TRMMKERNEL)
|
||||||
sd $23, 96($sp)
|
sd $23, 96($sp)
|
||||||
|
@ -161,10 +161,10 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef __64BIT__
|
#ifndef __64BIT__
|
||||||
ST $f20,120($sp)
|
sdc1 $f20,120($sp)
|
||||||
ST $f21,128($sp)
|
sdc1 $f21,128($sp)
|
||||||
ST $f22,136($sp)
|
sdc1 $f22,136($sp)
|
||||||
ST $f23,144($sp)
|
sdc1 $f23,144($sp)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
.align 4
|
.align 4
|
||||||
|
@ -7766,11 +7766,11 @@
|
||||||
ld $21, 40($sp)
|
ld $21, 40($sp)
|
||||||
ld $22, 48($sp)
|
ld $22, 48($sp)
|
||||||
|
|
||||||
LD $f24, 56($sp)
|
ldc1 $f24, 56($sp)
|
||||||
LD $f25, 64($sp)
|
ldc1 $f25, 64($sp)
|
||||||
LD $f26, 72($sp)
|
ldc1 $f26, 72($sp)
|
||||||
LD $f27, 80($sp)
|
ldc1 $f27, 80($sp)
|
||||||
LD $f28, 88($sp)
|
ldc1 $f28, 88($sp)
|
||||||
|
|
||||||
#if defined(TRMMKERNEL)
|
#if defined(TRMMKERNEL)
|
||||||
ld $23, 96($sp)
|
ld $23, 96($sp)
|
||||||
|
@ -7779,10 +7779,10 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef __64BIT__
|
#ifndef __64BIT__
|
||||||
LD $f20,120($sp)
|
ldc1 $f20,120($sp)
|
||||||
LD $f21,128($sp)
|
ldc1 $f21,128($sp)
|
||||||
LD $f22,136($sp)
|
ldc1 $f22,136($sp)
|
||||||
LD $f23,144($sp)
|
ldc1 $f23,144($sp)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
daddiu $sp,$sp,STACKSIZE
|
daddiu $sp,$sp,STACKSIZE
|
||||||
|
|
Loading…
Reference in New Issue