* doc/include/gpl.texi: Remove.
[official-gcc.git] / gcc / ChangeLog
blob8b9f9cb7c5220f168ec32cf9f22f2dd8c4818ca5
1 2012-06-28  Andreas Schwab  <schwab@linux-m68k.org>
3         * doc/include/gpl.texi: Remove.
4         * doc/sourcebuild.texi (Texinfo Manuals): Don't mention gpl.texi.
6 2012-06-28  Jakub Jelinek  <jakub@redhat.com>
8         PR tree-optimization/53645
9         * tree-vect-generic.c (add_rshift): New function.
10         (expand_vector_divmod): New function.
11         (expand_vector_operation): Use it for vector integer
12         TRUNC_{DIV,MOD}_EXPR by VECTOR_CST.
13         * tree-vect-patterns.c (vect_recog_divmod_pattern): Replace
14         unused lguup variable with dummy_int.
16 2012-06-28  OLivier Hainque  <hainque@adacore.com>
18         * expr.c (convert_move): Latch mem integer inputs into a
19         register before expanding a multi-instructions sequence.
21 2012-06-28  Alexandre Oliva  <aoliva@redhat.com>,
22             Uros Bizjak  <ubizjak@gmail.com>,
23             Jakub Jelinek  <jakub@redhat.com>
25         PR debug/53706
26         PR debug/47624
27         * var-tracking.c (vt_emit_notes): Release loc_exp_dep_pool...
28         (vt_finalize): ... here instead, if needed.
30 2012-06-28  Alexandre Oliva  <aoliva@redhat.com>
32         PR debug/53740
33         PR debug/52983
34         PR debug/48866
35         * dce.c (word_dce_process_block): Check whether inserting debug
36         temps are needed even for needed insns.
37         (dce_process_block): Likewise.
38         * df-problems.c (dead_debug_add): Add comment about multi-regs.
39         (dead_debug_insert_temp): Likewise.  Don't subreg when we're
40         setting fewer regs than a multi-reg requires.
42 2012-06-27  Richard Henderson  <rth@redhat.com>
44         * config/alpha/alpha.c (alpha_dimode_u): New.
45         (alpha_init_builtins): Initialize it, and use it.
46         (alpha_fold_builtin_cmpbge): Use alpha_dimode_u.
47         (alpha_fold_builtin_zapnot, alpha_fold_builtin_insxx): Likewise.
48         (alpha_fold_vector_minmax, alpha_fold_builtin_perr): Likewise.
49         (alpha_fold_builtin_pklb, alpha_fold_builtin_pkwb): Likewise.
50         (alpha_fold_builtin_unpkbl, alpha_fold_builtin_unpkbw): Likewise.
51         (alpha_fold_builtin_cttz, alpha_fold_builtin_ctlz): Likewise.
52         (alpha_fold_builtin_ctpop): Likewise.
53         (alpha_fold_builtin_umulh): Remove.
54         (alpha_fold_builtin): Use MULT_HIGHPART_EXPR for UMULH; fix
55         typo in MAX_ARGS check.
57 2012-06-27  Richard Henderson  <rth@redhat.com>
59         * tree.def (MULT_HIGHPART_EXPR): New.
60         * cfgexpand.c (expand_debug_expr): Ignore it.
61         * expr.c (expand_expr_real_2): Handle it.
62         * fold-const.c (int_const_binop_1): Likewise.
63         * optabs.c (optab_for_tree_code): Likewise.
64         * tree-cfg.c (verify_gimple_assign_binary): Likewise.
65         * tree-inline.c (estimate_operator_cost): Likewise.
66         * tree-pretty-print.c (dump_generic_node): Likewise.
67         (op_code_prio, op_symbol_code): Likewise.
68         * tree.c (commutative_tree_code): Likewise.  Also handle
69         WIDEN_MULT_EXPR, VEC_WIDEN_MULT_HI_EXPR, VEC_WIDEN_MULT_LO_EXPR.
71 2012-06-27  Richard Henderson  <rth@redhat.com>
73         PR target/53749
74         * config/i386/i386.c (ix86_rtx_costs): Fix typo vs UNITS_PER_WORD
75         in 2012-06-23 change.  Adjust two other DImode tests as well.
77 2012-06-27  Nick Clifton  <nickc@redhat.com>
79         * config/rx/rx.md (comparesi3_extend): Remove = modifier from
80         input operand.
82 2012-06-27  Richard Guenther  <rguenther@suse.de>
84         PR middle-end/53676
85         * tree-chrec.c (chrec_convert_1): Represent truncation to
86         a type with undefined overflow as truncation to an unsigned
87         type converted to the type with undefined overflow.
88         * tree-scalar-evolution.c (interpret_rhs_expr): For computing
89         the scalar evolution of a truncated widened operation avoid
90         looking at the non-existing evolution of the widened operation
91         result.
93 2012-06-27  Richard Guenther  <rguenther@suse.de>
95         PR tree-optimization/53774
96         * tree-ssa-reassoc.c (get_rank): All default defs have
97         precomputed rank.
98         (init_reassoc): Precompute rank for all SSA default defs.
100 2012-06-27  Nick Clifton  <nickc@redhat.com>
102         * config/rx/rx.md (simple_return): Use the simple_return rtx.
104 2012-06-26  Richard Henderson  <rth@redhat.com>
106         * config/i386/i386.c (ix86_rtx_costs): Use standard_sse_constant_p
107         and don't fall thru from standard_80387_constant_p to the memory
108         fallback,
110 2012-06-26  Richard Henderson  <rth@redhat.com>
112         * config/i386/i386.c (bdesc_args): Update.  Change
113         IX86_BUILTIN_VEC_WIDEN_SMUL_ODD_V4SI to OPTION_MASK_ISA_SSE2.
114         (IX86_BUILTIN_VEC_WIDEN_SMUL_EVEN_V4SI): New.
115         (ix86_builtin_mul_widen_even): Use it.
116         (ix86_builtin_mul_widen_odd): Relax SMUL_ODD from sse4 to sse2.
117         (ix86_expand_mul_widen_evenodd): Handle signed for sse2.
118         * config/i386/sse.md (vec_widen_<s>mult_hi_<V124_AVX2>): Allow
119         for all SSE2.
120         (vec_widen_<s>mult_lo_<V124_AVX2>): Likewise.
121         (vec_widen_<s>mult_odd_<VI4_AVX2>): Likewise.  Relax from V124_AVX2.
122         (vec_widen_smult_even_v4si): New.
124 2012-06-26  Richard Henderson  <rth@redhat.com>
126         * config/i386/sse.md (mul<VI8_AVX2>3): Change from insn_and_split
127         to expander; move guts to ...
128         * config/i386/i386.c (ix86_expand_sse2_mulvxdi3): ... here.  Add
129         highparts before shifting up.
130         * config/i386/i386-protos.h: Update.
132 2012-06-26  Steven Bosscher  <steven@gcc.gnu.org>
134         * system.h (USE_COMMON_FOR_ONE_ONLY): Poison.
135         * defaults.h (USE_COMMON_FOR_ONE_ONLY): Do not provide default.
136         * config/darwin.h (USE_COMMON_FOR_ONE_ONLY): Do not define.
138 2012-06-26  Alexandre Oliva  <aoliva@redhat.com>
140         * var-tracking.c (vt_add_function_parameter): Use a preserved
141         VALUE for the MEM address of an incoming parameter.
143 2012-06-26  Sterling Augustine <saugustine@google.com>
145         * dwarf2out.c (output_pubnames): Add check for DW_TAG_enumerator.
146         (prune_unused_types): Likewise.
148 2012-06-26  Steven Bosscher  <steven@gcc.gnu.org>
150         * system.h (UNALIGNED_SHORT_ASM_OP, UNALIGNED_INT_ASM_OP,
151         UNALIGNED_LONG_ASM_OP, UNALIGNED_DOUBLE_INT_ASM_OP): Poison.
152         * vmsdbgout.c (UNALIGNED_SHORT_ASM_OP, UNALIGNED_INT_ASM_OP,
153         UNALIGNED_LONG_ASM_OP, UNALIGNED_DOUBLE_INT_ASM_OP): Rename to
154         VMS_UNALIGNED_SHORT_ASM_OP, VMS_UNALIGNED_INT_ASM_OP,
155         VMS_UNALIGNED_LONG_ASM_OP, and VMS_UNALIGNED_DOUBLE_INT_ASM_OP.
156         * config/microblaze/microblaze.h (UNALIGNED_SHORT_ASM_OP,
157         UNALIGNED_INT_ASM_OP, UNALIGNED_DOUBLE_INT_ASM_OP): Do not define.
158         * doc/tm.texi.in: Remove UNALIGNED_INT_ASM_OP reference from the
159         documentation.
160         * doc/tm.texi: Regenerate.
161         * doc/cpp.texi: Make example for #error generic.
162         * config/frv/frv.h: Fix example text to match tm.texi.
164 2012-06-26  Bill Schmidt  <wschmidt@linux.ibm.com>
166         * tree-pass.h (pass_strength_reduction): New decl.
167         * tree-ssa-loop-ivopts.c (initialize_costs): Make non-static.
168         (finalize_costs): Likewise.
169         * timevar.def (TV_TREE_SLSR): New timevar.
170         * gimple-ssa-strength-reduction.c: New.
171         * tree-flow.h (initialize_costs): New decl.
172         (finalize_costs): Likewise.
173         * Makefile.in (tree-ssa-strength-reduction.o): New dependencies.
174         * passes.c (init_optimization_passes): Add pass_strength_reduction.
176 2012-06-26  Matt Turner  <mattst88@gmail.com>
178         * doc/extend.texi (__builtin_arm_tinsrb): Add missing second
179         parameter.
180         (__builtin_arm_tinsrh): Likewise.
181         (__builtin_arm_tinsrw): Likewise.
182         (__builtin_arm_wsadb): Add missing v2si parameter.
183         (__builtin_arm_wsadh): Likewise.
184         (__builtin_arm_getwcx): Delete.
185         (__builtin_arm_setwcx): Delete.
186         (__builtin_arm_getwcgr0): Add.
187         (__builtin_arm_getwcgr1): Add.
188         (__builtin_arm_getwcgr2): Add.
189         (__builtin_arm_getwcgr3): Add.
190         (__builtin_arm_setwcgr0): Add.
191         (__builtin_arm_setwcgr1): Add.
192         (__builtin_arm_setwcgr2): Add.
193         (__builtin_arm_setwcgr3): Add.
195 2012-06-26  Richard Guenther  <rguenther@suse.de>
197         Revert
198         2012-06-21  Richard Guenther  <rguenther@suse.de>
200         * tree-inline.c (estimate_num_insns): Estimate call cost for
201         tailcalls properly.
203 2012-06-26  Steven Bosscher  <steven@gcc.gnu.org>
205         PR other/33190
206         * doc/tm.texi.in: Document LOGICAL_OP_NON_SHORT_CIRCUIT.
207         * doc/tm.texi: Regenerate.
209 2012-06-26  Steven Bosscher  <steven@gcc.gnu.org>
211         PR other/33190
212         * config/mips/mips.h: Do not define ALL_COP_ADDITIONAL_REGISTER_NAMES.
213         * config/frv/frv.h: Do not define REVERSE_CONDEXEC_PREDICATES_P.
214         * doc/tm.texi.in: Remove documentation for unused target macros
215         ALL_COP_ADDITIONAL_REGISTER_NAMES, DBX_OUTPUT_LBRAC, DBX_OUTPUT_NFUN,
216         DBX_OUTPUT_RBRAC, RANGE_TEST_NON_SHORT_CIRCUIT, REAL_VALUE_TRUNCATE,
217         REVERSE_CONDEXEC_PREDICATES_P, TARGET_ALIGN_ANON_BITFIELDS, and
218         TARGET_NARROW_VOLATILE_BITFIELDS.
219         Document that MD_HANDLE_UNWABI is a macro in libgcc.
220         * doc/tm.texi: Regenerate.
221         * system.h: Poison target macros
222         ALL_COP_ADDITIONAL_REGISTER_NAMES, DBX_OUTPUT_LBRAC, DBX_OUTPUT_NFUN,
223         DBX_OUTPUT_RBRAC, RANGE_TEST_NON_SHORT_CIRCUIT, REAL_VALUE_TRUNCATE,
224         REVERSE_CONDEXEC_PREDICATES_P, TARGET_ALIGN_ANON_BITFIELDS, and
225         TARGET_NARROW_VOLATILE_BITFIELDS
227 2012-06-26  Jan Hubicka  <jh@suse.cz>
229         PR lto/53572
230         * cgraph.h (varpool_can_remove_if_no_refs): Fix handling of
231         used symbols.
233 2012-06-26  Dehao Chen  <dehao@google.com>
235         * tree-inline.c: (expand_call_inline): Ensure that lexical block's
236         source location is consistant with the call stmt.
238 2012-06-26  Ulrich Weigand  <ulrich.weigand@linaro.org>
240         PR tree-optimization/53729
241         PR tree-optimization/53636
242         * tree-vect-slp.c (vect_slp_analyze_bb_1): Delay call to
243         vect_verify_datarefs_alignment until after statements have
244         been marked as relevant/irrelevant.
245         * tree-vect-data-refs.c (vect_verify_datarefs_alignment):
246         Skip irrelevant statements.
247         (vect_enhance_data_refs_alignment): Use STMT_VINFO_RELEVANT_P
248         instead of STMT_VINFO_RELEVANT.
249         (vect_get_data_access_cost): Do not check for supportable
250         alignment before calling vect_get_load_cost/vect_get_store_cost.
251         * tree-vect-stmts.c (vect_get_store_cost): Do not abort when
252         handling unsupported alignment.
253         (vect_get_load_cost): Likewise.
255 2012-06-25  Steven Bosscher  <steven@gcc.gnu.org>
257         * config/rl78/rl78.h: Do not undefine DONT_USE_BUILTIN_SETJMP.
258         Do not define JMP_BUF_SIZE.
260 2012-06-26  Jakub Jelinek  <jakub@redhat.com>
262         PR tree-optimization/53748
263         * tree-ssa-phiopt.c (conditional_replacement): Only optimize
264         if arg0/arg1 have integral or pointer types.
266 2012-06-25  Richard Henderson  <rth@redhat.com>
268         * config/i386/sse.md (sse2_sse4_1): Remove code attr.
269         (<s>dot_prodv4si, <s>dot_prodv8si): Remove
270         (sdot_prodv4si): New; handle only XOP.
272 2012-06-25  Richard Henderson  <rth@redhat.com>
274         * config/i386/i386-builtin-types.def (V4UDI, V8USI): New.
275         (V2UDI_FUNC_V4USI_V4USI): New.
276         (V4UDI_FUNC_V8USI_V8USI): New.
277         * config/i386/i386.c (ix86_expand_args_builtin): Handle them.
278         (IX86_BUILTIN_VEC_WIDEN_SMUL_ODD_V4SI): New.
279         (IX86_BUILTIN_VEC_WIDEN_SMUL_ODD_V8SI): New.
280         (IX86_BUILTIN_VEC_WIDEN_UMUL_ODD_V4SI): New.
281         (IX86_BUILTIN_VEC_WIDEN_UMUL_ODD_V8SI): New.
282         (IX86_BUILTIN_VEC_WIDEN_UMUL_EVEN_V4SI): New.
283         (IX86_BUILTIN_VEC_WIDEN_UMUL_EVEN_V8SI): New.
284         (bdesc_args): Add them.
285         (ix86_builtin_mul_widen_even, ix86_builtin_mul_widen_odd): New.
286         (TARGET_VECTORIZE_BUILTIN_MUL_WIDEN_EVEN): New.
287         (TARGET_VECTORIZE_BUILTIN_MUL_WIDEN_ODD): New.
288         (ix86_expand_mul_widen_evenodd): Use xop_pmacsdqh.
289         * config/i386/sse.md (vec_widen_<s>mult_odd_<V124_AVX2>): New.
291 2012-06-25  Richard Henderson  <rth@redhat.com>
293         * config/i386.sse.md (mul<VI4_AVX2>3): Use xop_pmacsdd.
295 2012-06-25  Richard Henderson  <rth@redhat.com>
297         * config/i386/i386.c (ix86_rtx_costs) [MULT]: Only apply XOP cost
298         to V16QImode.
299         (ix86_expand_vec_interleave): New.
300         (ix86_expand_mul_widen_evenodd): New.
301         (ix86_expand_mul_widen_hilo): New.
302         (ix86_expand_sse2_mulv4si3): Use ix86_expand_mul_widen_evenodd.
303         * config/i386/i386.md (u_bool) New code attr.
304         * config/i386/predicates.md
305         (nonimmediate_or_const_vector_operand): Remove.
306         * config/i386/sse.md (mul<VI4_AVX2>3): Don't use it; don't test
307         both AVX and SSE4_1.
308         (vec_widen<s>mult_hi_<VI2_AVX2>): Remove.
309         (vec_widen<s>mult_lo_<VI2_AVX2>): Remove.
310         (vec_widen<s>mult_hi_v8si): Remove.
311         (vec_widen<s>mult_lo_v8si): Remove.
312         (vec_widen_smult_hi_v4si): Remove.
313         (vec_widen_smult_lo_v4si): Remove.
314         (vec_widen_umult_hi_v4si): Remove.
315         (vec_widen_umult_lo_v4si): Remove.
316         (vec_widen_<s>mult_hi_<VI124_AVX2>): New.
317         (vec_widen_<s>mult_lo_<VI124_AVX2>): New.
318         * config/i386/i386-protos.h: Update.
320 2012-06-25  Christophe Lyon  <christophe.lyon@st.com>
322         * config/arm/neon.md (UNSPEC_VLD1_DUP): Remove.
323         (neon_vld1_dup): Restrict to VQ operands.
324         (neon_vld1_dupv2di): New, fixes vld1q_dup_s64.
326 2012-06-25  Matthew Gretton-Dann  <matthew.gretton-dann@arm.com>
327             James Greenhalgh  <james.greenhalgh@arm.com>
329         * config/arm/arm.h (TARGET_CPU_CPP_BUILTINS): Add new built-ins.
330         (TARGET_FMA): New macro.
331         (TARGET_ARM_QBIT, TARGET_ARM_SAT): Likewise.
332         (TARGET_ARM_ARCH): Likewise.
333         (TARGET_ARM_ARCH_ISA_THUMB): Likewise.
334         (TARGET_V6M, TARGET_V7M): Likewise.
335         (TARGET_ARM_ARCH_PROFILE): Likewise.
336         (TARGET_ARM_FEATURE_LDREX): Likewise.
337         (TARGET_ARM_FP, TARGET_NEON_FP): Likewise.
338         (ARM_MIN_ENUM_SIZE): Likewise.
339         * config/arm/arm.c (arm_file_start): Refactor appropriately.
340         (base_architecture): New enumeration.
341         (arm_base_arch): New global variable.
342         (processors): Add field base_arch.
343         (ARM_ARCH, ARM_CORE): Adjust accordingly.
344         (arm_option_override): Add initialization of arm_base_arch.
345         * doc/cpp.texi (system-specific predefined macros.): Change.
347 2012-06-25  Jakub Jelinek  <jakub@redhat.com>
349         PR target/53759
350         * config/i386/sse.md (sse_loadlps): Use x m x constraints instead
351         of x x x in the vmovlps load alternative.
353 2012-06-25  Richard Sandiford  <rdsandiford@googlemail.com>
355         PR debug/53740
356         * df.h (dead_debug_add): Remove third argument.
357         * df-problems.c (dead_debug_add): Likewise.  Use the REGNO of the
358         REG that we want to replace instead.
359         (dead_debug_insert_temp): Use the REGNO of the reg that we want
360         to replace instead of DF_REF_REGNO.  Require there to always be
361         at least one such use.  Check for cases where the same location
362         has more than df_ref associated with it.
363         (df_note_bb_compute): Remove third dead_debug_add argument.
364         * dce.c (word_dce_process_block): Likewise.
366 2012-06-25  Steven Bosscher  <steven@gcc.gnu.org>
368         * config/v850/v850.c: Remove redundant extern declarations for
369         last_assemble_variable_decl and size_directive_output.
371         * doc/tm.texi.in: Document JMP_BUF_SIZE.
372         * doc/tm.texi: Regenerate.
373         * config/sparc/sparc.h (JMP_BUF_SIZE): Do not define.
374         * config/pa/pa.h (JMP_BUF_SIZE): Likewise.
375         * config/stormy16/stormy16.h: Likewise.
377         * config/picochip/picochip.c: Do not define DONT_USE_BUILTIN_SETJMP.
379         * doc/sourcebuild.texi: Add missing subdirectories.
381 2012-06-25  Tristan Gingold  <gingold@adacore.com>
383         * config/i386/i386.h: Fix typo.
385 2012-06-25  Tristan Gingold  <gingold@adacore.com>
387         * config/i386/winnt.c (i386_pe_seh_end_prologue): Move code to ...
388         (seh_cfa_adjust_cfa): ... that function.
389         (seh_emit_stackalloc): Do not emit out of range values.
390         * config/i386/i386.md: Delete unused UNSPEC_REG_SAVE,
391         UNSPEC_DEF_CFA constants.
392         * config/i386/i386.h (SEH_MAX_FRAME_SIZE): Define.
393         * config/i386/i386.c (ix86_frame_pointer_required): Required
394         for very large frames on SEH target.
395         (ix86_compute_frame_layout): Save area is before frame pointer
396         on SEH target.  Handle very large frames.
397         (ix86_expand_prologue): Likewise.
399 2012-06-24  Steven Bosscher  <steven@gcc.gnu.org>
401         * output.h: (current_function_is_leaf,
402         current_function_sp_is_unchanging,
403         current_function_uses_only_leaf_regs): Remove.
404         * function.c (current_function_is_leaf,
405         current_function_sp_is_unchanging,
406         current_function_uses_only_leaf_regs): Remove.
407         (rest_of_handle_check_leaf_regs): Set crtl->uses_only_leaf_regs
408         instead of current_function_uses_only_leaf_regs.
409         * function.h (struct rtl_data): New fields sp_is_unchanging,
410         is_leaf, uses_only_leaf_regs.
411         * resource.c (init_resource_info): Replace current_function_is_leaf,
412         current_function_sp_is_unchanging, and
413         current_function_uses_only_leaf_regs with new crtl fields.
414         * sdbout.c (sdbout_symbol): Likewise.
415         * df-core.c (rest_of_handle_df_initialize): Likewise.
416         * ira.c (ira): Likewise.
417         * final.c (final_start_function): Likewise.
418         * reorg.c (fill_simple_delay_slots): Likewise.
419         * regrename.c (check_new_reg_p): Likewise.
420         * stack-ptr-mod.c (notice_stack_pointer_modification_1): Likewise.
421         (notice_stack_pointer_modification): Likewise.
422         * dbxout.c (dbxout_symbol): Likewise.
423         (dbxout_parms): Likewise.
424         * sel-sched.c (init_regs_for_mode): Likewise.
425         * dwarf2out.c (dbx_reg_number): Likewise.
426         (multiple_reg_loc_descriptor): Likewise.
427         * config/i386/i386.c (ix86_frame_pointer_required): Likewise.
428         (gen_pop): Likewise.
429         (ix86_select_alt_pic_regnum): Likewise.
430         (ix86_compute_frame_layout): Likewise.
431         (ix86_finalize_stack_realign_flags): Likewise.
432         (ix86_expand_epilogue): Likewise.
433         * config/rs6000/rs6000.c (rs6000_stack_info): Likewise.
434         * config/h8300/h8300.c (byte_reg): Likewise.
435         * config/c6x/c6x.c (must_reload_pic_reg_p): Likewise.
436         (c6x_save_reg): Likewise.
437         (c6x_compute_frame_layout): Likewise.
438         * config/pa/pa.c (pa_compute_frame_size): Likewise.
439         (pa_output_function_prologue): Likewise.
440         * config/stormy16/stormy16.c (struct xstormy16_stack_layout): Likewise.
441         * config/sparc/sparc.md (attr "leaf_function"): Likewise.
442         * config/sparc/sparc.c (sparc_initial_elimination_offset): Likewise.
443         (sparc_expand_prologue): Likewise.
444         (sparc_flat_expand_prologue): Likewise.
445         (sparc_asm_function_prologue): Likewise.
446         (sparc_output_mi_thunk): Likewise.
447         (sparc_frame_pointer_required): Likewise.
448         * config/epiphany/epiphany.c (epiphany_compute_function_type):
449         Likewise.
450         (epiphany_compute_frame_size): Likewise.
451         * config/lm32/lm32.c (lm32_compute_frame_size): Likewise.
452         * config/cris/cris.c (cris_md_asm_clobbers): Likewise.
453         (cris_frame_pointer_required): Likewise.
454         * config/tilepro/tilepro.c (emit_sp_adjust): Likewise.
455         (tilepro_current_function_is_leaf): Likewise.
456         * config/arm/arm.c (arm_compute_save_reg0_reg12_mask): Likewise.
457         * config/pdp11/pdp11.c (pdp11_expand_epilogue): Likewise.
458         * config/ia64/ia64.c (find_gr_spill): Likewise.
459         (ia64_compute_frame_size): Likewise.
460         (ia64_can_eliminate): Likewise.
461         (ia64_initial_elimination_offset): Likewise.
462         * config/m68k/m68k.c (m68k_save_reg): Likewise.
463         (m68k_expand_epilogue): Likewise.
464         * config/rx/rx.c (rx_get_stack_layout): Likewise.
465         * config/tilegx/tilegx.c (tilegx_current_function_is_leaf): Likewise.
466         * config/picochip/picochip.c (picochip_can_eliminate_link_sp_save):
467         Likewise.
468         (picochip_output_frame_debug): Likewise.
469         * config/sh/sh.c (sh_media_register_for_return): Likewise.
470         (sh_allocate_initial_value): Likewise.
471         (sh_output_mi_thunk): Likewise.
472         * config/microblaze/microblaze.c (microblaze_must_save_register):
473         Likewise.
474         (compute_frame_size): Likewise.
475         (microblaze_initial_elimination_offset): Likewise.
476         (microblaze_expand_prologue): Likewise.
477         (microblaze_expand_epilogue): Likewise.
478         * config/frv/frv.c (frv_expand_epilogue): Likewise.
479         (frv_frame_pointer_required): Likewise.
480         * config/spu/spu.c (get_pic_reg): Likewise.
481         (direct_return): Likewise.
482         (spu_expand_prologue): Likewise.
483         (spu_expand_epilogue): Likewise.
484         (spu_initial_elimination_offset): Likewise.
485         * config/mips/mips.c (mips_global_pointer): Likewise.
486         (mips_cfun_might_clobber_call_saved_reg_p): Likewise.
487         (mips_compute_frame_info): Likewise.
488         * config/mep/mep.c (mep_interrupt_saved_reg): Likewise.
489         (mep_reload_pointer): Likewise.
490         * config/rl78/rl78.c (need_to_save): Likewise.
491         * config/cr16/cr16.c (cr16_compute_save_regs): Likewise.
492         * config/score/score.c (score_compute_frame_size): Likewise.
493         (score_function_prologue): Likewise.
494         * config/bfin/bfin.c (must_save_p): Likewise.
495         (expand_prologue_reg_save): Likewise.
496         (expand_epilogue_reg_restore): Likewise.
497         (bfin_frame_pointer_required): Likewise.
498         (n_regs_saved_by_prologue): Likewise.
499         (add_to_reg): Likewise.
500         (expand_interrupt_handler_prologue): Likewise.
501         (expand_interrupt_handler_epilogue): Likewise.
502         (bfin_expand_prologue): Likewise.
503         * config/avr/avr.c (avr_regs_to_save): Likewise.
504         (avr_prologue_setup_frame): Likewise.
505         (expand_epilogue): Likewise.
506         * config/s390/s390.c (s390_regs_ever_clobbered): Likewise.
507         (s390_register_info): Likewise.
508         (s390_frame_info): Likewise.
509         (s390_init_frame_layout): Likewise.
510         (s390_emit_prologue): Likewise.
513 2012-06-24  Steven Bosscher  <steven@gcc.gnu.org>
515         * system.h: Poison ASM_BYTE_OP and ASM_OUTPUT_BYTE.
516         * vmsdbgout: Do not undefine it if defined.
517         Rename local ASM_BYTE_OP definition to VMS_ASM_BYTE_OP.
518         * config/microblaze/microblaze/h: Do no define ASM_BYTE_OP.
519         * config/mep/mep.h: Do not define ASM_OUTPUT_BYTE.
521 2012-06-24  Richard Sandiford  <rdsandiford@googlemail.com>
523         * config/mips/mips.c (mips_process_sync_loop): Add missing
524         enum cast.
526 2012-06-23  Richard Henderson  <rth@redhat.com>
528         PR target/53749
529         * config/i386/i386.c (ix86_rtx_costs): Add reasonable costs for
530         V*QImode shifts and multiply.
531         (ix86_expand_vecop_qihi): Support shifts.
532         * config/i386/i386.md (any_shift): New code iterator.
533         * config/i386/sse.md (ashlv16qi3): Merge ...
534         (<any_shiftrt>v16qi3): ... into ...
535         (<any_shift><VI1_AVX2>3): ... here.  Use ix86_expand_vecop_qihi
536         to support SSE and AVX.
538         * config/i386/i386.c (ix86_expand_sse_unpack): Split operands[]
539         parameter into src and dest.
540         * config/i386/sse.md (vec_unpacku_hi_<V124_AVX2>): Update call.
541         (vec_unpacks_hi_<V124_AVX2>): Likewise.
542         (vec_unpacku_lo_<V124_AVX2>): Likewise.
543         (vec_unpacks_lo_<V124_AVX2>): Likewise.
544         * config/i386/i386-protos.h: Update.
546         * config/i386/sse.md (mul<VI1_AVX2>3): Change from insn_and_split to
547         pure expander; move expansion code ...
548         * config/i386/i386.c (ix86_expand_vecop_qihi): ... here.  New function.
549         * config/i386/i386-protos.h: Update.
551 2012-06-22  Edmar Wienskoski  <edmar@freescale.com>
553         * config/rs6000/rs6000.md (define_attr "type"): New type popcnt.
554         (popcntb<mode>2): Add attribute type popcnt.
555         (popcntd<mode>2): Ditto.
556         * config/rs6000/power4.md (define_insn_reservation): Add type popcnt.
557         * config/rs6000/power5.md (define_insn_reservation): Ditto.
558         * config/rs6000/power7.md (define_insn_reservation): Ditto.
559         * config/rs6000/476.md (define_insn_reservation): Ditto.
560         * config/rs6000/power6.md (define_insn_reservation): New
561         reservation for popcnt instructions.
563 2012-06-22  H.J. Lu  <hongjiu.lu@intel.com>
565         * doc/invoke.texi: Update -mpreferred-stack-boundary=3 warning.
567 2012-06-22  H.J. Lu  <hongjiu.lu@intel.com>
569         PR target/53383
570         * doc/invoke.texi: Add a warning for -mpreferred-stack-boundary=3.
572         * config/i386/i386.c (ix86_option_override_internal): Allow
573         -mpreferred-stack-boundary=3 for 64-bit if SSE is disabled.
575         * config/i386/i386.h (MIN_STACK_BOUNDARY): Set to 64 for 64-bit
576         if SSE is disabled.
578 2012-06-22  Bill Schmidt  <wschmidt@linux.ibm.com>
580         * double-int.c (double_int_multiple_of): New function.
581         * double-int.h (double_int_multiple_of): New decl.
582         * tree-ssa-loop-ivopts.c (add_cost, zero_cost): Remove undefs.
583         (mbc_entry_hash): New forward decl.
584         (mbc_entry_eq): Likewise.
585         (zero_cost): Change to no_cost.
586         (mult_costs): New static var.
587         (cost_tables_exist): Likewise.
588         (initialize_costs): New function.
589         (finalize_costs): Likewise.
590         (tree_ssa_iv_optimize_init): Call initialize_costs.
591         (add_cost): Change to add_regs_cost; distinguish costs by speed.
592         (multiply_regs_cost): New function.
593         (add_const_cost): Likewise.
594         (extend_or_trunc_reg_cost): Likewise.
595         (negate_reg_cost): Likewise.
596         (multiply_by_cost): Change to multiply_by_const_cost; distinguish
597         costs by speed.
598         (get_address_cost): Change add_cost to add_regs_cost; change
599         multiply_by_cost to multiply_by_const_cost.
600         (force_expr_to_var_cost): Change zero_cost to no_cost; change
601         add_cost to add_regs_cost; change multiply_by_cost to
602         multiply_by_const_cost.
603         (split_cost): Change zero_cost to no_cost.
604         (ptr_difference_cost): Likewise.
605         (difference_cost): Change zero_cost to no_cost; change multiply_by_cost
606         to multiply_by_const_cost.
607         (get_computation_cost_at): Change add_cost to add_regs_cost; change
608         multiply_by_cost to multiply_by_const_cost.
609         (determine_use_iv_cost_generic): Change zero_cost to no_cost.
610         (determine_iv_cost): Change add_cost to add_regs_cost.
611         (iv_ca_new): Change zero_cost to no_cost.
612         (tree_ssa_iv_optimize_finalize): Call finalize_costs.
613         * tree-ssa-address.c (most_expensive_mult_to_index): Change
614         multiply_by_cost to multiply_by_const_cost.
615         * tree-flow.h (multiply_by_cost): Change to multiply_by_const_cost.
616         (add_regs_cost): New decl.
617         (multiply_regs_cost): Likewise.
618         (add_const_cost): Likewise.
619         (extend_or_trunc_reg_cost): Likewise.
620         (negate_reg_cost): Likewise.
622 2012-06-22  Richard Guenther  <rguenther@suse.de>
624         Merge from graphite branch
625         2011-08-10  Sebastian Pop <sebpop@gmail.com>
626     
627         * graphite-sese-to-poly.c (build_scop_drs): Fix memory leak.
629         2012-01-13  Tobias Grosser  <tobias@grosser.es>
631         * tree-flow.h (parallelized_function_p): Declare.
632         * tree-parloops.c (parallelized_function_p): Export.
633         * graphite.c (graphite_transform_loops): Do not run graphite on
634         already parallel functions.
636 2012-06-22  Alan Modra  <amodra@gmail.com>
638         * config/rs6000/rs6000.c (rs6000_pre_atomic_barrier): Pass in and
639         return mem.  Convert to indirect addressing if not indirect or
640         indexed.  Adjust all callers.
642 2012-06-22  Richard Guenther  <rguenther@suse.de>
644         * gcov-iov.c: Include bconfig.h and system.h.
646 2012-06-22  Andreas Schwab  <schwab@linux-m68k.org>
648         * doc/include/texinfo.tex: Update to version 2012-06-05.14.
650 2012-06-22  Richard Guenther  <rguenther@suse.de>
652         PR gcov-profile/53744
653         * gcov-iov.c (main): Treat "" and "prerelease" the same.
655 2012-06-22  Eric Botcazou  <ebotcazou@adacore.com>
657         PR debug/53704
658         * dwarf2out.c (gen_compile_unit_die): Use DW_LANG_Fortran90 as language
659         for GNU Fortran if in strict DWARF2 mode.
661 2012-06-22  Eric Botcazou  <ebotcazou@adacore.com>
663         * tree-ssa-live.c (remove_unused_scope_block_p): Remove again
664         DECL_IGNORED_P non-reg vars even if they are used.
666 2012-06-21  Alexandre Oliva  <aoliva@redhat.com>
668         PR debug/53671
669         PR debug/49888
670         * var-tracking.c (vt_get_canonicalize_base): New.
671         (vt_canonicalize_addr, vt_stack_offset_p): New.
672         (vt_canon_true_dep): New.
673         (drop_overlapping_mem_locs): Use vt_canon_true_dep.
674         (clobber_overlaping_mems): Use vt_canonicalize_addr.
676 2012-06-21  Alexandre Oliva  <aoliva@redhat.com>
678         PR debug/53671
679         PR debug/49888
680         * var-tracking.c (vt_initialize): Record initial offset between
681         arg pointer and stack pointer.
683 2012-06-21  Alexandre Oliva  <aoliva@redhat.com>
685         PR debug/53671
686         PR debug/49888
687         * var-tracking.c (vt_init_cfa_base): Drop redundant recording of
688         CFA base.
690 2012-06-21  Alexandre Oliva  <aoliva@redhat.com>
692         PR debug/53671
693         PR debug/49888
694         * alias.c (memrefs_conflict_p): Improve handling of AND for
695         alignment.
697 2012-06-21  Alexandre Oliva  <aoliva@redhat.com>
699         * ddg.c (build_intra_loop_deps): Discard deps of nondebug on debug.
701 2012-06-21  Alexandre Oliva  <aoliva@redhat.com>
703         PR debug/53682
704         * cselib.c (promote_debug_loc): Don't crash on NULL argument.
706 2012-06-21  Meador Inge  <meadori@codesourcery.com>
708         PR c/53702
709         * c-decl.c (c_push_function_context): Restore the behavior to reuse
710         the language function allocated for -Wunused-local-typedefs.
711         (c_pop_function_context): If necessary, clear the language function
712         created in c_push_function_context.  Always clear out the
713         x_cur_stmt_list field of the restored language function.
715 2012-06-21   Sterling Augustine  <saugustine@google.com>
716              Cary Coutant  <ccoutant@google.com>
718         * dwarf2out.c (is_cu_die, is_namespace_die, is_class_die,
719         add_AT_pubnames, add_enumerator_pubname, want_pubnames): New functions.
720         (comdat_type_struct): New field 'skeleton_die'.
721         (breakout_comdat_types): Update it.
722         (add_pubname): Rework logic.  Call is_class_die, is_cu_die and
723         is_namespace_die.  Fix minor style violation.  Call want_pubnames.
724         (add_pubname_string): Call want_pubnames.
725         (add_pubtype): Rework logic for calculating type name.  Call
726         is_namespace_die.  Call want_pubnames.
727         (output_pubnames): Move conditional logic deciding when to produce the
728         section from dwarf2out_finish.  Use new skeleton_die field.
729         (base_type_die): Call add_pubtype.
730         (gen_enumeration_type_die): Unconditionally call add_pubtype.
731         (gen_subprogram_die): Adjust calls to add_pubname.
732         (gen_namespace_die): Call add_pubname_string.
733         (dwarf2out_finish): Call add_AT_pubnames; Move logic on when to
734         produce pubnames and pubtypes sections to output_pubnames.
735         * common.opt (-gpubnames): New option.
736         * doc/invoke.texi: Document it.
738 2012-06-21  Steven Bosscher  <steven@gcc.gnu.org>
740         * config/m32c/m32c-pragma.c: Remove unnecessary includes.
742 2012-06-21  Michael Matz  <matz@suse.de>
744         PR middle-end/53688
745         * builtins.c (get_memory_rtx): Always build an all-aliasing MEM_REF
746         with correct size.
748 2012-06-21  Richard Guenther  <rguenther@suse.de>
750         * tree-inline.c (estimate_num_insns): Estimate call cost for
751         tailcalls properly.
753 2012-06-20  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
755         * tree.h (DECL_SOURCE_COLUMN): New accessor.
757 2012-06-20  Uros Bizjak  <ubizjak@gmail.com>
759         * config/i386/i386.md (SINCOS): New int iterator.
760         (sincos): New int attribute.
761         (*<sincos>xf2_i387): Macroize insn from *{sin,cos}xf2_i387 using
762         SINCOS int iterator.
763         (*<sincos>_extend<mode>xf2_i387): Macroize insn from
764         *{sin,cos}_extend<mode>xf2_i387 using SINCOS int iterator.
766 2012-06-20  Uros Bizjak  <ubizjak@gmail.com>
768         * config/i386/i386.md (RDFSGSBASE): New int iterator.
769         (WRFSGSBASE): Ditto.
770         (fsgs): New int attribute.
771         (rd<fsgs>base<mode>): Macroize insn from rd<fsgs>base<mode> using
772         RDFSGSBASE int iterator.
773         (wr<fsgs>base<mode>): Macroize insn from wr<fsgs>base<mode> using
774         WRFSGSBASE int iterator.
776 2012-06-20  Uros Bizjak  <ubizjak@gmail.com>
778         * config/i386/i386.md (<rounding_insn><mode>2): Macroize expander
779         from {floor,ceil,btrunc}<mode>2 using FIST_ROUNDING int iterator.
780         (l<rounding_insn><MODEF:mode><SWI48:mode>2): Macroize expander
781         from l{floor,ceil}<MODEF:mode><SWI48:mode>2 using FIST_ROUNDING
782         int iterator.
784 2012-06-20  Steven Bosscher  <steven@gcc.gnu.org>
786         * system.h: Poison ASM_OUTPUT_IDENT and IDENT_ASM_OP.
788 2012-06-20  Richard Guenther  <rguenther@suse.de>
790         PR tree-optimization/30318
791         * tree-vrp.c (range_int_cst_p): Do not reject overflowed
792         constants here.
793         (range_int_cst_singleton_p): But explicitely here.
794         (zero_nonzero_bits_from_vr): And here.
795         (extract_range_from_binary_expr_1): Re-implement PLUS_EXPR
796         to cover all cases we can perform arbitrary precision
797         arithmetic with double-ints.
798         (intersect_ranges): Handle adjacent anti-ranges.
800 2012-06-20  Uros Bizjak  <ubizjak@gmail.com>
802         * config/i386/i386.md (rounding_insn): New int attribute.
803         (<rounding_insn>xf2): Macroize insn from
804         {floor,ceil,btrunc}xf2 using FRNDINT_ROUNDING int iterator.
805         (l<rounding_insn>xf<mode>2): Rename from l<rounding>xf<mode>2.
807 2012-06-20  Uros Bizjak  <ubizjak@gmail.com>
809         * config/i386/i386.md (IEEE_MAXMIN): New int iterator.
810         (ieee_maxmin): New int attribute.
811         (*ieee_s<ieee_maxmin><mode>3): Macroize insn from
812         *ieee_s{max,min}<mode>3 using IEEE_MAXMIN int iterator.
814 2012-06-20  Steven Bosscher  <steven@gcc.gnu.org>
816         * config/arm/arm.h (EMIT_EABI_ATTRIBUTE): Remove.
817         * config/arm/arm.c: Do not include c-pragma.h.
818         (arm_emit_eabi_attribute): New function based on EMIT_EABI_ATTRIBUTE.
819         (arm_file_start): Replace uses of EMIT_EABI_ATTRIBUTE with calls
820         to arm_emit_eabi_attribute.
821         * arm-c.c: Do not include output.h.
822         (arm_output_c_attributes): Replace use of EMIT_EABI_ATTRIBUTE with a
823         call to arm_emit_eabi_attribute.
824         * config/arm/arm-protos.h (arm_emit_eabi_attribute): Prototype it.
826 2012-06-20  Richard Guenther  <rguenther@suse.de>
828         * tree-vect-data-refs.c (vect_can_force_dr_alignment_p):
829         Allow adjusting alignment of user-aligned decls again.
831 2012-06-20  Steven Bosscher  <steven@gcc.gnu.org>
833         * config/rl78/rl78-c.c: Remove unnecessary includes.
835 2012-06-20  Steven Bosscher  <steven@gcc.gnu.org>
837         * config/cris/cris.c: Include cgraph.h.
838         (cris_option_override): Do not set non-existing flag_no_gcc_ident.
840 2012-06-19  Maxim Kuvyrkov  <maxim@codesourcery.com>
842         * emit-rtl.c (need_atomic_barrier_p): New function.
843         * emit-rtl.h (need_atomic_barrier_p): Declare it.
844         * config/alpha/alpha.c (alpha_{pre,post}_atomic_barrier): Use it.
845         * config/arm/arm.c (arm_{pre,post}_atomic_barrier): Use it.
846         * config/tilegx/tilegx.c (tile_{pre,post}_atomic_barrier): Use it.
847         * config/mips/mips.c (mips_{pre,post}_atomic_barrier_p): Remove.
848         (mips_process_sync_loop): Use generic version instead.
850 2012-06-19  Maxim Kuvyrkov  <maxim@codesourcery.com>
852         * config/mips/mips.c (mips_process_sync_loop): Emit cmp result only if
853         it is used.
855 2012-06-19  Tom de Vries  <vries@codesourcery.com>
856             Maxim Kuvyrkov  <maxim@codesourcery.com>
858         * config/mips/constraints.md (ZR): New constraint.
859         * config/mips/predicates.md (mem_noofs_operand): New predicate.
860         * config/mips/mips.c (mips_print_operand): Handle new print modifier.
861         * config/mips/mips.h (TARGET_XLP): Define.
862         (TARGET_SYNC_AFTER_SC): Update.
863         (ISA_HAS_SWAP, ISA_HAS_LDADD): Define.
864         * config/mips/sync.md (atomic_exchange, atomic_fetch_add): Use
865         XLP-specific swap and ldadd patterns.
866         (atomic_exchange_swap, atomic_fetch_add_ldadd): New patterns.
868 2012-06-19  Tom de Vries  <vries@codesourcery.com>
869             Maxim Kuvyrkov  <maxim@codesourcery.com>
871         * config/mips/mips.c (mips_emit_pre_atomic_barrier_p,)
872         (mips_emit_post_atomic_barrier_p): New static functions.
873         (mips_process_sync_loop): Use them.  Emit sync memory barriers in
874         accordance with memory model semantics.  Add return of CMP result for
875         compare_and_swap.
876         * config/mips/mips.md: Update comment.
877         (sync_cmp): New attribute.
878         (sync_memmodel): New attribute replacing sync_release_barrier.
879         * config/mips/sync.md (UNSPEC_ATOMIC_COMPARE_AND_SWAP,)
880         (UNSPEC_ATOMIC_EXCHANGE, UNSPEC_ATOMIC_FETCH_OP): New constants.
881         (sync_lock_test_and_set, test_and_set_12): Update.
882         (atomic_compare_and_swap, atomic_exchange, atomic_exchange_llsc,)
883         (atomic_fetch_add, atomic_fetch_add_llsc): New patterns.
885 2012-06-19  Joseph Myers  <joseph@codesourcery.com>
887         * config/rs6000/spe.md (*mov_si<mode>_e500_subreg0): Rename to
888         mov_si<mode>_e500_subreg0.
889         (*mov_si<mode>_e500_subreg0_elf_low)
890         (*mov_si<mode>_e500_subreg4_elf_low): New patterns.
892 2012-06-19  Richard Henderson  <rth@redhat.com>
894         * config/alpha/alpha.c: Include params.h.
895         (alpha_option_override): Initialize PARAM_L1_CACHE_LINE_SIZE,
896         PARAM_L1_CACHE_SIZE, PARAM_L2_CACHE_SIZE for the cpu tuning.
898 2012-06-19  Steven Bosscher  <steven@gcc.gnu.org>
900         * doc/tm.texi.in (TARGET_OBJC_DECLARE_UNRESOLVED_CLASS_REFERENCE,
901         TARGET_OBJC_DECLARE_CLASS_DEFINITION): Add @hooks.
902         (ASM_DECLARE_CLASS_REFERENCE, ASM_DECLARE_UNRESOLVED_REFERENCE):
903         Remove.
904         * doc/tm.texi: Regenerate.
905         * config/darwin.h (ASM_OUTPUT_LABELREF): Remove special case for
906         .objc_class_name_*.
907         * config/darwin-c.c: Include target.h.
908         (darwin_objc_declare_unresolved_class_reference): New function.
909         (darwin_objc_declare_class_definition): New function.
910         (TARGET_OBJC_DECLARE_UNRESOLVED_CLASS_REFERENCE): Define.
911         (TARGET_OBJC_DECLARE_CLASS_DEFINITION): Define.
913 2012-06-19  Steven Bosscher  <steven@gcc.gnu.org>
915         * target.def (output_ident): New hook.
916         * targhooks.h (default_asm_output_ident_directive): Add prototype.
917         * varasm.c (assemble_asm): Only prefix a tab if the string does not
918         already start with one.
919         (default_asm_output_ident_directive): New function to emit
920         .ident as a top-level asm node while parsing, or directly to
921         asm_out_file after parsing.
922         * toplev.c (compile_file): Print a GCC .ident with
923         targetm.asm_out.output_ident.
924         * doc/tm.texi.in (ASM_OUTPUT_IDENT): Remove documentation for macro.
925         (TARGET_ASM_OUTPUT_IDENT): Add @hook for this.
926         * doc/tm.texi: Update.
928         * config/elfos.h (ASM_OUTPUT_IDENT, IDENT_ASM_OP): Remove.
929         (TARGET_ASM_OUTPUT_IDENT): Define.
930         * config/i386/djgpp.h (IDENT_ASM_OP): Remove.
931         * config/i386/gas.h (ASM_OUTPUT_IDENT): Remove.
932         * config/arm/aout.h (ASM_OUTPUT_IDENT): Remove.
933         * config/sparc/sparc.h (IDENT_ASM_OP): Remove.
934         (TARGET_ASM_OUTPUT_IDENT): Define.
935         * config/picochip/picochip.h (IDENT_ASM_OP): Remove.
936         (TARGET_ASM_OUTPUT_IDENT): Define.
938         * config/cris/cris-protos.h (cris_asm_output_ident): Add prototype.
939         * config/cris/cris.c (cris_asm_output_ident): New function.
940         * config/cris/cris.h (ASM_OUTPUT_IDENT, IDENT_ASM_OP): Remove.
942         * config/microblaze/microblaze-protos.h (microblaze_asm_output_ident):
943         Add prototype.
944         * config/microblaze/microblaze.c: Include cgraph.h for add_asm_node.
945         (microblaze_asm_output_ident): Rewrite to work similar to
946         default_asm_output_ident_directive for front-end .idents.
947         * config/microblaze/microblaze.h (ASM_OUTPUT_IDENT): Remove.
948         (TARGET_ASM_OUTPUT_IDENT): Define.
950         * config/mips/mips.h (ASM_OUTPUT_IDENT): Remove.
951         * config/mips/sde.h (IDENT_ASM_OP, ASM_OUTPUT_IDENT): Remove.
953         * config/rx/rx.c: Include cgraph.h for add_asm_node.
954         (rx_asm_output_ident): New function, similar to
955         default_asm_output_ident_directive, but handle AS100 syntax also, so
956         that #ident also works for rx in AS100 syntax.
957         (TARGET_ASM_OUTPUT_IDENT): Define.
958         * config/rx/rx.h (IDENT_ASM_OP): Remove.
960         * Makefile.in: Fix dependencies for c-family/c-lex.o.
962 2012-06-19  Uros Bizjak  <ubizjak@gmail.com>
964         * config/i386/i386.md (FIST_ROUNDING): New int iterator.
965         (rounding): Handle UNSPEC_FIST_{FLOOR,CEIL}.
966         (ROUNDING): Ditto.
967         (*fist<mode>2_<rounding>_1): Macroize insn from
968         *fist<mode>2_{floor,ceil}_1 using FIST_ROUNDING int iterator.
969         (fistdi2_<rounding>): Macroize insn from
970         fistdi2_{floor,ceil} using FIST_ROUNDING int iterator.
971         (fistdi2_<rounding>_with_temp and splitters): Macroize insn and
972         corresponding splitters from fistdi2_{floor,ceil} and corresponding
973         splitters using FIST_ROUNDING int iterator.
974         (fist<mode>2_<rounding>): Macroize insn from
975         fist<mode>2_{floor,ceil} using FIST_ROUNDING int iterator.
976         (fist<mode>2_<rounding>_with_temp and splitters): Macroize insn and
977         corresponding splitters from fist<mode>2_{floor,ceil} and corresponding
978         splitters using FIST_ROUNDING int iterator.
979         (l<rounding>xf<mode>2): Macroize expander from l{floor,ceil}xf<mode>2
980         using FIST_ROUNDING int iterator.
982 2012-06-19  Richard Henderson  <rth@redhat.com>
984         * config/i386/i386-protos.h (ix86_expand_sse2_mulv4si3): Declare.
985         * config/i386/i386.c (ix86_expand_sse2_mulv4si3): New.
986         * config/i386/predicates.md (nonimmediate_or_const_vector_operand): New.
987         * config/i386/sse.md (sse2_mulv4si3): Delete.
988         (mul<VI4_AVX2>3): Use ix86_expand_sse2_mulv4si3 and
989         nonimmediate_or_const_vector_operand.
991 2012-06-19  Richard Henderson  <rth@redhat.com>
993         * expmed.c (struct init_expmed_rtl): Split ...
994         (init_expmed_one_mode): ... out of ...
995         (init_expmed): ... here.  Initialize integer vector modes also.
996         (synth_mult): Handle integer vector modes.
997         (choose_mult_variant): Likewise.
998         (expand_mult_const): Likewise.
999         (expand_mult): Likewise.
1000         * machmode.h (GET_MODE_UNIT_BITSIZE): New.
1002 2012-06-19  Richard Henderson  <rth@redhat.com>
1004         * config/i386/i386.c (ix86_rtx_costs): Handle CONST_VECTOR, and
1005         integral vector modes.
1007 2012-06-19  Uros Bizjak  <ubizjak@gmail.com>
1009         * config/i386/i386.md (FRNDINT_ROUNDING): New int iterator.
1010         (rounding): New int attribute.
1011         (ROUNDING): Ditto.
1012         (frndintxf2_<rounding>): Macroize insn from
1013         frndintxf2_{floor,ceil,trunc} using FRNDINT_ROUNDING int iterator.
1014         (frndintxf2_<rounding>_i387): Macroize insn from
1015         frndintxf2_{floor,ceil,trunc}_i387 using FRNDINT_ROUNDING int iterator.
1017 2012-06-19  Richard Guenther  <rguenther@suse.de>
1019         * tree-vrp.c (union_ranges): New function.
1020         (vrp_meet_1): Use union_ranges.
1021         (vrp_meet): Dump what we union and call vrp_meet_1.
1023 2012-06-19  Richard Earnshaw  <rearnsha@arm.com>
1025         * arm.md (enum unspec): Delete UNSPEC_SIN and UNSPEC_COS.
1026         (attr type): Remove fmul, ffmul, farith, ffarith, float_em
1027         f_fpa_load, f_fpa_store, f_mem_r, r_mem_f.
1028         (attr write_conflict, attr core_cycles): Update.
1029         * arm-generic.md (r_mem_f_wbuf): Delete reservation.
1031 2012-06-19  Richard Guenther  <rguenther@suse.de>
1033         * tree-vrp.c (intersect_ranges): Handle more cases.
1034         (vrp_intersect_ranges): Dump what we intersect and call ...
1035         (vrp_intersect_ranges_1): ... this.
1037 2012-06-19  Richard Guenther  <rguenther@suse.de>
1039         PR tree-optimization/53708
1040         * tree-vect-data-refs.c (vect_can_force_dr_alignment_p): Preserve
1041         user-supplied alignment and alignment of decls with the used
1042         attribute.
1044 2012-06-18  Lawrence Crowl  <crowl@google.com>
1046         * timevar.def (TV_PHASE_GENERATE): Rename to TV_PHASE_LATE_ASM.
1047         (TV_PHASE_CGRAPH): Rename to TV_PHASE_OPT_GEN.
1048         (TV_PHASE_STREAM_IN): New.
1049         (TV_PHASE_STREAM_OUT): New.
1050         * timevar.c (validate_phases): New.
1051         (timevar_print): Call validate_phases.
1052         * c-decl.c (c_write_global_declarations): Rename use of TV_PHASE_CGRAPH
1053         to TV_PHASE_OPT_GEN.
1054         * langhooks.c (write_global_declarations): Rename use of
1055         TV_PHASE_CGRAPH to TV_PHASE_OPT_GEN.  Use TV_PHASE_DBGINFO instead of
1056         TV_PHASE_CHECK_DBGINFO.
1057         * toplev.c (compile_file): Rename use of TV_PHASE_GENERATE to
1058         TV_PHASE_LATE_ASM.  Move start of TV_PHASE_LATE_ASM to after call to
1059         lang_hooks.decls.final_write_globals.
1061 2012-06-18  David Edelshn  <dje.gcc@gmail.com>
1063         * config/rs6000/aix52.h (TARGET_EXTRA_BUILTINS): Define as 0.
1065 2012-06-18  Uros Bizjak  <ubizjak@gmail.com>
1067         PR target/53712
1068         * config/i386/sse.md (*sse4_2_pcmpestr_unaligned): New.
1069         (*sse4_2_pcmpistr_unaligned): New.
1071 2012-06-18  Ian Bolton  <ian.bolton@arm.com>
1072             Sameera Deshpande  <sameera.deshpande@arm.com>
1073             Greta Yorsh  <greta.yorsh@arm.com>
1075         * config/arm/arm-protos.h (arm_output_epilogue): Remove.
1076         * config/arm/arm.c (print_multi_reg): Remove.
1077         (vfp_output_fldmd): Likewise.
1078         (arm_output_epilogue): Likewise.
1079         * config/arm/arm.md (epilogue_insns): Update condition and code.
1081 2012-06-18  Ian Bolton  <ian.bolton@arm.com>
1082             Sameera Deshpande  <sameera.deshpande@arm.com>
1083             Greta Yorsh  <greta.yorsh@arm.com>
1085         * config/arm/arm-protos.h (thumb2_expand_return): New declaration.
1086         * config/arm/arm.c (thumb2_expand_return): New function.
1087         * config/arm/arm.md (return): Update condition and code.
1089 2012-06-18  Ian Bolton  <ian.bolton@arm.com>
1090             Sameera Deshpande  <sameera.deshpande@arm.com>
1091             Greta Yorsh  <greta.yorsh@arm.com>
1093         * config/arm/arm-protos.h (output_return_instruction): New parameter
1094         and int to bool change of parameter types.
1095         * config/arm/arm.c (output_return_instruction): Likewise.
1096         * config/arm/arm.md (arm_simple_return): New pattern.
1097         (arm_return, cond_return, cond_return_inverted): Add new arguments.
1098         * config/arm/thumb2.md (thumb2_return): Update condition and code.
1100 2012-06-18  Ian Bolton  <ian.bolton@arm.com>
1101             Sameera Deshpande  <sameera.deshpande@arm.com>
1102             Greta Yorsh  <greta.yorsh@arm.com>
1104         * config/arm/arm-protos.h (arm_expand_epilogue): New declaration.
1105         * config/arm/arm.c (arm_expand_epilogue): New function.
1106         * config/arm/arm.md (epilogue): Update condition and code.
1107         (sibcall_epilogue): Likewise.
1109 2012-06-18  Ian Bolton  <ian.bolton@arm.com>
1110             Sameera Deshpande  <sameera.deshpande@arm.com>
1111             Greta Yorsh  <greta.yorsh@arm.com>
1113         * config/arm/arm.c (arm_expand_epilogue_apcs_frame): New function.
1114         * config/arm/arm.md (arm_addsi3) Add an alternative.
1116 2012-06-18  Ian Bolton  <ian.bolton@arm.com>
1117             Sameera Deshpande  <sameera.deshpande@arm.com>
1118             Greta Yorsh  <greta.yorsh@arm.com>
1120         * config/arm/arm.md (vfp_pop_multiple_with_writeback) New define_insn.
1121         * config/arm/predicates.md (pop_multiple_fp) New special predicate.
1122         * config/arm/arm.c (arm_emit_vfp_multi_reg_pop): New function.
1124 2012-06-18  Ian Bolton  <ian.bolton@arm.com>
1125             Sameera Deshpande  <sameera.deshpande@arm.com>
1126             Greta Yorsh  <greta.yorsh@arm.com>
1128         * config/arm/arm.md (load_multiple_with_writeback) New define_insn.
1129         (load_multiple, pop_multiple_with_writeback_and_return) Likewise.
1130         (pop_multiple_with_return, ldr_with_return) Likewise.
1131         * config/arm/predicates.md (pop_multiple_return) New special predicate.
1132         * config/arm/arm-protos.h (arm_output_multireg_pop) New declaration.
1133         * config/arm/arm.c (arm_output_multireg_pop) New function.
1134         (arm_emit_multi_reg_pop): New function.
1136 2012-06-18  Greta Yorsh  <Greta.Yorsh@arm.com>
1138         * config/arm/arm.c (ldm_stm_operation_p): Require SP
1139         as base register for loads if SP is in the register list.
1141 2012-06-18  Richard Guenther  <rguenther@suse.de>
1143         PR tree-optimization/53693
1144         * tree-vect-patterns.c (vect_operation_fits_smaller_type):
1145         Reject operands with more than one use.
1147 2012-06-18  Bill Schmidt  <wschmidt@linux.ibm.com>
1149         PR tree-optimization/53703
1150         * tree-ssa-phiopt.c (hoist_adjacent_loads): Skip virtual phis;
1151         correctly set bb_for_def[12].
1153 2012-06-18  Steven Bosscher  <steven@gcc.gnu.org>
1155         * config/vax/vax.h (VMS_TARGET): Remove.
1157 2012-06-18  Richard Guenther  <rguenther@suse.de>
1159         * tree-vrp.c (extract_range_from_assert): Split out range
1160         intersecting code.
1161         (intersect_ranges): New function.
1162         (vrp_intersect_ranges): Likewise.
1164 2012-06-18  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
1166         * config/s390/s390.c (s390_gimplify_va_arg): Revert change from
1167         r187965.
1169 2012-06-18  Tejas Belagod  <tejas.belagod@arm.com>
1171         * doc/md.texi: Document int iterators.
1172         * read-rtl.c (ints): New iterator group.
1173         (find_int): Int iterator group callback.
1174         (apply_int_iterator): Likewise.
1175         (apply_iterators): Traverse int iterator table and add all the used
1176         iterators to list.
1177         (initialize_iterators): Initialize data structures and callbacks for
1178         int iterators.
1179         (read_rtx): Parse and read mappings for int iterators.
1180         (read_rtx_code): Record int iterator usage.
1182 2012-06-18  Richard Sandiford  <rdsandiford@googlemail.com>
1184         PR middle-end/53698
1185         * expr.c (expand_expr_addr_expr_1): Convert to tmode before
1186         performing an addition.
1188 2012-06-17  Steven Bosscher  <steven@gcc.gnu.org>
1190         * output.h (split_double): Move prototype to rtl.h.
1191         (constructor_static_from_elts_p): Move prototype to tree.c.
1192         * rtl.h (split_double): Moved here from output.h.
1193         * tree.h (constructor_static_from_elts_p): Moved here from output.h.
1194         * final.c (split_double): Move from here ...
1195         * rtlanal.c (split_double): ... to here.
1196         * expr.c: Do not include output.h.
1198 2012-06-17  Steven Bosscher  <steven@gcc.gnu.org>
1200         * cfglayout.h: Remove.
1201         * cfglayout.c: Remove.
1202         * function.h (struct function): Remove x_last_location field.
1203         * function.c: Do not include cfglayout.h.
1204         (expand_function_start): Do not call no-op force_next_line_note.
1205         (expand_function_end): Likewise.
1206         * cfgrtl.c: Do not include cfglayout.h.  Include gt-cfgrtl.h.
1207         (unlink_insn_chain): Moved here from cfglayout.c.
1208         (skip_insns_after_block, label_for_bb, record_effective_endpoints,
1209         into_cfg_layout_mode, outof_cfg_layout_mode,
1210         pass_into_cfg_layout_mode, pass_outof_cfg_layout_mode,
1211         relink_block_chain, fixup_reorder_chain, verify_insn_chain,
1212         fixup_fallthru_exit_predecessor, force_one_exit_fallthru,
1213         cfg_layout_can_duplicate_bb_p, duplicate_insn_chain,
1214         cfg_layout_duplicate_bb, cfg_layout_initialize, break_superblocks,
1215         cfg_layout_finalize): Likewise.
1216         (rtl_can_remove_branch_p): Likewise.
1217         * rtl.h (insn_scope): Move prototype from cfglayout.h here.
1218         (duplicate_insn_chain): Likewise.
1219         (force_next_line_note): Remove prototype.
1220         * emit-rtl.c: Do not include tree-flow.h, egad.  Include vecprim.h.
1221         (last_location): Remove #define to emit.x_last_location.
1222         (force_next_line_note): Remove no-op function.
1223         (init_emit): Don't set x_last_location.
1224         (block_locators_locs, block_locators_blocks, locations_locators_locs,
1225         locations_locators_vals, prologue_locator, epilogue_locator,
1226         curr_location, last_location, curr_block, last_block, curr_rtl_loc):
1227         Move POD to here from cfglayout.c.
1228         (insn_locators_alloc, insn_locators_finalize, insn_locators_free,
1229         set_curr_insn_source_location, get_curr_insn_source_location,
1230         set_curr_insn_block, get_curr_insn_block, curr_insn_locator,
1231         locator_scope, insn_scope, locator_location, locator_line, insn_line,
1232         locator_file, insn_file, locator_eq): Move to here from cfglayout.c.
1233         * cfghooks.h: Remove double-include protection.
1234         (can_copy_bbs_p, copy_bbs): Move prototypes from cfglayout.h to here.
1235         * cfghooks.c (can_copy_bbs_p, copy_bbs): Move to here from cfglayout.c.
1236         * final.c: Do not include cfglayout.h.
1237         (choose_inner_scope, change_scope): Move to here from cfglayout.c.
1238         (reemit_insn_block_notes): Likewise.  Make static.
1239         * tree-flow.h (tree_could_trap_p, operation_could_trap_helper_p,
1240         operation_could_trap_p, tree_could_throw_p): Move from here...
1241         * tree.h: ... to here.
1242         * gengtype.c (open_base_files): Remove cfglayout.h from the list.
1243         * profile.c: Do not include cfghooks.h.
1244         * cfgloopmanip.c: Do not include cfglayout.h and cfghooks.h.
1245         * modulo-sched.c: Likewise.
1246         * loop-unswitch.c: Do not include cfglayout.h.
1247         * sched-ebb.c: Likewise.
1248         * tracer.c: Likewise.
1249         * ddg.c: Likewise.
1250         * tree-vect-loop-manip.c: Likewise.
1251         * loop-init.c: Likewise.
1252         * dwarf2out.c: Likewise.
1253         * hw-doloop.c: Likewise.
1254         * loop-unroll.c: Likewise.
1255         * cfgcleanup.c: Likewise.
1256         * bb-reorder.c: Likewise.
1257         * sched-rgn.c: Likewise.
1258         * tree-cfg.c: Likewise.
1259         * config/alpha/alpha.c: Likewise.
1260         * config/spu/spu.c: Likewise.
1261         * config/sparc/sparc.c: Likewise.
1262         * config/sh/sh.c: Likewise.
1263         * config/c6x/c6x.c: Likewise.
1264         * config/ia64/ia64.c: Likewise.
1265         * config/rs6000/rs6000.c: Likewise.
1266         * config/score/score.c: Likewise.
1267         * config/mips/mips.c: Likewise.
1268         * config/bfin/bfin.c: Likewise.
1269         * Makefile.in (CFGAYOUT_H): Remove, and fixup users.
1270         * config/rs6000/t-rs6000 (rs6000.o): Do not depend on cfglayout.h.
1271         * config/spu/t-spu-elf (spu.o: $): Likewise.
1272         * config/sparc/t-sparc (sparc.o): Do not depend on CFGLAYOUT_H.
1274 2012-06-17  Steven Bosscher  <steven@gcc.gnu.org>
1276         * cfgloop.h: Do not include rtl.h.
1277         (enum iv_extend_code): New.
1278         (struct rtx_iv): Use iv_extend_code instead of rtx_code.
1279         * Makefile.in (CFGLOOP_H): Do not depend on RTL_H.
1280         * loop-iv.c (iv_extend_to_rtx_code): New function to translate
1281         an IV_EXTEND_CODE to an RTX_CODE.
1282         (dump_iv_info): Update for rtx_iv field type change.
1283         (iv_constant): Likewise.
1284         (iv_subreg): Likewise.
1285         (iv_extend): Likewise.
1286         (iv_neg): Likewise.
1287         (iv_add): Likewise.
1288         (iv_mult): Likewise.
1289         (iv_shift): Likewise.
1290         (get_biv_step_1): Likewise.
1291         (get_biv_step): Likewise.
1292         (iv_analyze_biv): Likewise.
1293         (get_iv_value): Likewise.
1294         (shorten_into_mode): Likewise.
1295         (canonicalize_iv_subregs): Likewise.
1296         * sese.c (sese_build_liveouts): Use MAY_HAVE_DEBUG_STMTS instead
1297         of MAY_HAVE_DEBUG_INSNS.
1298         * tree-ssa-loop-ivopts.c: Include recog.h after expr.h.
1299         * tree-ssa-loop-prefetch.c: Likewise.
1301 2012-06-17  Steven Bosscher  <steven@gcc.gnu.org>
1303         * expmed.c (ceil_log2): Move from here...
1304         * hwint.c: ... to here for older GCCs...
1305         * hwint.h: ... and here for newer GCCs.
1306         * rtl.h (ceil_log2): Remove prototype.
1308         * tree-phinodes.c: Do not include rtl.h.
1309         * Makefile.in (tree-phinodes.o): Do not depend on RTL_H.
1311 2012-06-17  Steven Bosscher  <steven@gcc.gnu.org>
1313         * config/cris/cris.h (TARGET_ELF): Remove.
1314         (FORCE_EH_FRAME_INFO_IN_DATA_SECTION): Remove.
1315         (CRIS_ASM_OUTPUT_ALIGNED_DECL_COMMON): Simpify using TARGET_ELF==1.
1316         (LOCAL_LABEL_PREFIX): Likewise.
1317         * config/cris/cris.c (cris_target_asm_named_section): Remove.
1318         (cris_option_override): Simpify using TARGET_ELF==1.
1319         (cris_file_start): Likewise.
1320         * config/cris/cris-protos.h (cris_target_asm_named_section): Remove.
1322 2012-06-17  Uros Bizjak  <ubizjak@gmail.com>
1324         * config/i386/sse.md (vcvtph2ps): Fix vec_select selector.
1326 2012-06-16  Eric Botcazou  <ebotcazou@adacore.com>
1328         PR middle-end/53590
1329         * tree-inline.c (initialize_cfun): Copy can_delete_dead_exceptions.
1331 2012-06-15  Easwaran Raman  <eraman@google.com>
1333         * passes.c (init_optimization_passes): Remove pass_call_cdce
1334         from its current position and insert after pass_dce.
1336 2012-06-15  Walter Lee  <walt@tilera.com>
1338         * config/tilegx/sync.md (atomic_fetch_<fetchop_name><mode>): Fix typo.
1340 2012-06-15  Richard Earnshaw  <rearnsha@arm.com>
1342         * arm.c (note_invalid_constants): Don't return a result.
1343         (arm_memory_load_p): Delete function.
1344         (arm_const_double_rtx): Delete iterator variable i;
1345         (fp_immediate_constant): Likewise.
1346         (fp_const_from_val): Likewise.
1348         * arm.c (arm_init_iwmmxt_builtins): Delete void_ftype_void.
1350 2012-06-15  Marc Glisse  <marc.glisse@inria.fr>
1352         PR c++/51033
1353         * c-typeck.c (c_build_vec_perm_expr): Move to c-family/c-common.c.
1354         * c-tree.h (c_build_vec_perm_expr): Move to c-family/c-common.h.
1356 2012-06-15  Georg-Johann Lay  <avr@gjlay.de>
1358         * config/avr/avr.c (avr_default_expand_builtin): New function.
1359         (avr_expand_builtin): Use it.
1360         (avr_expand_unop_builtin): Remove.
1361         (avr_expand_binop_builtin): Remove.
1362         (avr_expand_triop_builtin): Remove.
1364 2012-06-15  Michael Matz  <matz@suse.de>
1366         PR middle-end/38474
1367         * cfgexpand.c (add_alias_set_conflicts): Remove.
1368         (expand_used_vars): Don't call it.
1369         (aggregate_contains_union_type): Remove.
1370         * function.c (n_temp_slots_in_use): New static data.
1371         (make_slot_available, assign_stack_temp_for_type): Update it.
1372         (init_temp_slots): Zero it.
1373         (remove_unused_temp_slot_addresses): Use it for quicker removal.
1374         (remove_unused_temp_slot_addresses_1): Use htab_clear_slot.
1376 2012-06-15  Michael Matz  <matz@suse.de>
1378         * gimplify.c (gimplify_compound_literal_expr): Take gimple_test_f
1379         argument, don't emit assign statement if value is directly usable.
1380         (gimplify_expr): Adjust.
1382 2012-06-15  Michael Matz  <matz@suse.de>
1384         * gimplify.c (gimplify_modify_expr): Fold generated statements.
1385         * gimple-fold.c (can_refer_decl_in_current_unit_p): Check flag_ltrans.
1387 2012-06-15  Richard Guenther  <rguenther@suse.de>
1389         * tree-vrp.c (set_and_canonicalize_value_range): Use canonical
1390         predicates to set VR_UNDEFINED and VR_VARYING.  Drop a case
1391         we assert for in set_value_range to VR_VARYING.
1393 2012-06-15  Richard Earnshaw  <rearnsha@arm.com>
1395         * arm.md (addsf3, adddf3): Use s_register_operand.
1396         (subsf3, subdf3): Likewise.
1397         (mulsf3, muldf3): Likewise.
1398         (difsf3, divdf3): Likewise.
1399         (movsfcc, movdfcc): Likewise.
1400         * predicates.md (f_register_operand): Delete.
1401         (arm_float_rhs_operand): Delete.
1402         (arm_float_add_operand): Delete.
1403         (arm_float_compare_operand): Use s_register_operand when
1404         there's no VFP.
1405         (cirrus_register_operand): Delete.
1406         (cirrus_fp_register): Delete.
1407         (cirrus_shift_const): Delete.
1408         (cmpdi_operand): Remove Maverick support.
1409         * constraints.md (f, v, H): Delete constraints.
1410         (G): Update documentation.
1411         * arm.c (fp_consts_inited): Convert to bool.
1412         (strings_fp): Delete.
1413         (values_fp): Delete.
1414         (value_fp0): New variable.
1415         (init_fp_table): Simplify logic.
1416         (arm_const_double_rtx): Likewise.
1417         (fp_immediate_constant): Likewise.
1418         (fp_const_from_val): Likewise.
1419         (neg_const_double_rtx_ok_for_fpa): Delete.
1420         * doc/md.texi (ARM constraints): Update documentation.
1422 2012-06-15  Ulrich Weigand  <ulrich.weigand@linaro.org>
1424         PR tree-optimization/53636
1425         * tree-vect-data-refs.c (vect_compute_data_ref_alignment): Verify
1426         stride when doing basic-block vectorization.
1428 2012-06-15  Ramana Radhakrishnan  <ramana.radhakrishnan@linaro.org>
1430         * tree-vect-generic.c (lower_vec_perm): Propagate vector constants
1431         into VEC_PERM_EXPR.
1433 2012-06-15  Jakub Jelinek  <jakub@redhat.com>
1435         * tree-vect-patterns.c (vect_pattern_recog): Don't unnecessarily
1436         allocate and free bbs array for the SLP case.
1438         PR tree-optimization/51581
1439         * expr.h (choose_multiplier): New prototype.
1440         * expmed.c (choose_multiplier): No longer static.
1441         Change multiplier_ptr from rtx * to UHWI *.
1442         (expand_divmod): Adjust callers.
1443         * tree-vect-patterns.c (vect_recog_sdivmod_pow2_pattern): Renamed to...
1444         (vect_recog_divmod_pattern): ... this.  Pass bb_vinfo as last
1445         argument to new_stmt_vec_info.  Attempt to optimize also divisions
1446         by non-pow2 constants if integer vector division isn't supported.
1447         * tree-vect-stmts.c (vect_analyze_stmt): If node != NULL,
1448         don't look at pattern stmts and sequences.
1450 2012-06-15  Eric Botcazou  <ebotcazou@adacore.com>
1452         PR middle-end/53590
1453         * common.opt (-fdelete-dead-exceptions): New switch.
1454         * doc/invoke.texi (Code Gen Options): Document it.
1455         * cse.c (count_reg_usage) <CALL_INSN>: Use !insn_nothrow_p in lieu of
1456         insn_could_throw_p predicate.  Do not skip an insn that could throw
1457         if dead exceptions can be deleted.
1458         (insn_live_p): Likewise, do not return true in that case.
1459         * dce.c (can_alter_cfg): New flag.
1460         (deletable_insn_p): Do not return false for an insn that can throw if
1461         the CFG can be altered and dead exceptions can be deleted.
1462         (init_dce): Set can_alter_cfg to false for fast DCE, true otherwise.
1463         * dse.c (scan_insn): Use !insn_nothrow_p in lieu of insn_could_throw_
1464         predicate. Do not preserve an insn that could throw if dead exceptions
1465         can be deleted.
1466         * function.h (struct function): Add can_delete_dead_exceptions flag.
1467         * function.c (allocate_struct_function): Set it.
1468         * lto-streamer-in.c (input_struct_function_base): Stream it.
1469         * lto-streamer-out.c (input_struct_function_base): Likewise.
1470         * tree-ssa-dce.c (mark_stmt_if_obviously_necessary): Do not mark a
1471         statement that could throw as necessary if dead exceptions can be
1472         deleted.
1474 2012-06-14  Maxim Kuvyrkov  <maxim@codesourcery.com>
1476         * config/tilegx/sync.md (atomic_fetch_sub<mode>): Fix typo.
1478 2012-06-14  Oleg Endo  <olegendo@gcc.gnu.org>
1480         PR target/53568
1481         * config/sh/sh.md: Add peephole for swapbsi2.
1482         (*swapbisi2_and_shl8, *swapbhisi2): New insns and splits.
1484 2012-06-14  Uros Bizjak  <ubizjak@gmail.com>
1486         * config/i386/i386.md (*zero_extendsidi2): Remove x,x alternative.
1487         (*zero_extendsidi2_rex64): Ditto.  Remove isa attribute.
1489 2012-06-14  Jakub Jelinek  <jakub@redhat.com>
1491         PR target/53639
1492         * config/i386/i386.md (*anddi_1 into *andsi_1_zext splitter): New.
1494 2012-06-14  Richard Earnshaw  <rearnsha@arm.com>
1496         * arm.c (arm_cirrus_insn_p): Delete.
1497         (cirrus_reorg): Delete.
1498         (arm_reorg): Don't call cirrus_reorg.
1499         (arm_final_prescan_insn_p): Don't check for cirrus insns.
1500         * arm.md (define_attr "type"): Remove mav_farith and mav_dmult.
1501         (adddi3, subdi3): Remove Maverick support.
1502         (arm_adddi3): Likewise.
1503         (adddi_sesidi_di, adddi_zesidi_di): Likewise.
1504         (addsf3, adddf3): Likewise.
1505         (subsf3, subdf3): Likewise.
1506         (mulsf3, muldf3): Likewise.
1507         (ashldi3, ashrdi3, lshrdi3): Likewise.
1508         (floatsisf2, floatsidf2): Likewise.
1509         (fix_truncsfsi2, fix_truncdfsi2): Likewise.
1510         (arm_movdi, thumb1_movdi_insn): Likewise.
1511         (arm_cmpdi_insn): Likewise.
1512         (cirrus_cmpsf, cirrus_cmpdf, cirrus_cmpdi): Likewise.
1513         (cirrus.md): Don't include.
1514         * cirrus.md: Delete file.
1515         * t-arm (MD_INCLUDES): Remove cirrus.md.
1517 2012-06-14  Eric Botcazou  <ebotcazou@adacore.com>
1519         * dwarf2out.c (function_possibly_abstracted_p): New static function.
1520         (gen_subprogram_die): Use it function_possibly_abstracted_p in lieu of
1521         cgraph_function_possibly_inlined_p.
1522         (gen_inlined_subroutine_die): Return if the origin is to be ignored.
1523         (process_scope_var): Do not emit concrete instances of abstracted
1524         nested functions from here.
1525         (gen_decl_die): Emit the abstract instance if the function is possibly
1526         abstracted and not only possibly inlined.
1527         (dwarf2out_finish): Find the first non-abstract parent instance and
1528         attach concrete instances on the limbo list to it.
1530 2012-06-14  Richard Earnshaw  <rearnsha@arm.com>
1532         * arm.md (divsf3, divdf3): Remove FPA support.
1533         (negsf2, negdf2): Likewise.
1534         (sqrtsf2, sqrtdf2): Likewise.
1535         (movdfcc): Likewise.
1536         (modsf3, moddf3, movxf): Delete.
1537         (push_fp_multi): Delete.
1538         (fpa.md): Don't include it.
1539         * fpa.md: Delete file.
1540         * t-arm (MD_INCLUDES): Remove fpa.md.
1542 2012-06-14  Bill Schmidt  <wschmidt@linux.ibm.com>
1544         * tree-vectorizer.h (vect_get_stmt_cost): Move from tree-vect-stmts.c.
1545         (cost_for_stmt): Remove decl.
1546         (vect_get_single_scalar_iteration_cost): Correct typo in name.
1547         * tree-vect-loop.c (vect_get_cost): Remove.
1548         (vect_get_single_scalar_iteration_cost): Correct typo in name; use
1549         vect_get_stmt_cost rather than vect_get_cost.
1550         (vect_get_known_peeling_cost): Use vect_get_stmt_cost rather than
1551         vect_get_cost.
1552         (vect_estimate_min_profitable_iters): Correct typo in call to
1553         vect_get_single_scalar_iteration_cost; use vect_get_stmt_cost rather
1554         than vect_get_cost.
1555         (vect_model_reduction_cost): Use vect_get_stmt_cost rather than
1556         vect_get_cost.
1557         (vect_model_induction_cost): Likewise.
1558         * tree-vect-data-refs.c (vect_peeling_hash_get_lowest_cost): Correct
1559         typo in call to vect_get_single_scalar_iteration_cost.
1560         * tree-vect-stmts.c (vect_get_stmt_cost): Move to tree-vectorizer.h.
1561         (cost_for_stmt): Remove unnecessary function.
1562         * Makefile.in (TREE_VECTORIZER_H): Update dependencies.
1564 2012-06-14  Richard Earnshaw  <rearnsha@arm.com>
1566         * arm.opt (mfp=2, mfp=3, mfpe, mfpe=2, mfpe=3): Delete options.
1567         * arm-fpus.def (fpa, fpe2, fpe3, maverick): Delete FPU types.
1568         * arm-tables.opt: Regenerated.
1569         * doc/invoke.texi: Remove references to deleted options.
1571 2012-06-14  Sandeep Kumar Singh  <Sandeep.Singh2@kpitcummins.com>
1573         * config/h8300/genmova.sh: Modified to add offset bits of
1574         mova/Sz assembly instruction for memory access.
1575         * config/h8300/h8300.c: Likewise.
1576         * config/h8300/mova.md: Likewise.
1578 2012-06-12  Christian Bruel  <christian.bruel@st.com>
1580         PR target/53621
1581         * config/sh/sh.c (sh_option_override): Don't force
1582          flag_omit_frame_pointer and maccumulate_outgoing_args.
1583         * config/sh/sh.opt (maccumulate-outgoing-args): Init as Var.
1585 2012-06-14  Richard Guenther  <rguenther@suse.de>
1587         * tree-vrp.c (VR_INITIALIZER): New define.
1588         (ranges_from_anti_range): New function.
1589         (extract_range_from_binary_expr_1): Decompose operations on
1590         VR_ANTI_RANGEs to operations on VR_RANGE.
1591         (extract_range_from_unary_expr_1): Likewise.
1592         (extract_range_from_binary_expr_1, extract_range_from_binary_expr,
1593         extract_range_from_unary_expr_1, extract_range_from_unary_expr,
1594         extract_range_from_cond_expr, adjust_range_with_scev,
1595         vrp_visit_assignment_or_call, vrp_visit_phi_node,
1596         simplify_bit_ops_using_ranges): Use VR_INITIALIZER.
1598 2012-06-13  Richard Henderson  <rth@redhat.com>
1600         * hwint.h (HOST_WIDEST_INT_C): New.
1601         (HOST_WIDE_INT_C): New.
1602         (HOST_WIDE_INT_1): Use it.
1603         * config/alpha/alpha.c (alpha_trampoline_init): Use it.
1605 2012-06-13  Alexandre Oliva  <aoliva@redhat.com>
1607         PR debug/49888
1608         * var-tracking.c: Include alias.h.
1609         (overlapping_mems): New struct.
1610         (drop_overlapping_mem_locs): New.
1611         (clobber_overlapping_mems): New.
1612         (var_mem_delete_and_set, var_mem_delete): Call it.
1613         (val_bind): Likewise, but only if modified.
1614         (compute_bb_dataflow, emit_notes_in_bb): Call it on MEMs.
1615         * Makefile.in (var-tracking.o): Depend in $(ALIAS_H).
1617 2012-06-13  Alexandre Oliva  <aoliva@redhat.com>
1619         PR debug/47624
1620         * var-tracking.c (loc_exp_dep_pool): New.
1621         (vt_emit_notes): Create and release the pool.
1622         (compute_bb_dataflow): Use value-based locations in MO_VAL_SET.
1623         (emit_notes_in_bb): Likewise.
1624         (loc_exp_dep_insert): Deal with NOT_ONEPART vars.
1625         (notify_dependents_of_changed_value): Likewise.
1626         (notify_dependents_of_resolved_value): Check that NOT_ONEPART
1627         variables don't have a VAR_LOC_DEP_LST.
1628         (emit_note_insn_var_location): Expand NOT_ONEPART locs that are
1629         VALUEs or MEMs of VALUEs.
1631 2012-06-13  Alexandre Oliva  <aoliva@redhat.com>
1633         PR debug/52983
1634         PR debug/48866
1635         * dce.c (word_dce_process_block): Insert debug temps only if the
1636         insn is not marked.
1637         (dce_process_block): Likewise, and if debug.used is not empty,
1638         and only after iterating over all DEFs that might mark the insn.
1640 2012-06-13  Alexandre Oliva  <aoliva@redhat.com>
1642         * common.opt (ftree-coalesce-inlined-vars): New.
1643         (ftree-coalesce-vars): New.
1644         * doc/invoke.texi: Document them.
1645         * tree-ssa-copyrename.c (copy_rename_partition_coalesce):
1646         Implement them.
1648 2012-06-13  Richard Sandiford  <rdsandiford@googlemail.com>
1650         * read-rtl.c (mapping): Remove index field.  Add current_value field.
1651         Define heap vectors.
1652         (iterator_group): Fix long line.  Remove num_builtins field and
1653         uses_iterator fields.  Make apply_iterator take a void * parameter.
1654         (iterator_use, atttribute_use): New structures.
1655         (iterator_traverse_data, BELLWETHER_CODE, bellwether_codes): Delete.
1656         (current_iterators, iterator_uses, attribute_uses): New variables.
1657         (uses_mode_iterator_p, uses_code_iterator_p): Delete.
1658         (apply_mode_iterator, apply_code_iterator): Take a void * parameter.
1659         (map_attr_string, apply_iterator_to_string): Remove iterator
1660         and value parameters.  Look through all current iterator values
1661         for a matching attribute.
1662         (mode_attr_index, apply_mode_maps): Delete.
1663         (apply_iterator_to_rtx): Replace with...
1664         (copy_rtx_for_iterators): ...this new function.
1665         (uses_iterator_p, apply_iterator_traverse): Delete.
1666         (apply_attribute_uses, add_current_iterators, apply_iterators): New
1667         functions.
1668         (add_mapping): Remove index field.  Set current_value field.
1669         (initialize_iterators): Don't set num_builtins and uses_iterator_p
1670         fields.
1671         (find_iterator): Delete.
1672         (record_iterator_use, record_attribute_use): New functions.
1673         (record_potential_iterator_use): New function.
1674         (check_code_iterator): Remove handling of bellwether codes.
1675         (read_rtx): Remove mode maps.  Truncate iterator and attribute uses.
1676         (read_rtx_code, read_nested_rtx, read_rtx_variadic): Remove mode_maps
1677         parameter.  Use the first code iterator value instead of the
1678         bellwether_codes array.  Use record_potential_iterator_use for modes.
1680 2012-06-13  Oleg Endo  <olegendo@gcc.gnu.org>
1682         PR target/53568
1683         * config/sh/sh.md (bswapsi2): New expander.
1684         (swapbsi2): New insn.
1686 2012-06-13  H.J. Lu  <hongjiu.lu@intel.com>
1688         PR target/53647
1689         * config/i386/i386.c (ix86_tune_cost): New variable.
1690         (ix86_option_override_internal): Set ix86_tune_cost.  Use
1691         ix86_tune_cost for simultaneous_prefetches, prefetch_block,
1692         l1_cache_size and l2_cache_size.
1694 2012-06-13  Richard Guenther  <rguenther@suse.de>
1696         * tree-vrp.c (vrp_meet): Properly meet equivalent ranges.
1697         Handle meeting two VR_RANGE to an VR_ANTI_RANGE.  Implement
1698         all possible meetings of VR_RANGE with VR_ANTI_RANGE and
1699         VR_ANTI_RANGE with VR_ANTI_RANGE.
1701 2012-06-13  Richard Earnshaw  <rearnsha@arm.com>
1703         * config.gcc (unsupported): Move obsoleted FPA-based configurations
1704         here from ...
1705         (obsolete): ... here.
1706         (arm*-*-freebsd*): Remove.
1707         (arm*-*-linux*): Only accept EABI variants.  Simplify logic.
1708         (arm*-*-uclinux*): Likewise.
1709         (arm*-*-ecos-elf): Remove.
1710         (arm*-*-rtems*): Remove.
1711         (arm*-*-elf): Remove.
1712         (arm*-wince-pe*): Remove.
1713         (arm, --with-fpu): Remove support for fpa and Maverick variants.
1714         * arm/ecos-elf.h: Delete.
1715         * arm/t-strongarm-elf: Delete.
1716         * arm/rtems-elf.h: Delete.
1717         * arm/wince-pe.h: Delete.
1718         * arm/pe.c: Delete.
1719         * arm/pe.h: Delete.
1720         * arm/t-wince-pe: Delete.
1722 2012-06-13  Bill Schmidt  <wschmidt@linux.ibm.com>
1724         PR tree-optimization/53647
1725         * tree-ssa-phiopt.c (gate_hoist_loads): Skip transformation for
1726         targets with no defined cache line size.
1728 2012-06-13  Bill Schmidt  <wschmidt@linux.ibm.com>
1730         * targhooks.c (default_builtin_vectorized_conversion): Handle
1731         vec_construct, using vectype to base cost on subparts.
1732         * target.h (enum vect_cost_for_stmt): Add vec_construct.
1733         * tree-vect-stmts.c (vect_model_load_cost): Use vec_construct
1734         instead of scalar_to-vec.
1735         * config/spu/spu.c (spu_builtin_vectorization_cost): Handle
1736         vec_construct in same way as default for now.
1737         * config/i386/i386.c (ix86_builtin_vectorization_cost): Likewise.
1738         * config/rs6000/rs6000.c (rs6000_builtin_vectorization_cost):
1739         Handle vec_construct, including special case for 32-bit loads.
1741 2012-06-13  Xinyu Qi <xyqi@marvell.com>
1743         * config/arm/arm.c (FL_IWMMXT2): New define.
1744         (arm_arch_iwmmxt2): New variable.
1745         (arm_option_override): Enable use of iWMMXt with VFP.
1746         Disable use of iWMMXt with NEON. Disable use of iWMMXt under
1747         Thumb mode. Set arm_arch_iwmmxt2.
1748         (arm_expand_binop_builtin): Accept VOIDmode op.
1749         (enum arm_builtins): Revise built-in fcode.
1750         (IWMMXT2_BUILTIN): New define.
1751         (IWMMXT2_BUILTIN2): Likewise.
1752         (iwmmx2_mbuiltin): Likewise.
1753         (builtin_description bdesc_2arg): Revise built in declaration.
1754         (builtin_description bdesc_1arg): Likewise.
1755         (arm_init_iwmmxt_builtins): Revise built in initialization.
1756         (arm_expand_builtin): Revise built in expansion.
1757         (arm_output_iwmmxt_shift_immediate): New function.
1758         (arm_output_iwmmxt_tinsr): Likewise.
1759         * config/arm/arm-protos.h (arm_output_iwmmxt_shift_immediate): Declare.
1760         (arm_output_iwmmxt_tinsr): Likewise.
1761         * config/arm/iwmmxt.md (WCGR0, WCGR1, WCGR2, WCGR3): New constant.
1762         (iwmmxt_psadbw, iwmmxt_walign, iwmmxt_tmrc, iwmmxt_tmcr): Delete.
1763         (rorv4hi3, rorv2si3, rordi3): Likewise.
1764         (rorv4hi3_di, rorv2si3_di, rordi3_di): Likewise.
1765         (ashrv4hi3_di, ashrv2si3_di, ashrdi3_di): Likewise.
1766         (lshrv4hi3_di, lshrv2si3_di, lshrdi3_di): Likewise.
1767         (ashlv4hi3_di, ashlv2si3_di, ashldi3_di): Likewise.
1768         (iwmmxt_tbcstqi, iwmmxt_tbcsthi, iwmmxt_tbcstsi): Likewise
1769         (*iwmmxt_clrv8qi, *iwmmxt_clrv4hi, *iwmmxt_clrv2si): Likewise.
1770         (tbcstv8qi, tbcstv4hi, tbsctv2si): New pattern.
1771         (iwmmxt_clrv8qi, iwmmxt_clrv4hi, iwmmxt_clrv2si): Likewise.
1772         (*and<mode>3_iwmmxt, *ior<mode>3_iwmmxt, *xor<mode>3_iwmmxt): Likewise.
1773         (ror<mode>3, ror<mode>3_di): Likewise.
1774         (ashr<mode>3_di, lshr<mode>3_di, ashl<mode>3_di): Likewise.
1775         (ashli<mode>3_iwmmxt, iwmmxt_waligni, iwmmxt_walignr): Likewise.
1776         (iwmmxt_walignr0, iwmmxt_walignr1): Likewise.
1777         (iwmmxt_walignr2, iwmmxt_walignr3): Likewise.
1778         (iwmmxt_setwcgr0, iwmmxt_setwcgr1): Likewise.
1779         (iwmmxt_setwcgr2, iwmmxt_setwcgr3): Likewise.
1780         (iwmmxt_getwcgr0, iwmmxt_getwcgr1): Likewise.
1781         (iwmmxt_getwcgr2, iwmmxt_getwcgr3): Likewise.
1782         (All instruction patterns): Add wtype attribute.
1783         (*iwmmxt_arm_movdi, *iwmmxt_movsi_insn): iWMMXt coexist with vfp.
1784         (iwmmxt_uavgrndv8qi3, iwmmxt_uavgrndv4hi3): Revise the pattern.
1785         (iwmmxt_uavgv8qi3, iwmmxt_uavgv4hi3): Likewise.
1786         (ashr<mode>3_iwmmxt, ashl<mode>3_iwmmxt, lshr<mode>3_iwmmxt): Likewise.
1787         (iwmmxt_tinsrb, iwmmxt_tinsrh, iwmmxt_tinsrw):Likewise.
1788         (eqv8qi3, eqv4hi3, eqv2si3, gtuv8qi3): Likewise.
1789         (gtuv4hi3, gtuv2si3, gtv8qi3, gtv4hi3, gtv2si3): Likewise.
1790         (iwmmxt_wunpckihh, iwmmxt_wunpckihw, iwmmxt_wunpckilh): Likewise.
1791         (iwmmxt_wunpckilw, iwmmxt_wunpckehub, iwmmxt_wunpckehuh): Likewise.
1792         (iwmmxt_wunpckehuw, iwmmxt_wunpckehsb, iwmmxt_wunpckehsh): Likewise.
1793         (iwmmxt_wunpckehsw, iwmmxt_wunpckelub, iwmmxt_wunpckeluh): Likewise.
1794         (iwmmxt_wunpckeluw, iwmmxt_wunpckelsb, iwmmxt_wunpckelsh): Likewise.
1795         (iwmmxt_wunpckelsw, iwmmxt_wmadds, iwmmxt_wmaddu): Likewise.
1796         (iwmmxt_wsadb, iwmmxt_wsadh, iwmmxt_wsadbz, iwmmxt_wsadhz): Likewise.
1797         (iwmmxt2.md): Include.
1798         * config/arm/arm.h (TARGET_CPU_CPP_BUILTINS): Define __IWMMXT2__.
1799         (TARGET_IWMMXT2): New define.
1800         (TARGET_REALLY_IWMMXT2): Likewise.
1801         (arm_arch_iwmmxt2): Declare.
1802         * config/arm/mmintrin.h: Use __IWMMXT__ to enable iWMMXt intrinsics.
1803         Use __IWMMXT2__ to enable iWMMXt2 intrinsics.
1804         Use C name-mangling for intrinsics.
1805         (__v8qi): Redefine.
1806         (_mm_cvtsi32_si64, _mm_andnot_si64, _mm_sad_pu8): Revise.
1807         (_mm_sad_pu16, _mm_align_si64, _mm_setwcx, _mm_getwcx): Likewise.
1808         (_m_from_int): Likewise.
1809         (_mm_sada_pu8, _mm_sada_pu16): New intrinsic.
1810         (_mm_alignr0_si64, _mm_alignr1_si64, _mm_alignr2_si64): Likewise.
1811         (_mm_alignr3_si64, _mm_tandcb, _mm_tandch, _mm_tandcw): Likewise.
1812         (_mm_textrcb, _mm_textrch, _mm_textrcw, _mm_torcb): Likewise.
1813         (_mm_torch, _mm_torcw, _mm_tbcst_pi8, _mm_tbcst_pi16): Likewise.
1814         (_mm_tbcst_pi32): Likewise.
1815         (_mm_abs_pi8, _mm_abs_pi16, _mm_abs_pi32): New iWMMXt2 intrinsic.
1816         (_mm_addsubhx_pi16, _mm_absdiff_pu8, _mm_absdiff_pu16): Likewise.
1817         (_mm_absdiff_pu32, _mm_addc_pu16, _mm_addc_pu32): Likewise.
1818         (_mm_avg4_pu8, _mm_avg4r_pu8, _mm_maddx_pi16, _mm_maddx_pu16): Likewise.
1819         (_mm_msub_pi16, _mm_msub_pu16, _mm_mulhi_pi32): Likewise.
1820         (_mm_mulhi_pu32, _mm_mulhir_pi16, _mm_mulhir_pi32): Likewise.
1821         (_mm_mulhir_pu16, _mm_mulhir_pu32, _mm_mullo_pi32): Likewise.
1822         (_mm_qmulm_pi16, _mm_qmulm_pi32, _mm_qmulmr_pi16): Likewise.
1823         (_mm_qmulmr_pi32, _mm_subaddhx_pi16, _mm_addbhusl_pu8): Likewise.
1824         (_mm_addbhusm_pu8, _mm_qmiabb_pi32, _mm_qmiabbn_pi32): Likewise.
1825         (_mm_qmiabt_pi32, _mm_qmiabtn_pi32, _mm_qmiatb_pi32): Likewise.
1826         (_mm_qmiatbn_pi32, _mm_qmiatt_pi32, _mm_qmiattn_pi32): Likewise.
1827         (_mm_wmiabb_si64, _mm_wmiabbn_si64, _mm_wmiabt_si64): Likewise.
1828         (_mm_wmiabtn_si64, _mm_wmiatb_si64, _mm_wmiatbn_si64): Likewise.
1829         (_mm_wmiatt_si64, _mm_wmiattn_si64, _mm_wmiawbb_si64): Likewise.
1830         (_mm_wmiawbbn_si64, _mm_wmiawbt_si64, _mm_wmiawbtn_si64): Likewise.
1831         (_mm_wmiawtb_si64, _mm_wmiawtbn_si64, _mm_wmiawtt_si64): Likewise.
1832         (_mm_wmiawttn_si64, _mm_merge_si64): Likewise.
1833         (_mm_torvscb, _mm_torvsch, _mm_torvscw): Likewise.
1834         (_m_to_int): New define.
1835         * config/arm/arm-cores.def (iwmmxt2): Add FL_IWMMXT2.
1836         * config/arm/arm-arches.def (iwmmxt2): Likewise.
1837         * config/arm/t-arm (MD_INCLUDES): Add marvell-f-iwmmxt.md and
1838         iwmmxt2.md.
1839         * config/arm/arm.md (marvell-f-iwmmxt.md): Include.
1840         (arch): Add "iwmmxt2".
1841         (arch_enabled): Handle "iwmmxt2".
1842         (wtype): New attribute.
1843         (UNSPEC_WMADDS, UNSPEC_WMADDU): Delete.
1844         (UNSPEC_WALIGNI): New unspec.
1845         * config/arm/predicates.md (imm_or_reg_operand): New predicate.
1846         * config/arm/iterators.md (VMMX2): New mode_iterator.
1847         * config/arm/marvell-f-iwmmxt.md: New file.
1848         * config/arm/iwmmxt2.md: New file.
1850 2012-06-12  Jakub Jelinek  <jakub@redhat.com>
1852         PR c/53532
1853         PR c/51034
1854         PR c/53196
1855         * c-decl.c (build_compound_literal): Call c_incomplete_type_error
1856         if type isn't complete.
1858 2012-06-12  Uros Bizjak  <ubizjak@gmail.com>
1860         * config/ia64/sync.md (fetchop_name): Change ior attribute to "or".
1862 2012-06-12  Richard Henderson  <rth@redhat.com>
1864         * config/rs6000/sync.md (atomic_load, atomic_store): Use INT1 mode
1865         iterator instead of INT.
1867 2012-06-12  Bill Schmidt  <wschmidt@linux.ibm.com>
1869         * opts.c: Add -fhoist-adjacent-loads to -O2 and above.
1870         * tree-ssa-phiopt.c (tree_ssa_phiopt_worker): Add argument to forward
1871         declaration.
1872         (hoist_adjacent_loads, gate_hoist_loads): New forward declarations.
1873         (tree_ssa_phiopt): Call gate_hoist_loads.
1874         (tree_ssa_cs_elim): Add parm to tree_ssa_phiopt_worker call.
1875         (tree_ssa_phiopt_worker): Add do_hoist_loads to formal arg list; call
1876         hoist_adjacent_loads.
1877         (local_mem_dependence): New function.
1878         (hoist_adjacent_loads): Likewise.
1879         (gate_hoist_loads): Likewise.
1880         * common.opt (fhoist-adjacent-loads): New switch.
1881         * Makefile.in (tree-ssa-phiopt.o): Added dependencies.
1883 2012-06-12  Michael Matz  <matz@suse.de>
1885         * alias.c (nonoverlapping_component_refs_p): Take two rtx arguments.
1886         (nonoverlapping_memrefs_p): Don't call it here ...
1887         (true_dependence_1): ... but here.
1889 2012-06-12  Richard Guenther  <rguenther@suse.de>
1891         * emit-rtl.c (set_mem_attributes_minus_bitpos): Remove dead code.
1892         * alias.c (ao_ref_from_mem): MEM_EXPR is conservative, MEM_OFFSET
1893         and MEM_SIZE only refines it.  Reflect that and be less conservative
1894         if either of the latter is not known.
1896 2012-06-12  Jakub Jelinek  <jakub@redhat.com>
1898         PR rtl-optimization/53589
1899         * cfgrtl.c (force_nonfallthru_and_redirect): Do asm_goto_edge
1900         discovery even when e->dest != target.  If any LABEL_REF points
1901         to e->dest label, redirect it to target's label.
1903 2012-06-12  Chung-Lin Tang  <cltang@codesourcery.com>
1905         * config/sh/sh.c (output_stack_adjust): Remove !epilogue_p
1906         condition for generating REG_FRAME_RELATED_EXPR note.
1907         (pop): Add code for generating REG_CFA_RESTORE,
1908         REG_CFA_ADJUST_CFA notes. Set RTX_FRAME_RELATED_P to 1.
1909         (sh_expand_epilogue): Use frame_insn() for FP to SP move.
1910         Set 'frame_p' of calls to output_stack_adjust() to 'true'.
1912 2012-06-11  Richard Henderson  <rth@redhat.com>
1914         * config/alpha/alpha.c (HWI_HEX2): Add missing shift.
1915         * vmsdbgout.c (VMS_EPOCH_OFFSET): Add LL suffix.
1917         * config/alpha/alpha.c (alpha_trampoline_init): Split large constants.
1919 2012-06-12  Hans-Peter Nilsson  <hp@axis.com>
1921         * doc/tm.texi.in (Addressing Modes) <TARGET_LEGITIMIZE_ADDRESS>:
1922         Mention that this hook needs to be defined for native TLS.
1923         * doc/tm.texi: Regenerate.
1925 2012-06-11  Mike Stump  <mikestump@comcast.net>
1927         * emit-rtl.c (init_emit_once): Iterate through the
1928         MODE_PARTIAL_INT modes with MIN_MODE_PARTIAL_INT and
1929         MAX_MODE_PARTIAL_INT, as GET_MODE_WIDER_MODE doesn't step through
1930         all the MIN_MODE_PARTIAL_INT modes anymore.
1932 2012-06-12  Maxim Kuvyrkov  <maxim@codesourcery.com>
1934         * gcc/config/mips/mips-tables.opt (xlp): Fix merge typo.
1936 2012-06-11  Roland McGrath  <mcgrathr@google.com>
1938         * dwarf2out.c (const_ok_for_output_1): Detect a TLS UNSPEC using
1939         SYMBOL_REF_TLS_MODEL rather than DECL_THREAD_LOCAL_P, in case it's
1940         not a VAR_DECL.  Also don't limit it to UNSPECs with exactly one
1941         operand.
1943 2012-06-11  Oleg Endo  <olegendo@gcc.gnu.org>
1945         PR target/53511
1946         * config/sh/sh.md (fmasf4): New expander.
1947         (*macsf3): Rename to fmasf4_i.  Adapt to fma pattern.
1948         (mac_media): Rename to fmasf4_media.  Adapt to fma pattern.
1949         * config/sh/sh.opt (mfused-madd): Remove.
1950         * config/sh/sh.c (sh_option_override): Remove mfused-madd handling.
1951         (builtin_description bdesc): Remove __builtin_sh_media_FMAC_S.
1952         * config.gcc (sh[123456789lbe]*-*-* | sh-*-*): Add fused-madd.opt
1953         as extra options.
1954         * doc/invoke.texi (SH Options): Update mfused-madd and mno-fused-madd
1955         descriptions.
1957 2012-06-11  Richard Henderson  <rth@redhat.com>
1959         * dwarf2cfi.c (scan_trace): Handle annulled branch-taken delay slots.
1961 2012-06-11  Richard Guenther  <rguenther@suse.de>
1963         PR middle-end/53470
1964         * tree.c (free_lang_data_in_type): Do not clear TYPE_CONTEXT but
1965         replace it with the first non-BLOCK context.
1967 2012-06-11  Richard Guenther  <rguenther@suse.de>
1969         * alias.c (aliases_everything_p): Remove.
1970         (DIFFERENT_ALIAS_SETS_P): Likewise.
1971         (true_dependence_1): Use mems_in_disjoint_alias_sets_p directly.
1972         Do not use aliases_everything_p or special-case ANDs.  Do not
1973         special-case BLKmode moves.
1974         (may_alias_p): Likewise.  Handle BLKmode similar like everywhere
1975         - for SCATCH only.
1977 2012-06-09  Hans-Peter Nilsson  <hp@axis.com>
1979         Fix CRIS build errors with --enable-build-with-cxx.
1980         * config/cris/cris.c (cris_emit_trap_for_misalignment): Rename
1981         variable "and" to "andop".
1982         * config/cris/sync.md ("atomic_fetch_<atomic_op_name><mode>"): Use
1983         temporary variable for memory model, passing C++-type-correct
1984         parameter type to expand_mem_thread_fence.
1985         ("atomic_compare_and_swap<mode>"): Ditto.
1987 2012-06-09  Richard Henderson  <rth@redhat.com>
1989         PR c++/53602
1990         * cfgcleanup.c (execute_jump): Rename from rest_of_handle_jump2.
1991         (pass_jump): Rename from pass_jump2.
1992         (execute_jump2, pass_jump2): New.
1993         * combine-stack-adj.c (rest_of_handle_stack_adjustments): Don't
1994         perform cfg cleanup here.  Move the test of PUSH_ROUNDING
1995         and ACCUMULATE_OUTGOING_ARGS test...
1996         (gate_handle_stack_adjustments): ... here.
1997         * passes.c (init_optimization_passes): Update for pass_jump2 rename.
1998         Place new pass_jump2 after pass_stack_adjustments.
1999         * tree-pass.h (pass_jump): Declare.
2001 2012-06-09  Kenneth Zadeck <zadeck@naturalbridge.com>
2003         * simplify-rtx.c (simplify_const_binary_operation): Fixed shift
2004         count trucation.
2006 2012-06-08  Richard Henderson  <rth@redhat.com>
2008         PR c++/53602
2009         * combine-stack-adj.c (force_move_args_size_note): Add ARGS_SIZE
2010         note to a clobber insn when no other insn is available.
2012 2012-06-08  Georg-Johann Lay  <avr@gjlay.de>
2014         * config/avr/avr.c (avr_case_values_threshold): Return 7.
2016 2012-06-07  Andreas Schwab  <schwab@linux-m68k.org>
2018         * genhooks.c (main): Set progname.
2019         (emit_documentation): Remove variable found_start, always bail out
2020         when a place is missing.
2021         * doc/tm.texi.in (C++ ABI): Add @hook TARGET_CXX_DECL_MANGLING_CONTEXT.
2023 2012-06-07  Jakub Jelinek  <jakub@redhat.com>
2025         PR middle-end/53580
2026         * omp-low.c (scan_omp): Change first argument to gimple_seq *,
2027         call walk_gimple_seq_mod instead of walk_gimple_seq.
2028         (scan_sharing_clauses, scan_omp_parallel, scan_omp_task,
2029         scan_omp_for, scan_omp_sections, scan_omp_single,
2030         execute_lower_omp): Adjust callers.
2031         (scan_omp_1_stmt): Likewise.  If check_omp_nesting_restrictions
2032         returns false, replace stmt with GIMPLE_NOP.
2033         (check_omp_nesting_restrictions): Instead of issuing warnings,
2034         issue errors and return false if any errors were reported.
2036 2012-06-06  Steven Bosscher  <steven@gcc.gnu.org>
2038         * doc/invoke.texi (fconserve-space): Remove documentation.
2040 2012-06-06  Edmar Wienskoski  <edmar@freescale.com>
2042         * config/rs6000/rs6000-tables.opt: Regenerated.
2044 2012-06-06  Richard Guenther  <rguenther@suse.de>
2046         PR tree-optimization/53081
2047         * tree-data-ref.h (adjacent_store_dr_p): Rename to ...
2048         (adjacent_dr_p): ... this and make it work for reads, too.
2049         * tree-loop-distribution.c (enum partition_kind): Add PKIND_MEMCPY.
2050         (struct partition_s): Change main_stmt to main_dr, add
2051         secondary_dr member.
2052         (build_size_arg_loc): Change to date data-reference and not
2053         gimplify here.
2054         (build_addr_arg_loc): New function split out from ...
2055         (generate_memset_builtin): ... here.  Use it and simplify.
2056         (generate_memcpy_builtin): New function.
2057         (generate_code_for_partition): Adjust.
2058         (classify_partition): Streamline pattern detection.  Detect memcpy.
2059         (ldist_gen): Adjust.
2060         (tree_loop_distribution): Adjust seed statements for memcpy
2061         recognition.
2063 2012-06-06  Matt Turner  <mattst88@gmail.com>
2065         * config/arm/mmintrin.h (_mm_empty): New.
2066         (_m_empty): New.
2068 2012-06-06  Richard Sandiford  <r.sandiford@uk.ibm.com>
2070         * doc/invoke.texi (sched-pressure-algorithm): Document new --param.
2071         * common.opt (fsched-pressure-algorithm=): Remove.
2072         * flag-types.h (sched_pressure_algorithm): Move to...
2073         * sched-int.h (sched_pressure_algorithm): ...here.
2074         * params.def (sched-pressure-algorithm): New param.
2075         * haifa-sched.c (sched_init): Use it to initialize sched_pressure.
2076         * common/config/s390/s390-common.c (s390_option_optimization_table):
2077         Remove OPT_fsched_pressure_algorithm_ entry.
2078         * config/s390/s390.c (s390_option_override): Set a default value for
2079         PARAM_SCHED_PRESSURE_ALGORITHM.
2081 2012-06-05  Michael Meissner  <meissner@linux.vnet.ibm.com>
2083         PR target/53487
2084         * config/rs6000/rs6000.c (rs6000_generate_compare): If we are
2085         doing an unsigned compare, make sure the second argument is not a
2086         negative constant.
2087         (rs6000_emit_cmove): Don't allow floating point comparisons when
2088         generating ISEL moves.
2090 2012-06-05  Edmar Wienskoski  <edmar@freescale.com>
2092         * config/rs6000/e5500.md: New file.
2093         * config/rs6000/e6500.md: New file.
2094         * config/rs6000/rs6000.c (processor_costs): Add new costs for
2095         e5500 and e6500.
2096         (rs6000_option_override_internal): Altivec and Spe options not
2097         allowed with e5500. Spe options not allowed with e6500. Increase
2098         move inline limit for e5500 and e6500. Disable string instructions
2099         for e5500 and e6500. Enable branch targets alignment for e5500 and
2100         e6500. Initialize rs6000_cost for e5500 and e6500.
2101         (rs6000_adjust_cost): Add extra scheduling cycles between compare
2102         and brnach for e5500 and e6500.
2103         (rs6000_issue_rate): Set issue rate for e5500 and e6500.
2104         * config/rs6000/rs6000-cpus.def: Add cpu definitions for e5500 and
2105         e6500.
2106         * config/rs6000/rs6000.h (ASM_CPU_SPEC): Add e5500 and e6500.
2107         * config/rs6000/rs6000.md (define_attr "cpu"): Add ppce5500 and
2108         ppce6500.
2109         Include e5500.md and e6500.md.
2110         * config/rs6000/rs6000-opt.h (processor_type): Add
2111         PROCESSOR_PPCE5500 and PROCESSOR_PPCE6500.
2112         * config.gcc (cpu_is_64bit): Add new cores e5500, e6500.
2113         (powerpc*-*-*): Add new cores e5500, e6500.
2114         * doc/invoke.texi: (item -mcpu): Add e5500 and e6500 to list of cpus.
2116 2012-06-05  Richard Guenther  <rguenther@suse.de>
2118         * tree-vect-data-refs.c (vect_analyze_data_refs): Fix last change.
2120 2012-06-05  H.J. Lu  <hongjiu.lu@intel.com>
2122         PR target/53575
2123         * config.gcc: Select x32 run-time library if --with-abi={x32|mx32}
2124         is used for x86_64-*-*.
2126 2012-06-05  Richard Guenther  <rguenther@suse.de>
2128         PR tree-optimization/30442
2129         * tree-vect-data-refs.c (vect_analyze_data_refs): For basic-block
2130         vectorization stop analysis at the first stmt we cannot compute
2131         a data-reference for instead of giving up completely.
2133 2012-06-05  Richard Guenther  <rguenther@suse.de>
2135         * tree-loop-distribution.c (struct partition_s): Add has_writes member.
2136         (partition_alloc): Initialize it.
2137         (partition_has_writes): New function.
2138         (rdg_flag_uses): Adjust.
2139         (rdg_flag_vertex): Likewise.
2140         (rdg_flag_vertex_and_dependent): Likewise.
2141         (rdg_flag_loop_exits): Likewise.
2142         (build_rdg_partition_for_component): Likewise.
2143         (rdg_build_partitions): Likewise.
2145 2012-06-05  Richard Guenther  <rguenther@suse.de>
2147         PR tree-optimization/53081
2148         * tree-loop-distribution.c (generate_memset_builtin): Handle all
2149         kinds of byte-sized stores.
2150         (classify_partition): Likewise.
2151         (tree_loop_distribution): Adjust seed statements used for
2152         !flag_tree_loop_distribution.
2154 2012-06-05  Alan Modra  <amodra@gmail.com>
2156         * config/rs6000/rs6000.c (ptr_regno_for_savres): Comment.
2157         (rs6000_emit_prologue): Ensure register used for inline saves
2158         of vector regs is not the static chain register.  Revise comment.
2160 2012-06-04  Oleg Endo  <olegendo@gcc.gnu.org>
2162         * doc/md.texi (Standard Pattern Names For Generation): Document
2163         sincos pattern.
2165 2012-06-04  H.J. Lu  <hongjiu.lu@intel.com>
2167         PR bootstrap/53555
2168         * config/i386/i386.c (ix86_sched_reorder) Skip debug insns.
2170 2012-06-04  Jason Merrill  <jason@redhat.com>
2172         * dwarf2out.c (is_unit_die): New.
2173         (copy_declaration_context, copy_ancestor_tree): Use it.
2174         (copy_decls_walk): Likewise.
2176 2012-06-04  Paolo Carlini  <paolo.carlini@oracle.com>
2178         PR c++/53524
2179         * doc/invoke.texi (Wenum-compare): Update documentation.
2181 2012-06-04  Dodji Seketeli  <dodji@redhat.com>
2183         PR preprocessor/53463
2184         * parser.c (cp_parser_assignment_expression): Use the location
2185         for the '=' as the default location for the expression.
2187 2012-06-04  Edmar Wienskoski  <edmar@freescale.com>
2189         PR target/53559
2190         * config/rs6000/altivec.md (altivec_stvlx): Change machine mode of
2191         operands.
2192         (altivec_stvlxl): Ditto.
2193         (altivec_stvrx): Ditto.
2194         (altivec_stvrxl): Ditto.
2196 2012-06-04  Vladimir Makarov  <vmakarov@redhat.com>
2198         * ira-int.h (struct target_ira_int): Add member x_ira_uniform_class_p.
2199         (ira_uniform_class_p): New macro.
2201         * ira.c (setup_uniform_class_p): New function.
2202         (setup_allocno_and_important_classes): Call the function.
2203         (print_unform_and_important_classes): New function.
2204         (print_classes): Rename to print_translated_classes.
2205         (ira_debug_allocno_classes): Add call of
2206         print_unform_and_important_classes.
2208         * ira-costs.c (setup_regno_cost_classes_by_aclass): Use uniform
2209         classes instead of pressure classes.
2211 2012-06-04  Aldy Hernandez  <aldyh@redhat.com>
2213         PR middle-end/47530
2214         * trans-mem.c (expand_block_edges): Do not skip the first
2215         statement when resetting the BB.
2217 2012-06-04  Richard Guenther  <rguenther@suse.de>
2219         * tree-data-ref.c (stores_from_loop): Remove.
2220         (stmt_with_adjacent_zero_store_dr_p): Likewise.
2221         (stores_zero_from_loop): Likewise.
2222         * tree-data-ref.h (stores_from_loop, stores_zero_from_loop,
2223         stmt_with_adjacent_zero_store_dr_p, stride_of_unit_type_p): Remove.
2224         (adjacent_store_dr_p): New function.
2225         * tree-loop-distribution.c (generate_memset_builtin): Pass
2226         the RDG, use the already available data-reference.
2227         (generate_code_for_partition): Pass down RDG.
2228         (classify_partition): Inline parts of the former
2229         stmt_with_adjacent_zero_store_dr_p here and use adjacent_store_dr_p.
2230         (ldist_gen): Remember if there was any detected builtin and
2231         do less work if not and flag_tree_loop_distribution is not set.
2232         (tree_loop_distribution): Inline and fuse stores_from_loop
2233         and stores_zero_from_loop here.
2235 2012-06-04  Richard Guenther  <rguenther@suse.de>
2237         PR middle-end/53471
2238         * dwarf2out.c (dwarf2out_finish): If generating LTO do not
2239         create new assembler names.
2241 2012-06-04  Richard Guenther  <rguenther@suse.de>
2243         * tree-data-ref.c (struct rdg_vertex_info): Remove.
2244         (rdg_vertex_for_stmt): Simplify using gimple_uid.
2245         (create_rdg_vertices): Pass loop argument, remove stmt to RDG index
2246         hashtable.   Record stmt data-references.
2247         (hash_stmt_vertex_info): Remove.
2248         (eq_stmt_vertex_info): Likewise.
2249         (hash_stmt_vertex_del): Likewise.
2250         (build_empty_rdg): Simplify.
2251         (build_rdg): Adjust.
2252         (free_rdg): Likewise.
2253         (ref_base_address): Remove.
2254         (have_similar_memory_accesses): Likewise.
2255         * tree-data-ref.h (create_rdg_vertices): Remove.
2256         (struct rdg_vertex): Add datarefs member.
2257         (RDGV_DATAREFS): New define.
2258         (RDG_DATAREFS): Likewise.
2259         (have_similar_memory_accesses): Remove.
2260         (rdg_has_similar_memory_accesses): Likewise.
2261         * tree-loop-distribution.c (ref_base_address): Re-implement here.
2262         (similar_memory_accesses): Re-implement using existing data-references.
2263         (tree_loop_distribution): Initialize stmt uids for the stmt to
2264         RDG index mapping.
2265         * tree-vect-loop.c (vect_create_epilog_for_reduction): Only
2266         access stmt vinfo for stmts in loop.
2268 2012-06-04  Andreas Schwab  <schwab@linux-m68k.org>
2270         PR target/53461
2271         * config/m68k/m68k.md ("tablejump"): Fix check for
2272         CASE_VECTOR_PC_RELATIVE.
2274 2012-06-04  Steven Bosscher  <steven@gcc.gnu.org>
2276         * output.h (merge_weak, assemble_alias,
2277         initializer_constant_valid_p,
2278         initializer_constant_valid_for_bitfield_p): Move protos from here...
2279         * tree.h: ... to here.
2280         * cgraphclones.c: Do not include output.h.
2281         * gimplify.c: Likewise.
2282         * reload.c: Likewise.
2283         * recog.c: Likewise.
2284         * tree-ssa-loop-ivopts.c: Likewise.
2285         * tree-switch-conversion.c: Likewise.
2286         * c-parser.c: Likewise.
2287         * c-typeck.c: Likewise.
2288         * Makefile.in: Fix dependencies.
2290 2012-06-04  Georg-Johann Lay  <avr@gjlay.de>
2292         PR target/46261
2293         * config/avr/avr-stdint.h: New file.
2294         * config.gcc (avr-*-*,tm_file): Use avr/avr-stdint.h instead of
2295         newlib-stdint.h
2297 2012-06-04  Jakub Jelinek  <jakub@redhat.com>
2299         PR tree-optimization/53550
2300         * tree-ssa-loop-niter.c (number_of_iterations_cond): If type
2301         is POINTER_TYPE_P, use sizetype as step type instead of type.
2303 2012-06-04  Richard Guenther  <rguenther@suse.de>
2305         * tree-data-ref.c (have_similar_memory_accesses_1): Remove.
2306         (ref_base_address_1): Likewise.
2307         (remove_similar_memory_refs): Likewise.
2308         * tree-data-ref.h (remove_similar_memory_refs): Remove.
2309         * tree-loop-distribution.c (classify_partition): Do not classify
2310         as builtin if -ftree-loop-distribute-patterns is not enabled.
2311         (fuse_partitions_with_similar_memory_accesses): Inline ...
2312         (ldist_gen): ... here.  Fuse all non-builtin partitions if
2313         -ftree-loop-distribution is not enabled.  Properly return
2314         the number of created partitions.  Do not update SSA form here but ...
2315         (tree_loop_distribution): ... once here for the whole function.
2316         Only walk innermost loops, constrain loops we consider here
2317         further.  Do not call remove_similar_memory_refs.
2318         (distribute_loop): Do not check number of loop nodes here.
2320 2012-06-04  Steven Bosscher  <steven@gcc.gnu.org>
2322         * Makefile.in (GIMPLE_H): Do not depend on TARGET_H.
2324 2012-06-03  Martin Jambor  <mjambor@suse.cz>
2326         * ipa-prop.h (ipa_get_jf_known_type_offset): New function.
2327         (ipa_get_jf_known_type_base_type): Likewise.
2328         (ipa_get_jf_known_type_component_type): Likewise.
2329         (ipa_get_jf_constant): Likewise.
2330         (ipa_get_jf_pass_through_formal_id): Likewise.
2331         (ipa_get_jf_pass_through_operation): Likewise.
2332         (ipa_get_jf_ancestor_offset): Likewise.
2333         (ipa_get_jf_ancestor_type): Likewise.
2334         (ipa_get_jf_ancestor_formal_id): Likewise.
2335         (ipa_get_jf_member_ptr_pfn): Likewise.
2336         * ipa-prop.c (ipa_set_jf_known_type): New function.
2337         (ipa_set_jf_constant): Likewise.
2338         (ipa_set_jf_simple_pass_through): Likewise.
2339         (ipa_set_jf_arith_pass_through): Likewise.
2340         (ipa_set_ancestor_jf): Likewise.
2341         (fill_member_ptr_cst_jump_function): Moved up and renamed to
2342         ipa_set_jf_member_ptr_cst.
2343         (detect_type_change_1): Use the new jump function creation functions.
2344         (compute_complex_assign_jump_func): Likewise.
2345         (compute_complex_ancestor_jump_func): Likewise.
2346         (compute_known_type_jump_func): Likewise.
2347         (compute_scalar_jump_functions): Likewise.
2348         (compute_pass_through_member_ptrs): Likewise.
2349         (determine_cst_member_ptr): Likewise.
2350         (combine_known_type_and_ancestor_jfs): Likewise.
2351         (try_make_edge_direct_simple_call): Likewise.
2352         (try_make_edge_direct_virtual_call): Likewise.
2353         (update_indirect_edges_after_inlining): Likewise.
2354         * ipa-cp.c (ipa_get_jf_pass_through_result): Use jump function
2355         access functions.  Incorporat NOP_EXPR and BINFO handling from its
2356         callers.
2357         (ipa_get_jf_ancestor_result): Likewise.  Incorporate handling BINFOs
2358         which was in its callers.
2359         (ipa_value_from_jfunc): Use jump function access functions.  Some
2360         functionality moved to functions above.
2361         (propagate_vals_accross_ancestor): Likewise.
2362         (propagate_vals_accross_pass_through): Use jump function access
2363         functions.
2364         (propagate_accross_jump_function): Likewise.
2365         * ipa-inline-analysis.c (remap_edge_change_prob): Use jump function
2366         access functions.
2367         (inline_merge_summary): Likewise.
2369 2012-06-03  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
2371         * config/pa/pa.h (MAX_PCREL17F_OFFSET): Define.
2372         * config/pa/pa.c (pa_attr_length_millicode_call): Use
2373         MAX_PCREL17F_OFFSET instead of fixed offset.
2374         (pa_attr_length_call): Likewise.
2375         (pa_attr_length_indirect_call): Likewise.
2377 2012-06-03  Oleg Endo  <olegendo@gcc.gnu.org>
2379         PR target/53512
2380         * config/sh/sh.opt (mfsca, mfsrra): New options.
2381         * config/sh/sh.md (rsqrtsf2): Use TARGET_FPU_ANY and TARGET_FSRRA
2382         condition.
2383         (fsca): Use TARGET_FPU_ANY and TARGET_FSCA condition.
2384         (sinssf2, cossf2): Fold expanders to ...
2385         (sincossf3): ... this new expander.  Use TARGET_FPU_ANY and
2386         TARGET_FSCA condition.
2387         * config/sh/sh.c (sh_option_override): Handle TARGET_FSRRA and
2388         TARGET_FSCA.
2389         * doc/invoke.texi (SH Options): Add descriptions for -mfsca,
2390         -mno-fsca, -mfsrra, -mno-fsrra.
2392 2012-06-03  Matt Turner  <mattst88@gmail.com>
2394         * config/mips/4600.md (r4700_imul_si): New.
2395         (r4700_imul_di): New.
2396         (r4700_fmul_single): New.
2397         (r4700_fmul_double): New.
2398         * config/mips/mips-cpus.def: Add r4700.
2399         * config/mips/mips.c: Likewise.
2400         * config/mips/mips.md: Likewise.
2401         * config/mips/mips-tables.opt: Regenerate.
2403 2012-06-02  Steven Bosscher  <steven@gcc.gnu.org>
2405         * config/sparc/sparc.h (INITIAL_ELIMINATION_OFFSET): Split out to
2406         new function sparc_initial_elimination_offset.
2407         * config/sparc/sparc.c (sparc_initial_elimination_offset): New
2408         function.
2409         * config/sparc/sparc-protos.h (sparc_initial_elimination_offset):
2410         Prototype it.
2412 2012-06-02  Kenneth Zadeck <zadeck@naturalbridge.com>
2414         * expmed.c (expand_mult, choose_multiplier): Change
2415         "2 * HOST_BITS_PER_WIDE_INT" to "HOST_BITS_PER_DOUBLE_INT".
2416         * expr.c (convert_modes): Likewise.
2417         * explow.c (plus_constant): Likewise.
2418         * fixed-value.c (fixed_saturate1, fixed_saturate2)
2419         (do_fixed_add, do_fixed_multiply, do_fixed_multiply)
2420         (do_fixed_multiply, do_fixed_multiply, do_fixed_divide)
2421         (do_fixed_divide, do_fixed_divide, do_fixed_divide)
2422         (do_fixed_divide, do_fixed_divide, do_fixed_shift, do_fixed_shift)
2423         (do_fixed_shift, fixed_convert, fixed_convert)
2424         (fixed_convert_from_int, fixed_convert_from_int)
2425         (fixed_convert_from_real): Likewise.
2426         * fold-const.c (fold_convert_const_int_from_fixed, sign_bit_p)
2427         (native_interpret_int, fold_binary_loc, fold_ternary_loc): Likewise.
2428         * varasm.c (output_constructor_bitfield): Likewise.
2429         * tree-vrp.c (register_edge_assert_for_2): Likewise.
2430         * double-int.c (rshift_double, lshift_double): Likewise.
2431         * double-int.h (double_int_fits_in_uhwi_p, double_int, double_int):
2432         Likewise.
2433         * simplify-rtx.c (mode_signbit_p)
2434         (simplify_const_unary_operation, simplify_binary_operation_1)
2435         (simplify_immed_subreg): Likewise.
2436         * builtins.c (c_readstr, fold_builtin_bitop): Likewise.
2437         * tree-vect-generic.c (build_replicated_const): Likewise.
2438         * dbxout.c (stabstr_O): Likewise.
2439         * emit-rtl.c (immed_double_int_const, immed_double_const)
2440         (gen_lowpart_common, init_emit_once): Likewise.
2441         * tree.c (integer_pow2p, tree_log2, tree_floor_log2)
2442         (widest_int_cst_value, upper_bound_in_type): Likewise.
2443         * stor-layout.c (initialize_sizetypes, fixup_signed_type)
2444         (fixup_unsigned_type): Likewise.
2445         * real.c (real_to_integer2, real_from_integer): Likewise.
2446         * dwarf2out.c (size_of_loc_descr, size_of_die, output_die)
2447         (clz_loc_descriptor, mem_loc_descriptor): Likewise.
2449 2012-06-01  Eric Botcazou  <ebotcazou@adacore.com>
2451         PR middle-end/53501
2452         * fold-const.c (fold_binary_loc): Refine previous change.
2454 2012-06-01  Olivier Hainque  <hainque@adacore.com>
2456         * config/rs6000/vxworks.h (SUBSUBTARGET_OVERRIDE_OPTIONS): Restore
2457         the "do {" part of the do-while(0) loop.
2459 2012-06-01  Yuri Rumyantsev  <yuri.s.rumyantsev@intel.com>
2461         * config/i386/i386.c (x86_sched_reorder): New function.
2462         Added new function x86_sched_reorder.
2464 2012-06-01  Richard Guenther  <rguenther@suse.de>
2466         * tree-loop-distribution.c (stmt_has_scalar_dependences_outside_loop):
2467         Handle PHIs.
2468         (classify_partition): Likewise.
2470 2012-06-01  Richard Guenther  <rguenther@suse.de>
2472         * tree-loop-distribution.c (enum partition_kind): New enum.
2473         (struct partition_s): Add kind and main_stmt members.
2474         (partition_alloc): Initialize kind to PKIND_NORMAL.
2475         (partition_builtin_p): New function.
2476         (copy_loop_before): Remove failure path and assert instead.
2477         (generate_loops_for_partition): Likewise.
2478         (generate_memset_zero): Fold into ...
2479         (generate_memset_builtin): ... this.
2480         (classify_partition): New function with code from
2481         can_generate_builtin and generate_builtin.
2482         (generate_builtin): Remove.
2483         (can_generate_builtin): Likewise.
2484         (fuse_partitions_with_similar_memory_accesses): Call
2485         partition_builtin_p instead of can_generate_builtin.
2486         (rdg_build_partitions): Do not call
2487         fuse_partitions_with_similar_memory_accesses here...
2488         (ldist_gen): ... but here after classifying all partitions.
2489         Remove failure path of generate_code_for_partition.
2490         (generate_code_for_partition): Generate code according
2491         to partition classification.
2493 2012-06-01  Manuel López-Ibáñez  <manu@gcc.gnu.org>
2494             Jonathan Wakely  <jwakely.gcc@gmail.com>
2496         PR c++/50134
2497         * doc/invoke.texi (Warning Options): Explain purpose and differences
2498         between -Wmissing-prototypes and -Wmissing-declarations.
2500 2012-06-01  Christian Bruel  <christian.bruel@st.com>
2502         * gcc.c (save_switch): Add user_p parameter.
2503         (read_specs): Likewise.
2504         (set_specs): Likewise.
2505         (validate_switches): Likewise.
2506         (validate_switches_from_spec): Likewise.
2507         (validate_all_switches): Pass on user_p parameter.
2508         (struct spec_list): Add user_p field.
2509         (struct switchstr): Add known field.
2510         (save_switch): Add known parameter.
2511         (INIT_STATIC_SPEC): Initialize user_p;
2512         (driver_unknown_option_callbac): call save_switch if
2513         OPT_SPECIAL_unknown.
2514         (driver_handle_option): Propagate OPT_specs.
2515         (do_spec_1): Set validated only if known.
2516         (check_live_switch): Likewise.
2517         (validate_switches): Set validated if known or user_spec.
2519 2012-06-01  Hans-Peter Nilsson  <hp@axis.com>
2521         Add CRIS atomic patterns for 1, 2, and 4 bytes.
2522         * config/cris/cris.c (cris_emit_trap_for_misalignment): New function.
2523         * config/cris/cris-protos.h: Declare it.
2524         * config/cris/cris.h [!TARGET_DEFAULT, TARGET_CPU_DEFAULT == 32]
2525         (TARGET_DEFAULT): Add alignment by 32.
2526         [!TARGET_DEFAULT, TARGET_CPU_DEFAULT == 10] (TARGET_DEFAULT): New
2527         case, as TARGET_CPU_DEFAULT == 0 but with alignment as for
2528         TARGET_CPU_DEFAULT == 32.
2529         (TARGET_TRAP_UNALIGNED_ATOMIC): New macro.
2530         * config/cris/cris.md: Include sync.md.  Avoid allocating specific
2531         numbers by replacing the define_constants for all UNSPECs with the
2532         equivalent define_c_enum construct.
2533         * config/cris/cris.opt (mtrap-unaligned-atomic): New option.
2534         * config/cris/sync.md: New file.
2536 2012-05-31  Matt Turner  <mattst88@gmail.com>
2538         * config/mips/4600.md (r4600_imul_si): Rename from r4600_imul.
2539         (r4600_imul_di): New.
2540         (r4600_idiv_si): Rename from r4600_idiv.
2541         (r4600_idiv_di): New.
2543 2012-05-31  Steven Bosscher  <steven@gcc.gnu.org>
2545         * output.h (__gcc_host_wide_int__): Move to hwint.h.
2546         (decl_default_tls_model): Move to tree.h
2547         (dump_file): Move to system.h.
2548         (default_stabs_asm_out_destructor, default_stabs_asm_out_constructor,
2549         dbxout_int, dbxout_stabd, dbxout_begin_stabn, dbxout_begin_stabn_sline,
2550         dbxout_begin_empty_stabs, dbxout_begin_simple_stabs,
2551         dbxout_begin_simple_stabs_desc, dbxout_stab_value_zero,
2552         dbxout_stab_value_zero, dbxout_stab_value_label_diff,
2553         dbxout_stab_value_internal_label,
2554         dbxout_stab_value_internal_label_diff): Move from here ...
2555         * dbxout.h: ... to here.
2556         * system.h (dump_file): Moved here from output.h.
2557         * hwint.h (__gcc_host_wide_int__): Moved here from output.h.
2558         * tree.h (decl_default_tls_model): Moved here from output.h.
2559         * varasm.c (default_stabs_asm_out_destructor,
2560         default_stabs_asm_out_constructor): Move from here ...
2561         * dbxout.c: ... to here.
2563         * gcov-dump.c (dump_file): Rename to dump_gcov_file.  Update callers.
2565         * collect2.h (dump_file): Rename to dump_ld_file.
2566         * collect2.c: Likewise.
2567         * tlink.c: Likewise.
2569         * alias.c: Do not include output.h.
2570         * auto-inc-dec.c: Likewise.
2571         * bt-load.c: Likewise.
2572         * caller-save.c: Likewise.
2573         * cfg.c: Likewise.
2574         * cfgbuild.c: Likewise.
2575         * cfgcleanup.c: Likewise.
2576         * cfglayout.c: Likewise.
2577         * cfgloop.c: Likewise.
2578         * cfgloopanal.c: Likewise.
2579         * cfgloopmanip.c: Likewise.
2580         * cfgrtl.c: Likewise.
2581         * cgraph.c: Likewise.
2582         * cgraphclones.c: Likewise.
2583         * combine-stack-adj.c: Likewise.
2584         * combine.c: Likewise.
2585         * cprop.c: Likewise.
2586         * cse.c: Likewise.
2587         * cselib.c: Likewise.
2588         * dbgcnt.c: Likewise.
2589         * df-problems.c: Likewise.
2590         * df-scan.c: Likewise.
2591         * dojump.c: Likewise.
2592         * fwprop.c: Likewise.
2593         * gcse.c: Likewise.
2594         * graph.c: Likewise.
2595         * haifa-sched.c: Likewise.
2596         * hw-doloop.c: Likewise.
2597         * ipa-inline-transform.c: Likewise.
2598         * ipa-pure-const.c: Likewise.
2599         * ipa-reference.c: Likewise.
2600         * ipa-utils.c: Likewise.
2601         * ira-build.c: Likewise.
2602         * ira-emit.c: Likewise.
2603         * lcm.c: Likewise.
2604         * loop-doloop.c: Likewise.
2605         * loop-invariant.c: Likewise.
2606         * loop-iv.c: Likewise.
2607         * loop-unroll.c: Likewise.
2608         * loop-unswitch.c: Likewise.
2609         * lto-cgraph.c: Likewise.
2610         * lto-section-in.c: Likewise.
2611         * lto-streamer-in.c: Likewise.
2612         * mcf.c: Likewise.
2613         * mode-switching.c: Likewise.
2614         * postreload-gcse.c: Likewise.
2615         * postreload.c: Likewise.
2616         * predict.c: Likewise.
2617         * profile.c: Likewise.
2618         * ree.c: Likewise.
2619         * reg-stack.c: Likewise.
2620         * regcprop.c: Likewise.
2621         * regmove.c: Likewise.
2622         * regstat.c: Likewise.
2623         * reload1.c: Likewise.
2624         * sched-ebb.c: Likewise.
2625         * sel-sched-dump.c: Likewise.
2626         * simplify-rtx.c: Likewise.
2627         * stor-layout.c: Likewise.
2628         * store-motion.c: Likewise.
2629         * tracer.c: Likewise.
2630         * tree-affine.c: Likewise.
2631         * tree-cfg.c: Likewise.
2632         * tree-cfgcleanup.c: Likewise.
2633         * tree-dfa.c: Likewise.
2634         * tree-into-ssa.c: Likewise.
2635         * tree-nomudflap.c: Likewise.
2636         * tree-optimize.c: Likewise.
2637         * tree-pretty-print.c: Likewise.
2638         * tree-profile.c: Likewise.
2639         * tree-ssa-address.c: Likewise.
2640         * tree-ssa-ccp.c: Likewise.
2641         * tree-ssa-copy.c: Likewise.
2642         * tree-ssa-dom.c: Likewise.
2643         * tree-ssa-loop-ch.c: Likewise.
2644         * tree-ssa-loop-im.c: Likewise.
2645         * tree-ssa-loop-manip.c: Likewise.
2646         * tree-ssa-loop-niter.c: Likewise.
2647         * tree-ssa-loop-prefetch.c: Likewise.
2648         * tree-ssa-loop-unswitch.c: Likewise.
2649         * tree-ssa-loop.c: Likewise.
2650         * tree-ssa-propagate.c: Likewise.
2651         * tree-ssa-structalias.c: Likewise.
2652         * tree-ssa-tail-merge.c: Likewise.
2653         * tree-ssa-threadedge.c: Likewise.
2654         * tree-ssa-threadupdate.c: Likewise.
2655         * tree-ssa-uncprop.c: Likewise.
2656         * tree-ssa-uninit.c: Likewise.
2657         * tree-ssa.c: Likewise.
2658         * value-prof.c: Likewise.
2659         * var-tracking.c: Likewise.
2660         * web.c: Likewise.
2662         * config/m32r/m32r.c: Include dbxout.h.
2663         * config/pa/pa.c: Likewise.
2664         * config/rs6000/rs6000.c: Likewise.
2666         * Makefile.in: Fix dependencies.
2667         * config/rs6000/t-rs5000: Likewise.
2669 2012-05-31  Aldy Hernandez  <aldyh@redhat.com>
2671         * tree-ssa-loop-im.c (execute_sm): Do not check flag_tm.
2672         * gimple.h (block_in_transaction): Check for flag_tm.
2674 2012-05-31  Aldy Hernandez  <aldyh@redhat.com>
2676         PR tree-optimization/52558
2677         * cfg.c (alloc_aux_for_edge): Fix comment.
2678         (alloc_aux_for_edge): Remove static.
2679         * basic-block.h (alloc_aux_for_edge): Protoize.
2680         * tree-ssa-loop-im.c (execute_sm_if_changed): New.
2681         (execute_sm_if_changed_flag): New.
2682         (execute_sm_if_changed_flag_set): New.
2683         (execute_sm): Do not generate data races unless requested.
2684         (tree_ssa_lim_initialize): Call alloc_aux_for_edges.
2685         (tree_ssa_lim_finalize): Call free_aux_for_edges.
2686         * gimple.h (block_in_transaction): New.
2687         (gimple_in_transaction): Use block_in_transaction.
2689 2012-05-31  Georg-Johann Lay  <avr@gjlay.de>
2691         PR target/51345
2692         * config/avr/avr.opt (-msp8): Document it.
2693         * doc/invoke.texi (AVR Options): Ditto.  And document related
2694         built-in macros.
2696 2012-05-31  Diego Novillo  <dnovillo@google.com>
2698         * configure.ac (CXX_FOR_BUILD): Define and substitute.
2699         (BUILD_CXXFLAGS): Define and substitute.
2700         * Makefile.in (BUILD_CXXFLAGS): Define.
2701         (CXX_FOR_BUILD): Define.
2702         (COMPILER_FOR_BUILD): Set to CXX_FOR_BUILD if building with C++.
2703         (LINKER_FOR_BUILD): Likewise.
2704         (BUILD_COMPILERFLAGS): Set to BUILD_CXXFLAGS if building with C++.
2705         (BUILD_LINKERFLAGS): Likewise.
2706         * configure: Regenerate.
2708 2012-05-31  Steven Bosscher  <steven@gcc.gnu.org>
2710         * Makefile.in: Fix many dependencies.
2711         * tree-profile.c: Don't include regs.h.
2712         * tree-vectorizer.c: Don't include cfglayout.h.
2713         * tree-vect-stmts.c: Likewise.
2714         * tree-vect-slp.c: Likewise.
2715         * tree-vect-loop.c: Likewise.
2716         * reg-stack.c: Likewise.
2717         * tree-ssa-loop-manip.c: Likewise.
2718         * toplev.c: Likewise.
2719         * varasm.c: Don't include cfglayout.h, basic-block.h,
2720         and tree-iterator.h.
2721         * tree-cfgcleanup.c: Don't include cfglayout.h.
2722         * passes.c: Don't include cfglayout.h, dwarf2asm.h,
2723         dwarf2out.h, dbxout.h, sdbout.h, and xcoffout.h.
2724         * cgraphclones.c: Don't include plugin.h.
2726 2012-05-31  Georg-Johann Lay  <avr@gjlay.de>
2728         * config/avr/t-avr: Correct avr-mmcu.texi dependencies.
2729         (s-avr-mmcu-texi): Don't sed on gen-avr-mmcu-texi output.
2730         * doc/avr-mmcu.texi (svn:eol-style): Set to native.
2732 2012-05-31  Richard Guenther  <rguenther@suse.de>
2734         * tree-loop-distribution.c (struct partition_s): New struct,
2735         typedef and vector type.
2736         (partition_alloc, partition_free): New functions.
2737         (generate_loops_for_partition, generate_builtin,
2738         generate_code_for_partition, rdg_flag_uses, rdg_flag_vertex,
2739         rdg_flag_vertex_and_dependent, rdg_flag_loop_exits,
2740         build_rdg_partition_for_component, can_generate_builtin,
2741         similar_memory_accesses, fuse_partitions_with_similar_memory_accesses,
2742         rdg_build_partitions, dump_rdg_partitions, debug_rdg_partitions,
2743         number_of_rw_in_partition, partition_contains_all_rw,
2744         ldist_gen): Use partition_t instead of bitmap.
2746 2012-05-31  Georg-Johann Lay  <avr@gjlay.de>
2748         * config/avr/gen-avr-mmcu-texi.c: Sort MCUs.
2749         * doc/avr-mmcu.texi: Regenerate.
2751 2012-05-31  Richard Guenther  <rguenther@suse.de>
2753         * tree-loop-distribution.c (stmt_has_scalar_dependences_outside_loop):
2754         Use FOR_EACH_SSA_DEF_OPERAND.
2755         (generate_builtin): Adjust.
2756         (stmt_generated_in_another_partition): Remove.
2757         (add_scalar_computations_to_partition): Likewise.
2758         (rdg_build_partitions): Do not call
2759         add_scalar_computations_to_partition.
2761 2012-05-31  Eric Botcazou  <ebotcazou@adacore.com>
2763         * tree-dfa.c (get_ref_base_and_extent): Compute the offset using
2764         double ints throughout.
2765         * tree-sra.c (build_user_friendly_ref_for_offset) <RECORD_TYPE>:
2766         Check that the position of the field is representable as an integer.
2768 2012-05-31  Richard Guenther  <rguenther@suse.de>
2770         * tree-data-ref.c (dr_analyze_innermost): Properly convert
2771         the MEM_REF offset to sizetype.
2773 2012-05-31  Georg-Johann Lay  <avr@gjlay.de>
2775         * doc/invoke.texi (AVR Options): Fix typos.
2777 2012-05-31  Hans-Peter Nilsson  <hp@axis.com>
2779         * config/cris/cris.h (CC1_SPEC): Pass through all -march=
2780         and -mcpu= options.
2781         (ASM_SPEC): Ditto, not just -march=v32, but translate non-v10,
2782         non-v32 into --march=v0_v10.
2784 2012-05-31  Richard Sandiford  <rdsandiford@googlemail.com>
2786         * ira-int.h (target_ira_int): Rename x_move_cost to
2787         x_ira_register_move_cost, x_may_move_in_cost to
2788         x_ira_may_move_in_cost and x_may_move_out_cost to
2789         x_ira_may_move_out_cost.  Delete the old fields with
2790         those names and also x_ira_max_register_move_cost,
2791         x_ira_max_may_move_in_cost and x_ira_max_may_move_out_cost.
2792         (move_cost, may_move_in_cost, may_move_out_cost)
2793         (ira_max_register_move_cost, ira_max_may_move_in_cost)
2794         (ira_max_may_move_out_cost): Delete.
2795         * ira.c (init_move_cost): Rename to...
2796         (ira_init_register_move_cost): ...this, deleting the old
2797         function with that name.  Apply above variable renamings.
2798         Retain asserts for null fields.
2799         (ira_init_once): Don't initialize register move costs here.
2800         (free_register_move_costs): Apply above variable renamings.
2801         Remove code for deleted fields.
2803 2012-05-31  Richard Sandiford  <rdsandiford@googlemail.com>
2805         * ira.c (init_move_cost): Adjust choice of subclasses to match
2806         the current ira_init_register_move_cost choice.  Use
2807         ira_class_subset_p instead of reg_class_subset_p.
2808         (ira_init_register_move_cost): Assert that move_cost,
2809         may_move_in_cost and may_move_out_cost already hold the desired
2810         values for their ira_* equivalents.  For the latter two,
2811         ignore classes that can't store a register of the given mode.
2813 2012-05-31  Richard Sandiford  <rdsandiford@googlemail.com>
2815         * ira.c (setup_allocno_and_important_classes): Use
2816         ira_class_hard_regs_num to check whether a class has any
2817         allocatable registers.
2818         (ira_init_register_move_cost): Likewise.
2820 2012-05-31  Richard Sandiford  <rdsandiford@googlemail.com>
2822         * ira.c (init_move_cost): Adjust local variable names to match
2823         file conventions.  Use ira_assert instead of gcc_assert.
2825 2012-05-31  Richard Sandiford  <rdsandiford@googlemail.com>
2827         * regs.h (move_table, move_cost, may_move_in_cost, may_move_out_cost):
2828         Move these definitions and associated target_globals fields to...
2829         * ira-int.h: ...here.
2830         * rtl.h (init_move_cost): Delete.
2831         * reginfo.c (last_mode_for_init_move_cost, init_move_cost): Move to...
2832         * ira.c: ...here, making the latter static.
2834 2012-05-31  Richard Sandiford  <rdsandiford@googlemail.com>
2836         * ira-costs.c (copy_cost): Use ira_init_register_move_cost_if_necessary
2837         and ira_register_move_cost instead of init_move_cost and move_cost.
2839 2012-05-31  Richard Sandiford  <rdsandiford@googlemail.com>
2841         * ira.h (target_ira): Delete x_ira_available_class_regs.
2842         (ira_available_class_regs): Delete.
2843         * ira.c (setup_available_class_regs): Delete.
2844         (setup_alloc_classes): Don't call it.
2845         (setup_pressure_classes): Use ira_class_hard_regs_num instead of
2846         ira_available_class_regs.
2847         * haifa-sched.c (print_curr_reg_pressure, setup_insn_reg_pressure_info)
2848         (model_spill_cost): Likewise.
2849         * ira-build.c (low_pressure_loop_node_p): Likewise.
2850         * ira-color.c (color_pass): Likewise.
2851         * ira-emit.c (change_loop): Likewise.
2852         * ira-lives.c (inc_register_pressure, dec_register_pressure)
2853         (single_reg_class, ira_implicitly_set_insn_hard_regs)
2854         (process_bb_node_lives): Likewise.
2855         * loop-invariant.c (gain_for_invariant): Likewise.
2857 2012-05-30  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
2859         PR target/52999
2860         * config/pa/pa.c (TARGET_SECTION_TYPE_FLAGS): Define.
2861         (pa_section_type_flags): New.
2862         (pa_legitimate_constant_p): Revert previous change.
2864 2012-05-30  Steven Bosscher  <steven@gcc.gnu.org>
2866         * ira.c (allocate_initial_values): Make static.
2868 2012-05-30  Uros Bizjak  <ubizjak@gmail.com>
2870         * config/i386/i386.c (legitimize_tls_address) <TLS_MODEL_INITIAL_EXEC>:
2871         Generate tls_initial_exec_64_sun only when !TARGET_X32.
2873 2012-05-30  Richard Guenther  <rguenther@suse.de>
2875         PR middle-end/53501
2876         * fold-const.c (fold_binary_loc): Make sure to call
2877         fold_plusminus_mult_expr with the original sign of operands.
2879 2012-05-30  Steven Bosscher  <steven@gcc.gnu.org>
2881         * Makefile.in: Fix many dependencies.
2882         (DWARF2_H): Depend on dwarf2.def.
2883         (RTL_ERROR_H): Depend on rtl-error.h.
2884         (TREE_PRETTY_PRINT_H, GIMPLE_PRETTY_PRINT_H): New.  Replace
2885         all gimple-pretty-print.h and tree-pretty-print.h references.
2887 2012-05-30  Marc Glisse  <marc.glisse@inria.fr>
2889         * simplify-rtx.c (simplify_binary_operation_1): Optimize shuffle of
2890         concatenations.
2892 2012-05-30  Richard Guenther  <rguenther@suse.de>
2894         PR middle-end/53522
2895         * tree-emutls.c (gen_emutls_addr): Do not add globals to
2896         referenced-vars.
2898 2012-05-30  Eric Botcazou  <ebotcazou@adacore.com>
2900         * explow.c (probe_stack_range): Restore simple control flow and stop
2901         again when the probe cannot be generated if HAVE_check_stack.
2903 2012-05-30  Jakub Jelinek  <jakub@redhat.com>
2905         PR rtl-optimization/53519
2906         * combine.c (simplify_shift_const_1) <case NOT>: Use constm1_rtx
2907         instead of GEN_INT (GET_MODE_MASK (mode)) as second operand of XOR.
2909 2012-05-30  Ramana Radhakrishnan  <ramana.radhakrishnan@linaro.org>
2911         * config/arm/arm.c (arm_evpc_neon_vrev): Adjust off by one error.
2913 2012-05-29  Jack Howarth  <howarth@bromo.med.uc.edu>
2915         PR debug/53453
2916         * doc/tm.texi: Update.
2917         * doc/tm.texi.in (SDB and DWARF) <TARGET_FORCE_AT_COMP_DIR>: Add @hook.
2918         * target.def (force_at_comp_dir): New hook.
2919         * config/darwin.h (TARGET_FORCE_AT_COMP_DIR): Define.
2920         * dwarf2out.c (dwarf2out_finish): Check targetm.force_at_comp_dir.
2922 2012-05-29  Jack Howarth  <howarth@bromo.med.uc.edu>
2924         * config/darwin.h (STARTFILE_SPEC): Do not use -lbundle1.o when
2925         Darwin >= 10.
2926         (DARWIN_DYLIB1_SPEC): Do not use -ldylib1.10.5.o when Darwin >= 10.
2927         (DARWIN_CRT1_SPEC): Use -lcrt1.10.6.o when Darwin >= 10.
2929 2012-05-29  Oleg Endo  <olegendo@gcc.gnu.org>
2931         PR target/51340
2932         * config/sh/sh.c (sh_option_override): Set TARGET_FMAC if
2933         flag_unsafe_math_optimizations is set.
2934         * doc/invoke.texi (SH Options): Add -mno-fused-madd description.
2935         Update description of -mfused-madd.
2937 2012-05-29  Oleg Endo  <olegendo@gcc.gnu.org>
2939         PR target/52941
2940         * config/sh/predicates.md (atomic_arith_operand,
2941         atomic_logical_operand): New predicates.
2942         * config/sh/sh.c (sh_option_override): Check atomic options.
2943         * config/sh/sh.h (TARGET_ANY_ATOMIC, UNSUPPORTED_ATOMIC_OPTIONS,
2944         UNSUPPORTED_HARD_ATOMIC_CPU): New macros.
2945         (DRIVER_SELF_SPECS): Use UNSUPPORTED_ATOMIC_OPTIONS and
2946         UNSUPPORTED_HARD_ATOMIC_CPU.
2947         * config/sh/sync.md: Update description comments.
2948         (I12): New mode iterator.
2949         (fetchop_predicate, fetchop_constraint): New code attributes.
2950         (atomic_compare_and_swapsi_hard, atomic_compare_and_swap<mode>_hard,
2951         atomic_exchangesi_hard, atomic_exchange<mode>_hard,
2952         atomic_fetch_<fetchop_name>si_hard,
2953         atomic_fetch_<fetchop_name><mode>_hard,
2954         atomic_fetch_nandsi_hard, atomic_fetch_nand<mode>_hard,
2955         atomic_<fetchop_name>_fetchsi_hard,
2956         atomic_<fetchop_name>_fetch<mode>_hard,
2957         atomic_nand_fetchsi_hard, atomic_nand_fetch<mode>_hard,
2958         atomic_test_and_set_hard): New insns.
2959         (atomic_compare_and_swap<mode>_soft, atomic_exchange<mode>_soft,
2960         atomic_fetch_<fetchop_name><mode>_soft, atomic_fetch_nand<mode>_soft,
2961         atomic_<fetchop_name>_fetch<mode>_soft, atomic_nand_fetch<mode>_soft,
2962         atomic_test_and_set_soft): Use same formatting for the first line of
2963         the asm block as in new insns above.
2964         (atomic_compare_and_swap<mode>, atomic_exchange<mode>,
2965         atomic_fetch_<fetchop_name><mode>, atomic_<fetchop_name>_fetch<mode>,
2966         atomic_test_and_set): Integrate new *_hard insns into expanders.
2967         * config/sh/sh.opt (mhard-atomic): New option.
2968         * doc/invoke.texi (SH Options): Document it.
2970 2012-05-29  Meador Inge  <meadori@codesourcery.com>
2972         * c-decl.c (c_push_function_context): Always create a new language
2973         function.
2974         (c_pop_function_context): Clear the language function created in
2975         c_push_function_context.
2977 2012-05-29  Matt Turner  <mattst88@gmail.com>
2979         * config/alpha/ev6.md: (define_bypass "ev6_fmul,ev6_fadd"): New.
2980         (define_bypass "ev6_fcmov"): New.
2982 2012-05-29  Steven Bosscher  <steven@gcc.gnu.org>
2984         * integrate.c: Remove.
2985         * integrate.h: Remove.
2986         * Makefile.in: Remove make rules for integrate.c and INTEGRATE_H.
2987         * config/arm/t-arm: Remove INTEGRATE_H dependency for target files.
2988         * config/rs6000/t-rs6000: Likewise
2989         * config/spu/t-spu-elf: Likewise.
2990         * function.h (get_hard_reg_initial_val, has_hard_reg_initial_val,
2991         get_hard_reg_initial_reg, emit_initial_value_sets): Move prototypes
2992         from integrate.h to here.
2993         (initial_value_entry): New prototype.
2994         * reload.h (allocate_initial_values): Remove prototype.
2995         * tree.h (set_decl_abstract_flags, set_decl_origin_self): Likewise.
2996         * cse.c (fixed_base_plus_p): Don't handle virtual registers for
2997         integrate.c.
2998         * dwarf2out.c (set_decl_origin_self, set_block_origin_self,
2999         set_decl_abstract_flags, set_block_abstract_flags): Move from
3000         integrate.c to here, the only user.
3001         * expmed.c (extract_fixed_bit_field): Remove outdated comment
3002         about integrate.c.
3003         * function.c: Don't include integrate.h.
3004         (struct initial_value_pair, struct initial_value_struct,
3005         get_hard_reg_initial_val, has_hard_reg_initial_val,
3006         get_hard_reg_initial_reg, emit_initial_value_sets): Move from
3007         integrate.c to here.
3008         (initial_value_entry): New function.
3009         * genemit.c (main): Don't print integrate.h include line.
3010         * ira.c: Don't include integrate.h.
3011         (allocate_initial_values): Move from integrate.c to here.
3012         (ira): Update allocate_initial_values call.
3013         * tree-inline.c: Don't include integrate.h.
3014         (function_attribute_inlinable_p): Moved from integrate.c to here.
3015         * cfgexpand.c: Don't include integrate.h.
3016         * except.c: Likewise.
3017         * langhooks.c: Likewise.
3018         * passes.c: Likewise.
3019         * toplev.c: Likewise.
3020         * config/frv/frv.c: Likewise.
3021         * config/pa/pa.c: Likewise.
3022         * config/spu/spu.c: Likewise.
3023         * config/epiphany/epiphany.c: Likewise.
3024         * config/mep/mep.c: Likewise.
3025         * config/score/score.c: Likewise.
3026         * config/picochip/picochip.c: Likewise.
3027         * config/sh/sh.c: Likewise.
3028         * config/alpha/alpha.c: Likewise.
3029         * config/microblaze/microblaze.c: Likewise.
3030         * config/mips/mips.c: Likewise.
3031         * config/v850/v850.c: Likewise.
3032         * config/mmix/mmix.c: Likewise.
3033         * config/bfin/bfin.c: Likewise.
3034         * config/arm/arm.c: Likewise.
3035         * config/s390/s390.c: Likewise.
3036         * config/m32r/m32r.c: Likewise.
3037         * config/rs6000/rs6000.c: Likewise.
3038         * config/c6x/c6x.c: Include function.h instead of integrate.h.
3039         * config/tilegx/tilegx.c: Likewise.
3040         * config/tilepro/tilepro.c: Likewise.
3042 2012-05-29  Georg-Johann Lay  <avr@gjlay.de>
3044         * config/avr/t-avr (s-avr-mmcu-texi): Call
3045         gen-avr-mmcu-texi$(build_exeext) via ./ and don't assume . is in PATH.
3047 2012-05-29  Michael Matz  <matz@suse.de>
3049         * rtl.h (assign_stack_temp, assign_stack_temp_for_type,
3050         assign_temp): Remove 'keep' argument.
3051         (mark_temp_addr_taken): Remove prototype.
3052         * tree.h (expand_decl): Remove prototype.
3053         * function.c (struct temp_slot): Remove addr_taken and keep member.
3054         (assign_stack_temp_for_type) Don't initialize above, remove
3055         keep argument.
3056         (assign_stack_temp, assign_temp): Remove keep argument.
3057         (mark_temp_addr_taken): Remove.
3058         (preserve_temp_slots): Remove handling of addr_taken and keep members.
3059         (free_temp_slots): Ditto.
3060         * expr.c (expand_expr_real_1 <COMPOUND_LITERAL_EXPR>): Remove
3061         dead code.
3062         * stmt.c (expand_asm_operands): Remove dead code.
3063         (expand_decl): Remove.
3064         * c-decl.c (finish_struct): Don't call expand_decl.
3065         * builtins.c (expand_builtin_cexpi): Adjust calls to assign_temp
3066         and assign_stack_temp.
3067         * calls.c (save_fixed_argument_area, initialize_argument_information,
3068         expand_call, emit_library_call_value_1, store_one_arg): Ditto.
3069         * expmed.c (extract_bit_field_1): Ditto.
3070         * expr.c (emit_group_load_1, emit_group_store,
3071         copy_blkmode_from_reg, emit_push_insn, expand_assignment,
3072         store_field, expand_constructor, expand_cond_expr_using_cmove,
3073         expand_expr_real_2, expand_expr_real_1): Ditto.
3074         * stmt.c (expand_asm_operands, expand_return): Ditto.
3076         * function.c (pop_temp_slots): Call free_temp_slots.
3077         * calls.c (store_one_arg): Don't call preserve_temp_slots or
3078         free_temp_slots.
3079         * expr.c (expand_assignment): Don't call free_temp_slots.
3081         * config/arm/arm.c (neon_expand_vector_init): Ditto.
3082         * config/i386/i386.c (ix86_expand_vector_set): Ditto.
3083         (ix86_expand_vector_extract): Ditto.
3084         * config/ia64/ia64.c (spill_xfmode_rfmode_operand,
3085         ia64_expand_movxf_movrf): Ditto.
3086         * config/mips/mips.c (mips_expand_vi_general): Ditto.
3087         * config/mmix/mmix.md (floatdisf2, floatunsdisf2, truncdfsf2,
3088         extendsfdf2): Ditto.
3089         * config/rs6000/rs6000.c (rs6000_expand_vector_init,
3090         rs6000_expand_vector_set, rs6000_expand_vector_extract,
3091         rs6000_allocate_stack_temp): Ditto.
3092         * config/rs6000/rs6000.md (fix_trunctfsi2_fprs): Ditto.
3093         * config/sparc/sparc.c (emit_soft_tfmode_libcall,
3094         sparc_emit_float_lib_cmp, sparc_emit_float_lib_cmp,
3095         sparc_expand_vector_init): Ditto.
3097 2012-05-29  Michael Matz  <matz@suse.de>
3099         * c-tree.h (c_expand_decl): Remove prototype.
3101         * expr.c (expand_expr_real_1 <normal_inner_ref>): Don't allocate
3102         a kept temp.
3103         (expand_expr_real_1 <COMPOUND_LITERAL_EXPR>): Make unreachable.
3104         * gimple-fold.c (canonicalize_constructor_val): Canonicalize
3105         COMPOUND_LITERAL_EXPR.
3106         * function.c (expand_function_start): Don't call expand_decl,
3107         instead assert that we have RTL assigned.
3108         * tree-ssa-live.c (remove_unused_locals): Clear
3109         nonlocal_goto_save_area if its backing variable is removed.
3110         * stmt.c (expand_asm_operands): Remove handling of non-lvalues
3111         as mem inputs.
3112         (expand_decl): Assert that this does nothing.
3113         * calls.c (expand_call): Don't call mark_temp_addr_taken.
3115 2012-05-29  Richard Guenther  <rguenther@suse.de>
3117         PR tree-optimization/53516
3118         * tree-data-ref.c (stmt_with_adjacent_zero_store_dr_p): Reject
3119         bitfield accesses.
3120         * tree-vect-data-refs.c (vect_analyze_data_refs): Likewise.
3122 2012-05-29  Joseph Myers  <joseph@codesourcery.com>
3124         * LANGUAGES: Fix typos.
3125         * Makefile.in: Fix typos.
3126         * alias.c: Fix typos.
3127         * auto-inc-dec.c: Fix typos.
3128         * bb-reorder.c: Fix typos.
3129         * cfgcleanup.c: Fix typos.
3130         * cgraph.c: Fix typos.
3131         * cgraph.h: Fix typos.
3132         * cgraphunit.c: Fix typos.
3133         * collect2-aix.h: Fix typos.
3134         * collect2.c: Fix typos.
3135         * compare-elim.c: Fix typos.
3136         * config/alpha/vms.h: Fix typos.
3137         * config/arm/README-interworking: Fix typos.
3138         * config/arm/arm.c: Fix typos.
3139         * config/arm/iterators.md: Fix typos.
3140         * config/arm/vxworks.h: Fix typos.
3141         * config/avr/avr.c: Fix typos.
3142         * config/avr/avr.h: Fix typos.
3143         * config/avr/avr.md: Fix typos.
3144         * config/avr/builtins.def: Fix typos.
3145         * config/c6x/c6x.c: Fix typos.
3146         * config/cr16/cr16.c: Fix typos.
3147         * config/cr16/cr16.md: Fix typos.
3148         * config/cris/cris.md: Fix typos.
3149         * config/darwin.c: Fix typos.
3150         * config/darwin.opt: Fix typos.
3151         * config/i386/i386-c.c: Fix typos.
3152         * config/i386/i386.c: Fix typos.
3153         * config/ia64/ia64.c: Fix typos.
3154         * config/m68k/cf.md: Fix typos.
3155         * config/mep/mep.c: Fix typos.
3156         * config/microblaze/microblaze.c: Fix typos.
3157         * config/microblaze/microblaze.h: Fix typos.
3158         * config/mn10300/mn10300.c: Fix typos.
3159         * config/mn10300/mn10300.md: Fix typos.
3160         * config/pa/pa.c: Fix typos.
3161         * config/picochip/picochip.h: Fix typos.
3162         * config/rs6000/a2.md: Fix typos.
3163         * config/rs6000/rs6000.c: Fix typos.
3164         * config/rs6000/vector.md: Fix typos.
3165         * config/rx/rx.md: Fix typos.
3166         * config/rx/rx.opt: Fix typos.
3167         * config/s390/2097.md: Fix typos.
3168         * config/s390/s390.c: Fix typos.
3169         * config/s390/s390.h: Fix typos.
3170         * config/sh/sh.c: Fix typos.
3171         * config/sh/sh.md: Fix typos.
3172         * config/sparc/sync.md: Fix typos.
3173         * config/spu/spu.c: Fix typos.
3174         * config/spu/spu.md: Fix typos.
3175         * config/vms/vms.c: Fix typos.
3176         * config/vxworks-dummy.h: Fix typos.
3177         * config/vxworks.h: Fix typos.
3178         * cselib.c: Fix typos.
3179         * df-scan.c: Fix typos.
3180         * df.h: Fix typos.
3181         * doc/extend.texi: Fix typos.
3182         * doc/install.texi: Fix typos.
3183         * doc/invoke.texi: Fix typos.
3184         * doc/md.texi: Fix typos.
3185         * doc/plugins.texi: Fix typos.
3186         * doc/rtl.texi: Fix typos.
3187         * dse.c: Fix typos.
3188         * dwarf2asm.c: Fix typos.
3189         * dwarf2out.c: Fix typos.
3190         * except.h: Fix typos.
3191         * expr.c: Fix typos.
3192         * fold-const.c: Fix typos.
3193         * gcc.c: Fix typos.
3194         * gcse.c: Fix typos.
3195         * genautomata.c: Fix typos.
3196         * gengtype-state.c: Fix typos.
3197         * gengtype.c: Fix typos.
3198         * genhooks.c: Fix typos.
3199         * gimple-fold.c: Fix typos.
3200         * gimple-pretty-print.c: Fix typos.
3201         * gimple.c: Fix typos.
3202         * gimple.h: Fix typos.
3203         * gimplify.c: Fix typos.
3204         * graphite-interchange.c: Fix typos.
3205         * graphite-sese-to-poly.c: Fix typos.
3206         * ifcvt.c: Fix typos.
3207         * input.c: Fix typos.
3208         * ipa-cp.c: Fix typos.
3209         * ipa-inline-analysis.c: Fix typos.
3210         * ipa-inline-transform.c: Fix typos.
3211         * ipa-inline.c: Fix typos.
3212         * ipa-pure-const.c: Fix typos.
3213         * ipa-ref.h: Fix typos.
3214         * ipa-reference.c: Fix typos.
3215         * ipa-utils.c: Fix typos.
3216         * ipa.c: Fix typos.
3217         * ira-emit.c: Fix typos.
3218         * ira-lives.c: Fix typos.
3219         * lto-streamer.c: Fix typos.
3220         * lto-streamer.h: Fix typos.
3221         * lto-wrapper.c: Fix typos.
3222         * mcf.c: Fix typos.
3223         * mode-switching.c: Fix typos.
3224         * modulo-sched.c: Fix typos.
3225         * plugin.c: Fix typos.
3226         * postreload.c: Fix typos.
3227         * sched-deps.c: Fix typos.
3228         * sel-sched-ir.c: Fix typos.
3229         * sel-sched-ir.h: Fix typos.
3230         * sel-sched.c: Fix typos.
3231         * sese.c: Fix typos.
3232         * stor-layout.c: Fix typos.
3233         * target-hooks-macros.h: Fix typos.
3234         * target.def: Fix typos.
3235         * trans-mem.c: Fix typos.
3236         * tree-eh.c: Fix typos.
3237         * tree-predcom.c: Fix typos.
3238         * tree-sra.c: Fix typos.
3239         * tree-ssa-address.c: Fix typos.
3240         * tree-ssa-loop-ivopts.c: Fix typos.
3241         * tree-ssa-loop-niter.c: Fix typos.
3242         * tree-ssa-math-opts.c: Fix typos.
3243         * tree-ssa-pre.c: Fix typos.
3244         * tree-ssa-propagate.c: Fix typos.
3245         * tree-ssa-reassoc.c: Fix typos.
3246         * tree-ssa-sccvn.c: Fix typos.
3247         * tree-ssa-ter.c: Fix typos.
3248         * tree-ssa-uninit.c: Fix typos.
3249         * tree-ssanames.c: Fix typos.
3250         * tree-vect-generic.c: Fix typos.
3251         * tree-vect-slp.c: Fix typos.
3252         * tree.c: Fix typos.
3253         * tree.h: Fix typos.
3254         * varasm.c: Fix typos.
3255         * varpool.c: Fix typos.
3257 2012-05-29  Joseph Myers  <joseph@codesourcery.com>
3259         * doc/include/texinfo.tex: Update to version 2012-05-16.16.
3261 2012-05-29  Richard Guenther  <rguenther@suse.de>
3263         * tree-dfa.c (find_vars_r): Do not call add_referenced_vars
3264         for globals.
3265         (add_referenced_var_1): Re-organize.  Assert we are not
3266         called for globals.
3267         (remove_referenced_var): Likewise.
3268         * varpool.c (add_new_static_var): Use create_tmp_var_raw.
3269         * tree-mudflap.c (execute_mudflap_function_ops): Do not
3270         call add_referenced_var on globals.
3271         * matrix-reorg.c (transform_access_sites): Likewise.
3273 2012-05-29  Steven Bosscher  <steven@gcc.gnu.org>
3275         * alias.c (reg_known_value): Make this a VEC.
3276         (reg_known_equiv_p): Make this an sbitmap.
3277         (reg_known_value_size): Remove.
3278         (get_reg_known_value, set_reg_known_value, get_reg_known_equiv_p,
3279         set_reg_known_equiv_p): Update for reg_known_value and
3280         reg_known_value_size data structure change.
3281         (init_alias_analysis, end_alias_analysis): Likewise.
3283 2012-05-29  Jakub Jelinek  <jakub@redhat.com>
3285         PR middle-end/53510
3286         * input.c (read_line): Use XRESIZEVEC instead of XNEWVEC
3287         to avoid leaking memory.  No need to handle memory allocation
3288         failure.  Double string_len on each reallocation instead of adding 2.
3289         * gcov.c (read_line): Likewise.
3291 2012-05-29  Hans-Peter Nilsson  <hp@axis.com>
3293         * config/cris/cris.h (TARGET_HAS_BREAK, TARGET_TRAP_USING_BREAK8):
3294         New macros.
3295         * config/cris/cris.md ("trap"): Define, enabled for
3296         TARGET_TRAP_USING_BREAK8.
3297         * config/cris/cris.opt (mtrap-using-break8): New option.
3299 2012-05-28  Paolo Carlini  <paolo.carlini@oracle.com>
3301         PR c++/25137
3302         * doc/invoke.texi: Document -Wmissing-braces not enabled by -Wall
3303         for C++.
3305 2012-05-28  Hans-Peter Nilsson  <hp@axis.com>
3307         * doc/md.texi (stack_protect_test): Remove negation of branch to label.
3308         (Standard Names): Fix typos in documentation of atomic patterns.
3310 2012-05-27  Nathan Sidwell  <nathan@acm.org>
3312         * tree.c (build_constructor): Propagate TREE_SIDE_EFFECTS.
3314 2012-05-26  Jason Merrill  <jason@redhat.com>
3316         PR c++/53220
3317         * c-typeck.c (array_to_pointer_conversion): Give -Wc++-compat warning
3318         about array compound literals.
3320 2012-05-26  Eric Botcazou  <ebotcazou@adacore.com>
3322         * cfgcleanup.c (try_optimize_cfg): Do not delete forwarder blocks
3323         if CLEANUP_NO_INSN_DEL.
3324         * cfgrtl.c (unique_locus_on_edge_between_p): New function extracted
3325         from cfg_layout_merge_blocks.
3326         (emit_nop_for_unique_locus_between): New function.
3327         (rtl_merge_blocks): Invoke emit_nop_for_unique_locus_between.
3328         (cfg_layout_merge_blocks): Likewise.
3330 2012-05-26  Dimitrios Apostolou  <jimis@gmx.net>
3331             Paolo Bonzini  <bonzini@gnu.org>
3333         * df-scan.c (df_def_record_1): Assert a parallel must contain an
3334         EXPR_LIST at this point.  Receive the LOC and move its extraction...
3335         (df_defs_record): ... here. Change if-else to a switch statement.
3336         (df_find_hard_reg_defs, df_find_hard_reg_defs_1): New.
3337         (df_get_call_refs): Changed defs_generated from bitmap to HARD_REG_SET
3338         and compute it from df_find_hard_reg_defs(). Record DF_REF_BASE
3339         DEFs in REGNO order. Use HARD_REG_SET instead of bitmap for
3340         regs_invalidated_by_call.
3341         (df_insn_refs_collect): Record DF_REF_REGULAR DEFs after
3342         df_get_call_refs().
3344 2012-05-25  Eric Botcazou  <ebotcazou@adacore.com>
3346         PR lto/52178
3347         * tree-inline.c (remap_gimple_op_r): Fix handling of FIELD_DECL.
3348         * tree.c (RETURN_TRUE_IF_VAR): Do not return true for PLACEHOLDER_EXPR.
3350 2012-05-25  Michael Meissner  <meissner@linux.vnet.ibm.com>
3352         * config/rs6000/t-linux64: Delete the 32-bit multilib that uses
3353         software floating point emulation.  No longer build the multilibs
3354         with -mstrict-align.
3356 2012-05-25  Aldy Hernandez  <aldyh@redhat.com>
3358         PR middle-end/53008
3359         * trans-mem.c (ipa_tm_create_version_alias): Output new_node if
3360         accessed indirectly.
3361         (ipa_tm_create_version): Same.
3363 2012-05-25  Uros Bizjak  <ubizjak@gmail.com>
3365         PR target/53474
3366         * config/i386/i386.c (ix86_print_operand) <case 'O'>: Print '.' here.
3367         <case 'C', case 'c', case 'F', case 'f'>: Print '.' only for C and c.
3369 2012-05-25  Alexander Ivchenko  <alexander.ivchenko@intel.com>
3371         PR target/53435
3372         * config/i386/i386.c (ix86_expand_vec_perm): Use correct op.
3373         (ix86_expand_vec_perm): Use int mode instead of float.
3374         (expand_vec_perm_pshufb): Remove handling of useseless type
3375         conversion.
3377 2012-05-25  Eric Botcazou  <ebotcazou@adacore.com>
3379         PR ada/52362
3380         * config.gcc (i[34567]86-*-mingw* | x86_64-*-mingw*): Set gas and
3381         gnu_ld variables to yes.
3382         * configure.ac (HAVE_GNU_LD): Move to after config.gcc inclusion.
3383         (HAVE_GNU_AS): Likewise.
3384         * config.in: Regenerate.
3385         * configure: Likewise.
3387 2012-05-25  Tristan Gingold  <gingold@adacore.com>
3389         * config/i386/i386.c (struct ix86_frame): Remove unused frame field.
3390         (ix86_compute_frame_layout): Fix type of stack_alignment_needed
3391         and preferred_alignment.
3393 2012-05-25  Tristan Gingold  <gingold@adacore.com>
3395         * common/config/ia64/ia64-common.c (ia64_except_unwind_info): Fix typo.
3397 2012-05-25  Thomas Schwinge  <thomas@codesourcery.com>
3399         * fold-const.c (optimize_bit_field_compare): Abort early in the strict
3400         volatile bitfields case.
3402 2012-05-24  Pat Haugen  <pthaugen@us.ibm.com>
3404         * config/rs6000/rs6000.c (rs6000_option_override_internal): Change
3405         rs6000_sched_costly_dep default to true_store_to_load_dep_costly.
3406         (adjacent_mem_locations): Move some code to and call...
3407         (get_memref_parts): ...new function.
3408         (mem_locations_overlap): New function.
3409         (rs6000_adjust_priority): Adjust calls to is_load_insn/is_store_insn.
3410         (is_mem_ref): Rename to...
3411         (find_mem_ref): ...this. Return MEM rtx.
3412         (get_store_dest): Remove function.
3413         (is_load_insn1, is_load_insn, is_store_insn1, is_store_insn): Add
3414         new parameter and adjust calls.
3415         (rs6000_is_costly_dependence): Update calls for extra arg. Make sure
3416         mem refs overlap for true_store_to_load_dep_costly.
3417         (rs6000_sched_reorder2): Update calls for extra arg. Adjust args
3418         passed to adjacent_mem_locations.
3419         (is_costly_group): Walk resolved dependency list.
3420         (force_new_group): Emit group ending nop for Power6/Power7.
3421         * config/rs6000/rs6000.md (UNSPEC_GRP_END_NOP): New enum value.
3422         (group_ending_nop): New define_insn.
3424 2012-05-24  Dodji Seketeli  <dodji@redhat.com>
3426         Make unwound macro expansion trace less redundant
3427         * tree-diagnostic.c (maybe_unwind_expanded_macro_loc): Don't print
3428         context of macro definition in the trace, when it's redundant.
3429         Update comments.
3431 2012-05-24  Richard Guenther  <rguenther@suse.de>
3433         PR middle-end/53460
3434         * tree-profile.c (tree_profiling): Cleanup the CFG if
3435         execute_fixup_cfg requests it.
3437 2012-05-24  Richard Guenther  <rguenther@suse.de>
3439         * tree-flow.h (create_var_ann): Remove.
3440         * tree-dfa.c (create_var_ann): Remove and inline into its
3441         single caller ...
3442         (add_referenced_var_1): ... here.
3443         * varpool.c (add_new_static_var): Do not call add_referenced_var
3444         for global vars.
3445         * gimple-fold.c (canonicalize_constructor_val): Likewise.
3446         * tree-switch-conversion.c (build_one_array): Likewise.
3447         * tree-profile.c (gimple_gen_ic_profiler): Likewise.
3448         * tree-flow-inline.h (gimple_referenced_vars): Guard against
3449         NULL fn argument.
3450         * tree-inline.c (remap_gimple_op_r): Likewise.  Check
3451         gimple_referenced_vars instead of gimple_in_ssa_p.
3452         (copy_tree_body_r): Likewise.
3453         (setup_one_parameter): Likewise.
3454         (declare_return_variable): Likewise.
3455         (tree_function_versioning): Likewise.
3457 2012-05-24  Jakub Jelinek  <jakub@redhat.com>
3459         PR tree-optimization/53465
3460         * tree-vrp.c (extract_range_from_cond_expr): First copy_value_range
3461         vr0 into *vr, then vrp_meet that.
3462         (vrp_meet): If one vr type is VR_UNDEFINED, ensure the result doesn't
3463         have any equivalences.
3464         (vrp_visit_phi_node): Call copy_value_range instead of vrp_meet the
3465         first time.
3467 2012-05-24  Jim MacArthur  <jim.macarthur@arm.com>
3469         * recog.c (reg_fits_class_p): Check both regno and regno + offset are
3470         hard registers.
3471         * regs.h (in_hard_reg_set_p): Assert that regno is a hard register and
3472         check end_regno - 1 is a hard register.
3474 2012-05-24  Richard Guenther  <rguenther@suse.de>
3476         * varpool.c (add_new_static_var): Remove call to create_var_ann.
3477         * tree-ssa-operands.c (create_vop_var): Likewise.
3479 2012-05-24  Richard Guenther  <rguenther@suse.de>
3481         PR bootstrap/53466
3482         * tree-ssa-live.c (remove_unused_scope_block_p): Properly
3483         handle globals.
3484         (remove_unused_locals): Pass global_unused_vars to
3485         remove_unused_scope_block_p.  Restore code walking all
3486         referenced vars and pruning them.
3488 2012-05-23  Jan Hubicka  <jh@suse.cz>
3490         * tree.h (alias_diag_flags): Remove.
3491         (alias_pair): Remove emitted_diags.
3492         (finish_aliases_1, finish_aliases_2, remove_unreachable_alias_pairs,
3493         symbol_alias_set_t, symbol_alias_set_destroy,
3494         symbol_alias_set_contains, propagate_aliases_backward): Remove.
3495         * toplev.c (compile_file): Do not call finish_aliases_2
3496         * cgraphunit.c (cgraph_process_new_functions): Do not call
3497         finish_aliases_1.
3498         (handle_alias_pairs): Output diagnostics about aliases to externals.
3499         (assemble_thunks_and_aliases): Use do_assemble_alias.
3500         (output_weakrefs): Likewise.
3501         (finalize_compilation_unit): Do not call finish_aliases_1.
3502         * ipa.c (symtab_remove_unreachable_nodes): De not call
3503         remove_unreachable_alias_pairs.
3504         * varasm.c (do_assemble_alias): Export.
3505         (symbol_alias_set_create, symbol_alias_set_destroy,
3506         symbol_alias_set_contains, symbol_alias_set_insert,
3507         propagate_aliases_forward, propagate_aliases_backward,
3508         propagate_aliases_backward, trivially_visible_alias,
3509         trivially_defined_alias, remove_unreachable_alias_pairs,
3510         finish_aliases_1, finish_aliases_2, assemble_alias): Remove.
3511         * output.h (do_assemble_alias): Declare.
3512         * varpool.c (varpool_remove_unreferenced_decls): Do not call
3513         finish_aliases_1.
3515 2012-05-23  Martin Jambor  <mjambor@suse.cz>
3517         * ipa-inline-analysis.c (inline_merge_summary): Free operand_map.
3519 2012-05-23  Eric Botcazou  <ebotcazou@adacore.com>
3521         * gimple.c (gimple_types_compatible_p_1) <ARRAY_TYPE>: Remove bogus
3522         size handling.
3523         (gimple_canonical_types_compatible_p) <ARRAY_TYPE>: Likewise.
3524         (iterative_hash_gimple_type): Adjust comment.
3525         (iterative_hash_canonical_type): Likewise.  Hash the bounds of the
3526         domain for an array type instead of the domain type itself.
3528 2012-05-23  Richard Guenther  <rguenther@suse.de>
3530         PR tree-optimization/53438
3531         * tree-sra.c (analyze_access_subtree): Correct bitfield exclusion.
3533 2012-05-23  Georg-Johann Lay  <avr@gjlay.de>
3535         PR target/53448
3536         * config/avr/avr.h (ASM_OUTPUT_ALIGN): Don't inhibit .p2align 1.
3537         * config/avr/elf.h (ASM_OUTPUT_BEFORE_CASE_LABEL): Use
3538         ASM_OUTPUT_ALIGN.
3540 2012-05-23  Richard Guenther  <rguenther@suse.de>
3542         * tree-dfa.c (add_referenced_var_1): Do not add global vars.
3543         * tree-ssa-live.c (mark_all_vars_used_1): Handle global vars
3544         via the global_unused_vars bitmap.
3545         (remove_unused_locals): Handle global vars in local-decls via
3546         a global_unused_vars bitmap instead of the used flag in the
3547         var annotation.  Simplify global variable handling and removal.
3549 2012-05-22  Jan Hubicka  <jh@suse.cz>
3551         PR middle-end/53426
3552         * tree-ssa-structalias.c (create_variable_info_for): Skip constructors
3553         from other partitions.
3555 2012-05-22  Jan Hubicka  <jh@suse.cz>
3557         PR middle-end/53161
3558         * symtab.c (symtab_register_node): Fix ordering issue.
3560 2012-05-22  Steven Drake <sbd@NetBSD.org>
3562         * gcc.c (do_spec_1): Add %M spec token to output multilib_os_dir.
3564 2012-05-22  David Edelsohn  <dje.gcc@gmail.com>
3566         * config/rs6000/rs6000.c (rs6000_aix_asm_output_dwarf_table_ref):
3567         Use strip_name_encoding target hook.
3569 2012-05-22  Richard Guenther  <rguenther@suse.de>
3571         * tree.h (VAR_DECL_IS_VIRTUAL_OPERAND): New.
3572         (init_function_for_compilation): Remove.
3573         * tree-dfa.c (find_vars_r): Take struct function argument.
3574         (find_referenced_vars_in): Adjust.
3575         * tree-ssa-operands.c (clobber_stats): Remove.
3576         (create_vop_var): Take struct function argument.  Mark
3577         virtual operand with VAR_DECL_IS_VIRTUAL_OPERAND.
3578         (init_ssa_operands): Take struct function argument.
3579         (fini_ssa_operands): Do not dump dead stats.
3580         * tree-ssa-operands.h (init_ssa_operands): Take struct function
3581         argument.
3582         * cgraphunit.c (init_lowered_empty_function): Adjust.
3583         * lto-streamer-in.c (input_cfg): Likewise.
3584         * tree-inline.c (initialize_cfun): Likewise.
3585         * tree-into-ssa.c (rewrite_into_ssa): Likewise.
3586         * omp-low.c (expand_omp_taskreg): Likewise.  Avoid switching cfun.
3587         * gimple.c (is_gimple_reg): Optimize the SSA_NAME case,
3588         virtual operands are not registers.
3590 2012-05-22  Richard Guenther  <rguenther@suse.de>
3592         * tree-cfg.c (verify_gimple_assign_unary): Fix typo in previous commit.
3594 2012-05-22  Richard Guenther  <rguenther@suse.de>
3596         PR middle-end/53437
3597         * tree-inline.c (setup_one_parameter): Create a dummy init
3598         statement for unused parameters when not optimizing.
3600 2012-05-22  Richard Guenther  <rguenther@suse.de>
3602         * tree-flow.h (add_referenced_var_1): Declare.
3603         (add_referenced_var): Define.
3604         * tree-dfa.c (referenced_var_check_and_insert): Avoid one hash lookup.
3605         (add_referenced_var): Rename to ...
3606         (add_referenced_var_1): ... this.  Take struct function argument.
3608 2012-05-22  Ramana Radhakrishnan  <ramana.radhakrishnan@linaro.org>
3610         PR target/53334
3611         * config/arm/arm-protos.h (arm_validize_comparison): Declare.
3612         * config/arm/arm.c (arm_validize_comparison): Define.
3613         * config/arm/arm.md ("cbranchsi4"): Cleanup expansion and use
3614         arm_validize_comparison.
3615         ("cbranchdi4"): Likewise.
3616         ("cstoredi4"): Likewise.
3617         ("movsicc"): Likewise.
3618         ("movsfcc"): Likewise.
3619         ("movdfcc"): Likewise.
3621 2012-05-22  Dimitrios Apostolou  <jimis@gmx.net>
3623         * df-scan.c (df_scan_alloc): Round up allocation pools size, reduce
3624         the mw_reg_pool size.
3626 2012-05-22  Paolo Bonzini  <bonzini@gnu.org>
3628         PR tree-optimization/53336
3629         * tree-cfg.c (verify_gimple_assign_unary): Allow conversion from
3630         non-integer integral types to offset type and vice versa.
3632 2012-05-22  Alan Modra  <amodra@gmail.com>
3634         * config/rs6000/aix.h (FP_SAVE_INLINE, GP_SAVE_INLINE): Delete.
3635         * config/rs6000/darwin.h (FP_SAVE_INLINE, GP_SAVE_INLINE): Delete.
3636         * config/rs6000/sysv4.h (FP_SAVE_INLINE, GP_SAVE_INLINE,
3637         V_SAVE_INLINE): Delete.
3638         * config/rs6000/rs6000.c (V_SAVE_INLINE): Delete.
3639         (rs6000_savres_strategy): Reimplement GP/FP/V_SAVE_INLINE logic.
3640         For ELF targets, use out-of-line restores for -Os and any number
3641         of regs if the restore exits, and out-of-line gp save for two or
3642         more regs.  Use save_reg_p to test for holes in reg restore set.
3643         Replace "#if" with "if".
3645 2012-05-22  Alan Modra  <amodra@gmail.com>
3647         * config/rs6000/rs6000.c (save_reg_p): New function.
3648         (first_reg_to_save, first_fp_reg_to_save): Use it here.
3649         (first_altivec_reg_to_save, restore_saved_cr): Likewise.
3650         (emit_frame_save): Use gen_frame_store.
3651         (gen_frame_mem_offset): Correct SPE condition requiring reg+reg.
3652         (rs6000_emit_prologue): Use save_reg_p.  Use gen_frame_store for
3653         vrsave and toc.
3654         (rs6000_emit_epilogue): Use save_reg_p.  Use gen_frame_load for
3655         vrsave, toc, gp and fp restores.
3657 2012-05-22  Alan Modra  <amodra@gmail.com>
3659         * config/rs6000/rs6000.c: Delete unnecessary forward declarations.
3660         Move those with ATTRIBUTE_UNUSED to immediately before definitions.
3661         Move function pointer variables after forward declarations.
3662         (rs6000_builtin_support_vector_misalignment): Make static.
3663         (rs6000_legitimate_address_p, rs6000_gimplify_va_arg): Likewise.
3664         (rs6000_function_value, rs6000_can_eliminate): Likewise.
3666 2012-05-21  Bernd Schmidt  <bernds@codesourcery.com>
3668         PR rtl-optimization/53373
3669         * caller-save.c (save_call_clobbered_regs): Look into a possible
3670         PARALLEL manually rather than using single_set on a call insn.
3672 2012-05-21  Jakub Jelinek  <jakub@redhat.com>
3674         PR tree-optimization/53436
3675         * omp-low.c (omp_build_component_ref): New function.
3676         (build_receiver_ref, build_sender_ref, create_task_copyfn): Use it.
3678 2012-05-21  Uros Bizjak  <ubizjak@gmail.com>
3680         * config/i386/i386.c (put_condition_code): Change "reverse" and "fp"
3681         arguments to bool.
3682         (ix86_print_operand) <case 'O'>: Look at mode size of the operand.
3683         Do not print '.' here.  Output operand lossage error for unhandled
3684         sizes.  Move.
3685         <case '*'>: Move.
3686         <case '&'>: Ditto.
3687         <case 'Y'>: Ditto.
3688         <case 'z'>: Hardcode "code" argument into error strings.
3689         <case 'Z'>: Ditto.
3690         <case 'D'>: Merge AVX and non-AVX codes.
3691         <case 'C', case 'c', case 'F', case 'f'>: Merge.  Fix error string.
3692         Update call to put_condition_code.
3694 2012-05-21  Andreas Schwab  <schwab@linux-m68k.org>
3696         * config/m68k/m68k.md (*clzsi2_cf): Renamed from clzsi2.  Call
3697         CC_STATUS_INIT.
3698         (clzsi2): New expander.
3699         (*clzsi2_68k): New insn.
3700         * config/m68k/m68k.h: Update comment about CLZ_DEFINED_VALUE_AT_ZERO.
3702 2012-05-21  Aldy Hernandez  <aldyh@redhat.com>
3704         * gimple.h (gimple_set_in_transaction): Remove.
3705         (gimple_in_transaction): Look in BB instead.
3706         (gimple_statement_base): Remove in_transaction field.
3707         * basic-block.h (enum bb_flags): Add BB_IN_TRANSACTION.
3708         * trans-mem.c (compute_transaction_bits): Place transaction bit
3709         information into basic blocks.
3711 2012-05-21  Andreas Schwab  <schwab@linux-m68k.org>
3713         * expr.c (get_def_for_expr_class): Define only if
3714         HAVE_conditional_move.
3715         (convert_tree_comp_to_rtx): Likewise.
3717 2012-05-21  Uros Bizjak  <ubizjak@gmail.com>
3719         PR target/53399
3720         * config/i386/i386.md (ffs<mode>2): Generate CCCmode compare
3721         for TARGET_BMI.
3722         (ffssi2_no_cmove): Ditto.
3723         (*ffs<mode>_1): Remove insn pattern.
3724         (*tzcnt<mode>_1): New insn pattern.
3725         (*bsf<mode>1): Ditto.
3727 2012-05-21  Richard Guenther  <rguenther@suse.de>
3729         * tree-dfa.c (add_referenced_var): Do not walk DECL_INITIAL for
3730         more referenced vars.
3731         * tree-ssa-live.c (mark_all_vars_used_1): Only set the used
3732         flag on variables that have a var-annotation.
3734 2012-05-21  Joseph Myers  <joseph@codesourcery.com>
3736         PR c/53418
3737         * c-typeck.c (build_conditional_expr): Remove C_MAYBE_CONST_EXPR
3738         from folded operands before wrapping another around the
3739         conditional expression.
3741 2012-05-21  Jakub Jelinek  <jakub@redhat.com>
3743         PR tree-optimization/53366
3744         * tree-vect-slp.c (vect_supported_load_permutation_p): Don't shortcut
3745         tests if complex_numbers == 2, but there are non-complex number loads
3746         too.
3748         PR tree-optimization/53409
3749         * tree-vect-loop.c (vect_analyze_loop_operations): Don't check
3750         vinfo_for_stmt (op_def_stmt) if op_def_stmt isn't inside loop.
3752         PR tree-optimization/53410
3753         * fold-const.c (fold_binary_loc): Use build_zero_cst (type)
3754         instead of build_int_cst (type, 0) where vector types might be
3755         involved. Instead of build_int_cst (type, 1) convert the original
3756         integer_onep argument to the desired type.
3758 2012-05-21  Michael Matz  <matz@suse.de>
3760         * genattrtab.c (attr_rtx_cost): Move earlier, start with cost being 1.
3761         (simplify_test_exp): Handle one more case of distributive law,
3762         decrease cost threshold.
3763         (tests_attr_p, get_attr_order): New functions.
3764         (optimize_attrs): Use topological order, inline only cheap values.
3765         (write_attr_set): Reset our_known_true after some time.
3767 2012-05-21  H.J. Lu  <hongjiu.lu@intel.com>
3769         PR target/53425
3770         * config/i386/i386.c (type_natural_mode): Warn passing SSE
3771         vector argument without SSE enabled changes the ABI.
3773 2012-05-21  Richard Guenther  <rguenther@suse.de>
3775         PR tree-optimization/53408
3776         * tree-vect-loop.c (vectorizable_induction): Properly check
3777         the restriction that we cannot handle induction results from
3778         the inner loop outside of the outer loop.
3780 2012-05-21  H.J. Lu  <hongjiu.lu@intel.com>
3782         PR target/53416
3783         * config/i386/i386.md (UNSPEC_RDRAND): Renamed to ...
3784         (UNSPECV_RDRAND): This.
3785         (rdrand<mode>_1): Updated.
3787 2012-05-21  Richard Guenther  <rguenther@suse.de>
3789         * tree-loop-distribution.c (can_generate_builtin): Reject
3790         volatile stmts.
3792 2012-05-21  Chung-Lin Tang  <cltang@codesourcery.com>
3794         * Makefile.in (options.c): Add options.h to included header
3795         files, before tm.h.
3797 2012-05-21  Razya Ladelsky  <razya@il.ibm.com>
3799         * tree-parloops.c : Add myself to contributors, update
3800         TODO list, add link to wiki.
3802 2012-05-21  Alan Modra  <amodra@gmail.com>
3804         * config/rs6000/predicates.md (input_operand): Don't match
3805         constant pool addresses.  Remove label_ref, high and plus from
3806         match_code list.  Remove redundant CONSTANT_P test.
3807         (splat_input_operand): Similarly update match_code list.
3808         (small_toc_ref): New predicate.
3809         * config/rs6000/rs6000-protos.h (toc_relative_expr_p): Update prototype.
3810         * config/rs6000/rs6000.c (tocrel_base, tocrel_offset): Make const.
3811         (legitimate_constant_pool_address_p): Move TARGET_TOC test and
3812         register checks to..
3813         (toc_relative_expr_p): ..here.  Add "strict" param.  Match new rtl
3814         generated by create_TOC_reference.
3815         (rs6000_legitimize_address): Update cerate_TOC_reference call.
3816         (rs6000_delegitimize_address): Handle new rtl for toc refs.
3817         (rs6000_cannot_force_const_mem, rs6000_find_base_term): Likewise.
3818         (use_toc_relative_ref): New function, split out from..
3819         (rs6000_emit_move): ..here.  Remove redundant tests.  Update
3820         create_TOC_reference calls.
3821         (rs6000_legitimize_reload_address): Formatting.  Handle splitting
3822         of medium/large model toc addresses.  Use use_toc_relative_ref.
3823         (print_operand): Formatting, style.  Adjust for toc changes.
3824         (print_operand_address): Likewise.
3825         (rs6000_output_addr_const_extra): Likewise.
3826         (create_TOC_reference): Put TOC_REGISTER in UNSPEC_TOCREL rather
3827         than a PLUS.  Use this formulation for both high and low part
3828         of -mcmodel=medium/large toc reference too.  Before reload,
3829         always use the small model formulation.
3830         * config/rs6000/rs6000.md (tls_gd, tls_gd_high): Similarly avoid
3831         a PLUS in high part of addresses here.
3832         (tls_ld, tls_ld_high, tls_got_dtprel, tls_got_dtprel_high): Likewise.
3833         (tls_got_tprel, tls_got_tprel_high, largetoc_high): Likewise.
3834         (largetoc_high, largetoc_low): Move earlier.  Cope when no
3835         base reg available.
3836         (largetoc_high_plus): New insn.
3837         (movsi_internal1, movsi_internal1_single, movsf_softfloat,
3838         movdi_mfpgpr, movdi_internal64): Don't handle 'R' constraint here..
3839         (tocref): ..instead do so here, new insn and split.
3841 2012-05-20  H.J. Lu  <hongjiu.lu@intel.com>
3843         * config/i386/driver-i386.c (host_detect_local_cpu): Support
3844         RDRND, F16C and FSGSBASE.
3846 2012-05-20  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
3848         PR rtl-optimzation/53373
3849         * config/pa/pa.md (call_symref_pic): Don't expose PIC register save in
3850         call pattern.  Update split patterns.
3851         (call_symref_64bit, call_reg_pic, call_reg_64bit, call_val_symref_pic,
3852         call_val_symref_64bit, call_val_reg_pic, call_val_reg_64bit): Likewise.
3854 2012-05-20  Razya Ladelsky  <razya@il.ibm.com>
3856         * tree-parloops.c (gen_parallel_loop): Change many_iterations_cond
3857         for outer loops.
3859 2012-05-18  Jan Hubicka  <jh@suse.cz>
3861         * cgraphunit.c (handle_alias_pairs): Declare; free alias_pairs
3862         (cgraph_process_new_functions): Process also aliases.
3863         * lto-streamer-out.c (struct sets): Remove.
3864         (trivally_defined_alias): Remove.
3865         (output_alias_pair_p): Remove.
3866         (output_unreferenced_globals): Remove.
3867         (produce_symtab); Do not handle alias pairs.
3868         (produce_asm_for_decls): Likewise.
3869         * lto-streamer-in.c (input_alias_pairs): Remove.
3870         (lto_read_body): Do not input alias pairs.
3871         (lto_input_constructors_and_inits): Remove.
3873 2012-05-18  Jan Hubicka  <jh@suse.cz>
3875         * cgraphunit.c (handle_alias_pairs): Cleanup; handle all types of
3876         aliases.
3878 2012-05-18  Jan Hubicka  <jh@suse.cz>
3880         * cgraphbuild.c (record_reference): Update.
3881         * lto-cgraph.c (lto_output_varpool_node): External vars
3882         are not in other partition even if they are not output
3883         in current partition.
3884         * gimple-fold.c (can_refer_decl_in_current_unit_p): Take FROM_DECL
3885         argument; fix.
3886         (canonicalize_constructor_val): Take FROM_DECL argument.
3887         (fold_ctor_reference, fold_string_cst_ctor_reference,
3888         fold_array_ctor_reference, fold_nonarray_ctor_reference,
3889         fold_ctor_reference): Likewise.
3890         (fold_const_aggregate_ref_1, gimple_get_virt_method_for_binfo): Update.
3891         * gimple.h (gimple_fold_builtin): Likewise.
3893 2012-05-18  Olivier Hainque  <hainque@adacore.com>
3895         * Makefile.in (FLAGS_TO_PASS): Pass $(libexecsubdir) instead of
3896         $(libsubdir) as libexecsubdir.
3898 2012-05-18  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
3900         * config/rs6000/rs6000.c (print_operand): Revise code that unsafely
3901         relied on signed overflow behavior.
3903 2012-05-18  Richard Guenther  <rguenther@suse.de>
3905         PR tree-optimization/53346
3906         * tree-loop-distribution.c (ldist_gen): Make sure to apply
3907         builtin transform even when only a single partition with
3908         all reads/writes exists.
3910 2012-05-18  Richard Guenther  <rguenther@suse.de>
3912         PR tree-optimization/53390
3913         * tree-vect-data-refs.c (vect_compute_data_ref_alignment): Ignore
3914         strided loads.
3916 2012-05-18  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
3918         * tree-ssa-reassoc.c (bip_map): Remove decl.
3919         (completely_remove_stmt): Remove function.
3920         (remove_def_if_absorbed_call): Remove function.
3921         (remove_visited_stmt_chain): Remove __builtin_powi handling.
3922         (possibly_move_powi): Remove function.
3923         (rewrite_expr_tree): Remove calls to possibly_move_powi.
3924         (rewrite_expr_tree_parallel): Likewise.
3925         (attempt_builtin_powi): Build multiplies explicitly rather than
3926         relying on the ops vector and rank system.
3927         (transform_stmt_to_copy): New function.
3928         (transform_stmt_to_multiply): Likewise.
3929         (reassociate_bb): Handle leftover operations after __builtin_powi
3930         optimization; build a final multiply if necessary.
3932 2012-05-18  Jan Hubicka  <jh@suse.cz>
3934         * cgraphunit.c (varpool_finalize_decl): Allow external decls.
3935         (mark_functions_to_output): Fix sanity check.
3936         * ipa.c (function_and_variable_visibility): Remove TREE_STATIC check.
3938 2012-05-18  Richard Guenther  <rguenther@suse.de>
3940         * tree-flow.h (mark_symbols_for_renaming): Remove.
3941         * tree-dfa.c (mark_symbols_for_renaming): Likewise.
3942         * tree-inline.c (copy_edges_for_bb): Do not mark symbols for renaming.
3943         (copy_debug_stmt): Likewise.
3944         (expand_call_inline): Likewise.
3945         (declare_return_variable): Mark the return variable for renaming
3946         if necessary.
3948 2012-05-18  Andrew Stubbs  <ams@codesourcery.com>
3950         * config/arm/arm-protos.h (arm_emit_coreregs_64bit_shift): New
3951         prototype.
3952         * config/arm/arm.c (arm_emit_coreregs_64bit_shift): New function.
3953         * config/arm/arm.md (ashldi3): Use arm_emit_coreregs_64bit_shift.
3954         (ashrdi3,lshrdi3): Likewise.
3955         (arm_cond_branch): Remove '*' to enable gen_arm_cond_branch.
3957 2012-05-18  Meador Inge  <meadori@codesourcery.com>
3959         PR rtl-optimization/53352
3960         * cse.c (equiv_constant): Ignore paradoxical subregs.
3962 2012-05-17  Steven Bosscher  <steven@gcc.gnu.org>
3964         PR rtl-optimization/53125
3965         * regstat.c (regstat_bb_compute_ri): Take new local_live_last_luid
3966         argument.  Simplify calculation of REG_LIVE_LENGTH for regnos that
3967         die in the basic block.  Correctly top off REG_FREQ and
3968         REG_FREQ_CALLS_CROSSED.
3969         Remove do_not_gen.
3970         (regstat_compute_ri): Allocate and free local_live_last_luid.
3971         Remove do_not_gen.
3972         (regstat_bb_compute_calls_crossed): Correctly top off
3973         REG_FREQ_CALLS_CROSSED.
3975 2012-05-17  Jan Hubicka  <jh@suse.cz>
3977         * lto-symtab.c (lto_symtab_resolve_symbols): Preffer decl with
3978         constructor over decl without.
3979         * cgraph.c (cgraph_remove_node): Clear also body of unanalyzed nodes.
3980         * cgraph.h (varpool_can_remove_if_no_refs): Handle external correctly.
3981         * cgraphunit.c (process_function_and_variable_attributes): Finalize
3982         extrnal decls.
3983         (mark_functions_to_output): Also accept bodies for functions with
3984         clones.
3985         (output_in_order): Skip external vars.
3986         * lto-cgraph.c (lto_output_node): External functions are never in other
3987         partition.
3988         (lto_output_varpool_node): Likewise.
3989         * lto-streamer-out.c (lto_write_tree): Always use error_mark_nodes for
3990         forgotten initializers.
3991         * ipa.c (process_references): Handle external vars.
3992         (symtab_remove_unreachable_nodes): Update to handle external vars.
3993         (varpool_externally_visible_p): External vars are externally visible.
3994         * gimple-fold.c (can_refer_decl_in_current_unit_p): Update.
3995         * varpool.c (varpool_remove_node): Remove constructor.
3996         (decide_is_variable_needed): Handle externals.
3997         (varpool_remove_unreferenced_decls): Likewise.
3999 2012-05-17  Manuel López-Ibáñez  <manu@gcc.gnu.org>
4001         * opts.c (common_handle_option): -pedantic-errors enables -Wpedantic.
4002         (enable_warning_as_error): Do not special case Wuninitialized.
4003         * optc-gen.awk: Add sanity checks.
4005 2012-05-17  Jan Hubicka   <jh@suse.cz>
4007         * ipa-reference.c (is_proper_for_analysis): Do not check flags
4008         that might change as result of global optimization.
4009         (analyze_function): Do not check analyzed and externally_visible
4010         flags; be happy about address dereferences.
4011         (propagate): Prune all_module_statics so it really contains just
4012         statics; prune all the local summaries.
4013         (ipa_reference_write_optimization_summary): Simplify.
4015 2012-05-17  Kwok Cheung Yeung  <kcy@codesourcery.com>
4017         * config/m68k/m68k-devices.def: Add 51ag, 51je, 51jf, 51jg, 51mm, 51qm.
4018         * config/m68k/m68k-tables.opt: Regenerated.
4019         * doc/invoke.texi (M680x0 Options): Document.
4021 2012-05-16  Dave Boutcher  <daveboutcher@gmail.com>
4022             Patrick Marlier  <patrick.marlier@gmail.com>
4024         * trans-mem.c (ipa_tm_transform_clone): Transform functions with
4025         indirect calls.
4027 2012-05-16  H.J. Lu  <hongjiu.lu@intel.com>
4029         * configure: Regenerated.
4031 2012-05-16  Andrew Pinski  <apinski@cavium.com>
4033         * gimple-fold.c (get_maxval_strlen): Move COND_EXPR handling under
4034         GIMPLE_ASSIGN.
4036 2012-05-16  David S. Miller  <davem@davemloft.net>
4038         * jump.c (delete_related_insns): If we remove a CALL, make sure
4039         we delete it's NOTE_INSN_CALL_ARG_LOCATION note too.
4041 2012-05-16  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
4043         PR tree-optimization/53217
4044         * tree-ssa-reassoc.c (bip_map): New static variable.
4045         (possibly_move_powi): Move feeding multiplies with __builtin_powi call.
4046         (attempt_builtin_powi): Save feeding multiplies on a stack.
4047         (reassociate_bb): Create and destroy bip_map.
4049 2012-05-16  Olivier Hainque  <hainque@adacore.com>
4051         * Makefile.in (install-no-fixedincludes): New target, former toplevel
4052         gcc-no-fixedincludes. Stash "include-fixed" in addition to "include".
4053         Add comments and improve stamp preservation across the whole sequence.
4054         (stmp-int-hdrs): Use move-if-change + cp -p to setup fix_dir/limits.h.
4056 2012-05-16  Richard Guenther  <rguenther@suse.de>
4058         * tree-inline.c (insert_init_stmt): Do not call
4059         mark_symbols_for_renaming.
4060         (setup_one_parameter): Avoid initializing unused parameters.
4061         (declare_return_variable): Properly handle DECL_BY_REFERENCE
4062         return vars in SSA form.
4064 2012-05-16  Richard Guenther  <rguenther@suse.de>
4066         * tree-flow.h (get_virtual_var): Remove.
4067         * tree-dfa.c (get_virtual_var): Likewise.
4069 2012-05-16  Richard Guenther  <rguenther@suse.de>
4071         * tree-vect-loop-manip.c (slpeel_update_phi_nodes_for_guard1):
4072         Remove set-only bitmap of new names.
4073         (slpeel_tree_peel_loop_to_edge): Likewise.  Do not set
4074         CFG hooks.
4075         * tree-flow.h (ssa_names_to_replace): Remove.
4076         * tree-into-ssa.c (ssa_names_to_replace): Likewise.
4078 2012-05-16  Richard Guenther  <rguenther@suse.de>
4080         PR tree-optimization/53364
4081         * tree-ssa-alias.c (indirect_ref_may_alias_decl_p): Properly
4082         detect a view-conversion of the decl.
4084 2012-05-16  Dodji Seketeli  <dodji@redhat.com>
4086         PR preprocessor/7263
4087         * c-tree.h (enum c_declspec_word): Declare new enum.
4088         (struct c_declspecs::locations): New member.
4089         (declspecs_add_qual, declspecs_add_scspec)
4090         (declspecs_add_addrspace, declspecs_add_alignas): Take a new
4091         location parameter.
4092         * c-decl.c (build_null_declspecs): Initialize the new struct
4093         c_declspecs::locations member.
4094         (declspecs_add_addrspace): Take a location parameter for the
4095         address space.  Store it onto declaration specifiers.
4096         (declspecs_add_qual): Likewise, take a location parameter for the
4097         qualifier.
4098         (declspecs_add_type): Likewise, take a location parameter for the
4099         type specifier.
4100         (declspecs_add_scspec): Likewise, take a location parameter for
4101         the storage class specifier.
4102         (declspecs_add_attrs): Likewise, take a location parameter for the
4103         first attribute.
4104         (declspecs_add_alignas): Likewise, take a location parameter for
4105         the alignas token.
4106         (finish_declspecs): For diagnostics, use the location of the
4107         relevant declspec, instead of the global input_location.
4108         * c-parser.c (c_parser_parameter_declaration): Pass the precise
4109         virtual location of the declspec to the declspecs-setters.
4110         (c_parser_declspecs): Likewise.  Avoid calling c_parser_peek_token
4111         repeatedly.
4113 2012-05-16  Igor Zamyatin  <igor.zamyatin@intel.com>
4115         * configure.ac: Stack protector enabling for Android targets.
4116         * configure: Regenerate.
4118 2012-05-16  Richard Sandiford  <r.sandiford@uk.ibm.com>
4120         * ira.c (pseudo_move_insn): Delete.
4121         (find_moveable_pseudos): Don't set it.
4122         (move_unallocated_pseudos): Use DF_REG_DEF_CHAIN to find
4123         the definitions of the original pseudo.  Delete all of them.
4125 2012-05-16  Olivier Hainque  <hainque@adacore.com>
4127         * config/rs6000/rs6000-opts.h (enum processor_type): Add
4128         PROCESSOR_PPC8548.
4129         * config/rs6000/rs6000-cpus.def: Reference it for cpu="8548".
4130         * config/rs6000/rs6000.md (cpu attribute definition): Add ppc8548.
4131         * config/rs6000/8540.md: indicate that the units/patterns apply to
4132         ppc8548 as well.
4134         * config/rs6000/rs6000.c (rs6000_option_override_internal): Rename
4135         default_cpu into implicit_cpu, conveying what --with-cpu was passed at
4136         configure time. Treat implicit_cpu as have_CPU. Pick defaults for SPE
4137         related flags,  check that what is queried is supported by the selected
4138         configuration. Rework the single/double_float and MASK_STRING resets to
4139         hit for all the E500 cores (854x + E500MC variants). Select the ppc8540
4140         costs for PROCESSOR_PPC8548 as well.
4141         (rs6000_issue_rate): case CPU_PPC8548 together with CPU_PPC8540.
4142         (rs6000_use_sched_lookahead): Likewise, rewriting function as a case
4143         statement instead of a sequence of ifs.
4145         * config/rs6000/rs6000.h (TARGET_E500): Remove.
4146         (TARGET_NO_LWSYNC): Adjust accordingly.
4147         * config/rs6000/e500.h (TARGET_E500): Remove.
4148         (CHECK_E500_OPTIONS): Adjust accordingly.
4149         * config/rs6000/eabispe.h (SUBSUBTARGET_OVERRIDE_OPTIONS): Remove.
4150         (TARGET_DEFAULT): Reformat definition to match the one in linuxspe.h.
4151         * config/rs6000/linuxspe.h: Likewise.
4152         * config/rs6000/vxworks.h: Remove bogus TARGET_E500 overrides and
4153         superfluous comments.
4154         * config/rs6000/e500-double.h: Remove.
4156         * config.gcc (pick a default with_cpu): For powerpc*-*-*spe*,
4157         default to with_cpu=8548 if --enable-e500-double, and to 8540
4158         otherwise.
4159         (set misc flags section): For powerpc*|rs6000*, remove inclusion
4160         of e500-double.h for --enable-e500-double.
4162 2012-05-16  Olivier Hainque  <hainque@adacore.com>
4164         * Makefile.in (s-header-vars): Resort to -n instead of trailing
4165         -e d in sed invocation.
4167 2012-05-16  Hans-Peter Nilsson  <hp@axis.com>
4169         * doc/tm.texi.in (Type Layout) <SIZE_TYPE>: Update reference to
4170         source-code.
4171         * doc/tm.texi: Regenerate.
4173 2012-05-15  Paolo Carlini  <paolo.carlini@oracle.com>
4175         * tree.h (EXPR_LOCATION): Use CAN_HAVE_LOCATION_P.
4177 2012-05-15  Jakub Jelinek  <jakub@redhat.com>
4179         PR target/53358
4180         * config/i386/i386.md (*addqi_2 peephole with QImode addition): Check
4181         that operands[2] is either immediate, or q_regs_operand.
4183 2012-05-15  Richard Guenther  <rguenther@suse.de>
4185         * cgraphunit.c (thunk_adjust): Use make_rename_temp.
4186         (assemble_thunk): Likewise.  Manually rename and register
4187         function arguments.
4189 2012-05-15  Richard Guenther  <rguenther@suse.de>
4191         PR tree-optimization/53355
4192         * tree-vrp.c (extract_range_from_binary_expr_1): Handle LSHIFT_EXPRs
4193         by constants.
4195 2012-05-15  Tristan Gingold  <gingold@adacore.com>
4197         * tree-ssa-strlen.c (get_string_length): Convert lhs if needed.
4199 2012-05-15  Richard Guenther  <rguenther@suse.de>
4201         * gimple.c (gimple_set_modified): Move ...
4202         * gimple.h (gimple_set_modified): ... here.
4204 2012-05-15  Tristan Gingold  <gingold@adacore.com>
4206         * ira-color.c (move_spill_restore): Add a guard.
4208 2012-05-15  Tristan Gingold  <gingold@adacore.com>
4210         * config/ia64/ia64.c (ia64_emit_probe_stack_range): Adjust calls to
4211         plus_constant.
4213 2012-05-15  Eric Botcazou  <ebotcazou@adacore.com>
4215         * gimplify.c (gimplify_init_constructor): Do a block move for very
4216         small objects as well.
4218 2012-05-15  Bernd Schmidt  <bernds@codesourcery.com>
4220         * ira.c (find_moveable_pseudos): Skip registers whose
4221         DF_REG_EQ_USE_COUNT is nonzero.
4223 2012-05-15  Kenneth Zadeck  <zadeck@naturalbridge.com>
4225         * doc/md.texi (fma): Define to only be applicable for single rounding.
4227 2012-05-14  Uros Bizjak  <ubizjak@gmail.com>
4229         PR target/46098
4230         * config/i386/i386.c (ix86_expand_special_args_builtin): Always
4231         generate target register for "load" class builtins.
4233         Revert:
4234         2010-10-22  Uros Bizjak  <ubizjak@gmail.com>
4236         PR target/46098
4237         * config/i386/sse.md (*avx_movu<ssemodesuffix><avxmodesuffix>):
4238         Rename from avx_movu<ssemodesuffix><avxmodesuffix>.
4239         (avx_movu<ssemodesuffix><avxmodesuffix>): New expander.
4240         (*<sse>_movu<ssemodesuffix>): Rename from <sse>_movu<ssemodesuffix>.
4241         (<sse>_movu<ssemodesuffix>): New expander.
4242         (*avx_movdqu<avxmodesuffix>): Rename from avx_movdqu<avxmodesuffix>.
4243         (avx_movdqu<avxmodesuffix>): New expander.
4244         (*sse2_movdqu): Rename from sse2_movdqu.
4245         (sse2_movdqu): New expander.
4247 2012-05-14  Marc Glisse  <marc.glisse@inria.fr>
4249         PR target/52607
4250         * config/i386/i386.c (ix86_expand_vec_perm_const): Move code to ...
4251         (canonicalize_perm): ... new function.
4252         (expand_vec_perm_2vperm2f128_vshuf): New function.
4253         (ix86_expand_vec_perm_const_1): Call it.
4255 2012-05-14  Andrew Pinski  <apinski@cavium.com>
4256             H.J. Lu  <hongjiu.lu@intel.com>
4257             Jakub Jelinek  <jakub@redhat.com>
4259         PR target/53315
4260         * config/i386/i386.md (xbegin_1): Use + in constraint and match_dup.
4261         (xbegin): Updated.
4263 2012-05-14  Jakub Jelinek  <jakub@redhat.com>
4265         * dwarf2out.c (dwarf2out_define, dwarf2out_undef): Treat
4266         lineno 1 the same as lineno 0 before first start file directive.
4267         (optimize_macinfo_range): Likewise.
4269         * dwarf2out.c (have_macinfo): Define.
4270         (dwarf2out_finish): Don't emit DW_AT_GNU_macros or DW_AT_macro_info
4271         attribute, don't force empty compilation unit and don't emit any
4272         .debug_macinfo/.debug_macro section if macinfo_table is empty.
4274 2012-05-14  Georg-Johann Lay  <avr@gjlay.de>
4276         PR target/53344
4277         * config/avr/avr.c (avr_const_address_lo16): Remove.
4278         (avr_assemble_integer):  Print ".byte lo8(x)",
4279         ".byte hi8(x)", ".byte hh8(x)" instead of emit an assembler
4280         .warning if 3-byte address is assembled.
4281         * doc/extend.texi (AVR Named Address Spaces): Document that
4282         binutils 2.23 is needed to assemble 3-byte addresses.
4284 2012-05-14  Richard Guenther  <rguenther@suse.de>
4286         * tree-vect-data-refs.c (vect_setup_realignment): Remove
4287         call to mark_symbols_for_renaming.
4288         (vect_permute_load_chain): Likewise.
4289         * tree-vect-loop.c (vect_is_slp_reduction): Update stmt
4290         instead of calling mark_symbols_for_renaming.
4291         * tree-vect-stmts.c (read_vector_array): Remove call to
4292         mark_symbols_for_renaming.
4293         (write_vector_array): Likewise.
4294         (vectorizable_call): Likewise.
4295         (vectorizable_store): Likewise.
4296         (vectorizable_load): Likewise.
4297         * matrix-reorg.c (transform_allocation_sites): Likewise.
4298         * tree-ssa-pre.c (create_expression_by_pieces): Likewise.
4299         (create_expression_by_pieces): Likewise.
4301 2012-05-14  Richard Guenther  <rguenther@suse.de>
4303         * gimplify.c (gimple_regimplify_operands): Only mark the LHS
4304         of statements for renaming.
4305         (force_gimple_operand_1): Likewise, consistently for both
4306         calls to force_gimple_operand and force_gimple_operand_gsi.
4308 2012-05-14  Richard Guenther  <rguenther@suse.de>
4310         * tree-dfa.c (make_rename_temp): Be forgiving if not in SSA form.
4311         * omp-low.c (expand_omp_taskreg): Properly conditionalize call
4312         to update_ssa.
4313         (expand_omp_for): Likewise.
4314         (expand_omp_for_generic): Adjust conditional add to referenced vars.
4315         Use make_rename_temp for temporaries that should be rewritten into
4316         SSA form.
4317         (expand_omp_for_static_nochunk): Likewise.
4318         (expand_omp_atomic_pipeline): Likewise.
4320 2012-05-14  Richard Guenther  <rguenther@suse.de>
4322         PR tree-optimization/53331
4323         * tree-vect-data-refs.c (vect_verify_datarefs_alignment): Ignore
4324         strided loads.
4325         * tree-vect-stmts.c (vect_model_load_cost): Handle strided loads.
4327 2012-05-14  Manuel López-Ibáñez  <manu@gcc.gnu.org>
4329         PR 53063
4330         * doc/options.texi: (LangEnabledBy): Document it.
4331         * optc-gen.awk: Handle LangEnabledBy.
4332         * opth-gen.awk: Generate declaration for lang-specific functions.
4333         * opt-read.awk: Record lang numbers.
4334         * opt-functions.awk (flag_set_p): Ignore the arguments of flags.
4335         (lang_sanitized_name): New.
4337 2012-05-14  Bernd Schmidt  <bernds@codesourcery.com>
4339         * attribs.c (decl_attributes): Avoid emitting a warning if
4340         ATTR_FLAG_BUILT_IN.
4341         * doc/rtl.texi (CALL_INSN_FUNCTION_USAGE): Use lowercase for rtx
4342         codes.  Document meaning of sets inside CALL_INSN_FUNCTION_USAGE.
4343         * builtin-attrs.def (DEF_ATTR_FOR_STRING): Define.  Use it to
4344         define a string "1".
4345         (ATTR_RET1_NOTHROW_NONNULL_LEAF): New attr definition.
4346         * builtins.def (BUILT_IN_MEMCPY, BUILT_IN_MEMMOVE, BUILT_IN_MEMSET,
4347         BUILT_IN_STRCPY): Use it for these functions.
4348         * postreload.c (reload_combine): Deal with SETs inside
4349         CALL_INSN_FUNCTION_USAGE.
4350         * caller-save.c (setup_save_areas, save_call_clobbered_regs):
4351         Look for REG_RETURNED notes and use a cheap restore if possible.
4352         * ira-int.h (struct ira_allocno): New member cheap_calls_crossed_num.
4353         (ALLOCNO_CHEAP_CALLS_CROSSED_NUM): New macro.
4354         * ira-build.c (ira_create_allocno, create_cap_allocno,
4355         propagate_allocno_info, propagate_some_info_from_allocno,
4356         copy_info_to_removed_store_destination, ira_flattening): Handle it.
4357         * ira-lives.c (pseudo_regno_single_word_and_live_p,
4358         find_call_crossed_cheap_reg): New static functions.
4359         (process_bb_node_lives): Look for SETs in CALL_INSN_FUNCTION_USAGE,
4360         and set ALLOCNO_CHEAP_CALLS_CROSSED_NUM if possible.  Also make
4361         a REG_RETURNED note in that case.
4362         * ira.c (setup_reg_renumber): Change assert to allow cases where
4363         allocnos only cross calls for which they are cheap to restore.
4364         * ira-costs.c (ira_tune_allocno_costs): Compare
4365         ALLOCNO_CALLS_CROSSED_NUM to ALLOCNO_CHEAP_CALLS_CROSSED_NUM rather
4366         than 0.
4367         * reg-notes.def (REG_RETURNED): New note.
4368         * cse.c (cse_insn): Likewise.
4369         * sched-deps.c (sched_analyze_insn): Likewise.
4370         * expr.c (init_block_move_fn): Set a "fn spec" attribute.
4371         * calls.c (decl_return_flags): New static function.
4372         (expand_call): Generate a SET in CALL_INSN_FUNCTION_USAGE for
4373         functions that return one of their arguments.
4374         * regcprop.c (struct kill_set_value_data): New.
4375         (kill_set_value): Interpret data as a pointer to such a struct.
4376         Do nothing if the caller wants the register to be ignored.
4377         (copyprop_hardreg_forward_1): Handle SETs in CALL_INSN_FUNCTION_USAGE.
4379 2012-05-14  Richard Guenther  <rguenther@suse.de>
4381         PR tree-optimization/53340
4382         * tree-ssa-pre.c (op_valid_in_sets): Fix error in last commit.
4384 2012-05-14  Richard Guenther  <rguenther@suse.de>
4386         * gimplify.c (gimplify_expr): Remove odd code.
4388 2012-05-14  Eric Botcazou  <ebotcazou@adacore.com>
4390         * stor-layout.c (bit_from_pos): Distribute conversion to bitsizetype
4391         into a PLUS_EXPR byte offset.
4393         * tree-ssa-pre.c (can_value_number_call): Delete.
4394         (compute_avail): Skip all statements with side effects.
4395         <GIMPLE_CALL>: Skip calls to internal functions.
4397 2012-05-13  Steven Bosscher  <steven@gcc.gnu.org>
4399         * config/pa/pa.md: Use define_c_enum for "unspec" and "unspecv".
4401 2012-05-13  Manuel López-Ibáñez  <manu@gcc.gnu.org>
4403         * common.opt (Wtype-limits): Use EnabledBy.
4405 2012-05-13  Uros Bizjak  <ubizjak@gmail.com>
4407         * config/i386/i386.md (*pushtf): Enable for TARGET_SSE.
4408         (pushtf splitter): Ditto.
4409         (movtf): Ditto.
4410         (*movtf_internal): Ditto. Use V4SFmode for !TARGET_SSE2.
4411         (<code>tf2): Enable for TARGET_SSE.
4412         (*absnegtf2_sse): Ditto.
4413         (copysign<mode>3): Enable TFmode for TARGET_SSE.
4414         (copysign<mode>3_const): Ditto.
4415         (copysign<mode>3_var): Ditto.
4416         * config/i386/sse.md (<code>tf3): Enable for TARGET_SSE.
4417         (*andnottf3): Ditto.  Use V4SFmode for !TARGET_SSE2.
4418         (*<code>tf3): Ditto.
4419         * config/i386/i386.c (struct builtin_description bdesc_args)
4420         <IX86_BUILTIN_FABSQ>: Enable for TARGET_SSE.
4421         <IX86_BUILTIN_COPYSIGNQ>: Ditto.
4422         (ix86_expand_builtin) <IX86_BUILTIN_FABSQ, IX86_BUILTIN_COPYSIGNQ>:
4423         Emit a normal call if SSE isn't available.
4425 2012-05-13  Uros Bizjak  <ubizjak@gmail.com>
4427         * config/i386/sse.md (<sse>_andnot<mode>3): Handle
4428         TARGET_SSE_PACKED_SINGLE_INSN_OPTIMAL.
4429         (<code><mode>3): Ditto.
4430         (*andnot<mode>3): Ditto.
4431         (*andnottf3): Ditto.
4432         (*<code><mode>3): Ditto.
4433         (<code>tf3): Ditto.
4435 2012-05-13  Manuel López-Ibáñez  <manu@gcc.gnu.org>
4437         * optc-gen.awk: Error instead of warning for conflicting help.
4439 2012-05-12  Jason Merrill  <jason@redhat.com>
4441         PR debug/53235
4442         * dwarf2out.c (build_local_stub): Prefer DW_AT_signature for
4443         comdat types.
4445 2012-05-12  Eric Botcazou  <ebotcazou@adacore.com>
4447         * function.c (requires_stack_frame_p): If the function can throw
4448         non-call exceptions, return true if the insn can throw internally.
4450 2012-05-12  Paolo Carlini  <paolo.carlini@oracle.com>
4452         * doc/generic.texi: Rename TYPE_PTRMEM_P to TYPE_PTRDATAMEM_P.
4454 2012-05-12  Uros Bizjak  <ubizjak@gmail.com>
4456         * config/alpha/alpha.c (alpha_emit_conditional_branch): Handle
4457         ORDERED and UNORDERED conditions.
4459 2012-05-11  Richard Guenther  <rguenther@suse.de>
4461         * tree-flow.h (referenced_var_check_and_insert): Remove.
4462         (find_new_referenced_vars): Likewise.
4463         * tree-dfa.c (referenced_var_check_and_insert): Make static.
4464         (find_new_referenced_vars_1, find_new_referenced_vars): Remove.
4465         * tree-inline.c (copy_bb): Use find_referenced_vars_in
4466         instead of find_new_referenced_vars.
4467         * gimple-fold.c (gimplify_and_update_call_from_tree): Likewise.
4469 2012-05-11  Richard Guenther  <rguenther@suse.de>
4471         * tree-pass.h (pass_rest_of_compilation,
4472         pass_all_optimizations, pass_postreload, pass_all_early_optimizations):
4473         Remove.
4474         * passes.c (pass_all_optimizations, pass_postreload,
4475         pass_all_early_optimizations): Make static.
4476         (pass_rest_of_compilation): Likewise.  Make it an RTL_PASS.
4477         * tree-phinodes.c (init_phinodes, fini_phinodes): Remove.
4478         * tree-ssa.c (init_tree_ssa): Do not call init_phinodes.
4479         (delete_tree_ssa): Do not call fini_phinodes.
4480         * tree-flow.h (init_phinodes, fini_phinodes): Remove.
4482 2012-05-11  Manuel López-Ibáñez  <manu@gcc.gnu.org>
4484         PR 53063
4485         * doc/options.texi (EnabledBy): Document
4486         * opts.c: Include opts.h and options.h before tm.h.
4487         (finish_options): Do not handle some sub-options here...
4488         (common_handle_option): ... instead call common_handle_option_auto
4489         here.
4490         * optc-gen.awk: Handle EnabledBy.
4491         * opth-gen.awk: Declare common_handle_option_auto.
4492         * common.opt (Wuninitialized): Use EnabledBy. Delete Init.
4493         (Wmaybe-uninitialized): Likewise.
4494         (Wunused-but-set-variable): Likewise.
4495         (Wunused-function): Likewise.
4496         (Wunused-label): Likewise.
4497         (Wunused-value): Likewise.
4498         (Wunused-variable): Likewise.
4499         * opt-read.awk: Create opt_numbers array.
4501 2012-05-11  Richard Guenther  <rguenther@suse.de>
4503         PR tree-optimization/53295
4504         * tree-data-ref.h (stride_of_unit_type_p): Handle non-constant
4505         strides.
4506         * tree-data-ref.c (dr_analyze_innermost): Allow non-constant
4507         strides when analyzing data-references in a loop context.
4508         * tree-vect-data-refs.c (vect_mark_for_runtime_alias_test): Reject
4509         non-constant strides for now.
4510         (vect_enhance_data_refs_alignment): Ignore data references
4511         that are strided loads.
4512         (vect_analyze_data_ref_access): Handle non-constant strides.
4513         (vect_check_strided_load): Verify the data-reference is a load.
4514         (vect_analyze_data_refs): Restructure to make strided load
4515         support not dependent on gather support.
4516         * tree-vect-stmts.c (vectorizable_load): Avoid useless work
4517         when doing strided or gather loads.
4518         * tree-vect-loop-manip.c (vect_vfa_segment_size): Use
4519         integer_zerop to compare stride with zero.
4521 2012-05-11  H.J. Lu  <hongjiu.lu@intel.com>
4523         * config/i386/driver-i386.c (host_detect_local_cpu): Support RTM.
4525 2012-05-11  Jan Hubicka  <jh@suse.cz>
4527         PR bootstrap/53300
4528         * varpool.c (varpool_assemble_decl): Also output constat pool entries
4529         that output_constant_pool missed.
4531 2012-05-11  Mingjie Xing  <mingjie.xing@gmail.com>
4533         * config/mips/t-vxworks: Change MUTLILIB_EXTRA_OPTS to
4534         MULTILIB_EXTRA_OPTS.
4536 2012-05-11  Uros Bizjak  <ubizjak@gmail.com>
4538         PR target/53291
4539         * config/i386/i386.md (xtest): Use NE condition in ix86_expand_setcc.
4541 2012-05-11  Uros Bizjak  <ubizjak@gmail.com>
4543         * config/i386/i386.md (*movti_internal_rex64): Avoid MOVAPS size
4544         optimization for TARGET_AVX.
4545         (*movti_internal_sse): Ditto.
4546         (*movdi_internal_rex64): Handle TARGET_SSE_PACKED_SINGLE_INSN_OPTIMAL.
4547         (*movdi_internal): Ditto.
4548         (*movsi_internal): Ditto.
4549         (*movtf_internal): Avoid MOVAPS size optimization for TARGET_AVX.
4550         (*movdf_internal_rex64): Ditto.
4551         (*movfd_internal): Ditto.
4552         (*movsf_internal): Ditto.
4553         * config/i386/sse.md (mov<mode>): Handle TARGET_SSE_LOAD0_BY_PXOR.
4555 2012-05-10  Eric Botcazou  <ebotcazou@adacore.com>
4557         * dwarf2out.c (add_byte_size_attribute) <RECORD_TYPE>: Handle variable
4558         reference as size attribute.
4560 2012-05-10  Eric Botcazou  <ebotcazou@adacore.com>
4561             Tristan Gingold  <gingold@adacore.com>
4563         * doc/md.texi (Standard Names): Document probe_stack_address.
4564         * explow.c (emit_stack_probe): Handle probe_stack_address.
4565         * config/ia64/ia64.md (UNSPECV_PROBE_STACK_ADDRESS): New constant.
4566         (UNSPECV_PROBE_STACK_RANGE): Likewise.
4567         (probe_stack_address): New insn.
4568         (probe_stack_range): Likewise.
4569         * config/ia64/ia64.c: Include common/common-target.h.
4570         (ia64_compute_frame_size): Mark r2 and r3 as used if static stack
4571         checking is enabled.
4572         (ia64_emit_probe_stack_range): New function.
4573         (output_probe_stack_range): Likewise.
4574         (ia64_expand_prologue): Invoke ia64_emit_probe_stack_range if static
4575         builtin stack checking is enabled.
4576         (rtx_needs_barrier) <UNSPEC_VOLATILE>: Handle UNSPECV_PROBE_STACK_RANGE
4577         and UNSPECV_PROBE_STACK_ADDRESS.
4578         (unknown_for_bundling_p): New predicate.
4579         (group_barrier_needed): Use important_for_bundling_p.
4580         (ia64_dfa_new_cycle): Use unknown_for_bundling_p.
4581         (issue_nops_and_insn): Likewise.
4582         (bundling): Likewise.
4583         (final_emit_insn_group_barriers): Likewise.
4584         * config/ia64/ia64-protos.h (output_probe_stack_range): Declare.
4585         * config/ia64/hpux.h (STACK_CHECK_STATIC_BUILTIN): Define.
4586         (STACK_CHECK_PROTECT): Likewise.
4587         * config/ia64/linux.h (STACK_CHECK_STATIC_BUILTIN): Likewise.
4589 2012-05-10  Jan Hubicka  <jh@suse.cz>
4591         * ipa-inline.c (update_all_callee_keys): Remove.
4592         (inline_small_functions): Simplify priority updating.
4594 2012-05-10  Jan Hubicka  <jh@suse.cz>
4596         * ipa.c (symtab_remove_unreachable_nodes): Fix marking of clones.
4598 2012-05-10  Jan Hubicka  <jh@suse.cz>
4600         * cgraph.h (cgraph_remove_unreachable_nodes): Rename to ...
4601         (symtab_remove_unreachable_nodes): ... this one.
4602         * ipa-cp.c (ipcp_driver): Do not remove unreachable nodes.
4603         * cgraphunit.c (ipa_passes): Update.
4604         * cgraphclones.c (cgraph_materialize_all_clones): Update.
4605         * cgraph.c (cgraph_release_function_body): Only turn initial
4606         into error mark when initial was previously set.
4607         * ipa-inline.c (ipa_inline): Update.
4608         * ipa.c: Include ipa-inline.h
4609         (enqueue_cgraph_node, enqueue_varpool_node): Remove.
4610         (enqueue_node): New function.
4611         (process_references): Update.
4612         (symtab_remove_unreachable_nodes): Cleanup.
4613         * passes.c (execute_todo, execute_one_pass): Update.
4615 2012-05-10  Vladimir Makarov  <vmakarov@redhat.com>
4617         PR rtl-optimization/53125
4618         * ira.c (ira): Call find_moveable_pseudos and
4619         move_unallocated_pseudos if only ira_conflicts_p is true.
4621 2012-05-10  Uros Bizjak  <ubizjak@gmail.com>
4623         * config/i386/i386.md (*movoi_internal_avx): Handle
4624         TARGET_SSE_PACKED_SINGLE_INSN_OPTIMAL and TARGET_SSE_TYPELESS_STORES.
4625         (*movti_internal_rex64): Handle TARGET_SSE_PACKED_SINGLE_INSN_OPTIMAL.
4626         (*movti_internal_sse): Ditto.
4627         (*movtf_internal): Ditto.
4628         * config/i386/sse.md (ssePSmode): New mode attribute.
4629         (*move<mode>_internal): Use ssePSmode.
4630         (*<sse>_movu<ssemodesuffix><avxsizesuffix>): Ditto.
4631         (*<sse2>_movdqu<avxsizesuffix>): Ditto.
4632         * config/i386/i386.c (standard_sse_constant_opcode): Do not handle
4633         TARGET_SSE_PACKED_SINGLE_INSN_OPTIMAL here.
4635 2012-05-10  Eric Botcazou  <ebotcazou@adacore.com>
4637         * gimplify.c (gimplify_decl_expr): For a TYPE_DECL, also gimplify the
4638         DECL_ORIGINAL_TYPE if it is present.
4640 2012-05-10  Nick Clifton  <nickc@redhat.com>
4642         PR target/53120
4643         * config/m32c/bitops.md (bset_qi): Change operand 2 from having
4644         a "0" constraint to being a (match_dup 0).
4646 2012-05-10  Richard Guenther  <rguenther@suse.de>
4648         * stor-layout.c (byte_from_pos): Amend comment.
4650 2012-05-10  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
4652         * doc/extend.texi (X86 Built-in Functions, __builtin_cpu_init):
4653         Document requirement to call in constructors.
4655         * config/i386/i386.c: Update comments for i386-cpuinfo.c name change.
4657 2012-05-10  Richard Guenther  <rguenther@suse.de>
4659         * tree.h (TYPE_IS_SIZETYPE): Remove.
4660         * fold-const.c (int_const_binop_1): Remove TYPE_IS_SIZETYPE use.
4661         (extract_muldiv_1): Likewise.
4662         * gimple.c (gtc_visit): Likewise.
4663         (gimple_types_compatible_p): Likewise.
4664         (iterative_hash_canonical_type): Likewise.
4665         (gimple_canonical_types_compatible_p): Likewise.
4666         * gimplify.c (gimplify_one_sizepos): Likewise.
4667         * print-tree.c (print_node): Likewise.
4668         * stor-layout.c (initialize_sizetypes): Do not set TYPE_IS_SIZETYPE.
4670 2012-05-09  Uros Bizjak  <ubizjak@gmail.com>
4672         PR target/52908
4673         * config/i386/sse.md (vec_widen_smult_hi_v4si): Expand using
4674         xop_pmacsdqh insn pattern instead of xop_mulv2div2di3_high.
4675         (vec_widen_smult_lo_v4si): Expand using xop_pmacsdql insn pattern
4676         instead of xop_mulv2div2di3_low.
4677         (xop_p<macs>dql): Fix vec_select selector.
4678         (xop_p<macs>dqh): Ditto.
4679         (xop_mulv2div2di3_low): Remove insn_and_split pattern.
4680         (xop_mulv2div2di3_high): Ditto.
4682 2012-05-09  Manuel López-Ibáñez  <manu@gcc.gnu.org>
4684         PR c++/53289
4685         * diagnostic.h (diagnostic_context): Add last_location.
4686         * diagnostic.c (diagnostic_initialize): Initialize it.
4687         (diagnostic_show_locus): Use it.
4689 2012-05-09  Manuel López-Ibáñez  <manu@gcc.gnu.org>
4691         * doc/extend.texi (Function Attributes): Point xref to section
4692         about Pragmas.
4694 2012-05-09  Uros Bizjak  <ubizjak@gmail.com>
4696         * config/i386/i386.c (*movdf_internal_rex64): Remove
4697         TARGET_SSE_PACKED_SINGLE_INSN_OPTIMAL handling from asm output code.
4698         Calculate "mode" attribute according to
4699         TARGET_SSE_PACKED_SINGLE_INSN_OPTIMAL flag.
4700         (*movdf_internal): Ditto.
4702 2012-05-09  Uros Bizjak  <ubizjak@gmail.com>
4704         PR target/44141
4705         * config/i386/i386.c (ix86_expand_vector_move_misalign): Do not handle
4706         128 bit vectors specially for TARGET_AVX.  Emit sse2_movupd and
4707         sse_movupd RTXes for TARGET_AVX, TARGET_SSE_PACKED_SINGLE_INSN_OPTIMAL
4708         or when optimizing for size.
4709         * config/i386/sse.md (*mov<mode>_internal): Remove
4710         TARGET_SSE_PACKED_SINGLE_INSN_OPTIMAL handling from asm output code.
4711         Calculate "mode" attribute according to optimize_function_for_size_p
4712         and TARGET_SSE_PACKED_SINGLE_INSN_OPTIMAL flag.
4713         (*<sse>_movu<ssemodesuffix><avxsizesuffix>): Choose asm template
4714         depending on the mode of the instruction.  Calculate "mode" attribute
4715         according to optimize_function_for_size_p, TARGET_SSE_TYPELESS_STORES
4716         and TARGET_SSE_PACKED_SINGLE_INSN_OPTIMAL flags.
4717         (*<sse2>_movdqu<avxsizesuffix>): Ditto.
4719 2012-05-09  Georg-Johann Lay  <avr@gjlay.de>
4721         PR target/53256
4722         * config/avr/elf.h (ASM_DECLARE_FUNCTION_NAME): Remove.
4723         * config/avr/avr-protos.h (avr_asm_declare_function_name): Remove.
4724         * config/avr/avr.h (struct machine_function): Add attributes_checked_p.
4725         * config/avr/avr.c (avr_asm_declare_function_name): Remove.
4726         (expand_prologue): Move initialization of cfun->machine->is_naked,
4727         is_interrupt, is_signal, is_OS_task, is_OS_main from here to...
4728         (avr_set_current_function): ...this new static function.
4729         (TARGET_SET_CURRENT_FUNCTION): New define.
4730         (avr_function_ok_for_sibcall): Use cfun->machine->is_* instead of
4731         checking attributes of current_function_decl.
4732         (avr_regs_to_save): Ditto.
4733         (signal_function_p): Rename to avr_signal_function_p.
4734         (interrupt_function_p): Rename to avr_interrupt_function_p.
4736         * doc/extend.texi (Function Attributes): Better explanation of
4737         'interrupt' and 'signal' for AVR. Move 'ifunc' down to establish
4738         alphabetical order.
4740 2012-05-09  Michael Matz  <matz@suse.de>
4742         PR tree-optimization/53185
4743         * tree-vect-data-refs.c (vect_enhance_data_refs_alignment): Disable
4744         peeling when we see strided loads.
4746 2012-05-09  Matthias Klose  <doko@ubuntu.com>
4748         * gcc-ar.c (main): Don't check for execute bits for the plugin.
4750 2012-05-09  Ramana Radhakrishnan  <ramana.radhakrishnan@linaro.org>
4752         * tree-ssa-loop-ivopts.c (add_autoinc_candidates, get_address_cost):
4753         Replace use of HAVE_{POST/PRE}_{INCREMENT/DECREMENT} with
4754         USE_{LOAD/STORE}_{PRE/POST}_{INCREMENT/DECREMENT} appropriately.
4755         * config/arm/arm.h (ARM_AUTOINC_VALID_FOR_MODE_P): New.
4756         (USE_LOAD_POST_INCREMENT): Define.
4757         (USE_LOAD_PRE_INCREMENT): Define.
4758         (USE_LOAD_POST_DECREMENT): Define.
4759         (USE_LOAD_PRE_DECREMENT): Define.
4760         (USE_STORE_PRE_DECREMENT): Define.
4761         (USE_STORE_PRE_INCREMENT): Define.
4762         (USE_STORE_POST_DECREMENT): Define.
4763         (USE_STORE_POST_INCREMENT): Define.
4764         (arm_auto_incmodes): Add enumeration.
4765         * config/arm/arm-protos.h (arm_autoinc_modes_ok_p): Declare.
4766         * config/arm/arm.c (arm_autoinc_modes_ok_p): Define.
4768 2012-05-09  Jakub Jelinek  <jakub@redhat.com>
4770         PR tree-optimization/53226
4771         * tree-ssa-forwprop.c (ssa_forward_propagate_and_combine): Remove
4772         prev and prev_initialized vars, gimple_set_plf (stmt, GF_PLF_1, false)
4773         before processing it and gimple_set_plf (stmt, GF_PLF_1, true) if it
4774         doesn't need to be revisited, look for earliest stmt with
4775         !gimple_plf (stmt, GF_PLF_1) if something changed.
4777 2012-05-09  Terry Guo  <terry.guo@arm.com>
4779         * genmultilib: Update copyright dates.
4780         * doc/fragments.texi: Ditto.
4782 2012-05-09  Terry Guo  <terry.guo@arm.com>
4784         * Makefile.in (s-mlib): Add new argument MULTILIB_REQUIRED.
4785         * genmultilib (MULTILIB_REQUIRED): New.
4786         * doc/fragments.texi: Document the MULTILIB_REQUIRED.
4788 2012-05-09  Richard Guenther  <rguenther@suse.de>
4790         * tree-vectorizer.h (vect_loop_versioning): Adjust prototype.
4791         (vect_do_peeling_for_loop_bound): Likewise.
4792         (vect_do_peeling_for_alignment): Likewise.
4793         * tree-vect-loop-manip.c (conservative_cost_threshold): Remove.
4794         (vect_do_peeling_for_loop_bound): Get check_profitability and
4795         threshold as parameters.
4796         (vect_do_peeling_for_alignment): Likewise.
4797         (vect_loop_versioning): Likewise.
4798         * tree-vect-loop.c (vect_transform_loop): Compute check_profitability
4799         and threshold here.  Control where to put the check here.
4801 2012-05-09  Richard Sandiford  <rdsandiford@googlemail.com>
4803         PR middle-end/53249
4804         * dwarf2out.h (get_address_mode): Move declaration to...
4805         * rtl.h: ...here.
4806         * dwarf2out.c (get_address_mode): Move definition to...
4807         * rtlanal.c: ...here.
4808         * var-tracking.c (get_address_mode): Delete.
4809         * combine.c (find_split_point): Use get_address_mode instead of
4810         targetm.addr_space.address_mode.
4811         * cselib.c (cselib_record_sets): Likewise.
4812         * dse.c (canon_address, record_store): Likewise.
4813         * emit-rtl.c (adjust_address_1, offset_address): Likewise.
4814         * expr.c (move_by_pieces, emit_block_move_via_loop, store_by_pieces)
4815         (store_by_pieces_1, expand_assignment, store_expr, store_constructor)
4816         (expand_expr_real_1): Likewise.
4817         * ifcvt.c (noce_try_cmove_arith): Likewise.
4818         * optabs.c (maybe_legitimize_operand_same_code): Likewise.
4819         * reload.c (find_reloads): Likewise.
4820         * sched-deps.c (sched_analyze_1, sched_analyze_2): Likewise.
4821         * sel-sched-dump.c (debug_mem_addr_value): Likewise.
4823 2012-05-09  Maciej W. Rozycki  <macro@codesourcery.com>
4825         * config/mips/mips.c (mips16_gp_pseudo_reg): Remove line
4826         information from the instruction produced.
4828 2012-05-09  Richard Guenther  <rguenther@suse.de>
4830         * stor-layout.c (bit_from_pos): Document.
4831         (byte_from_pos): Likewise.  Optimize.
4832         (pos_from_bit): Likewise.
4833         (normalize_offset): Use pos_from_bit instead of replicating it.
4835 2012-05-09  Alan Modra  <amodra@gmail.com>
4837         PR target/53271
4838         * config/rs6000/rs6000.c (gen_frame_set): New function.
4839         (gen_frame_load, gen_frame_store): New functions.
4840         (rs6000_savres_rtx): Use the above.
4841         (rs6000_emit_epilogue, rs6000_emit_prologue): Here too.
4842         Correct mode used for CR2 in save/restore_world patterns.
4843         Don't emit instructions for eh_return frame unwind reg info.
4845 2012-05-08  Jan Hubicka  <jh@suse.cz>
4847         * cgraphbuild.c (build_cgraph_edges): Do not finalize vars
4848         with VALUE_EXPR.
4849         * cgraph.h (varpool_can_remove_if_no_refs): Vars with VALUE_EXPR
4850         are removable.
4851         * toplev.c (wrapup_global_declaration_2): Vars with VALUE_EXPR
4852         need to wrapup.
4853         (compile_file): Do not output variables.
4854         * cgraphbuild.c (varpool_finalize_decl): When var is finalized late,
4855         output it.
4856         * langhooks.c: Include timevar.h
4857         (write_global_declarations): Finalize compilation unit after wrapup;
4858         set timevars correctly.
4859         * passes.c (rest_of_decl_compilation): Decls with VALUE_EXPR needs
4860         not to be added to varpool.
4861         * varpool.c (varpool_assemble_decl): Sanity check that we are called
4862         only on cases where it makes sense; skip constant pool and value expr
4863         vars.
4865 2012-05-08  David S. Miller  <davem@davemloft.net>
4867         * config/sparc/linux.h (LINK_SPEC): Don't pass "-Y" option.
4868         * config/sparc/linux64.h (LINK_ARCH32_SPEC): Likewise.
4869         * config/sparc/linux64.h (LINK_ARCH64_SPEC): Likewise.
4871 2012-05-08  Richard Sandiford  <rdsandiford@googlemail.com>
4873         PR rtl-optimization/53278
4874         * lower-subreg.c (decompose_multiword_subregs): Remove left-over
4875         speed_p code from earlier patch.
4877 2012-05-08  Oleg Endo  <olegendo@gcc.gnu.org>
4879         PR target/51244
4880         * config/sh/sh.md (*branch_true, *branch_false): New insns.
4882 2012-05-08  Teresa Johnson  <tejohnson@google.com>
4884         * gcov-io.h (__gcov_reset, __gcov_dump): Declare.
4885         * doc/gcov.texi: Add note on using __gcov_reset and __gcov_dump.
4887 2012-05-08  Jan Hubicka  <jh@suse.cz>
4889         * cgraph.c (cgraph_call_edge_duplication_hooks): Export.
4890         (cgraph_create_node_1): Rename to ...
4891         (cgraph_create_empty_node): ... this one; export.
4892         (cgraph_create_node): Update.
4893         (cgraph_set_call_stmt_including_clones): Move to cgraphclones.c
4894         (cgraph_create_edge_including_clones): Likewise.
4895         (cgraph_find_replacement_node): Likewise.
4896         (cgraph_clone_edge): Likewise.
4897         (cgraph_clone_node): Likewise.
4898         (clone_function_name): Likewise.
4899         (cgraph_create_virtual_clone): Likewise.
4900         (cgraph_remove_node_and_inline_clones): Likewise.
4901         (cgraph_redirect_edge_call_stmt_to_callee): Move here from cgraphunit.c
4902         * cgraph.h: Reorder declarations so they match file of origin.
4903         (cgraph_create_empty_node): Declare.
4904         * cgraphunit.c (update_call_expr): Move to cgraphclones.c
4905         (cgraph_copy_node_for_versioning): Likewise.
4906         (cgraph_function_versioning): Likewise.
4907         (cgraph_materialize_clone): Likewise.
4908         (cgraph_redirect_edge_call_stmt_to_callee): Likewise.
4909         (cgraph_materialize_all_clones): Likewise.
4910         * cgraphclones.c: New file.
4911         * Makefile.in: Update for cgraphclones.
4913 2012-05-08  Uros Bizjak  <ubizjak@gmail.com>
4915         PR target/53176
4916         * config/i386/i386.c (ix86_set_reg_reg_cost): New function.
4917         (ix86_rtx_costs): Handle SET.
4919 2012-05-08  Michael Matz  <matz@suse.de>
4921         * basic-block.h (struct rtl_bb_info): Remove visited member and
4922         move head_ member to ...
4923         (struct basic_block_def.basic_block_il_dependent): ... the new
4924         member x, replacing but containing old member rtl.
4925         (enum bb_flags): New BB_VISITED flag.
4926         (BB_HEADER, BB_FOOTER): New macros.
4928         * jump.c (mark_all_labels): Adjust.
4929         * cfgcleanup.c (try_optimize_cfg): Adjust.
4930         * cfglayout.c (record_effective_endpoints): Adjust.
4931         (relink_block_chain): Ditto (and don't fiddle with visited).
4932         (fixup_reorder_chain): Adjust.
4933         (fixup_fallthru_exit_predecessor): Ditto.
4934         (cfg_layout_duplicate_bb): Ditto.
4935         * combine.c (update_cfg_for_uncondjump): Adjust.
4936         * bb-reorder.c (struct bbro_basic_block_data_def): Add visited member.
4937         (bb_visited_trace): New accessor.
4938         (mark_bb_visited): Move in front.
4939         (rotate_loop): Use bb_visited_trace.
4940         (find_traces_1_round): Ditto.
4941         (emit_barrier_after): Ditto.
4942         (copy_bb): Ditto, and initialize visited on resize.
4943         (reorder_basic_blocks): Initize visited member.
4944         (duplicate_computed_gotos): Clear bb flags at start, use
4945         BB_VISITED flags.
4947         * cfgrtl.c (try_redirect_by_replacing_jump): Adjust.
4948         (rtl_verify_flow_info_1): Ditto.
4949         (cfg_layout_split_block): Ditto.
4950         (cfg_layout_delete_block): Ditto.
4951         (cfg_layout_merge_blocks): Ditto.
4952         (init_rtl_bb_info): Adjust and initialize il.x.head_ member.
4954 2012-05-08  Hans-Peter Nilsson  <hp@axis.com>
4956         PR target/53272
4957         * config/cris/cris.c (cris_normal_notice_update_cc): For TARGET_V32,
4958         when a constant source operand matches an "I" constraint, the "no
4959         CC0 change" applies to a register-destination only, not a
4960         strict_low_part-destination.
4962 2012-05-08  Richard Guenther  <rguenther@suse.de>
4964         * fold-const.c (fold_binary_loc): Fold (X * CST1) & CST2
4965         to zero or to (X * CST1) & CST2' when CST1 has trailing zeros.
4967 2012-05-08  Georg-Johann Lay  <avr@gjlay.de>
4969         * Makefile.in (TEXI_GCC_FILES): Add avr-mmcu.texi.
4971         * doc/avr-mmcu.texi: New auto-generated file.
4972         * doc/invoke.texi (AVR Options): Include avr-mmcu.texi in order
4973         to document all valid -mmcu= arguments.
4975         * config/avr/avr.h (arch_info_s): New struct definition.
4976         * config/avr/avr-devices.c (avr_texinfo): New variable.
4977         * config/avr/gen-avr-mmcu-texi.c: New file.
4978         * config/avr/t-avr: New rules and dependencies to build avr-mmcu.texi.
4980 2012-05-08  Dehao Chen  <dehao@google.com>
4982         * predict.c (find_qualified_ssa_name): New.
4983         (find_ssa_name_in_expr): New.
4984         (find_ssa_name_in_assign_stmt): New.
4985         (is_comparison_with_loop_invariant_p): New.
4986         (is_bound_expr_similar): New.
4987         (predict_iv_comparison): New.
4988         (predict_loops): Add heuristic for loop-nested branches that compare an
4989         induction variable to a loop bound variable.
4990         * predict.def (PRED_LOOP_IV_COMPARE): New macro.
4992 2012-05-08  Uros Bizjak  <ubizjak@gmail.com>
4994         * config/i386/i386.c (has_dispatch): Use TARGET_BDVER1 and
4995         TARGET_BDVER2 defines where appropriate.
4997 2012-05-07  Eric Botcazou  <ebotcazou@adacore.com>
4999         * configure.ac (PLUGIN_LD): Rename into...
5000         (PLUGIN_LD_SUFFIX): ...this and strip the target_alias triplet.
5001         * config.in: Regenerate.
5002         * configure: Likewise.
5003         * collect2.c (main): Set plugin_ld_suffix to PLUGIN_LD_SUFFIX.
5005 2012-05-07  Eric Botcazou  <ebotcazou@adacore.com>
5007         * tree-dfa.c (get_ref_base_and_extent) <ARRAY_REF>: Do the offset
5008         computation using the precision of the index type.
5009         * gimple-fold.c (fold_const_aggregate_ref_1) <ARRAY_REF>: Likewise.
5010         (fold_array_ctor_reference): Do index computations in the index type.
5012 2012-05-07  Georg-Johann Lay  <avr@gjlay.de>
5014         * config/avr/avr.c (avr_prologue_setup_frame): Fix mode passed
5015         down to plus_constant.
5016         (expand_epilogue): Ditto.
5018 2012-05-07  Steven Bosscher  <steven@gcc.gnu.org>
5020         * postreload.c (reload_cse_regs): Make static.
5021         * reload.h (reload_cse_regs): Remove prototype.
5023 2012-05-07  Richard Henderson  <rth@redhat.com>
5025         * config/alpha/alpha.md (clear_cache): New pattern.
5027 2012-05-07  Steven Bosscher  <steven@gcc.gnu.org>
5029         PR middle-end/53245
5030         * gimplify.c (preprocess_case_label_vec_for_gimple): If low or high
5031         is folded to a type boundary value, verify that the resulting case
5032         label is still a care range.
5034 2012-05-07  Uros Bizjak  <ubizjak@gmail.com>
5036         * config/i386/i386.md (ctz<mode>2): Emit rep;bsf
5037         only for TARGET_GENERIC, when not optimizing for size.
5038         (*ffs<mode>_1): Ditto.
5040 2012-05-07  Steven Bosscher  <steven@gcc.gnu.org>
5042         * tree-cfg.c (verify_gimple_switch): Tighten checks.
5044 2012-05-07  Jakub Jelinek  <jakub@redhat.com>
5046         PR tree-optimization/53239
5047         * tree-vrp.c (get_value_range): Set VR of SSA_NAME_IS_DEFAULT_DEF
5048         of DECL_BY_REFERENCE RESULT_DECL to nonnull.
5050 2012-05-07  Richard Guenther  <rguenther@suse.de>
5052         PR tree-optimization/53195
5053         * tree-inline.c (setup_one_parameter): Properly add referenced
5054         vars from the parameters new known value.
5056 2012-05-07  Steven Bosscher  <steven@gcc.gnu.org>
5058         * config/m68k/m68k.c (m68k_sched_branch_type): Remove.
5059         (sched_branch_type): Remove.
5060         (m68k_sched_md_init_global): Don't allocate it.
5061         (m68k_sched_md_finish_global): Don't free it.
5062         * config/m68k/m68k.h (m68k_sched_branch_type): Remove prototype.
5063         * config/m68k/m68k.md: Set the type of insns using
5064         m68k_sched_branch_type to bcc directly.
5066 2012-05-07  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
5068         * config/sol2.c (solaris_override_options): New function.
5069         * config/sol2-protos.h (solaris_override_options): Declare.
5070         * config/sol2.h (SUBTARGET_OVERRIDE_OPTIONS): Define.
5072 2012-05-07  Richard Guenther  <rguenther@suse.de>
5074         * tree-ssa-loop-prefetch.c (determine_loop_nest_reuse): Return
5075         whether we failed to compute data dependences.
5076         (loop_prefetch_arrays): Fail if we failed.
5078 2012-05-07  Uros Bizjak  <ubizjak@gmail.com>
5079             Paolo Bonzini  <bonzini@gnu.org>
5081         * config/i386/i386.md (ctz<mode>2): Emit rep;bsf even for !TARGET_BMI.
5082         Emit bsf when optimizing for size.
5083         (*ffs<mode>_1): Ditto.
5085 2012-05-07  Oleg Endo  <olegendo@gcc.gnu.org>
5087         PR target/53250
5088         * config/sh/sh.c (sh_rtx_costs): Handle SET.
5090 2012-05-06  Uros Bizjak  <ubizjak@gmail.com>
5092         PR target/53227
5093         * config/i386/i386.md (swap<mode>): Rename from *swap<mode>.
5094         (bswapdi2): Split from bswap<mode>2.  Use nonnimediate_operand
5095         predicate for operand 1.  Force operand 1 to register for TARGET_BSWAP.
5096         (bswapsi2): Ditto.
5097         (*bswapdi2_doubleword): New insn pattern.
5098         (*bswap<mode>2): Rename from *bswap<mode>2_1.
5100 2012-05-06  Richard Sandiford  <rdsandiford@googlemail.com>
5102         * config/mips/mips.c (mips_set_reg_reg_piece_cost): New function.
5103         (mips_set_reg_reg_cost): Likewise.
5104         (mips_rtx_costs): Handle SET.
5106 2012-05-06  Richard Sandiford  <rdsandiford@googlemail.com>
5108         * lower-subreg.c (shift_cost): Use set_src_cost, avoiding the SET.
5109         (compute_costs): Likewise for the zero extension.  Use set_rtx_cost
5110         to compute the cost of moves.  Set the mode of the target register.
5112 2012-05-05  Richard Sandiford  <rdsandiford@googlemail.com>
5114         * rtl.h (plus_constant, plus_constant_mode): Merge into a single
5115         plus_constant function.
5116         * explow.c (plus_constant, plus_constant_mode): Likewise.  Assert
5117         that the mode is sensible.
5118         (use_anchored_address, round_push, allocate_dynamic_stack_space)
5119         (probe_stack_range, anti_adjust_stack_and_probe): Update calls to
5120         plus_constant.
5122         * alias.c (canon_rtx): Likewise.
5123         (init_alias_analysis): Likewise.
5124         * builtins.c (expand_builtin_return_addr)
5125         (expand_builtin_setjmp_setup, expand_builtin_longjmp)
5126         (expand_builtin_nonlocal_goto, expand_builtin_update_setjmp_buf)
5127         (expand_builtin_apply_args_1, expand_builtin_apply, expand_movstr)
5128         (expand_builtin_stpcpy): Likewise.
5129         * calls.c (save_fixed_argument_area, restore_fixed_argument_area)
5130         (compute_argument_addresses, internal_arg_pointer_based_exp)
5131         (expand_call, emit_library_call_value_1): Likewise.
5132         * cfgexpand.c (expand_one_stack_var_at, expand_debug_expr): Likewise.
5133         * combine-stack-adj.c (try_apply_stack_adjustment): Likewise.
5134         * combine.c (combine_simplify_rtx, force_to_mode): Likewise.
5135         * cse.c (insert_const_anchor, find_reg_offset_for_const)
5136         (use_related_value, fold_rtx): Likewise.
5137         * cselib.c (cselib_subst_to_values): Likewise.
5138         * dse.c (record_store, check_mem_read_rtx): Likewise.
5139         * dwarf2out.c (rtl_for_decl_location, gen_variable_die): Likewise.
5140         * emit-rtl.c (adjust_address_1): Likewise.
5141         * except.c (sjlj_emit_function_enter)
5142         (expand_builtin_extract_return_addr)
5143         (expand_builtin_frob_return_addr): Likewise.
5144         * expmed.c (expand_divmod): Likewise.
5145         * expr.c (move_by_pieces, store_by_pieces, store_by_pieces_1)
5146         (emit_move_resolve_push, push_block, emit_push_insn, store_expr)
5147         (expand_expr_addr_expr_1, expand_expr_real_1): Likewise.
5148         * function.c (assign_stack_local_1)
5149         (instantiate_virtual_regs_in_rtx): Likewise.
5150         * optabs.c (prepare_cmp_insn): Likewise.
5151         * recog.c (offsettable_address_addr_space_p): Likewise.
5152         * reload.c (find_reloads_address, form_sum)
5153         (find_reloads_subreg_address): Likewise.
5154         * reload1.c (init_reload, eliminate_regs_1)
5155         (eliminate_regs_in_insn): Likewise.
5156         * simplify-rtx.c (simplify_unary_operation_1)
5157         (simplify_binary_operation_1, simplify_plus_minus): Likewise.
5158         * var-tracking.c (compute_cfa_pointer, prepare_call_arguments)
5159         (vt_add_function_parameter): Likewise.
5161         * config/alpha/alpha.h (EH_RETURN_HANDLER_RTX): Likewise.
5162         * config/alpha/vms.h (EH_RETURN_HANDLER_RTX): Likewise.
5163         * config/alpha/alpha.c (alpha_legitimize_address_1)
5164         (get_unaligned_address, alpha_expand_unaligned_load)
5165         (alpha_expand_unaligned_store, alpha_expand_unaligned_load_words)
5166         (alpha_expand_unaligned_store_words, alpha_expand_block_clear)
5167         (alpha_expand_builtin_establish_vms_condition_handler)
5168         (alpha_setup_incoming_varargs, emit_frame_store_1)
5169         (alpha_expand_prologue, alpha_expand_epilogue)
5170         (alpha_use_linkage): Likewise.
5171         * config/alpha/alpha.md: Likewise.
5173         * config/arm/arm.c (arm_trampoline_init, legitimize_pic_address)
5174         (arm_load_pic_register, arm_pic_static_addr, arm_legitimize_address)
5175         (thumb_legitimize_address, arm_gen_load_multiple_1)
5176         (arm_gen_store_multiple_1, arm_gen_multiple_op, gen_ldm_seq)
5177         (gen_stm_seq, gen_const_stm_seq, arm_block_move_unaligned_straight)
5178         (arm_block_move_unaligned_loop, arm_gen_movmemqi, arm_reload_in_hi)
5179         (arm_reload_out_hi, arm_reorg, vfp_emit_fstmd, emit_multi_reg_push)
5180         (emit_sfm, thumb_set_frame_pointer, arm_expand_prologue)
5181         (thumb1_emit_multi_reg_push, thumb1_expand_prologue)
5182         (thumb_expand_movmemqi, arm_set_return_address)
5183         (thumb_set_return_address): Likewise.
5184         * config/arm/arm.md: Likewise.
5186         * config/avr/avr.c (avr_incoming_return_addr_rtx)
5187         (avr_prologue_setup_frame, expand_epilogue)
5188         (avr_const_address_lo16): Likewise.
5190         * config/bfin/bfin.h (EH_RETURN_HANDLER_RTX): Likewise.
5191         * config/bfin/bfin.c (setup_incoming_varargs, bfin_load_pic_reg)
5192         (bfin_expand_prologue, bfin_trampoline_init, bfin_expand_call)
5193         (bfin_output_mi_thunk): Likewise.
5195         * config/c6x/c6x.c (c6x_initialize_trampoline)
5196         (c6x_output_mi_thunk): Likewise.
5198         * config/cr16/cr16.h (EH_RETURN_HANDLER_RTX): Likewise.
5199         * config/cr16/cr16.c (cr16_create_dwarf_for_multi_push): Likewise.
5201         * config/cris/cris.c (cris_return_addr_rtx, cris_split_movdx)
5202         (cris_expand_prologue, cris_expand_epilogue, cris_gen_movem_load)
5203         (cris_emit_movem_store, cris_trampoline_init): Likewise.
5204         * config/cris/cris.md: Likewise.
5206         * config/darwin.c (machopic_indirect_data_reference)
5207         (machopic_legitimize_pic_address): Likewise.
5209         * config/epiphany/epiphany.c (epiphany_emit_save_restore)
5210         (epiphany_expand_prologue, epiphany_expand_epilogue)
5211         (epiphany_trampoline_init): Likewise.
5212         * config/epiphany/epiphany.md: Likewise.
5214         * config/fr30/fr30.c (fr30_move_double): Likewise.
5216         * config/frv/frv.c (frv_dwarf_store, frv_expand_prologue)
5217         (frv_expand_block_move, frv_expand_block_clear, frv_return_addr_rtx)
5218         (frv_index_memory, unspec_got_name, frv_find_base_term)
5219         (frv_output_dwarf_dtprel): Likewise.
5221         * config/h8300/h8300.c (h8300_push_pop, h8300_return_addr_rtx)
5222         (h8300_swap_into_er6, h8300_swap_out_of_er6): Likewise.
5224         * config/i386/i386.h (RETURN_ADDR_RTX): Likewise.
5225         * config/i386/i386.c (setup_incoming_varargs_64)
5226         (setup_incoming_varargs_ms_64, choose_baseaddr)
5227         (ix86_emit_save_reg_using_mov, ix86_adjust_stack_and_probe)
5228         (ix86_emit_probe_stack_range, ix86_expand_prologue)
5229         (ix86_emit_restore_reg_using_pop, ix86_emit_leave)
5230         (ix86_expand_epilogue, legitimize_pic_address, ix86_legitimize_address)
5231         (ix86_split_long_move, ix86_expand_movmem, ix86_expand_setmem)
5232         (ix86_static_chain, ix86_trampoline_init, x86_this_parameter)
5233         (x86_output_mi_thunk): Likewise.
5234         * config/i386/i386.md: Likewise.
5236         * config/ia64/ia64.c (ia64_expand_load_address)
5237         (ia64_expand_tls_address, ia64_expand_move, ia64_split_tmode)
5238         (do_spill, ia64_trampoline_init): Likewise.
5240         * config/iq2000/iq2000.c (iq2000_va_start)
5241         (iq2000_emit_frame_related_store, iq2000_expand_prologue)
5242         (iq2000_expand_eh_return, iq2000_setup_incoming_varargs)
5243         (iq2000_print_operand, iq2000_legitimize_address): Likewise.
5245         * config/lm32/lm32.c (lm32_setup_incoming_varargs): Likewise.
5247         * config/m32c/m32c.c (m32c_return_addr_rtx)
5248         (m32c_expand_insv): Likewise.
5250         * config/m32r/m32r.c (m32r_setup_incoming_varargs)
5251         (m32r_legitimize_pic_address, m32r_print_operand)
5252         (m32r_print_operand_address): Likewise.
5254         * config/m68k/linux.h (FINALIZE_TRAMPOLINE): Likewise.
5255         * config/m68k/m68k.h (RETURN_ADDR_RTX): Likewise.
5256         (EH_RETURN_HANDLER_RTX): Likewise.
5257         * config/m68k/m68k.c (m68k_emit_movem, m68k_expand_prologue)
5258         (m68k_expand_epilogue, legitimize_pic_address)
5259         (m68k_output_mi_thunk): Likewise.
5260         * config/m68k/m68k.md: Likewise.
5262         * config/mcore/mcore.c (mcore_expand_prolog): Likewise.
5263         (mcore_expand_epilog): Likewise.
5264         * config/mcore/mcore.md: Likewise.
5266         * config/mep/mep.c (mep_allocate_initial_value)
5267         (mep_expand_prologue, mep_expand_epilogue): Likewise.
5269         * config/microblaze/microblaze.c (double_memory_operand)
5270         (microblaze_block_move_loop): Likewise.
5272         * config/mips/mips.c (mips_strip_unspec_address, mips_add_offset)
5273         (mips_setup_incoming_varargs, mips_va_start, mips_block_move_loop)
5274         (mips_print_operand, mips16e_save_restore_reg, mips_save_restore_reg)
5275         (mips_expand_prologue, mips_epilogue_set_cfa)
5276         (mips_expand_epilogue): Likewise.
5277         * config/mips/mips.md: Likewise.
5279         * config/mmix/mmix.c (mmix_dynamic_chain_address, mmix_return_addr_rtx)
5280         (mmix_expand_prologue, mmix_expand_epilogue): Likewise.
5282         * config/mn10300/mn10300.c (mn10300_gen_multiple_store)
5283         (mn10300_builtin_saveregs, mn10300_trampoline_init): Likewise.
5285         * config/moxie/moxie.h (INCOMING_RETURN_ADDR_RTX): Likewise.
5286         (EH_RETURN_HANDLER_RTX): Likewise.
5287         * config/moxie/moxie.c (moxie_static_chain): Likewise.
5289         * config/pa/pa.c (legitimize_pic_address, hppa_legitimize_address)
5290         (store_reg, set_reg_plus_d, pa_expand_prologue, load_reg)
5291         (pa_return_addr_rtx, hppa_builtin_saveregs)
5292         (pa_trampoline_init): Likewise.
5293         * config/pa/pa.md: Likewise.
5295         * config/pdp11/pdp11.c (pdp11_expand_epilogue): Likewise.
5297         * config/picochip/picochip.c (picochip_static_chain): Likewise.
5299         * config/rs6000/rs6000.h (RS6000_SAVE_TOC): Likewise.
5300         * config/rs6000/rs6000.c (rs6000_legitimize_address)
5301         (setup_incoming_varargs, print_operand, rs6000_return_addr)
5302         (rs6000_emit_eh_reg_restore, rs6000_emit_probe_stack_range)
5303         (rs6000_emit_epilogue)
5304         (rs6000_machopic_legitimize_pic_address): Likewise.
5306         * config/rx/rx.c (gen_rx_rtsd_vector, gen_rx_popm_vector): Likewise.
5308         * config/s390/s390.h (INITIAL_FRAME_ADDRESS_RTX): Likewise.
5309         (DYNAMIC_CHAIN_ADDRESS): Likewise.
5310         * config/s390/s390.c (s390_decompose_address, legitimize_pic_address)
5311         (s390_delegitimize_address, print_operand, annotate_constant_pool_refs)
5312         (replace_constant_pool_ref, s390_return_addr_rtx, s390_back_chain_rtx)
5313         (save_fpr, restore_fpr, save_gprs, restore_gprs, s390_emit_prologue)
5314         (s390_emit_epilogue, s390_function_profiler): Likewise.
5315         * config/s390/s390.md: Likewise.
5317         * config/score/score.c (score_add_offset, score_prologue): Likewise.
5319         * config/sh/sh.c (expand_block_move, push_regs, sh_builtin_saveregs)
5320         (sh_output_mi_thunk): Likewise.
5321         * config/sh/sh.md: Likewise.
5323         * config/sparc/sparc.h (DYNAMIC_CHAIN_ADDRESS, FRAME_ADDR_RTX)
5324         (RETURN_ADDR_RTX, INCOMING_RETURN_ADDR_RTX): Likewise.
5325         * config/sparc/sparc.c (sparc_legitimize_pic_address)
5326         (sparc_emit_probe_stack_range, emit_save_or_restore_regs)
5327         (emit_window_save, sparc_flat_expand_prologue, sparc_struct_value_rtx)
5328         (emit_and_preserve): Likewise.
5329         * config/sparc/sparc.md: Likewise.
5331         * config/spu/spu.h (DYNAMIC_CHAIN_ADDRESS): Likewise.
5332         * config/spu/spu.c (spu_expand_insv, spu_machine_dependent_reorg)
5333         (spu_setup_incoming_varargs, ea_load_store_inline)
5334         (spu_expand_load): Likewise.
5336         * config/stormy16/stormy16.c (xstormy16_expand_prologue)
5337         (combine_bnp): Likewise.
5339         * config/tilegx/tilegx.h (DYNAMIC_CHAIN_ADDRESS): Likewise.
5340         * config/tilegx/tilegx.c (tilegx_setup_incoming_varargs)
5341         (tilegx_expand_unaligned_load, tilegx_trampoline_init): Likewise.
5343         * config/tilepro/tilepro.h (DYNAMIC_CHAIN_ADDRESS): Likewise.
5344         * config/tilepro/tilepro.c (tilepro_setup_incoming_varargs)
5345         (tilepro_expand_unaligned_load, tilepro_trampoline_init): Likewise.
5347         * config/v850/v850.c (expand_prologue, expand_epilogue): Likewise.
5348         * config/v850/v850.md: Likewise.
5350         * config/vax/elf.h (EH_RETURN_STACKADJ_RTX): Likewise.
5351         (EH_RETURN_HANDLER_RTX): Likewise.
5352         * config/vax/vax.h (DYNAMIC_CHAIN_ADDRESS, RETURN_ADDR_RTX): Likewise.
5353         * config/vax/vax.c (vax_add_reg_cfa_offset, vax_expand_prologue)
5354         (print_operand_address, vax_trampoline_init): Likewise.
5356         * config/xtensa/xtensa.c (xtensa_expand_prologue, xtensa_return_addr)
5357         (xtensa_function_value_regno_p): Likewise.
5359 2012-05-04  Andrew Pinski  <apinski@cavium.com>
5361         * expr.c (get_def_for_expr_class): New function.
5362         (convert_tree_comp_to_rtx): New function.
5363         (expand_cond_expr_using_cmove): New function.
5364         (expand_expr_real_2 <case COND_EXPR>): Call
5365         expand_cond_expr_using_cmove first and return if it succeeds.
5366         Remove the check for HAVE_conditional_move since we should have
5367         already converted it to a conditional move.
5368         * config/i386/i386.c (ix86_expand_int_movcc): Disallow comparison
5369         modes of DImode for 32bits and TImode.
5371 2012-05-04  Steven Bosscher  <steven@gcc.gnu.org>
5373         PR other/29442
5374         * read-md.c (fprint_md_ptr_loc, fprint_c_condition): New functions.
5375         (print_md_ptr_loc, print_c_condition): Use them.
5376         * read-md.h (fprint_md_ptr_loc, fprint_c_condition): New prototypes.
5377         * genattrtab.c (attr_file_name, dfa_file_name, latency_file_name,
5378         attr_file, dfa_file, latency_file): New global variables.
5379         (write_attr_valueq, write_attr_set, write_attr_case, write_attr_value,
5380         write_upcase, write_indent, write_length_unit_log, write_test_expr,
5381         write_attr_get, write_insn_cases, write_eligible_delay,
5382         write_const_num_delay_slots): Accept FILE pointer and toss it around.
5383         Update all callers.
5384         (write_header, open_outfile, handle_arg): New funcions.
5385         (make_automaton_attrs): Write prototypes as extern to the output
5386         files.
5387         (main): Use init_rtx_reader_args_cb with handle_arg to take 3 file
5388         names from the command line.  Open the output files and write out
5389         internal functions for DFA functions to dfa_file_name, insn latency
5390         functions to latency_file_name, and everything else to attr_file.
5391         * Makefile.in (OBJS): Add insn-dfatab.o and insn-latencytab.o.
5392         (BACKEND): Build libbackend first.
5393         (MOSTLYCLEANFILES): Add insn-dfatab.c and insn-latencytab.c.
5394         (.PRECIOUS): Likewise.
5395         (insn-dfatab.o): New rule.
5396         (insn-latencytab.o): New rule.
5397         (simple_rtl_generated_c): Do not include insn-attrtab.c.
5398         (s-attrtab): New rule.
5400 2012-05-04  Steven Bosscher  <steven@gcc.gnu.org>
5402         * rtl.def (ATTR_FLAG): Remove probability indicating flags.
5403         * genattr.c (main): Remove ATTR_FLAG_likely, ATTR_FLAG_unlikely,
5404         ATTR_FLAG_very_likely, and ATTR_FLAG_very_unlikely.
5405         * reorg.c (get_jump_flags): Do not set the removed flags.
5407         * doc/md.texi (attr_flag): Update for abovementioned changes.
5409 2012-05-04  Uros Bizjak  <ubizjak@gmail.com>
5411         PR target/53228
5412         * config/i386/i386.h (X86_ARCH_CMOV): Rename from X86_ARCH_CMOVE.
5413         (TARGET_CMOV): Rename from TARGET_CMOVE.
5414         (TARGET_CMOVE): New define.
5415         * config/i386/i386.c (ix86_option_override_internal): Use TARGET_CMOV.
5416         Do not set TARGET_CMOVE here.
5418 2012-05-04  Dodji Seketeli  <dodji@redhat.com>
5420         Enable -Wunused-local-typedefs when -Wall or -Wunused is on
5421         * opts.c (finish_options): Activate -Wunused-local-typedefs if
5422         -Wunused is activated.
5423         * doc/invoke.texi: Update blurb of -Wunused-local-typedefs.
5425 2012-05-04  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
5427         * config/s390/s390.md (*movmem_short, *clrmem_short)
5428         (*cmpmem_short): Move the mode check from the insn condition to
5429         the match_scratch.
5431 2012-05-04  Ulrich Weigand  <ulrich.weigand@linaro.org>
5433         PR tree-optimization/52633
5434         * tree-vect-patterns.c (vect_vect_recog_func_ptrs): Swap order of
5435         vect_recog_widen_shift_pattern and vect_recog_over_widening_pattern.
5436         (vect_recog_over_widening_pattern): Remove handling of code that was
5437         already detected as over-widening pattern.  Remove special handling
5438         of "unsigned" cases.  Instead, support general case of conversion
5439         of the shift result to another type.
5441 2012-05-04  Ulrich Weigand  <ulrich.weigand@linaro.org>
5443         * tree-vect-patterns.c (vect_single_imm_use): New function.
5444         (vect_recog_widen_mult_pattern): Use it instead of open-coding loop.
5445         (vect_recog_over_widening_pattern): Likewise.
5446         (vect_recog_widen_shift_pattern): Likewise.
5448 2012-05-04  Ulrich Weigand  <ulrich.weigand@linaro.org>
5450         * tree-vect-patterns.c (vect_same_loop_or_bb_p): New function.
5451         (vect_handle_widen_op_by_const): Use it instead of open-coding test.
5452         (vect_recog_widen_mult_pattern): Likewise.
5453         (vect_operation_fits_smaller_type): Likewise.
5454         (vect_recog_over_widening_pattern): Likewise.
5455         (vect_recog_widen_shift_pattern): Add to vect_same_loop_or_bb_p test.
5457 2012-05-04  Richard Guenther  <rguenther@suse.de>
5459         PR lto/50602
5460         * lto-wrapper.c (merge_and_complain): Complain about mismatches
5461         of -freg-struct-return and -fpcc-struct-return.
5462         (run_gcc): Pass through -freg-struct-return and -fpcc-struct-return
5463         from the input file options and ignore those from the link
5464         command line.
5466 2012-05-04  Richard Guenther  <rguenther@suse.de>
5468         PR tree-optimization/53168
5469         * tree-ssa-pre.c (phi_translate_1): Only handle type-punned
5470         memory reads when the result is a constant we can pun.
5472 2012-05-04  Richard Guenther  <rguenther@suse.de>
5474         * common.opt (flto-report): Do not mark as Optimization.
5476 2012-05-04  Eric Botcazou  <ebotcazou@adacore.com>
5478         PR target/48496
5479         * recog.c (constrain_operands): If extra constraints are present, also
5480         accept pseudo-registers with equivalent memory locations during reload.
5482 2012-05-04  Olivier Hainque  <hainque@adacore.com>
5484         * collect2.c (may_unlink_output_file): New global.
5485         (maybe_unlink): Honor it.
5486         * collect2.h: Add extern for it.
5487         * tlink.c (do_tlink): Set it to true if the link succeeded.
5489 2012-05-04  Olivier Hainque  <hainque@adacore.com>
5491         * gcc.c (eval_spec_function): Finalize/restore the current string
5492         obstack state as part of the context push/pop operations.
5494 2012-05-04  Bin Cheng  <bin.cheng@arm.com>
5496         PR rtl-optimization/52804
5497         * reload1.c (reload_reg_reaches_end_p): Check whether successor
5498         reload with type RELOAD_FOR_INPUT_ADDRESS kills reload register
5499         of current one with type RELOAD_FOR_INPADDR_ADDRESS.
5500         Same stands for reloads with type RELOAD_FOR_OUTPUT_ADDRESS and
5501         RELOAD_FOR_OUTADDR_ADDRESS.
5503 2012-05-04  Manuel López-Ibáñez  <manu@gcc.gnu.org>
5505         PR c++/24985
5506         * tree-diagnostic.c (maybe_unwind_expanded_macro_loc): Show caret
5507         for macro expansion.
5509 2012-05-03  Manuel López-Ibáñez  <manu@gcc.gnu.org>
5511         * flags.h (flag_permissive): Do not declare.
5512         * diagnostic.c (diagnostic_report_diagnostic): Handle fpermissive
5513         option specially.
5514         * toplev.c (flag_permissive): Do not define.
5515         * c-tree.h (system_header_p): Delete unused.
5517 2012-05-03  David S. Miller  <davem@davemloft.net>
5519         PR target/52684
5520         * config/sparc/sparc.c (emit_soft_tfmode_libcall): If we pass a
5521         MEM directly into a libcall, mark it's MEM_EXPR as addressable.
5522         (sparc_emit_float_lib_cmp): Likewise.
5524 2012-05-03  Michael Meissner  <meissner@linux.vnet.ibm.com>
5526         PR target/53199
5527         * config/rs6000/rs6000.md (bswapdi splitters): If
5528         -mavoid-indexed-addresses (or -mcpu=power6 which sets it by
5529         default) is used, generate an alternate sequence that does not
5530         depend on using indexed addressing.
5532 2012-05-03  Jason Merrill  <jason@redhat.com>
5534         * gengtype.c (write_types): Fix warning message.
5535         (write_local): Likewise.
5537 2012-05-02  Jason Merrill  <jason@redhat.com>
5539         * dwarf2out.c (struct external_ref, build_local_stub): New.
5540         (hash_external_ref, external_ref_eq, lookup_external_ref): New.
5541         (optimize_external_refs, optimize_external_refs_1): New.
5542         (change_AT_die_ref): New.
5543         (clone_as_declaration): Add DW_AT_signature when cloning a declaration.
5544         (build_abbrev_table): Take the external refs hashtable.
5545         (output_comp_unit): Get it from optimize_external_refs and pass it in.
5547 2012-05-03  Jan Hubicka  <jh@suse.cz>
5549         PR middle-end/53093
5550         * tree-emutls.c (new_emutls_decl): Fix handling of aliases.
5552 2012-05-03  Jan Hubicka  <jh@suse.cz>
5554         PR middle-end/53106
5555         * ipa.c (cgraph_remove_unreachable_nodes): Fix handling of clones.
5557 2012-05-03  Jason Merrill  <jason@redhat.com>
5559         * dwarf2out.c (die_struct): Add comdat_type_p flag.  Use it instead of
5560         use_debug_types to discriminate the die_id union.
5561         (print_die, assign_symbol_names, copy_decls_walk): Likewise.
5562         (build_abbrev_table, output_die): Likewise.
5563         (prune_unused_types_walk_attribs): Likewise.
5564         (generate_type_signature, copy_declaration_context): Set it.
5565         (remove_child_or_replace_with_skeleton): Set it.
5566         (dwarf2out_start_source_file, dwarf2out_end_source_file): Don't
5567         check use_debug_types.
5568         (dwarf2out_finish): Do break_out_includes after .debug_types.
5570 2012-05-03  Jason Merrill  <jason@redhat.com>
5572         * dwarf2out.c (modified_type_die): Use scope_die_for.
5573         (gen_type_die_with_usage, dwarf2out_finish): Likewise.
5574         (uses_local_type_r, uses_local_type): New.
5575         (scope_die_for): Keep a type that uses a local type in local scope.
5576         Use get_context_die for namespace and type scope.
5578 2012-05-03  Jason Merrill  <jason@redhat.com>
5580         * config/i386/i386.c (ix86_code_end): Set DECL_IGNORED_P on the
5581         pc thunk.
5582         * dwarf2out.c (output_aranges): Skip DECL_IGNORED_P functions.
5583         (dwarf2out_finish): Likewise.
5585 2012-05-03  Martin Jambor  <mjambor@suse.cz>
5587         * builtins.c (get_object_alignment_1): Return whether we can determine
5588         the alignment or conservatively assume byte alignment.  Return the
5589         alignment by reference.  Use get_pointer_alignment_1 for dereference
5590         alignment.
5591         (get_pointer_alignment_1): Return whether we can determine the
5592         alignment or conservatively assume byte alignment.  Return the
5593         alignment by reference.  Use get_ptr_info_alignment to get SSA name
5594         alignment.
5595         (get_object_alignment): Update call to get_object_alignment_1.
5596         (get_object_or_type_alignment): Likewise, fall back to type alignment
5597         only when it returned false.
5598         (get_pointer_alignment): Update call to get_pointer_alignment_1.
5599         * fold-const.c (get_pointer_modulus_and_residue): Update call to
5600         get_object_alignment_1.
5601         * ipa-prop.c (ipa_modify_call_arguments): Update call to
5602         get_pointer_alignment_1.
5603         * tree-sra.c (build_ref_for_offset): Likewise, fall back to the type
5604         of MEM_REF or TARGET_MEM_REF only when it returns false.
5605         * tree-ssa-ccp.c (get_value_from_alignment): Update call to
5606         get_object_alignment_1.
5607         (ccp_finalize): Use set_ptr_info_alignment.
5608         * tree.h (get_object_alignment_1): Update declaration.
5609         (get_pointer_alignment_1): Likewise.
5610         * gimple-pretty-print.c (dump_gimple_phi): Use get_ptr_info_alignment.
5611         (dump_gimple_stmt): Likewise.
5612         * tree-flow.h (ptr_info_def): Updated comments of fields align and
5613         misalign.
5614         (get_ptr_info_alignment): Declared.
5615         (mark_ptr_info_alignment_unknown): Likewise.
5616         (set_ptr_info_alignment): Likewise.
5617         (adjust_ptr_info_misalignment): Likewise.
5618         * tree-ssa-address.c (copy_ref_info): Use new access functions to get
5619         and set alignment of SSA names.
5620         * tree-ssa-loop-ivopts.c (rewrite_use_nonlinear_expr): Call
5621         mark_ptr_info_alignment_unknown.
5622         * tree-ssanames.c (get_ptr_info_alignment): New function.
5623         (mark_ptr_info_alignment_unknown): Likewise.
5624         (set_ptr_info_alignment): Likewise.
5625         (adjust_ptr_info_misalignment): Likewise.
5626         (get_ptr_info): Call mark_ptr_info_alignment_unknown.
5627         * tree-vect-data-refs.c (vect_create_addr_base_for_vector_ref):
5628         Likewise.
5629         (bump_vector_ptr): Likewise.
5630         * tree-vect-stmts.c (create_array_ref): Use set_ptr_info_alignment.
5631         (vectorizable_store): Likewise.
5632         (vectorizable_load): Likewise.
5634 2012-05-03  Michael Matz  <matz@suse.de>
5636         * basic-block.h (struct rtl_bb_info, struct gimple_bb_info): Move
5637         in front of basic_block_def.
5638         (struct basic_block_def): Make il.gimple the full struct, not a
5639         pointer.
5640         (__assert_gimple_bb_smaller_rtl_bb): Asserting typedef.
5642         * cfgexpand.c (expand_gimple_basic_block): Clear all il.gimple members.
5643         * gimple-iterator.c (gimple_stmt_iterator): Don't special case
5644         NULL il.gimple, which can't happen anymore.
5645         * gimple.h (bb_seq): il.gimple can't be NULL.
5646         (bb_seq_add): Ditto.
5647         (set_bb_seq): Adjust.
5648         (gsi_start_bb, gsi_last_bb): Tidy.
5649         * lto-streamer-in.c (make_new_block): Don't zero members that
5650         are zeroed already, don't allocate a gimple_bb_info.
5651         * tree-cfg.c (create_bb): Don't allocate a gimple_bb_info.
5652         (remove_bb): Clear all il.gimple members.
5653         (gimple_verify_flow_info): Adjust for flat il.gimple.
5654         * tree-flow-inline.h (phi_nodes, phi_nodes_ptr, set_phi_nodes): Adjust.
5656         * coretypes.h (const_gimple_seq): Remove typedef.
5657         * gimple.h (gimple_seq_first): Take gimple_seq.
5658         (gimple_seq_first_stmt): Ditto.
5659         (gimple_seq_last): Ditto.
5660         (gimple_seq_last_stmt): Ditto.
5661         (gimple_seq_empty_p): Ditto.
5663 2012-05-03  Richard Guenther  <rguenther@suse.de>
5665         * tree-ssa-pre.c (valid_in_sets): Remove checking of trapping
5666         operations.
5667         (prune_clobbered_mems): Do it here.  Do not uselessly sort expressions.
5668         (compute_avail): Do not add possibly trapping operations to
5669         EXP_GEN if they might not be executed in the block.
5671 2012-05-03  Uros Bizjak  <ubizjak@gmail.com>
5673         * config/alpha/elf.h (MAX_OFILE_ALIGNMENT): Remove.
5675 2012-05-03  Steven Bosscher  <steven@gcc.gnu.org>
5677         * tree-switch-conversion.c (gen_inbound_check): Free post-dominance
5678         information as early as possible.  Update dominance info instead of
5679         discarding it.
5681 2012-05-03  Richard Guenther  <rguenther@suse.de>
5683         * tree-ssa-pre.c (debug_bitmap_sets_for): New function.
5684         (union_contains_value): Remove.
5685         (vro_valid_in_sets): Likewise.
5686         (op_valid_in_sets): New function.
5687         (valid_in_sets): Use op_valid_in_sets.
5688         (insert_into_preds_of_block): Move dumping ...
5689         (do_regular_insertion): ... here.
5690         (do_partial_partial_insertion): ... and here.  Dump that
5691         we've found a partial partial redundancy.
5692         (insert): Dump the current insert iteration.
5694 2012-05-03  Jakub Jelinek  <jakub@redhat.com>
5696         PR plugins/53126
5697         * gcc-ar.c (main): If GCC_EXEC_PREFIX is set in env,
5698         append program name to it and pass that as first argument
5699         to make_relative_prefix.  Always pass standard_libexec_prefix
5700         as last argument to make_relative_prefix.  If
5701         make_relative_prefix returns NULL, fall back to
5702         standard_libexec_prefix.
5704         PR debug/53174
5705         * tree-predcom.c (remove_stmt): Call reset_debug_uses on stmts being
5706         removed.
5708         PR target/53187
5709         * config/arm/arm.c (arm_select_cc_mode): If x has MODE_CC class
5710         mode, return that mode.
5712         PR target/53194
5713         * config/i386/i386-c.c (ix86_target_macros_internal): Don't
5714         define __ATOMIC_HLE_* macros here.
5715         (ix86_target_macros): But here, using cpp_define_formatted.
5717 2012-05-03  Richard Guenther  <rguenther@suse.de>
5719         PR tree-optimization/53144
5720         * tree-ssa-sccvn.c (vn_reference_lookup_or_insert_constant_for_pieces):
5721         Rename to ...
5722         (vn_reference_lookup_or_insert_for_pieces): ... this.  Properly deal
5723         with SSA name values.
5724         (vn_reference_lookup_3): Adjust callers.
5726 2012-05-03  Ganesh Gopalasubramanian  <Ganesh.Gopalasubramanian@amd.com>
5728         * config/i386/driver-i386.c (host_detect_local_cpu): Reset
5729         has_fma4 for AMD processors with both fma3 and fma4 support.
5731 2012-05-03  Kirill Yukhin  <kirill.yukhin@intel.com>
5733         PR target/53201
5734         * config/i386/driver-i386.c (host_detect_local_cpu): Add space to
5735         "-mno-hle".
5737 2012-05-03  Michael Matz  <matz@suse.de>
5739         PR bootstrap/53197
5740         * tree-ssa-dse.c (dse_optimize_stmt): Take pointer to iterator.
5741         (dse_enter_block): Properly iterate the whole sequence even
5742         if the last statement was removed.
5744 2012-05-02  Steven Bosscher  <steven@gcc.gnu.org>
5746         * config/alpha/vms.h (SUBTARGET_OVERRIDE_OPTIONS): For pic code,
5747         unset flag_jump_tables.
5748         * stmt.c (expand_case): Remove special flag_pic case conditional
5749         on ASM_OUTPUT_ADDR_DIFF_ELT not being defined.
5751 2012-05-02  Ulrich Weigand  <ulrich.weigand@linaro.org>
5753         * common/config/s390/s390-common.c (s390_option_optimization_table):
5754         Enable -fsched-pressure using -fsched-pressure-algorithm=model by
5755         default when optimizing.
5757 2012-05-02  Martin Jambor  <mjambor@suse.cz>
5759         PR lto/52605
5760         * dwarf2out.c (dwarf2out_decl): Only lookup die representing context
5761         of a variable when the contect is a function.
5763 2012-05-02  Michael Matz  <matz@suse.de>
5765         * coretypes.h (gimple_seq, const_gimple_seq): Typedef as gimple.
5766         * gimple.h (struct gimple_seq_node_d, struct gimple_seq_d): Remove.
5767         (const_gimple_seq_node): Remove.
5768         (gimple_seq_node): Typedef as gimple.
5769         (struct gimple_statement_base): Add next and prev members,
5770         adjust all WORD markers in using structs.
5771         (union gimple_statement_d): Link via gsbase.next field for GC and PCH.
5772         (gimple_seq_first, gimple_seq_first_stmt, gimple_seq_last,
5773         gimple_seq_last_stmt): Adjust as gimple_seq, gimple_seq_node and
5774         gimple are the same.
5775         (gimple_seq_set_last, gimple_seq_set_first): Don't allocate
5776         gimple_seq, adjust.
5777         (gimple_init_singleton): New function.
5778         (gsi_start_1, gsi_last_1, gsi_end_p, gsi_one_before_end_p): Adjust.
5779         (gsi_next, gsi_prev): Adjust, handle prev cyclic list correctly.
5780         (gsi_stmt): Adjust.
5781         (gsi_stmt_ptr): Remove.
5782         (enum gimple_alloc_kind): Remove gimple_alloc_kind_seq member.
5784         * gimple-iterator.c (update_bb_for_stmts): Take last parameter
5785         again, adjust for above changes.
5786         (update_call_edge_frequencies): Adjust for above changes.
5787         (gsi_insert_seq_nodes_before): Rewrite for new data structure.
5788         (gsi_insert_seq_nodes_after): Ditto.
5789         (gsi_split_seq_after): Ditto.
5790         (gsi_set_stmt): Ditto.
5791         (gsi_split_seq_before): Ditto.
5792         (gsi_remove): Ditto.
5793         (gsi_insert_seq_before_without_update): Don't free sequence.
5794         (gsi_insert_seq_after_without_update): Ditto.
5795         (gsi_replace): Assert some more invariants.
5796         (gsi_insert_before_without_update, gsi_insert_after_without_update):
5797         Tidy.
5798         (gsi_for_stmt): Don't search for stmt.
5799         (gsi_insert_on_edge_immediate): Tidy.
5801         * gimple.c (gimple_alloc_k): Remove "sequences".
5802         (gimple_seq_cache): Remove.
5803         (gimple_alloc_stat): Make stmt a singleton sequence.
5804         (gimple_seq_alloc, gimple_seq_free): Remove.
5805         (gimple_assign_set_rhs_with_ops_1): Ensure new stmt is a singleton.
5806         (gimple_copy): Ditto.
5807         * gimplify.c (gimplify_cleanup_point_expr): Use gsi_set_stmt,
5808         create iterator from correct sequence.
5809         * tree-phinodes.c (make_phi_node): Make stmt a singleton.
5811 2012-05-02  Michael Matz  <matz@suse.de>
5813         * gimple.h (gimple_stmt_iterator <seq>): Make it be pointer to
5814         gimple_seq.
5815         (gimple_seq_set_last, gimple_seq_set_first): Take pointer to
5816         sequence, lazily allocate it.
5817         (bb_seq_addr): New function.
5818         (gsi_start_1): Rename from gsi_start, but take pointer to sequence.
5819         (gsi_start): Macro to wrap gsi_start_1 taking pointer of argument.
5820         (gsi_none): New function.
5821         (gsi_start_bb): Adjust.
5822         (gsi_last_1): Rename from gsi_last, but take pointer to sequence.
5823         (gsi_last): Macro to wrap gsi_last_1 taking pointer of argument.
5824         (gsi_last_bb): Adjust.
5825         (gsi_seq): Adjust.
5826         * tree-flow-inline.h (phi_nodes_ptr): New function.
5828         * gimple-iterator.c (gsi_insert_seq_nodes_before): Adjust to
5829         datastructure and interface change.
5830         (gsi_insert_seq_before_without_update): Ditto.
5831         (gsi_insert_seq_nodes_after): Ditto.
5832         (gsi_insert_seq_after_without_update): Ditto.
5833         (gsi_split_seq_after): Ditto, don't use gimple_seq_alloc.
5834         (gsi_split_seq_before): Ditto.
5835         (gsi_start_phis): Adjust.
5836         * tree-vect-loop.c (vect_determine_vectorization_factor): Use gsi_none.
5837         (vect_transform_loop): Ditto.
5838         * gimple.c (gimple_seq_add_stmt, gimple_seq_add_seq,
5839         gimple_seq_copy): Don't use gimple_seq_alloc.
5840         * gimplify.c (gimple_seq_add_stmt_without_update): Ditto.
5841         (gimplify_seq_add_seq): Ditto.
5842         * lto-streamer-in.c (make_new_block): Ditto.
5843         * tree-cfg.c (create_bb): Ditto.
5844         * tree-sra.c (initialize_parameter_reductions): Ditto.
5846 2012-05-02  Michael Matz  <matz@suse.de>
5848         * gimple.h (gimple_seq_first, gimple_seq_first_stmt, gimple_seq_last,
5849         gimple_seq_last_stmt, gimple_seq_set_last, gimple_seq_set_first,
5850         gimple_seq_empty_p, gimple_seq_alloc_with_stmt, bb_seq,
5851         set_bb_seq): Move down to after gimple_statement_d definition.
5853 2012-05-02  Michael Matz  <matz@suse.de>
5855         * gimple-fold.c (gimplify_and_update_call_from_tree): Use
5856         gsi_replace_with_seq, instead of inserting itself.
5857         * gimple-iterator.c (gsi_replace_with_seq): New function.
5858         * tree-ssa-forwprop.c (forward_propagate_comparison): Take
5859         iterator instead of statement, advance it.
5860         (ssa_forward_propagate_and_combine): Adjust call to above.
5862 2012-05-02  Michael Matz  <matz@suse.de>
5864         * tree-phinodes.c (add_phi_node_to_bb): Tidy, don't use
5865         gimple_seq_alloc.
5866         * omp-low.c (finalize_task_copyfn): Don't use gimple_seq_alloc.
5867         * tree-nested.c (walk_gimple_omp_for): Ditto.
5868         * trans-mem.c (lower_transaction): Ditto.
5869         * tree-eh.c (do_return_redirection): Ditto.
5870         (do_goto_redirection): Ditto.
5871         (lower_try_finally_switch): Ditto.
5872         * gimplify.c (gimplify_stmt): Ditto.
5873         (gimplify_scan_omp_clauses): Ditto.
5874         (gimplify_omp_for): Ditto.
5875         (gimplify_function_tree): Ditto.
5876         * gimple-fold.c (gimplify_and_update_call_from_tree): Ditto.
5877         * tree-mudflap.c (mf_decl_cache_locals): Ditto.
5878         (mf_build_check_statement_for): Ditto.
5879         (mx_register_decls): Ditto.
5880         * graphite-sese-to-poly.c (remove_invariant_phi): Ditto,
5881         and don't use itertors to append.
5882         (insert_stmts): Ditto.
5883         (insert_out_of_ssa_copy): Ditto.
5884         (insert_out_of_ssa_copy_on_edge): Ditto.
5886 2012-05-02  Michael Matz  <matz@suse.de>
5888         * gimple.h (gimple_bind_body_ptr): New function.
5889         (gimple_bind_body): Use it.
5890         (gimple_catch_handler): Use gimple_catch_handler_ptr.
5891         (gimple_eh_filter_failure_ptr): New function.
5892         (gimple_eh_filter_failure): Use it.
5893         (gimple_eh_else_n_body_ptr): New function.
5894         (gimple_eh_else_n_body): Use it.
5895         (gimple_eh_else_e_body_ptr): New function.
5896         (gimple_eh_else_e_body): Use it.
5897         (gimple_try_eval_ptr): New function.
5898         (gimple_try_eval): Use it.
5899         (gimple_try_cleanup_ptr): New function.
5900         (gimple_try_cleanup): Use it.
5901         (gimple_wce_cleanup_ptr): New function.
5902         (gimple_wce_cleanup): Use it.
5903         (gimple_omp_body_ptr): New function.
5904         (gimple_omp_body): Use it.
5905         (gimple_omp_for_pre_body_ptr): New function.
5906         (gimple_omp_for_pre_body): Use it.
5907         (gimple_transaction_body_ptr): New function.
5908         (gimple_transaction_body): Use it.
5909         (gsi_split_seq_before): Adjust to return nothing and take pointer
5910         to sequence.
5911         (gsi_set_stmt): Declare.
5912         (gsi_replace_with_seq): Declare.
5913         (walk_gimple_seq_mod): Declare.
5914         * function.h (struct function <gimple_body>): Use typedef gimple_seq.
5916         * gimple-iterator.c (gsi_set_stmt): New function.
5917         (gsi_split_seq_before): Return new sequence via pointer argument.
5918         (gsi_replace): Use gsi_set_stmt.
5920         * tree-ssa-loop-im.c (move_computations_stmt): First remove
5921         then insert stmt.
5922         * tree-complex.c (update_complex_components_on_edge): Don't copy gsi.
5923         * tree-phinodes.c (resize_phi_node): Don't resize stmt in-place,
5924         return new stmt.
5925         (reserve_phi_args_for_new_edge): Change call to above,
5926         use gsi_set_stmt.
5928         * omp-low.c (lower_omp): Change prototype to take pointer to sequence.
5929         (lower_rec_input_clauses): Use gimple_seq_add_seq instead of
5930         iterators.  Adjust call to lower_omp.
5931         (lower_lastprivate_clauses): Adjust call to lower_omp.
5932         (lower_reduction_clauses): Ditto.
5933         (expand_omp_taskreg): Nullify non-cfg body of child_fn.
5934         (lower_omp_sections): Don't explicitely count sequence length,
5935         nullify lowered bodies earlier, ensure stmts are part of only
5936         one sequence, adjust call to lower_omp.
5937         (lower_omp_single): Ensure stmts are part of only one sequence,
5938         adjust call to lower_omp.
5939         (lower_omp_master): Ditto.
5940         (lower_omp_ordered): Ditto.
5941         (lower_omp_critical): Ditto.
5942         (lower_omp_for): Ditto.
5943         (lower_omp_taskreg): Ditto, tidy.
5944         (lower_omp_1): Adjust calls to lower_omp.
5945         (execute_lower_omp): Ditto.
5946         (lower_omp): Adjust to take pointer to sequence.
5947         (diagnose_sb_2): Use walk_gimple_seq_mod.
5948         (diagnose_omp_structured_block_errors): Ditto and set possibly
5949         changed function body.
5950         * gimple-low.c (lower_function_body): Set function body after
5951         it stabilizes.
5952         (lower_sequence): Adjust to take pointer to sequence.
5953         (lower_omp_directive): Ensure stmt isn't put twice into the
5954         sequence, adjust call to lower_sequence.
5955         (lower_stmt): Adjust calls to lower_sequence.
5956         (lower_gimple_bind): Ditto.
5957         (gimple_try_catch_may_fallthru): Call gsi_start with lvalue.
5958         * tree-nested.c (walk_body): Take pointer to sequence, use
5959         walk_gimple_seq_mod.
5960         (walk_function): Adjust call to walk_body, set possibly changed body.
5961         (walk_gimple_omp_for): Adjust calls to walk_body.
5962         (convert_nonlocal_omp_clauses): Ditto.
5963         (convert_nonlocal_reference_stmt): Ditto.
5964         (convert_local_omp_clauses): Ditto.
5965         (convert_local_reference_stmt): Ditto.
5966         (convert_tramp_reference_stmt): Ditto.
5967         (convert_gimple_call): Ditto.
5968         (convert_nl_goto_reference): Use local iterator copy.
5969         * gimple.c (walk_gimple_seq_mod): Renamed from walk_gimple_seq,
5970         but taking pointer to sequence, ensure gsi_start is called with
5971         callers lvalue.
5972         (walk_gimple_seq): New wrapper around walk_gimple_seq_mod,
5973         asserting that the sequence head didn't change.
5974         (walk_gimple_stmt): Replace all calls to walk_gimple_seq with
5975         walk_gimple_seq_mod.
5976         * trans-mem.c (lower_transaction): Use walk_gimple_seq_mod.
5977         (execute_lower_tm): Ditto, and set possibly changed body.
5978         * tree-eh.c (lower_eh_constructs_1): Take pointer to sequence,
5979         call gsi_start with that lvalue.
5980         (replace_goto_queue_stmt_list): Ditto.
5981         (replace_goto_queue_1): Adjust calls to replace_goto_queue_stmt_list.
5982         (replace_goto_queue): Ditto.
5983         (lower_try_finally_nofallthru): Adjust calls to lower_eh_constructs_1.
5984         (lower_try_finally_onedest): Ditto.
5985         (lower_try_finally_copy): Ditto.
5986         (lower_try_finally_switch): Ditto.
5987         (lower_try_finally): Ditto.
5988         (lower_eh_filter): Ditto.
5989         (lower_eh_must_not_throw): Ditto.
5990         (lower_cleanup): Ditto.
5991         (lower_eh_constructs_2): Ditto.
5992         (lower_catch): Ditto, and ensure gsi_start is called with lvalue.
5993         (lower_eh_constructs): Adjust calls to lower_eh_constructs_1, and
5994         set possibly changed body.
5995         (optimize_double_finally): Call gsi_start with lvalue.
5997         * tree-cfg.c (make_blocks): Adjust call to gsi_split_seq_before.
5998         (gimple_split_block): Ditto.
5999         (gimple_merge_blocks): Use gsi_start_phis.
6000         (move_stmt_r): Use walk_gimple_seq_mod.
6001         * tree-ssa-dse.c (dse_enter_block): Use gsi_last_bb.
6002         * cgraphbuild.c (build_cgraph_edges): Use gsi_start_phis.
6003         (rebuild_cgraph_edges): Ditto.
6004         (cgraph_rebuild_references): Ditto.
6005         * ipa-prop.c (ipa_analyze_params_uses): Ditto.
6006         * tree-inline.c (copy_phis_for_bb): Ditto.
6007         * tree-ssa-dce.c: Ditto.
6009         * cgraphunit.c (cgraph_analyze_function): Use gimple_has_body_p.
6011 2012-05-02  Kirill Yukhin  <kirill.yukhin@intel.com>
6012             Andi Kleen <ak@linux.intel.com>
6014         * coretypes.h (MEMMODEL_MASK): New.
6015         * builtins.c (get_memmodel): Add val. Call target.memmodel_check
6016         and return new variable.
6017         (expand_builtin_atomic_exchange):  Mask memmodel values.
6018         (expand_builtin_atomic_compare_exchange): Ditto.
6019         (expand_builtin_atomic_load): Ditto.
6020         (expand_builtin_atomic_store): Ditto.
6021         (expand_builtin_atomic_clear): Ditto.
6022         * doc/extend.texi: Mention port-dependent memory model flags.
6023         * config/i386/cpuid.h (bit_HLE): New.
6024         * config/i386/driver-i386.c (host_detect_local_cpu): Detect
6025         HLE support.
6026         * config/i386/i386-protos.h (ix86_generate_hle_prefix): New.
6027         * config/i386/i386-c.c (ix86_target_macros_internal): Set HLE defines.
6028         (ix86_target_string)<-mhle>: New.
6029         (ix86_valid_target_attribute_inner_p) <OPT_mhle>: Ditto.
6030         * config/i386/i386.c (ix86_target_string) <OPTION_MASK_ISA_HLE>: New.
6031         (ix86_valid_target_attribute_inner_p) <OPT_mhle>: Ditto.
6032         (ix86_option_override_internal) <PTA_HLE>: New switch, set it
6033         enabled for generic, generic64 and core-avx2.
6034         (ix86_print_operand): Generate HLE lock prefixes.
6035         (ix86_memmodel_check): New.
6036         (TARGET_MEMMODEL_CHECK): Ditto.
6037         * config/i386/i386.h (OPTION_ISA_HLE): Ditto.
6038         (IX86_HLE_ACQUIRE): Ditto.
6039         (IX86_HLE_RELEASE): Ditto.
6040         * config/i386/i386.h (ix86_generate_hle_prefix): Ditto.
6041         * config/i386/i386.opt (mhle): Ditto.
6042         * config/i386/sync.md(atomic_compare_and_swap<mode>): Pass
6043         success model to instruction emitter.
6044         (atomic_fetch_add<mode>): Ditto.
6045         (atomic_exchange<mode>): Ditto.
6046         (atomic_add<mode>): Ditto.
6047         (atomic_sub<mode>): Ditto.
6048         (atomic_<code><mode>): Ditto.
6049         (*atomic_compare_and_swap_doubledi_pic): Ditto.
6050         (atomic_compare_and_swap_single<mode>): Define and use argument
6051         for success model.
6052         (atomic_compare_and_swap_double<mode>): Ditto.
6053         * configure.ac: Check if assembler support HLE prefixes.
6054         * configure: Regenerate.
6055         * config.in: Ditto.
6057 2012-05-02  Steven Bosscher  <steven@gcc.gnu.org>
6059         PR middle-end/53153
6060         * gimplify.c (preprocess_case_label_vec_for_gimple): New function,
6061         split out from ...
6062         (gimplify_switch_expr): ... here.
6063         * gimple.h (preprocess_case_label_vec_for_gimple): Add prototype.
6064         * tree-ssa-forwprop.c (simplify_gimple_switch_label_vec): New function
6065         to clean up case labels with values outside the index type range.
6066         (simplify_gimple_switch): Call it if something changed.
6067         Remove strange and unnecessary assert.
6069 2012-05-02  Richard Guenther  <rguenther@suse.de>
6071         * fold-const.c (div_if_zero_remainder): sizetypes no longer
6072         sign-extend.
6073         (int_const_binop_1): New worker for int_const_binop with
6074         overflowable parameter.  Pass it through to force_fit_type_double.
6075         (int_const_binop): Wrap around int_const_binop_1 with overflowable
6076         equal to one.
6077         (size_binop_loc): Call int_const_binop_1 with overflowable equal
6078         to minus one, forcing overflow detection for even unsigned types.
6079         (extract_muldiv_1): Remove bogus TYPE_IS_SIZETYPE special-casing.
6080         (fold_binary_loc): Call try_move_mult_to_index with signed offset.
6081         * stor-layout.c (initialize_sizetypes): sizetypes no longer
6082         sign-extend.
6083         (layout_type): For zero-sized arrays ignore overflow on the
6084         size calculations.
6085         * tree-ssa-ccp.c (bit_value_unop_1): Likewise.
6086         (bit_value_binop_1): Likewise.
6087         * tree.c (double_int_to_tree): Likewise.
6088         (double_int_fits_to_tree_p): Likewise.
6089         (force_fit_type_double): Likewise.
6090         (host_integerp): Likewise.
6091         (int_fits_type_p): Likewise.
6092         * varasm.c (output_constructor_regular_field): Sign-extend the
6093         field-offset to cater for negative offsets produced by the Ada
6094         frontend.
6095         * omp-low.c (extract_omp_for_data): Convert the loop step to
6096         signed for pointer adjustments.
6098 2012-05-02  Richard Guenther  <rguenther@suse.de>
6100         * tree.c (valid_constant_size_p): New function.
6101         * tree.h (valid_constant_size_p): Declare.
6102         * cfgexpand.c (expand_one_var): Adjust check for too large
6103         variables by using valid_constant_size_p.
6104         * varasm.c (assemble_variable): Likewise.
6106         * c-decl.c (grokdeclarator): Properly check for sizes that
6107         cover more than half of the address-space.
6109 2012-05-02  Jakub Jelinek  <jakub@redhat.com>
6111         PR tree-optimization/53163
6112         * tree-ssa-phiopt.c (cond_if_else_store_replacement): Don't ignore
6113         return value from compute_all_dependences.
6115         PR rtl-optimization/53160
6116         * ree.c (combine_reaching_defs): Handle the case where cand->insn
6117         has been modified by ree pass already.
6119 2012-05-01  Ian Lance Taylor  <iant@google.com>
6121         PR c/37303
6122         * c-decl.c (build_compound_literal): Make the decl readonly if it
6123         an array of a readonly type.
6124         * gimplify.c (gimplify_compound_literal_expr): Add fallback
6125         parameter.  Change all callers.  If the decl is not addressable
6126         and is not an l-value, make it readonly.
6128 2012-05-01  Bernd Schmidt  <bernds@codesourcery.com>
6130         * ira.c (allocated_reg_info_size): New static variable.
6131         (expand_reg_info): Manage it. Call
6132         setup_preferred_alternate_classes_for_new_pseudos.
6133         (ira): Don't do it here.  Remove local allocated_reg_info_size,
6134         set the global before calling find_moveable_pseudos.
6135         (find_moveable_pseudos): Call expand_reg_info rather than
6136         resize_reg_info.
6138 2012-05-01  Richard Henderson  <rth@redhat.com>
6140         * common.opt (fsync-libcalls): New.
6141         * doc/invoke.texi: Document it.
6142         * optabs.c (init_sync_libfuncs): Honor it.
6144 2012-05-01  Kenneth Zadeck  <zadeck@naturalbridge.com>
6145             Richard Sandiford  <r.sandiford@uk.ibm.com>
6147         PR rtl-optimization/52543
6148         * Makefile.in (lower-subreg.o, target-globals.o): Depend on
6149         lower-subreg.h.
6150         * lower-subreg.h: New file.
6151         * target-globals.h (this_target_lower_subreg): Declare.
6152         (target_globals): Add lower_subreg;
6153         (restore_target_globals): Restore this_target_lower_subreg.
6154         * target-globals.c: Include it.
6155         (default_target_globals): Add default_target_lower_subreg.
6156         (save_target_globals): Initialize target_lower_subreg.
6157         * rtl.h (init_lower_subreg): Added declaration.
6158         * toplev.c (backend_init_target): Call initializer for lower-subreg
6159         pass.
6160         * lower-subreg.c (LOG_COSTS, FORCE_LOWERING): New macros.
6161         (default_target_lower_subreg): New variable.
6162         (this_target_lower_subreg): Likewise.
6163         (twice_word_mode, choices): New macros.
6164         (shift_cost, compute_splitting_shift, compute_costs)
6165         (init_lower_subreg): New functions.
6166         (resolve_simple_move): Add speed_p argument.  Check choices.
6167         (find_pseudo_copy): Don't check the mode size here.
6168         (resolve_simple_move): Assert the mode size.
6169         (find_decomposable_shift_zext): Add speed_p argument and return
6170         a bool.  Check choices.
6171         (resolve_shift_zext): Add comment.
6172         (dump_shift_choices, dump_choices): New functions.
6173         (decompose_multiword_subregs): Dump list of profitable
6174         transformations.  Add code to skip non profitable transformations.
6175         Update calls to simple_move and find_decomposable_shift_zext.
6177 2012-05-01  Ian Bolton  <ian.bolton@arm.com>
6178             Sameera Deshpande  <sameera.deshpande@arm.com>
6179             Greta Yorsh  <greta.yorsh@arm.com>
6181         * config/arm/arm-protos.h (thumb_unexpanded_epilogue): Rename to...
6182         (thumb1_unexpanded_epilogue): ...this.
6183         * config/arm/arm.c (thumb_unexpanded_epilogue): Rename to...
6184         (thumb1_unexpanded_epilogue): ...this.
6185         * config/arm/arm.md (thumb_unexpanded_epilogue): Rename to...
6186         (thumb1_unexpanded_epilogue): ...this.
6188 2012-05-01  Richard Earnshaw  <rearnsha@arm.com>
6190         * arm/linux-eabi.h (GLIBC_DYNAMIC_LINKER_DEFAULT): Avoid ifdef
6191         comparing enumeration values.  Update comments.
6193 2012-05-01  Alan Modra  <amodra@gmail.com>
6195         PR target/53038
6196         * config/rs6000/rs6000.c (load_lr_save, restore_saved_lr,
6197         load_cr_save, add_crlr_cfa_restore): New functions.
6198         (rs6000_restore_saved_cr): Rename to..
6199         (restore_saved_cr): ..this.  Add cfa_restore notes for cr.
6200         (rs6000_emit_epilogue): Use new functions.  Adjust condition
6201         for emitting lr and cr cfa_restore.  Emit cfa_restores for fp
6202         regs when using out-of-line restore only when shrink wrapping.
6204 2012-04-30  Uros Bizjak  <ubizjak@gmail.com>
6206         PR middle-end/53136
6207         * ipa-prop.c (ipa_print_node_jump_functions): Wrap multiple
6208         calls to cgraph_node_name in xstrdup.
6209         (ipa_make_edge_direct_to_target): Ditto.
6210         * cgraph.c (dump_cgraph_node): Ditto.
6211         * tree-sra.c (convert_callers_for_node): Ditto.
6212         * lto-symtab.c (lto_cgraph_replace_node): Ditto.
6213         * ipa-cp.c (perhaps_add_new_callers): Ditto.
6214         * cgraphunit.c (cgraph_redirect_edge_call_stmt_to_callee): Ditto.
6215         (cgraph_materialize_all_clones): Ditto.
6216         * ipa-inline.c (report_inline_failed_reason): Ditto.
6217         (want_early_inline_function_p): Ditto.
6218         (edge_badness): Ditto.
6219         (update_edge_key): Ditto.
6220         (flatten_function): Ditto.
6221         (ipa_inline): Ditto.
6222         (inline_always_inline_functions): Ditto.
6223         (early_inline_small_functions): Ditto.
6225 2012-04-30  Uros Bizjak  <ubizjak@gmail.com>
6227         PR target/53141
6228         * config/i386/i386.md (*umul<mode><dwi>3_1): Switch places of
6229         constraints 0 and 1.
6231 012-04-30  Jan Hubicka  <jh@suse.cz>
6233         * cgraph.c (ld_plugin_symbol_resolution_names): Move to symtab.c
6234         (cgraph_asm_nodes, cgraph_asm_last_node): Move to cgraphunit.c
6235         (cgraph_add_to_same_comdat_group): Remove.
6236         (cgraph_add_asm_node): Move to cgraphunit.c.
6237         (cgraph_make_decl_local): Move to symtab.c
6238         (cgraph_make_node_local_1): Update.
6239         (cgraph_can_remove_if_no_direct_calls_and): Update.
6240         (used_from_object_file_p): Update.
6241         (resolution_used_from_other_file_p): Move to symtab.c
6242         (cgraph_used_from_object_file_p): move to symtab.c
6243         (verify_cgraph_node): Verify same comdat groups.
6244         * cgraph.h (cgraph_asm_node): Rename to ...
6245         (asm_node): ... this one.
6246         (cgraph_asm_nodes): Rename to ...
6247         (asm_nodes): ... this one.
6248         (symtab_add_to_same_comdat_group): New function.
6249         (symtab_dissolve_same_comdat_group_list): New function.
6250         (symtab_used_from_object_file_p): Declare.
6251         (symtab_make_decl_local): Declare.
6252         (cgraph_add_to_same_comdat_group): Remove.
6253         (cgraph_add_asm_node): Remove.
6254         (cgraph_used_from_object_file_p, varpool_used_from_object_file_p):
6255         Remove.
6256         (cgraph_finalize_compilation_unit): Rename to ...
6257         (finalize_compilation_unit): ... this one.
6258         (cgraph_optimize): Rename to ....
6259         (compile): ... this one.
6260         (add_asm_node): Declare.
6261         (fixup_same_cpp_alias_visibility): Declare.
6262         (cgraph_make_decl_local): Remove.
6263         (varpool_assemble_pending_decls): Rename to ...
6264         (varpool_output_variables): ... this one.
6265         (varpool_remove_unreferenced_decls): Remove.
6266         * ipa-inline-transform.c (clone_inlined_nodes): Dissolve comdat groups.
6267         (preserve_function_body_p): Make static.
6268         * toplev.c (compile_file): Update comments; update.
6269         * cgraphunit.c: Update comments.
6270         (cgraph_expand_all_functions): Rename to ...
6271         (expand_all_functions): ... this one; update.
6272         (cgraph_mark_functions_to_output): Rename to ...
6273         (mark_functions_to_output): ... this one; cleanup.
6274         (cgraph_output_pending_asms): Remove prototype.
6275         (asm_nodes, asm_last_node): New static vars.
6276         (cgraph_process_new_functions): Update.
6277         (cgraph_reset_node): Cleanup; add comment.
6278         (cgraph_add_new_function): Update.
6279         (cgraph_output_pending_asms): Rename to ...
6280         (output_asm_statements): ... this one.
6281         (add_asm_node): New function.
6282         (fixup_same_cpp_alias_visibility): New function based on code
6283         in cgraph_analyze_function.
6284         (cgraph_analyze_function): Use it.
6285         (cgraph_order_sort): Update.
6286         (cgraph_output_in_order): Update.
6287         (cgraph_function_versioning): Update.
6288         (cgraph_optimize): Rename to ...
6289         (compile): ... this one; initialize streamer hooks here.
6290         (cgraph_finalize_compilation_unit): Rename to ...
6291         (finalize_compilation_unit): ... this one; do not initialize streamer
6292         hook here.
6293         * lto-streamer-out.c (lto_output_toplevel_asms): Update.
6294         * dwarf2out.c: Update ocmment.
6295         * optimize.c (maybe_clone_body): Use symtab_add_to_same_comdat_group.
6296         * method.c (use_thunk): Likewise.
6297         * semantics.c (maybe_add_lambda_conv_op): Likewise.
6298         * decl2.c (maybe_emit_vtables): Likewise.
6299         (cp_write_global_declarations): Use finalize_compilation_unit.
6300         * parser.c (cp_parser_asm_definition): Use add_asm_node.
6301         * lto-streamer-in.c (lto_input_toplevel_asms): Use add_asm_node
6302         * c-decl.c (c_write_global_declarations): Use
6303         finalize_compilation_unit.
6304         * langhooks.c (write_global_declarations): Update.
6305         * ipa.c (cgraph_externally_visible_p): Update.
6306         (dissolve_same_comdat_group_list): Remove.
6307         (function_and_variable_visibility): Update.
6308         * symtab.c: Inlcude lto-streamer.h and rtl.h
6309         (ld_plugin_symbol_resolution_names): New.
6310         (symtab_add_to_same_comdat_group): New.
6311         (symtab_dissolve_same_comdat_group_list): New.
6312         (resolution_used_from_other_file_p): Move here from cgraph.c
6313         (symtab_used_from_object_file_p): New.
6314         (symtab_make_decl_local): New.
6315         * passes.c (register_pass): Update comments.
6316         * c-parser.c (c_parser_asm_definition): Update.
6317         * varpool.c (varpool_analyze_node): Use
6318         fixup_same_cpp_alias_visibility.
6319         (varpool_remove_unreferenced_decls): Make static.
6320         (varpool_assemble_pending_decls): Rename to ...
6321         (varpool_output_variables): ... this one; call
6322         varpool_remove_unreferenced_decls.
6323         (varpool_used_from_object_file_p): Remove.
6325 2012-04-30  Marc Glisse  <marc.glisse@inria.fr>
6327         PR c++/51033
6328         * c-typeck.c (build_array_ref): Call
6329         convert_vector_to_pointer_for_subscript.
6330         * doc/extend.texi (Vector Extensions): Subscripting not just for C.
6332 2012-04-30  Uros Bizjak  <ubizjak@gmail.com>
6334         * config/i386/i386.md (and<mode>3): Change runtime operand mode checks
6335         to compile-time "mode == <MODE>mode" checks.
6336         (and splitter): Ditto.
6338 2012-04-30  Richard Henderson  <rth@redhat.com>
6340         * config/arm/arm.md (UNSPEC_LL): New.
6341         * config/arm/sync.md (atomic_loaddi, atomic_loaddi_1): New.
6342         (arm_load_exclusivedi): Use %H0.
6344 2012-04-30  Jason Merrill  <jason@redhat.com>
6346         * dwarf2out.c (comdat_symbol_id): Add const.
6347         (union die_symbol_or_type_node): Add const to die_symbol.
6348         (output_die_symbol, output_die, output_comp_unit): Adjust.
6350 2012-04-30  Andrew Stubbs  <ams@codesourcery.com>
6352         * config/arm/arm.md (negdi2): Use gen_negdi2_neon.
6353         * config/arm/neon.md (negdi2_neon): New insn.
6354         Also add splitters for core and NEON registers.
6356 2012-04-30  Andrew Stubbs  <ams@codesourcery.com>
6358         * config/arm/arm.c (neon_valid_immediate): Allow const_int.
6359         (arm_print_operand): Add 'x' format.
6360         * config/arm/constraints.md (Dn): Allow const_int.
6361         * config/arm/neon.md (neon_mov<mode>): Use VDX to allow DImode.
6362         Use 'x' format to print constants.
6363         * config/arm/predicates.md (imm_for_neon_mov_operand): Allow const_int.
6364         * config/arm/vfp.md (movdi_vfp): Disable for const_int when neon
6365         is enabled.
6366         (movdi_vfp_cortexa8): Likewise.
6368 2012-04-30  Ian Bolton  <ian.bolton@arm.com>
6369             Sameera Deshpande  <sameera.deshpande@arm.com>
6370             Greta Yorsh  <greta.yorsh@arm.com>
6372         * config/arm/arm-protos.h (ldm_stm_operation_p): New declaration.
6373         * config/arm/arm.c (ldm_stm_operation_p): New function.
6374         * config/arm/predicates.md (load_multiple_operation): Update predicate.
6375         (store_multiple_operation): Likewise.
6377         * config/arm/arm-protos.h (ldm_stm_operation_p): New parameters.
6378         * config/arm/arm.c (ldm_stm_operation_p): New parameters.
6379         * config/arm/predicates.md (load_multiple_operation): Add arguments.
6380         (store_multiple_operation): Likewise.
6382 2012-04-30  Uros Bizjak  <ubizjak@gmail.com>
6384         * config/i386/i386.md (and<mode>3): Expand masking operations with
6385         0xff, 0xffff or 0xffffffff immediates to corresponding zero_extend RTX.
6386         (and splitter): Split to DImode zero_extend RTX for DImode operand[0].
6388 2012-04-30  Dodji Seketeli  <dodji@redhat.com>
6390         Add -Wvarargs option
6391         * builtins.c (fold_builtin_next_arg):  Use OPT_Wvarargs as an
6392         argument for the various warning_at calls.
6393         * docs/invoke.texi: Update the documentation.
6395 2012-04-30  Dodji Seketeli  <dodji@redhat.com>
6397         Switch -ftrack-macro-expansion=2 on by default.
6398         * docs/cppopts.texi: Adjust for enabling -ftrack-macro-expansion=2
6399         by default.
6401         Fix va_start related location
6402         * builtins.c (fold_builtin_next_arg): Unwinds to the first
6403         location in real source code.
6405         Make conversion warnings work on NULL with -ftrack-macro-expansion
6406         * input.h (expansion_point_location_if_in_system_header): Declare
6407         new function.
6408         * input.c (expansion_point_location_if_in_system_header): Define it.
6410         Fix -Wuninitialized for -ftrack-macro-expansion
6411         * tree-ssa.c (warn_uninit): Use the spelling location of the variable
6412         declaration.  Use linemap_location_before_p for source locations.
6414         Strip "<built-in>" loc from displayed expansion context
6415         * input.c (expand_location_1): When expanding to spelling location
6416         in a context of a macro expansion, skip reserved system header
6417         locations.  Update comments.  * tree-diagnostic.c
6418         (maybe_unwind_expanded_macro_loc): Likewise.
6420         Make expand_location resolve to locus in main source file
6421         * input.c (expand_location_1): New.  Takes a parameter to choose
6422         whether to resolve the location to spelling or expansion point.
6423         Was factorized from ...
6424         (expand_location): ... here.
6425         (expand_location_to_spelling_point): New.  Implemented in terms of
6426         expand_location_1.
6427         * diagnostic.c (diagnostic_build_prefix): Use the new
6428         expand_location_to_spelling_point instead of expand_location.
6430         Fix PCH crash on GTYed pointer-to-scalar field of a struct
6431         * gengtype.c (write_types_process_field): Force second argument of
6432         the call to the PCH object hierarchy walker to be 'x'.
6434 2012-04-30  Eric Botcazou  <ebotcazou@adacore.com>
6436         * config/i386/i386.c (ix86_handle_struct_attribute): Use the proper
6437         predicate to discriminate types.
6439 2012-04-30  Manuel López-Ibáñez  <manu@gcc.gnu.org>
6441         * doc/invoke.texi (Wmissing-format-attribute): Document as an
6442         alias of Wsuggest-attribute=format.
6443         * c-typeck.c (convert_for_assignment): Replace
6444         Wmissing-format-attribute with Wsuggest-attribute=format.
6445         (digest_init): Likewise.
6447 2012-04-29  Manuel López-Ibáñez  <manu@gcc.gnu.org>
6449         * opts.c (finish_options): Do not handle -Wmissing-noreturn here.
6450         * common.opt (Wmissing-noreturn): Alias of
6451         -Wsuggest-attribute=noreturn.
6453 2012-04-29  Hans-Peter Nilsson  <hp@axis.com>
6455         PR target/53156
6456         * config/cris/cris.md (andqu): New peephole2.
6457         (andu): Tweak head comment.
6459 2012-04-28  Joern Rennecke  <joern.rennecke@embecosm.com>
6460             Steven Bosscher  <steven@gcc.gnu.org>
6461             Maxim Kuvyrkov  <maxim@codesourcery.com>
6463         PR tree-optimization/38785
6464         * common.opt (ftree-partial-pre): New option.
6465         * doc/invoke.texi: Document it.
6466         * opts.c (default_options_table): Initialize flag_tree_partial_pre.
6467         * tree-ssa-pre.c (do_partial_partial_insertion): Insert only if it will
6468         benefit speed path.
6469         (execute_pre): Use flag_tree_partial_pre.
6471 2012-04-27  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
6473         PR target/52999
6474         * config/pa/pa.c (pa_legitimate_constant_p): Don't put function labels
6475         in constant pool.
6477 2012-04-27  Ollie Wild  <aaw@google.com>
6479         * doc/invoke.texi (Wliteral-suffix): Document new option.
6481 2012-04-27  Tom Tromey  <tromey@redhat.com>
6483         * dwarf2out.c (dwarf_stack_op_name): Use get_DW_OP_name.
6484         (dwarf_tag_name): Use get_DW_TAG_name.
6485         (dwarf_attr_name): Use get_DW_AT_name.
6486         (dwarf_form_name): Use get_DW_FORM_name.
6487         * dwarf2cfi.c (dwarf_cfi_name): Use get_DW_CFA_name.
6489 2012-04-27  Paolo Bonzini  <bonzini@gnu.org>
6491         * tree-ssa-phiopt.c (conditional_replacement): Replace PHIs whose
6492         arguments are -1 and 0, by negating the result of the conditional.
6494 2012-04-27  Paolo Bonzini  <bonzini@gnu.org>
6496         PR target/53138
6497         * config/i386/i386.md (x86_mov<mode>cc_0_m1_neg): Add clobber.
6499 2012-04-27  Richard Guenther  <rguenther@suse.de>
6501         * tree-flow.h (is_hidden_global_store): Remove.
6502         * tree-ssa-sink.c (is_hidden_global_store): Likewise.
6503         * tree-ssa-alias.h (ref_may_alias_global_p): Declare.
6504         (stmt_may_clobber_global_p): Likewise.
6505         * tree-ssa-alias.c (ref_may_alias_global_p): New function.
6506         (stmt_may_clobber_global_p): Likewise.
6507         * tree-ssa-dce.c (mark_stmt_if_obviously_necessary): Call
6508         stmt_may_clobber_global_p.
6509         * tree-ssa-dse.c (dse_possible_dead_store_p): Likewise.
6511 2012-04-27  Steven Bosscher  <steven@gcc.gnu.org>
6513         * cfg.c (disconnect_src): Do df_mark_solutions_dirty in the right
6514         place.
6516         * tree-switch-conversion.c (struct switch_conv_info): Add range_max,
6517         reorganize some fields and update comments.  Rename bit_test_uniq
6518         and bit_test_count to uniq resp. count.  Remove bit_test_bb.
6519         (collect_switch_conv_info): New function, collects info about a
6520         GIMPLE_SWITCH into a struct switch_conv_info.
6521         (check_range): Simplify to use pre-recorded info.  Fix think-o in
6522         range-branch ratio check.
6523         (check_process_case): Remove function.
6524         (check_all_empty_except_final): New function, verifies that all
6525         non-final basic blocks are empty.
6526         (process_switch): Simplify to use pre-recorded info.  Call
6527         collect_switch_conv_info to do that.  Assert that degenerate switch
6528         statements have been cleaned up.
6530 2012-04-27  Marc Glisse  <marc.glisse@inria.fr>
6532         PR middle-end/27139
6533         * tree-ssa-forwprop.c (combine_conversions): Handle INT->FP->INT.
6535 2012-04-25  Manuel López-Ibáñez  <manu@gcc.gnu.org>
6537         PR c/53130
6538         * c-typeck.c (pop_init_level): Use %qD instead of %qT.
6540 2012-04-27  Tom de Vries  <tom@codesourcery.com>
6542         PR tree-optimization/51879
6543         * tree-ssa-sccvn.h (struct vn_reference_s): Add result_vdef field.
6544         * tree-ssa-sccvn.c (mark_use_processed): New function, factored out
6545         of ...
6546         (defs_to_varying): ... here.  Don't set use_processed.
6547         (visit_reference_op_call): Handle gimple_vdef.
6548         Handle case that lhs is NULL_TREE.
6549         (visit_use): Use mark_use_processed.  Handle calls with side-effect
6550         using visit_reference_op_call.
6552 2012-04-26  Richard Sandiford  <richard.sandiford@linaro.org>
6554         * sched-deps.c (fixup_sched_groups): Rename to...
6555         (chain_to_prev_insn): ...this.
6556         (chain_to_prev_insn_p): New function.
6557         (deps_analyze_insn): Use it instead of SCHED_GROUP_P.
6559 2012-04-26  Richard Sandiford  <richard.sandiford@linaro.org>
6561         * sched-int.h (_haifa_insn_data): Move priority_status.
6562         Add model_index.
6563         (INSN_MODEL_INDEX): New macro.
6564         * haifa-sched.c (insn_delay): New function.
6565         (sched_regno_pressure_class): Update commentary.
6566         (mark_regno_birth_or_death): Pass the liveness bitmap and
6567         pressure array as arguments, instead of using curr_reg_live and
6568         curr_reg_pressure.  Only update the pressure if the bit in the
6569         liveness set has changed.
6570         (initiate_reg_pressure_info): Always trust the live-in set for
6571         SCHED_PRESSURE_MODEL.
6572         (initiate_bb_reg_pressure_info): Update call to
6573         mark_regno_birth_or_death.
6574         (dep_list_size): Take the list as argument.
6575         (calculate_reg_deaths): New function, extracted from...
6576         (setup_insn_reg_pressure_info): ...here.
6577         (MODEL_BAR): New macro.
6578         (model_pressure_data, model_insn_info, model_pressure_limit)
6579         (model_pressure_group): New structures.
6580         (model_schedule, model_worklist, model_insns, model_num_insns)
6581         (model_curr_point, model_before_pressure, model_next_priority):
6582         New variables.
6583         (MODEL_PRESSURE_DATA, MODEL_MAX_PRESSURE, MODEL_REF_PRESSURE)
6584         (MODEL_INSN_INFO, MODEL_INSN): New macros.
6585         (model_index, model_update_limit_points_in_group): New functions.
6586         (model_update_limit_points, model_last_use_except): Likewise.
6587         (model_start_update_pressure, model_update_pressure): Likewise.
6588         (model_recompute, model_spill_cost, model_excess_group_cost): Likewise.
6589         (model_excess_cost, model_dump_pressure_points): Likewise.
6590         (model_set_excess_costs): Likewise.
6591         (rank_for_schedule): Extend SCHED_PRIORITY_WEIGHTED ordering to
6592         SCHED_PRIORITY_MODEL.  Use insn_delay.  Use the order in the model
6593         schedule as an alternative tie-breaker.  Update the call to
6594         dep_list_size.
6595         (ready_sort): Call model_set_excess_costs.
6596         (update_register_pressure): Update call to mark_regno_birth_or_death.
6597         Rely on that function to check liveness rather than doing it here.
6598         (model_classify_pressure, model_order_p, model_add_to_worklist_at)
6599         (model_remove_from_worklist, model_add_to_worklist, model_promote_insn)
6600         (model_add_to_schedule, model_analyze_insns, model_init_pressure_group)
6601         (model_record_pressure, model_record_pressures): New functions.
6602         (model_record_final_pressures, model_add_successors_to_worklist)
6603         (model_promote_predecessors, model_choose_insn): Likewise.
6604         (model_reset_queue_indices, model_dump_pressure_summary): Likewise.
6605         (model_start_schedule, model_finalize_pressure_group): Likewise.
6606         (model_end_schedule): Likewise.
6607         (schedule_insn): Say when we're scheduling the next instruction
6608         in the model schedule.
6609         (schedule_insn): Handle SCHED_PRESSURE_MODEL.
6610         (queue_to_ready): Do not add instructions that are
6611         MAX_SCHED_READY_INSNS beyond the current point of the model schedule.
6612         Always allow the next instruction in the model schedule to be added.
6613         (debug_ready_list): Print the INSN_REG_PRESSURE_EXCESS_COST_CHANGE
6614         and delay for SCHED_PRESSURE_MODEL too.
6615         (prune_ready_list): Extend SCHED_PRIORITY_WEIGHTED handling to
6616         SCHED_PRIORITY_MODEL, but also take the DFA into account.
6617         (schedule_block): Call model_start_schedule and model_end_schedule.
6618         Extend SCHED_PRIORITY_WEIGHTED stall handling to SCHED_PRIORITY_MODEL.
6619         (sched_init): Extend INSN_REG_PRESSURE_EXCESS_COST_CHANGE handling
6620         to SCHED_PRESSURE_MODEL, but don't allocate saved_reg_live or
6621         region_ref_regs.
6622         (sched_finish): Update accordingly.
6623         (fix_tick_ready): Extend INSN_REG_PRESSURE_EXCESS_COST_CHANGE handling
6624         to SCHED_PRESSURE_MODEL.
6625         (add_jump_dependencies): Update call to dep_list_size.
6626         (haifa_finish_h_i_d): Fix leak of max_reg_pressure.
6627         (haifa_init_insn): Extend INSN_REG_PRESSURE_EXCESS_COST_CHANGE handling
6628         to SCHED_PRESSURE_MODEL.
6629         * sched-deps.c (init_insn_reg_pressure_info): Likewise, but don't
6630         allocate INSN_MAX_REG_PRESSURE for SCHED_PRESSURE_MODEL.
6631         (sched_analyze_insn): Extend INSN_REG_PRESSURE_EXCESS_COST_CHANGE
6632         handling to SCHED_PRESSURE_MODEL.
6634 2012-04-26  Richard Sandiford  <richard.sandiford@linaro.org>
6636         * common.opt (fsched-pressure-algorithm=): New option.
6637         * flag-types.h (sched_pressure_algorithm): New enum.
6638         * sched-int.h (sched_pressure_p): Replace with...
6639         (sched_pressure): ...this new variable.
6640         * haifa-sched.c (sched_pressure_p): Replace with...
6641         (sched_pressure): ...this new variable.
6642         (sched_regno_pressure_class, rank_for_schedule, ready_sort)
6643         (update_reg_and_insn_max_reg_pressure, schedule_insn)
6644         (debug_ready_list, prune_ready_list, schedule_block, sched_init)
6645         (sched_finish, fix_tick_ready, haifa_init_insn): Update accordingly.
6646         * sched-deps.c (init_insn_reg_pressure_info): Likewise.
6647         (sched_analyze_insn): Likewise.
6648         * sched-rgn.c (schedule_region): Likewise.
6649         * config/m68k/m68k.c (m68k_sched_variable_issue): Likewise.
6651 2012-04-26  Bernd Schmidt  <bernds@codesourcery.com>
6653         * PR middle-end/52997
6654         * ira.c (find_moveable_pseudos): Call resize_reg_info.
6656         PR middle-end/52940
6657         * machmode.h (CLASS_HAS_WIDER_MODES_P): True for MODE_PARTIAL_INT.
6658         * expr.c (convert_move): Honor unsignedp when extending partial int
6659         modes.
6660         * genmodes.c (complete_mode): Don't clear component field of partial
6661         int modes.
6662         (emit_mode_inner): Don't emit it however.
6663         (calc_wider_mode): Partial int modes widen to their component.
6665 2012-04-26  David S. Miller  <davem@davemloft.net>
6667         * config/sparc/niagara4.md: New file.
6668         * config/sparc/sparc.md: Include it.
6669         * config/sparc/sparc.c (niagara4_costs): New processor costs.
6670         (sparc_option_override): Use it.
6671         (sparc_use_sched_lookahead): Return 2 for niagara4.
6672         (sparc_issue_rate): Likewise.
6674         * config/sparc/sparc.md (attr type): Delete 'fgm_cmp'.
6675         (fpack16_vis, fpackfix_vis, fpack32_vis): Set type to fgm_pack.
6676         (fmul8x16_vis, fmul8x16au_vis, fmul8x16al_vis, fmul8sux16_vis,
6677         fmul8ulx16_vis, fmuld8sux16_vis, fmuld8ulx16_vis): Set type to fgm_mul.
6678         (alignaddrsi_vis, alignaddrdi_vis, alignaddrlsi_vis,
6679         alignaddrldi_vis): Set type to gsr.
6680         (pdist_vis, pdistn<mode>_vis): Set type to fgm_pdsit.
6681         (fcmp<code><GCM:gcm_name><P:mode>_vis, cmask8<P:mode>_vis,
6682         cmask16<P:mode>_vis, cmask32<P:mode>_vis, fchksm16_vis,
6683         v<vis3_shift_patname><mode>3, fmean16_vis,
6684         fp<plusminus_insn>64_vis, <vis3_addsub_ss_patname><mode>3,
6685         fucmp<code>8<P:mode>_vis): Set type to fga.
6686         * config/sparc/ultra1_2.md: Remove refrences to fgm_cmp.
6687         * config/sparc/niagara.md: Likewise.
6688         * config/sparc/niagara2.md: Likewise.
6689         * config/sparc/ultra3.md: Likewise, and fix type matching for
6690         us3_ialuX reservation.
6692 2012-04-26  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
6694         * reload.c (find_reloads): Change the loop nesting when trying an
6695         alternative with swapped operands.
6697 2012-04-26  Manuel López-Ibáñez  <manu@gcc.gnu.org>
6699         * tree-diagnostic.c (maybe_unwind_expanded_macro_loc): Fix
6700         comment. Delete unused parameter first_exp_point_map.
6701         (virt_loc_aware_diagnostic_finalizer): Update call.
6703 2012-04-26  Michael Hope  <michael.hope@linaro.org>
6704             Richard Earnshaw  <rearnsha@arm.com>
6706         * config/arm/linux-eabi.h (GLIBC_DYNAMIC_LINKER_SOFT_FLOAT): Define.
6707         (GLIBC_DYNAMIC_LINKER_HARD_FLOAT): Define.
6708         (GLIBC_DYNAMIC_LINKER_DEFAULT): Define.
6709         (GLIBC_DYNAMIC_LINKER): Redefine to use the hard float path.
6711 2012-04-25  Sriraman Tallam  <tmsriram@google.com>
6713         * doc/extend.texi: Document avx2 support.
6714         * config/i386/i386.c (fold_builtin_cpu): Add avx2.
6716 2012-04-26  Hans-Peter Nilsson  <hp@axis.com>
6718         PR target/53120
6719         * config/cris/cris.md ("*andhi_lowpart_v32")
6720         ("*andqi_lowpart_v32"): Change first input-only operand from
6721         a (match_operand ...) to (match_dup 0).  Drop alternatives with
6722         const_int-matching constraints for redundancy.
6723         ("*andhi_lowpart_non_v32", "*andqi_lowpart_non_v32"): Ditto.  Drop
6724         three-operand alternative.
6726 2012-04-25  Jakub Jelinek  <jakub@redhat.com>
6728         PR target/53110
6729         * config/i386/i386.md (and<mode>3): For andq $0xffffffff, reg
6730         instead expand it as zero extension.
6732 2012-04-25  H.J. Lu  <hongjiu.lu@intel.com>
6734         PR debug/52857
6735         * dwarf2out.c (dbx_reg_number): Assert return value != INVALID_REGNUM.
6737 2012-04-25  Jakub Jelinek  <jakub@redhat.com>
6739         * common.opt (flag_debug_types_section): Default to 0.
6740         (dwarf_version): Default to 4.
6741         (dwarf_record_gcc_switches): Default to 1.
6742         (dwarf_strict): Default to 0.
6743         * toplev.c (process_options): Don't handle dwarf_strict
6744         or dwarf_version here.
6745         * config/vxworks.c (vxworks_override_options): Don't
6746         test whether dwarf_strict or dwarf_version are negative,
6747         instead test !global_options_set.x_dwarf_*.
6748         * config/darwin.c (darwin_override_options): Default to
6749         dwarf_version 2.
6750         * doc/invoke.texi: Note that -gdwarf-4, -grecord-gcc-switches
6751         and -fno-debug-types-section are now the default.
6753 2012-04-25  Jan Hubicka  <jh@suse.cz>
6755         * cgraphunit.c: Update toplevel comment.
6756         (tree_rest_of_compilation): Merge into cgraph_expand_function.
6757         (cgraph_analyze_function): Make static.
6758         (cgraph_decide_is_function_needed): Make static.
6759         (cgraph_add_new_function): Use expand_function instead of
6760         rest_of_compilation.
6761         (clone_of_p, verify_edge_count_and_frequency, cgraph_debug_gimple_stmt,
6762         verify_edge_corresponds_to_fndecl, verify_cgraph_node, verify_cgraph):
6763         Move to cgraph.c
6764         (cgraph_inline_p): Remove.
6765         (cgraph_preserve_function_body_p): Move to ipa-inline-transform.
6766         (init_cgraph): Add comment.
6767         * cgraphbuild.c (record_reference, mark_address, mark_load,
6768         mark_store): Do not call analyze_expr hook.
6769         * cgraph.c: Update toplevel comment.
6770         (clone_of_p, verify_edge_count_and_frequency, cgraph_debug_gimple_stmt,
6771         verify_edge_corresponds_to_fndecl, verify_cgraph_node, verify_cgraph):
6772         Move fere from cgraphunit.c
6773         (cgraph_mark_force_output_node): Move to cgraph.h
6774         * cgraph.h: Reorder so the comments match the function placement.
6775         (cgraph_analyze_function, cgraph_decide_is_function_needed): Remove.
6776         (cgraph_mark_force_output_node): Move here from cgraph.c
6777         * tree.c (free_lang_data): Do not clear analyze_expr hook.
6778         * ipa-inline-transform.c (preserve_function_body_p): New function.
6779         (inline_transform): Update.
6780         * langhooks.c (lhd_callgraph_analyze_expr): Remove.
6781         * langhooks.h (lang_hooks_for_callgraph): Remove.
6782         (lang_hooks): Remove callgraph.
6783         * tree-inline.c (expand_call_inline): Do not use cgraph_inline_p.
6784         * varpool.c: Remove out of date comment.
6785         * langhooks-def.h (lhd_callgraph_analyze_expr): Remove.
6786         (LANG_HOOKS_CALLGRAPH_ANALYZE_EXPR): Remove.
6788 2012-04-25  Jan Hubicka  <jh@suse.cz>
6790         PR middle-end/53089
6791         * cgraphunit.c (referred_to_p): Move ahead in file to avoid
6792         forward declaration.
6793         (cgraph_finalize_function): Finalize them here.
6794         * symtab.c (dump_symtab): Dump ctors and dtors.
6796 2012-04-25  Jakub Jelinek  <jakub@redhat.com>
6798         PR middle-end/52979
6799         * stor-layout.c (get_best_mode): Don't return mode with bitsize
6800         larger than maxbits.  Don't compute maxbits modulo align.
6801         Also check that unit bytes long store at bitpos / unit * unit
6802         doesn't affect bits beyond bitregion_end.
6803         * expmed.c (store_bit_field_1): Avoid trying insv if OP_MODE MEM
6804         would not fit into bitregion_start ... bitregion_end + 1 bit region.
6805         (store_split_bit_field): Decrease unit close to end of bitregion_end
6806         if access is restricted in order to avoid mutual recursion.
6808         PR tree-optimization/53058
6809         * double-int.h (double_int_max_value, double_int_min_value): New
6810         prototypes.
6811         * double-int.c (double_int_max_value, double_int_min_value): New
6812         functions.
6813         * tree-vrp.c (register_edge_assert_for_2): Compare mask for LE_EXPR
6814         or GT_EXPR with double_int_max_value instead of double_int_mask.
6816 2012-04-25  Richard Guenther  <rguenther@suse.de>
6818         * tree-vectorizer.h (vect_loop_versioning): Adjust prototype.
6819         * tree-vect-loop.c (vect_transform_loop): Adjust.
6820         * tree-vect-loop-manip.c (vect_do_peeling_for_loop_bound): Record
6821         the maximum number of iterations for the epilogue loop.
6822         (vect_loop_versioning): Remove case re-using the peeled epilogue loop.
6824 2012-04-25  Jakub Jelinek  <jakub@redhat.com>
6826         PR c/52880
6827         * c-typeck.c (set_nonincremental_init,
6828         set_nonincremental_init_from_string): Pass true instead of false
6829         as IMPLICIT to add_pending_init.
6831 2012-04-25  Manuel López-Ibáñez  <manu@gcc.gnu.org>
6833         * c-typeck.c (pop_init_level): Improve diagnostics.
6835 2012-04-25  Uros Bizjak  <ubizjak@gmail.com>
6837         * compare-elim.c (try_eliminate_compare): Also handle operands with
6838         implicit extensions.
6840 2012-04-25  Alan Modra  <amodra@gmail.com>
6842         * config/rs6000/rs6000 (SAVE_INLINE_VRS, REST_INLINE_VRS,
6843         V_SAVE_INLINE, SAVRES_LR, SAVRES_SAVE, SAVRES_REG,
6844         SAVRES_GPR, SAVRES_FPR, SAVRES_VR): Define.
6845         (no_global_regs_above): Delete.
6846         (no_global_regs): New function.
6847         (rs6000_savres_strategy): Handle vector regs.  Use proper lr_save_p
6848         value for load multiple test.
6849         (savres_routine_syms): Increase size.
6850         (rs6000_savres_routine_name, rs6000_savres_routine_sym,
6851         ptr_regno_for_savres, rs6000_emit_savres_rtx): Pass in int selector
6852         rather than a number of boolean flags.  Update all callers.
6853         (rs6000_savres_routine_name): Generate vector save/restore names.
6854         (rs6000_savres_routine_sym): Handle vector regs.  Delete forward decl.
6855         (ptr_regno_for_savres, rs6000_emit_savres_rtx): Likewise.
6856         (rs6000_emit_prologue): Delete saving_FPRs_inline, saving_GPRs_inline
6857         and using_store_multiple.  Expand uses.  Don't always use r11 as
6858         frame reg when needed for out-of-line saves.  Set up initial offset
6859         for out-of-line vector saves when buying stack frame.  Handle pointer
6860         reg setup for out-of-line fp save.  Emit call to out-of-line vector
6861         save function.  Choose r11 or r12 for vrsave reg when available for
6862         better scheduling.
6863         (rs6000_output_function_prologue): Don't emit .extern for ELF.
6864         (rs6000_emit_epilogue): Choose a better frame reg when restoring
6865         from back-chain to suit out-of-line vector restore functions.  Emit
6866         call to out-of-line vector restore function.  Adjust register used
6867         for cr restore.  Tweak pointer register setup for gpr restore.
6868         * config/rs6000/rs6000.h (FIRST_SAVED_GP_REGNO): Take into account
6869         FIXED_R13.
6870         * config/rs6000/sysv4.h (FP_SAVE_INLINE, GP_SAVE_INLINE): Simplify.
6871         (V_SAVE_INLINE): Define.
6872         * config/rs6000/altivec.md (save_vregs_*, restore_vregs_*): New insns.
6874 2012-04-25  Alan Modra  <amodra@gmail.com>
6876         * config/rs6000/rs6000.c (rs6000_savres_strategy): Allow
6877         out-of-line save/restore for large frames.  Don't disable
6878         out-of-line saves on ABI_AIX when using static chain reg.
6879         (rs6000_emit_prologue): Adjust cr_save_regno on ABI_AIX to not
6880         clobber static chain reg, and tweak for out-of-line gpr saves
6881         that use r1.
6883 2012-04-25  Alan Modra  <amodra@gmail.com>
6885         * config/rs6000/rs6000.c (START_USE, END_USE, NOT_INUSE): Define.
6886         (rs6000_emit_prologue): Use the above to catch register overlap.
6888 2012-04-25  Alan Modra  <amodra@gmail.com>
6890         * config/rs6000/rs6000.c (rs6000_emit_stack_reset): Delete forward
6891         decl.  Move logic selecting update reg to callers.  Update all callers.
6892         (rs6000_emit_allocate_stack): Add copy_off param.
6893         (emit_frame_save): Don't handle reg+reg addressing.
6894         (ptr_regno_for_savres): New function, extracted from..
6895         (rs6000_emit_savres_rtx): ..here.  Add lr_offset param.
6896         (rs6000_emit_prologue): Generate frame_ptr_rtx as we need it.
6897         Set frame_reg_rtx to r11 whenever r11 is needed, and merge
6898         frame offset adjustment for out-of-line save with copy from sp.
6899         Simplify condition controlling whether cr is saved early or
6900         late.  Use ptr_regno_for_savres to verify correct reg is set
6901         up for out-of-line saves.  Pass the actual pointer reg used to
6902         rs6000_emit_savres_rtx so rtl matches insns in out-of-line
6903         function.  Rearrange spe vars so code is similar to that
6904         elsewhere in this function.  Don't update frame_off when spe
6905         save code will restore r11.  Use emit_frame_save for spe and
6906         gpr saves.  Consolidate darwin out-of-line gpr setup with that
6907         for other abis.  Don't assume frame_offset is zero and frame
6908         reg is sp when setting up altivec reg saves, and calculate
6909         exact offset requirement.
6910         (rs6000_emit_epilogue): Use HOST_WIDE_INT for frame_off.  Tidy
6911         spe restore code.  Consolidate darwin out-of-line gpr setup
6912         with that for other abis.
6914 2012-04-25  Alan Modra  <amodra@gmail.com>
6916         * config/rs6000/rs6000.c (rs6000_frame_related): Don't emit a
6917         REG_FRAME_RELATED_EXPR note when the instruction exactly matches
6918         the replacement.
6919         (emit_frame_save): Delete frame_ptr param.  Rename total_size to
6920         frame_reg_to_sp.
6921         (rs6000_emit_prologue): Add sp_off.  Update rs6000_frame_related
6922         and emit_frame_save calls.  Cope with possibly missing note.
6924 2012-04-24  Sriraman Tallam  <tmsriram@google.com>
6926         * config/i386/i386.c (build_processor_model_struct): New function.
6927         (make_var_decl): New function.
6928         (fold_builtin_cpu): New function.
6929         (ix86_fold_builtin): New function.
6930         (make_cpu_type_builtin): New function.
6931         (ix86_init_platform_type_builtins): New function.
6932         (ix86_expand_builtin): Expand new builtins by folding them.
6933         (ix86_init_builtins): Make new builtins to detect CPU type.
6934         (TARGET_FOLD_BUILTIN): New macro.
6935         (IX86_BUILTIN_CPU_INIT): New enum value.
6936         (IX86_BUILTIN_CPU_IS): New enum value.
6937         (IX86_BUILTIN_CPU_SUPPORTS): New enum value.
6938         * config/i386/i386-builtin-types.def: New function type.
6939         * testsuite/gcc.target/builtin_target.c: New testcase.
6940         * doc/extend.texi: Document builtins.
6942 2012-04-24  Olivier Hainque  <hainque@adacore.com>
6944         * common.opt (gdwarf-): Initialize dwarf_version to -1 instead of 2.
6945         * toplev.c (process_options): Default to dwarf_version 2.
6946         * config/vxworks.c (vxworks_override_options): Default to strict-dwarf
6947         and dwarf_version 2.
6949 2012-04-24  Manuel López-Ibáñez  <manu@gcc.gnu.org>
6951         * tree-pretty-print.h (default_tree_printer): Do not declare.
6952         * tree-diagnostic.c: Include tree-pretty-print.h, tree-pass.h and
6953         intl.h.
6954         (default_tree_diagnostic_starter): Make static.
6955         (default_tree_printer): Move to here. Make static.
6956         (tree_diagnostics_defaults): New.
6957         * tree-diagnostic.h (default_tree_diagnostic_starter): Do not declare.
6958         * tree.c (free_lang_data): Use tree_diagnostics_defaults.
6959         * toplev.c: Do not include tree-pass.h.
6960         (default_tree_printer): Move from here.
6961         (general_init): Use tree_diagnostics_defaults.
6963 2012-04-24  Chao-ying Fu  <fu@mips.com>
6965         * config.gcc (mips64*-*-linux*): Append mips/linux-common.h to tm_file.
6966         (mips*-*-linux*): Append mips/linux-common.h to tm_file.
6967         * config/mips/gnu-user.h
6968         (SUBTARGET_CC1_SPEC): Use GNU_USER_TARGET_CC1_SPEC directly.
6969         (GNU_USER_TARGET_LINK_SPEC): New define.
6970         (LINK_SPEC): Use GNU_USER_TARGET_LINK_SPEC.
6971         (LIB_SPEC): Use GNU_USER_TARGET_LIB_SPEC directly.
6972         (GNU_USER_TARGET_MATHFILE_SPEC): New define.
6973         (ENDFILE_SPEC): Use GNU_USER_TARGET_MATHFILE_SPEC and
6974         GNU_USER_TARGET_ENDFILE_SPEC.
6975         * config/mips/gnu-user64.h (LIB_SPEC): Remove.
6976         (GNU_USER_TARGET_LINK_SPEC): New define.
6977         (LINK_SPEC): Use GNU_USER_TARGET_LINK_SPEC.
6978         * config/mips/linux-common.h: New file.
6980 2012-04-24  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
6982         PR target/47197
6983         * config/rs6000/rs6000-c.c (fully_fold_convert): New function.
6984         (altivec_build_resolved_builtin): Call fully_fold_convert.
6986 2012-04-24  Georg-Johann Lay  <avr@gjlay.de>
6988         PR target/53065
6989         * config/avr/avr.h (HARD_REGNO_CALL_PART_CLOBBERED): New hook define.
6991 2012-04-24  Richard Guenther  <rguenther@suse.de>
6993         PR tree-optimization/53085
6994         * tree-ssa-pre.c (eliminate): Do not eliminate volatile redundant
6995         stores.
6997 2012-04-24  Richard Guenther  <rguenther@suse.de>
6999         * tree-if-conv.c (main_tree_if_conversion): Move bb under
7000         ENABLE_CHECKING.
7002 2012-04-24  Jim Meyering  <meyering@redhat.com>
7004         * genattrtab.c (gen_attr): Avoid NULL-deref after diagnosing
7005         absence of an define_enum call.
7007 2012-04-24  Richard Guenther  <rguenther@suse.de>
7009         * tree-vect-loop-manip.c (vect_do_peeling_for_loop_bound): If
7010         the epilogue loop is not re-used as unvectorized version
7011         record the its maximum number of iterations.
7013 2012-04-24  Andrew Pinski  <apinski@cavium.com>
7015         * tree-ssa-forwprop.c (simplify_bitwise_binary):
7016         Don't directly use def1/def2.
7018 2012-04-24  Richard Guenther  <rguenther@suse.de>
7020         PR tree-optimization/53098
7021         * tree-vect-loop.c (vect_analyze_loop_operations): Fixup
7022         comparison sign.
7024 2012-04-24  Andrew Pinski  <apinski@cavium.com>
7026         PR tree-opt/33512
7027         * tree-ssa-forwprop.c (defcodefor_name): New function.
7028         (simplify_bitwise_binary): Use defcodefor_name instead of manually
7029         Simplify "( X | Y) & X" to X and "( X & Y) | X" to X.
7030         Simplify "(~X | Y) & X" to "X & Y" and
7031         "(~X & Y) | X" to "X | Y".
7033 2012-04-24  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
7035         * recog.c (insn_invalid_p): Add IN_GROUP parameter and use
7036         validate_change to add clobbers if IN_GROUP is nonzero.
7037         (verify_changes): Call insn_invalid_p with IN_GROUP set to true.
7038         * recog.h (insn_invalid_p): Add IN_GROUP parameter to function
7039         prototype.
7040         * gcse.c (process_insert_insn): Call insn_invalid_p with IN_GROUP
7041         set to false.
7042         * config/s390/s390.c (insn_invalid_p): Likewise.
7044 2012-04-24  Jakub Jelinek  <jakub@redhat.com>
7046         PR middle-end/53084
7047         * varasm.c (compute_reloc_for_constant): Handle ADDR_EXPR of MEM_REF.
7048         (output_addressed_constants): Likewise.
7050         PR middle-end/52999
7051         * varasm.c (get_section): Don't ICE for section conflicts with
7052         built-in section kinds.
7054 2012-04-23  DJ Delorie  <dj@redhat.com>
7056         * config/s390/s390.h (LINK_SPEC): Remove, no longer needed.
7057         (LIBSTDCXX): Change to CPP2.
7059 2012-04-23  H.J. Lu  <hongjiu.lu@intel.com>
7061         PR bootstrap/52878
7062         * opth-gen.awk: Check if MASK_ and TARGET_ macros are defined for
7063         extra_masks.
7065 2012-04-23  Uros Bizjak  <ubizjak@gmail.com>
7067         * config/i386/i386.md (*add<mode>_2): Add r/r/0 alternative.
7068         (*addsi_2_zext): Ditto.
7069         (*add<mode>_3): Ditto.
7070         (*addsi_3_zext): Ditto.
7071         (*add<mode>_5): Ditto.
7073 2012-04-23  Andrew Pinski  <apinski@cavium.com>
7075         * tree-ssa-forwprop.c (simplify_bitwise_binary): Simplify (A & B) OP0
7076         (C & B) to (A OP0) & B.
7078 2012-04-23  Martin Jambor  <mjambor@suse.cz>
7080         * expr.c (expand_expr_real_1): Remove setting parent's alias set for
7081         temporaries created for a bitfield (reverting revision 122014).
7083 2012-04-23  Richard Guenther  <rguenther@suse.de>
7085         * tree-vect-loop-manip.c (slpeel_add_loop_guard): Gimplify
7086         the condition using is_gimple_condexpr and avoid the not necessary
7087         boolification.
7088         (set_prologue_iterations): Likewise.
7089         (vect_loop_versioning): Likewise.
7091 2012-04-23  Richard Guenther  <rguenther@suse.de>
7093         PR tree-optimization/53070
7094         * tree-if-conv.c (combine_blocks): Free predicates in all blocks.
7095         (main_tree_if_conversion): Verify we succeeded in that.
7097 2012-04-23  Jan Hubicka  <jh@suse.cz>
7099         * lto-symtab.c (lto_cgraph_replace_node): Do not call
7100         mark_reahcable_node.
7101         * cgraph.c (cgraph_remove_node): Do not clear reachable.
7102         (cgraph_mark_reachable_node): Remove.
7103         (cgraph_mark_force_output_node): Do not set reachable.
7104         (dump_cgraph_node): Do not dump reachable.
7105         (cgraph_create_virtual_clone): Do not set reachable.
7106         * cgraph.h (cgraph_node): Remove reachable flag.
7107         (varpool_node): Remove reachable flag.
7108         (cgraph_mark_if_needed): Remove.
7109         (cgraph_mark_reachable_node): Remove.
7110         * tree-emutls.c (ipa_lower_emutls): Do not check reachable.
7111         * cgraphunit.c (cgraph_finalize_function): Do not mark node as
7112         reachable.
7113         (cgraph_add_new_function): Likewise.
7114         (cgraph_mark_if_needed): Remove.
7115         (cgraph_analyze_function): Do not set target as reachable.
7116         (process_function_and_variable_attributes): Do not care about
7117         dllexport.
7118         (cgraph_analyze_functions): Do not set reachable flags.
7119         (cgraph_mark_functions_to_output): Do not check reachability.
7120         (cgraph_copy_node_for_versioning): Do not set reachable flag.
7121         (dbxout_expand_expr): Update.
7122         * c-decl.c (merge_decls): Do not track changed externs.
7123         * ipa.c: Include pointer-set.h
7124         (enqueue_cgraph_node): Use reachable pointer set.
7125         (process_references): Likewise.
7126         (cgraph_remove_unreachable_nodes): Likewise.
7127         (whole_program_function_and_variable_visibility): Do not recompute
7128         reachable.
7129         * trans-mem.c (ipa_tm_execute): Do not check reachable flag.
7131 2012-04-23  Georg-Johann Lay  <avr@gjlay.de>
7133         * doc/extend.texi (AVR Named Address Spaces): Fix typos.
7135 2012-04-23  Richard Guenther  <rguenther@suse.de>
7137         PR c/53060
7138         * c-typeck.c (build_binary_op): Fix typo.
7140 2012-04-23  Jakub Jelinek  <jakub@redhat.com>
7142         PR tree-optimizations/52891
7143         * tree-vect-patterns.c (adjust_bool_pattern): Use
7144         build_nonstandard_type even if rhs1 has unsigned INTEGER_TYPE,
7145         but with non-standard precision.
7147 2012-04-22  Jan Hubicka  <jh@suse.cz>
7149         * tree-ssa-loop-ivopts.c (expr_invariant_in_loop_p): Bail out at NULL
7150         tree refs.
7152 2012-04-22  Jan Hubicka  <jh@suse.cz>
7154         * lto-symtab.c (lto_varpool_replace_node): Do not merge needed flags.
7155         * cgraphbuild.c (record_reference, record_type_list, mark_address,
7156         mark_load, mark_store): Do not mark varpool nodes as needed.
7157         * cgraph.c (cgraph_new_nodes): Remove.
7158         (cgraph_create_function_alias): Do not mark nodes as reachable.
7159         (cgraph_add_thunk): Likewise.
7160         (cgraph_mark_reachable_node): Do not manage the queue.
7161         * cgraph.h (cgraph_node): Remove next_needed.
7162         (varpool_nodes_queue): Remove next_needed and prev_needed.
7163         (x_cgraph_nodes_queue, x_cgraph_nodes_queue, cgraph_new_nodes): Remove.
7164         (cgraph_new_nodes): Declare.
7165         (x_varpool_nodes_queue, varpool_nodes_queue); Remove.
7166         (varpool_analyze_pending_decls): Remove.
7167         (varpool_analyze_node): New.
7168         (varpool_mark_needed_node): Remove.
7169         (varpool_first_variable, varpool_next_variable): New inlines.
7170         (varpool_first_static_initializer, varpool_next_static_initializer):
7171         Update.
7172         (FOR_EACH_STATIC_VARIABLE): Remove unused walker.
7173         (varpool_first_defined_variable): New inline.
7174         (varpool_next_defined_variable): New inline
7175         (FOR_EACH_VARIABLE): Reimplement.
7176         (FOR_EACH_DEFINED_VARIABLE): Reimplement.
7177         * toplev.c (wrapup_global_declaration_2): Use analyzed instead of
7178         needed flag.
7179         * cgraphunit.c (cgraph_new_nodes): Declare here.
7180         (enqueue_node): New function.
7181         (cgraph_process_new_functions): update for new
7182         node set; when constructing cgraph enqueue node for processing.
7183         (cgraph_add_new_function): Use new node set.
7184         (process_function_and_variable_attributes): Do not set varpool needed
7185         flags.
7186         (referred_to_p): New function.
7187         (varpool_finalize_decl): Move here from varpool.c; enqueue needed node
7188         when varpool is in construction.
7189         (cgraph_analyze_functions): Rewrite.
7190         (cgraph_expand_all_functions): Update.
7191         (cgraph_output_in_order): Do not analyze pending decls; do not set
7192         needed flags.
7193         (cgraph_optimize): Do not analyze pending decls.
7194         * lto-cgraph.c (input_varpool_node): Clear analyzed flag for objects
7195         in other partition; do not mark node as needed.
7196         * dwarf2out.c (reference_to_unused): Use analyzed flag.
7197         (premark_types_used_by_global_vars_helper): Likewise.
7198         * ipa.c (process_references): Do not call varpool_mark_needed_node.
7199         (cgraph_remove_unreachable_nodes): Do not rely on varpool and
7200         cgrpah queues.
7201         (function_and_variable_visibility): Do not mark node as needed.
7202         (whole_program_function_and_variable_visibility): Likewise.
7203         * Makefile.in (gt-varpool.h): No longer needed.
7204         * passes.c (execute_one_pass, execute_ipa_pass_list): Update.
7205         (ipa_write_summaries): Do not use needed flag.
7206         * varpool.c: Do not include gt-varpool.h
7207         (x_varpool_nodes_queue, x_varpool_last_needed_node,
7208         x_varpool_last_needed_node, x_varpool_first_unanalyzed_node,
7209         x_varpool_first_unanalyzed_node, varpool_assembled_nodes_queue):
7210         Remove.
7211         (varpool_remove_node): Do not update the lists.
7212         (dump_varpool_node): Do not dump needed flag.
7213         (varpool_enqueue_needed_node): Remove.
7214         (varpool_mark_needed_node): Remove.
7215         (varpool_reset_queue): Remove.
7216         (varpool_finalize_decl): Move to cgraphunit.c
7217         (varpool_analyze_node): New functions based on former
7218         varpool_analyze_pending_decls.
7219         (varpool_analyze_pending_decls): Remove.
7220         (varpool_assemble_decl): Do not update the lists.
7221         (enqueue_node): New function.
7222         (varpool_remove_unreferenced_decls): Rewrite.
7223         (varpool_empty_needed_queue): Remove.
7224         (add_new_static_var): Do not mark node as needed.
7225         (varpool_create_variable_alias): Handle expansion state
7226         creation.
7227         * except.c (output_ttype): Do not mark node as needed.
7228         * varasm.c (mark_decl_referenced): Do not use mark_needed_node.
7229         * tree-profile.c (init_ic_make_global_vars, init_ic_make_global_vars):
7230         Likewise.
7231         * tree-switch-conversion.c (build_one_array): Likewise.
7233 2012-04-22  Manuel López-Ibáñez  <manu@gcc.gnu.org>
7235         PR c/44774
7236         * doc/invoke.texi (pedantic): Rename to Wpedantic.
7237         * common.opt (Wpedantic): New.
7238         (pedantic): Alias Wpedantic.
7239         * diagnostic.c (warning_at): Likewise.
7240         * c-decl.c (diagnose_mismatched_decls): Likewise.
7241         (build_array_declarator): Likewise.
7242         (mark_forward_parm_decls):
7243         (check_bitfield_type_and_width): Likewise.
7244         (grokdeclarator): Likewise.
7245         (grokfield): Likewise.
7246         (finish_struct): Likewise.
7247         (build_enumerator): Likewise.
7248         (store_parm_decls_oldstyle): Likewise.
7249         (declspecs_add_qual): Likewise.
7250         (declspecs_add_type): Likewise.
7251         (finish_declspecs): Likewise.
7252         * c-typeck.c (composite_type): Likewise.
7253         (comp_target_types): Likewise.
7254         (build_array_ref): Likewise.
7255         (pointer_diff): Likewise.
7256         (build_unary_op): Likewise.
7257         (build_conditional_expr): Likewise.
7258         (build_c_cast): Likewise.
7259         (convert_for_assignment): Likewise.
7260         (maybe_warn_string_init): Likewise.
7261         (digest_init): Likewise.
7262         (pop_init_level): Likewise.
7263         (set_init_index): Likewise.
7264         (c_finish_goto_label): Likewise.
7265         (c_finish_return): Likewise.
7266         (do_case): Likewise.
7267         (build_binary_op): Likewise.
7268         * c-parser.c (static): Likewise.
7269         (c_parser_external_declaration): Likewise.
7270         (c_parser_declaration_or_fndef): Likewise.
7271         (c_parser_static_assert_declaration_no_se): Likewise.
7272         (c_parser_enum_specifier): Likewise.
7273         (c_parser_struct_or_union_specifier): Likewise.
7274         (c_parser_struct_declaration): Likewise.
7275         (c_parser_alignas_specifier): Likewise.
7276         (c_parser_braced_init): Likewise.
7277         (c_parser_initelt): Likewise.
7278         (c_parser_compound_statement_nostart): Likewise.
7279         (c_parser_conditional_expression): Likewise.
7280         (c_parser_alignof_expression): Likewise.
7281         (c_parser_postfix_expression): Likewise.
7282         (c_parser_postfix_expression_after_paren_): Likewise.
7283         (c_parser_objc_class_instance_variables): Likewise.
7284         (c_parser_objc_method_definition): Likewise.
7285         (c_parser_objc_methodprotolist): Likewise.
7287 2012-04-22  Ian Lance Taylor  <iant@google.com>
7289         * godump.c (go_output_typedef): Dump size of structs.
7291 2012-04-22  Razya Ladelsky  <razya@il.ibm.com>
7293         Correcting transform_to_exit_first_loop + fix to PR46886
7294         * tree-parloops.c (transform_to_exit_first_loop): Remove
7295         setting of number of iterations according to the loop pattern.
7296         Duplicate from entry to exit->src instead of loop->latch.
7297         (pallelize_loops): Remove the condition preventing do-while loops.
7298         * tree-cfg.c (bool bb_in_region_p): New.
7299         (gimple_duplicate_sese_tail): Adjust duplication of the the subloops.
7300         Adjust redirection of the duplicated iteration.
7302 2012-04-21  Richard Sandiford  <rdsandiford@googlemail.com>
7304         PR bootstrap/53021
7305         * rtl.def (ADDRESS): Use "i" rather than "w".
7306         * rtl.h (find_base_term): Delete.
7307         (may_be_sp_based_p): Declare.
7308         * rtl.c (rtx_code_size): Remove ADDRESS special case.
7309         * alias.h (UNIQUE_BASE_VALUE_SP, UNIQUE_BASE_VALUE_ARGP)
7310         (UNIQUE_BASE_VALUE_FP, UNIQUE_BASE_VALUE_HFP): Move to...
7311         * alias.c: ...here.
7312         (find_base_term): Make static.
7313         (may_be_sp_based_p): New function.
7314         * dse.c (record_store): Use it.
7315         * store-motion.c (store_killed_in_insn): Likewise.
7317 2012-04-21  Richard Sandiford  <rdsandiford@googlemail.com>
7319         * fold-const.c (fold_checksum_tree): Fix VECTOR_CST case.
7321 2012-04-21  Manuel López-Ibáñez  <manu@gcc.gnu.org>
7323         PR 35441
7324         * c-typeck.c (inform_declaration): New.
7325         (build_function_call_vec):  Do not pretty-print
7326         expressions when caret is enabled.
7327         (convert_arguments): Use inform_declaration.
7329 2012-04-20  Jim Meyering  <meyering@redhat.com>
7331         * genmodes.c (make_complex_modes): Don't truncate a mode name of
7332         length 7 or more when prepending a "C".  Suggested by Richard Guenther.
7334 2012-04-20  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
7336         PR rtl-optimization/44214
7337         * fold-const.c (exact_inverse): New function.
7338         (fold_binary_loc): Fold vector and complex division by constant into
7339         multiply by recripocal with flag_reciprocal_math; fold vector division
7340         by constant into multiply by reciprocal with exact inverse.
7342 2012-04-20  Jan Hubicka  <jh@suse.cz>
7344         * lto-symtab.c (lto_cgraph_replace_node): Merge needed instead of
7345         force flags.
7346         * cgraph.c (cgraph_add_thunk): Use mark_reachable_node.
7347         (cgraph_remove_node): Update.
7348         (cgraph_mark_needed_node): Remove.
7349         (cgraph_mark_force_output_node): New.
7350         (dump_cgraph_node): Do not dump needed flag.
7351         (cgraph_node_cannot_be_local_p_1): Update.
7352         (cgraph_can_remove_if_no_direct_calls_and_refs): Update.
7353         * cgraph.h (symtab_node_base): Add force_output flag.
7354         (cgraph_node): Remove needed flag.
7355         (varpool_node): Remove force_output flag.
7356         (cgraph_mark_needed_node): Remove.
7357         (cgraph_mark_force_output_node): New.
7358         (cgraph_only_called_directly_or_aliased_p,
7359         varpool_can_remove_if_no_refs, varpool_all_refs_explicit_p): Update.
7360         * ipa-cp.c (ipcp_generate_summary): Remove out of date assert.
7361         * cgraphunit.c (cgraph_decide_is_function_needed): rewrite.
7362         (cgraph_add_new_function): Update.
7363         (cgraph_mark_if_needed): Update.
7364         (verify_cgraph_node): Update.
7365         (cgraph_analyze_function): Alias target is reachable.
7366         (process_function_and_variable_attributes): Update: externally_visible
7367         flag makes function reachable.
7368         (cgraph_analyze_functions): Update dumping.
7369         * lto-cgraph.c (lto_output_node, lto_output_varpool_node,
7370         input_overwrite_node, input_varpool_node): Update streaming.
7371         * lto-streamer-out.c (produce_symtab): Use force_output.
7372         * ipa.c (process_references): Weakrefs must be processed.
7373         (cgraph_remove_unreachable_nodes): Likewise; update for new
7374         force_output flag.
7375         (varpool_externally_visible_p): Weakrefs are externally visible
7376         even if they are not.
7377         (function_and_variable_visibility): Update; when processing alias
7378         pair force the targets to be output.
7379         (whole_program_function_and_variable_visility): Use
7380         mark_reachable_node.
7381         * trans-mem.c (ipa_tm_mark_needed_node): Remove
7382         (ipa_tm_mark_force_output_node): New function.
7383         (ipa_tm_create_version_alias, ipa_tm_create_version): Update.
7384         * gimple-fold.c (can_refer_decl_in_current_unit_p): Be lax about
7385         aliases.
7386         * varasm.c (mark_decl_referenced): Update.
7387         (find_decl_and_mark_needed): Remove.
7388         (find_decl): New function.
7389         (weak_finish, finish_aliases_1, assemble_alias): Update; do not mark
7390         alias targets as needed.
7391         (dump_tm_clone_pairs): Update.
7392         * tree-inline.c (copy_bb): Update check.
7393         * symtab.c (dump_symtab_base): Dump force_output.
7394         * tree-ssa-structalias.c (ipa_pta_execute): Use force_output.
7395         * passes.c (execute_todo): Fix dumping.
7396         * varpool.c (decide_is_variable_needed, varpool_finalize_decl): Update.
7397         (varpool_analyze_pending_decls): Alias target is reachable.
7398         (varpool_create_variable_alias): Finalize weakrefs.
7400 2012-04-20  Jakub Jelinek  <jakub@redhat.com>
7402         PR bootstrap/53021
7403         * alias.h (UNIQUE_BASE_VALUE_SP, UNIQUE_BASE_VALUE_ARGP,
7404         UNIQUE_BASE_VALUE_FP, UNIQUE_BASE_VALUE_HFP): Define.
7405         * alias.c (init_alias_targets): Use UNIQUE_BASE_VALUE_*
7406         macros instead of constants.
7407         * dse.c (record_store): Check for SP ADDRESS by comparing
7408         XWINT to UNIQUE_BASE_VALUE_SP instead of expecting
7409         XEXP to be stack_pointer_rtx.
7411 2012-04-20  Richard Guenther  <rguenther@suse.de>
7413         * tree-ssa-copy.c (propagate_tree_value_into_stmt): Use
7414         update_call_from_tree when propagating into a call.
7416 2012-04-20  Alan Modra  <amodra@gmail.com>
7418         * config/rs6000/rs6000.c (rs6000_emit_savres_rtx): Formatting.
7419         (rs6000_emit_prologue, rs6000_emit_epilogue): Likewise.  Rename
7420         sp_offset to frame_off.  Move world save code earlier.
7422 2012-04-20  Richard Guenther  <rguenther@suse.de>
7424         PR tree-optimization/53050
7425         * tree-ssa-forwprop.c (ssa_forward_propagate_and_combine):
7426         Do only one transform on COND_EXPRs at the same time.
7428 2012-04-19  Jan Hubicka  <jh@suse.cz>
7430         * symtab.c (dump_symtab_base): Revert accidental checkin.
7432 2012-04-20  Alan Modra  <amodra@gmail.com>
7434         PR target/53040
7435         * config/rs6000/rs6000.c (rs6000_savres_strategy): When using
7436         static chain, set REST_INLINE_FPRS too.
7438 2012-04-20  Thomas Schwinge  <thomas@codesourcery.com>
7440         * tree-dump.c (dequeue_and_dump) <BIT_FIELD_REF>: Dump the three child
7441         nodes.
7443 2012-04-20  Richard Guenther  <rguenther@suse.de>
7445         * tree-vect-loop.c (vect_analyze_loop_operations): Do not vectorize
7446         loops that can never run more often than the vectorization factor.
7448 2012-04-19  Jan Hubicka  <jh@suse.cz>
7450         * symtab.c (dump_symtab_base): Fix dumping of asm lists.
7452 2012-04-19  David Edelsohn  <dje.gcc@gmail.com>
7454         * config/rs6000/sync.md (fetchop_name): Change ior attribute to "or".
7456 2012-04-19  Jim Meyering  <meyering@redhat.com>
7458         * genmodes.c (make_complex_modes): Avoid unnecessary use of strncpy.
7459         We verified above that the string(including trailing NUL) fits in buf,
7460         so just use memcpy.
7462 2012-04-19  Richard Guenther  <rguenther@suse.de>
7464         * symtab.c (dump_symtab_base): Use TREE_STRING_POINTER
7465         for dumping DECL_SECTION_NAME.
7467 2012-04-19  Michael Matz  <matz@suse.de>
7469         PR middle-end/52977
7470         * tree.h (VECTOR_CST_NELTS): Use part number of types again.
7471         (struct tree_vector): Adjust GTY length.
7472         * tree.c (make_vector_stat): Don't set VECTOR_CST_NELTS.
7474         * gengtype.c (struct walk_type_data): Add in_record_p and loopcounter
7475         members.
7476         (walk_type, <TYPE_POINTER, TYPE_ARRAY>): Handle case where our
7477         caller emitted the length calulation already.
7478         (walk_type, <TYPE_UNION, TYPE_STRUCT>): Emit length calculations
7479         before handling any of the fields for structs.
7481 2012-04-19  Richard Guenther  <rguenther@suse.de>
7483         PR tree-optimization/53031
7484         * tree-vrp.c (adjust_range_with_scev): Revert back to
7485         using max_loop_iterations.
7487 2012-04-19  Michael Matz  <matz@suse.de>
7489         * diagnostic.c (emit_diagnostic): Move va_end call after user
7490         of the va_list.
7491         (warning, warning_at, pedwarn, permerror): Ditto.
7493 2012-04-19  Richard Guenther  <rguenther@suse.de>
7495         * ira-int.h (ira_allocno_object_iter_cond): Avoid out-of-bound
7496         array access.
7498 2012-04-19  Georg-Johann Lay  <avr@gjlay.de>
7500         PR target/53033
7501         * config/avr/avr.c (avr_out_load_psi): Fix assembler template for
7502         the case *(X+const).
7504 2012-04-19  Ramana Radhakrishnan  <ramana.radhakrishnan@linaro.org>
7506         * config/arm/sync.md (sync_optab): Change ior attribute to "or".
7508 2012-04-19  Manuel López-Ibáñez  <manu@gcc.gnu.org>
7510         PR c/52283/37985
7511         * stmt.c (warn_if_unused_value): Skip NOP_EXPR.
7512         * convert.c (convert_to_integer): Don't set TREE_NO_WARNING.
7514 2012-04-19  Richard Guenther  <rguenther@suse.de>
7516         PR rtl-optimization/44688
7517         * loop-iv.c (determine_max_iter): Only return max_iter.
7518         (iv_number_of_iterations): Also use the recorded loop bound
7519         on the maximum number of iterations.
7520         * loop-unroll.c (decide_unroll_runtime_iterations): Use
7521         max_iter to avoid unrolling loops that do not roll.
7522         (decide_unroll_stupid): Likewise.
7524 2012-04-18  Steven Bosscher  <steven@gcc.gnu.org>
7526         * targhooks.c (default_case_values_threshold): Fix code style nit.
7528         * stmt.c (add_case_node, expand_case): Move logic to remove/reduce
7529         case range and type folding from here...
7530         * gimplify.c (gimplify_switch_expr): ... to here.  Expect NULL_TREE
7531         type, as documented in tree.def.
7533 2012-04-18  Jan Hubicka  <jh@suse.cz>
7535         * cgraph.h (verify_symtab, verify_symtab_node, verify_symtab_base):
7536         Declare.
7537         * cgraphunit.c (verify_cgraph_node): Verify symtab base; do not verify
7538         cgraph hash and same comdat groups.
7539         (cgraph_optimize): Verify symbol table.
7540         * ipa.c (cgraph_remove_unreachable_nodes): Verify symbol table.
7541         (dissolve_same_comdat_group_list): Work on symtab nodes.
7542         (function_and_variable_visibility): Dissolve variable same comdat group
7543         lists, too.
7544         * symtab.c: Include timevar.h
7545         (verify_symtab_base, verify_symtab_node, verify_symtab): New functions.
7547 2012-04-18  Steven Bosscher  <steven@gcc.gnu.org>
7549         * tree-switch-conversion.c (info): Remove global pass info.
7550         (check_range, check_process_case, check_final_bb, create_temp_arrays,
7551         free_temp_arrays, gather_default_values, build_constructors,
7552         array_value_type, build_one_array, build_arrays, gen_def_assigns,
7553         fix_phi_nodes, gen_inbound_check): Pass info around from ...
7554         (process_switch): ... here.  Unify message format.  Return a const
7555         char pointer to the failure reason message.
7556         (do_switchconv): Unify message format.  Update process_switch usage.
7558         * tree.def (CASE_LABEL_EXPR): Fix documentation, mention all operands.
7559         * tree-cfg.c (edge_to_cases): Fix documentation.
7561 2012-04-18  Uros Bizjak  <ubizjak@gmail.com>
7563         * config/alpha/sync.md (fetchop_name): Change ior attribute to "or".
7565 2012-04-18  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
7567         PR tree-optimization/52976
7568         * tree-ssa-reassoc.c (add_to_ops_vec_max_rank): Delete.
7569         (possibly_move_powi): New function.
7570         (rewrite_expr_tree): Call possibly_move_powi.
7571         (rewrite_expr_tree_parallel): Likewise.
7572         (attempt_builtin_powi): Change call of add_to_ops_vec_max_rank to
7573         call add_to_ops_vec instead.
7575 2012-04-18  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
7577         PR tree-optimization/52976
7578         * tree-ssa-reassoc.c (stmt_is_power_of_op): New function.
7579         (decrement_power): Likewise.
7580         (propagate_op_to_single_use): Likewise.
7581         (zero_one_operation): Handle __builtin_pow* calls in linearized
7582         expression trees; factor logic into propagate_op_to_single_use.
7583         (undistribute_ops_list): Allow operands with repeat counts > 1.
7585 2012-04-18  Richard Guenther  <rguenther@suse.de>
7587         PR tree-optimization/44688
7588         * cfgloop.h (record_niter_bound): Declare.
7589         * tree-ssa-loop-niter.c (record_niter_bound): Export.
7590         Update the estimation with the upper bound here...
7591         (estimate_numbers_of_iterations_loop): ... instead of here.
7592         Do not forcefully reset a recorded upper bound.
7593         * tree-vect-loop-manip.c (vect_do_peeling_for_alignment):
7594         Record the maximum number of loop iterations of the prologue loop.
7596 2012-04-18  Jan Hubicka  <jh@suse.cz>
7598         * lto-symtab.c (lto_cgraph_replace_node): Update.
7599         * cgraphbuild.c (record_reference, record_type_list,
7600         record_eh_tables, mark_address, mark_load, mark_store): Update.
7601         * cgraph.c (cgraph_same_body_alias, dump_cgraph_node,
7602         cgraph_create_virtual_clone, cgraph_for_node_thunks_and_aliases):
7603         Update.
7604         * cgraph.h (symtab_node_def, symtab_node, const_symtab_node): Remove.
7605         (cgraph_alias_aliased_node, varpool_alias_aliased_node): Update.
7606         * reload.c: Fix typo in comment.
7607         * rtlanal.c: Likewise.
7608         * tree-emultls.c (gen_emutls_addr): Update.
7609         * ipa-reference.c (analyze_function): Update.
7610         * cgraphunit.c (cgraph_analyze_function,
7611         cgraph_process_same_body_aliases, assemble_thunks_and_aliases):
7612         Update.
7613         * ipa-ref.c (ipa_record_reference): Reorg to avoid reference types.
7614         (ipa_remove_reference): Likewise.
7615         (ipa_remove_all_refering): Rename to ...
7616         (ipa_remove_all_referring): ... this one; update.
7617         (ipa_dump_references): Update.
7618         (ipa_dump_referring): Update.
7619         (ipa_clone_references): Update.
7620         (ipa_clone_refering): Rename to ...
7621         (ipa_clone_referring): ... this one; update.
7622         (ipa_ref_cannot_lead_to_return): Update.
7623         (ipa_ref_has_aliases_p): Update.
7624         * ipa-ref.h (symtab_node_def, symtab_node, const_symtab_node): New
7625         forward typedefs.
7626         (ipa_ref_type): Remove.
7627         (ipa_ref_ptr_u): Remove.
7628         (ipa_ref): Remove referencing, refered, refered_index, refering_type
7629         and refered_type; add referring, referred and referred_index.
7630         (ipa_ref_list): Rename refering to referring.
7631         (ipa_record_reference, ipa_remove_all_referring, ipa_dump_referring,
7632         ipa_clone_references, ipa_clone_referring): Update prototypes.
7633         * lto-cgraph.c (referenced_from_other_partition_p): Update.
7634         (lto_output_ref): Update.
7635         (add_references): Update.
7636         (input_varpool_node): Update.
7637         (input_refs): Update.
7638         * ipa-ref-inline.h (ipa_ref_node): Update.
7639         (ipa_ref_varpool_node): Update.
7640         (ipa_ref_referring_node): Update.
7641         (ipa_ref_referring_varpool_node): Update.
7642         (ipa_ref_referring_ref_list): Update.
7643         (ipa_ref_referred_ref_list): Update.
7644         (ipa_ref_list_first_referring): Update.
7645         (ipa_empty_ref_list): Update.
7646         (ipa_ref_list_refering_iterate): Rename to ...
7647         (ipa_ref_list_referring_iterate): ... this one.
7648         * cse.c: Update comment.
7649         * ipa-utils.c (ipa_reverse_postorder): Update.
7650         * tree-ssa-alias.c: Update.
7651         * ipa-inline.c (reset_edge_caches): Update.
7652         (update_caller_keys): Update.
7653         * ipa-inline.h: Update comments.
7654         * jump.c: Update comment.
7655         * alias.c: Likewise.
7656         * ipa.c (process_references): Update.
7657         (cgraph_remove_unreachable_nodes): Likewise.
7658         (ipa_discover_readonly_nonaddressable_var): Likewise.
7659         (cgraph_address_taken_from_non_vtable_p): Likewise.
7660         * trans-mem.c (ipa_tm_execute): Update.
7661         * simplify-rtx.c: Fix comment.
7662         * rtl.c: Fix comment.
7663         * symtab.c (symtab_unregister_node): Update.
7664         * varpool.c (dump_varpool_node): Update.
7665         (varpool_analyze_pending_decls): Update.
7666         (assemble_aliases): Update.
7667         (varpool_for_node_and_aliases): Update.
7669 2012-04-18  Richard Guenther  <rguenther@suse.de>
7671         * cfgloop.h (estimate_numbers_of_iterations_loop): Remove
7672         use_undefined_p parameter.
7673         * tree-flow.h (estimate_numbers_of_iterations): Likewise.
7674         * tree-ssa-loop-niter.c (estimate_numbers_of_iterations_loop):
7675         Likewise.
7676         (estimate_numbers_of_iterations): Likewise.
7677         (estimated_loop_iterations): Adjust.
7678         (max_loop_iterations): Likewise.
7679         (scev_probably_wraps_p): Likewise.
7680         * tree-ssa-loop.c (tree_ssa_loop_bounds): Likewise.
7681         * tree-vrp.c (adjust_range_with_scev): Use max_stmt_executions,
7682         not max_loop_iterations.
7683         (execute_vrp): Remove explicit number of iterations estimation.
7685 2012-04-18  Enkovich Ilya  <ilya.enkovich@intel.com>
7687         * config/i386/linux-common.h: New.
7689         * config.gcc: Add i386/linux-common.h before
7690         all i386/linux.h and i386/linux64.h usages.
7692         * config/i386/gnu-user.h (GNU_USER_TARGET_LINK_SPEC): New.
7693         (LINK_SPEC): Use GNU_USER_TARGET_LINK_SPEC.
7694         * config/i386/gnu-user64.h: Likewise.
7696         * config/i386/gnu-user.common.h (GNU_USER_TARGET_CC1_SPEC): New.
7697         (CC1_SPEC): Use GNU_USER_TARGET_CC1_SPEC.
7698         (GNU_USER_TARGET_MATHFILE_SPEC): New.
7699         (ENDFILE_SPEC): Use GNU_USER_TARGET_MATHFILE_SPEC.
7701 2012-04-18  Jan Hubicka  <jh@suse.cz>
7703         * cgraph.c (cgraph_node_name): Remove.
7704         (dump_cgraph_node): Use dump_symtab_base; reformat.
7705         * cgraph.h (symtab_node_asm_name, symtab_node_name, dump_symtab,
7706         debug_symtab, dump_symtab_node, debug_symtab_node, dump_symtab_base):
7707         Declare.
7708         (cgraph_node_name, varpool_node_name): Remove.
7709         (cgraph_node_asm_name, varpool_node_asm_name,
7710         cgraph_node_name, varpool_node_name): New.
7711         * tree-pass.h (TODO_dump_cgraph): Rename to ...
7712         (TODO_dump_symtab): ... this one.
7713         * ipa-cp (pass_ipa_cp): Update.
7714         * ia-reference.c (generate_summary, read_write_all_from_decl,
7715         propagate, ipa_reference_read_optimization_summary): Update.
7716         * cgraphunit.c (cgraph_analyze_functions): Update.
7717         (cgraph_optimize): Update.
7718         * ipa-ref.c (ipa_dump_references): Update.
7719         (ipa_dump_refering): Update.
7720         * ipa-inline.c (pass_ipa_inline): Update.
7721         * matrix-reorg.c (pass_ipa_matrix_reorg): Update.
7722         * ipa.c (pass_ipa_function_visibility,
7723         pass_ipa_whole_program_visibility): Update.
7724         * tree-sra.c (pass_early_ipa_sra): Update.
7725         * symtab.c: Include langhooks.h
7726         (symtab_node_asm_name): New.
7727         (symtab_node_name): New.
7728         (symtab_type_names): New static var.
7729         (dump_symtab_base): New.
7730         (dump_symtab_node, dump_symtab): New.
7731         (debug_symtab_node,  debug_symtab): New.
7732         * tree-ssa-structalias.c: Dump symbol table.
7733         * pases.c (execute_todo): Handle TODO_dump_symtab instead
7734         of TODO_dump_cgraph.
7735         * varpoo.c (varpool_node_name): Remove.
7736         (dump_varpool_node): Use dump_symtab_base; reformat.
7738 2012-04-18  Manuel López-Ibáñez  <manu@gcc.gnu.org>
7740         * doc/invoke.texi (Language Independent Options): @item should be
7741         before @opindex.
7743 2012-04-17  Richard Sandiford  <rdsandiford@googlemail.com>
7745         PR bootstrap/53021
7746         * rtl.c (rtx_code_size): Handle ADDRESS.
7748 2012-04-17  Tom de Vries  <tom@codesourcery.com>
7750         * tree-iterator.c (append_to_statement_list_1): Handle case that *list_p
7751         is not a STMT_LIST.
7753 2012-04-17  Uros Bizjak  <ubizjak@gmail.com>
7755         PR target/53020
7756         * config/i386/sync.md (atomic_<code><mode>): Rename to
7757         atomic_<logic><mode>.
7759 2012-04-17  Richard Sandiford  <rdsandiford@googlemail.com>
7761         * rtl.def (ADDRESS): Turn operand into a HOST_WIDE_INT.
7762         * alias.c (reg_base_value): Expand and update comment.
7763         (arg_base_value): New variable.
7764         (unique_id): Move up file.
7765         (unique_base_value, unique_base_value_p, known_base_value_p): New.
7766         (find_base_value): Use arg_base_value and known_base_value_p.
7767         (record_set): Document REG_NOALIAS handling.  Use unique_base_value.
7768         (find_base_term): Use known_base_value_p.
7769         (base_alias_check): Use unique_base_value_p.
7770         (init_alias_target): Initialize arg_base_value.  Use unique_base_value.
7771         (init_alias_analysis): Use 1 as the first id for REG_NOALIAS bases.
7773 2012-04-17  Pat Haugen <pthaugen@us.ibm.com>
7775         * config/rs6000/rs6000.h (SLOW_UNALIGNED_ACCESS): Remove DImode.
7777 2012-04-17  Michael Matz  <matz@suse.de>
7779         PR tree-optimization/18437
7780         * tree-vectorizer.h (_stmt_vec_info.stride_load_p): New member.
7781         (STMT_VINFO_STRIDE_LOAD_P): New accessor.
7782         (vect_check_strided_load): Declare.
7783         * tree-vect-data-refs.c (vect_check_strided_load): New function.
7784         (vect_analyze_data_refs): Use it to accept strided loads.
7785         * tree-vect-stmts.c (vectorizable_load): Ditto and handle them.
7787 2012-04-17  Richard Guenther  <rguenther@suse.de>
7789         PR middle-end/53011
7790         * tree-eh.c (cleanup_empty_eh_merge_phis): Properly discard
7791         loops when redirecting an entry or latch edge.
7793 2012-04-17  Bernd Schmidt  <bernds@codesourcery.com>
7795         * sel-sched.c (sel_global_init): Revert previous change.
7797 2012-04-17  Richard Guenther  <rguenther@suse.de>
7799         * tree-flow.h (array_at_struct_end_p): Move declaration ...
7800         * tree.h (array_at_struct_end_p): ... here.
7801         * tree-ssa-loop-niter.c (array_at_struct_end_p): Move ...
7802         * expr.c (array_at_struct_end_p): ... here.  Rewrite.
7804 2012-04-17  Steven Bosscher  <steven@gcc.gnu.org>
7806         * stmt.c (cost_table_, use_cost_table, cost_table_initialize,
7807         COST_TABLE): Remove.
7808         (estimate_case_costs): Remove.
7809         (expand_case): Do not call estimate_case_costs
7810         to set use_cost_table.
7811         (balance_case_nodes): Do not use use_cost_table.
7813 2012-04-16  Jan Hubicka  <jh@suse.cz>
7815         * cgraph.c (cgraph_hash, assembler_name_hash): Remove.
7816         (hash_node, eq_node): Remove.
7817         (cgraph_create_node): Do not handle hashtable.
7818         (cgraph_get_node): Remove.
7819         (cgraph_insert_node_to_hashtable): Remove.
7820         (hash_node_by_assembler_name): Remove.
7821         (eq_assembler_name): Remove.
7822         (cgraph_node_for_asm): Rewrite.
7823         (cgraph_find_replacement_node): Break out from ...
7824         (cgraph_remove_node): ... here; do not maintain hashtables.
7825         (change_decl_assembler_name): Remove.
7826         (cgraph_clone_node): Do not maintain hashtables.
7827         * cgraph.h (const_symtab_node): New typedef.
7828         (cgraph_insert_node_to_hashtable): Remove.
7829         (symtab_get_node, symtab_node_for_asm,
7830         symtab_insert_node_to_hashtable): Declare.
7831         (cgraph_find_replacement_node): Declare.
7832         (cgraph_get_node, varpool_get_node): Turn into inlines.
7833         (cgraph, varpool): Work sanely on NULL pointers.
7834         (FOR_EACH_SYMBOL): New walker.
7835         * ipa-inline-transform.c (save_inline_function_body): Use
7836         symtab_insert_node_to_hashtable.
7837         * symtab.c: Include ggc.h and diagnostics.h
7838         (symtab_hash, assembler_name_hash): New static vars;
7839         (hash_node, eq_node, hash_node_by_assembler_name,
7840         eq_assembler_name, insert_to_assembler_name_hash,
7841         unlink_from_assembler_name_hash): New.
7842         (symtab_register_node): Update hashtables.
7843         (symtab_insert_node_to_hashtable): New.
7844         (symtab_unregister_node): Update hashtables.
7845         (symtab_get_node): New.
7846         (symtab_node_for_asm): New.
7847         (change_decl_assembler_name): New.
7848         * Makefile.in (symtab.o): Needs GTY.
7849         * varpool.c (varpool_hash): Remove.
7850         (hash_varpool_node, eq_varpool_node, varpool_get_node): Remove.
7851         (varpool_node): Rewrite using varpool_get_node.
7852         (varpool_remove_node): DO not maintain hashtables.
7853         (varpool_node_for_asm): Rewrite.
7855 2012-04-16  Sandra Loosemore  <sandra@codesourcery.com>
7857         * doc/invoke.texi:  Copy-edit to put verbs in the present tense
7858         when describing the current behavior of GCC.
7860 2012-04-16  Richard Sandiford  <rdsandiford@googlemail.com>
7862         * genemit.c (gen_exp): Remove ADDRESS handling.
7863         * genoutput.c (scan_operands): Likewise.
7864         * genpeep.c (match_rtx): Likewise.
7865         * genrecog.c (add_to_sequence): Likewise.
7867 2012-04-16  David Edelsohn  <dje.gcc@gmail.com>
7869         * doc/install.texi (Specific, *-ibm-aix*): Update assembler bug status.
7871 2012-04-16  Martin Jambor  <mjambor@suse.cz>
7873         * tree-sra.c (build_ref_for_model): Create COMPONENT_REFs only for
7874         bit-fields.
7876 2012-04-16  Ulrich Weigand  <ulrich.weigand@linaro.org>
7878         PR target/51819
7879         * config/arm/arm.c (arm_print_operand): Fix invalid alignment
7880         hints for 'A' operand types.
7882 2012-04-16  Jan Hubicka  <jh@suse.cz>
7884         * cgraph.h (symtab_node_base): Add next and previous pointers.
7885         (cgraph_node): Remove next and preivous pointers.
7886         (varpool_node): Likewise; remove next/previous GTY marker;
7887         it is not type safe.
7888         (symtab_node_def): Update GTY marker
7889         (x_cgraph_nodes, cgraph_nodes): Remove.
7890         (symtab_nodes): New function.
7891         (cgraph_order): Rename to ...
7892         (symtab_order): ... this one.
7893         (symtab_register_node, symtab_unregister_node, symtab_remove_node):
7894         Declare.
7895         (x_varpool_nodes, varpool_nodes): Remove.
7896         (FOR_EACH_STATIC_VARIABLE): Update.
7897         (symtab_function_p, symtab_variable_p): New function.
7898         (FOR_EACH_VARIABLE): Update.
7899         (varpool_first_variable, varpool_next_variable): New functions.
7900         (FOR_EACH_VARIABLE): Update.
7901         (cgraph_first_defined_function): Update.
7902         (cgraph_next_defined_function, cgraph_next_defined_function): Update.
7903         (FOR_EACH_DEFINED_FUNCTION, FOR_EACH_FUNCTION): Update.
7904         (cgraph_first_function, cgraph_next_function): New.
7905         (FOR_EACH_FUNCTION): Update.
7906         (cgraph_first_function_with_gimple_body,
7907         cgraph_next_function_with_gimple_body): Update.
7908         * symtab.c: New file.
7909         * cgraph.c: Update copyright dates.
7910         (x_cgraph_nodes, cgraph_order): Remove.
7911         (NEXT_FREE_NODE): Update.
7912         (SET_NEXT_FREE_NODE): New.
7913         (cgraph_create_node_1): Remove common code.
7914         (cgraph_create_node): Remove common code; call symtab_register_node.
7915         (cgraph_remove_node): Remove common code; call symtab_unregister-node.
7916         (cgraph_add_asm_node): Update.
7917         (cgraph_clone_node): Register new node.
7918         * cgraphunit.c (process_function_and_variable_attributes): Update.
7919         (cgraph_analyze_functions): Update.
7920         (cgraph_analyze_functions): Update.
7921         (cgraph_output_in_order): Update.
7922         * lto-cgraph.c (input_node, input_varpool_node, input_cgraph_1):
7923         Update.
7924         * ipa-inline.c (recursive_inlining): Update.
7925         * lto-streamer-in.c (lto_input_toplevel_asms): Update.
7926         * ipa.c (cgraph_remove_unreachable_nodes): Update.
7927         * Makefile.in: Add symtab.o
7928         * varpool.c (x_varpool_nodes): Remove
7929         (varpool_node): Remove common code; call symtab_register_node.
7930         (varpool_remove_node): Remove common code; call symtab_unregister_node.
7932 2012-04-16  Richard Guenther  <rguenther@suse.de>
7934         PR middle-end/52977
7935         * tree.h (VECTOR_CST_NELTS): Adjust.
7936         (struct tree_vector): Add explicit length field.
7937         (make_vector_stat): Declare.
7938         (make_vector): Define.
7939         * tree.c (make_vector_stat): New function.
7940         (build_vector_stat): Use it.
7941         * tree-streamer-in.c (streamer_alloc_tree): Likewise.
7943 2012-04-16  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
7945         PR tree-optimization/52976
7946         * tree-ssa-reassoc.c (add_to_ops_vec_max_rank): New function.
7947         (undistribute_ops_list): Ops with repeat counts aren't eligible for
7948         undistribution.
7949         (attempt_builtin_powi): Call add_to_ops_vec_max_rank.
7951 2012-04-16  Jan Hubicka  <jh@suse.cz>
7953         * cgraph.h (FOR_EACH_VARIABLE, FOR_EACH_VARIABLE, FOR_EACH_FUNCTION):
7954         New macros.
7955         * lto-symtab.c (lto_symtab_merge_cgraph_nodes): Use FOR_EACH
7956         walkers to walk cgraph and varpool.
7957         * cgraph.c (cgraph_node_for_asm): Likewise.
7958         (dump_cgraph): Likewise.
7959         * value-prof.c (init_node_map): Likewise.
7960         * tree.c (free_lang_data_in_cgraph): Likewise.
7961         * tree-emutls.c: (ipa_lower_emutls): Likewise.
7962         * ipa-reference.c (generate_summary, propagate): Likewise.
7963         * cgraphunit.c (verify_cgraph, cgraph_process_same_body_aliases,
7964         cgraph_mark_functions_to_output, cgraph_output_in_order,
7965         output_weakrefs, cgraph_materialize_all_clones,
7966         cgraph_optimize): Likewise.
7967         * lto-cgraph.c (merge_profile_summaries): Likewise.
7968         (input_cgraph): Likewise.
7969         * ipa-pure-const.c (generate_summary): Likewise.
7970         (propagate): Likwise.
7971         * ipa-utils.c (ipa_reduced_postorder): Likewise.
7972         (ipa_free_postorder_info): Likewise.
7973         (ipa_reverse_postorder): Likewise.
7974         * ipa-inline.c (ipa_inline): Likewise.
7975         * matrix-reorg.c (find_matrices_decl): Likewise.
7976         (matrix_reorg): Likewise.
7977         * tree-vectorizer.c (increase_alignment): Likewise.
7978         * ipa.c (cgraph_remove_unreachable_nodes): Likewise.
7979         (function_and_variable_visibility): Likewise.
7980         (whole_program_function_and_variable_visibility): Likewise.
7981         (ipa_cdtor_merge): Likewise.
7982         * trans-mem.c (ipa_tm_execute): Likewise.
7983         * ipa-inline-analysis.c (dump_inline_summaries): Likewise.
7984         * ipa-prop.c (ipa_print_all_jump_functions): Likewise.
7985         (ipa_print_all_params): Likewise.
7986         (ipa_update_after_lto_read): Likewise.
7987         * tree-profie.c (tree_profiling): Likewise.
7988         * tree-ssa-structalias.c (ipa_pta_execute): Likewise.
7989         * passes.c (dump_passes): Likewise.
7990         (do_per_function): Likewise.
7991         (ipa_write_summaries): Likewise.
7992         * varpool.c (dump_varpool): Likewise.
7993         (varpool_node_for_asm): Likewise.
7994         (varpool_assemble_pending_decls): Likewise.
7996 2012-04-16  Richard Guenther  <rguenther@suse.de>
7998         PR tree-optimization/52975
7999         * tree-if-conv.c (predicate_bbs): Do not simplify inverted
8000         condition but always mark it with TRUTH_NOT_EXPR.
8002 2012-04-16  Richard Guenther  <rguenther@suse.de>
8004         PR tree-optimization/52975
8005         * tree-ssa-forwprop.c (combine_cond_exprs): New function.
8006         (ssa_forward_propagate_and_combine): Call it for COND_EXPRs
8007         and VEC_COND_EXPRs.  Also combine into VEC_COND_EXPRs condition.
8008         * fold-const.c (operand_equal_p): Handle TARGET_MEM_REF.
8010 2012-04-14  Uros Bizjak  <ubizjak@gmail.com>
8012         * config/i386/sse.md (ssse3_plusminus): New code iterator.
8013         (avx2_ph<plusminus_mnemonic>wv16hi3): Macroize insn from
8014         avx2_ph{add,adds,sub,subs}wv16hi3 using ssse3_plusminus code iterator.
8015         (ssse3_ph<plusminus_mnemonic>wv8hi3): Macroize insn from
8016         ssse3_ph{add,adds,sub,subs}wv8hi3 using ssse3_plusminus code iterator.
8017         (ssse3_ph<plusminus_mnemonic>wv4hi3): Macroize insn from
8018         ssse3_ph{add,adds,sub,subs}wv4hi3 using ssse3_plusminus code iterator.
8020         (avx2_ph<plusminus_mnemonic>dv8si3): Macroize insn from
8021         avx2_ph{add,adds,sub,subs}dv8si3 using plusminus code iterator.
8022         (ssse3_ph<plusminus_mnemonic>dv4si3): Macroize insn from
8023         ssse3_ph{add,adds,sub,subs}dv4si3 using plusminus code iterator.
8024         (ssse3_ph<plusminus_mnemonic>dv2si3): Macroize insn from
8025         ssse3_ph{add,adds,sub,subs}dv2si3 using plusminus code iterator.
8027         (xop_plus): New code iterator.
8028         (macs): New code attribute.
8029         (macds): Ditto.
8030         (xop_p<macs><ssemodesuffix><ssemodesuffix>): Macroize insn from
8031         xop_pmacs{,s}{ww,dd} using xop_plus code iterator and VI24_128 mode
8032         iterator.
8033         (xop_p<macs>dql): Macroize insn from xop_pmacs{,s}dql using
8034         xop_plus code iterator.
8035         (xop_p<macs>dqh): Macroize insn from xop_pmacs{,s}dqh using
8036         xop_plus code iterator.
8037         (xop_p<macs>wd): Macroize insn from xop_pmacs{,s}wd using
8038         xop_plus code iterator.
8039         (xop_p<madcs>wd): Macroize insn from xop_pmadcs{,s}wd using
8040         xop_plus code iterator.
8042         (xop_phadd<u>bw): Macroize insn from xop_phadd{,u}bw usign
8043         any_extend code iterator.
8044         (xop_phadd<u>bd): Macroize insn from xop_phadd{,u}bd usign
8045         any_extend code iterator.
8046         (xop_phadd<u>bq): Macroize insn from xop_phadd{,u}bq usign
8047         any_extend code iterator.
8048         (xop_phadd<u>wd): Macroize insn from xop_phadd{,u}wd usign
8049         any_extend code iterator.
8050         (xop_phadd<u>wq): Macroize insn from xop_phadd{,u}wq usign
8051         any_extend code iterator.
8052         (xop_phadd<u>dq): Macroize insn from xop_phadd{,u}dq usign
8053         any_extend code iterator.
8055 2012-04-14  Tom de Vries  <tom@codesourcery.com>
8057         * cfgcleanup.c (try_optimize_cfg): Replace call to delete_insn_chain by
8058         call to delete_insn.  Remove code to reorder BASIC_BLOCK note and
8059         DELETED_LABEL note, and move it to ...
8060         * cfgrtl.c (delete_insn): ... here.  Change return type to void.
8061         (delete_insn_and_edges): Likewise.
8062         (delete_insn_chain): Handle new return type of delete_insn.  Delete
8063         chain backwards rather than forwards.
8064         * rtl.h (delete_insn, delete_insn_and_edges): Change return type to
8065         void.
8066         * cfglayout.c (fixup_reorder_chain): Delete unused label.
8068 2012-04-14  Jan Hubicka  <jh@suse.cz>
8070         * cgraph.h: Update copyrights;
8071         (symtab_node): Turn to union typedef.
8072         (symtab_node_base): New structure.
8073         (symtab_type): Add SYMTAB_SYMBOL tag.
8074         (cgraph_node): Annotate some pinters with nested_ptr.
8075         (varpool_node): Likewise.
8076         (cgraph_local_info): Remove lto_file_data
8077         and externally_visible.
8078         (cgraph_node): Remove decl; same_comdat_group list;
8079         aux; ref_list; order; address_taken; reachable_from_other_parittion,
8080         in_other_partition; resolution.
8081         (varpool_node): Remove decl; same_comdat_group;
8082         ref_list; lto_file_data; aux; order; resolution; externally_visible;
8083         used_from_other_partition; in_other_partition.
8084         (symtab_node_def): New union.
8085         (cgraph, varpool): Update.
8086         (varpool_first_static_initializer, varpool_next_static_initializer,
8087         cgraph_only_called_directly_or_aliased_p,
8088         varpool_can_remove_if_no_refs, varpool_can_remove_if_no_refs,
8089         varpool_all_refs_explicit_p, cgraph_alias_aliased_node,
8090         varpool_alias_aliased_node, cgraph_edge_recursive_p): Update
8091         field references.
8092         * cgraph.c: Likewise.
8093         (cgraph_hash, assembler_name_hash): Turn into symtab_node.
8094         * cgraphbuild.c: Likewise.
8095         * lto-symtab.c: Likewise.
8096         * c-gimplify.c: Likewise.
8097         * value-prof.c: Likewise.
8098         * tree.c: Likewise.
8099         * ipa-cp.c: Likewise.
8100         * tree-emutls.c: Likewise.
8101         * ipa-inline-transform.c: Likwise.
8102         * ipa-reference.c: Likewise.
8103         * cgraphunit.c: Likewise.
8104         * ipa-ref.c: Likewise.
8105         * lto-cgraph.c: Likewise.
8106         * ipa-ref-inline.h: Likewise.
8107         * ipa-pure-const.c: Likewise.
8108         * lto-streamer-out.c: Likewise.
8109         * ipa-utils.c: Likewise.
8110         * ipa-inline.c: Likewise.
8111         * matrix-reorg.c: Likewise.
8112         * tree-eh.c: Likewise.
8113         * tree-vectorizer.c: Likewise.
8114         * ipa-split.c: Likewise.
8115         * ipa.c: Likewise.
8116         * trans-mem.c: Likewise.
8117         * ipa-inline-analysis.c: Likewise.
8118         * gimplify.c: Likewise.
8119         * cfgexpand.c: Likewise.
8120         * tree-sra.c: Likewise.
8121         * ipa-prop.c: Likewise.
8122         * varasm.c: Likewise.
8123         * tree-nested.c: Likewise.
8124         * tree-inline.c: Likewise.
8125         * tree-profile.c: Likewise.
8126         * tree-ssa-structalias.c: Likewise.
8127         * passes.c: Likewise.
8128         * varpool.c: Likewise.
8130 2012-04-14  Tom de Vries  <tom@codesourcery.com>
8132         * tree-ssa-tail-merge.c (stmt_local_def): New function, factored out of
8133         same_succ_hash, with local_def inlined.  Use SINGLE_SSA_DEF_OPERAND.
8134         Use FOR_EACH_IMM_USE_FAST instead of FOR_EACH_IMM_USE_STMT.  Remove use
8135         of find_edge.
8136         (gsi_advance_fw_nondebug_nonlocal): New function.
8137         (local_def): Removed function.
8138         (same_succ_hash): Use stmt_local_def.
8139         (same_succ_equal): Use gsi_advance_fw_nondebug_nonlocal.
8140         (gsi_advance_bw_nondebug_nonlocal): Use stmt_local_def.
8142 2012-04-13  H.J. Lu  <hongjiu.lu@intel.com>
8144         * config/i386/i386-c.c (ix86_target_macros): Define _ILP32
8145         and __ILP32__ for x32.
8147 2012-04-13  Martin Jambor  <mjambor@suse.cz>
8149         PR middle-end/52939
8150         * gimple-fold.c (gimple_get_virt_method_for_binfo): Bail out if
8151         fold_ctor_reference returns a zero constant.
8153 2012-04-13  Enkovich Ilya  <ilya.enkovich@intel.com>
8155         * config.gcc: Add i386/gnu-user-common.h before all
8156         i386/gnu-user.h and i386/gnu-user64.h usages.
8158         * config/i386/gnu-user-common.h: New.
8160         * config/i386/gnu-user.h (CPP_SPEC): Moved to gnu-user-common.h.
8161         (CC1_SPEC): Likewise.
8162         (ENDFILE_SPEC): Likewise.
8163         (DEFAULT_PCC_STRUCT_RETURN): Likewise.
8164         (TARGET_TLS_DIRECT_SEG_REFS_DEFAULT): Likewise.
8165         (TARGET_OS_CPP_BUILTINS): Likewise.
8166         (LIBGCC2_HAS_TF_MODE): Likewise.
8167         (LIBGCC2_TF_CEXT): Likewise.
8168         (TF_SIZE): Likewise.
8169         (TARGET_ASM_FILE_END): Likewise.
8170         (STACK_CHECK_MOVING_SP): Likewise.
8171         (STACK_CHECK_STATIC_BUILTIN): Likewise.
8172         * config/i386/gnu-user64.h: Likewise.
8174 2012-04-13  Martin Jambor  <mjambor@suse.cz>
8176         * expr.c (expand_expr_real_1): Pass type, not the expression, to
8177         set_mem_attributes for a memory temporary. Do not call the function
8178         for the memory temporary created for a bitfield.
8180 2012-04-13  Alexandre Oliva  <aoliva@redhat.com>
8182         PR debug/48866
8183         * df.h (enum debug_temp_where): New.
8184         (dead_debug_init, dead_debug_finish) Declare.
8185         (dead_debug_add, dead_debug_insert_temp): Declare.
8186         (struct dead_debug_use, struct dead_debug): Moved from...
8187         * df-problems.c: ... here.
8188         (df_set_unused_notes_for_mw): Bind debug uses of unused regno
8189         to a debug temp.
8190         (df_create_unused_note): Likewise.
8191         (df_set_dead_notes_for_mw): Move comment where it belongs.
8192         (dead_debug_init): Export.
8193         (dead_debug_reset_uses): New, factored out of...
8194         (dead_debug_finish): ...this.  Export.
8195         (dead_debug_reset): Remove.
8196         (dead_debug_add): Export.
8197         (dead_debug_insert_before): Rename to...
8198         (dead_debug_insert_temp): ... this.  Add where argument.  Export.
8199         Locate stored value for BEFORE_WITH_VALUE.  Avoid repeat inserts.
8200         Return insertion count.
8201         (df_note_bb_compute): Adjust.
8202         * dce.c (word_dce_process_block): Adjust dead debug uses.
8203         (dce_process_block): Likewise.
8205 2012-04-13  Alexandre Oliva  <aoliva@redhat.com>
8207         * df-problems.c (df_note_bb_compute): Do not take note of
8208         debug uses for whose REGs we won't emit DEAD or UNUSED notes.
8210 2012-04-13  Alexandre Oliva  <aoliva@redhat.com>
8212         PR debug/51570
8213         * var-tracking.c (expand_depth): New type.
8214         (onepart_aux, expand_loc_callback_data): Change depth type to it.
8215         (loc_exp_dep_alloc): Adjust initializer.
8216         (update_depth): Use new type.  Add entryvals.
8217         (vt_expand_var_loc_chain): Take note of expansions with
8218         ENTRY_VALUEs, but don't accept them right away.  Run an optional
8219         second pass accepting the minimum ENTRY_VALUE count found in the
8220         first pass.
8221         (vt_expand_loc_callback, INIT_ELCD): Adjust.
8223 2012-04-13  Tom de Vries  <tom@codesourcery.com>
8225         * tree-ssa-tail-merge.c (gsi_advance_bw_nondebug_nonlocal): Add
8226         parameters vuse and vuse_escaped.
8227         (find_duplicate): Init vuse1, vuse2 and vuse_escaped.  Pass to
8228         gsi_advance_bw_nondebug_nonlocal.  Return if vuse_escaped and
8229         vuse1 != vuse2.
8231 2012-04-13  Richard Guenther  <rguenther@suse.de>
8233         PR tree-optimization/52969
8234         * tree-if-conv.c (predicate_mem_writes): Properly gimplify
8235         the condition for the COND_EXPR and handle predicate negation
8236         by swapping the COND_EXPR arms.
8238 2012-04-13  Nick Clifton  <nickc@redhat.com>
8240         * config/rl78/rl78.c (rl78_devirt_pass): Remove use of
8241         TODO_dump_func flag.
8243 2012-04-13  Andrey Belevantsev  <abel@ispras.ru>
8245         PR rtl-optimization/52203
8246         PR rtl-optimization/52715
8248         Revert the 2012-03-07 fix for PR 52203.
8249         * sel-sched.c (reset_sched_cycles_in_current_ebb): Check that
8250         the insn does not modify DFA right before issuing, adjust
8251         issue_rate accordingly.
8253 2012-04-13  Richard Guenther  <rguenther@suse.de>
8255         PR c/52549
8256         * c-typeck.c (pointer_diff): Remove bogus assert.
8258 2012-04-13  Richard Guenther  <rguenther@suse.de>
8260         PR c/52862
8261         * convert.c (convert_to_pointer): Remove special-casing of zero.
8263 2012-04-13  Joey Ye  <joey.ye@arm.com>
8265         * config/arm/constraints.md (Pe): New constraint.
8266         * config/arm/arm.md: New split for imm 256-510.
8268 2012-04-13  Terry Guo  <terry.guo@arm.com>
8270         * config/arm/arm-cores.def: Added core cortex-m0plus.
8271         * config/arm/arm-tune.md: Regenerated.
8272         * config/arm/arm-tables.opt: Regenerated.
8273         * doc/invoke.texi: Added entry for cpu ARM cortex-m0plus.
8275 2012-04-13  Alan Modra  <amodra@gmail.com>
8277         PR target/52828
8278         * config/rs6000/rs6000.c (rs6000_emit_stack_tie): Rewrite with
8279         tie regs on destination of sets.  Delete forward declaration.
8280         (rs6000_emit_stack_reset): Update rs6000_emit_stack_tie calls.
8281         (rs6000_emit_prologue): Likewise.
8282         (rs6000_emit_epilogue): Likewise.  Use in place of gen_frame_tie
8283         and gen_stack_tie.
8284         (is_mem_ref): Use tie_operand to recognise stack ties.
8285         * config/rs6000/predicates.md (tie_operand): New.
8286         * config/rs6000/rs6000.md (restore_stack_block): Generate new
8287         stack tie rtl.
8288         (restore_stack_nonlocal): Likewise.
8289         (stack_tie): Update.
8290         (frame_tie): Delete.
8292 2012-04-12  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
8294         * tree-ssa-reassoc.c (attempt_builtin_powi_stats): Change %ld to
8295         HOST_WIDE_INT_PRINT_DEC in format strings.
8297 2012-04-12  Uros Bizjak  <ubizjak@gmail.com>
8299         PR target/52932
8300         * config/i386/avx2intrin.h (_mm256_permutevar8x32_ps): Change second
8301         argument type to __m256i.  Update call to __builtin_ia32_permvarsf256.
8302         * config/i386/sse.md (UNSPEC_VPERMVAR): New.
8303         (UNSPEC_VPERMSI, UNSPEC_VPERMSF): Remove.
8304         (avx2_permvarv8sf, avx2_permvarv8si): Switch operands 1 and 2.
8305         (avx2_permvar<mode>): Macroize insn from avx2_permvarv8sf and
8306         avx2_permvarv8si using VI4F_256 mode iterator.
8307         * config/i386/i386.c (bdesc_args) <__builtin_ia32_permvarsf256>:
8308         Update builtin type to V8SF_FTYPE_V8SF_V8SI.
8309         (ix86_expand_vec_perm): Update calls to gen_avx2_permvarv8si and
8310         gen_avx2_permvarv8sf.
8311         (expand_vec_perm_pshufb): Ditto.
8313 2012-04-12  Michael Meissner  <meissner@linux.vnet.ibm.com>
8315         PR target/52775
8316         * config/rs6000/rs6000.h (TARGET_FCFID): Add TARGET_PPC_GPOPT to
8317         the list of options to enable the FCFID instruction.
8318         (TARGET_EXTRA_BUILTINS): Adjust comment.
8320 2012-04-12  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
8322         PR tree-optimization/18589
8323         * tree-ssa-reassoc.c (reassociate_stats): Add two fields.
8324         (operand_entry): Add count field.
8325         (add_repeat_to_ops_vec): New function.
8326         (completely_remove_stmt): Likewise.
8327         (remove_def_if_absorbed_call): Likewise.
8328         (remove_visited_stmt_chain): Remove feeding builtin pow/powi calls.
8329         (acceptable_pow_call): New function.
8330         (linearize_expr_tree): Look for builtin pow/powi calls and add operand
8331         entries with repeat counts when found.
8332         (repeat_factor_d): New struct and associated typedefs.
8333         (repeat_factor_vec): New static vector variable.
8334         (compare_repeat_factors): New function.
8335         (get_reassoc_pow_ssa_name): Likewise.
8336         (attempt_builtin_powi): Likewise.
8337         (reassociate_bb): Call attempt_builtin_powi.
8338         (fini_reassoc): Two new calls to statistics_counter_event.
8340 2012-04-12  Richard Guenther  <rguenther@suse.de>
8342         * Makefile.in (cgraphunit.o): Add $(EXCEPT_H) dependency.
8343         * cgraph.h (tree_rest_of_compilation): Remove.
8344         * cgraph.c (cgraph_add_new_function): Move ...
8345         * cgraphunit.c (cgraph_add_new_function): ... here.
8346         (tree_rest_of_compilation): Make static.
8347         (cgraph_expand_function): Do not set cgraph_function_flags_ready.
8348         * tree-optimize.c (gate_all_optimizations, pass_all_optimizations,
8349         gate_all_early_local_passes, execute_all_early_local_passes,
8350         pass_early_local_passes, gate_all_early_optimizations,
8351         pass_all_early_optimizations): Move ...
8352         * passes.c (gate_all_optimizations, pass_all_optimizations,
8353         gate_all_early_local_passes, execute_all_early_local_passes,
8354         pass_early_local_passes, gate_all_early_optimizations,
8355         pass_all_early_optimizations): ... here.
8356         * tree-optimize.c (execute_free_datastructures): Remove.
8357         * tree-flow.h (execute_free_datastructures): Remove.
8358         * tree-optimize.c (execute_init_datastructures,
8359         pass_init_datastructures): Move ...
8360         * tree-ssa.c (execute_init_datastructures,
8361         pass_init_datastructures): ... here.
8362         * cfgexpand.c (gimple_expand_cfg): Inline-expand call to
8363         execute_free_datastructures.
8365 2012-04-12  Bernd Schmidt  <bernds@codesourcery.com>
8367         * dbgcnt.def (ira_move): New counter.
8368         * ira-int.h (ira_create_new_reg): Declare function.
8369         (first_moveable_pseudo, last_moveable_pseudo): Declare variables.
8370         * ira-emit.c (ira_create_new_reg): Renamed from craete_new_reg and
8371         no longer static.  All callers changed.
8372         * ira.c: Include "dbgcnt.h".
8373         (rtx_moveable_p, insn_dominated_by_p, find_moveable_pseudos,
8374         move_unallocated_pseudos): New static functions.
8375         (first_moveable_pseudo, last_moveable_pseudo): New global variables.
8376         (pseudo_replaced_reg, pseudo_move_insn): New static variables.
8377         (ira): Call find_moveable_pseudos and move_unallocated_pseudos.
8378         * ira-costs.c (find_costs_and_classes): Assign a memory cost of zero
8379         to the pseudos generated in find_moveable_pseudos.
8380         * Makefile.in (ira.o): Add $(DBGCNT_H).
8382 2012-04-12  Richard Guenther  <rguenther@suse.de>
8384         PR tree-optimization/52943
8385         * tree-chrec.h (chrec_is_positive): Remove.
8386         * tree-scalar-evolution.c (chrec_is_positive): Move ...
8387         * tree-data-ref.c (chrec_is_positive): ... here.  Make static.
8388         Return false for a constant zero instead of negative.
8389         (analyze_siv_subscript_cst_affine): Handle zero difference
8390         in the initial condition explicitely.
8392 2012-04-12  Richard Guenther  <rguenther@suse.de>
8394         * tree-parloops.c (parallelize_loops): Also consult the upper
8395         bound for the number of iterations.
8396         * tree-ssa-loop-prefetch.c (determine_loop_nest_reuse): Likewise.
8397         (loop_prefetch_arrays): Likewise.
8399 2012-04-12  Richard Guenther  <rguenther@suse.de>
8401         * cfgloop.h (estimated_loop_iterations_int): Ditch
8402         'conservative' parameter.
8403         (max_stmt_executions_int): Likewise.
8404         (estimated_loop_iterations): Likewise.
8405         (max_stmt_executions): Likewise.
8406         (max_loop_iterations): Declare.
8407         (max_loop_iterations_int): Likewise.
8408         (estimated_stmt_executions): Likewise.
8409         (estimated_stmt_executions_int): Likewise.
8410         * tree-ssa-loop-niter.c (estimated_loop_iterations):
8411         Split parts to ...
8412         (max_loop_iterations): ... this.
8413         (estimated_loop_iterations_int): Split parts to ...
8414         (max_loop_iterations_int): ... this.
8415         (max_stmt_executions_int): Split parts to ...
8416         (estimated_stmt_executions_int): ... this.
8417         (max_stmt_executions): Split parts to ...
8418         (estimated_stmt_executions): ... this.
8419         * graphite-sese-to-poly.c (build_loop_iteration_domains): Adjust.
8420         * predict.c (predict_loops): Likewise.
8421         * tree-data-ref.c (max_stmt_executions_tree): Likewise.
8422         (analyze_siv_subscript_cst_affine): Likewise.
8423         (compute_overlap_steps_for_affine_1_2): Likewise.
8424         (analyze_subscript_affine_affine): Likewise.
8425         (init_omega_for_ddr_1): Likewise.
8426         * tree-parloops.c (parallelize_loops): Likewise.
8427         * tree-ssa-loop-ivopts.c (avg_loop_niter): Likewise.
8428         (may_eliminate_iv): Likewise.
8429         * tree-ssa-loop-prefetch.c (determine_loop_nest_reuse): Likewise.
8430         (loop_prefetch_arrays): Likewise.
8431         * tree-vrp.c (adjust_range_with_scev): Likewise.
8433 2012-04-12  Oleg Endo  <olegendo@gcc.gnu.org>
8435         * config/sh/sh.h (RETURN_ADDR_RTX): Use NULL_RTX instead of 0.
8436         * config/sh/sh.c (INSN_REGMODE_WEIGHT, CURR_REGMODE_PRESSURE):
8437         Fix line width.
8438         (dump_table): Use bool type for need_align and have_df variables.
8439         (find_barrier, sfunc_uses_reg): Use NULL_RTX instead of 0.
8440         (regs_used): Remove register modifier.
8441         (barrier_align): Move variables slot, credit, jump_to_next
8442         into if block above for loop.  Use bool type for jump_to_next.
8443         (sh_function_arg): Use NULL_RTX instead of 0.
8445 2012-04-11  Andreas Schwab  <schwab@linux-m68k.org>
8447         * config/m68k/m68k.md (rotrhi3+1): Name it rotrhi_lowpart.
8448         (bswapsi2): New expander.
8450 2012-04-11  H.J. Lu  <hongjiu.lu@intel.com>
8452         * config/host-linux.c (TRY_EMPTY_VM_SPACE): Defined to
8453         0x60000000 if __x86_64 is defined and __LP64__ isn't defined.
8455 2012-04-11  H.J. Lu  <hongjiu.lu@intel.com>
8457         PR rtl-optimization/52876
8458         * emit-rtl.c (set_reg_attrs_from_value): Handle arbitrary value.
8459         Don't call mark_reg_pointer for incompatible pointer sign extension.
8461         * reginfo.c (reg_scan_mark_refs): Call set_reg_attrs_from_value
8462         directly.
8464 2012-04-11  Bernd Schmidt  <bernds@codesourcery.com>
8466         * fold-const.c (fold_unary_loc): Use GET_MODE_PRECISION for
8467         comparisons against TYPE_PRECISION.
8468         * tree-ssa-forwprop.c (combine_conversions): Likewise.
8470 2012-04-11  Xinliang David Li  <davidxl@google.com>
8472         * tree-passes.h: Remove TODO_dump_func.
8473         * tree-ssa-tail-merge.c (tail_merge_optimize): Remove TODO_dump_func.
8474         * trans-mem.c: Remove TODO_dump_func.
8475         * ira.c: Remove TODO_dump_func.
8477 2012-04-11  H.J. Lu  <hongjiu.lu@intel.com>
8479         * config/i386/i386.c (ix86_option_override_internal): Check
8480         SUBTARGET_OVERRIDE_OPTIONS and SUBSUBTARGET_OVERRIDE_OPTIONS
8481         after TARGET_64BIT is updated.
8483 2012-04-11  Oleg Endo  <olegendo@gcc.gnu.org>
8485         * config/sh/sh.h: Remove old secondary reload code.
8487 2012-04-11  Oleg Endo  <olegendo@gcc.gnu.org>
8489         * config/sh/sh.c (SCHED_REORDER): Merge macro into ...
8490         (ready_reorder): ... this function.
8492 2012-04-11  Bernd Schmidt  <bernds@codesourcery.com>
8494         * sel-sched.c (sel_global_init): Swap order of sched_rgn_init and
8495         sched_init calls.
8497         * haifa-sched.c (prune_ready_list): Rework handling of SCHED_GROUP_P
8498         insns so that no other insn is queued for a time before them.
8500         * config/c6x/c6x.md (load_got_gotoff): Set op_pattern attribute to
8501         unknown.
8503 2012-04-11  Richard Guenther  <rguenther@suse.de>
8505         PR middle-end/52621
8506         * tree-chrec.c (evolution_function_is_invariant_rec_p): Properly
8507         consider loop nesting.
8508         (evolution_function_is_univariate_p): Properly check the remainder
8509         for chrecs.
8511 2012-04-11  Richard Guenther  <rguenther@suse.de>
8513         PR middle-end/52918
8514         * except.c (sjlj_emit_dispatch_table): Properly update loop structure.
8516 2012-04-11  Nick Clifton  <nickc@redhat.com>
8518         * config/rl78/rl78.c (rl78_expand_prologue): Set stack use
8519         information, if requested.
8521         * config/rx/rx.c (rx_expand_prologue): Likewise.
8523 2012-04-11  Peter Bergner  <bergner@vnet.ibm.com>
8524             Michael Matz  <matz@suse.de>
8526         PR target/16458
8527         * rtlanal.c (unsigned_reg_p): New function.
8528         Update copyright notice dates.
8529         * rtl.h (unsigned_reg_p): Prototype it.
8530         Update copyright notice dates.
8531         * config/rs6000/rs6000.c (rs6000_generate_compare): Use it.
8532         Update comment.
8533         * expr.c (expand_expr_real_1): Set register attributes.
8534         * stmt.c (expand_case): Likewise.
8536 2012-04-11  Oleg Endo  <olegendo@gcc.gnu.org>
8538         PR target/50751
8539         * config/sh/sh-protos.h (sh_legitimate_index_p): Add new arguments
8540         consider_sh2a and allow_zero.
8541         * config/sh/sh.c (sh_legitimate_index_p): Likewise.
8542         (disp_addr_displacement): New function.
8543         (sh_address_cost): Use disp_addr_displacement function instead
8544         of DISP_ADDR_OFFSET.
8545         (sh_legitimate_address_p): Adapt to changed
8546         sh_legitimate_index_p declaration.
8547         (sh_find_mov_disp_adjust): Remove HImode check.
8548         (sh_secondary_reload): Add HImode case.  Use satisfies_constraint_Sdd,
8549         disp_addr_displacement and max_mov_insn_displacement.
8550         (max_mov_insn_displacement): Remove HImode check.
8551         * config/sh/sh.h (CONST_OK_FOR_K04, CONST_OK_FOR_K12,
8552         DISP_ADDR_P, DISP_ADDR_OFFSET): Remove.
8553         * config/sh/constraints.md (K05, K13): New constraints.
8554         (K12): Correct comment.
8555         (Sdd): Do not use DISP_ADDR_P macro.
8556         (Snd, Sbw): Use satisfies_constraint_Sdd.
8557         * config/sh/sh.md (extendhisi2): Remove constraints from expander.
8558         (*extendhisi2_compact, movhi_i): Remove.
8559         (*extendhisi2_compact_reg, *extendhisi2_compact_mem_disp,
8560         *extendhisi2_compact_mem_disp, *extendhisi2_compact_snd,
8561         *movhi_reg_reg, *movhi_store_mem_disp05, *movhi_store_mem_disp13,
8562         *movhi_load_mem_disp, *movhi_load_mem_disp, *movhi): New insns.
8563         (*extendqisi2_compact_mem_disp, *extendqisi2_compact_mem_disp,
8564         *movqi_store_mem_disp04, *movqi_store_mem_disp12, *movqi_load_mem_disp,
8565         *movqi_load_mem_disp): Use sh_legitimate_index_p instead of
8566         CONST_OK_FOR_Kxx.
8567         Add new peepholes for HImode displacement addressing.
8569 2012-04-11  Oleg Endo  <olegendo@gcc.gnu.org>
8571         * config/sh/sh.h (SIDI_OFF): Remove.
8572         * config/sh/sh.md: Use gen_highpart and gen_lowpart to access
8573         DImode subregs instead of gen_rtx_REG or simplifly_gen_subreg
8574         or operand_subword.
8576 2012-04-11  Eric Botcazou  <ebotcazou@adacore.com>
8578         PR target/52624
8579         * doc/extend.texi (Other Builtins): Document __builtin_bswap16.
8580         (PowerPC AltiVec/VSX Built-in Functions): Remove it.
8581         * doc/md.texi (Standard Names): Add bswap.
8582         * builtin-types.def (BT_UINT16): New primitive type.
8583         (BT_FN_UINT16_UINT16): New function type.
8584         * builtins.def (BUILT_IN_BSWAP16): New.
8585         * builtins.c (expand_builtin_bswap): Add TARGET_MODE argument.
8586         (expand_builtin) <BUILT_IN_BSWAP16>: New case.  Pass TARGET_MODE to
8587         expand_builtin_bswap.
8588         (fold_builtin_bswap): Add BUILT_IN_BSWAP16 case.
8589         (fold_builtin_1): Likewise.
8590         (is_inexpensive_builtin): Likewise.
8591         * optabs.c (expand_unop): Deal with bswap in HImode specially.  Add
8592         missing bits for bswap to libcall code.
8593         * tree.c (build_common_tree_nodes): Build uint16_type_node.
8594         * tree.h (enum tree_index): Add TI_UINT16_TYPE.
8595         (uint16_type_node): New define.
8596         * config/rs6000/rs6000-builtin.def (RS6000_BUILTIN_BSWAP_HI): Delete.
8597         * config/rs6000/rs6000.c (rs6000_expand_builtin): Remove handling of
8598         above builtin.
8599         (rs6000_init_builtins): Likewise.
8600         * config/rs6000/rs6000.md (bswaphi2): Add TARGET_POWERPC predicate.
8602 2012-04-11  Tristan Gingold  <gingold@adacore.com>
8604         * doc/extend.texi (Type Attributes): Move paragraph.
8606 2012-04-11  Manuel López-Ibáñez  <manu@gcc.gnu.org>
8608         PR 24985
8609         * diagnostic.h (show_caret): Declare.
8610         (caret_max_width): Declare.
8611         (diagnostic_show_locus): Declare.
8612         * diagnostic.c (diagnostic_initialize): Initialize to false.
8613         (diagnostic_show_locus): New.
8614         (diagnostic_report_diagnostic): Call it.
8615         (getenv_columns): New.
8616         (adjust_line): New.
8617         (diagnostic_set_caret_max_width): New.
8618         * input.c (read_line): New.
8619         (location_get_source_line): New.
8620         * input.h (location_get_source_line): Declare.
8621         * toplev.c (general_init): Initialize show_caret from options.
8622         * dwarf2out.c (gen_producer_string): Handle fdiagnostics-show-caret.
8623         * opts.c (common_handle_option): Likewise.
8624         * pretty-print.h (pp_get_prefix): New.
8625         (pp_base_get_prefix): New.
8626         * common.opt (fdiagnostics-show-caret): New option.
8627         * doc/invoke.texi (fdiagnostics-show-caret): Document it.
8629 2012-04-11  Richard Guenther  <rguenther@suse.de>
8631         PR rtl-optimization/52881
8632         * ifcvt.c (find_if_case_2): Avoid speculating loop latches.
8634 2012-04-11  Richard Guenther  <rguenther@suse.de>
8636         PR tree-optimization/52912
8637         * tree-ssa-threadupdate.c (thread_block): Tell the cfg
8638         manipulation code we are threading through a loop header
8639         to an exit destination.
8641 2012-04-10  Manuel López-Ibáñez  <manu@gcc.gnu.org>
8643         * tree.h (warn_if_unused_value): Move declaration from here.
8644         * stmt.c (warn_if_unused_value): Move definition from here.
8646 2012-04-10  Michael Matz  <matz@suse.de>
8648         * tree-vectorizer.h (_loop_vec_info.strided_stores): Rename to
8649         grouped_stores.
8650         (LOOP_VINFO_STRIDED_STORES): Rename to LOOP_VINFO_GROUPED_STORES.
8651         (struce _bb_vec_info.strided_stores): Rename to grouped_stores.
8652         (BB_VINFO_STRIDED_STORES): Rename to BB_VINFO_GROUPED_STORES.
8653         (STMT_VINFO_STRIDED_ACCESS): Rename to STMT_VINFO_GROUPED_ACCESS.
8654         (vect_strided_store_supported): Rename to vect_grouped_store_supported.
8655         (vect_strided_load_supported): Rename to vect_grouped_load_supported.
8656         (vect_transform_strided_load): Rename to vect_transform_grouped_load.
8657         (vect_record_strided_load_vectors): Rename to
8658         vect_record_grouped_load_vectors.
8659         * tree-vect-data-refs.c (vect_update_misalignment_for_peel):
8660         Rename use of above macros.
8661         (vect_verify_datarefs_alignment): Ditto.
8662         (vector_alignment_reachable_p): Ditto.
8663         (vect_peeling_hash_get_lowest_cost): Ditto.
8664         (vect_enhance_data_refs_alignment): Ditto.
8665         (vect_analyze_group_access): Ditto and rename stride to groupsize.
8666         (vect_analyze_data_ref_access): Rename "strided" to "grouped".
8667         (vect_strided_store_supported): Rename to vect_grouped_store_supported.
8668         (vect_strided_load_supported): Rename to vect_grouped_load_supported.
8669         (vect_transform_strided_load): Rename to vect_transform_grouped_load.
8670         (vect_record_strided_load_vectors): Rename to
8671         vect_record_grouped_load_vectors.
8672         * tree-vect-loop.c (new_loop_vec_info): Rename use of above macros.
8673         (destroy_loop_vec_info): Ditto.
8674         (vect_transform_loop): Ditto and rename strided_store to grouped_store.
8675         * tree-vect-slp.c (vect_build_slp_tree): Rename use of above macros.
8676         (vect_analyze_slp): Ditto.
8677         (new_bb_vec_info): Ditto.
8678         (destroy_bb_vec_info): Ditto.
8679         (vect_schedule_slp_instance): Ditto and rename strided_store to
8680         grouped_store.
8681         * tree-vect-stmts.c (vect_cost_strided_group_size): Rename to
8682         vect_cost_group_size.
8683         (vect_model_store_cost): Rename use of above macros and call
8684         to vect_cost_strided_group_size.
8685         (vect_model_load_cost): Ditto.
8686         (vectorizable_store): Ditto, rename strided_store to grouped_store
8687         and calls to renamed tree-vectorizer.h functions.
8688         (vectorizable_load): Ditto.
8689         (vect_transform_stmt): Rename use of above macros and strided_store
8690         to grouped_store.
8692 2012-04-10  Jan Hubicka  <jh@suse.cz>
8694         * cgraph.h: Remove misledaing comment on ipa-ref.h.
8695         (symtab_type): New enum.
8696         (symtab_node): New structure.
8697         (cgraph_node, varpool_node): Add symbol base type.
8698         (cgraph, varpool): New accestor functions.
8699         * cgraph.c (cgraph_create_node_1): Set symbol type.
8700         * varpool.c (varpool_node): Set symbol type.
8702 2012-04-10  Ulrich Weigand  <ulrich.weigand@linaro.org>
8703             Richard Sandiford  <rdsandiford@googlemail.com>
8705         * fwprop.c (propagate_rtx): Also set PR_CAN_APPEAR for subregs.
8707 2012-04-10  Richard Guenther  <rguenther@suse.de>
8709         PR middle-end/52888
8710         * gimple-low.c (gimple_check_call_args): Properly account for
8711         compatible aggregate types.
8713 2012-04-10  Richard Guenther  <rguenther@suse.de>
8715         * toplev.h (tree_rest_of_compilation): Remove.
8716         * tree-optimize.c (tree_rest_of_compilation): Likewise.
8717         * cgraph.h (tree_rest_of_compilation): Declare.
8718         * tree-optimize.c (tree_rest_of_compilation): Move ...
8719         * cgraphunit.c (tree_rest_of_compilation): ... here.
8720         * cgraph.c (cgraph_add_new_function): Adjust.
8721         * Makefile.in (tree-optimize.o): Adjust.
8722         (cgraphunit.o): Likewise.
8724 2012-04-10  Ulrich Weigand  <ulrich.weigand@linaro.org>
8726         PR tree-optimization/52870
8727         * tree-vect-patterns.c (vect_recog_widen_mult_pattern): Verify that
8728         presumed pattern statement is within the same loop or basic block.
8730 2012-04-10  Tristan Gingold  <gingold@adacore.com>
8732         * gengtype.c (main): Make uintptr_t a known type.
8734 2012-04-10  Richard Guenther  <rguenther@suse.de>
8736         * tree-pass.h (tree_lowering_passes): Remove.
8737         * tree-optimize.c (tree_lowering_passes): Remove.
8738         * cgraph.c (cgraph_add_new_function): Inline relevant parts
8739         of tree_lowering_passes, avoid redundant call of early local passes.
8740         * cgraphunit.c (cgraph_lower_function): Fold into ...
8741         (cgraph_analyze_function): ... its single caller.  Inline
8742         relevant parts of tree_lowering_passes.
8744 2012-04-09  H.J. Lu  <hongjiu.lu@intel.com>
8746         PR other/52777
8747         * config/pa/pa.opt: Remove SIO and GNU_LD.
8749 2012-04-09  Jan Hubicka  <jh@suse.cz>
8751         PR lto/52722
8752         PR lto/51765
8753         PR lto/52634
8754         * lto-cgraph.c (compute_ltrans_boundary): When alias is in the
8755         boundary, add its target too.
8756         * lto.c (add_references_to_partition): Add also aliased nodes.
8757         (add_cgraph_node_to_partition,
8758         add_varpool_node_to_partition): Work on nodes, not functions/variables;
8759         when adding alias, add also the aliased object.
8761 2012-04-09  Uros Bizjak  <ubizjak@gmail.com>
8763         PR target/52883
8764         * config/i386/predicates.md (x86_64_zext_general_operand): Prevent
8765         VOIDmode immediate operands.
8766         * config/i386/constraints.md (Wz): New constraint.
8767         * config/i386/i386.md (*zero_extendsidi2_rex64): Use Wz instead of Z.
8769 2012-04-09  Eric Botcazou  <ebotcazou@adacore.com>
8771         PR target/52717
8772         * config/sparc/sparc.c (sparc_file_end): Set TREE_PUBLIC explicitly on
8773         the DECL generated for the special GOT helper.
8775 2012-04-09  Oleg Endo  <olegendo@gcc.gnu.org>
8777         * config/sh/constraints.md: Update list of constraints in
8778         comment block.
8779         (Sr0): Remove unused memory constraint.
8781 2012-04-08  Manuel López-Ibáñez  <manu@gcc.gnu.org>
8783         * tree-pretty-print.h: Update comment.
8785 2012-04-08  Oleg Endo  <olegendo@gcc.gnu.org>
8787         * config/sh/sh.md: Use braced string notation where applicable.
8788         (*prefetch_i4, prefetch_m2a): Merge into ...
8789         (*prefetch): ... this new insn.
8791 2012-04-07  Oleg Endo  <olegendo@gcc.gnu.org>
8793         * config/sh/sh.h (high_life_started): Remove
8794         * config/sh/predicates.md (general_movdst_operand): Use
8795         'reload_in_progress' instead of 'high_life_started'.
8796         * config/sh/sh.md (divsi_inv_call, *divsi_inv_call_combine,
8797         divsi_inv_fp): Likewise.
8799 2012-04-07  Oleg Endo  <olegendo@gcc.gnu.org>
8801         * config/sh/sh-protos.h (prepare_move_operands): Return void
8802         instead of int.
8803         * config/sh/sh.c (prepare_move_operands): Likewise.
8804         * config/sh/sh.md: Remove return value checks of prepare_move_operands.
8806 2012-04-07  Oleg Endo  <olegendo@gcc.gnu.org>
8808         * config/sh/sh-protos.h (fp_int_operand, symbol_ref_operand,
8809         general_movsrc_operand, general_movdst_operand, arith_reg_operand,
8810         fp_arith_reg_operand, arith_operand, arith_reg_or_0_operand,
8811         logical_operand, fpscr_operand, fpul_operand, expand_fp_branch,
8812         commutative_float_operator, noncommutative_float_operator,
8813         sh_handle_pragma): Remove.
8815 2012-04-06  Sandra Loosemore  <sandra@codesourcery.com>
8817         * doc/invoke.texi:  Clean up Texinfo markup throughout the file.
8818         Use @option markup on command-line options.  Use @samp markup on
8819         literal keywords to options.  Use @code markup on code fragments.
8820         Use other markup in preference to quotation marks in the text.
8821         Add markup to some passages without any.
8823 2012-04-06  Mike Stump  <mikestump@comcast.net>
8825         * gimple-fold.c (gimple_fold_stmt_to_constant_1): Avoid warning.
8827 2012-04-06  Oleg Endo  <olegendo@gcc.gnu.org>
8829         * config/sh/sh.c (hi_const): Remove.
8830         (find_barrier, sh_reorg): Use satisfies_constraint_I16 instead
8831         of hi_const.
8833 2012-04-06  Oleg Endo  <olegendo@gcc.gnu.org>
8835         * config/sh/sh-protos.h (sh_expand_t_scc): Change return type from int
8836         to bool.
8837         * config/sh/sh.c (sh_expand_t_scc): Likewise.
8838         * config/sh/sh.md (cstoresi4, cstoredi4): Remove GET_CODE checks before
8839         calling sh_expand_t_scc.
8841 2012-04-06  Oleg Endo  <olegendo@gcc.gnu.org>
8843         * config/sh/sh-protos.h (fp_zero_operand, fp_one_operand,
8844         nonpic_symbol_mentioned_p, expand_block_move, expand_ashiftrt,
8845         sh_dynamicalize_shift_p, gen_shl_and, gen_shl_sext, system_reg_operand,
8846         reg_unused_after, sh_can_redirect_branch, sh_need_epilogue, fldi_ok,
8847         sh_hard_regno_rename_ok, sh_cfun_interrupt_handler_p,
8848         sh_cfun_resbank_handler_p, sh_attr_renesas_p, sh_cfun_attr_renesas_p,
8849         check_use_sfunc_addr, sh_contains_memref_p, sh_loads_bankedreg_p,
8850         sh2a_is_function_vector_call): Use bool as return type.
8851         (sh_pass_in_reg_p): Remove.
8852         * config/sh/sh.c (broken_move, mova_p, noncall_uses_reg, high_pressure,
8853         flow_dependent_p, sh2a_function_vector_p, expand_block_move,
8854         expand_ashiftrt, sh_dynamicalize_shift_p, gen_shl_and, gen_shl_sext,
8855         sh_need_epilogue, sh2a_is_function_vector_call, sh_attr_renesas_p,
8856         sh_cfun_attr_renesas_p, sh_cfun_interrupt_handler_p,
8857         sh_cfun_resbank_handler_p, system_reg_operand, fp_zero_operand,
8858         fp_one_operand, fldi_ok, reg_unused_after, sh_can_redirect_branch,
8859         sh_hard_regno_rename_ok, check_use_sfunc_addr, sh_contains_memref_p,
8860         sh_loads_bankedreg_p): Use bool as return type.
8861         (nonpic_symbol_mentioned_p): Use bool as return type.  Remove
8862         'register' modifier.
8864 2012-04-06  Matt Turner  <mattst88@gmail.com>
8866         * doc/install.texi: Correct typo "-mno-lsc" -> "-mno-llsc".
8868 2012-04-06  Eric Botcazou  <ebotcazou@adacore.com>
8870         * config/ia64/ia64.c (ia64_load_pair_ok): Return 0 if the second member
8871         of the destination isn't also a FP_REGS register.
8873 2012-04-05  Teresa Johnson  <tejohnson@google.com>
8874             H.J. Lu  <hongjiu.lu@intel.com>
8876         * config/i386/i386.h (ix86_tune_indices): Add X86_TUNE_LCP_STALL.
8877         * config/i386/i386.md (move immediate to memory peephole2):
8878         Add cases for HImode move when LCP stall avoidance is needed.
8879         * config/i386/i386.c (initial_ix86_tune_features): Initialize
8880         X86_TUNE_LCP_STALL entry.
8882 2012-04-05  Uros Bizjak  <ubizjak@gmail.com>
8884         PR target/52882
8885         * config/i386/i386.c (ix86_decompose_address): Allow VOIDmode
8886         CONST_INT operands, zero-extended with AND.
8888 2012-04-05  Oleg Endo  <olegendo@gcc.gnu.org>
8890         PR target/50751
8891         * config/sh/sh.c (sh_find_mov_disp_adjust): Take machine_mode as the
8892         first argument instead of mode size.  Move displacement calculations
8893         to ...
8894         (mov_insn_size, max_mov_insn_displacement, mov_insn_alignment_mask):
8895         ... these new functions.
8896         (disp_adjust): Remove max_mov_disp field.
8897         (sh_legitimate_index_p): Use max_mov_insn_displacement and
8898         mov_insn_alignment_mask.
8899         (sh_address_cost): Use max_mov_insn_displacement.
8901 2012-04-05  Andrew Stubbs  <ams@codesourcery.com>
8903         * config/arm/arm.md (arch): Add neon_onlya8 and neon_nota8.
8904         (arch_enabled): Handle new arch types.
8905         (one_cmpldi2): Add NEON support.
8907 2012-04-05  Richard Guenther  <rguenther@suse.de>
8909         * gimple.c (walk_gimple_op): Compute val_only for the LHS
8910         of an assigment in the canonical way, avoiding is_gimple_mem_rhs.
8911         (is_gimple_mem_rhs, is_gimple_reg_rhs, is_gimple_stmt): Move ...
8912         * gimplify.c (is_gimple_mem_rhs, is_gimple_reg_rhs, is_gimple_stmt):
8913         ... here and make static.
8914         * gimple.h (is_gimple_mem_rhs, is_gimple_reg_rhs, is_gimple_stmt):
8915         Remove.
8917 2012-04-05  Richard Guenther  <rguenther@suse.de>
8919         * tree-ssa-dse.c (dse_optimize_stmt): Remember the stmt
8920         basic-block before removing it.
8922 2012-04-05  Richard Guenther  <rguenther@suse.de>
8924         * tree-ssanames.c (release_dead_ssa_names): Compact the SSA
8925         version namespace as we release the freelist.
8927 2012-04-05  Richard Guenther  <rguenther@suse.de>
8929         * tree-nrv.c (tree_nrv): Release VDEFs.
8930         * tree-sra.c (sra_modify_constructor_assign): Likewise.
8931         (sra_modify_assign): Likewise.
8932         * tree-vect-stmts.c (vect_remove_stores): Likewise.
8933         * tree-vect-loop.c (vect_transform_loop): Likewise.
8934         * tree-ssa-dom.c (optimize_stmt): Likewise.
8935         * tree-vect-slp.c (vect_schedule_slp): Likewise.
8936         * tree-ssa-math-opts.c (execute_cse_sincos): Likewise.
8938 2012-04-05  Richard Guenther  <rguenther@suse.de>
8940         * gimple-iterator.c (gsi_remove): Return whether EH edges need to be
8941         cleanup.
8942         * gimple.h (gsi_remove): Adjust.
8943         * tree-ssa-operands.c (unlink_stmt_vdef): Optimize.
8944         * tree-ssa-dom.c (optimize_stmt): Use gsi_remove result.
8945         * tree-ssa-dse.c (dse_optimize_stmt): Likewise.
8946         * tree-ssa-forwprop.c (remove_prop_source_from_use): Likewise.
8947         * tree-ssa-math-opts.c (execute_optimize_widening_mul): Likewise.
8948         * tree-ssa-pre.c (eliminate): Likewise.
8950 2012-04-04  Mike Stump  <mikestump@comcast.net>
8952         * doc/rtl.texi (const_double): Document as sign-extending.
8953         * expmed.c (expand_mult): Ensure we don't use shift incorrectly.
8954         * emit-rtl.c (immed_double_int_const): Refine to state the
8955         value is signed.
8956         * simplify-rtx.c (mode_signbit_p): Add a fixme for wider than
8957         CONST_DOUBLE integers.
8958         (simplify_const_unary_operation, UNSIGNED_FLOAT): Ensure no
8959         negative values are converted.  Fix conversions bigger than
8960         HOST_BITS_PER_WIDE_INT.
8961         (simplify_binary_operation_1): Ensure we don't use shift incorrectly.
8962         (simplify_immed_subreg): Sign-extend CONST_DOUBLEs.
8963         * explow.c (plus_constant_mode): Add.
8964         (plus_constant): Implement with plus_constant_mode.
8965         * rtl.h (plus_constant_mode): Add.
8967 2012-04-04  Richard Guenther  <rguenther@suse.de>
8969         PR tree-optimization/52808
8970         * tracer.c (tail_duplicate): Do not tail-duplicate loop header blocks.
8971         * Makefile.in (tracer.o): Depend on $(CFGLOOP_H).
8973 2012-04-04  Tristan Gingold  <gingold@adacore.com>
8975         * expr.c (expand_expr_real_2): Handle larger sizetype in
8976         POINTER_PLUS_EXPR.
8978 2012-04-03  Kaz Kojima  <kkojima@gcc.gnu.org>
8980         * config/sh/t-sh (MULTILIB_MATCHES): Match m2a-single-only
8981         to m2a-single instead of m2e.
8983 2012-04-03  Eric Botcazou  <ebotcazou@adacore.com>
8985         * expr.c (get_bit_range): Add OFFSET parameter and adjust BITPOS.
8986         Change type of BITOFFSET to signed.  Make sure the lower bound of
8987         the computed range is non-negative by adjusting OFFSET and BITPOS.
8988         (expand_assignment): Adjust call to get_bit_range.
8990 2012-04-03  Sandeep Kumar Singh  <Sandeep.Singh2@kpitcummins.com>
8992         * h8300/h8300.c (h8300_current_function_monitor_function_p):
8993         New function. Added to check monitor functions.
8994         (h8300_option_override): Modified to generate error/warning
8995         messages for invalid combinations of different command line
8996         options.
8997         * h8300/h8300.md: Generate 'rte' for monitor functions. Do not
8998         save EXR on stack for monitor function in case of H8S target
8999         when "-mno-exr" is passed.
9000         * h8300/h8300-protos.h (h8300_current_function_monitor_function_p):
9001         Add prototype.
9002         * doc/invoke.texi: Document H8S options.
9004 2012-04-03  Tristan Gingold  <gingold@adacore.com>
9006         * configure.ac: Use GCC_AC_FUNC_MMAP_BLACKLIST instead
9007         of gcc_AC_FUNC_MMAP_BLACKLIST.
9008         * acinclude.m4 (gcc_AC_FUNC_MMAP_BLACKLIST): Remove.
9009         * Makefile.in (aclocal_deps): Add mmap.m4.
9010         * configure: Regenerate.
9011         * aclocal.m4: Regenerate.
9013 2012-04-03  Richard Guenther  <rguenther@suse.de>
9015         PR tree-optimization/52808
9016         * tracer.c (tail_duplicate): Return whether we have duplicated
9017         any block.
9018         (tracer): If we have duplicated any block, cleanup the CFG.
9019         * cfghooks.c (duplicate_block): If we duplicated a loop
9020         header but not its loop, destroy the loop because it now has
9021         multiple entries.
9022         * tree-ssa-threadupdate.c (thread_through_loop_header): Tell
9023         the cfg manipulation routines we are not creating a multiple
9024         entry loop.
9026 2012-04-03  Tristan Gingold  <gingold@adacore.com>
9028         * config/vms/vms-c.c (vms_pragma_nomember_alignment): Handle
9029         'byte' alignment.
9030         (vms_c_common_override_options): Allow parameterless variadic
9031         functions.
9033 2012-04-03  Jakub Jelinek  <jakub@redhat.com>
9035         PR tree-optimization/52835
9036         * tree-data-ref.c (build_rdg): Return NULL if
9037         compute_data_dependences_for_loop failed.
9039 2012-04-03  Eric Botcazou  <ebotcazou@adacore.com>
9041         * varasm.c (initializer_constant_valid_for_bitfield_p): Return true
9042         for REAL_CST as well.
9043         (output_constructor): Use RECORD_OR_UNION_TYPE_P predicate.
9044         In the bitfield case, if the value is a REAL_CST, convert it first to
9045         an INTEGER_CST.
9047 2012-04-02  H.J. Lu  <hongjiu.lu@intel.com>
9049         * config.gcc: Use i386/biarchx32.h instead of i386/biarch64.h
9050         for --with-abi={x32|mx32} or --with-multilib-list=mx32.
9051         (supported_defaults): Add abi for i[34567]86-*-* and x86_64-*-*.
9053         * config/i386/biarchx32.h: New.
9055 2012-04-02  Anatoly Sokolov  <aesok@post.ru>
9057         * config/arm/arm.h (PREFERRED_RELOAD_CLASS): Remove.
9058         * config/arm/arm.c (TARGET_PREFERRED_RELOAD_CLASS): Define.
9059         (arm_preferred_reload_class): New function.
9061 2012-04-02  Richard Guenther  <rguenther@suse.de>
9063         PR tree-optimization/52756
9064         * tree-ssa-threadupdate.c (def_split_header_continue_p): New function.
9065         (thread_through_loop_header): After threading through the loop latch
9066         remove the split part from the loop and clear further threading
9067         opportunities that would create a multiple entry loop.
9069 2012-04-02  Richard Guenther  <rguenther@suse.de>
9071         PR rtl-optimization/52800
9072         * cprop.c (execute_rtl_cprop): Call cleanup_cfg with
9073         CLEANUP_CFG_CHANGED.
9075 2012-04-02  Richard Guenther  <rguenther@suse.de>
9077         PR middle-end/52803
9078         * loop-init.c (gate_handle_loop2): Destroy loops here if
9079         we don't enter RTL loop optimizers.
9081 2012-04-02  Uros Bizjak  <ubizjak@gmail.com>
9083         Partially revert:
9084         2012-03-29  Richard Guenther  <rguenther@suse.de>
9086         * rtl.h (extended_count): Remove.
9087         * combine.c (extended_count): Remove.
9089 2012-04-02  Dodji Seketeli  <dodji@redhat.com>
9091         PR c++/40942
9092         * pt.c (more_specialized_fn):  Don't apply decay conversion to
9093         types of function parameters.
9095 2012-04-02  Tristan Gingold  <gingold@adacore.com>
9097         * ggc-page.c (PAGE_L1_SIZE, PAGE_L2_SIZE, LOOKUP_L1, LOOKUP_L2)
9098         (ggc_allocated_p, lookup_page_table_entry, set_page_table_entry)
9099         (alloc_page, init_ggc, clear_marks, struct ggc_pch_data)
9100         (ggc_pch_this_base): Use uintptr_t instead of size_t.
9102 2012-03-31  H.J. Lu  <hongjiu.lu@intel.com>
9104         PR bootstrap/52784
9105         * config/i386/i386.c (ix86_option_override_internal): Don't
9106         check TARGET_64BIT if TARGET_64BIT_DEFAULT is false.
9108 2012-03-31  Eric Botcazou  <ebotcazou@adacore.com>
9110         * tree-cfg.c (call_can_make_abnormal_goto): New predicate.
9111         (stmt_can_make_abnormal_goto): Use it.
9112         (is_ctrl_altering_stmt): Likewise.
9114 2012-03-30  Naveen H.S  <naveen.S@kpitcummins.com>
9115             Kaz Kojima  <kkojima@gcc.gnu.org>
9117         * config/sh/sh.c (push_regs): Skip banked registers when
9118         resbank attribute is specified.
9119         (sh_expand_epilogue): Likewise.
9121 2012-03-30  Richard Henderson  <rth@redhat.com>
9123         PR debug/52727
9124         * combine-stack-adj.c (prev_active_insn_bb): New.
9125         (next_active_insn_bb): New.
9126         (force_move_args_size_note): New.
9127         (combine_stack_adjustments_for_block): Use it.
9129 2012-03-30  Richard Henderson  <rth@redhat.com>
9131         * config/i386/i386.c (struct expand_vec_perm_d): Add one_operand_p.
9132         (ix86_expand_vector_init_duplicate): Initialize it.
9133         (expand_vec_perm_palignr): Likewise.
9134         (ix86_expand_vec_perm_const): Likewise.
9135         (ix86_vectorize_vec_perm_const_ok): Likewise.
9136         (expand_vec_perm_blend): Use it.
9137         (expand_vec_perm_vpermil): Likewise.
9138         (expand_vec_perm_pshufb): Likewise.
9139         (expand_vec_perm_1): Likewise.
9140         (expand_vec_perm_pshuflw_pshufhw): Likewise.
9141         (expand_vec_perm_interleave2): Likewise.
9142         (expand_vec_perm_vpermq_perm_1): Likewise.
9143         (expand_vec_perm_vperm2f128): Likewise.
9144         (expand_vec_perm_interleave3): Likewise.
9145         (expand_vec_perm_vperm2f128_vblend): Likewise.
9146         (expand_vec_perm_vpshufb2_vpermq): Likewise.
9147         (expand_vec_perm_vpshufb2_vpermq_even_odd): Likewise,.
9148         (expand_vec_perm_broadcast): Likewise.
9149         (expand_vec_perm_vpshufb4_vpermq2): Likewise.
9151 2012-03-30  Richard Henderson  <rth@redhat.com>
9153         * dwarf2out.c (gen_variable_die): Initialize off.
9155 2012-03-30  Tristan Gingold  <gingold@adacore.com>
9157         * config/vms/vms-f.c: New file.
9158         * config/vms/t-vms (vms-f.o): New rule.
9159         * config.gcc (*-*-*vms*): Define fortran_target_objs.
9161 2012-03-30  Richard Guenther  <rguenther@suse.de>
9163         PR tree-optimization/52754
9164         * tree-ssa-forwprop.c (forward_propagate_addr_expr_1): Only
9165         propagate arbitrary addresses into really plain dereferences.
9167 2012-03-30  Richard Guenther <rguenther@suse.de>
9169         PR middle-end/52772
9170         * except.c (emit_to_new_bb_before): Move loop updating ...
9171         (dw2_build_landing_pads): ... here.  Use a proper block for
9172         querying the loop father.
9174 2012-03-30  Tristan Gingold  <gingold@adacore.com>
9176         * config/ia64/ia64.c (ia64_section_type_flags): Remove
9177         common_object attribute handling.
9178         (SECTION_VMS_OVERLAY): Remove
9179         (ia64_vms_common_object_attribute): Replace abort with an assert.
9180         Do not set DECL_SECTION_NAME.
9181         (ia64_vms_output_aligned_decl_common): Handle common_object
9182         attribute.
9183         (ia64_vms_elf_asm_named_section): Remove.
9184         * config/ia64/vms.h (TARGET_ASM_NAMED_SECTION): Remove.
9186 2012-03-30  Richard Guenther  <rguenther@suse.de>
9188         PR middle-end/52786
9189         * double-int.c (rshift_double): Remove not needed cast.
9191 2012-03-30  Richard Guenther  <rguenther@suse.de>
9193         * tree-affine.h (print_aff): Remove.
9194         * tree-affine.c (print_aff): Make static.
9195         * tree-data-ref.h (access_matrix_get_index_for_parameter): Remove.
9196         (get_references_in_stmt): Likewise.
9197         (print_direction_vector): Likewise.
9198         (print_dir_vectors): Likewise.
9199         (print_dist_vectors): Likewise.
9200         (dump_subscript): Likewise.
9201         (dump_ddrs): Likewise.
9202         (dump_dist_dir_vectors): Likewise.
9203         (dump_data_references): Likewise.
9204         (dump_data_dependence_relation): Likewise.
9205         (dump_data_dependence_direction): Likewise.
9206         (dump_rdg_vertex): Likewise.
9207         (dump_rdg_component): Likewise.
9208         (debug_ddrs): Declare.
9209         (struct data_ref_loc_d): Move ...
9210         * tree-data-ref.c (struct data_ref_loc_d): ... here.
9211         (get_references_in_stmt): Make static.
9212         (dump_data_references): Likewise.
9213         (dump_subscript): Likewise.
9214         (print_direction_vector): Likewise.
9215         (print_dir_vectors): Likewise.
9216         (print_dist_vectors): Likewise.
9217         (dump_data_dependence_relation): Likewise.
9218         (dump_dist_dir_vectors): Likewise.
9219         (dump_ddrs): Likewise.
9220         (dump_rdg_vertex): Likewise.
9221         (dump_rdg_component): Likewise.
9222         (debug_ddrs): New function.
9223         (access_matrix_get_index_for_parameter): Remove.
9225 2012-03-30  Tristan Gingold  <gingold@adacore.com>
9227         * config/vms/vms.c (VMS_CRTL_FLOAT32): Rename.
9228         (VMS_CRTL_FLOAT64, VMS_CRTL_FLOAT64_VAXD): New.
9229         (VMS_CRTL_FLOAT128, VMS_CRTL_DPML, VMS_CRTL_NODMPL)
9230         (VMS_CRTL_32ONLY, VMS_CRTL_G_MASK, VMS_CRTL_G_NONE)
9231         (VMS_CRTL_GA, VMS_CRTL_GL, VMS_CRTL_FLOATV2): New.
9232         (vms_patch_builtins): Handle new flags
9233         * config/vms/vms-crtlmap.map: Completed using nm on
9234         c and math system libraries.
9235         * config/vms/make-crtlmap.awk: Handle any number of flags.
9237 2012-03-30  Martin Jambor  <mjambor@suse.cz>
9239         * tree-ssa-ccp.c (insert_clobbers_for_var): Do not assert that there
9240         is a builtin_stack_save in a dominating BB.
9242 2012-03-29  Uros Bizjak  <ubizjak@gmail.com>
9244         * config/i386/sse.md (avx_h<plusminus_insn>v4df3): Fix results
9245         crossing 128bit lane boundary.
9247 2012-03-29  Vladimir Makarov  <vmakarov@redhat.com>
9249         * ira-color.c (setup_left_conflict_sizes_p): Process all
9250         conflicting objects.
9252 2012-03-29  Jakub Jelinek  <jakub@redhat.com>
9254         PR tree-optimization/52760
9255         * tree-vect-slp.c (vect_get_constant_vectors): Convert constant_p
9256         shift count for {L,R}{SHIFT,ROTATE}_EXPR to TREE_TYPE (vector_type).
9258 2012-03-29  Richard Guenther  <rguenther@suse.de>
9260         * cgraph.h (cgraph_materialize_all_clones): Remove.
9261         (reset_inline_failed): Likewise.
9262         * cgraphunit.c (cgraph_materialize_all_clones): Make static.
9263         * cgraphbuild.c (reset_inline_failed): Remove.
9264         * rtl.h (cse_main): Remove.
9265         (extended_count): Likewise.
9266         * cse.c (dump_class): Mark as DEBUG_FUNCTION.
9267         (cse_main): Make static.
9268         * combine.c (extended_count): Remove.
9269         (dump_combine_stats): Mark as DEBUG_FUNCTION.
9270         * basic-block.h (reorder_basic_blocks): Remove.
9271         * bb-reorder.c (reorder_basic_blocks): Make static.
9272         * Makefile.in (dse.o): Remove dse.h dependency.
9273         * dse.h: Remove.
9274         * dse.c (gate_dse): Remove.
9275         (clear_alias_mode_eq): Likewise.
9276         (clear_alias_mode_hash): Likewise.
9277         (dse_record_singleton_alias_set): Likewise.
9278         (dse_invalidate_singleton_alias_set): Likewise.
9280 2012-03-29  H.J. Lu  <hongjiu.lu@intel.com>
9282         * config/linux-android.h (ANDROID_STARTFILE_SPEC): Use
9283         crtbegin_so%O%s for -shared.
9284         (ANDROID_ENDFILE_SPEC): Use crtend_so%O%s for -shared.
9286 2012-03-29  Richard Guenther  <rguenther@suse.de>
9288         * tree-flow.h (struct pre_expr_d): Remove forward declaration.
9289         (add_to_value): Remove.
9290         (print_value_expressions): Likewise.
9291         * tree-ssa-pre.c (add_to_value): Make static.
9292         (print_value_expressions): Likewise.
9293         * gimple.h (gimple_adjust_this_by_delta): Remove.
9294         * gimple-fold.c (gimple_adjust_this_by_delta): Likewise.
9296 2012-03-29  Richard Guenther  <rguenther@suse.de>
9298         PR middle-end/50708
9299         * double-int.h (rshift_double): Remove.
9300         * double-int.c (lshift_double): Use absu_hwi to make count positive.
9301         (rshift_double): Make static, take unsigned count argument,
9302         remove handling of negative count argument.
9303         (double_int_rshift): Dispatch to lshift_double.
9305 2012-03-28  H.J. Lu  <hongjiu.lu@intel.com>
9307         * config/i386/biarch64.h (TARGET_64BIT_DEFAULT): Add
9308         OPTION_MASK_ABI_64.
9310         * config/i386/gnu-user64.h (SPEC_64): Support TARGET_BI_ARCH == 2.
9311         (SPEC_X32): Likewise.
9312         (MULTILIB_DEFAULTS): Likewise.
9314         * config/i386/i386.c (isa_opts): Remove -m64.
9315         (ix86_target_string): Properly handle -m32/-m64/-mx32.
9316         (ix86_option_override_internal): Properly
9317         set OPTION_MASK_ISA_64BIT and OPTION_MASK_ISA_X32 as well as
9318         handle -m32, -m64 and -mx32.
9320         * config/i386/i386.h (TARGET_X32): Replace OPTION_ISA_X32
9321         with OPTION_ABI_X32.  Moved after TARGET_LP64.
9322         (TARGET_LP64): Changed to OPTION_ABI_64.
9324         * config/i386/i386.opt (m64): Replace ISA_64BIT with ABI_64.
9325         (mx32): Replace ISA_X32 with ABI_X32.
9327 2012-03-28  Eric Botcazou  <ebotcazou@adacore.com>
9329         * tree.c (tree_size) <VECTOR_CST>: New case.
9331 2012-03-28  Uros Bizjak  <ubizjak@gmail.com>
9333         * config/i386/i386.c (ix86_modes_tieable_p): Handle 32bit AVX modes.
9334         (ix86_expand_vector_move_misalign): Remove un-needed gen_lowpart calls.
9336 2012-03-28  Jakub Jelinek  <jakub@redhat.com>
9338         PR middle-end/52691
9339         * tree-ssa-ccp.c (optimize_stdarg_builtin): Optimize
9340         __builtin_va_start to __builtin_next_arg if the latter is
9341         builtin_decl_explicit_p rather than when it is not.
9343         PR middle-end/52750
9344         * tree-vect-generic.c (vector_element): Perform multiplication
9345         for pos in bitsizetype type instead of idx type.
9347 2012-03-28  Richard Guenther  <rguenther@suse.de>
9349         * loop-init.c (loop_optimizer_init): If loops are preserved
9350         perform incremental initialization of required loop features.
9351         (loop_optimizer_finalize): If loops are to be preserved only
9352         clean up optional loop features.
9353         (rtl_loop_done): Forcefully free loops here.
9354         * cgraph.c (cgraph_release_function_body): Forcefully free loops.
9355         * cfgexpand.c (expand_gimple_cond): Properly add new basic-blocks
9356         to existing loops.
9357         (construct_init_block): Likewise.
9358         (construct_exit_block): Likewise.
9359         (gimple_expand_cfg): Clear LOOP_CLOSED_SSA loop state.  Cleanup
9360         the CFG after expanding.
9361         * cfgloop.c (verify_loop_structure): Calculate or verify dominators.
9362         If we needed to calculate them, free them afterwards.
9363         * tree-pass.h (PROP_loops): New define.
9364         * tree-ssa-loop.c (pass_tree_loop_init): Provide PROP_loops.
9365         * basic-block.h (CLEANUP_CFG_CHANGED): New.
9366         * cfgcleanup.c (merge_blocks_move): Protect loop latches.
9367         (cleanup_cfg): If we did something and have loops around, fix them up.
9368         * cse.c (rest_of_handle_cse_after_global_opts): Call cleanup_cfg
9369         with CLEANUP_CFG_CHANGED.
9370         * cfghooks.c (merge_blocks): If we merge a loop header into
9371         its predecessor, update the loop structure.
9372         (duplicate_block): If we copy a loop latch, adjust loop state
9373         to note we may have multiple latches.
9374         (delete_basic_block): Mark loops for fixup if we remove a loop.
9375         * cfganal.c (forwarder_block_p): Protect loop latches, headers
9376         and preheaders.
9377         * cfgrtl.c (rtl_can_merge_blocks): Protect loop latches.
9378         (cfg_layout_can_merge_blocks_p): Likewise.
9379         * cprop.c (bypass_block): If we create a loop with multiple
9380         entries, mark it for removal.
9381         * except.c (emit_to_new_bb_before): Add the new basic-block
9382         to existing loops.
9383         * tree-eh.c (lower_resx): Likewise.
9384         * omp-low.c (finalize_task_copyfn): Do not copy PROP_loops.
9385         (expand_omp_taskreg): Likewise.
9386         * tree-inline.c (initialize_cfun): Likewise.
9387         * tree-mudflap.c (add_bb_to_loop): Prototype.
9388         (mf_build_check_statement_for): Properly add new basic-blocks
9389         to existing loops.
9390         * tree-ssa-threadupdate.c (thread_block): Mark loops for fixup
9391         if we remove a loop.
9392         (thread_through_loop_header): Likewise.
9393         * trans-mem.c (tm_log_emit_save_or_restores): Properly add
9394         new basic-blocks to existing loops.
9395         (expand_transaction): Likewise.
9396         * Makefile.in (except.o): Add $(CFGLOOP_H).
9397         (expr.o): Likewise.
9398         (cgraph.o): Likewise.
9399         (cprop.o): Likewise.
9400         (cfgexpand.o): Likewise.
9401         (cfganal.o): Likewise.
9402         (trans-mem.o): Likewise.
9403         (tree-eh.o): Likewise.
9405 2012-03-28  Georg-Johann Lay  <avr@gjlay.de>
9407         PR target/52692
9408         * config/avr/avr.c (TARGET_BUILTIN_DECL): New define.
9409         (avr_builtin_decl): New static function.
9410         (struct avr_builtin_description, avr_bdesc): Move up.
9411         Add GTY marker. Add field fndecl. Remove redundant field id.
9412         (avr_init_builtins): Initialize avr_bdesc[ID].fndecl.
9413         (avr_expand_builtin): Code cleanup because .id is removed.
9415 2012-03-28  Georg-Johann Lay  <avr@gjlay.de>
9417         PR target/52737
9418         * config.gcc (tm_file): Remove avr/multilib.h.
9420         * doc/invoke.texi (AVR Options): Adjust documentation of -mtiny-stack.
9422         * config/avr/genmultilib.awk: Remove code to generate multilib.h.
9423         (BEGIN): Use -msp8 as multilib option instead of -mtiny-stack.
9424         * config/avr/t-avr: Remove generation of multilib.h.
9425         * config/avr/t-multilib: Regenerate.
9426         * config/avr/multilib.h: Remove.
9427         * config/avr/avr.opt (-msp8): New option.
9428         (avr_sp8): New variable.
9429         * config/avr/driver-avr.c (avr_device_to_sp8): New function.
9430         * config/avr/avr.h (AVR_HAVE_SPH): New define.
9431         (AVR_HAVE_8BIT_SP): Also set by avr_sp8 i.e. -msp8.
9432         (avr_device_to_sp8): New prototype.
9433         (EXTRA_SPEC_FUNCTIONS): Add { "device_to_sp8", avr_device_to_sp8 }
9434         (DRIVER_SELF_SPECS): New define.
9435         * config/avr/avr-c.c (avr_cpu_cpp_builtins): New built-in defines:
9436         __AVR_SP8__, __AVR_HAVE_SPH__.
9437         * config/avr/avr.c (output_movhi): Use AVR_HAVE_SPH instead of
9438         AVR_HAVE_8BIT_SP to decide if SP_H is present.
9439         (avr_file_start): Ditto.
9441 2012-03-28  Jakub Jelinek  <jakub@redhat.com>
9443         PR target/52736
9444         * config/i386/sse.md (sse2_loadlpd splitter): Use offset 0
9445         instead of 8 in adjust_address.
9447 2012-03-27  Aurelien Buhrig  <aurelien.buhrig.gcc@gmail.com>
9449         PR middle-end/51893
9450         * expmed.c (store_bit_field_1): Fix wordnum value for big-endian
9451         targets.
9453 2012-03-27  Oleg Endo  <olegendo@gcc.gnu.org>
9455         PR target/50751
9456         * config/sh/sh.c (sh_legitimize_address, sh_legitimize_reload_address):
9457         Rearrange conditional logic.  Move displacement address calculations
9458         to ...
9459         (sh_find_mov_disp_adjust): ... this new function.
9461 2012-03-27  H.J. Lu  <hongjiu.lu@intel.com>
9463         * config/arm/arm.opt (mapcs): Remove MaskExists.
9464         * config/cris/linux.opt (mno-gotplt): Likewise.
9465         * config/i386/i386.opt (mhard-float): Likewise.
9466         (msse4): Likewise.
9467         (mno-sse4): Likewise.
9468         * config/m68k/m68k.opt (mhard-float): Likewise.
9469         * config/mep/mep.op (mcop32): Likewise.
9470         * config/pa/pa-hpux.opt (msio): Likewise.
9471         * config/pa/pa64-hpux.opt (mgnu-ld): Likewise.
9472         * config/picochip/picochip.opt (mlittle): Likewise.
9473         * config/sh/sh.opt (mrenesas): Likewise.
9474         * config/sparc/long-double-switch.opt (mlong-double-128): Likewise.
9475         * config/sparc/sparc.opt (mhard-float): Likewise.
9476         * config/v850/v850.opt (mv850es): Likewise.
9477         * config/vax/vax.opt (mg-float): Likewise.
9479 2012-03-27  Martin Jambor  <mjambor@suse.cz>
9481         PR middle-end/52693
9482         * tree-sra.c (sra_modify_assign): Do not call
9483         load_assign_lhs_subreplacements when working with an unscalarizable
9484         region.
9486 2012-03-27  Uros Bizjak  <ubizjak@gmail.com>
9488         PR target/52698
9489         * config/i386/i386-protos.h (ix86_legitimize_reload_address):
9490         New prototype.
9491         * config/i386/i386.h (LEGITIMIZE_RELOAD_ADDRESS): New define.
9492         * config/i386/i386.c: Include reload.h.
9493         (ix86_legitimize_reload_address): New function.
9495 2012-03-27  H.J. Lu  <hongjiu.lu@intel.com>
9497         * opth-gen.awk: Allocated a bit for Mask and InverseMask if it
9498         hasn't been allocated.  Define a target macro for Mask and
9499         InverseMask if it hasn't been defined.  Remove MaskExists handling.
9501         * doc/options.texi: Remove MaskExists.
9503 2012-03-27  Chung-Lin Tang  <cltang@codesourcery.com>
9505         PR target/52667
9506         * config/sh/sh.c (find_barrier): Add equality check of last_got
9507         to avoid going above orig insn. Update comments.
9509 2012-03-27  Richard Guenther  <rguenther@suse.de>
9511         PR middle-end/52720
9512         * fold-const.c (try_move_mult_to_index): Handle &x.array more
9513         explicitely.
9515 2012-03-27  Eric Botcazou  <ebotcazou@adacore.com>
9517         * expmed.c (store_bit_field): Assert that BITREGION_START is a multiple
9518         of a unit before computing the offset in units.
9519         * expr.c (get_bit_range): Return the null range if the enclosing record
9520         is part of a larger bit field.
9522 2012-03-27  Tristan Gingold  <gingold@adacore.com>
9524         * config/ia64/vms.h (CASE_VECTOR_MODE): Define.
9525         * config/ia64/ia64.md: Remove mode in template.
9526         Sign extend operand in expand_simple_binop.
9527         * config/ia64/ia64.h (ASM_OUTPUT_ADDR_DIFF_ELT): Use
9528         CASE_VECTOR_MODE instead of TARGET_ILP32.
9529         (ADDR_VEC_ALIGN): Make it depends on CASE_VECTOR_MODE.
9531 2012-03-26  Steven Bosscher  <steven@gcc.gnu.org>
9533         * varasm.c (assemble_external): #if 0 out the new assert from the
9534         previous commit, it breaks the Java and Go front ends.
9536 2012-03-26  Steven Bosscher  <steven@gcc.gnu.org>
9538         * toplev.c (check_global_declaration_1): Do not call assemble_external.
9539         * expr.c (emit_block_move_libcall_fn): Likewise.
9540         (clear_storage_libcall_fn): Likewise.
9541         (expand_expr_addr_expr_1): Likewise.
9542         (expand_expr_real_1): Likewise.
9543         * calls.c (rtx_for_function_call): Likewise.
9545         * varasm.c (assemble_external): Assert this function is only called
9546         during or after expanding to RTL.
9548 2012-03-26  Martin Jambor  <mjambor@suse.cz>
9550         PR tree-optimization/50052
9551         * tree-sra.c (tree_non_aligned_mem_p): Removed.
9552         (tree_non_aligned_mem_for_access_p): Likewise.
9553         (build_accesses_from_assign): Removed strict alignment requirements
9554         checks.
9555         (access_precludes_ipa_sra_p): Likewise.
9557 2012-03-26  Richard Guenther  <rguenther@suse.de>
9559         PR tree-optimization/52701
9560         * tree-vect-loop.c (vect_analyze_scalar_cycles_1): Always
9561         compute and set the evolution part of PHI nodes.
9563 2012-03-26  Richard Guenther  <rguenther@suse.de>
9565         PR tree-optimization/52721
9566         * tree-vect-stmts.c (vect_init_vector): Handle scalars.
9568 2012-03-26  Ulrich Weigand  <ulrich.weigand@linaro.org>
9570         PR tree-optimization/52686
9571         * tree-vect-data-refs.c (vect_get_smallest_scalar_type): Handle
9572         WIDEN_LSHIFT_EXPR.
9574 2012-03-26  Tristan Gingold  <gingold@adacore.com>
9576         * config/alpha/vms.h (LINK_SPEC): Simplify.
9577         (STARTFILE_SPEC): Remove -mvms-return-codes handling.
9578         (NAME__MAIN, SYMBOL__MAIN): Remove.
9579         (VMS_DEBUG_MAIN_POINTER): Remove.
9580         * config/ia64/vms.h: Likewise.
9581         * config/alpha/alpha.c (alpha_start_function): Move vms_debug_main
9582         code to vms.c.  Call vms_start_function.
9583         * config/ia64/ia64.c (ia64_start_function): Likewise.
9584         * config/vms/vms-protos.h (vms_start_function): Declare.
9585         * config/vms/vms.c (vms_start_function): New function.
9586         * config/vms/vms.h (MATH_LIBRARY): Define.
9587         (VMS_DEBUG_MAIN_POINTER): Define.
9589 2012-03-26  Eric Botcazou  <ebotcazou@adacore.com>
9591         PR rtl-optimization/52629
9592         * reload1.c (count_pseudo): Short-circuit common case.
9593         (count_spilled_pseudo): Return early for pseudos without hard regs.
9594         Assert that the pseudo has got a hard reg before manipulating it.
9596 2012-03-24  Jan Hubicka  <jh@suse.cz>
9598         PR lto/51663
9599         * varpool.c (varpool_finalize_decl): Handle toplevel_reorder here.
9600         (decide_is_variable_needed): Do not handle toplevel reorder here.
9601         * cgraph.h (varpool_can_remove_if_no_refs): Likewise.
9602         * ipa.c (cgraph_remove_unreachable_nodes): Remove unreachable vars
9603         even at -O0.
9605 2012-03-24  Eric Botcazou  <ebotcazou@adacore.com>
9607         * expr.c (optimize_bitfield_assignment_op) <BIT_IOR_EXPR>: Use str_mode
9608         and str_bitsize instead of more convoluted expressions.
9610 2012-03-24  Eric Botcazou  <ebotcazou@adacore.com>
9612         PR target/52610
9613         * config/sparc/sparc.h (ASM_CPU_SPEC): Pass -Av8 if -mcpu=leon.
9615 2012-03-24  Eric Botcazou  <ebotcazou@adacore.com>
9617         PR target/52656
9618         * config/sparc/sparc.c (sparc_handle_vis_mul8x16): Fix pasto.
9620 2012-03-23  Martin Jambor  <mjambor@suse.cz>
9622         * tree-sra.c (build_accesses_from_assign): Remove FIXME comment.
9624 2012-03-23  Richard Guenther  <rguenther@suse.de>
9626         PR tree-optimization/52678
9627         * tree-vectorizer.h (struct _stmt_vec_info): Add
9628         loop_phi_evolution_part member.
9629         (STMT_VINFO_LOOP_PHI_EVOLUTION_PART): New define.
9630         * tree-vect-loop.c (vect_analyze_scalar_cycles_1): Initialize
9631         STMT_VINFO_LOOP_PHI_EVOLUTION_PART.
9632         * tree-vect-loop-manip.c (vect_update_ivs_after_vectorizer):
9633         Use the cached evolution part and the PHI nodes value from
9634         the loop preheader edge instead of re-analyzing the evolution.
9636 2012-03-22  Maxim Kuvyrkov  <maxim@codesourcery.com>
9638         * config/mips/mips-tables.opt: Update.
9639         * config/mips/mips.md (processor): Add xlp.
9640         * config/mips/mips-cpus.def: Add xlp.
9641         * config/mips/mips.c (mips_rtx_cost_data): Add costs for XLP, copy from
9642         5KF for now.
9643         * config/mips/mips.h (MIPS_ISA_LEVEL_SPEC): Handle xlp.
9644         * doc/invoke.texi: Mention XLP.
9646 2012-03-22  Jakub Jelinek  <jakub@redhat.com>
9648         PR middle-end/52547
9649         * tree-nested.c (convert_tramp_reference_stmt): Call declare_vars
9650         on any new_local_var_chain vars declared during recursing on
9651         GIMPLE_OMP_PARALLEL or GIMPLE_OMP_TASK body.
9653 2012-03-22  Uros Bizjak  <ubizjak@gmail.com>
9655         * config/alpha/alpha.h (ASM_OUTPUT_ALIGN): Move to config/alpha/elf.h
9656         (ASM_OUTPUT_SKIP): Move to config/alpha/vms.h
9657         (ASM_OUTPUT_LOCAL): Ditto.
9658         (ASM_OUTPUT_COMMON): Remove.
9659         * config/alpha/elf.h (ASM_OUTPUT_DEF_FROM_DECLS): Use ASM_OUTPUT_DEF.
9660         * config/alpha/vms.h (ASM_OUTPUT_ALIGN): Do not undefine before define.
9662 2012-03-22  Jan Hubicka  <jh@suse.cz>
9664         PR middle-end/51737
9665         * cgraph.c (cgraph_remove_node_and_inline_clones): Add FORBIDDEN_NODE
9666         parameter.
9667         * cgraph.h (cgraph_remove_node_and_inline_clones): Update prototype.
9668         * ipa-inline-transform.c (save_inline_function_body): Remove
9669         copied clone if needed.
9670         * tree-inline.c (delete_unreachable_blocks_update_callgraph): Update.
9672 2012-03-22  Richard Guenther  <rguenther@suse.de>
9674         PR middle-end/52666
9675         * fold-const.c (fold_ternary_loc): Fix typo.
9677 2012-03-22  Georg-Johann Lay  <avr@gjlay.de>
9679         PR target/52496
9680         * config/avr/avr.md (unspec): Remove UNSPEC_MEMORY_BARRIER.
9681         (unspecv): Add UNSPECV_MEMORY_BARRIER.
9682         (cli_sei): Use unspec_volatile instead of unspec for memory barrier.
9683         (delay_cycles_1, delay_cycles_2): Ditto.
9684         (delay_cycles_3, delay_cycles_4): Ditto.
9685         (nopv, *nopv): Ditto.
9686         (sleep, *sleep): Ditto.
9687         (wdr, *wdr): Ditto.
9689 2012-03-22  Richard Guenther  <rguenther@suse.de>
9691         PR tree-optimization/52548
9692         * tree-ssa-pre.c (valid_in_sets): Remove handling of invalidation
9693         because of clobbers.
9694         (prune_clobbered_mems): New function.
9695         (compute_antic_aux): Use it to prune ANTIC_OUT.
9696         (compute_partial_antic_aux): Use it to prune PA_IN.
9697         (compute_avail): Only insert expressions into EXP_GEN that are not
9698         invalidated when translated up to the beginning of the block.
9700 2012-03-22  Richard Guenther  <rguenther@suse.de>
9702         PR tree-optimization/52638
9703         * tree-vect-stmts.c (vect_init_vector_1): New function, split
9704         out from ...
9705         (vect_init_vector): ... here.  Handle scalar vector inits.
9706         (vect_get_vec_def_for_operand): Adjust.
9707         (vectorizable_load): Likewise.
9709 2012-03-22  Uros Bizjak  <ubizjak@gmail.com>
9711         * config.gcc (alpha*-*-linux*): Add elfos.h to tm_file.
9712         (alpha*-*-freebsd*): Ditto.
9713         (alpha*-*-netbsd*): Ditto.
9714         (alpha*-*-openbsd*): Ditto.
9715         * config/alpha/elf.h (OBJECT_FORMAT_ELF): Remove.
9716         (DWARF2_DEBUGGING_INFO): Remove.
9717         (PREFERRED_DEBUGGING_TYPE): Remove.
9718         (ASM_FINAL_SPEC): Remove.
9719         (IDENT_ASM_OP): Remove.
9720         (ASM_OUTPUT_IDENT): Remove.
9721         (SKIP_ASM_OP): Remove.
9722         (ASM_OUTPUT_SKIP): Remove.
9723         (ALIGN_ASM_OP): Remove.
9724         (ASM_OUTPUT_BEFORE_CASE_LABEL): Remove.
9725         (ASM_OUTPUT_CASE_LABEL): Remove.
9726         (ASM_OUTPUT_EXTERNAL_LIBCALL): Remove.
9727         (COMMON_ASM_OP): Remove.
9728         (ASM_OUTPUT_ALIGNED_COMMON): Remove.
9729         (ASCII_DATA_ASM_OP): Remove.
9730         (READONLY_DATA_SECTION_ASM_OP): Remove.
9731         (INIT_SECTION_ASM_OP): Remove.
9732         (FINI_SECTION_ASM_OP): Remove.
9733         (ASM_SECTION_START_OP): Remove.
9734         (ASM_OUTPUT_SECTION_START_FILE): Remove.
9735         (TARGET_ASM_NAMED_SECTION): Remove.
9736         (TARGET_ASM_SELECT_SECTION): Remove.
9737         (MAKE_DECL_ONE_ONLY): Remove.
9738         (TYPE_ASM_OP): Remove.
9739         (SIZE_ASM_OP): Remove.
9740         (ASM_WEAKEN_LABEL): Remove.
9741         (TYPE_OPERAND_FMT): Remove.
9742         (ASM_DECLARE_RESULT): Remove.
9743         (ASM_DECLARE_OBJECT_NAME): Remove.
9744         (ASM_FINISH_DECLARE_OBJECT): Remove.
9745         (ELF_ASCII_ESCAPES): Remove.
9746         (ELF_STRING_LIMIT): Remove.
9747         (STRING_ASM_OP): Remove.
9748         (ASM_OUTPUT_EXTERNAL): Remove.
9749         (TARGET_ASM_FILE_START_FILE_DIRECTIVE): Redefine to false.
9750         * config/alpha/alpha.h (PCC_BITFIELD_TYPE_MATTERS): Undefine
9751         before define.
9752         (ASM_DECLARE_FUNCTION_NAME): Ditto.
9753         (ASM_DECLARE_FUNCTION_SIZE): Ditto.
9754         (ASM_GENERATE_INTERNAL_LABEL): Ditto.
9755         (ASM_OUTPUT_SKIP): Ditto.
9756         (READONLY_DATA_SECTION_ASM_OP): Remove.
9757         (USER_LABEL_PREFIX): Remove.
9758         (ASM_OUTPUT_ASCII): Remove.
9759         (ASM_OUTPUT_CASE_LABEL): Remove.
9760         (NO_DOLLAR_IN_LABEL): Undefine.
9762 2012-03-22  Richard Guenther  <rguenther@suse.de>
9764         PR tree-optimization/52459
9765         * tree-ssa-pre.c (inhibit_phi_insertion): Do not inhibit
9766         PHI insertion for calls.
9768 2012-03-21  Steven Bosscher  <steven@gcc.gnu.org>
9770         * cse.c (invalidate_from_sets_and_clobbers, try_back_substitute_reg,
9771         find_sets_in_insn, canonicalize_insn): Split out from ...
9772         (cse_insn): ... here.
9773         (invalidate_from_clobbers): Take an insn instead of the pattern.
9775 2012-03-21  Oleg Endo  <olegendo@gcc.gnu.org>
9777         PR target/52479
9778         * config/sh/sh-protos.h (sh_fsca_df2int): Remove.
9779         * config/sh/sh.c (sh_fsca_df2int_rtx, sh_fsca_df2int): Remove.
9780         * config/sh/sh.md (sindf2, cosdf2): Remove.
9782 2012-03-21  Kaz Kojima  <kkojima@gcc.gnu.org>
9784         PR target/52642
9785         * config/sh/sh.c (sh_expand_prologue): Emit blockage at the end of
9786         prologue for unwinder and profiler.
9788 2012-03-21  Andreas Tobler  <andreast@fgznet.ch>
9790         * configure.ac (HAVE_LD_NO_DOT_SYMBOLS): Add powerpc64-*-freebsd*.
9791         Introduce emul_name to select the right linker emulation for
9792         powerpc64-*-freebsd*.
9793         * configure: Regenerate.
9794         * config.gcc: Add bits to support powerpc64-*-freebsd*.
9795         * config/rs6000/freebsd.h (POWERPC_FREEBSD): Define.
9796         * config/rs6000/freebsd64.h: New file.
9797         * config/rs6000/rs6000.c (rs6000_option_override_internal): Use
9798         POWERPC_FREEBSD.
9799         (rs6000_savres_strategy): Likewise.
9800         (rs6000_savres_routine_name): Likewise.
9801         (rs6000_elf_file_end): Likewise.
9802         * config/rs6000/t-freebsd64: New file.
9803         * config/rs6000/sysv4.h (SUBTARGET_OVERRIDE_OPTIONS): Set the
9804         rs6000_current_abi for 64-bit FreeBSD to ABI_AIX.
9806         * config/rs6000/freebsd64.h: Remove duplicated entries from last
9807         commit.
9808         * config/rs6000/t-freebsd64: Likewise.
9810 2012-03-21  Georg-Johann Lay  <avr@gjlay.de>
9812         PR rtl-optimization/52543
9813         PR target/52461
9814         * config/avr/avr-protos.h (avr_load_lpm): New prototype.
9815         * config/avr/avr.c (avr_mode_dependent_address_p): New function.
9816         (TARGET_MODE_DEPENDENT_ADDRESS_P): New define.
9817         (avr_load_libgcc_p): Restrict to __flash loads.
9818         (avr_out_lpm): Only handle 1-byte loads from __flash.
9819         (avr_load_lpm): New function.
9820         (avr_find_unused_d_reg): Remove.
9821         (avr_out_lpm_no_lpmx): Remove.
9822         (adjust_insn_length): Handle ADJUST_LEN_LOAD_LPM.
9823         * config/avr/avr.md (unspec): Add UNSPEC_LPM.
9824         (load_<mode>_libgcc): Use UNSPEC_LPM instead of MEM.
9825         (load_<mode>, load_<mode>_clobber): New insns.
9826         (mov<mode>): For multi-byte move from non-generic
9827         16-bit address spaces: Expand to load_<mode> resp.
9828         load_<mode>_clobber.
9829         (load<mode>_libgcc): Remove expander.
9830         (split-lpmx): Remove split.
9832 2012-03-21  Richard Earnshaw  <rearnsha@arm.com>
9834         * neon.md (neon_vget_lanev2di): Use gen_lowpart and gen_highpart.
9835         * config/arm/neon.ml (Fixed_return_reg): Renamed to fixed_vector_reg.
9836         All callers changed.
9837         (Fixed_core_reg): New feature.
9838         (Vget_lane [sizes S64 and U64]): Add Fixed_core_reg.  Allow fmrrd in
9839         disassembly.
9840         * neon-testgen.ml: Handle Fixed_core_reg.
9842 2012-03-21  Andrew Stubbs  <ams@codesourcery.com>
9844         * config/arm/arm.c (thumb2_reorg): Add complete support
9845         for 16-bit instructions.
9846         * config/arm/thumb2.md: Delete obsolete flag-clobbering peepholes.
9848 2012-03-21  Richard Guenther  <rguenther@suse.de>
9850         PR tree-optimizer/52636
9851         * tree-vect-slp.c (vect_get_constant_vectors): Convert constants
9852         to the appropriate type.
9854 2012-03-21  Richard Guenther  <rguenther@suse.de>
9856         * Makefile.in (cfgexpand.o): Add $(REGS_H) and $(INTEGRATE_H)
9857         dependencies.
9858         * cfgexpand.c (gimple_expand_cfg): Fold in pass_init_function,
9859         pass_jump, pass_initial_value_sets and pass_unshare_all_rtl.
9860         * passes.c (init_optimization_passes): Remove pass_init_function,
9861         pass_jump, pass_initial_value_sets and pass_unshare_all_rtl.
9862         * tree-pass.h (pass_init_function): Remove.
9863         (pass_jump): Remove.
9864         (pass_initial_value_sets): Remove.
9865         (pass_unshare_all_rtl): Remove.
9866         * integrate.c (pass_initial_value_sets): Remove.
9867         * emit-rtl.c (pass_unshare_all_rtl): Remove.
9868         * tree.h (init_function_for_compilation): Remove.
9869         * function.c (init_function_for_compilation): Remove.
9870         (pass_init_function): Remove.
9871         * cfgcleanup.c (rest_of_handle_jump): Remove.
9872         (pass_jump): Remove.
9874 2012-03-20  Jason Merrill  <jason@redhat.com>
9876         * tree-streamer-in.c (streamer_alloc_tree): Call
9877         ggc_alloc_zone_cleared_tree_node instead of
9878         ggc_alloc_zone_cleared_tree_node_stat.
9880 2012-03-20  Jonathan Wakely  <jwakely.gcc@gmail.com>
9882         * doc/extend.texi (Template Instantiation): Remove anachronisms.
9884 2012-03-20  Jakub Jelinek  <jakub@redhat.com>
9886         PR target/52607
9887         * config/i386/i386.c (expand_vec_perm_vperm2f128): New function.
9888         (ix86_expand_vec_perm_const_1): Call it.
9890         * config/i386/i386.c (vselect_insn): New variable.
9891         (init_vselect_insn): New function.
9892         (expand_vselect, expand_vselect_insn): Add testing_p argument.
9893         Call init_vselect_insn if vselect_insn is NULL.  Adjust
9894         PATTERN (vselect_insn), instead of creating a new insn each time,
9895         only emit a copy of it if not testing and recog has been successful.
9896         (expand_vec_perm_pshufb, expand_vec_perm_1,
9897         expand_vec_perm_pshuflw_pshufhw, expand_vec_perm_broadcast_1): Adjust
9898         callers.
9900         PR target/52607
9901         * config/i386/i386.md ("isa" attribute): Add avx2 and noavx2.
9902         ("enabled" attribute): Handle avx2 and noavx2 isas.
9903         * config/i386/sse.md (avx2_vec_dupv8sf_1, avx2_pbroadcast<mode>_1):
9904         New insns.
9905         (vec_dup<mode>): Add avx2 =x,x alternative.
9906         (vec_dup<mode> splitter): Don't split if TARGET_AVX2.
9907         (*avx_vperm_broadcast_<mode>): Don't split V4DFmode if TARGET_AVX2.
9908         For TARGET_AVX2, V8SFmode and elt == 0 split into vbroadcastss.
9909         * config/i386/i386.c (expand_vec_perm_pshufb): Emit also vpermps
9910         for V8SFmode.
9911         (expand_vec_perm_1): For broadcasts, use avx2_pbroadcast<mode>_1
9912         if possible, handle also V8SFmode.
9914 2012-03-20  Richard Earnshaw  <rearnsha@arm.com>
9916         * arm/predicates.md (zero_operand, reg_or_zero_operand): New predicates.
9917         * arm/neon.md (neon_vceq<mode>, neon_vcge<mode>): Use
9918         reg_or_zero_operand predicate.
9919         (neon_vcle<mode>, neon_vclt<mode>): Use zero_operand predicate.
9921 2012-03-20  Jakub Jelinek  <jakub@redhat.com>
9923         * config/i386/i386.c (ix86_decompose_address) <case ZERO_EXTEND>:
9924         If operand isn't UNSPEC, return 0.
9926 2012-03-20  Richard Guenther  <rguenther@suse.de>
9928         * tree-pass.h (pass_rtl_eh): Remove.
9929         * except.c (gate_handle_eh): Likewise.
9930         (rest_of_handle_eh): Likewise.
9931         (pass_rtl_eh): Likewise.
9932         (finish_eh_generation): Export.
9933         * except.h (finish_eh_generation): Declare.
9934         * passes.c (init_optimization_passes): Remove pass_rtl_eh.
9935         * cfgexpand.c (gimple_expand_cfg): Call finish_eh_generation
9936         after expanding stack alignment.  Instead of compacting blocks
9937         call cleanup_cfg.
9939 2012-03-20  Richard Guenther  <rguenther@suse.de>
9941         * stor-layout.c (finish_bitfield_representative): Fallback
9942         to conservative maximum size if the padding up to the next
9943         field cannot be computed as a constant.
9944         (finish_bitfield_layout): If we cannot compute the distance
9945         between the start of the bitfield representative and the
9946         bitfield member start a new representative.
9947         * expr.c (get_bit_range): The distance between the start of
9948         the bitfield representative and the bitfield member is zero
9949         if the field offsets are not constants.
9951 2012-03-20  Tristan Gingold  <gingold@adacore.com>
9953         * tree.h (enum size_type_kind): Add stk_ prefix to constants,
9954         convert in lowercase.
9955         (sizetype_tab, sizetype, bitsizetype, ssizetype, sbitsizetype)
9956         (size_int, ssize_int, bitsize_int, sbitsize_int): Adjust.
9957         * stor-layout.c (sizetype_tab): Adjust.
9958         (initialize_sizetypes): Use SIZETYPE instead of SIZE_TYPE.
9959         * tree-streamer.c (preload_common_nodes): Use stk_type_kind_last
9960         instead of type_kind_last.
9961         * tree-scalar-evolution.c (interpret_rhs_expr): Use size_int
9962         instead of size_int_kind.
9963         * doc/tm.texi.in (Type Layout): Document SIZETYPE.
9964         * doc/tm.texi: Regenerate.
9965         * defaults.h (SIZETYPE): Provide a default value.
9966         * config/vms/vms.h (SIZE_TYPE): Define as "unsigned int".
9967         (SIZETYPE): Define.
9969 2012-03-20  Oleg Endo  <olegendo@gcc.gnu.org>
9971         * config/sh/sh.md: Use braced string notation where applicable.
9973 2012-03-19  Uros Bizjak  <ubizjak@gmail.com>
9975         * config/i386/i386.md (allocate_stack): Simplify.
9977 2012-03-19  Uros Bizjak  <ubizjak@gmail.com>
9979         * builtins.c (expand_builtin_cexpi): Use copy_addr_to_reg instead of
9980         copy_to_mode_reg (Pmode, ...).
9981         (expand_builtin_frame_address): Ditto.
9982         * expr.c (emit_block_move_via_libcall): Ditto.
9983         (set_storage_via_libcall): Ditto.
9985         * config/i386/i386.c (ix86_expand_movmem): Ditto.
9986         (ix86_expand_setmem): Ditto.
9987         (ix86_trampoline_init): DItto.
9988         * config/i386/i386.md (cmpstrnsi): Ditto.
9990 2012-03-19  Sandra Loosemore  <sandra@codesourcery.com>
9992         * config/sh/sh.opt (madjust-unroll): Mark as ignored/obsolete.
9993         * config/sh/sh.h (TARGET_OPT_DEFAULT): Don't use MASK_ADJUST_UNROLL.
9994         * doc/invoke.texi (Option Summary): Remove -madjust-unroll.
9995         (SH Options): Likewise.
9997 2012-03-19  Uros Bizjak  <ubizjak@gmail.com>
9999         * config/i386/i386.c (get_thread_pointer): Add tp_mode argument.
10000         Generate ZERO_EXTEND in place if GET_MODE (tp) != tp_mode.
10001         (legitimize_tls_address) <TLS_MODEL_INITIAL_EXEC>: Always generate
10002         DImode UNSPEC_GOTNTPOFF references on TARGET_64BIT.
10003         (ix86_decompose_address): Allow zero extended UNSPEC_TP references.
10005         Revert:
10006         2012-03-13  Uros Bizjak  <ubizjak@gmail.com>
10008         * config/i386/i386.h (TARGET_TLS_INDIRECT_SEG_REFS): New.
10009         * config/i386/i386.c (ix86_decompose_address): Use
10010         TARGET_TLS_INDIRECT_SEG_REFS to prevent %fs:(%reg) addresses.
10011         (legitimize_tls_address): Use TARGET_TLS_INDIRECT_SEG_REFS to load
10012         thread pointer to a register.
10014         Revert:
10015         2012-03-10  H.J. Lu  <hongjiu.lu@intel.com>
10017         * config/i386/i386.c (ix86_decompose_address): Disallow fs:(reg)
10018         if Pmode != word_mode.
10019         (legitimize_tls_address): Call gen_tls_initial_exec_x32 if
10020         Pmode == SImode for TARGET_X32.
10022         * config/i386/i386.md (UNSPEC_TLS_IE_X32): New.
10023         (tls_initial_exec_x32): Likewise.
10025 2012-03-19  Oleg Endo  <olegendo@gcc.gnu.org>
10027         PR target/50751
10028         * config/sh/sh.h (CONST_OK_FOR_K04, CONST_OK_FOR_K12, DISP_ADDR_P,
10029         DISP_ADDR_OFFSET): New macros.
10030         * config/sh/sh.c (sh_address_cost): Add SH2A special case.
10031         (sh_legitimate_index_p): Allow QImode displacements for non-SH2A.
10032         (sh_legitimize_address): Add QImode displacement handling.
10033         (sh_cannot_change_mode_class): Disallow GENERAL_REGS for SFmode
10034         vector subregs.
10035         (sh_secondary_reload): Add QImode displacement handling.
10036         * config/sh/predicates.md (movsrc_no_disp_mem_operand): New predicate.
10037         * config/sh/constraints.md (K04, Snd, Sdd): New constraints.
10038         * config/sh/sh.md (extendqisi2): Remove constraints from expander.
10039         (*extendqisi2_compact): Rename to *extendqisi2_compact_reg, restrict
10040         to register operands only.
10041         (*extendqisi2_compact_mem_disp, *extendqisi2_compact_snd): New insns.
10042         (extendqihi2): Change insn to expander.
10043         (*extendqihi2_compact_reg): New insn.
10044         (movqi_i, movqi): Replace with ...
10045         (movqi, *movqi_reg_reg, *movqi_store_mem_disp12,
10046         *movqi_load_mem_disp, *movqi_load_mem_disp): ... these.
10047         Add new peepholes for QImode displacement addressing.
10049 2012-03-19  Paolo Carlini  <paolo.carlini@oracle.com>
10051         PR c++/14710
10052         * doc/invoke.texi: Document -Wuseless-cast.
10054 2012-03-19  Eric Botcazou  <ebotcazou@adacore.com>
10056         * tree.def (REALPART_EXPR, IMAGPART_EXPR, VIEW_CONVERT_EXPR): Move.
10057         * tree.h (handled_component_p): Reorder cases.
10058         * dwarf2out.c (loc_list_for_address_of_addr_expr_of_indirect_ref): Do
10059         not initialize unsignedp.
10060         (loc_list_from_tree): Likewise.
10061         (fortran_common): Likewise.
10062         * simplify-rtx.c (delegitimize_mem_from_attrs): Likewise.
10064 2012-03-19  Uros Bizjak  <ubizjak@gmail.com>
10066         * config/i386/i386.c (ix86_expand_prologue) <CM_LARGE_PIC>: Use Pmode
10067         mode consistently.  Use ix86_gen_add3.  Assert that Pmode == DImode.
10068         (ix86_expand_split_stack_prologue): Use ix86_gen_add3.
10069         (ix86_split_long_move): Ditto.
10070         (legitimize_tls_address): Use ix86_gen_sub3.
10071         (construct_plt_address): Assert that Pmode == DImode.
10073 2012-03-18  Uros Bizjak  <ubizjak@gmail.com>
10075         * config/i386/i386.md: Remove empty predicates and/or constraints.
10076         * config/i386/sync.md: Ditto.
10077         * config/i386/sse.md: Ditto.
10078         * config/i386/mmx.md: Ditto.
10079         * config/i386/pentium.md: Ditto.
10080         * config/i386/athlon.md: Ditto.
10082 2012-03-16  Richard Guenther  <rguenther@suse.de>
10084         PR tree-optimization/52603
10085         * tree-vect-data-refs.c (vect_can_force_dr_alignment_p): Clarify
10086         comment.
10088         Revert
10089         2012-03-14  Richard Guenther  <rguenther@suse.de>
10091         PR tree-optimization/52571
10092         * tree-vect-data-refs.c (vect_compute_data_ref_alignment): Move
10093         flag_section_anchors check ...
10094         (vect_can_force_dr_alignment_p): ... here.
10096 2012-03-16  Martin Jambor  <mjambor@suse.cz>
10098         * expr.c (expand_expr_real_1): Handle misaligned scalar reads from
10099         memory through MEM_REFs by calling extract_bit_field.
10101 2012-03-16  Richard Guenther  <rguenther@suse.de>
10103         * fold-const.c (native_interpret_expr): Also support POINTER_TYPE
10104         and REFERENCE_TYPE interpretations.
10105         (can_native_interpret_type_p): New function.
10106         (fold_ternary_loc): Use native encode/interpret to fold
10107         BIT_FIELD_REFs of constants.
10109 2012-03-16  Richard Guenther  <rguenther@suse.de>
10111         PR middle-end/52584
10112         * fold-const.c (fold_ternary_loc): Fold vector typed BIT_FIELD_REFs
10113         of vector constants and constructors.
10115 2012-03-16  Richard Guenther  <rguenther@suse.de>
10117         * tree-vect-stmts.c (vect_get_vec_def_for_operand): Use
10118         VIEW_CONVERT_EXPR to convert constants.
10119         (vect_is_simple_use): Treat all constants as vec_constant_def.
10121 2012-03-16  Richard Guenther  <rguenther@suse.de>
10122             Kai Tietz  <ktietz@redhat.com>
10124         PR middle-end/48814
10125         * gimplify.c (gimplify_self_mod_expr): Evaluate postfix
10126         side-effects completely in the pre-queue and use a temporary
10127         for the result.
10129 2012-03-16  Richard Guenther  <rguenther@suse.de>
10131         * stor-layout.c (finish_bitfield_representative): Fall back
10132         to the conservative maximum size if we cannot compute the
10133         size of the tail padding.
10135 2012-03-16  Tristan Gingold  <gingold@adacore.com>
10137         * config/vms/vms.h (TARGET_OS_CPP_BUILTINS): Define
10138         __CRTL_VER and __VMS_VER.
10139         * config/vms/vms-protos.h: Declare vms_c_get_crtl_ver
10140         and vms_c_get_vms_ver.
10141         * config/vms/vms-c.c (vms_c_get_crtl_ver, vms_c_get_vms_ver): New
10142         functions.
10143         * config/alpha/vms.h (VMS_DEFAULT_CRTL_VER)
10144         (VMS_DEFAULT_VMS_VER): Define.
10145         * config/ia64/vms.h (VMS_DEFAULT_CRTL_VER)
10146         (VMS_DEFAULT_VMS_VER): Define.
10148 2012-03-16  Richard Guenther  <rguenther@suse.de>
10150         * tree-vect-loop.c (get_initial_def_for_induction): Use
10151         build_constructor directly.
10152         * tree-vect-stmts.c (vect_get_vec_def_for_operand): Use
10153         build_vector_from_val.
10154         * tree.c (build_vector_from_val): Avoid creating a constructor
10155         first when we want a constant vector.
10157 2012-03-16  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
10159         * doc/install.texi (Specific, *-*-solaris2*): Improve wording.
10161 2012-03-16  Richard Guenther  <rguenther@suse.de>
10163         * tree.h (TREE_VECTOR_CST_ELTS): Remove.
10164         (VECTOR_CST_NELTS, VECTOR_CST_ELTS, VECTOR_CST_ELT): New defines.
10165         (struct tree_vector): Remove elements member, add variable size
10166         elts array member.
10167         (build_vector_stat): Declare.
10168         (build_vector): Define in terms of build_vector_stat.
10169         * tree.c (build_vector): Rename to ...
10170         (build_vector_stat): ... this.  Take array of trees as parameter.
10171         (build_vector_from_ctor): Adjust.
10172         (integer_zerop, integer_onep, integer_all_onesp, iterative_hash_expr,
10173         initializer_zerop): Adjust.
10174         * cfgexpand.c (expand_debug_expr): Likewise.
10175         * expr.c (categorize_ctor_elements_1, expand_expr_real_1,
10176         const_vector_from_tree): Likewise.
10177         * fold-const.c (const_binop, operand_equal_p, native_encode_vector,
10178         native_interpret_vector, fold_unary_loc, vec_cst_ctor_to_array,
10179         fold_vec_perm, fold_binary_loc, fold_ternary_loc): Likewise.
10180         * tree-streamer-in.c (streamer_alloc_tree): Handle TS_VECTOR.
10181         (lto_input_ts_vector_tree_pointers): Adjust.
10182         * tree-streamer-out.c (streamer_write_tree_header): Handle TS_VECTOR.
10183         (write_ts_vector_tree_pointers): Adjust.
10184         * varasm.c (const_hash_1, compare_constant, copy_constant,
10185         output_constant): Adjust.
10186         * gimple-fold.c (gimple_fold_stmt_to_constant_1): Adjust.
10187         * print-tree.c (print_node): Adjust.
10188         * tree-pretty-print.c (dump_generic_node): Adjust.
10189         * tree-vect-generic.c (uniform_vector_p, vector_element,
10190         lower_vec_perm): Adjust.
10191         * tree-vect-loop.c (get_initial_def_for_reduction): Adjust.
10192         * tree-vect-slp.c (vect_get_constant_vectors,
10193         vect_transform_slp_perm_load): Adjust.
10194         * tree-vect-stmts.c (vect_gen_perm_mask): Adjust.
10195         * expmed.c (make_tree): Adjust.
10196         * config/i386/i386.c (ix86_expand_builtin): Adjust.
10197         * config/sparc/sparc.c (sparc_handle_vis_mul8x16): Adjust interface
10198         and implementation.
10199         (sparc_fold_builtin): Adjust.
10201 2012-03-16  Tristan Gingold  <gingold@adacore.com>
10203         * config.gcc (*-*-*vms*): Define use_gcc_stdint and tm_file.
10204         * config/vms/vms-stdint.h: New file.
10206 2012-03-16  Tristan Gingold  <gingold@adacore.com>
10208         * config.host (alpha64-dec-*vms*, alpha*-dec-*vms*)
10209         (ia64-hp-*vms*): Replaced by ...
10210         (*-*-*vms*): ... This new entry.
10212 2012-03-15  Jakub Jelinek  <jakub@redhat.com>
10214         PR target/52568
10215         * config/i386/i386.c (expand_vec_perm_vperm2f128_vblend): New function.
10216         (ix86_expand_vec_perm_const_1): Use it.
10218         PR target/52568
10219         * config/i386/sse.md (UNSPEC_VPERMDF): Remove.
10220         (avx2_permv4df): Remove.
10221         (avx2_permv4di): Macroize into...
10222         (avx2_perm<mode>): ... this using VI8F_256 iterator.
10223         (avx2_permv4di_1): Macroize into...
10224         (avx2_perm<mode>_1): ... this using VI8F_256 iterator.
10226 2012-03-15  Ulrich Weigand  <ulrich.weigand@linaro.org>
10228         * combine.c (apply_distributive_law): Do not distribute SUBREG.
10230 2012-03-15  Ira Rosen  <irar@il.ibm.com>
10231             Ulrich Weigand  <ulrich.weigand@linaro.org>
10233         * tree-vect-patterns.c (widened_name_p): Rename to ...
10234         (type_conversion_p): ... this.  Add new argument to determine
10235         if it's a promotion or demotion operation.  Check for
10236         CONVERT_EXPR_CODE_P instead of NOP_EXPR.
10237         (vect_recog_dot_prod_pattern): Call type_conversion_p instead
10238         widened_name_p.
10239         (vect_recog_widen_mult_pattern, vect_recog_widen_sum_pattern,
10240         vect_operation_fits_smaller_type, vect_recog_widen_shift_pattern):
10241         Likewise.
10242         (vect_recog_mixed_size_cond_pattern): Likewise and allow
10243         non-constant then and else clauses.
10245 2012-03-15  Ira Rosen  <irar@il.ibm.com>
10246             Ulrich Weigand  <ulrich.weigand@linaro.org>
10248         * tree-vectorizer.h (vect_pattern_recog): Add new argument.
10249         * tree-vect-loop.c (vect_analyze_loop_2): Update call to
10250         vect_pattern_recog.
10251         * tree-vect-patterns.c (widened_name_p): Pass basic block
10252         info to vect_is_simple_use.
10253         (vect_recog_dot_prod_pattern): Fail for basic blocks.
10254         (vect_recog_widen_sum_pattern): Likewise.
10255         (vect_handle_widen_op_by_const): Support basic blocks.
10256         (vect_operation_fits_smaller_type,
10257         vect_recog_over_widening_pattern): Likewise.
10258         (vect_recog_vector_vector_shift_pattern): Support basic blocks.
10259         Update call to vect_is_simple_use.
10260         (vect_recog_mixed_size_cond_pattern): Support basic blocks.
10261         Add printing.
10262         (check_bool_pattern): Add an argument, update call to
10263         vect_is_simple_use and the recursive calls.
10264         (vect_recog_bool_pattern): Update relevant function calls.
10265         Add printing.
10266         (vect_mark_pattern_stmts): Update calls to new_stmt_vec_info.
10267         (vect_pattern_recog_1): Check for reduction only in loops.
10268         (vect_pattern_recog): Add new argument.  Support basic blocks.
10269         * tree-vect-stmts.c (vectorizable_conversion): Pass basic block
10270         info to vect_is_simple_use_1.
10271         * tree-vect-slp.c (vect_get_and_check_slp_defs): Support basic blocks.
10272         (vect_slp_analyze_bb_1): Call vect_pattern_recog.
10274 2012-03-15  Jakub Jelinek  <jakub@redhat.com>
10275             Andrew Pinski  <apinski@cavium.com>
10277         PR middle-end/52592
10278         * builtins.c (expand_builtin_int_roundingfn_2): If expanding
10279         BUILT_IN_IR{INT,OUND}* using optab fails, emit lr{int,ound}*
10280         calls instead of __builtin_ir{int,ound}*.
10282 2012-03-15  Bernhard Reutner-Fischer  <aldot@gcc.gnu.org>
10284         * doc/sourcebuild.texi (cleanup-modules, keep-modules): Update
10285         documentation.
10287 2012-03-15  Ramana Radhakrishnan  <ramana.radhakrishnan@linaro.org>
10289         * config.gcc (target_type_format_char): New. Document it. Set it for
10290         arm*-*-* .
10291         * configure.ac (gnu_unique_option): Use target_type_format_char
10292         in test.  Comment rationale.
10293         * configure: Regenerate .
10295 2012-03-15  Jakub Jelinek  <jakub@redhat.com>
10297         PR tree-optimization/52267
10298         * tree-vrp.c (masked_increment): New function.
10299         (register_edge_assert_for_2): Derive ASSERT_EXPRs
10300         from (X & CST1) cmp CST2 tests.
10302 2012-03-15  Richard Guenther  <rguenther@suse.de>
10304         PR middle-end/52580
10305         * tree-data-ref.c (subscript_dependence_tester_1): Check
10306         all dimensions for non-conflicting access functions.
10308 2012-03-15  Manuel López-Ibáñez  <manu@gcc.gnu.org>
10310         PR c++/44783
10311         * doc/invoke.texi [C++ Language Options]: Document
10312         -ftemplate-backtrace-limit.
10314 2012-03-15  Tristan Gingold  <gingold@adacore.com>
10316         * c-parser.c (c_parser_parameter_declaration): Handle #pragma
10317         before a parameter.
10319 2012-03-15  Tristan Gingold  <gingold@adacore.com>
10321         * dwarf2out.c (gen_subprogram_die): Require dwarf unwinding to
10322         use DW_OP_call_frame_cfa.
10324 2012-03-14  H.J. Lu  <hongjiu.lu@intel.com>
10326         PR target/50797
10327         * config/i386/i386-opts.h (pmode): New.
10329         * config/i386/i386.c (ix86_option_override_internal): Properly
10330         check and set ix86_pmode.
10332         * config/i386/i386.h (Pmode): Check ix86_pmode instead of TARGET_64BIT.
10334         * config/i386/i386.opt (maddress-mode=): New.
10336         * doc/invoke.texi: Document -maddress-mode=short|long for x86.
10338 2012-03-14  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
10340         * dwarf2cfi.c (def_cfa_0): Remove MIPS_DEBUGGING_INFO handling.
10341         (dwarf2out_do_cfi_asm): Likewise.
10342         * dwarf2out.c (output_call_frame_info): Remove MIPS_DEBUGGING_INFO
10343         handling.
10344         (add_data_member_location_attribute): Likewise.
10345         (gen_array_type_die): Likewise.
10346         (gen_subprogram_die): Likewise.
10347         (gen_producer_string): Likewise.
10348         * sdbout.c (sdbout_begin_prologue): Declare unconditionally.
10349         Remove MIPS_DEBUGGING_INFO handling.
10350         (sdb_debug_hooks): Likewise.
10351         (sdbout_begin_block): Likewise.
10352         (sdbout_end_block): Likewise.
10353         (sdbout_begin_prologue): Likewise.
10354         (sdbout_start_source_file): Likewise.
10355         (sdbout_end_source_file): Likewise.
10356         (sdbout_init): Likewise.
10357         * system.h (MIPS_DEBUGGING_INFO): Poison.
10359 2012-03-14  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
10361         * config/alpha/alpha.c [HAVE_STAMP_H]: Remove.
10362         (alpha_file_start) [MS_STAMP]: Remove.
10364         * config/alpha/elf.h (TARGET_GAS): Remove.
10365         * config/alpha/freebsd.h (TARGET_DEFAULT): Remove.
10366         * config/alpha/linux.h (TARGET_DEFAULT): Remove.
10367         * config/alpha/netbsd.h (TARGET_DEFAULT): Remove.
10368         * config/alpha/vms.h (TARGET_DEFAULT): Remove.
10369         * config.gcc (alpha*-*-linux*): Remove target_cpu_default.
10370         (alpha*-*-freebsd*): Likewise.
10371         (alpha*-*-netbsd*): Likewise.
10372         (alpha*-*-openbsd*): Likewise.
10373         (alpha*-*-*): Remove target_cpu_default2.
10374         * config/alpha/alpha.c (alpha_output_filename): Remove !TARGET_GAS
10375         handling.
10376         * config/alpha/alpha.h (TARGET_AS_CAN_SUBTRACT_LABELS): Remove.
10377         (TARGET_AS_SLASH_BEFORE_SUFFIX): Remove.
10378         * config/alpha/alpha.c (print_operand): Always assume
10379         TARGET_AS_SLASH_BEFORE_SUFFIX.
10380         * config/alpha/alpha.md ("*builtin_setjmp_receiver_er_sl_1"):
10381         Remove TARGET_AS_CAN_SUBTRACT_LABELS.
10382         ("*builtin_setjmp_receiver_er_1"): Remove.
10383         * config/alpha/alpha.opt (malpha-as): Remove.
10384         (mgas): Ignore.
10385         * doc/invoke.texi (Option Summary, DEC Alpha Options): Remove
10386         -malpha-as, -mgas.
10387         Remove DEC Unix reference.
10389         * config/alpha/alpha.h (OBJECT_FORMAT_COFF): Remove.
10390         (EXTENDED_COFF): Remove.
10391         * config/alpha/elf.h (OBJECT_FORMAT_COFF): Don't undef.
10392         (EXTENDED_COFF): Don't undef.
10393         * config/alpha/alpha.c (alpha_file_start): Always assume
10394         OBJECT_FORMAT_ELF.
10395         Don't set targetm.asm_file_start_file_directive.
10396         [!OBJECT_FORMAT_ELF]: Remove.
10397         (TARGET_ASM_FILE_START_FILE_DIRECTIVE): Remove.
10399         * config/alpha/alpha.h (SDB_DEBUGGING_INFO): Remove.
10400         (DBX_DEBUGGING_INFO): Remove.
10401         (MIPS_DEBUGGING_INFO): Remove.
10402         (PREFERRED_DEBUGGING_TYPE): Remove.
10403         (DBX_OUTPUT_SOURCE_LINE): Remove.
10404         (SDB_OUTPUT_SOURCE_LINE): Remove.
10405         (DBX_CONTIN_LENGTH): Remove.
10406         (NO_DBX_FUNCTION_END): Remove.
10407         (ASM_STABS_OP): Remove.
10408         (ASM_STABN_OP): Remove.
10409         (ASM_STABD_OP): Remove.
10410         (SDB_ALLOW_FORWARD_REFERENCES): Remove.
10411         (SDB_ALLOW_UNKNOWN_REFERENCES): Remove.
10412         (PUT_SDB_DEF): Remove.
10413         (PUT_SDB_PLAIN_DEF): Remove.
10414         (PUT_SDB_TYPE): Remove.
10415         (sdb_label_count): Remove.
10416         (PUT_SDB_BLOCK_START): Remove.
10417         (PUT_SDB_BLOCK_END): Remove.
10418         (PUT_SDB_FUNCTION_START): Remove.
10419         (PUT_SDB_FUNCTION_END): Remove.
10420         (PUT_SDB_EPILOGUE_END): Remove.
10421         * config/alpha/elf.h (SDB_DEBUGGING_INFO): Don't undef.
10422         (MIPS_DEBUGGING_INFO): Don't undef.
10423         (DBX_DEBUGGING_INFO): Don't undef.
10424         * config/alpha/vms.h (SDB_DEBUGGING_INFO): Don't undef.
10425         (MIPS_DEBUGGING_INFO): Don't undef.
10426         (DBX_DEBUGGING_INFO): Don't undef.
10427         * config/alpha/freebsd.h (DBX_CONTIN_CHAR): Remove.
10428         * config/alpha/alpha.c (alpha_option_override): Remove SDB_DEBUG
10429         handling.
10430         (alpha_start_function): Likewise.
10431         (sdb_label_count): Remove.
10432         (alpha_output_filename): Remove DBX_DEBUG handling.
10433         (alpha_file_start): Likewise.
10435 2012-03-14  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
10437         * config.gcc (enable_obsolete): Remove *-*-solaris2.8*.
10438         (*-*-solaris2.[0-8], *-*-solaris2.[0-8].*): Mark unsupported.
10439         (i[34567]86-*-solaris2*, x86_64-*-solaris2.1[0-9]*): Remove
10440         Solaris 8 support.
10441         * configure.ac (gcc_cv_ld_hidden): Remove *-*-solaris2.8*.
10442         (ld_tls_support): Remove Solaris 8 references.
10443         (lwp_dir, lwp_spec): Remove support for alternate thread library.
10444         * acinclude.m4 (gcc_cv_initfini_array): Remove *-*-solaris2.* tests.
10445         * configure: Regenerate.
10446         * config.in: Regenerate.
10448         * config/sol2.h (LINK_SPEC): Remove LIB_THREAD_LDFLAGS_SPEC.
10449         * config/i386/sol2.h: Remove Solaris 8 references.
10451         * doc/install.texi (Specific, i?86-*-solaris2.[89]): Rename to ...
10452         (i?86-*-solaris2.9): ... this.
10453         Remove Solaris 8 references.
10454         (Specific, *-*-solaris2*): Document Solaris 8 removal.
10455         Remove Solaris 8 references.
10457 2012-03-14  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
10459         * config.gcc (enable_obsolete): Remove mips-sgi-irix6.5.
10460         (mips-sgi-irix6.5*): Remove.
10461         * config.host (mips-sgi-irix*): Remove.
10462         * configure.ac (enable_fixed_point): Remove mips*-sgi-irix*.
10463         (set_have_as_tls): Remove *-*-irix6*.
10464         (gcc_cv_ld_static_dynamic): Remove mips-sgi-irix6*.
10465         * configure: Regenerate.
10467         * config/mips/iris6.h: Remove.
10468         * config/mips/iris6.opt: Remove.
10469         * config/mips/t-irix6: Remove.
10471         * config/mips/mips.h (TARGET_GPWORD): Remove IRIX 6 N64 handling.
10472         (TARGET_IRIX6): Remove.
10473         (TARGET_CPU_CPP_BUILTINS): Remove IRIX 6 handling.
10474         Don't define LANGUAGE_C, _LANGUAGE_C for Objective-C.
10475         * config/mips/mips.c (mips_build_builtin_va_list): Remove IRIX 6
10476         handling.
10477         (mips_file_start): Likewise.
10478         * config/mips/mips-protos.h (irix_asm_output_align): Remove.
10480         * config/mips/driver-native.c [__sgi__]: Remove.
10481         (host_detect_local_cpu) [__sgi__]: Remove.
10483         * config/mips/gnu-user.h: Remove iris5.h reference.
10485         * config/mips/mips-modes.def: Remove IRIX 6 reference.
10486         * config/mips/gnu-user64.h (MIPS_TFMODE_FORMAT): Remove.
10487         * config/mips/mips.c (mips_option_override) [MIPS_TFMODE_FORMAT]:
10488         Remove.
10490         * gcc.c (main): Move asm_debug initialization ...
10491         (asm_debug): ... here.
10493         * ginclude/stddef.h (__STDDEF_H__): Don't define.
10495         * defaults.h (LINK_ELIMINATE_DUPLICATE_LDIRECTORIES): Remove.
10496         * system.h (LINK_ELIMINATE_DUPLICATE_LDIRECTORIES): Poison.
10497         * collect2.c [LINK_ELIMINATE_DUPLICATE_LDIRECTORIES]: Remove.
10498         (main) [LINK_ELIMINATE_DUPLICATE_LDIRECTORIES]: Remove.
10499         [LINK_ELIMINATE_DUPLICATE_LDIRECTORIES] (is_in_args): Remove.
10500         * doc/tm.texi.in (Driver, LINK_ELIMINATE_DUPLICATE_LDIRECTORIES):
10501         Remove.
10502         * doc/tm.texi: Regenerate.
10504         * doc/invoke.texi (Debugging Options, -gdwarf-<version>): Remove
10505         IRIX 6 reference.
10506         (MIPS Options, -march): Remove IRIX reference.
10507         * doc/install.texi (Binaries, SGI IRIX): Remove.
10508         (Specific, mips-sgi-irix6): Document IRIX 6.5 removal, remove rest
10509         of section.
10510         * doc/trouble.texi (Interoperation): Remove -lgl_s handling.
10512 2012-03-14  Martin Jambor  <mjambor@suse.cz>
10514         * expr.c (expand_assignment): Use expand_expr with EXPAND_WRITE
10515         when expanding MEM_REFs, MEM_TARGET_REFs and handled_component bases.
10516         (expand_expr_real_1): Do not handle misalignment if modifier is
10517         EXPAND_WRITE.
10519 2012-03-14  Richard Guenther  <rguenther@suse.de>
10521         PR middle-end/52584
10522         * tree-vect-generic.c (type_for_widest_vector_mode): Take
10523         element type instead of mode, use build_vector_type_for_mode
10524         instead of the langhook, build a vector of proper signedness.
10525         (expand_vector_operations_1): Adjust.
10527 2012-03-14  Richard Guenther  <rguenther@suse.de>
10529         PR middle-end/52582
10530         * gimple-fold.c (canonicalize_constructor_val): Make sure we have
10531         a cgraph node for a FUNCTION_DECL that comes from a constructor.
10532         (gimple_get_virt_method_for_binfo): Likewise.
10534 2012-03-14  Richard Guenther  <rguenther@suse.de>
10536         PR tree-optimization/52571
10537         * tree-vect-data-refs.c (vect_compute_data_ref_alignment): Move
10538         flag_section_anchors check ...
10539         (vect_can_force_dr_alignment_p): ... here.  Do not re-align
10540         DECL_COMMON variables.
10542 2012-03-14  Richard Guenther  <rguenther@suse.de>
10544         * tree.h (DECL_BIT_FIELD_REPRESENTATIVE): New define.
10545         * stor-layout.c (start_bitfield_representative): New function.
10546         (finish_bitfield_representative): Likewise.
10547         (finish_bitfield_layout): Likewise.
10548         (finish_record_layout): Call finish_bitfield_layout.
10549         * tree.c (free_lang_data_in_decl): Only free DECL_QUALIFIER
10550         for QUAL_UNION_TYPE fields.
10551         * tree-streamer-in.c (lto_input_ts_field_decl_tree_pointers):
10552         Stream DECL_BIT_FIELD_REPRESENTATIVE.
10553         * tree-streamer-out.c (write_ts_field_decl_tree_pointers): Likewise.
10555         PR middle-end/52080
10556         PR middle-end/52097
10557         PR middle-end/48124
10558         * expr.c (get_bit_range): Unconditionally extract bitrange
10559         from DECL_BIT_FIELD_REPRESENTATIVE.
10560         (expand_assignment): Adjust call to get_bit_range.
10562 2012-03-14  Richard Guenther  <rguenther@suse.de>
10564         PR middle-end/52578
10565         * fold-const.c (fold_unary_loc): Fold (T1)(T2)x to (T1)x if
10566         the outermost conversion is a sign-change only.
10567         (fold_binary_loc): Disregard widening and sign-changing
10568         conversions when we determine if two variables are equal
10569         for reassociation.
10570         * tree-ssa-forwprop.c (combine_conversions): Fold (T1)(T2)x to
10571         (T1)x if the outermost conversion is a sign-change only.
10573 2012-03-14  Uros Bizjak  <ubizjak@gmail.com>
10575         Revert:
10576         2012-03-14  Uros Bizjak  <ubizjak@gmail.com>
10578         * config/i386/predicates.md (constant_call_address_operand): Declare
10579         as special predicate.  Update all uses.
10581 2012-03-13  Jakub Jelinek  <jakub@redhat.com>
10583         PR c/52577
10584         * c-parser.c (c_parser_postfix_expression)
10585         <case RID_BUILTIN_SHUFFLE>: Call mark_exp_read on argument values.
10587         * config/i386/smmintrin.h: Avoid /* within a comment.
10588         * config/i386/nmmintrin.h: Likewise.
10590 2012-03-13  Uros Bizjak  <ubizjak@gmail.com>
10592         * config/i386/i386.md (xbegin): Remove constraint from expander.
10594 2012-03-13  Uros Bizjak  <ubizjak@gmail.com>
10596         * config/i386/predicates.md (constant_call_address_operand): Declare
10597         as special predicate.  Update all uses.
10598         * config/i386/i386.md: Remove mode from constant_call_address_operand
10599         predicates.
10600         * config/i386/i386.c (ix86_output_call_insn): Call
10601         constant_call_address_operand with VOIDmode.
10603 2012-03-13  Uros Bizjak  <ubizjak@gmail.com>
10605         * config/i386/i386.c (ix86_decompose_address): Handle subregs of
10606         AND zero extended address correctly.
10608 2012-03-13  Uros Bizjak  <ubizjak@gmail.com>
10610         * config/i386/predicates.md (tls_symbolic_operand): Declare as
10611         special predicate.
10612         (tls_modbase_operand): Ditto.
10613         * config/i386/i386.md: Remove mode from tls_symbolic_operand and
10614         tls_modbase_operand predicates.
10616 2012-03-13  Martin Jambor  <mjambor@suse.cz>
10618         * expr.c (expand_assignment): Handle misaligned scalar writes to
10619         memory through top-level MEM_REFs by calling store_bit_field.
10621 2012-03-13  Richard Guenther  <rguenther@suse.de>
10623         PR middle-end/52134
10624         * fold-const.c (fold_binary_loc): Fold (X * Y) & -(1 << CST) to X * Y
10625         if Y is a constant multiple of 1 << CST.
10627 2012-03-13  Georg-Johann Lay  <avr@gjlay.de>
10629         PR target/52488
10630         * config/avr/avr.c (avr_prologue_setup_frame): Cut down stack
10631         offset (size) to a value the insns can deal with.
10632         (expand_epilogue): Ditto.
10634 2012-03-13  Matthew Gretton-Dann  <matthew.gretton-dann@arm.com>
10636         * config/arm/neon.ml (ops): Fixup expected instructions for
10637         unsigned vector compares.
10639 2012-03-13  Uros Bizjak  <ubizjak@gmail.com>
10641         * config/i386/i386.c (ix86_decompose_address): Prevent %fs:(%reg)
10642         addresses only when %reg is not in word mode.
10644 2012-03-13  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
10646         * config/microblaze/microblaze.md: Fix typo.
10647         * tree-if-conv.c: Likewise.
10648         * tree-vect-patterns.c: Likewise.
10650 2012-03-13  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
10652         * config.gcc (extra_passes): Remove.
10653         * configure.ac (extra_passes): Don't substitute.
10654         * configure: Regenerate.
10655         * Makefile.in (EXTRA_PASSES): Remove.
10656         (GCC_PASSES): Remove $(EXTRA_PASSES).
10657         (MOSTLYCLEANFILES): Likewise.
10658         (native): Likewise.
10659         (install-common): Likewise.
10661 2012-03-13  Uros Bizjak  <ubizjak@gmail.com>
10663         * config/i386/i386.h (TARGET_TLS_INDIRECT_SEG_REFS): New.
10664         * config/i386/i386.c (ix86_decompose_address): Use
10665         TARGET_TLS_INDIRECT_SEG_REFS to prevent %fs:(%reg) addresses.
10666         (legitimize_tls_address): Use TARGET_TLS_INDIRECT_SEG_REFS to load
10667         thread pointer to a register.
10669 2012-03-12  H.J. Lu  <hongjiu.lu@intel.com>
10671         * config/i386/i386.md (*tls_global_dynamic_64_<mode>): Remove :P
10672         on tls_symbolic_operand.
10673         (tls_global_dynamic_64_<mode>): Likewise.
10675 2012-03-12  Georg-Johann Lay  <avr@gjlay.de>
10677         PR other/52545
10678         * output.h (SECTION_EXCLUDE, SECTION_MACH_DEP): Don't use
10679         SECTION_MACH_DEP reserved bits for SECTION_EXCLUDE.
10681 2012-03-12  Georg-Johann Lay  <avr@gjlay.de>
10683         PR target/52499
10684         * config/avr/avr.c (avr_mode_code_base_reg_class): Change return
10685         type from reg_class_t to enum reg_class.
10686         * config/avr/avr-protos.h (avr_mode_code_base_reg_class): Ditto.
10688 2012-03-12  Andrew Pinski  <apinski@cavium.com>
10690         * tree-ssa-phiopt.c (single_non_singleton_phi_for_edges): New function.
10691         (tree_ssa_phiopt_worker): Use single_non_singleton_phi_for_edges.
10692         (value_replacement): Likewise.
10693         (empty_block_p): Check also if the PHIs for the block are empty.
10695 2012-03-12  Georg-Johann Lay  <avr@gjlay.de>
10697         PR target/52148
10698         * config/avr/avr.c (avr_out_movmem): Fix typo in output template
10699         for the case ADDR_SPACE_FLASH and AVR_HAVE_LPMX introduced in
10700         r184615 from 2012-02-28.
10702 2012-03-12  H.J. Lu  <hongjiu.lu@intel.com>
10704         * config/i386/i386.c (ix86_gen_tls_global_dynamic_64): New.
10705         (ix86_gen_tls_local_dynamic_base_64): Likewise.
10706         (ix86_option_override_internal): Set ix86_gen_tls_global_dynamic_64
10707         and ix86_gen_tls_local_dynamic_base_64.
10708         (legitimize_tls_address): Use ix86_gen_tls_global_dynamic_64 and
10709         ix86_gen_tls_local_dynamic_base_64.
10711         * config/i386/i386.md (*tls_global_dynamic_64): Renamed to ...
10712         (*tls_global_dynamic_64_<mode>): This.
10713         (tls_global_dynamic_64): Renamed to ...
10714         (tls_global_dynamic_64_<mode>): This.
10715         (*tls_local_dynamic_base_64): Renamed to ...
10716         (*tls_local_dynamic_base_64_<mode>): This.
10717         (tls_local_dynamic_base_64): Renamed to ...
10718         (tls_local_dynamic_base_64_<mode>): This.
10720 2012-03-12  H.J. Lu  <hongjiu.lu@intel.com>
10722         * config/i386/i386.c (ix86_option_override_internal): Properly
10723         set ix86_gen_leave and ix86_gen_monitor.  Check Pmode == DImode,
10724         instead of TARGET_64BIT, to set ix86_gen_add3, ix86_gen_sub3,
10725         ix86_gen_one_cmpl2, ix86_gen_andsp, ix86_gen_allocate_stack_worker,
10726         ix86_gen_adjust_stack_and_probe and ix86_gen_probe_stack_range.
10728         * config/i386/sse.md (sse3_monitor64): Renamed to ...
10729         (sse3_monitor64_<mode>): This.
10731 2012-03-12  Tristan Gingold  <gingold@adacore.com>
10733         * config/ia64/ia64.c (ia64_function_arg_1): Move code around.
10734         (ia64_function_arg_advance): Ditto.
10736 2012-03-12  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
10738         * config.gcc (mips*-*-openbsd*): Remove.
10739         * config/mips/openbsd.h: Remove.
10740         * config/mips/sdb.h: Remove.
10742         * config/mips/mips.h (SDB_OUTPUT_SOURCE_LINE): Remove.
10743         * config/mips/mips.c (sdb_label_count): Remove.
10744         (mips_debugger_offset): Remove #if 0 code.
10745         (mips_output_function_prologue) [SDB_DEBUGGING_INFO]: Remove.
10746         * config/mips/sde.h (SDB_DEBUGGING_INFO): Don't undef.
10748 2012-03-12  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
10750         * doc/install.texi (Specific, i?86-*-solaris2.[89]): Update
10751         binutils reference.
10752         (Specific, i?86-*-solaris2.10): Remove GCC 4.0 reference.
10753         Update binutils references.
10754         (Specific, *-*-solaris2*): Mention bundled GCC in Solaris 10 and 11.
10755         Update binutils reference.
10756         Update Sun as/GNU ld caveat.
10757         Document binutils largefile requirement for LTO plugin.
10758         Remove reference to alternate libpthread.
10760 2012-03-12  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
10762         * config.gcc (alpha*-dec-osf5.1*): Remove.
10763         * config.host (alpha*-dec-osf*): Remove.
10764         * configure.ac (*-*-osf*): Remove.
10765         (alpha*-dec-osf*): Remove.
10766         * configure: Regenerate.
10768         * config/alpha/host-osf.c, config/alpha/osf5.h, config/alpha/osf5.opt,
10769         config/alpha/va_list.h, config/alpha/x-osf: Remove.
10771         * config/alpha/alpha.h (TARGET_LD_BUGGY_LDGP): Remove.
10772         * config/alpha/alpha.c (struct machine_function): Update comment.
10773         (alpha_start_function): Remove Tru64 UNIX as handling for
10774         max_frame_size.
10775         * config/alpha/alpha.md ("exception_receiver"): Remove
10776         TARGET_LD_BUGGY_LDGP.
10777         ("*exception_receiver_2"): Likewise.
10778         * except.c (finish_eh_generation): Remove Tru64 reference.
10779         * ginclude/stdarg.h [_HIDDEN_VA_LIST]: Don't undef _VA_LIST.
10780         * system.h (TARGET_HANDLE_PRAGMA_EXTERN_PREFIX): Poison.
10781         * target.def (handle_pragma_extern_prefix): Remove.
10783         * Makefile.in (mips-tfile.o-warn): Remove.
10784         (ALL_HOST_BACKEND_OBJS): Remove mips-tfile.o, mips-tdump.o.
10785         (mips-tfile, mips-tfile.o, mips-tdump, mips-tdump.o): Remove.
10786         * mips-tdump.c, mips-tfile.c: Remove.
10788         * doc/extend.texi (Symbol-Renaming Pragmas): Remove #pragma
10789         extern_prefix.
10790         * doc/install.texi (Binaries): Remove Tru64 UNIX reference.
10791         (Specific, alpha*-dec-osf5.1): Note removal.
10792         * doc/tm.texi.in (Misc, TARGET_HANDLE_PRAGMA_EXTERN_PREFIX):
10793         Remove.
10794         * doc/tm.texi: Regenerate.
10795         * doc/trouble.texi (Cross-Compiler Problems): Remove.
10797 2012-03-12  Richard Guenther  <rguenther@suse.de>
10799         * config/arm/arm.c (neon_dereference_pointer): Do not call
10800         covert during RTL expansion.
10802 2012-03-12  Tristan Gingold  <gingold@adacore.com>
10804         * doc/invoke.texi (VMS Options): Merge Alpha/VMS and IA-64/VMS
10805         Options.  Mention -mpointer-size.
10807 2012-03-12  Richard Guenther  <rguenther@suse.de>
10809         * config/alpha/alpha.c (alpha_gimplify_va_arg): Use
10810         build_nonstandard_integer_type.
10812 2012-03-12  Richard Guenther  <rguenther@suse.de>
10814         * tree.c (signed_or_unsigned_type_for): Use
10815         build_nonstandard_integer_type.
10816         (signed_type_for): Adjust documentation.
10817         (unsigned_type_for): Likewise.
10818         * tree-pretty-print.c (dump_generic_node): Use standard names
10819         for non-standard integer types if available.
10821 2012-03-12  Tristan Gingold  <gingold@adacore.com>
10823         * config/vms/vms.opt: Add vms-opts.h header.
10824         (mmalloc64): Use flag_vms_malloc64 flag instead of MALLOC64
10825         target mask.
10826         (-mvms-return-codes): Document.
10827         (-mpointer-size): New option.
10828         (vms_pointer_size): Add enumeration.
10829         * config/vms/vms-opts.h: New file.
10830         * config/vms/vms.h (TARGET_OS_CPP_BUILTINS): Define
10831         __INITIAL_POINTER_SIZE.
10832         (POINTER_SIZE, SIZE_TYPE, PTRDIFF_TYPE): Adjust definition.
10833         (C_COMMON_OVERRIDE_OPTIONS): Define.
10834         (DWARF2_ADDR_SIZE): Define.
10835         * config/vms/vms.c (vms_patch_builtins): Adjust condition.
10836         * config/vms/vms-protos.h (vms_c_common_override_options):
10837         New prototype.
10838         * config/vms/vms-c.c (vms_pragma_pointer_size): Ignore pragma
10839         if -mno-pointer-size.
10840         (vms_c_common_override_options): New function.
10841         * config/ia64/vms.h (TARGET_DEFAULT): Remove MASK_MALLOC64.
10842         * config/alpha/vms.h (TARGET_DEFAULT): Remove MASK_MALLOC64.
10843         (MALLOC_ABI_ALIGNMENT): Use flag_vms_malloc64
10844         and flag_vms_pointer_size.
10845         (MASK_RETURN_ADDR): Set according to flag_vms_pointer_size.
10846         * config.gcc (*-*-*vms*): Define xm_file.
10847         (alpha*-dec-*vms*): Do not define xm_file.
10848         (alpha64-dec-*vms*): Remove.
10849         (ia64-hp-*vms*): Do not define xm_file.  Simplify tm_file
10850         and tmake_file.
10852 2012-03-12  Jakub Jelinek  <jakub@redhat.com>
10854         PR tree-optimization/51721
10855         * tree-vrp.c (register_edge_assert_for_2): Add asserts for unsvar
10856         if (int) unsvar cmp CST.
10858 2012-03-12  Richard Guenther  <rguenther@suse.de>
10860         * tree-sra.c (create_access_replacement): Only rename the replacement
10861         if we can rewrite it into SSA form.  Properly mark register typed
10862         replacements that we cannot rewrite with TREE_ADDRESSABLE.
10863         * tree-cfg.c (verify_expr): Fix BIT_FIELD_REF verification
10864         for aggregate or BLKmode results.
10866 2012-03-12  Jakub Jelinek  <jakub@redhat.com>
10868         PR tree-optimization/52533
10869         * tree-vrp.c (register_edge_assert_for_2): Use double_int
10870         type for mask, only handle shifts by non-zero in-range
10871         shift count, for LE_EXPR and GT_EXPR if new_val is
10872         maximum, don't add the assertion.
10874 2012-02-12  Kirill Yukhin  <kirill.yukhin@intel.com>
10876         * doc/invoke.texi: Document -mrtm option.
10877         * common/config/i386/i386-common.c (OPTION_MASK_ISA_RTM_SET): New.
10878         (OPTION_MASK_ISA_RTM_UNSET): Ditto.
10879         (ix86_handle_option): Handle OPT_mrtm.
10880         * config.gcc (i[34567]86-*-*): Add rtmintrin.h and
10881         xtestintrin.h.
10882         (x86_64-*-*): Ditto.
10883         * i386-builtin-types.def (INT_FTYPE_VOID): New.
10884         * config/i386/i386-c.c (ix86_target_macros_internal): Define
10885         __RTM__ if needed.
10886         (ix86_target_string): Define -mrtm option.
10887         (PTA_RTM): New.
10888         (ix86_option_override_internal): Extend "corei7-avx" with RTM option.
10889         Handle new option.
10890         (ix86_valid_target_attribute_inner_p): Add OPT_mrtm.
10891         (ix86_builtins): Add IX86_BUILTIN_XBEGIN, IX86_BUILTIN_XEND,
10892         IX86_BUILTIN_XTEST.
10893         (bdesc_special_args): Ditto.
10894         (ix86_init_mmx_sse_builtins): Add IX86_BUILTIN_XABORT.
10895         (ix86_expand_special_args_builtin): Handle new built-in type.
10896         (ix86_expand_builtin): Handle XABORT instruction.
10897         * config/i386/i386.h (TARGET_RTM): New.
10898         * config/i386/i386.md (UNSPECV_XBEGIN): New.
10899         (UNSPECV_XEND): Ditto.
10900         (UNSPECV_XABORT): Ditto.
10901         (UNSPECV_XTEST): Ditto.
10902         (xbegin): Ditto.
10903         (xbegin_1): Ditto.
10904         (xend): Ditto.
10905         (xabort): Ditto
10906         (xtest): Ditto.
10907         (xtest_1): Ditto.
10908         * config/i386/i386.opt (mrtm): New.
10909         * config/i386/immintrin.h: Include rtmintrin.h and xtestintrin.h.
10910         * config/i386/rtmintrin.h: New header.
10911         * config/i386/xtestintrin.h: Ditto.
10913 2012-03-12  Tristan Gingold  <gingold@adacore.com>
10915         * ginclude/stddef.h: Adjust previous patch.
10916         Use __VMS__ instead of VMS.
10918 2012-03-12  Uros Bizjak  <ubizjak@gmail.com>
10920         * config/i386/i386.md (setcc + movzbl to xor + setcc peephole2):
10921         Also convert sequences with CC setting arithmetic instruction.
10923 2012-03-11  Sandra Loosemore  <sandra@codesourcery.com>
10925         * doc/invoke.texi (Option Summary): Move -no-integrated-cpp
10926         from C Language Options to Preprocessor Options.
10927         (C Dialect Options): Move -no-integrated-cpp documentation
10928         from here...
10929         (Preprocessor Options): ...to here.  Rewrite the description
10930         so it makes more sense, and remove discussion of merging front ends.
10932 2012-03-11  H.J. Lu  <hongjiu.lu@intel.com>
10934         * config/i386/i386.c (ix86_expand_movmem): Use word_mode for size
10935         needed for loop.
10936         (ix86_expand_setmem): Likewise.
10938 2012-03-11  Uros Bizjak  <ubizjak@gmail.com>
10940         * config/i386/i386.c (ix86_zero_extend_to_Pmode): Rewrite using
10941         convert_to_mode.
10943 2012-03-11  H.J. Lu  <hongjiu.lu@intel.com>
10945         * config/i386/i386.c (ix86_trampoline_init): Use movl for 64bit if
10946         ptr_mode == SImode.  Replace DImode with Pmode or ptr_mode.
10948 2012-03-11  H.J. Lu  <hongjiu.lu@intel.com>
10950         * config/i386/i386.c (x86_this_parameter): Replace DImode with Pmode.
10952 2012-03-11  H.J. Lu  <hongjiu.lu@intel.com>
10954         * config/i386/i386.md (lwp_slwpcb): Check Pmode instead of
10955         TARGET_64BIT.
10957 2012-03-11  H.J. Lu  <hongjiu.lu@intel.com>
10958             Uros Bizjak  <ubizjak@gmail.com>
10960         * config/i386/predicates.md (call_insn_operand): Allow
10961         constant_call_address_operand in Pmode only.
10962         (sibcall_insn_operand): Ditto.
10963         * config/i386/i386.md (*call): Use W mode iterator instead of P mode.
10964         (*call_vzeroupper): Ditto.
10965         (*sibcall): Ditto.
10966         (*sibcall_vzeroupper): Ditto.
10967         (*call_value): Ditto.
10968         (*call_value_vzeroupper): Ditto.
10969         (*sibcall_value): Ditto.
10970         (*sibcall_value_vzeroupper): Ditto.
10971         (*indirect_jump): Ditto.
10972         (*tablejump_1): Ditto.
10973         (indirect_jump): Convert memory address to word mode for TARGET_X32.
10974         (tablejump): Ditto.
10975         * config/i386/i386.c (ix86_expand_call): Convert indirect operands
10976         to word mode.
10978 2012-03-11  Oleg Endo  <olegendo@gcc.gnu.org>
10980         PR target/51244
10981         * config/sh/sh.md (movnegt): Expand into respective insns immediately.
10982         Use movrt_negc instead of negc pattern for non-SH2A.
10983         (*movnegt): Remove.
10984         (*movrt_negc, *negnegt, *movtt, *movt_qi): New insns and splits.
10986 2012-03-10  H.J. Lu  <hongjiu.lu@intel.com>
10988         * config/i386/i386.c (ix86_decompose_address): Disallow fs:(reg)
10989         if Pmode != word_mode.
10990         (legitimize_tls_address): Call gen_tls_initial_exec_x32 if
10991         Pmode == SImode for TARGET_X32.
10993         * config/i386/i386.md (UNSPEC_TLS_IE_X32): New.
10994         (tls_initial_exec_x32): Likewise.
10996 2012-03-10  Chung-Lin Tang  <cltang@codesourcery.com>
10998         PR rtl-optimization/52528
10999         * combine.c (can_combine_p): Add setting of subst_low_luid
11000         before call to expand_field_assignment().
11002 2012-03-09  Sandra Loosemore  <sandra@codesourcery.com>
11004         * doc/invoke.texi: Use correct names/markup for "GCC", "GDB", "ld",
11005         and related program names.
11007 2012-03-09  Sandra Loosemore  <sandra@codesourcery.com>
11009         * doc/invoke.texi: Use correct names for "DWARF", "stabs", and "ELF".
11011 2012-03-09  Uros Bizjak  <ubizjak@gmail.com>
11013         PR target/52530
11014         * config/i386/i386.c (ix86_print_operand): Handle 'E' operand modifier.
11015         (ix86_print_operand_address): Handle UNSPEC_LEA_ADDR. Do not fallback
11016         to set code to 'q'.
11017         * config/i386/i386.md (UNSPEC_LEA_ADDR): New unspec.
11018         (*movdi_internal_rex64): Use %E operand modifier for lea.
11019         (*movsi_internal): Ditto.
11020         (*lea_1): Ditto.
11021         (*lea<mode>_2): Ditto.
11022         (*lea_{3,4,5,6}_zext): Ditto.
11023         (*tls_global_dynamic_32_gnu): Ditto.
11024         (*tls_global_dynamic_64): Ditto.
11025         (*tls_dynamic_gnu2_lea_32): Ditto.
11026         (*tls_dynamic_gnu2_lea_64): Ditto.
11027         (pro_epilogue_adjust_stack_<mode>_add): Ditto.
11029 2012-03-09  Michael Meissner  <meissner@linux.vnet.ibm.com>
11031         * config/rs6000/linux64.h (OPTION_TARGET_CPU_DEFAULT): Do not
11032         redefine to be NULL if the current bit-size is different from the
11033         configured bit-size.
11035         * config/rs6000/rs6000.c (rs6000_option_override_internal): If the
11036         cpu is defaulted, use PROCESSOR_DEFAULT and PROCESSOR_DEFAULT64 to
11037         set the default tuning.  Add asserts to make sure the cpu and tune
11038         indexes are defined.  Fix tests for cpu/tune index to use >= 0 to
11039         test whether the index is set, instead of > 0.
11040         (rs6000_file_start): Do not reset the default cpu if the current
11041         bit-size is different from the configured bit-size.
11043 2012-03-09  Tristan Gingold  <gingold@adacore.com>
11045         * config/vms/vms-crtlmap.map: Add comments.
11046         Add entries needed to build Ada RTS.
11048 2012-03-09  Tristan Gingold  <gingold@adacore.com>
11050         * ginclude/stddef.h: Do not define __size_t on VMS.
11052 2012-03-09  Tristan Gingold  <gingold@adacore.com>
11054         * c-tree.h (c_default_pointer_mode): New variable.
11055         * c-decl.c (c_default_pointer_mode): New variable.
11056         (c_build_pointer_type): New function.
11057         (grokdeclarator): Call c_build_pointer_type instead
11058         of build_pointer_type.
11060         * config/vms/vms-c.c: Include c-tree.h
11061         (saved_pointer_mode): New variable.
11062         (handle_pragma_pointer_size): New function.
11063         (vms_pragma_pointer_size, vms_pragma_required_pointer_size): Likewise.
11064         (vms_c_register_pragma): Register __pointer_size and
11065         __required_pointer_size pragmas.
11067 2012-03-09  Tristan Gingold  <gingold@adacore.com>
11069         * config/vms/vms-c.c (vms_construct_include_filename): New function.
11070         (vms_c_register_includes): Reference it.
11072 2012-03-09  Andrew Pinski  <apinski@cavium.com>
11074         PR middle-end/51988
11075         * tree-ssa-phiopt.c: Include tree-pretty-print.h for
11076         print_generic_expr.
11077         (tree_ssa_phiopt_worker): Go through all the PHIs for
11078         value_replacement instead of just the singleton one.
11079         (value_replacement): Change return type to int.  Return 0 instead of
11080         false.
11081         Allow the middle basic block to contain more than just the defining
11082         statement.
11083         Handle non empty middle basic blocks.
11084         * Makefile.in (tree-ssa-phiopt.o): Add tree-pretty-print.h.
11086 2012-03-09  Jiangning Liu  <jiangning.liu@arm.com>
11088         * tree-scalar-evolution (interpret_rhs_expr): generate chrec for
11089         array reference and component reference.
11090         (analyze_scalar_evolution_for_address_of): New.
11092 2012-03-08  Jie Zhang  <jzhang918@gmail.com>
11094         PR target/49862
11095         * config/bfin/bfin.c (hwloop_optimize): Fix unused variable warnings.
11096         (hwloop_pattern_reg): Fix set but not used warning.
11097         (bfin_reorg_loops): Remove unused parameter.
11098         (bfin_reorg): Update use of bfin_reorg_loops.
11100 2012-03-08  H.J. Lu  <hongjiu.lu@intel.com>
11102         * config/i386/i386.c (setup_incoming_varargs_64): Use word_mode
11103         with integer parameters in registers.
11104         (gen_push): Push register in word_mode instead of Pmode.
11105         (ix86_emit_save_regs): Likewise.
11106         (ix86_emit_save_regs_using_mov): Save integer registers in word_mode.
11107         (gen_pop): Pop register in word_mode instead of Pmode.
11108         (ix86_emit_restore_regs_using_pop): Likewise.
11109         (ix86_expand_prologue): Replace Pmode with word_mode for push
11110         immediate.  Use ix86_gen_pro_epilogue_adjust_stack.  Save and
11111         restore RAX and R10 in word_mode.
11112         (ix86_emit_restore_regs_using_mov): Restore integer registers
11113         in word_mode.
11114         (ix86_expand_split_stack_prologue): Save R10_REG and restore in
11115         word_mode.
11116         (ix86_split_to_parts): Use word_mode with PUT_MODE for push.
11117         (ix86_split_long_move): Likewise.
11119         * config/i386/i386.md (W): New.
11120         (*push<mode>2_prologue): Replace :P with :W.
11121         (*pop<mode>1): Likewise.
11122         (*pop<mode>1_epilogue): Likewise.
11123         (push/pop peephole2): Use word_mode scratch registers.
11125 2012-03-08  Uros Bizjak  <ubizjak@gmail.com>
11127         * config/i386/predicates.md (indirect_branch_operand): Simplify.
11129 2012-03-08  Georg-Johann Lay  <avr@gjlay.de>
11131         * config/avr/avr.md (*addhi3, addhi3_clobber): Add "w" alternative
11132         for constants in [-63,63].
11134 2012-03-08  Uros Bizjak  <ubizjak@gmail.com>
11136         PR target/52530
11137         Revert:
11138         2012-03-04  H.J. Lu  <hongjiu.lu@intel.com>
11140         * config/i386/i386.c (ix86_print_operand_address): Only handle
11141         zero-extended DImode addresses.
11143 2012-03-08  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
11145         * configure.ac (gcc_cv_as_ix86_tlsldmplt): Add label.
11146         * configure: Regenerate.
11148 2012-03-08  Georg-Johann Lay  <avr@gjlay.de>
11150         PR target/52496
11151         * config/avr/avr.c (avr_mem_clobber): New static function.
11152         (avr_expand_delay_cycles): Add memory clobber operand to
11153         delay_cycles_1, delay_cycles_2, delay_cycles_3, delay_cycles_4.
11154         * config/avr/avr.md (unspec): Add UNSPEC_MEMORY_BARRIER.
11155         (enable_interrupt, disable_interrupt): New expander.
11156         (nopv, sleep, wdr): New expanders.
11157         (delay_cycles_1): Add memory clobber.
11158         (delay_cycles_2): Add memory clobber.
11159         (delay_cycles_3): Add memory clobber.
11160         (delay_cycles_4): Add memory clobber.
11161         (cli_sei): New insn from former "enable_interrupt",
11162         "disable_interrupt" with memory clobber.
11163         (*wdt): New insn from former "wdt" with memory clobber.
11164         (*nopv): Similar, but for "nopv".
11165         (*sleep): Similar, but for "sleep".
11167 2012-03-07  Oleg Endo  <olegendo@gcc.gnu.org>
11168             Kaz Kojima  <kkojima@gcc.gnu.org>
11170         PR target/52503
11171         * config/sh/sh.opt (msoft-atomic): Use Var instead of Mask.
11172         * config/sh/linux.h (TARGET_DEFAULT): Remove MASK_SOFT_ATOMIC.
11173         (SUBTARGET_OVERRIDE_OPTIONS): Define.
11175 2012-03-07  Uros Bizjak  <ubizjak@gmail.com>
11177         * config/i386/predicates.md (x86_64_zext_general_operand): New.
11178         * config/i386/i386.md (*zero_extendsidi2_rex64): Change operand 1
11179         predicate to x86_64_zext_general_operand.  Accept "Z" constraint.
11181 2012-03-07  Walter Lee  <walt@tilera.com>
11183         * config/tilegx/tilegx.c (tilegx_expand_prologue): Don't generate
11184         REG_CFA_* notes for the stack pointer.
11185         (tilegx_expand_epilogue): Restore stack pointer by adjusting it by
11186         EH_RETURN_STACKADJ_RTX.
11187         * config/tilepro/tilepro.c (tilepro_expand_prologue): Don't
11188         generate REG_CFA_* notes for the stack pointer.
11189         (tilepro_expand_epilogue): Restore stack pointer by adjusting it
11190         by EH_RETURN_STACKADJ_RTX.
11192 2012-03-07  Georg-Johann Lay  <avr@gjlay.de>
11194         * doc/invoke.texi (AVR Built-in Macros): Correct condition for
11195         when __AVR_3_BYTE_PC__ is defined.
11197 2012-03-07  Uros Bizjak  <ubizjak@gmail.com>
11199         * config/i386/i386.c (ix86_print_operand_punct_valid_p): Add '^'.
11200         (ix86_print_operand): Handle '^'.
11201         * config/i386/i386.md (*strmovdi_rex_1): Macroize memory operands
11202         using P mode iterator.  Add %^ to asm template to conditionally emit
11203         addr32 prefix.
11204         (*rep_movdi_rex64): Ditto.
11205         (*strsetdi_rex_1): Ditto.
11206         (*rep_stosdi_rex64): Ditto.
11207         (*strmov{si,hi,qi}_1): Add %^ to asm template to
11208         conditionally emit addr32 prefix.
11209         (*rep_mov{si,qi}): Ditto.
11210         (*strset{si,hi,qi}): Ditto.
11211         (*rep_stos{si,qi}): Ditto.
11212         (*cmpstrnqi_nz_1): Ditto.
11213         (*cmpstrnqi_1): Ditto.
11214         (*strlenqi_1): Ditto.
11216 2012-03-07  H.J. Lu  <hongjiu.lu@intel.com>
11218         * config/i386/i386.c (function_value_64): Return pointers in
11219         word_mode instead of Pmode.
11220         (ix86_promote_function_mode): Likewise.
11222 2012-03-07  Richard Guenther  <rguenther@suse.de>
11224         * coverage.c (get_gcov_type): Use type_for_mode.
11225         (get_gcov_unsigned_t): Likewise.
11226         * expr.c (store_constructor): Use type_for_mode.
11227         (try_casesi): Likewise.
11228         * tree-ssa-loop-ivopts.c (add_standard_iv_candidates_for_size): Remove.
11229         (add_standard_iv_candidates): Use standard type trees.
11230         * dojump.c (do_jump): Remove dead code.
11232 2012-03-07  Richard Guenther  <rguenther@suse.de>
11234         * c-typeck.c (pointer_diff): Use c_common_type_for_size.
11236 2012-03-07  Richard Guenther  <rguenther@suse.de>
11238         * convert.c (strip_float_extensions): Move ...
11239         * tree.c (strip_float_extensions): ... here.
11241 2012-03-07  Georg-Johann Lay  <avr@gjlay.de>
11243         PR target/52484
11244         * config/avr/avr.md (xload<mode>_A): Add R22... to register footprint.
11246 2012-03-07  Richard Guenther  <rguenther@suse.de>
11248         * omp-low.c (extract_omp_for_data): Use signed_type_for.
11249         (expand_omp_for_generic): Likewise.
11250         (expand_omp_for_static_nochunk): Likewise.
11251         (expand_omp_for_static_chunk): Likewise.
11252         * tree-vect-stmts.c (vect_gen_perm_mask): Use type_for_mode.
11253         * tree-vect-slp.c (vect_transform_slp_perm_load): Likewise.
11254         * tree-vect-loop-manip.c (vect_gen_niters_for_prolog_loop):
11255         Use unsigned_type_for.
11256         (vect_create_cond_for_align_checks): Use signed_type_for.
11258 2012-03-07  Andrey Belevantsev  <abel@ispras.ru>
11260         PR rtl-optimization/52203
11261         * sel-sched.c (estimate_insn_cost): New parameter pempty.  Adjust
11262         all callers to pass NULL except ...
11263         (reset_sched_cycles_in_current_ebb): ... here, save the value
11264         in new variable 'empty'.  Increase issue_rate only for
11265         non-empty insns.
11267 2012-03-07  Ralf Corsépius  <ralf.corsepius@rtems.org>
11269         PR target/51417
11270         * Makefile.in: Let install-gcc-ar depend on installdirs,
11271         gcc-ar$(exeext), gcc-nm$(exeext), gcc-ranlib$(exeext).
11272         Don't double canonicalize if cross-compiling.
11274 2012-03-07  Georg-Johann Lay  <avr@gjlay.de>
11276         PR target/52506
11277         * gcc/config/avr/avr.c (expand_epilogue): Fix order of restoration
11278         to: RAMPZ, RAMPY, RAMPX, RAMPD.
11279         (expand_prologue): Only clear RAMPZ if it has effect on RAM-read.
11281 2012-03-07  Georg-Johann Lay  <avr@gjlay.de>
11283         PR target/52505
11284         * config/avr/avr.c (avr_out_xload): Don't read unintentionally
11285         from RAM.
11286         * config/avr/avr.md (xload_8): Adjust insn length.
11288 2012-03-07  Georg-Johann Lay  <avr@gjlay.de>
11290         PR target/52461
11291         * gcc/config/avr/avr.c (avr_out_lpm): Clear RAMPZ after usage
11292         if RAMPZ affects reading from RAM.
11294 2012-03-07  Richard Guenther  <rguenther@suse.de>
11296         PR pch/52518
11297         PR pch/38987
11298         * doc/invoke.texi (Precompiled Headers): Remove sentence that
11299         suggests you can include PCHs from inside another header.
11301 2012-03-07  Richard Sandiford  <rdsandiford@googlemail.com>
11303         PR middle-end/52515
11304         * rtl.h (pc_rtx, cc0_rtx, ret_rtx, simple_return_rtx): Add GTY markers.
11306 2012-03-07  Kai Tietz  <ktietz@redhat.com>
11308         * doc/invoke.texi (fwritable-relocated-rdata): Document
11309         new Cygwin/MinGW target option.
11310         * config/i386/winnt.c (i386_pe_unique_section): Ignore
11311         reloc if flag -fwritable-relocated-rdata is not set.
11312         (i386_pe_section_type_flags): Likewise.
11313         * config/i386/cygming.opt (fwritable-relocated-rdata):
11314         Add new flag variable flag_writable_rel_rdata.
11316 2012-03-07  Richard Guenther  <rguenther@suse.de>
11318         * tree-ssa-math-opts.c (convert_mult_to_widen): Check actual
11319         precision against gimple constraints.
11321 2012-03-06  Richard Sandiford  <rdsandiford@googlemail.com>
11323         PR middle-end/52372
11324         * rtl.h (pc_rtx, ret_rtx, simple_return_rtx, cc0_rtx): Redefine as
11325         variables.
11326         (GR_PC, GR_CC0, GR_RETURN, GR_SIMPLE_RETURN): Delete.
11327         * emit-rtl.c (pc_rtx, ret_rtx, simple_return_rtx, cc0_rtx): New
11328         variables.
11329         (init_emit_regs): Move associated initialization to...
11330         (init_emit_once): ...here.
11332 2012-03-06  Richard Henderson  <rth@redhat.com>
11334         * config/m68k/m68k.h (ISA_HAS_TAS): New.
11335         * config/m68k/sync.md (atomic_test_and_set): Use it.
11336         (atomic_test_and_set_1): Likewise.
11338 2012-03-06  Michael Meissner  <meissner@linux.vnet.ibm.com>
11340         PR target/50310
11341         * config/rs6000/vector.md (vector_uneq<mode>): Add support for
11342         UNEQ, LTGT, ORDERED, and UNORDERED IEEE vector comparisons.
11343         (vector_ltgt<mode>): Likewise.
11344         (vector_ordered<mode>): Likewise.
11345         (vector_unordered<mode>): Likewise.
11346         * config/rs6000/rs6000.c (rs6000_emit_vector_compare_inner): Likewise.
11348 2012-03-06  Aldy Hernandez  <aldyh@redhat.com>
11350         * trans-mem.c: New typedef for tm_region_p.
11351         Define vector types for tm_region_p.
11352         (tm_region_init): Replace region_worklist to a vector called
11353         bb_regions.
11355 2012-03-06  Richard Guenther  <rguenther@suse.de>
11357         * fold-const.c (build_fold_addr_expr_with_type_loc): Fold
11358         MEM_REF with constant pointer operand.
11360 2012-03-06  Richard Guenther  <rguenther@suse.de>
11362         PR middle-end/52493
11363         * tree-ssa-alias.c (ptr_derefs_may_alias_p): Robustify.
11365 2012-03-06  Tristan Gingold  <gingold@adacore.com>
11367         * config/vms/vms-c.c (vms_pragma_nomember_alignment): Handle octaword.
11368         (external_model_kind): Improve documentation.
11369         (vms_pragma_extern_model): Handle relaxed_redef.
11370         (vms_c_register_pragma): Allow expansion for nomember_alignment.
11372 2012-03-06  Georg-Johann Lay  <avr@gjlay.de>
11374         * doc/invoke.texi (AVR Options): -mmcu=: Document the XMEGA cores.
11375         Explain RAMPD, RAMPX, RAMPDY, RAMPZ usage by avr-gcc.
11376         Some more notes on EIND usage and reorder EIND subsection.
11378 2012-03-06  Tristan Gingold  <gingold@adacore.com>
11380         * config/vms/vms.c (VMS_CRTL_LDBL): Rename from VMS_CRTL_PRNTF.
11381         * config/vms/vms-crtlmap.map: Rename PRNTF to LDBL.
11383 2012-03-06  Tristan Gingold  <gingold@adacore.com>
11385         * config/vms/t-vmsnative (version): Define.
11386         * config/vms/t-vms (STMP_FIXPROTO, STMP_FIXINC, version): Remove.
11388 2012-03-06  Andrey Belevantsev  <abel@ispras.ru>
11390         PR rtl-optimization/52250
11391         * sel-sched-ir.c (maybe_tidy_empty_bb): Try harder to find a bb
11392         to put note list into.  Unconditionally call move_bb_info.
11393         (move_bb_info): Do not assert the blocks being in the same region,
11394         just drop the note list if they are not.
11396 2012-03-06  Oleg Endo  <olegendo@gcc.gnu.org>
11398         PR target/51244
11399         * config/sh/sh.c (sh_expand_t_scc): Remove SH2A special case
11400         and use unified expansion logic.
11401         * config/sh/sh.md (xorsi3_movrt): Rename to movrt.  Move
11402         closer to the existing movt insn.
11403         (negc): Rename insn to *negc.  Add new expander.
11404         (movnegt): Use xor pattern for T bit negation.  Reserve helper
11405         constant for negc pattern.
11406         (*movnegt): New insn and splitter.
11408 2012-03-05  Bernd Schmidt  <bernds@codesourcery.com>
11410         * c-typeck.c (pointer_diff): Check for POINTER_PLUS_EXPR, not
11411         PLUS_EXPR.
11413 2012-03-05  Richard Henderson  <rth@redhat.com>
11415         * genemit.c (main): Include "target.h" in insn-emit.c.
11416         * Makefile.in (insn-emit.o): Depend on TARGET_H.
11417         * config/sh/sync.md (atomic_test_and_set): Reference
11418         targetm.atomic_test_and_set_trueval instead of
11419         TARGET_ATOMIC_TEST_AND_SET_TRUEVAL.
11421 2012-03-05  Joern Rennecke  <joern.rennecke@embecosm.com>
11423         * config/epiphany/epiphany.c (epiphany_function_value_regno_p):
11424         Make static.
11426 2012-03-05  Steven Bosscher  <steven@gcc.gnu.org>
11428         * langhooks.c (add_builtin_type): New function.
11429         * langhooks.h (add_builtin_type): Export it.
11430         * config/mep/mep.c (mep_init_builtins): Use it.
11431         * config/rs6000/rs6000.c (rs6000_init_builtins): Use it.
11433 2012-03-05  Jakub Jelinek  <jakub@redhat.com>
11435         PR debug/51902
11436         * tree.h (BLOCK_SAME_RANGE): Define.
11437         * function.c (block_fragments_nreverse): Clear BLOCK_SAME_RANGE
11438         if BLOCK_FRAGMENT_CHAIN is non-NULL, but has it cleared.
11439         Also clear BLOCK_SAME_RANGE if fragment chain's supercontext fragment
11440         isn't equal to supercontext fragment's fragment chain.
11441         Adjust BLOCK_SUPERCONTEXT to point to supercontext fragment's
11442         fragment origin.
11443         (blocks_nreverse_all): Likewise.
11444         (reorder_blocks_1): Compute BLOCK_SAME_RANGE bits.  Set
11445         BLOCK_SUPERCONTEXT to supercontext fragment instead of
11446         supercontext fragment's fragment origin.
11447         * dwarf2out.c (add_high_low_attributes): If stmt has the same
11448         range as its parent (or parents thereof etc.), use the parent's
11449         DW_AT_ranges value instead of creating a new .debug_ranges range.
11451 2012-03-05  Richard Henderson  <rth@redhat.com>
11453         PR tree-opt/52242
11454         Revert: 2011-11-26  Richard Henderson  <rth@redhat.com>
11455         * omp-low.c (expand_omp_atomic): Assume anything aligned to
11456         BIGGEST_ALIGNMENT is aligned.
11458 2012-03-05  Richard Henderson  <rth@redhat.com>
11460         * config/sh/sh.h (TARGET_ATOMIC_TEST_AND_SET_TRUEVAL): Move...
11461         * config/sh/sh.c: ... here.
11463 2012-03-05  Richard Henderson  <rth@redhat.com>
11465         PR target/52481
11466         * config/m68k/sync.md (atomic_test_and_set): Use expand_simple_unop
11467         instead of calling negqi2 directly.
11469 2012-03-05  Aldy Hernandez  <aldyh@redhat.com>
11471         PR middle-end/52463
11472         * trans-mem.c (tm_region_init): Use last_basic_block.
11474 2012-03-05  Oleg Endo  <olegendo@gcc.gnu.org>
11476         * config/sh/sh.h (TARGET_ATOMIC_TEST_AND_SET_TRUEVAL): New hook.
11477         * config/sh/sync.md (atomic_test_and_set): New expander.
11478         (tasb, atomic_test_and_set_soft): New insns.
11479         * config/sh/sh.opt (menable-tas): New option.
11480         * doc/invoke.texi (SH Options): Document it.
11482 2012-03-05  Richard Guenther  <rguenther@suse.de>
11484         * cfgloop.c (verify_loop_structure): Verify dominators before
11485         using them.
11486         * graphite-clast-to-gimple.c (graphite_verify): Do not verify
11487         dominators from here.
11488         * graphite-scop-detection.c (create_sese_edges): Likewise.
11489         * loop-doloop.c (doloop_optimize_loops): Likewise.
11490         * loop-init.c (loop_optimizer_init): Likewise.
11491         * loop-unroll.c (unroll_and_peel_loops): Likewise.
11492         * loop-unswitch.c (unswitch_loops): Likewise.
11493         * tree-ssa-loop-manip.c (tree_transform_and_unroll_loop): Likewise.
11494         * tree-parloops.c (parallelize_loops): Likewise.  Verify
11495         only when checking is enabled.
11496         * tree-loop-distribution.c (tree_loop_distribution): Likewise.
11498 2012-03-05  Bernd Schmidt  <bernds@codesourcery.com>
11500         * genautomata.c (parse_automata_opt): New static function.
11501         (initiate_automaton_gen): Remove all option handling code.  Remove
11502         argc argument.  All callers changed.
11503         (main): Call init_rtx_reader_args_cb with the new function as argument.
11505 2012-03-05  Richard Guenther  <rguenther@suse.de>
11507         * cfgexpand.c (gimple_expand_cfg): Free dominator info.
11508         * tree-if-conv.c (combine_blocks): Free post-dominator info
11509         after breaking it.
11510         * tree-parloops.c (create_parallel_loop): Free and re-compute
11511         dominator info after breaking it.
11513 2012-03-05  Richard Guenther  <rguenther@suse.de>
11515         PR middle-end/52353
11516         * optabs.h (trapv_unoptab_p): New function.
11517         (trapv_binoptab_p): Likewise.
11518         * optabs.c (expand_binop): Use emit_libcall_block_1 with
11519         a proper equiv_may_trap argument.
11520         (expand_unop): Likewise.
11521         (emit_libcall_block_1): Take extra argument whether the
11522         instruction may trap.  Renamed from ...
11523         (emit_libcall_block): ... this.  New wrapper.
11525 2012-03-05  Jakub Jelinek  <jakub@redhat.com>
11527         PR tree-optimization/51721
11528         * tree-vrp.c (register_edge_assert_for_2): If comparing
11529         lhs of right shift by constant with an integer constant,
11530         add ASSERT_EXPRs for the rhs1 of the right shift.
11532         * cfgrtl.c (cfg_layout_merge_blocks): Cleanup.
11534 2012-03-05  Richard Guenther  <rguenther@suse.de>
11536         * tree.c (integer_zerop): Handle VECTOR_CSTs.
11537         (integer_onep): Likewise.
11538         (integer_all_onesp): Likewise.
11540 2012-03-05  Georg-Johann Lay  <avr@gjlay.de>
11542         * config/avr/avr.md (*umaddqihi4.2): New insn-and-split.
11544 2012-03-04  H.J. Lu  <hongjiu.lu@intel.com>
11546         * config/i386/i386.c (pro_epilogue_adjust_stack): Check Pmode
11547         instead of TARGET_64BIT.
11549 2012-03-04  H.J. Lu  <hongjiu.lu@intel.com>
11551         * config/i386/i386.c (ix86_expand_prologue): Check Pmode to set
11552         adjust_stack_insn.
11554 2012-03-04  H.J. Lu  <hongjiu.lu@intel.com>
11556         * config/i386/i386.c (ix86_print_operand_address): Only handle
11557         zero-extended DImode addresses.
11559 2012-03-04  Uros Bizjak  <ubizjak@gmail.com>
11561         * config/i386/i386.c (ix86_print_operand) <case '+'>: Declare
11562         taken and cputaken as bool.
11564 2012-03-04  Uros Bizjak  <ubizjak@gmail.com>
11566         * config/i386/constraints.md (Ya): New internal constraint.
11567         * config/i386/i386.md (zero_extendsidi2): Remove expansion.
11568         (*zero_extendsidi2_rex64): Add x,x alternative.
11569         (*zero_extendsidi2): Ditto.  Add o,0 alternative.
11570         Remove flags reg clobber.  Adjust corresponding splits.
11571         (zero_extend<mode>si2): Macroize expander from zero_extendhisi2 and
11572         zero_extendqisi2 expanders using SWI12 mode iterator.
11573         (zero_extend<mode>si2_and): Macroize insn from
11574         zero_extendhisi2_and and zero_extendqisi2_and.  Merge corresponding
11575         splitters.
11576         (*zero_extend<mode>si2):  Macroize insn from
11577         *zero_extendhisi2_movzbl and *zero_extendqisi2_movzbl.
11578         (*zero_extend*2_movzbl_and): Remove insn patterns.
11579         (zero_extendqihi2_and): Merge corresponding splitter.
11580         (*zero_extendqihi2): Rename from *zero_extendqihi2_movzbl.
11581         (*zero_extend*2_movzbl_and): Remove insn patterns.
11582         (*anddi_1): Split TYPE_IMOVX instructions.
11583         (*andsi_1): Use Ya for alternative 2.  Split TYPE_IMOVX instructions.
11584         (*andhi_1): Ditto.
11585         (and->zext splitter): Add splitter pattern.
11586         (zero extend with andsi3 splitter): Adjust zero_extend pattern.
11588 2012-03-04  Sandra Loosemore  <sandra@codesourcery.com>
11590         * doc/invoke.texi (C++ Dialect Options): Minor copy-edits to
11591         x86-specific text.
11592         (Debugging Options): Likewise.
11593         (Optimize Options): Likewise.
11594         (i386 and x86-64 Options): Discuss -march before -mtune, consistently
11595         with other architectures.  Use official processor names with correct
11596         spelling/capitalization.  Fix formatting and grammar issues.
11597         (i386 and x86-64 Windows Options): Similar cleanup here.
11599 2012-03-03  Kaz Kojima  <kkojima@gcc.gnu.org>
11601         * config/sh/sh.md (abssi2): Add TARGET_SH1 condition.
11603 2012-03-03  Kaz Kojima  <kkojima@gcc.gnu.org>
11605         * config/sh/sh.c (sh_dwarf_register_span): Don't apply
11606         DBX_REGISTER_NUMBER.
11608 2012-03-03  Kaz Kojima  <kkojima@gcc.gnu.org>
11610         * config/sh/sh.c (shiftcosts): Return MAX_COST when the first
11611         operand is CONST_INT.  Take COSTS_N_INSNS into account.
11612         (sh_rtx_costs): Don't apply COSTS_N_INSNS to the return value
11613         of shiftcosts.
11615 2012-03-02  Richard Henderson  <rth@redhat.com>
11617         * optabs.c (expand_atomic_test_and_set): Honor
11618         atomic_test_and_set_trueval even when atomic_test_and_set
11619         optab is not in use.
11621 2012-03-02  Kaz Kojima  <kkojima@gcc.gnu.org>
11623         PR target/48596
11624         PR target/48806
11625         * config/sh/sh.c (sh_register_move_cost): Increase cost between
11626         GENERAL_REGS and FP_REGS for SImode.
11628 2012-03-02  Oleg Endo  <olegendo@gcc.gnu.org>
11630         PR target/49486
11631         * config/sh/sh.md (negdi2): Add TARGET_SH1 condition.
11632         (absdi2): New expander.
11633         (*absdi2, *negabsdi2, negdi_cond): New insns and splits.
11635 2012-03-02  Oleg Endo  <olegendo@gcc.gnu.org>
11637         * config/sh/sync.md (atomic_exchange<mode>): New expander.
11638         (atomic_exchange<mode>_soft): New insn.
11640 2012-03-02  Oleg Endo  <olegendo@gcc.gnu.org>
11642         * config/sh/sync.md: Update copyright notice dates.
11643         (atomic_compare_and_swap<mode>): Use SImode for return value instead
11644         of QImode.
11645         (atomic_compare_and_swap<mode>_soft): Likewise.
11647 2012-03-02  Oleg Endo  <olegendo@gcc.gnu.org>
11649         PR target/31640
11650         * config/sh/sh.h (LOOP_ALIGN): Move logic to sh_loop_align.
11651         * config/sh/sh.c: Update copyright notice dates.
11652         (sh_loop_align): Add logic from LOOP_ALIGN.  Don't disable loop
11653         alignment for TARGET_HARD_SH4.
11654         (sh_option_override): Reduce default function alignment.  Set
11655         loop alignment to 4 bytes when not optimizing for size.
11657 2012-03-02  Maxim Kuvyrkov  <maxim@codesourcery.com>
11659         PR middle-end/50335
11660         * doc/invoke.texi (floop-flatten): Remove.
11661         * toplev.c (process_options): Remove references to flag_loop_flatten.
11662         * tree-ssa-loop.c (gate_graphite_transform): Same.
11663         * common.opt (floop-flatten): Obsolete.
11664         * graphite-poly.c (apply_poly_transforms): Remove reference to
11665         flag_loop_flatten.
11666         * Makefile.in (graphite-flattening.o): Remove.
11667         * graphite-flattening.c: Remove.
11669 2012-03-02  Uros Bizjak  <ubizjak@gmail.com>
11671         * compare-elim.c (find_comparisons_in_bb): Eliminate only compares
11672         having mode compatible with the mode of previous compare.  Substitute
11673         compare mode of previous compare with the mode, compatible
11674         with eliminated and previous compare.
11676 2012-03-02  Peter Bergner  <bergner@vnet.ibm.com>
11678         * config/rs6000/dfp.md (floatdidd2): New define_insn.
11680 2012-03-02  Uros Bizjak  <ubizjak@gmail.com>
11682         * config/i386/i386.c (ix86_cc_modes_compatible): Declare CCZmode
11683         compatible with CCGOCmode and CCGCmode.
11685 2012-03-02  Peter Bergner  <bergner@vnet.ibm.com>
11687         * config/rs6000/vsx.md (vsx_set_<mode>): Reorder operands.
11689 2012-03-02  Ulrich Weigand  <ulrich.weigand@linaro.org>
11691         * config/arm/arm.c (arm_sat_operator_match): New function.
11692         * config/arm/arm-protos.h (arm_sat_operator_match): Add prototype.
11693         * config/arm/arm.md ("insn" attribute): Add "sat" value.
11694         ("SAT", "SATrev"): New code iterators.
11695         ("SATlo", "SAThi"): New code iterator attributes.
11696         ("*satsi_<SAT:code>"): New pattern.
11697         ("*satsi_<SAT:code>_shift"): Likewise.
11698         * config/arm/arm-fixed.md ("arm_ssatsihi_shift"): Add "insn"
11699         and "shift" attributes.
11700         ("arm_usatsihi"): Add "insn" attribute.
11701         * config/arm/predicates.md (sat_shift_operator): Allow multiplication
11702         by powers of two.  Do not allow shift by 32.
11704 2012-03-02  Uros Bizjak  <ubizjak@gmail.com>
11706         PR target/46716
11707         * config/i386/i386.c (construct_container): Use gen_reg_or_parallel
11708         to pass the argument in the register of "natural" mode.
11710 2012-03-02  Richard Guenther  <rguenther@suse.de>
11712         PR tree-optimization/52406
11713         * tree-data-ref.h: Update documentation about DR_BASE_OBJECT.
11714         (struct indices): Add unconstrained_base member.
11715         (struct dr_alias): Remove unused vops member.
11716         (DR_UNCONSTRAINED_BASE): New define.
11717         * tree-data-ref.c (dr_analyze_indices): For COMPONENT_REFs
11718         add indices to allow their disambiguation.  Make DR_BASE_OBJECT
11719         be an artificial access that covers the whole indexed object,
11720         or mark it with DR_UNCONSTRAINED_BASE if we cannot do so.  Canonicalize
11721         plain decl base-objects to their MEM_REF variant.
11722         (dr_may_alias_p): When the base-object of either data reference
11723         has unknown size use only points-to information.
11724         (compute_affine_dependence): Make dumps easier to read and
11725         more verbose.
11726         * tree-vect-data-ref.c (vector_alignment_reachable_p): Use
11727         DR_REF when looking for packed references.
11728         (vect_supportable_dr_alignment): Likewise.
11730 2012-03-02  Greta Yorsh  <Greta.Yorsh@arm.com>
11732         * config/arm/arm-ldmstm.ml (write_ldm_commutative_peephole):
11733         Improve conditions for peepholes of loads followed by commutative
11734         operators.
11735         * config/arm/ldmstm.md: Regenerated.
11737 2012-03-02  Richard Guenther  <rguenther@suse.de>
11739         * BASE-VER: Set to 4.8.0.
11741 2012-03-01  Richard Earnshaw  <rearnsha@arm.com>
11743         * config.gcc (obsolete): Add all ARM targets using the FPA.
11744         (with_fpu): Obsolete selection of the FPA or Maverick on ARM.
11745         * doc/install.texi: Avoid references to obsolete ARM ports.
11747 2012-03-01  Joern Rennecke  <joern.rennecke@embecosm.com>
11749         * config/epiphany/epiphany.md (movmisalign<mode>): New patterns.
11751 2012-03-01  Jeremy Bennett  <jeremy.bennett@embecosm.com>
11752             Joern Rennecke  <joern.rennecke@embecosm.com>
11754         * doc/extend.texi: Expand and update information on interrupt
11755         attribute for Epiphany.
11757 2012-03-01  Oleg Endo  <olegendo@gcc.gnu.org>
11759         * config/sh/sh-protos.h: Update copyright notice dates.
11760         * config/sh/sh.h: Likewise.
11761         * config/sh/sh.md: Likewise.
11762         * config/sh/constraints.md: Likewise.
11763         * config/sh/predicates.md: Likewise.
11765 2012-03-01  Oleg Endo  <olegendo@gcc.gnu.org>
11767         * config/sh/sh-protos.h (tertiary_reload_operand): Remove dead function.
11768         * config/sh/sh.c (tertiary_reload_operand): Likewise.
11770 2012-03-01  Oleg Endo  <olegendo@gcc.gnu.org>
11772         * config/sh/constraints.md: Fix comment typo.
11774 2012-03-01  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
11776         PR target/52408
11777         * config/pa/pa.md (zvdep_imm32): Change type of variable x from int to
11778         unsigned HOST_WIDE_INT.
11779         (zvdep_imm64): Likewise.
11780         (vdepi_ior): Change type of variable x from int to HOST_WIDE_INT.
11781         (vdepi_and): Likewise.
11782         Likewise for unamed 64-bit patterns.
11783         * config/pa/predicates.md (lhs_lshift_cint_operand): Update comment.
11785 2012-03-01  Alexandre Oliva  <aoliva@redhat.com>
11787         PR debug/52001
11788         PR rtl-optimization/52417
11789         * cselib.c (cselib_any_perm_equivs): New variable.
11790         (cselib_reset_table): Check that it's not set when not
11791         preserving constants.
11792         (cselib_add_permanent_equiv): Set it.
11793         (cselib_have_permanent_equivalences): New.
11794         (cselib_init, cselib_finish): Reset it.
11795         * cselib.h (cselib_have_permanent_equivalences): Declare.
11796         * alias.c (get_addr): Restore earlier behavior when there
11797         aren't permanent equivalences.
11799 2012-03-01  Steven Bosscher  <steven@gcc.gnu.org>
11801         * config/mn10300/mn10300-modes.def: Fix copyright notice.
11802         * config/v850/v850-modes.def: Fix copyright notice.
11804 2012-03-01  Georg-Johann Lay  <avr@gjlay.de>
11806         * doc/extend.texi (AVR Built-in Functions): Document
11807         __builtin_avr_flash_segment.
11809         * config/avr/builtins.def (__builtin_avr_flash_segment): New entry.
11810         * config/avr/avr.md (flash_segment, flash_segment1): New expanders.
11811         (*split.flash_segment): New insn-and-split.
11812         * config/avr/avr.c (avr_init_builtins): Add local variables:
11813         const_memx_void_node, const_memx_ptr_type_node,
11814         char_ftype_const_memx_ptr.
11816 2012-03-01  Jakub Jelinek  <jakub@redhat.com>
11818         PR tree-optimization/52445
11819         * tree-ssa-phiopt.c (struct name_to_bb): Remove ssa_name field,
11820         add ssa_name_ver, offset and size fields and change store field
11821         to bool.
11822         (name_to_bb_hash, name_to_bb_eq): Adjust for the above changes.
11823         (add_or_mark_expr): Likewise.  Only consider previous stores
11824         with the same size and offset.
11825         (nt_init_block): Only look at gimple_assign_single_p stmts,
11826         doesn't look at rhs2.
11828 2012-03-01  Richard Guenther  <rguenther@suse.de>
11830         PR middle-end/52443
11831         * tree-cfg.c (verify_gimple_assign_unary): Allow any
11832         conversions from integral types to pointer types.
11834 2012-03-01  Georg-Johann Lay  <avr@gjlay.de>
11836         * config/avr/avr-c.c (avr_cpu_cpp_builtins): Restore built-in
11837         defines for __UINT24_MAX__, __INT24_MAX__, __INT24_MIN__
11838         unintentionally removed in r184616.
11840 2012-03-01  Venkataramanan Kumar  <venkataramanan.kumar@amd.com>
11842         * doc/invoke.texi: Document AMD bdver2 and remove mentioning
11843         3DNow from bdver1.
11845 2012-02-29  Jakub Jelinek  <jakub@redhat.com>
11846             Uros Bizjak  <ubizjak@gmail.com>
11848         PR target/52437
11849         * config/i386/sse.md (vec_set<mode>_0): Swap "*r" and "fF"
11850         alternatives, add "e" constraint to the new last alternative
11851         and ! to last 3 alternatives.
11853 2012-02-29  Eric Botcazou  <ebotcazou@adacore.com>
11855         * dwarf2out.c (modified_type_die): Set DW_AT_GNAT_descriptive_type and
11856         DW_AT_artificial attributes at the end of the processing.
11857         (gen_array_type_die): Likewise.
11858         (gen_enumeration_type_die): Likewise.
11859         (gen_struct_or_union_type_die): Likewise.
11860         (add_gnat_descriptive_type_attribute): Do not suppress debug info for
11861         the parent type.
11863 2012-02-29  Jakub Jelinek  <jakub@redhat.com>
11865         PR middle-end/52419
11866         * expr.c (expand_assignment): If doing misaligned store that doesn't
11867         cover all mode bits, perform a RMW cycle.
11869         PR tree-optimization/52429
11870         * tree-parloops.c (separate_decls_in_region_debug): Return early
11871         if var is LABEL_DECL.
11873 2012-02-29  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
11875         PR tree-optimization/52424
11876         * tree-ssa-dom.c (dom_opt_leave_block): Push a marker before
11877         calling dom_thread_across_edge.
11879 2012-02-29  Georg-Johann Lay  <avr@gjlay.de>
11881         * config/avr/avr.c: Move definition of TARGET macros to end of file.
11883 2012-02-29  Georg-Johann Lay  <avr@gjlay.de>
11885         * config/avr/avr-protos.h (avr_output_bld): Remove unused prototype.
11886         * config/avr/avr.c (avr_output_bld): Remove unused function.
11887         (avr_out_sbxx_branch): Use "%T" to print bit position.
11889 2012-02-29  Georg-Johann Lay  <avr@gjlay.de>
11891         * config/avr/avr.md: Untabify.
11893 2012-02-29  Georg-Johann Lay  <avr@gjlay.de>
11895         * config/avr/avr.md (eqne): New code iterator.
11896         (*dec-and-branchsi): Use it in text peephole's condition.
11897         (*dec-and-branchhi): Ditto.
11898         (*dec-and-branchqi): Ditto.
11900 2012-02-29  Georg-Johann Lay  <avr@gjlay.de>
11902         PR target/49939
11903         * config/avr/avr.h (ASM_SPEC): Add -mno-skip-bug if we know that
11904         the device does not have the skip-bug.
11906 2012-02-29  Oleg Endo  <olegendo@gcc.gnu.org>
11908         * doc/invoke.texi (-msoft-atomic): Add more detailed description.
11909         (-mbranch-cost, -mcbranchdi -mcmpeqdi -mfused-madd
11910         -mpretend-cmove): New.
11912 2012-02-29  Jakub Jelinek  <jakub@redhat.com>
11914         PR bootstrap/52397
11915         * df.h (struct df_d): Adjust comment that hard_regs_live_count
11916         doesn't count DEBUG_INSN refs.
11917         * df-scan.c (df_ref_create_structure): Don't set DF_HARD_REG_LIVE
11918         for DEBUG_INSN refs.
11920 2012-02-28  Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>
11922         Partially revert:
11924         2012-02-20  Richard Guenther  <rguenther@suse.de>
11925         PR tree-optimization/52298
11926         * tree-vect-stmts.c (vectorizable_load): Properly use
11927         STMT_VINFO_DR_STEP instead of DR_STEP when vectorizing outer loops.
11929 2012-02-28  Aldy Hernandez  <aldyh@redhat.com>
11931         PR middle-end/51752
11932         * gimple.h (gimple_in_transaction): New.
11933         (gimple_set_in_transaction): New.
11934         (struct gimple_statement_base): Add in_transaction field.
11935         * tree-ssa-loop-im.c: (movement_possibility): Restrict movement of
11936         transaction loads.
11937         (tree_ssa_lim_initialize): Compute transaction bits.
11938         * tree.h (compute_transaction_bits): Protoize.
11939         * trans-mem.c (tm_region_init): Use the heap to store BB
11940         auxilliary data.
11941         (compute_transaction_bits): New.
11943 2012-02-28  Bernhard Reutner-Fischer  <aldot@gcc.gnu.org>
11945         * gcc.c (display_help): Document --help=common and sort entries
11946         alphabetically.
11948 2012-02-28  Bernhard Reutner-Fischer  <aldot@gcc.gnu.org>
11950         * doc/install.texi: Document check-$LANG specific shortcuts
11952 2012-02-28  Matthew Gretton-Dann  <matthew.gretton-dann@arm.com>
11954         PR target/51534
11955         * config/arm/arm.c (neon_builtin_data): Add entries for vcgeu
11956         and vcgtu.
11957         * config/arm/arm_neon.h: Regenerate.
11958         * config/arm/neon.md (unspec): Add UNSPEC_VCGEU, and UNSPEC_VCGTU.
11959         (neon_vcgeu): New insn.
11960         (neon_vcgtu): Likewise.
11961         * config/arm/neon.ml (s_8_32, u_8_32): New lists.
11962         (ops): Unsigned comparison intrinsics call a different builtin.
11964 2012-02-28  Richard Guenther  <rguenther@suse.de>
11966         PR target/52407
11967         * config/i386/i386.c (ix86_expand_vector_set): Fix element
11968         ordering for the VEC_CONCAT for two element vectors for
11969         V2SFmode, V2SImode and V2DImode.
11971 2012-02-28  Richard Earnshaw  <rearnsha@arm.com>
11973         PR target/49448
11974         * config.gcc (arm*-*-linux*): Use an unambiguous pattern for
11975         detecting big-endian triplets.
11977 2012-02-28  Richard Earnshaw  <rearnsha@arm.com>
11979         * arm.c (aapcs_vfp_is_call_or_return_candidate): Only use the machine
11980         mode if there is no type information available.
11982 2012-02-28  Thomas Koenig  <tkoenig@gcc.gnu.org>
11984         PR tree-optimization/53207
11985         * doc/invoke.texi: Document as experimental and relying on graphite.
11987 2012-02-28  Georg-Johann Lay  <avr@gjlay.de>
11989         * config/avr/avr-devices.c (avr_mcu_type): Adjust NULL part
11990         of initializer to changes from r184614.
11992 2012-02-28  Richard Guenther  <rguenther@suse.de>
11994         PR tree-optimization/52395
11995         * tree-sra.c (build_ref_for_offset): Also look at the base
11996         TYPE_ALIGN when figuring out the alignment of the replacement.
11998 2012-02-28  Richard Guenther  <rguenther@suse.de>
12000         PR tree-optimization/52402
12001         * ipa-prop.c (ipa_modify_call_arguments): Properly use
12002         mis-aligned types when creating the accesses at the call site.
12004 2012-02-28  Georg-Johann Lay  <avr@gjlay.de>
12006         * config/avr/builtins.def: New file.
12007         * config/avr/t-avr (avr.o, avr-c.o): Depend on it.
12008         * config/avr/avr.c (enum avr_builtin_id): Use it.
12009         (avr_init_builtins): Use it. And use avr_bdesc.
12010         (bdesc_1arg): Remove.
12011         (bdesc_2arg): Remove.
12012         (bdesc_3arg): Remove.
12013         (struct avr_builtin_description): Add field n_args.
12014         (avr_bdesc): New static variable using builtins.def.
12015         (avr_expand_builtin): Use it.
12016         Don't call avr_expand_delay_cycles if op0 is not CONST_INT.
12017         (avr_fold_builtin): Fold AVR_BUILTIN_SWAP.
12018         Don't fold AVR_BUILTIN_INSERT_BITS if arg0 is not INTEGER_CST.
12020 2012-02-28  Georg-Johann Lay  <avr@gjlay.de>
12022         PR target/52148
12023         * config/avr/avr.md (movmem_<mode>): Replace match_operand that
12024         match only one single hard register with respective hard reg rtx.
12025         (movmemx_<mode>): Ditto.
12026         * config/avr/avr.c (avr_emit_movmemhi): Adapt expanding to new
12027         insn anatomy of movmem[x]_<mode>.
12028         (avr_out_movmem): Same for printing assembler and operand usage.
12030 2012-02-28  Georg-Johann Lay  <avr@gjlay.de>
12032         PR target/49868
12033         PR target/52261
12034         * doc/extend.texi (AVR Named Address Spaces): No more try to fix
12035         address spaces located outside of device flash.
12037         * config/avr/avr.h (base_arch_s): Remove field n_segments.
12038         (mcu_type_s): Add field n_flash.
12039         * config/avr/avr-devices.c (avr_arch_types): Remove .n_segments.
12040         Set .have_elpm and .have_elpmx to 1 for avrxmega4 and avrxmega5.
12041         (AVR_MCU): Add N_FLASH argument.
12042         * config/avr/avr-mcus.def (AVR_MCU): Add initializer for .n_flash.
12043         * config/avr/avr-c.c (avr_cpu_cpp_builtins): Only define built-in
12044         macro __FLASH<n> if that address space makes sense for the device.
12045         * config/avr/avr.c (avr_out_lpm): Don't try to fix address spaces
12046         outside of target flash.
12047         (avr_asm_named_section): Ditto.
12048         (avr_asm_select_section): Ditto.
12049         (avr_addr_space_convert): Ditto.
12050         (avr_emit_movmemhi): Ditto.
12051         (avr_nonconst_pointer_addrspace, avr_pgm_check_var_decl): Error if
12052         address space is outside of device flash.
12053         (avr_insert_attributes): Ditto.
12054         (avr_xload_libgcc_p): Use avr_current_device->n_flash instead of
12055         avr_current_arch->n_segments.
12057 2012-02-27  H.J. Lu  <hongjiu.lu@intel.com>
12059         PR target/52352
12060         * config/i386/i386.md (*movabs<mode>_1): Enable only for TARGET_LP64.
12061         (*movabs<mode>_2): Likewise.
12063 2012-02-27  Jakub Jelinek  <jakub@redhat.com>
12065         PR target/52375
12066         * config/arm/neon.md (vashr<mode>3, vlshr<mode>3): Use
12067         s_register_operand in the test instead of REG_P.  Don't call
12068         gen_reg_rtx if it won't be used.
12070         PR tree-optimization/52376
12071         * ipa-split.c (split_function): Ignore CLOBBER stmts.
12073 2012-02-27  Stuart Henderson  <shenders@gcc.gnu.org>
12075         * ifcvt.c (noce_get_condition): Check condition variable is not
12076         small_register_classes_for_mode_p before accepting.
12078 2012-02-27  Uros Bizjak  <ubizjak@gmail.com>
12080         * config/i386/i386.md (*movabs<mode>_1): Fix operand 1 constraints.
12082 2012-02-27  Matthew Gretton-Dann  <matthew.gretton-dann@arm.com>
12084         Revert:
12085         2012-01-09  Matthew Gretton-Dann  <matthew.gretton-dann@arm.com>
12086         * config/arm/arm-cores.def (cortex-a15): Use cortex_a15_tune for
12087         tuning parameters.
12088         * config/arm/arm.c (arm_cortex_a15_tune): New static variable.
12090 2012-02-27  Oleg Endo  <olegendo@gcc.gnu.org>
12092         * config/sh/sh.h: Delete dead GO_IF_LEGITIMATE_INDEX macro.
12094 2012-02-26  Oleg Endo  <olegendo@gcc.gnu.org>
12096         * config/sh/predicates.md: Remove blank lines.
12097         * config/sh/sh.c: Fix typos in comments.
12098         * config/sh/constraints.md: Likewise.
12099         * config/sh/sh.md: Remove blank lines.
12100         Fix typos in comments.  Use ;; as comment characters.
12102 2012-02-26  Walter Lee  <walt@tilera.com>
12104         * config/tilegx/tilegx.c (match_pcrel_step2): Fix instruction pattern.
12105         (replace_mov_pcrel_step2): Ditto.
12107 2012-02-25  Alexandre Oliva  <aoliva@redhat.com>
12109         PR debug/52001
12110         * alias.c (refs_newer_value_cb, refs_newer_value_p): New.
12111         (get_addr): Walk canonical value's locs.  Avoid returning VALUEs
12112         and locs that reference values newer than the non-canonical value
12113         at hand.  Return the canonical value as a worst case.
12114         (memrefs_conflict_p): Walk canonical value's locs.
12116         PR debug/52001
12117         * cselib.c (preserve_only_constants): Rename to...
12118         (preserve_constants_and_equivs): ... this.  Split out...
12119         (invariant_or_equiv_p): ... this.  Preserve plus expressions
12120         of other preserved expressions too.
12121         (cselib_reset_table): Adjust.
12122         * var-tracking.c (reverse_op): Use canonical value to build
12123         reverse operation.
12125 2012-02-23  Kai Tietz  <ktietz@redhat.com>
12127         * config/i386/i386.c (ix86_delegitimize_address): Handle
12128         UNSPEC_PCREL plus displacement.
12130 2012-02-24  Georg-Johann Lay  <avr@gjlay.de>
12132         PR target/52261
12133         * config/avr/avr.c (avr_out_movhi_mr_r_xmega): Use base
12134         to test for unusedness in st X addressing.
12136 2012-02-24  Richard Guenther  <rguenther@suse.de>
12138         PR middle-end/52361
12139         * gimple.c (walk_gimple_op): Use predicates with less redundant tests.
12140         (is_gimple_reg_type): Move inline ...
12141         * gimple.h (is_gimple_reg_type): ... here.
12143 2012-02-24  Richard Guenther  <rguenther@suse.de>
12145         PR middle-end/52361
12146         * passes.c (execute_function_todo): When verifying SSA form
12147         verify gimple form first.
12148         * tree-ssa.c (verify_ssa): Do not verify gimple form here.
12150 2012-02-24  Richard Guenther  <rguenther@suse.de>
12152         PR middle-end/52355
12153         * fold-const.c (fold_addr_of_array_ref_difference): New function.
12154         (fold_binary_loc): Use it to extend the existing &a[i] - &a[j] folding.
12156 2012-02-13  Bernhard Reutner-Fischer  <aldot@gcc.gnu.org>
12158         * tree-if-conv (predicate_scalar_phi): Commentary typo fix.
12160 2012-02-23  Bernhard Reutner-Fischer  <aldot@gcc.gnu.org>
12162         * tree-phinodes.c (make_phi_node): Mark static.
12163         * tree-flow.h (make_phi_node): Remove extern decl.
12164         * doc/gimple.texi (make_phi_node): Remove documentation.
12166 2012-02-23  Bernhard Reutner-Fischer  <aldot@gcc.gnu.org>
12168         * tree-into-ssa (update_ssa): Avoid trailing whitespace in dump_file.
12169         * tree-ssa-sccvn.c (print_scc): Ditto.
12171 2012-02-23  Bernhard Reutner-Fischer  <aldot@gcc.gnu.org>
12173         * doc/passes.texi (Full redundancy elimination): Fix typo.
12175 2012-02-23  Bernhard Reutner-Fischer  <aldot@gcc.gnu.org>
12177         * doc/invoke.texi (-fdse, -fdce): Remove duplicate entries.
12179 2012-02-23  Eric Botcazou  <ebotcazou@adacore.com>
12181         PR bootstrap/52287
12182         * haifa-sched.c (rank_for_schedule): Stabilize sort for debug insns.
12184 2012-02-23  Uros Bizjak  <ubizjak@gmail.com>
12186         PR c/52290
12187         * c-decl.c (start_function): Exit early if decl1 is not FUNTION_DECL.
12189 2012-02-23  Georg-Johann Lay  <avr@gjlay.de>
12191         * config/avr/avr.md (code_stdname): Add ior, xor.
12192         (xior): New code iterator.
12193         (*<code_stdname><mode>qi.byte0): Use xior instead of ior.
12194         (*<code_stdname><mode>qi.byte1-3): Ditto.
12196 2012-02-23  Jakub Jelinek  <jakub@redhat.com>
12198         PR tree-optimization/52019
12199         * ipa-split.c (find_return_bb, find_retval, visit_bb): Ignore
12200         CLOBBER stmts.
12202 2012-02-23  Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>
12204         * acinclude.m4: Use HAVE_INITFINI_ARRAY_SUPPORT instead of
12205         HAVE_INITFINI_ARRAY to work around namespace pollution in
12206         certain versions of newlib system headers.
12207         * config.in: Regenerate.
12208         * configure: Regenerate.
12209         * config/initfini-array.h: Use HAVE_INITFINI_ARRAY_SUPPORT
12210         instead of HAVE_INITFINI_ARRAY.
12212 2012-02-22  Uros Bizjak  <ubizjak@gmail.com>
12214         PR target/52330
12215         * config/i386/i386.c (ix86_print_operand) <case 'H'>: Error out if x
12216         is not offsettable memory reference.
12218 2012-02-22  Georg-Johann Lay  <avr@gjlay.de>
12220         PR target/18145
12221         * config/avr/avr.c (avr_asm_output_aligned_decl_common): Skip
12222         setting avr_need_clear_bss_p for __gnu_lto* symbols.
12224 2012-02-22  Georg-Johann Lay  <avr@gjlay.de>
12226         * config/avr/avr.h (avr_accumulate_outgoing_args): Return int.
12227         * config/avr/avr.c (avr_accumulate_outgoing_args): Return int.
12229 2012-02-22  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
12231         * configure.ac (LIB_TLS_SPEC): Enforce use of alternate thread
12232         library on Solaris 8 even without TLS support.
12233         * configure: Regenerate.
12235 2012-02-22  Richard Guenther  <rguenther@suse.de>
12237         PR middle-end/52329
12238         * gimple-fold.c (fold_stmt_1): Also canonicalize ADDR_EXPRs
12239         for GIMPLE_DEBUG stmts.
12241 2012-02-22  Martin Jambor  <mjambor@suse.cz>
12243         PR middle-end/51782
12244         * emit-rtl.c (set_mem_attributes_minus_bitpos): Set address space
12245         according to the base object.
12247 2012-02-22  Georg-Johann Lay  <avr@gjlay.de>
12249         PR rtl-optimization/50063
12250         * config/avr/avr.md (movhi_sp_r): Handle -1 (unknown IRQ state)
12251         and 2 (8-bit SP) in operand 2.
12252         * config/avr/avr.c (avr_prologue_setup_frame): Adjust prologue
12253         setup to use movhi_sp_r instead of vanilla move to write SP.
12254         Adjust REG_CFA notes to superseed unspec.
12255         (expand_epilogue): Adjust epilogue setup to use movhi_sp_r instead
12256         of vanilla move.
12257         As function body might contain CLI or SEI: Use irq_state 0 (IRQ
12258         known to be off) only with TARGET_NO_INTERRUPTS. Never use
12259         irq_state 1 (IRQ known to be on) here.
12261 2012-02-21  Bernd Schmidt  <bernds@codesourcery.com>
12263         * ira.c (check_allocation): Use REG_WORDS_BIG_ENDIAN, not
12264         WORDS_BIG_ENDIAN.
12265         * ira-color.c (setup_profitable_hard_regs, check_hard_reg_p,
12266         assign_hard_reg): Likewise.
12268 2012-02-21  Georg-Johann Lay  <avr@gjlay.de>
12270         * config/avr/avr.md (neghi2): Remove "!d,0" alternative. Tweak "r,0".
12272 2012-02-21  Georg-Johann Lay  <avr@gjlay.de>
12274         * config/avr/avr.md
12275         (*dec-and-branchhi!=-1.d.clobber): New text peephole.
12276         (*dec-and-branchhi!=-1.l.clobber): New text peephole.
12278 2012-02-21  Georg-Johann Lay  <avr@gjlay.de>
12280         * config/avr/avr-protos.h (avr_accumulate_outgoing_args): Move
12281         prototype from here to...
12282         * config/avr/avr.h: ...here.
12284 2012-02-21  Richard Earnshaw  <rearnsha@arm.com>
12286         PR target/52294
12287         * thumb2.md (thumb2_shiftsi3_short): Split register and
12288         immediate shifts.  For register shifts tie operands 0 and 1.
12289         (peephole2 for above): Check that register-controlled shifts
12290         have suitably tied operands.
12292 2012-02-21  Quentin Neill  <quentin.neill@amd.com>
12294         PR target/52137
12295         * config/i386/bdver1.md (bdver1_call, bdver1_push,
12296         bdver1_pop, bdver1_leave, bdver1_lea, bdver1_imul_DI, bdver1_imul,
12297         bdver1_imul_mem_DI, bdver1_imul_mem, bdver1_idiv, bdver1_idiv_mem,
12298         bdver1_str, bdver1_idirect, bdver1_ivector, bdver1_idirect_loadmov,
12299         bdver1_idirect_load, bdver1_ivector_load, bdver1_idirect_movstore,
12300         bdver1_idirect_both, bdver1_ivector_both, bdver1_idirect_store,
12301         bdver1_ivector_store, bdver1_fldxf, bdver1_fld, bdver1_fstxf,
12302         bdver1_fst, bdver1_fist, bdver1_fmov_bdver1, bdver1_fadd_load,
12303         bdver1_fadd, bdver1_fmul_load, bdver1_fmul, bdver1_fsgn,
12304         bdver1_fdiv_load, bdver1_fdiv, bdver1_fpspc_load, bdver1_fpspc,
12305         bdver1_fcmov_load, bdver1_fcmov, bdver1_fcomi_load,
12306         bdver1_fcomi, bdver1_fcom_load, bdver1_fcom,
12307         bdver1_fxch, bdver1_ssevector_avx128_unaligned_load,
12308         bdver1_ssevector_avx256_unaligned_load,
12309         bdver1_ssevector_sse128_unaligned_load,
12310         bdver1_ssevector_avx128_load, bdver1_ssevector_avx256_load,
12311         bdver1_ssevector_sse128_load, bdver1_ssescalar_movq_load,
12312         bdver1_ssescalar_vmovss_load, bdver1_ssescalar_sse128_load,
12313         bdver1_mmxsse_load, bdver1_sse_store_avx256, bdver1_sse_store,
12314         bdver1_mmxsse_store_short, bdver1_ssevector_avx256,
12315         bdver1_movss_movsd, bdver1_mmxssemov, bdver1_sselog_load_256,
12316         bdver1_sselog_256, bdver1_sselog_load, bdver1_sselog,
12317         bdver1_ssecmp_load, bdver1_ssecmp, bdver1_ssecomi_load,
12318         bdver1_ssecomi, bdver1_vcvtX2Y_avx256_load, bdver1_vcvtX2Y_avx256,
12319         bdver1_ssecvt_cvtss2sd_load, bdver1_ssecvt_cvtss2sd,
12320         bdver1_sseicvt_cvtsi2sd_load, bdver1_sseicvt_cvtsi2sd,
12321         bdver1_ssecvt_cvtpd2ps_load, bdver1_ssecvt_cvtpd2ps,
12322         bdver1_ssecvt_cvtdq2ps_load, bdver1_ssecvt_cvtdq2ps,
12323         bdver1_ssecvt_cvtdq2pd_load, bdver1_ssecvt_cvtdq2pd,
12324         bdver1_ssecvt_cvtps2pd_load, bdver1_ssecvt_cvtps2pd,
12325         bdver1_ssecvt_cvtsX2si_load, bdver1_ssecvt_cvtsX2si,
12326         bdver1_ssecvt_cvtpd2pi_load, bdver1_ssecvt_cvtpd2pi,
12327         bdver1_ssecvt_cvtpd2dq_load, bdver1_ssecvt_cvtpd2dq,
12328         bdver1_ssecvt_cvtps2pi_load, bdver1_ssecvt_cvtps2pi,
12329         bdver1_ssemuladd_load_256, bdver1_ssemuladd_256,
12330         bdver1_ssemuladd_load, bdver1_ssemuladd, bdver1_sseimul_load,
12331         bdver1_sseimul, bdver1_sseiadd_load, bdver1_sseiadd,
12332         bdver1_ssediv_double_load_256, bdver1_ssediv_double_256,
12333         bdver1_ssediv_single_load_256, bdver1_ssediv_single_256,
12334         bdver1_ssediv_double_load, bdver1_ssediv_double,
12335         bdver1_ssediv_single_load, bdver1_ssediv_single, bdver1_sseins):
12336         Add "bdver2" attribute.
12338 2012-02-21  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
12340         * config/s390/s390.c (s390_option_override): Make -mhard-dfp the
12341         default if possible and not specified otherwise.
12343 2012-02-21  Richard Guenther  <rguenther@suse.de>
12345         PR middle-end/52314
12346         * gimplify.c (create_tmp_from_val): Use the main variant type
12347         for the type of the temporary we create.
12349 2012-02-21  Richard Guenther  <rguenther@suse.de>
12351         PR tree-optimization/52324
12352         * gimplify.c (gimplify_expr): When re-gimplifying expressions
12353         do not gimplify a MEM_REF address operand if it is already
12354         in suitable form.
12356 2012-02-21  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
12358         * config/s390/s390.md ("fixuns_trunc<mode>si2"): Replace
12359         TARGET_HARD_FLOAT with TARGET_HARD_DFP.
12361 2012-02-21  Richard Guenther  <rguenther@suse.de>
12363         * tree-vect-stmts.c (vectorizable_load): Use pre-computed
12364         nested_in_vect_loop.
12366 2012-02-21  Jakub Jelinek  <jakub@redhat.com>
12368         PR tree-optimization/52318
12369         * gimple-fold.c (gimplify_and_update_call_from_tree): Add
12370         vdef also to non-pure/const call stmts in the sequence.
12372 2012-02-21  Tristan Gingold  <gingold@adacore.com>
12374         * config/vms/vms-ld.c (main): Fix IDENTIFICATION padding.
12376 2012-02-20  David S. Miller  <davem@davemloft.net>
12378         * config/sparc/sparc.md (load_pcrel_sym<P:mode>): Explain why we
12379         don't use the "rd %pc" instruction on v9 for PIC register loads.
12381 2012-02-20  Aldy Hernandez  <aldyh@redhat.com>
12383         PR middle-end/52141
12384         * trans-mem.c (ipa_tm_scan_irr_block): Error out on GIMPLE_ASM's
12385         in a transaction safe function.
12387 2012-02-20  Kai Tietz  <ktietz@redhat.com>
12389         PR target/52238
12390         * stor-layout.c (place_field): Handle desired_align for
12391         ms-bitfields, too.
12393 2012-02-20  Richard Guenther  <rguenther@suse.de>
12395         PR tree-optimization/52298
12396         * tree-vect-stmts.c (vectorizable_store): Properly use
12397         STMT_VINFO_DR_STEP instead of DR_STEP when vectorizing
12398         outer loops.
12399         (vectorizable_load): Likewise.
12400         * tree-vect-data-refs.c (vect_analyze_data_ref_access):
12401         Access DR_STEP after ensuring it is not NULL.
12403 2012-02-20  Jakub Jelinek  <jakub@redhat.com>
12405         PR tree-optimization/52286
12406         * fold-const.c (fold_binary_loc): For (X & C1) | C2
12407         optimization use double_int_to_tree instead of build_int_cst_wide,
12408         rewrite to use double_int vars.
12410 2012-02-20  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
12412         PR target/50166
12413         * acinclude.m4 (gcc_AC_INITFINI_ARRAY): Require gcc_SUN_LD_VERSION.
12414         Define _start.
12415         Remove -e 0 from $gcc_cv_ld invocation.
12416         Only use __GLIBC_PREREQ if defined.
12417         Enable on Solaris since Solaris 8 patch.
12418         (gcc_SUN_LD_VERSION): New macro.
12419         * configure.ac (ld_ver) <*-*-solaris2*>: Refer to
12420         gcc_SUN_LD_VERSION for version number format.
12421         * configure: Regenerate.
12422         * varasm.c (get_elf_initfini_array_priority_section): Set
12423         SECTION_NOTYPE for non-default priority.
12424         Use get_section instead of get_unnamed_section to emit
12425         .init_array/.fini_array with default priority.
12427 2012-02-19  Richard Sandiford  <rdsandiford@googlemail.com>
12429         * config/mips/mips.c (mips_need_mips16_rdhwr_p): New variable.
12430         (mips_get_tp): Set it.  Record that __mips16_rdhwr binds locally.
12431         (mips_start_unique_function, mips_output_mips16_rdhwr)
12432         (mips_code_end): New functions.
12433         (TARGET_ASM_CODE_END): Define.
12435 2012-02-19  Richard Sandiford  <rdsandiford@googlemail.com>
12437         * config/mips/mips.c (mips16_build_call_stub): Add CFI information
12438         to stubs with non-sibling calls.
12440 2012-02-18  Sandra Loosemore  <sandra@codesourcery.com>
12442         * doc/invoke.texi (-fira-* options): Copy-edit.
12443         (ira-* parameters): Copy-edit.
12445 2012-02-17  Sandra Loosemore  <sandra@codesourcery.com>
12447         * doc/invoke.texi: Minor copy-edits to bring into conformance with
12448         GCC coding conventions.
12450 2012-02-17  Sandra Loosemore  <sandra@codesourcery.com>
12452         * doc/invoke.texi: Consistently hyphenate "big-endian"/"little-endian"
12453         when used as adjectives.
12455 2012-02-16  Sandra Loosemore  <sandra@codesourcery.com>
12457         * doc/invoke.texi: Clean up "that"/"which" confusion.
12459 2012-02-17  Steven Bosscher  <steven@gcc.gnu.org>
12461         * system.h: Poison SMALL_REGISTER_CLASSES
12462         * config/rl78/rl78.h: Replace SMALL_REGISTER_CLASSES with hook.
12463         * config/rx/rx.h: Remove SMALL_REGISTER_CLASSES.
12465 2012-02-16  Jakub Jelinek  <jakub@redhat.com>
12467         PR tree-optimization/52285
12468         * tree-tailcall.c (find_tail_calls): Ignore gimple_clobber_p stmts
12469         when deciding if a call is a tail call or tail recursion.
12471 2012-02-16  Kai Tietz  <ktietz@redhat.com>
12473         * config/i386/i386.c (legitimate_pic_address_disp_p): Allow
12474         interger-constant displacement for UNSPEC_PCREL.
12476 2012-02-16  Jakub Jelinek  <jakub@redhat.com>
12478         PR rtl-optimization/52208
12479         * ira-costs.c (scan_one_insn): Don't decrease mem_cost
12480         for MEMs with REG_EQUIV, if the MEM isn't general_operand.
12482         PR tree-optimization/52255
12483         * tree-vect-loop-manip.c (slpeel_tree_peel_loop_to_edge): If
12484         loop->header has virtual PHI, but exit_e->dest doesn't, add
12485         virtual PHI to exit_e->dest and adjust all uses after the loop.
12487         PR debug/52260
12488         * dwarf2out.c (copy_decls_walk): Fill in *slot before traversing
12489         children with clone_tree_hash, not after it.
12491 2012-02-16  Iain Sandoe  <iains@gcc.gnu.org>
12493         * config/darwin.h (ASM_OUTPUT_LABELREF): Add user label prefix for
12494         extended identifiers.
12496 2012-02-16  Jakub Jelinek  <jakub@redhat.com>
12498         PR middle-end/51929
12499         * cgraphunit.c (verify_edge_corresponds_to_fndecl): If node is
12500         a same_body_alias, also test whether e->callee isn't a former
12501         or current clone of the decl this is a same body alias of.
12503         PR translation/52264
12504         * cgraphunit.c (verify_cgraph_node): Fix a typo.
12506 2012-02-15  Sandra Loosemore  <sandra@codesourcery.com>
12508         * doc/invoke.texi: Clean up "n-bit/byte/word" modifiers.
12510 2012-02-15  Michael Meissner  <meissner@linux.vnet.ibm.com>
12512         PR target/52199
12513         * config/rs6000/rs6000.c (rs6000_expand_vector_init): Use
12514         force_reg instead of copy_to_reg for better optimization.  Force
12515         non-register or memory operands into a register.
12517 2012-02-15  Andrew MacLeod  <amacleod@redhat.com>
12519         * extend.texi: Reserve upper bits of memory model for future use.
12521 2012-01-15  Georg-Johann Lay  <avr@gjlay.de>
12522             Anatoly Sokolov <aesok@post.ru>
12523             Eric Weddington <eric.weddington@atmel.com>
12525         PR target/52261
12526         * config/avr/avr-devices.c (avr_arch_types): Add avrxmega2,
12527         avrxmega4, avrxmega5, avrxmega6, avrxmega7.
12528         Rewrite initializers for .macro.
12529         * config/avr/avr-mcus.def (AVR_MCU): Add known MCUs:
12530         avrxmega2: atxmega16a4, atxmega16d4, atxmega16x1, atxmega32a4
12531         atxmega32d4, atxmega32x1.
12532         avrxmega4: atxmega64a3, atxmega64d3.
12533         avrxmega5: atxmega64a1, atxmega64a1u.
12534         avrxmega6: atxmega128a3, atxmega128d3, atxmega192a3, atxmega192d3,
12535         atxmega256a3, atxmega256a3b, atxmega256a3bu, atxmega256d3.
12536         avrxmega7: atxmega128a1, atxmega128a1u.
12537         * config/avr/avr.h (enum avr_arch): Add: ARCH_AVRXMEGA2,
12538         ARCH_AVRXMEGA4, ARCH_AVRXMEGA5, ARCH_AVRXMEGA6, ARCH_AVRXMEGA7.
12539         (struct base_arch_s): Rename reserved to xmega_p.
12540         Rename reserved2 to have_rampd.
12541         (AVR_XMEGA): New define.
12542         (AVR_HAVE_RAMPD, AVR_HAVE_RAMPX, AVR_HAVE_RAMPY): New defines.
12543         (AVR_HAVE_RAMPZ): Change definition to fit xmega.
12544         * config/avr/predicates.md (io_address_operand): Take into
12545         account SFR offset.
12546         (low_io_address_operand): Ditto.
12547         (high_io_address_operand): Ditto.
12548         * config/avr/avr.md (isa): Add alternatives no_xmega, xmega.
12549         (enabled, movhi_sp_r): Use them.
12550         * config/avr/avr-c.c (avr_cpu_cpp_builtins): Use
12551         cpp_define_formatted to built-in define __AVR_ARCH__.
12552         (__AVR_XMEGA__): New built-in define.
12553         (__AVR_HAVE_RAMPD__): New built-in define.
12554         (__AVR_HAVE_RAMPX__): New built-in define.
12555         (__AVR_HAVE_RAMPY__): New built-in define.
12556         (__AVR_HAVE_RAMPZ__): Change condition when to built-in define it.
12558         * config/avr/avr.c (avr_addr_t): Add ccp, rampd, rampx, rampy.
12559         (avr_option_override): Initialize them.
12560         (sreg_rtx, rampd_rtx, rampx_rtx, rampy_rtx): New GTY rtx.
12561         (avr_init_expanders): Initialize them. No more block several calls.
12562         (emit_push_sfr): New static function.
12563         (avr_prologue_setup_frame): Use it to push SREG, RAMPD/X/Y/Z as needed.
12564         Handle AVR_XMEGA.
12565         (expand_epilogue): Handle AVR_XMEGA. Pop RAMPD/X/Y/Z as needed.
12566         (avr_print_operand): Print addreeses as symbols for
12567         RAMPX, RAMPY, RAMPD, CCP.
12568         (output_movhi): Handle AVR_XMEGA when writing to SP.
12569         (avr_out_movhi_mr_r_xmega): New static function.
12570         (out_movhi_mr_r): Forward to avr_out_movhi_mr_r_xmega for AVR_XMEGA.
12571         (avr_file_start): Print symbol defines for __RAMPX__,  __RAMPY__,
12572         __RAMPD__,  __CCP__ as needed.
12574         * config/avr/multilib.h: Regenerate.
12575         * config/avr/t-multilib: Regenerate.
12576         * config/avr/avr-tables.opt: Regenerate.
12578 2012-02-15  Tobias Grosser <grosser@fim.uni-passau.de>
12580         PR tree-optimization/50561
12581         * graphite-flattening.c (lst_project_loop): Do not
12582         remove old scattering dimensions after flattening.
12583         (lst_do_flatten): Likewise.
12585 2012-02-15  Georg-Johann Lay  <avr@gjlay.de>
12587         * doc/extend.texi (AVR Built-in Functions): Remove doc for
12588         __builtin_avr_map8, __builtin_avr_map16.
12589         Document __builtin_avr_insert_bits.
12591         * config/avr/avr.md (map_bitsqi, map_bitshi): Remove.
12592         (insert_bits): New insn.
12593         (adjust_len.map_bits): Rename to insert_bits.
12594         (UNSPEC_MAP_BITS): Rename to UNSPEC_INSERT_BITS.
12595         * avr-protos.h (avr_out_map_bits): Remove.
12596         (avr_out_insert_bits, avr_has_nibble_0xf): New.
12597         * config/avr/constraints.md (Cxf,C0f): New.
12598         * config/avr/avr.c (avr_cpu_cpp_builtins): Remove built-in
12599         defines __BUILTIN_AVR_MAP8, __BUILTIN_AVR_MAP16.
12600         New built-in define __BUILTIN_AVR_INSERT_BITS.
12601         * config/avr/avr.c (TARGET_FOLD_BUILTIN): New define.
12602         (enum avr_builtin_id): Add AVR_BUILTIN_INSERT_BITS.
12603         (avr_move_bits): Rewrite.
12604         (avr_fold_builtin, avr_map_metric, avr_map_decompose): New static
12605         functions.
12606         (avr_map_op_t): New typedef.
12607         (avr_map_op): New static variable.
12608         (avr_out_insert_bits, avr_has_nibble_0xf): New functions.
12609         (adjust_insn_length): Handle ADJUST_LEN_INSERT_BITS.
12610         (avr_init_builtins): Add definition for __builtin_avr_insert_bits.
12611         (bdesc_3arg, avr_expand_triop_builtin): New.
12612         (avr_expand_builtin): Use them. And handle AVR_BUILTIN_INSERT_BITS.
12613         (avr_revert_map, avr_swap_map, avr_id_map, avr_sig_map): Remove.
12614         (avr_map_hamming_byte, avr_map_hamming_nonstrict): Remove.
12615         (avr_map_equal_p, avr_map_sig_p): Remove.
12616         (avr_out_swap_bits, avr_out_revert_bits, avr_out_map_bits): Remove.
12617         (bdesc_2arg): Remove AVR_BUILTIN_MAP8, AVR_BUILTIN_MAP16.
12618         (adjust_insn_length): Remove handling for ADJUST_LEN_MAP_BITS.
12619         (enum avr_builtin_id): Remove AVR_BUILTIN_MAP8, AVR_BUILTIN_MAP16.
12620         (avr_init_builtins): Remove __builtin_avr_map8, __builtin_avr_map16.
12621         (avr_expand_builtin): Remove AVR_BUILTIN_MAP8, AVR_BUILTIN_MAP16.
12623 2012-02-14  Bernd Schmidt  <bernds@codesourcery.com>
12625         * config/c6x/c6x.md (reserve_cycles): New attribute.
12626         * config/c6x/c6x.c (c6x_sched_reorder_1): Ensure insns we predicate
12627         don't reserve functional units after the branch occurs.
12629 2012-02-14  Aldy Hernandez  <aldyh@redhat.com>
12631         PR middle-end/52142
12632         * ipa-inline.c (can_inline_edge_p): Do not inline tm_pure
12633         functions into non-tm_pure functions.
12635 2012-02-14  Eric Botcazou  <ebotcazou@adacore.com>
12637         PR lto/52178
12638         * gimple.c (iterative_hash_gimple_type): Use RECORD_OR_UNION_TYPE_P.
12639         (iterative_hash_canonical_type): Likewise.
12640         * tree-ssa-pre.c (fini_pre): Clean up the CFG only after purging all
12641         the dead edges.
12643 2012-02-14  Bernd Schmidt  <bernds@codesourcery.com>
12645         * haifa-sched.c (prune_ready_list): Ensure that if there is a
12646         sched-group insn, it either remains alone or the entire list is pruned.
12648 2012-02-14  Jonathan Wakely  <jwakely.gcc@gmail.com>
12650         * doc/install.texi (Prerequisites): Fix grammar.
12651         (Configuration): Likewise.
12653 2012-02-14  Jonathan Wakely  <jwakely.gcc@gmail.com>
12655         * doc/install.texi (Prerequisites): Suggest building GMP, MPFR and
12656         MPC as part of GCC before describing configuring with --with-gmp etc.
12657         (Installing GCC: Configuration): --with-gmp etc. aren't needed if
12658         sources are present.
12660 2012-02-14  Jakub Jelinek  <jakub@redhat.com>
12662         PR debug/51950
12663         * dwarf2out.c (clone_tree_hash): New function.
12664         (copy_decls_walk): Use it instead of clone_tree.
12666 2012-02-14  Richard Guenther  <rguenther@suse.de>
12668         PR tree-optimization/52244
12669         PR tree-optimization/51528
12670         * tree-sra.c (analyze_access_subtree): Only create INTEGER_TYPE
12671         replacements for integral types.
12673 2012-02-14  Walter Lee  <walt@tilera.com>
12675         * config.gcc: Handle tilegx and tilepro.
12676         * configure.ac (gcc_cv_as_dwarf2_debug_line): Enable test for
12677         tilegx and tilepro.
12678         Add HAVE_AS_TLS check for tilegx and tilepro.
12679         * configure: Regenerate.
12680         * doc/contrib.texi: Add Mat Hostetter and self.
12681         * doc/extend.texi (TILE-Gx Built-in Functions): New node.
12682         Document instruction intrinsics and network accessing intrinsics.
12683         (TILEPro Built-in Functions): New node.  Document instruction
12684         intrinsics and network accessing intrinsics.
12685         * doc/install.texi (Specific, tilegx-*-linux*): Document it.
12686         (Specific, tilepro-*-linux*): Likewise.
12687         * doc/invoke.texi (TILE-Gx Options): New section.
12688         (TILEPro Options): New section.
12689         * doc/md.texi (TILE-Gx): New section.
12690         (TILEPro): New section.
12691         * common/config/tilegx/tilegx-common.c: New file.
12692         * common/config/tilepro/tilepro-common.c: New file.
12693         * config/tilegx/constraints.md: New file.
12694         * config/tilegx/linux.h: New file.
12695         * config/tilegx/mul-tables.c: New file.
12696         * config/tilegx/predicates.md: New file.
12697         * config/tilegx/sync.md: New file.
12698         * config/tilegx/t-tilegx: New file.
12699         * config/tilegx/tilegx-builtins.h: New file.
12700         * config/tilegx/tilegx-c.c: New file.
12701         * config/tilegx/tilegx-generic.md: New file.
12702         * config/tilegx/tilegx-modes.def: New file.
12703         * config/tilegx/tilegx-multiply.h: New file.
12704         * config/tilegx/tilegx-protos.h: New file.
12705         * config/tilegx/tilegx.c: New file.
12706         * config/tilegx/tilegx.h: New file.
12707         * config/tilegx/tilegx.md: New file.
12708         * config/tilegx/tilegx.opt: New file.
12709         * config/tilepro/constraints.md: New file.
12710         * config/tilepro/gen-mul-tables.cc: New file.
12711         * config/tilepro/linux.h: New file.
12712         * config/tilepro/mul-tables.c: New file.
12713         * config/tilepro/predicates.md: New file.
12714         * config/tilepro/t-tilepro: New file.
12715         * config/tilepro/tilepro-builtins.h: New file.
12716         * config/tilepro/tilepro-c.c: New file.
12717         * config/tilepro/tilepro-generic.md: New file.
12718         * config/tilepro/tilepro-modes.def: New file.
12719         * config/tilepro/tilepro-multiply.h: New file.
12720         * config/tilepro/tilepro-protos.h: New file.
12721         * config/tilepro/tilepro.c: New file.
12722         * config/tilepro/tilepro.h: New file.
12723         * config/tilepro/tilepro.md: New file.
12724         * config/tilepro/tilepro.opt: New file.
12726 2012-02-14  Jakub Jelinek  <jakub@redhat.com>
12728         PR tree-optimization/52210
12729         * tree-vect-slp.c (vect_get_and_check_slp_defs): Call
12730         vect_model_simple_cost with two entry vect_def_type array instead
12731         of an address of dt.
12733 2012-02-14  Richard Guenther  <rguenther@suse.de>
12735         PR lto/52178
12736         * tree-streamer-in.c (lto_input_ts_field_decl_tree_pointers):
12737         Do not stream DECL_QUALIFIER.
12738         * tree-streamer-out.c (write_ts_field_decl_tree_pointers): Likewise.
12739         * tree.c (free_lang_data_in_decl): Free DECL_QUALIFIER.
12740         (find_decls_types_r): Do not walk DECL_QUALIFIER.
12742 2012-02-14  Jakub Jelinek  <jakub@redhat.com>
12744         PR c/52181
12745         * c-decl.c (merge_decls): Copy DECL_USER_ALIGN bit from olddecl to
12746         newdecl.
12748 2012-02-13  Jakub Jelinek  <jakub@redhat.com>
12750         PR bootstrap/52172
12751         * cselib.h (cselib_subst_to_values_from_insn): New prototype.
12752         * cselib.c (cselib_subst_to_values_from_insn): New function.
12753         * sched-deps.c (add_insn_mem_dependence,
12754         sched_analyze_1, sched_analyze_2): Use it.
12756 2012-02-13  Jan Hubicka  <jh@suse.cz>
12758         PR middle-end/52214
12759         * predict.c (predict_paths_for_bb): Fix thinko in prevoius patch.
12761 2012-02-13  Eric Botcazou  <ebotcazou@adacore.com>
12763         * gcc.c (LINK_COMMAND_SPEC): Deal with -fgnu-tm.
12764         (GTM_SELF_SPECS): Define if not already defined.
12765         (driver_self_specs): Add GTM_SELF_SPECS.
12766         * config/darwin.h (LINK_COMMAND_SPEC_A): Deal with -fgnu-tm.
12767         (GTM_SELF_SPECS): Define.
12768         * config/i386/cygwin.h (GTM_SELF_SPECS): Likewise.
12769         * config/i386/mingw32.h (GTM_SELF_SPECS): Likewise.
12771 2012-02-13  Jakub Jelinek  <jakub@redhat.com>
12773         * cselib.c (expand_loc): Return sp, fp, hfp or cfa base reg right
12774         away if seen.
12776         * cselib.c (dump_cselib_val): Don't assume l->setting_insn is non-NULL.
12778         PR middle-end/52230
12779         * omp-low.c (expand_omp_for): If a static schedule without chunk size
12780         has NULL region->cont, force fd.chunk_size to be integer_zero_node.
12782 2012-02-13  Andrew MacLeod  <amacleod@redhat.com>
12784         PR c/52190
12785         * doc/extend.texi : Fix another __atomic_compare_exchange typo.
12787 2012-02-13  Richard Guenther  <rguenther@suse.de>
12789         PR translation/52211
12790         * passes.c (enable_disable_pass): Fix typo.
12792 2012-02-13  Jakub Jelinek  <jakub@redhat.com>
12794         PR middle-end/52209
12795         * expr.c (expand_expr_real_2) <case BIT_NOT_EXPR>: Only expand using
12796         XOR for reduce_bit_field if type is unsigned.
12798 2012-02-12  Eric Botcazou  <ebotcazou@adacore.com>
12800         * config/sparc/sparc.h (CANNOT_CHANGE_MODE_CLASS): In 64-bit mode,
12801         disallow changes from SFmode to mode with different size in FP regs.
12803 2012-02-12  Robert Millan  <rmh@gnu.org>
12804             Gerald Pfeifer <gerald@pfeifer.com>
12806         * ginclude/stddef.h [__FreeBSD_kernel__] (__size_t): Do not define.
12807         Tweak comment.
12809 2012-02-11  Richard Sandiford  <rdsandiford@googlemail.com>
12811         PR rtl-optimization/52175
12812         * reorg.c (fill_slots_from_thread): Don't apply add/sub optimization
12813         to frame-related instructions.
12815 2012-02-10  Jason Merrill  <jason@redhat.com>
12817         PR c++/51910
12818         * tlink.c (demangled_hash_entry): Change mangled to a VEC.
12819         (demangle_new_symbols): Fill it.
12820         (scan_linker_output): Walk it.
12821         (start_tweaking): Split out from scan_linker_output.
12822         (maybe_tweak): Update sym->chosen.
12823         * Makefile.in (COLLECT2_OBJS): Add vec.o and gcc-none.o
12825 2012-02-11  Jakub Jelinek  <jakub@redhat.com>
12827         PR debug/52132
12828         * reg-stack.c (subst_stack_regs_in_debug_insn): Don't use get_true_reg.
12830 2012-02-11  Uros Bizjak  <ubizjak@gmail.com>
12832         * compare-elim.c (find_comparisons_in_bb): Eliminate only compares
12833         having the same mode as previous compare.
12835 2012-02-10  Eric Botcazou  <ebotcazou@adacore.com>
12837         * config/sparc/sparc.c (sparc_flat_expand_prologue): Use emit_use.
12838         * config/sparc/sparc.md (UNSPECV_GOTO): Delete.
12839         (nonlocal_goto_internal): Likewise.
12840         (nonlocal_goto): Emit a use and an indirect jump directly.
12842 2012-02-10  Andrew MacLeod  <amacleod@redhat.com>
12844         PR c/52190
12845         * doc/extend.texi : Update comments for __atomic_compare_exchange and
12846         __atomic_{is,always}_lock_free.
12848 2012-02-10  Uros Bizjak  <ubizjak@gmail.com>
12850         PR target/52146
12851         * config/i386/i386.c (ix86_legitimate_address_p): Disallow
12852         negative constant address for TARGET_X32.
12854 2012-02-10  Richard Henderson  <rth@redhat.com>
12856         * tree-ssa-dce.c (propagate_necessity): Handle GIMPLE_TRANSACTION.
12857         * tree-ssa-operands.c (parse_ssa_operands): Add virtual operands
12858         for GIMPLE_TRANSACTION.  Tidy if's into a switch.
12860 2012-02-10  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
12861             Ira Rosen  <irar@il.ibm.com>
12863         PR tree-optimization/50031
12864         * targhooks.c (default_builtin_vectorization_cost): Handle
12865         vec_promote_demote.
12866         * target.h (enum vect_cost_for_stmt): Add vec_promote_demote.
12867         * tree-vect-loop.c (vect_get_single_scalar_iteraion_cost): Handle
12868         all types of reduction and pattern statements.
12869         (vect_estimate_min_profitable_iters): Likewise.
12870         * tree-vect-stmts.c (vect_model_promotion_demotion_cost): New function.
12871         (vect_get_load_cost): Use vec_perm for permutations; add dump logic
12872         for explicit realigns.
12873         (vectorizable_conversion): Call vect_model_promotion_demotion_cost.
12874         * config/spu/spu.c (spu_builtin_vectorization_cost): Handle
12875         vec_promote_demote.
12876         * config/i386/i386.c (ix86_builtin_vectorization_cost): Likewise.
12877         * config/rs6000/rs6000.c (rs6000_builtin_vectorization_cost): Update
12878         vec_perm for VSX and handle vec_promote_demote.
12880 2012-02-10  Jakub Jelinek  <jakub@redhat.com>
12882         PR middle-end/52177
12883         * builtins.c (fold_builtin_atomic_always_lock_free,
12884         expand_builtin_atomic_always_lock_free,
12885         fold_builtin_atomic_is_lock_free, expand_builtin_atomic_is_lock_free):
12886         Return and/or test boolean_true_node/boolean_false_node instead of
12887         integer_one_node/integer_zero_node.
12889 2012-02-10  Jan Hubicka  <jh@suse.cz>
12891         PR middle-end/48600
12892         * predict.c (predict_paths_for_bb): Prevent looping.
12893         (predict_paths_leading_to_edge, predict_paths_leading_to): Update.
12895 2012-02-10  Roman Zhuykov  <zhroma@ispras.ru>
12897         * config/arm/arm.c (output_move_double): In one case properly
12898         count number of instructions that will be emitted.
12900 2012-02-10  Richard Guenther  <rguenther@suse.de>
12902         PR translation/52193
12903         * cgraphunit.c (cgraph_mark_functions_to_output): Fix typo.
12905 2012-02-09  Peter Bergner  <bergner@vnet.ibm.com>
12907         PR middle-end/52140
12908         * dojump.c (do_compare_rtx_and_jump): Use SCALAR_FLOAT_MODE_P.
12910 2012-02-09  Jakub Jelinek  <jakub@redhat.com>
12912         PR debug/52165
12913         * var-tracking.c (emit_note_insn_var_location): If
12914         EMIT_NOTE_BEFORE_INSN and insn is NOTE_INSN_CALL_ARG_LOCATION,
12915         emit it before next non-NOTE_INSN_CALL_ARG_LOCATION
12916         non-NOTE_DURING_CALL_P insn.
12918 2012-02-09  Bin Cheng  <bin.cheng@arm.com>
12920         PR middle-end/51867
12921         * builtins.c (expand_builtin): Don't check DECL_ASSEMBLER_NAME_SET_P.
12923 2012-02-08  Magnus Granberg  <zorry@gentoo.org>
12925         PR driver/48524
12926         * gcc.c (switch_matches) Support switches with separated form,
12927         -D and -U.
12929 2012-02-08  Georg-Johann Lay  <avr@gjlay.de>
12931         * config/avr/avr.md (SREG_ADDR): Remove constant definition.
12932         (SP_ADDR): Ditto.
12933         (RAMPZ_ADDR): Ditto.
12934         * config/avr/avr.c (avr_addr_t): New typedef.
12935         (avr_addr): New struct to hold RAM address of SPL, SPH, RAMPZ, SREG.
12936         (avr_init_expanders): Initialize it.
12937         (expand_prologue): Use avr_addr instead of RAMPZ_ADDR, SP_ADDR,
12938         SREG_ADDR.
12939         (expand_epilogue): Ditto.
12940         (avr_print_operand): Ditto.
12941         (avr_file_start): Ditto.
12942         (avr_emit_movmemhi): Ditto.
12944 2012-02-08  Richard Guenther  <rguenther@suse.de>
12946         PR tree-optimization/46886
12947         * tree-flow.h (do_while_loop_p): Declare.
12948         * tree-ssa-loop-ch.c (do_while_loop_p): Export.
12949         * tree-parloops.c (parallelize_loops): Only parallelize do-while loops.
12951 2012-02-08  Andrew MacLeod  <amacleod@redhat.com>
12953         * optabs.c (expand_atomic_load): Do not assume compare_and_swap will
12954         always succeed for integers larger than a native word.
12956 2012-02-08  Richard Guenther  <rguenther@suse.de>
12958         PR rtl-optimization/52170
12959         * simplify-rtx.c (simplify_plus_minus): Use CONSTM1_RTX to
12960         properly handle integer vector modes.
12962 2012-02-08  Jakub Jelinek  <jakub@redhat.com>
12964         PR gcov-profile/52150
12965         * coverage.c: Include target.h.
12966         (build_var): Call targetm.strip_name_encoding on the assembler name.
12967         Change one _ into . or $ if the target allows it.
12968         * Makefile.in (coverage.o): Depend on $(TARGET_H).
12970         PR rtl-optimization/52139
12971         * cfgrtl.c (cfg_layout_merge_blocks): If BB_END
12972         is a BARRIER after emit_insn_after_noloc, move BB_END
12973         to the last non-BARRIER insn before it.
12975 2012-02-07  Richard Sandiford  <rdsandiford@googlemail.com>
12977         PR middle-end/24306
12978         * config/mips/mips.c (mips_std_gimplify_va_arg_expr): New function.
12979         (mips_gimplify_va_arg_expr): Call it instead of
12980         std_gimplify_va_arg_expr.
12982 2012-02-07  Michael Meissner  <meissner@linux.vnet.ibm.com>
12984         * config/rs6000/rs6000.c (rs6000_trampoline_init): Fix error
12985         message for -mno-pointers-to-nested-function.
12987 2012-02-07  Eric Botcazou  <ebotcazou@adacore.com>
12989         PR middle-end/51994
12990         * expr.c (get_inner_reference): If there is an offset, add a negative
12991         bit position to it (if any).
12993 2012-02-07  Jakub Jelinek  <jakub@redhat.com>
12995         PR rtl-optimization/52060
12996         * combine.c (try_combine): Add i0src_copy and i0src_copy2 variables,
12997         copy i1src to i1src_copy whenever added_sets_2 && i1_feeds_i2_n already
12998         before i1dest -> i1src substitution in newpat, copy i0src to i0src_copy
12999         and/or i0src_copy2 when needed.
13001 2012-02-07  Jakub Jelinek  <jakub@redhat.com>
13003         * gcc.c (main): Don't look for lto-wrapper or lto-wrapper
13004         or LTOPLUGINSONAME if have_c.
13006         * config/freebsd-spec.h: Add comment about what macros can be defined
13007         in this header.
13008         (LINK_EH_SPEC, LINK_SSP_SPEC, USE_LD_AS_NEEDED): Don't define here.
13009         * config/freebsd.h (LINK_EH_SPEC, LINK_SSP_SPEC, USE_LD_AS_NEEDED): But
13010         here instead.
13012 2012-02-07  Richard Guenther  <rguenther@suse.de>
13014         * gimple-pretty-print.c (dump_gimple_phi): Avoid excessive
13015         newline in -alias dumps.
13017 2012-02-07  Kai Tietz  <ktietz@redhat.com>
13018             Dave Korn  <dave.korn.cygwin@gmail.com>
13020         PR target/40068
13021         * config/i386/winnt-cxx.c (i386_pe_adjust_class_at_definition):
13022         Take care that typinfo gets dllexport-attribute.
13024 2012-02-07  Jakub Jelinek  <jakub@redhat.com>
13026         PR middle-end/52074
13027         * expr.c (expand_expr_addr_expr_1): For CONSTANT_CLASS_P or CONST_DECL
13028         if modifier < EXPAND_SUM call force_operand on the result.
13030 2012-02-07  Joern Rennecke  <joern.rennecke@embecosm.com>
13032         * config/epiphany/epiphany.h (ASM_DECLARE_FUNCTION_SIZE): Redefine,
13033         adding __forwarder_dst__ prefix if a forwarder_section attribute is
13034         present.
13035         (epiphany_function_type): Replace types for specific interrupts with
13036         EPIPHANY_FUNCTION_INTERRUPT.
13037         (EPIPHANY_INTERRUPT_P): Update.
13038         * config/epiphany/epiphany.c (epiphany_handle_forwarder_attribute):
13039         New static function.
13040         (epiphany_attribute_table) <interrupt>: min_len is 0, max_len is 9.
13041         <disinterrupt>: Affects type identity.
13042         (epiphany_handle_interrupt_attribute): Handle variable number of
13043         arguments.
13044         (epiphany_compute_function_type): Update for new
13045         epiphany_function_type definition.
13046         (epiphany_expand_prologue): Don't save (reg:DI GPR_0) for interrupt
13047         handlers with a longcall forwarder.
13048         (epiphany_start_function): Handle multiple interrupt arguments and/or
13049         forwarder_section attribute.
13051         * config/epiphany/epiphany.h (LIB_SPEC): Link libc again after
13052         libgloss.
13054 2012-02-07  Alan Modra  <amodra@gmail.com>
13056         PR target/52107
13057         * config/rs6000/rs6000.c (rs6000_emit_move): Don't create DImode
13058         subregs of TFmode.
13060 2012-02-06  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
13062         PR tree-optimization/50969
13063         * tree-vect-stmts.c (vect_model_store_cost): Correct statement cost to
13064         use vec_perm rather than vector_stmt.
13065         (vect_model_load_cost): Likewise.
13066         * config/i386/i386.c (ix86_builtin_vectorization_cost): Change cost of
13067         vec_perm to be the same as other vector statements.
13068         * config/rs6000/rs6000.c (rs6000_builtin_vectorization_cost): Revise
13069         cost of vec_perm for TARGET_VSX.
13071 2012-02-06  Richard Guenther  <rguenther@suse.de>
13073         PR tree-optimization/52115
13074         * tree-sra.c (access_has_replacements_p): New function.
13075         (sra_modify_assign): Use it to decide whether a use is uninitialized.
13077 2012-02-06  Patrick Marlier  <patrick.marlier@gmail.com>
13079         PR middle-end/52047
13080         * trans-mem.c (expand_call_tm): Add an assertion.
13081         * calls.c (flags_from_decl_or_type): Add ECF_TM_PURE to 'no vops'
13082         functions.
13084 2012-02-06  Richard Guenther  <rguenther@suse.de>
13086         PR tree-optimization/50955
13087         * tree-ssa-loop-ivopts.c (get_computation_cost_at): Artificially
13088         raise cost of expressions that replace an address with an
13089         expression based on a different pointer.
13091 2012-02-06  Jakub Jelinek  <jakub@redhat.com>
13093         PR target/52129
13094         * calls.c (mem_overlaps_already_clobbered_arg_p): If val is
13095         CONST_INT_P, subtract resp. add crtl->args.pretend_args_size to it.
13097 2012-02-06  Jonathan Wakely  <jwakely.gcc@gmail.com>
13099         PR c++/48680
13100         * doc/invoke.texi (C++ Dialect Options): Use @option markup for
13101         -Weffc++ and specify guidelines come from second edition.
13103 2012-02-05  Richard Sandiford  <rdsandiford@googlemail.com>
13105         * config/mips/mips.md (sibcall_internal, sibcall_value_internal)
13106         (sibcall_value_multiple_internal, call_split, call_internal_direct)
13107         (call_direct_split, call_value_split, call_value_internal_direct)
13108         (call_value_direct_split, call_value_multiple_split): Use jal and
13109         jal_macro attributes.
13111 2012-02-05  Richard Sandiford  <rdsandiford@googlemail.com>
13113         * reload1.c (reload_regs_reach_end_p): Replace with...
13114         (reload_reg_rtx_reaches_end_p): ...this function.
13115         (new_spill_reg_store): Update commentary.
13116         (emit_input_reload_insns): Don't clear new_spill_reg_store here.
13117         (emit_output_reload_insns): Check reload_reg_rtx_reaches_end_p
13118         before setting new_spill_reg_store.
13119         (emit_reload_insns): Use a separate loop to clear new_spill_reg_store.
13120         Use reload_reg_rtx_reaches_end_p instead of reload_regs_reach_end_p.
13121         Also use reload_reg_rtx_reaches_end_p when reading new_spill_reg_store
13122         for non-spill reload registers.
13124 2012-02-05  Ira Rosen  <irar@il.ibm.com>
13126         PR tree-optimization/52091
13127         * tree-vectorizer.h (vect_is_simple_use): Add an argument.
13128         (vect_is_simple_use_1): Likewise.
13129         * tree-vect-loop.c (vectorizable_reduction): Update calls
13130         to vect_is_simple_use_1 and vect_is_simple_use.
13131         (vectorizable_live_operation): Likewise.
13132         * tree-vect-patterns.c (widened_name_p,
13133         vect_recog_vector_vector_shift_pattern, check_bool_pattern): Likewise.
13134         * tree-vect-stmts.c (process_use, vect_get_vec_def_for_operand,
13135         vectorizable_call, vectorizable_conversion, vectorizable_assignment,
13136         vectorizable_shift,vectorizable_operation, vectorizable_store,
13137         vectorizable_load): Likewise.
13138         (vect_is_simple_cond): Add an argument, pass it to
13139         vect_is_simple_use_1.
13140         (vectorizable_condition): Update calls to vect_is_simple_cond,
13141         vect_is_simple_use.
13142         (vect_is_simple_use): Add an argument, the statement in which
13143         OPERAND is used.  Check that if OPERAND's def stmt is a double
13144         reduction phi node, the use is a phi node too.
13145         (vect_is_simple_use_1): Add an argument, pass it to
13146         vect_is_simple_use.
13147         * tree-vect-slp.c (vect_get_and_check_slp_defs): Update a call
13148         to vect_is_simple_use.
13150 2012-02-04  Jakub Jelinek  <jakub@redhat.com>
13152         PR rtl-optimization/52095
13153         * modulo-sched.c (dump_insn_locator): New function.
13154         (loop_canon_p, sms_schedule): Use it.
13156         PR rtl-optimization/52113
13157         * lower-subreg.c (decompose_multiword_subregs): Call recog_memoized
13158         even for decomposable shift/zext insns.
13160 2012-02-03  Jakub Jelinek  <jakub@redhat.com>
13161             Zdenek Dvorak  <ook@ucw.cz>
13163         PR rtl-optimization/52092
13164         * loop-unswitch.c (unswitch_single_loop): Call copy_rtx_if_shared
13165         on get_iv_value result.
13167 2012-02-02  Andrew Pinski  <apinski@cavium.com>
13169         PR middle-end/47982
13170         PR middle-end/43967
13171         * doc/libgcc.texi (__udivmoddi4/__udivmodti4): Fix documentation typo.
13173 2012-02-02  Jakub Jelinek  <jakub@redhat.com>
13175         PR middle-end/48071
13176         * diagnostic.c (diagnostic_finish): Remove trailing newlines.
13178 2012-02-02  Vladimir Makarov  <vmakarov@redhat.com>
13180         PR rtl-optimization/49800
13181         * haifa-sched.c (sched_init): Call regstat_init_n_sets_and_refs.
13182         (sched_finish): Call regstat_free_n_sets_and_refs.
13184 2012-02-02  Jia Liu  <proljc@gmail.com>
13186         * config/mips/mips-dspr2.md (mips_prepend): Mask operand 3 rather
13187         than operand 2.
13189 2012-02-02  Jan Hubicka  <jh@suse.cz>
13190             Tom de Vries  <tom@codesourcery.com>
13192         PR middle-end/51998
13193         * cgraphunit.c (cgraph_analyze_function): Break cyclic aliases.
13194         * varpool.c (varpool_analyze_pending_decls): Likewise.
13196 2012-02-02  Sumanth G <sumanth.gundapaneni@kpitcummins.com>
13197             Jayant R Sonar <jayant.sonar@kpitcummins.com>
13199         * config.gcc: Add cr16-* support.
13201         * doc/extend.texi: Document cr16 extensions.
13202         * doc/install.texi: Document cr16 install.
13203         * doc/invoke.texi: Document cr16 options.
13204         * doc/md.texi: Document cr16 constraints.
13206         * common/config/cr16/cr16-common.c: New file.
13207         * config/cr16/cr16.c: New file.
13208         * config/cr16/cr16.h: New file.
13209         * config/cr16/cr16.md: New file.
13210         * config/cr16/cr16.opt: New file.
13211         * config/cr16/cr16-protos.h: New file.
13212         * config/cr16/predicates.md: New file.
13213         * config/cr16/constraints.md: New file.
13214         * config/cr16/t-cr16: New file.
13216 2012-02-02  Jakub Jelinek  <jakub@redhat.com>
13218         PR target/52086
13219         * config/i386/i386.md (*addqi_2 peephole with SImode addition): Check
13220         that operands[2] is either immediate, or q_regs_operand.
13222         PR tree-optimization/52073
13223         * tree-vect-stmts.c (vect_mark_relevant): When checking uses of
13224         a pattern stmt for pattern uses, ignore uses outside of the loop.
13226 2012-02-01  Georg-Johann Lay  <avr@gjlay.de>
13228         * config/avr/avr.c: Resolve all AS1 and AS2 macros.
13229         * config/avr/avr.h (AS1, AS2, AS2C, AS3): Remove.
13230         (OUT_AS1, OUT_AS2): Remove.
13232 2012-02-01  Georg-Johann Lay  <avr@gjlay.de>
13234         PR rtl-optimization/51374
13235         * combine.c (can_combine_p): Don't allow volatile_refs_p insns
13236         to cross other volatile_refs_p insns.
13238 2012-02-01  Richard Guenther  <rguenther@suse.de>
13240         * doc/invoke.texi (fno-inline): Clarify documentation.
13241         (finline-small-functions): Likewise.
13242         (finline-functions): Likewise.
13243         * common.opt (finline): Adjust comment and documentation.
13244         (finline-small-functions): Clarify documentation.
13245         (finline-functions): Likewise.
13246         (finline-functions-called-once): Likewise.
13248 2012-02-01  Tristan Gingold  <gingold@adacore.com>
13250         * c-typeck.c (composite_type): Keep mode for pointers.
13252 2012-01-31  Richard Sandiford  <rdsandiford@googlemail.com>
13254         * function.h (regno_reg_rtx): Adjust comment.
13255         * reginfo.c (init_reg_modes_target): Only use the previous mode
13256         if it fits within one register.  Remove MIPS comment.
13258 2012-01-31  Jakub Jelinek  <jakub@redhat.com>
13260         PR bootstrap/52058
13261         * combine.c (do_SUBST_LINK, SUBST_LINK): Guard with #ifndef HAVE_cc0.
13263 2012-01-31  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
13265         * config/s390/s390.md ("*ashr<mode>3_and"): Add missing z196 flag
13266         to srak instruction.
13268 2012-01-31  Matthew Gretton-Dann  <matthew.gretton-dann@arm.com>
13270         * config/arm/thumb2.md (thumb2_mov_notscc): Use MVN for true condition.
13272 2012-01-31  Jakub Jelinek  <jakub@redhat.com>
13274         PR bootstrap/52041
13275         PR bootstrap/52039
13276         PR target/51974
13277         * ipa-prop.c (detect_type_change_1): Call ao_ref_init.
13279 2012-01-31  Richard Guenther  <rguenther@suse.de>
13281         PR tree-optimization/51528
13282         * tree-sra.c (sra_modify_assign): Avoid copy-in/out for aggregate
13283         assigns.
13285 2012-01-31  Jakub Jelinek  <jakub@redhat.com>
13287         PR bootstrap/52041
13288         PR bootstrap/52039
13289         PR target/51974
13290         * ree.c (add_removable_extension): Change def_map argument
13291         to unsigned *, store in def_map 1 + offset into *insn_list vector
13292         instead of pointers into the vector.
13293         (find_removable_extensions): Adjust caller.
13295 2012-01-30  Georg-Johann Lay  <avr@gjlay.de>
13297         * config/avr/avr.md: Resolve all AS1 and AS2 macros.
13298         Transform all "* quoted-c-code" to { c-code }.
13299         Remove redundant test for "optimize" in combine patterns.
13300         Move (include "avr-dimode.md") to end of file.
13302 2012-01-30  Bin Cheng  <bin.cheng@arm.com>
13304         PR target/51835
13305         * config/arm/arm.c (arm_libcall_uses_aapcs_base): Use correct ABI
13306         for __aeabi_d2iz/__aeabi_d2uiz with hard-float.
13308 2012-01-30  Richard Guenther  <rguenther@suse.de>
13310         PR tree-optimization/52028
13311         * tree-loop-distribution.c (ldist_gen): Properly update
13312         virtual SSA form.
13314 2012-01-30  Jakub Jelinek  <jakub@redhat.com>
13316         PR debug/52027
13317         * dwarf2out.c (dwarf2out_switch_text_section): Don't call
13318         set_cur_line_info_table if not emitting debug info.
13320         PR tree-optimization/52046
13321         * tree-vect-patterns.c (check_bool_pattern): Give up if
13322         a comparison could throw.
13324         PR debug/52048
13325         * tree-ssa-tail-merge.c (local_def): Ignore debug uses.
13327 2012-01-30  Richard Guenther  <rguenther@suse.de>
13329         PR tree-optimization/52045
13330         * tree-optimize.c (execute_cleanup_cfg_post_optimizing): Update
13331         SSA form if cfgcleanup did anything.
13333 2012-01-30  Richard Guenther  <rguenther@suse.de>
13335         PR tree-optimization/52045
13336         * ipa-inline-transform.c (inline_transform): Call execute_fixup_cfg
13337         before computing final todo.
13339 2012-01-30  Richard Guenther  <rguenther@suse.de>
13341         PR tree-optimization/51528
13342         * tree-sra.c (sra_modify_assign): Re-factor in preparation
13343         for PR51528 fix.
13345 2012-01-30  Paolo Bonzini  <bonzini@gnu.org>
13347         * df-problems.c (df_kill_notes): Check that the use refers
13348         to the note under examination.
13350 2012-01-30  Eric Botcazou  <ebotcazou@adacore.com>
13352         PR target/51920
13353         * config/sparc/sparc.c (vector_init_fpmerge): Remove INNER_MODE
13354         parameter and use short-lived pseudos.
13355         (vector_init_faligndata): Remove INNER_MODE parameter and use loop.
13356         (sparc_expand_vector_init): Const-ify local variables and adjust
13357         calls to above functions.
13359 2012-01-30  Georg-Johann Lay  <avr@gjlay.de>
13361         * config/avr/avr.c (out_movqi_mr_r): Fix length computation.
13363 2012-01-29  Sandra Loosemore  <sandra@codesourcery.com>
13365         * doc/invoke.texi: Make usage of "compile time" and
13366         "run time"/"runtime" consistent throughout the file.
13368 2012-01-29  Uros Bizjak  <ubizjak@gmail.com>
13370         * config/alpha/alpha.c (alpha_option_override): Default to
13371         full IEEE compliance mode for Go language.
13373 2012-01-29  Tijl Coosemans  <tijl@coosemans.org>
13375         * config/freebsd-spec.h [TARGET_LIBC_PROVIDES_SSP]
13376         (LINK_SSP_SPEC): Define.
13378 2012-01-28  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
13380         PR target/51871
13381         * config/pa/pa.c (pa_return_addr_rtx): Add support for PA2.0 export
13382         stubs.
13384 2012-01-28  Sandra Loosemore  <sandra@codesourcery.com>
13386         * doc/invoke.texi: Correct hyphenation of "floating point",
13387         "double precision", and related terminology throughout the file.
13389 2012-01-28  Jakub Jelinek  <jakub@redhat.com>
13391         PR target/52006
13392         * config/arm/arm.md (pic_add_dot_plus_eight peephole2): Use
13393         arm_general_register_operand predicate for operand 2 instead of
13394         register_operand.
13396 2012-01-27  Ian Lance Taylor  <iant@google.com>
13398         PR go/47656
13399         * builtins.def (BUILT_IN_INIT_HEAP_TRAMPOLINE): Define.
13400         * builtins.c (expand_builtin_init_trampoline): Add onstack
13401         parameter.  Change caller.
13402         (expand_builtin): Handle BUILT_IN_INIT_HEAP_TRAMPOLINE.
13403         * tree.c (build_common_builtin_nodes): Declare
13404         __builtin_init_heap_trampoline.
13406 2012-01-27  Georg-Johann Lay  <avr@gjlay.de>
13408         * config/avr/avr-protos.h (lpm_reg_rtx, lpm_addr_reg_rtx,
13409         tmp_reg_rtx, zero_reg_rtx, all_regs_rtx, rampz_rtx): Make global.
13410         * config/avr/avr.c: Ditto.
13411         (avr_regnames): Remove because unused.
13412         * config/avr/avr.md (*cpse.ne): New peephole.
13413         (*cpse.eq): New peephole from former cpse peepholes.
13415 2012-01-27  Michael Eager  <eager@eagercon.com>
13417         * config/microblaze.c (microblaze_emit_compare): Correct
13418         test after pcmp instruction.
13420 2012-01-27  Richard Guenther  <rguenther@suse.de>
13422         PR tree-optimization/52020
13423         * tree-sra.c (sra_modify_assign): Do not transform clobbers.
13425 2012-01-27  Richard Guenther  <rguenther@suse.de>
13427         * ipa-pure-const.c (check_stmt): Clobbers do not make a
13428         function non-const/pure.
13430 2012-01-27  Richard Guenther  <rguenther@suse.de>
13432         PR tree-optimization/50444
13433         * tree-sra.c (build_ref_for_offset): Properly adjust the
13434         MEM_REF type for unaligned accesses.
13436 2012-01-27  Richard Guenther  <rguenther@suse.de>
13438         PR tree-optimization/50444
13439         * expr.c (mem_ref_refers_to_non_mem_p): New function.
13440         (expand_assignment): Use it.  Properly handle misaligned
13441         bases when expanding stores to component references.
13442         (expand_expr_real_1): Use mem_ref_refers_to_non_mem_p and
13443         refactor that case.
13445 2012-01-27  Andrey Belevantsev  <abel@ispras.ru>
13447         PR middle-end/51389
13448         * Makefile.in (tree-data-ref.o): Depend on $(PARAMS_H).
13449         * tree-data-ref.h (find_data_references_in_loop): Remove declaration.
13450         * tree-data-ref.c (find_data_references_in_loop): Make static.
13451         (compute_all_dependences): Change return type to bool.  Bail out
13452         for too many datarefs in a loop.  Move the hunk resetting the data
13453         dependences vector from ...
13454         (compute_data_dependences_for_loop): ... here.  Account for
13455         compute_all_dependences returning false.
13456         (compute_data_dependences_for_bb): Likewise.
13457         * params.def (PARAM_LOOP_MAX_DATAREFS_FOR_DATADEPS): New param.
13458         * doc/invoke.texi (loop-max-datarefs-for-datadeps): Document it.
13460 2012-01-27  Richard Guenther  <rguenther@suse.de>
13462         PR middle-end/51959
13463         * expr.c (store_field): Use the alias-set of the scratch memory
13464         for storing to it.
13466 2012-01-27  Tom de Vries  <tom@codesourcery.com>
13468         PR tree-optimization/51990
13469         * tree-ssa-sccvn.c (copy_reference_ops_from_ref): Handle
13470         WITH_SIZE_EXPR.
13471         * tree-ssa-pre.c (create_component_ref_by_pieces_1): Same.
13473 2012-01-27  Jakub Jelinek  <jakub@redhat.com>
13475         PR debug/52001
13476         * var-tracking.c (reverse_op): Don't add any reverse operation
13477         if V already has any constant locations.
13479 2012-01-27  Sandra Loosemore  <sandra@codesourcery.com>
13481         * doc/invoke.texi: Correct usage of "command line" (noun)
13482         vs "command-line" (adjective) throughout.
13484 2012-01-27  Sandra Loosemore  <sandra@codesourcery.com>
13486         * doc/invoke.texi (Language Independent Options): Move
13487         -Wcoverage-mismatch blurb from here....
13488         (Warning Options): ...to here.
13490 2012-01-27  Peter Bergner  <bergner@vnet.ibm.com>
13492         * config/rs6000/rs6000.c (rs6000_option_override_internal):
13493         Set rs6000_always_hint to false for 476.
13495 2012-01-27  Matthias Klose  <doko@ubuntu.com>
13497         * gcc.c (add_sysrooted_prefix): Remove trailing dir separator from
13498           system root.
13499         * incpath.c (add_standard_paths): Likewise.
13501 2012-01-27  Richard Henderson  <rth@redhat.com>
13503         * config/m68k/m68k.c (TARGET_ATOMIC_TEST_AND_SET_TRUEVAL): New.
13504         * config/m68k/sync.md (atomic_test_and_set): Rename from
13505         sync_test_and_setqi and adjust the operands.
13506         (atomic_test_and_set_1): Rename from sync_test_and_setqi_1
13507         and unconditionally enable.
13509 2012-01-27  Richard Henderson  <rth@redhat.com>
13511         * config/sparc/sparc.c (TARGET_ATOMIC_TEST_AND_SET_TRUEVAL): New.
13512         * config/sparc/sync.md (atomic_test_and_set): Only handle QImode.
13513         (ldstub): Rename from ldstubqi.
13514         (ldstub<I24MODE>): Remove.
13516 2012-01-27  Richard Henderson  <rth@redhat.com>
13518         * target.def (TARGET_ATOMIC_TEST_AND_SET_TRUEVAL): New.
13519         * c-cppbuiltin.c (cpp_atomic_builtins): Define
13520         __GCC_ATOMIC_TEST_AND_SET_TRUEVAL.
13521         * doc/tm.texi.in (TARGET_ATOMIC_TEST_AND_SET_TRUEVAL): Add doc hook.
13522         * doc/tm.texi: Rebuild.
13524 2012-01-27  Richard Henderson  <rth@redhat.com>
13526         * optabs.c (gen_atomic_test_and_set): Remove default.
13527         (maybe_emit_atomic_test_and_set): Use maybe_expand_insn.
13529 2012-01-26  Jakub Jelinek  <jakub@redhat.com>
13531         PR rtl-optimization/51978
13532         * ree.c (make_defs_and_copies_lists): Change set_pat type to const_rtx.
13533         (combine_reaching_defs): Likewise.
13534         (struct re_info): Remove.
13535         (add_removable_extension): Remove x and data arguments,
13536         add insn, insn_list and def_map.  Use the arguments directly
13537         instead of using struct re_info.
13538         (find_removable_extensions): Don't call add_removable_extension
13539         through note_stores, instead just call it with single_set
13540         result if non-NULL.
13541         (find_and_remove_re): Pass curr_cand->expr instead of
13542         PATTERN (curr_cand->insn) as set_pat argument to combine_reaching_defs.
13544 2012-01-26  Michael Matz  <matz@suse.de>
13546         PR tree-optimization/46590
13547         * cfgexpand.c: Revert last change (r183305).
13548         * gimplify.c (gimplify_bind_expr): Add clobbers for all non-gimple
13549         regs.
13550         * tree-eh.c (cleanup_empty_eh): Try to optimize clobbers before
13551         checking for emptiness.
13553 2012-01-26  Jakub Jelinek  <jakub@redhat.com>
13555         PR middle-end/51895
13556         * expr.c (expand_expr_real_1): Handle BLKmode MEM_REF of
13557         non-addressable non-BLKmode base correctly.
13559 2012-01-26  Michael Matz  <matz@suse.de>
13561         PR tree-optimization/48794
13562         * tree-eh.c (remove_unreachable_handlers_no_lp): Don't remove
13563         regions referenced from RESX/EH_DISPATCH.
13565 2012-01-26  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
13567         * config/s390/s390.h: Make BRANCH_COST an option.
13568         * config/s390/s390.opt: New option -mbranch-cost.
13570 2012-01-26  Richard Henderson  <rth@redhat.com>
13572         Revert 2012-01-24 change:
13573         * trans-mem.c (requires_barrier): Do not instrument thread local
13574         variables and emit save/restore for them.
13576 2012-01-25  Jakub Jelinek  <jakub@redhat.com>
13578         PR middle-end/51986
13579         * sched-deps.c (sched_get_condition_with_rev_uncached): Don't test
13580         for pat == 0.
13582 2012-01-25  Richard Sandiford  <rdsandiford@googlemail.com>
13584         * config/mips/mips.c (mips_small_data_pattern_1): Don't process
13585         ASM_OPERANDS.
13587 2012-01-25  Georg-Johann Lay  <avr@gjlay.de>
13589         PR target/49868
13590         Rename __pgm to __flash.
13591         Rename __pgm1 to __flash1.
13592         Rename __pgm2 to __flash2.
13593         Rename __pgm3 to __flash3.
13594         Rename __pgm4 to __flash4.
13595         Rename __pgm5 to __flash5.
13596         Rename __pgmx to __memx.
13597         * doc/extend.texi (AVR Named Address Spaces)
13598         Rename address space names as indicated above.
13599         * config/avr/avr.c (avr_addrspace): Ditto.
13601         * config/avr/avr-protos.h
13602         (avr_mem_pgmx_p): Rename to avr_mem_memx_p.
13603         (avr_mem_pgm_p): Rename to avr_mem_flash_p.
13604         * config/avr/predicates.md: Ditto.
13605         * config/avr/avr.c Ditto, and
13606         (avr_decl_pgmx_p): Rename to avr_decl_memx_p.
13607         (avr_decl_pgm_p): Rename to avr_decl_flash_p.
13609         * config/avr/avr.h (ADDR_SPACE_PGM): Rename to ADDR_SPACE_FLASH.
13610         (ADDR_SPACE_PGM1): Rename to ADDR_SPACE_FLASH1.
13611         (ADDR_SPACE_PGM2): Rename to ADDR_SPACE_FLASH2.
13612         (ADDR_SPACE_PGM3): Rename to ADDR_SPACE_FLASH3.
13613         (ADDR_SPACE_PGM4): Rename to ADDR_SPACE_FLASH4.
13614         (ADDR_SPACE_PGM5): Rename to ADDR_SPACE_FLASH5.
13615         (ADDR_SPACE_PGMX): Rename to ADDR_SPACE_MEMX.
13616         * config/avr/avr.c: Ditto.
13617         * config/avr/avr.md: Ditto.
13619 2012-01-25  Jason Merrill  <jason@redhat.com>
13621         PR c++/51992
13622         * tree.c (find_decls_types_in_node): Walk gimple_call_fntype.
13624 2012-01-25  Jakub Jelinek  <jakub@redhat.com>
13626         PR tree-optimization/51987
13627         * tree-data-ref.c (get_references_in_stmt): Handle references in
13628         non-volatile GIMPLE_ASM.
13630 2012-01-25  Richard Guenther  <rguenther@suse.de>
13632         * tree-ssa-sccvn.c (vn_reference_eq): Also compare if both
13633         bases are dereferenced.
13635 2012-01-25  Andrey Belevantsev  <abel@ispras.ru>
13637         PR rtl-optimization/48374
13638         * sel-sched-ir.h (get_all_loop_exits): Check for zero successors.
13640 2012-01-25  Andrey Belevantsev  <abel@ispras.ru>
13642         * tree-predcom.c (tree_predictive_commoning_loop): Bail out when
13643         compute_data_dependences_for_loop returns false.
13644         * tree-parloops.c (loop_parallel_p): Likewise.
13646 2012-01-25  Richard Guenther  <rguenther@suse.de>
13648         * tree.h (get_pointer_alignment_1): Declare.
13649         * builtins.c (get_pointer_alignment_1): New function.
13650         (get_pointer_alignment): Use it.
13652 2012-01-25  Ramana Radhakrishnan  <ramana.radhakrishnan@linaro.org>
13654         PR rtl-optimization/48308
13655         * combine.c (enum undo_kind): Add UNDO_LINKS.
13656         (struct undo): Add member l to other_contents and where.
13657         (do_SUBST_LINK): New.
13658         (SUBST_LINK): New.
13659         (try_combine): Handle LOG_LINKS for the dummy i1 case.
13660         (undo_all): Handle UNDO_LINKS.
13662 2012-01-25  Richard Henderson  <rth@redhat.com>
13664         * optabs.c (maybe_emit_atomic_test_and_set): Allow non-QImode
13665         mem inputs.
13667 2012-01-24  Richard Sandiford  <rdsandiford@googlemail.com>
13669         * optabs.c (gen_atomic_test_and_set): Use each argument.
13671 2012-01-24  Richard Sandiford  <rdsandiford@googlemail.com>
13673         * config/mips/mips-ps-3d.md (mips_addr_ps, reduc_splus_v2sf)
13674         (mips_cvt_pw_ps, mips_cvt_ps_pw, mips_mulr_ps, mips_cabs_cond_<fmt>)
13675         (mips_cabs_cond_4s, mips_cabs_cond_ps, bc1any4t, bc1any4f, bc1any2t)
13676         (bc1any2f, mips_rsqrt1_<fmt>, mips_rsqrt2_<fmt>, mips_recip1_<fmt>)
13677         (mips_recip2_<fmt>): Require TARGET_MIPS3D rather than
13678         TARGET_PAIRED_SINGLE_FLOAT.
13680 2012-01-24  Richard Sandiford  <rdsandiford@googlemail.com>
13682         * doc/rtl.texi (MEM_IN_STRUCT_P, MEM_SCALAR_P): Delete.
13683         (in_struct, return_val): Remove MEM documentation.
13684         * rtl.h (rtx_def): Remove MEM meanings from in_struct and return_val.
13685         (MEM_IN_STRUCT_P, MEM_SCALAR_P): Delete.
13686         (MEM_COPY_ATTRIBUTES): Remove references to MEM_IN_STRUCT_P
13687         and MEM_SCALAR.
13688         * emit-rtl.c (set_mem_attributes_minus_bitpos): Likewise.
13689         * cfgexpand.c (add_alias_set_conflicts): Likewise.
13690         * expr.c (store_field): Likewise.
13691         * function.c (assign_stack_temp_for_type): Likewise.
13692         * ifcvt.c (noce_try_cmove_arith): Likewise.
13693         * reload1.c (reload): Likewise.
13694         * config/alpha/alpha.c (alpha_set_memflags_1): Likewise.
13695         (alpha_set_memflags): Likewise.
13696         * config/m32c/m32c.c (m32c_immd_dbl_mov): Nullify.
13698 2012-01-24  Richard Sandiford  <rdsandiford@googlemail.com>
13700         * rtl.h (true_dependence, canon_true_dependence): Remove varies
13701         parameter.
13702         * alias.c (fixed_scalar_and_varying_struct_p): Delete.
13703         (true_dependence_1, write_dependence_p, may_alias_p): Don't call it.
13704         (true_dependence_1, true_dependence, canon_true_dependence): Remove
13705         varies parameter.
13706         * cselib.c (cselib_rtx_varies_p): Delete.
13707         (cselib_invalidate_mem): Update call to canon_true_dependence.
13708         * dse.c (record_store, check_mem_read_rtx): Likewise.
13709         (scan_reads_nospill): Likewise.
13710         * cse.c (check_dependence): Likewise.
13711         (cse_rtx_varies_p): Delete.
13712         * expr.c (safe_from_p): Update call to true_dependence.
13713         * ira.c (validate_equiv_mem_from_store): Likewise.
13714         (memref_referenced_p): Likewise.
13715         * postreload-gcse.c (find_mem_conflicts): Likewise.
13716         * sched-deps.c (sched_analyze_2): Likewise.
13717         * store-motion.c (load_kills_store): Likewise.
13718         * config/frv/frv.c (frv_registers_conflict_p_1): Likewise.
13719         * gcse.c (mems_conflict_for_gcse_p): Likewise.
13720         (compute_transp): Update call to canon_true_dependence.
13722 2012-01-25  Richard Henderson  <rth@redhat.com>
13724         * optabs.c (CODE_FOR_atomic_test_and_set): Provide default.
13725         (maybe_emit_atomic_test_and_set): New.
13726         (expand_sync_lock_test_and_set): Use it.
13727         (expand_atomic_test_and_set): Likewise.
13728         * doc/extend.texi (__atomic_test_and_set): Adjust the docs to match
13729         the implementation; clarify implementation defined details.
13730         * doc/md.texi (atomic_test_and_set): Document.
13732 2012-01-25  Richard Henderson  <rth@redhat.com>
13734         * config/sparc/predicates.md (zero_or_v7_operand): Use match_code.
13736 2012-01-25  Richard Henderson  <rth@redhat.com>
13738         PR target/51968
13739         * config/arm/arm.c (neon_split_vcombine): Emit deleted note
13740         to effect no-op split.
13742 2012-01-24  Aldy Hernandez  <aldyh@redhat.com>
13744         PR lto/51698
13745         * builtin-types.def: (BT_CONST_DOUBLE_PTR): New.
13746         (BT_FN_VOID_PTR_CONST_PTR_SIZE): New.
13747         (BT_FN_VOID_PTR_INT_SIZE): New.
13748         (BT_FN_UINT_UINT_VAR): Remove.
13749         (BT_FN_UINT32_UINT32_VAR): New.
13750         (BT_FN_DOUBLE_VPTR): Remove.
13751         (BT_FN_DOUBLE_CONST_DOUBLE_PTR): New.
13753         * gtm-builtins.def (_ITM_abortTransaction): Set return type to void.
13754         (_ITM_changeTransactionMode): Same.
13755         (_ITM_memmoveRtWt): Change return type to void.
13756         (_ITM_memcpyRtWt): Same.
13757         (_ITM_memsetW): Same.
13758         (_ITM_RaRD): Change types to double.
13759         (_ITM_RD): Same.
13760         (_ITM_RaWD): Same.
13761         (_ITM_RfWD): Same.
13763         * builtins.def (DEF_TM_BUILTIN): Set BOTH_P to true.
13765 2012-01-24  Aldy Hernandez  <aldyh@redhat.com>
13766             Patrick Marlier  <patrick.marlier@gmail.com>
13768         * trans-mem.c (requires_barrier): Do not instrument thread local
13769         variables and emit save/restore for them.
13771 2012-01-24  Jason Merrill  <jason@redhat.com>
13773         PR c++/51812
13774         * cgraphunit.c (cgraph_decide_is_function_needed): Don't always
13775         output static aliases.
13777 2012-01-24  Jakub Jelinek  <jakub@redhat.com>
13779         PR driver/47249
13780         * common.opt (-pie, -shared, pie, shared): Change from Common to
13781         Driver.
13782         * gcc.c (display_help): Display help for -pie and -shared.
13784 2012-01-24  Georg-Johann Lay  <avr@gjlay.de>
13786         PR target/49868
13787         * doc/extend.texi (AVR Named Address Spaces): Move sample code up.
13788         Remove note on size/offset limitation.
13789         (AVR Variable Attributes): Add example how to read data located
13790         with progmem.  Refer to named address spaces.
13791         * doc/invoke.texi (AVR Options): Fix typo.
13793 2012-01-24  Richard Guenther  <rguenther@suse.de>
13795         Forward-port to trunk
13796         2010-09-21  Jakub Jelinek  <jakub@redhat.com>
13798         PR middle-end/45678
13799         * expr.c (expand_expr_real_1) <case VIEW_CONVERT_EXPR>: If
13800         op0 isn't sufficiently aligned and there is movmisalignM
13801         insn for mode, use it to load op0 into a temporary register.
13803 2012-01-24  Jakub Jelinek  <jakub@redhat.com>
13805         PR target/51957
13806         * target.def (const_not_ok_for_debug_p): New hook.
13807         * doc/tm.texi.in (TARGET_CONST_NOT_OK_FOR_DEBUG_P): New hook
13808         documentation.
13809         * doc/tm.texi: Regenerated.
13810         * dwarf2out.c (const_ok_for_output_1): If
13811         targetm.const_not_ok_for_debug_p returns true, fail.
13812         * config/rs6000/rs6000.c (rs6000_const_not_ok_for_debug_p): New
13813         function.
13814         (TARGET_CONST_NOT_OK_FOR_DEBUG_P): Redefine.
13816 2012-01-23  Kai Tietz  <ktietz@redhat.com>
13818         PR target/51900
13819         * config/i386/predicates.md (symbolic_operand): Allow
13820         UNSPEC_PCREL as PIC expression for lea.
13821         * config/i386/winnt.c (i386_pe_binds_local_p): Reworked.
13822         * config/i386/i386.c (ix86_delegitimize_address): Handle
13823         UNSPEC_PCREL for none-MEM, too.
13825 2012-01-23  Aldy Hernandez  <aldyh@redhat.com>
13827         * trans-mem.c (ipa_tm_create_version): Set externally_visible.
13828         (ipa_tm_create_version_alias): Same.
13830 2012-01-23  Uros Bizjak  <ubizjak@gmail.com>
13832         PR libitm/51830
13833         * builtin-types.def (BT_FN_UINT_UINT_VAR): New.
13834         * gtm-builtins.def (BUILT_IN_TM_START): Declare as BT_FN_UINT_UINT_VAR.
13836 2012-01-23  Aldy Hernandez  <aldyh@redhat.com>
13837             Patrick Marlier  <patrick.marlier@gmail.com>
13838             Iain Sandoe  <developer@sandoe-acoustics.co.uk>
13840         PR lto/51916
13841         * lto-wrapper.c (run_gcc): Pass the LTO section name to
13842         simple_object_start_read.
13844 2012-01-23  Richard Guenther  <rguenther@suse.de>
13847         PR tree-optimization/51895
13848         * tree-sra.c (decide_one_param_reduction): Avoid sub-optimal
13849         parameter decomposition into BLKmode components.
13851 2012-01-23  Eric Botcazou  <ebotcazou@adacore.com>
13853         * tree-ssa-structalias.c (intra_create_variable_infos): Do not create
13854         fake variables for restrict-qualified pointers whose pointed-to type
13855         contains a placeholder.
13857 2012-01-23  Richard Guenther  <rguenther@suse.de>
13859         PR tree-optimization/51949
13860         * ipa-split.c (execute_split_functions): Do not split malloc functions.
13862 2012-01-23  Jakub Jelinek  <jakub@redhat.com>
13864         PR rtl-optimization/51933
13865         * ree.c (transform_ifelse): Return true right away if dstreg is
13866         already wider or equal to cand->mode.
13867         (enum ext_modified_kind, struct ext_modified, ext_state): New types.
13868         (make_defs_and_copies_lists): Remove defs_list and copies_list
13869         arguments, add state argument, just truncate state->work_list
13870         instead of always allocating and freeing the vector.  Assert that
13871         get_defs succeeds instead of returning 2.  Changed return type to bool.
13872         (merge_def_and_ext): Add state argument.  If SET_DEST doesn't
13873         have ext_src_mode, see if it has been modified already with the
13874         right kind of extension and has been extended before from the
13875         ext_src_mode.  If SET_DEST is already wider or equal to cand->mode,
13876         just return true.  Remember the original mode in state->modified array.
13877         (combine_reaching_defs): Add state argument.  Don't allocate and
13878         free here def_list, copied_list and vec vectors, instead just
13879         VEC_truncate the vectors in *state.  Don't handle outcome == 2 here.
13880         (find_and_remove_re): Set DF_DEFER_INSN_RESCAN df flag.
13881         Add state variable, clear vectors in it, initialize state.modified
13882         if needed.  Free all the vectors at the end and state.modified too.
13883         Don't skip a candidate if the extension expression has been modified.
13885 2012-01-22  Douglas B Rupp  <rupp@gnat.com>
13887         PR target/47096
13888         * config.gcc: (i[34567]86-*-interix3*): Remove from obsolete
13889          configurations. Change triplet to i[34567]86-*-interix[3-9]*.
13890         (extra_options) interix.opt -> i386/interix.opt"
13891         (extra_objs):Add winnt-stubs.o
13892         * configure.ac: Add interix to target_os .comm on PE check.
13893         * configure: Regenerate.
13894         * config/interix3.h: Delete and move bits to..
13895         * config/interix.h: Delete and move bits to..
13896         * config/i386/i386-interix3.h: Delete and move bits to..
13897         * config/i386/i386-interix.h: ..here.
13898         (TARGET_CPU_DEFAULT): Remove redefinition.
13899         (TARGET_ASM_CONSTRUCTOR): Undefine.
13900         (SUBTARGET_SWITCHES): Define for ms-bitfields.
13901         (TARGET_OS_CPP_BUILTINS): Remove __OPENNT. Add __declspec.
13902         (PTRDIFF_TYPE): Define.
13903         (LONG_DOUBLE_TYPE_SIZE): Define.
13904         (LIBGCC2_LONG_DOUBLE_TYPE_SIZE): Define.
13905         (SUBTARGET_OVERRIDE_OPTIONS): Remove.
13906         (TARGET_SECTION_TYPE_FLAGS): Define.
13907         (ASM_DECLARE_FUNCTION_NAME): Define.
13908         (ASM_OUTPUT_EXTERNAL): Define.
13909         (ASM_OUTPUT_EXTERNAL_LIBCALL): Define.
13910         (ASM_OUTPUT_ALIGNED_BSS): Define.
13911         (PCC_BITFIELD_TYPE_MATTERS): Define.
13912         (USE_CONST_SECTION): Define.
13913         (SUBTARGET_ENCODE_SECTION_INFO): Remove.
13914         (TARGET_ASM_FUNCTION_RODATA_SECTION): Remove.
13915         (SUPPORTS_ONE_ONLY): Remove.
13916         (I386_PE_STRIP_ENCODING): Define.
13917         * config/interix.opt: Delete and move bits to..
13918         * config/i386/interix.opt: ..here. New.
13919         (mpe-aligned-commons): Add.
13920         * config/i386/t-interix: Add copyright header.
13921         (winnt-stubs.o): Add rule.
13923 2012-01-22  Jason Merrill  <jason@redhat.com>
13925         PR c++/51832
13926         * varpool.c (varpool_analyze_pending_decls): Copy DECL_EXTERNAL
13927         for extra name aliases.
13929 2012-01-22  Eric Botcazou  <ebotcazou@adacore.com>
13931         PR rtl-optimization/51924
13932         * ree.c (combine_set_extension): Improve debugging message.
13933         (combine_reaching_defs): Likewise.
13934         (get_defs): Rename confusingly named variable.
13935         (find_and_remove_re): Skip a candidate if the extension expression has
13936         been modified.
13938 2012-01-21  Robert Millan  <rmh@gnu.org>
13939             Gerald Pfeifer  <gerald@pfeifer.com>
13941         * config/kfreebsd-gnu.h (GNU_USER_DYNAMIC_LINKERX32): New macro.
13942         (GNU_USER_DYNAMIC_LINKER): Adjust indentation.
13944 2012-01-20  Jakub Jelinek  <jakub@redhat.com>
13946         PR tree-optimization/51914
13947         * tree-vect-stmts.c (vectorizable_conversion): For
13948         cvt_type && modifier == WIDEN, put temporary with cvt_type
13949         at the beginning of vec_dsts and set vec_dest to temporary
13950         with vectype_out.
13952 2012-01-20  Eric Botcazou  <ebotcazou@adacore.com>
13954         * cfgrtl.c (rtl_dump_bb): Do not dump insns for {ENTRY|EXIT}_BLOCK.
13956 2012-01-20  Tijl Coosemans  <tijl@coosemans.org>
13958         * config/i386/i386.c: Fix checks for !TARGET_MACHO.
13959         * config/rs6000/rs6000.c: Likewise.
13961 2012-01-20  Jakub Jelinek  <jakub@redhat.com>
13963         PR target/51915
13964         * config/arm/arm.c (arm_count_output_move_double_insns): Call
13965         output_move_double on a copy of operands array.
13967 2012-01-20  Cary Coutant  <ccoutant@google.com>
13968             Dodji Seketeli  <dodji@redhat.com>
13970         PR debug/45682
13971         * dwarf2out.c (copy_declaration_context): Return ref to parent
13972         of declaration DIE, if necessary.
13973         (remove_child_or_replace_with_skeleton): Add new parameter; update
13974         caller.  Place skeleton DIE under parent DIE of original declaration.
13975         Move call to copy_declaration_context to here ...
13976         (break_out_comdat_types): ... from here.
13978 2012-01-20  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
13980         PR rtl-optimization/51856
13981         * reload.c (find_reloads_subreg_address): Set the address_reloaded
13982         flag to reloaded.
13984 2012-01-20  Ramana Radhakrishnan  <ramana.radhakrishnan@linaro.org>
13986         PR target/51819
13987         * config/arm/arm.c (arm_print_operand): Correct output of alignment
13988         hints for neon loads and stores.
13990 2012-01-20  Georg-Johann Lay  <avr@gjlay.de>
13992         PR target/49868
13993         PR target/50887
13994         * doc/extend.texi (Named Address Spaces): Split into subsections.
13995         (AVR Named Address Spaces): New subsection.
13996         (M32C Named Address Spaces): New subsection.
13997         (RL78 Named Address Spaces): New subsection.
13998         (SPU Named Address Spaces): New subsection.
13999         (Variable Attributes): New anchor "AVR Variable Attributes".
14000         (AVR Variable Attributes): Rewrite and avoid wording
14001         "address space" in this context.
14002         * doc/invoke.texi (AVR Options): Rewrite and add documentation
14003         for -maccumulate-args, -mbranch-cost=, -mrelax, -mshort-calls.
14004         (AVR Built-in Macros): New subsubsection therein.
14005         * doc/md.texi (AVR constraints): Remove "C04", "R".
14007 2012-01-20  Richard Guenther  <rguenther@suse.de>
14009         PR tree-optimization/51903
14010         * tree-ssa-pre.c (eliminate): Properly purging of EH edges
14011         when removing stmts.
14013 2012-01-20  Ramana Radhakrishnan  <ramana.radhakrishnan@linaro.org>
14015         PR target/50313
14016         * config/arm/arm.c (arm_load_pic_register): Use
14017         gen_pic_load_addr_unified. Delete calls to gen_pic_load_addr_32bit
14018         , gen_pic_add_dot_plus_eight and gen_pic_add_dot_plus_four.
14019         (arm_pic_static_addr): Likewise.
14020         (arm_rtx_costs_1): Adjust cost for UNSPEC_PIC_UNIFIED.
14021         (arm_note_pic_base): Handle UNSPEC_PIC_UNIFIED.
14022         * config/arm/arm.md (UNSPEC_PIC_UNIFIED): Define.
14023         (pic_load_addr_unified): New.
14025 2012-01-20  Andrey Belevantsev  <abel@ispras.ru>
14027         PR target/51106
14028         * function.c (instantiate_virtual_regs_in_insn): Use
14029         delete_insn_and_edges when removing a wrong asm insn.
14031 2012-01-19  Vladimir Makarov  <vmakarov@redhat.com>
14033         PR rtl-optimization/40761
14034         * ira-int.h (struct ira_loop_tree_node): Add comment for member loop.
14035         Add new member loop_num.
14036         (IRA_LOOP_NODE_BY_INDEX): Modify the check.
14037         (ira_build): Remove the parameter.
14039         * ira.c (ira_print_disposition): Use loop_num instead of loop->num.
14040         (ira.c): Do not build CFG loops for one region allocation.  Remove
14041         argument from ira_build call.
14043         * ira-build.c (init_loop_tree_node): New function.
14044         (create_loop_tree_nodes): Use it.  Separate the case when CFG
14045         loops are not built.
14046         (more_one_region_p): Check current_loops.
14047         (finish_loop_tree_nodes): Separate the case when CFG loops are not
14048         built.
14049         (add_loop_to_tree): Process loop equal to NULL too.
14050         (form_loop_tree): Separate the case when CFG loops are not built.
14051         Use explicitly number for the root.
14052         (rebuild_regno_allocno_maps, create_loop_tree_node_allocnos): Add
14053         an assertion.
14054         (ira_print_expanded_allocno, loop_compare_func): Use loop_num
14055         instead of loop->num.
14056         (mark_loops_for_removal): Ditto.  Use loop_num instead of loop->num.
14057         (mark_all_loops_for_removal): Ditto.
14058         (remove_unnecessary_regions): Separate the case when CFG loops
14059         are not built.
14060         (ira_build): Remove the parameter.  Use explicit number of regions
14061         when CFG loops are not built.
14063         * ira-color.c (print_loop_title): Separate the case for the root node.
14064         Use loop_num instead of loop->num.
14065         (move_spill_restore): Use loop_num instead of loop->num.
14067         * ira-emit.c (setup_entered_from_non_parent_p): Add an assertion.
14068         (change_loop): Ditto.
14069         (change_loop): Use loop_num instead of loop->num.
14071         * ira-lives.c (process_bb_node_lives): Ditto.
14073         * ira-costs.c (print_allocno_costs, find_costs_and_classes): Ditto.
14075         * ira-conflicts.c (print_allocno_conflicts): Ditto.
14077 2012-01-19  Jakub Jelinek  <jakub@redhat.com>
14079         PR libmudflap/40778
14080         * tree-mudflap.c (mf_artificial): New function.
14081         (execute_mudflap_function_ops, execute_mudflap_function_decls,
14082         mx_register_decls, mudflap_enqueue_decl): Use it.
14084         PR target/51876
14085         * config/arm/neon.md (*neon_vswp<mode>): Fix up operand
14086         numbers in the insn pattern.
14088 2012-01-19  Michael Matz  <matz@suse.de>
14090         PR tree-optimization/46590
14091         * cfgexpand.c (add_scope_conflicts_1): New old_conflicts argument,
14092         use it in remembering which conflicts we already created.
14093         (add_scope_conflicts): Adjust call to above, (de)allocate helper
14094         bitmap.
14096 2012-01-19  Aldy Hernandez  <aldyh@redhat.com>
14098         PR lto/51280
14099         * lto-wrapper.c (run_gcc): Pass -fgnu_tm on.
14100         (merge_and_complain): Same.
14102 2012-01-19  Jakub Jelinek  <jakub@redhat.com>
14104         PR bootstrap/50237
14105         * config/initfini-array.h: Guard content of the header
14106         with #ifdef HAVE_INITFINI_ARRAY.
14107         * configure.ac: Move gcc_AC_INITFINI_ARRAY much later into the file.
14108         Add initfini-array.h to tm_file here.
14109         * acinclude.m4 (gcc_AC_INITFINI_ARRAY): For non-ia64 do a linker test.
14110         * config.gcc: Don't add initfini-array.h to tm_file here.
14111         * configure: Regenerated.
14113 2012-01-19  Andrey Belevantsev  <abel@ispras.ru>
14115         PR rtl-optimization/51505
14116         * df-problems.c (df_kill_notes): New parameter live. Update comment.
14117         Remove REG_EQUAL/REG_EQUIV notes referring to dead registers.
14118         (df_note_bb_compute): Update the call to df_kill_notes.
14120 2012-01-18  Aldy Hernandez  <aldyh@redhat.com>
14122         * trans-mem.c (requires_barrier): Remove call to is_global_var.
14124 2012-01-18  Richard Guenther  <rguenther@suse.de>
14126         * tree-ssa.c (useless_type_conversion_p): Remove special-casing
14127         of conversions to void *.
14129 2012-01-17  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
14130             Richard Sandiford  <rdsandiford@googlemail.com>
14132         PR middle-end/50325
14133         PR middle-end/51192
14134         * optabs.h (simplify_expand_binop): Declare.
14135         * optabs.c (simplify_expand_binop): Make global.
14136         * expmed.c (store_bit_field_1): Use simplify_expand_binop on big
14137         endian targets if the source cannot be exactly covered by word
14138         mode chunks.
14140 2012-01-17  Jakub Jelinek  <jakub@redhat.com>
14142         PR bootstrap/51872
14143         * hard-reg-set.h (struct hard_reg_set_container): New type.
14144         * target.h (struct hard_reg_set_container): Forward declare.
14145         * target.def (set_up_by_prologue): New target hook.
14146         * doc/tm.texi.in (TARGET_SET_UP_BY_PROLOGUE): Document it.
14147         * doc/tm.texi: Regenerated.
14148         * function.c (thread_prologue_and_epilogue_insns): Change
14149         set_up_by_prologue HARD_REG_SET into struct hard_reg_set_container.
14150         Call targetm.set_up_by_prologue on it.
14151         * config/rs6000/rs6000.c (rs6000_set_up_by_prologue): New function.
14152         (TARGET_SET_UP_BY_PROLOGUE): Redefine to it.
14154 2012-01-17  Nick Clifton  <nickc@redhat.com>
14156         * config/rx/rx.c (rx_can_use_simple_return): New function.
14157         * config/rx/rx-protos.h (rx_can_use_simple_return): Prototype.
14158         * config/rx/rx.md (return): Predicate on rx_can_use_simple_return.
14160 2012-01-17  Richard Guenther  <rguenther@suse.de>
14162         PR middle-end/51782
14163         * expr.c (expand_assignment): Take address-space information
14164         from the address operand of MEM_REF and TARGET_MEM_REF.
14165         (expand_expr_real_1): Likewise.
14167 2012-01-17  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
14169         * ira.c (do_reload): Make sure ira_dump_file is re-set if no
14170         reload dump is requested.
14172 2012-01-17  Aldy Hernandez  <aldyh@redhat.com>
14174         PR other/51165
14175         * trans-mem.c (requires_barrier): Call may_be_aliased.
14177 2012-01-17  Jakub Jelinek  <jakub@redhat.com>
14179         PR tree-optimization/51877
14180         * tree-ssa-tail-merge.c (gimple_equal_p): Don't return true whenever
14181         call arguments and fndecls compare equal, instead return false if they
14182         don't.  Return true only if lhs1 and lhs2 are either both NULL, or
14183         both SSA_NAMEs that are valueized the same, or they satisfy
14184         operand_equal_p.
14186 2012-01-17  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
14188         * configure.ac (gcc_cv_target_dl_iterate_phdr): Only check on
14189         Solaris 11+.
14190         * configure: Regenerate.
14192 2012-01-16  Jan Hubicka  <jh@suse.cz>
14194         PR c/12245
14195         PR c++/14179
14196         * convert.c (convert_to_integer): Use fold_convert for
14197         converting an INTEGER_CST to integer type.
14199 2012-01-16  Jason Merrill  <jason@redhat.com>
14201         PR c++/14179
14202         * vec.c (vec_gc_o_reserve_1): Use ggc_round_alloc_size.
14204 2012-01-16  Jakub Jelinek  <jakub@redhat.com>
14206         PR bootstrap/51860
14207         * config/s390/s390.c (s390_chunkify_start): Don't skip
14208         call insns followed by NOTE_INSN_CALL_ARG_LOCATION note.  Skip
14209         NOTE_INSN_VAR_LOCATION and NOTE_INSN_CALL_ARG_LOCATION notes.
14210         If insn is followed by NOTE_INSN_VAR_LOCATION or
14211         NOTE_INSN_CALL_ARG_LOCATION notes, insert jump after all those notes.
14212         Don't use location of note insns.
14214         PR tree-optimization/51865
14215         * tree-inline.c (tree_function_versioning): Call remap_decl
14216         on DECL_RESULT whenever it has VOID_TYPE_P type.
14218 2012-01-15  Richard Sandiford  <rdsandiford@googlemail.com>
14220         * config/mips/mips.c (mips16_build_call_stub): Don't use a stub
14221         for calls to locally-binding MIPS16 functions if only the return
14222         type uses float regs.
14224 2012-01-15  Chung-Lin Tang  <cltang@codesourcery.com>
14225             Richard Sandiford  <rdsandiford@googlemail.com>
14227         * config/mips/mips-protos.h (SYMBOL_FORCE_TO_MEM): Delete.
14228         (SYMBOL_32_HIGH): Likewise.
14229         (mips_output_tls_reloc_directive): Declare.
14230         * config/mips/mips.h (PIC_FUNCTION_ADDR_REGNUM): Move to mips.md.
14231         (mips_use_pcrel_pool_p, mips_lo_relocs, mips_hi_relocs): Declare.
14232         * config/mips/mips.c (mips_use_pcrel_pool_p): New variable.
14233         (mips_lo_relocs, mips_hi_relocs): Make extern.
14234         (mips16_stub_function): Move up file.
14235         (mips_classify_symbol): Remove SYMBOL_FORCE_TO_MEM handling.
14236         (mips_symbolic_constant_p): Likewise.  Remove SYMBOL_32_HIGH too.
14237         (mips_symbol_insns_1): Likewise.  Check mips_use_pcrel_pool_p.
14238         (mips_cannot_force_const_mem): Use mips_use_pcrel_pool_p instead of
14239         SYMBOL_FORCE_TO_MEM.  Only check mips_tls_symbol_ref_1 if it's false.
14240         (mips_get_tp): Add MIPS16 support.
14241         (mips_legitimize_tls_address): Remove MIPS16 sorry().
14242         Generalize DTPREL and TPREL handling.
14243         (mips_init_relocs): Initialize mips_use_pcrel_pool_p.
14244         Add MIPS16 TLS support.
14245         (mips_output_tls_reloc_directive): New function.
14246         (mips16_rewrite_pool_refs): Ignore UNSPEC_TLS_GET_TPs.
14247         * config/mips/predicates.md (symbolic_operand_with_high)
14248         (tls_reloc_operand): New predicates.
14249         (force_to_mem_operand): Use mips_use_pcrel_pool_p.
14250         * config/mips/mips.md (UNSPEC_UNSHIFTED_HIGH): New unspec.
14251         (PIC_FUNCTION_ADDR_REGNUM): Moved from mips.h.
14252         (*unshifted_high): New instruction.  Use it for MIPS16 high splitter.
14253         (consttable_tls_reloc, tls_get_tp_mips16_<mode>): New patterns.
14254         (*tls_get_tp_mips16_call_<mode>): Likewise.
14256 2012-01-15  Uros Bizjak  <ubizjak@gmail.com>
14258         PR rtl-optimization/51821
14259         * recog.c (peep2_find_free_register): Determine clobbered registers
14260         from insn pattern.
14262 2012-01-14  Denis Chertykov  <chertykov@gmail.com>
14264         PR target/50925
14265         * config/avr/avr-protos.h: Revert change of 2012-01-09.
14266         * config/avr/avr.c: Likewise.
14267         * config/avr/avr.h: Likewise.
14269 2012-01-13  Ian Lance Taylor  <iant@google.com>
14271         PR c++/50012
14272         * tree.h (TYPE_QUALS): Add cast to int.
14273         (TYPE_QUALS_NO_ADDR_SPACE): Likewise.
14275 2012-01-13  Ian Lance Taylor  <iant@google.com>
14277         * ipa-cp.c (ipa_get_indirect_edge_target): Add typecasts when
14278         comparing param_index to VEC_length result.
14280 2012-01-13  Steven Bosscher  <steven@gcc.gnu.org>
14282         * c-decl.c: Do not include tree-mudflap.h
14283         * tree-optimize.c: Likewise.
14284         * Makefile.in: Update dependencies.
14286 2012-01-13  Richard Guenther  <rguenther@suse.de>
14288         PR middle-end/8081
14289         * gimplify.c (gimplify_modify_expr_rhs): For calls with a
14290         variable-sized result always use RSO.
14292 2012-01-12  DJ Delorie  <dj@redhat.com>
14294         * cfgexpand.c (convert_debug_memory_address): Allow any valid
14295         pointer type, not just the default pointer type.
14297 2012-01-09  Richard Henderson  <rth@redhat.com>
14298             Denis Chertykov  <chertykov@gmail.com>
14300         PR target/50925
14301         * config/avr/avr-protos.h (avr_hard_regno_nregs): Declare.
14302         * config/avr/avr.c (avr_can_eliminate): Simplify.
14303         (avr_initial_elimination_offset): Likewise.
14304         (avr_prologue_setup_frame): Use hard_frame_pointer_rtx.
14305         (expand_epilogue): Likewise.
14306         (avr_legitimize_address): Gut.
14307         (avr_legitimize_reload_address): Use hard_frame_pointer_rtx.
14308         (avr_hard_regno_nregs): New.
14309         (avr_hard_regno_ok): Allow only Pmode for arg and frame_pointers.
14310         (avr_regno_mode_code_ok_for_base_b): Handle arg and frame pointers.
14311         * config/avr/avr.h (FIXED_REGISTERS): Adjust arg pointer,
14312         add soft frame pointer.
14313         (CALL_USED_REGISTERS): Likewise.
14314         (REG_CLASS_CONTENTS): Likewise.
14315         (REGISTER_NAMES): Likewise.
14316         (HARD_REGNO_NREGS): Use avr_hard_regno_nregs.
14317         (HARD_FRAME_POINTER_REGNUM): New.
14318         (FRAME_POINTER_REGNUM): Use soft frame pointer.
14319         (ELIMINABLE_REGS): Eliminate from the soft frame pointer,
14320         remove the HARD_FRAME_POINTER self-elimination.
14322 2012-01-12  Georg-Johann Lay  <avr@gjlay.de>
14324         PR target/51756
14325         * config/avr/avr.c (avr_encode_section_info): Test for absence of
14326         DECL_EXTERNAL when checking for initializers of progmem variables.
14328 2012-01-12  Ira Rosen  <irar@il.ibm.com>
14330         PR tree-optimization/51799
14331         * tree-vect-patterns.c (vect_recog_over_widening_pattern): Check
14332         that the last operation is a type demotion.
14334 2012-01-12  Uros Bizjak  <ubizjak@gmail.com>
14336         * config/i386/i386.md (*zero_extendsidi2_rex64): Correct movl template.
14337         (x86_shift<mode>_adj_1): Remove operand constraint from operand 3.
14339 2012-01-11  Jakub Jelinek  <jakub@redhat.com>
14341         PR bootstrap/51796
14342         * combine.c (distribute_notes): If i3 is a noreturn call,
14343         allow old_size to be equal to args_size and make sure the
14344         noreturn call gets REG_ARGS_SIZE note.
14345         * expr.c (fixup_args_size_notes): Put REG_ARGS_SIZE notes
14346         on noreturn calls even when the delta is 0.
14348 2012-01-11  Nathan Sidwell  <nathan@acm.org>
14350         * gcov.c (STRING_SIZE): Remove.
14351         (generate_results): Erase annotations for source files with no
14352         coverage information.
14353         (read_line): New.
14354         (output_lines): Use it.
14356 2012-01-11  Eric Botcazou  <ebotcazou@adacore.com>
14358         * gimple.h (gimplify_body): Remove first argument.
14359         * gimplify.c (copy_if_shared): Add DATA argument.  Do not create the
14360         pointer set here, instead just pass DATA to walk_tree.
14361         (unshare_body): Remove BODY_P argument and adjust.  Create the pointer
14362         set here and invoke copy_if_shared on the size trees of DECL_RESULT.
14363         (unvisit_body): Likewise, but with unmark_visited.
14364         (gimplify_body): Remove BODY_P argument and adjust.
14365         (gimplify_function_tree): Adjust call to gimplify_body.
14366         * omp-low.c (finalize_task_copyfn): Likewise.
14368 2012-01-11  Eric Botcazou  <ebotcazou@adacore.com>
14370         * tree.h (build_function_decl_skip_args): Add boolean parameter.
14371         (build_function_type_skip_args): Delete.
14372         * tree.c (build_function_type_skip_args): Make static and add
14373         SKIP_RETURN parameter.  Fix thinko in the handling of variants.
14374         (build_function_decl_skip_args): Add SKIP_RETURN parameter and
14375         pass it to build_function_type_skip_args.
14376         * cgraph.h (cgraph_function_versioning): Add boolean parameter.
14377         (tree_function_versioning): Likewise.
14378         * cgraph.c (cgraph_create_virtual_clone): Adjust call to
14379         build_function_decl_skip_args.
14380         * cgraphunit.c (cgraph_function_versioning): Add SKIP_RETURN parameter
14381         and pass it to build_function_decl_skip_args/tree_function_versioning.
14382         (cgraph_materialize_clone): Adjust call to tree_function_versioning.
14383         * ipa-inline-transform.c (save_inline_function_body): Likewise.
14384         * trans-mem.c (ipa_tm_create_version): Likewise.
14385         * tree-sra.c (modify_function): Ditto for cgraph_function_versioning.
14386         * tree-inline.c (declare_return_variable): Remove always-true test.
14387         (tree_function_versioning): Add SKIP_RETURN parameter.  If the function
14388         returns non-void and SKIP_RETURN, create a void-typed RESULT_DECL.
14389         * ipa-split.c (split_function): Skip the return value for the split
14390         part if it doesn't return.
14392 2012-01-11  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
14394         PR tree-optimization/49642
14395         * ipa-split.c (forbidden_dominators): New variable.
14396         (check_forbidden_calls): New function.
14397         (dominated_by_forbidden): Likewise.
14398         (consider_split): Check for forbidden dominators.
14399         (execute_split_functions): Initialize and free forbidden
14400         dominators info; call check_forbidden_calls.
14402 2012-01-11  Matthew Gretton-Dann  <matthew.gretton-dann@arm.com>
14404         * config/arm/arm.md (mov_notscc): Use MVN for false condition.
14406 2012-01-11  Nick Clifton  <nickc@redhat.com>
14408         * config/rx/rx.md (return): Define pattern.
14410 2012-01-11  Richard Guenther  <rguenther@suse.de>
14412         * doc/extend.texi (malloc attribute): Adjust according to
14413         implementation.
14415 2012-01-10  Aldy Hernandez  <aldyh@redhat.com>
14416             Patrick Marlier  <patrick.marlier@gmail.com>
14418         PR middle-end/51516
14419         * trans-mem.c (get_cg_data): Traverse aliases if requested.
14420         (ipa_tm_scan_calls_block): Update parameters to get_cg_data.
14421         (ipa_tm_note_irrevocable): Same.
14422         (ipa_tm_scan_irr_block): Same.
14423         (ipa_tm_decrement_clone_counts): Same.
14424         (ipa_tm_scan_irr_function): Same.
14425         (ipa_tm_create_version_alias): Same.
14426         (ipa_tm_create_version): Same.
14427         (ipa_tm_transform_calls_redirect): Same.
14428         (ipa_tm_transform_calls): Same.
14429         (ipa_tm_transform_transaction): Same.
14430         (ipa_tm_execute): Same.
14432 2012-01-10  Richard Guenther  <rguenther@suse.de>
14434         PR middle-end/51806
14435         * opts.c (common_handle_option): Handle -Werror.
14437 2012-01-10  Andreas Schwab  <schwab@linux-m68k.org>
14439         * config/m68k/sync.md ("atomic_compare_and_swap<mode>_1"): Fix
14440         operand number.
14442 2012-01-10  Jason Merrill  <jason@redhat.com>
14444         * doc/invoke.texi (C++ Dialect Options): Update -fabi-version=6
14445         information.
14447 2012-01-10  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
14449         * configure.ac (gcc_cv_as_ix86_tlsgdplt): Check if linker
14450         supports R_386_TLS_GD_PLT reloc.
14451         (gcc_cv_as_ix86_tlsldmplt): Check if linker
14452         supports R_386_TLS_LDM_PLT reloc.
14453         * configure: Regenerate.
14454         * config.in: Regenerate.
14456 2012-01-10  Georg-Johann Lay  <avr@gjlay.de>
14458         PR target/49868
14459         Extend __pgmx semantics to linearize memory.
14460         * config/avr/avr.md (mov<mode>): Use avr_xload_libgcc_p to
14461         determine if code comes inline or from libgcc.
14462         (MOVMEM_r_d:HI): Add "w" to constraint for better preference.
14463         (movmem_qi, movmem_qi): Set constraint #2 to "n".
14464         (movmem_qi_elpm, movmem_hi_elpm): Remove insns.
14465         (movmemx_qi, movmemx_hi): New insns.
14466         (xload_<mode>_libgcc): Rewrite to new insn condition.
14467         (xload_<mode>): Remove insns.
14468         * config/avr/avr.c (avr_out_xload): Rewrite: Only need to handle
14469         cases that don't satisfy avr_xload_libgcc_p().
14470         (avr_addr_space_convert): Allow converting in any direction.
14471         (avr_addr_space_subset_p): Return always true.
14472         (avr_xload_libgcc_p): Rewrite to fit new __pgmx semantics.
14473         (avr_emit_movmemhi): Ditto.
14474         (avr_out_lpm): No need to handle ADDR_SPACE_PGMX any more.
14475         (avr_out_movmem): Ditto.
14476         (AVR_SYMBOL_FLAG_PROGMEM): New macro.
14477         (AVR_SYMBOL_SET_ADDR_SPACE): New macro.
14478         (AVR_SYMBOL_GET_ADDR_SPACE): New macro.
14479         (avr_encode_section_info): Encode 'progmem' in symbol flags.
14480         (output_reload_in_const): Don't zero-extend any 24-bit symbols.
14482 2012-01-10  Richard Guenther  <rguenther@suse.de>
14484         PR tree-optimization/50913
14485         * graphite-scop-detection.c (stmt_has_simple_data_refs_p):
14486         Require data-refs to be representable by Graphite with respect
14487         to any loop nest.
14489 2012-01-10  Uros Bizjak  <ubizjak@gmail.com>
14491         * config/i386/constraints.md ("L"): Return true for 0xffffffff.
14492         * config/i386/i386.c (*anddi_1): Emit AND with 0xffffffff as MOV.
14494 2012-01-10  Tom de Vries  <tom@codesourcery.com>
14496         PR rtl-optimization/51271
14497         * dwarf2cfi.c (scan_trace): Save and restore cur_row->reg_save when
14498         handling annulled branch.
14500 2012-01-10  Richard Henderson  <rth@redhat.com>
14502         * config/arm/arm.c (arm_vectorize_vec_perm_const_ok,
14503         TARGET_VECTORIZE_VEC_PERM_CONST_OK, neon_split_vcombine, MAX_VECT_LEN,
14504         struct expand_vec_perm_d, arm_expand_vec_perm_1, arm_expand_vec_perm,
14505         arm_evpc_neon_vuzp, arm_evpc_neon_vzip, arm_evpc_neon_vrev,
14506         arm_evpc_neon_vtrn, arm_evpc_neon_vtbl, arm_expand_vec_perm_const_1,
14507         arm_expand_vec_perm_const): New.
14508         * config/arm/arm-protos.h: Update.
14509         * config/arm/neon.md (UNSPEC_VCONCAT): New.
14510         (*neon_vswp<VDQX>): New.
14511         (neon_vcombine<VDX>): Use neon_split_vcombine.
14512         (neon_vtbl1v16qi, neon_vtbl2v16qi, neon_vcombinev16qi): New.
14513         * config/arm/vec-common.md (vec_perm_const<VALL>): New.
14514         (vec_perm<VE>): New.
14516 2012-01-10  Richard Henderson  <rth@redhat.com>
14518         * config/arm/arm.c (arm_gen_compare_reg): Add scratch argument;
14519         use it if reload_completed.
14520         (arm_legitimize_sync_memory, arm_emit, arm_insn_count, arm_count,
14521         arm_output_asm_insn, arm_process_output_memory_barrier,
14522         arm_output_memory_barrier, arm_ldrex_suffix, arm_output_ldrex,
14523         arm_output_strex, arm_output_it, arm_output_op2, arm_output_op3,
14524         arm_output_sync_loop, arm_get_sync_operand, FETCH_SYNC_OPERAND,
14525         arm_process_output_sync_insn, arm_output_sync_insn,
14526         arm_sync_loop_insns, arm_call_generator, arm_expand_sync): Remove.
14527         (arm_pre_atomic_barrier, arm_post_atomic_barrier): New.
14528         (arm_emit_load_exclusive, arm_emit_store_exclusive): New.
14529         (emit_unlikely_jump): New.
14530         (arm_expand_compare_and_swap, arm_split_compare_and_swap): New.
14531         (arm_split_atomic_op): New.
14532         * config/arm/arm-protos.h: Update.
14533         * config/arm/arm.h (enum arm_sync_generator_tag): Remove.
14534         (struct arm_sync_generator): Remove.
14535         * config/arm/arm.md (VUNSPEC_SYNC_COMPARE_AND_SWAP, VUNSPEC_SYNC_LOCK,
14536         VUNSPEC_SYNC_OP, VUNSPEC_SYNC_NEW_OP, VUNSPEC_SYNC_OLD_OP): Remove.
14537         (VUNSPEC_ATOMIC_CAS, VUNSPEC_ATOMIC_XCHG, VUNSPEC_ATOMIC_OP): New.
14538         (VUNSPEC_LL, VUNSPEC_SC): New.
14539         (sync_result, sync_memory, sync_required_value, sync_new_value,
14540         sync_t1, sync_t2, sync_release_barrier, sync_op): Remove.
14541         (attr length): Don't use arm_sync_loop_insns.
14542         (cbranch_cc, cstore_cc): Update call to arm_gen_compare_reg.
14543         (movsfcc, movdfcc): Likewise.
14544         * config/arm/constraints.md (Ua): New.
14545         * config/arm/prediates.md (mem_noofs_operand): New.
14546         (sync_compare_and_swap<QHSD>, sync_lock_test_and_set<QHSD>): Remove.
14547         (sync_clobber, sync_t2_reqd): Remove.
14548         (sync_<syncop><QHSD>, sync_nand<QHSD>): Remove.
14549         (sync_new_<syncop><QHSD>, sync_new_nand<QHSD>): Remove.
14550         (sync_old_<syncop><QHSD>, sync_old_nand<QHSD>): Remove.
14551         (arm_sync_compare_and_swap<SIDI>): Remove.
14552         (arm_sync_compare_and_swap<NARROW>): Remove.
14553         (arm_sync_lock_test_and_set<SIDI>): Remove.
14554         (arm_sync_lock_test_and_set<NARROW>): Remove.
14555         (arm_sync_new_<syncop><SIDI>): Remove.
14556         (arm_sync_new_<syncop><NARROW>): Remove.
14557         (arm_sync_new_nand<SIDI>): Remove.
14558         (arm_sync_new_nand<NARROW>): Remove.
14559         (arm_sync_old_<syncop><SIDI>): Remove.
14560         (arm_sync_old_<syncop><NARROW>): Remove.
14561         (arm_sync_old_nand<SIDI>): Remove.
14562         (arm_sync_old_nand<NARROW>): Remove.
14563         (*memory_barrier): Merge arm_output_memory_barrier.
14564         (atomic_compare_and_swap<QHSD>): New.
14565         (atomic_compare_and_swap<NARROW>_1): New.
14566         (atomic_compare_and_swap<SIDI>_1): New.
14567         (atomic_exchange<QHSD>): New.
14568         (cas_cmp_operand, cas_cmp_str): New.
14569         (atomic_op_operand, atomic_op_str): New.
14570         (atomic_<syncop><QHSD>, atomic_nand<QHSD>): New.
14571         (atomic_fetch_<syncop><QHSD>, atomic_fetch_nand<QHSD>): New.
14572         (atomic_<syncop>_fetch<QHSD>, atomic_nand_fetch<QHSD>): New.
14573         (arm_load_exclusive<NARROW>): New.
14574         (arm_load_exclusivesi, arm_load_exclusivedi): New.
14575         (arm_store_exclusive<QHSD>): New.
14577 2012-01-09  Michael Meissner  <meissner@linux.vnet.ibm.com>
14579         * config/rs6000/rs6000.c (rs6000_init_hard_regno_mode_ok): Add DF
14580         reload patterns if -mvsx-scalar-memory.
14582         * config/rs6000/vsx.md (vsx_xscvspdp): Allow xscvspdp to be
14583         generated, even -mno-vsx-scalar-double was used.
14584         (vsx_xscvdpsp_scalar): Likewise.
14585         (vsx_xscvspdp_scalar2): Likewise.
14587 2012-01-09  Tom de Vries  <tom@codesourcery.com>
14588             Andrew Pinski  <apinski@cavium.com>
14590         PR debug/51471
14591         * reorg.c (fill_slots_from_thread): Don't speculate
14592         frame-related insns.
14594 2012-01-09  Richard Sandiford  <rdsandiford@googlemail.com>
14596         * sched-int.h (bb_note): Move to...
14597         * basic-block.h: ...here.
14598         * haifa-sched.c (bb_note): Move to...
14599         * cfgrtl.c: ...here.
14600         * function.c (next_block_for_reg): New function.
14601         (move_insn_for_shrink_wrap): Likewise.
14602         (prepare_shrink_wrap): Rewrite to use the above.
14604 2012-01-09  Aldy Hernandez  <aldyh@redhat.com>
14606         * gimple.c (is_gimple_non_addressable): Remove.
14607         * gimple.h: Remove is_gimple_non_addressable.
14608         * gimplify.c (gimplify_modify_expr_rhs): Use is_gimple_reg instead of
14609         is_gimple_non_addressable.
14610         * trans-mem.c (expand_assign_tm): Same.
14612 2012-01-09  Richard Guenther  <rguenther@suse.de>
14614         PR tree-optimization/51775
14615         * tree-ssa-sccvn.c (visit_use): Value-number throwing stmts.
14616         * tree-ssa-pre.c (eliminate): Properly fixup EH info.
14618 2012-01-09  Matthew Gretton-Dann  <matthew.gretton-dann@arm.com>
14620         * config/arm/arm-cores.def (cortex-a15): Use cortex_a15_tune for
14621         tuning parameters.
14622         * config/arm/arm.c (arm_cortex_a15_tune): New static variable.
14624 2012-01-09  Richard Guenther  <rguenther@suse.de>
14626         * tree-streamer-out.c (write_ts_optimization): Fix spelling.
14628 2012-01-08  Jan Hubicka  <jh@suse.cz>
14630         PR tree-optimize/51680
14631         * ipa-inline-analyss.c (evaluate_properties_for_edge): Fix condition
14632         on when known_vals needs to be computed; cleanup.
14634 2012-01-08  Jan Hubicka  <jh@suse.cz>
14636         PR tree-optimize/51694
14637         * ipa-cp.c (ipa_get_indirect_edge_target): Add bounds checks.
14639 2012-01-08  Jonathan Wakely  <jwakely.gcc@gmail.com>
14641         * doc/cpp.texi (Predefined Macros): __STRICT_ANSI__ is defined
14642         for -std=c++98 and -std=c++11 too.
14644 2012-01-08  Chung-Lin Tang  <cltang@codesourcery.com>
14646         * cfgloop.c (cancel_loop): Add free() of bbs array.
14648 2012-01-07  Jan Hubicka  <jh@suse.cz>
14650         PR tree-optimization/51600
14651         * ipa-inline-analysis.c (estimate_edge_devirt_benefit): Disable code
14652         that benefits small functions.
14654 2012-01-07  Jan Hubicka  <jh@suse.cz>
14656         * ipa-inline.c (want_inline_small_function_p): Fix formating.
14658 2012-01-07  Jan Hubicka  <jh@suse.cz>
14660         PR tree-optimization/51680
14661         * ipa-inline.c (want_inline_small_function_p): Be more lax on functions
14662         whose inlining reduce unit size.
14664 2012-01-07  Alexandre Oliva  <aoliva@redhat.com>
14666         PR bootstrap/51725
14667         * cselib.c (new_elt_loc_list): Promote addr_list to canonical node.
14668         Add canonical node to containing_mem chain after the non-canonical
14669         one, even if there weren't any locs to propagate.
14670         (remove_useless_values): Keep only canonical values.
14671         (add_mem_for_addr, cselib_lookup_mem): Canonicalize addr.
14672         (cselib_invalidate_mem): Likewise.  Ensure v is canonical, and
14673         canonicalize mem_chain elements that are not discarded.
14675 2012-01-06  Jakub Jelinek  <jakub@redhat.com>
14677         PR target/47333
14678         * cgraphunit.c (cgraph_optimize): Call output_weakrefs
14679         before emitting functions.
14681         PR gcov-profile/50127
14682         * bb-reorder.c (partition_hot_cold_basic_blocks): Call
14683         clear_aux_for_blocks.
14685 2012-01-06  Alexandre Oliva  <aoliva@redhat.com>
14687         PR debug/51746
14688         * cselib.c (cselib_hash_rtx): Hash incoming VALUEs too.
14690 2012-01-06  Arnaud Charlet  <charlet@adacore.com>
14692         * c-decl.c (ext_block): Moved up.
14693         (collect_all_refs, for_each_global_decl): Take ext_block into account.
14695 2012-01-06  Han Shen  <shenhan@google.com>
14697         Translate built-in include paths for sysroot.
14698         * Makefile.in (gcc_gxx_include_dir_add_sysroot): New.
14699         (PREPROCESSOR_DEFINES): Define GPLUSPLUS_INCLUDE_DIR_ADD_SYSROOT.
14701         * cppdefault.c (cpp_include_defaults): Replace hard coded "0" with
14702         GPLUSPLUS_INCLUDE_DIR_ADD_SYSROOT for "add_sysroot" field.
14704         * configure.ac (AC_SUBST): Add gcc_gxx_include_dir_add_sysroot to
14705         control whether sysroot should be prepended to gxx include dir.
14707         * configure: Regenerate.
14709 2012-01-06  Torvald Riegel  <triegel@redhat.com>
14711         PR rtl-optimization/51771
14712         * builtin-attrs.def (ATTR_RETURNS_TWICE, ATTR_TM_NOTHROW_RT_LIST): New.
14713         * gtm-builtins.def (BUILT_IN_TM_START): Add returns-twice attrib.
14715 2012-01-05  Eric Botcazou  <ebotcazou@adacore.com>
14717         PR tree-optimization/51315
14718         * tree-sra.c (tree_non_aligned_mem_for_access_p): New predicate.
14719         (build_accesses_from_assign): Use it instead of tree_non_aligned_mem_p.
14721 2012-01-05  Uros Bizjak  <ubizjak@gmail.com>
14723         PR target/51681
14724         * config/ia64/ia64.c (expand_vec_perm_shrp): Use correct operands
14725         for shrp pattern.  Correctly handle and fixup shift variable.
14726         Return false when shift > nelt for BYTES_BIG_ENDIAN target.
14728 2012-01-05  Jakub Jelinek  <jakub@redhat.com>
14730         PR debug/51762
14731         * calls.c (emit_call_1): For noreturn calls force a REG_ARGS_SIZE
14732         note when !ACCUMULATE_OUTGOING_ARGS.
14734 2012-01-05  Eric Botcazou  <ebotcazou@adacore.com>
14736         * tree-vrp.c (extract_range_from_binary_expr_1): Remove duplicated
14737         condition.
14738         (extract_range_from_unary_expr_1): Avoid useless computations.
14740 2012-01-05  Jakub Jelinek  <jakub@redhat.com>
14742         PR rtl-optimization/51767
14743         * cfgrtl.c (force_nonfallthru_and_redirect): Force addition
14744         of jump_block and add an extra edge for degenerated asm gotos.
14746         PR middle-end/51768
14747         * stmt.c (check_unique_operand_names): Don't ICE during error
14748         reporting if i is from labels chain.
14750         PR middle-end/44777
14751         * profile.c (branch_prob): Split bbs that have exit edge
14752         and need a fake entry edge too.
14754 2012-01-05  Jan Hubicka  <jh@suse.cz>
14756         PR middle-end/49710
14757         * cfgloopmanip.c (remove_path): Walk loop hiearchy upwards when
14758         unlooping loops.
14760 2012-01-05  Richard Guenther  <rguenther@suse.de>
14762         PR lto/50490
14763         * tree-streamer-out.c (write_ts_optimization): New function.
14764         (streamer_write_tree_body): Call it.
14765         * tree-streamer-in.c (lto_input_ts_optimization): New function.
14766         (streamer_read_tree_body): Call it.
14767         * lto-streamer-out.c (lto_is_streamable): Handle OPTIMIZATION_NODE.
14769 2012-01-05  Jakub Jelinek  <jakub@redhat.com>
14771         PR middle-end/51761
14772         * gimple.h (struct gimplify_ctx): Add in_cleanup_point_expr field.
14773         * gimplify.c (gimplify_cleanup_point_expr): Save and set
14774         in_cleanup_point_expr before gimplify_stmt call and restore it
14775         afterwards.
14776         (gimplify_target_expr): Don't add {CLOBBER} cleanup if
14777         in_cleanup_point_expr is false.
14779 2012-01-05  Richard Guenther  <rguenther@suse.de>
14781         PR middle-end/51764
14782         * common.opt (Wmudflap, fmudflap, fmudflapth, fmudflapir): Move
14783         to c.opt.
14784         * toplev.c (process_options): Reject combining mudflap and LTO.
14785         * tree-nomudflap.c (nogo): Use sorry instead of internal_error.
14787 2012-01-05  Richard Guenther  <rguenther@suse.de>
14789         PR tree-optimization/51760
14790         * tree-ssa-ccp.c (likely_value): Drop UNDEFINED to CONSTANT,
14791         not VARYING.
14792         (bit_value_unop): Handle UNDEFINED operands.
14793         (bit_value_binop): Likewise.
14795 2012-01-05  Georg-Johann Lay  <avr@gjlay.de>
14797         * config/avr/avr.c (avr_replace_prefix): Remove.
14798         (avr_asm_named_section): Use ACONCAT instead of avr_replace_prefix.
14799         (avr_asm_function_rodata_section): Ditto.
14800         (avr_asm_select_section): Ditto.
14802 2012-01-05  Marcus Shawcroft  <marcus.shawcroft@arm.com>
14804         * reload.c (find_reloads): Adjust LABEL_NUSES on REG_LABEL_OPERAND
14805         insertion.
14807 2012-01-05  Jakub Jelinek  <jakub@redhat.com>
14809         PR bootstrap/51648
14810         * tree-cfg.c (need_fake_edge_p): Return true also for noreturn
14811         calls that have any non-fake successor edges.
14813         PR debug/51746
14814         * var-tracking.c (add_stores): For COND_EXEC allow oval to be NULL.
14816 2012-01-04  Eric Botcazou  <ebotcazou@adacore.com>
14818         PR tree-optimization/51624
14819         * tree-sra.c (build_ref_for_model): When replicating a chain of
14820         COMPONENT_REFs, stop as soon as the offset would become negative.
14822 2012-01-04  Jakub Jelinek  <jakub@redhat.com>
14824         PR debug/51695
14825         * dwarf2out.c (output_loc_list): For now drop >= 64KB expressions
14826         in .debug_loc on the floor.
14828 2012-01-04  Andrew Pinski  <apinski@cavium.com>
14830         * doc/invoke.texi (-march=@var{arch}): Add octeon+ and octeon2.
14832 2012-01-04  Andrew Pinski  <apinski@cavium.com>
14833             Adam Nemet  <anemet@caviumnetworks.com>
14835         * config/mips/mips.md (size): Add SI and DI.
14836         (SIZE): New mode attribute.
14837         (U): New code attribute.
14838         * config/mips/mips-dsp.md (mips_lbux): Use gen_mips_lbux_extsi.
14839         (mips_lbux_<mode>): Delete.
14840         (mips_l<SHORT:size><u>x_ext<GPR:mode>_<P:mode>): New pattern.
14841         (mips_lhx): Use gen_mips_lhx_extsi.
14842         (mips_lhx_<mode>): Delete.
14843         (mips_lwx): Delete.
14844         (mips_l<size>x): New expand.
14845         (mips_lwx_<mode>): Delete.
14846         (mips_l<GPR:size>x_<P:mode>): New pattern.
14847         (*mips_lw<u>x_<P:mode>_ext): Likewise.
14848         * config/mips/mips-ftypes.def: Add DI f(POINTER, SI) function type.
14849         * config/mips/mips.c (mips_lx_address_p): New function.
14850         (mips_rtx_costs <case MEM>): Call mips_lx_address_p.
14851         (dsp64): New availability predicate.
14852         (mips_builtins): Add an entry for __builtin_mips_ldx.
14853         * config/mips/mips.h (ISA_HAS_LBX): New define.
14854         (ISA_HAS_LBUX): Likewise.
14855         (ISA_HAS_LHX): Likewise.
14856         (ISA_HAS_LHUX): Likewise.
14857         (ISA_HAS_LWX): Likewise.
14858         (ISA_HAS_LWUX): Likewise.
14859         (ISA_HAS_LDX): Likewise.
14860         * doc/extend.texi (__builtin_mips_ldx): Document.
14862 2012-01-04  Tristan Gingold  <gingold@adacore.com>
14864         * config/vms/xm-vms.h (HOST_LONG_FORMAT, HOST_PTR_PRINTF): Define
14865         when long pointers are used.
14866         * config.build (*-*-*vms*): Handle all OpenVMS targets.
14867         (alpha64-dec-*vms*, alpha*-dec-*vms*)
14868         (ia64-hp-*vms*): Remove.
14869         * config/vms/xm-vms64.h: Delete.
14871 2012-01-04  Aldy Hernandez  <aldyh@redhat.com>
14873         PR middle-end/51472
14874         * trans-mem.c (expand_assign_tm): Handle TM_MEMMOVE loads correctly.
14876 2012-01-04  Aldy Hernandez  <aldyh@redhat.com>
14878         * opts.c (finish_options): Remove duplicate sorry.
14880 2012-01-04  Aldy Hernandez  <aldyh@redhat.com>
14882         PR middle-end/51696
14883         * trans-mem.c (diagnose_tm_1): Display indirect calls with no name
14884         correctly.
14886 2012-01-04  Richard Guenther  <rguenther@suse.de>
14888         PR middle-end/51750
14889         * tree.c (size_low_cst): New function.
14890         * tree.h (size_low_cst): Declare.
14891         * fold-const.c (fold_comparison): Use it to extract the low
14892         part of the POINTER_PLUS_EXPR offset.
14894 2012-01-04  Georg-Johann Lay  <avr@gjlay.de>
14896         Fix clearing ZERO_REG
14897         * config/avr/avr.md (cc): Add alternative "ldi".
14898         (movqi_insn): Use it in cc attribute.
14899         * config/avr/avr.c (notice_update_cc): Handle CC_LDI.
14900         (output_reload_in_const): Use CLR to move 0 to ZERO_REG.
14901         (output_reload_insisf): Use ZERO_REG to pre-clear register.
14903 2012-01-04  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
14905         * configure: Regenerate.
14907 2012-01-04  Richard Guenther  <rguenther@suse.de>
14909         PR tree-optimization/49651
14910         * tree-ssa-structalias.c (type_can_have_subvars): New function.
14911         (var_can_have_subvars): Use it.
14912         (get_constraint_for_1): Only consider subfields if there can be any.
14914 2012-01-03  Jakub Jelinek  <jakub@redhat.com>
14916         PR bootstrap/51725
14917         * cselib.c (new_elt_loc_list): When moving locs from one cselib_val
14918         to its new canonical_cselib_val and the cselib_val was in
14919         first_containing_mem chain, but the canonical_cselib_val was not,
14920         add the latter into the chain.
14921         (cselib_invalidate_mem): Compare canonical_cselib_val of
14922         addr_list chain elt with v.
14924         PR pch/51722
14925         * dwarf2out.c (dwarf2out_start_source_file, dwarf2out_define,
14926         dwarf2out_undef): Allocate e.info using ggc_strdup instead
14927         of xstrdup.
14928         (output_macinfo_op): Don't ggc_strdup fd->filename.
14929         (optimize_macinfo_range): Allocate grp_name using XALLOCAVEC,
14930         then ggc_strdup it.  Don't free inc->info or cur->info.
14931         (output_macinfo): Don't free ref->info or file->info.
14933 2012-01-03  Ira Rosen  <irar@il.ibm.com>
14935         PR tree-optimization/51269
14936         * tree-vect-loop-manip.c (set_prologue_iterations): Make
14937         first_niters a pointer.
14938         (slpeel_tree_peel_loop_to_edge): Likewise.
14939         (vect_do_peeling_for_loop_bound): Update call to
14940         slpeel_tree_peel_loop_to_edge.
14941         (vect_gen_niters_for_prolog_loop): Don't compute wide_prolog_niters
14942         here.  Remove it from the parameters list.
14943         (vect_do_peeling_for_alignment): Update calls and compute
14944         wide_prolog_niters.
14946 2012-01-03  Richard Guenther  <rguenther@suse.de>
14948         PR tree-optimization/51070
14949         * tree-loop-distribution.c (stmt_has_scalar_dependences_outside_loop):
14950         Properly handle calls.
14952 2012-01-03  Richard Guenther  <rguenther@suse.de>
14954         PR tree-optimization/51692
14955         * tree-ssa-dce.c (eliminate_unnecessary_stmts): Do not remove
14956         the LHS of allocation stmts.
14958 2012-01-03  Olivier Hainque  <hainque@adacore.com>
14960         * system.h: Prior to #define, #undef fopen and freopen unconditionally.
14962 2012-01-03  Olivier Hainque  <hainque@adacore.com>
14964         * collect2.c (main): In AIX specific computations for vector
14965         insertions, use CONST_CAST2 to cast from char ** to const char **.
14967 2012-01-03  Richard Guenther  <rguenther@suse.de>
14969         PR debug/51650
14970         * dwarf2out.c (dwarf2out_finish): Always create a DIE for
14971         the context of a limbo DIE when it does not already exist.
14973 2012-01-03  Jakub Jelinek  <jakub@redhat.com>
14975         PR tree-optimization/51719
14976         * value-prof.c (gimple_ic): When indirect call isn't noreturn,
14977         but direct call is, clear direct call's lhs and don't add fallthrough
14978         edge from dcall_bb to join_bb and PHIs.
14980 2012-01-03  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
14982         * config/s390/s390.md ("*cmp<mode>_ccs"): Fix comment mentioning
14983         the instructions emitted by the pattern.
14984         ("*TDC_insn_<mode>"): Add comment.
14986 2012-01-03  Richard Guenther  <rguenther@suse.de>
14988         PR middle-end/51730
14989         * fold-const.c (fold_comparison): Properly canonicalize
14990         tree offset and HOST_WIDE_INT bit position.
14992 2012-01-02  Uros Bizjak  <ubizjak@gmail.com>
14994         * config/ia64/ia64.c (expand_vec_perm_broadcast): Use correct
14995         operands for extzv pattern.
14997 2012-01-02  Jakub Jelinek  <jakub@redhat.com>
14999         PR bootstrap/51725
15000         * cselib.c (add_mem_for_addr): Call canonical_cselib_val
15001         on mem_elt first.
15003 2012-01-02  Sandra Loosemore  <sandra@codesourcery.com>
15005         * doc/invoke.texi (-flto and related options): Copy-edit.
15007 2012-01-02  Richard Sandiford  <rdsandiford@googlemail.com>
15009         * config/mips/mips.md (loadgp_newabi_<mode>): Add missing earlyclobber.
15011 2012-01-02  Jakub Jelinek  <jakub@redhat.com>
15013         * config/i386/sse.md (*avx2_gatherdi<mode>_3, *avx2_gatherdi<mode>_4):
15014         New patterns.
15016 2012-01-02  Richard Sandiford  <rdsandiford@googlemail.com>
15018         * expr.h (move_by_pieces_ninsns): Declare.
15019         * expr.c (move_by_pieces_ninsns): Make external.
15020         * config/mips/mips-protos.h (mips_move_by_pieces_p): Declare.
15021         (mips_store_by_pieces_p): Likewise.
15022         * config/mips/mips.h (MOVE_BY_PIECES_P): Call mips_move_by_pieces_p.
15023         (STORE_BY_PIECES_P): Likewise mips_store_by_pieces_p.
15024         * config/mips/mips.c (mips_move_by_pieces_p): New function.
15025         (mips_store_by_pieces_p): Likewise.
15027 2012-01-02  Jakub Jelinek  <jakub@redhat.com>
15029         * passes.c (register_one_dump_file): Free full_name.
15031         * reload1.c (reload): Don't allocate reg_max_ref_width here.
15032         (calculate_elim_costs_all_insns): Free offsets_at and
15033         offsets_known_at at the end and clear the pointers.
15035 2012-01-02  Georg-Johann Lay  <avr@gjlay.de>
15037         * config/avr/avr.opt (-mbranch-cost): Fix double definition of
15038         this option introduced in r180739.
15040 2012-01-02  Georg-Johann Lay  <avr@gjlay.de>
15042         PR target/51345
15043         * config.gcc (tm_file target=avr]): Add avr/avr-multilib.h
15044         (tmake_file target=avr): Add avr/t-multilib.
15046         * config/avr/avr-c.c (avr_cpu_cpp_builtins): Use AVR_HAVE_8BIT_SP
15047         to built-in define __AVR_HAVE_8BIT_SP__, __AVR_HAVE_16BIT_SP__.
15048         * config/avr/genmultilib.awk: New file.
15049         * config/avr/t-multilib: New auto-generated file.
15050         * config/avr/multilib.h: New auto-generated file.
15051         * config/avr/t-avr (AVR_MCUS): New variable.
15052         (genopt.sh): Use it.
15053         (s-mlib): Depend on t-multilib.
15054         (t-multilib, multilib.h): New dependencies.
15055         (s-avr-mlib): New rule to build t-multilib, multilib.h from AVR_MCUS.
15056         (MULTILIB_OPTIONS): Remove.
15057         (MULTILIB_MATCHES): Remove.
15058         (MULTILIB_DIRNAMES): Remove.
15059         (MULTILIB_EXCEPTIONS): Remove:
15060         * config/avr/genopt.sh: Don't use hard coded file name;
15061         pass AVR_MCUS from t-avr instead.
15063 2012-01-02  Georg-Johann Lay  <avr@gjlay.de>
15065         * config/avr/avr.c (avr_out_ashrpsi3): Fix "case 31" to "case 23".
15067 2012-01-02  Georg-Johann Lay  <avr@gjlay.de>
15069         Implement light-weight DImode support.
15070         * config/avr/avr-dimode.md: New file.
15071         * config/avr/avr.md: Include it.
15072         (adjust_len): Add plus64, compare64.
15073         (HIDI): Remove code iterator.
15074         (code_stdname): New code attribute.
15075         (rotx, rotsmode): Remove DI.
15076         (rotl<mode>3, *rotw<mode>, *rotb<mode>): Use HISI instead of HIDI
15077         as code iterator.
15078         * config/avr/avr-protos.h (avr_have_dimode): New.
15079         (avr_out_plus64, avr_out_compare64): New.
15080         * config/avr/avr.c (avr_out_compare): Handle DImode.
15081         (avr_have_dimode): New variable definition and initialization.
15082         (avr_out_compare64, avr_out_plus64): New functions.
15083         (avr_out_plus_1): Use simplify_unary_operation to negate xval.
15084         (adjust_insn_length): Handle ADJUST_LEN_COMPARE64, ADJUST_LEN_PLUS64.
15085         (avr_compare_pattern): Skip DImode comparisons.
15087 2012-01-02  Revital Eres  <revital.eres@linaro.org>
15089         * ddg.c (def_has_ccmode_p): New function.
15090         (add_cross_iteration_register_deps,
15091         create_ddg_dep_from_intra_loop_link): Call it.
15093 2012-01-02  Richard Guenther  <rguenther@suse.de>
15095         PR other/51679
15096         * invoke.texi (fassociative-math): Remove spurious paranthesis.
15098 2012-01-01  Jakub Jelinek  <jakub@redhat.com>
15100         * gcc.c (process_command): Update copyright notice dates.
15101         * gcov.c (print_version): Likewise.
15102         * gcov-dump.c (print_version): Likewise.
15103         * mips-tfile.c (main): Likewise.
15104         * mips-tdump.c (main): Likewise.
15106 2012-01-01  Ira Rosen  <irar@il.ibm.com>
15108         PR tree-optimization/51704
15109         * tree-vect-slp.c (vect_detect_hybrid_slp_stmts): Check that
15110         a use is inside the basic block or loop before accessing its vect info.
15112 2012-01-01  Jan Hubicka  <jhjh@suse.cz>
15114         PR rtl-optimization/51069
15115         * cfgloopmanip.c (remove_path): Removing path making irreducible
15116         region unconditional makes BB part of the region.
15118 2012-01-01  Jakub Jelinek  <jakub@redhat.com>
15120         PR tree-optimization/51683
15121         * tree-ssa-propagate.c (substitute_and_fold): Don't optimize away
15122         calls with side-effects.
15123         * tree-ssa-ccp.c (ccp_fold_stmt): Likewise.
15125 Copyright (C) 2012 Free Software Foundation, Inc.
15127 Copying and distribution of this file, with or without modification,
15128 are permitted in any medium without royalty provided the copyright
15129 notice and this notice are preserved.