From e5bb165bed7be4176914672d25ff8e286b6fba49 Mon Sep 17 00:00:00 2001 From: Szabolcs Nagy Date: Mon, 24 Feb 2014 23:16:29 +0100 Subject: mips: add mips-sf subarch support (soft-float) 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. --- src/setjmp/mips-sf/longjmp.s | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 src/setjmp/mips-sf/longjmp.s (limited to 'src/setjmp/mips-sf/longjmp.s') diff --git a/src/setjmp/mips-sf/longjmp.s b/src/setjmp/mips-sf/longjmp.s new file mode 100644 index 00000000..8e769675 --- /dev/null +++ b/src/setjmp/mips-sf/longjmp.s @@ -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) -- cgit v1.2.1