e27dc5de0d57a77497b98acd0754b6d7d1fbe145
[cacao.git] / src / vm / options.c
1 /* src/vm/options.c - contains global options
2
3    Copyright (C) 1996-2005 R. Grafl, A. Krall, C. Kruegel, C. Oates,
4    R. Obermaisser, M. Platter, M. Probst, S. Ring, E. Steiner,
5    C. Thalinger, D. Thuernbeck, P. Tomsich, C. Ullrich, J. Wenninger,
6    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., 59 Temple Place - Suite 330, Boston, MA
23    02111-1307, USA.
24
25    Contact: cacao@complang.tuwien.ac.at
26
27    Authors: Christian Thalinger
28
29    Changes:
30
31    $Id: options.c 4312 2006-01-19 22:06:58Z edwin $
32
33 */
34
35
36 #include <string.h>
37
38 #include "config.h"
39 #include "vm/types.h"
40
41 #include "vm/options.h"
42
43
44 /* command line option ********************************************************/
45
46 s4   opt_ind = 1;               /* index of processed arguments               */
47 char *opt_arg;                  /* this one exports the option argument       */
48
49 #if defined(ENABLE_JIT)
50 bool opt_jit = true;            /* JIT mode execution (default)               */
51 bool opt_intrp = false;         /* interpreter mode execution                 */
52 #else
53 bool opt_jit = false;           /* JIT mode execution                         */
54 bool opt_intrp = true;          /* interpreter mode execution (default)       */
55 #endif
56
57 s4   opt_stacksize = 0;         /* thread stack size                          */
58
59 bool opt_verbose = false;
60 bool compileall = false;
61 bool runverbose = false;        /* trace all method invocation                */
62 bool opt_verboseexception = false;
63
64 bool loadverbose = false;
65 bool linkverbose = false;
66 bool initverbose = false;
67
68 bool opt_verboseclass = false;
69 bool opt_verbosegc = false;
70 bool opt_verbosejni = false;
71
72 bool opt_rt = false;           /* true if RTA parse should be used     RT-CO  */
73 bool opt_xta = false;          /* true if XTA parse should be used    XTA-CO  */
74 bool opt_vta = false;          /* true if VTA parse should be used    VTA-CO  */
75
76 bool opt_liberalutf = false;   /* Don't check overlong UTF-8 sequences        */
77
78 bool showmethods = false;
79 bool showconstantpool = false;
80 bool showutf = false;
81
82 bool compileverbose =  false;           /* trace compiler actions             */
83 bool showstack = false;
84 bool opt_showdisassemble = false;       /* generate disassembler listing      */
85 bool opt_showddatasegment = false;      /* generate data segment listing      */
86 bool opt_showintermediate = false;      /* generate intermediate code listing */
87 bool opt_showexceptionstubs = false;
88 bool opt_shownativestub = false;
89
90 bool useinlining = false;      /* use method inlining                        */
91 bool inlinevirtuals = false;   /* inline unique virtual methods              */
92 bool inlineexceptions = false; /* inline methods, that contain excptions     */
93 bool inlineparamopt = false;   /* optimize parameter passing to inlined methods */
94 bool inlineoutsiders = false;  /* inline methods, that are not member of the invoker's class */
95
96 bool checkbounds = true;       /* check array bounds                         */
97 bool checknull = true;         /* check null pointers                        */
98 bool opt_noieee = false;       /* don't implement ieee compliant floats      */
99 bool checksync = true;         /* do synchronization                         */
100 bool opt_loops = false;        /* optimize array accesses in loops           */
101
102 bool makeinitializations = true;
103
104 bool getloadingtime = false;   /* to measure the runtime                     */
105 bool getcompilingtime = false; /* compute compile time                       */
106
107 int has_ext_instr_set = 0;     /* has instruction set extensions */
108
109 bool opt_stat = false;
110 bool opt_verify = true;        /* true if classfiles should be verified      */
111 bool opt_eager = false;
112
113 #if defined(ENABLE_LSRA)
114 bool opt_lsra = false;
115 #endif
116
117
118 /* interpreter options ********************************************************/
119
120 #if defined(ENABLE_INTRP)
121 bool opt_no_dynamic = false;            /* suppress dynamic superinstructions */
122 bool opt_no_replication = false;        /* don't use replication in intrp     */
123 bool opt_no_quicksuper = false;         /* instructions for quickening cannot be
124                                                                                    part of dynamic superinstructions */
125
126 s4   opt_static_supers = 0x7fffffff;
127 bool vm_debug = false;          /* XXX this should be called `opt_trace'      */
128 #endif
129
130
131 /* get_opt *********************************************************************
132
133    DOCUMENT ME!!!
134
135 *******************************************************************************/
136
137 int get_opt(int argc, char **argv, opt_struct *opts)
138 {
139         char *a;
140         s4    i;
141         
142         if (opt_ind >= argc)
143                 return OPT_DONE;
144         
145         a = argv[opt_ind];
146
147         if (a[0] != '-')
148                 return OPT_DONE;
149
150         for (i = 0; opts[i].name; i++) {
151                 if (!opts[i].arg) {
152                         /* boolean option found */
153
154                         if (strcmp(a + 1, opts[i].name) == 0) {
155                                 opt_ind++;
156                                 return opts[i].value;
157                         }
158
159                 } else {
160                         /* parameter option found */
161
162                         /* with a space between */
163
164                         if (strcmp(a + 1, opts[i].name) == 0) {
165                                 opt_ind++;
166
167                                 if (opt_ind < argc) {
168                                         opt_arg = argv[opt_ind];
169                                         opt_ind++;
170                                         return opts[i].value;
171                                 }
172
173                                 return OPT_ERROR;
174
175                         } else {
176                                 /* parameter and option have no space between */
177
178                                 size_t l = strlen(opts[i].name);
179                                 if (strlen(a + 1) > l) {
180                                         if (memcmp(a + 1, opts[i].name, l) == 0) {
181                                                 opt_ind++;
182                                                 opt_arg = a + 1 + l;
183                                                 return opts[i].value;
184                                         }
185                                 }
186                         }
187                 }
188         } /* end for */ 
189
190         return OPT_ERROR;
191 }
192
193
194 /*
195  * These are local overrides for various environment variables in Emacs.
196  * Please do not remove this and leave it at the end of the file, where
197  * Emacs will automagically detect them.
198  * ---------------------------------------------------------------------
199  * Local variables:
200  * mode: c
201  * indent-tabs-mode: t
202  * c-basic-offset: 4
203  * tab-width: 4
204  * End:
205  */