* Dynamic superinstructions added.
[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 3895 2005-12-07 16:03:37Z anton $
34
35 */
36
37
38 #include <assert.h>
39 #include <stdlib.h>
40 #include <signal.h>
41
42 #include "config.h"
43 #include "vm/types.h"
44
45 #include "vm/jit/intrp/intrp.h"
46
47
48 Inst *vm_prim = NULL; /* initialized by md_init() */
49 FILE *vm_out = NULL;  /* debugging output for vmgenerated stuff */
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 (setvbuf(stdout,NULL, _IOLBF,0) != 0) {
61                 perror("setvbuf error");
62                 exit(1);
63         }
64         if ( vm_prim == NULL ) {
65                 vm_prim = (Inst *)engine(NULL, NULL, NULL);
66         }
67         if (peeptable == 0) {
68                 init_peeptable();
69         }
70         check_prims(vm_prim);
71 }
72
73
74 #if defined(USE_THREADS) && defined(NATIVE_THREADS)
75 void thread_restartcriticalsection(ucontext_t *uc)
76 {
77         assert(false);
78 }
79 #endif
80
81
82 /* md_stacktrace_get_returnaddress *********************************************
83
84    Returns the return address of the current stackframe, specified by
85    the passed stack pointer and the stack frame size.
86
87 *******************************************************************************/
88
89 u1 *md_stacktrace_get_returnaddress(u1 *sp, u4 framesize)
90 {
91         u1 *ra;
92
93         /* ATTENTION: the passed sp is actually the fp! (see java.vmg for stack 
94            layout) */
95
96         ra = *((u1 **) (sp - framesize - sizeof(void *)));
97
98         return ra;
99 }
100
101
102 /* XXX remove me!!! */
103 void md_param_alloc(methoddesc *md)
104 {
105 }
106
107 void md_return_alloc(methodinfo *m, registerdata *rd, s4 return_type,
108                                          stackptr stackslot)
109 {
110 }
111
112
113 /*
114  * These are local overrides for various environment variables in Emacs.
115  * Please do not remove this and leave it at the end of the file, where
116  * Emacs will automagically detect them.
117  * ---------------------------------------------------------------------
118  * Local variables:
119  * mode: c
120  * indent-tabs-mode: t
121  * c-basic-offset: 4
122  * tab-width: 4
123  * End:
124  */