/* src/vm/jit/code.h - codeinfo struct for representing compiled code Copyright (C) 1996-2005, 2006 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. Contact: cacao@cacaojvm.org Authors: Edwin Steiner Christian Thalinger $Id$ */ #ifndef _CODE_H #define _CODE_H /* forward typedefs ***********************************************************/ typedef struct codeinfo codeinfo; #include "config.h" #include "vm/types.h" #include "vm/global.h" #include "vm/method.h" #include "vm/jit/replace.h" /* codeinfo ******************************************************************* A codeinfo represents a particular realization of a method in machine code. ATTENTION: The methodinfo entry in the code-structure MUST have the offset 0, otherwise we have a problem in our compiler stub. This is checked with an assert in code_init(). *******************************************************************************/ struct codeinfo { methodinfo *m; /* method this is a realization of */ codeinfo *prev; /* previous codeinfo of this method */ bool invalid; u1 optlevel; /* optimization level of this code */ s4 basicblockcount; /* number of basic blocks */ /* machine code */ u1 *mcode; /* pointer to machine code */ u1 *entrypoint; /* machine code entry point */ s4 mcodelength; /* length of generated machine code */ /* replacement */ rplpoint *rplpoints; /* replacement points */ rplalloc *regalloc; /* register allocation info */ s4 rplpointcount; /* number of replacement points */ s4 globalcount; /* number of global allocations */ s4 regalloccount; /* number of total allocations */ s4 memuse; /* number of arg + local slots */ s4 stackframesize; /* size of the stackframe in slots */ u1 savedintcount; /* number of callee saved int regs */ u1 savedfltcount; /* number of callee saved flt regs */ u4 frequency; /* number of method invocations */ u4 *bbfrequency; s8 cycles; /* number of cpu cycles */ }; /* function prototypes ********************************************************/ bool code_init(void); codeinfo *code_codeinfo_new(methodinfo *m); void code_codeinfo_free(codeinfo *code); int code_get_sync_slot_count(codeinfo *code); int code_get_stack_frame_size(codeinfo *code); void code_free_code_of_method(methodinfo *m); #endif /* _CODE_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: */