X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fir%2Firflag_t.def;h=3b88631272e8251d66117b59e315b07ff2c35fb6;hb=2de19654e65c59e0d0b8fa1de27c548a2e71ff74;hp=4dfc9c2549e2b1cfc31b7db8cda88b6b6a148f08;hpb=83de11435aceb3d0f7e530182cf71545efadf593;p=libfirm diff --git a/ir/ir/irflag_t.def b/ir/ir/irflag_t.def index 4dfc9c254..3b8863127 100644 --- a/ir/ir/irflag_t.def +++ b/ir/ir/irflag_t.def @@ -1,5 +1,5 @@ /* - * Copyright (C) 1995-2007 University of Karlsruhe. All right reserved. + * Copyright (C) 1995-2008 University of Karlsruhe. All right reserved. * * This file is part of libFirm. * @@ -20,13 +20,13 @@ /** * @file * @brief Definitions for optimisation flags - * @author Michael Beck + * @author Michael Beck, Sebastian Hack * @version $Id$ */ /* * We have 3 kinds of flags: - * I_FLAGS are INTERNAL flags: The is only a public set_opt_ function + * I_FLAGS are INTERNAL flags: There is only a public set_opt_ function * E_FLAGS are EXTERNAL flags: Public get_opt_ and set_opt_ fucntions exists * R_FLAGS are RUNNING flags: Use only internally in libfirm to indicate running states */ @@ -58,6 +58,12 @@ I_FLAG(control_flow_weak_simplification , 6, ON) /** */ I_FLAG(control_flow_strong_simplification , 7, ON) +/** Algebraic simplifications. */ +I_FLAG(algebraic_simplification , 8, ON) + +/** Use Global Null Pointer Test elimination. */ +I_FLAG(global_null_ptr_elimination , 10, ON) + /** Remove dynamic method dispatch. */ E_FLAG(dyn_meth_dispatch , 11, ON) @@ -66,14 +72,13 @@ E_FLAG(dyn_meth_dispatch , 11, ON) */ I_FLAG(normalize , 12, ON) -/** precise exception context */ -I_FLAG(precise_exc_context , 15, ON) +I_FLAG(allow_conv_b , 13, ON) -/** Do Strength reduction */ -I_FLAG(strength_red , 17, ON) +/** precise exception context */ +I_FLAG(precise_exc_context , 15, OFF) /** Optimize Fragile OPs */ -I_FLAG(fragile_ops , 19, OFF) +I_FLAG(fragile_ops , 16, OFF) /** Optimize cast nodes. */ E_FLAG(optimize_class_casts , 21, ON) @@ -82,9 +87,6 @@ E_FLAG(suppress_downcast_optimization , 22, OFF) /** Not really an optimization, removes Confirm nodes. */ I_FLAG(remove_confirm , 23, OFF) -/** Scalar replacement. */ -I_FLAG(scalar_replacement , 24, ON) - /** Load and Store have only Null exceptions. */ I_FLAG(ldst_only_null_ptr_exceptions , 25, ON) @@ -104,6 +106,3 @@ I_FLAG(closed_world , 31, OFF) /** This flag is set while the reassociation optimizations are running */ R_FLAG(reassoc , 0) - -/** This flag is set while architecture dependent optimizations are running */ -R_FLAG(arch_dep , 0)