* src/vm/method.h (methodinfo): Removed isleafmethod, frequency,
[cacao.git] / src / vm / jit / code.h
1 /* src/vm/jit/code.h - codeinfo struct for representing compiled code
2
3    Copyright (C) 1996-2005, 2006 R. Grafl, A. Krall, C. Kruegel,
4    C. Oates, R. Obermaisser, M. Platter, M. Probst, S. Ring,
5    E. Steiner, C. Thalinger, D. Thuernbeck, P. Tomsich, C. Ullrich,
6    J. Wenninger, Institut f. Computersprachen - TU Wien
7
8    This file is part of CACAO.
9
10    This program is free software; you can redistribute it and/or
11    modify it under the terms of the GNU General Public License as
12    published by the Free Software Foundation; either version 2, or (at
13    your option) any later version.
14
15    This program is distributed in the hope that it will be useful, but
16    WITHOUT ANY WARRANTY; without even the implied warranty of
17    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18    General Public License for more details.
19
20    You should have received a copy of the GNU General Public License
21    along with this program; if not, write to the Free Software
22    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
23    02110-1301, USA.
24
25    Contact: cacao@cacaojvm.org
26
27    Authors: Edwin Steiner
28
29    Changes: Christian Thalinger
30
31    $Id$
32
33 */
34
35
36 #ifndef _CODE_H
37 #define _CODE_H
38
39 /* forward typedefs ***********************************************************/
40
41 typedef struct codeinfo codeinfo;
42
43 #include "config.h"
44 #include "vm/types.h"
45
46 #include "vm/method.h"
47 #include "vm/jit/replace.h"
48
49
50 /* codeinfo *******************************************************************
51
52    A codeinfo represents a particular realization of a method in
53    machine code.
54
55 *******************************************************************************/
56
57 struct codeinfo {
58         methodinfo   *m;                    /* method this is a realization of    */
59         codeinfo     *prev;                 /* previous codeinfo of this method   */
60
61         u1            optlevel;             /* optimization level of this code    */
62
63         s4            basicblockcount;      /* number of basic blocks             */
64         basicblock   *basicblocks;          /* points to basic block array        */
65
66         /* machine code */
67         u1           *mcode;                /* pointer to machine code            */
68         u1           *entrypoint;           /* machine code entry point           */
69         s4            mcodelength;          /* length of generated machine code   */
70         bool          isleafmethod;         /* does method call subroutines       */
71
72         /* replacement */                                   
73         rplpoint     *rplpoints;            /* replacement points                 */
74         rplalloc     *regalloc;             /* register allocation info           */
75         s4            rplpointcount;        /* number of replacement points       */
76         s4            globalcount;          /* number of global allocations       */
77         s4            regalloccount;        /* number of total allocations        */
78         s4            memuse;               /* number of arg + local slots        */
79         u1            savedintcount;        /* number of callee saved int regs    */
80         u1            savedfltcount;        /* number of callee saved flt regs    */
81
82         u4            frequency;            /* number of method invocations       */
83         u4           *bbfrequency;                  
84         s8            cycles;               /* number of cpu cycles               */
85 };
86
87
88 /* function prototypes ********************************************************/
89
90 codeinfo *code_codeinfo_new(methodinfo *m);
91 void code_codeinfo_free(codeinfo *code);
92
93 int code_get_sync_slot_count(codeinfo *code);
94 int code_get_stack_frame_size(codeinfo *code);
95
96 void code_free_code_of_method(methodinfo *m);
97
98 #endif /* _CODE_H */
99
100
101 /*
102  * These are local overrides for various environment variables in Emacs.
103  * Please do not remove this and leave it at the end of the file, where
104  * Emacs will automagically detect them.
105  * ---------------------------------------------------------------------
106  * Local variables:
107  * mode: c
108  * indent-tabs-mode: t
109  * c-basic-offset: 4
110  * tab-width: 4
111  * End:
112  * vim:noexpandtab:sw=4:ts=4:
113  */