2f5267ee23ed5c863b569e77d4f7949a767de2b7
[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    $Id: arch.h 5330 2006-09-05 18:43:12Z edwin $
26
27 */
28
29 #include "config.h"
30
31 #include "md-os.h"
32 #include "md-abi.h"
33
34 #include "vm/vm.h"
35 #include "vm/exceptions.h"
36 #include "vm/jit/asmpart.h"
37
38 #include <assert.h>
39 #include <stdlib.h>
40 #include <signal.h>
41 #include <stdint.h>
42 #include <sys/ucontext.h> /* has br0ken ucontext_t*/
43
44 /*
45  *  The glibc bundeled with my devels system ucontext.h differs with kernels ucontext.h. Not good.
46  *  The following stuff is taken from 2.6.10 + freescale coldfire patches:
47  */
48 typedef struct actual_fpregset {
49         int f_fpcntl[3];
50         int f_fpregs[8*3];
51 } actual_fpregset_t;
52
53 typedef struct actual_mcontext {
54         int version;
55         gregset_t gregs;        /* 0...7 = %d0-%d7, 8...15 = %a0-%a7 */
56         actual_fpregset_t fpregs;
57 } actual_mcontext_t;
58
59 #define GREGS_ADRREG_OFF        8
60
61 typedef struct actual_ucontext {
62         unsigned long     uc_flags;
63         struct actual_ucontext  *uc_link;
64         stack_t           uc_stack;
65         struct actual_mcontext   uc_mcontext;
66         unsigned long     uc_filler[80];
67         sigset_t          uc_sigmask;   /* mask last for extensibility */
68 } actual_ucontext_t;
69
70
71 /*
72  *      linux specific initializations
73  */
74 void md_init_linux()
75 {
76         struct sigaction act;
77         
78         act.sa_sigaction = md_signal_handler_sigill;
79         act.sa_flags     = SA_NODEFER | SA_SIGINFO;
80
81         if (sigaction(SIGILL, &act, NULL) == -1)        {
82                 vm_abort("md_linux_init: Error registering signal handler");
83         }
84 }
85
86 /* md_signal_handler_sigsegv ******************************************
87  *
88  * Invoked when a Nullpointerexception occured, or when the cm 
89  * crashes, hard to tell the difference. 
90  **********************************************************************/
91 void md_signal_handler_sigsegv(int sig, siginfo_t *siginfo, actual_ucontext_t *_uc) 
92 {       
93         uint32_t        xpc, sp;
94         uint16_t        opc;
95         uint32_t        val, regval, off;
96         bool            adrreg;
97         java_objectheader *e;
98         mcontext_t      *_mc;
99
100         _mc = &_uc->uc_mcontext;
101         sp = _mc->gregs[R_SP];
102         xpc = _mc->gregs[R_PC];
103         opc = *(uint16_t*)xpc;
104
105         /* m68k uses a whole bunch of difficult to differ load instructions where null pointer check could occure */
106         /* the first two are 2*32bit sized */
107         adrreg = false;
108         off = 0;
109         if ((opc & ((2<<12) | (5<<3))) == ((2<<12) | (5<<3)))   {
110                 if (opc & (1<<6)) adrreg = true;                /* M_XLD */
111                 val = opc & 0x0007;
112                 off = *(uint16_t*)(xpc+1);
113         } else if ((opc & ((2<<12) | (5<<6))) == ((2<<12) | (5<<6)))    {
114                 if (opc & (1<<3)) adrreg = true;                /* M_XST */
115                 val = (opc >> 9) & 0x0007;
116                 off = *(uint16_t*)(xpc+1);
117         } else {
118                 fprintf(stderr, "SEGV: short instructions %x\n", opc);
119                 /* now check the 32 bit sized instructions */
120                 if ((opc & (2<<3)) == (2<<3))   {
121                         if (opc & (1<<6)) adrreg = true;                /* M_L*X */
122                         val = opc & 0x0007;
123                 } else if ((opc & (2<<6)) == (2<<6))    {
124                         if (opc & (1<<3)) adrreg = true;                /* M_S*X */
125                         val = (opc >> 9) & 0x0007;
126                 } else {
127                         vm_abort("md_signal_handler_sigsegv: unhandeled faulting opcode %x", opc);
128                 }
129         }
130
131         /* val is now register number, adreg == true if it is an address regsiter */
132         regval = _mc->gregs[adrreg ? GREGS_ADRREG_OFF + val : val];
133         /*
134         if (regval != 0)        {
135                 vm_abort("md_signal_handler_sigsegv: faulting address is not NULL: addr=%p", regval);
136         }*/
137
138
139         fprintf(stderr, "SEGV: sp=%x, xpc=%x, regval=%x\n", sp, xpc, regval);
140         e = exceptions_new_hardware_exception(0, sp, xpc, xpc, EXCEPTION_HARDWARE_NULLPOINTER, regval);
141
142         _mc->gregs[GREGS_ADRREG_OFF + REG_ATMP1]     = (ptrint) e;
143         _mc->gregs[GREGS_ADRREG_OFF + REG_ATMP2_XPC] = (ptrint) xpc;
144         _mc->gregs[R_PC]          = (ptrint) asm_handle_exception;
145 }
146
147 /* md_signal_handler_sigill *******************************************
148  *
149  * This handler is used to generate hardware exceptions.
150  * Type of exception derived from trap number.
151  * If an object is needed a tst instruction (2 byte long) has
152  * been created directly before the trap instruction (2 bytes long).
153  * the last 3 bit of this tst instruction contain the register number.
154  **********************************************************************/
155 void md_signal_handler_sigill(int sig, siginfo_t *siginfo, actual_ucontext_t *_uc) 
156 {
157         uint32_t        xpc, sp;
158         uint16_t        opc;
159         uint32_t        type;
160         uint32_t        val, regval;
161         java_objectheader *e;
162         mcontext_t      *_mc;
163
164         xpc = siginfo->si_addr;
165
166         if (siginfo->si_code == ILL_ILLOPC)     {
167                 vm_abort("md_signal_handler_sigill: the illegal instruction @ 0x%x, aborting", xpc);
168         }
169         if (siginfo->si_code != ILL_ILLTRP)     {
170                 vm_abort("md_signal_handler_sigill: Caught something not a trap");
171         }
172
173         opc = *(uint16_t*)(xpc-2);
174
175         assert( (opc&0xfff0) == 0x4e40 );
176         type = opc & 0x000f;            /* filter trap number */
177
178         _mc = &_uc->uc_mcontext;
179         sp = _mc->gregs[R_SP];
180
181         /* Figure out in which register the object causing the exception resides for appropiate exceptions
182          */
183         switch (type)   {
184                 case EXCEPTION_HARDWARE_EXCEPTION:
185                         /* nothing */
186                         break;
187                 case EXCEPTION_HARDWARE_CLASSCAST: 
188                         regval = *(uint16_t*)(xpc-4);
189                         assert( (regval&0xfff0) == 0x4a00 );
190                         /* was in a address register */
191                         regval = _mc->gregs[ GREGS_ADRREG_OFF + (regval & 0x7) ];
192                         break;
193                 case EXCEPTION_HARDWARE_ARRAYINDEXOUTOFBOUNDS:
194                         regval = 0; /* FIXME */
195                         break;
196                 case M68K_EXCEPTION_HARDWARE_NULLPOINTER:
197                         type = EXCEPTION_HARDWARE_NULLPOINTER;
198                         break;
199
200                 default: assert(0);
201         }
202
203         /*fprintf(stderr, "NEW HWE: sp=%x, xpc=%x, tpye=%x, regval=%x\n", sp, xpc, type, regval);*/
204         e = exceptions_new_hardware_exception(0, sp, xpc, xpc, type, regval);
205
206         _mc->gregs[GREGS_ADRREG_OFF + REG_ATMP1]     = (ptrint) e;
207         _mc->gregs[GREGS_ADRREG_OFF + REG_ATMP2_XPC] = (ptrint) xpc;
208         _mc->gregs[R_PC]          = (ptrint) asm_handle_exception;
209 }