* Updated header: Added 2006. Changed address of FSF. Changed email
[cacao.git] / src / vm / jit / i386 / md.c
1 /* src/vm/jit/i386/md.c - machine dependent i386 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.c 4357 2006-01-22 23:33:38Z twisti $
32
33 */
34
35
36 #include "config.h"
37 #include "vm/types.h"
38
39 #include "vm/global.h"
40 #include "vm/jit/codegen-common.h"
41
42
43 /* md_init *********************************************************************
44
45    Do some machine dependent initialization.
46
47 *******************************************************************************/
48
49 void md_init(void)
50 {
51         /* nothing to do */
52 }
53
54
55 /* md_stacktrace_get_returnaddress *********************************************
56
57    Returns the return address of the current stackframe, specified by
58    the passed stack pointer and the stack frame size.
59
60 *******************************************************************************/
61
62 u1 *md_stacktrace_get_returnaddress(u1 *sp, u4 framesize)
63 {
64         u1 *ra;
65
66         /* on i386 the return address is above the current stack frame */
67
68         ra = *((u1 **) (sp + framesize));
69
70         return ra;
71 }
72
73
74 /* md_codegen_findmethod *******************************************************
75
76    On this architecture just a wrapper function to codegen_findmethod.
77
78 *******************************************************************************/
79
80 u1 *md_codegen_findmethod(u1 *ra)
81 {
82         u1 *pv;
83
84         /* the the start address of the function which contains this
85        address from the method table */
86
87         pv = codegen_findmethod(ra);
88
89         return pv;
90 }
91
92
93 /*
94  * These are local overrides for various environment variables in Emacs.
95  * Please do not remove this and leave it at the end of the file, where
96  * Emacs will automagically detect them.
97  * ---------------------------------------------------------------------
98  * Local variables:
99  * mode: c
100  * indent-tabs-mode: t
101  * c-basic-offset: 4
102  * tab-width: 4
103  * End:
104  */