The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 1 | /* $OpenBSD: setjmp.S,v 1.2 2004/02/01 05:40:52 drahn Exp $ */ |
| 2 | /* $NetBSD: setjmp.S,v 1.5 2003/04/05 23:08:51 bjh21 Exp $ */ |
| 3 | |
| 4 | /* |
| 5 | * Copyright (c) 1997 Mark Brinicombe |
David 'Digit' Turner | 68b5f55 | 2010-03-25 09:54:33 -0700 | [diff] [blame] | 6 | * Copyright (c) 2010 Android Open Source Project. |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 7 | * All rights reserved. |
| 8 | * |
| 9 | * Redistribution and use in source and binary forms, with or without |
| 10 | * modification, are permitted provided that the following conditions |
| 11 | * are met: |
| 12 | * 1. Redistributions of source code must retain the above copyright |
| 13 | * notice, this list of conditions and the following disclaimer. |
| 14 | * 2. Redistributions in binary form must reproduce the above copyright |
| 15 | * notice, this list of conditions and the following disclaimer in the |
| 16 | * documentation and/or other materials provided with the distribution. |
| 17 | * 3. All advertising materials mentioning features or use of this software |
| 18 | * must display the following acknowledgement: |
| 19 | * This product includes software developed by Mark Brinicombe |
| 20 | * 4. Neither the name of the University nor the names of its contributors |
| 21 | * may be used to endorse or promote products derived from this software |
| 22 | * without specific prior written permission. |
| 23 | * |
| 24 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 25 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 26 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 27 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 28 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 29 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 30 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 31 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 32 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 33 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 34 | * SUCH DAMAGE. |
| 35 | */ |
| 36 | |
| 37 | #include <machine/asm.h> |
| 38 | #include <machine/setjmp.h> |
David 'Digit' Turner | 68b5f55 | 2010-03-25 09:54:33 -0700 | [diff] [blame] | 39 | #include <machine/cpu-features.h> |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 40 | |
| 41 | /* |
| 42 | * C library -- setjmp, longjmp |
| 43 | * |
| 44 | * longjmp(a,v) |
| 45 | * will generate a "return(v)" from the last call to |
| 46 | * setjmp(a) |
| 47 | * by restoring registers from the stack. |
| 48 | * The previous signal state is restored. |
| 49 | */ |
| 50 | |
| 51 | ENTRY(setjmp) |
| 52 | /* Block all signals and retrieve the old signal mask */ |
| 53 | stmfd sp!, {r0, r14} |
Christopher Ferris | ed45970 | 2013-12-02 17:44:53 -0800 | [diff] [blame] | 54 | .cfi_def_cfa_offset 8 |
| 55 | .cfi_rel_offset r0, 0 |
| 56 | .cfi_rel_offset r14, 4 |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 57 | mov r0, #0x00000000 |
| 58 | |
Elliott Hughes | 09289d9 | 2014-02-20 11:51:11 -0800 | [diff] [blame] | 59 | bl PIC_SYM(sigblock, PLT) |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 60 | mov r1, r0 |
| 61 | |
| 62 | ldmfd sp!, {r0, r14} |
Christopher Ferris | ed45970 | 2013-12-02 17:44:53 -0800 | [diff] [blame] | 63 | .cfi_def_cfa_offset 0 |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 64 | |
| 65 | /* Store signal mask */ |
David 'Digit' Turner | 68b5f55 | 2010-03-25 09:54:33 -0700 | [diff] [blame] | 66 | str r1, [r0, #(_JB_SIGMASK * 4)] |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 67 | |
| 68 | ldr r1, .Lsetjmp_magic |
David 'Digit' Turner | 68b5f55 | 2010-03-25 09:54:33 -0700 | [diff] [blame] | 69 | str r1, [r0, #(_JB_MAGIC * 4)] |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 70 | |
David 'Digit' Turner | 68b5f55 | 2010-03-25 09:54:33 -0700 | [diff] [blame] | 71 | /* Store core registers */ |
| 72 | add r1, r0, #(_JB_CORE_BASE * 4) |
| 73 | stmia r1, {r4-r14} |
| 74 | |
| 75 | #ifdef __ARM_HAVE_VFP |
| 76 | /* Store floating-point registers */ |
| 77 | add r1, r0, #(_JB_FLOAT_BASE * 4) |
| 78 | vstmia r1, {d8-d15} |
| 79 | /* Store floating-point state */ |
| 80 | fmrx r1, fpscr |
| 81 | str r1, [r0, #(_JB_FLOAT_STATE * 4)] |
| 82 | #endif /* __ARM_HAVE_VFP */ |
| 83 | |
| 84 | mov r0, #0x00000000 |
| 85 | bx lr |
Kenny Root | 420878c | 2011-02-16 11:55:58 -0800 | [diff] [blame] | 86 | END(setjmp) |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 87 | |
| 88 | .Lsetjmp_magic: |
| 89 | .word _JB_MAGIC_SETJMP |
| 90 | |
| 91 | |
| 92 | ENTRY(longjmp) |
| 93 | ldr r2, .Lsetjmp_magic |
David 'Digit' Turner | 68b5f55 | 2010-03-25 09:54:33 -0700 | [diff] [blame] | 94 | ldr r3, [r0, #(_JB_MAGIC * 4)] |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 95 | teq r2, r3 |
| 96 | bne botch |
| 97 | |
| 98 | /* Fetch signal mask */ |
David 'Digit' Turner | 68b5f55 | 2010-03-25 09:54:33 -0700 | [diff] [blame] | 99 | ldr r2, [r0, #(_JB_SIGMASK * 4)] |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 100 | |
| 101 | /* Set signal mask */ |
| 102 | stmfd sp!, {r0, r1, r14} |
Christopher Ferris | ed45970 | 2013-12-02 17:44:53 -0800 | [diff] [blame] | 103 | .cfi_def_cfa_offset 12 |
| 104 | .cfi_rel_offset r0, 0 |
| 105 | .cfi_rel_offset r1, 4 |
| 106 | .cfi_rel_offset r14, 8 |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 107 | sub sp, sp, #4 /* align the stack */ |
Christopher Ferris | ed45970 | 2013-12-02 17:44:53 -0800 | [diff] [blame] | 108 | .cfi_adjust_cfa_offset 4 |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 109 | |
| 110 | mov r0, r2 |
Elliott Hughes | 09289d9 | 2014-02-20 11:51:11 -0800 | [diff] [blame] | 111 | bl PIC_SYM(sigsetmask, PLT) |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 112 | |
| 113 | add sp, sp, #4 /* unalign the stack */ |
Christopher Ferris | ed45970 | 2013-12-02 17:44:53 -0800 | [diff] [blame] | 114 | .cfi_adjust_cfa_offset -4 |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 115 | ldmfd sp!, {r0, r1, r14} |
Christopher Ferris | ed45970 | 2013-12-02 17:44:53 -0800 | [diff] [blame] | 116 | .cfi_def_cfa_offset 0 |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 117 | |
David 'Digit' Turner | 68b5f55 | 2010-03-25 09:54:33 -0700 | [diff] [blame] | 118 | #ifdef __ARM_HAVE_VFP |
| 119 | /* Restore floating-point registers */ |
| 120 | add r2, r0, #(_JB_FLOAT_BASE * 4) |
| 121 | vldmia r2, {d8-d15} |
| 122 | /* Restore floating-point state */ |
| 123 | ldr r2, [r0, #(_JB_FLOAT_STATE * 4)] |
| 124 | fmxr fpscr, r2 |
| 125 | #endif /* __ARM_HAVE_VFP */ |
| 126 | |
| 127 | /* Restore core registers */ |
| 128 | add r2, r0, #(_JB_CORE_BASE * 4) |
| 129 | ldmia r2, {r4-r14} |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 130 | |
| 131 | /* Validate sp and r14 */ |
| 132 | teq sp, #0 |
| 133 | teqne r14, #0 |
| 134 | beq botch |
| 135 | |
| 136 | /* Set return value */ |
| 137 | |
| 138 | mov r0, r1 |
| 139 | teq r0, #0x00000000 |
| 140 | moveq r0, #0x00000001 |
| 141 | bx lr |
| 142 | #ifdef __ARM_26__ |
| 143 | mov r15, r14 |
| 144 | #else |
| 145 | mov r15, r14 |
| 146 | #endif |
| 147 | |
| 148 | /* validation failed, die die die. */ |
| 149 | botch: |
Elliott Hughes | 09289d9 | 2014-02-20 11:51:11 -0800 | [diff] [blame] | 150 | bl PIC_SYM(longjmperror, PLT) |
| 151 | bl PIC_SYM(abort, PLT) |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 152 | b . - 8 /* Cannot get here */ |
Kenny Root | 420878c | 2011-02-16 11:55:58 -0800 | [diff] [blame] | 153 | END(longjmp) |