Warning fixes.
[cacao.git] / loader.c
index 49a559290e7fc14bd287939d5c1288c3de21060d..eeb40351b2588e3e8d5f75f473379c34497f25db 100644 (file)
--- a/loader.c
+++ b/loader.c
@@ -1,49 +1,60 @@
+/* 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 562 2003-11-03 00:34:34Z twisti $
+
+*/
 
-#include <assert.h>
 
+#include <string.h>
+#include <assert.h>
+#include <sys/stat.h>
 #include "global.h"
 #include "loader.h"
 #include "native.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"
-
 #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;
@@ -110,15 +121,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 **************************************/
@@ -719,9 +731,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;
-               d -> objectclass  -> nextimpldBy = NULL;
                break;
        }
        return d;
@@ -786,6 +797,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;
@@ -927,9 +939,12 @@ static void method_load (methodinfo *m, classinfo *c)
        m -> entrypoint = NULL;
        m -> mcode = NULL;
        m -> stubroutine = NULL;
-        m -> methodUsed = 0;    
-       m -> XTAclasscount = 0; 
-        m -> numSubDefs = 0;    
+        m -> methodUsed = NOTUSED;    
+        m -> monoPoly = MONO;    
+       m -> subRedefs = 0;
+       m -> subRedefsUsed = 0;
+
+       m->xta = NULL;
        
        if (! (m->flags & ACC_NATIVE) ) {
                m -> stubroutine = createcompilerstub (m);
@@ -939,14 +954,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
                        }
                }
        
@@ -1464,9 +1472,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;
-       c -> nextimpldBy = NULL;
 
        /* ACC flags */
        c -> flags = suck_u2 (); 
@@ -1491,11 +1498,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);
                }
@@ -1626,7 +1629,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             */
@@ -1655,9 +1658,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 -> nextimpldBy = NULL;
                c->instancesize = sizeof(java_objectheader);
                
                vftbllength = supervftbllength = 0;
@@ -1885,9 +1887,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]));
@@ -2091,7 +2090,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]);  // real
+               class_init(c->interfaces[i]);  /* real */
 
        m = class_findmethod (c, utf_clinit, utf_fidesc);
        if (!m) {
@@ -2118,26 +2117,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) {
@@ -2153,7 +2152,7 @@ void class_init (classinfo *c)
 
                if (!m) {
                        /* no method found */
-                       log("initializeSystemClass failed");
+                       printf("initializeSystemClass failed");
                        return;
                }
 
@@ -2189,7 +2188,6 @@ int find_class_method_constant (classinfo *c, utf * c1, utf* m1, utf* d1)
        voidptr e;
 
        for (i=0; i<c->cpcount; i++) {
-               //printf ("#%d:  ", (int) i);
                
                e = c -> cpinfos [i];
                if (e) {
@@ -2217,8 +2215,6 @@ int find_class_method_constant (classinfo *c, utf * c1, utf* m1, utf* d1)
                                                }
                                    }
                                        break;
-                               
-                               default: 
                                }
                                
                        }
@@ -2232,9 +2228,9 @@ void class_showconstanti(classinfo *c, int ii)
        u4 i = ii;
        voidptr e;
 
-printf ("#%d:  ", (int) i);
                
 e = c -> cpinfos [i];
+printf ("#%d:  ", (int) i);
 if (e) {
                        switch (c -> cptags [i]) {
                                case CONSTANT_Class:
@@ -2512,9 +2508,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;
-               c -> nextimpldBy = NULL;
 
                /* prevent loader from loading primitive class */
                list_remove (&unloadedclasses, c);
@@ -2528,9 +2523,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;
-               primitivetype_table[i].class_wrap  -> nextimpldBy = NULL;
        }
 }
 
@@ -2561,7 +2555,7 @@ classinfo *create_array_class(utf *u)
 
 *******************************************************************************/
  
-void loader_init ()
+void loader_init()
 {
        utf *string_class;
        interfaceindex = 0;
@@ -2582,18 +2576,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;
-       class_array -> nextimpldBy = 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;
-       class_java_lang_String -> nextimpldBy = NULL;
 
        list_remove (&unloadedclasses, class_java_lang_String);
 
@@ -2700,13 +2692,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++)
@@ -2715,7 +2708,7 @@ static void loader_compute_class_values (classinfo *c)
        utf_display(c->name);
        printf("\n");
        }
-*/
+       */
 }
 
 
@@ -2801,4 +2794,3 @@ void loader_close ()
  * tab-width: 4
  * End:
  */
-