* src/vm/jit/replace.c (replace_create_replacement_points): Don't use
[cacao.git] / src / vm / loader.h
index bbd037df45826f8530a16a60fe55c428cd44083d..412553a531f1a5754a985c7ce67a279aa7e118cd 100644 (file)
@@ -1,9 +1,9 @@
-/* vm/loader.h - class loader header
+/* src/vm/loader.h - class loader header
 
-   Copyright (C) 1996-2005 R. Grafl, A. Krall, C. Kruegel, C. Oates,
-   R. Obermaisser, M. Platter, M. Probst, S. Ring, E. Steiner,
-   C. Thalinger, D. Thuernbeck, P. Tomsich, C. Ullrich, J. Wenninger,
-   Institut f. Computersprachen - TU Wien
+   Copyright (C) 1996-2005, 2006 R. Grafl, A. Krall, C. Kruegel,
+   C. Oates, R. Obermaisser, M. Platter, M. Probst, S. Ring,
+   E. Steiner, C. Thalinger, D. Thuernbeck, P. Tomsich, C. Ullrich,
+   J. Wenninger, Institut f. Computersprachen - TU Wien
 
    This file is part of CACAO.
 
 
    You should have received a copy of the GNU General Public License
    along with this program; if not, write to the Free Software
-   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
-   02111-1307, USA.
+   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+   02110-1301, USA.
 
-   Contact: cacao@complang.tuwien.ac.at
+   Contact: cacao@cacaojvm.org
 
    Authors: Reinhard Grafl
 
-   $Id: loader.h 1898 2005-02-07 17:21:30Z twisti $
+   Changes: Christian Thalinger
+
+   $Id: loader.h 4490 2006-02-12 16:02:43Z edwin $
 */
 
 
 #ifndef _LOADER_H
 #define _LOADER_H
 
-#include <stdio.h>
-
-#if defined(USE_ZLIB)
-# include "vm/unzip.h"
-#endif
-
-
-/* datastruture from a classfile */
-
-typedef struct classbuffer {
-       classinfo *class;                   /* pointer to classinfo structure     */
-       u1        *data;                    /* pointer to byte code               */
-       s4         size;                    /* size of the byte code              */
-       u1         *pos;                    /* current read position              */
-} classbuffer;
-
-
-
-/* classpath_info *************************************************************/
-
-#define CLASSPATH_PATH       0
-#define CLASSPATH_ARCHIVE    1
-
-typedef struct classpath_info classpath_info;
-
-struct classpath_info {
-#if defined(USE_THREADS)
-       /* Required for monitor locking on zip/jar files. */
-       java_objectheader  header;
-#endif
-       s4                 type;
-       char              *path;
-       s4                 pathlen;
-       struct java_security_ProtectionDomain *pd;
-#if defined(USE_ZLIB)
-       unzFile            uf;
-#endif 
-       classpath_info    *next;
-};
-
-
-/* export variables */
-
-#if defined(USE_THREADS)
-extern int blockInts;
-#endif
+#include "config.h"
 
+#include <stdio.h>
 
-/* references to some system classes ******************************************/
+#include "vm/types.h"
 
-extern classinfo *class_java_lang_Object;
-extern classinfo *class_java_lang_String;
-extern classinfo *class_java_lang_Cloneable;
-extern classinfo *class_java_io_Serializable;
-extern utf *utf_fillInStackTrace_name;
-extern utf *utf_fillInStackTrace_desc;
 
-/* pseudo classes for the type checker ****************************************/
+/* forward typedefs ***********************************************************/
 
-/*
- * pseudo_class_Arraystub
- *     (extends Object implements Cloneable, java.io.Serializable)
- *
- *     If two arrays of incompatible component types are merged,
- *     the resulting reference has no accessible components.
- *     The result does, however, implement the interfaces Cloneable
- *     and java.io.Serializable. This pseudo class is used internally
- *     to represent such results. (They are *not* considered arrays!)
- *
- * pseudo_class_Null
- *
- *     This pseudo class is used internally to represent the
- *     null type.
- *
- * pseudo_class_New
- *
- *     This pseudo class is used internally to represent the
- *     the 'uninitialized object' type.
- */
+typedef struct classbuffer classbuffer;
 
-extern classinfo *pseudo_class_Arraystub;
-extern classinfo *pseudo_class_Null;
-extern classinfo *pseudo_class_New;
-extern vftbl_t *pseudo_class_Arraystub_vftbl;
 
-extern utf *array_packagename;
+#include "vm/class.h"
+#include "vm/descriptor.h"
+#include "vm/global.h"
+#include "vm/references.h"
+#include "vm/method.h"
+#include "vm/utf8.h"
 
 
-/************************ prototypes ******************************************/
+/* constant pool entries *******************************************************
 
-/* initialize loader, load important systemclasses */
-void loader_init(u1 *stackbottom);
-
-void suck_init(char *cpath);
-void create_all_classes(void);
-void suck_stop(classbuffer *cb);
-
-/* free resources */
-void loader_close(void);
+       All constant pool entries need a data structure which contain the entrys
+       value. In some cases this structure exist already, in the remaining cases
+       this structure must be generated:
 
-void loader_compute_subclasses(classinfo *c);
+               kind                      structure                     generated?
+       ----------------------------------------------------------------------
+    CONSTANT_Class               classinfo                           no   XXX this will change
+    CONSTANT_Fieldref            constant_FMIref                    yes
+    CONSTANT_Methodref           constant_FMIref                    yes
+    CONSTANT_InterfaceMethodref  constant_FMIref                    yes
+    CONSTANT_String              unicode                             no
+    CONSTANT_Integer             constant_integer                   yes
+    CONSTANT_Float               constant_float                     yes
+    CONSTANT_Long                constant_long                      yes
+    CONSTANT_Double              constant_double                    yes
+    CONSTANT_NameAndType         constant_nameandtype               yes
+    CONSTANT_Utf8                unicode                             no
+    CONSTANT_UNUSED              -
 
-/* retrieve constantpool element */
-voidptr class_getconstant(classinfo *class, u4 pos, u4 ctype);
+*******************************************************************************/
 
-/* determine type of a constantpool element */
-u4 class_constanttype(classinfo *class, u4 pos);
+typedef struct {            /* Integer                                        */
+       s4 value;
+} constant_integer;
 
-s4 class_findmethodIndex(classinfo *c, utf *name, utf *desc);
+       
+typedef struct {            /* Float                                          */
+       float value;
+} constant_float;
 
-/* search class for a field */
-fieldinfo *class_findfield(classinfo *c, utf *name, utf *desc);
-fieldinfo *class_resolvefield(classinfo *c, utf *name, utf *desc, classinfo *referer, bool except);
 
-/* search for a method with a specified name and descriptor */
-methodinfo *class_findmethod(classinfo *c, utf *name, utf *desc);
-methodinfo *class_fetchmethod(classinfo *c, utf *name, utf *desc);
-methodinfo *class_findmethod_w(classinfo *c, utf *name, utf *desc, char*);
-methodinfo *class_resolvemethod(classinfo *c, utf *name, utf *dest);
-methodinfo *class_resolveclassmethod(classinfo *c, utf *name, utf *dest, classinfo *referer, bool except);
-methodinfo *class_resolveinterfacemethod(classinfo *c, utf *name, utf *dest, classinfo *referer, bool except);
+typedef struct {            /* Long                                           */
+       s8 value;
+} constant_long;
+       
 
-/* search for a method with specified name and arguments (returntype ignored) */
-methodinfo *class_findmethod_approx(classinfo *c, utf *name, utf *desc);
-methodinfo *class_resolvemethod_approx(classinfo *c, utf *name, utf *dest);
+typedef struct {            /* Double                                         */
+       double value;
+} constant_double;
 
-bool class_issubclass(classinfo *sub, classinfo *super);
 
-/* call initializer of class */
-classinfo *class_init(classinfo *c);
+typedef struct {            /* NameAndType (Field or Method)                  */
+       utf *name;              /* field/method name                              */
+       utf *descriptor;        /* field/method type descriptor string            */
+} constant_nameandtype;
 
-void class_showconstanti(classinfo *c, int ii);
 
-/* debug purposes */
-void class_showmethods(classinfo *c);
-void class_showconstantpool(classinfo *c);
-void print_arraydescriptor(FILE *file, arraydescriptor *desc);
+/* classbuffer ****************************************************************/
 
-/* return the primitive class inidicated by the given signature character */
-classinfo *class_primitive_from_sig(char sig);
+struct classbuffer {
+       classinfo *class;                   /* pointer to classinfo structure     */
+       u1        *data;                    /* pointer to byte code               */
+       s4         size;                    /* size of the byte code              */
+       u1        *pos;                     /* current read position              */
+       char      *path;                    /* path to file (for debugging)       */
+};
 
 
-/* return the class indicated by the given descriptor */
-/* (see loader.c for documentation) */
-#define CLASSLOAD_NEW           0      /* default */
-#define CLASSLOAD_LOAD          0x0001
-#define CLASSLOAD_SKIP          0x0002
-#define CLASSLOAD_PANIC         0      /* default */
-#define CLASSLOAD_NOPANIC       0x0010
-#define CLASSLOAD_PRIMITIVE     0      /* default */
-#define CLASSLOAD_NULLPRIMITIVE 0x0020
-#define CLASSLOAD_VOID          0      /* default */
-#define CLASSLOAD_NOVOID        0x0040
-#define CLASSLOAD_NOCHECKEND    0      /* default */
-#define CLASSLOAD_CHECKEND      0x1000
+/* export variables ***********************************************************/
 
-classinfo *class_from_descriptor(char *utf_ptr,char *end_ptr,char **next,int mode);
-int type_from_descriptor(classinfo **cls,char *utf_ptr,char *end_ptr,char **next,int mode);
+#if defined(USE_THREADS)
+extern int blockInts;
+#endif
 
-/* (used by class_new, don't use directly) */
-void class_new_array(classinfo *c);
 
-#define LAZYLOADING(class) { \
-        if (!class->loaded) \
-            if (!class_load(class)) \
-                return 0; \
-        if (!class->linked) \
-            if (!class_link(class)) \
-                return 0; }
+/* function prototypes ********************************************************/
 
+/* initialize loader, load important systemclasses */
+bool loader_init(u1 *stackbottom);
 
-classinfo *class_load(classinfo *c);
-classinfo *class_load_intern(classbuffer *cb);
-classinfo *class_link(classinfo *c);
-void class_free(classinfo *c);
+void loader_load_all_classes(void);
 
-void field_display(fieldinfo *f);
+/* free resources */
+void loader_close(void);
 
-void method_display(methodinfo *m);
-void method_display_w_class(methodinfo *m);
+/* class loading functions */
+classinfo *load_class_from_sysloader(utf *name);
+classinfo *load_class_from_classloader(utf *name, java_objectheader *cl);
+classinfo *load_class_bootstrap(utf *name);
 
-utf* clinit_desc(void);
-utf* clinit_name(void);
+/* (don't use the following directly) */
+classinfo *load_class_from_classbuffer(classbuffer *cb);
+classinfo *load_newly_created_array(classinfo *c,java_objectheader *loader);
 
 #endif /* _LOADER_H */
 
-
 /*
  * These are local overrides for various environment variables in Emacs.
  * Please do not remove this and leave it at the end of the file, where
@@ -231,4 +154,5 @@ utf* clinit_name(void);
  * c-basic-offset: 4
  * tab-width: 4
  * End:
+ * vim:noexpandtab:sw=4:ts=4:
  */