Major file restructuring.
[cacao.git] / loader.c
index 1f443740987e64486c74990e393174e4648727d5..a13cd4ed9eda8bb2d4693f3cb2ceff454b2061f4 100644 (file)
--- a/loader.c
+++ b/loader.c
@@ -1,20 +1,38 @@
+/* loader.c - class loader functions
 
-/* loader.c ********************************************************************
+   Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
+   R. Grafl, A. Krall, C. Kruegel, C. Oates, R. Obermaisser,
+   M. Probst, S. Ring, E. Steiner, C. Thalinger, D. Thuernbeck,
+   P. Tomsich, J. Wenninger
 
-       Copyright (c) 1999 A. Krall, R. Grafl, R. Obermaiser, M. Probst
+   This file is part of CACAO.
 
-       See file COPYRIGHT for information on usage and disclaimer of warranties
+   This program is free software; you can redistribute it and/or
+   modify it under the terms of the GNU General Public License as
+   published by the Free Software Foundation; either version 2, or (at
+   your option) any later version.
 
-       Contains the functions of the class loader.
+   This program is distributed in the hope that it will be useful, but
+   WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   General Public License for more details.
 
-       Author:  Reinhard Grafl      EMAIL: cacao@complang.tuwien.ac.at
-       Changes: Andreas Krall       EMAIL: cacao@complang.tuwien.ac.at
-                Roman Obermaiser    EMAIL: cacao@complang.tuwien.ac.at
-                Mark Probst         EMAIL: cacao@complang.tuwien.ac.at
+   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.
 
-       Last Change: 1999/11/08
+   Contact: cacao@complang.tuwien.ac.at
 
-*******************************************************************************/
+   Authors: Reinhard Grafl
+
+   Changes: Andreas Krall
+            Roman Obermaiser
+            Mark Probst
+
+   $Id: loader.c 557 2003-11-02 22:51:59Z twisti $
+
+*/
 
 
 #include <assert.h>
 #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"
 
@@ -41,9 +54,9 @@
 
 /* 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;
@@ -110,15 +123,16 @@ static classinfo *class_java_lang_ThreadDeath;
  ******************************************************************************/
  
 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/Byte",      'B', "byte"    },
-               { NULL, NULL, "java/lang/Short",     'S', "short"   },
-               { NULL, NULL, "java/lang/Boolean",   'Z', "boolean" },
-               { NULL, NULL, "java/lang/Void",      'V', "void"    }};
+       { 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"    }
+};
 
 
 /* instances of important system classes **************************************/
@@ -360,9 +374,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");
@@ -704,7 +733,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;
@@ -769,6 +799,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;
@@ -865,7 +896,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);
@@ -910,7 +941,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);
@@ -920,14 +956,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
                        }
                }
        
@@ -1036,7 +1065,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
@@ -1419,6 +1448,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();
@@ -1444,7 +1474,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 (); 
@@ -1469,11 +1500,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);
                }
@@ -1604,7 +1631,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             */
@@ -1633,7 +1660,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;
@@ -1861,9 +1889,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]));
@@ -2053,6 +2078,7 @@ void class_init (classinfo *c)
        s4 i;
        int b;
 
+
        if (!makeinitializations)
                return;
        if (c->initialized)
@@ -2066,7 +2092,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) {
@@ -2093,26 +2119,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) {
@@ -2128,7 +2154,7 @@ void class_init (classinfo *c)
 
                if (!m) {
                        /* no method found */
-                       log("initializeSystemClass failed");
+                       printf("initializeSystemClass failed");
                        return;
                }
 
@@ -2156,7 +2182,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) 
 {
@@ -2363,7 +2510,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);
@@ -2377,7 +2525,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;
        }
 }
 
@@ -2408,7 +2557,7 @@ classinfo *create_array_class(utf *u)
 
 *******************************************************************************/
  
-void loader_init ()
+void loader_init()
 {
        utf *string_class;
        interfaceindex = 0;
@@ -2429,14 +2578,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);
 
@@ -2543,13 +2694,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++)
@@ -2558,7 +2710,7 @@ static void loader_compute_class_values (classinfo *c)
        utf_display(c->name);
        printf("\n");
        }
-*/
+       */
 }
 
 
@@ -2585,7 +2737,6 @@ void loader_compute_subclasses ()
                        }
                c = list_next (&linkedclasses, c);
                }
-
        classvalue = 0;
        loader_compute_class_values(class_java_lang_Object);
 
@@ -2645,4 +2796,3 @@ void loader_close ()
  * tab-width: 4
  * End:
  */
-