* Merged in twisti-branch.
[cacao.git] / src / vm / jit / stacktrace.c
index 3d834794184ad4b0be1efb131a72c2fccff8fc3b..4052676e1e8a5eaa7a546f9d30e33b5861a5229e 100644 (file)
@@ -1,6 +1,6 @@
-/* src/vm/jit/stacktrace.c - machine independet stacktrace system
+/* src/vm/jit/stacktrace.c - machine independent stacktrace system
 
-   Copyright (C) 1996-2005, 2006 R. Grafl, A. Krall, C. Kruegel,
+   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
    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
    02110-1301, USA.
 
-   Contact: cacao@cacaojvm.org
-
-   Authors: Joseph Wenninger
-
-   Changes: Christian Thalinger
-            Edwin Steiner
-
-   $Id: stacktrace.c 4457 2006-02-06 01:28:07Z edwin $
+   $Id: stacktrace.c 7584 2007-03-27 18:17:27Z tbfg $
 
 */
 
 
 #include "vm/types.h"
 
-#include "mm/boehm.h"
+#include "mm/gc-common.h"
 #include "mm/memory.h"
-#include "native/native.h"
+
+#include "vm/jit/stacktrace.h"
 
 #include "vm/global.h"                   /* required here for native includes */
-#include "native/include/java_lang_ClassLoader.h"
+#include "native/jni.h"
 #include "native/include/java_lang_Throwable.h"
-#include "native/include/java_lang_VMThrowable.h"
 
-#if defined(USE_THREADS)
-# if defined(NATIVE_THREADS)
-#  include "threads/native/threads.h"
-# else
-#  include "threads/green/threads.h"
-# endif
+#if defined(WITH_CLASSPATH_GNU)
+# include "native/include/java_lang_VMThrowable.h"
+#endif
+
+#if defined(ENABLE_THREADS)
+# include "threads/native/threads.h"
 #else
 # include "threads/none/threads.h"
 #endif
 
 #include "toolbox/logging.h"
+
 #include "vm/builtin.h"
-#include "vm/class.h"
+#include "vm/cycles-stats.h"
 #include "vm/exceptions.h"
-#include "vm/loader.h"
-#include "vm/options.h"
 #include "vm/stringlocal.h"
+#include "vm/vm.h"
+
 #include "vm/jit/asmpart.h"
 #include "vm/jit/codegen-common.h"
 #include "vm/jit/methodheader.h"
 
+#include "vmcore/class.h"
+#include "vmcore/loader.h"
+#include "vmcore/options.h"
 
-/* linenumbertable_entry ******************************************************/
-
-/* Keep the type of line the same as the pointer type, otherwise we
-   run into alignment troubles (like on MIPS64). */
-
-typedef struct linenumbertable_entry linenumbertable_entry;
-
-struct linenumbertable_entry {
-       ptrint  line;               /* NOTE: see doc/inlining_stacktrace.txt for  */
-       u1     *pc;                 /*       special meanings of line and pc.     */
-};
 
 /* global variables ***********************************************************/
-
-#if !defined(USE_THREADS)
+#if !defined(ENABLE_THREADS)
 stackframeinfo *_no_threads_stackframeinfo = NULL;
 #endif
 
+CYCLES_STATS_DECLARE(stacktrace_overhead        ,100,1)
+CYCLES_STATS_DECLARE(stacktrace_fillInStackTrace,40,5000)
+CYCLES_STATS_DECLARE(stacktrace_getClassContext ,40,5000)
+CYCLES_STATS_DECLARE(stacktrace_getCurrentClass ,40,5000)
+CYCLES_STATS_DECLARE(stacktrace_getStack        ,40,10000)
+
 
 /* stacktrace_create_stackframeinfo ********************************************
 
@@ -105,6 +96,7 @@ void stacktrace_create_stackframeinfo(stackframeinfo *sfi, u1 *pv, u1 *sp,
 {
        stackframeinfo **psfi;
        methodinfo      *m;
+       codeinfo        *code;
 
        /* get current stackframe info pointer */
 
@@ -115,19 +107,23 @@ void stacktrace_create_stackframeinfo(stackframeinfo *sfi, u1 *pv, u1 *sp,
        if (pv == NULL) {
 #if defined(ENABLE_INTRP)
                if (opt_intrp)
-                       pv = codegen_findmethod(ra);
+                       pv = codegen_get_pv_from_pc(ra);
                else
 #endif
                        {
 #if defined(ENABLE_JIT)
-                               pv = md_codegen_findmethod(ra);
+                               pv = md_codegen_get_pv_from_pc(ra);
 #endif
                        }
        }
 
-       /* get methodinfo pointer from data segment */
+       /* get codeinfo pointer from data segment */
+
+       code = *((codeinfo **) (pv + CodeinfoPointer));
 
-       m = *((methodinfo **) (pv + MethodPointer));
+       /* For asm_vm_call_method the codeinfo pointer is NULL. */
+
+       m = (code == NULL) ? NULL : code->m;
 
        /* fill new stackframe info structure */
 
@@ -168,7 +164,7 @@ void stacktrace_create_inline_stackframeinfo(stackframeinfo *sfi, u1 *pv,
                /* if we don't have pv handy */
 
                if (pv == NULL)
-                       pv = codegen_findmethod(ra);
+                       pv = codegen_get_pv_from_pc(ra);
 
        }
 #endif
@@ -199,7 +195,7 @@ void stacktrace_create_extern_stackframeinfo(stackframeinfo *sfi, u1 *pv,
                                                                                         u1 *sp, u1 *ra, u1 *xpc)
 {
        stackframeinfo **psfi;
-#if !defined(__I386__) && !defined(__X86_64__)
+#if !defined(__I386__) && !defined(__X86_64__) && !defined(__S390__)
        bool             isleafmethod;
 #endif
 #if defined(ENABLE_JIT)
@@ -216,12 +212,16 @@ void stacktrace_create_extern_stackframeinfo(stackframeinfo *sfi, u1 *pv,
        if (pv == NULL) {
 #if defined(ENABLE_INTRP)
                if (opt_intrp)
-                       pv = codegen_findmethod(ra);
+                       pv = codegen_get_pv_from_pc(ra);
                else
 #endif
                        {
 #if defined(ENABLE_JIT)
-                               pv = md_codegen_findmethod(ra);
+# if defined(__SPARC_64__)
+                               pv = md_get_pv_from_stackframe(sp);
+# else
+                               pv = md_codegen_get_pv_from_pc(ra);
+# endif
 #endif
                        }
        }
@@ -232,9 +232,11 @@ void stacktrace_create_extern_stackframeinfo(stackframeinfo *sfi, u1 *pv,
 
        if (!opt_intrp) {
 # endif
-# if defined(__I386__) || defined(__X86_64__)
+# if defined(__I386__) || defined(__X86_64__) || defined(__S390__)
                /* On i386 and x86_64 we always have to get the return address
                   from the stack. */
+               /* On S390 we use REG_RA as REG_ITMP3, so we have always to get
+                  the RA from stack. */
 
                framesize = *((u4 *) (pv + FrameSize));
 
@@ -284,10 +286,15 @@ void stacktrace_create_native_stackframeinfo(stackframeinfo *sfi, u1 *pv,
 {
        stackframeinfo **psfi;
        methodinfo      *m;
+       codeinfo        *code;
+
+       /* get codeinfo pointer from data segment */
 
-       /* get methodinfo pointer from data segment */
+       code = *((codeinfo **) (pv + CodeinfoPointer));
 
-       m = *((methodinfo **) (pv + MethodPointer));
+       /* For asm_vm_call_method the codeinfo pointer is NULL. */
+
+       m = (code == NULL) ? NULL : code->m;
 
        /* get current stackframe info pointer */
 
@@ -310,7 +317,7 @@ void stacktrace_create_native_stackframeinfo(stackframeinfo *sfi, u1 *pv,
 
 /* stacktrace_remove_stackframeinfo ********************************************
 
-   XXX
+   Remove the topmost stackframeinfo in the current thread.
 
 *******************************************************************************/
 
@@ -346,7 +353,7 @@ java_objectheader *stacktrace_inline_arithmeticexception(u1 *pv, u1 *sp,
 
        /* create exception */
 
-       o = new_arithmeticexception();
+       o = exceptions_new_arithmeticexception();
 
        /* remove stackframeinfo */
 
@@ -377,7 +384,7 @@ java_objectheader *stacktrace_inline_arrayindexoutofboundsexception(u1 *pv,
 
        /* create exception */
 
-       o = new_arrayindexoutofboundsexception(index);
+       o = exceptions_new_arrayindexoutofboundsexception(index);
 
        /* remove stackframeinfo */
 
@@ -405,7 +412,7 @@ java_objectheader *stacktrace_inline_arraystoreexception(u1 *pv, u1 *sp, u1 *ra,
 
        /* create exception */
 
-       o = new_arraystoreexception();
+       o = exceptions_new_arraystoreexception();
 
        /* remove stackframeinfo */
 
@@ -422,10 +429,11 @@ java_objectheader *stacktrace_inline_arraystoreexception(u1 *pv, u1 *sp, u1 *ra,
 *******************************************************************************/
 
 java_objectheader *stacktrace_inline_classcastexception(u1 *pv, u1 *sp, u1 *ra,
-                                                                                                               u1 *xpc)
+                                                                                                               u1 *xpc,
+                                                                                                               java_objectheader *o)
 {
        stackframeinfo     sfi;
-       java_objectheader *o;
+       java_objectheader *e;
 
        /* create stackframeinfo */
 
@@ -433,13 +441,13 @@ java_objectheader *stacktrace_inline_classcastexception(u1 *pv, u1 *sp, u1 *ra,
 
        /* create exception */
 
-       o = new_classcastexception();
+       e = exceptions_new_classcastexception(o);
 
        /* remove stackframeinfo */
 
        stacktrace_remove_stackframeinfo(&sfi);
 
-       return o;
+       return e;
 }
 
 
@@ -461,7 +469,7 @@ java_objectheader *stacktrace_inline_nullpointerexception(u1 *pv, u1 *sp,
 
        /* create exception */
 
-       o = new_nullpointerexception();
+       o = exceptions_new_nullpointerexception();
 
        /* remove stackframeinfo */
 
@@ -471,25 +479,50 @@ java_objectheader *stacktrace_inline_nullpointerexception(u1 *pv, u1 *sp,
 }
 
 
-/* stacktrace_hardware_arithmeticexception *************************************
+/* stacktrace_inline_fillInStackTrace ******************************************
 
-   Creates an ArithemticException for inline stub.
+   Fills in the correct stacktrace into an existing exception object
+   (this one is for inline exception stubs).
 
 *******************************************************************************/
 
-java_objectheader *stacktrace_hardware_arithmeticexception(u1 *pv, u1 *sp,
-                                                                                                                  u1 *ra, u1 *xpc)
+java_objectheader *stacktrace_inline_fillInStackTrace(u1 *pv, u1 *sp, u1 *ra,
+                                                                                                         u1 *xpc)
 {
        stackframeinfo     sfi;
        java_objectheader *o;
+       methodinfo        *m;
 
        /* create stackframeinfo */
 
-       stacktrace_create_extern_stackframeinfo(&sfi, pv, sp, ra, xpc);
+       stacktrace_create_inline_stackframeinfo(&sfi, pv, sp, ra, xpc);
 
-       /* create exception */
+       /* get exception */
+
+       o = *exceptionptr;
+       assert(o);
+
+       /* clear exception */
+
+       *exceptionptr = NULL;
+
+       /* resolve methodinfo pointer from exception object */
+
+#if defined(ENABLE_JAVASE)
+       m = class_resolvemethod(o->vftbl->class,
+                                                       utf_fillInStackTrace,
+                                                       utf_void__java_lang_Throwable);
+#elif defined(ENABLE_JAVAME_CLDC1_1)
+       m = class_resolvemethod(o->vftbl->class,
+                                                       utf_fillInStackTrace,
+                                                       utf_void__void);
+#else
+#error IMPLEMENT ME!
+#endif
 
-       o = new_arithmeticexception();
+       /* call function */
+
+       (void) vm_call_method(m, o);
 
        /* remove stackframeinfo */
 
@@ -499,14 +532,14 @@ java_objectheader *stacktrace_hardware_arithmeticexception(u1 *pv, u1 *sp,
 }
 
 
-/* stacktrace_hardware_nullpointerexception ************************************
+/* stacktrace_hardware_arithmeticexception *************************************
 
-   Creates an NullPointerException for the SIGSEGV signal handler.
+   Creates an ArithemticException for inline stub.
 
 *******************************************************************************/
 
-java_objectheader *stacktrace_hardware_nullpointerexception(u1 *pv, u1 *sp,
-                                                                                                                       u1 *ra, u1 *xpc)
+java_objectheader *stacktrace_hardware_arithmeticexception(u1 *pv, u1 *sp,
+                                                                                                                  u1 *ra, u1 *xpc)
 {
        stackframeinfo     sfi;
        java_objectheader *o;
@@ -517,7 +550,7 @@ java_objectheader *stacktrace_hardware_nullpointerexception(u1 *pv, u1 *sp,
 
        /* create exception */
 
-       o = new_nullpointerexception();
+       o = exceptions_new_arithmeticexception();
 
        /* remove stackframeinfo */
 
@@ -527,41 +560,25 @@ java_objectheader *stacktrace_hardware_nullpointerexception(u1 *pv, u1 *sp,
 }
 
 
-/* stacktrace_inline_fillInStackTrace ******************************************
+/* stacktrace_hardware_nullpointerexception ************************************
 
-   Fills in the correct stacktrace into an existing exception object
-   (this one is for inline exception stubs).
+   Creates an NullPointerException for the SIGSEGV signal handler.
 
 *******************************************************************************/
 
-java_objectheader *stacktrace_inline_fillInStackTrace(u1 *pv, u1 *sp, u1 *ra,
-                                                                                                         u1 *xpc)
+java_objectheader *stacktrace_hardware_nullpointerexception(u1 *pv, u1 *sp,
+                                                                                                                       u1 *ra, u1 *xpc)
 {
        stackframeinfo     sfi;
        java_objectheader *o;
-       methodinfo        *m;
 
        /* create stackframeinfo */
 
-       stacktrace_create_inline_stackframeinfo(&sfi, pv, sp, ra, xpc);
-
-       /* get exception */
-
-       o = *exceptionptr;
-
-       /* clear exception */
-
-       *exceptionptr = NULL;
-
-       /* resolve methodinfo pointer from exception object */
-
-       m = class_resolvemethod(o->vftbl->class,
-                                                       utf_fillInStackTrace,
-                                                       utf_void__java_lang_Throwable);
+       stacktrace_create_extern_stackframeinfo(&sfi, pv, sp, ra, xpc);
 
-       /* call function */
+       /* create exception */
 
-       ASM_CALLJAVAFUNCTION(m, o, NULL, NULL, NULL);
+       o = exceptions_new_nullpointerexception();
 
        /* remove stackframeinfo */
 
@@ -607,87 +624,6 @@ static void stacktrace_add_entry(stacktracebuffer *stb, methodinfo *m, u2 line)
 }
 
 
-/* stacktrace_add_method_intern ************************************************
-
-   This function is used by stacktrace_add_method to search the line number
-   table for the line corresponding to a given pc. The function recurses for
-   inlined methods.
-
-*******************************************************************************/
-
-static bool stacktrace_add_method_intern(stacktracebuffer *stb, 
-                                                                                methodinfo *m, 
-                                                                                linenumbertable_entry *lntentry,
-                                                                                ptrint lntsize,
-                                                                                u1 *pc)
-{
-       linenumbertable_entry *lntinline;   /* special entry for inlined method */
-
-       assert(stb);
-       assert(lntentry);
-
-       /* Find the line number for the specified PC (going backwards
-          in the linenumber table). The linenumber table size is zero
-          in native stubs. */
-
-       for (; lntsize > 0; lntsize--, lntentry--) {
-
-               /* did we reach the current line? */
-               /* Note: In case of inlining this may actually compare the pc against a */
-               /* methodinfo *, yielding a non-sensical result. This is no problem,    */
-               /* however, as we ignore such entries in the switch below. This way we  */
-               /* optimize for the common case (ie. a real pc in lntentry->pc).        */
-               if (pc >= lntentry->pc) {
-
-                       /* check for special inline entries             */
-                       /* (see doc/inlining_stacktrace.txt for details */
-                       if ((s4)lntentry->line < 0) {
-                               switch (lntentry->line) {
-                                       case -1: 
-                                               /* begin of inlined method (ie. INLINE_END instruction) */
-
-                                               lntinline = --lntentry;  /* get entry with methodinfo * */
-                                               lntentry--;              /* skip the special entry      */
-                                               lntsize -= 2;
-
-                                               /* search inside the inlined method */
-                                               if (stacktrace_add_method_intern(
-                                                                       stb, 
-                                                                       (methodinfo*) lntinline->pc,
-                                                                       lntentry,
-                                                                       lntsize,
-                                                                       pc))
-                                               {
-                                                       /* the inlined method contained the pc */
-                                                       assert(lntinline->line <= -3);
-                                                       stacktrace_add_entry(stb, m, (-3) - lntinline->line);
-                                                       return true;
-                                               }
-                                               /* pc was not in inlined method, continue search.     */
-                                               /* Entries inside the inlined method will be skipped  */
-                                               /* because their lntentry->pc is higher than pc.      */
-                                               break;
-
-                                       case -2: 
-                                               /* end of inlined method */
-                                               return false;
-
-                                       /* default: is only reached for an -3-line entry after a skipped */
-                                       /* -2 entry. We can safely ignore it and continue searching.     */
-                               }
-                       }
-                       else {
-                               /* found a normal entry */
-                               stacktrace_add_entry(stb, m, lntentry->line);
-                               return true;
-                       }
-               }
-       }
-
-       /* not found */
-       return false;
-}
-
 /* stacktrace_add_method *******************************************************
 
    Add stacktrace entries[1] for the given method to the stacktrace buffer.
@@ -709,35 +645,20 @@ static bool stacktrace_add_method_intern(stacktracebuffer *stb,
 static bool stacktrace_add_method(stacktracebuffer *stb, methodinfo *m, u1 *pv,
                                                                  u1 *pc)
 {
-       ptrint                 lntsize;     /* size of line number table          */
-       u1                    *lntstart;    /* start of line number table         */
-       linenumbertable_entry *lntentry;    /* points to last entry in the table  */
-
-       /* get size of line number table */
-
-       lntsize  = *((ptrint *) (pv + LineNumberTableSize));
-       lntstart = *((u1 **)    (pv + LineNumberTableStart));
-
-       /* Subtract the size of the line number entry of the structure,
-          since the line number table start points to the pc. */
+       codeinfo *code;                     /* compiled realization of method     */
+       s4        linenumber;
 
-       lntentry = (linenumbertable_entry *) (lntstart - SIZEOF_VOID_P);
+       /* find the realization of the method the pc is in */
 
-       /* check if we are before the actual JIT code */
-
-       if ((ptrint) pc < (ptrint) m->entrypoint) {
-               dolog("Current PC before start of code: %p < %p", pc, m->entrypoint);
-               assert(0);
-       }
+       code = *((codeinfo **) (pv + CodeinfoPointer));
 
        /* search the line number table */
 
-       if (stacktrace_add_method_intern(stb, m, lntentry, lntsize, pc))
-               return true;
+       linenumber = dseg_get_linenumber_from_pc(&m, pv, pc);
 
-       /* If we get here, just add the entry with line number 0. */
+       /* now add a new entry to the staktrace */
 
-       stacktrace_add_entry(stb, m, 0);
+       stacktrace_add_entry(stb, m, linenumber);
 
        return true;
 }
@@ -749,25 +670,24 @@ static bool stacktrace_add_method(stacktracebuffer *stb, methodinfo *m, u1 *pv,
    stacktracebuffer.  The stacktracebuffer is allocated on the GC
    heap.
 
+   RETURN VALUE:
+      pointer to the stacktracebuffer, or
+         NULL if an exception has been thrown
+
 *******************************************************************************/
 
 stacktracebuffer *stacktrace_create(threadobject* thread)
 {
        stacktracebuffer *stb;
-       stacktracebuffer *gcstb;
-       s4                dumpsize;
        stackframeinfo   *sfi;
        methodinfo       *m;
+       codeinfo         *code;
        u1               *pv;
        u1               *sp;
        u4                framesize;
        u1               *ra;
        u1               *xpc;
 
-       /* mark start of dump memory area */
-
-       dumpsize = dump_size();
-
        /* prevent compiler warnings */
 
        pv = NULL;
@@ -786,8 +706,11 @@ stacktracebuffer *stacktrace_create(threadobject* thread)
           native stackframeinfo (VMThrowable.fillInStackTrace is a native
           function). */
 
-#if defined(USE_THREADS)
-       sfi = thread->info._stackframeinfo;
+       /* We don't use the STACKFRAMEINFO macro here, as we have to use
+          the passed thread. */
+
+#if defined(ENABLE_THREADS)
+       sfi = thread->_stackframeinfo;
 #else
        sfi = _no_threads_stackframeinfo;
 #endif
@@ -804,7 +727,7 @@ stacktracebuffer *stacktrace_create(threadobject* thread)
 
        m = NULL;
 
-       while (m || sfi) {
+       while ((m != NULL) || (sfi != NULL)) {
                /* m == NULL should only happen for the first time and inline
                   stackframe infos, like from the exception stubs or the
                   patcher wrapper. */
@@ -834,18 +757,23 @@ stacktracebuffer *stacktrace_create(threadobject* thread)
 
 #if defined(ENABLE_INTRP)
                                if (opt_intrp)
-                                       pv = codegen_findmethod(ra);
+                                       pv = codegen_get_pv_from_pc(ra);
                                else
 #endif
                                        {
 #if defined(ENABLE_JIT)
-                                               pv = md_codegen_findmethod(ra);
+                                               pv = md_codegen_get_pv_from_pc(ra);
 #endif
                                        }
 
                                /* get methodinfo pointer from parent data segment */
 
-                               m = *((methodinfo **) (pv + MethodPointer));
+                               code = *((codeinfo **) (pv + CodeinfoPointer));
+
+                               /* For asm_vm_call_method the codeinfo pointer is
+                                  NULL. */
+
+                               m = (code == NULL) ? NULL : code->m;
 
                        } else {
                                /* Inline stackframe infos are special: they have a
@@ -871,7 +799,12 @@ stacktracebuffer *stacktrace_create(threadobject* thread)
 
                                /* get methodinfo from current Java method */
 
-                               m = *((methodinfo **) (pv + MethodPointer));
+                               code = *((codeinfo **) (pv + CodeinfoPointer));
+
+                               /* For asm_vm_call_method the codeinfo pointer is
+                                  NULL. */
+
+                               m = (code == NULL) ? NULL : code->m;
 
                                /* if m == NULL, this is a asm_calljavafunction call */
 
@@ -900,23 +833,30 @@ stacktracebuffer *stacktrace_create(threadobject* thread)
                                        fflush(stdout);
 #endif
 
-                                       /* set stack pointer to stackframe of parent Java */
-                                       /* function of the current Java function */
+                                       /* Set stack pointer to stackframe of parent Java
+                                          function of the current Java function. */
 
 #if defined(__I386__) || defined (__X86_64__)
                                        sp += framesize + SIZEOF_VOID_P;
+#elif defined(__SPARC_64__)
+                                       sp = md_get_framepointer(sp);
 #else
                                        sp += framesize;
 #endif
 
-                                       /* get data segment and methodinfo pointer from parent */
-                                       /* method */
+                                       /* get data segment and methodinfo pointer from
+                                          parent method */
 
 #if defined(ENABLE_JIT)
-                                       pv = md_codegen_findmethod(ra);
+                                       pv = md_codegen_get_pv_from_pc(ra);
 #endif
 
-                                       m = *((methodinfo **) (pv + MethodPointer));
+                                       code = *((codeinfo **) (pv + CodeinfoPointer));
+
+                                       /* For asm_vm_call_method the codeinfo pointer is
+                                          NULL. */
+
+                                       m = (code == NULL) ? NULL : code->m;
 
 #if defined(ENABLE_INTRP)
                                        }
@@ -975,16 +915,25 @@ stacktracebuffer *stacktrace_create(threadobject* thread)
 
 #if defined(ENABLE_INTRP)
                        if (opt_intrp)
-                               pv = codegen_findmethod(ra);
+                               pv = codegen_get_pv_from_pc(ra);
                        else
 #endif
                                {
 #if defined(ENABLE_JIT)
-                                       pv = md_codegen_findmethod(ra);
+# if defined(__SPARC_64__)
+                                       sp = md_get_framepointer(sp);
+                                       pv = md_get_pv_from_stackframe(sp);
+# else
+                                       pv = md_codegen_get_pv_from_pc(ra);
+# endif
 #endif
                                }
 
-                       m = *((methodinfo **) (pv + MethodPointer));
+                       code = *((codeinfo **) (pv + CodeinfoPointer));
+
+                       /* For asm_vm_call_method the codeinfo pointer is NULL. */
+
+                       m = (code == NULL) ? NULL : code->m;
 
                        /* walk the stack */
 
@@ -994,8 +943,10 @@ stacktracebuffer *stacktrace_create(threadobject* thread)
                        else
 #endif
                                {
-#if defined(__I386__) || defined (__X86_64__)
+#if defined(__I386__) || defined (__X86_64__) || defined (__M68K__)
                                        sp += framesize + SIZEOF_VOID_P;
+#elif defined(__SPARC_64__)
+                                       /* already has the new sp */
 #else
                                        sp += framesize;
 #endif
@@ -1003,29 +954,9 @@ stacktracebuffer *stacktrace_create(threadobject* thread)
                }
        }
 
-       /* allocate memory from the GC heap and copy the stacktrace buffer */
-
-       gcstb = GCNEW(stacktracebuffer);
-
-
-       gcstb->capacity = stb->capacity;
-       gcstb->used     = stb->used;
-       gcstb->entries  = GCMNEW(stacktrace_entry, stb->used);
-
-       MCOPY(gcstb->entries, stb->entries, stacktrace_entry, stb->used);
-
-       /* just to be sure */
-
-       stb = NULL;
-       assert(gcstb != NULL);
-
-       /* release dump memory */
-
-       dump_release(dumpsize);
-
        /* return the stacktracebuffer */
 
-       return gcstb;
+       return stb;
 }
 
 
@@ -1036,15 +967,56 @@ stacktracebuffer *stacktrace_create(threadobject* thread)
 
 *******************************************************************************/
 
-stacktracebuffer *stacktrace_fillInStackTrace(void)
+stacktracecontainer *stacktrace_fillInStackTrace(void)
 {
-       stacktracebuffer *stb;
+       stacktracebuffer    *stb;
+       stacktracecontainer *gcstc;
+       s4                   gcstc_size;
+       s4                   dumpsize;
+       CYCLES_STATS_DECLARE_AND_START_WITH_OVERHEAD
+
+       /* mark start of dump memory area */
+
+       dumpsize = dump_size();
 
        /* create a stacktrace from the current thread */
 
        stb = stacktrace_create(THREADOBJECT);
+       if (!stb)
+               goto return_NULL;
 
-       return stb;
+       /* allocate memory from the GC heap and copy the stacktrace buffer */
+       /* ATTENTION: use stacktracecontainer for this and make it look like
+       an array */
+
+       gcstc_size = sizeof(stacktracebuffer) +
+                    sizeof(stacktrace_entry) * stb->used;
+       gcstc = (stacktracecontainer *) builtin_newarray_byte(gcstc_size);
+
+       if (gcstc == NULL)
+               goto return_NULL;
+
+       gcstc->stb.capacity = stb->capacity;
+       gcstc->stb.used     = stb->used;
+       gcstc->stb.entries  = gcstc->data;
+
+       MCOPY(gcstc->data, stb->entries, stacktrace_entry, stb->used);
+
+       /* release dump memory */
+
+       dump_release(dumpsize);
+
+       CYCLES_STATS_END_WITH_OVERHEAD(stacktrace_fillInStackTrace,
+                                                                  stacktrace_overhead)
+       return gcstc;
+
+return_NULL:
+       dump_release(dumpsize);
+
+       CYCLES_STATS_END_WITH_OVERHEAD(stacktrace_fillInStackTrace,
+                                                                  stacktrace_overhead)
+
+       return NULL;
 }
 
 
@@ -1052,6 +1024,10 @@ stacktracebuffer *stacktrace_fillInStackTrace(void)
 
    Creates a Class context array.
 
+   RETURN VALUE:
+      the array of java.lang.Class objects, or
+         NULL if an exception has been thrown
+
 *******************************************************************************/
 
 java_objectarray *stacktrace_getClassContext(void)
@@ -1061,10 +1037,18 @@ java_objectarray *stacktrace_getClassContext(void)
        java_objectarray  *oa;
        s4                 oalength;
        s4                 i;
+       s4                 dumpsize;
+       CYCLES_STATS_DECLARE_AND_START
+
+       /* mark start of dump memory area */
+
+       dumpsize = dump_size();
 
        /* create a stacktrace for the current thread */
 
        stb = stacktrace_create(THREADOBJECT);
+       if (!stb)
+               goto return_NULL;
 
        /* calculate the size of the Class array */
 
@@ -1072,26 +1056,18 @@ java_objectarray *stacktrace_getClassContext(void)
                if (stb->entries[i].method != NULL)
                        oalength++;
 
+       /* The first entry corresponds to the method whose implementation */
+       /* calls stacktrace_getClassContext. We remove that entry.        */
+
        ste = &(stb->entries[0]);
        ste++;
        oalength--;
 
-       /* XXX document me */
-
-       if (oalength > 0) {
-               if (ste->method &&
-                       (ste->method->class == class_java_lang_SecurityManager)) {
-                       ste++;
-                       oalength--;
-               }
-       }
-
        /* allocate the Class array */
 
        oa = builtin_anewarray(oalength, class_java_lang_Class);
-
        if (!oa)
-               return NULL;
+               goto return_NULL;
 
        /* fill the Class array from the stacktracebuffer */
 
@@ -1104,80 +1080,128 @@ java_objectarray *stacktrace_getClassContext(void)
                oa->data[i] = (java_objectheader *) ste->method->class;
        }
 
+       /* release dump memory */
+
+       dump_release(dumpsize);
+
+       CYCLES_STATS_END(stacktrace_getClassContext)
+
        return oa;
+
+return_NULL:
+       dump_release(dumpsize);
+
+       CYCLES_STATS_END(stacktrace_getClassContext)
+
+       return NULL;
 }
 
 
-/* stacktrace_getCurrentClassLoader ********************************************
+/* stacktrace_getCurrentClass **************************************************
+
+   Find the current class by walking the stack trace.
 
-   Find the current class loader by walking the stack trace. The first
-   non-NULL (ie. non-bootstrap) class loader found -- starting with the
-   innermost activation record -- is returned. If no class loader is
-   found, NULL is returned.
+   Quote from the JNI documentation:
+        
+   In the Java 2 Platform, FindClass locates the class loader
+   associated with the current native method.  If the native code
+   belongs to a system class, no class loader will be
+   involved. Otherwise, the proper class loader will be invoked to
+   load and link the named class. When FindClass is called through the
+   Invocation Interface, there is no current native method or its
+   associated class loader. In that case, the result of
+   ClassLoader.getBaseClassLoader is used."
 
 *******************************************************************************/
 
-java_objectheader *stacktrace_getCurrentClassLoader(void)
+#if defined(ENABLE_JAVASE)
+classinfo *stacktrace_getCurrentClass(void)
 {
        stacktracebuffer  *stb;
        stacktrace_entry  *ste;
        methodinfo        *m;
-       java_objectheader *cl;
        s4                 i;
+       s4                 dumpsize;
+       CYCLES_STATS_DECLARE_AND_START
+
+       /* mark start of dump memory area */
 
-       cl = NULL;
+       dumpsize = dump_size();
 
        /* create a stacktrace for the current thread */
 
        stb = stacktrace_create(THREADOBJECT);
+       if (!stb)
+               goto return_NULL; /* XXX exception: how to distinguish from normal NULL return? */
 
        /* iterate over all stacktrace entries and find the first suitable
-          classloader */
+          class */
 
        for (i = 0, ste = &(stb->entries[0]); i < stb->used; i++, ste++) {
                m = ste->method;
 
-               if (!m)
+               if (m == NULL)
                        continue;
 
-               if (m->class == class_java_security_PrivilegedAction) {
-                       cl = NULL;
-                       break;
-               }
+               if (m->class == class_java_security_PrivilegedAction)
+                       goto return_NULL;
+
+               if (m->class != NULL) {
+                       dump_release(dumpsize);
 
-               if (m->class->classloader) {
-                       cl = m->class->classloader;
-                       break;
+                       CYCLES_STATS_END(stacktrace_getCurrentClass)
+
+                       return m->class;
                }
        }
 
-       /* return the classloader */
+       /* no Java method found on the stack */
+
+return_NULL:
+       dump_release(dumpsize);
+
+       CYCLES_STATS_END(stacktrace_getCurrentClass)
 
-       return cl;
+       return NULL;
 }
+#endif /* ENABLE_JAVASE */
 
 
 /* stacktrace_getStack *********************************************************
 
    Create a 2-dimensional array for java.security.VMAccessControler.
 
+   RETURN VALUE:
+      the arrary, or
+         NULL if an exception has been thrown
+
 *******************************************************************************/
 
+#if defined(ENABLE_JAVASE)
 java_objectarray *stacktrace_getStack(void)
 {
-       stacktracebuffer *stb;
-       stacktrace_entry *ste;
-       java_objectarray *oa;
-       java_objectarray *classes;
-       java_objectarray *methodnames;
-       classinfo        *c;
-       java_lang_String *str;
-       s4                i;
+       stacktracebuffer  *stb;
+       stacktrace_entry  *ste;
+       java_objectarray  *oa;
+       java_objectarray  *classes;
+       java_objectarray  *methodnames;
+       classinfo         *c;
+       java_objectheader *string;
+       s4                 i;
+       s4                 dumpsize;
+       CYCLES_STATS_DECLARE_AND_START
+
+       /* mark start of dump memory area */
+
+       dumpsize = dump_size();
 
        /* create a stacktrace for the current thread */
 
        stb = stacktrace_create(THREADOBJECT);
 
+       if (stb == NULL)
+               goto return_NULL;
+
        /* get the first stacktrace entry */
 
        ste = &(stb->entries[0]);
@@ -1186,18 +1210,18 @@ java_objectarray *stacktrace_getStack(void)
 
        oa = builtin_anewarray(2, arrayclass_java_lang_Object);
 
-       if (!oa)
-               return NULL;
+       if (oa == NULL)
+               goto return_NULL;
 
        classes = builtin_anewarray(stb->used, class_java_lang_Class);
 
-       if (!classes)
-               return NULL;
+       if (classes == NULL)
+               goto return_NULL;
 
        methodnames = builtin_anewarray(stb->used, class_java_lang_String);
 
-       if (!methodnames)
-               return NULL;
+       if (methodnames == NULL)
+               goto return_NULL;
 
        /* set up the 2-dimensional array */
 
@@ -1210,18 +1234,31 @@ java_objectarray *stacktrace_getStack(void)
                c = ste->method->class;
 
                classes->data[i] = (java_objectheader *) c;
-               str = javastring_new(ste->method->name);
 
-               if (!str)
-                       return NULL;
+               string = javastring_new(ste->method->name);
 
-               methodnames->data[i] = (java_objectheader *) str;
+               if (string == NULL)
+                       goto return_NULL;
+
+               methodnames->data[i] = string;
        }
 
        /* return the 2-dimensional array */
 
+       dump_release(dumpsize);
+
+       CYCLES_STATS_END(stacktrace_getStack)
+
        return oa;
+
+return_NULL:
+       dump_release(dumpsize);
+
+       CYCLES_STATS_END(stacktrace_getStack)
+
+       return NULL;
 }
+#endif /* ENABLE_JAVASE */
 
 
 /* stacktrace_print_trace_from_buffer ******************************************
@@ -1232,7 +1269,7 @@ java_objectarray *stacktrace_getStack(void)
 
 *******************************************************************************/
 
-static void stacktrace_print_trace_from_buffer(stacktracebuffer *stb)
+void stacktrace_print_trace_from_buffer(stacktracebuffer *stb)
 {
        stacktrace_entry *ste;
        methodinfo       *m;
@@ -1244,17 +1281,17 @@ static void stacktrace_print_trace_from_buffer(stacktracebuffer *stb)
                m = ste->method;
 
                printf("\tat ");
-               utf_display_classname(m->class->name);
+               utf_display_printable_ascii_classname(m->class->name);
                printf(".");
-               utf_display(m->name);
-               utf_display(m->descriptor);
+               utf_display_printable_ascii(m->name);
+               utf_display_printable_ascii(m->descriptor);
 
                if (m->flags & ACC_NATIVE) {
                        puts("(Native Method)");
 
                } else {
                        printf("(");
-                       utf_display(m->class->sourcefile);
+                       utf_display_printable_ascii(m->class->sourcefile);
                        printf(":%d)\n", (u4) ste->linenumber);
                }
        }
@@ -1272,45 +1309,29 @@ static void stacktrace_print_trace_from_buffer(stacktracebuffer *stb)
 
 *******************************************************************************/
 
-void stacktrace_dump_trace(void)
+void stacktrace_dump_trace(threadobject *thread)
 {
        stacktracebuffer *stb;
+       s4                dumpsize;
 
-#if 0
-       /* get methodinfo pointer from data segment */
-
-       m = *((methodinfo **) (pv + MethodPointer));
-
-       /* get current stackframe info pointer */
-
-       psfi = STACKFRAMEINFO;
-
-       /* fill new stackframe info structure */
-
-       sfi->prev   = *psfi;
-       sfi->method = NULL;
-       sfi->pv     = NULL;
-       sfi->sp     = sp;
-       sfi->ra     = ra;
-
-       /* store new stackframe info pointer */
+       /* mark start of dump memory area */
 
-       *psfi = sfi;
-#endif
+       dumpsize = dump_size();
 
        /* create a stacktrace for the current thread */
 
-       stb = stacktrace_create(THREADOBJECT);
+       stb = stacktrace_create(thread);
 
        /* print stacktrace */
 
-       if (stb) {
+       if (stb != NULL)
                stacktrace_print_trace_from_buffer(stb);
-
-       } else {
+       else {
                puts("\t<<No stacktrace available>>");
                fflush(stdout);
        }
+
+       dump_release(dumpsize);
 }
 
 
@@ -1324,7 +1345,10 @@ void stacktrace_dump_trace(void)
 void stacktrace_print_trace(java_objectheader *xptr)
 {
        java_lang_Throwable   *t;
+#if defined(WITH_CLASSPATH_GNU)
        java_lang_VMThrowable *vmt;
+#endif
+       stacktracecontainer   *stc;
        stacktracebuffer      *stb;
 
        t = (java_lang_Throwable *) xptr;
@@ -1334,13 +1358,31 @@ void stacktrace_print_trace(java_objectheader *xptr)
 
        /* now print the stacktrace */
 
+#if defined(WITH_CLASSPATH_GNU)
        vmt = t->vmState;
-       stb = (stacktracebuffer *) vmt->vmData;
+       stc = (stacktracecontainer *) vmt->vmData;
+       stb = &(stc->stb);
+#elif defined(WITH_CLASSPATH_CLDC1_1)
+       stc = (stacktracecontainer *) t->backtrace;
+       stb = &(stc->stb);
+#endif
 
        stacktrace_print_trace_from_buffer(stb);
 }
 
 
+#if defined(ENABLE_CYCLES_STATS)
+void stacktrace_print_cycles_stats(FILE *file)
+{
+       CYCLES_STATS_PRINT_OVERHEAD(stacktrace_overhead,file);
+       CYCLES_STATS_PRINT(stacktrace_fillInStackTrace,file);
+       CYCLES_STATS_PRINT(stacktrace_getClassContext ,file);
+       CYCLES_STATS_PRINT(stacktrace_getCurrentClass ,file);
+       CYCLES_STATS_PRINT(stacktrace_getStack        ,file);
+}
+#endif
+
+
 /*
  * These are local overrides for various environment variables in Emacs.
  * Please do not remove this and leave it at the end of the file, where