2 Copyright (c) 2014, Hesham ALMatary
5 Redistribution and use in source and binary forms, with or without modification,
6 are permitted provided that the following conditions are met:
8 1. Redistributions of source code must retain the above copyright notice, this
9 list of conditions and the following disclaimer.
11 2. Redistributions in binary form must reproduce the above copyright notice,
12 this list of conditions and the following disclaimer in the documentation and/or
13 other materials provided with the distribution.
15 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
16 ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
17 WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
18 DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
19 ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
20 (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
21 LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
22 ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
24 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 .type setjmp,@function
34 /* Skip r3-r8 as they are not preserved across function calls */
36 /* Skip r10 as it's preserved to be used by TLS */
37 /* Skip r11, setjmp always set it to 0 */
38 /* The following set if registers are preserved across function calls */
48 /* Save Status Register */
51 /* Set result register to 0 and jump */
52 // Different cases for optional delay slot
53 #if defined(__OR1K_NODELAY__)
56 #elif defined(__OR1K_DELAY__)
67 .type longjmp,@function
70 /* If the second argument to longjmp is zero, set return address to 1,
71 otherwise set it to the value of the second argument */
78 /* Load status register */
85 /* Skip r3-r8 as they are not preserved across function calls */
87 /* Skip r11 as it's always set by longjmp */
97 // Different cases for optional delay slot
98 #if defined(__OR1K_NODELAY__)
101 #elif defined(__OR1K_DELAY__)