* doc/stack_frames.txt: Added file.
[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: Edwin Steiner
30
31    $Id: md.c 4613 2006-03-15 12:04:05Z edwin $
32
33 */
34
35
36 #include "config.h"
37 #include "vm/types.h"
38
39 #include <assert.h>
40
41 #include "vm/global.h"
42 #include "vm/jit/asmpart.h"
43 #include "vm/jit/codegen-common.h"
44 #include "vm/options.h" /* XXX debug */
45 #include "vm/jit/disass.h" /* XXX debug */
46
47
48 /* md_init *********************************************************************
49
50    Do some machine dependent initialization.
51
52 *******************************************************************************/
53
54 void md_init(void)
55 {
56         (void) asm_md_init();
57 }
58
59
60 /* md_stacktrace_get_returnaddress *********************************************
61
62    Returns the return address of the current stackframe, specified by
63    the passed stack pointer and the stack frame size.
64
65 *******************************************************************************/
66
67 u1 *md_stacktrace_get_returnaddress(u1 *sp, u4 framesize)
68 {
69         u1 *ra;
70
71         /* on i386 the return address is above the current stack frame */
72
73         ra = *((u1 **) (sp + framesize));
74
75         return ra;
76 }
77
78
79 /* md_codegen_findmethod *******************************************************
80
81    On this architecture just a wrapper function to codegen_findmethod.
82
83 *******************************************************************************/
84
85 u1 *md_codegen_findmethod(u1 *ra)
86 {
87         u1 *pv;
88
89         /* the the start address of the function which contains this
90        address from the method table */
91
92         pv = codegen_findmethod(ra);
93
94         return pv;
95 }
96
97 /* md_patch_replacement_point **************************************************
98
99    Patch the given replacement point.
100
101 *******************************************************************************/
102
103 void md_patch_replacement_point(rplpoint *rp)
104 {
105     u8 mcode;
106
107         /* XXX this is probably unsafe! */
108
109         /* save the current machine code */
110         mcode = *(u8*)rp->pc;
111
112         /* write spinning instruction */
113         *(u2*)(rp->pc) = 0xebfe;
114
115         /* write 5th byte */
116         rp->pc[4] = (rp->mcode >> 32);
117
118         /* write first word */
119     *(u4*)(rp->pc) = (u4) rp->mcode;
120
121         /* store saved mcode */
122         rp->mcode = mcode;
123         
124         {
125                 u1* u1ptr = rp->pc;
126                 DISASSINSTR(u1ptr);
127                 fflush(stdout);
128         }
129                         
130     /* XXX if required asm_cacheflush(rp->pc,8); */
131 }
132
133 /*
134  * These are local overrides for various environment variables in Emacs.
135  * Please do not remove this and leave it at the end of the file, where
136  * Emacs will automagically detect them.
137  * ---------------------------------------------------------------------
138  * Local variables:
139  * mode: c
140  * indent-tabs-mode: t
141  * c-basic-offset: 4
142  * tab-width: 4
143  * End:
144  * vim:noexpandtab:sw=4:ts=4:
145  */