* src/cacaoh/dummy.c (vm_initializing): Added.
[cacao.git] / src / vmcore / class.h
1 /* src/vmcore/class.h - class related functions header
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 */
26
27
28 #ifndef _CLASS_H
29 #define _CLASS_H
30
31 /* forward typedefs ***********************************************************/
32
33 typedef struct classinfo      classinfo; 
34 typedef struct innerclassinfo innerclassinfo;
35 typedef struct extra_classref extra_classref;
36 typedef struct castinfo       castinfo;
37
38
39 #include "config.h"
40
41 #include <stdint.h>
42
43 #include "vm/types.h"
44
45 #include "toolbox/list.h"
46
47 #include "vm/global.h"
48
49 #if defined(ENABLE_JAVASE)
50 # include "vmcore/annotation.h"
51 #endif
52
53 #include "vmcore/field.h"
54 #include "vmcore/linker.h"
55 #include "vmcore/loader.h"
56 #include "vmcore/method.h"
57 #include "vmcore/references.h"
58 #include "vmcore/utf8.h"
59
60
61 /* class state defines ********************************************************/
62
63 #define CLASS_LOADING         0x0001
64 #define CLASS_LOADED          0x0002
65 #define CLASS_LINKING         0x0004
66 #define CLASS_LINKED          0x0008
67 #define CLASS_INITIALIZING    0x0010
68 #define CLASS_INITIALIZED     0x0020
69 #define CLASS_ERROR           0x0040
70
71
72 /* some macros ****************************************************************/
73
74 #define CLASS_IS_OR_ALMOST_INITIALIZED(c) \
75     (((c)->state & CLASS_INITIALIZING) || ((c)->state & CLASS_INITIALIZED))
76
77
78 /* classinfo ******************************************************************/
79
80 /* We define this dummy structure of java_lang_Class so we can
81    bootstrap cacaoh without needing a java_lang_Class.h file.  Whether
82    the size of the dummy structure is big enough is checked during
83    runtime in vm_create. */
84
85 typedef struct {
86         java_object_t      header;
87 #if defined(WITH_CLASSPATH_GNU)
88         intptr_t           padding[4];
89 #elif defined(WITH_CLASSPATH_SUN)
90         intptr_t           padding[19];
91 #elif defined(WITH_CLASSPATH_CLDC1_1)
92         intptr_t           padding[3];
93 #else
94 # error unknown classpath configuration
95 #endif
96 } dummy_java_lang_Class;
97
98 struct classinfo {                /* class structure                          */
99         dummy_java_lang_Class object;
100
101         s4          flags;            /* ACC flags                                */
102         utf        *name;             /* class name                               */
103
104         s4          cpcount;          /* number of entries in constant pool       */
105         u1         *cptags;           /* constant pool tags                       */
106         voidptr    *cpinfos;          /* pointer to constant pool info structures */
107
108         s4          classrefcount;    /* number of symbolic class references      */
109         constant_classref *classrefs; /* table of symbolic class references       */
110         extra_classref *extclassrefs; /* additional classrefs                     */
111         s4          parseddescsize;   /* size of the parsed descriptors block     */
112         u1         *parseddescs;      /* parsed descriptors                       */
113
114         classinfo  *super;            /* super class                              */
115         classinfo  *sub;              /* sub class pointer                        */
116         classinfo  *nextsub;          /* pointer to next class in sub class list  */
117
118         int32_t     interfacescount;  /* number of interfaces                     */
119         classinfo **interfaces;       /* super interfaces                         */
120
121         int32_t     fieldscount;      /* number of fields                         */
122         fieldinfo  *fields;           /* field table                              */
123
124         int32_t     methodscount;     /* number of methods                        */
125         methodinfo *methods;          /* method table                             */
126
127         s4          state;            /* current class state                      */
128         s4          index;            /* hierarchy depth (classes) or index       */
129                                       /* (interfaces)                             */
130         s4          instancesize;     /* size of an instance of this class        */
131
132         vftbl_t    *vftbl;            /* pointer to virtual function table        */
133
134         methodinfo *finalizer;        /* finalizer method                         */
135
136         u2          innerclasscount;  /* number of inner classes                  */
137         innerclassinfo *innerclass;
138
139         classref_or_classinfo  declaringclass;
140         classref_or_classinfo  enclosingclass;  /* enclosing class                */
141         constant_nameandtype  *enclosingmethod; /* enclosing method               */
142
143         utf        *packagename;      /* full name of the package                 */
144         utf        *sourcefile;       /* SourceFile attribute                     */
145 #if defined(ENABLE_JAVASE)
146         utf        *signature;        /* Signature attribute                      */
147 #if defined(ENABLE_ANNOTATIONS)
148         /* All the annotation attributes are NULL (and not a zero length array)   */
149         /* if there is nothing.                                                   */
150         java_object_t *annotations;   /* annotations of this class                */
151         
152         java_object_t *method_annotations; /* array of annotations of the methods */
153         java_object_t *method_parameterannotations; /* array of parameter         */
154                                       /* annotations of the methods               */
155         java_object_t *method_annotationdefaults; /* array of annotation default  */
156                                       /* values of the methods                    */
157
158         java_object_t *field_annotations; /* array of annotations of the fields   */
159
160 #endif
161 #endif
162         classloader *classloader;       /* NULL for bootstrap classloader         */
163
164 #if defined(ENABLE_JAVASE)
165 # if defined(WITH_CLASSPATH_SUN)
166         java_object_t *protectiondomain;
167 # endif
168 #endif
169 };
170
171
172 /* innerclassinfo *************************************************************/
173
174 struct innerclassinfo {
175         classref_or_classinfo inner_class; /* inner class pointer                 */
176         classref_or_classinfo outer_class; /* outer class pointer                 */
177         utf                  *name;        /* innerclass name                     */
178         s4                    flags;       /* ACC flags                           */
179 };
180
181
182 /* extra_classref **************************************************************
183
184    for classrefs not occurring within descriptors
185
186 *******************************************************************************/
187
188 struct extra_classref {
189         extra_classref    *next;
190         constant_classref  classref;
191 };
192
193
194 /* castinfo *******************************************************************/
195
196 struct castinfo {
197         s4 super_baseval;
198         s4 super_diffval;
199         s4 sub_baseval;
200 };
201
202
203 /* global variables ***********************************************************/
204
205 /* frequently used classes ****************************************************/
206
207 /* important system classes */
208
209 extern classinfo *class_java_lang_Object;
210 extern classinfo *class_java_lang_Class;
211 extern classinfo *class_java_lang_ClassLoader;
212 extern classinfo *class_java_lang_Cloneable;
213 extern classinfo *class_java_lang_SecurityManager;
214 extern classinfo *class_java_lang_String;
215 extern classinfo *class_java_lang_System;
216 extern classinfo *class_java_lang_Thread;
217 extern classinfo *class_java_lang_ThreadGroup;
218 extern classinfo *class_java_lang_Throwable;
219 extern classinfo *class_java_io_Serializable;
220
221 #if defined(WITH_CLASSPATH_GNU)
222 extern classinfo *class_java_lang_VMSystem;
223 extern classinfo *class_java_lang_VMThread;
224 extern classinfo *class_java_lang_VMThrowable;
225 #endif
226
227 #if defined(WITH_CLASSPATH_SUN)
228 extern classinfo *class_sun_reflect_MagicAccessorImpl;
229 #endif
230
231 #if defined(ENABLE_JAVASE)
232 extern classinfo *class_java_lang_Void;
233 #endif
234
235 extern classinfo *class_java_lang_Boolean;
236 extern classinfo *class_java_lang_Byte;
237 extern classinfo *class_java_lang_Character;
238 extern classinfo *class_java_lang_Short;
239 extern classinfo *class_java_lang_Integer;
240 extern classinfo *class_java_lang_Long;
241 extern classinfo *class_java_lang_Float;
242 extern classinfo *class_java_lang_Double;
243
244 /* some classes which may be used more often */
245
246 #if defined(ENABLE_JAVASE)
247 extern classinfo *class_java_lang_StackTraceElement;
248 extern classinfo *class_java_lang_reflect_Constructor;
249 extern classinfo *class_java_lang_reflect_Field;
250 extern classinfo *class_java_lang_reflect_Method;
251 extern classinfo *class_java_security_PrivilegedAction;
252 extern classinfo *class_java_util_Vector;
253
254 extern classinfo *arrayclass_java_lang_Object;
255
256 # if defined(ENABLE_ANNOTATIONS)
257 extern classinfo *class_sun_reflect_ConstantPool;
258 #  if defined(WITH_CLASSPATH_GNU)
259 extern classinfo *class_sun_reflect_annotation_AnnotationParser;
260 #  endif
261 # endif
262 #endif
263
264
265 /* pseudo classes for the type checker ****************************************/
266
267 /*
268  * pseudo_class_Arraystub
269  *     (extends Object implements Cloneable, java.io.Serializable)
270  *
271  *     If two arrays of incompatible component types are merged,
272  *     the resulting reference has no accessible components.
273  *     The result does, however, implement the interfaces Cloneable
274  *     and java.io.Serializable. This pseudo class is used internally
275  *     to represent such results. (They are *not* considered arrays!)
276  *
277  * pseudo_class_Null
278  *
279  *     This pseudo class is used internally to represent the
280  *     null type.
281  *
282  * pseudo_class_New
283  *
284  *     This pseudo class is used internally to represent the
285  *     the 'uninitialized object' type.
286  */
287
288 extern classinfo *pseudo_class_Arraystub;
289 extern classinfo *pseudo_class_Null;
290 extern classinfo *pseudo_class_New;
291
292
293 /* function prototypes ********************************************************/
294
295 classinfo *class_create_classinfo(utf *u);
296 void       class_postset_header_vftbl(void);
297 classinfo *class_define(utf *name, classloader *cl, int32_t length, const uint8_t *data, java_handle_t *pd);
298 void       class_set_packagename(classinfo *c);
299
300 bool       class_load_attributes(classbuffer *cb);
301
302 /* retrieve constantpool element */
303 voidptr class_getconstant(classinfo *class, u4 pos, u4 ctype);
304 voidptr innerclass_getconstant(classinfo *c, u4 pos, u4 ctype);
305
306 /* frees all resources used by the class */
307 void class_free(classinfo *);
308
309 /* return an array class with the given component class */
310 classinfo *class_array_of(classinfo *component,bool link);
311
312 /* return an array class with the given dimension and element class */
313 classinfo *class_multiarray_of(s4 dim, classinfo *element,bool link);
314
315 /* return a classref for the given class name */
316 /* (does a linear search!)                    */
317 constant_classref *class_lookup_classref(classinfo *cls,utf *name);
318
319 /* return a classref for the given class name */
320 /* (does a linear search!)                    */
321 constant_classref *class_get_classref(classinfo *cls,utf *name);
322
323 /* return a classref to the class itself */
324 /* (does a linear search!)                    */
325 constant_classref *class_get_self_classref(classinfo *cls);
326
327 /* return a classref for an array with the given dimension of with the */
328 /* given component type */
329 constant_classref *class_get_classref_multiarray_of(s4 dim,constant_classref *ref);
330
331 /* return a classref for the component type of the given array type */
332 constant_classref *class_get_classref_component_of(constant_classref *ref);
333
334 /* get a class' field by name and descriptor */
335 fieldinfo *class_findfield(classinfo *c, utf *name, utf *desc);
336
337 /* search 'classinfo'-structure for a field with the specified name */
338 fieldinfo *class_findfield_by_name(classinfo *c, utf *name);
339 s4 class_findfield_index_by_name(classinfo *c, utf *name);
340
341 /* search class for a field */
342 fieldinfo *class_resolvefield(classinfo *c, utf *name, utf *desc, classinfo *referer, bool throwexception);
343
344 /* search for a method with a specified name and descriptor */
345 methodinfo *class_findmethod(classinfo *c, utf *name, utf *desc);
346 methodinfo *class_resolvemethod(classinfo *c, utf *name, utf *dest);
347 methodinfo *class_resolveclassmethod(classinfo *c, utf *name, utf *dest, classinfo *referer, bool throwexception);
348 methodinfo *class_resolveinterfacemethod(classinfo *c, utf *name, utf *dest, classinfo *referer, bool throwexception);
349
350 bool class_issubclass(classinfo *sub, classinfo *super);
351 bool class_isanysubclass(classinfo *sub, classinfo *super);
352
353 bool                       class_is_primitive(classinfo *c);
354 bool                       class_is_anonymousclass(classinfo *c);
355 bool                       class_is_array(classinfo *c);
356 bool                       class_is_interface(classinfo *c);
357 bool                       class_is_localclass(classinfo *c);
358 bool                       class_is_memberclass(classinfo *c);
359
360 classloader               *class_get_classloader(classinfo *c);
361 classinfo                 *class_get_superclass(classinfo *c);
362 classinfo                 *class_get_componenttype(classinfo *c);
363 java_handle_objectarray_t *class_get_declaredclasses(classinfo *c, bool publicOnly);
364 classinfo                 *class_get_declaringclass(classinfo *c);
365 classinfo                 *class_get_enclosingclass(classinfo *c);
366 java_handle_objectarray_t *class_get_interfaces(classinfo *c);
367 java_handle_bytearray_t   *class_get_annotations(classinfo *c);
368 int32_t                    class_get_modifiers(classinfo *c, bool ignoreInnerClassesAttrib);
369
370 #if defined(ENABLE_JAVASE)
371 utf                       *class_get_signature(classinfo *c);
372 #endif
373
374 /* some debugging functions */
375
376 #if !defined(NDEBUG)
377 void class_printflags(classinfo *c);
378 void class_print(classinfo *c);
379 void class_println(classinfo *c);
380 void class_classref_print(constant_classref *cr);
381 void class_classref_println(constant_classref *cr);
382 void class_classref_or_classinfo_print(classref_or_classinfo c);
383 void class_classref_or_classinfo_println(classref_or_classinfo c);
384 #endif
385
386 /* debug purposes */
387 void class_showmethods(classinfo *c);
388 void class_showconstantpool(classinfo *c);
389
390 #endif /* _CLASS_H */
391
392
393 /*
394  * These are local overrides for various environment variables in Emacs.
395  * Please do not remove this and leave it at the end of the file, where
396  * Emacs will automagically detect them.
397  * ---------------------------------------------------------------------
398  * Local variables:
399  * mode: c
400  * indent-tabs-mode: t
401  * c-basic-offset: 4
402  * tab-width: 4
403  * End:
404  */