*** empty log message ***
[cacao.git] / global.h
index 8b7995c56eb034d7f2feaeb37527c88e5f34ddcc..c72293e512a8f2867325749e1848f2d9429cf0e3 100644 (file)
--- a/global.h
+++ b/global.h
-/****************************** global.h ***************************************
+/* global.h - global definitions
 
-       Copyright (c) 1997 A. Krall, R. Grafl, M. Gschwind, M. Probst
+   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
 
-       See file COPYRIGHT for information on usage and disclaimer of warranties
+   This file is part of CACAO.
 
-       Contains global definitions which are used in the whole program, includes
-       some files and contains global used macros.
+   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.
 
-       Authors: Reinhard Grafl      EMAIL: cacao@complang.tuwien.ac.at
-       Changes: Andreas  Krall      EMAIL: cacao@complang.tuwien.ac.at
-                Mark Probst         EMAIL: cacao@complang.tuwien.ac.at
-                        Philipp Tomsich     EMAIL: cacao@complang.tuwien.ac.at
+   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.
 
-       Last Change: 1998/10/30
+   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.
 
-*******************************************************************************/
+   Contact: cacao@complang.tuwien.ac.at
+
+   Authors: Reinhard Grafl
+            Andreas Krall
 
-#ifndef __global_h_
-#define __global_h_                        /* schani */
+   Changes: Mark Probst
+            Philipp Tomsich
 
-#define STATISTICS                         /* andi   */
+   $Id: global.h 557 2003-11-02 22:51:59Z twisti $
 
-/* JIT_MARKER_SUPPORT is the define used to toggle Just-in-time generated
-   marker functions on and off. */
-#undef JIT_MARKER_SUPPORT                  /* phil   */
+*/
 
-/***************************** standard includes ******************************/
 
-#include <stdio.h>
-#include <stdlib.h>
-#include <string.h>
-#include <time.h>
+#ifndef _GLOBAL_H
+#define _GLOBAL_H
 
-#include "toolbox/memory.h"
-#include "toolbox/chain.h"
+#include "config.h"
+#include "types.h"
 #include "toolbox/list.h"
-#include "toolbox/loging.h"
 
 
-/**************************** system dependent types **************************/
+#define _GNU_SOURCE
+
+#define STATISTICS          /* if enabled collects program statistics         */
 
-#include "sysdep/types.h"
+/* 
+ * SIZE_FROM_CLASSINFO toggles between the bitmap_based and the new method 
+ * of determining the sizes of objects on the heap.
+ */
+#define SIZE_FROM_CLASSINFO
 
 
-/**************************** additional data types ***************************/
+/* additional data types ******************************************************/
 
 typedef void *voidptr;          /* generic pointer */
 
-
-typedef u1    bool;             /* boolean data type */
+typedef int   bool;             /* boolean data type */
 
 #define true  1
 #define false 0
 
+#define PRIMITIVETYPE_COUNT  9  /* number of primitive types */
+
 typedef void (*functionptr) (); /* generic function pointer */
 
 
 #define MAX_ALIGN 8             /* most generic alignment for JavaVM values   */
 
-
-/**************************** shutdown function *******************************/
+/* shutdown function **********************************************************/
 
 void cacao_shutdown(s4 status);
 
 
-/**************************** basic data types ********************************/
+/* basic data types ***********************************************************/
 
 #define TYPE_INT      0         /* the JavaVM types must numbered in the      */
 #define TYPE_LONG     1         /* same order as the ICMD_Ixxx to ICMD_Axxx   */
 #define TYPE_FLOAT    2         /* instructions (LOAD and STORE)              */
 #define TYPE_DOUBLE   3         /* integer, long, float, double, address      */
-#define TYPE_ADDRESS  4         /* all other types can be numbered arbitrarily*/
+#define TYPE_ADDRESS  4         /* all other types can be numbered arbitrarly */
 
 #define TYPE_VOID    10
 
 
-/**************************** Java class file constants ***********************/
+/* Java class file constants **************************************************/
 
 #define MAGIC         0xcafebabe
 #define MINOR_VERSION 3
 #define MAJOR_VERSION 45
 
-#define CONSTANT_Class                7
-#define CONSTANT_Fieldref             9
-#define CONSTANT_Methodref           10
-#define CONSTANT_InterfaceMethodref  11
-#define CONSTANT_String               8
-#define CONSTANT_Integer              3
-#define CONSTANT_Float                4
-#define CONSTANT_Long                 5
-#define CONSTANT_Double               6
-#define CONSTANT_NameAndType         12
-#define CONSTANT_Utf8                 1
-
-#define CONSTANT_Arraydescriptor     13
-#define CONSTANT_UNUSED               0
-
+#define CONSTANT_Class                 7
+#define CONSTANT_Fieldref              9
+#define CONSTANT_Methodref            10
+#define CONSTANT_InterfaceMethodref   11
+#define CONSTANT_String                8
+#define CONSTANT_Integer               3
+#define CONSTANT_Float                 4
+#define CONSTANT_Long                  5
+#define CONSTANT_Double                6
+#define CONSTANT_NameAndType          12
+#define CONSTANT_Utf8                  1
+
+#define CONSTANT_Arraydescriptor      13
+#define CONSTANT_UNUSED                0
 
 #define ACC_PUBLIC                0x0001
 #define ACC_PRIVATE               0x0002
@@ -110,143 +120,190 @@ void cacao_shutdown(s4 status);
 #define ACC_ABSTRACT              0x0400
 
 
+/* resolve typedef cycles *****************************************************/
 
-/**************************** resolve typedef-cycles **************************/
-
-typedef struct unicode unicode;
+typedef struct utf utf;
+typedef struct literalstring literalstring;
+typedef struct java_objectheader java_objectheader; 
 typedef struct classinfo classinfo; 
 typedef struct vftbl vftbl;
 typedef u1* methodptr;
+typedef struct fieldinfo  fieldinfo; 
+typedef struct methodinfo methodinfo; 
+
+
+/* constant pool entries *******************************************************
+
+       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:
+
+               kind                      structure                     generated?
+       ----------------------------------------------------------------------
+    CONSTANT_Class               classinfo                           no
+    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_Arraydescriptor     constant_arraydescriptor           yes
+    CONSTANT_UNUSED              -
+
+*******************************************************************************/
+
+/* data structures for hashtables ********************************************
+
+
+       All utf-symbols, javastrings and classes are stored in global hashtables,
+       so every symbol exists only once. Equal symbols have identical pointers.
+       The functions for adding hashtable elements search the table for the 
+       element with the specified name/text and return it on success. Otherwise a 
+       new hashtable element is created.
+
+    The hashtables use external linking for handling collisions. The hashtable 
+       structure contains a pointer <ptr> to the array of hashtable slots. The 
+       number of hashtable slots and therefore the size of this array is specified 
+       by the element <size> of hashtable structure. <entries> contains the number
+       of all hashtable elements stored in the table, including those in the 
+       external chains.
+       The hashtable element structures (utf, literalstring, classinfo) contain
+       both a pointer to the next hashtable element as a link for the external hash 
+       chain and the key of the element. The key is computed from the text of
+       the string or the classname by using up to 8 characters.
+       
+       If the number of entries in the hashtable exceeds twice the size of the 
+       hashtableslot-array it is supposed that the average length of the 
+       external chains has reached a value beyond 2. Therefore the functions for
+       adding hashtable elements (utf_new, class_new, literalstring_new) double
+       the hashtableslot-array. In this restructuring process all elements have
+       to be inserted into the new hashtable and new external chains must be built.
+
+
+example for the layout of a hashtable:
+
+hashtable.ptr-->  +-------------------+
+                  |                   |
+                           ...
+                  |                   |
+                  +-------------------+   +-------------------+   +-------------------+
+                  | hashtable element |-->| hashtable element |-->| hashtable element |-->NULL
+                  +-------------------+   +-------------------+   +-------------------+
+                  | hashtable element |
+                  +-------------------+   +-------------------+   
+                  | hashtable element |-->| hashtable element |-->NULL
+                  +-------------------+   +-------------------+   
+                  | hashtable element |-->NULL
+                  +-------------------+
+                  |                   |
+                           ...
+                  |                   |
+                  +-------------------+
+
+*/
+
+
+/* data structure for utf8 symbols ********************************************/
+
+struct utf {
+       utf        *hashlink;       /* link for external hash chain               */
+       int         blength;        /* text length in bytes                       */           
+       char       *text;           /* pointer to text                            */
+};
 
 
-/********************** data structures of UNICODE symbol *********************/
+/* data structure of internal javastrings stored in global hashtable **********/
 
-struct unicode {
-       unicode   *hashlink; /* externe Verkettung f"ur die unicode-Hashtabelle */
-       u4         key;      /* Hash-Schl"ussel (h"angt nur vom Text ab) */
-       int        length;   /* L"ange des Textes */           
-       u2        *text;     /* Zeiger auf den Text (jeder Buchstabe 16 Bit) */
-       classinfo *class;    /* gegebenenfalls Referenz auf die Klasse dieses 
-                                                       Namens (oder NULL, wenn es keine solche gibt)  */
-       struct java_objectheader *string;
-       /* gegebenenfalls Referenz auf einen konstanten
-          String mit dem entsprechenden Wert */ 
+struct literalstring {
+       literalstring     *hashlink;     /* link for external hash chain          */
+       java_objectheader *string;  
 };
 
-/* Alle Unicode-Symbole werden in einer einzigen globalen Tabelle 
-          (Hashtabelle) verwaltet, jedes Symbol wird nur einmal angelegt.
-          -> Speicherersparnis, und "Uberpr"ufung auf Gleichheit durch einfachen
-          Zeigervergleich */
 
+/* data structure for accessing hashtables ************************************/
 
-/************ data structures of remaining constant pool entries **************/
+typedef struct {            
+       u4 size;
+       u4 entries;        /* number of entries in the table */
+       void **ptr;        /* pointer to hashtable */
+} hashtable;
 
 
-typedef struct {
-       classinfo *class;
-       unicode   *name;
-       unicode   *descriptor;
+/* data structures of remaining constant pool entries *************************/
+
+typedef struct {                /* Fieldref, Methodref and InterfaceMethodref     */
+       classinfo *class;       /* class containing this field/method/interface   */
+       utf       *name;        /* field/method/interface name                    */
+       utf       *descriptor;  /* field/method/interface type descriptor string  */
 } constant_FMIref;
 
 
-typedef struct {
+typedef struct {            /* Integer                                        */
        s4 value;
 } constant_integer;
+
        
-typedef struct {
+typedef struct {            /* Float                                          */
        float value;
 } constant_float;
 
-typedef struct {
+
+typedef struct {            /* Long                                           */
        s8 value;
 } constant_long;
        
-typedef struct {
+
+typedef struct {            /* Double                                         */
        double value;
 } constant_double;
 
 
-typedef struct {
-       unicode *name;
-       unicode *descriptor;
+typedef struct {            /* NameAndType (Field or Method)                  */
+       utf *name;              /* field/method name                              */
+       utf *descriptor;        /* field/method type descriptor string            */
 } constant_nameandtype;
 
 
+/* 
+   arraydescriptor describes array types. Basic array types contain their
+   type in the arraytype field, objectclass contains a class pointer for
+   arrays of objects (arraytype == ARRAYTYPE_OBJECT), elementdescriptor
+   contains a pointer to an arraydescriptor which describes the element
+   types in the case of arrays of arrays (arraytype == ARRAYTYPE_ARRAY).
+*/
+
 typedef struct constant_arraydescriptor {
        int arraytype;
        classinfo *objectclass;
        struct constant_arraydescriptor *elementdescriptor;
 } constant_arraydescriptor;
 
-/* Mit einem Arraydescriptor kann ein Array-Typ dargestellt werden.
-          Bei normalen Arrays (z.B. Array von Bytes,...) gen"ugt dazu,
-       dass das Feld arraytype die entsprechende Kennzahl enth"alt
-       (z.B. ARRAYTYPE_BYTE).
-       Bei Arrays von Objekten (arraytype=ARRAYTYPE_OBJECT) muss das 
-       Feld objectclass auf die Klassenstruktur der m"oglichen
-       Element-Objekte zeigen.
-       Bei Arrays von Arrays (arraytype=ARRAYTYPE_ARRAY) muss das
-       Feld elementdescriptor auf eine weiter arraydescriptor-Struktur
-       zeigen, die die Element-Typen beschreibt.
-       */
-
-
-
-/********* Anmerkungen zum Constant-Pool:
-
-       Die Typen der Eintr"age in den Constant-Pool werden durch die oben
-       definierten CONSTANT_.. Werte angegeben.
-       Bei allen Typen muss zus"atzlich noch eine Datenstruktur hinzugef"ugt
-       werden, die den wirklichen Wert angibt.
-       Bei manchen Typen reicht es, einen Verweis auf eine schon bereits
-       existierende Struktur (z.B. unicode-Texte) einzutragen, bei anderen
-       muss diese Struktur erst extra erzeugt werden.
-       Ich habe folgende Datenstrukturen f"ur diese Typen verwendet:
-       
-               Typ                      Struktur                    extra erzeugt?
-       ----------------------------------------------------------------------
-    CONSTANT_Class               classinfo                         nein
-    CONSTANT_Fieldref            constant_FMIref                     ja
-    CONSTANT_Methodref           constant_FMIref                     ja
-    CONSTANT_InterfaceMethodref  constant_FMIref                     ja
-    CONSTANT_String              unicode                           nein
-    CONSTANT_Integer             constant_integer                    ja
-    CONSTANT_Float               constant_float                      ja
-    CONSTANT_Long                constant_long                       ja
-    CONSTANT_Double              constant_double                     ja
-    CONSTANT_NameAndType         constant_nameandtype                ja
-    CONSTANT_Utf8                unicode                           nein
-    CONSTANT_Arraydescriptor     constant_arraydescriptor            ja
-    CONSTANT_UNUSED              -
-
-*******************************/
-
-
 
-/***************** Die Datenstrukturen fuer das Laufzeitsystem ****************/
+/* data structures of the runtime system **************************************/
 
+/* objects *********************************************************************
 
-       /********* Objekte **********
+       All objects (and arrays) which resides on the heap need the following
+       header at the beginning of the data structure.
+*/
 
-       Alle Objekte (und Arrays), die am Heap gespeichert werden, m"ussen eine 
-       folgende spezielle Datenstruktur ganz vorne stehen haben: 
-
-       */
+struct java_objectheader {              /* header for all objects             */
+       vftbl *vftbl;                       /* pointer to virtual function table  */
+};
 
-typedef struct java_objectheader {    /* Der Header f"ur alle Objekte */
-       vftbl *vftbl;                     /* Zeiger auf die Function Table */
-} java_objectheader;
 
 
+/* arrays **********************************************************************
 
-/********* Arrays ***********
-       
-       Alle Arrays in Java sind auch gleichzeitig Objekte (d.h. sie haben auch
-       den obligatorischen Object-Header und darin einen Verweis auf eine Klasse)
-       Es gibt aber (der Einfachheit halber) nur eine einzige Klasse f"ur alle
-       m"oglichen Typen von Arrays, deshalb wird der tats"achliche Typ in einem
-       Feld im Array-Objekt selbst gespeichert.
-       Die Typen sind: */
+       All arrays are objects (they need the object header with a pointer to a
+       vvftbl (array class table). There is only one class for all arrays. The
+       type of an array is stored directly in the array object. Following types
+       are defined:
+*/
 
 #define ARRAYTYPE_INT      0
 #define ARRAYTYPE_LONG     1
@@ -259,18 +316,18 @@ typedef struct java_objectheader {    /* Der Header f"ur alle Objekte */
 #define ARRAYTYPE_OBJECT   8
 #define ARRAYTYPE_ARRAY    9
 
-
-/** Der Header f"ur ein Java-Array **/
-
-typedef struct java_arrayheader {  /* Der Arrayheader f"ur alle Arrays */
-       java_objectheader objheader;       /* Der Object-Header */
-       s4 size;                           /* Gr"osse des Arrays */
-       s4 arraytype;                      /* Typ der Elemente */
+typedef struct java_arrayheader {       /* header for all arrays              */
+       java_objectheader objheader;        /* object header                      */
+       s4 size;                            /* array size                         */
+#ifdef SIZE_FROM_CLASSINFO
+       s4 alignedsize; /* phil */
+#endif
+       s4 arraytype;                       /* array type from previous list      */
 } java_arrayheader;
 
 
 
-/** Die Unterschiedlichen Strukturen f"ur alle Typen von Arrays **/
+/* structs for all kinds of arrays ********************************************/
 
 typedef struct java_chararray {
        java_arrayheader header;
@@ -287,10 +344,8 @@ typedef struct java_doublearray {
        double data[1];
 } java_doublearray;
 
-
-/* achtung: die beiden Stukturen booleanarray und bytearray m"ussen 
-      identisches memory-layout haben, weil mit den selben Funktionen 
-      darauf zugegriffen wird */
+/*  booleanarray and bytearray need identical memory layout (access methods
+    use the same machine code */
 
 typedef struct java_booleanarray {
        java_arrayheader header;
@@ -317,10 +372,8 @@ typedef struct java_longarray {
        s8 data[1];
 } java_longarray;
 
-
-/* ACHTUNG: die beiden folgenden Strukturen m"ussen unbedingt gleiches
-          Memory-Layout haben, weil mit ein und der selben Funktion auf die
-          data-Eintr"age beider Typen zugegriffen wird !!!! */
+/*  objectarray and arrayarray need identical memory layout (access methods
+    use the same machine code */
 
 typedef struct java_objectarray {
        java_arrayheader header;
@@ -335,20 +388,36 @@ typedef struct java_arrayarray {
 } java_arrayarray;
 
 
+/* structure for primitive classes ********************************************/
+
+typedef struct primitivetypeinfo {
+       classinfo *class_wrap;               /* class for wrapping primitive type */
+       classinfo *class_primitive;          /* primitive class                   */
+       char *wrapname;                      /* name of class for wrapping        */
+       char typesig;                        /* one character type signature      */
+       char *name;                          /* name of primitive class           */
+} primitivetypeinfo;
+
 
+/* field, method and class structures *****************************************/
 
-/******************** class, field and method structures **********************/
+#include "sets.h"
+typedef        struct xtafldinfo {
+       bool       fieldChecked;                
+       classinfo *fldClassType;
+       classSet  *XTAclassSet;          /* field class type set                  */
+} xtafldinfo;
 
 
-/********************** structure: fieldinfo **********************************/
+/* fieldinfo ******************************************************************/
 
-typedef struct fieldinfo {/* field of a class                                 */
-       s4       flags;       /* ACC flags                                        */
-       s4       type;        /* basic data type                                  */
-       unicode *name;        /* name of field                                    */
-       unicode *descriptor;  /* JavaVM descriptor string of field                */
+struct fieldinfo {           /* field of a class                                 */
+       s4  flags;            /* ACC flags                                        */
+       s4  type;             /* basic data type                                  */
+       utf *name;            /* name of field                                    */
+       utf *descriptor;      /* JavaVM descriptor string of field                */
        
-       s4       offset;      /* offset from start of object (instance variables) */
+       s4  offset;           /* offset from start of object (instance variables) */
 
        union {               /* storage for static values (class variables)      */
                s4 i; 
@@ -357,11 +426,30 @@ typedef struct fieldinfo {/* field of a class                                 */
                double d;
                void *a; 
        } value;
+       
+       xtafldinfo *xta;
+};
+
+struct basicblock;
 
-} fieldinfo;
+/* exceptiontable *************************************************************/
 
+typedef struct xtable { /* exceptiontable entry in a method           */ 
+       s4         startpc;         /* start pc of guarded area (inclusive)       */
+       struct basicblock *start;
+
+       s4         endpc;           /* end pc of guarded area (exklusive)         */
+       struct basicblock *end;
+
+       s4         handlerpc;       /* pc of exception handler                    */
+       struct basicblock *handler;
+
+       classinfo *catchtype;       /* catchtype of exception (NULL == catchall)  */
+       struct xtable *next;        /* used to build a list of exception when     */
+                                   /* loops are copied */
+       struct xtable *down;        /* instead of the old array, a list is used   */
+} xtable;
 
-/********************** structure: exceptiontable *****************************/
 
 typedef struct exceptiontable { /* exceptiontable entry in a method           */ 
        s4         startpc;         /* start pc of guarded area (inclusive)       */
@@ -371,41 +459,80 @@ typedef struct exceptiontable { /* exceptiontable entry in a method           */
 } exceptiontable;
 
 
-/********************** structure: methodinfo *********************************/
+/* methodinfo  static info ****************************************************/
+typedef struct xtainfo {
+        s4             XTAmethodUsed;  /* XTA if used in callgraph -    not used /used */
+       classSet        *XTAclassSet;      /* method class type set                 */ 
+       /*classSet      *PartClassSet */   /* method class type set                 */ 
+
+       classSetNode    *paramClassSet;     /* cone set of methods parameters       */
 
-typedef struct methodinfo {         /* method structure                       */
+       methSet         *calls;            /* methods this method calls             */ 
+       methSet         *calledBy;         /* methods that call this method         */ 
+       methSet         *marked;           /* methods that marked by this method    */ 
+       /*methSet         *markedBy*/
+       fldSet          *fldsUsed;         /* fields used by this method             */ 
+       /*methSetNode  *interfaceCalls*/   /* methods this method calls as interface */ 
+       bool             chgdSinceLastParse; /* Changed since last parse ?          */
+} xtainfo; 
+
+/* methodinfo *****************************************************************/
+
+struct methodinfo {                 /* method structure                       */
        s4             flags;               /* ACC flags                              */
-       unicode   *name;                /* name of method                         */
-       unicode   *descriptor;          /* JavaVM descriptor string of method     */
+       utf       *name;                /* name of method                         */
+       utf       *descriptor;          /* JavaVM descriptor string of method     */
        s4         returntype;          /* only temporary valid, return type      */
+       classinfo *returnclass;         /* pointer to classinfo for the rtn type  */ /*XTA*/ 
        s4         paramcount;          /* only temporary valid, parameter count  */
        u1        *paramtypes;          /* only temporary valid, parameter types  */
+       classinfo **paramclass;         /* pointer to classinfo for a parameter   */ /*XTA*/
+       
        classinfo *class;               /* class, the method belongs to           */
-       u4         vftblindex;          /* index of method in virtual function table
+       s4         vftblindex;          /* index of method in virtual function table
                                           (if it is a virtual method)            */
        s4         maxstack;            /* maximum stack depth of method          */
        s4         maxlocals;           /* maximum number of local variables      */
-       u4         jcodelength;         /* length of JavaVM code                  */
+       s4         jcodelength;         /* length of JavaVM code                  */
        u1        *jcode;               /* pointer to JavaVM code                 */
 
        s4         exceptiontablelength;/* exceptiontable length                  */
-       exceptiontable *exceptiontable; /* the exceptiontable                     */
+       exceptiontable *exceptiontable; 
+                                    /* the exceptiontable                     */
 
        u1        *stubroutine;         /* stub for compiling or calling natives  */    
-       u4         mcodelength;         /* legth of generated machine code        */
+       s4         mcodelength;         /* legth of generated machine code        */
        u1        *mcode;               /* pointer to machine code                */
        u1        *entrypoint;          /* entry point in machine code            */
 
-} methodinfo;
+       /*rtainfo   rta;*/
+       xtainfo    *xta;
+
+       s4        methodUsed;           /* marked (might be used later) /not used /used */
+       s4        monoPoly;             /* call is mono or poly or unknown        */ /*RT stats */
+        /* should # method def'd and used be kept after static parse (will it be used?) */
+       s4        subRedefs;
+       s4        subRedefsUsed;
+};
+
+
+
+/* innerclassinfo *************************************************************/
 
+typedef struct innerclassinfo {
+       classinfo *inner_class;       /* inner class pointer                      */
+       classinfo *outer_class;       /* outer class pointer                      */
+       utf *name;                    /* innerclass name                          */ 
+       s4 flags;                     /* ACC flags                                */
+} innerclassinfo;
 
-/********************** structure: classinfo **********************************/
+/* classinfo ******************************************************************/
 
 struct classinfo {                /* class structure                          */
        java_objectheader header;     /* classes are also objects                 */
 
        s4          flags;            /* ACC flags                                */
-       unicode    *name;             /* class name                               */ 
+       utf        *name;             /* class name                               */ 
 
        s4          cpcount;          /* number of entries in constant pool       */
        u1         *cptags;           /* constant pool tags                       */
@@ -428,77 +555,106 @@ struct classinfo {                /* class structure                          */
 
        bool        initialized;      /* true, if class already initialised       */ 
        bool        linked;           /* true, if class already linked            */
-       s4                      index;            /* hierarchy depth (classes) or index
+       s4          index;            /* hierarchy depth (classes) or index
                                         (interfaces)                             */ 
        s4          instancesize;     /* size of an instance of this class        */
+#ifdef SIZE_FROM_CLASSINFO
+       s4          alignedsize;      /* size of an instance, aligned to the 
+                                                     allocation size on the heap */
+#endif
 
        vftbl      *vftbl;            /* pointer to virtual function table        */
 
        methodinfo *finalizer;        /* finalizer method                         */
-#ifdef JIT_MARKER_SUPPORT
-       methodinfo *marker; 
-#endif
+
+    u2             innerclasscount;   /* number of inner classes              */
+    innerclassinfo *innerclass;
+
+    classinfo      *hashlink;         /* link for external hash chain         */
+       bool        classvftbl;       /* has its own copy of the Class vtbl       */
+
+        s4          classUsed;        /* 0= not used 1 = used   CO-RT             */
+
+       classSetNode *impldBy;          /* implemented by class set */
 };
+
+
+/* virtual function table ******************************************************
+
+       The vtbl has a bidirectional layout with open ends at both sides.
+       interfacetablelength gives the number of entries of the interface table at
+       the start of the vftbl. The vftbl pointer points to &interfacetable[0].
+       vftbllength gives the number of entries of table at the end of the vftbl.
+
+       runtime type check (checkcast):
+
+       Different methods are used for runtime type check depending on the
+       argument of checkcast/instanceof.
        
+       A check against a class is implemented via relative numbering on the class
+       hierachy tree. The tree is numbered in a depth first traversal setting
+       the base field and the diff field. The diff field gets the result of
+       (high - base) so that a range check can be implemented by an unsigned
+       compare. A sub type test is done by checking the inclusion of base of
+       the sub class in the range of the superclass.
+
+       A check against an interface is implemented via the interfacevftbl. If the
+       interfacevftbl contains a nonnull value a class is a subclass of this
+       interface.
+
+       interfacetable:
+
+       Like standard virtual methods interface methods are called using
+       virtual function tables. All interfaces are numbered sequentially
+       (starting with zero). For each class there exist an interface table
+       of virtual function tables for each implemented interface. The length
+       of the interface table is determined by the highest number of an
+       implemented interface.
+
+       The following example assumes a class which implements interface 0 and 3:
+
+       interfacetablelength = 4
+
+                  | ...       |            +----------+
+                     +-----------+            | method 2 |---> method z
+                     | class     |            | method 1 |---> method y
+                     +-----------+            | method 0 |---> method x
+                     | ivftbl  0 |----------> +----------+
+       vftblptr ---> +-----------+
+                  | ivftbl -1 |--> NULL    +----------+
+                  | ivftbl -2 |--> NULL    | method 1 |---> method x
+                  | ivftbl -3 |-----+      | method 0 |---> method a
+                  +-----------+     +----> +----------+
+     
+                              +---------------+
+                                 | length 3 = 2  |
+                                 | length 2 = 0  |
+                                 | length 1 = 0  |
+                                 | length 0 = 3  |
+       interfacevftbllength ---> +---------------+
+
+*******************************************************************************/
 
 struct vftbl {
-       classinfo  *class;                /* Class, the function table belongs to */
+       methodptr   *interfacetable[1];    /* interface table (access via macro)  */
 
-       s4          vftbllength;          /* virtual function table length        */
-       s4          interfacetablelength; /* interface table length               */   
+       classinfo   *class;                /* class, the vtbl belongs to          */
 
-       s4          lowclassval;          /* low value for relative numbering     */   
-       s4          highclassval;         /* high value for relative numbering    */   
+       s4           vftbllength;          /* virtual function table length       */
+       s4           interfacetablelength; /* interface table length              */
 
-       u4         *interfacevftbllength; /* see description below                */   
-       methodptr **interfacevftbl;
+       s4           baseval;              /* base for runtime type check         */
+       s4           diffval;              /* high - base for runtime type check  */
+
+       s4          *interfacevftbllength; /* length of interface vftbls          */
        
-       methodptr   table[1];
+       methodptr    table[1];             /* class vftbl                         */
 };
 
-/*********** Anmerkungen zur Interfacetable: 
-
-       "Ahnlich wie die 'normalen' virtuellen Methoden k"onnen auch die
-       Interface-Methoden mit Hilfe einer Art Virtual Function Table 
-       aufgerufen werden.
-       Dazu werden alle Interfaces im System fortlaufend nummeriert (beginnend
-       bei 0), und f"ur jede Klasse wird eine ganze Tabelle von 
-       Virtual Function Tables erzeugt, n"amlich zu jedem Interface, das die
-       Klasse implementiert, eine.
-
-       z.B. Nehmen wir an, eine Klasse implementiert zwei Interfaces (die durch
-       die Nummerierung die Indizes 0 und 3 bekommen haben)
-
-       Das sieht dann ungef"ahr so aus:
-                               --------------           ------------- 
-       interfacevftbl ---> | Eintrag 0  |---------> | Methode 0 |---> Methode X 
-                        | Eintrag 1  |--> NULL   | Methode 1 |---> Methode Y
-                        | Eintrag 2  |--> NULL   | Methode 2 |---> Methode Z
-                        | Eintrag 3  |-----+     ------------- 
-                        --------------     |
-                                           +---> -------------
-                                                 | Methode 0 |---> Methode X
-                                                 | Methode 1 |---> Methode A
-                                                 -------------
-                              ---------------
-       interfacevftlblength ---> | Wert 0 = 3  |
-                                 | Wert 1 = 0  |
-                                 | Wert 2 = 0  |
-                                 | Wert 3 = 2  |
-                                 ---------------
-
-       Der Aufruf einer Interface-Methode geht dann so vor sich:
-       Zur Compilezeit steht der Index (i) des Interfaces und die Stelle (s), wo
-       in der entsprechenden Untertabelle die Methode eingetragen ist, schon fest.
-       Also muss zur Laufzeit nur mehr der n-te Eintrag aus der Interfacetable 
-       gelesen werden, von dieser Tabelle aus wird der s-te Eintrag geholt,
-       und diese Methode wird angesprungen.
-
-****************/
-
-
-
-/********************** references to some system classes  ********************/
+#define VFTBLINTERFACETABLE(v,i)       (v)->interfacetable[-i]
+
+
+/* references to some system classes ******************************************/
 
 extern classinfo *class_java_lang_Object;
 extern classinfo *class_java_lang_String;
@@ -510,11 +666,9 @@ extern classinfo *class_java_lang_OutOfMemoryError;
 extern classinfo *class_java_lang_ArithmeticException;
 extern classinfo *class_java_lang_ArrayStoreException;
 extern classinfo *class_java_lang_ThreadDeath;
 extern classinfo *class_array;
 
-
-/********************** instances of some system classes **********************/
+/* instances of some system classes *******************************************/
 
 extern java_objectheader *proto_java_lang_ClassCastException;
 extern java_objectheader *proto_java_lang_NullPointerException;
@@ -526,24 +680,46 @@ extern java_objectheader *proto_java_lang_ArrayStoreException;
 extern java_objectheader *proto_java_lang_ThreadDeath;
 
 
-/******************************* flag variables *******************************/
+/* flag variables *************************************************************/
 
 extern bool compileall;
 extern bool runverbose;         
 extern bool verbose;         
-                                
+extern bool opt_rt;             /* Rapid Type Analysis for better inlining CO-RT*/
+extern bool opt_xta;            /* X Type Analysis for better inlining    CO-XTA*/
+extern bool opt_vta;            /* Variable Type Analysis for better inlining    CO-VTA*/
+
+extern int pClassHeir;
+extern int pCallgraph;
+extern int pOpcodes;
+extern int pStats;
 
-/******************************* trace variables ******************************/
+extern void RT_jit_parse(methodinfo *m);
+extern void printCallgraph ();
+extern void printRThierarchyInfo(methodinfo *m);
+extern void printObjectClassHeirarchy();
+
+extern void XTA_jit_parse(methodinfo *m);
+
+/* statistic variables ********************************************************/
 
 extern int count_class_infos;
 extern int count_const_pool_len;
 extern int count_vftbl_len;
-extern int count_unicode_len;
+extern int count_utf_len;
 extern int count_all_methods;
 extern int count_vmcode_len;
 extern int count_extable_len;
+extern int count_class_loads;
+extern int count_class_inits;
+extern int count_utf_new;
+extern int count_utf_new_found;
 
-#endif
+/* table of primitive types ***************************************************/
+
+extern primitivetypeinfo primitivetype_table[PRIMITIVETYPE_COUNT];
+
+#endif /* _GLOBAL_H */
 
 
 /*