X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fir%2Firflag.c;h=745ae0d936e51201ab3769455c78715564a80c82;hb=8f355cb9b3d20c10f71d1b1e17cbf59a51ced83b;hp=6a656d39625ace2c463cbe9bb9934ad221eb6cef;hpb=09fcc6be7ee4866371d00de0203ef8be3e2ec1cf;p=libfirm diff --git a/ir/ir/irflag.c b/ir/ir/irflag.c index 6a656d396..745ae0d93 100644 --- a/ir/ir/irflag.c +++ b/ir/ir/irflag.c @@ -1,19 +1,34 @@ /* - * Project: libFIRM - * File name: ir/ir/irflag.c - * Purpose: Flags to control optimizations. - * Author: Christian Schaefer, Goetz Lindenmaier - * Modified by: - * Created: - * CVS-ID: $Id$ - * Copyright: (c) 1999-2003 Universität Karlsruhe - * Licence: This file protected by GPL - GNU GENERAL PUBLIC LICENSE. + * Copyright (C) 1995-2008 University of Karlsruhe. All right reserved. + * + * This file is part of libFirm. + * + * This file may be distributed and/or modified under the terms of the + * GNU General Public License version 2 as published by the Free Software + * Foundation and appearing in the file LICENSE.GPL included in the + * packaging of this file. + * + * Licensees holding valid libFirm Professional Edition licenses may use + * this file in accordance with the libFirm Commercial License. + * Agreement provided with the Software. + * + * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE + * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE. */ +/** + * @file + * @brief Flags to control optimizations. + * @author Christian Schaefer, Goetz Lindenmaier + * @version $Id$ + */ #ifdef HAVE_CONFIG_H # include "config.h" #endif +#include + #ifdef WITH_LIBCORE #include #endif @@ -27,9 +42,10 @@ #define ON (-1) #define OFF (0) -#define FLAG(name, value, def) (irf_##name & def) | -#define E_FLAG(name, value, def) FLAG(name, value, def) -#define I_FLAG(name, value, def) FLAG(name, value, def) +#define FLAG(name, value, def) (irf_##name & def) | +#define E_FLAG(name, value, def) FLAG(name, value, def) +#define I_FLAG(name, value, def) FLAG(name, value, def) +#define R_FLAG(name, value) optimization_state_t libFIRM_opt = #include "irflag_t.def" @@ -38,7 +54,10 @@ optimization_state_t libFIRM_opt = #undef FLAG #undef E_FLAG #undef I_FLAG +#undef R_FLAG +/** The bitset of currently running phases. */ +optimization_state_t libFIRM_running = 0; /* verbose is always off on default */ optimization_state_t libFIRM_verb = 0; @@ -71,11 +90,14 @@ void set_opt_##name##_verbose(int flag) { \ else libFIRM_verb &= ~irf_##name; \ } +#define R_FLAG(name, value) + /* generate them */ #include "irflag_t.def" #undef I_FLAG #undef E_FLAG +#undef R_FLAG /* for compatibility reasons */ void set_optimize(int value) { @@ -92,7 +114,6 @@ void set_opt_control_flow(int value) set_opt_control_flow_straightening(value); set_opt_control_flow_weak_simplification(value); set_opt_control_flow_strong_simplification(value); - set_opt_critical_edges(value); } void set_firm_verbosity (int value) { @@ -115,11 +136,26 @@ void restore_optimization_state(const optimization_state_t *state) libFIRM_opt = *state; } +/* Switches ALL optimizations off */ +void all_optimizations_off(void) +{ + libFIRM_opt = 0; +} + #ifdef _DEBUG -void firm_show_flags(void) { -#define E_FLAG(name, value, def) printf(#name " = %s\n", get_opt_##name() ? "ON" : "OFF"); -#define I_FLAG(name, value, def) printf(#name " = %s\n", get_opt_##name() ? "ON" : "OFF"); +/* only for debugging */ +void firm_show_flags(FILE *f) { + if (! f) + f = stdout; + printf("Firm optimization state:\n"); +#define E_FLAG(name, value, def) printf(" %-20s = %s\n", #name, get_opt_##name() ? "ON" : "OFF"); +#define I_FLAG(name, value, def) printf(" %-20s = %s\n", #name, get_opt_##name() ? "ON" : "OFF"); +#define R_FLAG(name, value) printf(" %-20s = %s\n", #name, is_##name##_running() ? "is running" : "not running"); #include "irflag_t.def" +#undef I_FLAG +#undef E_FLAG +#undef R_FLAG + printf("\n"); } #endif @@ -127,17 +163,24 @@ void firm_show_flags(void) { static const lc_opt_table_entry_t firm_flags[] = { #define I_FLAG(name, val, def) LC_OPT_ENT_BIT(#name, #name, &libFIRM_opt, (1 << val)), #define E_FLAG(name, val, def) LC_OPT_ENT_BIT(#name, #name, &libFIRM_opt, (1 << val)), +#define R_FLAG(name, val) #include "irflag_t.def" #undef I_FLAG #undef E_FLAG - { NULL } +#undef R_FLAG + LC_OPT_LAST }; #endif -void firm_init_flags(void) -{ +void firm_init_flags(void) { #ifdef WITH_LIBCORE lc_opt_entry_t *grp = lc_opt_get_grp(firm_opt_get_root(), "opt"); lc_opt_add_table(grp, firm_flags); #endif } + +firm_verification_t opt_do_node_verification = FIRM_VERIFICATION_ON; + +void do_node_verification(firm_verification_t mode) { + opt_do_node_verification = mode; +}