* Merged with default branch at rev 16f3633aaa5a.
[cacao.git] / src / vm / jit / m68k / linux / md-os.c
1 /* src/vm/jit/m68k/linux/md-os.c - linux specific 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 */
26
27 #include "config.h"
28
29 #include "md-os.h"
30 #include "md-abi.h"
31
32 #include "vm/vm.h"
33 #include "vm/exceptions.h"
34 #include "vm/jit/asmpart.h"
35
36 #include <assert.h>
37 #include <stdlib.h>
38 #include <signal.h>
39 #include <stdint.h>
40 #include <sys/ucontext.h> /* has br0ken ucontext_t*/
41
42 /*
43  *  The glibc bundeled with my devels system ucontext.h differs with kernels ucontext.h. Not good.
44  *  The following stuff is taken from 2.6.10 + freescale coldfire patches:
45  */
46 typedef struct actual_fpregset {
47         int f_fpcntl[3];
48         int f_fpregs[8*3];
49 } actual_fpregset_t;
50
51 typedef struct actual_mcontext {
52         int version;
53         gregset_t gregs;        /* 0...7 = %d0-%d7, 8...15 = %a0-%a7 */
54         actual_fpregset_t fpregs;
55 } actual_mcontext_t;
56
57 #define GREGS_ADRREG_OFF        8
58
59 typedef struct actual_ucontext {
60         unsigned long     uc_flags;
61         struct actual_ucontext  *uc_link;
62         stack_t           uc_stack;
63         struct actual_mcontext   uc_mcontext;
64         unsigned long     uc_filler[80];
65         sigset_t          uc_sigmask;   /* mask last for extensibility */
66 } actual_ucontext_t;
67
68
69 /*
70  *      linux specific initializations
71  */
72 void md_init_linux()
73 {
74         struct sigaction act;
75         
76         act.sa_sigaction = md_signal_handler_sigill;
77         act.sa_flags     = SA_NODEFER | SA_SIGINFO;
78
79         if (sigaction(SIGILL, &act, NULL) == -1)        {
80                 vm_abort("md_linux_init: Error registering signal handler");
81         }
82 }
83
84 /* md_signal_handler_sigsegv ******************************************
85  *
86  * Invoked when a Nullpointerexception occured, or when the cm 
87  * crashes, hard to tell the difference. 
88  **********************************************************************/
89 void md_signal_handler_sigsegv(int sig, siginfo_t *siginfo, actual_ucontext_t *_uc) 
90 {       
91         stackframeinfo sfi;
92         uint32_t        xpc, sp;
93         uint16_t        opc;
94         uint32_t        val, regval, off;
95         bool            adrreg;
96         void        *p;
97         mcontext_t      *_mc;
98
99         _mc = &_uc->uc_mcontext;
100         sp = _mc->gregs[R_SP];
101         xpc = _mc->gregs[R_PC];
102         opc = *(uint16_t*)xpc;
103
104         /* m68k uses a whole bunch of difficult to differ load instructions where null pointer check could occure */
105         /* the first two are 2*32bit sized */
106         adrreg = false;
107         off = 0;
108         if ((opc & ((2<<12) | (5<<3))) == ((2<<12) | (5<<3)))   {
109                 if (opc & (1<<6)) adrreg = true;                /* M_XLD */
110                 val = opc & 0x0007;
111                 off = *(uint16_t*)(xpc+1);
112         } else if ((opc & ((2<<12) | (5<<6))) == ((2<<12) | (5<<6)))    {
113                 if (opc & (1<<3)) adrreg = true;                /* M_XST */
114                 val = (opc >> 9) & 0x0007;
115                 off = *(uint16_t*)(xpc+1);
116         } else {
117                 
118                 /*fprintf(stderr, "SEGV: short instructions %x\n", opc);
119                 */
120                 /* now check the 32 bit sized instructions */
121                 if ((opc & (2<<3)) == (2<<3))   {
122                         if (opc & (1<<6)) adrreg = true;                /* M_L*X */
123                         val = opc & 0x0007;
124                 } else if ((opc & (2<<6)) == (2<<6))    {
125                         if (opc & (1<<3)) adrreg = true;                /* M_S*X */
126                         val = (opc >> 9) & 0x0007;
127                 } else {
128                         vm_abort("md_signal_handler_sigsegv: unhandeled faulting opcode %x", opc);
129                 }
130         }
131
132         /* val is now register number, adreg == true if it is an address regsiter */
133         regval = _mc->gregs[adrreg ? GREGS_ADRREG_OFF + val : val];
134         /*
135         if (regval != 0)        {
136                 vm_abort("md_signal_handler_sigsegv: faulting address is not NULL: addr=%p", regval);
137         }*/
138
139
140         /*fprintf(stderr, "SEGV: sp=%x, xpc=%x, regval=%x\n", sp, xpc, regval);
141         */
142
143         /* create stackframeinfo */
144
145         stacktrace_create_extern_stackframeinfo(&sfi, NULL, sp, xpc, xpc);
146
147         /* Handle the type. */
148
149         p = signal_handle(xpc, EXCEPTION_HARDWARE_NULLPOINTER, regval);
150
151         /* remove stackframeinfo */
152
153         stacktrace_remove_stackframeinfo(&sfi);
154
155         _mc->gregs[GREGS_ADRREG_OFF + REG_ATMP1]     = (intptr_t) p;
156         _mc->gregs[GREGS_ADRREG_OFF + REG_ATMP2_XPC] = (intptr_t) xpc;
157         _mc->gregs[R_PC]                             = (intptr_t) asm_handle_exception;
158 }
159
160 /* md_signal_handler_sigill *******************************************
161  *
162  * This handler is used to generate hardware exceptions.
163  * Type of exception derived from trap number.
164  * If an object is needed a tst instruction (2 byte long) has
165  * been created directly before the trap instruction (2 bytes long).
166  * the last 3 bit of this tst instruction contain the register number.
167  **********************************************************************/
168 void md_signal_handler_sigill(int sig, siginfo_t *siginfo, actual_ucontext_t *_uc) 
169 {
170         stackframeinfo sfi;
171         uint32_t        xpc, sp;
172         uint16_t        opc;
173         uint32_t        type;
174         uint32_t        val, regval;
175         void        *p;
176         mcontext_t      *_mc;
177
178         xpc = siginfo->si_addr;
179
180         if (siginfo->si_code == ILL_ILLOPC)     {
181                 vm_abort("md_signal_handler_sigill: the illegal instruction @ 0x%x, aborting", xpc);
182         }
183         if (siginfo->si_code != ILL_ILLTRP)     {
184                 vm_abort("md_signal_handler_sigill: Caught something not a trap");
185         }
186
187         opc = *(uint16_t*)(xpc-2);
188
189         assert( (opc&0xfff0) == 0x4e40 );
190         type = opc & 0x000f;            /* filter trap number */
191
192         _mc = &_uc->uc_mcontext;
193         sp = _mc->gregs[R_SP];
194
195         /* Figure out in which register the object causing the exception resides for appropiate exceptions
196          */
197         switch (type)   {
198                 case EXCEPTION_HARDWARE_ARITHMETIC:
199                 case EXCEPTION_HARDWARE_EXCEPTION:
200                         /* nothing */
201                         break;
202                 case EXCEPTION_HARDWARE_CLASSCAST: 
203                         regval = *(uint16_t*)(xpc-4);
204                         assert( (regval&0xfff0) == 0x4a00 );
205                         /* was in a address register */
206                         regval = _mc->gregs[ GREGS_ADRREG_OFF + (regval & 0x7) ];
207                         break;
208                 case EXCEPTION_HARDWARE_ARRAYINDEXOUTOFBOUNDS:
209                         regval = *(uint16_t*)(xpc-4);
210                         assert( (regval&0xfff0) == 0x4a00 );
211                         /* was a data register */
212                         regval = _mc->gregs[regval & 0x7];
213                         break;
214                 case M68K_EXCEPTION_HARDWARE_NULLPOINTER:
215                         type = EXCEPTION_HARDWARE_NULLPOINTER;
216                         break;
217
218                 default: assert(0);
219         }
220
221         /*fprintf(stderr, "NEW HWE: sp=%x, xpc=%x, tpye=%x, regval=%x\n", sp, xpc, type, regval);
222         */
223
224         /* create stackframeinfo */
225
226         stacktrace_create_extern_stackframeinfo(&sfi, NULL, sp, xpc, xpc);
227
228         /* Handle the type. */
229
230         p = signal_handle(xpc, type, val);
231
232         /* remove stackframeinfo */
233
234         stacktrace_remove_stackframeinfo(&sfi);
235
236         _mc->gregs[GREGS_ADRREG_OFF + REG_ATMP1]     = (intptr_t) p;
237         _mc->gregs[GREGS_ADRREG_OFF + REG_ATMP2_XPC] = (intptr_t) xpc;
238         _mc->gregs[R_PC]                             = (intptr_t) asm_handle_exception;
239 }
240
241 /* md_signal_handler_sigusr1 ***************************************************
242
243    Signal handler for suspending threads.
244
245 *******************************************************************************/
246
247 #if defined(ENABLE_THREADS) && defined(ENABLE_GC_CACAO)
248 void md_signal_handler_sigusr1(int sig, siginfo_t *siginfo, void *_p)
249 {
250         ucontext_t *_uc;
251         mcontext_t *_mc;
252         u1         *pc;
253         u1         *sp;
254
255         _uc = (ucontext_t *) _p;
256         _mc = &_uc->uc_mcontext;
257
258         /* get the PC and SP for this thread */
259         pc = (u1 *) _mc->gregs[R_PC];
260         sp = (u1 *) _mc->gregs[R_SP];
261
262         /* now suspend the current thread */
263         threads_suspend_ack(pc, sp);
264 }
265 #endif
266
267
268 /*
269  * These are local overrides for various environment variables in Emacs.
270  * Please do not remove this and leave it at the end of the file, where
271  * Emacs will automagically detect them.
272  * ---------------------------------------------------------------------
273  * Local variables:
274  * mode: c
275  * indent-tabs-mode: t
276  * c-basic-offset: 4
277  * tab-width: 4
278  * End:
279  * vim:noexpandtab:sw=4:ts=4:
280  */