OSDN Git Service

* alias.c (init_alias_analysis): Use VEC_safe_grow_cleared.
[pf3gnuchains/gcc-fork.git] / gcc / ChangeLog
1 2007-01-02  Kazu Hirata  <kazu@codesourcery.com>
2
3         * alias.c (init_alias_analysis): Use VEC_safe_grow_cleared.
4         * cfgbuild.c (find_basic_blocks): Likewise.
5         * cfgrtl.c (rtl_create_basic_block): Likewise.
6         * function.c (temp_slots_at_level): Likewise.
7         * reg-stack.c (stack_regs_mentioned): Likewise.
8         * regclass.c (allocate_reg_info): Likewise.
9         * tree-cfg.c (init_empty_tree_cfg, build_tree_cfg, create_bb,
10         set_bb_for_stmt, move_block_to_fn): Likewise.
11         * tree-complex.c (tree_lower_complex): Likewise.
12         * vec.h (VEC_safe_grow_cleared): New.
13
14 2007-01-02  Douglas Gregor  <doug.gregor@gmail.com>
15
16         * c-common.c(c_common_nodes_and_builtins): Since variants of
17         void_type_node get built before it is given a name, we need to
18         give those variants the name, too. 
19         (complete_array_type): We need to work with the canonical main
20         type of the array, from which we will build the qualified version.
21         * params.def (PARAM_VERIFY_CANONICAL_TYPES): New.
22         * print-tree.c (print_node): Display canonical type information
23         for each type.
24         * stor-layout.c (layout_type): When we don't know the
25         alignment of a type for which we're building an array, we end up
26         guessing wrong, so make the type require structural equality.
27         * tree.c (make_node_stat): When we build a new type, it is its
28         own canonical type.
29         (build_type_attribute_qual_variant): When building an attribute
30         variant, its canonical type is the non-attribute variant. However,
31         if the attributes are target-dependent and they differ, we need to
32         use structural equality checks for this type.
33         (build_qualified_type): A qualified type is not equivalent to its
34         unqualified variant; set the canonical type appropriately.
35         (build_distinct_type_copy): When building a distinct type from
36         another type, the new type is its own canonical type.
37         (build_variant_type_copy): When building a new type variant, we
38         assume that it is equivalent to the original type.
39         (build_pointer_type_for_mode): When building a pointer type, also
40         build a canonical type pointer.
41         (build_reference_type_for_mode): When building a reference type,
42         also build a canonical type reference.
43         (build_index_type): When we can't hash an index type (e.g.,
44         because its maximum value is negative), the index type requires
45         structural equality tests.
46         (build_array_type): Build the canonical form of an array type.
47         (build_function_type): Function types require structural equality,
48         because they contain default arguments, attributes, etc. 
49         (build_method_type_directly): Ditto for method types.
50         (build_offset_type): Build the canonical offset type.
51         (build_complex_type): Build the canonical vector type.
52         (make_vector_type): Build the canonical vector type.
53         * tree.h (TYPE_CANONICAL): New.
54         (TYPE_STRUCTURAL_EQUALITY_P): New.
55         (SET_TYPE_STRUCTURAL_EQUALITY): New.
56         (struct tree_type): Added "canonical" field.
57         * params.h (VERIFY_CANONICAL_TYPES): New.
58         * doc/c-tree.texi (TYPE_CANONICAL): Document.
59         (TYPE_STRUCTURAL_EQUALITY_P): Document.
60         (SET_TYPE_STRUCTURAL_EQUALITY): Document.
61         * doc/invoke.texi (verify-canonical-types): Document --param
62         parameter for verifying canonical types.
63
64 2007-01-02  Joseph Myers  <joseph@codesourcery.com>
65
66         * config.gcc (powerpc-*-eabispe*, powerpc-*-eabisimaltivec*,
67         powerpc-*-eabisim*, powerpc-*-eabialtivec*, powerpc-*-eabi*,
68         powerpc-*-rtems*, powerpc-wrs-vxworks, powerpc-wrs-vxworksae,
69         powerpcle-*-eabisim*, powerpcle-*-eabi*): Add rs6000/e500.h to
70         tm_file.
71         * config/rs6000/e500.h: New.
72         * config/rs6000/eabi.h (TARGET_SPE_ABI, TARGET_SPE, TARGET_E500,
73         TARGET_ISEL, TARGET_FPRS, TARGET_E500_SINGLE, TARGET_E500_DOUBLE):
74         Remove.
75         * config/rs6000/linuxspe.h (TARGET_SPE_ABI, TARGET_SPE,
76         TARGET_E500, TARGET_ISEL, TARGET_FPRS, TARGET_E500_SINGLE,
77         TARGET_E500_DOUBLE): Remove.
78         * config/rs6000/vxworks.h (TARGET_SPE_ABI, TARGET_SPE,
79         TARGET_E500, TARGET_ISEL, TARGET_FPRS): Remove.
80         * config/rs6000/rs6000.h (CHECK_E500_OPTIONS): Define.
81         * config/rs6000/rs6000.c (rs6000_override_options): Use
82         CHECK_E500_OPTIONS.
83
84 2007-01-02  Joseph Myers  <joseph@codesourcery.com>
85
86         * config/rs6000/rs6000.c (print_operand): Check (TARGET_SPE ||
87         TARGET_E500_DOUBLE), not TARGET_E500, for %y.
88         (rs6000_generate_compare, rs6000_emit_sCOND, output_cbranch,
89         rs6000_emit_cmove): Don't check TARGET_E500.
90         * config/rs6000/rs6000.md (bunordered, bordered, sunordered,
91         sordered): Don't check TARGET_E500.
92
93 2007-01-01  Eric Christopher  <echristo@apple.com>
94
95         * config/mips/mips.c (mips_regno_mode_ok_for_base_p): Use
96         HARD_REGISTER_NUM_P.
97
98 2007-01-01  Roger Sayle  <roger@eyesopen.com>
99
100         * fold-const.c (fold_binary) <EQ_EXPR>: Fold "(X^C1) eq/ne C2" into
101         "X eq/ne (C1^C2)".  Fold "(X^Z) eq/ne (Y^Z)" as "X eq/ne Y" when Z
102         has no side-effects.  Fold "(X^C1) eq/ne (Y^C2)" as "(X^(C1^C2))
103         eq/ne Y".
104
105 2007-01-01  Mike Stump  <mrs@apple.com>
106
107         * configure.ac: Remove support for building with Apple's gcc-3.1.
108
109 2007-01-02  Joseph Myers  <joseph@codesourcery.com>
110
111         PR middle-end/30311
112         * caller-save.c (add_stored_regs): Only handle SUBREGs if inner
113         REG is a hard register.  Do not modify REG before calling
114         subreg_nregs.
115         * rtlanal.c (subreg_get_info): Don't assert size of XMODE is a
116         multiple of the size of YMODE for certain lowpart cases.
117
118 2007-01-01  Andrew Pinski  <pinskia@gmail.com>
119
120         PR middle-end/30253
121         * gimplify (voidify_wrapper_expr): Update for
122         GIMPLE_MODIFY_STMT.
123
124 2007-01-01  Andreas Schwab  <schwab@suse.de>
125
126         PR target/29166
127         * config/ia64/ia64.c (ia64_compute_frame_size): Account space for
128         save of BR0 in extra_spill_size instead of spill_size.
129         (ia64_expand_prologue): Save BR0 outside of the gr/br/fr spill
130         area.
131         (ia64_expand_epilogue): Restore BR0 from its new location.
132
133 2007-01-01  Andrew Pinski  <pinskia@gmail.com>
134
135         * gimplify.c (gimplify_init_constructor <case VECTOR_TYPE>):
136         Use a temporary variable if the left hand side is not a gimple
137         register.
138
139 2007-01-01  Andrew Pinski  <pinskia@gmail.com>
140
141         * gimplify.c (gimplify_return_expr): Make the temporary variable
142         for the return expression, a gimple register variable.
143
144 2007-01-01  Jan Hubicka  <jh@suse.cz>
145
146         * emit-rtl.c (emit_copy_of_insn_after): Do not call copy_insn_1 for
147         INSN_LIST.
148
149 2007-01-01  Mike Stump  <mrs@apple.com>
150
151         * configure.ac (HAVE_GAS_LITERAL16): Add autoconf check for
152         .literal16.
153         * config/darwin.c (machopic_select_rtx_section): Use
154         HAVE_GAS_LITERAL16.
155         (darwin_mergeable_constant_section): Likewise.
156         * configure: Regenerate.
157         * config.in: Regenerate.
158
159 2007-01-01  Jan Hubicka  <jh@suse.cz>
160             Andrew Pinski  <pinskia@gmail.com>
161
162         * cgraphunit.c (cgraph_optimize): Call cgraph_add_new_functions
163         before starting IPA passes.