2007-01-02 Jan Hubicka <jh@suse.cz>
[official-gcc.git] / gcc / ChangeLog
blob4a37568ee8dee34d8ff6cd7cd1e59f017fab996a
1 2007-01-02  Jan Hubicka  <jh@suse.cz>
3         * tree-optimize (execute_fixup_cfg): Set after_inlining flag.
4         Set NOTHROW flag on call statements proved to be nothrow.
5         Update statement of local calls so new pure/const functions are
6         updated. Update_ssa when in ssa form. Mark PHI nodes of nonlocal
7         goto receivers.
8         (tree_rest_of_compilation): Register hooks and initialize bitmap
9         early. Do not set after_inlining flag.
11 2007-01-02  Steve Ellcey  <sje@cup.hp.com>
13         * sbitmap.c (HOST_BITS_PER_LONG_LONG):  Change to
14         HOST_BITS_PER_LONGLONG 
16 2007-01-02  Manuel Lopez-Ibanez <manu@gcc.gnu.org>
18         PR c/19977
19         * c-typeck.c (store_init_value): Don't emit pedantic overflow
20         warning for non-static initializers.
21         
22 2007-01-02  Steven Bosscher  <steven@gcc.gnu.org>
24         * config/alpha/alpha.md, arm/arm.c, darwin.c, frv/frv.md,
25         m32r/m32r.c, m32r/m32r.c, mn10300/mn10300.md, pa/pa.c,
26         rs6000/rs6000.c, s390/s390.md, sh/sh.md, sparc/sparc.c:
27         Always use set_unique_reg_note to add REG_EQUAL notes.
29 2007-01-02  Kazu Hirata  <kazu@codesourcery.com>
31         Revert:
32         2007-01-02  Kazu Hirata  <kazu@codesourcery.com>
34         * alias.c (init_alias_analysis): Use VEC_safe_grow_cleared.
35         * cfgbuild.c (find_basic_blocks): Likewise.
36         * cfgrtl.c (rtl_create_basic_block): Likewise.
37         * function.c (temp_slots_at_level): Likewise.
38         * reg-stack.c (stack_regs_mentioned): Likewise.
39         * regclass.c (allocate_reg_info): Likewise.
40         * tree-cfg.c (init_empty_tree_cfg, build_tree_cfg, create_bb,
41         set_bb_for_stmt, move_block_to_fn): Likewise.
42         * tree-complex.c (tree_lower_complex): Likewise.
43         * vec.h (VEC_safe_grow_cleared): New.
45 2007-01-02  Ian Lance Taylor  <iant@google.com>
47         * c-common.c (c_common_truthvalue_conversion): When warning about
48         using an assignment as a truth value, set TREE_NO_WARNING.
50 2007-01-02  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
52         PR middle-end/7651
53         * c.opt (Wold-style-declaration): New.
54         * doc/invoke.texi (C-only Warning Options): New.
55         (Wold-style-declaration): Document it.
56         (Wextra): Enabled by -Wextra.
57         * c-opts.c (c_common_post_options): Enabled by -Wextra.
58         * c-decl.c (declspecs_add_scspec): Replace -Wextra with
59         -Wold-style-declaration.
60         
61 2007-01-02  Kazu Hirata  <kazu@codesourcery.com>
63         * alias.c (init_alias_analysis): Use VEC_safe_grow_cleared.
64         * cfgbuild.c (find_basic_blocks): Likewise.
65         * cfgrtl.c (rtl_create_basic_block): Likewise.
66         * function.c (temp_slots_at_level): Likewise.
67         * reg-stack.c (stack_regs_mentioned): Likewise.
68         * regclass.c (allocate_reg_info): Likewise.
69         * tree-cfg.c (init_empty_tree_cfg, build_tree_cfg, create_bb,
70         set_bb_for_stmt, move_block_to_fn): Likewise.
71         * tree-complex.c (tree_lower_complex): Likewise.
72         * vec.h (VEC_safe_grow_cleared): New.
74 2007-01-02  Douglas Gregor  <doug.gregor@gmail.com>
76         * c-common.c(c_common_nodes_and_builtins): Since variants of
77         void_type_node get built before it is given a name, we need to
78         give those variants the name, too. 
79         (complete_array_type): We need to work with the canonical main
80         type of the array, from which we will build the qualified version.
81         * params.def (PARAM_VERIFY_CANONICAL_TYPES): New.
82         * print-tree.c (print_node): Display canonical type information
83         for each type.
84         * stor-layout.c (layout_type): When we don't know the
85         alignment of a type for which we're building an array, we end up
86         guessing wrong, so make the type require structural equality.
87         * tree.c (make_node_stat): When we build a new type, it is its
88         own canonical type.
89         (build_type_attribute_qual_variant): When building an attribute
90         variant, its canonical type is the non-attribute variant. However,
91         if the attributes are target-dependent and they differ, we need to
92         use structural equality checks for this type.
93         (build_qualified_type): A qualified type is not equivalent to its
94         unqualified variant; set the canonical type appropriately.
95         (build_distinct_type_copy): When building a distinct type from
96         another type, the new type is its own canonical type.
97         (build_variant_type_copy): When building a new type variant, we
98         assume that it is equivalent to the original type.
99         (build_pointer_type_for_mode): When building a pointer type, also
100         build a canonical type pointer.
101         (build_reference_type_for_mode): When building a reference type,
102         also build a canonical type reference.
103         (build_index_type): When we can't hash an index type (e.g.,
104         because its maximum value is negative), the index type requires
105         structural equality tests.
106         (build_array_type): Build the canonical form of an array type.
107         (build_function_type): Function types require structural equality,
108         because they contain default arguments, attributes, etc. 
109         (build_method_type_directly): Ditto for method types.
110         (build_offset_type): Build the canonical offset type.
111         (build_complex_type): Build the canonical vector type.
112         (make_vector_type): Build the canonical vector type.
113         * tree.h (TYPE_CANONICAL): New.
114         (TYPE_STRUCTURAL_EQUALITY_P): New.
115         (SET_TYPE_STRUCTURAL_EQUALITY): New.
116         (struct tree_type): Added "canonical" field.
117         * params.h (VERIFY_CANONICAL_TYPES): New.
118         * doc/c-tree.texi (TYPE_CANONICAL): Document.
119         (TYPE_STRUCTURAL_EQUALITY_P): Document.
120         (SET_TYPE_STRUCTURAL_EQUALITY): Document.
121         * doc/invoke.texi (verify-canonical-types): Document --param
122         parameter for verifying canonical types.
124 2007-01-02  Joseph Myers  <joseph@codesourcery.com>
126         * config.gcc (powerpc-*-eabispe*, powerpc-*-eabisimaltivec*,
127         powerpc-*-eabisim*, powerpc-*-eabialtivec*, powerpc-*-eabi*,
128         powerpc-*-rtems*, powerpc-wrs-vxworks, powerpc-wrs-vxworksae,
129         powerpcle-*-eabisim*, powerpcle-*-eabi*): Add rs6000/e500.h to
130         tm_file.
131         * config/rs6000/e500.h: New.
132         * config/rs6000/eabi.h (TARGET_SPE_ABI, TARGET_SPE, TARGET_E500,
133         TARGET_ISEL, TARGET_FPRS, TARGET_E500_SINGLE, TARGET_E500_DOUBLE):
134         Remove.
135         * config/rs6000/linuxspe.h (TARGET_SPE_ABI, TARGET_SPE,
136         TARGET_E500, TARGET_ISEL, TARGET_FPRS, TARGET_E500_SINGLE,
137         TARGET_E500_DOUBLE): Remove.
138         * config/rs6000/vxworks.h (TARGET_SPE_ABI, TARGET_SPE,
139         TARGET_E500, TARGET_ISEL, TARGET_FPRS): Remove.
140         * config/rs6000/rs6000.h (CHECK_E500_OPTIONS): Define.
141         * config/rs6000/rs6000.c (rs6000_override_options): Use
142         CHECK_E500_OPTIONS.
144 2007-01-02  Joseph Myers  <joseph@codesourcery.com>
146         * config/rs6000/rs6000.c (print_operand): Check (TARGET_SPE ||
147         TARGET_E500_DOUBLE), not TARGET_E500, for %y.
148         (rs6000_generate_compare, rs6000_emit_sCOND, output_cbranch,
149         rs6000_emit_cmove): Don't check TARGET_E500.
150         * config/rs6000/rs6000.md (bunordered, bordered, sunordered,
151         sordered): Don't check TARGET_E500.
153 2007-01-01  Eric Christopher  <echristo@apple.com>
155         * config/mips/mips.c (mips_regno_mode_ok_for_base_p): Use
156         HARD_REGISTER_NUM_P.
158 2007-01-01  Roger Sayle  <roger@eyesopen.com>
160         * fold-const.c (fold_binary) <EQ_EXPR>: Fold "(X^C1) eq/ne C2" into
161         "X eq/ne (C1^C2)".  Fold "(X^Z) eq/ne (Y^Z)" as "X eq/ne Y" when Z
162         has no side-effects.  Fold "(X^C1) eq/ne (Y^C2)" as "(X^(C1^C2))
163         eq/ne Y".
165 2007-01-01  Mike Stump  <mrs@apple.com>
167         * configure.ac: Remove support for building with Apple's gcc-3.1.
169 2007-01-02  Joseph Myers  <joseph@codesourcery.com>
171         PR middle-end/30311
172         * caller-save.c (add_stored_regs): Only handle SUBREGs if inner
173         REG is a hard register.  Do not modify REG before calling
174         subreg_nregs.
175         * rtlanal.c (subreg_get_info): Don't assert size of XMODE is a
176         multiple of the size of YMODE for certain lowpart cases.
178 2007-01-01  Andrew Pinski  <pinskia@gmail.com>
180         PR middle-end/30253
181         * gimplify (voidify_wrapper_expr): Update for
182         GIMPLE_MODIFY_STMT.
184 2007-01-01  Andreas Schwab  <schwab@suse.de>
186         PR target/29166
187         * config/ia64/ia64.c (ia64_compute_frame_size): Account space for
188         save of BR0 in extra_spill_size instead of spill_size.
189         (ia64_expand_prologue): Save BR0 outside of the gr/br/fr spill
190         area.
191         (ia64_expand_epilogue): Restore BR0 from its new location.
193 2007-01-01  Andrew Pinski  <pinskia@gmail.com>
195         * gimplify.c (gimplify_init_constructor <case VECTOR_TYPE>):
196         Use a temporary variable if the left hand side is not a gimple
197         register.
199 2007-01-01  Andrew Pinski  <pinskia@gmail.com>
201         * gimplify.c (gimplify_return_expr): Make the temporary variable
202         for the return expression, a gimple register variable.
204 2007-01-01  Jan Hubicka  <jh@suse.cz>
206         * emit-rtl.c (emit_copy_of_insn_after): Do not call copy_insn_1 for
207         INSN_LIST.
209 2007-01-01  Mike Stump  <mrs@apple.com>
211         * configure.ac (HAVE_GAS_LITERAL16): Add autoconf check for
212         .literal16.
213         * config/darwin.c (machopic_select_rtx_section): Use
214         HAVE_GAS_LITERAL16.
215         (darwin_mergeable_constant_section): Likewise.
216         * configure: Regenerate.
217         * config.in: Regenerate.
219 2007-01-01  Jan Hubicka  <jh@suse.cz>
220             Andrew Pinski  <pinskia@gmail.com>
222         * cgraphunit.c (cgraph_optimize): Call cgraph_add_new_functions
223         before starting IPA passes.