e8beb851a57c63357dfff11d0c7b00ce91f957d9
[cacao.git] / src / vm / jit / alpha / linux / md-os.c
1 /* src/vm/jit/alpha/linux/md-os.c - machine dependent Alpha Linux functions
2
3    Copyright (C) 1996-2005, 2006, 2007 R. Grafl, A. Krall, C. Kruegel,
4    C. Oates, R. Obermaisser, M. Platter, M. Probst, S. Ring,
5    E. Steiner, C. Thalinger, D. Thuernbeck, P. Tomsich, C. Ullrich,
6    J. Wenninger, Institut f. Computersprachen - TU Wien
7
8    This file is part of CACAO.
9
10    This program is free software; you can redistribute it and/or
11    modify it under the terms of the GNU General Public License as
12    published by the Free Software Foundation; either version 2, or (at
13    your option) any later version.
14
15    This program is distributed in the hope that it will be useful, but
16    WITHOUT ANY WARRANTY; without even the implied warranty of
17    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18    General Public License for more details.
19
20    You should have received a copy of the GNU General Public License
21    along with this program; if not, write to the Free Software
22    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
23    02110-1301, USA.
24
25    $Id: md-os.c 8283 2007-08-09 15:10:05Z twisti $
26
27 */
28
29
30 #include "config.h"
31
32 #include <assert.h>
33 #include <stdint.h>
34 #include <ucontext.h>
35
36 #include "vm/types.h"
37
38 #include "vm/jit/alpha/codegen.h"
39 #include "vm/jit/alpha/md-abi.h"
40
41 #if defined(ENABLE_THREADS)
42 # include "threads/native/threads.h"
43 #endif
44
45 #include "vm/signallocal.h"
46
47 #include "vm/jit/asmpart.h"
48 #include "vm/jit/stacktrace.h"
49
50
51 /* md_signal_handler_sigsegv ***************************************************
52
53    NullPointerException signal handler for hardware null pointer
54    check.
55
56 *******************************************************************************/
57
58 void md_signal_handler_sigsegv(int sig, siginfo_t *siginfo, void *_p)
59 {
60         stackframeinfo  sfi;
61         ucontext_t     *_uc;
62         mcontext_t     *_mc;
63         u1             *pv;
64         u1             *sp;
65         u1             *ra;
66         u1             *xpc;
67         u4              mcode;
68         s4              d;
69         s4              s1;
70         s4              disp;
71         intptr_t        val;
72         intptr_t        addr;
73         int             type;
74         void           *p;
75
76         _uc = (ucontext_t *) _p;
77         _mc = &_uc->uc_mcontext;
78
79         pv  = (u1 *) _mc->sc_regs[REG_PV];
80         sp  = (u1 *) _mc->sc_regs[REG_SP];
81         ra  = (u1 *) _mc->sc_regs[REG_RA];           /* this is correct for leafs */
82         xpc = (u1 *) _mc->sc_pc;
83
84         /* get exception-throwing instruction */
85
86         mcode = *((u4 *) xpc);
87
88         d    = M_MEM_GET_A(mcode);
89         s1   = M_MEM_GET_B(mcode);
90         disp = M_MEM_GET_DISP(mcode);
91
92         val  = _mc->sc_regs[d];
93
94         /* check for special-load */
95
96         if (s1 == REG_ZERO) {
97                 /* we use the exception type as load displacement */
98
99                 type = disp;
100         }
101         else {
102                 /* This is a normal NPE: addr must be NULL and the NPE-type
103                    define is 0. */
104
105                 addr = _mc->sc_regs[s1];
106                 type = (int) addr;
107         }
108
109         /* create stackframeinfo */
110
111         stacktrace_create_extern_stackframeinfo(&sfi, pv, sp, ra, xpc);
112
113         /* Handle the type. */
114
115         p = signal_handle(xpc, type, val);
116
117         /* remove stackframeinfo */
118
119         stacktrace_remove_stackframeinfo(&sfi);
120
121         /* set registers */
122
123         if (p != NULL) {
124                 _mc->sc_regs[REG_ITMP1_XPTR] = (intptr_t) p;
125                 _mc->sc_regs[REG_ITMP2_XPC]  = (intptr_t) xpc;
126                 _mc->sc_pc                   = (intptr_t) asm_handle_exception;
127         }
128 }
129
130
131 /* md_signal_handler_sigusr2 ***************************************************
132
133    Signal handler for profiling sampling.
134
135 *******************************************************************************/
136
137 #if defined(ENABLE_THREADS)
138 void md_signal_handler_sigusr2(int sig, siginfo_t *siginfo, void *_p)
139 {
140         threadobject *tobj;
141         ucontext_t   *_uc;
142         mcontext_t   *_mc;
143         u1           *pc;
144
145         tobj = THREADOBJECT;
146
147         _uc = (ucontext_t *) _p;
148         _mc = &_uc->uc_mcontext;
149
150         pc = (u1 *) _mc->sc_pc;
151
152         tobj->pc = pc;
153 }
154 #endif
155
156
157 /* md_replace_executionstate_read **********************************************
158
159    Read the given context into an executionstate for Replacement.
160
161 *******************************************************************************/
162
163 #if defined(ENABLE_REPLACEMENT)
164 void md_replace_executionstate_read(executionstate_t *es, void *context)
165 {
166         ucontext_t *_uc;
167         mcontext_t *_mc;
168         s4          i;
169
170         _uc = (ucontext_t *) context;
171         _mc = &_uc->uc_mcontext;
172
173         /* read special registers */
174         es->pc = (u1 *) _mc->sc_pc;
175         es->sp = (u1 *) _mc->sc_regs[REG_SP];
176         es->pv = (u1 *) _mc->sc_regs[REG_PV];
177
178         /* read integer registers */
179         for (i = 0; i < INT_REG_CNT; i++)
180                 es->intregs[i] = _mc->sc_regs[i];
181
182         /* read float registers */
183         for (i = 0; i < FLT_REG_CNT; i++)
184                 es->fltregs[i] = _mc->sc_fpregs[i];
185 }
186 #endif
187
188
189 /* md_replace_executionstate_write *********************************************
190
191    Write the given executionstate back to the context for Replacement.
192
193 *******************************************************************************/
194
195 #if defined(ENABLE_REPLACEMENT)
196 void md_replace_executionstate_write(executionstate_t *es, void *context)
197 {
198         ucontext_t *_uc;
199         mcontext_t *_mc;
200         s4          i;
201
202         _uc = (ucontext_t *) context;
203         _mc = &_uc->uc_mcontext;
204
205         /* write integer registers */
206         for (i = 0; i < INT_REG_CNT; i++)
207                 _mc->sc_regs[i] = es->intregs[i];
208
209         /* write float registers */
210         for (i = 0; i < FLT_REG_CNT; i++)
211                 _mc->sc_fpregs[i] = es->fltregs[i];
212
213         /* write special registers */
214         _mc->sc_pc = es->pc;
215         _mc->sc_regs[REG_SP] = (ptrint) es->sp;
216         _mc->sc_regs[REG_PV] = (ptrint) es->pv;
217 }
218 #endif
219
220
221 /* md_critical_section_restart *************************************************
222
223    Search the critical sections tree for a matching section and set
224    the PC to the restart point, if necessary.
225
226 *******************************************************************************/
227
228 #if defined(ENABLE_THREADS)
229 void md_critical_section_restart(ucontext_t *_uc)
230 {
231         mcontext_t *_mc;
232         u1         *pc;
233         u1         *npc;
234
235         _mc = &_uc->uc_mcontext;
236
237         pc = (u1 *) _mc->sc_pc;
238
239         npc = critical_find_restart_point(pc);
240
241         if (npc != NULL)
242                 _mc->sc_pc = (ptrint) npc;
243 }
244 #endif
245
246
247 /*
248  * These are local overrides for various environment variables in Emacs.
249  * Please do not remove this and leave it at the end of the file, where
250  * Emacs will automagically detect them.
251  * ---------------------------------------------------------------------
252  * Local variables:
253  * mode: c
254  * indent-tabs-mode: t
255  * c-basic-offset: 4
256  * tab-width: 4
257  * End:
258  */