* src/vm/jit/replace.h, src/vm/jit/i386/md.c (md_patch_replacement_point):
[cacao.git] / src / vm / jit / replace.h
1 /* vm/jit/replace.h - on-stack replacement of methods
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: Edwin Steiner
28
29    Changes:
30
31    $Id$
32
33 */
34
35
36 #ifndef _REPLACE_H
37 #define _REPLACE_H
38
39 #include "config.h"
40 #include "vm/types.h"
41 #include "vm/method.h"
42
43 /* An `rplpoint` represents a replacement point in a compiled method  */
44
45 struct rplpoint {
46         u1       *pc;           /* machine code PC of this point  */
47         u1       *outcode;      /* pointer to replacement-out code*/
48         rplpoint *hashlink;     /* chain to next rplpoint in hash */ /* XXX needed? */
49         codeinfo *code;         /* codeinfo this point belongs to */
50         rplpoint *target;       /* target of the replacement      */
51         s2       *regalloc;     /* pointer to register index table*/
52         s2        regalloccount;/* number of local allocations    */
53 };
54
55 /* An `executionsstate` represents the state of a thread as it reached */
56 /* an replacement point or is about to enter one.                      */
57
58 #define MD_EXCSTATE_NREGS  32
59 #define MD_EXCSTATE_NCALLEESAVED  8
60
61 struct executionstate {
62         u1           *pc;
63         u8            regs[MD_EXCSTATE_NREGS];
64         u8            savedregs[MD_EXCSTATE_NCALLEESAVED]; /* or read from frame */
65
66         u1           *frame;
67         
68     java_objectheader *locked; /* XXX maybe just leave it in frame? */
69 };
70
71 /* `sourcestate` will probably only be used for debugging              */
72
73 struct sourcestate {
74         u8           *javastack;
75         s4            javastackdepth;
76
77         u8            javalocals;
78         s4            javalocalscount;
79 };
80
81 /*** prototypes ********************************************************/
82
83 bool replace_create_replacement_points(codeinfo *code,registerdata *rd);
84 void replace_free_replacement_points(codeinfo *code);
85
86 void replace_activate_replacement_point(rplpoint *rp,rplpoint *target);
87 void replace_activate(codeinfo *code,codeinfo *target);
88
89 void replace_me(rplpoint *rp,executionstate *es);
90
91 #ifndef NDEBUG
92 void replace_show_replacement_points(codeinfo *code);
93 void replace_replacement_point_println(rplpoint *rp);
94 void replace_executionstate_println(executionstate *es);
95 #endif
96
97 /* machine dependent functions (code in ARCH_DIR/md.c) */
98
99 #if defined(ENABLE_JIT)
100 void md_patch_replacement_point(rplpoint *rp);
101 #endif
102
103 #endif
104
105 /*
106  * These are local overrides for various environment variables in Emacs.
107  * Please do not remove this and leave it at the end of the file, where
108  * Emacs will automagically detect them.
109  * ---------------------------------------------------------------------
110  * Local variables:
111  * mode: c
112  * indent-tabs-mode: t
113  * c-basic-offset: 4
114  * tab-width: 4
115  * End:
116  * vim:noexpandtab:sw=4:ts=4:
117  */