/* src/vm/jit/stacktrace.h - header file for stacktrace generation 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. 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. 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. 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #ifndef _STACKTRACE_H #define _STACKTRACE_H /* forward typedefs ***********************************************************/ typedef struct stackframeinfo_t stackframeinfo_t; typedef struct stacktracebuffer stacktracebuffer; typedef struct stacktrace_entry stacktrace_entry; #include "config.h" #include #include "vm/types.h" #include "md-abi.h" #include "vmcore/class.h" #include "vmcore/method.h" /* stackframeinfo ************************************************************** ATTENTION: Keep the number of elements of this structure even, to make sure that the stack keeps aligned (e.g. 16-bytes for x86_64). *******************************************************************************/ struct stackframeinfo_t { stackframeinfo_t *prev; /* pointer to prev stackframeinfo */ codeinfo *code; /* codeinfo of current method */ u1 *pv; /* PV of current function */ u1 *sp; /* SP of parent Java function */ u1 *ra; /* RA to parent Java function */ u1 *xpc; /* XPC (for inline stubs) */ #if defined(ENABLE_GC_CACAO) /* * The exact GC needs to be able to recover saved registers, so the * native-stub saves these registers here */ # if defined(HAS_ADDRESS_REGISTER_FILE) uintptr_t adrregs[ADR_SAV_CNT]; # else uintptr_t intregs[INT_SAV_CNT]; # endif #endif }; /* stacktrace_entry ***********************************************************/ struct stacktrace_entry { #if SIZEOF_VOID_P == 8 u8 linenumber; #else u4 linenumber; #endif methodinfo *method; }; /* stacktracebuffer ***********************************************************/ #define STACKTRACE_CAPACITY_DEFAULT 80 #define STACKTRACE_CAPACITY_INCREMENT 80 struct stacktracebuffer { s4 capacity; /* size of the buffer */ s4 used; /* current entries in the buffer */ stacktrace_entry entries[80]; /* the actual entries */ }; /* function prototypes ********************************************************/ void stacktrace_stackframeinfo_add(stackframeinfo_t *sfi, u1 *pv, u1 *sp, u1 *ra, u1 *xpc); void stacktrace_stackframeinfo_remove(stackframeinfo_t *sfi); stacktracebuffer *stacktrace_create(stackframeinfo_t *sfi); java_handle_bytearray_t *stacktrace_fillInStackTrace(void); #if defined(ENABLE_JAVASE) java_handle_objectarray_t *stacktrace_getClassContext(void); classinfo *stacktrace_getCurrentClass(void); java_handle_objectarray_t *stacktrace_getStack(void); #endif void stacktrace_print_trace_from_buffer(stacktracebuffer *stb); void stacktrace_print_trace(java_handle_t *xptr); /* machine dependent functions (code in ARCH_DIR/md.c) */ #if defined(ENABLE_JIT) u1 *md_stacktrace_get_returnaddress(u1 *sp, u4 framesize); # if defined(__SPARC_64__) u1 *md_get_framepointer(u1 *sp); u1 *md_get_pv_from_stackframe(u1 *sp); # endif #endif #if defined(ENABLE_INTRP) u1 *intrp_md_stacktrace_get_returnaddress(u1 *sp, u4 framesize); #endif #if defined(ENABLE_CYCLES_STATS) void stacktrace_print_cycles_stats(FILE *file); #endif #endif /* _STACKTRACE_H */ /* * 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 * Emacs will automagically detect them. * --------------------------------------------------------------------- * Local variables: * mode: c * indent-tabs-mode: t * c-basic-offset: 4 * tab-width: 4 * End: * vim:noexpandtab:sw=4:ts=4: */