Skip to content

Commit

Permalink
2014-12-19 Steve Ellcey <sellcey@imgtec.com>
Browse files Browse the repository at this point in the history
	* sysdeps/mips/addmul_1.S (__mpn_addmul_1): Use mulu/muhu instead
	of multu on MIPSr6.
	* sysdeps/mips/mul_1.S (__mpn_mul_1): Ditto.
	* sysdeps/mips/submul_1.S (__mpn_submul_1): Ditto.
	* sysdeps/mips/mips64/addmul_1.S (__mpn_addmul_1): Ditto.
	* sysdeps/mips/mips64/mul_1.S (__mpn_mul_1): Ditto.
	* sysdeps/mips/mips64/submul_1.S (__mpn_submul_1): Ditto.
  • Loading branch information
Steve Ellcey committed Dec 19, 2014
1 parent 04d5556 commit 8b2800c
Show file tree
Hide file tree
Showing 6 changed files with 182 additions and 0 deletions.
30 changes: 30 additions & 0 deletions sysdeps/mips/addmul_1.S
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,12 @@ ENTRY (__mpn_addmul_1)

/* warm up phase 1 */
addiu $5,$5,4
#if __mips_isa_rev < 6
multu $8,$7
#else
mulu $11,$8,$7
muhu $12,$8,$7
#endif

addiu $6,$6,-1
beq $6,$0,L(LC0)
Expand All @@ -53,11 +58,21 @@ ENTRY (__mpn_addmul_1)
lw $8,0($5) /* load new s1 limb as early as possible */

L(Loop): lw $10,0($4)
#if __mips_isa_rev < 6
mflo $3
mfhi $9
#else
move $3,$11
move $9,$12
#endif
addiu $5,$5,4
addu $3,$3,$2 /* add old carry limb to low product limb */
#if __mips_isa_rev < 6
multu $8,$7
#else
mulu $11,$8,$7
muhu $12,$8,$7
#endif
lw $8,0($5) /* load new s1 limb as early as possible */
addiu $6,$6,-1 /* decrement loop counter */
sltu $2,$3,$2 /* carry from previous addition -> $2 */
Expand All @@ -71,11 +86,21 @@ L(Loop): lw $10,0($4)

/* cool down phase 1 */
L(LC1): lw $10,0($4)
#if __mips_isa_rev < 6
mflo $3
mfhi $9
#else
move $3,$11
move $9,$12
#endif
addu $3,$3,$2
sltu $2,$3,$2
#if __mips_isa_rev < 6
multu $8,$7
#else
mulu $11,$8,$7
muhu $12,$8,$7
#endif
addu $3,$10,$3
sltu $10,$3,$10
addu $2,$2,$10
Expand All @@ -85,8 +110,13 @@ L(LC1): lw $10,0($4)

/* cool down phase 0 */
L(LC0): lw $10,0($4)
#if __mips_isa_rev < 6
mflo $3
mfhi $9
#else
move $3,$11
move $9,$12
#endif
addu $3,$3,$2
sltu $2,$3,$2
addu $3,$10,$3
Expand Down
30 changes: 30 additions & 0 deletions sysdeps/mips/mips64/addmul_1.S
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,12 @@ ENTRY (__mpn_addmul_1)

# warm up phase 1
daddiu $5,$5,8
#if __mips_isa_rev < 6
dmultu $8,$7
#else
dmulu $11,$8,$7
dmuhu $12,$8,$7
#endif

daddiu $6,$6,-1
beq $6,$0,L(LC0)
Expand All @@ -55,11 +60,21 @@ ENTRY (__mpn_addmul_1)
ld $8,0($5) # load new s1 limb as early as possible

L(Loop): ld $10,0($4)
#if __mips_isa_rev < 6
mflo $3
mfhi $9
#else
move $3,$11
move $9,$12
#endif
daddiu $5,$5,8
daddu $3,$3,$2 # add old carry limb to low product limb
#if __mips_isa_rev < 6
dmultu $8,$7
#else
dmulu $11,$8,$7
dmuhu $12,$8,$7
#endif
ld $8,0($5) # load new s1 limb as early as possible
daddiu $6,$6,-1 # decrement loop counter
sltu $2,$3,$2 # carry from previous addition -> $2
Expand All @@ -73,11 +88,21 @@ L(Loop): ld $10,0($4)

# cool down phase 1
L(LC1): ld $10,0($4)
#if __mips_isa_rev < 6
mflo $3
mfhi $9
#else
move $3,$11
move $9,$12
#endif
daddu $3,$3,$2
sltu $2,$3,$2
#if __mips_isa_rev < 6
dmultu $8,$7
#else
dmulu $11,$8,$7
dmuhu $12,$8,$7
#endif
daddu $3,$10,$3
sltu $10,$3,$10
daddu $2,$2,$10
Expand All @@ -87,8 +112,13 @@ L(LC1): ld $10,0($4)

# cool down phase 0
L(LC0): ld $10,0($4)
#if __mips_isa_rev < 6
mflo $3
mfhi $9
#else
move $3,$11
move $9,$12
#endif
daddu $3,$3,$2
sltu $2,$3,$2
daddu $3,$10,$3
Expand Down
30 changes: 30 additions & 0 deletions sysdeps/mips/mips64/mul_1.S
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,12 @@ ENTRY (__mpn_mul_1)

# warm up phase 1
daddiu $5,$5,8
#if __mips_isa_rev < 6
dmultu $8,$7
#else
dmulu $11,$8,$7
dmuhu $12,$8,$7
#endif

daddiu $6,$6,-1
beq $6,$0,L(LC0)
Expand All @@ -55,11 +60,21 @@ ENTRY (__mpn_mul_1)
beq $6,$0,L(LC1)
ld $8,0($5) # load new s1 limb as early as possible

#if __mips_isa_rev < 6
L(Loop): mflo $10
mfhi $9
#else
L(Loop): move $10,$11
move $9,$12
#endif
daddiu $5,$5,8
daddu $10,$10,$2 # add old carry limb to low product limb
#if __mips_isa_rev < 6
dmultu $8,$7
#else
dmulu $11,$8,$7
dmuhu $12,$8,$7
#endif
ld $8,0($5) # load new s1 limb as early as possible
daddiu $6,$6,-1 # decrement loop counter
sltu $2,$10,$2 # carry from previous addition -> $2
Expand All @@ -69,18 +84,33 @@ L(Loop): mflo $10
daddu $2,$9,$2 # add high product limb and carry from addition

# cool down phase 1
#if __mips_isa_rev < 6
L(LC1): mflo $10
mfhi $9
#else
L(LC1): move $10,$11
move $9,$12
#endif
daddu $10,$10,$2
sltu $2,$10,$2
#if __mips_isa_rev < 6
dmultu $8,$7
#else
dmulu $11,$8,$7
dmuhu $12,$8,$7
#endif
sd $10,0($4)
daddiu $4,$4,8
daddu $2,$9,$2 # add high product limb and carry from addition

# cool down phase 0
#if __mips_isa_rev < 6
L(LC0): mflo $10
mfhi $9
#else
L(LC0): move $10,$11
move $9,$12
#endif
daddu $10,$10,$2
sltu $2,$10,$2
sd $10,0($4)
Expand Down
30 changes: 30 additions & 0 deletions sysdeps/mips/mips64/submul_1.S
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,12 @@ ENTRY (__mpn_submul_1)

# warm up phase 1
daddiu $5,$5,8
#if __mips_isa_rev < 6
dmultu $8,$7
#else
dmulu $11,$8,$7
dmuhu $12,$8,$7
#endif

daddiu $6,$6,-1
beq $6,$0,L(LC0)
Expand All @@ -56,11 +61,21 @@ ENTRY (__mpn_submul_1)
ld $8,0($5) # load new s1 limb as early as possible

L(Loop): ld $10,0($4)
#if __mips_isa_rev < 6
mflo $3
mfhi $9
#else
move $3,$11
move $9,$12
#endif
daddiu $5,$5,8
daddu $3,$3,$2 # add old carry limb to low product limb
#if __mips_isa_rev < 6
dmultu $8,$7
#else
dmulu $11,$8,$7
dmuhu $12,$8,$7
#endif
ld $8,0($5) # load new s1 limb as early as possible
daddiu $6,$6,-1 # decrement loop counter
sltu $2,$3,$2 # carry from previous addition -> $2
Expand All @@ -74,11 +89,21 @@ L(Loop): ld $10,0($4)

# cool down phase 1
L(LC1): ld $10,0($4)
#if __mips_isa_rev < 6
mflo $3
mfhi $9
#else
move $3,$11
move $9,$12
#endif
daddu $3,$3,$2
sltu $2,$3,$2
#if __mips_isa_rev < 6
dmultu $8,$7
#else
dmulu $11,$8,$7
dmuhu $12,$8,$7
#endif
dsubu $3,$10,$3
sgtu $10,$3,$10
daddu $2,$2,$10
Expand All @@ -88,8 +113,13 @@ L(LC1): ld $10,0($4)

# cool down phase 0
L(LC0): ld $10,0($4)
#if __mips_isa_rev < 6
mflo $3
mfhi $9
#else
move $3,$11
move $9,$12
#endif
daddu $3,$3,$2
sltu $2,$3,$2
dsubu $3,$10,$3
Expand Down
31 changes: 31 additions & 0 deletions sysdeps/mips/mul_1.S
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,12 @@ ENTRY (__mpn_mul_1)

/* warm up phase 1 */
addiu $5,$5,4
#if __mips_isa_rev < 6
multu $8,$7
#else
mulu $11,$8,$7
muhu $12,$8,$7
#endif

addiu $6,$6,-1
beq $6,$0,L(LC0)
Expand All @@ -52,11 +57,22 @@ ENTRY (__mpn_mul_1)
beq $6,$0,L(LC1)
lw $8,0($5) /* load new s1 limb as early as possible */


#if __mips_isa_rev < 6
L(Loop): mflo $10
mfhi $9
#else
L(Loop): move $10,$11
move $9,$12
#endif
addiu $5,$5,4
addu $10,$10,$2 /* add old carry limb to low product limb */
#if __mips_isa_rev < 6
multu $8,$7
#else
mulu $11,$8,$7
muhu $12,$8,$7
#endif
lw $8,0($5) /* load new s1 limb as early as possible */
addiu $6,$6,-1 /* decrement loop counter */
sltu $2,$10,$2 /* carry from previous addition -> $2 */
Expand All @@ -66,18 +82,33 @@ L(Loop): mflo $10
addu $2,$9,$2 /* add high product limb and carry from addition */

/* cool down phase 1 */
#if __mips_isa_rev < 6
L(LC1): mflo $10
mfhi $9
#else
L(LC1): move $10,$11
move $9,$12
#endif
addu $10,$10,$2
sltu $2,$10,$2
#if __mips_isa_rev < 6
multu $8,$7
#else
mulu $11,$8,$7
muhu $12,$8,$7
#endif
sw $10,0($4)
addiu $4,$4,4
addu $2,$9,$2 /* add high product limb and carry from addition */

/* cool down phase 0 */
#if __mips_isa_rev < 6
L(LC0): mflo $10
mfhi $9
#else
L(LC0): move $10,$11
move $9,$12
#endif
addu $10,$10,$2
sltu $2,$10,$2
sw $10,0($4)
Expand Down
Loading

0 comments on commit 8b2800c

Please sign in to comment.