Define command line option variables.
[cacao.git] / loader.h
1 /* loader.h - class loader header
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: Reinhard Grafl
28
29    $Id: loader.h 724 2003-12-09 18:56:11Z edwin $
30 */
31
32
33 #ifndef _LOADER_H
34 #define _LOADER_H
35
36 #include <stdio.h>
37
38
39 /************************* program switches ***********************************/
40
41 extern bool loadverbose;         /* Print debug messages during loading */
42 extern bool linkverbose;
43 extern bool initverbose;         /* Log class initialization */ 
44 extern bool makeinitializations; /* Initialize classes automatically */
45
46 extern bool getloadingtime;
47 extern long int loadingtime;     /* CPU time for class loading */
48
49 extern list unlinkedclasses;     /* List containing all unlinked classes */
50 extern list linkedclasses;       /* List containing all linked classes */
51
52 #ifdef USE_THREADS
53 extern int blockInts;
54 #endif
55
56
57 /************************ prototypes ******************************************/
58
59 /* initialize laoder, load important systemclasses */
60 void loader_init();
61
62 void suck_init(char *cpath);
63
64 /* free resources */
65 void loader_close();
66
67 /* load a class and all referenced classes */
68 classinfo *loader_load(utf *topname);
69
70 /* initializes all loaded classes */
71 void loader_initclasses();
72
73 void loader_compute_subclasses();
74
75 /* retrieve constantpool element */
76 voidptr class_getconstant(classinfo *class, u4 pos, u4 ctype);
77
78 /* determine type of a constantpool element */
79 u4 class_constanttype(classinfo *class, u4 pos);
80
81 s4 class_findmethodIndex(classinfo *c, utf *name, utf *desc);
82
83 /* search class for a field */
84 fieldinfo *class_findfield(classinfo *c, utf *name, utf *desc);
85
86 /* search for a method with a specified name and descriptor */
87 methodinfo *class_findmethod(classinfo *c, utf *name, utf *desc);
88 methodinfo *class_fetchmethod(classinfo *c, utf *name, utf *desc);
89 methodinfo *class_resolvemethod(classinfo *c, utf *name, utf *dest);
90
91 /* search for a method with specified name and arguments (returntype ignored) */
92 methodinfo *class_findmethod_approx(classinfo *c, utf *name, utf *desc);
93 methodinfo *class_resolvemethod_approx(classinfo *c, utf *name, utf *dest);
94
95 bool class_issubclass(classinfo *sub, classinfo *super);
96
97 /* call initializer of class */
98 void class_init(classinfo *c);
99
100 void class_showconstanti(classinfo *c, int ii);
101
102 /* debug purposes */
103 void class_showmethods(classinfo *c);
104 void class_showconstantpool(classinfo *c);
105 void print_arraydescriptor(FILE *file, arraydescriptor *desc);
106
107 classinfo *loader_load(utf *topname);
108 classinfo *loader_load_sysclass(classinfo **top,utf *topname);
109
110 /* set buffer for reading classdata */
111 void classload_buffer(u1 *buf, int len);
112
113 /* return the primitive class inidicated by the given signature character */
114 classinfo *class_primitive_from_sig(char sig);
115
116
117 /* return the class indicated by the given descriptor */
118 /* (see loader.c for documentation) */
119 #define CLASSLOAD_NEW           0      /* default */
120 #define CLASSLOAD_LOAD          0x0001
121 #define CLASSLOAD_SKIP          0x0002
122 #define CLASSLOAD_PANIC         0      /* default */
123 #define CLASSLOAD_NOPANIC       0x0010
124 #define CLASSLOAD_PRIMITIVE     0      /* default */
125 #define CLASSLOAD_NULLPRIMITIVE 0x0020
126 #define CLASSLOAD_VOID          0      /* default */
127 #define CLASSLOAD_NOVOID        0x0040
128 #define CLASSLOAD_NOCHECKEND    0      /* default */
129 #define CLASSLOAD_CHECKEND      0x1000
130
131 classinfo *class_from_descriptor(char *utf_ptr,char *end_ptr,char **next,int mode);
132 int type_from_descriptor(classinfo **cls,char *utf_ptr,char *end_ptr,char **next,int mode);
133
134 /* (used by class_new, don't use directly) */
135 void class_new_array(classinfo *c);
136
137 void class_link(classinfo *c);
138
139 void field_display(fieldinfo *f);
140
141 void method_display(methodinfo *m);
142
143 utf* clinit_desc();
144 utf* clinit_name();
145
146 #endif /* _LOADER_H */
147
148
149 /*
150  * These are local overrides for various environment variables in Emacs.
151  * Please do not remove this and leave it at the end of the file, where
152  * Emacs will automagically detect them.
153  * ---------------------------------------------------------------------
154  * Local variables:
155  * mode: c
156  * indent-tabs-mode: t
157  * c-basic-offset: 4
158  * tab-width: 4
159  * End:
160  */