* src/vm/jit/x86_64/codegen.c (codegen_emit): Builtin stubs are called
[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 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  * BLA BLA
87  */
88 void md_signal_handler_sigsegv(/*int sig, siginfo_t *siginfo, void *_p*/) 
89 {       
90         assert(0); 
91 }
92
93 /*
94  * This handler is used to generate hardware exceptions.
95  * Type of exception derived from trap number.
96  * If an object is needed a tst instruction (2 byte long) has
97  * been created directly before the trap instruction (2 bytes long).
98  * the last 3 bit of this tst instruction contain the register number.
99  */
100 void md_signal_handler_sigill(int sig, siginfo_t *siginfo, actual_ucontext_t *_uc) 
101 {
102         uint32_t        xpc, sp;
103         uint16_t        opc;
104         uint32_t        type;
105         uint32_t        val, regval;
106         java_objectheader *e;
107         mcontext_t      *_mc;
108
109         if (siginfo->si_code != ILL_ILLTRP)     {
110                 vm_abort("md_signal_handler_sigill: Caught something not a trap");
111         }
112
113         xpc = siginfo->si_addr;
114         opc = *(uint16_t*)(xpc-2);
115
116         if (opc == 0x4afc)      {
117                 vm_abort("md_signal_handler_sigill: the illegal instruction @ 0x%x, aborting", xpc);
118         }
119
120         assert( (opc&0xfff0) == 0x4e40 );
121         type = opc & 0x000f;            /* filter trap number */
122
123         _mc = &_uc->uc_mcontext;
124         sp = _mc->gregs[R_SP];
125
126         /* Figure out in which register the object causing the exception resides for exceptions
127          * appropiate.
128          */
129         switch (type)   {
130                 case EXCEPTION_HARDWARE_CLASSCAST: 
131                         regval = *(uint16_t*)(xpc-4);
132                         assert( (regval&0xfff0) == 0x4a00 );
133                         /* was in a address register */
134                         regval = _mc->gregs[ 8 + (regval & 0x7) ];
135                         break;
136                 default: assert(0);
137         }
138
139         fprintf(stderr, "NEW HWE: sp=%x, xpc=%x, tpye=%x, regval=%x\n", sp, xpc, type, regval);
140         e = exceptions_new_hardware_exception(0, sp, xpc, xpc, type, regval);
141
142         _mc->gregs[REG_ATMP1]     = (ptrint) e;
143         _mc->gregs[REG_ATMP2_XPC] = (ptrint) xpc;
144         _mc->gregs[R_PC]          = (ptrint) asm_handle_exception;
145 }