* Merged in twisti-branch.
[cacao.git] / src / vmcore / options.c
1 /* src/vmcore/options.c - contains global options
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    $Id: options.c 7585 2007-03-28 01:24:56Z twisti $
26
27 */
28
29
30 #include "config.h"
31
32 #include <string.h>
33 #include <limits.h>
34
35 #include "vm/types.h"
36
37 #include "mm/memory.h"
38 #include "native/jni.h"
39 #include "vmcore/options.h"
40
41
42 /* command line option ********************************************************/
43
44 s4    opt_index = 0;            /* index of processed arguments               */
45 char *opt_arg;                  /* this one exports the option argument       */
46
47 bool opt_foo = false;           /* option for development                     */
48
49 bool opt_jar = false;
50
51 #if defined(ENABLE_JIT)
52 bool opt_jit = true;            /* JIT mode execution (default)               */
53 bool opt_intrp = false;         /* interpreter mode execution                 */
54 #else
55 bool opt_jit = false;           /* JIT mode execution                         */
56 bool opt_intrp = true;          /* interpreter mode execution (default)       */
57 #endif
58
59 bool opt_run = true;
60
61 s4   opt_heapmaxsize   = 0;     /* maximum heap size                          */
62 s4   opt_heapstartsize = 0;     /* initial heap size                          */
63 s4   opt_stacksize     = 0;     /* thread stack size                          */
64
65 bool opt_verbose = false;
66 bool opt_debugcolor = false;    /* use ANSI terminal sequences                */
67 bool compileall = false;
68
69 bool loadverbose = false;
70 bool linkverbose = false;
71 bool initverbose = false;
72
73 bool opt_verboseclass     = false;
74 bool opt_verbosegc        = false;
75 bool opt_verbosejni       = false;
76 bool opt_verbosecall      = false;      /* trace all method invocation        */
77 bool opt_verboseexception = false;
78 bool opt_verbosememory    = false;
79
80 bool showmethods = false;
81 bool showconstantpool = false;
82 bool showutf = false;
83
84 char *opt_method = NULL;
85 char *opt_signature = NULL;
86
87 bool compileverbose =  false;           /* trace compiler actions             */
88 bool showstack = false;
89
90 bool opt_showdisassemble    = false;    /* generate disassembler listing      */
91 bool opt_shownops           = false;
92 bool opt_showddatasegment   = false;    /* generate data segment listing      */
93 bool opt_showintermediate   = false;    /* generate intermediate code listing */
94 bool opt_showexceptionstubs = false;
95 bool opt_shownativestub     = false;
96
97 bool checkbounds = true;       /* check array bounds                         */
98 bool opt_noieee = false;       /* don't implement ieee compliant floats      */
99 bool checksync = true;         /* do synchronization                         */
100 #if defined(ENABLE_LOOP)
101 bool opt_loops = false;        /* optimize array accesses in loops           */
102 #endif
103
104 bool makeinitializations = true;
105
106 #if defined(ENABLE_STATISTICS)
107 bool opt_stat    = false;
108 bool opt_getloadingtime = false;   /* to measure the runtime                 */
109 bool opt_getcompilingtime = false; /* compute compile time                   */
110 #endif
111 #if defined(ENABLE_VERIFIER)
112 bool opt_verify  = true;       /* true if classfiles should be verified      */
113 #endif
114 bool opt_eager   = false;
115
116 #if defined(ENABLE_PROFILING)
117 bool opt_prof    = false;
118 bool opt_prof_bb = false;
119 #endif
120
121
122 /* inlining options ***********************************************************/
123
124 #if defined(ENABLE_INLINING)
125 bool opt_inlining = false;
126 #if defined(ENABLE_INLINING_DEBUG) || !defined(NDEBUG)
127 s4 opt_replace_verbose = 0;
128 s4 opt_inline_debug_min_size = 0;
129 s4 opt_inline_debug_max_size = INT_MAX;
130 s4 opt_inline_debug_end_counter = INT_MAX;
131 bool opt_inline_debug_all = false;
132 #endif /* defined(ENABLE_INLINING_DEBUG) || !defined(NDEBUG) */
133 #if !defined(NDEBUG)
134 bool opt_inline_debug_log = false;
135 #endif /* !defined(NDEBUG) */
136 #endif /* defined(ENABLE_INLINING) */
137
138
139 /* optimization options *******************************************************/
140
141 #if defined(ENABLE_IFCONV)
142 bool opt_ifconv = false;
143 #endif
144
145 #if defined(ENABLE_LSRA) || defined(ENABLE_SSA)
146 bool opt_lsra = false;
147 #endif
148
149
150 /* interpreter options ********************************************************/
151
152 #if defined(ENABLE_INTRP)
153 bool opt_no_dynamic = false;            /* suppress dynamic superinstructions */
154 bool opt_no_replication = false;        /* don't use replication in intrp     */
155 bool opt_no_quicksuper = false;         /* instructions for quickening cannot be
156                                                                                    part of dynamic superinstructions */
157
158 s4   opt_static_supers = 0x7fffffff;
159 bool vm_debug = false;          /* XXX this should be called `opt_trace'      */
160 #endif
161
162
163 /* options_get *****************************************************************
164
165    DOCUMENT ME!!!
166
167 *******************************************************************************/
168
169 s4 options_get(opt_struct *opts, JavaVMInitArgs *vm_args)
170 {
171         char *option;
172         s4    i;
173
174         if (opt_index >= vm_args->nOptions)
175                 return OPT_DONE;
176
177         /* get the current option */
178
179         option = vm_args->options[opt_index].optionString;
180
181         if ((option == NULL) || (option[0] != '-'))
182                 return OPT_DONE;
183
184         for (i = 0; opts[i].name; i++) {
185                 if (!opts[i].arg) {
186                         /* boolean option found */
187
188                         if (strcmp(option + 1, opts[i].name) == 0) {
189                                 opt_index++;
190                                 return opts[i].value;
191                         }
192
193                 } else {
194                         /* parameter option found */
195
196                         /* with a space between */
197
198                         if (strcmp(option + 1, opts[i].name) == 0) {
199                                 opt_index++;
200
201                                 if (opt_index < vm_args->nOptions) {
202                                         opt_arg = strdup(vm_args->options[opt_index].optionString);
203                                         opt_index++;
204                                         return opts[i].value;
205                                 }
206
207                                 return OPT_ERROR;
208
209                         } else {
210                                 /* parameter and option have no space between */
211
212                                 /* FIXME: this assumption is plain wrong, hits you if there is a
213                                  * parameter with no argument starting with same letter as param with argument
214                                  * but named after that one, ouch! */
215
216                                 size_t l = strlen(opts[i].name);
217
218                                 if (strlen(option + 1) > l) {
219                                         if (memcmp(option + 1, opts[i].name, l) == 0) {
220                                                 opt_index++;
221                                                 opt_arg = strdup(option + 1 + l);
222                                                 return opts[i].value;
223                                         }
224                                 }
225                         }
226                 }
227         }
228
229         return OPT_ERROR;
230 }
231
232
233 /*
234  * These are local overrides for various environment variables in Emacs.
235  * Please do not remove this and leave it at the end of the file, where
236  * Emacs will automagically detect them.
237  * ---------------------------------------------------------------------
238  * Local variables:
239  * mode: c
240  * indent-tabs-mode: t
241  * c-basic-offset: 4
242  * tab-width: 4
243  * End:
244  */