* Merged in twisti-branch.
[cacao.git] / src / vm / jit / powerpc / linux / md-os.c
1 /* src/vm/jit/powerpc/linux/md-os.c - machine dependent PowerPC 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 7592 2007-03-28 20:12:33Z twisti $
26
27 */
28
29
30 #include "config.h"
31
32 #include <assert.h>
33 #include <ucontext.h>
34
35 #include "vm/types.h"
36
37 #include "vm/jit/powerpc/codegen.h"
38 #include "vm/jit/powerpc/linux/md-abi.h"
39
40 #if defined(ENABLE_THREADS)
41 # include "threads/native/threads.h"
42 #endif
43
44 #include "vm/exceptions.h"
45 #include "vm/signallocal.h"
46 #include "vm/stringlocal.h"
47 #include "vm/jit/asmpart.h"
48
49 #if defined(ENABLE_PROFILING)
50 # include "vm/jit/optimizing/profile.h"
51 #endif
52
53 #include "vm/jit/stacktrace.h"
54
55
56 /* md_signal_handler_sigsegv ***************************************************
57
58    Signal handler for hardware-exceptions.
59
60 *******************************************************************************/
61
62 void md_signal_handler_sigsegv(int sig, siginfo_t *siginfo, void *_p)
63 {
64         ucontext_t        *_uc;
65         mcontext_t        *_mc;
66         u1                *pv;
67         u1                *sp;
68         u1                *ra;
69         u1                *xpc;
70         u4                 mcode;
71         s4                 s1;
72         s4                 disp;
73         s4                 d;
74         ptrint             addr;
75         ptrint             val;
76         s4                 type;
77         java_objectheader *o;
78
79         _uc = (ucontext_t *) _p;
80         _mc = _uc->uc_mcontext.uc_regs;
81
82         pv  = (u1 *) _mc->gregs[REG_PV];
83         sp  = (u1 *) _mc->gregs[REG_SP];
84         ra  = (u1 *) _mc->gregs[PT_LNK];         /* this is correct for leafs */
85         xpc = (u1 *) _mc->gregs[PT_NIP];
86
87         /* get exception-throwing instruction */
88
89         mcode = *((u4 *) xpc);
90
91         s1   = M_INSTR_OP2_IMM_A(mcode);
92         disp = M_INSTR_OP2_IMM_I(mcode);
93         d    = M_INSTR_OP2_IMM_D(mcode);
94
95         val  = _mc->gregs[d];
96
97         /* check for special-load */
98
99         if (s1 == REG_ZERO) {
100                 /* we use the exception type as load displacement */
101
102                 type = disp;
103         }
104         else {
105                 /* This is a normal NPE: addr must be NULL and the NPE-type
106                    define is 0. */
107
108                 addr = _mc->gregs[s1];
109                 type = (s4) addr;
110         }
111
112         /* generate appropriate exception */
113
114         o = exceptions_new_hardware_exception(pv, sp, ra, xpc, type, val);
115
116         /* set registers */
117
118         _mc->gregs[REG_ITMP1_XPTR] = (ptrint) o;
119         _mc->gregs[REG_ITMP2_XPC]  = (ptrint) xpc;
120         _mc->gregs[PT_NIP]         = (ptrint) asm_handle_exception;
121 }
122
123
124 /* md_signal_handler_sigtrap ***************************************************
125
126    Signal handler for hardware-traps.
127
128 *******************************************************************************/
129
130 void md_signal_handler_sigtrap(int sig, siginfo_t *siginfo, void *_p)
131 {
132         ucontext_t        *_uc;
133         mcontext_t        *_mc;
134         u1                *pv;
135         u1                *sp;
136         u1                *ra;
137         u1                *xpc;
138         u4                 mcode;
139         s4                 s1;
140         ptrint             val;
141         s4                 type;
142         java_objectheader *o;
143
144         _uc = (ucontext_t *) _p;
145         _mc = _uc->uc_mcontext.uc_regs;
146
147         pv  = (u1 *) _mc->gregs[REG_PV];
148         sp  = (u1 *) _mc->gregs[REG_SP];
149         ra  = (u1 *) _mc->gregs[PT_LNK];         /* this is correct for leafs */
150         xpc = (u1 *) _mc->gregs[PT_NIP];
151
152         /* get exception-throwing instruction */
153
154         mcode = *((u4 *) xpc);
155
156         s1 = M_OP3_GET_A(mcode);
157
158         /* for now we only handle ArrayIndexOutOfBoundsException */
159
160         type = EXCEPTION_HARDWARE_ARRAYINDEXOUTOFBOUNDS;
161         val  = _mc->gregs[s1];
162
163         /* generate appropriate exception */
164
165         o = exceptions_new_hardware_exception(pv, sp, ra, xpc, type, val);
166
167         /* set registers */
168
169         _mc->gregs[REG_ITMP1_XPTR] = (ptrint) o;
170         _mc->gregs[REG_ITMP2_XPC]  = (ptrint) xpc;
171         _mc->gregs[PT_NIP]         = (ptrint) asm_handle_exception;
172 }
173
174
175 /* md_signal_handler_sigusr2 ***************************************************
176
177    Signal handler for profiling sampling.
178
179 *******************************************************************************/
180
181 #if defined(ENABLE_THREADS)
182 void md_signal_handler_sigusr2(int sig, siginfo_t *siginfo, void *_p)
183 {
184         threadobject *tobj;
185         ucontext_t   *_uc;
186         mcontext_t   *_mc;
187         u1           *pc;
188
189         tobj = THREADOBJECT;
190
191         _uc = (ucontext_t *) _p;
192         _mc = _uc->uc_mcontext.uc_regs;
193
194         pc = (u1 *) _mc->gregs[PT_NIP];
195
196         tobj->pc = pc;
197 }
198
199
200 void thread_restartcriticalsection(ucontext_t *_uc)
201 {
202         mcontext_t *_mc;
203         u1         *pc;
204         void       *critical;
205
206         _mc = _uc->uc_mcontext.uc_regs;
207
208         pc = (u1 *) _mc->gregs[PT_NIP];
209
210         critical = critical_find_restart_point(pc);
211
212         if (critical)
213                 _mc->gregs[PT_NIP] = (ptrint) critical;
214 }
215 #endif
216
217
218 /*
219  * These are local overrides for various environment variables in Emacs.
220  * Please do not remove this and leave it at the end of the file, where
221  * Emacs will automagically detect them.
222  * ---------------------------------------------------------------------
223  * Local variables:
224  * mode: c
225  * indent-tabs-mode: t
226  * c-basic-offset: 4
227  * tab-width: 4
228  * End:
229  */