* src/vm/jit/jit.c (jit_compile_intern) [ENABLE_REPLACEMENT]: Activate
[cacao.git] / src / vmcore / options.h
1 /* src/vmcore/options.h - define global options extern
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 _OPTIONS_H
29 #define _OPTIONS_H
30
31
32 #include "config.h"
33
34 #include <stdint.h>
35
36 #include "vm/types.h"
37
38 #include "native/jni.h"
39
40 #include "vm/global.h"
41
42
43 /* reserved option numbers ****************************************************/
44
45 /* define these negative since the other options are an enum */
46
47 #define OPT_DONE       -1
48 #define OPT_ERROR      -2
49 #define OPT_IGNORE     -3
50
51
52 typedef struct opt_struct opt_struct;
53
54 struct opt_struct {
55         char *name;
56         bool  arg;
57         int   value;
58 };
59
60
61 typedef struct option_t option_t;
62
63 struct option_t {
64         char *name;
65         int   value;
66         int   type;
67         char *doc;
68 };
69
70
71 /* global variables ***********************************************************/
72
73 extern s4    opt_index;
74 extern char *opt_arg;
75
76 extern bool opt_foo;
77
78 extern bool opt_jit;
79 extern bool opt_intrp;
80
81 extern bool opt_jar;
82 extern bool opt_run;
83
84 extern s4   opt_heapmaxsize;
85 extern s4   opt_heapstartsize;
86 extern s4   opt_stacksize;
87
88 extern bool opt_verbose;
89 extern bool opt_debugcolor;
90 extern bool compileall;
91
92 extern bool loadverbose;         /* Print debug messages during loading */
93 extern bool initverbose;         /* Log class initialization */ 
94
95 extern bool opt_verboseclass;
96 extern bool opt_verbosegc;
97 extern bool opt_verbosejni;
98 extern bool opt_verbosecall;
99 extern bool opt_verbosethreads;
100
101 extern bool showmethods;
102 extern bool showconstantpool;
103 extern bool showutf;
104
105 extern char *opt_method;
106 extern char *opt_signature;
107
108 extern bool compileverbose;
109 extern bool showstack;
110
111 extern bool opt_showdisassemble;
112 extern bool opt_shownops;
113 extern bool opt_showddatasegment;
114 extern bool opt_showintermediate;
115
116 extern bool checkbounds;
117 extern bool opt_noieee;
118 extern bool checksync;
119 #if defined(ENABLE_LOOP)
120 extern bool opt_loops;
121 #endif
122
123 extern bool makeinitializations;
124
125 #if defined(ENABLE_STATISTICS)
126 extern bool opt_stat;
127 extern bool opt_getloadingtime;
128 extern bool opt_getcompilingtime;
129 #endif
130 #if defined(ENABLE_VERIFIER)
131 extern bool opt_verify;
132 #endif
133
134 #if defined(ENABLE_PROFILING)
135 extern bool opt_prof;
136 extern bool opt_prof_bb;
137 #endif
138
139 /* inlining options ***********************************************************/
140
141 #if defined(ENABLE_INLINING)
142 extern bool opt_inlining;
143 #if defined(ENABLE_INLINING_DEBUG) || !defined(NDEBUG)
144 extern s4 opt_inline_debug_min_size;
145 extern s4 opt_inline_debug_max_size;
146 extern s4 opt_inline_debug_end_counter;
147 extern bool opt_inline_debug_all;
148 #endif /* defined(ENABLE_INLINING_DEBUG) || !defined(NDEBUG) */
149 #if !defined(NDEBUG)
150 extern bool opt_inline_debug_log;
151 #endif /* !defined(NDEBUG) */
152 #endif /* defined(ENABLE_INLINING) */
153
154
155 /* optimization options *******************************************************/
156
157 #if defined(ENABLE_IFCONV)
158 extern bool opt_ifconv;
159 #endif
160
161 #if defined(ENABLE_LSRA) || defined(ENABLE_SSA)
162 extern bool opt_lsra;
163 #endif
164
165
166 /* interpreter options ********************************************************/
167
168 #if defined(ENABLE_INTRP)
169 extern bool opt_no_dynamic;
170 extern bool opt_no_replication;
171 extern bool opt_no_quicksuper;
172
173 extern s4   opt_static_supers;
174 extern bool vm_debug;
175 #endif
176
177 /* debug output filtering options *********************************************/
178
179 #if defined(ENABLE_DEBUG_FILTER)
180 extern const char *opt_filter_verbosecall_include;
181 extern const char *opt_filter_verbosecall_exclude;
182 extern const char *opt_filter_show_method;
183 #endif
184
185
186 /* -XX options ****************************************************************/
187
188 /* NOTE: For better readability keep these alpha-sorted. */
189
190 extern int      opt_DebugExceptions;
191 extern int      opt_DebugLocks;
192 extern int      opt_DebugPatcher;
193 extern int      opt_DebugPackage;
194 extern int      opt_DebugProperties;
195 extern int32_t  opt_DebugStackFrameInfo;
196 extern int      opt_DebugStackTrace;
197 #if defined(ENABLE_DISASSEMBLER)
198 extern int      opt_DisassembleStubs;
199 #endif
200 #if defined(ENABLE_GC_CACAO)
201 extern int32_t  opt_GCDebugRootSet;
202 extern int32_t  opt_GCStress;
203 #endif
204 extern int32_t  opt_MaxPermSize;
205 extern int32_t  opt_PermSize;
206 extern int      opt_PrintConfig;
207 extern int32_t  opt_ProfileGCMemoryUsage;
208 extern int32_t  opt_ProfileMemoryUsage;
209 extern FILE    *opt_ProfileMemoryUsageGNUPlot;
210 #if defined(ENABLE_REPLACEMENT)
211 extern int      opt_TestReplacement;
212 #endif
213 extern int32_t  opt_ThreadStackSize;
214 extern int32_t  opt_TraceExceptions;
215 extern int32_t  opt_TraceJavaCalls;
216 extern int32_t  opt_TraceJNICalls;
217 extern int32_t  opt_TraceJVMCalls;
218 extern int32_t  opt_TraceLinkClass;
219 #if defined(ENABLE_REPLACEMENT)
220 extern int32_t  opt_TraceReplacement;
221 #endif
222
223
224 /* function prototypes ********************************************************/
225
226 s4   options_get(opt_struct *opts, JavaVMInitArgs *vm_args);
227 void options_xx(JavaVMInitArgs *vm_args);
228
229 #endif /* _OPTIONS_H */
230
231
232 /*
233  * These are local overrides for various environment variables in Emacs.
234  * Please do not remove this and leave it at the end of the file, where
235  * Emacs will automagically detect them.
236  * ---------------------------------------------------------------------
237  * Local variables:
238  * mode: c
239  * indent-tabs-mode: t
240  * c-basic-offset: 4
241  * tab-width: 4
242  * End:
243  */