* Cleanup and trying to make the functions a bit simpler and clearer.
[cacao.git] / src / vm / jit / i386 / freebsd / md.c
1 /* src/vm/jit/i386/freebsd/md.c - machine dependent i386 FreeBSD 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 2829 2005-06-25 15:29:50Z twisti $
32
33 */
34
35
36 #include <ucontext.h>
37
38 #include "config.h"
39 #include "vm/jit/i386/md-abi.h"
40
41 #include "vm/stringlocal.h"
42 #include "vm/jit/asmpart.h"
43
44
45 /* md_init *********************************************************************
46
47    Do some machine dependent initialization.
48
49 *******************************************************************************/
50
51 void md_init(void)
52 {
53         /* nothing to do */
54 }
55
56
57 /* signal_handler_sigsegv ******************************************************
58
59    NullPointerException signal handler for hardware null pointer check.
60
61 *******************************************************************************/
62
63 void signal_handler_sigsegv(int sig, siginfo_t *siginfo, void *_p)
64 {
65         ucontext_t *_uc;
66         mcontext_t *_mc;
67
68         _uc = (ucontext_t *) _p;
69         _mc = &_uc->uc_mcontext;
70         
71         _mc->mc_eax = (ptrint) string_java_lang_NullPointerException;
72         _mc->mc_ecx = _mc->mc_eip;                               /* REG_ITMP2_XPC */
73         _mc->mc_eip = (ptrint) asm_throw_and_handle_exception;
74 }
75
76
77 /* signal_handler_sigfpe *******************************************************
78
79    ArithmeticException signal handler for hardware divide by zero check.
80
81 *******************************************************************************/
82
83 void signal_handler_sigfpe(int sig, siginfo_t *siginfo, void *_p)
84 {
85         ucontext_t *_uc;
86         mcontext_t *_mc;
87
88         _uc = (ucontext_t *) _p;
89         _mc = &_uc->uc_mcontext;
90
91         _mc->mc_ecx = _mc->mc_eip;                               /* REG_ITMP2_XPC */
92         _mc->mc_eip = (ptrint) asm_throw_and_handle_hardware_arithmetic_exception;
93 }
94
95
96 #if defined(USE_THREADS) && defined(NATIVE_THREADS)
97 void thread_restartcriticalsection(ucontext_t *uc)
98 {
99         void *critical;
100
101         critical = thread_checkcritical((void *) uc->uc_mcontext.mc_eip);
102
103         if (critical)
104                 uc->uc_mcontext.mc_eip = (ptrint) critical;
105 }
106 #endif
107
108
109 /*
110  * These are local overrides for various environment variables in Emacs.
111  * Please do not remove this and leave it at the end of the file, where
112  * Emacs will automagically detect them.
113  * ---------------------------------------------------------------------
114  * Local variables:
115  * mode: c
116  * indent-tabs-mode: t
117  * c-basic-offset: 4
118  * tab-width: 4
119  * End:
120  */