* src/vm/jit/sparc64/solaris/md-os.c: Implemented hardware exception handling.
[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    $Id$
26
27 */
28
29
30 #ifndef _PATCHER_COMMON_H
31 #define _PATCHER_COMMON_H
32
33 /* forward typedefs ***********************************************************/
34
35 #include "config.h"
36 #include "vm/types.h"
37
38 #include "toolbox/list.h"
39
40 #include "vm/global.h"
41
42 #include "vm/jit/jit.h"
43
44
45 /* patchref_t ******************************************************************
46
47    A patcher reference contains information about a code position
48    which needs additional code patching during runtime.
49
50 *******************************************************************************/
51
52 typedef struct patchref_t {
53         ptrint       mpc;           /* absolute position in code segment          */
54         ptrint       datap;         /* absolute position in data segment          */
55         s4           disp;          /* displacement of ref in the data segment    */
56         functionptr  patcher;       /* patcher function to call                   */
57         voidptr      ref;           /* reference passed                           */
58         u8           mcode;         /* machine code to be patched back in         */
59         bool         done;          /* XXX preliminary: patch already applied?    */
60         listnode_t   linkage;
61 } patchref_t;
62
63
64 /* macros *********************************************************************/
65
66
67 /* function prototypes ********************************************************/
68
69 void patcher_list_create(codeinfo *code);
70 void patcher_list_free(codeinfo *code);
71
72 void patcher_add_patch_ref(jitdata *jd, functionptr patcher, voidptr ref,
73                            s4 disp);
74
75 java_objectheader *patcher_handler(u1 *pc);
76
77
78 /* patcher prototypes and macros **********************************************/
79
80 #if defined(__ALPHA__) || defined(__ARM__)
81
82 /* new patcher functions */
83
84 bool patcher_resolve_class(patchref_t *pr);
85 #define PATCHER_resolve_class (functionptr) patcher_resolve_class
86
87 bool patcher_initialize_class(patchref_t *pr);
88 #define PATCHER_initialize_class (functionptr) patcher_initialize_class
89
90 bool patcher_resolve_classref_to_classinfo(patchref_t *pr);
91 #define PATCHER_resolve_classref_to_classinfo (functionptr) patcher_resolve_classref_to_classinfo
92
93 bool patcher_resolve_classref_to_vftbl(patchref_t *pr);
94 #define PATCHER_resolve_classref_to_vftbl (functionptr) patcher_resolve_classref_to_vftbl
95
96 bool patcher_resolve_classref_to_index(patchref_t *pr);
97 #define PATCHER_resolve_classref_to_index (functionptr) patcher_resolve_classref_to_index
98
99 bool patcher_resolve_classref_to_flags(patchref_t *pr);
100 #define PATCHER_resolve_classref_to_flags (functionptr) patcher_resolve_classref_to_flags
101
102 #if !defined(WITH_STATIC_CLASSPATH)
103 bool patcher_resolve_native_function(patchref_t *pr);
104 #define PATCHER_resolve_native_function (functionptr) patcher_resolve_native_function
105 #endif
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__)
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__) */
152
153
154
155 #endif /* architecture list */
156
157
158 #endif /* _PATCHER_COMMON_H */
159
160
161 /*
162  * These are local overrides for various environment variables in Emacs.
163  * Please do not remove this and leave it at the end of the file, where
164  * Emacs will automagically detect them.
165  * ---------------------------------------------------------------------
166  * Local variables:
167  * mode: c
168  * indent-tabs-mode: t
169  * c-basic-offset: 4
170  * tab-width: 4
171  * End:
172  * vim:noexpandtab:sw=4:ts=4:
173  */