* Use new, more general, stacktrace system
[cacao.git] / src / vm / jit / x86_64 / md.c
1 /* src/vm/jit/x86_64/md.c - machine dependent x86_64 Linux 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: Christian Thalinger
28
29    Changes:
30
31    $Id: md.c 2956 2005-07-09 14:04:34Z twisti $
32
33 */
34
35
36 #define _GNU_SOURCE
37
38 #include <stdlib.h>
39 #include <ucontext.h>
40
41 #include "config.h"
42 #include "vm/jit/x86_64/md-abi.h"
43
44 #include "vm/exceptions.h"
45 #include "vm/options.h"
46 #include "vm/stringlocal.h"
47 #include "vm/jit/asmpart.h"
48
49
50 /* md_init *********************************************************************
51
52    Do some machine dependent initialization.
53
54 *******************************************************************************/
55
56 void md_init(void)
57 {
58         /* nothing to do */
59 }
60
61
62 /* signal_handler_sigsegv ******************************************************
63
64    NullPointerException signal handler for hardware null pointer check.
65
66 *******************************************************************************/
67
68 void signal_handler_sigsegv(int sig, siginfo_t *siginfo, void *_p)
69 {
70         ucontext_t     *_uc;
71         mcontext_t     *_mc;
72         stackframeinfo *sfi;
73         u1             *pv;
74         u1             *sp;
75         functionptr     ra;
76
77         _uc = (ucontext_t *) _p;
78         _mc = &_uc->uc_mcontext;
79
80         /* allocate stackframeinfo on heap */
81
82         sfi = NEW(stackframeinfo);
83
84         /* create exception */
85
86         /* ATTENTION: don't use CACAO internal REG_* defines as they are          */
87         /* different to the ones in <ucontext.h>                                  */
88
89         sp = (u1 *) _mc->gregs[REG_RSP];
90         ra = (functionptr) _mc->gregs[REG_RIP];
91
92         pv = (u1 *) codegen_findmethod(ra);
93
94         stacktrace_create_inline_stackframeinfo(sfi, pv, sp, ra);
95
96         _mc->gregs[REG_RAX] = (ptrint) new_nullpointerexception();
97
98         stacktrace_remove_stackframeinfo(sfi);
99
100         FREE(sfi, stackframeinfo);
101
102         _mc->gregs[REG_R10] = _mc->gregs[REG_RIP];               /* REG_ITMP2_XPC */
103         _mc->gregs[REG_RIP] = (ptrint) asm_handle_exception;
104 }
105
106
107 /* signal_handler_sigfpe *******************************************************
108
109    ArithmeticException signal handler for hardware divide by zero check.
110
111 *******************************************************************************/
112
113 void signal_handler_sigfpe(int sig, siginfo_t *siginfo, void *_p)
114 {
115         ucontext_t     *_uc;
116         mcontext_t     *_mc;
117         stackframeinfo *sfi;
118         u1             *pv;
119         u1             *sp;
120         functionptr     ra;
121
122         _uc = (ucontext_t *) _p;
123         _mc = &_uc->uc_mcontext;
124
125         /* allocate stackframeinfo on heap */
126
127         sfi = NEW(stackframeinfo);
128
129         /* create exception */
130
131         /* ATTENTION: don't use CACAO internal REG_* defines as they are          */
132         /* different to the ones in <ucontext.h>                                  */
133
134         sp = (u1 *) _mc->gregs[REG_RSP];
135         ra = (functionptr) _mc->gregs[REG_RIP];
136
137         pv = (u1 *) codegen_findmethod(ra);
138
139         stacktrace_create_inline_stackframeinfo(sfi, pv, sp, ra);
140
141         _mc->gregs[REG_RAX] = (ptrint) new_arithmeticexception();
142
143         stacktrace_remove_stackframeinfo(sfi);
144
145         FREE(sfi, stackframeinfo);
146
147         _mc->gregs[REG_R10] = _mc->gregs[REG_RIP];               /* REG_ITMP2_XPC */
148         _mc->gregs[REG_RIP] = (ptrint) asm_handle_exception;
149 }
150
151
152 #if defined(USE_THREADS) && defined(NATIVE_THREADS)
153 void thread_restartcriticalsection(ucontext_t *uc)
154 {
155         void *critical;
156
157         critical = thread_checkcritical((void *) uc->uc_mcontext.gregs[REG_RIP]);
158
159         if (critical)
160                 uc->uc_mcontext.gregs[REG_RIP] = (ptrint) critical;
161 }
162 #endif
163
164
165 /* md_stacktrace_get_returnaddress *********************************************
166
167    Returns the return address of the current stackframe, specified by
168    the passed stack pointer and the stack frame size.
169
170 *******************************************************************************/
171
172 functionptr md_stacktrace_get_returnaddress(u1 *sp, u4 framesize)
173 {
174         functionptr ra;
175
176         /* on x86_64 the return address is above the current stack frame */
177
178         ra = (functionptr) *((u1 **) (sp + framesize));
179
180         return ra;
181 }
182
183
184 /*
185  * These are local overrides for various environment variables in Emacs.
186  * Please do not remove this and leave it at the end of the file, where
187  * Emacs will automagically detect them.
188  * ---------------------------------------------------------------------
189  * Local variables:
190  * mode: c
191  * indent-tabs-mode: t
192  * c-basic-offset: 4
193  * tab-width: 4
194  * End:
195  */