loader.tex
[cacao.git] / options.h
1 /* options.h - define global options extern
2
3    Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
4    Institut f. Computersprachen, TU Wien
5    R. Grafl, A. Krall, C. Kruegel, C. Oates, R. Obermaisser, M. Probst,
6    S. Ring, E. Steiner, C. Thalinger, D. Thuernbeck, P. Tomsich,
7    J. Wenninger
8
9    This file is part of CACAO.
10
11    This program is free software; you can redistribute it and/or
12    modify it under the terms of the GNU General Public License as
13    published by the Free Software Foundation; either version 2, or (at
14    your option) any later version.
15
16    This program is distributed in the hope that it will be useful, but
17    WITHOUT ANY WARRANTY; without even the implied warranty of
18    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19    General Public License for more details.
20
21    You should have received a copy of the GNU General Public License
22    along with this program; if not, write to the Free Software
23    Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
24    02111-1307, USA.
25
26    Contact: cacao@complang.tuwien.ac.at
27
28    Authors: Christian Thalinger
29
30    $Id: options.h 1223 2004-06-30 19:13:00Z twisti $
31
32 */
33
34
35 #ifndef _OPTIONS_H
36 #define _OPTIONS_H
37
38
39 #include "global.h"
40
41
42 /* global variables */
43
44 extern bool compileall;
45 extern bool verbose;
46 extern bool runverbose;
47 extern bool verboseexception;
48 extern bool collectverbose;
49
50 extern bool loadverbose;         /* Print debug messages during loading */
51 extern bool linkverbose;
52 extern bool initverbose;         /* Log class initialization */ 
53
54 extern bool opt_rt;
55 extern bool opt_xta;
56 extern bool opt_vta;
57
58 extern bool opt_liberalutf;      /* Don't check overlong UTF-8 sequences */
59
60 extern bool showmethods;
61 extern bool showconstantpool;
62 extern bool showutf;
63
64 extern bool compileverbose;
65 extern bool showstack;
66 extern bool showdisassemble;
67 extern bool showddatasegment;
68 extern bool showintermediate;
69
70 extern bool useinlining;
71 extern bool inlinevirtuals;
72 extern bool inlineexceptions;
73 extern bool inlineparamopt;
74 extern bool inlineoutsiders;
75
76 extern bool checkbounds;
77 extern bool checknull;
78 extern bool opt_noieee;
79 extern bool checksync;
80 extern bool opt_loops;
81
82 extern bool makeinitializations;
83
84 extern bool getloadingtime;
85 extern s8 loadingtime;
86
87 extern bool getcompilingtime;
88 extern s8 compilingtime;
89
90 extern int has_ext_instr_set;
91
92 extern bool opt_stat;
93 extern bool opt_verify;
94 extern bool opt_eager;
95
96 #endif /* _OPTIONS_H */
97
98
99 /*
100  * These are local overrides for various environment variables in Emacs.
101  * Please do not remove this and leave it at the end of the file, where
102  * Emacs will automagically detect them.
103  * ---------------------------------------------------------------------
104  * Local variables:
105  * mode: c
106  * indent-tabs-mode: t
107  * c-basic-offset: 4
108  * tab-width: 4
109  * End:
110  */