mirror of https://git.musl-libc.org/git/musl
Browse Source
Userspace emulated floating-point (gcc -msoft-float) is not compatible with the default mips abi (assumes an FPU or in kernel emulation of it). Soft vs hard float abi should not be mixed, __mips_soft_float is checked in musl's configure script and there is no runtime check. The -sf subarch does not save/restore floating-point registers in setjmp/longjmp and only provides dummy fenv implementation.rs-1.0
8 changed files with 69 additions and 3 deletions
@ -0,0 +1 @@ |
|||
../fenv.c |
|||
@ -0,0 +1,25 @@ |
|||
.set noreorder |
|||
|
|||
.global _longjmp |
|||
.global longjmp |
|||
.type _longjmp,@function |
|||
.type longjmp,@function |
|||
_longjmp: |
|||
longjmp: |
|||
move $2, $5 |
|||
bne $2, $0, 1f |
|||
nop |
|||
addu $2, $2, 1 |
|||
1: lw $ra, 0($4) |
|||
lw $sp, 4($4) |
|||
lw $16, 8($4) |
|||
lw $17, 12($4) |
|||
lw $18, 16($4) |
|||
lw $19, 20($4) |
|||
lw $20, 24($4) |
|||
lw $21, 28($4) |
|||
lw $22, 32($4) |
|||
lw $23, 36($4) |
|||
lw $30, 40($4) |
|||
jr $ra |
|||
lw $28, 44($4) |
|||
@ -0,0 +1 @@ |
|||
longjmp.s |
|||
@ -0,0 +1,25 @@ |
|||
.set noreorder |
|||
|
|||
.global __setjmp |
|||
.global _setjmp |
|||
.global setjmp |
|||
.type __setjmp,@function |
|||
.type _setjmp,@function |
|||
.type setjmp,@function |
|||
__setjmp: |
|||
_setjmp: |
|||
setjmp: |
|||
sw $ra, 0($4) |
|||
sw $sp, 4($4) |
|||
sw $16, 8($4) |
|||
sw $17, 12($4) |
|||
sw $18, 16($4) |
|||
sw $19, 20($4) |
|||
sw $20, 24($4) |
|||
sw $21, 28($4) |
|||
sw $22, 32($4) |
|||
sw $23, 36($4) |
|||
sw $30, 40($4) |
|||
sw $28, 44($4) |
|||
jr $ra |
|||
li $2, 0 |
|||
@ -0,0 +1 @@ |
|||
setjmp.s |
|||
Loading…
Reference in new issue