* src/vm/builtin.c (builtin_isanysubclass): Removed.
[cacao.git] / src / vm / jit / asmpart.h
1 /* src/vm/jit/asmpart.h - prototypes for machine specfic functions
2
3    Copyright (C) 1996-2005, 2006, 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: asmpart.h 7563 2007-03-23 21:33:53Z twisti $
26
27 */
28
29
30 #ifndef _ASMPART_H
31 #define _ASMPART_H
32
33 #include "config.h"
34 #include "vm/types.h"
35
36 #if defined(ENABLE_THREADS)
37 # include "threads/critical.h"
38 #endif
39
40 #include "vm/global.h"
41 #include "vm/vm.h"
42
43 #include "vm/jit/replace.h"
44
45 #include "vmcore/linker.h"
46
47
48 /* some macros ****************************************************************/
49
50 #if defined(ENABLE_JIT)
51 # if defined(ENABLE_INTRP)
52
53 #  define ASM_GETCLASSVALUES_ATOMIC(super,sub,out) \
54     do { \
55         if (opt_intrp) \
56             intrp_asm_getclassvalues_atomic((super), (sub), (out)); \
57         else \
58             asm_getclassvalues_atomic((super), (sub), (out)); \
59     } while (0)
60
61 # else /* defined(ENABLE_INTRP) */
62
63 #  define ASM_GETCLASSVALUES_ATOMIC(super,sub,out) \
64     asm_getclassvalues_atomic((super), (sub), (out))
65
66 # endif /* defined(ENABLE_INTRP) */
67
68 #else /* defined(ENABLE_JIT) */
69
70 #  define ASM_GETCLASSVALUES_ATOMIC(super,sub,out) \
71     intrp_asm_getclassvalues_atomic((super), (sub), (out))
72
73 #endif /* defined(ENABLE_JIT) */
74
75
76 /* function prototypes ********************************************************/
77
78 /* machine dependent initialization */
79 s4   asm_md_init(void);
80
81 /* 
82    invokes the compiler for untranslated JavaVM methods.
83    Register R0 contains a pointer to the method info structure
84    (prepared by createcompilerstub).
85 */
86 void asm_call_jit_compiler(void);
87
88 #if defined(ENABLE_JIT)
89 java_objectheader *asm_vm_call_method(methodinfo *m, s4 vmargscount,
90                                                                           vm_arg *vmargs);
91
92 s4     asm_vm_call_method_int(methodinfo *m, s4 vmargscount, vm_arg *vmargs);
93 s8     asm_vm_call_method_long(methodinfo *m, s4 vmargscount, vm_arg *vmargs);
94 float  asm_vm_call_method_float(methodinfo *m, s4 vmargscount, vm_arg *vmargs);
95 double asm_vm_call_method_double(methodinfo *m, s4 vmargscount, vm_arg *vmargs);
96
97 void   asm_vm_call_method_exception_handler(void);
98 #endif
99
100 #if defined(ENABLE_INTRP)
101 java_objectheader *intrp_asm_vm_call_method(methodinfo *m, s4 vmargscount,
102                                                                                         vm_arg *vmargs);
103
104 s4     intrp_asm_vm_call_method_int(methodinfo *m, s4 vmargscount,
105                                                                         vm_arg *vmargs);
106 s8     intrp_asm_vm_call_method_long(methodinfo *m, s4 vmargscount,
107                                                                          vm_arg *vmargs);
108 float  intrp_asm_vm_call_method_float(methodinfo *m, s4 vmargscount,
109                                                                           vm_arg *vmargs);
110 double intrp_asm_vm_call_method_double(methodinfo *m, s4 vmargscount,
111                                                                            vm_arg *vmargs);
112 #endif
113
114 /* exception handling functions */
115
116 #if defined(ENABLE_JIT)
117 void asm_handle_exception(void);
118 void asm_handle_nat_exception(void);
119 #endif
120
121 /* stub for throwing AbstractMethodError's */
122 #if defined(ENABLE_JIT)
123 void asm_abstractmethoderror(void);
124 #endif
125
126 #if defined(ENABLE_INTRP)
127 void intrp_asm_abstractmethoderror(void);
128 #endif
129
130 /* wrapper for code patching functions */
131 void asm_patcher_wrapper(void);
132
133 /* functions for on-stack replacement */
134 #if defined(ENABLE_REPLACEMENT)
135 void asm_replacement_out(void);
136 void asm_replacement_in(executionstate_t *es, replace_safestack_t *st);
137 #endif
138
139 long asm_compare_and_swap(volatile long *p, long oldval, long newval);
140 void asm_memory_barrier(void);
141
142 #if defined(ENABLE_THREADS)
143 extern critical_section_node_t asm_criticalsections;
144 #endif
145
146 #if defined(ENABLE_JIT)
147 void asm_getclassvalues_atomic(vftbl_t *super, vftbl_t *sub, castinfo *out);
148 #endif
149
150 #if defined(ENABLE_INTRP)
151 void intrp_asm_getclassvalues_atomic(vftbl_t *super, vftbl_t *sub, castinfo *out);
152 #endif
153
154 /* cache flush function */
155 void asm_cacheflush(u1 *addr, s4 nbytes);
156
157 u8 asm_get_cycle_count(void);
158
159 #endif /* _ASMPART_H */
160
161
162 /*
163  * These are local overrides for various environment variables in Emacs.
164  * Please do not remove this and leave it at the end of the file, where
165  * Emacs will automagically detect them.
166  * ---------------------------------------------------------------------
167  * Local variables:
168  * mode: c
169  * indent-tabs-mode: t
170  * c-basic-offset: 4
171  * tab-width: 4
172  * End:
173  * vim:noexpandtab:sw=4:ts=4:
174  */