- changed signatures
[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 2373 2005-04-25 14:10:56Z 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 /* function prototypes ********************************************************/
43
44 bool patcher_get_putstatic(u1 *sp);
45 #define PATCHER_get_putstatic (functionptr) patcher_get_putstatic
46
47 #if defined(__I386__)
48
49 bool patcher_getfield(u1 *sp);
50 #define PATCHER_getfield (functionptr) patcher_getfield
51
52 bool patcher_putfield(u1 *sp);
53 #define PATCHER_putfield (functionptr) patcher_putfield
54
55 #else
56
57 bool patcher_get_putfield(u1 *sp);
58 #define PATCHER_get_putfield (functionptr) patcher_get_putfield
59
60 #endif /* defined(__I386__) */
61
62 bool patcher_builtin_new(u1 *sp);
63 #define PATCHER_builtin_new (functionptr) patcher_builtin_new
64
65 bool patcher_builtin_newarray(u1 *sp);
66 #define PATCHER_builtin_newarray (functionptr) patcher_builtin_newarray
67
68 bool patcher_builtin_multianewarray(u1 *sp);
69 #define PATCHER_builtin_multianewarray (functionptr) patcher_builtin_multianewarray
70
71 bool patcher_builtin_checkarraycast(u1 *sp);
72 #define PATCHER_builtin_checkarraycast (functionptr) patcher_builtin_checkarraycast
73
74 bool patcher_builtin_arrayinstanceof(u1 *sp);
75 #define PATCHER_builtin_arrayinstanceof (functionptr) patcher_builtin_arrayinstanceof
76
77 bool patcher_invokestatic_special(u1 *sp);
78 #define PATCHER_invokestatic_special (functionptr) patcher_invokestatic_special
79
80 bool patcher_invokevirtual(u1 *sp);
81 #define PATCHER_invokevirtual (functionptr) patcher_invokevirtual
82
83 bool patcher_invokeinterface(u1 *sp);
84 #define PATCHER_invokeinterface (functionptr) patcher_invokeinterface
85
86 bool patcher_checkcast_instanceof_flags(u1 *sp);
87 #define PATCHER_checkcast_instanceof_flags (functionptr) patcher_checkcast_instanceof_flags
88
89 bool patcher_checkcast_instanceof_interface(u1 *sp);
90 #define PATCHER_checkcast_instanceof_interface (functionptr) patcher_checkcast_instanceof_interface
91
92 bool patcher_checkcast_class(u1 *sp);
93 #define PATCHER_checkcast_class (functionptr) patcher_checkcast_class
94
95 bool patcher_instanceof_class(u1 *sp);
96 #define PATCHER_instanceof_class (functionptr) patcher_instanceof_class
97
98 bool patcher_clinit(u1 *sp);
99 #define PATCHER_clinit (functionptr) patcher_clinit
100
101 #endif /* _PATCHER_H */
102
103
104 /*
105  * These are local overrides for various environment variables in Emacs.
106  * Please do not remove this and leave it at the end of the file, where
107  * Emacs will automagically detect them.
108  * ---------------------------------------------------------------------
109  * Local variables:
110  * mode: c
111  * indent-tabs-mode: t
112  * c-basic-offset: 4
113  * tab-width: 4
114  * End:
115  * vim:noexpandtab:sw=4:ts=4:
116  */
117