5addbee442536233eca2141574f41226e4860fe8
[cacao.git] / src / vm / jit / sparc64 / solaris / md-os.c
1 /* src/vm/jit/alpha/linux/md.c - machine dependent Alpha Linux functions
2
3    Copyright (C) 1996-2005, 2006 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    Contact: cacao@cacaojvm.org
26
27    Authors: Christian Thalinger
28
29    Changes:
30
31    $Id: md-os.c 4357 2006-01-22 23:33:38Z twisti $
32
33 */
34
35 #include "config.h"
36
37 #include <assert.h>
38 #include <ucontext.h>
39
40 #undef REG_SP
41
42 #include "vm/types.h"
43
44 #include "vm/jit/sparc64/md-abi.h"
45
46 #include "vm/exceptions.h"
47 #include "vm/signallocal.h"
48 #include "vm/stringlocal.h"
49 #include "vm/jit/asmpart.h"
50 #include "vm/jit/stacktrace.h"
51
52
53 /* md_signal_handler_sigsegv ***************************************************
54
55    NullPointerException signal handler for hardware null pointer
56    check.
57
58 *******************************************************************************/
59
60 void md_signal_handler_sigsegv(int sig, siginfo_t *siginfo, void *_p)
61 {
62         ucontext_t  *_uc;
63         mcontext_t  *_mc;
64         u4           instr;
65         ptrint       addr;
66         u1          *pv;
67         u1          *sp;
68         u1          *ra;
69         u1          *xpc;
70
71         _uc = (ucontext_t *) _p;
72         _mc = &_uc->uc_mcontext;
73
74         instr = *((s4 *) (_mc->gregs[REG_PC]));
75         /*addr = _mc->sc_regs[(instr >> 16) & 0x1f];*/
76         addr = 0;
77
78         if (addr == 0) {
79
80 #if 0
81                 pv  = (u1 *) _mc->gregs[REG_G3];
82                 sp  = (u1 *) _mc->mc_fp;
83                 ra  = (u1 *) _mc->mc_i7;       /* this is correct for leafs */
84                 xpc = (u1 *) _mc->mc_gregs[MC_PC];
85
86                 _mc->mc_gregs[MC_G4] =
87                         (ptrint) stacktrace_hardware_nullpointerexception(pv, sp, ra, xpc);
88
89                 _mc->mc_gregs[MC_G5] = (ptrint) xpc;
90                 _mc->mc_gregs[MC_PC] = (ptrint) asm_handle_exception;
91 #endif
92                 assert(0);
93
94         } else {
95                 addr += (long) ((instr << 16) >> 16);
96
97                 /*
98                 throw_cacao_exception_exit(string_java_lang_InternalError,
99                                                                    "Segmentation fault: 0x%016lx at 0x%016lx\n",
100                                                                    addr, _mc->mc_gregs[MC_PC]);
101                                                                    */
102                 assert(0);
103         }
104 }
105
106
107 #if defined(USE_THREADS) && defined(NATIVE_THREADS)
108 void thread_restartcriticalsection(ucontext_t *_uc)
109 {
110         mcontext_t *_mc;
111         void       *critical;
112
113         _mc = &_uc->uc_mcontext;
114
115         critical = thread_checkcritical((void *) _mc->sc_pc);
116
117         if (critical)
118                 _mc->sc_pc = (ptrint) critical;
119 }
120 #endif
121
122
123 /* md_icacheflush **************************************************************
124
125    Calls the system's function to flush the instruction cache.
126
127 *******************************************************************************/
128
129 void md_icacheflush(u1 *addr, s4 nbytes)
130 {
131         u1* end;
132         
133         end = addr + nbytes;
134         
135         /* zero the least significant 3 bits to align on a 64-bit boundary */
136         addr = (u1 *) (((ptrint) addr) & -8l);
137         
138         while (addr < end) {
139                 __asm__ (
140                         "flush %0"
141                         :
142                         : "r"(addr)
143                         );
144                 addr += 8;
145         }
146 }
147
148
149
150
151 /*
152  * These are local overrides for various environment variables in Emacs.
153  * Please do not remove this and leave it at the end of the file, where
154  * Emacs will automagically detect them.
155  * ---------------------------------------------------------------------
156  * Local variables:
157  * mode: c
158  * indent-tabs-mode: t
159  * c-basic-offset: 4
160  * tab-width: 4
161  * End:
162  */