* Removed all Id tags.
[cacao.git] / src / cacaoh / headers.c
index 661eb4fb706ea262e4f25faaa8be407ee1d412c3..ab25e9b2a1b6de3740dc62164221169825aa10ac 100644 (file)
@@ -1,9 +1,9 @@
 /* src/cacaoh/headers.c - functions for header generation
 
-   Copyright (C) 1996-2005 R. Grafl, A. Krall, C. Kruegel, C. Oates,
-   R. Obermaisser, M. Platter, M. Probst, S. Ring, E. Steiner,
-   C. Thalinger, D. Thuernbeck, P. Tomsich, C. Ullrich, J. Wenninger,
-   Institut f. Computersprachen - TU Wien
+   Copyright (C) 1996-2005, 2006, 2007 R. Grafl, A. Krall, C. Kruegel,
+   C. Oates, R. Obermaisser, M. Platter, M. Probst, S. Ring,
+   E. Steiner, C. Thalinger, D. Thuernbeck, P. Tomsich, C. Ullrich,
+   J. Wenninger, Institut f. Computersprachen - TU Wien
 
    This file is part of CACAO.
 
 
    You should have received a copy of the GNU General Public License
    along with this program; if not, write to the Free Software
-   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
-   02111-1307, USA.
-
-   Contact: cacao@complang.tuwien.ac.at
-
-   Authors: Reinhard Grafl
-
-   Changes: Mark Probst
-            Philipp Tomsich
-            Christian Thalinger
-
-   $Id: headers.c 2517 2005-05-23 10:33:06Z twisti $
+   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+   02110-1301, USA.
 
 */
 
 
+#include "config.h"
+
 #include <assert.h>
 #include <ctype.h>
+#include <stdarg.h>
+#include <stdint.h>
 #include <stdlib.h>
 #include <string.h>
 
-#include "config.h"
-
-#if defined(USE_THREADS) && defined(NATIVE_THREADS)
+#if defined(ENABLE_THREADS)
 # if defined(__DARWIN__)
 #  include <signal.h>
 # endif
 # include <ucontext.h>
 #endif
 
-#include "mm/boehm.h"
+#include "mm/gc-common.h"
 #include "mm/memory.h"
-#include "native/include/java_lang_String.h"
-#include "native/include/java_lang_Throwable.h"
+
 #include "toolbox/chain.h"
 #include "toolbox/logging.h"
+
 #include "vm/builtin.h"
-#include "vm/class.h"
 #include "vm/global.h"
-#include "vm/method.h"
-#include "vm/tables.h"
-#include "vm/loader.h"
-#include "vm/options.h"
 #include "vm/stringlocal.h"
-#include "vm/jit/asmpart.h"
-
-
-/******* replace some external functions  *********/
-functionptr native_findfunction(utf *cname, utf *mname, utf *desc, bool isstatic)
-{ return NULL; }
-
-java_objectheader *native_new_and_init(classinfo *c) { return NULL; }
-java_objectheader *native_new_and_init_string(classinfo *c, java_lang_String *s) { return NULL; }
-java_objectheader *native_new_and_init_int(classinfo *c, s4 i) { return NULL; }
-java_objectheader *native_new_and_init_throwable(classinfo *c, java_lang_Throwable *t) { return NULL; }
-
-
-java_objectheader *asm_calljavafunction(methodinfo *m, void *arg1, void *arg2,
-                                                                               void *arg3, void *arg4) { return NULL; }
-
-void asm_call_jit_compiler(void) {}
-
-/* code patching functions */
-void patcher_builtin_new(u1 *sp) {}
-void patcher_builtin_newarray(u1 *sp) {}
-void patcher_builtin_arraycheckcast(u1 *sp) {}
-void patcher_builtin_arrayinstanceof(u1 *sp) {}
-
-s4 asm_builtin_idiv(s4 a, s4 b) { return 0; }
-s4 asm_builtin_irem(s4 a, s4 b) { return 0; }
-s8 asm_builtin_ldiv(s8 a, s8 b) { return 0; }
-s8 asm_builtin_lrem(s8 a, s8 b) { return 0; }
-
-s4 asm_builtin_f2i(float a) { return 0; }
-s8 asm_builtin_f2l(float a) { return 0; }
-s4 asm_builtin_d2i(double a) { return 0; }
-s8 asm_builtin_d2l(double a) { return 0; }
-
-void use_class_as_object(void) {}
-void asm_builtin_monitorenter(java_objectheader *o) {}
-void *asm_builtin_monitorexit(java_objectheader *o) { return NULL; }
-
-s4 asm_builtin_arraycheckcast(java_objectheader *obj, vftbl_t *target)
-{
-       return 0;
-}
-
-#if defined(__MIPS__)
-long compare_and_swap(long *p, long oldval, long newval)
-{
-       if (*p == oldval) {
-               *p = newval;
-               return oldval;
-       } else
-               return *p;
-}
-#endif
-
-
-void asm_builtin_aastore(java_objectarray *a, s4 index, java_objectheader *o) {}
-
-u1 *createcompilerstub(methodinfo *m) { return NULL; }
-u1 *createnativestub(functionptr f, methodinfo *m) { return NULL; }
-u1 *oldcreatenativestub(functionptr f, methodinfo *m) { return NULL; }
-
-void removecompilerstub(u1 *stub) {}
-void removenativestub(u1 *stub) {}
-
-void asm_perform_threadswitch(u1 **from, u1 **to, u1 **stackTop) {}
-u1* asm_initialize_thread_stack(void *func, u1 *stack) { return NULL; }
-
-void *asm_switchstackandcall(void *stack, void *func, void **stacktopsave, void * p) { return NULL; }
-
-void asm_handle_builtin_exception(classinfo *c) {}
-void asm_getclassvalues_atomic(vftbl_t *super, vftbl_t *sub, castinfo *out) {}
-
-#if defined(__DARWIN__)
-int cacao_catch_Handler(void) {}
-#endif
-
-#if defined(USE_THREADS) && defined(NATIVE_THREADS)
-threadcritnode asm_criticalsections;
-void thread_restartcriticalsection(ucontext_t *uc) {}
-#endif
-
-
-void setVMClassField(classinfo *c) {}
-void *Java_java_lang_VMObject_clone(void *env, void *clazz, void * this)
-{
-       return NULL;
-}
-
-tristate_t
-typeinfo_is_assignable_to_class(typeinfo *value,classref_or_classinfo dest)
-{
-       return true;
-}
-
-
-/* exception functions ********************************************************/
-
-/* these should not be called */
-
-void throw_exception(void) { assert(0); }
-void throw_exception_exit(void) { assert(0); }
-java_objectheader *new_verifyerror(methodinfo *m, const char *message) { assert(0); }
-java_objectheader *new_exception_throwable(const char *classname, java_lang_Throwable *throwable) { assert(0); }
-
-
-void throw_cacao_exception_exit(const char *exception, const char *message, ...)
-{
-       va_list ap;
-
-       fprintf(stderr, "%s: ", exception);
-
-       va_start(ap, message);
-       vfprintf(stderr, message, ap);
-       va_end(ap);
-
-       exit(1);
-}
-
-
-java_objectheader *new_exception(const char *classname)
-{
-       fprintf(stderr, "%s\n", classname);
-       exit(1);
-}
-
-
-java_objectheader *new_exception_message(const char *classname, const char *message)
-{
-       fprintf(stderr, "%s: %s\n", classname, message);
-       exit(1);
-}
-
-
-java_objectheader *new_exception_utfmessage(const char *classname, utf *message)
-{
-       fprintf(stderr, "%s: ", classname);
-       utf_display(message);
-       fputc('\n', stderr);
-
-       exit(1);
-}
-
-
-java_objectheader *new_classformaterror(classinfo *c, const char *message, ...)
-{
-       va_list ap;
-
-       utf_display(c->name);
-       fprintf(stderr, ": ");
-
-       va_start(ap, message);
-       vfprintf(stderr, message, ap);
-       va_end(ap);
 
-       fputc('\n', stderr);
-
-       exit(1);
-}
-
-
-java_objectheader *new_internalerror(const char *message, ...)
-{
-       va_list ap;
-
-       fprintf(stderr, "%s: ", string_java_lang_InternalError);
-
-       va_start(ap, message);
-       vfprintf(stderr, message, ap);
-       va_end(ap);
-
-       exit(1);
-}
-
-
-java_objectheader *new_unsupportedclassversionerror(classinfo *c, const char *message, ...)
-{
-       va_list ap;
-
-       fprintf(stderr, "%s: ", string_java_lang_UnsupportedClassVersionError);
-
-       utf_display(c->name);
-       fprintf(stderr, ": ");
-
-       va_start(ap, message);
-       vfprintf(stderr, message, ap);
-       va_end(ap);
-
-       exit(1);
-}
-
-
-java_objectheader *new_negativearraysizeexception(void)
-{
-       fprintf(stderr, "%s", string_java_lang_NegativeArraySizeException);
-       exit(1);
-}
-
-
-java_objectheader *new_nullpointerexception(void)
-{
-       fprintf(stderr, "%s", string_java_lang_NullPointerException);
-       exit(1);
-}
+#include "vmcore/class.h"
+#include "vmcore/method.h"
+#include "vmcore/loader.h"
+#include "vmcore/options.h"
 
 
 /************************ global variables **********************/
 
-chain *nativemethod_chain;              /* chain with native methods          */
-chain *nativeclass_chain;               /* chain with processed classes       */
+#define ACC_NATIVELY_OVERLOADED    0x10000000
+
 chain *ident_chain;     /* chain with method and field names in current class */
 FILE *file = NULL;
-static u4 outputsize;
+static uint32_t outputsize;
 static bool dopadding;
 
 
@@ -296,19 +84,24 @@ void printID(utf *u)
        char *utf_ptr = u->text;
        int i;
 
-       for (i = 0; i < utf_strlen(u); i++) 
+       for (i = 0; i < utf_get_number_of_u2s(u); i++) 
                printIDpart(utf_nextu2(&utf_ptr));
 }
 
 
-static void addoutputsize (int len)
+static void addoutputsize(int len)
 {
-       u4 newsize,i;
-       if (!dopadding) return;
+       uint32_t newsize;
+       int32_t  i;
 
-       newsize = ALIGN(outputsize, len);
+       if (!dopadding)
+               return;
+
+       newsize = MEMORY_ALIGN(outputsize, len);
        
-       for (i = outputsize; i < newsize; i++) fprintf(file, "   u1 pad%d\n", (int) i);
+       for (i = outputsize; i < newsize; i++)
+               fprintf(file, "   uint8_t pad%d\n", (int) i);
+
        outputsize = newsize;
 }
 
@@ -316,7 +109,7 @@ static void addoutputsize (int len)
 void printOverloadPart(utf *desc)
 {
        char *utf_ptr=desc->text;
-       u2 c;
+       uint16_t c;
 
        fprintf(file, "__");
 
@@ -352,46 +145,51 @@ void printOverloadPart(utf *desc)
 
 static char *printtype(char *utf_ptr)
 {
-       u2 c;
+       uint16_t c;
 
        switch (utf_nextu2(&utf_ptr)) {
-       case 'V': fprintf (file, "void");
+       case 'V':
+               fprintf(file, "void");
                break;
        case 'I':
        case 'S':
        case 'B':
        case 'C':
-       case 'Z': addoutputsize (4);
-               fprintf (file, "s4");
+       case 'Z':
+               addoutputsize(4);
+               fprintf(file, "int32_t");
                break;
-       case 'J': addoutputsize (8);
-               fprintf (file, "s8");
+       case 'J':
+               addoutputsize(8);
+               fprintf(file, "int64_t");
                break;
-       case 'F': addoutputsize (4);
-               fprintf (file, "float");
+       case 'F':
+               addoutputsize(4);
+               fprintf(file, "float");
                break;
-       case 'D': addoutputsize (8);
-               fprintf (file, "double");
+       case 'D':
+               addoutputsize(8);
+               fprintf(file, "double");
                break;
        case '[':
-               addoutputsize ( sizeof(java_arrayheader*) ); 
+               addoutputsize ( sizeof(java_array_t*) ); 
                switch (utf_nextu2(&utf_ptr)) {
-               case 'I':  fprintf (file, "java_intarray*"); break;
-               case 'J':  fprintf (file, "java_longarray*"); break;
-               case 'Z':  fprintf (file, "java_booleanarray*"); break;
-               case 'B':  fprintf (file, "java_bytearray*"); break;
-               case 'S':  fprintf (file, "java_shortarray*"); break;
-               case 'C':  fprintf (file, "java_chararray*"); break;
-               case 'F':  fprintf (file, "java_floatarray*"); break;
-               case 'D':  fprintf (file, "java_doublearray*"); break;
+               case 'I':  fprintf (file, "java_intarray_t*"); break;
+               case 'J':  fprintf (file, "java_longarray_t*"); break;
+               case 'Z':  fprintf (file, "java_booleanarray_t*"); break;
+               case 'B':  fprintf (file, "java_bytearray_t*"); break;
+               case 'S':  fprintf (file, "java_shortarray_t*"); break;
+               case 'C':  fprintf (file, "java_chararray_t*"); break;
+               case 'F':  fprintf (file, "java_floatarray_t*"); break;
+               case 'D':  fprintf (file, "java_doublearray_t*"); break;
                                
-               case '[': fprintf(file, "java_objectarray*");
+               case '[': fprintf(file, "java_objectarray_t*");
                        while ((c = utf_nextu2(&utf_ptr)) == '[');
                        if (c == 'L')
                                while (utf_nextu2(&utf_ptr) != ';');
                        break;
                            
-               case 'L':  fprintf(file, "java_objectarray*");
+               case 'L':  fprintf(file, "java_objectarray_t*");
                        while (utf_nextu2(&utf_ptr) != ';');
                        break;
                default:
@@ -401,7 +199,7 @@ static char *printtype(char *utf_ptr)
                break;
                
        case 'L': 
-               addoutputsize ( sizeof(java_objectheader*));
+               addoutputsize ( sizeof(java_object_t*));
                fprintf (file, "struct ");
                while ( (c = utf_nextu2(&utf_ptr)) != ';' ) printIDpart (c);     
                fprintf (file, "*");
@@ -436,13 +234,13 @@ static int searchidentchain_utf(utf *ident)
 
 static void printfields(classinfo *c)
 {
-       u4 i;
+       int32_t i;
        fieldinfo *f;
        int ident_count;
        
        if (!c) {
-               addoutputsize(sizeof(java_objectheader));
-               fprintf(file, "   java_objectheader header;\n");
+               addoutputsize(sizeof(java_object_t));
+               fprintf(file, "   java_object_t header;\n");
                return;
        }
                
@@ -455,7 +253,7 @@ static void printfields(classinfo *c)
                        fprintf(file, "   ");
                        printtype(f->descriptor->text);
                        fprintf(file, " ");
-                       utf_fprint(file, f->name);
+                       utf_fprint_printable_ascii(file, f->name);
 
                        /* rename multiple fieldnames */
                        if ((ident_count = searchidentchain_utf(f->name)))
@@ -473,7 +271,7 @@ static void printfields(classinfo *c)
 void printmethod(methodinfo *m)
 {
        char *utf_ptr;
-       u2 paramnum = 1;
+       int32_t paramnum = 1;
 
        /* search for return-type in descriptor */      
        utf_ptr = m->descriptor->text;
@@ -481,11 +279,11 @@ void printmethod(methodinfo *m)
 
        /* create remarks */
        fprintf(file, "\n/*\n * Class:     ");
-       utf_fprint(file, m->class->name);
+       utf_fprint_printable_ascii(file, m->class->name);
        fprintf(file, "\n * Method:    ");
-       utf_fprint(file, m->name);
+       utf_fprint_printable_ascii(file, m->name);
        fprintf(file, "\n * Signature: ");
-       utf_fprint(file, m->descriptor);
+       utf_fprint_printable_ascii(file, m->descriptor);
        fprintf(file, "\n */\n");
 
        /* create prototype */                  
@@ -498,7 +296,12 @@ void printmethod(methodinfo *m)
 
        fprintf(file, "_");
        printID(m->name);
-       if (m->nativelyoverloaded) printOverloadPart(m->descriptor);
+
+       /* ATTENTION: We use a dummy flag here. */
+
+       if (m->flags & ACC_NATIVELY_OVERLOADED)
+               printOverloadPart(m->descriptor);
+
        fprintf(file, "(JNIEnv *env");
        
        utf_ptr = m->descriptor->text + 1;
@@ -528,9 +331,9 @@ void printmethod(methodinfo *m)
 
 void gen_header_filename(char *buffer, utf *u)
 {
-       s4 i;
+       int32_t i;
   
-       for (i = 0; i < utf_strlen(u); i++) {
+       for (i = 0; i < utf_get_number_of_u2s(u); i++) {
                if ((u->text[i] == '/') || (u->text[i] == '$')) {
                        buffer[i] = '_';  /* convert '$' and '/' to '_' */
 
@@ -538,7 +341,7 @@ void gen_header_filename(char *buffer, utf *u)
                        buffer[i] = u->text[i];
                }
        }
-       buffer[utf_strlen(u)] = '\0';
+       buffer[utf_get_number_of_u2s(u)] = '\0';
 }
 
 
@@ -549,15 +352,16 @@ void headerfile_generate(classinfo *c, char *opt_directory)
        char header_filename[1024] = "";
        char classname[1024]; 
        char uclassname[1024];
-       u2 i;
+       int32_t i;
        methodinfo *m;                  
-       u2 i2;
+       int32_t j;
        methodinfo *m2;
-       u2 nativelyoverloaded;                  
-                     
-       /* store class in chain */                    
-       chain_addlast(nativeclass_chain, c);
-                               
+       bool nativelyoverloaded;
+
+       /* prevent compiler warnings */
+
+       nativelyoverloaded = false;
+
        /* open headerfile for class */
        gen_header_filename(classname, c->name);
 
@@ -589,7 +393,7 @@ void headerfile_generate(classinfo *c, char *opt_directory)
 
        /* create structure for direct access to objects */     
        fprintf(file, "/* Structure information for class: ");
-       utf_fprint(file, c->name);
+       utf_fprint_printable_ascii(file, c->name);
        fprintf(file, " */\n\n");
        fprintf(file, "typedef struct ");
        printID(c->name);                                                       
@@ -610,34 +414,40 @@ void headerfile_generate(classinfo *c, char *opt_directory)
        /* create method-prototypes */
                                
        /* find overloaded methods */
-       for (i = 0; i < c->methodscount; i++) {
 
+       for (i = 0; i < c->methodscount; i++) {
                m = &(c->methods[i]);
 
-               if (!(m->flags & ACC_NATIVE)) continue;
-               if (!m->nativelyoverloaded) {
-                       nativelyoverloaded=false;
-                       for (i2=i+1;i2<c->methodscount; i2++) {
-                               m2 = &(c->methods[i2]);
-                               if (!(m2->flags & ACC_NATIVE)) continue;
-                               if (m->name==m2->name) {
-                                       m2->nativelyoverloaded=true;
-                                       nativelyoverloaded=true;
+               if (!(m->flags & ACC_NATIVE))
+                       continue;
+
+               /* We use a dummy flag here. */
+
+               if (!(m->flags & ACC_NATIVELY_OVERLOADED)) {
+                       nativelyoverloaded = false;
+
+                       for (j = i + 1; j < c->methodscount; j++) {
+                               m2 = &(c->methods[j]);
+
+                               if (!(m2->flags & ACC_NATIVE))
+                                       continue;
+
+                               if (m->name == m2->name) {
+                                       m2->flags          |= ACC_NATIVELY_OVERLOADED;
+                                       nativelyoverloaded  = true;
                                }
                        }
-                       m->nativelyoverloaded=nativelyoverloaded;
                }
 
+               if (nativelyoverloaded == true)
+                       m->flags |= ACC_NATIVELY_OVERLOADED;
        }
 
        for (i = 0; i < c->methodscount; i++) {
-
                m = &(c->methods[i]);
 
-               if (m->flags & ACC_NATIVE) {
-                       chain_addlast(nativemethod_chain, m);
+               if (m->flags & ACC_NATIVE)
                        printmethod(m);
-               }
        }
 
        chain_free(ident_chain);
@@ -655,7 +465,7 @@ void print_classname(classinfo *clazz)
        utf *u = clazz->name;
     char *endpos  = u->text + u->blength;
     char *utf_ptr = u->text; 
-       u2 c;
+       uint16_t c;
 
     while (utf_ptr < endpos) {
                if ((c = utf_nextu2(&utf_ptr)) == '_')
@@ -677,4 +487,5 @@ void print_classname(classinfo *clazz)
  * c-basic-offset: 4
  * tab-width: 4
  * End:
+ * vim:noexpandtab:sw=4:ts=4:
  */