framework for handbook added
[cacao.git] / loader.c
index 6d180adc106fc9b0a1b66648685ac4cff2f1070b..016054bb82500aaa8fafbcfca66f2fa2a4b2f120 100644 (file)
--- a/loader.c
+++ b/loader.c
 #include "tables.h"
 #include "builtin.h"
 #include "jit.h"
-#ifdef OLD_COMPILER
-#include "compiler.h"
-#endif
 #include "asmpart.h"
 
-#ifdef USE_BOEHM
 #include "toolbox/memory.h"
-#endif
+
+#include "toolbox/loging.h"
 
 #include "threads/thread.h"
 #include <sys/stat.h>
 
 /* global variables ***********************************************************/
 
-extern bool newcompiler;        /* true if new compiler is used               */               
 bool opt_rt = false;            /* true if RTA parse should be used     RT-CO */
+bool opt_xta = false;           /* true if XTA parse should be used    XTA-CO */
+bool opt_vta = false;           /* true if VTA parse should be used    VTA-CO */
 
 int count_class_infos = 0;      /* variables for measurements                 */
 int count_const_pool_len = 0;
@@ -83,16 +81,20 @@ static utf *utf_systemclass;                /* java/lang/System        */
 
 classinfo *class_java_lang_Object;
 classinfo *class_java_lang_String;
-classinfo *class_java_lang_ClassCastException;
-classinfo *class_java_lang_NullPointerException;
-classinfo *class_java_lang_ArrayIndexOutOfBoundsException;
-classinfo *class_java_lang_NegativeArraySizeException;
-classinfo *class_java_lang_OutOfMemoryError;
-classinfo *class_java_lang_ArithmeticException;
-classinfo *class_java_lang_ArrayStoreException;
-classinfo *class_java_lang_ThreadDeath;
 classinfo *class_array = NULL;
 
+/* stefan */
+/* These are made static so they cannot be used for throwing in native */
+/* functions.                                                          */
+static classinfo *class_java_lang_ClassCastException;
+static classinfo *class_java_lang_NullPointerException;
+static classinfo *class_java_lang_ArrayIndexOutOfBoundsException;
+static classinfo *class_java_lang_NegativeArraySizeException;
+static classinfo *class_java_lang_OutOfMemoryError;
+static classinfo *class_java_lang_ArithmeticException;
+static classinfo *class_java_lang_ArrayStoreException;
+static classinfo *class_java_lang_ThreadDeath;
+
 
 /******************************************************************************
 
@@ -103,12 +105,12 @@ classinfo *class_array = NULL;
  ******************************************************************************/
  
 primitivetypeinfo primitivetype_table[PRIMITIVETYPE_COUNT] = { 
-               { NULL, NULL, "java/lang/Double",    'D', "double"  },
-               { NULL, NULL, "java/lang/Float",     'F', "float"   },
-               { NULL, NULL, "java/lang/Character", 'C', "char"    },
                { NULL, NULL, "java/lang/Integer",   'I', "int"     },
                { NULL, NULL, "java/lang/Long",      'J', "long"    },
+               { NULL, NULL, "java/lang/Float",     'F', "float"   },
+               { NULL, NULL, "java/lang/Double",    'D', "double"  },
                { NULL, NULL, "java/lang/Byte",      'B', "byte"    },
+               { NULL, NULL, "java/lang/Character", 'C', "char"    },
                { NULL, NULL, "java/lang/Short",     'S', "short"   },
                { NULL, NULL, "java/lang/Boolean",   'Z', "boolean" },
                { NULL, NULL, "java/lang/Void",      'V', "void"    }};
@@ -353,9 +355,24 @@ void suck_stop () {
 /******************************************************************************/
 
 
-/********** internal function: printflags  (only for debugging) ***************/
 
-static void printflags (u2 f)
+void fprintflags (FILE *fp, u2 f)
+{
+   if ( f & ACC_PUBLIC )       fprintf (fp," PUBLIC");
+   if ( f & ACC_PRIVATE )      fprintf (fp," PRIVATE");
+   if ( f & ACC_PROTECTED )    fprintf (fp," PROTECTED");
+   if ( f & ACC_STATIC )       fprintf (fp," STATIC");
+   if ( f & ACC_FINAL )        fprintf (fp," FINAL");
+   if ( f & ACC_SYNCHRONIZED ) fprintf (fp," SYNCHRONIZED");
+   if ( f & ACC_VOLATILE )     fprintf (fp," VOLATILE");
+   if ( f & ACC_TRANSIENT )    fprintf (fp," TRANSIENT");
+   if ( f & ACC_NATIVE )       fprintf (fp," NATIVE");
+   if ( f & ACC_INTERFACE )    fprintf (fp," INTERFACE");
+   if ( f & ACC_ABSTRACT )     fprintf (fp," ABSTRACT");
+}
+
+/********** internal function: printflags  (only for debugging) ***************/
+void printflags (u2 f)
 {
    if ( f & ACC_PUBLIC )       printf (" PUBLIC");
    if ( f & ACC_PRIVATE )      printf (" PRIVATE");
@@ -697,7 +714,8 @@ constant_arraydescriptor * buildarraydescriptor(char *utf_ptr, u4 namelen)
                d -> arraytype = ARRAYTYPE_OBJECT;
 
                d -> objectclass = class_new ( utf_new(utf_ptr+1, namelen-3) );
-                d -> objectclass  -> classUsed = 0; /* not used initially CO-RT */
+                d -> objectclass  -> classUsed = NOTUSED; /* not used initially CO-RT */
+               d -> objectclass  -> impldBy = NULL;
                break;
        }
        return d;
@@ -762,6 +780,7 @@ static void field_load (fieldinfo *f, classinfo *c)
        f -> descriptor = class_getconstant (c, suck_u2(), CONSTANT_Utf8); /* JavaVM descriptor           */
        f -> type = jtype = desc_to_type (f->descriptor);                  /* data type                   */
        f -> offset = 0;                                                   /* offset from start of object */
+       f->xta = NULL;
        
        switch (f->type) {
        case TYPE_INT:        f->value.i = 0; break;
@@ -858,7 +877,7 @@ static void field_free (fieldinfo *f)
 
 /**************** Function: field_display (debugging only) ********************/
 
-static void field_display (fieldinfo *f)
+void field_display (fieldinfo *f)
 {
        printf ("   ");
        printflags (f -> flags);
@@ -903,7 +922,12 @@ static void method_load (methodinfo *m, classinfo *c)
        m -> entrypoint = NULL;
        m -> mcode = NULL;
        m -> stubroutine = NULL;
-        m -> methodUsed = 0;    /* not used initially  CO-RT*/
+        m -> methodUsed = NOTUSED;    
+        m -> monoPoly = MONO;    
+       m -> subRedefs = 0;
+       m -> subRedefsUsed = 0;
+
+       m->xta = NULL;
        
        if (! (m->flags & ACC_NATIVE) ) {
                m -> stubroutine = createcompilerstub (m);
@@ -913,14 +937,7 @@ static void method_load (methodinfo *m, classinfo *c)
                functionptr f = native_findfunction 
                       (c->name, m->name, m->descriptor, (m->flags & ACC_STATIC) != 0);
                if (f) {
-#ifdef OLD_COMPILER
-               if (newcompiler)
-#endif
                        m -> stubroutine = createnativestub (f, m);
-#ifdef OLD_COMPILER
-               else
-                       m -> stubroutine = oldcreatenativestub (f, m);
-#endif
                        }
                }
        
@@ -1029,7 +1046,7 @@ static bool method_canoverwrite (methodinfo *m, methodinfo *old)
 /******************************************************************************/
 
 
-/******************** function: class_getconstant ******************************
+/******************** function:: class_getconstant ******************************
 
        retrieves the value at position 'pos' of the constantpool of a class
        if the type of the value is other than 'ctype' the system is stopped
@@ -1412,6 +1429,7 @@ static int class_load (classinfo *c)
 
        /* output for debugging purposes */
        if (loadverbose) {              
+
                sprintf (logtext, "Loading class: ");
                utf_sprint (logtext+strlen(logtext), c->name );
                dolog();
@@ -1437,7 +1455,8 @@ static int class_load (classinfo *c)
 
        class_loadcpool (c);
        
-        c -> classUsed = 0; /* not used initially CO-RT */
+        c -> classUsed = NOTUSED; /* not used initially CO-RT */
+       c -> impldBy = NULL;
 
        /* ACC flags */
        c -> flags = suck_u2 (); 
@@ -1462,11 +1481,7 @@ static int class_load (classinfo *c)
 
        /* load fields */
        c -> fieldscount = suck_u2 ();
-#ifdef USE_BOEHM
        c -> fields = GCNEW (fieldinfo, c -> fieldscount);
-#else
-       c -> fields = MNEW (fieldinfo, c -> fieldscount);
-#endif
        for (i=0; i < c -> fieldscount; i++) {
                field_load (&(c->fields[i]), c);
                }
@@ -1597,7 +1612,7 @@ static void class_addinterface (classinfo *c, classinfo *ic)
 
 *******************************************************************************/
 
-static void class_link (classinfo *c)
+void class_link (classinfo *c)
 {
        s4 supervftbllength;          /* vftbllegnth of super class               */
        s4 vftbllength;               /* vftbllength of current class             */
@@ -1626,7 +1641,8 @@ static void class_link (classinfo *c)
 
        if (super == NULL) {          /* class java.long.Object */
                c->index = 0;
-                c->classUsed = 1;     /* Object class is always used CO-RT*/
+        c->classUsed = USED;     /* Object class is always used CO-RT*/
+               c -> impldBy = NULL;
                c->instancesize = sizeof(java_objectheader);
                
                vftbllength = supervftbllength = 0;
@@ -1854,9 +1870,6 @@ static void class_free (classinfo *c)
 
        for (i = 0; i < c->fieldscount; i++)
                field_free(&(c->fields[i]));
-#ifndef USE_BOEHM
-       MFREE (c->fields, fieldinfo, c->fieldscount);
-#endif
        
        for (i = 0; i < c->methodscount; i++)
                method_free(&(c->methods[i]));
@@ -2046,6 +2059,7 @@ void class_init (classinfo *c)
        s4 i;
        int b;
 
+
        if (!makeinitializations)
                return;
        if (c->initialized)
@@ -2059,7 +2073,7 @@ void class_init (classinfo *c)
        if (c->super)
                class_init (c->super);
        for (i=0; i < c->interfacescount; i++)
-               class_init(c->interfaces[i]);
+               class_init(c->interfaces[i]);  /* real */
 
        m = class_findmethod (c, utf_clinit, utf_fidesc);
        if (!m) {
@@ -2086,26 +2100,26 @@ void class_init (classinfo *c)
        blockInts = 0;
 #endif
 
-       exceptionptr = asm_calljavamethod (m, NULL,NULL,NULL,NULL);
+       exceptionptr = asm_calljavamethod(m, NULL, NULL, NULL, NULL);
 
 #ifdef USE_THREADS
        assert(blockInts == 0);
        blockInts = b;
 #endif
 
-       if (exceptionptr) {     
-               printf ("#### Initializer of ");
-               utf_display (c->name);
-               printf (" has thrown: ");
-               utf_display (exceptionptr->vftbl->class->name);
-               printf ("\n");
-               fflush (stdout);
-               }
+       if (exceptionptr) {
+               printf("#### Initializer of ");
+               utf_display(c->name);
+               printf(" has thrown: ");
+               utf_display(exceptionptr->vftbl->class->name);
+               printf("\n");
+               fflush(stdout);
+       }
 
        if (initverbose) {
-               sprintf (logtext, "Finished initializer for class: ");
-               utf_sprint (logtext+strlen(logtext), c->name);
-               dolog ();
+               sprintf(logtext, "Finished initializer for class: ");
+               utf_sprint(logtext+strlen(logtext), c->name);
+               dolog();
        }
 
        if (c->name == utf_systemclass) {
@@ -2121,7 +2135,7 @@ void class_init (classinfo *c)
 
                if (!m) {
                        /* no method found */
-                       log("initializeSystemClass failed");
+                       printf("initializeSystemClass failed");
                        return;
                }
 
@@ -2149,7 +2163,128 @@ void class_init (classinfo *c)
 
 
 
-/********* Function: class_showconstantpool   (debugging only) *********/
+/********* Function: find_class_method_constant *********/
+int find_class_method_constant (classinfo *c, utf * c1, utf* m1, utf* d1)  
+
+{
+       u4 i;
+       voidptr e;
+
+       for (i=0; i<c->cpcount; i++) {
+               
+               e = c -> cpinfos [i];
+               if (e) {
+                       
+                       switch (c -> cptags [i]) {
+                               case CONSTANT_Methodref:
+                                       {
+                                       constant_FMIref *fmi = e;
+                                       if (       (fmi->class->name == c1)  
+                                               && (fmi->name == m1)
+                                               && (fmi->descriptor == d1)) {
+                                       
+                                               return i;
+                                               }
+                                       }
+                                       break;
+                               case CONSTANT_InterfaceMethodref:
+                                       {
+                                       constant_FMIref *fmi = e;
+                                       if (       (fmi->class->name == c1)  
+                                               && (fmi->name == m1)
+                                               && (fmi->descriptor == d1)) {
+
+                                               return i;
+                                               }
+                                   }
+                                       break;
+                               }
+                               
+                       }
+
+               }
+return -1;
+}
+
+void class_showconstanti(classinfo *c, int ii) 
+{
+       u4 i = ii;
+       voidptr e;
+
+               
+e = c -> cpinfos [i];
+printf ("#%d:  ", (int) i);
+if (e) {
+                       switch (c -> cptags [i]) {
+                               case CONSTANT_Class:
+                                       printf ("Classreference -> ");
+                                       utf_display ( ((classinfo*)e) -> name );
+                                       break;
+                               
+                               case CONSTANT_Fieldref:
+                                       printf ("Fieldref -> "); goto displayFMIi;
+                               case CONSTANT_Methodref:
+                                       printf ("Methodref -> "); goto displayFMIi;
+                               case CONSTANT_InterfaceMethodref:
+                                       printf ("InterfaceMethod -> "); goto displayFMIi;
+                                 displayFMIi:
+                                       {
+                                       constant_FMIref *fmi = e;
+                                       utf_display ( fmi->class->name );
+                                       printf (".");
+                                       utf_display ( fmi->name);
+                                       printf (" ");
+                                       utf_display ( fmi->descriptor );
+                                   }
+                                       break;
+
+                               case CONSTANT_String:
+                                       printf ("String -> ");
+                                       utf_display (e);
+                                       break;
+                               case CONSTANT_Integer:
+                                       printf ("Integer -> %d", (int) ( ((constant_integer*)e) -> value) );
+                                       break;
+                               case CONSTANT_Float:
+                                       printf ("Float -> %f", ((constant_float*)e) -> value);
+                                       break;
+                               case CONSTANT_Double:
+                                       printf ("Double -> %f", ((constant_double*)e) -> value);
+                                       break;
+                               case CONSTANT_Long:
+                                       {
+                                       u8 v = ((constant_long*)e) -> value;
+#if U8_AVAILABLE
+                                       printf ("Long -> %ld", (long int) v);
+#else
+                                       printf ("Long -> HI: %ld, LO: %ld\n", 
+                                           (long int) v.high, (long int) v.low);
+#endif 
+                                       }
+                                       break;
+                               case CONSTANT_NameAndType:
+                                       { constant_nameandtype *cnt = e;
+                                         printf ("NameAndType: ");
+                                         utf_display (cnt->name);
+                                         printf (" ");
+                                         utf_display (cnt->descriptor);
+                                       }
+                                       break;
+                               case CONSTANT_Utf8:
+                                       printf ("Utf8 -> ");
+                                       utf_display (e);
+                                       break;
+                               case CONSTANT_Arraydescriptor:  {
+                                       printf ("Arraydescriptor: ");
+                                       displayarraydescriptor (e);
+                                       }
+                                       break;
+                               default: 
+                                       panic ("Invalid type of ConstantPool-Entry");
+                               }  }
+printf("\n");
+
+}
 
 void class_showconstantpool (classinfo *c) 
 {
@@ -2356,7 +2491,8 @@ void create_primitive_classes()
        for (i=0;i<PRIMITIVETYPE_COUNT;i++) {
                /* create primitive class */
                classinfo *c = class_new ( utf_new_char(primitivetype_table[i].name) );
-                c -> classUsed = 0; /* not used initially CO-RT */             
+                c -> classUsed = NOTUSED; /* not used initially CO-RT */               
+               c -> impldBy = NULL;
 
                /* prevent loader from loading primitive class */
                list_remove (&unloadedclasses, c);
@@ -2370,7 +2506,8 @@ void create_primitive_classes()
                /* create class for wrapping the primitive type */
                primitivetype_table[i].class_wrap =
                        class_new( utf_new_char(primitivetype_table[i].wrapname) );
-                primitivetype_table[i].class_wrap -> classUsed = 0; /* not used initially CO-RT */
+                primitivetype_table[i].class_wrap -> classUsed = NOTUSED; /* not used initially CO-RT */
+               primitivetype_table[i].class_wrap  -> impldBy = NULL;
        }
 }
 
@@ -2422,14 +2559,16 @@ void loader_init ()
 
        /* create class for arrays */
        class_array = class_new ( utf_new_char ("The_Array_Class") );
-        class_array -> classUsed = 0; /* not used initially CO-RT */
+    class_array -> classUsed = NOTUSED; /* not used initially CO-RT */
+       class_array -> impldBy = NULL;
 
        list_remove (&unloadedclasses, class_array);
 
        /* create class for strings, load it after class Object was loaded */
        string_class = utf_new_char ("java/lang/String");
        class_java_lang_String = class_new(string_class);
-        class_java_lang_String -> classUsed = 0; /* not used initially CO-RT */
+    class_java_lang_String -> classUsed = NOTUSED; /* not used initially CO-RT */
+       class_java_lang_String -> impldBy = NULL;
 
        list_remove (&unloadedclasses, class_java_lang_String);
 
@@ -2536,13 +2675,14 @@ static void loader_compute_class_values (classinfo *c)
        classinfo *subs;
 
        c->vftbl->baseval = ++classvalue;
+
        subs = c->sub;
        while (subs != NULL) {
                loader_compute_class_values(subs);
                subs = subs->nextsub;
                }
        c->vftbl->diffval = classvalue - c->vftbl->baseval;
-/*
+       /*
        {
        int i;
        for (i = 0; i < c->index; i++)
@@ -2551,7 +2691,7 @@ static void loader_compute_class_values (classinfo *c)
        utf_display(c->name);
        printf("\n");
        }
-*/
+       */
 }
 
 
@@ -2578,7 +2718,6 @@ void loader_compute_subclasses ()
                        }
                c = list_next (&linkedclasses, c);
                }
-
        classvalue = 0;
        loader_compute_class_values(class_java_lang_Object);