* src/vm/exceptions.h (exceptionptr): Removed.
[cacao.git] / src / vm / builtin.h
1 /* src/vm/builtin.h - prototypes of builtin 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: builtin.h 7563 2007-03-23 21:33:53Z twisti $
26
27 */
28
29
30 #ifndef _BUILTIN_H
31 #define _BUILTIN_H
32
33 #include "config.h"
34 #include "vm/types.h"
35
36 #include "arch.h"
37
38 #include "toolbox/logging.h"
39
40 #include "vmcore/utf8.h"
41
42
43 /* define infinity for floating point numbers */
44
45 #define FLT_NAN     0x7fc00000
46 #define FLT_POSINF  0x7f800000
47 #define FLT_NEGINF  0xff800000
48
49 /* define infinity for double floating point numbers */
50
51 #define DBL_NAN     0x7ff8000000000000LL
52 #define DBL_POSINF  0x7ff0000000000000LL
53 #define DBL_NEGINF  0xfff0000000000000LL
54
55
56 /* float versions are not defined in GNU classpath's fdlibm */
57
58 #define copysignf    copysign
59 #define finitef      finite
60 #define fmodf        fmod
61 #define isnanf       isnan
62
63
64 /* builtin functions table ****************************************************/
65
66 typedef struct builtintable_entry builtintable_entry;
67
68 struct builtintable_entry {
69         s4           opcode;                /* opcode which is replaced           */
70         functionptr  fp;                    /* function pointer of builtin        */
71         char        *cclassname;            /* char name of the class             */
72         char        *cname;                 /* char name of the function          */
73         char        *cdescriptor;           /* char name of the descriptor        */
74         utf         *classname;             /* class of the function              */
75         utf         *name;                  /* name of the function               */
76         utf         *descriptor;            /* descriptor of the function         */
77         bool         checkexception;        /* check for exception after return   */
78         methoddesc  *md;
79 };
80
81
82 /* function prototypes ********************************************************/
83
84 bool builtin_init(void);
85
86 builtintable_entry *builtintable_get_internal(functionptr fp);
87 builtintable_entry *builtintable_get_automatic(s4 opcode);
88
89 bool builtintable_replace_function(void *iptr);
90
91
92 /**********************************************************************/
93 /* BUILTIN FUNCTIONS                                                  */
94 /**********************************************************************/
95
96 /* NOTE: Builtin functions which are used in the BUILTIN* opcodes must
97  * have a BUILTIN_... macro defined as seen below. In code dealing
98  * with the BUILTIN* opcodes the functions may only be addressed by
99  * these macros, never by their actual name! (This helps to make this
100  * code more portable.)
101  *
102  * C and assembler code which does not deal with the BUILTIN* opcodes,
103  * can use the builtin functions normally (like all other functions).
104  *
105  * IMPORTANT:
106  * For each builtin function which is used in a BUILTIN* opcode there
107  * must be an entry in the builtin_desc table in jit/jit.c.
108  *
109  * Below each prototype is either the BUILTIN_ macro definition or a
110  * comment specifiying that this function is not used in BUILTIN*
111  * opcodes.
112  *
113  * (The BUILTIN* opcodes are ICMD_BUILTIN1, ICMD_BUILTIN2 and
114  * ICMD_BUILTIN3.)
115  */
116
117 s4 builtin_instanceof(java_objectheader *obj, classinfo *class);
118 #define BUILTIN_instanceof (functionptr) builtin_instanceof
119 s4 builtin_checkcast(java_objectheader *obj, classinfo *class);
120 /* NOT AN OP */
121 s4 builtin_arrayinstanceof(java_objectheader *o, classinfo *targetclass);
122 #define BUILTIN_arrayinstanceof (functionptr) builtin_arrayinstanceof
123 s4 builtin_arraycheckcast(java_objectheader *o, classinfo *targetclass);
124 #define BUILTIN_arraycheckcast (functionptr) builtin_arraycheckcast
125
126 void *builtin_throw_exception(java_objectheader *exception);
127 /* NOT AN OP */
128 java_objectheader *builtin_trace_exception(java_objectheader *xptr,
129                                                                                    methodinfo *m,
130                                                                                    void *pos,
131                                                                                    s4 indent);
132 /* NOT AN OP */
133
134 java_objectheader *builtin_new(classinfo *c);
135 #define BUILTIN_new (functionptr) builtin_new
136
137 java_arrayheader *builtin_newarray(s4 size, classinfo *arrayclass);
138 #define BUILTIN_newarray (functionptr) builtin_newarray
139
140 java_objectarray *builtin_anewarray(s4 size, classinfo *componentclass);
141 #define BUILTIN_anewarray (functionptr) builtin_anewarray
142
143 java_booleanarray *builtin_newarray_boolean(s4 size);
144 #define BUILTIN_newarray_boolean (functionptr) builtin_newarray_boolean
145 java_chararray *builtin_newarray_char(s4 size);
146 #define BUILTIN_newarray_char (functionptr) builtin_newarray_char
147 java_floatarray *builtin_newarray_float(s4 size);
148 #define BUILTIN_newarray_float (functionptr) builtin_newarray_float
149 java_doublearray *builtin_newarray_double(s4 size);
150 #define BUILTIN_newarray_double (functionptr) builtin_newarray_double
151 java_bytearray *builtin_newarray_byte(s4 size);
152 #define BUILTIN_newarray_byte (functionptr) builtin_newarray_byte
153 java_shortarray *builtin_newarray_short(s4 size);
154 #define BUILTIN_newarray_short (functionptr) builtin_newarray_short
155 java_intarray *builtin_newarray_int(s4 size);
156 #define BUILTIN_newarray_int (functionptr) builtin_newarray_int
157 java_longarray *builtin_newarray_long(s4 size);
158 #define BUILTIN_newarray_long (functionptr) builtin_newarray_long
159
160 java_arrayheader *builtin_multianewarray(int n, classinfo *arrayclass,
161                                                                                  long *dims);
162 #define BUILTIN_multianewarray (functionptr) builtin_multianewarray
163
164 s4 builtin_canstore(java_objectarray *oa, java_objectheader *o);
165 #define BUILTIN_canstore (functionptr) builtin_canstore
166
167 #if defined(TRACE_ARGS_NUM)
168 void builtin_verbosecall_enter(s8 a0, s8 a1,
169 # if TRACE_ARGS_NUM >= 4
170                                                            s8 a2, s8 a3,
171 # endif
172 # if TRACE_ARGS_NUM >= 6
173                                                            s8 a4, s8 a5,
174 # endif
175 # if TRACE_ARGS_NUM == 8
176                                                            s8 a6, s8 a7,
177 # endif
178                                                            methodinfo *m);
179 /* NOT AN OP */
180 #endif /* defined(TRACE_ARGS_NUM) */
181
182 void builtin_verbosecall_exit(s8 l, double d, float f, methodinfo *m);
183 /* NOT AN OP */
184
185 s4 builtin_idiv(s4 a, s4 b);
186 #define BUILTIN_idiv (functionptr) builtin_idiv
187 s4 builtin_irem(s4 a, s4 b);
188 #define BUILTIN_irem (functionptr) builtin_irem
189
190 s8 builtin_ladd(s8 a, s8 b);
191 #define BUILTIN_ladd (functionptr) builtin_ladd
192 s8 builtin_lsub(s8 a, s8 b);
193 #define BUILTIN_lsub (functionptr) builtin_lsub
194 s8 builtin_lmul(s8 a, s8 b);
195 #define BUILTIN_lmul (functionptr) builtin_lmul
196
197 s8 builtin_ldiv(s8 a, s8 b);
198 #define BUILTIN_ldiv (functionptr) builtin_ldiv
199 s8 builtin_lrem(s8 a, s8 b);
200 #define BUILTIN_lrem (functionptr) builtin_lrem
201
202 s8 builtin_lshl(s8 a, s4 b);
203 #define BUILTIN_lshl (functionptr) builtin_lshl
204 s8 builtin_lshr(s8 a, s4 b);
205 #define BUILTIN_lshr (functionptr) builtin_lshr
206 s8 builtin_lushr(s8 a, s4 b);
207 #define BUILTIN_lushr (functionptr) builtin_lushr
208 s8 builtin_land(s8 a, s8 b);
209 #define BUILTIN_land (functionptr) builtin_land
210 s8 builtin_lor(s8 a, s8 b);
211 #define BUILTIN_lor (functionptr) builtin_lor
212 s8 builtin_lxor(s8 a, s8 b);
213 #define BUILTIN_lxor (functionptr) builtin_lxor
214 s8 builtin_lneg(s8 a);
215 #define BUILTIN_lneg (functionptr) builtin_lneg
216 s4 builtin_lcmp(s8 a, s8 b);
217 #define BUILTIN_lcmp (functionptr) builtin_lcmp
218
219 float builtin_fadd(float a, float b);
220 #define BUILTIN_fadd (functionptr) builtin_fadd
221 float builtin_fsub(float a, float b);
222 #define BUILTIN_fsub (functionptr) builtin_fsub
223 float builtin_fmul(float a, float b);
224 #define BUILTIN_fmul (functionptr) builtin_fmul
225 float builtin_fdiv(float a, float b);
226 #define BUILTIN_fdiv (functionptr) builtin_fdiv
227 float builtin_fneg(float a);         
228 #define BUILTIN_fneg (functionptr) builtin_fneg
229 s4 builtin_fcmpl(float a, float b);  
230 #define BUILTIN_fcmpl (functionptr) builtin_fcmpl
231 s4 builtin_fcmpg(float a, float b);  
232 #define BUILTIN_fcmpg (functionptr) builtin_fcmpg
233 float builtin_frem(float a, float b);
234 #define BUILTIN_frem (functionptr) builtin_frem
235
236 double builtin_dadd(double a, double b);
237 #define BUILTIN_dadd (functionptr) builtin_dadd
238 double builtin_dsub(double a, double b);
239 #define BUILTIN_dsub (functionptr) builtin_dsub
240 double builtin_dmul(double a, double b);
241 #define BUILTIN_dmul (functionptr) builtin_dmul
242 double builtin_ddiv(double a, double b);
243 #define BUILTIN_ddiv (functionptr) builtin_ddiv
244 double builtin_dneg(double a);          
245 #define BUILTIN_dneg (functionptr) builtin_dneg
246 s4 builtin_dcmpl(double a, double b);   
247 #define BUILTIN_dcmpl (functionptr) builtin_dcmpl
248 s4 builtin_dcmpg(double a, double b);   
249 #define BUILTIN_dcmpg (functionptr) builtin_dcmpg
250 double builtin_drem(double a, double b);
251 #define BUILTIN_drem (functionptr) builtin_drem
252
253 s8       builtin_i2l(s4 i);
254 /* NOT AN OP */
255 float    builtin_i2f(s4 i);
256 #define BUILTIN_i2f (functionptr) builtin_i2f
257 double   builtin_i2d(s4 i);
258 #define BUILTIN_i2d (functionptr) builtin_i2d
259 s4       builtin_l2i(s8 l);
260 /* NOT AN OP */
261 float    builtin_l2f(s8 l);
262 #define BUILTIN_l2f (functionptr) builtin_l2f
263 double   builtin_l2d(s8 l);
264 #define BUILTIN_l2d (functionptr) builtin_l2d
265
266 s4       builtin_f2i(float a);
267 #define BUILTIN_f2i (functionptr) builtin_f2i
268 s4       asm_builtin_f2i(float a);
269 /* NOT AN OP */
270 s8       builtin_f2l(float a);
271 #define BUILTIN_f2l (functionptr) builtin_f2l
272 s8       asm_builtin_f2l(float a);
273 /* NOT AN OP */
274
275 double   builtin_f2d(float a);
276 #define BUILTIN_f2d (functionptr) builtin_f2d
277
278 s4       builtin_d2i(double a);
279 #define BUILTIN_d2i (functionptr) builtin_d2i
280 s4       asm_builtin_d2i(double a);
281 /* NOT AN OP */
282 s8       builtin_d2l(double a);
283 #define BUILTIN_d2l (functionptr) builtin_d2l
284 s8       asm_builtin_d2l(double a);
285 /* NOT AN OP */
286
287 float    builtin_d2f(double a);
288 #define BUILTIN_d2f (functionptr) builtin_d2f
289
290 java_objectheader *builtin_clone(void *env, java_objectheader *o);
291 #define BUILTIN_clone (functionptr) builtin_clone
292
293 bool builtin_arraycopy(java_arrayheader *src, s4 srcStart,
294                                            java_arrayheader *dest, s4 destStart, s4 len);
295 #define BUILTIN_arraycopy (functionptr) builtin_arraycopy
296
297 s8 builtin_currenttimemillis(void);
298 #define BUILTIN_currenttimemillis (functionptr) builtin_currenttimemillis
299
300 #if defined(ENABLE_CYCLES_STATS)
301 void builtin_print_cycles_stats(FILE *file);
302 #endif
303
304 #endif /* _BUILTIN_H */
305
306
307 /*
308  * These are local overrides for various environment variables in Emacs.
309  * Please do not remove this and leave it at the end of the file, where
310  * Emacs will automagically detect them.
311  * ---------------------------------------------------------------------
312  * Local variables:
313  * mode: c
314  * indent-tabs-mode: t
315  * c-basic-offset: 4
316  * tab-width: 4
317  * End:
318  */