* Most stuff implemented (stacktraces, ...), stuff working: spec jvm98,
[cacao.git] / src / vm / jit / intrp / md.c
1 /* src/vm/jit/intrp/md.c - machine dependent Interpreter 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 3176 2005-09-14 08:51:23Z twisti $
34
35 */
36
37
38 #include <assert.h>
39 #include <stdlib.h>
40 #include <signal.h>
41
42 #include "config.h"
43
44 #include "vm/jit/intrp/intrp.h"
45 #include "vm/jit/intrp/types.h"
46
47
48 Inst *vm_prim = NULL; /* initialized by md_init() */
49
50
51 /* md_init *********************************************************************
52
53    Do some machine dependent initialization.
54
55 *******************************************************************************/
56
57 void md_init(void)
58 {
59         vm_out = stdout;
60         if ( vm_prim == NULL ) {
61                 (void)engine(NULL, NULL, NULL);
62         }
63         if (peeptable == 0) {
64                 init_peeptable();
65         }
66 }
67
68
69 #if defined(USE_THREADS) && defined(NATIVE_THREADS)
70 void thread_restartcriticalsection(ucontext_t *uc)
71 {
72         assert(false);
73 }
74 #endif
75
76
77 /* md_stacktrace_get_returnaddress *********************************************
78
79    Returns the return address of the current stackframe, specified by
80    the passed stack pointer and the stack frame size.
81
82 *******************************************************************************/
83
84 functionptr md_stacktrace_get_returnaddress(u1 *sp, u4 framesize)
85 {
86         functionptr ra;
87
88         /* ATTENTION: the passed sp is actually the fp! (see java.vmg for stack 
89            layout) */
90
91         ra = (functionptr) (ptrint) *((u1 **) (sp - framesize - sizeof(void *)));
92
93         return ra;
94 }
95
96
97 /* XXX remove me!!! */
98 void md_param_alloc(methoddesc *md)
99 {
100 }
101
102 void md_return_alloc(methodinfo *m, registerdata *rd, s4 return_type,
103                                          stackptr stackslot)
104 {
105 }
106
107
108 /*
109  * These are local overrides for various environment variables in Emacs.
110  * Please do not remove this and leave it at the end of the file, where
111  * Emacs will automagically detect them.
112  * ---------------------------------------------------------------------
113  * Local variables:
114  * mode: c
115  * indent-tabs-mode: t
116  * c-basic-offset: 4
117  * tab-width: 4
118  * End:
119  */