- defined PATCHER_MONITOREXIT and PATCHER_MARK_PATCHED_MONITOREXIT
[cacao.git] / src / vm / jit / patcher.h
1 /* src/vm/jit/patcher.h - code patching 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: Christian Thalinger
28
29    Changes:
30
31    $Id: patcher.h 2535 2005-05-31 15:39:06Z twisti $
32
33 */
34
35 #ifndef _PATCHER_H
36 #define _PATCHER_H
37
38 #include "types.h"
39 #include "vm/global.h"
40
41
42 /* patcher macros *************************************************************/
43
44 #if defined(USE_THREADS)
45
46 #define PATCHER_MONITORENTER \
47         /* enter a monitor on the patching position */       \
48                                                              \
49         builtin_monitorenter(o);                             \
50                                                              \
51         /* check if the position has already been patched */ \
52                                                              \
53         if (o->vftbl) {                                      \
54                 builtin_monitorexit(o);                          \
55                                                              \
56                 return true;                                     \
57         }                                                    \
58
59
60 #define PATCHER_MONITOREXIT \
61         /* leave the monitor on the patching position */     \
62                                                              \
63         builtin_monitorexit(o);
64
65
66 #define PATCHER_MARK_PATCHED_MONITOREXIT \
67         /* mark position as patched */                       \
68                                                              \
69         o->vftbl = (vftbl_t *) 1;                            \
70                                                              \
71         PATCHER_MONITOREXIT
72
73 #else
74
75 #define PATCHER_MONITORENTER                 /* nop */
76 #define PATCHER_MONITOREXIT                  /* nop */
77 #define PATCHER_MARK_PATCHED_MONITOREXIT     /* nop */
78
79 #endif /* defined(USE_THREADS) */
80
81
82 /* function prototypes ********************************************************/
83
84 bool patcher_get_putstatic(u1 *sp);
85 #define PATCHER_get_putstatic (functionptr) patcher_get_putstatic
86
87 #if defined(__I386__)
88
89 bool patcher_getfield(u1 *sp);
90 #define PATCHER_getfield (functionptr) patcher_getfield
91
92 bool patcher_putfield(u1 *sp);
93 #define PATCHER_putfield (functionptr) patcher_putfield
94
95 #else
96
97 bool patcher_get_putfield(u1 *sp);
98 #define PATCHER_get_putfield (functionptr) patcher_get_putfield
99
100 #endif /* defined(__I386__) */
101
102 #if defined(__I386__) || defined(__X86_64__)
103
104 bool patcher_putfieldconst(u1 *sp);
105 #define PATCHER_putfieldconst (functionptr) patcher_putfieldconst
106
107 #endif /* defined(__I386__) || defined(__X86_64__) */
108
109 bool patcher_builtin_new(u1 *sp);
110 #define PATCHER_builtin_new (functionptr) patcher_builtin_new
111
112 bool patcher_builtin_newarray(u1 *sp);
113 #define PATCHER_builtin_newarray (functionptr) patcher_builtin_newarray
114
115 bool patcher_builtin_multianewarray(u1 *sp);
116 #define PATCHER_builtin_multianewarray (functionptr) patcher_builtin_multianewarray
117
118 bool patcher_builtin_arraycheckcast(u1 *sp);
119 #define PATCHER_builtin_arraycheckcast (functionptr) patcher_builtin_arraycheckcast
120
121 bool patcher_builtin_arrayinstanceof(u1 *sp);
122 #define PATCHER_builtin_arrayinstanceof (functionptr) patcher_builtin_arrayinstanceof
123
124 bool patcher_invokestatic_special(u1 *sp);
125 #define PATCHER_invokestatic_special (functionptr) patcher_invokestatic_special
126
127 bool patcher_invokevirtual(u1 *sp);
128 #define PATCHER_invokevirtual (functionptr) patcher_invokevirtual
129
130 bool patcher_invokeinterface(u1 *sp);
131 #define PATCHER_invokeinterface (functionptr) patcher_invokeinterface
132
133 bool patcher_checkcast_instanceof_flags(u1 *sp);
134 #define PATCHER_checkcast_instanceof_flags (functionptr) patcher_checkcast_instanceof_flags
135
136 bool patcher_checkcast_instanceof_interface(u1 *sp);
137 #define PATCHER_checkcast_instanceof_interface (functionptr) patcher_checkcast_instanceof_interface
138
139 #if defined(__I386__) || defined(__X86_64__) || defined(__POWERPC__)
140
141 bool patcher_checkcast_class(u1 *sp);
142 #define PATCHER_checkcast_class (functionptr) patcher_checkcast_class
143
144 bool patcher_instanceof_class(u1 *sp);
145 #define PATCHER_instanceof_class (functionptr) patcher_instanceof_class
146
147 #else /* defined(__I386__) || defined(__X86_64__) || defined(__POWERPC__) */
148
149 bool patcher_checkcast_instanceof_class(u1 *sp);
150 #define PATCHER_checkcast_instanceof_class (functionptr) patcher_checkcast_instanceof_class
151
152 #endif /* defined(__I386__) || defined(__X86_64__) || defined(__POWERPC__) */
153
154 bool patcher_clinit(u1 *sp);
155 #define PATCHER_clinit (functionptr) patcher_clinit
156
157 #endif /* _PATCHER_H */
158
159
160 /*
161  * These are local overrides for various environment variables in Emacs.
162  * Please do not remove this and leave it at the end of the file, where
163  * Emacs will automagically detect them.
164  * ---------------------------------------------------------------------
165  * Local variables:
166  * mode: c
167  * indent-tabs-mode: t
168  * c-basic-offset: 4
169  * tab-width: 4
170  * End:
171  * vim:noexpandtab:sw=4:ts=4:
172  */
173