Contains commandline switch variables used in cacao and cacaoh.
authortwisti <none@none>
Wed, 30 Jun 2004 19:13:00 +0000 (19:13 +0000)
committertwisti <none@none>
Wed, 30 Jun 2004 19:13:00 +0000 (19:13 +0000)
options.c [new file with mode: 0644]
options.h [new file with mode: 0644]
src/vm/options.c [new file with mode: 0644]
src/vm/options.h [new file with mode: 0644]

diff --git a/options.c b/options.c
new file mode 100644 (file)
index 0000000..f4d9b8e
--- /dev/null
+++ b/options.c
@@ -0,0 +1,101 @@
+/* options.c - contains global options
+
+   Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
+   Institut f. Computersprachen, TU Wien
+   R. Grafl, A. Krall, C. Kruegel, C. Oates, R. Obermaisser, M. Probst,
+   S. Ring, E. Steiner, C. Thalinger, D. Thuernbeck, P. Tomsich,
+   J. Wenninger
+
+   This file is part of CACAO.
+
+   This program is free software; you can redistribute it and/or
+   modify it under the terms of the GNU General Public License as
+   published by the Free Software Foundation; either version 2, or (at
+   your option) any later version.
+
+   This program is distributed in the hope that it will be useful, but
+   WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   General Public License for more details.
+
+   You should have received a copy of the GNU General Public License
+   along with this program; if not, write to the Free Software
+   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
+   02111-1307, USA.
+
+   Contact: cacao@complang.tuwien.ac.at
+
+   Authors: Christian Thalinger
+
+   $Id: options.c 1223 2004-06-30 19:13:00Z twisti $
+
+*/
+
+
+#include "global.h"
+
+
+/* command line option */
+
+bool verbose = false;
+bool compileall = false;
+bool runverbose = false;       /* trace all method invocation                */
+bool verboseexception = false;
+bool collectverbose = false;
+
+bool loadverbose = false;
+bool linkverbose = false;
+bool initverbose = false;
+
+bool opt_rt = false;           /* true if RTA parse should be used     RT-CO */
+bool opt_xta = false;          /* true if XTA parse should be used    XTA-CO */
+bool opt_vta = false;          /* true if VTA parse should be used    VTA-CO */
+
+bool opt_liberalutf = false;   /* Don't check overlong UTF-8 sequences       */
+
+bool showmethods = false;
+bool showconstantpool = false;
+bool showutf = false;
+
+bool compileverbose =  false;  /* trace compiler actions                     */
+bool showstack = false;
+bool showdisassemble = false;  /* generate disassembler listing              */
+bool showddatasegment = false; /* generate data segment listing              */
+bool showintermediate = false; /* generate intermediate code listing         */
+
+bool useinlining = false;      /* use method inlining                        */
+bool inlinevirtuals = false;   /* inline unique virtual methods              */
+bool inlineexceptions = false; /* inline methods, that contain excptions     */
+bool inlineparamopt = false;   /* optimize parameter passing to inlined methods */
+bool inlineoutsiders = false;  /* inline methods, that are not member of the invoker's class */
+
+bool checkbounds = true;       /* check array bounds                         */
+bool checknull = true;         /* check null pointers                        */
+bool opt_noieee = false;       /* don't implement ieee compliant floats      */
+bool checksync = true;         /* do synchronization                         */
+bool opt_loops = false;        /* optimize array accesses in loops           */
+
+bool makeinitializations = true;
+
+bool getloadingtime = false;   /* to measure the runtime                     */
+bool getcompilingtime = false; /* compute compile time                       */
+
+int has_ext_instr_set = 0;     /* has instruction set extensions */
+
+bool opt_stat = false;
+bool opt_verify = true;        /* true if classfiles should be verified      */
+bool opt_eager = false;
+
+
+/*
+ * These are local overrides for various environment variables in Emacs.
+ * Please do not remove this and leave it at the end of the file, where
+ * Emacs will automagically detect them.
+ * ---------------------------------------------------------------------
+ * Local variables:
+ * mode: c
+ * indent-tabs-mode: t
+ * c-basic-offset: 4
+ * tab-width: 4
+ * End:
+ */
diff --git a/options.h b/options.h
new file mode 100644 (file)
index 0000000..981fafa
--- /dev/null
+++ b/options.h
@@ -0,0 +1,110 @@
+/* options.h - define global options extern
+
+   Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
+   Institut f. Computersprachen, TU Wien
+   R. Grafl, A. Krall, C. Kruegel, C. Oates, R. Obermaisser, M. Probst,
+   S. Ring, E. Steiner, C. Thalinger, D. Thuernbeck, P. Tomsich,
+   J. Wenninger
+
+   This file is part of CACAO.
+
+   This program is free software; you can redistribute it and/or
+   modify it under the terms of the GNU General Public License as
+   published by the Free Software Foundation; either version 2, or (at
+   your option) any later version.
+
+   This program is distributed in the hope that it will be useful, but
+   WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   General Public License for more details.
+
+   You should have received a copy of the GNU General Public License
+   along with this program; if not, write to the Free Software
+   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
+   02111-1307, USA.
+
+   Contact: cacao@complang.tuwien.ac.at
+
+   Authors: Christian Thalinger
+
+   $Id: options.h 1223 2004-06-30 19:13:00Z twisti $
+
+*/
+
+
+#ifndef _OPTIONS_H
+#define _OPTIONS_H
+
+
+#include "global.h"
+
+
+/* global variables */
+
+extern bool compileall;
+extern bool verbose;
+extern bool runverbose;
+extern bool verboseexception;
+extern bool collectverbose;
+
+extern bool loadverbose;         /* Print debug messages during loading */
+extern bool linkverbose;
+extern bool initverbose;         /* Log class initialization */ 
+
+extern bool opt_rt;
+extern bool opt_xta;
+extern bool opt_vta;
+
+extern bool opt_liberalutf;      /* Don't check overlong UTF-8 sequences */
+
+extern bool showmethods;
+extern bool showconstantpool;
+extern bool showutf;
+
+extern bool compileverbose;
+extern bool showstack;
+extern bool showdisassemble;
+extern bool showddatasegment;
+extern bool showintermediate;
+
+extern bool useinlining;
+extern bool inlinevirtuals;
+extern bool inlineexceptions;
+extern bool inlineparamopt;
+extern bool inlineoutsiders;
+
+extern bool checkbounds;
+extern bool checknull;
+extern bool opt_noieee;
+extern bool checksync;
+extern bool opt_loops;
+
+extern bool makeinitializations;
+
+extern bool getloadingtime;
+extern s8 loadingtime;
+
+extern bool getcompilingtime;
+extern s8 compilingtime;
+
+extern int has_ext_instr_set;
+
+extern bool opt_stat;
+extern bool opt_verify;
+extern bool opt_eager;
+
+#endif /* _OPTIONS_H */
+
+
+/*
+ * These are local overrides for various environment variables in Emacs.
+ * Please do not remove this and leave it at the end of the file, where
+ * Emacs will automagically detect them.
+ * ---------------------------------------------------------------------
+ * Local variables:
+ * mode: c
+ * indent-tabs-mode: t
+ * c-basic-offset: 4
+ * tab-width: 4
+ * End:
+ */
diff --git a/src/vm/options.c b/src/vm/options.c
new file mode 100644 (file)
index 0000000..f4d9b8e
--- /dev/null
@@ -0,0 +1,101 @@
+/* options.c - contains global options
+
+   Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
+   Institut f. Computersprachen, TU Wien
+   R. Grafl, A. Krall, C. Kruegel, C. Oates, R. Obermaisser, M. Probst,
+   S. Ring, E. Steiner, C. Thalinger, D. Thuernbeck, P. Tomsich,
+   J. Wenninger
+
+   This file is part of CACAO.
+
+   This program is free software; you can redistribute it and/or
+   modify it under the terms of the GNU General Public License as
+   published by the Free Software Foundation; either version 2, or (at
+   your option) any later version.
+
+   This program is distributed in the hope that it will be useful, but
+   WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   General Public License for more details.
+
+   You should have received a copy of the GNU General Public License
+   along with this program; if not, write to the Free Software
+   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
+   02111-1307, USA.
+
+   Contact: cacao@complang.tuwien.ac.at
+
+   Authors: Christian Thalinger
+
+   $Id: options.c 1223 2004-06-30 19:13:00Z twisti $
+
+*/
+
+
+#include "global.h"
+
+
+/* command line option */
+
+bool verbose = false;
+bool compileall = false;
+bool runverbose = false;       /* trace all method invocation                */
+bool verboseexception = false;
+bool collectverbose = false;
+
+bool loadverbose = false;
+bool linkverbose = false;
+bool initverbose = false;
+
+bool opt_rt = false;           /* true if RTA parse should be used     RT-CO */
+bool opt_xta = false;          /* true if XTA parse should be used    XTA-CO */
+bool opt_vta = false;          /* true if VTA parse should be used    VTA-CO */
+
+bool opt_liberalutf = false;   /* Don't check overlong UTF-8 sequences       */
+
+bool showmethods = false;
+bool showconstantpool = false;
+bool showutf = false;
+
+bool compileverbose =  false;  /* trace compiler actions                     */
+bool showstack = false;
+bool showdisassemble = false;  /* generate disassembler listing              */
+bool showddatasegment = false; /* generate data segment listing              */
+bool showintermediate = false; /* generate intermediate code listing         */
+
+bool useinlining = false;      /* use method inlining                        */
+bool inlinevirtuals = false;   /* inline unique virtual methods              */
+bool inlineexceptions = false; /* inline methods, that contain excptions     */
+bool inlineparamopt = false;   /* optimize parameter passing to inlined methods */
+bool inlineoutsiders = false;  /* inline methods, that are not member of the invoker's class */
+
+bool checkbounds = true;       /* check array bounds                         */
+bool checknull = true;         /* check null pointers                        */
+bool opt_noieee = false;       /* don't implement ieee compliant floats      */
+bool checksync = true;         /* do synchronization                         */
+bool opt_loops = false;        /* optimize array accesses in loops           */
+
+bool makeinitializations = true;
+
+bool getloadingtime = false;   /* to measure the runtime                     */
+bool getcompilingtime = false; /* compute compile time                       */
+
+int has_ext_instr_set = 0;     /* has instruction set extensions */
+
+bool opt_stat = false;
+bool opt_verify = true;        /* true if classfiles should be verified      */
+bool opt_eager = false;
+
+
+/*
+ * These are local overrides for various environment variables in Emacs.
+ * Please do not remove this and leave it at the end of the file, where
+ * Emacs will automagically detect them.
+ * ---------------------------------------------------------------------
+ * Local variables:
+ * mode: c
+ * indent-tabs-mode: t
+ * c-basic-offset: 4
+ * tab-width: 4
+ * End:
+ */
diff --git a/src/vm/options.h b/src/vm/options.h
new file mode 100644 (file)
index 0000000..981fafa
--- /dev/null
@@ -0,0 +1,110 @@
+/* options.h - define global options extern
+
+   Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
+   Institut f. Computersprachen, TU Wien
+   R. Grafl, A. Krall, C. Kruegel, C. Oates, R. Obermaisser, M. Probst,
+   S. Ring, E. Steiner, C. Thalinger, D. Thuernbeck, P. Tomsich,
+   J. Wenninger
+
+   This file is part of CACAO.
+
+   This program is free software; you can redistribute it and/or
+   modify it under the terms of the GNU General Public License as
+   published by the Free Software Foundation; either version 2, or (at
+   your option) any later version.
+
+   This program is distributed in the hope that it will be useful, but
+   WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   General Public License for more details.
+
+   You should have received a copy of the GNU General Public License
+   along with this program; if not, write to the Free Software
+   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
+   02111-1307, USA.
+
+   Contact: cacao@complang.tuwien.ac.at
+
+   Authors: Christian Thalinger
+
+   $Id: options.h 1223 2004-06-30 19:13:00Z twisti $
+
+*/
+
+
+#ifndef _OPTIONS_H
+#define _OPTIONS_H
+
+
+#include "global.h"
+
+
+/* global variables */
+
+extern bool compileall;
+extern bool verbose;
+extern bool runverbose;
+extern bool verboseexception;
+extern bool collectverbose;
+
+extern bool loadverbose;         /* Print debug messages during loading */
+extern bool linkverbose;
+extern bool initverbose;         /* Log class initialization */ 
+
+extern bool opt_rt;
+extern bool opt_xta;
+extern bool opt_vta;
+
+extern bool opt_liberalutf;      /* Don't check overlong UTF-8 sequences */
+
+extern bool showmethods;
+extern bool showconstantpool;
+extern bool showutf;
+
+extern bool compileverbose;
+extern bool showstack;
+extern bool showdisassemble;
+extern bool showddatasegment;
+extern bool showintermediate;
+
+extern bool useinlining;
+extern bool inlinevirtuals;
+extern bool inlineexceptions;
+extern bool inlineparamopt;
+extern bool inlineoutsiders;
+
+extern bool checkbounds;
+extern bool checknull;
+extern bool opt_noieee;
+extern bool checksync;
+extern bool opt_loops;
+
+extern bool makeinitializations;
+
+extern bool getloadingtime;
+extern s8 loadingtime;
+
+extern bool getcompilingtime;
+extern s8 compilingtime;
+
+extern int has_ext_instr_set;
+
+extern bool opt_stat;
+extern bool opt_verify;
+extern bool opt_eager;
+
+#endif /* _OPTIONS_H */
+
+
+/*
+ * These are local overrides for various environment variables in Emacs.
+ * Please do not remove this and leave it at the end of the file, where
+ * Emacs will automagically detect them.
+ * ---------------------------------------------------------------------
+ * Local variables:
+ * mode: c
+ * indent-tabs-mode: t
+ * c-basic-offset: 4
+ * tab-width: 4
+ * End:
+ */