Include options.h/statistics.h.
[cacao.git] / jit / inline.h
1 /* jit/inline.c - code inliner
2
3    Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
4    R. Grafl, A. Krall, C. Kruegel, C. Oates, R. Obermaisser,
5    M. Probst, S. Ring, E. Steiner, C. Thalinger, D. Thuernbeck,
6    P. Tomsich, J. Wenninger
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., 59 Temple Place - Suite 330, Boston, MA
23    02111-1307, USA.
24
25    Contact: cacao@complang.tuwien.ac.at
26
27    Authors: Dieter Thuernbeck
28
29    $Id: inline.h 1203 2004-06-22 23:14:55Z twisti $
30
31 */
32
33
34 #ifndef _INLINE_H
35 #define _INLINE_H
36
37 #include "global.h"
38 #include "toolbox/list.h"
39
40 #define INLINING_MAXDEPTH       1
41 #define INLINING_MAXCODESIZE    32
42 #define INLINING_MAXMETHODS     8
43
44
45 /*typedef struct {
46         listnode linkage;
47         instruction *iptr;
48         } t_patchlistnode;*/
49
50
51 typedef struct {
52     listnode linkage;
53
54     methodinfo *method;
55     int startgp;
56     int stopgp;
57     int firstlocal;
58
59     bool *readonly;
60     int  *label_index;
61         
62     list *inlinedmethods;
63 } inlining_methodinfo;
64
65
66 typedef struct {
67     listnode linkage;
68         
69     // saved static compiler variables
70         
71     methodinfo *method;
72         
73     // restored through method
74
75     // int jcodelength;
76     // u1 *jcode;
77     // classinfo *class;
78
79     // descriptor never used
80     // maxstack used outside of main for loop
81     // maxlocals never used
82         
83     // exceptiontablelength
84     // raw_extable used outside of main for loop
85     // mreturntype used outside of main for loop
86     // mparamcount used outside of main for loop
87     // mparamtypes used outside of main for loop
88
89     //local variables used in parse()  
90
91     int  i;                     /* temporary for different uses (counters)    */
92     int  p;                     /* java instruction counter                   */
93     int  nextp;                 /* start of next java instruction             */
94     int  opcode;                /* java opcode                                */
95
96     inlining_methodinfo *inlinfo;
97
98     /*  list *patchlist; */
99 } t_inlining_stacknode;
100
101
102 /* extern variables */
103 extern bool isinlinedmethod;
104 extern int cumjcodelength;
105 extern int cummaxstack;
106 extern int cumextablelength;
107 extern inlining_methodinfo *inlining_rootinfo;
108
109
110 /* function prototypes*/
111 void inlining_init(methodinfo *m);
112 void inlining_cleanup();
113 void inlining_push_compiler_variables(methodinfo *m,
114                                                                           int i, int p, int nextp, int opcode, 
115                                       inlining_methodinfo* inlinfo);
116 void inlining_pop_compiler_variables(methodinfo *m,
117                                                                          int *i, int *p, int *nextp, int *opcode, 
118                                      inlining_methodinfo** inlinfo); 
119 void inlining_set_compiler_variables_fun(methodinfo *m);
120 classinfo *first_occurence(classinfo* class, utf* name, utf* desc);
121 bool is_unique_rec(classinfo *class, methodinfo *m, utf* name, utf* desc);
122 bool is_unique_method(classinfo *class, methodinfo *m, utf* name, utf* desc);
123 inlining_methodinfo *inlining_analyse_method(methodinfo *m, int level, int gp,
124                                              int firstlocal, int maxstackdepth);
125
126
127 #define inlining_save_compiler_variables() \
128     inlining_push_compiler_variables(m, i, p, nextp, opcode, inlinfo)
129
130 #define inlining_restore_compiler_variables() \
131     inlining_pop_compiler_variables(m, &i, &p, &nextp, &opcode, &inlinfo)
132
133 #define inlining_set_compiler_variables(i) \
134     do { \
135         p = nextp = 0; \
136         inlining_set_compiler_variables_fun(i->method); \
137         inlinfo = i; \
138     } while (0)
139
140 #endif /* _INLINE_H */
141
142 /*
143  * These are local overrides for various environment variables in Emacs.
144  * Please do not remove this and leave it at the end of the file, where
145  * Emacs will automagically detect them.
146  * ---------------------------------------------------------------------
147  * Local variables:
148  * mode: c
149  * indent-tabs-mode: t
150  * c-basic-offset: 4
151  * tab-width: 4
152  * End:
153  */