* src/vm/jit/show.c (show_global_lock): Renamed to mutex and changed
[cacao.git] / src / vm / jit / patcher-common.h
1 /* src/vm/jit/patcher-common.h - architecture independent code patching stuff
2
3    Copyright (C) 2007, 2008
4    CACAOVM - Verein zur Foerderung der freien virtuellen Maschine CACAO
5
6    This file is part of CACAO.
7
8    This program is free software; you can redistribute it and/or
9    modify it under the terms of the GNU General Public License as
10    published by the Free Software Foundation; either version 2, or (at
11    your option) any later version.
12
13    This program is distributed in the hope that it will be useful, but
14    WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16    General Public License for more details.
17
18    You should have received a copy of the GNU General Public License
19    along with this program; if not, write to the Free Software
20    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21    02110-1301, USA.
22
23 */
24
25
26 #ifndef _PATCHER_COMMON_H
27 #define _PATCHER_COMMON_H
28
29 /* forward typedefs ***********************************************************/
30
31 #include "config.h"
32 #include "vm/types.h"
33
34 #include "toolbox/list.h"
35
36 #include "vm/global.h"
37
38 #include "vm/jit/jit.h"
39
40
41 /* patchref_t ******************************************************************
42
43    A patcher reference contains information about a code position
44    which needs additional code patching during runtime.
45
46 *******************************************************************************/
47
48 typedef struct patchref_t {
49         ptrint       mpc;           /* absolute position in code segment          */
50         ptrint       datap;         /* absolute position in data segment          */
51         s4           disp;          /* displacement of ref in the data segment    */
52         functionptr  patcher;       /* patcher function to call                   */
53         void*        ref;           /* reference passed                           */
54         u8           mcode;         /* machine code to be patched back in         */
55         bool         done;          /* XXX preliminary: patch already applied?    */
56         listnode_t   linkage;
57 } patchref_t;
58
59
60 /* macros *********************************************************************/
61
62
63 /* function prototypes ********************************************************/
64
65 void patcher_list_create(codeinfo *code);
66 void patcher_list_reset(codeinfo *code);
67 void patcher_list_free(codeinfo *code);
68
69 void patcher_add_patch_ref(jitdata *jd, functionptr patcher, void* ref, s4 disp);
70
71 void patcher_resolve(jitdata* jd);
72
73 java_handle_t *patcher_handler(u1 *pc);
74
75
76 /* empty patcher (just patches back original mcode) ***************************/
77
78 void patcher_patch_code(patchref_t *pr);
79
80
81 /* patcher prototypes and macros **********************************************/
82
83 /* new patcher functions */
84
85 bool patcher_resolve_class(patchref_t *pr);
86 #define PATCHER_resolve_class (functionptr) patcher_resolve_class
87
88 bool patcher_initialize_class(patchref_t *pr);
89 #define PATCHER_initialize_class (functionptr) patcher_initialize_class
90
91 bool patcher_resolve_classref_to_classinfo(patchref_t *pr);
92 #define PATCHER_resolve_classref_to_classinfo (functionptr) patcher_resolve_classref_to_classinfo
93
94 bool patcher_resolve_classref_to_vftbl(patchref_t *pr);
95 #define PATCHER_resolve_classref_to_vftbl (functionptr) patcher_resolve_classref_to_vftbl
96
97 bool patcher_resolve_classref_to_index(patchref_t *pr);
98 #define PATCHER_resolve_classref_to_index (functionptr) patcher_resolve_classref_to_index
99
100 bool patcher_resolve_classref_to_flags(patchref_t *pr);
101 #define PATCHER_resolve_classref_to_flags (functionptr) patcher_resolve_classref_to_flags
102
103 bool patcher_resolve_native_function(patchref_t *pr);
104 #define PATCHER_resolve_native_function (functionptr) patcher_resolve_native_function
105
106 /* old patcher functions */
107
108 bool patcher_get_putstatic(patchref_t *pr);
109 #define PATCHER_get_putstatic (functionptr) patcher_get_putstatic
110
111 #if defined(__I386__)
112
113 bool patcher_getfield(patchref_t *pr);
114 #define PATCHER_getfield (functionptr) patcher_getfield
115
116 bool patcher_putfield(patchref_t *pr);
117 #define PATCHER_putfield (functionptr) patcher_putfield
118
119 #else
120
121 bool patcher_get_putfield(patchref_t *pr);
122 #define PATCHER_get_putfield (functionptr) patcher_get_putfield
123
124 #endif /* defined(__I386__) */
125
126 #if defined(__I386__) || defined(__X86_64__)
127
128 bool patcher_putfieldconst(patchref_t *pr);
129 #define PATCHER_putfieldconst (functionptr) patcher_putfieldconst
130
131 #endif /* defined(__I386__) || defined(__X86_64__) */
132
133 bool patcher_invokestatic_special(patchref_t *pr);
134 #define PATCHER_invokestatic_special (functionptr) patcher_invokestatic_special
135
136 bool patcher_invokevirtual(patchref_t *pr);
137 #define PATCHER_invokevirtual (functionptr) patcher_invokevirtual
138
139 bool patcher_invokeinterface(patchref_t *pr);
140 #define PATCHER_invokeinterface (functionptr) patcher_invokeinterface
141
142 #if defined(__ALPHA__) || defined(__I386__) || defined(__MIPS__) || defined(__POWERPC__) || defined(__POWERPC64__) || defined(__S390__) || defined(__X86_64__) || defined(__M68K__)
143
144 bool patcher_checkcast_interface(patchref_t *pr);
145 #define PATCHER_checkcast_interface (functionptr) patcher_checkcast_interface
146
147 bool patcher_instanceof_interface(patchref_t *pr);
148 #define PATCHER_instanceof_interface (functionptr) patcher_instanceof_interface
149
150 #endif /* defined(__ALPHA__) || defined(__I386__) || defined(__MIPS__) || defined(__POWERPC__) || defined(__POWERPC64__) || defined(__S390__) || defined(__X86_64__) || defined(__M68K__) */
151
152 #if defined(__S390__)
153
154 bool patcher_checkcast_instanceof_interface(patchref_t *pr);
155 #define PATCHER_checkcast_instanceof_interface (functionptr) patcher_checkcast_instanceof_interface
156
157 #endif /* defined(__S390__) */
158
159 #if defined(__I386__)
160
161 bool patcher_aconst(patchref_t *pr);
162 #define PATCHER_aconst (functionptr) patcher_aconst
163
164 bool patcher_builtin_multianewarray(patchref_t *pr);
165 #define PATCHER_builtin_multianewarray (functionptr) patcher_builtin_multianewarray
166
167 bool patcher_builtin_arraycheckcast(patchref_t *pr);
168 #define PATCHER_builtin_arraycheckcast (functionptr) patcher_builtin_arraycheckcast
169
170 bool patcher_checkcast_instanceof_flags(patchref_t *pr);
171 #define PATCHER_checkcast_instanceof_flags (functionptr) patcher_checkcast_instanceof_flags
172
173 bool patcher_checkcast_class(patchref_t *pr);
174 #define PATCHER_checkcast_class (functionptr) patcher_checkcast_class
175
176 bool patcher_instanceof_class(patchref_t *pr);
177 #define PATCHER_instanceof_class (functionptr) patcher_instanceof_class
178
179 #endif /* defined(__I386__) */
180
181
182 #endif /* _PATCHER_COMMON_H */
183
184
185 /*
186  * These are local overrides for various environment variables in Emacs.
187  * Please do not remove this and leave it at the end of the file, where
188  * Emacs will automagically detect them.
189  * ---------------------------------------------------------------------
190  * Local variables:
191  * mode: c
192  * indent-tabs-mode: t
193  * c-basic-offset: 4
194  * tab-width: 4
195  * End:
196  * vim:noexpandtab:sw=4:ts=4:
197  */