* Updated header: Added 2006. Changed address of FSF. Changed email
[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, 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: Andreas Krall
28             Reinhard Grafl
29
30    Changes: Joseph Wenninger
31             Christian Thalinger
32
33    $Id: md.c 4357 2006-01-22 23:33:38Z twisti $
34
35 */
36
37
38 #include "config.h"
39
40 #include <assert.h>
41 #include <stdlib.h>
42 #include <signal.h>
43
44 #include "vm/types.h"
45
46 #include "vm/jit/intrp/intrp.h"
47
48
49 Inst *vm_prim = NULL; /* initialized by md_init() */
50 FILE *vm_out = NULL;  /* debugging output for vmgenerated stuff */
51
52
53 /* md_init *********************************************************************
54
55    Do some machine dependent initialization.
56
57 *******************************************************************************/
58
59 void intrp_md_init(void)
60 {
61         vm_out = stdout;
62
63     if (setvbuf(stdout,NULL, _IOLBF,0) != 0) {
64                 perror("setvbuf error");
65                 exit(1);
66         }
67
68         if ( vm_prim == NULL ) {
69                 vm_prim = (Inst *)engine(NULL, NULL, NULL);
70         }
71
72         if (peeptable == 0) {
73                 init_peeptable();
74         }
75
76         dynamic_super_init();
77 }
78
79
80 /* md_stacktrace_get_returnaddress *********************************************
81
82    Returns the return address of the current stackframe, specified by
83    the passed stack pointer and the stack frame size.
84
85 *******************************************************************************/
86
87 u1 *intrp_md_stacktrace_get_returnaddress(u1 *sp, u4 framesize)
88 {
89         u1 *ra;
90
91         /* ATTENTION: the passed sp is actually the fp! (see java.vmg for stack 
92            layout) */
93
94         ra = *((u1 **) (sp - framesize - sizeof(void *)));
95
96         return ra;
97 }
98
99
100 /*
101  * These are local overrides for various environment variables in Emacs.
102  * Please do not remove this and leave it at the end of the file, where
103  * Emacs will automagically detect them.
104  * ---------------------------------------------------------------------
105  * Local variables:
106  * mode: c
107  * indent-tabs-mode: t
108  * c-basic-offset: 4
109  * tab-width: 4
110  * End:
111  */