* Removed forgotten variable
[cacao.git] / src / vm / jit / alpha / md.c
1 /* src/vm/jit/alpha/md.c - machine dependent Alpha functions
2
3    Copyright (C) 1996-2005 R. Grafl, A. Krall, C. Kruegel, C. Oates,
4    R. Obermaisser, M. Platter, M. Probst, S. Ring, E. Steiner,
5    C. Thalinger, D. Thuernbeck, P. Tomsich, C. Ullrich, J. Wenninger,
6    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., 59 Temple Place - Suite 330, Boston, MA
23    02111-1307, USA.
24
25    Contact: cacao@complang.tuwien.ac.at
26
27    Authors: Andreas Krall
28             Reinhard Grafl
29
30    Changes: Joseph Wenninger
31             Christian Thalinger
32
33    $Id: md.c 2987 2005-07-11 19:01:39Z twisti $
34
35 */
36
37
38 #include <assert.h>
39 #include <ucontext.h>
40
41 #include "config.h"
42
43 #include "vm/jit/alpha/asmoffsets.h"
44 #include "vm/jit/alpha/md-abi.h"
45 #include "vm/jit/alpha/types.h"
46
47 #include "vm/exceptions.h"
48 #include "vm/stringlocal.h"
49 #include "vm/jit/asmpart.h"
50
51
52 /* md_init *********************************************************************
53
54    Do some machine dependent initialization.
55
56 *******************************************************************************/
57
58 void md_init(void)
59 {
60 #if 0
61         /* XXX TWISTI: do we really need this? fptest's seem to work fine */
62
63 #if defined(__LINUX__)
64 /* Linux on Digital Alpha needs an initialisation of the ieee floating point
65         control for IEEE compliant arithmetic (option -mieee of GCC). Under
66         Digital Unix this is done automatically.
67 */
68
69 #include <asm/fpu.h>
70
71 extern unsigned long ieee_get_fp_control();
72 extern void ieee_set_fp_control(unsigned long fp_control);
73
74         /* initialize floating point control */
75
76         ieee_set_fp_control(ieee_get_fp_control()
77                                                 & ~IEEE_TRAP_ENABLE_INV
78                                                 & ~IEEE_TRAP_ENABLE_DZE
79 /*                                              & ~IEEE_TRAP_ENABLE_UNF   we dont want underflow */
80                                                 & ~IEEE_TRAP_ENABLE_OVF);
81 #endif
82 #endif
83
84         /* nothing to do */
85 }
86
87
88 /* signal_handler_sigsegv ******************************************************
89
90    NullPointerException signal handler for hardware null pointer check.
91
92 *******************************************************************************/
93
94 void signal_handler_sigsegv(int sig, siginfo_t *siginfo, void *_p)
95 {
96         ucontext_t  *_uc;
97         mcontext_t  *_mc;
98         u4           instr;
99         ptrint       addr;
100         u1          *pv;
101         u1          *sp;
102         functionptr  ra;
103         functionptr  xpc;
104
105         _uc = (ucontext_t *) _p;
106         _mc = &_uc->uc_mcontext;
107
108         instr = *((s4 *) (_mc->sc_pc));
109         addr = _mc->sc_regs[(instr >> 16) & 0x1f];
110
111         if (addr == 0) {
112                 pv  = (u1 *) _mc->sc_regs[REG_PV];
113                 sp  = (u1 *) _mc->sc_regs[REG_SP];
114                 ra  = (u1 *) _mc->sc_regs[REG_RA];  /* this is correct for leafs      */
115                 xpc = (functionptr) _mc->sc_pc;
116
117                 _mc->sc_regs[REG_ITMP1_XPTR] =
118                         (ptrint) stacktrace_new_nullpointerexception(pv, sp, ra, xpc);
119
120                 _mc->sc_regs[REG_ITMP2_XPC] = (ptrint) xpc;
121                 _mc->sc_pc = (ptrint) asm_handle_exception;
122
123         } else {
124                 addr += (long) ((instr << 16) >> 16);
125
126                 throw_cacao_exception_exit(string_java_lang_InternalError,
127                                                                    "Segmentation fault: 0x%016lx at 0x%016lx\n",
128                                                                    addr, _mc->sc_pc);
129         }
130 }
131
132
133 #if defined(USE_THREADS) && defined(NATIVE_THREADS)
134 void thread_restartcriticalsection(ucontext_t *uc)
135 {
136         void *critical;
137
138         critical = thread_checkcritical((void *) uc->uc_mcontext.sc_pc);
139
140         if (critical)
141                 uc->uc_mcontext.sc_pc = (ptrint) critical;
142 }
143 #endif
144
145
146 /* md_stacktrace_get_returnaddress *********************************************
147
148    Returns the return address of the current stackframe, specified by
149    the passed stack pointer and the stack frame size.
150
151 *******************************************************************************/
152
153 functionptr md_stacktrace_get_returnaddress(u1 *sp, u4 framesize)
154 {
155         functionptr ra;
156
157         /* on Alpha the return address is located on the top of the stackframe */
158
159         ra = (functionptr) *((u1 **) (sp + framesize - SIZEOF_VOID_P));
160
161         return ra;
162 }
163
164
165 /* codegen_findmethod **********************************************************
166
167    Machine code:
168
169    6b5b4000    jsr     (pv)
170    237affe8    lda     pv,-24(ra)
171
172 *******************************************************************************/
173
174 functionptr codegen_findmethod(functionptr pc)
175 {
176         u1 *ra;
177         u1 *pv;
178         u4  mcode;
179         s2  offset;
180
181         ra = (u1 *) pc;
182         pv = ra;
183
184         /* get offset of first instruction (lda) */
185
186         mcode = *((u4 *) ra);
187
188         if ((mcode >> 16) != 0x237a) {
189                 log_text("No `lda pv,x(ra)' instruction found on return address!");
190                 assert(0);
191         }
192
193         offset = (s2) (mcode & 0x0000ffff);
194         pv += offset;
195
196         /* check for second instruction (ldah) */
197
198         mcode = *((u4 *) (ra + 1 * 4));
199
200         if ((mcode >> 16) == 0x177b) {
201                 offset = (s2) (mcode << 16);
202                 pv += offset;
203         }
204
205         return (functionptr) pv;
206 }
207
208
209 /*
210  * These are local overrides for various environment variables in Emacs.
211  * Please do not remove this and leave it at the end of the file, where
212  * Emacs will automagically detect them.
213  * ---------------------------------------------------------------------
214  * Local variables:
215  * mode: c
216  * indent-tabs-mode: t
217  * c-basic-offset: 4
218  * tab-width: 4
219  * End:
220  */