c143c19745867c8be4cdb39450ced3afff993aad
[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 2977 2005-07-10 22:21:36Z 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         u1          *sp;
73         functionptr  ra;
74
75         _uc = (ucontext_t *) _p;
76         _mc = &_uc->uc_mcontext;
77
78         /* ATTENTION: don't use CACAO internal REG_* defines as they are          */
79         /* different to the ones in <ucontext.h>                                  */
80
81         sp = (u1 *) _mc->gregs[REG_RSP];
82         ra = (functionptr) _mc->gregs[REG_RIP];
83
84         _mc->gregs[REG_RAX] =
85                 (ptrint) stacktrace_new_nullpointerexception(NULL, sp, ra);
86
87         _mc->gregs[REG_R10] = _mc->gregs[REG_RIP];               /* REG_ITMP2_XPC */
88         _mc->gregs[REG_RIP] = (ptrint) asm_handle_exception;
89 }
90
91
92 /* signal_handler_sigfpe *******************************************************
93
94    ArithmeticException signal handler for hardware divide by zero check.
95
96 *******************************************************************************/
97
98 void signal_handler_sigfpe(int sig, siginfo_t *siginfo, void *_p)
99 {
100         ucontext_t  *_uc;
101         mcontext_t  *_mc;
102         u1          *sp;
103         functionptr  ra;
104
105         _uc = (ucontext_t *) _p;
106         _mc = &_uc->uc_mcontext;
107
108         /* ATTENTION: don't use CACAO internal REG_* defines as they are          */
109         /* different to the ones in <ucontext.h>                                  */
110
111         sp = (u1 *) _mc->gregs[REG_RSP];
112         ra = (functionptr) _mc->gregs[REG_RIP];
113
114         _mc->gregs[REG_RAX] =
115                 (ptrint) stacktrace_new_arithmeticexception(NULL, sp, ra);
116
117         _mc->gregs[REG_R10] = _mc->gregs[REG_RIP];               /* REG_ITMP2_XPC */
118         _mc->gregs[REG_RIP] = (ptrint) asm_handle_exception;
119 }
120
121
122 #if defined(USE_THREADS) && defined(NATIVE_THREADS)
123 void thread_restartcriticalsection(ucontext_t *uc)
124 {
125         void *critical;
126
127         critical = thread_checkcritical((void *) uc->uc_mcontext.gregs[REG_RIP]);
128
129         if (critical)
130                 uc->uc_mcontext.gregs[REG_RIP] = (ptrint) critical;
131 }
132 #endif
133
134
135 /* md_stacktrace_get_returnaddress *********************************************
136
137    Returns the return address of the current stackframe, specified by
138    the passed stack pointer and the stack frame size.
139
140 *******************************************************************************/
141
142 functionptr md_stacktrace_get_returnaddress(u1 *sp, u4 framesize)
143 {
144         functionptr ra;
145
146         /* on x86_64 the return address is above the current stack frame */
147
148         ra = (functionptr) (ptrint) *((u1 **) (sp + framesize));
149
150         return ra;
151 }
152
153
154 /*
155  * These are local overrides for various environment variables in Emacs.
156  * Please do not remove this and leave it at the end of the file, where
157  * Emacs will automagically detect them.
158  * ---------------------------------------------------------------------
159  * Local variables:
160  * mode: c
161  * indent-tabs-mode: t
162  * c-basic-offset: 4
163  * tab-width: 4
164  * End:
165  */