* Removed all Id tags.
[cacao.git] / src / vmcore / method.h
1 /* src/vmcore/method.h - method functions header
2
3    Copyright (C) 1996-2005, 2006, 2007 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 */
26
27
28 #ifndef _METHOD_H
29 #define _METHOD_H
30
31 /* forward typedefs ***********************************************************/
32
33 typedef struct methodinfo          methodinfo; 
34 typedef struct raw_exception_entry raw_exception_entry;
35 typedef struct lineinfo            lineinfo; 
36 typedef struct method_assumption   method_assumption;
37 typedef struct method_worklist     method_worklist;
38 typedef struct codeinfo            codeinfo;
39
40 #include "config.h"
41 #include "vm/types.h"
42
43 #include "vm/global.h"
44
45 #include "vmcore/descriptor.h"
46 #include "vmcore/references.h"
47 #include "vmcore/linker.h"
48 #include "vmcore/loader.h"
49
50 #if defined(ENABLE_JAVASE)
51 # include "vmcore/stackmap.h"
52 #endif
53
54 #include "vmcore/utf8.h"
55
56
57 #if defined(ENABLE_REPLACEMENT)
58 /* Initial value for the hit countdown field of each method. */
59 #define METHOD_INITIAL_HIT_COUNTDOWN  1000
60 #endif
61
62
63 /* methodinfo *****************************************************************/
64
65 struct methodinfo {                 /* method structure                       */
66         java_object_t header;           /* we need this in jit's monitorenter     */
67         s4            flags;            /* ACC flags                              */
68         utf          *name;             /* name of method                         */
69         utf          *descriptor;       /* JavaVM descriptor string of method     */
70 #if defined(ENABLE_JAVASE)
71         utf          *signature;        /* Signature attribute                    */
72         stack_map_t  *stack_map;        /* StackMapTable attribute                */
73 #endif
74
75         methoddesc   *parseddesc;       /* parsed descriptor                      */
76                              
77         classinfo    *class;            /* class, the method belongs to           */
78         s4            vftblindex;       /* index of method in virtual function    */
79                                         /* table (if it is a virtual method)      */
80         s4            maxstack;         /* maximum stack depth of method          */
81         s4            maxlocals;        /* maximum number of local variables      */
82         s4            jcodelength;      /* length of JavaVM code                  */
83         u1           *jcode;            /* pointer to JavaVM code                 */
84
85         s4            rawexceptiontablelength;  /* exceptiontable length          */
86         raw_exception_entry *rawexceptiontable; /* the exceptiontable             */
87
88         u2            thrownexceptionscount; /* number of exceptions attribute    */
89         classref_or_classinfo *thrownexceptions; /* except. a method may throw    */
90
91         u2            linenumbercount;  /* number of linenumber attributes        */
92         lineinfo     *linenumbers;      /* array of lineinfo items                */
93
94         u1           *stubroutine;      /* stub for compiling or calling natives  */
95         codeinfo     *code;             /* current code of this method            */
96
97 #if defined(ENABLE_LSRA)
98         s4            maxlifetimes;     /* helper for lsra                        */
99 #endif
100
101         methodinfo   *overwrites;       /* method that is directly overwritten    */
102         method_assumption *assumptions; /* list of assumptions about this method  */
103
104 #if defined(ENABLE_REPLACEMENT)
105         s4            hitcountdown;     /* decreased for each hit                 */
106 #endif
107
108 #if defined(ENABLE_DEBUG_FILTER)
109         u1            filtermatches;    /* flags indicating which filters the method matches */
110 #endif
111 };
112
113
114 /* method_assumption ***********************************************************
115
116    This struct is used for registering assumptions about methods.
117
118 *******************************************************************************/
119
120 struct method_assumption {
121         method_assumption *next;
122         methodinfo        *context;
123 };
124
125
126 /* method_worklist *************************************************************
127
128    List node used for method worklists.
129
130 *******************************************************************************/
131
132 struct method_worklist {
133         method_worklist *next;
134         methodinfo      *m;
135 };
136
137
138 /* raw_exception_entry ********************************************************/
139
140 /* exception table entry read by the loader */
141
142 struct raw_exception_entry {    /* exceptiontable entry in a method           */
143         classref_or_classinfo catchtype; /* catchtype of exc. (0 == catchall)     */
144         u2              startpc;    /* start pc of guarded area (inclusive)       */
145         u2              endpc;      /* end pc of guarded area (exklusive)         */
146         u2              handlerpc;  /* pc of exception handler                    */
147 };
148
149
150 /* lineinfo *******************************************************************/
151
152 struct lineinfo {
153         u2 start_pc;
154         u2 line_number;
155 };
156
157
158 /* function prototypes ********************************************************/
159
160 bool method_load(classbuffer *cb, methodinfo *m, descriptor_pool *descpool);
161 void method_free(methodinfo *m);
162 bool method_canoverwrite(methodinfo *m, methodinfo *old);
163
164 methodinfo *method_vftbl_lookup(vftbl_t *vftbl, methodinfo* m);
165
166 int32_t                    method_get_parametercount(methodinfo *m);
167 java_handle_objectarray_t *method_get_parametertypearray(methodinfo *m);
168 java_handle_objectarray_t *method_get_exceptionarray(methodinfo *m);
169 classinfo                 *method_returntype_get(methodinfo *m);
170
171 void method_add_assumption_monomorphic(methodinfo *m, methodinfo *caller);
172 void method_break_assumption_monomorphic(methodinfo *m, method_worklist **wl);
173
174 s4   method_count_implementations(methodinfo *m, classinfo *c, methodinfo **found);
175
176 java_handle_bytearray_t *method_get_annotations(methodinfo *m);
177 java_handle_bytearray_t *method_get_parameterannotations(methodinfo *m);
178 java_handle_bytearray_t *method_get_annotationdefault(methodinfo *m);
179
180 #if !defined(NDEBUG)
181 void method_printflags(methodinfo *m);
182 void method_print(methodinfo *m);
183 void method_println(methodinfo *m);
184 void method_methodref_print(constant_FMIref *mr);
185 void method_methodref_println(constant_FMIref *mr);
186 #endif
187
188 #endif /* _METHOD_H */
189
190
191 /*
192  * These are local overrides for various environment variables in Emacs.
193  * Please do not remove this and leave it at the end of the file, where
194  * Emacs will automagically detect them.
195  * ---------------------------------------------------------------------
196  * Local variables:
197  * mode: c
198  * indent-tabs-mode: t
199  * c-basic-offset: 4
200  * tab-width: 4
201  * End:
202  * vim:noexpandtab:sw=4:ts=4:
203  */