* changed src/vm/jit/m68k/asmpart.S (asm_patcher_wrapper): Removed.
[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 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 */
26
27
28 #ifndef _PATCHER_COMMON_H
29 #define _PATCHER_COMMON_H
30
31 /* forward typedefs ***********************************************************/
32
33 #include "config.h"
34 #include "vm/types.h"
35
36 #include "toolbox/list.h"
37
38 #include "vm/global.h"
39
40 #include "vm/jit/jit.h"
41
42
43 /* patchref_t ******************************************************************
44
45    A patcher reference contains information about a code position
46    which needs additional code patching during runtime.
47
48 *******************************************************************************/
49
50 typedef struct patchref_t {
51         ptrint       mpc;           /* absolute position in code segment          */
52         ptrint       datap;         /* absolute position in data segment          */
53         s4           disp;          /* displacement of ref in the data segment    */
54         functionptr  patcher;       /* patcher function to call                   */
55         voidptr      ref;           /* reference passed                           */
56         u8           mcode;         /* machine code to be patched back in         */
57         bool         done;          /* XXX preliminary: patch already applied?    */
58         listnode_t   linkage;
59 } patchref_t;
60
61
62 /* macros *********************************************************************/
63
64
65 /* function prototypes ********************************************************/
66
67 void patcher_list_create(codeinfo *code);
68 void patcher_list_reset(codeinfo *code);
69 void patcher_list_free(codeinfo *code);
70
71 void patcher_add_patch_ref(jitdata *jd, functionptr patcher, voidptr ref,
72                            s4 disp);
73
74 java_handle_t *patcher_handler(u1 *pc);
75
76
77 /* empty patcher (just patches back original mcode) ***************************/
78
79 void patcher_patch_code(patchref_t *pr);
80
81
82 /* patcher prototypes and macros **********************************************/
83
84 /* new patcher functions */
85
86 bool patcher_resolve_class(patchref_t *pr);
87 #define PATCHER_resolve_class (functionptr) patcher_resolve_class
88
89 bool patcher_initialize_class(patchref_t *pr);
90 #define PATCHER_initialize_class (functionptr) patcher_initialize_class
91
92 bool patcher_resolve_classref_to_classinfo(patchref_t *pr);
93 #define PATCHER_resolve_classref_to_classinfo (functionptr) patcher_resolve_classref_to_classinfo
94
95 bool patcher_resolve_classref_to_vftbl(patchref_t *pr);
96 #define PATCHER_resolve_classref_to_vftbl (functionptr) patcher_resolve_classref_to_vftbl
97
98 bool patcher_resolve_classref_to_index(patchref_t *pr);
99 #define PATCHER_resolve_classref_to_index (functionptr) patcher_resolve_classref_to_index
100
101 bool patcher_resolve_classref_to_flags(patchref_t *pr);
102 #define PATCHER_resolve_classref_to_flags (functionptr) patcher_resolve_classref_to_flags
103
104 bool patcher_resolve_native_function(patchref_t *pr);
105 #define PATCHER_resolve_native_function (functionptr) patcher_resolve_native_function
106
107 /* old patcher functions */
108
109 bool patcher_get_putstatic(patchref_t *pr);
110 #define PATCHER_get_putstatic (functionptr) patcher_get_putstatic
111
112 #if defined(__I386__)
113
114 bool patcher_getfield(patchref_t *pr);
115 #define PATCHER_getfield (functionptr) patcher_getfield
116
117 bool patcher_putfield(patchref_t *pr);
118 #define PATCHER_putfield (functionptr) patcher_putfield
119
120 #else
121
122 bool patcher_get_putfield(patchref_t *pr);
123 #define PATCHER_get_putfield (functionptr) patcher_get_putfield
124
125 #endif /* defined(__I386__) */
126
127 #if defined(__I386__) || defined(__X86_64__)
128
129 bool patcher_putfieldconst(patchref_t *pr);
130 #define PATCHER_putfieldconst (functionptr) patcher_putfieldconst
131
132 #endif /* defined(__I386__) || defined(__X86_64__) */
133
134 bool patcher_invokestatic_special(patchref_t *pr);
135 #define PATCHER_invokestatic_special (functionptr) patcher_invokestatic_special
136
137 bool patcher_invokevirtual(patchref_t *pr);
138 #define PATCHER_invokevirtual (functionptr) patcher_invokevirtual
139
140 bool patcher_invokeinterface(patchref_t *pr);
141 #define PATCHER_invokeinterface (functionptr) patcher_invokeinterface
142
143 #if defined(__ALPHA__) || defined(__I386__) || defined(__MIPS__) || defined(__POWERPC__) || defined(__POWERPC64__) || defined(__S390__) || defined(__X86_64__) || defined(__M68K__)
144
145 bool patcher_checkcast_interface(patchref_t *pr);
146 #define PATCHER_checkcast_interface (functionptr) patcher_checkcast_interface
147
148 bool patcher_instanceof_interface(patchref_t *pr);
149 #define PATCHER_instanceof_interface (functionptr) patcher_instanceof_interface
150
151 #endif /* defined(__ALPHA__) || defined(__I386__) || defined(__MIPS__) || defined(__POWERPC__) || defined(__POWERPC64__) || defined(__S390__) || defined(__X86_64__) || defined(__M68K__) */
152
153 #if defined(__S390__)
154
155 bool patcher_checkcast_instanceof_interface(patchref_t *pr);
156 #define PATCHER_checkcast_instanceof_interface (functionptr) patcher_checkcast_instanceof_interface
157
158 #endif /* defined(__S390__) */
159
160 #if defined(__I386__)
161
162 bool patcher_aconst(patchref_t *pr);
163 #define PATCHER_aconst (functionptr) patcher_aconst
164
165 bool patcher_builtin_multianewarray(patchref_t *pr);
166 #define PATCHER_builtin_multianewarray (functionptr) patcher_builtin_multianewarray
167
168 bool patcher_builtin_arraycheckcast(patchref_t *pr);
169 #define PATCHER_builtin_arraycheckcast (functionptr) patcher_builtin_arraycheckcast
170
171 bool patcher_checkcast_instanceof_flags(patchref_t *pr);
172 #define PATCHER_checkcast_instanceof_flags (functionptr) patcher_checkcast_instanceof_flags
173
174 bool patcher_checkcast_class(patchref_t *pr);
175 #define PATCHER_checkcast_class (functionptr) patcher_checkcast_class
176
177 bool patcher_instanceof_class(patchref_t *pr);
178 #define PATCHER_instanceof_class (functionptr) patcher_instanceof_class
179
180 #endif /* defined(__I386__) */
181
182
183 #endif /* _PATCHER_COMMON_H */
184
185
186 /*
187  * These are local overrides for various environment variables in Emacs.
188  * Please do not remove this and leave it at the end of the file, where
189  * Emacs will automagically detect them.
190  * ---------------------------------------------------------------------
191  * Local variables:
192  * mode: c
193  * indent-tabs-mode: t
194  * c-basic-offset: 4
195  * tab-width: 4
196  * End:
197  * vim:noexpandtab:sw=4:ts=4:
198  */