Cygwin: access: Fix X_OK behaviour for backup operators and admins
[newlib-cygwin.git] / newlib / libc / machine / arc64 / setjmp.S
bloba4c9cf1be913dae301cbd86931dd9855ee852356
1 /*
2    Copyright (c) 2024, Synopsys, Inc. All rights reserved.
4    Redistribution and use in source and binary forms, with or without
5    modification, are permitted provided that the following conditions are met:
7    1) Redistributions of source code must retain the above copyright notice,
8    this list of conditions and the following disclaimer.
10    2) Redistributions in binary form must reproduce the above copyright notice,
11    this list of conditions and the following disclaimer in the documentation
12    and/or other materials provided with the distribution.
14    3) Neither the name of the Synopsys, Inc., nor the names of its contributors
15    may be used to endorse or promote products derived from this software
16    without specific prior written permission.
18    THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19    AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20    IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21    ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
22    LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23    CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24    SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25    INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26    CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27    ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28    POSSIBILITY OF SUCH DAMAGE.
31 #include <sys/asm.h>
33 /* ABI interface file
34    these are the stack mappings for the registers
35    as stored in the ABI for ARC */
37 ABIr14  = 0
38 ABIr15  = ABIr14 + REG_SZ
39 ABIr16  = ABIr15 + REG_SZ
40 ABIr17  = ABIr16 + REG_SZ
41 ABIr18  = ABIr17 + REG_SZ
42 ABIr19  = ABIr18 + REG_SZ
43 ABIr20  = ABIr19 + REG_SZ
44 ABIr21  = ABIr20 + REG_SZ
45 ABIr22  = ABIr21 + REG_SZ
46 ABIr23  = ABIr22 + REG_SZ
47 ABIr24  = ABIr23 + REG_SZ
48 ABIr25  = ABIr24 + REG_SZ
49 ABIr26  = ABIr25 + REG_SZ
50 ABIr27  = ABIr26 + REG_SZ
51 ABIr28  = ABIr27 + REG_SZ
52 ABIr29  = ABIr28 + REG_SZ
53 ABIr30  = ABIr29 + REG_SZ
54 ABIr31  = ABIr30 + REG_SZ
57 ENTRY (setjmp)
58         REG_ST  r14, [r0, ABIr14]
59         REG_ST  r15, [r0, ABIr15]
60         REG_ST  r16, [r0, ABIr16]
61         REG_ST  r17, [r0, ABIr17]
62         REG_ST  r18, [r0, ABIr18]
63         REG_ST  r19, [r0, ABIr19]
64         REG_ST  r20, [r0, ABIr20]
65         REG_ST  r21, [r0, ABIr21]
66         REG_ST  r22, [r0, ABIr22]
67         REG_ST  r23, [r0, ABIr23]
68         REG_ST  r24, [r0, ABIr24]
69         REG_ST  r25, [r0, ABIr25]
70         REG_ST  r26, [r0, ABIr26]
71         REG_ST  r27, [r0, ABIr27]
72         REG_ST  r28, [r0, ABIr28]
73         REG_ST  r29, [r0, ABIr29]
74         REG_ST  r30, [r0, ABIr30]
75         REG_ST  blink, [r0, ABIr31]
77         j.d     [blink]
78         mov     r0,0
79         .size   setjmp,.-setjmp
81 ENTRY (longjmp)
82         ; load registers
83         REG_LD  r14, [r0, ABIr14]
84         REG_LD  r15, [r0, ABIr15]
85         REG_LD  r16, [r0, ABIr16]
86         REG_LD  r17, [r0, ABIr17]
87         REG_LD  r18, [r0, ABIr18]
88         REG_LD  r19, [r0, ABIr19]
89         REG_LD  r20, [r0, ABIr20]
90         REG_LD  r21, [r0, ABIr21]
91         REG_LD  r22, [r0, ABIr22]
92         REG_LD  r23, [r0, ABIr23]
93         REG_LD  r24, [r0, ABIr24]
94         REG_LD  r25, [r0, ABIr25]
95         REG_LD  r26, [r0, ABIr26]
96         REG_LD  r27, [r0, ABIr27]
97         REG_LD  r28, [r0, ABIr28]
98         REG_LD  r29, [r0, ABIr29]
99         REG_LD  r30, [r0, ABIr30]
100         REG_LD  blink, [r0, ABIr31]
102         mov.f   r1, r1                  ; to avoid return 0 from longjmp
103         mov.z   r1, 1
104         j.d     [blink]
105         mov     r0,r1
106         .size   longjmp,.-longjmp