f0f0bfaa3c2e2dc6994783f30d5bb8c322390754
[gcc.git] / gcc / ChangeLog
1 2012-07-08 Steven Bosscher <steven@gcc.gnu.org>
2
3 * basic-block.h: Re-group most prototypes per file.
4 (struct edge_list): Remove num_blocks field.
5 (dump_bb_info): Adjust prototypes.
6 (dump_reg_info): Move prototype to regs.h.
7 * function.h: Do not include tree.h.
8 Include vec.h, vecir.h, input.h and machmode.h to compensate.
9 (function_name): New prototype.
10 * gimple.h: Include tree.h to compensate for basic-block.h change.
11 * langhooks.h: Note that tree.h is only necessary for enum tree_code.
12 * regs.h (dump_reg_info): Prototype here.
13 * regset.h: Adjust file reference in comment.
14 (debug_regset): Remove prototype.
15 * rtl.h: Include flags.h for flag_var_tracking_assignments.
16 (MAY_HAVE_DEBUG_INSNS): Define as flag_var_tracking_assignments
17 instead of no-longer-available tree.h's MAY_HAVE_DEBUG_STMTS.
18 (dump_reg_info, dump_flow_info): Remove prototypes.
19 * bb-reorder.c (set_edge_can_fallthru_flag): Move from cfganal.c
20 to here, the only user. Make static.
21 (reorder_basic_blocks): Call dump_reg_info before dump_flow_info.
22 * cfg.c: Do not include tm.h, tree.h, rtl.h, hard-reg-set.h, regs.h,
23 flags.h, function.h, except.h, diagnostic-core.h, tm_p.h, timevar.h,
24 tree-pass.h, cfgloop.h, and tree-flow.h.
25 Include basic-block.h, the first header I'd expect to be included.
26 (reg_obstack): Move to df-core.c.
27 (free_edge): Remove bogus ATTRIBUTE_UNUSED.
28 (remove_edge_raw): Do not call tree-ssa's redirect_edge_var_map_clear.
29 (redirect_edge_succ_nodup): Move to cfghooks.c.
30 (dump_regset, debug_regset): Move to df-core.c.
31 (dump_bb_info): Move to cfgrtl.c.
32 (dump_reg_info): Move to regstat.c.
33 (dump_flow_info): Move to cfgrtl.c.
34 (debug_flow_info): Likewise.
35 (dump_edge_info): Do not look at cfun, a CFG without cfun is nonsense.
36 * cfganal.c: Do not include tm.h, rtl.h, obstack.h, hard-reg-set.h,
37 insn-config.h, recog.h, diagnostic-core.h, tm_p.h, and cfgloop.h.
38 (flow_active_insn_p, forwarder_block_p, can_fallthru,
39 could_fall_through): Move to cfgrtl.c.
40 (set_edge_can_fallthru_flag): Moved to bb-reorder.c.
41 (create_edge_list): Do not set edge_list's removed num_blocks.
42 (print_edge_list): Look at n_basic_blocks instead of num_blocks.
43 (flow_nodes_print): Remove.
44 (flow_edge_list_print): Remove.
45 (inverted_post_order_compute): Use FOR_ALL_BB.
46 *cfgrtl.c (dump_flow_info): Moved from cfg.c.
47 Do not call dump_reg_info.
48 (debug_flow_info): Moved from cfg.c
49 (dump_bb_info): Moved from cfg.c. Take 'verbose' argument
50 to avoid looking at TDF_* flags from tree-pass.h.
51 (flow_active_insn_p, forwarder_block_p, can_fallthru,
52 could_fall_through): Moved from cfganal.c.
53 (print_rtl_with_bb): Adjust dump_bb_info calls.
54 * cfghooks.c (redirect_edge_succ_nodup): Moved from cfg.c.
55 (remove_edge): Call redirect_edge_var_map_clear if IR_GIMPLE.
56 (cfgcleanup.c): Look at MAY_HAVE_DEBUG_INSNS, not MAY_HAVE_DEBUG_STMTS.
57 * cselib.c: Include tree.h with a FIXME.
58 * df-core.c (reg_obstack): Moved from cfg.c.
59 (dump_regset): Likewise.
60 (debug_regset): Likewise. Make a DEBUG_FUNCTION.
61 * final.c (compute_alignments): Call dump_reg_info before
62 dump_flow_info.
63 * function.c (function_name): New function.
64 (current_function_name): Use it.
65 * ifcvt.c (rest_of_handle_if_conversion): Call dump_reg_info before
66 dump_flow_info.
67 * ira-conflicts.c: Include tree.h with a note.
68 * regstat.c (dump_reg_info): Moved here from cfg.c.
69 * loop-init.c: Include regs.h instead of hard-reg-set.h.
70 (rtl_loop_init): Call dump_reg_info before dump_flow_info.
71 (rtl_loop_done): Likewise.
72 * mcf.c: Include tree.h before langhooks.h.
73 * predict.c (maybe_hot_count_p): Assert we have cfun.
74 (probably_never_executed_bb_p): Likewise.
75 * profile.c (compute_branch_probabilities): Use gimple_dump_cfg
76 instead of dump_flow_info.
77 * sched-deps.c: Include tree.h with a FIXME.
78 (call_may_noreturn_p): Add FIXME note why this function has to
79 look at function decls instead of function decl flags.
80 * sched-vis.c: Include tree.h with a FIXME.
81 (print_rtl_slim): Adjust dump_bb_info uses.
82 * statistics.c (statistics_fini_pass_2): Use current_function_name
83 to avoid including tree.h.
84 (statistics_counter_event): Use function_name for the same reason.
85 (statistics_histogram_event): Likewise.
86 * tracer.c (tracer): Remove bogus gcc_assert. Use brief_dump_cfg
87 instead of dump_flow_info.
88 * var-tracking.c (variable_tracking_main_1): Call dump_reg_info
89 before dump_flow_info.
90 * doc/cfg.texi: Update CFG documentation.
91 * Makefile.in (RTL_H): Depend on FLAGS_H.
92 (GIMPLE_H): Depend on TREE_H.
93 (FUNCTION_H): Depend on VEC_H, vecir.h, INPUT_H and MACHMODE_H,
94 but no longer on TREE_H.
95 (C_COMMON_H): Depend on TREE_H.
96 (cselib.o, cse.o, cfganal.o, loop-init.o, ira-conflicts.o,
97 sched-deps.o, sched-vis.o): Fixup dependencies.
98
99 2012-07-08 Steven Bosscher <steven@gcc.gnu.org>
100
101 * alias.h: Do not include coretypes.h in header files.
102 * cppbuiltin.h: Likewise.
103 * double-int.h: Likewise.
104 * gimple-fold.h: Likewise.
105 * flags.h: Likewise.
106 * tree-ssa-alias.h: Likewise.
107 * gengtype.h (obstack_chunk_alloc, obstack_chunk_free,
108 OBSTACK_CHUNK_SIZE): Define here to avoid dependency on coretypes.h.
109 * Makefile.in (RTL_BASE_H): Depend on coretypes.h.
110 (TREE_H): Likewise.
111 (ALIAS_H): Do not depend on coretypes.h.
112 (FLAGS_H): Likewise.
113 (realmpfr.o): Depend on coretypes.h.
114
115 2012-07-08 Steven Bosscher <steven@gcc.gnu.org>
116
117 * Makefile.in (gengtype-lex.o, gengtype-parse.o, gengtype-state.o,
118 gengtype.o): Add -DGENERATOR_FILE manually for host gengtype objects.
119
120 2012-07-07 Richard Earnshaw <rearnsha@arm.com>
121
122 * arm.h (TARGET_CPU_CPP_BUILTINS): Remove Maverick support.
123 (TARGET_FPA): Delete definition.
124 (TARGET_MAVERICK): Likewise.
125 (TARGET_FPA_EMU2): Likewise.
126 (arm_fp_model): Remove FPA and Maverick models.
127 (arm_arch_cirrus): Delete declaration.
128 (FLOAT_WORDS_BIG_ENDIAN): Delete definition.
129 (FIXED_REGISTERS): Remove FPA and Maverick support. Reorganize.
130 (CALL_USED_REGISTERS): Likewise.
131 (FIRST_FPA_REGNUM, LAST_FPA_REGNUM): Delete definition.
132 (FIRST_VFP_REGNUM): Renumbered.
133 (D7_VFP_REGNUM): Chain definition.
134 (LAST_LO_VFP_REGNUM): Likewise.
135 (FIRST_HI_VFP_REGNUM): Likewise.
136 (LAST_HI_VFP_REGNUM): Likewise.
137 (FIRST_IWMMXT_GR_REGNUM): Likewise.
138 (LAST_IWMMXT_GR_REGNUM): Likewise.
139 (FIRST_IWMMXT_REGNUM): Likewise.
140 (LAST_IWMMXT_REGNUM): Likewise.
141 (FRAME_POINTER_REGNUM): Renumbered.
142 (ARG_POINTER_REGNUM): Renumbered.
143 (FIRST_PSEUDO_REGISTER): Remove FPA and Maverick registers.
144 (FIRST_CIRRUS_FP_REGNUM, LAST_CIRRUS_FP_REGNUM): Delete definitions.
145 (HARD_REGNO_REGNUM): Remove FPA support.
146 (REG_ALLOC_ORDER): Remove FPA and Maverick registers. Reorganize.
147 (reg_class): Likewise.
148 (REG_CLASS_NAMES): Likewise.
149 (REG_CLASS_CONTENTS): Likewise.
150 (CANNOT_CHANGE_MODE_CLASS): Never true. Update comment.
151 (SECONDARY_INPUT_RELOAD_CLASS): Remove Maverick support.
152 (CLASS_MAX_NREGS): Remove FPA and Maverick support.
153 * aout.h (REGISTER_NAMES): Remove FPA and Maverick registers.
154 Reorganize. Use AAPCS preferred names.
155 (ADDITIONAL_REGISTER_NAMES): Remove aliases for Maverick. Update
156 comments.
157 (OVERLAPPING_REGISTER_NAMES): Update register numbering.
158 * arm.c (FL_CIRRUS): Delete definition.
159 (arm_arch_cirrus): Delete variable.
160 (arm_float_words_big_endian): Delete function.
161 (cirrus_memory_offset): Delete function.
162 (output_mov_long_double_fpa_from_arm): Delete function.
163 (output_mov_long_double_arm_from_fpa): Delete function.
164 (output_mov_double_fpa_from_arm): Delete function.
165 (output_mov_double_arm_from_fpa): Delete function.
166 (emit_sfm): Delete function.
167 (maybe_get_arm_condition_code): Update comment.
168 (arm_file_start): Always use softvfp for softfloat systems.
169 (thumb_core_reg_alloc_order): Adjust for updated register allocation.
170 (arm_option_override): Remove FPA and Maverick support. Always
171 default to vfp as the fallback FPU format.
172 (use_return_insn): Remove FPA support.
173 (arm_get_frame_offsets): Likewise.
174 (arm_save_coproc_regs): Likewise.
175 (arm_canonicalize_comparison): Remove Maverick support.
176 (arm_select_cc_mode): Likewise.
177 (arm_gen_compare_reg): Likewise.
178 (arm_print_operand): Likewise.
179 (arm_libcall_value_1): Remove FPA and Maverick support.
180 (arm_function_value_regno_p): Likewise.
181 (arm_apply_result_size): Likewise.
182 (arm_legitimate_index_p): Likewise.
183 (thumb2_legitimate_index_p): Likewise.
184 (legitimize_reload_address): Likewise.
185 (arm_register_move_cost): Likewise.
186 (arm_hard_regno_mode_ok): Likewise.
187 (arm_regno_class): Likewise.
188 (arm_dbx_register_number): Likewise.
189 (arm_emit_unwind_sequence): Likewise.
190 (arm_conditional_register_usage): Likewise.
191 * arm-protos.h (neg_const_double_rtx_ok_for_fpa): Remove declaration.
192 (cirrus_memory_offset): Likewise.
193 (output_move_long_double_fpa_from_arm): Likewise.
194 (output_move_long_double_arm_from_fpa): Likewise.
195 (output_move_double_fpa_from_arm): Likewise.
196 (output_move_double_arm_from_fpa): Likewise.
197 (arm_float_words_big_endian): Likewise.
198 * arm.md (CC_REGNUM): Renumbered.
199 (VFPCC_REGNUM): Moved here. Renumbered.
200 (FPA_F0_REGNUM, FPA_F7_REGNUM): Delete.
201 (attr fpu): Remove FPA and Maverick support.
202 * vfp.md (VFPCC_REGNUM): Delete. Moved to arm.md.
203 * arm-cores.def (ep9312): Remove Maverick support.
204 * arm-arches.def (ep9312): Delete architecture.
205 * arm-tables.opt: Regenerated.
206
207 * arm/linux-elf.h (FPUTYPE_DEFAULT): Set to vfp.
208
209 2012-07-07 Steven Bosscher <steven@gcc.gnu.org>
210
211 PR tree-optimization/53881
212 * tree-switch-conversion.c (emit_case_bit_tests): Do not rely on
213 comparing labels to establish uniqueness of a switch case target,
214 use the CFG instead.
215
216 2012-07-07 Ulrich Weigand <ulrich.weigand@linaro.org>
217
218 * combine.c (force_to_mode) [LSHIFTRT]: Avoid undefined behaviour
219 due to negative shift amount.
220
221 2012-07-07 Hans-Peter Nilsson <hp@axis.com>
222
223 Fix configure test for "stack protector support in target C library".
224 * configure.ac (test_prefix, test_exec_prefix): Move setting from
225 inside sysroot handling to before and outside it.
226 * configure: Regenerate.
227
228 2012-07-06 Kai Tietz <ktietz@redhat.com>
229
230 PR bootstrap/52947
231 * config/i386/mingw32.h (NATIVE_SYSTEM_HEADER_DIR): Define it always
232 as "/mingw/include".
233
234 2012-07-06 Alexandre Oliva <aoliva@redhat.com>
235
236 PR debug/53820
237 * var-tracking.c (vt_add_function_parameter): Convert
238 internal_arg_pointer into arg_pointer-based address even
239 without DRAP.
240
241 2012-07-06 Alexandre Oilva <aoliva@redhat.com>
242
243 PR rtl-optimization/53827
244 PR debug/53671
245 PR debug/49888
246 * alias.c (memrefs_conflict_p): Adjust offset and size by the
247 same amount for alignment ANDs.
248
249 2012-07-06 Tom de Vries <tom@codesourcery.com>
250
251 PR tree-optimization/51879
252 * tree-ssa-sccvn.c (copy_reference_ops_from_call)
253 (visit_reference_op_call): Handle case that lhs is not an SSA_NAME.
254 (visit_use): Also call visit_reference_op_call for calls with a vdef.
255
256 2012-07-06 Tom de Vries <tom@codesourcery.com>
257
258 PR tree-optimization/52009
259 * tree-ssa-tail-merge.c (gimple_equal_p): For GIMPLE_ASSIGN, compare
260 value numbers of gimple_vdef.
261 * tree-ssa-sccvn.h (vn_reference_insert): Add vdef parameter to
262 prototype.
263 * tree-ssa-sccvn.c (copy_reference_ops_from_ref): Handle MODIFY_EXPR.
264 (vn_reference_insert): Add and handle vdef parameter.
265 (visit_reference_op_load): Add argument to vn_reference_insert call.
266 (visit_reference_op_store): Find value number of vdef of store. Insert
267 value number of vdef of store.
268
269 2012-07-06 Uros Bizjak <ubizjak@gmail.com>
270
271 * config/i386/i386.md (simple lea to add peephole): Also transform
272 RTXes where second PLUS operand matches output.
273
274 2012-07-06 Uros Bizjak <ubizjak@gmail.com>
275
276 * config/i386/i386.c (construct_plt_address): Make static.
277 * config/i386/i386-protos.h (construct_plt_address): Remove.
278
279 2012-07-06 Nick Clifton <nickc@redhat.com>
280
281 * config/mn10300/mn10300.c (mn10300_encode_section_info): Call
282 default_encode_section_info.
283
284 2012-07-06 Uros Bizjak <ubizjak@gmail.com>
285
286 PR target/53853
287 * config/i386/i386.c (x86_output_mi_thunk): For CM_LARGE_PIC model,
288 emit PIC sequence for fnaddr symbol reference in advance.
289
290 2012-07-06 Eric Botcazou <ebotcazou@adacore.com>
291
292 Revert
293 2012-06-14 Eric Botcazou <ebotcazou@adacore.com>
294
295 * dwarf2out.c (function_possibly_abstracted_p): New static function.
296 (gen_subprogram_die): Use it function_possibly_abstracted_p in lieu of
297 cgraph_function_possibly_inlined_p.
298 (gen_inlined_subroutine_die): Return if the origin is to be ignored.
299 (process_scope_var): Do not emit concrete instances of abstracted
300 nested functions from here.
301 (gen_decl_die): Emit the abstract instance if the function is possibly
302 abstracted and not only possibly inlined.
303 (dwarf2out_finish): Find the first non-abstract parent instance and
304 attach concrete instances on the limbo list to it.
305
306 2012-07-05 Ramana Radhakrishnan <ramana.radhakrishnan@linaro.org>
307 Julian Brown <julian@codesourcery.com>
308
309 PR target/48941
310 PR target/51980
311 * config/arm/neon-gen.ml (return_by_ptr): Delete.
312 (print_function): Handle empty strings.
313 (return): Delete use of return_by_ptr.
314 (mask_shape_for_shuffle): New function.
315 (mask_elems): Likewise.
316 (shuffle_fn): Likewise.
317 (params): Simplify and remove use of return_by_ptr.
318 (get_shuffle): New function.
319 (print_variant): Update.
320 * config/arm/neon.ml (rev_elems): New function.
321 (permute_range): Likewise.
322 (zip_range): Likewise.
323 (uzip_range): Likewise.
324 (trn_range): Likewise.
325 (zip_elems): Likewise.
326 (uzip_elems): Likewise.
327 (trn_elems): Likewise.
328 (features): New enumeration Use_shuffle. Delete ReturnPtr.
329 (pf_su_8_16): New.
330 (suf_32): New.
331 (ops): Update entries for Vrev64, Vrev32, Vrev16, Vtr, Vzip, Vuzp.
332 * config/arm/arm_neon.h: Regenerate.
333
334 2012-07-05 Richard Guenther <rguenther@suse.de>
335
336 * tree-pretty-print.c (dump_generic_node): Properly test
337 the result of exact_log2.
338
339 2012-07-05 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
340
341 * config/s390/s390-protos.h (s390_expand_movmem)
342 (s390_expand_cmpmem): Add return value.
343 * config/s390/s390.c (s390_expand_movmem, s390_expand_cmpmem):
344 Return FALSE to use the library function in some cases.
345 * config/s390/s390.md (movmem, cmpmem): Evaluate return value of C
346 helper functions.
347
348 2012-07-05 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
349
350 * config.gcc: Enable ifunc attribute by default on s390 and s390x.
351
352 2012-07-05 Steven Bosscher <steven@gcc.gnu.org>
353
354 * expr.c (try_casesi): Remove bogus ATTRIBUTE_UNUSED markers.
355 * stmt.c (dump_case_nodes): New.
356 (expand_case): Split out code generation parts into new functions.
357 (expand_switch_as_decision_tree_p): Split out from expand_case.
358 (emit_case_decision_tree): Likewise.
359 (emit_case_dispatch_table): Likewise.
360
361 2012-07-05 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
362
363 * config/arm/iterators.md (SDF): New mode iterator.
364 (V_if_elem): Add support for SF and DF modes.
365 (V_reg): Likewise.
366 (F_constraint): New mode iterator attribute.
367 (F_fma_type): Likewise.
368 config/arm/vfp.md (fma<SDF:mode>4): New pattern.
369 (*fmsub<SDF:mode>4): Likewise.
370 (*fmnsub<SDF:mode>4): Likewise.
371 (*fmnadd<SDF:mode>4): Likewise.
372
373 2012-07-04 Uros Bizjak <ubizjak@gmail.com>
374
375 * expmed.c (expand_mult): Initialize coeff and is_neg.
376
377 2012-07-04 Oleg Endo <olegendo@gcc.gnu.org>
378
379 * config/sh/predicates.md (zero_extend_operand): New predicate.
380 * config/sh/sh.md (zero_extendhisi2): Simplify by using new
381 zero_extend_operand predicate.
382 (zero_extendqisi2): Likewise.
383
384 2012-07-04 Uros Bizjak <ubizjak@gmail.com>
385
386 PR middle-end/53321
387 * ipa.c (symtab_remove_unreachable_nodes): Partially revert r187375
388 to not call cgraph_propagate_frequency if something was changed.
389
390 2012-07-04 Richard Guenther <rguenther@suse.de>
391
392 PR middle-end/53433
393 * gimple-fold.c (get_base_constructor): Do not return an
394 error_mark_node DECL_INITIAL.
395
396 2012-07-04 Richard Guenther <rguenther@suse.de>
397
398 PR tree-optimization/53844
399 * tree-ssa-dse.c (dse_possible_dead_store_p): Properly handle
400 the loop virtual PHI.
401
402 2012-07-04 Richard Guenther <rguenther@suse.de>
403
404 PR tree-optimization/53849
405 * tree-cfg.c (move_stmt_op): Only call add_referenced_var
406 for duplicated locals. Use add_referenced_var_1 to avoid
407 pushing/popping cfun.
408
409 2012-07-04 Kai Tietz <ktietz@redhat.com>
410
411 * config/i386/winnt.c (i386_pe_reloc_rw_mask): New function.
412 * config/i386/i386-protos.h (i386_pe_reloc_rw_mask): Add
413 prototype.
414 * config/i386/cygming.h (TARGET_ASM_RELOC_RW_MASK): Define
415 as i386_pe_reloc_rw_mask.
416
417 2012-07-04 Richard Guenther <rguenther@suse.de>
418
419 * tree.c (find_decls_types_r): Handle TYPE_CONTEXT the same
420 as in free_lang_data_in_type.
421
422 2012-07-04 Tobias Grosser <tobias@grosser.es>
423 Michael Matz <matz@suse.de>
424
425 * Makefile.in (OBJS): Add graphite-optimize-isl.o.
426 (graphite-optimize-isl.o): Add dependencies.
427 * common.opt (floop-nest-optimize): New flag.
428 * doc/invoke.texi (floop-nest-optimize): Document.
429 * graphite-dependences.c (compute_deps): Export.
430 * graphite-poly.h (compute_deps): Declare.
431 * graphite-optimize-isl.c: New file.
432 * graphite-poly.c (apply_poly_transforms): Run the loop
433 nest optimizer.
434 * tree-ssa-loop.c (gate_graphite_transforms): Enable graphite
435 if -floop-nest-optimize is enabled.
436
437 2012-07-03 Oleg Endo <olegendo@gcc.gnu.org>
438
439 * config/sh/predicates.md (logical_and_operand): New predicate.
440 * config/sh/constraints.md (Jmb, Jmw): New constraints.
441 * config/sh/sh.md (andsi3): Move expander above insns. Add handling
442 of 0xFFFF constant. Use logical_and_operand predicate and
443 satisfies_constraint_Jmb, satisfies_constraint_Jmw.
444 (*andsi3_compact): Make it an insn_and_split. Use
445 logical_and_operand predicate. Add Jmb,Jmw alternatives.
446
447 2012-07-03 Jason Merrill <jason@redhat.com>
448
449 PR c++/53826
450 * tree.c (build_zero_cst): Handle NULLPTR_TYPE.
451
452 2012-07-03 Nick Clifton <nickc@redhat.com>
453
454 * config/mep/mep.c (mep_reorg_regmove): Use
455 next_nonnote_non_debug_insn to advance to the next insn. Do not
456 expect delete_insn to return an rtx.
457
458 2012-07-03 Richard Guenther <rguenther@suse.de>
459
460 * doc/install.texi (CLooG): Clarify how CLooG needs to be
461 configured and that it needs to be built against ISL 0.10.
462
463 2012-07-03 Uros Bizjak <ubizjak@gmail.com>
464
465 * config/i386/i386.c (ix86_option_override_internal): Fix wrong
466 code model string in the error message.
467
468 2012-07-03 Uros Bizjak <ubizjak@gmail.com>
469
470 PR target/53811
471 * config/i386/i386.c (x86_output_mi_thunk): Check if fnaddr satisfies
472 sibcall_insn_operand. Move it to a temporary register if not.
473
474 2012-07-03 Andreas Schwab <schwab@linux-m68k.org>
475
476 PR target/28896
477 * config/m68k/m68k.c (m68k_option_override): Reset stack_limit_rtx
478 if !TARGET_68020.
479
480 2012-07-03 Uros Bizjak <ubizjak@gmail.com>
481
482 * config/i386/xmmintrin.h (_mm_sfence): Use __builtin_ia32_pause.
483
484 2012-07-03 Roland McGrath <mcgrathr@google.com>
485
486 * configure.ac (HAVE_AS_IX86_REP_LOCK_PREFIX): Also require that the
487 assembler accept 'rep bsf ...', 'rep bsr ...', 'rep ret' and 'rep nop'.
488 * configure: Regenerated.
489 * config/i386/i386.md (simple_return_internal_long): Use %;
490 (ctz<mode>2): Likewise.
491 (*pause): Likewise.
492
493 2012-07-02 Oleg Endo <olegendo@gcc.gnu.org>
494
495 PR target/51244
496 * config/sh/predicates.md (t_reg_operand, negt_reg_operand): New
497 predicates.
498 * config/sh/sh-protos.h (get_t_reg_rtx): New prototype.
499 * config/sh/sh.c (get_t_reg_rtx): New function. Use it when invoking
500 gen_branch_true and gen_branch_false.
501 * config/sh/sh.md: Use get_t_reg_rtx when invoking gen_branch_true and
502 gen_branch_false.
503 (branch_true, branch_false): Use t_reg_operand predicate.
504 (*branch_true, *branch_false): Delete.
505 (movt): Use t_reg_operand predicate.
506 (*negnegt): Use negt_reg_operand predicate and fold little and big
507 endian variants.
508 (*movtt): Use t_reg_operand and fold little and big endian variants.
509 (*movt_qi): Delete.
510
511 2012-07-02 Steven Bosscher <steven@gcc.gnu.org>
512
513 * stmt.c (emit_case_bit_tests): Remove.
514 (expand_case): Remove expand_switch_using_bit_tests_p code.
515 * tree-switch-conversion.c (hoist_edge_and_branch_if_true): New.
516 (MAX_CASE_BIT_TESTS): Moved from stmt.c to here.
517 (lshift_cheap_p): Likewise.
518 (expand_switch_using_bit_tests_p): Likewise.
519 (struct case_bit_test): Likewise.
520 (case_bit_test_cmp): Likewise.
521 (emit_case_bit_tests): New implementation for GIMPLE.
522 (gen_inbound_check): Do not release post-dominator info here.
523 (process_switch): Reorder code. Expand as bit tests if it
524 looks like a win.
525 (do_switchconv): Release post-dominator info here if something changed.
526 (struct gimple_opt_pass): Verify more.
527 * tree.h (expand_switch_using_bit_tests_p): Remove prototype.
528
529 2012-07-02 Martin Jambor <mjambor@suse.cz>
530
531 PR middle-end/38474
532 * ipa-prop.c (compute_known_type_jump_func): Put BINFO check before a
533 dynamic type change check.
534
535 2012-07-02 Richard Guenther <rguenther@suse.de>
536 Michael Matz <matz@suse.de>
537 Tobias Grosser <tobias@grosser.es>
538 Sebastian Pop <sebpop@gmail.com>
539
540 * Makefile.in: Remove PPL flags in favor of ISL ones.
541 (BACKENDLIBS): Remove PPL libs.
542 (INCLUDES): Remove PPL includes in favor of ISL ones.
543 (graphite-clast-to-gimple.o): Remove graphite-dependences.h and
544 graphite-cloog-compat.h dependencies.
545 (graphite-dependences.o): Likewise.
546 (graphite-poly.o): Likewise.
547 * configure.ac: Declare ISL vars instead of PPL ones.
548 * configure: Regenerated.
549 * doc/install.texi: Replace PPL requirement documentation with ISL one.
550 * graphite-blocking.c: Remove PPL code, add ISL equivalent.
551 * graphite-clast-to-gimple.c: Likewise.
552 * graphite-dependences.c: Likewise.
553 * graphite-interchange.c: Likewise.
554 * graphite-poly.h: Likewise.
555 * graphite-poly.c: Likewise.
556 * graphite-sese-to-poly.c: Likewise.
557 * graphite.c: Likewise.
558 * graphite-scop-detection.c: Re-arrange includes.
559 * graphite-cloog-util.c: Remove.
560 * graphite-cloog-util.h: Likewise.
561 * graphite-ppl.h: Likewise.
562 * graphite-ppl.c: Likewise.
563 * graphite-dependences.h: Likewise.
564
565 2012-07-02 Richard Guenther <rguenther@suse.de>
566
567 Merge from graphite branch
568 2011-07-21 Tobias Grosser <tobias@grosser.es>
569
570 * Makefile.in (graphite-clast-to-gimple.o, graphite-cloog-util.o):
571 Remove graphite-cloog-util.h.
572 * graphite-clast-to-gimple.c (gcc_type_for_iv_of_clast_loop,
573 build_iv_mapping, translate_clast_user, translate_clast,
574 free_scattering, initialize_cloog_names, build_cloog_prog,
575 create_params_index): Do not use old compatibility functions.
576 (clast_name_to_index, set_cloog_options): Remove code for legacy cloog.
577 * graphite-cloog-util.c (openscop_print_cloog_matrix): Do not use old
578 compatibility functions.
579 (new_Cloog_Scattering_from_ppl_Polyhedron): Remove code for legacy
580 cloog.
581 * graphite-cloog-util.h: Remove include of graphite-cloog-util.h.
582 * graphite.c (graphite.c): Do not call outdated cloog_initialize() and
583 cloog_finalize().
584 * graphite-cloog-compat.h: Remove.
585
586 2011-08-09 Tobias Grosser <tobias@grosser.es>
587
588 * graphite-clast-to-gimple.c (new_clast_name_index): Store a copy
589 of the string, no just a reference.
590 (clast_name_index): Add a new field, that specifies if we need to free
591 the name.
592 (free_clast_name_index): If necessary, free the name string.
593 (clast_name_index_elt_info): Calculate the hash based on the string
594 content, not the memory location it is stored in.
595 (clast_name_to_level): Specify that we do not need to free the name.
596 (clast_name_to_index): Dito.
597 (clast_name_to_lb_ub): Dito.
598 (eq_clast_name_indexes): Compare the strings, not their base pointers.
599 (free_scattering): Removed.
600 (initialize_cloog_names): Renamed to add_names_to_union_domain().
601 (add_names_to_union_domain): Changed to work on a union_domain,
602 instead of a CloogNames structure.
603 (build_cloog_prog): Removed.
604 (build_cloog_union_domain): New.
605 (generate_cloog_input): New.
606 (scop_to_clast): Use CloogInput instead of CloogProgram.
607 (print_generated_program): Adapt to new scop_to_clast() and do not
608 print the CloogProgram any more.
609 (create_params_index): Removed, functionality integrated in
610 add_names_to_union_domain().
611 (gloog): Adapt to new scop_to_clast().
612 * graphite-clast-to-gimple.h (scop_to_clast): Remove.
613
614 2012-01-11 Tobias Grosser <tobias@grosser.es>
615
616 * graphite-clast-to-gimple.c (clast_name_to_index,
617 clast_name_to_lb_ub, clast_name_to_gcc): Change types.
618 (clast_to_gcc_expression): Add clast_expr_name as a new
619 case. Do not assume a clast_expr_term points always to a
620 clast_expr_name.
621 (type_for_clast_term): Do not assume a clast_expr_term points always to
622 a clast_expr_name.
623 (type_for_clast_name): New.
624 (type_for_clast_expr): Add clast_expr_name as a new case.
625
626 2011-08-03 Sebastian Pop <sebpop@gmail.com>
627
628 * graphite-cloog-util.c (new_Cloog_Domain_from_ppl_Polyhedron,
629 new_Cloog_Scattering_from_ppl_Polyhedron,
630 new_Cloog_Domain_from_ppl_Pointset_Powerset): Remove ATTRIBUTE_UNUSED.
631
632 2012-07-02 Jakub Jelinek <jakub@redhat.com>
633
634 PR tree-optimization/53645
635 * tree-vect-generic.c (expand_vector_divmod): Use TYPE_MODE (type)
636 instead of TYPE_MODE (wider_type) as can_vec_perm_p argument.
637
638 2012-07-01 Wei Guozhi <carrot@google.com>
639
640 PR target/53447
641 * config/arm/arm-protos.h (const_ok_for_dimode_op): New prototype.
642 * config/arm/arm.c (const_ok_for_dimode_op): New function.
643 * config/arm/constraints.md (Dd): New constraint.
644 * config/arm/predicates.md (arm_adddi_operand): New predicate.
645 * config/arm/arm.md (adddi3): Extend it to handle constants.
646 (arm_adddi3): Likewise.
647 (addsi3_carryin_<optab>): Extend it to handle sbc case.
648 (addsi3_carryin_alt2_<optab>): Likewise.
649 * config/arm/neon.md (adddi3_neon): Extend it to handle constants.
650
651 2012-06-30 Nathan Sidwell <nathan@acm.org>
652
653 * coverage.c (bbg_file_stamp): New.
654 (read_counts_file): Merge incoming stamp with bbg_file_stamp.
655 (build_info): Write bbg_file_stamp.
656 (coverage_init): Initialize bbg_file_stamp. Read counts file
657 before writing graph header.
658 (coverage_finish): Don't unlink the data file if we can generate a
659 unique file stamp.
660 * tree.h (crc32_unsigned): Declare.
661 * tree.c (crc32_unsigned_bits): New, broken out of ...
662 (crc32_byte): ... here. Use it.
663 (crc32_unsigned): New.
664
665 2012-06-29 Cary Coutant <ccoutant@google.com>
666
667 * dwarf2out.c (add_pubname_string): Don't check for want_pubnames.
668 (gen_subprogram_die): Don't add pubname if want_pubnames is false.
669 (gen_variable_die): Likewise.
670 (gen_namespace_die): Likewise.
671
672 2012-06-29 Eric Botcazou <ebotcazou@adacore.com>
673
674 * tree-eh.c (lower_try_finally_switch): Really put the location of the
675 last statement of the finally block onto the switch.
676
677 2012-06-29 H.J. Lu <hongjiu.lu@intel.com>
678
679 PR target/53539
680 * config/i386/gnu-user64.h (WCHAR_TYPE): Use "int" only for
681 TARGET_LP64.
682
683 2012-06-29 Sterling Augustine <saugustine@google.com>
684
685 * dwarf2out.c (add_pubname): Add comment.
686 (add_pubtype): Fix indentation.
687 (gen_enumeration_type_die): Likewise.
688
689 2012-06-29 Jakub Jelinek <jakub@redhat.com>
690
691 * tree-vect-generic.c (expand_vector_divmod): For even/odd
692 widening multiply, put even always as first argument to VEC_PERM_EXPR.
693
694 2012-06-29 Richard Henderson <rth@redhat.com>
695
696 * tree-vect-generic.c: Include target.h.
697 (expand_vector_divmod): Use builtin_mul_widen_even/odd if supported.
698 * Makefile.in (tree-vect-generic.o): Update.
699
700 2012-06-29 Steven Bosscher <steven@gcc.gnu.org>
701
702 * configure.ac: Remove special gtfiles case for C.
703 * configure: Regenerate.
704 * Makefile.in: Remove C front-end hooks and build hooks that
705 will be picked up from c/Make-lang.in now.
706 Add tree-mudflap to C_COMMON_OBJS.
707 * gengtype.c (files_rules): Adjust gt-files for c/c-decl.c.
708 * config/vms/vms.c: Look for c-tree.h in c/.
709 * doc/gty.texi: Remove reference to c-config-lang.in.
710 * doc/sourcebuild.texi: Document the c/ subdirectory.
711
712 2012-06-29 Steven Bosscher <steven@gcc.gnu.org>
713
714 * system.h (CASE_USE_BIT_TESTS): Poison.
715 * stmt.c (CASE_USE_BIT_TESTS): Fold away into its only user ...
716 (expand_switch_using_bit_tests_p): ...here.
717 * doc/tm.texi.in (CASE_USE_BIT_TESTS): Remove documentation.
718 * doc/tm.texi (CASE_USE_BIT_TESTS): Regenerate.
719
720 2012-06-29 Steven Bosscher <steven@gcc.gnu.org>
721
722 * system.h (IFCVT_EXTRA_FIELDS): Poison.
723 (IFCVT_INIT_EXTRA_FIELDS): Poison.
724 * basic-block.h (struct ce_if_block): Remove IFCVT_EXTRA_FIELDS.
725 * ifcvt.c (find_if_header): Use IFCVT_MACHDEP_INIT instead of
726 IFCVT_INIT_EXTRA_FIELDS.
727 * gengtype-parse.c (struct_field_seq): Remove obsolete comment.
728 * config/frv/frv.h (IFCVT_INIT_EXTRA_FIELDS): Rename to
729 IFCVT_MACHDEP_INIT.
730 * config/frv/frv.c (frv_ifcvt_init_extra_fields): Rename to
731 frv_ifcvt_machdep_init.
732 * doc/tm.texi.in (IFCVT_INIT_EXTRA_FIELDS, IFCVT_EXTRA_FIELDS):
733 Remove documentation.
734 (IFCVT_MACHDEP_INIT): Document.
735 * doc/tm.texi: Regenerate.
736
737 2012-06-29 Nick Clifton <nickc@redhat.com>
738
739 * config/lm32/lm32.c (lm32_compute_frame_size): Fix typo.
740
741 2012-06-29 Jakub Jelinek <jakub@redhat.com>
742
743 * tree-vect-stmts.c (vectorizable_operation): Check both
744 VEC_WIDEN_MULT_LO_EXPR and VEC_WIDEN_MULT_HI_EXPR optabs.
745 Verify that operand[0]'s mode is TYPE_MODE (wide_vectype).
746
747 2012-06-28 Richard Henderson <rth@redhat.com>
748
749 * doc/generic.texi (MULT_HIGHPART_EXPR): Document it.
750
751 2012-06-28 Jakub Jelinek <jakub@redhat.com>
752
753 PR tree-optimization/51581
754 * tree-vect-stmts.c (permute_vec_elements): Add forward decl.
755 (vectorizable_operation): Handle vectorization of MULT_HIGHPART_EXPR
756 also using VEC_WIDEN_MULT_*_EXPR or builtin_mul_widen_* plus
757 VEC_PERM_EXPR if vector MULT_HIGHPART_EXPR isn't supported.
758 * tree-vect-patterns.c (vect_recog_divmod_pattern): Use
759 MULT_HIGHPART_EXPR instead of VEC_WIDEN_MULT_*_EXPR and shifts.
760
761 PR tree-optimization/53645
762 * tree-vect-generic.c (expand_vector_divmod): Use MULT_HIGHPART_EXPR
763 instead of VEC_WIDEN_MULT_{HI,LO}_EXPR followed by VEC_PERM_EXPR
764 if possible.
765
766 2012-06-28 Georg-Johann Lay <avr@gjlay.de>
767
768 PR 53595
769 * config/avr/avr.c (avr_hard_regno_call_part_clobbered): New.
770 * config/avr/avr-protos.h (avr_hard_regno_call_part_clobbered): New.
771 * config/avr/avr.h (HARD_REGNO_CALL_PART_CLOBBERED): Forward to
772 avr_hard_regno_call_part_clobbered.
773
774 2012-06-28 Richard Guenther <rguenther@suse.de>
775
776 PR middle-end/53790
777 * expr.c (expand_expr_real_1): Verify if the type is complete
778 before inspecting its size.
779
780 2012-06-28 Andreas Schwab <schwab@linux-m68k.org>
781
782 * doc/include/gpl.texi: Remove.
783 * doc/sourcebuild.texi (Texinfo Manuals): Don't mention gpl.texi.
784
785 2012-06-28 Jakub Jelinek <jakub@redhat.com>
786
787 PR tree-optimization/53645
788 * tree-vect-generic.c (add_rshift): New function.
789 (expand_vector_divmod): New function.
790 (expand_vector_operation): Use it for vector integer
791 TRUNC_{DIV,MOD}_EXPR by VECTOR_CST.
792 * tree-vect-patterns.c (vect_recog_divmod_pattern): Replace
793 unused lguup variable with dummy_int.
794
795 2012-06-28 OLivier Hainque <hainque@adacore.com>
796
797 * expr.c (convert_move): Latch mem integer inputs into a
798 register before expanding a multi-instructions sequence.
799
800 2012-06-28 Alexandre Oliva <aoliva@redhat.com>
801 Uros Bizjak <ubizjak@gmail.com>
802 Jakub Jelinek <jakub@redhat.com>
803
804 PR debug/53706
805 PR debug/47624
806 * var-tracking.c (vt_emit_notes): Release loc_exp_dep_pool...
807 (vt_finalize): ... here instead, if needed.
808
809 2012-06-28 Alexandre Oliva <aoliva@redhat.com>
810
811 PR debug/53740
812 PR debug/52983
813 PR debug/48866
814 * dce.c (word_dce_process_block): Check whether inserting debug
815 temps are needed even for needed insns.
816 (dce_process_block): Likewise.
817 * df-problems.c (dead_debug_add): Add comment about multi-regs.
818 (dead_debug_insert_temp): Likewise. Don't subreg when we're
819 setting fewer regs than a multi-reg requires.
820
821 2012-06-27 Richard Henderson <rth@redhat.com>
822
823 * config/alpha/alpha.c (alpha_dimode_u): New.
824 (alpha_init_builtins): Initialize it, and use it.
825 (alpha_fold_builtin_cmpbge): Use alpha_dimode_u.
826 (alpha_fold_builtin_zapnot, alpha_fold_builtin_insxx): Likewise.
827 (alpha_fold_vector_minmax, alpha_fold_builtin_perr): Likewise.
828 (alpha_fold_builtin_pklb, alpha_fold_builtin_pkwb): Likewise.
829 (alpha_fold_builtin_unpkbl, alpha_fold_builtin_unpkbw): Likewise.
830 (alpha_fold_builtin_cttz, alpha_fold_builtin_ctlz): Likewise.
831 (alpha_fold_builtin_ctpop): Likewise.
832 (alpha_fold_builtin_umulh): Remove.
833 (alpha_fold_builtin): Use MULT_HIGHPART_EXPR for UMULH; fix
834 typo in MAX_ARGS check.
835
836 2012-06-27 Richard Henderson <rth@redhat.com>
837
838 * tree.def (MULT_HIGHPART_EXPR): New.
839 * cfgexpand.c (expand_debug_expr): Ignore it.
840 * expr.c (expand_expr_real_2): Handle it.
841 * fold-const.c (int_const_binop_1): Likewise.
842 * optabs.c (optab_for_tree_code): Likewise.
843 * tree-cfg.c (verify_gimple_assign_binary): Likewise.
844 * tree-inline.c (estimate_operator_cost): Likewise.
845 * tree-pretty-print.c (dump_generic_node): Likewise.
846 (op_code_prio, op_symbol_code): Likewise.
847 * tree.c (commutative_tree_code): Likewise. Also handle
848 WIDEN_MULT_EXPR, VEC_WIDEN_MULT_HI_EXPR, VEC_WIDEN_MULT_LO_EXPR.
849
850 2012-06-27 Richard Henderson <rth@redhat.com>
851
852 PR target/53749
853 * config/i386/i386.c (ix86_rtx_costs): Fix typo vs UNITS_PER_WORD
854 in 2012-06-23 change. Adjust two other DImode tests as well.
855
856 2012-06-27 Nick Clifton <nickc@redhat.com>
857
858 * config/rx/rx.md (comparesi3_extend): Remove = modifier from
859 input operand.
860
861 2012-06-27 Richard Guenther <rguenther@suse.de>
862
863 PR middle-end/53676
864 * tree-chrec.c (chrec_convert_1): Represent truncation to
865 a type with undefined overflow as truncation to an unsigned
866 type converted to the type with undefined overflow.
867 * tree-scalar-evolution.c (interpret_rhs_expr): For computing
868 the scalar evolution of a truncated widened operation avoid
869 looking at the non-existing evolution of the widened operation
870 result.
871
872 2012-06-27 Richard Guenther <rguenther@suse.de>
873
874 PR tree-optimization/53774
875 * tree-ssa-reassoc.c (get_rank): All default defs have
876 precomputed rank.
877 (init_reassoc): Precompute rank for all SSA default defs.
878
879 2012-06-27 Nick Clifton <nickc@redhat.com>
880
881 * config/rx/rx.md (simple_return): Use the simple_return rtx.
882
883 2012-06-26 Richard Henderson <rth@redhat.com>
884
885 * config/i386/i386.c (ix86_rtx_costs): Use standard_sse_constant_p
886 and don't fall thru from standard_80387_constant_p to the memory
887 fallback.
888
889 2012-06-26 Richard Henderson <rth@redhat.com>
890
891 * config/i386/i386.c (bdesc_args): Update. Change
892 IX86_BUILTIN_VEC_WIDEN_SMUL_ODD_V4SI to OPTION_MASK_ISA_SSE2.
893 (IX86_BUILTIN_VEC_WIDEN_SMUL_EVEN_V4SI): New.
894 (ix86_builtin_mul_widen_even): Use it.
895 (ix86_builtin_mul_widen_odd): Relax SMUL_ODD from sse4 to sse2.
896 (ix86_expand_mul_widen_evenodd): Handle signed for sse2.
897 * config/i386/sse.md (vec_widen_<s>mult_hi_<V124_AVX2>): Allow
898 for all SSE2.
899 (vec_widen_<s>mult_lo_<V124_AVX2>): Likewise.
900 (vec_widen_<s>mult_odd_<VI4_AVX2>): Likewise. Relax from V124_AVX2.
901 (vec_widen_smult_even_v4si): New.
902
903 2012-06-26 Richard Henderson <rth@redhat.com>
904
905 * config/i386/sse.md (mul<VI8_AVX2>3): Change from insn_and_split
906 to expander; move guts to ...
907 * config/i386/i386.c (ix86_expand_sse2_mulvxdi3): ... here. Add
908 highparts before shifting up.
909 * config/i386/i386-protos.h: Update.
910
911 2012-06-26 Steven Bosscher <steven@gcc.gnu.org>
912
913 * system.h (USE_COMMON_FOR_ONE_ONLY): Poison.
914 * defaults.h (USE_COMMON_FOR_ONE_ONLY): Do not provide default.
915 * config/darwin.h (USE_COMMON_FOR_ONE_ONLY): Do not define.
916
917 2012-06-26 Alexandre Oliva <aoliva@redhat.com>
918
919 * var-tracking.c (vt_add_function_parameter): Use a preserved
920 VALUE for the MEM address of an incoming parameter.
921
922 2012-06-26 Sterling Augustine <saugustine@google.com>
923
924 * dwarf2out.c (output_pubnames): Add check for DW_TAG_enumerator.
925 (prune_unused_types): Likewise.
926
927 2012-06-26 Steven Bosscher <steven@gcc.gnu.org>
928
929 * system.h (UNALIGNED_SHORT_ASM_OP, UNALIGNED_INT_ASM_OP,
930 UNALIGNED_LONG_ASM_OP, UNALIGNED_DOUBLE_INT_ASM_OP): Poison.
931 * vmsdbgout.c (UNALIGNED_SHORT_ASM_OP, UNALIGNED_INT_ASM_OP,
932 UNALIGNED_LONG_ASM_OP, UNALIGNED_DOUBLE_INT_ASM_OP): Rename to
933 VMS_UNALIGNED_SHORT_ASM_OP, VMS_UNALIGNED_INT_ASM_OP,
934 VMS_UNALIGNED_LONG_ASM_OP, and VMS_UNALIGNED_DOUBLE_INT_ASM_OP.
935 * config/microblaze/microblaze.h (UNALIGNED_SHORT_ASM_OP,
936 UNALIGNED_INT_ASM_OP, UNALIGNED_DOUBLE_INT_ASM_OP): Do not define.
937 * doc/tm.texi.in: Remove UNALIGNED_INT_ASM_OP reference from the
938 documentation.
939 * doc/tm.texi: Regenerate.
940 * doc/cpp.texi: Make example for #error generic.
941 * config/frv/frv.h: Fix example text to match tm.texi.
942
943 2012-06-26 Bill Schmidt <wschmidt@linux.ibm.com>
944
945 * tree-pass.h (pass_strength_reduction): New decl.
946 * tree-ssa-loop-ivopts.c (initialize_costs): Make non-static.
947 (finalize_costs): Likewise.
948 * timevar.def (TV_TREE_SLSR): New timevar.
949 * gimple-ssa-strength-reduction.c: New.
950 * tree-flow.h (initialize_costs): New decl.
951 (finalize_costs): Likewise.
952 * Makefile.in (tree-ssa-strength-reduction.o): New dependencies.
953 * passes.c (init_optimization_passes): Add pass_strength_reduction.
954
955 2012-06-26 Matt Turner <mattst88@gmail.com>
956
957 * doc/extend.texi (__builtin_arm_tinsrb): Add missing second parameter.
958 (__builtin_arm_tinsrh): Likewise.
959 (__builtin_arm_tinsrw): Likewise.
960 (__builtin_arm_wsadb): Add missing v2si parameter.
961 (__builtin_arm_wsadh): Likewise.
962 (__builtin_arm_getwcx): Delete.
963 (__builtin_arm_setwcx): Delete.
964 (__builtin_arm_getwcgr0): Add.
965 (__builtin_arm_getwcgr1): Add.
966 (__builtin_arm_getwcgr2): Add.
967 (__builtin_arm_getwcgr3): Add.
968 (__builtin_arm_setwcgr0): Add.
969 (__builtin_arm_setwcgr1): Add.
970 (__builtin_arm_setwcgr2): Add.
971 (__builtin_arm_setwcgr3): Add.
972
973 2012-06-26 Richard Guenther <rguenther@suse.de>
974
975 Revert
976 2012-06-21 Richard Guenther <rguenther@suse.de>
977
978 * tree-inline.c (estimate_num_insns): Estimate call cost for
979 tailcalls properly.
980
981 2012-06-26 Steven Bosscher <steven@gcc.gnu.org>
982
983 PR other/33190
984 * doc/tm.texi.in: Document LOGICAL_OP_NON_SHORT_CIRCUIT.
985 * doc/tm.texi: Regenerate.
986
987 2012-06-26 Steven Bosscher <steven@gcc.gnu.org>
988
989 PR other/33190
990 * config/mips/mips.h: Do not define ALL_COP_ADDITIONAL_REGISTER_NAMES.
991 * config/frv/frv.h: Do not define REVERSE_CONDEXEC_PREDICATES_P.
992 * doc/tm.texi.in: Remove documentation for unused target macros
993 ALL_COP_ADDITIONAL_REGISTER_NAMES, DBX_OUTPUT_LBRAC, DBX_OUTPUT_NFUN,
994 DBX_OUTPUT_RBRAC, RANGE_TEST_NON_SHORT_CIRCUIT, REAL_VALUE_TRUNCATE,
995 REVERSE_CONDEXEC_PREDICATES_P, TARGET_ALIGN_ANON_BITFIELDS, and
996 TARGET_NARROW_VOLATILE_BITFIELDS.
997 Document that MD_HANDLE_UNWABI is a macro in libgcc.
998 * doc/tm.texi: Regenerate.
999 * system.h: Poison target macros
1000 ALL_COP_ADDITIONAL_REGISTER_NAMES, DBX_OUTPUT_LBRAC, DBX_OUTPUT_NFUN,
1001 DBX_OUTPUT_RBRAC, RANGE_TEST_NON_SHORT_CIRCUIT, REAL_VALUE_TRUNCATE,
1002 REVERSE_CONDEXEC_PREDICATES_P, TARGET_ALIGN_ANON_BITFIELDS, and
1003 TARGET_NARROW_VOLATILE_BITFIELDS
1004
1005 2012-06-26 Jan Hubicka <jh@suse.cz>
1006
1007 PR lto/53572
1008 * cgraph.h (varpool_can_remove_if_no_refs): Fix handling of
1009 used symbols.
1010
1011 2012-06-26 Dehao Chen <dehao@google.com>
1012
1013 * tree-inline.c: (expand_call_inline): Ensure that lexical block's
1014 source location is consistant with the call stmt.
1015
1016 2012-06-26 Ulrich Weigand <ulrich.weigand@linaro.org>
1017
1018 PR tree-optimization/53729
1019 PR tree-optimization/53636
1020 * tree-vect-slp.c (vect_slp_analyze_bb_1): Delay call to
1021 vect_verify_datarefs_alignment until after statements have
1022 been marked as relevant/irrelevant.
1023 * tree-vect-data-refs.c (vect_verify_datarefs_alignment):
1024 Skip irrelevant statements.
1025 (vect_enhance_data_refs_alignment): Use STMT_VINFO_RELEVANT_P
1026 instead of STMT_VINFO_RELEVANT.
1027 (vect_get_data_access_cost): Do not check for supportable
1028 alignment before calling vect_get_load_cost/vect_get_store_cost.
1029 * tree-vect-stmts.c (vect_get_store_cost): Do not abort when
1030 handling unsupported alignment.
1031 (vect_get_load_cost): Likewise.
1032
1033 2012-06-25 Steven Bosscher <steven@gcc.gnu.org>
1034
1035 * config/rl78/rl78.h: Do not undefine DONT_USE_BUILTIN_SETJMP.
1036 Do not define JMP_BUF_SIZE.
1037
1038 2012-06-26 Jakub Jelinek <jakub@redhat.com>
1039
1040 PR tree-optimization/53748
1041 * tree-ssa-phiopt.c (conditional_replacement): Only optimize
1042 if arg0/arg1 have integral or pointer types.
1043
1044 2012-06-25 Richard Henderson <rth@redhat.com>
1045
1046 * config/i386/sse.md (sse2_sse4_1): Remove code attr.
1047 (<s>dot_prodv4si, <s>dot_prodv8si): Remove
1048 (sdot_prodv4si): New; handle only XOP.
1049
1050 2012-06-25 Richard Henderson <rth@redhat.com>
1051
1052 * config/i386/i386-builtin-types.def (V4UDI, V8USI): New.
1053 (V2UDI_FUNC_V4USI_V4USI): New.
1054 (V4UDI_FUNC_V8USI_V8USI): New.
1055 * config/i386/i386.c (ix86_expand_args_builtin): Handle them.
1056 (IX86_BUILTIN_VEC_WIDEN_SMUL_ODD_V4SI): New.
1057 (IX86_BUILTIN_VEC_WIDEN_SMUL_ODD_V8SI): New.
1058 (IX86_BUILTIN_VEC_WIDEN_UMUL_ODD_V4SI): New.
1059 (IX86_BUILTIN_VEC_WIDEN_UMUL_ODD_V8SI): New.
1060 (IX86_BUILTIN_VEC_WIDEN_UMUL_EVEN_V4SI): New.
1061 (IX86_BUILTIN_VEC_WIDEN_UMUL_EVEN_V8SI): New.
1062 (bdesc_args): Add them.
1063 (ix86_builtin_mul_widen_even, ix86_builtin_mul_widen_odd): New.
1064 (TARGET_VECTORIZE_BUILTIN_MUL_WIDEN_EVEN): New.
1065 (TARGET_VECTORIZE_BUILTIN_MUL_WIDEN_ODD): New.
1066 (ix86_expand_mul_widen_evenodd): Use xop_pmacsdqh.
1067 * config/i386/sse.md (vec_widen_<s>mult_odd_<V124_AVX2>): New.
1068
1069 2012-06-25 Richard Henderson <rth@redhat.com>
1070
1071 * config/i386.sse.md (mul<VI4_AVX2>3): Use xop_pmacsdd.
1072
1073 2012-06-25 Richard Henderson <rth@redhat.com>
1074
1075 * config/i386/i386.c (ix86_rtx_costs) [MULT]: Only apply XOP cost
1076 to V16QImode.
1077 (ix86_expand_vec_interleave): New.
1078 (ix86_expand_mul_widen_evenodd): New.
1079 (ix86_expand_mul_widen_hilo): New.
1080 (ix86_expand_sse2_mulv4si3): Use ix86_expand_mul_widen_evenodd.
1081 * config/i386/i386.md (u_bool) New code attr.
1082 * config/i386/predicates.md
1083 (nonimmediate_or_const_vector_operand): Remove.
1084 * config/i386/sse.md (mul<VI4_AVX2>3): Don't use it; don't test
1085 both AVX and SSE4_1.
1086 (vec_widen<s>mult_hi_<VI2_AVX2>): Remove.
1087 (vec_widen<s>mult_lo_<VI2_AVX2>): Remove.
1088 (vec_widen<s>mult_hi_v8si): Remove.
1089 (vec_widen<s>mult_lo_v8si): Remove.
1090 (vec_widen_smult_hi_v4si): Remove.
1091 (vec_widen_smult_lo_v4si): Remove.
1092 (vec_widen_umult_hi_v4si): Remove.
1093 (vec_widen_umult_lo_v4si): Remove.
1094 (vec_widen_<s>mult_hi_<VI124_AVX2>): New.
1095 (vec_widen_<s>mult_lo_<VI124_AVX2>): New.
1096 * config/i386/i386-protos.h: Update.
1097
1098 2012-06-25 Christophe Lyon <christophe.lyon@st.com>
1099
1100 * config/arm/neon.md (UNSPEC_VLD1_DUP): Remove.
1101 (neon_vld1_dup): Restrict to VQ operands.
1102 (neon_vld1_dupv2di): New, fixes vld1q_dup_s64.
1103
1104 2012-06-25 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
1105 James Greenhalgh <james.greenhalgh@arm.com>
1106
1107 * config/arm/arm.h (TARGET_CPU_CPP_BUILTINS): Add new built-ins.
1108 (TARGET_FMA): New macro.
1109 (TARGET_ARM_QBIT, TARGET_ARM_SAT): Likewise.
1110 (TARGET_ARM_ARCH): Likewise.
1111 (TARGET_ARM_ARCH_ISA_THUMB): Likewise.
1112 (TARGET_V6M, TARGET_V7M): Likewise.
1113 (TARGET_ARM_ARCH_PROFILE): Likewise.
1114 (TARGET_ARM_FEATURE_LDREX): Likewise.
1115 (TARGET_ARM_FP, TARGET_NEON_FP): Likewise.
1116 (ARM_MIN_ENUM_SIZE): Likewise.
1117 * config/arm/arm.c (arm_file_start): Refactor appropriately.
1118 (base_architecture): New enumeration.
1119 (arm_base_arch): New global variable.
1120 (processors): Add field base_arch.
1121 (ARM_ARCH, ARM_CORE): Adjust accordingly.
1122 (arm_option_override): Add initialization of arm_base_arch.
1123 * doc/cpp.texi (system-specific predefined macros.): Change.
1124
1125 2012-06-25 Jakub Jelinek <jakub@redhat.com>
1126
1127 PR target/53759
1128 * config/i386/sse.md (sse_loadlps): Use x m x constraints instead
1129 of x x x in the vmovlps load alternative.
1130
1131 2012-06-25 Richard Sandiford <rdsandiford@googlemail.com>
1132
1133 PR debug/53740
1134 * df.h (dead_debug_add): Remove third argument.
1135 * df-problems.c (dead_debug_add): Likewise. Use the REGNO of the
1136 REG that we want to replace instead.
1137 (dead_debug_insert_temp): Use the REGNO of the reg that we want
1138 to replace instead of DF_REF_REGNO. Require there to always be
1139 at least one such use. Check for cases where the same location
1140 has more than df_ref associated with it.
1141 (df_note_bb_compute): Remove third dead_debug_add argument.
1142 * dce.c (word_dce_process_block): Likewise.
1143
1144 2012-06-25 Steven Bosscher <steven@gcc.gnu.org>
1145
1146 * config/v850/v850.c: Remove redundant extern declarations for
1147 last_assemble_variable_decl and size_directive_output.
1148
1149 * doc/tm.texi.in: Document JMP_BUF_SIZE.
1150 * doc/tm.texi: Regenerate.
1151 * config/sparc/sparc.h (JMP_BUF_SIZE): Do not define.
1152 * config/pa/pa.h (JMP_BUF_SIZE): Likewise.
1153 * config/stormy16/stormy16.h: Likewise.
1154
1155 * config/picochip/picochip.c: Do not define DONT_USE_BUILTIN_SETJMP.
1156
1157 * doc/sourcebuild.texi: Add missing subdirectories.
1158
1159 2012-06-25 Tristan Gingold <gingold@adacore.com>
1160
1161 * config/i386/i386.h: Fix typo.
1162
1163 2012-06-25 Tristan Gingold <gingold@adacore.com>
1164
1165 * config/i386/winnt.c (i386_pe_seh_end_prologue): Move code to ...
1166 (seh_cfa_adjust_cfa): ... that function.
1167 (seh_emit_stackalloc): Do not emit out of range values.
1168 * config/i386/i386.md: Delete unused UNSPEC_REG_SAVE,
1169 UNSPEC_DEF_CFA constants.
1170 * config/i386/i386.h (SEH_MAX_FRAME_SIZE): Define.
1171 * config/i386/i386.c (ix86_frame_pointer_required): Required
1172 for very large frames on SEH target.
1173 (ix86_compute_frame_layout): Save area is before frame pointer
1174 on SEH target. Handle very large frames.
1175 (ix86_expand_prologue): Likewise.
1176
1177 2012-06-24 Steven Bosscher <steven@gcc.gnu.org>
1178
1179 * output.h: (current_function_is_leaf,
1180 current_function_sp_is_unchanging,
1181 current_function_uses_only_leaf_regs): Remove.
1182 * function.c (current_function_is_leaf,
1183 current_function_sp_is_unchanging,
1184 current_function_uses_only_leaf_regs): Remove.
1185 (rest_of_handle_check_leaf_regs): Set crtl->uses_only_leaf_regs
1186 instead of current_function_uses_only_leaf_regs.
1187 * function.h (struct rtl_data): New fields sp_is_unchanging,
1188 is_leaf, uses_only_leaf_regs.
1189 * resource.c (init_resource_info): Replace current_function_is_leaf,
1190 current_function_sp_is_unchanging, and
1191 current_function_uses_only_leaf_regs with new crtl fields.
1192 * sdbout.c (sdbout_symbol): Likewise.
1193 * df-core.c (rest_of_handle_df_initialize): Likewise.
1194 * ira.c (ira): Likewise.
1195 * final.c (final_start_function): Likewise.
1196 * reorg.c (fill_simple_delay_slots): Likewise.
1197 * regrename.c (check_new_reg_p): Likewise.
1198 * stack-ptr-mod.c (notice_stack_pointer_modification_1): Likewise.
1199 (notice_stack_pointer_modification): Likewise.
1200 * dbxout.c (dbxout_symbol): Likewise.
1201 (dbxout_parms): Likewise.
1202 * sel-sched.c (init_regs_for_mode): Likewise.
1203 * dwarf2out.c (dbx_reg_number): Likewise.
1204 (multiple_reg_loc_descriptor): Likewise.
1205 * config/i386/i386.c (ix86_frame_pointer_required): Likewise.
1206 (gen_pop): Likewise.
1207 (ix86_select_alt_pic_regnum): Likewise.
1208 (ix86_compute_frame_layout): Likewise.
1209 (ix86_finalize_stack_realign_flags): Likewise.
1210 (ix86_expand_epilogue): Likewise.
1211 * config/rs6000/rs6000.c (rs6000_stack_info): Likewise.
1212 * config/h8300/h8300.c (byte_reg): Likewise.
1213 * config/c6x/c6x.c (must_reload_pic_reg_p): Likewise.
1214 (c6x_save_reg): Likewise.
1215 (c6x_compute_frame_layout): Likewise.
1216 * config/pa/pa.c (pa_compute_frame_size): Likewise.
1217 (pa_output_function_prologue): Likewise.
1218 * config/stormy16/stormy16.c (struct xstormy16_stack_layout): Likewise.
1219 * config/sparc/sparc.md (attr "leaf_function"): Likewise.
1220 * config/sparc/sparc.c (sparc_initial_elimination_offset): Likewise.
1221 (sparc_expand_prologue): Likewise.
1222 (sparc_flat_expand_prologue): Likewise.
1223 (sparc_asm_function_prologue): Likewise.
1224 (sparc_output_mi_thunk): Likewise.
1225 (sparc_frame_pointer_required): Likewise.
1226 * config/epiphany/epiphany.c (epiphany_compute_function_type):
1227 Likewise.
1228 (epiphany_compute_frame_size): Likewise.
1229 * config/lm32/lm32.c (lm32_compute_frame_size): Likewise.
1230 * config/cris/cris.c (cris_md_asm_clobbers): Likewise.
1231 (cris_frame_pointer_required): Likewise.
1232 * config/tilepro/tilepro.c (emit_sp_adjust): Likewise.
1233 (tilepro_current_function_is_leaf): Likewise.
1234 * config/arm/arm.c (arm_compute_save_reg0_reg12_mask): Likewise.
1235 * config/pdp11/pdp11.c (pdp11_expand_epilogue): Likewise.
1236 * config/ia64/ia64.c (find_gr_spill): Likewise.
1237 (ia64_compute_frame_size): Likewise.
1238 (ia64_can_eliminate): Likewise.
1239 (ia64_initial_elimination_offset): Likewise.
1240 * config/m68k/m68k.c (m68k_save_reg): Likewise.
1241 (m68k_expand_epilogue): Likewise.
1242 * config/rx/rx.c (rx_get_stack_layout): Likewise.
1243 * config/tilegx/tilegx.c (tilegx_current_function_is_leaf): Likewise.
1244 * config/picochip/picochip.c (picochip_can_eliminate_link_sp_save):
1245 Likewise.
1246 (picochip_output_frame_debug): Likewise.
1247 * config/sh/sh.c (sh_media_register_for_return): Likewise.
1248 (sh_allocate_initial_value): Likewise.
1249 (sh_output_mi_thunk): Likewise.
1250 * config/microblaze/microblaze.c (microblaze_must_save_register):
1251 Likewise.
1252 (compute_frame_size): Likewise.
1253 (microblaze_initial_elimination_offset): Likewise.
1254 (microblaze_expand_prologue): Likewise.
1255 (microblaze_expand_epilogue): Likewise.
1256 * config/frv/frv.c (frv_expand_epilogue): Likewise.
1257 (frv_frame_pointer_required): Likewise.
1258 * config/spu/spu.c (get_pic_reg): Likewise.
1259 (direct_return): Likewise.
1260 (spu_expand_prologue): Likewise.
1261 (spu_expand_epilogue): Likewise.
1262 (spu_initial_elimination_offset): Likewise.
1263 * config/mips/mips.c (mips_global_pointer): Likewise.
1264 (mips_cfun_might_clobber_call_saved_reg_p): Likewise.
1265 (mips_compute_frame_info): Likewise.
1266 * config/mep/mep.c (mep_interrupt_saved_reg): Likewise.
1267 (mep_reload_pointer): Likewise.
1268 * config/rl78/rl78.c (need_to_save): Likewise.
1269 * config/cr16/cr16.c (cr16_compute_save_regs): Likewise.
1270 * config/score/score.c (score_compute_frame_size): Likewise.
1271 (score_function_prologue): Likewise.
1272 * config/bfin/bfin.c (must_save_p): Likewise.
1273 (expand_prologue_reg_save): Likewise.
1274 (expand_epilogue_reg_restore): Likewise.
1275 (bfin_frame_pointer_required): Likewise.
1276 (n_regs_saved_by_prologue): Likewise.
1277 (add_to_reg): Likewise.
1278 (expand_interrupt_handler_prologue): Likewise.
1279 (expand_interrupt_handler_epilogue): Likewise.
1280 (bfin_expand_prologue): Likewise.
1281 * config/avr/avr.c (avr_regs_to_save): Likewise.
1282 (avr_prologue_setup_frame): Likewise.
1283 (expand_epilogue): Likewise.
1284 * config/s390/s390.c (s390_regs_ever_clobbered): Likewise.
1285 (s390_register_info): Likewise.
1286 (s390_frame_info): Likewise.
1287 (s390_init_frame_layout): Likewise.
1288 (s390_emit_prologue): Likewise.
1289
1290
1291 2012-06-24 Steven Bosscher <steven@gcc.gnu.org>
1292
1293 * system.h: Poison ASM_BYTE_OP and ASM_OUTPUT_BYTE.
1294 * vmsdbgout: Do not undefine it if defined.
1295 Rename local ASM_BYTE_OP definition to VMS_ASM_BYTE_OP.
1296 * config/microblaze/microblaze/h: Do no define ASM_BYTE_OP.
1297 * config/mep/mep.h: Do not define ASM_OUTPUT_BYTE.
1298
1299 2012-06-24 Richard Sandiford <rdsandiford@googlemail.com>
1300
1301 * config/mips/mips.c (mips_process_sync_loop): Add missing enum cast.
1302
1303 2012-06-23 Richard Henderson <rth@redhat.com>
1304
1305 PR target/53749
1306 * config/i386/i386.c (ix86_rtx_costs): Add reasonable costs for
1307 V*QImode shifts and multiply.
1308 (ix86_expand_vecop_qihi): Support shifts.
1309 * config/i386/i386.md (any_shift): New code iterator.
1310 * config/i386/sse.md (ashlv16qi3): Merge ...
1311 (<any_shiftrt>v16qi3): ... into ...
1312 (<any_shift><VI1_AVX2>3): ... here. Use ix86_expand_vecop_qihi
1313 to support SSE and AVX.
1314
1315 * config/i386/i386.c (ix86_expand_sse_unpack): Split operands[]
1316 parameter into src and dest.
1317 * config/i386/sse.md (vec_unpacku_hi_<V124_AVX2>): Update call.
1318 (vec_unpacks_hi_<V124_AVX2>): Likewise.
1319 (vec_unpacku_lo_<V124_AVX2>): Likewise.
1320 (vec_unpacks_lo_<V124_AVX2>): Likewise.
1321 * config/i386/i386-protos.h: Update.
1322
1323 * config/i386/sse.md (mul<VI1_AVX2>3): Change from insn_and_split to
1324 pure expander; move expansion code ...
1325 * config/i386/i386.c (ix86_expand_vecop_qihi): ... here. New function.
1326 * config/i386/i386-protos.h: Update.
1327
1328 2012-06-22 Edmar Wienskoski <edmar@freescale.com>
1329
1330 * config/rs6000/rs6000.md (define_attr "type"): New type popcnt.
1331 (popcntb<mode>2): Add attribute type popcnt.
1332 (popcntd<mode>2): Ditto.
1333 * config/rs6000/power4.md (define_insn_reservation): Add type popcnt.
1334 * config/rs6000/power5.md (define_insn_reservation): Ditto.
1335 * config/rs6000/power7.md (define_insn_reservation): Ditto.
1336 * config/rs6000/476.md (define_insn_reservation): Ditto.
1337 * config/rs6000/power6.md (define_insn_reservation): New
1338 reservation for popcnt instructions.
1339
1340 2012-06-22 H.J. Lu <hongjiu.lu@intel.com>
1341
1342 * doc/invoke.texi: Update -mpreferred-stack-boundary=3 warning.
1343
1344 2012-06-22 H.J. Lu <hongjiu.lu@intel.com>
1345
1346 PR target/53383
1347 * doc/invoke.texi: Add a warning for -mpreferred-stack-boundary=3.
1348
1349 * config/i386/i386.c (ix86_option_override_internal): Allow
1350 -mpreferred-stack-boundary=3 for 64-bit if SSE is disabled.
1351
1352 * config/i386/i386.h (MIN_STACK_BOUNDARY): Set to 64 for 64-bit
1353 if SSE is disabled.
1354
1355 2012-06-22 Bill Schmidt <wschmidt@linux.ibm.com>
1356
1357 * double-int.c (double_int_multiple_of): New function.
1358 * double-int.h (double_int_multiple_of): New decl.
1359 * tree-ssa-loop-ivopts.c (add_cost, zero_cost): Remove undefs.
1360 (mbc_entry_hash): New forward decl.
1361 (mbc_entry_eq): Likewise.
1362 (zero_cost): Change to no_cost.
1363 (mult_costs): New static var.
1364 (cost_tables_exist): Likewise.
1365 (initialize_costs): New function.
1366 (finalize_costs): Likewise.
1367 (tree_ssa_iv_optimize_init): Call initialize_costs.
1368 (add_cost): Change to add_regs_cost; distinguish costs by speed.
1369 (multiply_regs_cost): New function.
1370 (add_const_cost): Likewise.
1371 (extend_or_trunc_reg_cost): Likewise.
1372 (negate_reg_cost): Likewise.
1373 (multiply_by_cost): Change to multiply_by_const_cost; distinguish
1374 costs by speed.
1375 (get_address_cost): Change add_cost to add_regs_cost; change
1376 multiply_by_cost to multiply_by_const_cost.
1377 (force_expr_to_var_cost): Change zero_cost to no_cost; change
1378 add_cost to add_regs_cost; change multiply_by_cost to
1379 multiply_by_const_cost.
1380 (split_cost): Change zero_cost to no_cost.
1381 (ptr_difference_cost): Likewise.
1382 (difference_cost): Change zero_cost to no_cost; change multiply_by_cost
1383 to multiply_by_const_cost.
1384 (get_computation_cost_at): Change add_cost to add_regs_cost; change
1385 multiply_by_cost to multiply_by_const_cost.
1386 (determine_use_iv_cost_generic): Change zero_cost to no_cost.
1387 (determine_iv_cost): Change add_cost to add_regs_cost.
1388 (iv_ca_new): Change zero_cost to no_cost.
1389 (tree_ssa_iv_optimize_finalize): Call finalize_costs.
1390 * tree-ssa-address.c (most_expensive_mult_to_index): Change
1391 multiply_by_cost to multiply_by_const_cost.
1392 * tree-flow.h (multiply_by_cost): Change to multiply_by_const_cost.
1393 (add_regs_cost): New decl.
1394 (multiply_regs_cost): Likewise.
1395 (add_const_cost): Likewise.
1396 (extend_or_trunc_reg_cost): Likewise.
1397 (negate_reg_cost): Likewise.
1398
1399 2012-06-22 Richard Guenther <rguenther@suse.de>
1400
1401 Merge from graphite branch
1402 2011-08-10 Sebastian Pop <sebpop@gmail.com>
1403
1404 * graphite-sese-to-poly.c (build_scop_drs): Fix memory leak.
1405
1406 2012-01-13 Tobias Grosser <tobias@grosser.es>
1407
1408 * tree-flow.h (parallelized_function_p): Declare.
1409 * tree-parloops.c (parallelized_function_p): Export.
1410 * graphite.c (graphite_transform_loops): Do not run graphite on
1411 already parallel functions.
1412
1413 2012-06-22 Alan Modra <amodra@gmail.com>
1414
1415 * config/rs6000/rs6000.c (rs6000_pre_atomic_barrier): Pass in and
1416 return mem. Convert to indirect addressing if not indirect or
1417 indexed. Adjust all callers.
1418
1419 2012-06-22 Richard Guenther <rguenther@suse.de>
1420
1421 * gcov-iov.c: Include bconfig.h and system.h.
1422
1423 2012-06-22 Andreas Schwab <schwab@linux-m68k.org>
1424
1425 * doc/include/texinfo.tex: Update to version 2012-06-05.14.
1426
1427 2012-06-22 Richard Guenther <rguenther@suse.de>
1428
1429 PR gcov-profile/53744
1430 * gcov-iov.c (main): Treat "" and "prerelease" the same.
1431
1432 2012-06-22 Eric Botcazou <ebotcazou@adacore.com>
1433
1434 PR debug/53704
1435 * dwarf2out.c (gen_compile_unit_die): Use DW_LANG_Fortran90 as language
1436 for GNU Fortran if in strict DWARF2 mode.
1437
1438 2012-06-22 Eric Botcazou <ebotcazou@adacore.com>
1439
1440 * tree-ssa-live.c (remove_unused_scope_block_p): Remove again
1441 DECL_IGNORED_P non-reg vars even if they are used.
1442
1443 2012-06-21 Alexandre Oliva <aoliva@redhat.com>
1444
1445 PR debug/53671
1446 PR debug/49888
1447 * var-tracking.c (vt_get_canonicalize_base): New.
1448 (vt_canonicalize_addr, vt_stack_offset_p): New.
1449 (vt_canon_true_dep): New.
1450 (drop_overlapping_mem_locs): Use vt_canon_true_dep.
1451 (clobber_overlaping_mems): Use vt_canonicalize_addr.
1452
1453 2012-06-21 Alexandre Oliva <aoliva@redhat.com>
1454
1455 PR debug/53671
1456 PR debug/49888
1457 * var-tracking.c (vt_initialize): Record initial offset between
1458 arg pointer and stack pointer.
1459
1460 2012-06-21 Alexandre Oliva <aoliva@redhat.com>
1461
1462 PR debug/53671
1463 PR debug/49888
1464 * var-tracking.c (vt_init_cfa_base): Drop redundant recording of
1465 CFA base.
1466
1467 2012-06-21 Alexandre Oliva <aoliva@redhat.com>
1468
1469 PR debug/53671
1470 PR debug/49888
1471 * alias.c (memrefs_conflict_p): Improve handling of AND for alignment.
1472
1473 2012-06-21 Alexandre Oliva <aoliva@redhat.com>
1474
1475 * ddg.c (build_intra_loop_deps): Discard deps of nondebug on debug.
1476
1477 2012-06-21 Alexandre Oliva <aoliva@redhat.com>
1478
1479 PR debug/53682
1480 * cselib.c (promote_debug_loc): Don't crash on NULL argument.
1481
1482 2012-06-21 Meador Inge <meadori@codesourcery.com>
1483
1484 PR c/53702
1485 * c-decl.c (c_push_function_context): Restore the behavior to reuse
1486 the language function allocated for -Wunused-local-typedefs.
1487 (c_pop_function_context): If necessary, clear the language function
1488 created in c_push_function_context. Always clear out the
1489 x_cur_stmt_list field of the restored language function.
1490
1491 2012-06-21 Sterling Augustine <saugustine@google.com>
1492 Cary Coutant <ccoutant@google.com>
1493
1494 * dwarf2out.c (is_cu_die, is_namespace_die, is_class_die,
1495 add_AT_pubnames, add_enumerator_pubname, want_pubnames): New functions.
1496 (comdat_type_struct): New field 'skeleton_die'.
1497 (breakout_comdat_types): Update it.
1498 (add_pubname): Rework logic. Call is_class_die, is_cu_die and
1499 is_namespace_die. Fix minor style violation. Call want_pubnames.
1500 (add_pubname_string): Call want_pubnames.
1501 (add_pubtype): Rework logic for calculating type name. Call
1502 is_namespace_die. Call want_pubnames.
1503 (output_pubnames): Move conditional logic deciding when to produce the
1504 section from dwarf2out_finish. Use new skeleton_die field.
1505 (base_type_die): Call add_pubtype.
1506 (gen_enumeration_type_die): Unconditionally call add_pubtype.
1507 (gen_subprogram_die): Adjust calls to add_pubname.
1508 (gen_namespace_die): Call add_pubname_string.
1509 (dwarf2out_finish): Call add_AT_pubnames; Move logic on when to
1510 produce pubnames and pubtypes sections to output_pubnames.
1511 * common.opt (-gpubnames): New option.
1512 * doc/invoke.texi: Document it.
1513
1514 2012-06-21 Steven Bosscher <steven@gcc.gnu.org>
1515
1516 * config/m32c/m32c-pragma.c: Remove unnecessary includes.
1517
1518 2012-06-21 Michael Matz <matz@suse.de>
1519
1520 PR middle-end/53688
1521 * builtins.c (get_memory_rtx): Always build an all-aliasing MEM_REF
1522 with correct size.
1523
1524 2012-06-21 Richard Guenther <rguenther@suse.de>
1525
1526 * tree-inline.c (estimate_num_insns): Estimate call cost for
1527 tailcalls properly.
1528
1529 2012-06-20 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
1530
1531 * tree.h (DECL_SOURCE_COLUMN): New accessor.
1532
1533 2012-06-20 Uros Bizjak <ubizjak@gmail.com>
1534
1535 * config/i386/i386.md (SINCOS): New int iterator.
1536 (sincos): New int attribute.
1537 (*<sincos>xf2_i387): Macroize insn from *{sin,cos}xf2_i387 using
1538 SINCOS int iterator.
1539 (*<sincos>_extend<mode>xf2_i387): Macroize insn from
1540 *{sin,cos}_extend<mode>xf2_i387 using SINCOS int iterator.
1541
1542 2012-06-20 Uros Bizjak <ubizjak@gmail.com>
1543
1544 * config/i386/i386.md (RDFSGSBASE): New int iterator.
1545 (WRFSGSBASE): Ditto.
1546 (fsgs): New int attribute.
1547 (rd<fsgs>base<mode>): Macroize insn from rd<fsgs>base<mode> using
1548 RDFSGSBASE int iterator.
1549 (wr<fsgs>base<mode>): Macroize insn from wr<fsgs>base<mode> using
1550 WRFSGSBASE int iterator.
1551
1552 2012-06-20 Uros Bizjak <ubizjak@gmail.com>
1553
1554 * config/i386/i386.md (<rounding_insn><mode>2): Macroize expander
1555 from {floor,ceil,btrunc}<mode>2 using FIST_ROUNDING int iterator.
1556 (l<rounding_insn><MODEF:mode><SWI48:mode>2): Macroize expander
1557 from l{floor,ceil}<MODEF:mode><SWI48:mode>2 using FIST_ROUNDING
1558 int iterator.
1559
1560 2012-06-20 Steven Bosscher <steven@gcc.gnu.org>
1561
1562 * system.h: Poison ASM_OUTPUT_IDENT and IDENT_ASM_OP.
1563
1564 2012-06-20 Richard Guenther <rguenther@suse.de>
1565
1566 PR tree-optimization/30318
1567 * tree-vrp.c (range_int_cst_p): Do not reject overflowed
1568 constants here.
1569 (range_int_cst_singleton_p): But explicitely here.
1570 (zero_nonzero_bits_from_vr): And here.
1571 (extract_range_from_binary_expr_1): Re-implement PLUS_EXPR
1572 to cover all cases we can perform arbitrary precision
1573 arithmetic with double-ints.
1574 (intersect_ranges): Handle adjacent anti-ranges.
1575
1576 2012-06-20 Uros Bizjak <ubizjak@gmail.com>
1577
1578 * config/i386/i386.md (rounding_insn): New int attribute.
1579 (<rounding_insn>xf2): Macroize insn from
1580 {floor,ceil,btrunc}xf2 using FRNDINT_ROUNDING int iterator.
1581 (l<rounding_insn>xf<mode>2): Rename from l<rounding>xf<mode>2.
1582
1583 2012-06-20 Uros Bizjak <ubizjak@gmail.com>
1584
1585 * config/i386/i386.md (IEEE_MAXMIN): New int iterator.
1586 (ieee_maxmin): New int attribute.
1587 (*ieee_s<ieee_maxmin><mode>3): Macroize insn from
1588 *ieee_s{max,min}<mode>3 using IEEE_MAXMIN int iterator.
1589
1590 2012-06-20 Steven Bosscher <steven@gcc.gnu.org>
1591
1592 * config/arm/arm.h (EMIT_EABI_ATTRIBUTE): Remove.
1593 * config/arm/arm.c: Do not include c-pragma.h.
1594 (arm_emit_eabi_attribute): New function based on EMIT_EABI_ATTRIBUTE.
1595 (arm_file_start): Replace uses of EMIT_EABI_ATTRIBUTE with calls
1596 to arm_emit_eabi_attribute.
1597 * arm-c.c: Do not include output.h.
1598 (arm_output_c_attributes): Replace use of EMIT_EABI_ATTRIBUTE with a
1599 call to arm_emit_eabi_attribute.
1600 * config/arm/arm-protos.h (arm_emit_eabi_attribute): Prototype it.
1601
1602 2012-06-20 Richard Guenther <rguenther@suse.de>
1603
1604 * tree-vect-data-refs.c (vect_can_force_dr_alignment_p):
1605 Allow adjusting alignment of user-aligned decls again.
1606
1607 2012-06-20 Steven Bosscher <steven@gcc.gnu.org>
1608
1609 * config/rl78/rl78-c.c: Remove unnecessary includes.
1610
1611 2012-06-20 Steven Bosscher <steven@gcc.gnu.org>
1612
1613 * config/cris/cris.c: Include cgraph.h.
1614 (cris_option_override): Do not set non-existing flag_no_gcc_ident.
1615
1616 2012-06-19 Maxim Kuvyrkov <maxim@codesourcery.com>
1617
1618 * emit-rtl.c (need_atomic_barrier_p): New function.
1619 * emit-rtl.h (need_atomic_barrier_p): Declare it.
1620 * config/alpha/alpha.c (alpha_{pre,post}_atomic_barrier): Use it.
1621 * config/arm/arm.c (arm_{pre,post}_atomic_barrier): Use it.
1622 * config/tilegx/tilegx.c (tile_{pre,post}_atomic_barrier): Use it.
1623 * config/mips/mips.c (mips_{pre,post}_atomic_barrier_p): Remove.
1624 (mips_process_sync_loop): Use generic version instead.
1625
1626 2012-06-19 Maxim Kuvyrkov <maxim@codesourcery.com>
1627
1628 * config/mips/mips.c (mips_process_sync_loop): Emit cmp result only if
1629 it is used.
1630
1631 2012-06-19 Tom de Vries <vries@codesourcery.com>
1632 Maxim Kuvyrkov <maxim@codesourcery.com>
1633
1634 * config/mips/constraints.md (ZR): New constraint.
1635 * config/mips/predicates.md (mem_noofs_operand): New predicate.
1636 * config/mips/mips.c (mips_print_operand): Handle new print modifier.
1637 * config/mips/mips.h (TARGET_XLP): Define.
1638 (TARGET_SYNC_AFTER_SC): Update.
1639 (ISA_HAS_SWAP, ISA_HAS_LDADD): Define.
1640 * config/mips/sync.md (atomic_exchange, atomic_fetch_add): Use
1641 XLP-specific swap and ldadd patterns.
1642 (atomic_exchange_swap, atomic_fetch_add_ldadd): New patterns.
1643
1644 2012-06-19 Tom de Vries <vries@codesourcery.com>
1645 Maxim Kuvyrkov <maxim@codesourcery.com>
1646
1647 * config/mips/mips.c (mips_emit_pre_atomic_barrier_p,)
1648 (mips_emit_post_atomic_barrier_p): New static functions.
1649 (mips_process_sync_loop): Use them. Emit sync memory barriers in
1650 accordance with memory model semantics. Add return of CMP result for
1651 compare_and_swap.
1652 * config/mips/mips.md: Update comment.
1653 (sync_cmp): New attribute.
1654 (sync_memmodel): New attribute replacing sync_release_barrier.
1655 * config/mips/sync.md (UNSPEC_ATOMIC_COMPARE_AND_SWAP,)
1656 (UNSPEC_ATOMIC_EXCHANGE, UNSPEC_ATOMIC_FETCH_OP): New constants.
1657 (sync_lock_test_and_set, test_and_set_12): Update.
1658 (atomic_compare_and_swap, atomic_exchange, atomic_exchange_llsc,)
1659 (atomic_fetch_add, atomic_fetch_add_llsc): New patterns.
1660
1661 2012-06-19 Joseph Myers <joseph@codesourcery.com>
1662
1663 * config/rs6000/spe.md (*mov_si<mode>_e500_subreg0): Rename to
1664 mov_si<mode>_e500_subreg0.
1665 (*mov_si<mode>_e500_subreg0_elf_low)
1666 (*mov_si<mode>_e500_subreg4_elf_low): New patterns.
1667
1668 2012-06-19 Richard Henderson <rth@redhat.com>
1669
1670 * config/alpha/alpha.c: Include params.h.
1671 (alpha_option_override): Initialize PARAM_L1_CACHE_LINE_SIZE,
1672 PARAM_L1_CACHE_SIZE, PARAM_L2_CACHE_SIZE for the cpu tuning.
1673
1674 2012-06-19 Steven Bosscher <steven@gcc.gnu.org>
1675
1676 * doc/tm.texi.in (TARGET_OBJC_DECLARE_UNRESOLVED_CLASS_REFERENCE,
1677 TARGET_OBJC_DECLARE_CLASS_DEFINITION): Add @hooks.
1678 (ASM_DECLARE_CLASS_REFERENCE, ASM_DECLARE_UNRESOLVED_REFERENCE):
1679 Remove.
1680 * doc/tm.texi: Regenerate.
1681 * config/darwin.h (ASM_OUTPUT_LABELREF): Remove special case for
1682 .objc_class_name_*.
1683 * config/darwin-c.c: Include target.h.
1684 (darwin_objc_declare_unresolved_class_reference): New function.
1685 (darwin_objc_declare_class_definition): New function.
1686 (TARGET_OBJC_DECLARE_UNRESOLVED_CLASS_REFERENCE): Define.
1687 (TARGET_OBJC_DECLARE_CLASS_DEFINITION): Define.
1688
1689 2012-06-19 Steven Bosscher <steven@gcc.gnu.org>
1690
1691 * target.def (output_ident): New hook.
1692 * targhooks.h (default_asm_output_ident_directive): Add prototype.
1693 * varasm.c (assemble_asm): Only prefix a tab if the string does not
1694 already start with one.
1695 (default_asm_output_ident_directive): New function to emit
1696 .ident as a top-level asm node while parsing, or directly to
1697 asm_out_file after parsing.
1698 * toplev.c (compile_file): Print a GCC .ident with
1699 targetm.asm_out.output_ident.
1700 * doc/tm.texi.in (ASM_OUTPUT_IDENT): Remove documentation for macro.
1701 (TARGET_ASM_OUTPUT_IDENT): Add @hook for this.
1702 * doc/tm.texi: Update.
1703
1704 * config/elfos.h (ASM_OUTPUT_IDENT, IDENT_ASM_OP): Remove.
1705 (TARGET_ASM_OUTPUT_IDENT): Define.
1706 * config/i386/djgpp.h (IDENT_ASM_OP): Remove.
1707 * config/i386/gas.h (ASM_OUTPUT_IDENT): Remove.
1708 * config/arm/aout.h (ASM_OUTPUT_IDENT): Remove.
1709 * config/sparc/sparc.h (IDENT_ASM_OP): Remove.
1710 (TARGET_ASM_OUTPUT_IDENT): Define.
1711 * config/picochip/picochip.h (IDENT_ASM_OP): Remove.
1712 (TARGET_ASM_OUTPUT_IDENT): Define.
1713
1714 * config/cris/cris-protos.h (cris_asm_output_ident): Add prototype.
1715 * config/cris/cris.c (cris_asm_output_ident): New function.
1716 * config/cris/cris.h (ASM_OUTPUT_IDENT, IDENT_ASM_OP): Remove.
1717
1718 * config/microblaze/microblaze-protos.h (microblaze_asm_output_ident):
1719 Add prototype.
1720 * config/microblaze/microblaze.c: Include cgraph.h for add_asm_node.
1721 (microblaze_asm_output_ident): Rewrite to work similar to
1722 default_asm_output_ident_directive for front-end .idents.
1723 * config/microblaze/microblaze.h (ASM_OUTPUT_IDENT): Remove.
1724 (TARGET_ASM_OUTPUT_IDENT): Define.
1725
1726 * config/mips/mips.h (ASM_OUTPUT_IDENT): Remove.
1727 * config/mips/sde.h (IDENT_ASM_OP, ASM_OUTPUT_IDENT): Remove.
1728
1729 * config/rx/rx.c: Include cgraph.h for add_asm_node.
1730 (rx_asm_output_ident): New function, similar to
1731 default_asm_output_ident_directive, but handle AS100 syntax also, so
1732 that #ident also works for rx in AS100 syntax.
1733 (TARGET_ASM_OUTPUT_IDENT): Define.
1734 * config/rx/rx.h (IDENT_ASM_OP): Remove.
1735
1736 * Makefile.in: Fix dependencies for c-family/c-lex.o.
1737
1738 2012-06-19 Uros Bizjak <ubizjak@gmail.com>
1739
1740 * config/i386/i386.md (FIST_ROUNDING): New int iterator.
1741 (rounding): Handle UNSPEC_FIST_{FLOOR,CEIL}.
1742 (ROUNDING): Ditto.
1743 (*fist<mode>2_<rounding>_1): Macroize insn from
1744 *fist<mode>2_{floor,ceil}_1 using FIST_ROUNDING int iterator.
1745 (fistdi2_<rounding>): Macroize insn from
1746 fistdi2_{floor,ceil} using FIST_ROUNDING int iterator.
1747 (fistdi2_<rounding>_with_temp and splitters): Macroize insn and
1748 corresponding splitters from fistdi2_{floor,ceil} and corresponding
1749 splitters using FIST_ROUNDING int iterator.
1750 (fist<mode>2_<rounding>): Macroize insn from
1751 fist<mode>2_{floor,ceil} using FIST_ROUNDING int iterator.
1752 (fist<mode>2_<rounding>_with_temp and splitters): Macroize insn and
1753 corresponding splitters from fist<mode>2_{floor,ceil} and corresponding
1754 splitters using FIST_ROUNDING int iterator.
1755 (l<rounding>xf<mode>2): Macroize expander from l{floor,ceil}xf<mode>2
1756 using FIST_ROUNDING int iterator.
1757
1758 2012-06-19 Richard Henderson <rth@redhat.com>
1759
1760 * config/i386/i386-protos.h (ix86_expand_sse2_mulv4si3): Declare.
1761 * config/i386/i386.c (ix86_expand_sse2_mulv4si3): New.
1762 * config/i386/predicates.md (nonimmediate_or_const_vector_operand): New.
1763 * config/i386/sse.md (sse2_mulv4si3): Delete.
1764 (mul<VI4_AVX2>3): Use ix86_expand_sse2_mulv4si3 and
1765 nonimmediate_or_const_vector_operand.
1766
1767 2012-06-19 Richard Henderson <rth@redhat.com>
1768
1769 * expmed.c (struct init_expmed_rtl): Split ...
1770 (init_expmed_one_mode): ... out of ...
1771 (init_expmed): ... here. Initialize integer vector modes also.
1772 (synth_mult): Handle integer vector modes.
1773 (choose_mult_variant): Likewise.
1774 (expand_mult_const): Likewise.
1775 (expand_mult): Likewise.
1776 * machmode.h (GET_MODE_UNIT_BITSIZE): New.
1777
1778 2012-06-19 Richard Henderson <rth@redhat.com>
1779
1780 * config/i386/i386.c (ix86_rtx_costs): Handle CONST_VECTOR, and
1781 integral vector modes.
1782
1783 2012-06-19 Uros Bizjak <ubizjak@gmail.com>
1784
1785 * config/i386/i386.md (FRNDINT_ROUNDING): New int iterator.
1786 (rounding): New int attribute.
1787 (ROUNDING): Ditto.
1788 (frndintxf2_<rounding>): Macroize insn from
1789 frndintxf2_{floor,ceil,trunc} using FRNDINT_ROUNDING int iterator.
1790 (frndintxf2_<rounding>_i387): Macroize insn from
1791 frndintxf2_{floor,ceil,trunc}_i387 using FRNDINT_ROUNDING int iterator.
1792
1793 2012-06-19 Richard Guenther <rguenther@suse.de>
1794
1795 * tree-vrp.c (union_ranges): New function.
1796 (vrp_meet_1): Use union_ranges.
1797 (vrp_meet): Dump what we union and call vrp_meet_1.
1798
1799 2012-06-19 Richard Earnshaw <rearnsha@arm.com>
1800
1801 * arm.md (enum unspec): Delete UNSPEC_SIN and UNSPEC_COS.
1802 (attr type): Remove fmul, ffmul, farith, ffarith, float_em
1803 f_fpa_load, f_fpa_store, f_mem_r, r_mem_f.
1804 (attr write_conflict, attr core_cycles): Update.
1805 * arm-generic.md (r_mem_f_wbuf): Delete reservation.
1806
1807 2012-06-19 Richard Guenther <rguenther@suse.de>
1808
1809 * tree-vrp.c (intersect_ranges): Handle more cases.
1810 (vrp_intersect_ranges): Dump what we intersect and call ...
1811 (vrp_intersect_ranges_1): ... this.
1812
1813 2012-06-19 Richard Guenther <rguenther@suse.de>
1814
1815 PR tree-optimization/53708
1816 * tree-vect-data-refs.c (vect_can_force_dr_alignment_p): Preserve
1817 user-supplied alignment and alignment of decls with the used
1818 attribute.
1819
1820 2012-06-18 Lawrence Crowl <crowl@google.com>
1821
1822 * timevar.def (TV_PHASE_GENERATE): Rename to TV_PHASE_LATE_ASM.
1823 (TV_PHASE_CGRAPH): Rename to TV_PHASE_OPT_GEN.
1824 (TV_PHASE_STREAM_IN): New.
1825 (TV_PHASE_STREAM_OUT): New.
1826 * timevar.c (validate_phases): New.
1827 (timevar_print): Call validate_phases.
1828 * c-decl.c (c_write_global_declarations): Rename use of TV_PHASE_CGRAPH
1829 to TV_PHASE_OPT_GEN.
1830 * langhooks.c (write_global_declarations): Rename use of
1831 TV_PHASE_CGRAPH to TV_PHASE_OPT_GEN. Use TV_PHASE_DBGINFO instead of
1832 TV_PHASE_CHECK_DBGINFO.
1833 * toplev.c (compile_file): Rename use of TV_PHASE_GENERATE to
1834 TV_PHASE_LATE_ASM. Move start of TV_PHASE_LATE_ASM to after call to
1835 lang_hooks.decls.final_write_globals.
1836
1837 2012-06-18 David Edelshn <dje.gcc@gmail.com>
1838
1839 * config/rs6000/aix52.h (TARGET_EXTRA_BUILTINS): Define as 0.
1840
1841 2012-06-18 Uros Bizjak <ubizjak@gmail.com>
1842
1843 PR target/53712
1844 * config/i386/sse.md (*sse4_2_pcmpestr_unaligned): New.
1845 (*sse4_2_pcmpistr_unaligned): New.
1846
1847 2012-06-18 Ian Bolton <ian.bolton@arm.com>
1848 Sameera Deshpande <sameera.deshpande@arm.com>
1849 Greta Yorsh <greta.yorsh@arm.com>
1850
1851 * config/arm/arm-protos.h (arm_output_epilogue): Remove.
1852 * config/arm/arm.c (print_multi_reg): Remove.
1853 (vfp_output_fldmd): Likewise.
1854 (arm_output_epilogue): Likewise.
1855 * config/arm/arm.md (epilogue_insns): Update condition and code.
1856
1857 2012-06-18 Ian Bolton <ian.bolton@arm.com>
1858 Sameera Deshpande <sameera.deshpande@arm.com>
1859 Greta Yorsh <greta.yorsh@arm.com>
1860
1861 * config/arm/arm-protos.h (thumb2_expand_return): New declaration.
1862 * config/arm/arm.c (thumb2_expand_return): New function.
1863 * config/arm/arm.md (return): Update condition and code.
1864
1865 2012-06-18 Ian Bolton <ian.bolton@arm.com>
1866 Sameera Deshpande <sameera.deshpande@arm.com>
1867 Greta Yorsh <greta.yorsh@arm.com>
1868
1869 * config/arm/arm-protos.h (output_return_instruction): New parameter
1870 and int to bool change of parameter types.
1871 * config/arm/arm.c (output_return_instruction): Likewise.
1872 * config/arm/arm.md (arm_simple_return): New pattern.
1873 (arm_return, cond_return, cond_return_inverted): Add new arguments.
1874 * config/arm/thumb2.md (thumb2_return): Update condition and code.
1875
1876 2012-06-18 Ian Bolton <ian.bolton@arm.com>
1877 Sameera Deshpande <sameera.deshpande@arm.com>
1878 Greta Yorsh <greta.yorsh@arm.com>
1879
1880 * config/arm/arm-protos.h (arm_expand_epilogue): New declaration.
1881 * config/arm/arm.c (arm_expand_epilogue): New function.
1882 * config/arm/arm.md (epilogue): Update condition and code.
1883 (sibcall_epilogue): Likewise.
1884
1885 2012-06-18 Ian Bolton <ian.bolton@arm.com>
1886 Sameera Deshpande <sameera.deshpande@arm.com>
1887 Greta Yorsh <greta.yorsh@arm.com>
1888
1889 * config/arm/arm.c (arm_expand_epilogue_apcs_frame): New function.
1890 * config/arm/arm.md (arm_addsi3) Add an alternative.
1891
1892 2012-06-18 Ian Bolton <ian.bolton@arm.com>
1893 Sameera Deshpande <sameera.deshpande@arm.com>
1894 Greta Yorsh <greta.yorsh@arm.com>
1895
1896 * config/arm/arm.md (vfp_pop_multiple_with_writeback) New define_insn.
1897 * config/arm/predicates.md (pop_multiple_fp) New special predicate.
1898 * config/arm/arm.c (arm_emit_vfp_multi_reg_pop): New function.
1899
1900 2012-06-18 Ian Bolton <ian.bolton@arm.com>
1901 Sameera Deshpande <sameera.deshpande@arm.com>
1902 Greta Yorsh <greta.yorsh@arm.com>
1903
1904 * config/arm/arm.md (load_multiple_with_writeback) New define_insn.
1905 (load_multiple, pop_multiple_with_writeback_and_return) Likewise.
1906 (pop_multiple_with_return, ldr_with_return) Likewise.
1907 * config/arm/predicates.md (pop_multiple_return) New special predicate.
1908 * config/arm/arm-protos.h (arm_output_multireg_pop) New declaration.
1909 * config/arm/arm.c (arm_output_multireg_pop) New function.
1910 (arm_emit_multi_reg_pop): New function.
1911
1912 2012-06-18 Greta Yorsh <Greta.Yorsh@arm.com>
1913
1914 * config/arm/arm.c (ldm_stm_operation_p): Require SP
1915 as base register for loads if SP is in the register list.
1916
1917 2012-06-18 Richard Guenther <rguenther@suse.de>
1918
1919 PR tree-optimization/53693
1920 * tree-vect-patterns.c (vect_operation_fits_smaller_type):
1921 Reject operands with more than one use.
1922
1923 2012-06-18 Bill Schmidt <wschmidt@linux.ibm.com>
1924
1925 PR tree-optimization/53703
1926 * tree-ssa-phiopt.c (hoist_adjacent_loads): Skip virtual phis;
1927 correctly set bb_for_def[12].
1928
1929 2012-06-18 Steven Bosscher <steven@gcc.gnu.org>
1930
1931 * config/vax/vax.h (VMS_TARGET): Remove.
1932
1933 2012-06-18 Richard Guenther <rguenther@suse.de>
1934
1935 * tree-vrp.c (extract_range_from_assert): Split out range
1936 intersecting code.
1937 (intersect_ranges): New function.
1938 (vrp_intersect_ranges): Likewise.
1939
1940 2012-06-18 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
1941
1942 * config/s390/s390.c (s390_gimplify_va_arg): Revert change from
1943 r187965.
1944
1945 2012-06-18 Tejas Belagod <tejas.belagod@arm.com>
1946
1947 * doc/md.texi: Document int iterators.
1948 * read-rtl.c (ints): New iterator group.
1949 (find_int): Int iterator group callback.
1950 (apply_int_iterator): Likewise.
1951 (apply_iterators): Traverse int iterator table and add all the used
1952 iterators to list.
1953 (initialize_iterators): Initialize data structures and callbacks for
1954 int iterators.
1955 (read_rtx): Parse and read mappings for int iterators.
1956 (read_rtx_code): Record int iterator usage.
1957
1958 2012-06-18 Richard Sandiford <rdsandiford@googlemail.com>
1959
1960 PR middle-end/53698
1961 * expr.c (expand_expr_addr_expr_1): Convert to tmode before
1962 performing an addition.
1963
1964 2012-06-17 Steven Bosscher <steven@gcc.gnu.org>
1965
1966 * output.h (split_double): Move prototype to rtl.h.
1967 (constructor_static_from_elts_p): Move prototype to tree.c.
1968 * rtl.h (split_double): Moved here from output.h.
1969 * tree.h (constructor_static_from_elts_p): Moved here from output.h.
1970 * final.c (split_double): Move from here ...
1971 * rtlanal.c (split_double): ... to here.
1972 * expr.c: Do not include output.h.
1973
1974 2012-06-17 Steven Bosscher <steven@gcc.gnu.org>
1975
1976 * cfglayout.h: Remove.
1977 * cfglayout.c: Remove.
1978 * function.h (struct function): Remove x_last_location field.
1979 * function.c: Do not include cfglayout.h.
1980 (expand_function_start): Do not call no-op force_next_line_note.
1981 (expand_function_end): Likewise.
1982 * cfgrtl.c: Do not include cfglayout.h. Include gt-cfgrtl.h.
1983 (unlink_insn_chain): Moved here from cfglayout.c.
1984 (skip_insns_after_block, label_for_bb, record_effective_endpoints,
1985 into_cfg_layout_mode, outof_cfg_layout_mode,
1986 pass_into_cfg_layout_mode, pass_outof_cfg_layout_mode,
1987 relink_block_chain, fixup_reorder_chain, verify_insn_chain,
1988 fixup_fallthru_exit_predecessor, force_one_exit_fallthru,
1989 cfg_layout_can_duplicate_bb_p, duplicate_insn_chain,
1990 cfg_layout_duplicate_bb, cfg_layout_initialize, break_superblocks,
1991 cfg_layout_finalize): Likewise.
1992 (rtl_can_remove_branch_p): Likewise.
1993 * rtl.h (insn_scope): Move prototype from cfglayout.h here.
1994 (duplicate_insn_chain): Likewise.
1995 (force_next_line_note): Remove prototype.
1996 * emit-rtl.c: Do not include tree-flow.h, egad. Include vecprim.h.
1997 (last_location): Remove #define to emit.x_last_location.
1998 (force_next_line_note): Remove no-op function.
1999 (init_emit): Don't set x_last_location.
2000 (block_locators_locs, block_locators_blocks, locations_locators_locs,
2001 locations_locators_vals, prologue_locator, epilogue_locator,
2002 curr_location, last_location, curr_block, last_block, curr_rtl_loc):
2003 Move POD to here from cfglayout.c.
2004 (insn_locators_alloc, insn_locators_finalize, insn_locators_free,
2005 set_curr_insn_source_location, get_curr_insn_source_location,
2006 set_curr_insn_block, get_curr_insn_block, curr_insn_locator,
2007 locator_scope, insn_scope, locator_location, locator_line, insn_line,
2008 locator_file, insn_file, locator_eq): Move to here from cfglayout.c.
2009 * cfghooks.h: Remove double-include protection.
2010 (can_copy_bbs_p, copy_bbs): Move prototypes from cfglayout.h to here.
2011 * cfghooks.c (can_copy_bbs_p, copy_bbs): Move to here from cfglayout.c.
2012 * final.c: Do not include cfglayout.h.
2013 (choose_inner_scope, change_scope): Move to here from cfglayout.c.
2014 (reemit_insn_block_notes): Likewise. Make static.
2015 * tree-flow.h (tree_could_trap_p, operation_could_trap_helper_p,
2016 operation_could_trap_p, tree_could_throw_p): Move from here...
2017 * tree.h: ... to here.
2018 * gengtype.c (open_base_files): Remove cfglayout.h from the list.
2019 * profile.c: Do not include cfghooks.h.
2020 * cfgloopmanip.c: Do not include cfglayout.h and cfghooks.h.
2021 * modulo-sched.c: Likewise.
2022 * loop-unswitch.c: Do not include cfglayout.h.
2023 * sched-ebb.c: Likewise.
2024 * tracer.c: Likewise.
2025 * ddg.c: Likewise.
2026 * tree-vect-loop-manip.c: Likewise.
2027 * loop-init.c: Likewise.
2028 * dwarf2out.c: Likewise.
2029 * hw-doloop.c: Likewise.
2030 * loop-unroll.c: Likewise.
2031 * cfgcleanup.c: Likewise.
2032 * bb-reorder.c: Likewise.
2033 * sched-rgn.c: Likewise.
2034 * tree-cfg.c: Likewise.
2035 * config/alpha/alpha.c: Likewise.
2036 * config/spu/spu.c: Likewise.
2037 * config/sparc/sparc.c: Likewise.
2038 * config/sh/sh.c: Likewise.
2039 * config/c6x/c6x.c: Likewise.
2040 * config/ia64/ia64.c: Likewise.
2041 * config/rs6000/rs6000.c: Likewise.
2042 * config/score/score.c: Likewise.
2043 * config/mips/mips.c: Likewise.
2044 * config/bfin/bfin.c: Likewise.
2045 * Makefile.in (CFGAYOUT_H): Remove, and fixup users.
2046 * config/rs6000/t-rs6000 (rs6000.o): Do not depend on cfglayout.h.
2047 * config/spu/t-spu-elf (spu.o: $): Likewise.
2048 * config/sparc/t-sparc (sparc.o): Do not depend on CFGLAYOUT_H.
2049
2050 2012-06-17 Steven Bosscher <steven@gcc.gnu.org>
2051
2052 * cfgloop.h: Do not include rtl.h.
2053 (enum iv_extend_code): New.
2054 (struct rtx_iv): Use iv_extend_code instead of rtx_code.
2055 * Makefile.in (CFGLOOP_H): Do not depend on RTL_H.
2056 * loop-iv.c (iv_extend_to_rtx_code): New function to translate
2057 an IV_EXTEND_CODE to an RTX_CODE.
2058 (dump_iv_info): Update for rtx_iv field type change.
2059 (iv_constant): Likewise.
2060 (iv_subreg): Likewise.
2061 (iv_extend): Likewise.
2062 (iv_neg): Likewise.
2063 (iv_add): Likewise.
2064 (iv_mult): Likewise.
2065 (iv_shift): Likewise.
2066 (get_biv_step_1): Likewise.
2067 (get_biv_step): Likewise.
2068 (iv_analyze_biv): Likewise.
2069 (get_iv_value): Likewise.
2070 (shorten_into_mode): Likewise.
2071 (canonicalize_iv_subregs): Likewise.
2072 * sese.c (sese_build_liveouts): Use MAY_HAVE_DEBUG_STMTS instead
2073 of MAY_HAVE_DEBUG_INSNS.
2074 * tree-ssa-loop-ivopts.c: Include recog.h after expr.h.
2075 * tree-ssa-loop-prefetch.c: Likewise.
2076
2077 2012-06-17 Steven Bosscher <steven@gcc.gnu.org>
2078
2079 * expmed.c (ceil_log2): Move from here...
2080 * hwint.c: ... to here for older GCCs...
2081 * hwint.h: ... and here for newer GCCs.
2082 * rtl.h (ceil_log2): Remove prototype.
2083
2084 * tree-phinodes.c: Do not include rtl.h.
2085 * Makefile.in (tree-phinodes.o): Do not depend on RTL_H.
2086
2087 2012-06-17 Steven Bosscher <steven@gcc.gnu.org>
2088
2089 * config/cris/cris.h (TARGET_ELF): Remove.
2090 (FORCE_EH_FRAME_INFO_IN_DATA_SECTION): Remove.
2091 (CRIS_ASM_OUTPUT_ALIGNED_DECL_COMMON): Simpify using TARGET_ELF==1.
2092 (LOCAL_LABEL_PREFIX): Likewise.
2093 * config/cris/cris.c (cris_target_asm_named_section): Remove.
2094 (cris_option_override): Simpify using TARGET_ELF==1.
2095 (cris_file_start): Likewise.
2096 * config/cris/cris-protos.h (cris_target_asm_named_section): Remove.
2097
2098 2012-06-17 Uros Bizjak <ubizjak@gmail.com>
2099
2100 * config/i386/sse.md (vcvtph2ps): Fix vec_select selector.
2101
2102 2012-06-16 Eric Botcazou <ebotcazou@adacore.com>
2103
2104 PR middle-end/53590
2105 * tree-inline.c (initialize_cfun): Copy can_delete_dead_exceptions.
2106
2107 2012-06-15 Easwaran Raman <eraman@google.com>
2108
2109 * passes.c (init_optimization_passes): Remove pass_call_cdce
2110 from its current position and insert after pass_dce.
2111
2112 2012-06-15 Walter Lee <walt@tilera.com>
2113
2114 * config/tilegx/sync.md (atomic_fetch_<fetchop_name><mode>): Fix typo.
2115
2116 2012-06-15 Richard Earnshaw <rearnsha@arm.com>
2117
2118 * arm.c (note_invalid_constants): Don't return a result.
2119 (arm_memory_load_p): Delete function.
2120 (arm_const_double_rtx): Delete iterator variable i;
2121 (fp_immediate_constant): Likewise.
2122 (fp_const_from_val): Likewise.
2123
2124 * arm.c (arm_init_iwmmxt_builtins): Delete void_ftype_void.
2125
2126 2012-06-15 Marc Glisse <marc.glisse@inria.fr>
2127
2128 PR c++/51033
2129 * c-typeck.c (c_build_vec_perm_expr): Move to c-family/c-common.c.
2130 * c-tree.h (c_build_vec_perm_expr): Move to c-family/c-common.h.
2131
2132 2012-06-15 Georg-Johann Lay <avr@gjlay.de>
2133
2134 * config/avr/avr.c (avr_default_expand_builtin): New function.
2135 (avr_expand_builtin): Use it.
2136 (avr_expand_unop_builtin): Remove.
2137 (avr_expand_binop_builtin): Remove.
2138 (avr_expand_triop_builtin): Remove.
2139
2140 2012-06-15 Michael Matz <matz@suse.de>
2141
2142 PR middle-end/38474
2143 * cfgexpand.c (add_alias_set_conflicts): Remove.
2144 (expand_used_vars): Don't call it.
2145 (aggregate_contains_union_type): Remove.
2146 * function.c (n_temp_slots_in_use): New static data.
2147 (make_slot_available, assign_stack_temp_for_type): Update it.
2148 (init_temp_slots): Zero it.
2149 (remove_unused_temp_slot_addresses): Use it for quicker removal.
2150 (remove_unused_temp_slot_addresses_1): Use htab_clear_slot.
2151
2152 2012-06-15 Michael Matz <matz@suse.de>
2153
2154 * gimplify.c (gimplify_compound_literal_expr): Take gimple_test_f
2155 argument, don't emit assign statement if value is directly usable.
2156 (gimplify_expr): Adjust.
2157
2158 2012-06-15 Michael Matz <matz@suse.de>
2159
2160 * gimplify.c (gimplify_modify_expr): Fold generated statements.
2161 * gimple-fold.c (can_refer_decl_in_current_unit_p): Check flag_ltrans.
2162
2163 2012-06-15 Richard Guenther <rguenther@suse.de>
2164
2165 * tree-vrp.c (set_and_canonicalize_value_range): Use canonical
2166 predicates to set VR_UNDEFINED and VR_VARYING. Drop a case
2167 we assert for in set_value_range to VR_VARYING.
2168
2169 2012-06-15 Richard Earnshaw <rearnsha@arm.com>
2170
2171 * arm.md (addsf3, adddf3): Use s_register_operand.
2172 (subsf3, subdf3): Likewise.
2173 (mulsf3, muldf3): Likewise.
2174 (difsf3, divdf3): Likewise.
2175 (movsfcc, movdfcc): Likewise.
2176 * predicates.md (f_register_operand): Delete.
2177 (arm_float_rhs_operand): Delete.
2178 (arm_float_add_operand): Delete.
2179 (arm_float_compare_operand): Use s_register_operand when
2180 there's no VFP.
2181 (cirrus_register_operand): Delete.
2182 (cirrus_fp_register): Delete.
2183 (cirrus_shift_const): Delete.
2184 (cmpdi_operand): Remove Maverick support.
2185 * constraints.md (f, v, H): Delete constraints.
2186 (G): Update documentation.
2187 * arm.c (fp_consts_inited): Convert to bool.
2188 (strings_fp): Delete.
2189 (values_fp): Delete.
2190 (value_fp0): New variable.
2191 (init_fp_table): Simplify logic.
2192 (arm_const_double_rtx): Likewise.
2193 (fp_immediate_constant): Likewise.
2194 (fp_const_from_val): Likewise.
2195 (neg_const_double_rtx_ok_for_fpa): Delete.
2196 * doc/md.texi (ARM constraints): Update documentation.
2197
2198 2012-06-15 Ulrich Weigand <ulrich.weigand@linaro.org>
2199
2200 PR tree-optimization/53636
2201 * tree-vect-data-refs.c (vect_compute_data_ref_alignment): Verify
2202 stride when doing basic-block vectorization.
2203
2204 2012-06-15 Ramana Radhakrishnan <ramana.radhakrishnan@linaro.org>
2205
2206 * tree-vect-generic.c (lower_vec_perm): Propagate vector constants
2207 into VEC_PERM_EXPR.
2208
2209 2012-06-15 Jakub Jelinek <jakub@redhat.com>
2210
2211 * tree-vect-patterns.c (vect_pattern_recog): Don't unnecessarily
2212 allocate and free bbs array for the SLP case.
2213
2214 PR tree-optimization/51581
2215 * expr.h (choose_multiplier): New prototype.
2216 * expmed.c (choose_multiplier): No longer static.
2217 Change multiplier_ptr from rtx * to UHWI *.
2218 (expand_divmod): Adjust callers.
2219 * tree-vect-patterns.c (vect_recog_sdivmod_pow2_pattern): Renamed to...
2220 (vect_recog_divmod_pattern): ... this. Pass bb_vinfo as last
2221 argument to new_stmt_vec_info. Attempt to optimize also divisions
2222 by non-pow2 constants if integer vector division isn't supported.
2223 * tree-vect-stmts.c (vect_analyze_stmt): If node != NULL,
2224 don't look at pattern stmts and sequences.
2225
2226 2012-06-15 Eric Botcazou <ebotcazou@adacore.com>
2227
2228 PR middle-end/53590
2229 * common.opt (-fdelete-dead-exceptions): New switch.
2230 * doc/invoke.texi (Code Gen Options): Document it.
2231 * cse.c (count_reg_usage) <CALL_INSN>: Use !insn_nothrow_p in lieu of
2232 insn_could_throw_p predicate. Do not skip an insn that could throw
2233 if dead exceptions can be deleted.
2234 (insn_live_p): Likewise, do not return true in that case.
2235 * dce.c (can_alter_cfg): New flag.
2236 (deletable_insn_p): Do not return false for an insn that can throw if
2237 the CFG can be altered and dead exceptions can be deleted.
2238 (init_dce): Set can_alter_cfg to false for fast DCE, true otherwise.
2239 * dse.c (scan_insn): Use !insn_nothrow_p in lieu of insn_could_throw_
2240 predicate. Do not preserve an insn that could throw if dead exceptions
2241 can be deleted.
2242 * function.h (struct function): Add can_delete_dead_exceptions flag.
2243 * function.c (allocate_struct_function): Set it.
2244 * lto-streamer-in.c (input_struct_function_base): Stream it.
2245 * lto-streamer-out.c (input_struct_function_base): Likewise.
2246 * tree-ssa-dce.c (mark_stmt_if_obviously_necessary): Do not mark a
2247 statement that could throw as necessary if dead exceptions can be
2248 deleted.
2249
2250 2012-06-14 Maxim Kuvyrkov <maxim@codesourcery.com>
2251
2252 * config/tilegx/sync.md (atomic_fetch_sub<mode>): Fix typo.
2253
2254 2012-06-14 Oleg Endo <olegendo@gcc.gnu.org>
2255
2256 PR target/53568
2257 * config/sh/sh.md: Add peephole for swapbsi2.
2258 (*swapbisi2_and_shl8, *swapbhisi2): New insns and splits.
2259
2260 2012-06-14 Uros Bizjak <ubizjak@gmail.com>
2261
2262 * config/i386/i386.md (*zero_extendsidi2): Remove x,x alternative.
2263 (*zero_extendsidi2_rex64): Ditto. Remove isa attribute.
2264
2265 2012-06-14 Jakub Jelinek <jakub@redhat.com>
2266
2267 PR target/53639
2268 * config/i386/i386.md (*anddi_1 into *andsi_1_zext splitter): New.
2269
2270 2012-06-14 Richard Earnshaw <rearnsha@arm.com>
2271
2272 * arm.c (arm_cirrus_insn_p): Delete.
2273 (cirrus_reorg): Delete.
2274 (arm_reorg): Don't call cirrus_reorg.
2275 (arm_final_prescan_insn_p): Don't check for cirrus insns.
2276 * arm.md (define_attr "type"): Remove mav_farith and mav_dmult.
2277 (adddi3, subdi3): Remove Maverick support.
2278 (arm_adddi3): Likewise.
2279 (adddi_sesidi_di, adddi_zesidi_di): Likewise.
2280 (addsf3, adddf3): Likewise.
2281 (subsf3, subdf3): Likewise.
2282 (mulsf3, muldf3): Likewise.
2283 (ashldi3, ashrdi3, lshrdi3): Likewise.
2284 (floatsisf2, floatsidf2): Likewise.
2285 (fix_truncsfsi2, fix_truncdfsi2): Likewise.
2286 (arm_movdi, thumb1_movdi_insn): Likewise.
2287 (arm_cmpdi_insn): Likewise.
2288 (cirrus_cmpsf, cirrus_cmpdf, cirrus_cmpdi): Likewise.
2289 (cirrus.md): Don't include.
2290 * cirrus.md: Delete file.
2291 * t-arm (MD_INCLUDES): Remove cirrus.md.
2292
2293 2012-06-14 Eric Botcazou <ebotcazou@adacore.com>
2294
2295 * dwarf2out.c (function_possibly_abstracted_p): New static function.
2296 (gen_subprogram_die): Use it function_possibly_abstracted_p in lieu of
2297 cgraph_function_possibly_inlined_p.
2298 (gen_inlined_subroutine_die): Return if the origin is to be ignored.
2299 (process_scope_var): Do not emit concrete instances of abstracted
2300 nested functions from here.
2301 (gen_decl_die): Emit the abstract instance if the function is possibly
2302 abstracted and not only possibly inlined.
2303 (dwarf2out_finish): Find the first non-abstract parent instance and
2304 attach concrete instances on the limbo list to it.
2305
2306 2012-06-14 Richard Earnshaw <rearnsha@arm.com>
2307
2308 * arm.md (divsf3, divdf3): Remove FPA support.
2309 (negsf2, negdf2): Likewise.
2310 (sqrtsf2, sqrtdf2): Likewise.
2311 (movdfcc): Likewise.
2312 (modsf3, moddf3, movxf): Delete.
2313 (push_fp_multi): Delete.
2314 (fpa.md): Don't include it.
2315 * fpa.md: Delete file.
2316 * t-arm (MD_INCLUDES): Remove fpa.md.
2317
2318 2012-06-14 Bill Schmidt <wschmidt@linux.ibm.com>
2319
2320 * tree-vectorizer.h (vect_get_stmt_cost): Move from tree-vect-stmts.c.
2321 (cost_for_stmt): Remove decl.
2322 (vect_get_single_scalar_iteration_cost): Correct typo in name.
2323 * tree-vect-loop.c (vect_get_cost): Remove.
2324 (vect_get_single_scalar_iteration_cost): Correct typo in name; use
2325 vect_get_stmt_cost rather than vect_get_cost.
2326 (vect_get_known_peeling_cost): Use vect_get_stmt_cost rather than
2327 vect_get_cost.
2328 (vect_estimate_min_profitable_iters): Correct typo in call to
2329 vect_get_single_scalar_iteration_cost; use vect_get_stmt_cost rather
2330 than vect_get_cost.
2331 (vect_model_reduction_cost): Use vect_get_stmt_cost rather than
2332 vect_get_cost.
2333 (vect_model_induction_cost): Likewise.
2334 * tree-vect-data-refs.c (vect_peeling_hash_get_lowest_cost): Correct
2335 typo in call to vect_get_single_scalar_iteration_cost.
2336 * tree-vect-stmts.c (vect_get_stmt_cost): Move to tree-vectorizer.h.
2337 (cost_for_stmt): Remove unnecessary function.
2338 * Makefile.in (TREE_VECTORIZER_H): Update dependencies.
2339
2340 2012-06-14 Richard Earnshaw <rearnsha@arm.com>
2341
2342 * arm.opt (mfp=2, mfp=3, mfpe, mfpe=2, mfpe=3): Delete options.
2343 * arm-fpus.def (fpa, fpe2, fpe3, maverick): Delete FPU types.
2344 * arm-tables.opt: Regenerated.
2345 * doc/invoke.texi: Remove references to deleted options.
2346
2347 2012-06-14 Sandeep Kumar Singh <Sandeep.Singh2@kpitcummins.com>
2348
2349 * config/h8300/genmova.sh: Modified to add offset bits of
2350 mova/Sz assembly instruction for memory access.
2351 * config/h8300/h8300.c: Likewise.
2352 * config/h8300/mova.md: Likewise.
2353
2354 2012-06-12 Christian Bruel <christian.bruel@st.com>
2355
2356 PR target/53621
2357 * config/sh/sh.c (sh_option_override): Don't force
2358 flag_omit_frame_pointer and maccumulate_outgoing_args.
2359 * config/sh/sh.opt (maccumulate-outgoing-args): Init as Var.
2360
2361 2012-06-14 Richard Guenther <rguenther@suse.de>
2362
2363 * tree-vrp.c (VR_INITIALIZER): New define.
2364 (ranges_from_anti_range): New function.
2365 (extract_range_from_binary_expr_1): Decompose operations on
2366 VR_ANTI_RANGEs to operations on VR_RANGE.
2367 (extract_range_from_unary_expr_1): Likewise.
2368 (extract_range_from_binary_expr_1, extract_range_from_binary_expr,
2369 extract_range_from_unary_expr_1, extract_range_from_unary_expr,
2370 extract_range_from_cond_expr, adjust_range_with_scev,
2371 vrp_visit_assignment_or_call, vrp_visit_phi_node,
2372 simplify_bit_ops_using_ranges): Use VR_INITIALIZER.
2373
2374 2012-06-13 Richard Henderson <rth@redhat.com>
2375
2376 * hwint.h (HOST_WIDEST_INT_C): New.
2377 (HOST_WIDE_INT_C): New.
2378 (HOST_WIDE_INT_1): Use it.
2379 * config/alpha/alpha.c (alpha_trampoline_init): Use it.
2380
2381 2012-06-13 Alexandre Oliva <aoliva@redhat.com>
2382
2383 PR debug/49888
2384 * var-tracking.c: Include alias.h.
2385 (overlapping_mems): New struct.
2386 (drop_overlapping_mem_locs): New.
2387 (clobber_overlapping_mems): New.
2388 (var_mem_delete_and_set, var_mem_delete): Call it.
2389 (val_bind): Likewise, but only if modified.
2390 (compute_bb_dataflow, emit_notes_in_bb): Call it on MEMs.
2391 * Makefile.in (var-tracking.o): Depend in $(ALIAS_H).
2392
2393 2012-06-13 Alexandre Oliva <aoliva@redhat.com>
2394
2395 PR debug/47624
2396 * var-tracking.c (loc_exp_dep_pool): New.
2397 (vt_emit_notes): Create and release the pool.
2398 (compute_bb_dataflow): Use value-based locations in MO_VAL_SET.
2399 (emit_notes_in_bb): Likewise.
2400 (loc_exp_dep_insert): Deal with NOT_ONEPART vars.
2401 (notify_dependents_of_changed_value): Likewise.
2402 (notify_dependents_of_resolved_value): Check that NOT_ONEPART
2403 variables don't have a VAR_LOC_DEP_LST.
2404 (emit_note_insn_var_location): Expand NOT_ONEPART locs that are
2405 VALUEs or MEMs of VALUEs.
2406
2407 2012-06-13 Alexandre Oliva <aoliva@redhat.com>
2408
2409 PR debug/52983
2410 PR debug/48866
2411 * dce.c (word_dce_process_block): Insert debug temps only if the
2412 insn is not marked.
2413 (dce_process_block): Likewise, and if debug.used is not empty,
2414 and only after iterating over all DEFs that might mark the insn.
2415
2416 2012-06-13 Alexandre Oliva <aoliva@redhat.com>
2417
2418 * common.opt (ftree-coalesce-inlined-vars): New.
2419 (ftree-coalesce-vars): New.
2420 * doc/invoke.texi: Document them.
2421 * tree-ssa-copyrename.c (copy_rename_partition_coalesce):
2422 Implement them.
2423
2424 2012-06-13 Richard Sandiford <rdsandiford@googlemail.com>
2425
2426 * read-rtl.c (mapping): Remove index field. Add current_value field.
2427 Define heap vectors.
2428 (iterator_group): Fix long line. Remove num_builtins field and
2429 uses_iterator fields. Make apply_iterator take a void * parameter.
2430 (iterator_use, atttribute_use): New structures.
2431 (iterator_traverse_data, BELLWETHER_CODE, bellwether_codes): Delete.
2432 (current_iterators, iterator_uses, attribute_uses): New variables.
2433 (uses_mode_iterator_p, uses_code_iterator_p): Delete.
2434 (apply_mode_iterator, apply_code_iterator): Take a void * parameter.
2435 (map_attr_string, apply_iterator_to_string): Remove iterator
2436 and value parameters. Look through all current iterator values
2437 for a matching attribute.
2438 (mode_attr_index, apply_mode_maps): Delete.
2439 (apply_iterator_to_rtx): Replace with...
2440 (copy_rtx_for_iterators): ...this new function.
2441 (uses_iterator_p, apply_iterator_traverse): Delete.
2442 (apply_attribute_uses, add_current_iterators, apply_iterators): New
2443 functions.
2444 (add_mapping): Remove index field. Set current_value field.
2445 (initialize_iterators): Don't set num_builtins and uses_iterator_p
2446 fields.
2447 (find_iterator): Delete.
2448 (record_iterator_use, record_attribute_use): New functions.
2449 (record_potential_iterator_use): New function.
2450 (check_code_iterator): Remove handling of bellwether codes.
2451 (read_rtx): Remove mode maps. Truncate iterator and attribute uses.
2452 (read_rtx_code, read_nested_rtx, read_rtx_variadic): Remove mode_maps
2453 parameter. Use the first code iterator value instead of the
2454 bellwether_codes array. Use record_potential_iterator_use for modes.
2455
2456 2012-06-13 Oleg Endo <olegendo@gcc.gnu.org>
2457
2458 PR target/53568
2459 * config/sh/sh.md (bswapsi2): New expander.
2460 (swapbsi2): New insn.
2461
2462 2012-06-13 H.J. Lu <hongjiu.lu@intel.com>
2463
2464 PR target/53647
2465 * config/i386/i386.c (ix86_tune_cost): New variable.
2466 (ix86_option_override_internal): Set ix86_tune_cost. Use
2467 ix86_tune_cost for simultaneous_prefetches, prefetch_block,
2468 l1_cache_size and l2_cache_size.
2469
2470 2012-06-13 Richard Guenther <rguenther@suse.de>
2471
2472 * tree-vrp.c (vrp_meet): Properly meet equivalent ranges.
2473 Handle meeting two VR_RANGE to an VR_ANTI_RANGE. Implement
2474 all possible meetings of VR_RANGE with VR_ANTI_RANGE and
2475 VR_ANTI_RANGE with VR_ANTI_RANGE.
2476
2477 2012-06-13 Richard Earnshaw <rearnsha@arm.com>
2478
2479 * config.gcc (unsupported): Move obsoleted FPA-based configurations
2480 here from ...
2481 (obsolete): ... here.
2482 (arm*-*-freebsd*): Remove.
2483 (arm*-*-linux*): Only accept EABI variants. Simplify logic.
2484 (arm*-*-uclinux*): Likewise.
2485 (arm*-*-ecos-elf): Remove.
2486 (arm*-*-rtems*): Remove.
2487 (arm*-*-elf): Remove.
2488 (arm*-wince-pe*): Remove.
2489 (arm, --with-fpu): Remove support for fpa and Maverick variants.
2490 * arm/ecos-elf.h: Delete.
2491 * arm/t-strongarm-elf: Delete.
2492 * arm/rtems-elf.h: Delete.
2493 * arm/wince-pe.h: Delete.
2494 * arm/pe.c: Delete.
2495 * arm/pe.h: Delete.
2496 * arm/t-wince-pe: Delete.
2497
2498 2012-06-13 Bill Schmidt <wschmidt@linux.ibm.com>
2499
2500 PR tree-optimization/53647
2501 * tree-ssa-phiopt.c (gate_hoist_loads): Skip transformation for
2502 targets with no defined cache line size.
2503
2504 2012-06-13 Bill Schmidt <wschmidt@linux.ibm.com>
2505
2506 * targhooks.c (default_builtin_vectorized_conversion): Handle
2507 vec_construct, using vectype to base cost on subparts.
2508 * target.h (enum vect_cost_for_stmt): Add vec_construct.
2509 * tree-vect-stmts.c (vect_model_load_cost): Use vec_construct
2510 instead of scalar_to-vec.
2511 * config/spu/spu.c (spu_builtin_vectorization_cost): Handle
2512 vec_construct in same way as default for now.
2513 * config/i386/i386.c (ix86_builtin_vectorization_cost): Likewise.
2514 * config/rs6000/rs6000.c (rs6000_builtin_vectorization_cost):
2515 Handle vec_construct, including special case for 32-bit loads.
2516
2517 2012-06-13 Xinyu Qi <xyqi@marvell.com>
2518
2519 * config/arm/arm.c (FL_IWMMXT2): New define.
2520 (arm_arch_iwmmxt2): New variable.
2521 (arm_option_override): Enable use of iWMMXt with VFP.
2522 Disable use of iWMMXt with NEON. Disable use of iWMMXt under
2523 Thumb mode. Set arm_arch_iwmmxt2.
2524 (arm_expand_binop_builtin): Accept VOIDmode op.
2525 (enum arm_builtins): Revise built-in fcode.
2526 (IWMMXT2_BUILTIN): New define.
2527 (IWMMXT2_BUILTIN2): Likewise.
2528 (iwmmx2_mbuiltin): Likewise.
2529 (builtin_description bdesc_2arg): Revise built in declaration.
2530 (builtin_description bdesc_1arg): Likewise.
2531 (arm_init_iwmmxt_builtins): Revise built in initialization.
2532 (arm_expand_builtin): Revise built in expansion.
2533 (arm_output_iwmmxt_shift_immediate): New function.
2534 (arm_output_iwmmxt_tinsr): Likewise.
2535 * config/arm/arm-protos.h (arm_output_iwmmxt_shift_immediate): Declare.
2536 (arm_output_iwmmxt_tinsr): Likewise.
2537 * config/arm/iwmmxt.md (WCGR0, WCGR1, WCGR2, WCGR3): New constant.
2538 (iwmmxt_psadbw, iwmmxt_walign, iwmmxt_tmrc, iwmmxt_tmcr): Delete.
2539 (rorv4hi3, rorv2si3, rordi3): Likewise.
2540 (rorv4hi3_di, rorv2si3_di, rordi3_di): Likewise.
2541 (ashrv4hi3_di, ashrv2si3_di, ashrdi3_di): Likewise.
2542 (lshrv4hi3_di, lshrv2si3_di, lshrdi3_di): Likewise.
2543 (ashlv4hi3_di, ashlv2si3_di, ashldi3_di): Likewise.
2544 (iwmmxt_tbcstqi, iwmmxt_tbcsthi, iwmmxt_tbcstsi): Likewise
2545 (*iwmmxt_clrv8qi, *iwmmxt_clrv4hi, *iwmmxt_clrv2si): Likewise.
2546 (tbcstv8qi, tbcstv4hi, tbsctv2si): New pattern.
2547 (iwmmxt_clrv8qi, iwmmxt_clrv4hi, iwmmxt_clrv2si): Likewise.
2548 (*and<mode>3_iwmmxt, *ior<mode>3_iwmmxt, *xor<mode>3_iwmmxt): Likewise.
2549 (ror<mode>3, ror<mode>3_di): Likewise.
2550 (ashr<mode>3_di, lshr<mode>3_di, ashl<mode>3_di): Likewise.
2551 (ashli<mode>3_iwmmxt, iwmmxt_waligni, iwmmxt_walignr): Likewise.
2552 (iwmmxt_walignr0, iwmmxt_walignr1): Likewise.
2553 (iwmmxt_walignr2, iwmmxt_walignr3): Likewise.
2554 (iwmmxt_setwcgr0, iwmmxt_setwcgr1): Likewise.
2555 (iwmmxt_setwcgr2, iwmmxt_setwcgr3): Likewise.
2556 (iwmmxt_getwcgr0, iwmmxt_getwcgr1): Likewise.
2557 (iwmmxt_getwcgr2, iwmmxt_getwcgr3): Likewise.
2558 (All instruction patterns): Add wtype attribute.
2559 (*iwmmxt_arm_movdi, *iwmmxt_movsi_insn): iWMMXt coexist with vfp.
2560 (iwmmxt_uavgrndv8qi3, iwmmxt_uavgrndv4hi3): Revise the pattern.
2561 (iwmmxt_uavgv8qi3, iwmmxt_uavgv4hi3): Likewise.
2562 (ashr<mode>3_iwmmxt, ashl<mode>3_iwmmxt, lshr<mode>3_iwmmxt): Likewise.
2563 (iwmmxt_tinsrb, iwmmxt_tinsrh, iwmmxt_tinsrw):Likewise.
2564 (eqv8qi3, eqv4hi3, eqv2si3, gtuv8qi3): Likewise.
2565 (gtuv4hi3, gtuv2si3, gtv8qi3, gtv4hi3, gtv2si3): Likewise.
2566 (iwmmxt_wunpckihh, iwmmxt_wunpckihw, iwmmxt_wunpckilh): Likewise.
2567 (iwmmxt_wunpckilw, iwmmxt_wunpckehub, iwmmxt_wunpckehuh): Likewise.
2568 (iwmmxt_wunpckehuw, iwmmxt_wunpckehsb, iwmmxt_wunpckehsh): Likewise.
2569 (iwmmxt_wunpckehsw, iwmmxt_wunpckelub, iwmmxt_wunpckeluh): Likewise.
2570 (iwmmxt_wunpckeluw, iwmmxt_wunpckelsb, iwmmxt_wunpckelsh): Likewise.
2571 (iwmmxt_wunpckelsw, iwmmxt_wmadds, iwmmxt_wmaddu): Likewise.
2572 (iwmmxt_wsadb, iwmmxt_wsadh, iwmmxt_wsadbz, iwmmxt_wsadhz): Likewise.
2573 (iwmmxt2.md): Include.
2574 * config/arm/arm.h (TARGET_CPU_CPP_BUILTINS): Define __IWMMXT2__.
2575 (TARGET_IWMMXT2): New define.
2576 (TARGET_REALLY_IWMMXT2): Likewise.
2577 (arm_arch_iwmmxt2): Declare.
2578 * config/arm/mmintrin.h: Use __IWMMXT__ to enable iWMMXt intrinsics.
2579 Use __IWMMXT2__ to enable iWMMXt2 intrinsics.
2580 Use C name-mangling for intrinsics.
2581 (__v8qi): Redefine.
2582 (_mm_cvtsi32_si64, _mm_andnot_si64, _mm_sad_pu8): Revise.
2583 (_mm_sad_pu16, _mm_align_si64, _mm_setwcx, _mm_getwcx): Likewise.
2584 (_m_from_int): Likewise.
2585 (_mm_sada_pu8, _mm_sada_pu16): New intrinsic.
2586 (_mm_alignr0_si64, _mm_alignr1_si64, _mm_alignr2_si64): Likewise.
2587 (_mm_alignr3_si64, _mm_tandcb, _mm_tandch, _mm_tandcw): Likewise.
2588 (_mm_textrcb, _mm_textrch, _mm_textrcw, _mm_torcb): Likewise.
2589 (_mm_torch, _mm_torcw, _mm_tbcst_pi8, _mm_tbcst_pi16): Likewise.
2590 (_mm_tbcst_pi32): Likewise.
2591 (_mm_abs_pi8, _mm_abs_pi16, _mm_abs_pi32): New iWMMXt2 intrinsic.
2592 (_mm_addsubhx_pi16, _mm_absdiff_pu8, _mm_absdiff_pu16): Likewise.
2593 (_mm_absdiff_pu32, _mm_addc_pu16, _mm_addc_pu32): Likewise.
2594 (_mm_avg4_pu8, _mm_avg4r_pu8, _mm_maddx_pi16, _mm_maddx_pu16): Likewise.
2595 (_mm_msub_pi16, _mm_msub_pu16, _mm_mulhi_pi32): Likewise.
2596 (_mm_mulhi_pu32, _mm_mulhir_pi16, _mm_mulhir_pi32): Likewise.
2597 (_mm_mulhir_pu16, _mm_mulhir_pu32, _mm_mullo_pi32): Likewise.
2598 (_mm_qmulm_pi16, _mm_qmulm_pi32, _mm_qmulmr_pi16): Likewise.
2599 (_mm_qmulmr_pi32, _mm_subaddhx_pi16, _mm_addbhusl_pu8): Likewise.
2600 (_mm_addbhusm_pu8, _mm_qmiabb_pi32, _mm_qmiabbn_pi32): Likewise.
2601 (_mm_qmiabt_pi32, _mm_qmiabtn_pi32, _mm_qmiatb_pi32): Likewise.
2602 (_mm_qmiatbn_pi32, _mm_qmiatt_pi32, _mm_qmiattn_pi32): Likewise.
2603 (_mm_wmiabb_si64, _mm_wmiabbn_si64, _mm_wmiabt_si64): Likewise.
2604 (_mm_wmiabtn_si64, _mm_wmiatb_si64, _mm_wmiatbn_si64): Likewise.
2605 (_mm_wmiatt_si64, _mm_wmiattn_si64, _mm_wmiawbb_si64): Likewise.
2606 (_mm_wmiawbbn_si64, _mm_wmiawbt_si64, _mm_wmiawbtn_si64): Likewise.
2607 (_mm_wmiawtb_si64, _mm_wmiawtbn_si64, _mm_wmiawtt_si64): Likewise.
2608 (_mm_wmiawttn_si64, _mm_merge_si64): Likewise.
2609 (_mm_torvscb, _mm_torvsch, _mm_torvscw): Likewise.
2610 (_m_to_int): New define.
2611 * config/arm/arm-cores.def (iwmmxt2): Add FL_IWMMXT2.
2612 * config/arm/arm-arches.def (iwmmxt2): Likewise.
2613 * config/arm/t-arm (MD_INCLUDES): Add marvell-f-iwmmxt.md and
2614 iwmmxt2.md.
2615 * config/arm/arm.md (marvell-f-iwmmxt.md): Include.
2616 (arch): Add "iwmmxt2".
2617 (arch_enabled): Handle "iwmmxt2".
2618 (wtype): New attribute.
2619 (UNSPEC_WMADDS, UNSPEC_WMADDU): Delete.
2620 (UNSPEC_WALIGNI): New unspec.
2621 * config/arm/predicates.md (imm_or_reg_operand): New predicate.
2622 * config/arm/iterators.md (VMMX2): New mode_iterator.
2623 * config/arm/marvell-f-iwmmxt.md: New file.
2624 * config/arm/iwmmxt2.md: New file.
2625
2626 2012-06-12 Jakub Jelinek <jakub@redhat.com>
2627
2628 PR c/53532
2629 PR c/51034
2630 PR c/53196
2631 * c-decl.c (build_compound_literal): Call c_incomplete_type_error
2632 if type isn't complete.
2633
2634 2012-06-12 Uros Bizjak <ubizjak@gmail.com>
2635
2636 * config/ia64/sync.md (fetchop_name): Change ior attribute to "or".
2637
2638 2012-06-12 Richard Henderson <rth@redhat.com>
2639
2640 * config/rs6000/sync.md (atomic_load, atomic_store): Use INT1 mode
2641 iterator instead of INT.
2642
2643 2012-06-12 Bill Schmidt <wschmidt@linux.ibm.com>
2644
2645 * opts.c: Add -fhoist-adjacent-loads to -O2 and above.
2646 * tree-ssa-phiopt.c (tree_ssa_phiopt_worker): Add argument to forward
2647 declaration.
2648 (hoist_adjacent_loads, gate_hoist_loads): New forward declarations.
2649 (tree_ssa_phiopt): Call gate_hoist_loads.
2650 (tree_ssa_cs_elim): Add parm to tree_ssa_phiopt_worker call.
2651 (tree_ssa_phiopt_worker): Add do_hoist_loads to formal arg list; call
2652 hoist_adjacent_loads.
2653 (local_mem_dependence): New function.
2654 (hoist_adjacent_loads): Likewise.
2655 (gate_hoist_loads): Likewise.
2656 * common.opt (fhoist-adjacent-loads): New switch.
2657 * Makefile.in (tree-ssa-phiopt.o): Added dependencies.
2658
2659 2012-06-12 Michael Matz <matz@suse.de>
2660
2661 * alias.c (nonoverlapping_component_refs_p): Take two rtx arguments.
2662 (nonoverlapping_memrefs_p): Don't call it here ...
2663 (true_dependence_1): ... but here.
2664
2665 2012-06-12 Richard Guenther <rguenther@suse.de>
2666
2667 * emit-rtl.c (set_mem_attributes_minus_bitpos): Remove dead code.
2668 * alias.c (ao_ref_from_mem): MEM_EXPR is conservative, MEM_OFFSET
2669 and MEM_SIZE only refines it. Reflect that and be less conservative
2670 if either of the latter is not known.
2671
2672 2012-06-12 Jakub Jelinek <jakub@redhat.com>
2673
2674 PR rtl-optimization/53589
2675 * cfgrtl.c (force_nonfallthru_and_redirect): Do asm_goto_edge
2676 discovery even when e->dest != target. If any LABEL_REF points
2677 to e->dest label, redirect it to target's label.
2678
2679 2012-06-12 Chung-Lin Tang <cltang@codesourcery.com>
2680
2681 * config/sh/sh.c (output_stack_adjust): Remove !epilogue_p
2682 condition for generating REG_FRAME_RELATED_EXPR note.
2683 (pop): Add code for generating REG_CFA_RESTORE,
2684 REG_CFA_ADJUST_CFA notes. Set RTX_FRAME_RELATED_P to 1.
2685 (sh_expand_epilogue): Use frame_insn() for FP to SP move.
2686 Set 'frame_p' of calls to output_stack_adjust() to 'true'.
2687
2688 2012-06-11 Richard Henderson <rth@redhat.com>
2689
2690 * config/alpha/alpha.c (HWI_HEX2): Add missing shift.
2691 * vmsdbgout.c (VMS_EPOCH_OFFSET): Add LL suffix.
2692
2693 * config/alpha/alpha.c (alpha_trampoline_init): Split large constants.
2694
2695 2012-06-12 Hans-Peter Nilsson <hp@axis.com>
2696
2697 * doc/tm.texi.in (Addressing Modes) <TARGET_LEGITIMIZE_ADDRESS>:
2698 Mention that this hook needs to be defined for native TLS.
2699 * doc/tm.texi: Regenerate.
2700
2701 2012-06-11 Mike Stump <mikestump@comcast.net>
2702
2703 * emit-rtl.c (init_emit_once): Iterate through the
2704 MODE_PARTIAL_INT modes with MIN_MODE_PARTIAL_INT and
2705 MAX_MODE_PARTIAL_INT, as GET_MODE_WIDER_MODE doesn't step through
2706 all the MIN_MODE_PARTIAL_INT modes anymore.
2707
2708 2012-06-12 Maxim Kuvyrkov <maxim@codesourcery.com>
2709
2710 * gcc/config/mips/mips-tables.opt (xlp): Fix merge typo.
2711
2712 2012-06-11 Roland McGrath <mcgrathr@google.com>
2713
2714 * dwarf2out.c (const_ok_for_output_1): Detect a TLS UNSPEC using
2715 SYMBOL_REF_TLS_MODEL rather than DECL_THREAD_LOCAL_P, in case it's
2716 not a VAR_DECL. Also don't limit it to UNSPECs with exactly one
2717 operand.
2718
2719 2012-06-11 Oleg Endo <olegendo@gcc.gnu.org>
2720
2721 PR target/53511
2722 * config/sh/sh.md (fmasf4): New expander.
2723 (*macsf3): Rename to fmasf4_i. Adapt to fma pattern.
2724 (mac_media): Rename to fmasf4_media. Adapt to fma pattern.
2725 * config/sh/sh.opt (mfused-madd): Remove.
2726 * config/sh/sh.c (sh_option_override): Remove mfused-madd handling.
2727 (builtin_description bdesc): Remove __builtin_sh_media_FMAC_S.
2728 * config.gcc (sh[123456789lbe]*-*-* | sh-*-*): Add fused-madd.opt
2729 as extra options.
2730 * doc/invoke.texi (SH Options): Update mfused-madd and mno-fused-madd
2731 descriptions.
2732
2733 2012-06-11 Richard Henderson <rth@redhat.com>
2734
2735 * dwarf2cfi.c (scan_trace): Handle annulled branch-taken delay slots.
2736
2737 2012-06-11 Richard Guenther <rguenther@suse.de>
2738
2739 PR middle-end/53470
2740 * tree.c (free_lang_data_in_type): Do not clear TYPE_CONTEXT but
2741 replace it with the first non-BLOCK context.
2742
2743 2012-06-11 Richard Guenther <rguenther@suse.de>
2744
2745 * alias.c (aliases_everything_p): Remove.
2746 (DIFFERENT_ALIAS_SETS_P): Likewise.
2747 (true_dependence_1): Use mems_in_disjoint_alias_sets_p directly.
2748 Do not use aliases_everything_p or special-case ANDs. Do not
2749 special-case BLKmode moves.
2750 (may_alias_p): Likewise. Handle BLKmode similar like everywhere
2751 - for SCATCH only.
2752
2753 2012-06-09 Hans-Peter Nilsson <hp@axis.com>
2754
2755 Fix CRIS build errors with --enable-build-with-cxx.
2756 * config/cris/cris.c (cris_emit_trap_for_misalignment): Rename
2757 variable "and" to "andop".
2758 * config/cris/sync.md ("atomic_fetch_<atomic_op_name><mode>"): Use
2759 temporary variable for memory model, passing C++-type-correct
2760 parameter type to expand_mem_thread_fence.
2761 ("atomic_compare_and_swap<mode>"): Ditto.
2762
2763 2012-06-09 Richard Henderson <rth@redhat.com>
2764
2765 PR c++/53602
2766 * cfgcleanup.c (execute_jump): Rename from rest_of_handle_jump2.
2767 (pass_jump): Rename from pass_jump2.
2768 (execute_jump2, pass_jump2): New.
2769 * combine-stack-adj.c (rest_of_handle_stack_adjustments): Don't
2770 perform cfg cleanup here. Move the test of PUSH_ROUNDING
2771 and ACCUMULATE_OUTGOING_ARGS test...
2772 (gate_handle_stack_adjustments): ... here.
2773 * passes.c (init_optimization_passes): Update for pass_jump2 rename.
2774 Place new pass_jump2 after pass_stack_adjustments.
2775 * tree-pass.h (pass_jump): Declare.
2776
2777 2012-06-09 Kenneth Zadeck <zadeck@naturalbridge.com>
2778
2779 * simplify-rtx.c (simplify_const_binary_operation): Fixed shift
2780 count trucation.
2781
2782 2012-06-08 Richard Henderson <rth@redhat.com>
2783
2784 PR c++/53602
2785 * combine-stack-adj.c (force_move_args_size_note): Add ARGS_SIZE
2786 note to a clobber insn when no other insn is available.
2787
2788 2012-06-08 Georg-Johann Lay <avr@gjlay.de>
2789
2790 * config/avr/avr.c (avr_case_values_threshold): Return 7.
2791
2792 2012-06-07 Andreas Schwab <schwab@linux-m68k.org>
2793
2794 * genhooks.c (main): Set progname.
2795 (emit_documentation): Remove variable found_start, always bail out
2796 when a place is missing.
2797 * doc/tm.texi.in (C++ ABI): Add @hook TARGET_CXX_DECL_MANGLING_CONTEXT.
2798
2799 2012-06-07 Jakub Jelinek <jakub@redhat.com>
2800
2801 PR middle-end/53580
2802 * omp-low.c (scan_omp): Change first argument to gimple_seq *,
2803 call walk_gimple_seq_mod instead of walk_gimple_seq.
2804 (scan_sharing_clauses, scan_omp_parallel, scan_omp_task,
2805 scan_omp_for, scan_omp_sections, scan_omp_single,
2806 execute_lower_omp): Adjust callers.
2807 (scan_omp_1_stmt): Likewise. If check_omp_nesting_restrictions
2808 returns false, replace stmt with GIMPLE_NOP.
2809 (check_omp_nesting_restrictions): Instead of issuing warnings,
2810 issue errors and return false if any errors were reported.
2811
2812 2012-06-06 Steven Bosscher <steven@gcc.gnu.org>
2813
2814 * doc/invoke.texi (fconserve-space): Remove documentation.
2815
2816 2012-06-06 Edmar Wienskoski <edmar@freescale.com>
2817
2818 * config/rs6000/rs6000-tables.opt: Regenerated.
2819
2820 2012-06-06 Richard Guenther <rguenther@suse.de>
2821
2822 PR tree-optimization/53081
2823 * tree-data-ref.h (adjacent_store_dr_p): Rename to ...
2824 (adjacent_dr_p): ... this and make it work for reads, too.
2825 * tree-loop-distribution.c (enum partition_kind): Add PKIND_MEMCPY.
2826 (struct partition_s): Change main_stmt to main_dr, add
2827 secondary_dr member.
2828 (build_size_arg_loc): Change to date data-reference and not
2829 gimplify here.
2830 (build_addr_arg_loc): New function split out from ...
2831 (generate_memset_builtin): ... here. Use it and simplify.
2832 (generate_memcpy_builtin): New function.
2833 (generate_code_for_partition): Adjust.
2834 (classify_partition): Streamline pattern detection. Detect memcpy.
2835 (ldist_gen): Adjust.
2836 (tree_loop_distribution): Adjust seed statements for memcpy
2837 recognition.
2838
2839 2012-06-06 Matt Turner <mattst88@gmail.com>
2840
2841 * config/arm/mmintrin.h (_mm_empty): New.
2842 (_m_empty): New.
2843
2844 2012-06-06 Richard Sandiford <r.sandiford@uk.ibm.com>
2845
2846 * doc/invoke.texi (sched-pressure-algorithm): Document new --param.
2847 * common.opt (fsched-pressure-algorithm=): Remove.
2848 * flag-types.h (sched_pressure_algorithm): Move to...
2849 * sched-int.h (sched_pressure_algorithm): ...here.
2850 * params.def (sched-pressure-algorithm): New param.
2851 * haifa-sched.c (sched_init): Use it to initialize sched_pressure.
2852 * common/config/s390/s390-common.c (s390_option_optimization_table):
2853 Remove OPT_fsched_pressure_algorithm_ entry.
2854 * config/s390/s390.c (s390_option_override): Set a default value for
2855 PARAM_SCHED_PRESSURE_ALGORITHM.
2856
2857 2012-06-05 Michael Meissner <meissner@linux.vnet.ibm.com>
2858
2859 PR target/53487
2860 * config/rs6000/rs6000.c (rs6000_generate_compare): If we are
2861 doing an unsigned compare, make sure the second argument is not a
2862 negative constant.
2863 (rs6000_emit_cmove): Don't allow floating point comparisons when
2864 generating ISEL moves.
2865
2866 2012-06-05 Edmar Wienskoski <edmar@freescale.com>
2867
2868 * config/rs6000/e5500.md: New file.
2869 * config/rs6000/e6500.md: New file.
2870 * config/rs6000/rs6000.c (processor_costs): Add new costs for
2871 e5500 and e6500.
2872 (rs6000_option_override_internal): Altivec and Spe options not
2873 allowed with e5500. Spe options not allowed with e6500. Increase
2874 move inline limit for e5500 and e6500. Disable string instructions
2875 for e5500 and e6500. Enable branch targets alignment for e5500 and
2876 e6500. Initialize rs6000_cost for e5500 and e6500.
2877 (rs6000_adjust_cost): Add extra scheduling cycles between compare
2878 and brnach for e5500 and e6500.
2879 (rs6000_issue_rate): Set issue rate for e5500 and e6500.
2880 * config/rs6000/rs6000-cpus.def: Add cpu definitions for e5500 and
2881 e6500.
2882 * config/rs6000/rs6000.h (ASM_CPU_SPEC): Add e5500 and e6500.
2883 * config/rs6000/rs6000.md (define_attr "cpu"): Add ppce5500 and
2884 ppce6500.
2885 Include e5500.md and e6500.md.
2886 * config/rs6000/rs6000-opt.h (processor_type): Add
2887 PROCESSOR_PPCE5500 and PROCESSOR_PPCE6500.
2888 * config.gcc (cpu_is_64bit): Add new cores e5500, e6500.
2889 (powerpc*-*-*): Add new cores e5500, e6500.
2890 * doc/invoke.texi: (item -mcpu): Add e5500 and e6500 to list of cpus.
2891
2892 2012-06-05 Richard Guenther <rguenther@suse.de>
2893
2894 * tree-vect-data-refs.c (vect_analyze_data_refs): Fix last change.
2895
2896 2012-06-05 H.J. Lu <hongjiu.lu@intel.com>
2897
2898 PR target/53575
2899 * config.gcc: Select x32 run-time library if --with-abi={x32|mx32}
2900 is used for x86_64-*-*.
2901
2902 2012-06-05 Richard Guenther <rguenther@suse.de>
2903
2904 PR tree-optimization/30442
2905 * tree-vect-data-refs.c (vect_analyze_data_refs): For basic-block
2906 vectorization stop analysis at the first stmt we cannot compute
2907 a data-reference for instead of giving up completely.
2908
2909 2012-06-05 Richard Guenther <rguenther@suse.de>
2910
2911 * tree-loop-distribution.c (struct partition_s): Add has_writes member.
2912 (partition_alloc): Initialize it.
2913 (partition_has_writes): New function.
2914 (rdg_flag_uses): Adjust.
2915 (rdg_flag_vertex): Likewise.
2916 (rdg_flag_vertex_and_dependent): Likewise.
2917 (rdg_flag_loop_exits): Likewise.
2918 (build_rdg_partition_for_component): Likewise.
2919 (rdg_build_partitions): Likewise.
2920
2921 2012-06-05 Richard Guenther <rguenther@suse.de>
2922
2923 PR tree-optimization/53081
2924 * tree-loop-distribution.c (generate_memset_builtin): Handle all
2925 kinds of byte-sized stores.
2926 (classify_partition): Likewise.
2927 (tree_loop_distribution): Adjust seed statements used for
2928 !flag_tree_loop_distribution.
2929
2930 2012-06-05 Alan Modra <amodra@gmail.com>
2931
2932 * config/rs6000/rs6000.c (ptr_regno_for_savres): Comment.
2933 (rs6000_emit_prologue): Ensure register used for inline saves
2934 of vector regs is not the static chain register. Revise comment.
2935
2936 2012-06-04 Oleg Endo <olegendo@gcc.gnu.org>
2937
2938 * doc/md.texi (Standard Pattern Names For Generation): Document
2939 sincos pattern.
2940
2941 2012-06-04 H.J. Lu <hongjiu.lu@intel.com>
2942
2943 PR bootstrap/53555
2944 * config/i386/i386.c (ix86_sched_reorder) Skip debug insns.
2945
2946 2012-06-04 Jason Merrill <jason@redhat.com>
2947
2948 * dwarf2out.c (is_unit_die): New.
2949 (copy_declaration_context, copy_ancestor_tree): Use it.
2950 (copy_decls_walk): Likewise.
2951
2952 2012-06-04 Paolo Carlini <paolo.carlini@oracle.com>
2953
2954 PR c++/53524
2955 * doc/invoke.texi (Wenum-compare): Update documentation.
2956
2957 2012-06-04 Dodji Seketeli <dodji@redhat.com>
2958
2959 PR preprocessor/53463
2960 * parser.c (cp_parser_assignment_expression): Use the location
2961 for the '=' as the default location for the expression.
2962
2963 2012-06-04 Edmar Wienskoski <edmar@freescale.com>
2964
2965 PR target/53559
2966 * config/rs6000/altivec.md (altivec_stvlx): Change machine mode of
2967 operands.
2968 (altivec_stvlxl): Ditto.
2969 (altivec_stvrx): Ditto.
2970 (altivec_stvrxl): Ditto.
2971
2972 2012-06-04 Vladimir Makarov <vmakarov@redhat.com>
2973
2974 * ira-int.h (struct target_ira_int): Add member x_ira_uniform_class_p.
2975 (ira_uniform_class_p): New macro.
2976
2977 * ira.c (setup_uniform_class_p): New function.
2978 (setup_allocno_and_important_classes): Call the function.
2979 (print_unform_and_important_classes): New function.
2980 (print_classes): Rename to print_translated_classes.
2981 (ira_debug_allocno_classes): Add call of
2982 print_unform_and_important_classes.
2983
2984 * ira-costs.c (setup_regno_cost_classes_by_aclass): Use uniform
2985 classes instead of pressure classes.
2986
2987 2012-06-04 Aldy Hernandez <aldyh@redhat.com>
2988
2989 PR middle-end/47530
2990 * trans-mem.c (expand_block_edges): Do not skip the first
2991 statement when resetting the BB.
2992
2993 2012-06-04 Richard Guenther <rguenther@suse.de>
2994
2995 * tree-data-ref.c (stores_from_loop): Remove.
2996 (stmt_with_adjacent_zero_store_dr_p): Likewise.
2997 (stores_zero_from_loop): Likewise.
2998 * tree-data-ref.h (stores_from_loop, stores_zero_from_loop,
2999 stmt_with_adjacent_zero_store_dr_p, stride_of_unit_type_p): Remove.
3000 (adjacent_store_dr_p): New function.
3001 * tree-loop-distribution.c (generate_memset_builtin): Pass
3002 the RDG, use the already available data-reference.
3003 (generate_code_for_partition): Pass down RDG.
3004 (classify_partition): Inline parts of the former
3005 stmt_with_adjacent_zero_store_dr_p here and use adjacent_store_dr_p.
3006 (ldist_gen): Remember if there was any detected builtin and
3007 do less work if not and flag_tree_loop_distribution is not set.
3008 (tree_loop_distribution): Inline and fuse stores_from_loop
3009 and stores_zero_from_loop here.
3010
3011 2012-06-04 Richard Guenther <rguenther@suse.de>
3012
3013 PR middle-end/53471
3014 * dwarf2out.c (dwarf2out_finish): If generating LTO do not
3015 create new assembler names.
3016
3017 2012-06-04 Richard Guenther <rguenther@suse.de>
3018
3019 * tree-data-ref.c (struct rdg_vertex_info): Remove.
3020 (rdg_vertex_for_stmt): Simplify using gimple_uid.
3021 (create_rdg_vertices): Pass loop argument, remove stmt to RDG index
3022 hashtable. Record stmt data-references.
3023 (hash_stmt_vertex_info): Remove.
3024 (eq_stmt_vertex_info): Likewise.
3025 (hash_stmt_vertex_del): Likewise.
3026 (build_empty_rdg): Simplify.
3027 (build_rdg): Adjust.
3028 (free_rdg): Likewise.
3029 (ref_base_address): Remove.
3030 (have_similar_memory_accesses): Likewise.
3031 * tree-data-ref.h (create_rdg_vertices): Remove.
3032 (struct rdg_vertex): Add datarefs member.
3033 (RDGV_DATAREFS): New define.
3034 (RDG_DATAREFS): Likewise.
3035 (have_similar_memory_accesses): Remove.
3036 (rdg_has_similar_memory_accesses): Likewise.
3037 * tree-loop-distribution.c (ref_base_address): Re-implement here.
3038 (similar_memory_accesses): Re-implement using existing data-references.
3039 (tree_loop_distribution): Initialize stmt uids for the stmt to
3040 RDG index mapping.
3041 * tree-vect-loop.c (vect_create_epilog_for_reduction): Only
3042 access stmt vinfo for stmts in loop.
3043
3044 2012-06-04 Andreas Schwab <schwab@linux-m68k.org>
3045
3046 PR target/53461
3047 * config/m68k/m68k.md ("tablejump"): Fix check for
3048 CASE_VECTOR_PC_RELATIVE.
3049
3050 2012-06-04 Steven Bosscher <steven@gcc.gnu.org>
3051
3052 * output.h (merge_weak, assemble_alias,
3053 initializer_constant_valid_p,
3054 initializer_constant_valid_for_bitfield_p): Move protos from here...
3055 * tree.h: ... to here.
3056 * cgraphclones.c: Do not include output.h.
3057 * gimplify.c: Likewise.
3058 * reload.c: Likewise.
3059 * recog.c: Likewise.
3060 * tree-ssa-loop-ivopts.c: Likewise.
3061 * tree-switch-conversion.c: Likewise.
3062 * c-parser.c: Likewise.
3063 * c-typeck.c: Likewise.
3064 * Makefile.in: Fix dependencies.
3065
3066 2012-06-04 Georg-Johann Lay <avr@gjlay.de>
3067
3068 PR target/46261
3069 * config/avr/avr-stdint.h: New file.
3070 * config.gcc (avr-*-*,tm_file): Use avr/avr-stdint.h instead of
3071 newlib-stdint.h
3072
3073 2012-06-04 Jakub Jelinek <jakub@redhat.com>
3074
3075 PR tree-optimization/53550
3076 * tree-ssa-loop-niter.c (number_of_iterations_cond): If type
3077 is POINTER_TYPE_P, use sizetype as step type instead of type.
3078
3079 2012-06-04 Richard Guenther <rguenther@suse.de>
3080
3081 * tree-data-ref.c (have_similar_memory_accesses_1): Remove.
3082 (ref_base_address_1): Likewise.
3083 (remove_similar_memory_refs): Likewise.
3084 * tree-data-ref.h (remove_similar_memory_refs): Remove.
3085 * tree-loop-distribution.c (classify_partition): Do not classify
3086 as builtin if -ftree-loop-distribute-patterns is not enabled.
3087 (fuse_partitions_with_similar_memory_accesses): Inline ...
3088 (ldist_gen): ... here. Fuse all non-builtin partitions if
3089 -ftree-loop-distribution is not enabled. Properly return
3090 the number of created partitions. Do not update SSA form here but ...
3091 (tree_loop_distribution): ... once here for the whole function.
3092 Only walk innermost loops, constrain loops we consider here
3093 further. Do not call remove_similar_memory_refs.
3094 (distribute_loop): Do not check number of loop nodes here.
3095
3096 2012-06-04 Steven Bosscher <steven@gcc.gnu.org>
3097
3098 * Makefile.in (GIMPLE_H): Do not depend on TARGET_H.
3099
3100 2012-06-03 Martin Jambor <mjambor@suse.cz>
3101
3102 * ipa-prop.h (ipa_get_jf_known_type_offset): New function.
3103 (ipa_get_jf_known_type_base_type): Likewise.
3104 (ipa_get_jf_known_type_component_type): Likewise.
3105 (ipa_get_jf_constant): Likewise.
3106 (ipa_get_jf_pass_through_formal_id): Likewise.
3107 (ipa_get_jf_pass_through_operation): Likewise.
3108 (ipa_get_jf_ancestor_offset): Likewise.
3109 (ipa_get_jf_ancestor_type): Likewise.
3110 (ipa_get_jf_ancestor_formal_id): Likewise.
3111 (ipa_get_jf_member_ptr_pfn): Likewise.
3112 * ipa-prop.c (ipa_set_jf_known_type): New function.
3113 (ipa_set_jf_constant): Likewise.
3114 (ipa_set_jf_simple_pass_through): Likewise.
3115 (ipa_set_jf_arith_pass_through): Likewise.
3116 (ipa_set_ancestor_jf): Likewise.
3117 (fill_member_ptr_cst_jump_function): Moved up and renamed to
3118 ipa_set_jf_member_ptr_cst.
3119 (detect_type_change_1): Use the new jump function creation functions.
3120 (compute_complex_assign_jump_func): Likewise.
3121 (compute_complex_ancestor_jump_func): Likewise.
3122 (compute_known_type_jump_func): Likewise.
3123 (compute_scalar_jump_functions): Likewise.
3124 (compute_pass_through_member_ptrs): Likewise.
3125 (determine_cst_member_ptr): Likewise.
3126 (combine_known_type_and_ancestor_jfs): Likewise.
3127 (try_make_edge_direct_simple_call): Likewise.
3128 (try_make_edge_direct_virtual_call): Likewise.
3129 (update_indirect_edges_after_inlining): Likewise.
3130 * ipa-cp.c (ipa_get_jf_pass_through_result): Use jump function
3131 access functions. Incorporat NOP_EXPR and BINFO handling from its
3132 callers.
3133 (ipa_get_jf_ancestor_result): Likewise. Incorporate handling BINFOs
3134 which was in its callers.
3135 (ipa_value_from_jfunc): Use jump function access functions. Some
3136 functionality moved to functions above.
3137 (propagate_vals_accross_ancestor): Likewise.
3138 (propagate_vals_accross_pass_through): Use jump function access
3139 functions.
3140 (propagate_accross_jump_function): Likewise.
3141 * ipa-inline-analysis.c (remap_edge_change_prob): Use jump function
3142 access functions.
3143 (inline_merge_summary): Likewise.
3144
3145 2012-06-03 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
3146
3147 * config/pa/pa.h (MAX_PCREL17F_OFFSET): Define.
3148 * config/pa/pa.c (pa_attr_length_millicode_call): Use
3149 MAX_PCREL17F_OFFSET instead of fixed offset.
3150 (pa_attr_length_call): Likewise.
3151 (pa_attr_length_indirect_call): Likewise.
3152
3153 2012-06-03 Oleg Endo <olegendo@gcc.gnu.org>
3154
3155 PR target/53512
3156 * config/sh/sh.opt (mfsca, mfsrra): New options.
3157 * config/sh/sh.md (rsqrtsf2): Use TARGET_FPU_ANY and TARGET_FSRRA
3158 condition.
3159 (fsca): Use TARGET_FPU_ANY and TARGET_FSCA condition.
3160 (sinssf2, cossf2): Fold expanders to ...
3161 (sincossf3): ... this new expander. Use TARGET_FPU_ANY and
3162 TARGET_FSCA condition.
3163 * config/sh/sh.c (sh_option_override): Handle TARGET_FSRRA and
3164 TARGET_FSCA.
3165 * doc/invoke.texi (SH Options): Add descriptions for -mfsca,
3166 -mno-fsca, -mfsrra, -mno-fsrra.
3167
3168 2012-06-03 Matt Turner <mattst88@gmail.com>
3169
3170 * config/mips/4600.md (r4700_imul_si): New.
3171 (r4700_imul_di): New.
3172 (r4700_fmul_single): New.
3173 (r4700_fmul_double): New.
3174 * config/mips/mips-cpus.def: Add r4700.
3175 * config/mips/mips.c: Likewise.
3176 * config/mips/mips.md: Likewise.
3177 * config/mips/mips-tables.opt: Regenerate.
3178
3179 2012-06-02 Steven Bosscher <steven@gcc.gnu.org>
3180
3181 * config/sparc/sparc.h (INITIAL_ELIMINATION_OFFSET): Split out to
3182 new function sparc_initial_elimination_offset.
3183 * config/sparc/sparc.c (sparc_initial_elimination_offset): New
3184 function.
3185 * config/sparc/sparc-protos.h (sparc_initial_elimination_offset):
3186 Prototype it.
3187
3188 2012-06-02 Kenneth Zadeck <zadeck@naturalbridge.com>
3189
3190 * expmed.c (expand_mult, choose_multiplier): Change
3191 "2 * HOST_BITS_PER_WIDE_INT" to "HOST_BITS_PER_DOUBLE_INT".
3192 * expr.c (convert_modes): Likewise.
3193 * explow.c (plus_constant): Likewise.
3194 * fixed-value.c (fixed_saturate1, fixed_saturate2)
3195 (do_fixed_add, do_fixed_multiply, do_fixed_multiply)
3196 (do_fixed_multiply, do_fixed_multiply, do_fixed_divide)
3197 (do_fixed_divide, do_fixed_divide, do_fixed_divide)
3198 (do_fixed_divide, do_fixed_divide, do_fixed_shift, do_fixed_shift)
3199 (do_fixed_shift, fixed_convert, fixed_convert)
3200 (fixed_convert_from_int, fixed_convert_from_int)
3201 (fixed_convert_from_real): Likewise.
3202 * fold-const.c (fold_convert_const_int_from_fixed, sign_bit_p)
3203 (native_interpret_int, fold_binary_loc, fold_ternary_loc): Likewise.
3204 * varasm.c (output_constructor_bitfield): Likewise.
3205 * tree-vrp.c (register_edge_assert_for_2): Likewise.
3206 * double-int.c (rshift_double, lshift_double): Likewise.
3207 * double-int.h (double_int_fits_in_uhwi_p, double_int, double_int):
3208 Likewise.
3209 * simplify-rtx.c (mode_signbit_p)
3210 (simplify_const_unary_operation, simplify_binary_operation_1)
3211 (simplify_immed_subreg): Likewise.
3212 * builtins.c (c_readstr, fold_builtin_bitop): Likewise.
3213 * tree-vect-generic.c (build_replicated_const): Likewise.
3214 * dbxout.c (stabstr_O): Likewise.
3215 * emit-rtl.c (immed_double_int_const, immed_double_const)
3216 (gen_lowpart_common, init_emit_once): Likewise.
3217 * tree.c (integer_pow2p, tree_log2, tree_floor_log2)
3218 (widest_int_cst_value, upper_bound_in_type): Likewise.
3219 * stor-layout.c (initialize_sizetypes, fixup_signed_type)
3220 (fixup_unsigned_type): Likewise.
3221 * real.c (real_to_integer2, real_from_integer): Likewise.
3222 * dwarf2out.c (size_of_loc_descr, size_of_die, output_die)
3223 (clz_loc_descriptor, mem_loc_descriptor): Likewise.
3224
3225 2012-06-01 Eric Botcazou <ebotcazou@adacore.com>
3226
3227 PR middle-end/53501
3228 * fold-const.c (fold_binary_loc): Refine previous change.
3229
3230 2012-06-01 Olivier Hainque <hainque@adacore.com>
3231
3232 * config/rs6000/vxworks.h (SUBSUBTARGET_OVERRIDE_OPTIONS): Restore
3233 the "do {" part of the do-while(0) loop.
3234
3235 2012-06-01 Yuri Rumyantsev <yuri.s.rumyantsev@intel.com>
3236
3237 * config/i386/i386.c (x86_sched_reorder): New function.
3238 Added new function x86_sched_reorder.
3239
3240 2012-06-01 Richard Guenther <rguenther@suse.de>
3241
3242 * tree-loop-distribution.c (stmt_has_scalar_dependences_outside_loop):
3243 Handle PHIs.
3244 (classify_partition): Likewise.
3245
3246 2012-06-01 Richard Guenther <rguenther@suse.de>
3247
3248 * tree-loop-distribution.c (enum partition_kind): New enum.
3249 (struct partition_s): Add kind and main_stmt members.
3250 (partition_alloc): Initialize kind to PKIND_NORMAL.
3251 (partition_builtin_p): New function.
3252 (copy_loop_before): Remove failure path and assert instead.
3253 (generate_loops_for_partition): Likewise.
3254 (generate_memset_zero): Fold into ...
3255 (generate_memset_builtin): ... this.
3256 (classify_partition): New function with code from
3257 can_generate_builtin and generate_builtin.
3258 (generate_builtin): Remove.
3259 (can_generate_builtin): Likewise.
3260 (fuse_partitions_with_similar_memory_accesses): Call
3261 partition_builtin_p instead of can_generate_builtin.
3262 (rdg_build_partitions): Do not call
3263 fuse_partitions_with_similar_memory_accesses here...
3264 (ldist_gen): ... but here after classifying all partitions.
3265 Remove failure path of generate_code_for_partition.
3266 (generate_code_for_partition): Generate code according
3267 to partition classification.
3268
3269 2012-06-01 Manuel López-Ibáñez <manu@gcc.gnu.org>
3270 Jonathan Wakely <jwakely.gcc@gmail.com>
3271
3272 PR c++/50134
3273 * doc/invoke.texi (Warning Options): Explain purpose and differences
3274 between -Wmissing-prototypes and -Wmissing-declarations.
3275
3276 2012-06-01 Christian Bruel <christian.bruel@st.com>
3277
3278 * gcc.c (save_switch): Add user_p parameter.
3279 (read_specs): Likewise.
3280 (set_specs): Likewise.
3281 (validate_switches): Likewise.
3282 (validate_switches_from_spec): Likewise.
3283 (validate_all_switches): Pass on user_p parameter.
3284 (struct spec_list): Add user_p field.
3285 (struct switchstr): Add known field.
3286 (save_switch): Add known parameter.
3287 (INIT_STATIC_SPEC): Initialize user_p;
3288 (driver_unknown_option_callbac): call save_switch if
3289 OPT_SPECIAL_unknown.
3290 (driver_handle_option): Propagate OPT_specs.
3291 (do_spec_1): Set validated only if known.
3292 (check_live_switch): Likewise.
3293 (validate_switches): Set validated if known or user_spec.
3294
3295 2012-06-01 Hans-Peter Nilsson <hp@axis.com>
3296
3297 Add CRIS atomic patterns for 1, 2, and 4 bytes.
3298 * config/cris/cris.c (cris_emit_trap_for_misalignment): New function.
3299 * config/cris/cris-protos.h: Declare it.
3300 * config/cris/cris.h [!TARGET_DEFAULT, TARGET_CPU_DEFAULT == 32]
3301 (TARGET_DEFAULT): Add alignment by 32.
3302 [!TARGET_DEFAULT, TARGET_CPU_DEFAULT == 10] (TARGET_DEFAULT): New
3303 case, as TARGET_CPU_DEFAULT == 0 but with alignment as for
3304 TARGET_CPU_DEFAULT == 32.
3305 (TARGET_TRAP_UNALIGNED_ATOMIC): New macro.
3306 * config/cris/cris.md: Include sync.md. Avoid allocating specific
3307 numbers by replacing the define_constants for all UNSPECs with the
3308 equivalent define_c_enum construct.
3309 * config/cris/cris.opt (mtrap-unaligned-atomic): New option.
3310 * config/cris/sync.md: New file.
3311
3312 2012-05-31 Matt Turner <mattst88@gmail.com>
3313
3314 * config/mips/4600.md (r4600_imul_si): Rename from r4600_imul.
3315 (r4600_imul_di): New.
3316 (r4600_idiv_si): Rename from r4600_idiv.
3317 (r4600_idiv_di): New.
3318
3319 2012-05-31 Steven Bosscher <steven@gcc.gnu.org>
3320
3321 * output.h (__gcc_host_wide_int__): Move to hwint.h.
3322 (decl_default_tls_model): Move to tree.h
3323 (dump_file): Move to system.h.
3324 (default_stabs_asm_out_destructor, default_stabs_asm_out_constructor,
3325 dbxout_int, dbxout_stabd, dbxout_begin_stabn, dbxout_begin_stabn_sline,
3326 dbxout_begin_empty_stabs, dbxout_begin_simple_stabs,
3327 dbxout_begin_simple_stabs_desc, dbxout_stab_value_zero,
3328 dbxout_stab_value_zero, dbxout_stab_value_label_diff,
3329 dbxout_stab_value_internal_label,
3330 dbxout_stab_value_internal_label_diff): Move from here ...
3331 * dbxout.h: ... to here.
3332 * system.h (dump_file): Moved here from output.h.
3333 * hwint.h (__gcc_host_wide_int__): Moved here from output.h.
3334 * tree.h (decl_default_tls_model): Moved here from output.h.
3335 * varasm.c (default_stabs_asm_out_destructor,
3336 default_stabs_asm_out_constructor): Move from here ...
3337 * dbxout.c: ... to here.
3338
3339 * gcov-dump.c (dump_file): Rename to dump_gcov_file. Update callers.
3340
3341 * collect2.h (dump_file): Rename to dump_ld_file.
3342 * collect2.c: Likewise.
3343 * tlink.c: Likewise.
3344
3345 * alias.c: Do not include output.h.
3346 * auto-inc-dec.c: Likewise.
3347 * bt-load.c: Likewise.
3348 * caller-save.c: Likewise.
3349 * cfg.c: Likewise.
3350 * cfgbuild.c: Likewise.
3351 * cfgcleanup.c: Likewise.
3352 * cfglayout.c: Likewise.
3353 * cfgloop.c: Likewise.
3354 * cfgloopanal.c: Likewise.
3355 * cfgloopmanip.c: Likewise.
3356 * cfgrtl.c: Likewise.
3357 * cgraph.c: Likewise.
3358 * cgraphclones.c: Likewise.
3359 * combine-stack-adj.c: Likewise.
3360 * combine.c: Likewise.
3361 * cprop.c: Likewise.
3362 * cse.c: Likewise.
3363 * cselib.c: Likewise.
3364 * dbgcnt.c: Likewise.
3365 * df-problems.c: Likewise.
3366 * df-scan.c: Likewise.
3367 * dojump.c: Likewise.
3368 * fwprop.c: Likewise.
3369 * gcse.c: Likewise.
3370 * graph.c: Likewise.
3371 * haifa-sched.c: Likewise.
3372 * hw-doloop.c: Likewise.
3373 * ipa-inline-transform.c: Likewise.
3374 * ipa-pure-const.c: Likewise.
3375 * ipa-reference.c: Likewise.
3376 * ipa-utils.c: Likewise.
3377 * ira-build.c: Likewise.
3378 * ira-emit.c: Likewise.
3379 * lcm.c: Likewise.
3380 * loop-doloop.c: Likewise.
3381 * loop-invariant.c: Likewise.
3382 * loop-iv.c: Likewise.
3383 * loop-unroll.c: Likewise.
3384 * loop-unswitch.c: Likewise.
3385 * lto-cgraph.c: Likewise.
3386 * lto-section-in.c: Likewise.
3387 * lto-streamer-in.c: Likewise.
3388 * mcf.c: Likewise.
3389 * mode-switching.c: Likewise.
3390 * postreload-gcse.c: Likewise.
3391 * postreload.c: Likewise.
3392 * predict.c: Likewise.
3393 * profile.c: Likewise.
3394 * ree.c: Likewise.
3395 * reg-stack.c: Likewise.
3396 * regcprop.c: Likewise.
3397 * regmove.c: Likewise.
3398 * regstat.c: Likewise.
3399 * reload1.c: Likewise.
3400 * sched-ebb.c: Likewise.
3401 * sel-sched-dump.c: Likewise.
3402 * simplify-rtx.c: Likewise.
3403 * stor-layout.c: Likewise.
3404 * store-motion.c: Likewise.
3405 * tracer.c: Likewise.
3406 * tree-affine.c: Likewise.
3407 * tree-cfg.c: Likewise.
3408 * tree-cfgcleanup.c: Likewise.
3409 * tree-dfa.c: Likewise.
3410 * tree-into-ssa.c: Likewise.
3411 * tree-nomudflap.c: Likewise.
3412 * tree-optimize.c: Likewise.
3413 * tree-pretty-print.c: Likewise.
3414 * tree-profile.c: Likewise.
3415 * tree-ssa-address.c: Likewise.
3416 * tree-ssa-ccp.c: Likewise.
3417 * tree-ssa-copy.c: Likewise.
3418 * tree-ssa-dom.c: Likewise.
3419 * tree-ssa-loop-ch.c: Likewise.
3420 * tree-ssa-loop-im.c: Likewise.
3421 * tree-ssa-loop-manip.c: Likewise.
3422 * tree-ssa-loop-niter.c: Likewise.
3423 * tree-ssa-loop-prefetch.c: Likewise.
3424 * tree-ssa-loop-unswitch.c: Likewise.
3425 * tree-ssa-loop.c: Likewise.
3426 * tree-ssa-propagate.c: Likewise.
3427 * tree-ssa-structalias.c: Likewise.
3428 * tree-ssa-tail-merge.c: Likewise.
3429 * tree-ssa-threadedge.c: Likewise.
3430 * tree-ssa-threadupdate.c: Likewise.
3431 * tree-ssa-uncprop.c: Likewise.
3432 * tree-ssa-uninit.c: Likewise.
3433 * tree-ssa.c: Likewise.
3434 * value-prof.c: Likewise.
3435 * var-tracking.c: Likewise.
3436 * web.c: Likewise.
3437
3438 * config/m32r/m32r.c: Include dbxout.h.
3439 * config/pa/pa.c: Likewise.
3440 * config/rs6000/rs6000.c: Likewise.
3441
3442 * Makefile.in: Fix dependencies.
3443 * config/rs6000/t-rs5000: Likewise.
3444
3445 2012-05-31 Aldy Hernandez <aldyh@redhat.com>
3446
3447 * tree-ssa-loop-im.c (execute_sm): Do not check flag_tm.
3448 * gimple.h (block_in_transaction): Check for flag_tm.
3449
3450 2012-05-31 Aldy Hernandez <aldyh@redhat.com>
3451
3452 PR tree-optimization/52558
3453 * cfg.c (alloc_aux_for_edge): Fix comment.
3454 (alloc_aux_for_edge): Remove static.
3455 * basic-block.h (alloc_aux_for_edge): Protoize.
3456 * tree-ssa-loop-im.c (execute_sm_if_changed): New.
3457 (execute_sm_if_changed_flag): New.
3458 (execute_sm_if_changed_flag_set): New.
3459 (execute_sm): Do not generate data races unless requested.
3460 (tree_ssa_lim_initialize): Call alloc_aux_for_edges.
3461 (tree_ssa_lim_finalize): Call free_aux_for_edges.
3462 * gimple.h (block_in_transaction): New.
3463 (gimple_in_transaction): Use block_in_transaction.
3464
3465 2012-05-31 Georg-Johann Lay <avr@gjlay.de>
3466
3467 PR target/51345
3468 * config/avr/avr.opt (-msp8): Document it.
3469 * doc/invoke.texi (AVR Options): Ditto. And document related
3470 built-in macros.
3471
3472 2012-05-31 Diego Novillo <dnovillo@google.com>
3473
3474 * configure.ac (CXX_FOR_BUILD): Define and substitute.
3475 (BUILD_CXXFLAGS): Define and substitute.
3476 * Makefile.in (BUILD_CXXFLAGS): Define.
3477 (CXX_FOR_BUILD): Define.
3478 (COMPILER_FOR_BUILD): Set to CXX_FOR_BUILD if building with C++.
3479 (LINKER_FOR_BUILD): Likewise.
3480 (BUILD_COMPILERFLAGS): Set to BUILD_CXXFLAGS if building with C++.
3481 (BUILD_LINKERFLAGS): Likewise.
3482 * configure: Regenerate.
3483
3484 2012-05-31 Steven Bosscher <steven@gcc.gnu.org>
3485
3486 * Makefile.in: Fix many dependencies.
3487 * tree-profile.c: Don't include regs.h.
3488 * tree-vectorizer.c: Don't include cfglayout.h.
3489 * tree-vect-stmts.c: Likewise.
3490 * tree-vect-slp.c: Likewise.
3491 * tree-vect-loop.c: Likewise.
3492 * reg-stack.c: Likewise.
3493 * tree-ssa-loop-manip.c: Likewise.
3494 * toplev.c: Likewise.
3495 * varasm.c: Don't include cfglayout.h, basic-block.h,
3496 and tree-iterator.h.
3497 * tree-cfgcleanup.c: Don't include cfglayout.h.
3498 * passes.c: Don't include cfglayout.h, dwarf2asm.h,
3499 dwarf2out.h, dbxout.h, sdbout.h, and xcoffout.h.
3500 * cgraphclones.c: Don't include plugin.h.
3501
3502 2012-05-31 Georg-Johann Lay <avr@gjlay.de>
3503
3504 * config/avr/t-avr: Correct avr-mmcu.texi dependencies.
3505 (s-avr-mmcu-texi): Don't sed on gen-avr-mmcu-texi output.
3506 * doc/avr-mmcu.texi (svn:eol-style): Set to native.
3507
3508 2012-05-31 Richard Guenther <rguenther@suse.de>
3509
3510 * tree-loop-distribution.c (struct partition_s): New struct,
3511 typedef and vector type.
3512 (partition_alloc, partition_free): New functions.
3513 (generate_loops_for_partition, generate_builtin,
3514 generate_code_for_partition, rdg_flag_uses, rdg_flag_vertex,
3515 rdg_flag_vertex_and_dependent, rdg_flag_loop_exits,
3516 build_rdg_partition_for_component, can_generate_builtin,
3517 similar_memory_accesses, fuse_partitions_with_similar_memory_accesses,
3518 rdg_build_partitions, dump_rdg_partitions, debug_rdg_partitions,
3519 number_of_rw_in_partition, partition_contains_all_rw,
3520 ldist_gen): Use partition_t instead of bitmap.
3521
3522 2012-05-31 Georg-Johann Lay <avr@gjlay.de>
3523
3524 * config/avr/gen-avr-mmcu-texi.c: Sort MCUs.
3525 * doc/avr-mmcu.texi: Regenerate.
3526
3527 2012-05-31 Richard Guenther <rguenther@suse.de>
3528
3529 * tree-loop-distribution.c (stmt_has_scalar_dependences_outside_loop):
3530 Use FOR_EACH_SSA_DEF_OPERAND.
3531 (generate_builtin): Adjust.
3532 (stmt_generated_in_another_partition): Remove.
3533 (add_scalar_computations_to_partition): Likewise.
3534 (rdg_build_partitions): Do not call
3535 add_scalar_computations_to_partition.
3536
3537 2012-05-31 Eric Botcazou <ebotcazou@adacore.com>
3538
3539 * tree-dfa.c (get_ref_base_and_extent): Compute the offset using
3540 double ints throughout.
3541 * tree-sra.c (build_user_friendly_ref_for_offset) <RECORD_TYPE>:
3542 Check that the position of the field is representable as an integer.
3543
3544 2012-05-31 Richard Guenther <rguenther@suse.de>
3545
3546 * tree-data-ref.c (dr_analyze_innermost): Properly convert
3547 the MEM_REF offset to sizetype.
3548
3549 2012-05-31 Georg-Johann Lay <avr@gjlay.de>
3550
3551 * doc/invoke.texi (AVR Options): Fix typos.
3552
3553 2012-05-31 Hans-Peter Nilsson <hp@axis.com>
3554
3555 * config/cris/cris.h (CC1_SPEC): Pass through all -march=
3556 and -mcpu= options.
3557 (ASM_SPEC): Ditto, not just -march=v32, but translate non-v10,
3558 non-v32 into --march=v0_v10.
3559
3560 2012-05-31 Richard Sandiford <rdsandiford@googlemail.com>
3561
3562 * ira-int.h (target_ira_int): Rename x_move_cost to
3563 x_ira_register_move_cost, x_may_move_in_cost to
3564 x_ira_may_move_in_cost and x_may_move_out_cost to
3565 x_ira_may_move_out_cost. Delete the old fields with
3566 those names and also x_ira_max_register_move_cost,
3567 x_ira_max_may_move_in_cost and x_ira_max_may_move_out_cost.
3568 (move_cost, may_move_in_cost, may_move_out_cost)
3569 (ira_max_register_move_cost, ira_max_may_move_in_cost)
3570 (ira_max_may_move_out_cost): Delete.
3571 * ira.c (init_move_cost): Rename to...
3572 (ira_init_register_move_cost): ...this, deleting the old
3573 function with that name. Apply above variable renamings.
3574 Retain asserts for null fields.
3575 (ira_init_once): Don't initialize register move costs here.
3576 (free_register_move_costs): Apply above variable renamings.
3577 Remove code for deleted fields.
3578
3579 2012-05-31 Richard Sandiford <rdsandiford@googlemail.com>
3580
3581 * ira.c (init_move_cost): Adjust choice of subclasses to match
3582 the current ira_init_register_move_cost choice. Use
3583 ira_class_subset_p instead of reg_class_subset_p.
3584 (ira_init_register_move_cost): Assert that move_cost,
3585 may_move_in_cost and may_move_out_cost already hold the desired
3586 values for their ira_* equivalents. For the latter two,
3587 ignore classes that can't store a register of the given mode.
3588
3589 2012-05-31 Richard Sandiford <rdsandiford@googlemail.com>
3590
3591 * ira.c (setup_allocno_and_important_classes): Use
3592 ira_class_hard_regs_num to check whether a class has any
3593 allocatable registers.
3594 (ira_init_register_move_cost): Likewise.
3595
3596 2012-05-31 Richard Sandiford <rdsandiford@googlemail.com>
3597
3598 * ira.c (init_move_cost): Adjust local variable names to match
3599 file conventions. Use ira_assert instead of gcc_assert.
3600
3601 2012-05-31 Richard Sandiford <rdsandiford@googlemail.com>
3602
3603 * regs.h (move_table, move_cost, may_move_in_cost, may_move_out_cost):
3604 Move these definitions and associated target_globals fields to...
3605 * ira-int.h: ...here.
3606 * rtl.h (init_move_cost): Delete.
3607 * reginfo.c (last_mode_for_init_move_cost, init_move_cost): Move to...
3608 * ira.c: ...here, making the latter static.
3609
3610 2012-05-31 Richard Sandiford <rdsandiford@googlemail.com>
3611
3612 * ira-costs.c (copy_cost): Use ira_init_register_move_cost_if_necessary
3613 and ira_register_move_cost instead of init_move_cost and move_cost.
3614
3615 2012-05-31 Richard Sandiford <rdsandiford@googlemail.com>
3616
3617 * ira.h (target_ira): Delete x_ira_available_class_regs.
3618 (ira_available_class_regs): Delete.
3619 * ira.c (setup_available_class_regs): Delete.
3620 (setup_alloc_classes): Don't call it.
3621 (setup_pressure_classes): Use ira_class_hard_regs_num instead of
3622 ira_available_class_regs.
3623 * haifa-sched.c (print_curr_reg_pressure, setup_insn_reg_pressure_info)
3624 (model_spill_cost): Likewise.
3625 * ira-build.c (low_pressure_loop_node_p): Likewise.
3626 * ira-color.c (color_pass): Likewise.
3627 * ira-emit.c (change_loop): Likewise.
3628 * ira-lives.c (inc_register_pressure, dec_register_pressure)
3629 (single_reg_class, ira_implicitly_set_insn_hard_regs)
3630 (process_bb_node_lives): Likewise.
3631 * loop-invariant.c (gain_for_invariant): Likewise.
3632
3633 2012-05-30 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
3634
3635 PR target/52999
3636 * config/pa/pa.c (TARGET_SECTION_TYPE_FLAGS): Define.
3637 (pa_section_type_flags): New.
3638 (pa_legitimate_constant_p): Revert previous change.
3639
3640 2012-05-30 Steven Bosscher <steven@gcc.gnu.org>
3641
3642 * ira.c (allocate_initial_values): Make static.
3643
3644 2012-05-30 Uros Bizjak <ubizjak@gmail.com>
3645
3646 * config/i386/i386.c (legitimize_tls_address) <TLS_MODEL_INITIAL_EXEC>:
3647 Generate tls_initial_exec_64_sun only when !TARGET_X32.
3648
3649 2012-05-30 Richard Guenther <rguenther@suse.de>
3650
3651 PR middle-end/53501
3652 * fold-const.c (fold_binary_loc): Make sure to call
3653 fold_plusminus_mult_expr with the original sign of operands.
3654
3655 2012-05-30 Steven Bosscher <steven@gcc.gnu.org>
3656
3657 * Makefile.in: Fix many dependencies.
3658 (DWARF2_H): Depend on dwarf2.def.
3659 (RTL_ERROR_H): Depend on rtl-error.h.
3660 (TREE_PRETTY_PRINT_H, GIMPLE_PRETTY_PRINT_H): New. Replace
3661 all gimple-pretty-print.h and tree-pretty-print.h references.
3662
3663 2012-05-30 Marc Glisse <marc.glisse@inria.fr>
3664
3665 * simplify-rtx.c (simplify_binary_operation_1): Optimize shuffle of
3666 concatenations.
3667
3668 2012-05-30 Richard Guenther <rguenther@suse.de>
3669
3670 PR middle-end/53522
3671 * tree-emutls.c (gen_emutls_addr): Do not add globals to
3672 referenced-vars.
3673
3674 2012-05-30 Eric Botcazou <ebotcazou@adacore.com>
3675
3676 * explow.c (probe_stack_range): Restore simple control flow and stop
3677 again when the probe cannot be generated if HAVE_check_stack.
3678
3679 2012-05-30 Jakub Jelinek <jakub@redhat.com>
3680
3681 PR rtl-optimization/53519
3682 * combine.c (simplify_shift_const_1) <case NOT>: Use constm1_rtx
3683 instead of GEN_INT (GET_MODE_MASK (mode)) as second operand of XOR.
3684
3685 2012-05-30 Ramana Radhakrishnan <ramana.radhakrishnan@linaro.org>
3686
3687 * config/arm/arm.c (arm_evpc_neon_vrev): Adjust off by one error.
3688
3689 2012-05-29 Jack Howarth <howarth@bromo.med.uc.edu>
3690
3691 PR debug/53453
3692 * doc/tm.texi: Update.
3693 * doc/tm.texi.in (SDB and DWARF) <TARGET_FORCE_AT_COMP_DIR>: Add @hook.
3694 * target.def (force_at_comp_dir): New hook.
3695 * config/darwin.h (TARGET_FORCE_AT_COMP_DIR): Define.
3696 * dwarf2out.c (dwarf2out_finish): Check targetm.force_at_comp_dir.
3697
3698 2012-05-29 Jack Howarth <howarth@bromo.med.uc.edu>
3699
3700 * config/darwin.h (STARTFILE_SPEC): Do not use -lbundle1.o when
3701 Darwin >= 10.
3702 (DARWIN_DYLIB1_SPEC): Do not use -ldylib1.10.5.o when Darwin >= 10.
3703 (DARWIN_CRT1_SPEC): Use -lcrt1.10.6.o when Darwin >= 10.
3704
3705 2012-05-29 Oleg Endo <olegendo@gcc.gnu.org>
3706
3707 PR target/51340
3708 * config/sh/sh.c (sh_option_override): Set TARGET_FMAC if
3709 flag_unsafe_math_optimizations is set.
3710 * doc/invoke.texi (SH Options): Add -mno-fused-madd description.
3711 Update description of -mfused-madd.
3712
3713 2012-05-29 Oleg Endo <olegendo@gcc.gnu.org>
3714
3715 PR target/52941
3716 * config/sh/predicates.md (atomic_arith_operand,
3717 atomic_logical_operand): New predicates.
3718 * config/sh/sh.c (sh_option_override): Check atomic options.
3719 * config/sh/sh.h (TARGET_ANY_ATOMIC, UNSUPPORTED_ATOMIC_OPTIONS,
3720 UNSUPPORTED_HARD_ATOMIC_CPU): New macros.
3721 (DRIVER_SELF_SPECS): Use UNSUPPORTED_ATOMIC_OPTIONS and
3722 UNSUPPORTED_HARD_ATOMIC_CPU.
3723 * config/sh/sync.md: Update description comments.
3724 (I12): New mode iterator.
3725 (fetchop_predicate, fetchop_constraint): New code attributes.
3726 (atomic_compare_and_swapsi_hard, atomic_compare_and_swap<mode>_hard,
3727 atomic_exchangesi_hard, atomic_exchange<mode>_hard,
3728 atomic_fetch_<fetchop_name>si_hard,
3729 atomic_fetch_<fetchop_name><mode>_hard,
3730 atomic_fetch_nandsi_hard, atomic_fetch_nand<mode>_hard,
3731 atomic_<fetchop_name>_fetchsi_hard,
3732 atomic_<fetchop_name>_fetch<mode>_hard,
3733 atomic_nand_fetchsi_hard, atomic_nand_fetch<mode>_hard,
3734 atomic_test_and_set_hard): New insns.
3735 (atomic_compare_and_swap<mode>_soft, atomic_exchange<mode>_soft,
3736 atomic_fetch_<fetchop_name><mode>_soft, atomic_fetch_nand<mode>_soft,
3737 atomic_<fetchop_name>_fetch<mode>_soft, atomic_nand_fetch<mode>_soft,
3738 atomic_test_and_set_soft): Use same formatting for the first line of
3739 the asm block as in new insns above.
3740 (atomic_compare_and_swap<mode>, atomic_exchange<mode>,
3741 atomic_fetch_<fetchop_name><mode>, atomic_<fetchop_name>_fetch<mode>,
3742 atomic_test_and_set): Integrate new *_hard insns into expanders.
3743 * config/sh/sh.opt (mhard-atomic): New option.
3744 * doc/invoke.texi (SH Options): Document it.
3745
3746 2012-05-29 Meador Inge <meadori@codesourcery.com>
3747
3748 * c-decl.c (c_push_function_context): Always create a new language
3749 function.
3750 (c_pop_function_context): Clear the language function created in
3751 c_push_function_context.
3752
3753 2012-05-29 Matt Turner <mattst88@gmail.com>
3754
3755 * config/alpha/ev6.md: (define_bypass "ev6_fmul,ev6_fadd"): New.
3756 (define_bypass "ev6_fcmov"): New.
3757
3758 2012-05-29 Steven Bosscher <steven@gcc.gnu.org>
3759
3760 * integrate.c: Remove.
3761 * integrate.h: Remove.
3762 * Makefile.in: Remove make rules for integrate.c and INTEGRATE_H.
3763 * config/arm/t-arm: Remove INTEGRATE_H dependency for target files.
3764 * config/rs6000/t-rs6000: Likewise
3765 * config/spu/t-spu-elf: Likewise.
3766 * function.h (get_hard_reg_initial_val, has_hard_reg_initial_val,
3767 get_hard_reg_initial_reg, emit_initial_value_sets): Move prototypes
3768 from integrate.h to here.
3769 (initial_value_entry): New prototype.
3770 * reload.h (allocate_initial_values): Remove prototype.
3771 * tree.h (set_decl_abstract_flags, set_decl_origin_self): Likewise.
3772 * cse.c (fixed_base_plus_p): Don't handle virtual registers for
3773 integrate.c.
3774 * dwarf2out.c (set_decl_origin_self, set_block_origin_self,
3775 set_decl_abstract_flags, set_block_abstract_flags): Move from
3776 integrate.c to here, the only user.
3777 * expmed.c (extract_fixed_bit_field): Remove outdated comment
3778 about integrate.c.
3779 * function.c: Don't include integrate.h.
3780 (struct initial_value_pair, struct initial_value_struct,
3781 get_hard_reg_initial_val, has_hard_reg_initial_val,
3782 get_hard_reg_initial_reg, emit_initial_value_sets): Move from
3783 integrate.c to here.
3784 (initial_value_entry): New function.
3785 * genemit.c (main): Don't print integrate.h include line.
3786 * ira.c: Don't include integrate.h.
3787 (allocate_initial_values): Move from integrate.c to here.
3788 (ira): Update allocate_initial_values call.
3789 * tree-inline.c: Don't include integrate.h.
3790 (function_attribute_inlinable_p): Moved from integrate.c to here.
3791 * cfgexpand.c: Don't include integrate.h.
3792 * except.c: Likewise.
3793 * langhooks.c: Likewise.
3794 * passes.c: Likewise.
3795 * toplev.c: Likewise.
3796 * config/frv/frv.c: Likewise.
3797 * config/pa/pa.c: Likewise.
3798 * config/spu/spu.c: Likewise.
3799 * config/epiphany/epiphany.c: Likewise.
3800 * config/mep/mep.c: Likewise.
3801 * config/score/score.c: Likewise.
3802 * config/picochip/picochip.c: Likewise.
3803 * config/sh/sh.c: Likewise.
3804 * config/alpha/alpha.c: Likewise.
3805 * config/microblaze/microblaze.c: Likewise.
3806 * config/mips/mips.c: Likewise.
3807 * config/v850/v850.c: Likewise.
3808 * config/mmix/mmix.c: Likewise.
3809 * config/bfin/bfin.c: Likewise.
3810 * config/arm/arm.c: Likewise.
3811 * config/s390/s390.c: Likewise.
3812 * config/m32r/m32r.c: Likewise.
3813 * config/rs6000/rs6000.c: Likewise.
3814 * config/c6x/c6x.c: Include function.h instead of integrate.h.
3815 * config/tilegx/tilegx.c: Likewise.
3816 * config/tilepro/tilepro.c: Likewise.
3817
3818 2012-05-29 Georg-Johann Lay <avr@gjlay.de>
3819
3820 * config/avr/t-avr (s-avr-mmcu-texi): Call
3821 gen-avr-mmcu-texi$(build_exeext) via ./ and don't assume . is in PATH.
3822
3823 2012-05-29 Michael Matz <matz@suse.de>
3824
3825 * rtl.h (assign_stack_temp, assign_stack_temp_for_type,
3826 assign_temp): Remove 'keep' argument.
3827 (mark_temp_addr_taken): Remove prototype.
3828 * tree.h (expand_decl): Remove prototype.
3829 * function.c (struct temp_slot): Remove addr_taken and keep member.
3830 (assign_stack_temp_for_type) Don't initialize above, remove
3831 keep argument.
3832 (assign_stack_temp, assign_temp): Remove keep argument.
3833 (mark_temp_addr_taken): Remove.
3834 (preserve_temp_slots): Remove handling of addr_taken and keep members.
3835 (free_temp_slots): Ditto.
3836 * expr.c (expand_expr_real_1 <COMPOUND_LITERAL_EXPR>): Remove
3837 dead code.
3838 * stmt.c (expand_asm_operands): Remove dead code.
3839 (expand_decl): Remove.
3840 * c-decl.c (finish_struct): Don't call expand_decl.
3841 * builtins.c (expand_builtin_cexpi): Adjust calls to assign_temp
3842 and assign_stack_temp.
3843 * calls.c (save_fixed_argument_area, initialize_argument_information,
3844 expand_call, emit_library_call_value_1, store_one_arg): Ditto.
3845 * expmed.c (extract_bit_field_1): Ditto.
3846 * expr.c (emit_group_load_1, emit_group_store,
3847 copy_blkmode_from_reg, emit_push_insn, expand_assignment,
3848 store_field, expand_constructor, expand_cond_expr_using_cmove,
3849 expand_expr_real_2, expand_expr_real_1): Ditto.
3850 * stmt.c (expand_asm_operands, expand_return): Ditto.
3851
3852 * function.c (pop_temp_slots): Call free_temp_slots.
3853 * calls.c (store_one_arg): Don't call preserve_temp_slots or
3854 free_temp_slots.
3855 * expr.c (expand_assignment): Don't call free_temp_slots.
3856
3857 * config/arm/arm.c (neon_expand_vector_init): Ditto.
3858 * config/i386/i386.c (ix86_expand_vector_set): Ditto.
3859 (ix86_expand_vector_extract): Ditto.
3860 * config/ia64/ia64.c (spill_xfmode_rfmode_operand,
3861 ia64_expand_movxf_movrf): Ditto.
3862 * config/mips/mips.c (mips_expand_vi_general): Ditto.
3863 * config/mmix/mmix.md (floatdisf2, floatunsdisf2, truncdfsf2,
3864 extendsfdf2): Ditto.
3865 * config/rs6000/rs6000.c (rs6000_expand_vector_init,
3866 rs6000_expand_vector_set, rs6000_expand_vector_extract,
3867 rs6000_allocate_stack_temp): Ditto.
3868 * config/rs6000/rs6000.md (fix_trunctfsi2_fprs): Ditto.
3869 * config/sparc/sparc.c (emit_soft_tfmode_libcall,
3870 sparc_emit_float_lib_cmp, sparc_emit_float_lib_cmp,
3871 sparc_expand_vector_init): Ditto.
3872
3873 2012-05-29 Michael Matz <matz@suse.de>
3874
3875 * c-tree.h (c_expand_decl): Remove prototype.
3876
3877 * expr.c (expand_expr_real_1 <normal_inner_ref>): Don't allocate
3878 a kept temp.
3879 (expand_expr_real_1 <COMPOUND_LITERAL_EXPR>): Make unreachable.
3880 * gimple-fold.c (canonicalize_constructor_val): Canonicalize
3881 COMPOUND_LITERAL_EXPR.
3882 * function.c (expand_function_start): Don't call expand_decl,
3883 instead assert that we have RTL assigned.
3884 * tree-ssa-live.c (remove_unused_locals): Clear
3885 nonlocal_goto_save_area if its backing variable is removed.
3886 * stmt.c (expand_asm_operands): Remove handling of non-lvalues
3887 as mem inputs.
3888 (expand_decl): Assert that this does nothing.
3889 * calls.c (expand_call): Don't call mark_temp_addr_taken.
3890
3891 2012-05-29 Richard Guenther <rguenther@suse.de>
3892
3893 PR tree-optimization/53516
3894 * tree-data-ref.c (stmt_with_adjacent_zero_store_dr_p): Reject
3895 bitfield accesses.
3896 * tree-vect-data-refs.c (vect_analyze_data_refs): Likewise.
3897
3898 2012-05-29 Joseph Myers <joseph@codesourcery.com>
3899
3900 * LANGUAGES: Fix typos.
3901 * Makefile.in: Fix typos.
3902 * alias.c: Fix typos.
3903 * auto-inc-dec.c: Fix typos.
3904 * bb-reorder.c: Fix typos.
3905 * cfgcleanup.c: Fix typos.
3906 * cgraph.c: Fix typos.
3907 * cgraph.h: Fix typos.
3908 * cgraphunit.c: Fix typos.
3909 * collect2-aix.h: Fix typos.
3910 * collect2.c: Fix typos.
3911 * compare-elim.c: Fix typos.
3912 * config/alpha/vms.h: Fix typos.
3913 * config/arm/README-interworking: Fix typos.
3914 * config/arm/arm.c: Fix typos.
3915 * config/arm/iterators.md: Fix typos.
3916 * config/arm/vxworks.h: Fix typos.
3917 * config/avr/avr.c: Fix typos.
3918 * config/avr/avr.h: Fix typos.
3919 * config/avr/avr.md: Fix typos.
3920 * config/avr/builtins.def: Fix typos.
3921 * config/c6x/c6x.c: Fix typos.
3922 * config/cr16/cr16.c: Fix typos.
3923 * config/cr16/cr16.md: Fix typos.
3924 * config/cris/cris.md: Fix typos.
3925 * config/darwin.c: Fix typos.
3926 * config/darwin.opt: Fix typos.
3927 * config/i386/i386-c.c: Fix typos.
3928 * config/i386/i386.c: Fix typos.
3929 * config/ia64/ia64.c: Fix typos.
3930 * config/m68k/cf.md: Fix typos.
3931 * config/mep/mep.c: Fix typos.
3932 * config/microblaze/microblaze.c: Fix typos.
3933 * config/microblaze/microblaze.h: Fix typos.
3934 * config/mn10300/mn10300.c: Fix typos.
3935 * config/mn10300/mn10300.md: Fix typos.
3936 * config/pa/pa.c: Fix typos.
3937 * config/picochip/picochip.h: Fix typos.
3938 * config/rs6000/a2.md: Fix typos.
3939 * config/rs6000/rs6000.c: Fix typos.
3940 * config/rs6000/vector.md: Fix typos.
3941 * config/rx/rx.md: Fix typos.
3942 * config/rx/rx.opt: Fix typos.
3943 * config/s390/2097.md: Fix typos.
3944 * config/s390/s390.c: Fix typos.
3945 * config/s390/s390.h: Fix typos.
3946 * config/sh/sh.c: Fix typos.
3947 * config/sh/sh.md: Fix typos.
3948 * config/sparc/sync.md: Fix typos.
3949 * config/spu/spu.c: Fix typos.
3950 * config/spu/spu.md: Fix typos.
3951 * config/vms/vms.c: Fix typos.
3952 * config/vxworks-dummy.h: Fix typos.
3953 * config/vxworks.h: Fix typos.
3954 * cselib.c: Fix typos.
3955 * df-scan.c: Fix typos.
3956 * df.h: Fix typos.
3957 * doc/extend.texi: Fix typos.
3958 * doc/install.texi: Fix typos.
3959 * doc/invoke.texi: Fix typos.
3960 * doc/md.texi: Fix typos.
3961 * doc/plugins.texi: Fix typos.
3962 * doc/rtl.texi: Fix typos.
3963 * dse.c: Fix typos.
3964 * dwarf2asm.c: Fix typos.
3965 * dwarf2out.c: Fix typos.
3966 * except.h: Fix typos.
3967 * expr.c: Fix typos.
3968 * fold-const.c: Fix typos.
3969 * gcc.c: Fix typos.
3970 * gcse.c: Fix typos.
3971 * genautomata.c: Fix typos.
3972 * gengtype-state.c: Fix typos.
3973 * gengtype.c: Fix typos.
3974 * genhooks.c: Fix typos.
3975 * gimple-fold.c: Fix typos.
3976 * gimple-pretty-print.c: Fix typos.
3977 * gimple.c: Fix typos.
3978 * gimple.h: Fix typos.
3979 * gimplify.c: Fix typos.
3980 * graphite-interchange.c: Fix typos.
3981 * graphite-sese-to-poly.c: Fix typos.
3982 * ifcvt.c: Fix typos.
3983 * input.c: Fix typos.
3984 * ipa-cp.c: Fix typos.
3985 * ipa-inline-analysis.c: Fix typos.
3986 * ipa-inline-transform.c: Fix typos.
3987 * ipa-inline.c: Fix typos.
3988 * ipa-pure-const.c: Fix typos.
3989 * ipa-ref.h: Fix typos.
3990 * ipa-reference.c: Fix typos.
3991 * ipa-utils.c: Fix typos.
3992 * ipa.c: Fix typos.
3993 * ira-emit.c: Fix typos.
3994 * ira-lives.c: Fix typos.
3995 * lto-streamer.c: Fix typos.
3996 * lto-streamer.h: Fix typos.
3997 * lto-wrapper.c: Fix typos.
3998 * mcf.c: Fix typos.
3999 * mode-switching.c: Fix typos.
4000 * modulo-sched.c: Fix typos.
4001 * plugin.c: Fix typos.
4002 * postreload.c: Fix typos.
4003 * sched-deps.c: Fix typos.
4004 * sel-sched-ir.c: Fix typos.
4005 * sel-sched-ir.h: Fix typos.
4006 * sel-sched.c: Fix typos.
4007 * sese.c: Fix typos.
4008 * stor-layout.c: Fix typos.
4009 * target-hooks-macros.h: Fix typos.
4010 * target.def: Fix typos.
4011 * trans-mem.c: Fix typos.
4012 * tree-eh.c: Fix typos.
4013 * tree-predcom.c: Fix typos.
4014 * tree-sra.c: Fix typos.
4015 * tree-ssa-address.c: Fix typos.
4016 * tree-ssa-loop-ivopts.c: Fix typos.
4017 * tree-ssa-loop-niter.c: Fix typos.
4018 * tree-ssa-math-opts.c: Fix typos.
4019 * tree-ssa-pre.c: Fix typos.
4020 * tree-ssa-propagate.c: Fix typos.
4021 * tree-ssa-reassoc.c: Fix typos.
4022 * tree-ssa-sccvn.c: Fix typos.
4023 * tree-ssa-ter.c: Fix typos.
4024 * tree-ssa-uninit.c: Fix typos.
4025 * tree-ssanames.c: Fix typos.
4026 * tree-vect-generic.c: Fix typos.
4027 * tree-vect-slp.c: Fix typos.
4028 * tree.c: Fix typos.
4029 * tree.h: Fix typos.
4030 * varasm.c: Fix typos.
4031 * varpool.c: Fix typos.
4032
4033 2012-05-29 Joseph Myers <joseph@codesourcery.com>
4034
4035 * doc/include/texinfo.tex: Update to version 2012-05-16.16.
4036
4037 2012-05-29 Richard Guenther <rguenther@suse.de>
4038
4039 * tree-dfa.c (find_vars_r): Do not call add_referenced_vars
4040 for globals.
4041 (add_referenced_var_1): Re-organize. Assert we are not
4042 called for globals.
4043 (remove_referenced_var): Likewise.
4044 * varpool.c (add_new_static_var): Use create_tmp_var_raw.
4045 * tree-mudflap.c (execute_mudflap_function_ops): Do not
4046 call add_referenced_var on globals.
4047 * matrix-reorg.c (transform_access_sites): Likewise.
4048
4049 2012-05-29 Steven Bosscher <steven@gcc.gnu.org>
4050
4051 * alias.c (reg_known_value): Make this a VEC.
4052 (reg_known_equiv_p): Make this an sbitmap.
4053 (reg_known_value_size): Remove.
4054 (get_reg_known_value, set_reg_known_value, get_reg_known_equiv_p,
4055 set_reg_known_equiv_p): Update for reg_known_value and
4056 reg_known_value_size data structure change.
4057 (init_alias_analysis, end_alias_analysis): Likewise.
4058
4059 2012-05-29 Jakub Jelinek <jakub@redhat.com>
4060
4061 PR middle-end/53510
4062 * input.c (read_line): Use XRESIZEVEC instead of XNEWVEC
4063 to avoid leaking memory. No need to handle memory allocation
4064 failure. Double string_len on each reallocation instead of adding 2.
4065 * gcov.c (read_line): Likewise.
4066
4067 2012-05-29 Hans-Peter Nilsson <hp@axis.com>
4068
4069 * config/cris/cris.h (TARGET_HAS_BREAK, TARGET_TRAP_USING_BREAK8):
4070 New macros.
4071 * config/cris/cris.md ("trap"): Define, enabled for
4072 TARGET_TRAP_USING_BREAK8.
4073 * config/cris/cris.opt (mtrap-using-break8): New option.
4074
4075 2012-05-28 Paolo Carlini <paolo.carlini@oracle.com>
4076
4077 PR c++/25137
4078 * doc/invoke.texi: Document -Wmissing-braces not enabled by -Wall
4079 for C++.
4080
4081 2012-05-28 Hans-Peter Nilsson <hp@axis.com>
4082
4083 * doc/md.texi (stack_protect_test): Remove negation of branch to label.
4084 (Standard Names): Fix typos in documentation of atomic patterns.
4085
4086 2012-05-27 Nathan Sidwell <nathan@acm.org>
4087
4088 * tree.c (build_constructor): Propagate TREE_SIDE_EFFECTS.
4089
4090 2012-05-26 Jason Merrill <jason@redhat.com>
4091
4092 PR c++/53220
4093 * c-typeck.c (array_to_pointer_conversion): Give -Wc++-compat warning
4094 about array compound literals.
4095
4096 2012-05-26 Eric Botcazou <ebotcazou@adacore.com>
4097
4098 * cfgcleanup.c (try_optimize_cfg): Do not delete forwarder blocks
4099 if CLEANUP_NO_INSN_DEL.
4100 * cfgrtl.c (unique_locus_on_edge_between_p): New function extracted
4101 from cfg_layout_merge_blocks.
4102 (emit_nop_for_unique_locus_between): New function.
4103 (rtl_merge_blocks): Invoke emit_nop_for_unique_locus_between.
4104 (cfg_layout_merge_blocks): Likewise.
4105
4106 2012-05-26 Dimitrios Apostolou <jimis@gmx.net>
4107 Paolo Bonzini <bonzini@gnu.org>
4108
4109 * df-scan.c (df_def_record_1): Assert a parallel must contain an
4110 EXPR_LIST at this point. Receive the LOC and move its extraction...
4111 (df_defs_record): ... here. Change if-else to a switch statement.
4112 (df_find_hard_reg_defs, df_find_hard_reg_defs_1): New.
4113 (df_get_call_refs): Changed defs_generated from bitmap to HARD_REG_SET
4114 and compute it from df_find_hard_reg_defs(). Record DF_REF_BASE
4115 DEFs in REGNO order. Use HARD_REG_SET instead of bitmap for
4116 regs_invalidated_by_call.
4117 (df_insn_refs_collect): Record DF_REF_REGULAR DEFs after
4118 df_get_call_refs().
4119
4120 2012-05-25 Eric Botcazou <ebotcazou@adacore.com>
4121
4122 PR lto/52178
4123 * tree-inline.c (remap_gimple_op_r): Fix handling of FIELD_DECL.
4124 * tree.c (RETURN_TRUE_IF_VAR): Do not return true for PLACEHOLDER_EXPR.
4125
4126 2012-05-25 Michael Meissner <meissner@linux.vnet.ibm.com>
4127
4128 * config/rs6000/t-linux64: Delete the 32-bit multilib that uses
4129 software floating point emulation. No longer build the multilibs
4130 with -mstrict-align.
4131
4132 2012-05-25 Aldy Hernandez <aldyh@redhat.com>
4133
4134 PR middle-end/53008
4135 * trans-mem.c (ipa_tm_create_version_alias): Output new_node if
4136 accessed indirectly.
4137 (ipa_tm_create_version): Same.
4138
4139 2012-05-25 Uros Bizjak <ubizjak@gmail.com>
4140
4141 PR target/53474
4142 * config/i386/i386.c (ix86_print_operand) <case 'O'>: Print '.' here.
4143 <case 'C', case 'c', case 'F', case 'f'>: Print '.' only for C and c.
4144
4145 2012-05-25 Alexander Ivchenko <alexander.ivchenko@intel.com>
4146
4147 PR target/53435
4148 * config/i386/i386.c (ix86_expand_vec_perm): Use correct op.
4149 (ix86_expand_vec_perm): Use int mode instead of float.
4150 (expand_vec_perm_pshufb): Remove handling of useseless type
4151 conversion.
4152
4153 2012-05-25 Eric Botcazou <ebotcazou@adacore.com>
4154
4155 PR ada/52362
4156 * config.gcc (i[34567]86-*-mingw* | x86_64-*-mingw*): Set gas and
4157 gnu_ld variables to yes.
4158 * configure.ac (HAVE_GNU_LD): Move to after config.gcc inclusion.
4159 (HAVE_GNU_AS): Likewise.
4160 * config.in: Regenerate.
4161 * configure: Likewise.
4162
4163 2012-05-25 Tristan Gingold <gingold@adacore.com>
4164
4165 * config/i386/i386.c (struct ix86_frame): Remove unused frame field.
4166 (ix86_compute_frame_layout): Fix type of stack_alignment_needed
4167 and preferred_alignment.
4168
4169 2012-05-25 Tristan Gingold <gingold@adacore.com>
4170
4171 * common/config/ia64/ia64-common.c (ia64_except_unwind_info): Fix typo.
4172
4173 2012-05-25 Thomas Schwinge <thomas@codesourcery.com>
4174
4175 * fold-const.c (optimize_bit_field_compare): Abort early in the strict
4176 volatile bitfields case.
4177
4178 2012-05-24 Pat Haugen <pthaugen@us.ibm.com>
4179
4180 * config/rs6000/rs6000.c (rs6000_option_override_internal): Change
4181 rs6000_sched_costly_dep default to true_store_to_load_dep_costly.
4182 (adjacent_mem_locations): Move some code to and call...
4183 (get_memref_parts): ...new function.
4184 (mem_locations_overlap): New function.
4185 (rs6000_adjust_priority): Adjust calls to is_load_insn/is_store_insn.
4186 (is_mem_ref): Rename to...
4187 (find_mem_ref): ...this. Return MEM rtx.
4188 (get_store_dest): Remove function.
4189 (is_load_insn1, is_load_insn, is_store_insn1, is_store_insn): Add
4190 new parameter and adjust calls.
4191 (rs6000_is_costly_dependence): Update calls for extra arg. Make sure
4192 mem refs overlap for true_store_to_load_dep_costly.
4193 (rs6000_sched_reorder2): Update calls for extra arg. Adjust args
4194 passed to adjacent_mem_locations.
4195 (is_costly_group): Walk resolved dependency list.
4196 (force_new_group): Emit group ending nop for Power6/Power7.
4197 * config/rs6000/rs6000.md (UNSPEC_GRP_END_NOP): New enum value.
4198 (group_ending_nop): New define_insn.
4199
4200 2012-05-24 Dodji Seketeli <dodji@redhat.com>
4201
4202 Make unwound macro expansion trace less redundant
4203 * tree-diagnostic.c (maybe_unwind_expanded_macro_loc): Don't print
4204 context of macro definition in the trace, when it's redundant.
4205 Update comments.
4206
4207 2012-05-24 Richard Guenther <rguenther@suse.de>
4208
4209 PR middle-end/53460
4210 * tree-profile.c (tree_profiling): Cleanup the CFG if
4211 execute_fixup_cfg requests it.
4212
4213 2012-05-24 Richard Guenther <rguenther@suse.de>
4214
4215 * tree-flow.h (create_var_ann): Remove.
4216 * tree-dfa.c (create_var_ann): Remove and inline into its
4217 single caller ...
4218 (add_referenced_var_1): ... here.
4219 * varpool.c (add_new_static_var): Do not call add_referenced_var
4220 for global vars.
4221 * gimple-fold.c (canonicalize_constructor_val): Likewise.
4222 * tree-switch-conversion.c (build_one_array): Likewise.
4223 * tree-profile.c (gimple_gen_ic_profiler): Likewise.
4224 * tree-flow-inline.h (gimple_referenced_vars): Guard against
4225 NULL fn argument.
4226 * tree-inline.c (remap_gimple_op_r): Likewise. Check
4227 gimple_referenced_vars instead of gimple_in_ssa_p.
4228 (copy_tree_body_r): Likewise.
4229 (setup_one_parameter): Likewise.
4230 (declare_return_variable): Likewise.
4231 (tree_function_versioning): Likewise.
4232
4233 2012-05-24 Jakub Jelinek <jakub@redhat.com>
4234
4235 PR tree-optimization/53465
4236 * tree-vrp.c (extract_range_from_cond_expr): First copy_value_range
4237 vr0 into *vr, then vrp_meet that.
4238 (vrp_meet): If one vr type is VR_UNDEFINED, ensure the result doesn't
4239 have any equivalences.
4240 (vrp_visit_phi_node): Call copy_value_range instead of vrp_meet the
4241 first time.
4242
4243 2012-05-24 Jim MacArthur <jim.macarthur@arm.com>
4244
4245 * recog.c (reg_fits_class_p): Check both regno and regno + offset are
4246 hard registers.
4247 * regs.h (in_hard_reg_set_p): Assert that regno is a hard register and
4248 check end_regno - 1 is a hard register.
4249
4250 2012-05-24 Richard Guenther <rguenther@suse.de>
4251
4252 * varpool.c (add_new_static_var): Remove call to create_var_ann.
4253 * tree-ssa-operands.c (create_vop_var): Likewise.
4254
4255 2012-05-24 Richard Guenther <rguenther@suse.de>
4256
4257 PR bootstrap/53466
4258 * tree-ssa-live.c (remove_unused_scope_block_p): Properly
4259 handle globals.
4260 (remove_unused_locals): Pass global_unused_vars to
4261 remove_unused_scope_block_p. Restore code walking all
4262 referenced vars and pruning them.
4263
4264 2012-05-23 Jan Hubicka <jh@suse.cz>
4265
4266 * tree.h (alias_diag_flags): Remove.
4267 (alias_pair): Remove emitted_diags.
4268 (finish_aliases_1, finish_aliases_2, remove_unreachable_alias_pairs,
4269 symbol_alias_set_t, symbol_alias_set_destroy,
4270 symbol_alias_set_contains, propagate_aliases_backward): Remove.
4271 * toplev.c (compile_file): Do not call finish_aliases_2
4272 * cgraphunit.c (cgraph_process_new_functions): Do not call
4273 finish_aliases_1.
4274 (handle_alias_pairs): Output diagnostics about aliases to externals.
4275 (assemble_thunks_and_aliases): Use do_assemble_alias.
4276 (output_weakrefs): Likewise.
4277 (finalize_compilation_unit): Do not call finish_aliases_1.
4278 * ipa.c (symtab_remove_unreachable_nodes): De not call
4279 remove_unreachable_alias_pairs.
4280 * varasm.c (do_assemble_alias): Export.
4281 (symbol_alias_set_create, symbol_alias_set_destroy,
4282 symbol_alias_set_contains, symbol_alias_set_insert,
4283 propagate_aliases_forward, propagate_aliases_backward,
4284 propagate_aliases_backward, trivially_visible_alias,
4285 trivially_defined_alias, remove_unreachable_alias_pairs,
4286 finish_aliases_1, finish_aliases_2, assemble_alias): Remove.
4287 * output.h (do_assemble_alias): Declare.
4288 * varpool.c (varpool_remove_unreferenced_decls): Do not call
4289 finish_aliases_1.
4290
4291 2012-05-23 Martin Jambor <mjambor@suse.cz>
4292
4293 * ipa-inline-analysis.c (inline_merge_summary): Free operand_map.
4294
4295 2012-05-23 Eric Botcazou <ebotcazou@adacore.com>
4296
4297 * gimple.c (gimple_types_compatible_p_1) <ARRAY_TYPE>: Remove bogus
4298 size handling.
4299 (gimple_canonical_types_compatible_p) <ARRAY_TYPE>: Likewise.
4300 (iterative_hash_gimple_type): Adjust comment.
4301 (iterative_hash_canonical_type): Likewise. Hash the bounds of the
4302 domain for an array type instead of the domain type itself.
4303
4304 2012-05-23 Richard Guenther <rguenther@suse.de>
4305
4306 PR tree-optimization/53438
4307 * tree-sra.c (analyze_access_subtree): Correct bitfield exclusion.
4308
4309 2012-05-23 Georg-Johann Lay <avr@gjlay.de>
4310
4311 PR target/53448
4312 * config/avr/avr.h (ASM_OUTPUT_ALIGN): Don't inhibit .p2align 1.
4313 * config/avr/elf.h (ASM_OUTPUT_BEFORE_CASE_LABEL): Use
4314 ASM_OUTPUT_ALIGN.
4315
4316 2012-05-23 Richard Guenther <rguenther@suse.de>
4317
4318 * tree-dfa.c (add_referenced_var_1): Do not add global vars.
4319 * tree-ssa-live.c (mark_all_vars_used_1): Handle global vars
4320 via the global_unused_vars bitmap.
4321 (remove_unused_locals): Handle global vars in local-decls via
4322 a global_unused_vars bitmap instead of the used flag in the
4323 var annotation. Simplify global variable handling and removal.
4324
4325 2012-05-22 Jan Hubicka <jh@suse.cz>
4326
4327 PR middle-end/53426
4328 * tree-ssa-structalias.c (create_variable_info_for): Skip constructors
4329 from other partitions.
4330
4331 2012-05-22 Jan Hubicka <jh@suse.cz>
4332
4333 PR middle-end/53161
4334 * symtab.c (symtab_register_node): Fix ordering issue.
4335
4336 2012-05-22 Steven Drake <sbd@NetBSD.org>
4337
4338 * gcc.c (do_spec_1): Add %M spec token to output multilib_os_dir.
4339
4340 2012-05-22 David Edelsohn <dje.gcc@gmail.com>
4341
4342 * config/rs6000/rs6000.c (rs6000_aix_asm_output_dwarf_table_ref):
4343 Use strip_name_encoding target hook.
4344
4345 2012-05-22 Richard Guenther <rguenther@suse.de>
4346
4347 * tree.h (VAR_DECL_IS_VIRTUAL_OPERAND): New.
4348 (init_function_for_compilation): Remove.
4349 * tree-dfa.c (find_vars_r): Take struct function argument.
4350 (find_referenced_vars_in): Adjust.
4351 * tree-ssa-operands.c (clobber_stats): Remove.
4352 (create_vop_var): Take struct function argument. Mark
4353 virtual operand with VAR_DECL_IS_VIRTUAL_OPERAND.
4354 (init_ssa_operands): Take struct function argument.
4355 (fini_ssa_operands): Do not dump dead stats.
4356 * tree-ssa-operands.h (init_ssa_operands): Take struct function
4357 argument.
4358 * cgraphunit.c (init_lowered_empty_function): Adjust.
4359 * lto-streamer-in.c (input_cfg): Likewise.
4360 * tree-inline.c (initialize_cfun): Likewise.
4361 * tree-into-ssa.c (rewrite_into_ssa): Likewise.
4362 * omp-low.c (expand_omp_taskreg): Likewise. Avoid switching cfun.
4363 * gimple.c (is_gimple_reg): Optimize the SSA_NAME case,
4364 virtual operands are not registers.
4365
4366 2012-05-22 Richard Guenther <rguenther@suse.de>
4367
4368 * tree-cfg.c (verify_gimple_assign_unary): Fix typo in previous commit.
4369
4370 2012-05-22 Richard Guenther <rguenther@suse.de>
4371
4372 PR middle-end/53437
4373 * tree-inline.c (setup_one_parameter): Create a dummy init
4374 statement for unused parameters when not optimizing.
4375
4376 2012-05-22 Richard Guenther <rguenther@suse.de>
4377
4378 * tree-flow.h (add_referenced_var_1): Declare.
4379 (add_referenced_var): Define.
4380 * tree-dfa.c (referenced_var_check_and_insert): Avoid one hash lookup.
4381 (add_referenced_var): Rename to ...
4382 (add_referenced_var_1): ... this. Take struct function argument.
4383
4384 2012-05-22 Ramana Radhakrishnan <ramana.radhakrishnan@linaro.org>
4385
4386 PR target/53334
4387 * config/arm/arm-protos.h (arm_validize_comparison): Declare.
4388 * config/arm/arm.c (arm_validize_comparison): Define.
4389 * config/arm/arm.md ("cbranchsi4"): Cleanup expansion and use
4390 arm_validize_comparison.
4391 ("cbranchdi4"): Likewise.
4392 ("cstoredi4"): Likewise.
4393 ("movsicc"): Likewise.
4394 ("movsfcc"): Likewise.
4395 ("movdfcc"): Likewise.
4396
4397 2012-05-22 Dimitrios Apostolou <jimis@gmx.net>
4398
4399 * df-scan.c (df_scan_alloc): Round up allocation pools size, reduce
4400 the mw_reg_pool size.
4401
4402 2012-05-22 Paolo Bonzini <bonzini@gnu.org>
4403
4404 PR tree-optimization/53336
4405 * tree-cfg.c (verify_gimple_assign_unary): Allow conversion from
4406 non-integer integral types to offset type and vice versa.
4407
4408 2012-05-22 Alan Modra <amodra@gmail.com>
4409
4410 * config/rs6000/aix.h (FP_SAVE_INLINE, GP_SAVE_INLINE): Delete.
4411 * config/rs6000/darwin.h (FP_SAVE_INLINE, GP_SAVE_INLINE): Delete.
4412 * config/rs6000/sysv4.h (FP_SAVE_INLINE, GP_SAVE_INLINE,
4413 V_SAVE_INLINE): Delete.
4414 * config/rs6000/rs6000.c (V_SAVE_INLINE): Delete.
4415 (rs6000_savres_strategy): Reimplement GP/FP/V_SAVE_INLINE logic.
4416 For ELF targets, use out-of-line restores for -Os and any number
4417 of regs if the restore exits, and out-of-line gp save for two or
4418 more regs. Use save_reg_p to test for holes in reg restore set.
4419 Replace "#if" with "if".
4420
4421 2012-05-22 Alan Modra <amodra@gmail.com>
4422
4423 * config/rs6000/rs6000.c (save_reg_p): New function.
4424 (first_reg_to_save, first_fp_reg_to_save): Use it here.
4425 (first_altivec_reg_to_save, restore_saved_cr): Likewise.
4426 (emit_frame_save): Use gen_frame_store.
4427 (gen_frame_mem_offset): Correct SPE condition requiring reg+reg.
4428 (rs6000_emit_prologue): Use save_reg_p. Use gen_frame_store for
4429 vrsave and toc.
4430 (rs6000_emit_epilogue): Use save_reg_p. Use gen_frame_load for
4431 vrsave, toc, gp and fp restores.
4432
4433 2012-05-22 Alan Modra <amodra@gmail.com>
4434
4435 * config/rs6000/rs6000.c: Delete unnecessary forward declarations.
4436 Move those with ATTRIBUTE_UNUSED to immediately before definitions.
4437 Move function pointer variables after forward declarations.
4438 (rs6000_builtin_support_vector_misalignment): Make static.
4439 (rs6000_legitimate_address_p, rs6000_gimplify_va_arg): Likewise.
4440 (rs6000_function_value, rs6000_can_eliminate): Likewise.
4441
4442 2012-05-21 Bernd Schmidt <bernds@codesourcery.com>
4443
4444 PR rtl-optimization/53373
4445 * caller-save.c (save_call_clobbered_regs): Look into a possible
4446 PARALLEL manually rather than using single_set on a call insn.
4447
4448 2012-05-21 Jakub Jelinek <jakub@redhat.com>
4449
4450 PR tree-optimization/53436
4451 * omp-low.c (omp_build_component_ref): New function.
4452 (build_receiver_ref, build_sender_ref, create_task_copyfn): Use it.
4453
4454 2012-05-21 Uros Bizjak <ubizjak@gmail.com>
4455
4456 * config/i386/i386.c (put_condition_code): Change "reverse" and "fp"
4457 arguments to bool.
4458 (ix86_print_operand) <case 'O'>: Look at mode size of the operand.
4459 Do not print '.' here. Output operand lossage error for unhandled
4460 sizes. Move.
4461 <case '*'>: Move.
4462 <case '&'>: Ditto.
4463 <case 'Y'>: Ditto.
4464 <case 'z'>: Hardcode "code" argument into error strings.
4465 <case 'Z'>: Ditto.
4466 <case 'D'>: Merge AVX and non-AVX codes.
4467 <case 'C', case 'c', case 'F', case 'f'>: Merge. Fix error string.
4468 Update call to put_condition_code.
4469
4470 2012-05-21 Andreas Schwab <schwab@linux-m68k.org>
4471
4472 * config/m68k/m68k.md (*clzsi2_cf): Renamed from clzsi2. Call
4473 CC_STATUS_INIT.
4474 (clzsi2): New expander.
4475 (*clzsi2_68k): New insn.
4476 * config/m68k/m68k.h: Update comment about CLZ_DEFINED_VALUE_AT_ZERO.
4477
4478 2012-05-21 Aldy Hernandez <aldyh@redhat.com>
4479
4480 * gimple.h (gimple_set_in_transaction): Remove.
4481 (gimple_in_transaction): Look in BB instead.
4482 (gimple_statement_base): Remove in_transaction field.
4483 * basic-block.h (enum bb_flags): Add BB_IN_TRANSACTION.
4484 * trans-mem.c (compute_transaction_bits): Place transaction bit
4485 information into basic blocks.
4486
4487 2012-05-21 Andreas Schwab <schwab@linux-m68k.org>
4488
4489 * expr.c (get_def_for_expr_class): Define only if
4490 HAVE_conditional_move.
4491 (convert_tree_comp_to_rtx): Likewise.
4492
4493 2012-05-21 Uros Bizjak <ubizjak@gmail.com>
4494
4495 PR target/53399
4496 * config/i386/i386.md (ffs<mode>2): Generate CCCmode compare
4497 for TARGET_BMI.
4498 (ffssi2_no_cmove): Ditto.
4499 (*ffs<mode>_1): Remove insn pattern.
4500 (*tzcnt<mode>_1): New insn pattern.
4501 (*bsf<mode>1): Ditto.
4502
4503 2012-05-21 Richard Guenther <rguenther@suse.de>
4504
4505 * tree-dfa.c (add_referenced_var): Do not walk DECL_INITIAL for
4506 more referenced vars.
4507 * tree-ssa-live.c (mark_all_vars_used_1): Only set the used
4508 flag on variables that have a var-annotation.
4509
4510 2012-05-21 Joseph Myers <joseph@codesourcery.com>
4511
4512 PR c/53418
4513 * c-typeck.c (build_conditional_expr): Remove C_MAYBE_CONST_EXPR
4514 from folded operands before wrapping another around the
4515 conditional expression.
4516
4517 2012-05-21 Jakub Jelinek <jakub@redhat.com>
4518
4519 PR tree-optimization/53366
4520 * tree-vect-slp.c (vect_supported_load_permutation_p): Don't shortcut
4521 tests if complex_numbers == 2, but there are non-complex number loads
4522 too.
4523
4524 PR tree-optimization/53409
4525 * tree-vect-loop.c (vect_analyze_loop_operations): Don't check
4526 vinfo_for_stmt (op_def_stmt) if op_def_stmt isn't inside loop.
4527
4528 PR tree-optimization/53410
4529 * fold-const.c (fold_binary_loc): Use build_zero_cst (type)
4530 instead of build_int_cst (type, 0) where vector types might be
4531 involved. Instead of build_int_cst (type, 1) convert the original
4532 integer_onep argument to the desired type.
4533
4534 2012-05-21 Michael Matz <matz@suse.de>
4535
4536 * genattrtab.c (attr_rtx_cost): Move earlier, start with cost being 1.
4537 (simplify_test_exp): Handle one more case of distributive law,
4538 decrease cost threshold.
4539 (tests_attr_p, get_attr_order): New functions.
4540 (optimize_attrs): Use topological order, inline only cheap values.
4541 (write_attr_set): Reset our_known_true after some time.
4542
4543 2012-05-21 H.J. Lu <hongjiu.lu@intel.com>
4544
4545 PR target/53425
4546 * config/i386/i386.c (type_natural_mode): Warn passing SSE
4547 vector argument without SSE enabled changes the ABI.
4548
4549 2012-05-21 Richard Guenther <rguenther@suse.de>
4550
4551 PR tree-optimization/53408
4552 * tree-vect-loop.c (vectorizable_induction): Properly check
4553 the restriction that we cannot handle induction results from
4554 the inner loop outside of the outer loop.
4555
4556 2012-05-21 H.J. Lu <hongjiu.lu@intel.com>
4557
4558 PR target/53416
4559 * config/i386/i386.md (UNSPEC_RDRAND): Renamed to ...
4560 (UNSPECV_RDRAND): This.
4561 (rdrand<mode>_1): Updated.
4562
4563 2012-05-21 Richard Guenther <rguenther@suse.de>
4564
4565 * tree-loop-distribution.c (can_generate_builtin): Reject
4566 volatile stmts.
4567
4568 2012-05-21 Chung-Lin Tang <cltang@codesourcery.com>
4569
4570 * Makefile.in (options.c): Add options.h to included header
4571 files, before tm.h.
4572
4573 2012-05-21 Razya Ladelsky <razya@il.ibm.com>
4574
4575 * tree-parloops.c : Add myself to contributors, update
4576 TODO list, add link to wiki.
4577
4578 2012-05-21 Alan Modra <amodra@gmail.com>
4579
4580 * config/rs6000/predicates.md (input_operand): Don't match
4581 constant pool addresses. Remove label_ref, high and plus from
4582 match_code list. Remove redundant CONSTANT_P test.
4583 (splat_input_operand): Similarly update match_code list.
4584 (small_toc_ref): New predicate.
4585 * config/rs6000/rs6000-protos.h (toc_relative_expr_p): Update prototype.
4586 * config/rs6000/rs6000.c (tocrel_base, tocrel_offset): Make const.
4587 (legitimate_constant_pool_address_p): Move TARGET_TOC test and
4588 register checks to..
4589 (toc_relative_expr_p): ..here. Add "strict" param. Match new rtl
4590 generated by create_TOC_reference.
4591 (rs6000_legitimize_address): Update cerate_TOC_reference call.
4592 (rs6000_delegitimize_address): Handle new rtl for toc refs.
4593 (rs6000_cannot_force_const_mem, rs6000_find_base_term): Likewise.
4594 (use_toc_relative_ref): New function, split out from..
4595 (rs6000_emit_move): ..here. Remove redundant tests. Update
4596 create_TOC_reference calls.
4597 (rs6000_legitimize_reload_address): Formatting. Handle splitting
4598 of medium/large model toc addresses. Use use_toc_relative_ref.
4599 (print_operand): Formatting, style. Adjust for toc changes.
4600 (print_operand_address): Likewise.
4601 (rs6000_output_addr_const_extra): Likewise.
4602 (create_TOC_reference): Put TOC_REGISTER in UNSPEC_TOCREL rather
4603 than a PLUS. Use this formulation for both high and low part
4604 of -mcmodel=medium/large toc reference too. Before reload,
4605 always use the small model formulation.
4606 * config/rs6000/rs6000.md (tls_gd, tls_gd_high): Similarly avoid
4607 a PLUS in high part of addresses here.
4608 (tls_ld, tls_ld_high, tls_got_dtprel, tls_got_dtprel_high): Likewise.
4609 (tls_got_tprel, tls_got_tprel_high, largetoc_high): Likewise.
4610 (largetoc_high, largetoc_low): Move earlier. Cope when no
4611 base reg available.
4612 (largetoc_high_plus): New insn.
4613 (movsi_internal1, movsi_internal1_single, movsf_softfloat,
4614 movdi_mfpgpr, movdi_internal64): Don't handle 'R' constraint here..
4615 (tocref): ..instead do so here, new insn and split.
4616
4617 2012-05-20 H.J. Lu <hongjiu.lu@intel.com>
4618
4619 * config/i386/driver-i386.c (host_detect_local_cpu): Support
4620 RDRND, F16C and FSGSBASE.
4621
4622 2012-05-20 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
4623
4624 PR rtl-optimzation/53373
4625 * config/pa/pa.md (call_symref_pic): Don't expose PIC register save in
4626 call pattern. Update split patterns.
4627 (call_symref_64bit, call_reg_pic, call_reg_64bit, call_val_symref_pic,
4628 call_val_symref_64bit, call_val_reg_pic, call_val_reg_64bit): Likewise.
4629
4630 2012-05-20 Razya Ladelsky <razya@il.ibm.com>
4631
4632 * tree-parloops.c (gen_parallel_loop): Change many_iterations_cond
4633 for outer loops.
4634
4635 2012-05-18 Jan Hubicka <jh@suse.cz>
4636
4637 * cgraphunit.c (handle_alias_pairs): Declare; free alias_pairs
4638 (cgraph_process_new_functions): Process also aliases.
4639 * lto-streamer-out.c (struct sets): Remove.
4640 (trivally_defined_alias): Remove.
4641 (output_alias_pair_p): Remove.
4642 (output_unreferenced_globals): Remove.
4643 (produce_symtab); Do not handle alias pairs.
4644 (produce_asm_for_decls): Likewise.
4645 * lto-streamer-in.c (input_alias_pairs): Remove.
4646 (lto_read_body): Do not input alias pairs.
4647 (lto_input_constructors_and_inits): Remove.
4648
4649 2012-05-18 Jan Hubicka <jh@suse.cz>
4650
4651 * cgraphunit.c (handle_alias_pairs): Cleanup; handle all types of
4652 aliases.
4653
4654 2012-05-18 Jan Hubicka <jh@suse.cz>
4655
4656 * cgraphbuild.c (record_reference): Update.
4657 * lto-cgraph.c (lto_output_varpool_node): External vars
4658 are not in other partition even if they are not output
4659 in current partition.
4660 * gimple-fold.c (can_refer_decl_in_current_unit_p): Take FROM_DECL
4661 argument; fix.
4662 (canonicalize_constructor_val): Take FROM_DECL argument.
4663 (fold_ctor_reference, fold_string_cst_ctor_reference,
4664 fold_array_ctor_reference, fold_nonarray_ctor_reference,
4665 fold_ctor_reference): Likewise.
4666 (fold_const_aggregate_ref_1, gimple_get_virt_method_for_binfo): Update.
4667 * gimple.h (gimple_fold_builtin): Likewise.
4668
4669 2012-05-18 Olivier Hainque <hainque@adacore.com>
4670
4671 * Makefile.in (FLAGS_TO_PASS): Pass $(libexecsubdir) instead of
4672 $(libsubdir) as libexecsubdir.
4673
4674 2012-05-18 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
4675
4676 * config/rs6000/rs6000.c (print_operand): Revise code that unsafely
4677 relied on signed overflow behavior.
4678
4679 2012-05-18 Richard Guenther <rguenther@suse.de>
4680
4681 PR tree-optimization/53346
4682 * tree-loop-distribution.c (ldist_gen): Make sure to apply
4683 builtin transform even when only a single partition with
4684 all reads/writes exists.
4685
4686 2012-05-18 Richard Guenther <rguenther@suse.de>
4687
4688 PR tree-optimization/53390
4689 * tree-vect-data-refs.c (vect_compute_data_ref_alignment): Ignore
4690 strided loads.
4691
4692 2012-05-18 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
4693
4694 * tree-ssa-reassoc.c (bip_map): Remove decl.
4695 (completely_remove_stmt): Remove function.
4696 (remove_def_if_absorbed_call): Remove function.
4697 (remove_visited_stmt_chain): Remove __builtin_powi handling.
4698 (possibly_move_powi): Remove function.
4699 (rewrite_expr_tree): Remove calls to possibly_move_powi.
4700 (rewrite_expr_tree_parallel): Likewise.
4701 (attempt_builtin_powi): Build multiplies explicitly rather than
4702 relying on the ops vector and rank system.
4703 (transform_stmt_to_copy): New function.
4704 (transform_stmt_to_multiply): Likewise.
4705 (reassociate_bb): Handle leftover operations after __builtin_powi
4706 optimization; build a final multiply if necessary.
4707
4708 2012-05-18 Jan Hubicka <jh@suse.cz>
4709
4710 * cgraphunit.c (varpool_finalize_decl): Allow external decls.
4711 (mark_functions_to_output): Fix sanity check.
4712 * ipa.c (function_and_variable_visibility): Remove TREE_STATIC check.
4713
4714 2012-05-18 Richard Guenther <rguenther@suse.de>
4715
4716 * tree-flow.h (mark_symbols_for_renaming): Remove.
4717 * tree-dfa.c (mark_symbols_for_renaming): Likewise.
4718 * tree-inline.c (copy_edges_for_bb): Do not mark symbols for renaming.
4719 (copy_debug_stmt): Likewise.
4720 (expand_call_inline): Likewise.
4721 (declare_return_variable): Mark the return variable for renaming
4722 if necessary.
4723
4724 2012-05-18 Andrew Stubbs <ams@codesourcery.com>
4725
4726 * config/arm/arm-protos.h (arm_emit_coreregs_64bit_shift): New
4727 prototype.
4728 * config/arm/arm.c (arm_emit_coreregs_64bit_shift): New function.
4729 * config/arm/arm.md (ashldi3): Use arm_emit_coreregs_64bit_shift.
4730 (ashrdi3,lshrdi3): Likewise.
4731 (arm_cond_branch): Remove '*' to enable gen_arm_cond_branch.
4732
4733 2012-05-18 Meador Inge <meadori@codesourcery.com>
4734
4735 PR rtl-optimization/53352
4736 * cse.c (equiv_constant): Ignore paradoxical subregs.
4737
4738 2012-05-17 Steven Bosscher <steven@gcc.gnu.org>
4739
4740 PR rtl-optimization/53125
4741 * regstat.c (regstat_bb_compute_ri): Take new local_live_last_luid
4742 argument. Simplify calculation of REG_LIVE_LENGTH for regnos that
4743 die in the basic block. Correctly top off REG_FREQ and
4744 REG_FREQ_CALLS_CROSSED.
4745 Remove do_not_gen.
4746 (regstat_compute_ri): Allocate and free local_live_last_luid.
4747 Remove do_not_gen.
4748 (regstat_bb_compute_calls_crossed): Correctly top off
4749 REG_FREQ_CALLS_CROSSED.
4750
4751 2012-05-17 Jan Hubicka <jh@suse.cz>
4752
4753 * lto-symtab.c (lto_symtab_resolve_symbols): Preffer decl with
4754 constructor over decl without.
4755 * cgraph.c (cgraph_remove_node): Clear also body of unanalyzed nodes.
4756 * cgraph.h (varpool_can_remove_if_no_refs): Handle external correctly.
4757 * cgraphunit.c (process_function_and_variable_attributes): Finalize
4758 extrnal decls.
4759 (mark_functions_to_output): Also accept bodies for functions with
4760 clones.
4761 (output_in_order): Skip external vars.
4762 * lto-cgraph.c (lto_output_node): External functions are never in other
4763 partition.
4764 (lto_output_varpool_node): Likewise.
4765 * lto-streamer-out.c (lto_write_tree): Always use error_mark_nodes for
4766 forgotten initializers.
4767 * ipa.c (process_references): Handle external vars.
4768 (symtab_remove_unreachable_nodes): Update to handle external vars.
4769 (varpool_externally_visible_p): External vars are externally visible.
4770 * gimple-fold.c (can_refer_decl_in_current_unit_p): Update.
4771 * varpool.c (varpool_remove_node): Remove constructor.
4772 (decide_is_variable_needed): Handle externals.
4773 (varpool_remove_unreferenced_decls): Likewise.
4774
4775 2012-05-17 Manuel López-Ibáñez <manu@gcc.gnu.org>
4776
4777 * opts.c (common_handle_option): -pedantic-errors enables -Wpedantic.
4778 (enable_warning_as_error): Do not special case Wuninitialized.
4779 * optc-gen.awk: Add sanity checks.
4780
4781 2012-05-17 Jan Hubicka <jh@suse.cz>
4782
4783 * ipa-reference.c (is_proper_for_analysis): Do not check flags
4784 that might change as result of global optimization.
4785 (analyze_function): Do not check analyzed and externally_visible
4786 flags; be happy about address dereferences.
4787 (propagate): Prune all_module_statics so it really contains just
4788 statics; prune all the local summaries.
4789 (ipa_reference_write_optimization_summary): Simplify.
4790
4791 2012-05-17 Kwok Cheung Yeung <kcy@codesourcery.com>
4792
4793 * config/m68k/m68k-devices.def: Add 51ag, 51je, 51jf, 51jg, 51mm, 51qm.
4794 * config/m68k/m68k-tables.opt: Regenerated.
4795 * doc/invoke.texi (M680x0 Options): Document.
4796
4797 2012-05-16 Dave Boutcher <daveboutcher@gmail.com>
4798 Patrick Marlier <patrick.marlier@gmail.com>
4799
4800 * trans-mem.c (ipa_tm_transform_clone): Transform functions with
4801 indirect calls.
4802
4803 2012-05-16 H.J. Lu <hongjiu.lu@intel.com>
4804
4805 * configure: Regenerated.
4806
4807 2012-05-16 Andrew Pinski <apinski@cavium.com>
4808
4809 * gimple-fold.c (get_maxval_strlen): Move COND_EXPR handling under
4810 GIMPLE_ASSIGN.
4811
4812 2012-05-16 David S. Miller <davem@davemloft.net>
4813
4814 * jump.c (delete_related_insns): If we remove a CALL, make sure
4815 we delete it's NOTE_INSN_CALL_ARG_LOCATION note too.
4816
4817 2012-05-16 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
4818
4819 PR tree-optimization/53217
4820 * tree-ssa-reassoc.c (bip_map): New static variable.
4821 (possibly_move_powi): Move feeding multiplies with __builtin_powi call.
4822 (attempt_builtin_powi): Save feeding multiplies on a stack.
4823 (reassociate_bb): Create and destroy bip_map.
4824
4825 2012-05-16 Olivier Hainque <hainque@adacore.com>
4826
4827 * Makefile.in (install-no-fixedincludes): New target, former toplevel
4828 gcc-no-fixedincludes. Stash "include-fixed" in addition to "include".
4829 Add comments and improve stamp preservation across the whole sequence.
4830 (stmp-int-hdrs): Use move-if-change + cp -p to setup fix_dir/limits.h.
4831
4832 2012-05-16 Richard Guenther <rguenther@suse.de>
4833
4834 * tree-inline.c (insert_init_stmt): Do not call
4835 mark_symbols_for_renaming.
4836 (setup_one_parameter): Avoid initializing unused parameters.
4837 (declare_return_variable): Properly handle DECL_BY_REFERENCE
4838 return vars in SSA form.
4839
4840 2012-05-16 Richard Guenther <rguenther@suse.de>
4841
4842 * tree-flow.h (get_virtual_var): Remove.
4843 * tree-dfa.c (get_virtual_var): Likewise.
4844
4845 2012-05-16 Richard Guenther <rguenther@suse.de>
4846
4847 * tree-vect-loop-manip.c (slpeel_update_phi_nodes_for_guard1):
4848 Remove set-only bitmap of new names.
4849 (slpeel_tree_peel_loop_to_edge): Likewise. Do not set
4850 CFG hooks.
4851 * tree-flow.h (ssa_names_to_replace): Remove.
4852 * tree-into-ssa.c (ssa_names_to_replace): Likewise.
4853
4854 2012-05-16 Richard Guenther <rguenther@suse.de>
4855
4856 PR tree-optimization/53364
4857 * tree-ssa-alias.c (indirect_ref_may_alias_decl_p): Properly
4858 detect a view-conversion of the decl.
4859
4860 2012-05-16 Dodji Seketeli <dodji@redhat.com>
4861
4862 PR preprocessor/7263
4863 * c-tree.h (enum c_declspec_word): Declare new enum.
4864 (struct c_declspecs::locations): New member.
4865 (declspecs_add_qual, declspecs_add_scspec)
4866 (declspecs_add_addrspace, declspecs_add_alignas): Take a new
4867 location parameter.
4868 * c-decl.c (build_null_declspecs): Initialize the new struct
4869 c_declspecs::locations member.
4870 (declspecs_add_addrspace): Take a location parameter for the
4871 address space. Store it onto declaration specifiers.
4872 (declspecs_add_qual): Likewise, take a location parameter for the
4873 qualifier.
4874 (declspecs_add_type): Likewise, take a location parameter for the
4875 type specifier.
4876 (declspecs_add_scspec): Likewise, take a location parameter for
4877 the storage class specifier.
4878 (declspecs_add_attrs): Likewise, take a location parameter for the
4879 first attribute.
4880 (declspecs_add_alignas): Likewise, take a location parameter for
4881 the alignas token.
4882 (finish_declspecs): For diagnostics, use the location of the
4883 relevant declspec, instead of the global input_location.
4884 * c-parser.c (c_parser_parameter_declaration): Pass the precise
4885 virtual location of the declspec to the declspecs-setters.
4886 (c_parser_declspecs): Likewise. Avoid calling c_parser_peek_token
4887 repeatedly.
4888
4889 2012-05-16 Igor Zamyatin <igor.zamyatin@intel.com>
4890
4891 * configure.ac: Stack protector enabling for Android targets.
4892 * configure: Regenerate.
4893
4894 2012-05-16 Richard Sandiford <r.sandiford@uk.ibm.com>
4895
4896 * ira.c (pseudo_move_insn): Delete.
4897 (find_moveable_pseudos): Don't set it.
4898 (move_unallocated_pseudos): Use DF_REG_DEF_CHAIN to find
4899 the definitions of the original pseudo. Delete all of them.
4900
4901 2012-05-16 Olivier Hainque <hainque@adacore.com>
4902
4903 * config/rs6000/rs6000-opts.h (enum processor_type): Add
4904 PROCESSOR_PPC8548.
4905 * config/rs6000/rs6000-cpus.def: Reference it for cpu="8548".
4906 * config/rs6000/rs6000.md (cpu attribute definition): Add ppc8548.
4907 * config/rs6000/8540.md: indicate that the units/patterns apply to
4908 ppc8548 as well.
4909
4910 * config/rs6000/rs6000.c (rs6000_option_override_internal): Rename
4911 default_cpu into implicit_cpu, conveying what --with-cpu was passed at
4912 configure time. Treat implicit_cpu as have_CPU. Pick defaults for SPE
4913 related flags, check that what is queried is supported by the selected
4914 configuration. Rework the single/double_float and MASK_STRING resets to
4915 hit for all the E500 cores (854x + E500MC variants). Select the ppc8540
4916 costs for PROCESSOR_PPC8548 as well.
4917 (rs6000_issue_rate): case CPU_PPC8548 together with CPU_PPC8540.
4918 (rs6000_use_sched_lookahead): Likewise, rewriting function as a case
4919 statement instead of a sequence of ifs.
4920
4921 * config/rs6000/rs6000.h (TARGET_E500): Remove.
4922 (TARGET_NO_LWSYNC): Adjust accordingly.
4923 * config/rs6000/e500.h (TARGET_E500): Remove.
4924 (CHECK_E500_OPTIONS): Adjust accordingly.
4925 * config/rs6000/eabispe.h (SUBSUBTARGET_OVERRIDE_OPTIONS): Remove.
4926 (TARGET_DEFAULT): Reformat definition to match the one in linuxspe.h.
4927 * config/rs6000/linuxspe.h: Likewise.
4928 * config/rs6000/vxworks.h: Remove bogus TARGET_E500 overrides and
4929 superfluous comments.
4930 * config/rs6000/e500-double.h: Remove.
4931
4932 * config.gcc (pick a default with_cpu): For powerpc*-*-*spe*,
4933 default to with_cpu=8548 if --enable-e500-double, and to 8540
4934 otherwise.
4935 (set misc flags section): For powerpc*|rs6000*, remove inclusion
4936 of e500-double.h for --enable-e500-double.
4937
4938 2012-05-16 Olivier Hainque <hainque@adacore.com>
4939
4940 * Makefile.in (s-header-vars): Resort to -n instead of trailing
4941 -e d in sed invocation.
4942
4943 2012-05-16 Hans-Peter Nilsson <hp@axis.com>
4944
4945 * doc/tm.texi.in (Type Layout) <SIZE_TYPE>: Update reference to
4946 source-code.
4947 * doc/tm.texi: Regenerate.
4948
4949 2012-05-15 Paolo Carlini <paolo.carlini@oracle.com>
4950
4951 * tree.h (EXPR_LOCATION): Use CAN_HAVE_LOCATION_P.
4952
4953 2012-05-15 Jakub Jelinek <jakub@redhat.com>
4954
4955 PR target/53358
4956 * config/i386/i386.md (*addqi_2 peephole with QImode addition): Check
4957 that operands[2] is either immediate, or q_regs_operand.
4958
4959 2012-05-15 Richard Guenther <rguenther@suse.de>
4960
4961 * cgraphunit.c (thunk_adjust): Use make_rename_temp.
4962 (assemble_thunk): Likewise. Manually rename and register
4963 function arguments.
4964
4965 2012-05-15 Richard Guenther <rguenther@suse.de>
4966
4967 PR tree-optimization/53355
4968 * tree-vrp.c (extract_range_from_binary_expr_1): Handle LSHIFT_EXPRs
4969 by constants.
4970
4971 2012-05-15 Tristan Gingold <gingold@adacore.com>
4972
4973 * tree-ssa-strlen.c (get_string_length): Convert lhs if needed.
4974
4975 2012-05-15 Richard Guenther <rguenther@suse.de>
4976
4977 * gimple.c (gimple_set_modified): Move ...
4978 * gimple.h (gimple_set_modified): ... here.
4979
4980 2012-05-15 Tristan Gingold <gingold@adacore.com>
4981
4982 * ira-color.c (move_spill_restore): Add a guard.
4983
4984 2012-05-15 Tristan Gingold <gingold@adacore.com>
4985
4986 * config/ia64/ia64.c (ia64_emit_probe_stack_range): Adjust calls to
4987 plus_constant.
4988
4989 2012-05-15 Eric Botcazou <ebotcazou@adacore.com>
4990
4991 * gimplify.c (gimplify_init_constructor): Do a block move for very
4992 small objects as well.
4993
4994 2012-05-15 Bernd Schmidt <bernds@codesourcery.com>
4995
4996 * ira.c (find_moveable_pseudos): Skip registers whose
4997 DF_REG_EQ_USE_COUNT is nonzero.
4998
4999 2012-05-15 Kenneth Zadeck <zadeck@naturalbridge.com>
5000
5001 * doc/md.texi (fma): Define to only be applicable for single rounding.
5002
5003 2012-05-14 Uros Bizjak <ubizjak@gmail.com>
5004
5005 PR target/46098
5006 * config/i386/i386.c (ix86_expand_special_args_builtin): Always
5007 generate target register for "load" class builtins.
5008
5009 Revert:
5010 2010-10-22 Uros Bizjak <ubizjak@gmail.com>
5011
5012 PR target/46098
5013 * config/i386/sse.md (*avx_movu<ssemodesuffix><avxmodesuffix>):
5014 Rename from avx_movu<ssemodesuffix><avxmodesuffix>.
5015 (avx_movu<ssemodesuffix><avxmodesuffix>): New expander.
5016 (*<sse>_movu<ssemodesuffix>): Rename from <sse>_movu<ssemodesuffix>.
5017 (<sse>_movu<ssemodesuffix>): New expander.
5018 (*avx_movdqu<avxmodesuffix>): Rename from avx_movdqu<avxmodesuffix>.
5019 (avx_movdqu<avxmodesuffix>): New expander.
5020 (*sse2_movdqu): Rename from sse2_movdqu.
5021 (sse2_movdqu): New expander.
5022
5023 2012-05-14 Marc Glisse <marc.glisse@inria.fr>
5024
5025 PR target/52607
5026 * config/i386/i386.c (ix86_expand_vec_perm_const): Move code to ...
5027 (canonicalize_perm): ... new function.
5028 (expand_vec_perm_2vperm2f128_vshuf): New function.
5029 (ix86_expand_vec_perm_const_1): Call it.
5030
5031 2012-05-14 Andrew Pinski <apinski@cavium.com>
5032 H.J. Lu <hongjiu.lu@intel.com>
5033 Jakub Jelinek <jakub@redhat.com>
5034
5035 PR target/53315
5036 * config/i386/i386.md (xbegin_1): Use + in constraint and match_dup.
5037 (xbegin): Updated.
5038
5039 2012-05-14 Jakub Jelinek <jakub@redhat.com>
5040
5041 * dwarf2out.c (dwarf2out_define, dwarf2out_undef): Treat
5042 lineno 1 the same as lineno 0 before first start file directive.
5043 (optimize_macinfo_range): Likewise.
5044
5045 * dwarf2out.c (have_macinfo): Define.
5046 (dwarf2out_finish): Don't emit DW_AT_GNU_macros or DW_AT_macro_info
5047 attribute, don't force empty compilation unit and don't emit any
5048 .debug_macinfo/.debug_macro section if macinfo_table is empty.
5049
5050 2012-05-14 Georg-Johann Lay <avr@gjlay.de>
5051
5052 PR target/53344
5053 * config/avr/avr.c (avr_const_address_lo16): Remove.
5054 (avr_assemble_integer): Print ".byte lo8(x)",
5055 ".byte hi8(x)", ".byte hh8(x)" instead of emit an assembler
5056 .warning if 3-byte address is assembled.
5057 * doc/extend.texi (AVR Named Address Spaces): Document that
5058 binutils 2.23 is needed to assemble 3-byte addresses.
5059
5060 2012-05-14 Richard Guenther <rguenther@suse.de>
5061
5062 * tree-vect-data-refs.c (vect_setup_realignment): Remove
5063 call to mark_symbols_for_renaming.
5064 (vect_permute_load_chain): Likewise.
5065 * tree-vect-loop.c (vect_is_slp_reduction): Update stmt
5066 instead of calling mark_symbols_for_renaming.
5067 * tree-vect-stmts.c (read_vector_array): Remove call to
5068 mark_symbols_for_renaming.
5069 (write_vector_array): Likewise.
5070 (vectorizable_call): Likewise.
5071 (vectorizable_store): Likewise.
5072 (vectorizable_load): Likewise.
5073 * matrix-reorg.c (transform_allocation_sites): Likewise.
5074 * tree-ssa-pre.c (create_expression_by_pieces): Likewise.
5075 (create_expression_by_pieces): Likewise.
5076
5077 2012-05-14 Richard Guenther <rguenther@suse.de>
5078
5079 * gimplify.c (gimple_regimplify_operands): Only mark the LHS
5080 of statements for renaming.
5081 (force_gimple_operand_1): Likewise, consistently for both
5082 calls to force_gimple_operand and force_gimple_operand_gsi.
5083
5084 2012-05-14 Richard Guenther <rguenther@suse.de>
5085
5086 * tree-dfa.c (make_rename_temp): Be forgiving if not in SSA form.
5087 * omp-low.c (expand_omp_taskreg): Properly conditionalize call
5088 to update_ssa.
5089 (expand_omp_for): Likewise.
5090 (expand_omp_for_generic): Adjust conditional add to referenced vars.
5091 Use make_rename_temp for temporaries that should be rewritten into
5092 SSA form.
5093 (expand_omp_for_static_nochunk): Likewise.
5094 (expand_omp_atomic_pipeline): Likewise.
5095
5096 2012-05-14 Richard Guenther <rguenther@suse.de>
5097
5098 PR tree-optimization/53331
5099 * tree-vect-data-refs.c (vect_verify_datarefs_alignment): Ignore
5100 strided loads.
5101 * tree-vect-stmts.c (vect_model_load_cost): Handle strided loads.
5102
5103 2012-05-14 Manuel López-Ibáñez <manu@gcc.gnu.org>
5104
5105 PR 53063
5106 * doc/options.texi: (LangEnabledBy): Document it.
5107 * optc-gen.awk: Handle LangEnabledBy.
5108 * opth-gen.awk: Generate declaration for lang-specific functions.
5109 * opt-read.awk: Record lang numbers.
5110 * opt-functions.awk (flag_set_p): Ignore the arguments of flags.
5111 (lang_sanitized_name): New.
5112
5113 2012-05-14 Bernd Schmidt <bernds@codesourcery.com>
5114
5115 * attribs.c (decl_attributes): Avoid emitting a warning if
5116 ATTR_FLAG_BUILT_IN.
5117 * doc/rtl.texi (CALL_INSN_FUNCTION_USAGE): Use lowercase for rtx
5118 codes. Document meaning of sets inside CALL_INSN_FUNCTION_USAGE.
5119 * builtin-attrs.def (DEF_ATTR_FOR_STRING): Define. Use it to
5120 define a string "1".
5121 (ATTR_RET1_NOTHROW_NONNULL_LEAF): New attr definition.
5122 * builtins.def (BUILT_IN_MEMCPY, BUILT_IN_MEMMOVE, BUILT_IN_MEMSET,
5123 BUILT_IN_STRCPY): Use it for these functions.
5124 * postreload.c (reload_combine): Deal with SETs inside
5125 CALL_INSN_FUNCTION_USAGE.
5126 * caller-save.c (setup_save_areas, save_call_clobbered_regs):
5127 Look for REG_RETURNED notes and use a cheap restore if possible.
5128 * ira-int.h (struct ira_allocno): New member cheap_calls_crossed_num.
5129 (ALLOCNO_CHEAP_CALLS_CROSSED_NUM): New macro.
5130 * ira-build.c (ira_create_allocno, create_cap_allocno,
5131 propagate_allocno_info, propagate_some_info_from_allocno,
5132 copy_info_to_removed_store_destination, ira_flattening): Handle it.
5133 * ira-lives.c (pseudo_regno_single_word_and_live_p,
5134 find_call_crossed_cheap_reg): New static functions.
5135 (process_bb_node_lives): Look for SETs in CALL_INSN_FUNCTION_USAGE,
5136 and set ALLOCNO_CHEAP_CALLS_CROSSED_NUM if possible. Also make
5137 a REG_RETURNED note in that case.
5138 * ira.c (setup_reg_renumber): Change assert to allow cases where
5139 allocnos only cross calls for which they are cheap to restore.
5140 * ira-costs.c (ira_tune_allocno_costs): Compare
5141 ALLOCNO_CALLS_CROSSED_NUM to ALLOCNO_CHEAP_CALLS_CROSSED_NUM rather
5142 than 0.
5143 * reg-notes.def (REG_RETURNED): New note.
5144 * cse.c (cse_insn): Likewise.
5145 * sched-deps.c (sched_analyze_insn): Likewise.
5146 * expr.c (init_block_move_fn): Set a "fn spec" attribute.
5147 * calls.c (decl_return_flags): New static function.
5148 (expand_call): Generate a SET in CALL_INSN_FUNCTION_USAGE for
5149 functions that return one of their arguments.
5150 * regcprop.c (struct kill_set_value_data): New.
5151 (kill_set_value): Interpret data as a pointer to such a struct.
5152 Do nothing if the caller wants the register to be ignored.
5153 (copyprop_hardreg_forward_1): Handle SETs in CALL_INSN_FUNCTION_USAGE.
5154
5155 2012-05-14 Richard Guenther <rguenther@suse.de>
5156
5157 PR tree-optimization/53340
5158 * tree-ssa-pre.c (op_valid_in_sets): Fix error in last commit.
5159
5160 2012-05-14 Richard Guenther <rguenther@suse.de>
5161
5162 * gimplify.c (gimplify_expr): Remove odd code.
5163
5164 2012-05-14 Eric Botcazou <ebotcazou@adacore.com>
5165
5166 * stor-layout.c (bit_from_pos): Distribute conversion to bitsizetype
5167 into a PLUS_EXPR byte offset.
5168
5169 * tree-ssa-pre.c (can_value_number_call): Delete.
5170 (compute_avail): Skip all statements with side effects.
5171 <GIMPLE_CALL>: Skip calls to internal functions.
5172
5173 2012-05-13 Steven Bosscher <steven@gcc.gnu.org>
5174
5175 * config/pa/pa.md: Use define_c_enum for "unspec" and "unspecv".
5176
5177 2012-05-13 Manuel López-Ibáñez <manu@gcc.gnu.org>
5178
5179 * common.opt (Wtype-limits): Use EnabledBy.
5180
5181 2012-05-13 Uros Bizjak <ubizjak@gmail.com>
5182
5183 * config/i386/i386.md (*pushtf): Enable for TARGET_SSE.
5184 (pushtf splitter): Ditto.
5185 (movtf): Ditto.
5186 (*movtf_internal): Ditto. Use V4SFmode for !TARGET_SSE2.
5187 (<code>tf2): Enable for TARGET_SSE.
5188 (*absnegtf2_sse): Ditto.
5189 (copysign<mode>3): Enable TFmode for TARGET_SSE.
5190 (copysign<mode>3_const): Ditto.
5191 (copysign<mode>3_var): Ditto.
5192 * config/i386/sse.md (<code>tf3): Enable for TARGET_SSE.
5193 (*andnottf3): Ditto. Use V4SFmode for !TARGET_SSE2.
5194 (*<code>tf3): Ditto.
5195 * config/i386/i386.c (struct builtin_description bdesc_args)
5196 <IX86_BUILTIN_FABSQ>: Enable for TARGET_SSE.
5197 <IX86_BUILTIN_COPYSIGNQ>: Ditto.
5198 (ix86_expand_builtin) <IX86_BUILTIN_FABSQ, IX86_BUILTIN_COPYSIGNQ>:
5199 Emit a normal call if SSE isn't available.
5200
5201 2012-05-13 Uros Bizjak <ubizjak@gmail.com>
5202
5203 * config/i386/sse.md (<sse>_andnot<mode>3): Handle
5204 TARGET_SSE_PACKED_SINGLE_INSN_OPTIMAL.
5205 (<code><mode>3): Ditto.
5206 (*andnot<mode>3): Ditto.
5207 (*andnottf3): Ditto.
5208 (*<code><mode>3): Ditto.
5209 (<code>tf3): Ditto.
5210
5211 2012-05-13 Manuel López-Ibáñez <manu@gcc.gnu.org>
5212
5213 * optc-gen.awk: Error instead of warning for conflicting help.
5214
5215 2012-05-12 Jason Merrill <jason@redhat.com>
5216
5217 PR debug/53235
5218 * dwarf2out.c (build_local_stub): Prefer DW_AT_signature for
5219 comdat types.
5220
5221 2012-05-12 Eric Botcazou <ebotcazou@adacore.com>
5222
5223 * function.c (requires_stack_frame_p): If the function can throw
5224 non-call exceptions, return true if the insn can throw internally.
5225
5226 2012-05-12 Paolo Carlini <paolo.carlini@oracle.com>
5227
5228 * doc/generic.texi: Rename TYPE_PTRMEM_P to TYPE_PTRDATAMEM_P.
5229
5230 2012-05-12 Uros Bizjak <ubizjak@gmail.com>
5231
5232 * config/alpha/alpha.c (alpha_emit_conditional_branch): Handle
5233 ORDERED and UNORDERED conditions.
5234
5235 2012-05-11 Richard Guenther <rguenther@suse.de>
5236
5237 * tree-flow.h (referenced_var_check_and_insert): Remove.
5238 (find_new_referenced_vars): Likewise.
5239 * tree-dfa.c (referenced_var_check_and_insert): Make static.
5240 (find_new_referenced_vars_1, find_new_referenced_vars): Remove.
5241 * tree-inline.c (copy_bb): Use find_referenced_vars_in
5242 instead of find_new_referenced_vars.
5243 * gimple-fold.c (gimplify_and_update_call_from_tree): Likewise.
5244
5245 2012-05-11 Richard Guenther <rguenther@suse.de>
5246
5247 * tree-pass.h (pass_rest_of_compilation,
5248 pass_all_optimizations, pass_postreload, pass_all_early_optimizations):
5249 Remove.
5250 * passes.c (pass_all_optimizations, pass_postreload,
5251 pass_all_early_optimizations): Make static.
5252 (pass_rest_of_compilation): Likewise. Make it an RTL_PASS.
5253 * tree-phinodes.c (init_phinodes, fini_phinodes): Remove.
5254 * tree-ssa.c (init_tree_ssa): Do not call init_phinodes.
5255 (delete_tree_ssa): Do not call fini_phinodes.
5256 * tree-flow.h (init_phinodes, fini_phinodes): Remove.
5257
5258 2012-05-11 Manuel López-Ibáñez <manu@gcc.gnu.org>
5259
5260 PR 53063
5261 * doc/options.texi (EnabledBy): Document
5262 * opts.c: Include opts.h and options.h before tm.h.
5263 (finish_options): Do not handle some sub-options here...
5264 (common_handle_option): ... instead call common_handle_option_auto
5265 here.
5266 * optc-gen.awk: Handle EnabledBy.
5267 * opth-gen.awk: Declare common_handle_option_auto.
5268 * common.opt (Wuninitialized): Use EnabledBy. Delete Init.
5269 (Wmaybe-uninitialized): Likewise.
5270 (Wunused-but-set-variable): Likewise.
5271 (Wunused-function): Likewise.
5272 (Wunused-label): Likewise.
5273 (Wunused-value): Likewise.
5274 (Wunused-variable): Likewise.
5275 * opt-read.awk: Create opt_numbers array.
5276
5277 2012-05-11 Richard Guenther <rguenther@suse.de>
5278
5279 PR tree-optimization/53295
5280 * tree-data-ref.h (stride_of_unit_type_p): Handle non-constant
5281 strides.
5282 * tree-data-ref.c (dr_analyze_innermost): Allow non-constant
5283 strides when analyzing data-references in a loop context.
5284 * tree-vect-data-refs.c (vect_mark_for_runtime_alias_test): Reject
5285 non-constant strides for now.
5286 (vect_enhance_data_refs_alignment): Ignore data references
5287 that are strided loads.
5288 (vect_analyze_data_ref_access): Handle non-constant strides.
5289 (vect_check_strided_load): Verify the data-reference is a load.
5290 (vect_analyze_data_refs): Restructure to make strided load
5291 support not dependent on gather support.
5292 * tree-vect-stmts.c (vectorizable_load): Avoid useless work
5293 when doing strided or gather loads.
5294 * tree-vect-loop-manip.c (vect_vfa_segment_size): Use
5295 integer_zerop to compare stride with zero.
5296
5297 2012-05-11 H.J. Lu <hongjiu.lu@intel.com>
5298
5299 * config/i386/driver-i386.c (host_detect_local_cpu): Support RTM.
5300
5301 2012-05-11 Jan Hubicka <jh@suse.cz>
5302
5303 PR bootstrap/53300
5304 * varpool.c (varpool_assemble_decl): Also output constat pool entries
5305 that output_constant_pool missed.
5306
5307 2012-05-11 Mingjie Xing <mingjie.xing@gmail.com>
5308
5309 * config/mips/t-vxworks: Change MUTLILIB_EXTRA_OPTS to
5310 MULTILIB_EXTRA_OPTS.
5311
5312 2012-05-11 Uros Bizjak <ubizjak@gmail.com>
5313
5314 PR target/53291
5315 * config/i386/i386.md (xtest): Use NE condition in ix86_expand_setcc.
5316
5317 2012-05-11 Uros Bizjak <ubizjak@gmail.com>
5318
5319 * config/i386/i386.md (*movti_internal_rex64): Avoid MOVAPS size
5320 optimization for TARGET_AVX.
5321 (*movti_internal_sse): Ditto.
5322 (*movdi_internal_rex64): Handle TARGET_SSE_PACKED_SINGLE_INSN_OPTIMAL.
5323 (*movdi_internal): Ditto.
5324 (*movsi_internal): Ditto.
5325 (*movtf_internal): Avoid MOVAPS size optimization for TARGET_AVX.
5326 (*movdf_internal_rex64): Ditto.
5327 (*movfd_internal): Ditto.
5328 (*movsf_internal): Ditto.
5329 * config/i386/sse.md (mov<mode>): Handle TARGET_SSE_LOAD0_BY_PXOR.
5330
5331 2012-05-10 Eric Botcazou <ebotcazou@adacore.com>
5332
5333 * dwarf2out.c (add_byte_size_attribute) <RECORD_TYPE>: Handle variable
5334 reference as size attribute.
5335
5336 2012-05-10 Eric Botcazou <ebotcazou@adacore.com>
5337 Tristan Gingold <gingold@adacore.com>
5338
5339 * doc/md.texi (Standard Names): Document probe_stack_address.
5340 * explow.c (emit_stack_probe): Handle probe_stack_address.
5341 * config/ia64/ia64.md (UNSPECV_PROBE_STACK_ADDRESS): New constant.
5342 (UNSPECV_PROBE_STACK_RANGE): Likewise.
5343 (probe_stack_address): New insn.
5344 (probe_stack_range): Likewise.
5345 * config/ia64/ia64.c: Include common/common-target.h.
5346 (ia64_compute_frame_size): Mark r2 and r3 as used if static stack
5347 checking is enabled.
5348 (ia64_emit_probe_stack_range): New function.
5349 (output_probe_stack_range): Likewise.
5350 (ia64_expand_prologue): Invoke ia64_emit_probe_stack_range if static
5351 builtin stack checking is enabled.
5352 (rtx_needs_barrier) <UNSPEC_VOLATILE>: Handle UNSPECV_PROBE_STACK_RANGE
5353 and UNSPECV_PROBE_STACK_ADDRESS.
5354 (unknown_for_bundling_p): New predicate.
5355 (group_barrier_needed): Use important_for_bundling_p.
5356 (ia64_dfa_new_cycle): Use unknown_for_bundling_p.
5357 (issue_nops_and_insn): Likewise.
5358 (bundling): Likewise.
5359 (final_emit_insn_group_barriers): Likewise.
5360 * config/ia64/ia64-protos.h (output_probe_stack_range): Declare.
5361 * config/ia64/hpux.h (STACK_CHECK_STATIC_BUILTIN): Define.
5362 (STACK_CHECK_PROTECT): Likewise.
5363 * config/ia64/linux.h (STACK_CHECK_STATIC_BUILTIN): Likewise.
5364
5365 2012-05-10 Jan Hubicka <jh@suse.cz>
5366
5367 * ipa-inline.c (update_all_callee_keys): Remove.
5368 (inline_small_functions): Simplify priority updating.
5369
5370 2012-05-10 Jan Hubicka <jh@suse.cz>
5371
5372 * ipa.c (symtab_remove_unreachable_nodes): Fix marking of clones.
5373
5374 2012-05-10 Jan Hubicka <jh@suse.cz>
5375
5376 * cgraph.h (cgraph_remove_unreachable_nodes): Rename to ...
5377 (symtab_remove_unreachable_nodes): ... this one.
5378 * ipa-cp.c (ipcp_driver): Do not remove unreachable nodes.
5379 * cgraphunit.c (ipa_passes): Update.
5380 * cgraphclones.c (cgraph_materialize_all_clones): Update.
5381 * cgraph.c (cgraph_release_function_body): Only turn initial
5382 into error mark when initial was previously set.
5383 * ipa-inline.c (ipa_inline): Update.
5384 * ipa.c: Include ipa-inline.h
5385 (enqueue_cgraph_node, enqueue_varpool_node): Remove.
5386 (enqueue_node): New function.
5387 (process_references): Update.
5388 (symtab_remove_unreachable_nodes): Cleanup.
5389 * passes.c (execute_todo, execute_one_pass): Update.
5390
5391 2012-05-10 Vladimir Makarov <vmakarov@redhat.com>
5392
5393 PR rtl-optimization/53125
5394 * ira.c (ira): Call find_moveable_pseudos and
5395 move_unallocated_pseudos if only ira_conflicts_p is true.
5396
5397 2012-05-10 Uros Bizjak <ubizjak@gmail.com>
5398
5399 * config/i386/i386.md (*movoi_internal_avx): Handle
5400 TARGET_SSE_PACKED_SINGLE_INSN_OPTIMAL and TARGET_SSE_TYPELESS_STORES.
5401 (*movti_internal_rex64): Handle TARGET_SSE_PACKED_SINGLE_INSN_OPTIMAL.
5402 (*movti_internal_sse): Ditto.
5403 (*movtf_internal): Ditto.
5404 * config/i386/sse.md (ssePSmode): New mode attribute.
5405 (*move<mode>_internal): Use ssePSmode.
5406 (*<sse>_movu<ssemodesuffix><avxsizesuffix>): Ditto.
5407 (*<sse2>_movdqu<avxsizesuffix>): Ditto.
5408 * config/i386/i386.c (standard_sse_constant_opcode): Do not handle
5409 TARGET_SSE_PACKED_SINGLE_INSN_OPTIMAL here.
5410
5411 2012-05-10 Eric Botcazou <ebotcazou@adacore.com>
5412
5413 * gimplify.c (gimplify_decl_expr): For a TYPE_DECL, also gimplify the
5414 DECL_ORIGINAL_TYPE if it is present.
5415
5416 2012-05-10 Nick Clifton <nickc@redhat.com>
5417
5418 PR target/53120
5419 * config/m32c/bitops.md (bset_qi): Change operand 2 from having
5420 a "0" constraint to being a (match_dup 0).
5421
5422 2012-05-10 Richard Guenther <rguenther@suse.de>
5423
5424 * stor-layout.c (byte_from_pos): Amend comment.
5425
5426 2012-05-10 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
5427
5428 * doc/extend.texi (X86 Built-in Functions, __builtin_cpu_init):
5429 Document requirement to call in constructors.
5430
5431 * config/i386/i386.c: Update comments for i386-cpuinfo.c name change.
5432
5433 2012-05-10 Richard Guenther <rguenther@suse.de>
5434
5435 * tree.h (TYPE_IS_SIZETYPE): Remove.
5436 * fold-const.c (int_const_binop_1): Remove TYPE_IS_SIZETYPE use.
5437 (extract_muldiv_1): Likewise.
5438 * gimple.c (gtc_visit): Likewise.
5439 (gimple_types_compatible_p): Likewise.
5440 (iterative_hash_canonical_type): Likewise.
5441 (gimple_canonical_types_compatible_p): Likewise.
5442 * gimplify.c (gimplify_one_sizepos): Likewise.
5443 * print-tree.c (print_node): Likewise.
5444 * stor-layout.c (initialize_sizetypes): Do not set TYPE_IS_SIZETYPE.
5445
5446 2012-05-09 Uros Bizjak <ubizjak@gmail.com>
5447
5448 PR target/52908
5449 * config/i386/sse.md (vec_widen_smult_hi_v4si): Expand using
5450 xop_pmacsdqh insn pattern instead of xop_mulv2div2di3_high.
5451 (vec_widen_smult_lo_v4si): Expand using xop_pmacsdql insn pattern
5452 instead of xop_mulv2div2di3_low.
5453 (xop_p<macs>dql): Fix vec_select selector.
5454 (xop_p<macs>dqh): Ditto.
5455 (xop_mulv2div2di3_low): Remove insn_and_split pattern.
5456 (xop_mulv2div2di3_high): Ditto.
5457
5458 2012-05-09 Manuel López-Ibáñez <manu@gcc.gnu.org>
5459
5460 PR c++/53289
5461 * diagnostic.h (diagnostic_context): Add last_location.
5462 * diagnostic.c (diagnostic_initialize): Initialize it.
5463 (diagnostic_show_locus): Use it.
5464
5465 2012-05-09 Manuel López-Ibáñez <manu@gcc.gnu.org>
5466
5467 * doc/extend.texi (Function Attributes): Point xref to section
5468 about Pragmas.
5469
5470 2012-05-09 Uros Bizjak <ubizjak@gmail.com>
5471
5472 * config/i386/i386.c (*movdf_internal_rex64): Remove
5473 TARGET_SSE_PACKED_SINGLE_INSN_OPTIMAL handling from asm output code.
5474 Calculate "mode" attribute according to
5475 TARGET_SSE_PACKED_SINGLE_INSN_OPTIMAL flag.
5476 (*movdf_internal): Ditto.
5477
5478 2012-05-09 Uros Bizjak <ubizjak@gmail.com>
5479
5480 PR target/44141
5481 * config/i386/i386.c (ix86_expand_vector_move_misalign): Do not handle
5482 128 bit vectors specially for TARGET_AVX. Emit sse2_movupd and
5483 sse_movupd RTXes for TARGET_AVX, TARGET_SSE_PACKED_SINGLE_INSN_OPTIMAL
5484 or when optimizing for size.
5485 * config/i386/sse.md (*mov<mode>_internal): Remove
5486 TARGET_SSE_PACKED_SINGLE_INSN_OPTIMAL handling from asm output code.
5487 Calculate "mode" attribute according to optimize_function_for_size_p
5488 and TARGET_SSE_PACKED_SINGLE_INSN_OPTIMAL flag.
5489 (*<sse>_movu<ssemodesuffix><avxsizesuffix>): Choose asm template
5490 depending on the mode of the instruction. Calculate "mode" attribute
5491 according to optimize_function_for_size_p, TARGET_SSE_TYPELESS_STORES
5492 and TARGET_SSE_PACKED_SINGLE_INSN_OPTIMAL flags.
5493 (*<sse2>_movdqu<avxsizesuffix>): Ditto.
5494
5495 2012-05-09 Georg-Johann Lay <avr@gjlay.de>
5496
5497 PR target/53256
5498 * config/avr/elf.h (ASM_DECLARE_FUNCTION_NAME): Remove.
5499 * config/avr/avr-protos.h (avr_asm_declare_function_name): Remove.
5500 * config/avr/avr.h (struct machine_function): Add attributes_checked_p.
5501 * config/avr/avr.c (avr_asm_declare_function_name): Remove.
5502 (expand_prologue): Move initialization of cfun->machine->is_naked,
5503 is_interrupt, is_signal, is_OS_task, is_OS_main from here to...
5504 (avr_set_current_function): ...this new static function.
5505 (TARGET_SET_CURRENT_FUNCTION): New define.
5506 (avr_function_ok_for_sibcall): Use cfun->machine->is_* instead of
5507 checking attributes of current_function_decl.
5508 (avr_regs_to_save): Ditto.
5509 (signal_function_p): Rename to avr_signal_function_p.
5510 (interrupt_function_p): Rename to avr_interrupt_function_p.
5511
5512 * doc/extend.texi (Function Attributes): Better explanation of
5513 'interrupt' and 'signal' for AVR. Move 'ifunc' down to establish
5514 alphabetical order.
5515
5516 2012-05-09 Michael Matz <matz@suse.de>
5517
5518 PR tree-optimization/53185
5519 * tree-vect-data-refs.c (vect_enhance_data_refs_alignment): Disable
5520 peeling when we see strided loads.
5521
5522 2012-05-09 Matthias Klose <doko@ubuntu.com>
5523
5524 * gcc-ar.c (main): Don't check for execute bits for the plugin.
5525
5526 2012-05-09 Ramana Radhakrishnan <ramana.radhakrishnan@linaro.org>
5527
5528 * tree-ssa-loop-ivopts.c (add_autoinc_candidates, get_address_cost):
5529 Replace use of HAVE_{POST/PRE}_{INCREMENT/DECREMENT} with
5530 USE_{LOAD/STORE}_{PRE/POST}_{INCREMENT/DECREMENT} appropriately.
5531 * config/arm/arm.h (ARM_AUTOINC_VALID_FOR_MODE_P): New.
5532 (USE_LOAD_POST_INCREMENT): Define.
5533 (USE_LOAD_PRE_INCREMENT): Define.
5534 (USE_LOAD_POST_DECREMENT): Define.
5535 (USE_LOAD_PRE_DECREMENT): Define.
5536 (USE_STORE_PRE_DECREMENT): Define.
5537 (USE_STORE_PRE_INCREMENT): Define.
5538 (USE_STORE_POST_DECREMENT): Define.
5539 (USE_STORE_POST_INCREMENT): Define.
5540 (arm_auto_incmodes): Add enumeration.
5541 * config/arm/arm-protos.h (arm_autoinc_modes_ok_p): Declare.
5542 * config/arm/arm.c (arm_autoinc_modes_ok_p): Define.
5543
5544 2012-05-09 Jakub Jelinek <jakub@redhat.com>
5545
5546 PR tree-optimization/53226
5547 * tree-ssa-forwprop.c (ssa_forward_propagate_and_combine): Remove
5548 prev and prev_initialized vars, gimple_set_plf (stmt, GF_PLF_1, false)
5549 before processing it and gimple_set_plf (stmt, GF_PLF_1, true) if it
5550 doesn't need to be revisited, look for earliest stmt with
5551 !gimple_plf (stmt, GF_PLF_1) if something changed.
5552
5553 2012-05-09 Terry Guo <terry.guo@arm.com>
5554
5555 * genmultilib: Update copyright dates.
5556 * doc/fragments.texi: Ditto.
5557
5558 2012-05-09 Terry Guo <terry.guo@arm.com>
5559
5560 * Makefile.in (s-mlib): Add new argument MULTILIB_REQUIRED.
5561 * genmultilib (MULTILIB_REQUIRED): New.
5562 * doc/fragments.texi: Document the MULTILIB_REQUIRED.
5563
5564 2012-05-09 Richard Guenther <rguenther@suse.de>
5565
5566 * tree-vectorizer.h (vect_loop_versioning): Adjust prototype.
5567 (vect_do_peeling_for_loop_bound): Likewise.
5568 (vect_do_peeling_for_alignment): Likewise.
5569 * tree-vect-loop-manip.c (conservative_cost_threshold): Remove.
5570 (vect_do_peeling_for_loop_bound): Get check_profitability and
5571 threshold as parameters.
5572 (vect_do_peeling_for_alignment): Likewise.
5573 (vect_loop_versioning): Likewise.
5574 * tree-vect-loop.c (vect_transform_loop): Compute check_profitability
5575 and threshold here. Control where to put the check here.
5576
5577 2012-05-09 Richard Sandiford <rdsandiford@googlemail.com>
5578
5579 PR middle-end/53249
5580 * dwarf2out.h (get_address_mode): Move declaration to...
5581 * rtl.h: ...here.
5582 * dwarf2out.c (get_address_mode): Move definition to...
5583 * rtlanal.c: ...here.
5584 * var-tracking.c (get_address_mode): Delete.
5585 * combine.c (find_split_point): Use get_address_mode instead of
5586 targetm.addr_space.address_mode.
5587 * cselib.c (cselib_record_sets): Likewise.
5588 * dse.c (canon_address, record_store): Likewise.
5589 * emit-rtl.c (adjust_address_1, offset_address): Likewise.
5590 * expr.c (move_by_pieces, emit_block_move_via_loop, store_by_pieces)
5591 (store_by_pieces_1, expand_assignment, store_expr, store_constructor)
5592 (expand_expr_real_1): Likewise.
5593 * ifcvt.c (noce_try_cmove_arith): Likewise.
5594 * optabs.c (maybe_legitimize_operand_same_code): Likewise.
5595 * reload.c (find_reloads): Likewise.
5596 * sched-deps.c (sched_analyze_1, sched_analyze_2): Likewise.
5597 * sel-sched-dump.c (debug_mem_addr_value): Likewise.
5598
5599 2012-05-09 Maciej W. Rozycki <macro@codesourcery.com>
5600
5601 * config/mips/mips.c (mips16_gp_pseudo_reg): Remove line
5602 information from the instruction produced.
5603
5604 2012-05-09 Richard Guenther <rguenther@suse.de>
5605
5606 * stor-layout.c (bit_from_pos): Document.
5607 (byte_from_pos): Likewise. Optimize.
5608 (pos_from_bit): Likewise.
5609 (normalize_offset): Use pos_from_bit instead of replicating it.
5610
5611 2012-05-09 Alan Modra <amodra@gmail.com>
5612
5613 PR target/53271
5614 * config/rs6000/rs6000.c (gen_frame_set): New function.
5615 (gen_frame_load, gen_frame_store): New functions.
5616 (rs6000_savres_rtx): Use the above.
5617 (rs6000_emit_epilogue, rs6000_emit_prologue): Here too.
5618 Correct mode used for CR2 in save/restore_world patterns.
5619 Don't emit instructions for eh_return frame unwind reg info.
5620
5621 2012-05-08 Jan Hubicka <jh@suse.cz>
5622
5623 * cgraphbuild.c (build_cgraph_edges): Do not finalize vars
5624 with VALUE_EXPR.
5625 * cgraph.h (varpool_can_remove_if_no_refs): Vars with VALUE_EXPR
5626 are removable.
5627 * toplev.c (wrapup_global_declaration_2): Vars with VALUE_EXPR
5628 need to wrapup.
5629 (compile_file): Do not output variables.
5630 * cgraphbuild.c (varpool_finalize_decl): When var is finalized late,
5631 output it.
5632 * langhooks.c: Include timevar.h
5633 (write_global_declarations): Finalize compilation unit after wrapup;
5634 set timevars correctly.
5635 * passes.c (rest_of_decl_compilation): Decls with VALUE_EXPR needs
5636 not to be added to varpool.
5637 * varpool.c (varpool_assemble_decl): Sanity check that we are called
5638 only on cases where it makes sense; skip constant pool and value expr
5639 vars.
5640
5641 2012-05-08 David S. Miller <davem@davemloft.net>
5642
5643 * config/sparc/linux.h (LINK_SPEC): Don't pass "-Y" option.
5644 * config/sparc/linux64.h (LINK_ARCH32_SPEC): Likewise.
5645 * config/sparc/linux64.h (LINK_ARCH64_SPEC): Likewise.
5646
5647 2012-05-08 Richard Sandiford <rdsandiford@googlemail.com>
5648
5649 PR rtl-optimization/53278
5650 * lower-subreg.c (decompose_multiword_subregs): Remove left-over
5651 speed_p code from earlier patch.
5652
5653 2012-05-08 Oleg Endo <olegendo@gcc.gnu.org>
5654
5655 PR target/51244
5656 * config/sh/sh.md (*branch_true, *branch_false): New insns.
5657
5658 2012-05-08 Teresa Johnson <tejohnson@google.com>
5659
5660 * gcov-io.h (__gcov_reset, __gcov_dump): Declare.
5661 * doc/gcov.texi: Add note on using __gcov_reset and __gcov_dump.
5662
5663 2012-05-08 Jan Hubicka <jh@suse.cz>
5664
5665 * cgraph.c (cgraph_call_edge_duplication_hooks): Export.
5666 (cgraph_create_node_1): Rename to ...
5667 (cgraph_create_empty_node): ... this one; export.
5668 (cgraph_create_node): Update.
5669 (cgraph_set_call_stmt_including_clones): Move to cgraphclones.c
5670 (cgraph_create_edge_including_clones): Likewise.
5671 (cgraph_find_replacement_node): Likewise.
5672 (cgraph_clone_edge): Likewise.
5673 (cgraph_clone_node): Likewise.
5674 (clone_function_name): Likewise.
5675 (cgraph_create_virtual_clone): Likewise.
5676 (cgraph_remove_node_and_inline_clones): Likewise.
5677 (cgraph_redirect_edge_call_stmt_to_callee): Move here from cgraphunit.c
5678 * cgraph.h: Reorder declarations so they match file of origin.
5679 (cgraph_create_empty_node): Declare.
5680 * cgraphunit.c (update_call_expr): Move to cgraphclones.c
5681 (cgraph_copy_node_for_versioning): Likewise.
5682 (cgraph_function_versioning): Likewise.
5683 (cgraph_materialize_clone): Likewise.
5684 (cgraph_redirect_edge_call_stmt_to_callee): Likewise.
5685 (cgraph_materialize_all_clones): Likewise.
5686 * cgraphclones.c: New file.
5687 * Makefile.in: Update for cgraphclones.
5688
5689 2012-05-08 Uros Bizjak <ubizjak@gmail.com>
5690
5691 PR target/53176
5692 * config/i386/i386.c (ix86_set_reg_reg_cost): New function.
5693 (ix86_rtx_costs): Handle SET.
5694
5695 2012-05-08 Michael Matz <matz@suse.de>
5696
5697 * basic-block.h (struct rtl_bb_info): Remove visited member and
5698 move head_ member to ...
5699 (struct basic_block_def.basic_block_il_dependent): ... the new
5700 member x, replacing but containing old member rtl.
5701 (enum bb_flags): New BB_VISITED flag.
5702 (BB_HEADER, BB_FOOTER): New macros.
5703
5704 * jump.c (mark_all_labels): Adjust.
5705 * cfgcleanup.c (try_optimize_cfg): Adjust.
5706 * cfglayout.c (record_effective_endpoints): Adjust.
5707 (relink_block_chain): Ditto (and don't fiddle with visited).
5708 (fixup_reorder_chain): Adjust.
5709 (fixup_fallthru_exit_predecessor): Ditto.
5710 (cfg_layout_duplicate_bb): Ditto.
5711 * combine.c (update_cfg_for_uncondjump): Adjust.
5712 * bb-reorder.c (struct bbro_basic_block_data_def): Add visited member.
5713 (bb_visited_trace): New accessor.
5714 (mark_bb_visited): Move in front.
5715 (rotate_loop): Use bb_visited_trace.
5716 (find_traces_1_round): Ditto.
5717 (emit_barrier_after): Ditto.
5718 (copy_bb): Ditto, and initialize visited on resize.
5719 (reorder_basic_blocks): Initize visited member.
5720 (duplicate_computed_gotos): Clear bb flags at start, use
5721 BB_VISITED flags.
5722
5723 * cfgrtl.c (try_redirect_by_replacing_jump): Adjust.
5724 (rtl_verify_flow_info_1): Ditto.
5725 (cfg_layout_split_block): Ditto.
5726 (cfg_layout_delete_block): Ditto.
5727 (cfg_layout_merge_blocks): Ditto.
5728 (init_rtl_bb_info): Adjust and initialize il.x.head_ member.
5729
5730 2012-05-08 Hans-Peter Nilsson <hp@axis.com>
5731
5732 PR target/53272
5733 * config/cris/cris.c (cris_normal_notice_update_cc): For TARGET_V32,
5734 when a constant source operand matches an "I" constraint, the "no
5735 CC0 change" applies to a register-destination only, not a
5736 strict_low_part-destination.
5737
5738 2012-05-08 Richard Guenther <rguenther@suse.de>
5739
5740 * fold-const.c (fold_binary_loc): Fold (X * CST1) & CST2
5741 to zero or to (X * CST1) & CST2' when CST1 has trailing zeros.
5742
5743 2012-05-08 Georg-Johann Lay <avr@gjlay.de>
5744
5745 * Makefile.in (TEXI_GCC_FILES): Add avr-mmcu.texi.
5746
5747 * doc/avr-mmcu.texi: New auto-generated file.
5748 * doc/invoke.texi (AVR Options): Include avr-mmcu.texi in order
5749 to document all valid -mmcu= arguments.
5750
5751 * config/avr/avr.h (arch_info_s): New struct definition.
5752 * config/avr/avr-devices.c (avr_texinfo): New variable.
5753 * config/avr/gen-avr-mmcu-texi.c: New file.
5754 * config/avr/t-avr: New rules and dependencies to build avr-mmcu.texi.
5755
5756 2012-05-08 Dehao Chen <dehao@google.com>
5757
5758 * predict.c (find_qualified_ssa_name): New.
5759 (find_ssa_name_in_expr): New.
5760 (find_ssa_name_in_assign_stmt): New.
5761 (is_comparison_with_loop_invariant_p): New.
5762 (is_bound_expr_similar): New.
5763 (predict_iv_comparison): New.
5764 (predict_loops): Add heuristic for loop-nested branches that compare an
5765 induction variable to a loop bound variable.
5766 * predict.def (PRED_LOOP_IV_COMPARE): New macro.
5767
5768 2012-05-08 Uros Bizjak <ubizjak@gmail.com>
5769
5770 * config/i386/i386.c (has_dispatch): Use TARGET_BDVER1 and
5771 TARGET_BDVER2 defines where appropriate.
5772
5773 2012-05-07 Eric Botcazou <ebotcazou@adacore.com>
5774
5775 * configure.ac (PLUGIN_LD): Rename into...
5776 (PLUGIN_LD_SUFFIX): ...this and strip the target_alias triplet.
5777 * config.in: Regenerate.
5778 * configure: Likewise.
5779 * collect2.c (main): Set plugin_ld_suffix to PLUGIN_LD_SUFFIX.
5780
5781 2012-05-07 Eric Botcazou <ebotcazou@adacore.com>
5782
5783 * tree-dfa.c (get_ref_base_and_extent) <ARRAY_REF>: Do the offset
5784 computation using the precision of the index type.
5785 * gimple-fold.c (fold_const_aggregate_ref_1) <ARRAY_REF>: Likewise.
5786 (fold_array_ctor_reference): Do index computations in the index type.
5787
5788 2012-05-07 Georg-Johann Lay <avr@gjlay.de>
5789
5790 * config/avr/avr.c (avr_prologue_setup_frame): Fix mode passed
5791 down to plus_constant.
5792 (expand_epilogue): Ditto.
5793
5794 2012-05-07 Steven Bosscher <steven@gcc.gnu.org>
5795
5796 * postreload.c (reload_cse_regs): Make static.
5797 * reload.h (reload_cse_regs): Remove prototype.
5798
5799 2012-05-07 Richard Henderson <rth@redhat.com>
5800
5801 * config/alpha/alpha.md (clear_cache): New pattern.
5802
5803 2012-05-07 Steven Bosscher <steven@gcc.gnu.org>
5804
5805 PR middle-end/53245
5806 * gimplify.c (preprocess_case_label_vec_for_gimple): If low or high
5807 is folded to a type boundary value, verify that the resulting case
5808 label is still a care range.
5809
5810 2012-05-07 Uros Bizjak <ubizjak@gmail.com>
5811
5812 * config/i386/i386.md (ctz<mode>2): Emit rep;bsf
5813 only for TARGET_GENERIC, when not optimizing for size.
5814 (*ffs<mode>_1): Ditto.
5815
5816 2012-05-07 Steven Bosscher <steven@gcc.gnu.org>
5817
5818 * tree-cfg.c (verify_gimple_switch): Tighten checks.
5819
5820 2012-05-07 Jakub Jelinek <jakub@redhat.com>
5821
5822 PR tree-optimization/53239
5823 * tree-vrp.c (get_value_range): Set VR of SSA_NAME_IS_DEFAULT_DEF
5824 of DECL_BY_REFERENCE RESULT_DECL to nonnull.
5825
5826 2012-05-07 Richard Guenther <rguenther@suse.de>
5827
5828 PR tree-optimization/53195
5829 * tree-inline.c (setup_one_parameter): Properly add referenced
5830 vars from the parameters new known value.
5831
5832 2012-05-07 Steven Bosscher <steven@gcc.gnu.org>
5833
5834 * config/m68k/m68k.c (m68k_sched_branch_type): Remove.
5835 (sched_branch_type): Remove.
5836 (m68k_sched_md_init_global): Don't allocate it.
5837 (m68k_sched_md_finish_global): Don't free it.
5838 * config/m68k/m68k.h (m68k_sched_branch_type): Remove prototype.
5839 * config/m68k/m68k.md: Set the type of insns using
5840 m68k_sched_branch_type to bcc directly.
5841
5842 2012-05-07 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
5843
5844 * config/sol2.c (solaris_override_options): New function.
5845 * config/sol2-protos.h (solaris_override_options): Declare.
5846 * config/sol2.h (SUBTARGET_OVERRIDE_OPTIONS): Define.
5847
5848 2012-05-07 Richard Guenther <rguenther@suse.de>
5849
5850 * tree-ssa-loop-prefetch.c (determine_loop_nest_reuse): Return
5851 whether we failed to compute data dependences.
5852 (loop_prefetch_arrays): Fail if we failed.
5853
5854 2012-05-07 Uros Bizjak <ubizjak@gmail.com>
5855 Paolo Bonzini <bonzini@gnu.org>
5856
5857 * config/i386/i386.md (ctz<mode>2): Emit rep;bsf even for !TARGET_BMI.
5858 Emit bsf when optimizing for size.
5859 (*ffs<mode>_1): Ditto.
5860
5861 2012-05-07 Oleg Endo <olegendo@gcc.gnu.org>
5862
5863 PR target/53250
5864 * config/sh/sh.c (sh_rtx_costs): Handle SET.
5865
5866 2012-05-06 Uros Bizjak <ubizjak@gmail.com>
5867
5868 PR target/53227
5869 * config/i386/i386.md (swap<mode>): Rename from *swap<mode>.
5870 (bswapdi2): Split from bswap<mode>2. Use nonnimediate_operand
5871 predicate for operand 1. Force operand 1 to register for TARGET_BSWAP.
5872 (bswapsi2): Ditto.
5873 (*bswapdi2_doubleword): New insn pattern.
5874 (*bswap<mode>2): Rename from *bswap<mode>2_1.
5875
5876 2012-05-06 Richard Sandiford <rdsandiford@googlemail.com>
5877
5878 * config/mips/mips.c (mips_set_reg_reg_piece_cost): New function.
5879 (mips_set_reg_reg_cost): Likewise.
5880 (mips_rtx_costs): Handle SET.
5881
5882 2012-05-06 Richard Sandiford <rdsandiford@googlemail.com>
5883
5884 * lower-subreg.c (shift_cost): Use set_src_cost, avoiding the SET.
5885 (compute_costs): Likewise for the zero extension. Use set_rtx_cost
5886 to compute the cost of moves. Set the mode of the target register.
5887
5888 2012-05-05 Richard Sandiford <rdsandiford@googlemail.com>
5889
5890 * rtl.h (plus_constant, plus_constant_mode): Merge into a single
5891 plus_constant function.
5892 * explow.c (plus_constant, plus_constant_mode): Likewise. Assert
5893 that the mode is sensible.
5894 (use_anchored_address, round_push, allocate_dynamic_stack_space)
5895 (probe_stack_range, anti_adjust_stack_and_probe): Update calls to
5896 plus_constant.
5897
5898 * alias.c (canon_rtx): Likewise.
5899 (init_alias_analysis): Likewise.
5900 * builtins.c (expand_builtin_return_addr)
5901 (expand_builtin_setjmp_setup, expand_builtin_longjmp)
5902 (expand_builtin_nonlocal_goto, expand_builtin_update_setjmp_buf)
5903 (expand_builtin_apply_args_1, expand_builtin_apply, expand_movstr)
5904 (expand_builtin_stpcpy): Likewise.
5905 * calls.c (save_fixed_argument_area, restore_fixed_argument_area)
5906 (compute_argument_addresses, internal_arg_pointer_based_exp)
5907 (expand_call, emit_library_call_value_1): Likewise.
5908 * cfgexpand.c (expand_one_stack_var_at, expand_debug_expr): Likewise.
5909 * combine-stack-adj.c (try_apply_stack_adjustment): Likewise.
5910 * combine.c (combine_simplify_rtx, force_to_mode): Likewise.
5911 * cse.c (insert_const_anchor, find_reg_offset_for_const)
5912 (use_related_value, fold_rtx): Likewise.
5913 * cselib.c (cselib_subst_to_values): Likewise.
5914 * dse.c (record_store, check_mem_read_rtx): Likewise.
5915 * dwarf2out.c (rtl_for_decl_location, gen_variable_die): Likewise.
5916 * emit-rtl.c (adjust_address_1): Likewise.
5917 * except.c (sjlj_emit_function_enter)
5918 (expand_builtin_extract_return_addr)
5919 (expand_builtin_frob_return_addr): Likewise.
5920 * expmed.c (expand_divmod): Likewise.
5921 * expr.c (move_by_pieces, store_by_pieces, store_by_pieces_1)
5922 (emit_move_resolve_push, push_block, emit_push_insn, store_expr)
5923 (expand_expr_addr_expr_1, expand_expr_real_1): Likewise.
5924 * function.c (assign_stack_local_1)
5925 (instantiate_virtual_regs_in_rtx): Likewise.
5926 * optabs.c (prepare_cmp_insn): Likewise.
5927 * recog.c (offsettable_address_addr_space_p): Likewise.
5928 * reload.c (find_reloads_address, form_sum)
5929 (find_reloads_subreg_address): Likewise.
5930 * reload1.c (init_reload, eliminate_regs_1)
5931 (eliminate_regs_in_insn): Likewise.
5932 * simplify-rtx.c (simplify_unary_operation_1)
5933 (simplify_binary_operation_1, simplify_plus_minus): Likewise.
5934 * var-tracking.c (compute_cfa_pointer, prepare_call_arguments)
5935 (vt_add_function_parameter): Likewise.
5936
5937 * config/alpha/alpha.h (EH_RETURN_HANDLER_RTX): Likewise.
5938 * config/alpha/vms.h (EH_RETURN_HANDLER_RTX): Likewise.
5939 * config/alpha/alpha.c (alpha_legitimize_address_1)
5940 (get_unaligned_address, alpha_expand_unaligned_load)
5941 (alpha_expand_unaligned_store, alpha_expand_unaligned_load_words)
5942 (alpha_expand_unaligned_store_words, alpha_expand_block_clear)
5943 (alpha_expand_builtin_establish_vms_condition_handler)
5944 (alpha_setup_incoming_varargs, emit_frame_store_1)
5945 (alpha_expand_prologue, alpha_expand_epilogue)
5946 (alpha_use_linkage): Likewise.
5947 * config/alpha/alpha.md: Likewise.
5948
5949 * config/arm/arm.c (arm_trampoline_init, legitimize_pic_address)
5950 (arm_load_pic_register, arm_pic_static_addr, arm_legitimize_address)
5951 (thumb_legitimize_address, arm_gen_load_multiple_1)
5952 (arm_gen_store_multiple_1, arm_gen_multiple_op, gen_ldm_seq)
5953 (gen_stm_seq, gen_const_stm_seq, arm_block_move_unaligned_straight)
5954 (arm_block_move_unaligned_loop, arm_gen_movmemqi, arm_reload_in_hi)
5955 (arm_reload_out_hi, arm_reorg, vfp_emit_fstmd, emit_multi_reg_push)
5956 (emit_sfm, thumb_set_frame_pointer, arm_expand_prologue)
5957 (thumb1_emit_multi_reg_push, thumb1_expand_prologue)
5958 (thumb_expand_movmemqi, arm_set_return_address)
5959 (thumb_set_return_address): Likewise.
5960 * config/arm/arm.md: Likewise.
5961
5962 * config/avr/avr.c (avr_incoming_return_addr_rtx)
5963 (avr_prologue_setup_frame, expand_epilogue)
5964 (avr_const_address_lo16): Likewise.
5965
5966 * config/bfin/bfin.h (EH_RETURN_HANDLER_RTX): Likewise.
5967 * config/bfin/bfin.c (setup_incoming_varargs, bfin_load_pic_reg)
5968 (bfin_expand_prologue, bfin_trampoline_init, bfin_expand_call)
5969 (bfin_output_mi_thunk): Likewise.
5970
5971 * config/c6x/c6x.c (c6x_initialize_trampoline)
5972 (c6x_output_mi_thunk): Likewise.
5973
5974 * config/cr16/cr16.h (EH_RETURN_HANDLER_RTX): Likewise.
5975 * config/cr16/cr16.c (cr16_create_dwarf_for_multi_push): Likewise.
5976
5977 * config/cris/cris.c (cris_return_addr_rtx, cris_split_movdx)
5978 (cris_expand_prologue, cris_expand_epilogue, cris_gen_movem_load)
5979 (cris_emit_movem_store, cris_trampoline_init): Likewise.
5980 * config/cris/cris.md: Likewise.
5981
5982 * config/darwin.c (machopic_indirect_data_reference)
5983 (machopic_legitimize_pic_address): Likewise.
5984
5985 * config/epiphany/epiphany.c (epiphany_emit_save_restore)
5986 (epiphany_expand_prologue, epiphany_expand_epilogue)
5987 (epiphany_trampoline_init): Likewise.
5988 * config/epiphany/epiphany.md: Likewise.
5989
5990 * config/fr30/fr30.c (fr30_move_double): Likewise.
5991
5992 * config/frv/frv.c (frv_dwarf_store, frv_expand_prologue)
5993 (frv_expand_block_move, frv_expand_block_clear, frv_return_addr_rtx)
5994 (frv_index_memory, unspec_got_name, frv_find_base_term)
5995 (frv_output_dwarf_dtprel): Likewise.
5996
5997 * config/h8300/h8300.c (h8300_push_pop, h8300_return_addr_rtx)
5998 (h8300_swap_into_er6, h8300_swap_out_of_er6): Likewise.
5999
6000 * config/i386/i386.h (RETURN_ADDR_RTX): Likewise.
6001 * config/i386/i386.c (setup_incoming_varargs_64)
6002 (setup_incoming_varargs_ms_64, choose_baseaddr)
6003 (ix86_emit_save_reg_using_mov, ix86_adjust_stack_and_probe)
6004 (ix86_emit_probe_stack_range, ix86_expand_prologue)
6005 (ix86_emit_restore_reg_using_pop, ix86_emit_leave)
6006 (ix86_expand_epilogue, legitimize_pic_address, ix86_legitimize_address)
6007 (ix86_split_long_move, ix86_expand_movmem, ix86_expand_setmem)
6008 (ix86_static_chain, ix86_trampoline_init, x86_this_parameter)
6009 (x86_output_mi_thunk): Likewise.
6010 * config/i386/i386.md: Likewise.
6011
6012 * config/ia64/ia64.c (ia64_expand_load_address)
6013 (ia64_expand_tls_address, ia64_expand_move, ia64_split_tmode)
6014 (do_spill, ia64_trampoline_init): Likewise.
6015
6016 * config/iq2000/iq2000.c (iq2000_va_start)
6017 (iq2000_emit_frame_related_store, iq2000_expand_prologue)
6018 (iq2000_expand_eh_return, iq2000_setup_incoming_varargs)
6019 (iq2000_print_operand, iq2000_legitimize_address): Likewise.
6020
6021 * config/lm32/lm32.c (lm32_setup_incoming_varargs): Likewise.
6022
6023 * config/m32c/m32c.c (m32c_return_addr_rtx)
6024 (m32c_expand_insv): Likewise.
6025
6026 * config/m32r/m32r.c (m32r_setup_incoming_varargs)
6027 (m32r_legitimize_pic_address, m32r_print_operand)
6028 (m32r_print_operand_address): Likewise.
6029
6030 * config/m68k/linux.h (FINALIZE_TRAMPOLINE): Likewise.
6031 * config/m68k/m68k.h (RETURN_ADDR_RTX): Likewise.
6032 (EH_RETURN_HANDLER_RTX): Likewise.
6033 * config/m68k/m68k.c (m68k_emit_movem, m68k_expand_prologue)
6034 (m68k_expand_epilogue, legitimize_pic_address)
6035 (m68k_output_mi_thunk): Likewise.
6036 * config/m68k/m68k.md: Likewise.
6037
6038 * config/mcore/mcore.c (mcore_expand_prolog): Likewise.
6039 (mcore_expand_epilog): Likewise.
6040 * config/mcore/mcore.md: Likewise.
6041
6042 * config/mep/mep.c (mep_allocate_initial_value)
6043 (mep_expand_prologue, mep_expand_epilogue): Likewise.
6044
6045 * config/microblaze/microblaze.c (double_memory_operand)
6046 (microblaze_block_move_loop): Likewise.
6047
6048 * config/mips/mips.c (mips_strip_unspec_address, mips_add_offset)
6049 (mips_setup_incoming_varargs, mips_va_start, mips_block_move_loop)
6050 (mips_print_operand, mips16e_save_restore_reg, mips_save_restore_reg)
6051 (mips_expand_prologue, mips_epilogue_set_cfa)
6052 (mips_expand_epilogue): Likewise.
6053 * config/mips/mips.md: Likewise.
6054
6055 * config/mmix/mmix.c (mmix_dynamic_chain_address, mmix_return_addr_rtx)
6056 (mmix_expand_prologue, mmix_expand_epilogue): Likewise.
6057
6058 * config/mn10300/mn10300.c (mn10300_gen_multiple_store)
6059 (mn10300_builtin_saveregs, mn10300_trampoline_init): Likewise.
6060
6061 * config/moxie/moxie.h (INCOMING_RETURN_ADDR_RTX): Likewise.
6062 (EH_RETURN_HANDLER_RTX): Likewise.
6063 * config/moxie/moxie.c (moxie_static_chain): Likewise.
6064
6065 * config/pa/pa.c (legitimize_pic_address, hppa_legitimize_address)
6066 (store_reg, set_reg_plus_d, pa_expand_prologue, load_reg)
6067 (pa_return_addr_rtx, hppa_builtin_saveregs)
6068 (pa_trampoline_init): Likewise.
6069 * config/pa/pa.md: Likewise.
6070
6071 * config/pdp11/pdp11.c (pdp11_expand_epilogue): Likewise.
6072
6073 * config/picochip/picochip.c (picochip_static_chain): Likewise.
6074
6075 * config/rs6000/rs6000.h (RS6000_SAVE_TOC): Likewise.
6076 * config/rs6000/rs6000.c (rs6000_legitimize_address)
6077 (setup_incoming_varargs, print_operand, rs6000_return_addr)
6078 (rs6000_emit_eh_reg_restore, rs6000_emit_probe_stack_range)
6079 (rs6000_emit_epilogue)
6080 (rs6000_machopic_legitimize_pic_address): Likewise.
6081
6082 * config/rx/rx.c (gen_rx_rtsd_vector, gen_rx_popm_vector): Likewise.
6083
6084 * config/s390/s390.h (INITIAL_FRAME_ADDRESS_RTX): Likewise.
6085 (DYNAMIC_CHAIN_ADDRESS): Likewise.
6086 * config/s390/s390.c (s390_decompose_address, legitimize_pic_address)
6087 (s390_delegitimize_address, print_operand, annotate_constant_pool_refs)
6088 (replace_constant_pool_ref, s390_return_addr_rtx, s390_back_chain_rtx)
6089 (save_fpr, restore_fpr, save_gprs, restore_gprs, s390_emit_prologue)
6090 (s390_emit_epilogue, s390_function_profiler): Likewise.
6091 * config/s390/s390.md: Likewise.
6092
6093 * config/score/score.c (score_add_offset, score_prologue): Likewise.
6094
6095 * config/sh/sh.c (expand_block_move, push_regs, sh_builtin_saveregs)
6096 (sh_output_mi_thunk): Likewise.
6097 * config/sh/sh.md: Likewise.
6098
6099 * config/sparc/sparc.h (DYNAMIC_CHAIN_ADDRESS, FRAME_ADDR_RTX)
6100 (RETURN_ADDR_RTX, INCOMING_RETURN_ADDR_RTX): Likewise.
6101 * config/sparc/sparc.c (sparc_legitimize_pic_address)
6102 (sparc_emit_probe_stack_range, emit_save_or_restore_regs)
6103 (emit_window_save, sparc_flat_expand_prologue, sparc_struct_value_rtx)
6104 (emit_and_preserve): Likewise.
6105 * config/sparc/sparc.md: Likewise.
6106
6107 * config/spu/spu.h (DYNAMIC_CHAIN_ADDRESS): Likewise.
6108 * config/spu/spu.c (spu_expand_insv, spu_machine_dependent_reorg)
6109 (spu_setup_incoming_varargs, ea_load_store_inline)
6110 (spu_expand_load): Likewise.
6111
6112 * config/stormy16/stormy16.c (xstormy16_expand_prologue)
6113 (combine_bnp): Likewise.
6114
6115 * config/tilegx/tilegx.h (DYNAMIC_CHAIN_ADDRESS): Likewise.
6116 * config/tilegx/tilegx.c (tilegx_setup_incoming_varargs)
6117 (tilegx_expand_unaligned_load, tilegx_trampoline_init): Likewise.
6118
6119 * config/tilepro/tilepro.h (DYNAMIC_CHAIN_ADDRESS): Likewise.
6120 * config/tilepro/tilepro.c (tilepro_setup_incoming_varargs)
6121 (tilepro_expand_unaligned_load, tilepro_trampoline_init): Likewise.
6122
6123 * config/v850/v850.c (expand_prologue, expand_epilogue): Likewise.
6124 * config/v850/v850.md: Likewise.
6125
6126 * config/vax/elf.h (EH_RETURN_STACKADJ_RTX): Likewise.
6127 (EH_RETURN_HANDLER_RTX): Likewise.
6128 * config/vax/vax.h (DYNAMIC_CHAIN_ADDRESS, RETURN_ADDR_RTX): Likewise.
6129 * config/vax/vax.c (vax_add_reg_cfa_offset, vax_expand_prologue)
6130 (print_operand_address, vax_trampoline_init): Likewise.
6131
6132 * config/xtensa/xtensa.c (xtensa_expand_prologue, xtensa_return_addr)
6133 (xtensa_function_value_regno_p): Likewise.
6134
6135 2012-05-04 Andrew Pinski <apinski@cavium.com>
6136
6137 * expr.c (get_def_for_expr_class): New function.
6138 (convert_tree_comp_to_rtx): New function.
6139 (expand_cond_expr_using_cmove): New function.
6140 (expand_expr_real_2 <case COND_EXPR>): Call
6141 expand_cond_expr_using_cmove first and return if it succeeds.
6142 Remove the check for HAVE_conditional_move since we should have
6143 already converted it to a conditional move.
6144 * config/i386/i386.c (ix86_expand_int_movcc): Disallow comparison
6145 modes of DImode for 32bits and TImode.
6146
6147 2012-05-04 Steven Bosscher <steven@gcc.gnu.org>
6148
6149 PR other/29442
6150 * read-md.c (fprint_md_ptr_loc, fprint_c_condition): New functions.
6151 (print_md_ptr_loc, print_c_condition): Use them.
6152 * read-md.h (fprint_md_ptr_loc, fprint_c_condition): New prototypes.
6153 * genattrtab.c (attr_file_name, dfa_file_name, latency_file_name,
6154 attr_file, dfa_file, latency_file): New global variables.
6155 (write_attr_valueq, write_attr_set, write_attr_case, write_attr_value,
6156 write_upcase, write_indent, write_length_unit_log, write_test_expr,
6157 write_attr_get, write_insn_cases, write_eligible_delay,
6158 write_const_num_delay_slots): Accept FILE pointer and toss it around.
6159 Update all callers.
6160 (write_header, open_outfile, handle_arg): New funcions.
6161 (make_automaton_attrs): Write prototypes as extern to the output
6162 files.
6163 (main): Use init_rtx_reader_args_cb with handle_arg to take 3 file
6164 names from the command line. Open the output files and write out
6165 internal functions for DFA functions to dfa_file_name, insn latency
6166 functions to latency_file_name, and everything else to attr_file.
6167 * Makefile.in (OBJS): Add insn-dfatab.o and insn-latencytab.o.
6168 (BACKEND): Build libbackend first.
6169 (MOSTLYCLEANFILES): Add insn-dfatab.c and insn-latencytab.c.
6170 (.PRECIOUS): Likewise.
6171 (insn-dfatab.o): New rule.
6172 (insn-latencytab.o): New rule.
6173 (simple_rtl_generated_c): Do not include insn-attrtab.c.
6174 (s-attrtab): New rule.
6175
6176 2012-05-04 Steven Bosscher <steven@gcc.gnu.org>
6177
6178 * rtl.def (ATTR_FLAG): Remove probability indicating flags.
6179 * genattr.c (main): Remove ATTR_FLAG_likely, ATTR_FLAG_unlikely,
6180 ATTR_FLAG_very_likely, and ATTR_FLAG_very_unlikely.
6181 * reorg.c (get_jump_flags): Do not set the removed flags.
6182
6183 * doc/md.texi (attr_flag): Update for abovementioned changes.
6184
6185 2012-05-04 Uros Bizjak <ubizjak@gmail.com>
6186
6187 PR target/53228
6188 * config/i386/i386.h (X86_ARCH_CMOV): Rename from X86_ARCH_CMOVE.
6189 (TARGET_CMOV): Rename from TARGET_CMOVE.
6190 (TARGET_CMOVE): New define.
6191 * config/i386/i386.c (ix86_option_override_internal): Use TARGET_CMOV.
6192 Do not set TARGET_CMOVE here.
6193
6194 2012-05-04 Dodji Seketeli <dodji@redhat.com>
6195
6196 Enable -Wunused-local-typedefs when -Wall or -Wunused is on
6197 * opts.c (finish_options): Activate -Wunused-local-typedefs if
6198 -Wunused is activated.
6199 * doc/invoke.texi: Update blurb of -Wunused-local-typedefs.
6200
6201 2012-05-04 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
6202
6203 * config/s390/s390.md (*movmem_short, *clrmem_short)
6204 (*cmpmem_short): Move the mode check from the insn condition to
6205 the match_scratch.
6206
6207 2012-05-04 Ulrich Weigand <ulrich.weigand@linaro.org>
6208
6209 PR tree-optimization/52633
6210 * tree-vect-patterns.c (vect_vect_recog_func_ptrs): Swap order of
6211 vect_recog_widen_shift_pattern and vect_recog_over_widening_pattern.
6212 (vect_recog_over_widening_pattern): Remove handling of code that was
6213 already detected as over-widening pattern. Remove special handling
6214 of "unsigned" cases. Instead, support general case of conversion
6215 of the shift result to another type.
6216
6217 2012-05-04 Ulrich Weigand <ulrich.weigand@linaro.org>
6218
6219 * tree-vect-patterns.c (vect_single_imm_use): New function.
6220 (vect_recog_widen_mult_pattern): Use it instead of open-coding loop.
6221 (vect_recog_over_widening_pattern): Likewise.
6222 (vect_recog_widen_shift_pattern): Likewise.
6223
6224 2012-05-04 Ulrich Weigand <ulrich.weigand@linaro.org>
6225
6226 * tree-vect-patterns.c (vect_same_loop_or_bb_p): New function.
6227 (vect_handle_widen_op_by_const): Use it instead of open-coding test.
6228 (vect_recog_widen_mult_pattern): Likewise.
6229 (vect_operation_fits_smaller_type): Likewise.
6230 (vect_recog_over_widening_pattern): Likewise.
6231 (vect_recog_widen_shift_pattern): Add to vect_same_loop_or_bb_p test.
6232
6233 2012-05-04 Richard Guenther <rguenther@suse.de>
6234
6235 PR lto/50602
6236 * lto-wrapper.c (merge_and_complain): Complain about mismatches
6237 of -freg-struct-return and -fpcc-struct-return.
6238 (run_gcc): Pass through -freg-struct-return and -fpcc-struct-return
6239 from the input file options and ignore those from the link
6240 command line.
6241
6242 2012-05-04 Richard Guenther <rguenther@suse.de>
6243
6244 PR tree-optimization/53168
6245 * tree-ssa-pre.c (phi_translate_1): Only handle type-punned
6246 memory reads when the result is a constant we can pun.
6247
6248 2012-05-04 Richard Guenther <rguenther@suse.de>
6249
6250 * common.opt (flto-report): Do not mark as Optimization.
6251
6252 2012-05-04 Eric Botcazou <ebotcazou@adacore.com>
6253
6254 PR target/48496
6255 * recog.c (constrain_operands): If extra constraints are present, also
6256 accept pseudo-registers with equivalent memory locations during reload.
6257
6258 2012-05-04 Olivier Hainque <hainque@adacore.com>
6259
6260 * collect2.c (may_unlink_output_file): New global.
6261 (maybe_unlink): Honor it.
6262 * collect2.h: Add extern for it.
6263 * tlink.c (do_tlink): Set it to true if the link succeeded.
6264
6265 2012-05-04 Olivier Hainque <hainque@adacore.com>
6266
6267 * gcc.c (eval_spec_function): Finalize/restore the current string
6268 obstack state as part of the context push/pop operations.
6269
6270 2012-05-04 Bin Cheng <bin.cheng@arm.com>
6271
6272 PR rtl-optimization/52804
6273 * reload1.c (reload_reg_reaches_end_p): Check whether successor
6274 reload with type RELOAD_FOR_INPUT_ADDRESS kills reload register
6275 of current one with type RELOAD_FOR_INPADDR_ADDRESS.
6276 Same stands for reloads with type RELOAD_FOR_OUTPUT_ADDRESS and
6277 RELOAD_FOR_OUTADDR_ADDRESS.
6278
6279 2012-05-04 Manuel López-Ibáñez <manu@gcc.gnu.org>
6280
6281 PR c++/24985
6282 * tree-diagnostic.c (maybe_unwind_expanded_macro_loc): Show caret
6283 for macro expansion.
6284
6285 2012-05-03 Manuel López-Ibáñez <manu@gcc.gnu.org>
6286
6287 * flags.h (flag_permissive): Do not declare.
6288 * diagnostic.c (diagnostic_report_diagnostic): Handle fpermissive
6289 option specially.
6290 * toplev.c (flag_permissive): Do not define.
6291 * c-tree.h (system_header_p): Delete unused.
6292
6293 2012-05-03 David S. Miller <davem@davemloft.net>
6294
6295 PR target/52684
6296 * config/sparc/sparc.c (emit_soft_tfmode_libcall): If we pass a
6297 MEM directly into a libcall, mark it's MEM_EXPR as addressable.
6298 (sparc_emit_float_lib_cmp): Likewise.
6299
6300 2012-05-03 Michael Meissner <meissner@linux.vnet.ibm.com>
6301
6302 PR target/53199
6303 * config/rs6000/rs6000.md (bswapdi splitters): If
6304 -mavoid-indexed-addresses (or -mcpu=power6 which sets it by
6305 default) is used, generate an alternate sequence that does not
6306 depend on using indexed addressing.
6307
6308 2012-05-03 Jason Merrill <jason@redhat.com>
6309
6310 * gengtype.c (write_types): Fix warning message.
6311 (write_local): Likewise.
6312
6313 2012-05-02 Jason Merrill <jason@redhat.com>
6314
6315 * dwarf2out.c (struct external_ref, build_local_stub): New.
6316 (hash_external_ref, external_ref_eq, lookup_external_ref): New.
6317 (optimize_external_refs, optimize_external_refs_1): New.
6318 (change_AT_die_ref): New.
6319 (clone_as_declaration): Add DW_AT_signature when cloning a declaration.
6320 (build_abbrev_table): Take the external refs hashtable.
6321 (output_comp_unit): Get it from optimize_external_refs and pass it in.
6322
6323 2012-05-03 Jan Hubicka <jh@suse.cz>
6324
6325 PR middle-end/53093
6326 * tree-emutls.c (new_emutls_decl): Fix handling of aliases.
6327
6328 2012-05-03 Jan Hubicka <jh@suse.cz>
6329
6330 PR middle-end/53106
6331 * ipa.c (cgraph_remove_unreachable_nodes): Fix handling of clones.
6332
6333 2012-05-03 Jason Merrill <jason@redhat.com>
6334
6335 * dwarf2out.c (die_struct): Add comdat_type_p flag. Use it instead of
6336 use_debug_types to discriminate the die_id union.
6337 (print_die, assign_symbol_names, copy_decls_walk): Likewise.
6338 (build_abbrev_table, output_die): Likewise.
6339 (prune_unused_types_walk_attribs): Likewise.
6340 (generate_type_signature, copy_declaration_context): Set it.
6341 (remove_child_or_replace_with_skeleton): Set it.
6342 (dwarf2out_start_source_file, dwarf2out_end_source_file): Don't
6343 check use_debug_types.
6344 (dwarf2out_finish): Do break_out_includes after .debug_types.
6345
6346 2012-05-03 Jason Merrill <jason@redhat.com>
6347
6348 * dwarf2out.c (modified_type_die): Use scope_die_for.
6349 (gen_type_die_with_usage, dwarf2out_finish): Likewise.
6350 (uses_local_type_r, uses_local_type): New.
6351 (scope_die_for): Keep a type that uses a local type in local scope.
6352 Use get_context_die for namespace and type scope.
6353
6354 2012-05-03 Jason Merrill <jason@redhat.com>
6355
6356 * config/i386/i386.c (ix86_code_end): Set DECL_IGNORED_P on the
6357 pc thunk.
6358 * dwarf2out.c (output_aranges): Skip DECL_IGNORED_P functions.
6359 (dwarf2out_finish): Likewise.
6360
6361 2012-05-03 Martin Jambor <mjambor@suse.cz>
6362
6363 * builtins.c (get_object_alignment_1): Return whether we can determine
6364 the alignment or conservatively assume byte alignment. Return the
6365 alignment by reference. Use get_pointer_alignment_1 for dereference
6366 alignment.
6367 (get_pointer_alignment_1): Return whether we can determine the
6368 alignment or conservatively assume byte alignment. Return the
6369 alignment by reference. Use get_ptr_info_alignment to get SSA name
6370 alignment.
6371 (get_object_alignment): Update call to get_object_alignment_1.
6372 (get_object_or_type_alignment): Likewise, fall back to type alignment
6373 only when it returned false.
6374 (get_pointer_alignment): Update call to get_pointer_alignment_1.
6375 * fold-const.c (get_pointer_modulus_and_residue): Update call to
6376 get_object_alignment_1.
6377 * ipa-prop.c (ipa_modify_call_arguments): Update call to
6378 get_pointer_alignment_1.
6379 * tree-sra.c (build_ref_for_offset): Likewise, fall back to the type
6380 of MEM_REF or TARGET_MEM_REF only when it returns false.
6381 * tree-ssa-ccp.c (get_value_from_alignment): Update call to
6382 get_object_alignment_1.
6383 (ccp_finalize): Use set_ptr_info_alignment.
6384 * tree.h (get_object_alignment_1): Update declaration.
6385 (get_pointer_alignment_1): Likewise.
6386 * gimple-pretty-print.c (dump_gimple_phi): Use get_ptr_info_alignment.
6387 (dump_gimple_stmt): Likewise.
6388 * tree-flow.h (ptr_info_def): Updated comments of fields align and
6389 misalign.
6390 (get_ptr_info_alignment): Declared.
6391 (mark_ptr_info_alignment_unknown): Likewise.
6392 (set_ptr_info_alignment): Likewise.
6393 (adjust_ptr_info_misalignment): Likewise.
6394 * tree-ssa-address.c (copy_ref_info): Use new access functions to get
6395 and set alignment of SSA names.
6396 * tree-ssa-loop-ivopts.c (rewrite_use_nonlinear_expr): Call
6397 mark_ptr_info_alignment_unknown.
6398 * tree-ssanames.c (get_ptr_info_alignment): New function.
6399 (mark_ptr_info_alignment_unknown): Likewise.
6400 (set_ptr_info_alignment): Likewise.
6401 (adjust_ptr_info_misalignment): Likewise.
6402 (get_ptr_info): Call mark_ptr_info_alignment_unknown.
6403 * tree-vect-data-refs.c (vect_create_addr_base_for_vector_ref):
6404 Likewise.
6405 (bump_vector_ptr): Likewise.
6406 * tree-vect-stmts.c (create_array_ref): Use set_ptr_info_alignment.
6407 (vectorizable_store): Likewise.
6408 (vectorizable_load): Likewise.
6409
6410 2012-05-03 Michael Matz <matz@suse.de>
6411
6412 * basic-block.h (struct rtl_bb_info, struct gimple_bb_info): Move
6413 in front of basic_block_def.
6414 (struct basic_block_def): Make il.gimple the full struct, not a
6415 pointer.
6416 (__assert_gimple_bb_smaller_rtl_bb): Asserting typedef.
6417
6418 * cfgexpand.c (expand_gimple_basic_block): Clear all il.gimple members.
6419 * gimple-iterator.c (gimple_stmt_iterator): Don't special case
6420 NULL il.gimple, which can't happen anymore.
6421 * gimple.h (bb_seq): il.gimple can't be NULL.
6422 (bb_seq_add): Ditto.
6423 (set_bb_seq): Adjust.
6424 (gsi_start_bb, gsi_last_bb): Tidy.
6425 * lto-streamer-in.c (make_new_block): Don't zero members that
6426 are zeroed already, don't allocate a gimple_bb_info.
6427 * tree-cfg.c (create_bb): Don't allocate a gimple_bb_info.
6428 (remove_bb): Clear all il.gimple members.
6429 (gimple_verify_flow_info): Adjust for flat il.gimple.
6430 * tree-flow-inline.h (phi_nodes, phi_nodes_ptr, set_phi_nodes): Adjust.
6431
6432 * coretypes.h (const_gimple_seq): Remove typedef.
6433 * gimple.h (gimple_seq_first): Take gimple_seq.
6434 (gimple_seq_first_stmt): Ditto.
6435 (gimple_seq_last): Ditto.
6436 (gimple_seq_last_stmt): Ditto.
6437 (gimple_seq_empty_p): Ditto.
6438
6439 2012-05-03 Richard Guenther <rguenther@suse.de>
6440
6441 * tree-ssa-pre.c (valid_in_sets): Remove checking of trapping
6442 operations.
6443 (prune_clobbered_mems): Do it here. Do not uselessly sort expressions.
6444 (compute_avail): Do not add possibly trapping operations to
6445 EXP_GEN if they might not be executed in the block.
6446
6447 2012-05-03 Uros Bizjak <ubizjak@gmail.com>
6448
6449 * config/alpha/elf.h (MAX_OFILE_ALIGNMENT): Remove.
6450
6451 2012-05-03 Steven Bosscher <steven@gcc.gnu.org>
6452
6453 * tree-switch-conversion.c (gen_inbound_check): Free post-dominance
6454 information as early as possible. Update dominance info instead of
6455 discarding it.
6456
6457 2012-05-03 Richard Guenther <rguenther@suse.de>
6458
6459 * tree-ssa-pre.c (debug_bitmap_sets_for): New function.
6460 (union_contains_value): Remove.
6461 (vro_valid_in_sets): Likewise.
6462 (op_valid_in_sets): New function.
6463 (valid_in_sets): Use op_valid_in_sets.
6464 (insert_into_preds_of_block): Move dumping ...
6465 (do_regular_insertion): ... here.
6466 (do_partial_partial_insertion): ... and here. Dump that
6467 we've found a partial partial redundancy.
6468 (insert): Dump the current insert iteration.
6469
6470 2012-05-03 Jakub Jelinek <jakub@redhat.com>
6471
6472 PR plugins/53126
6473 * gcc-ar.c (main): If GCC_EXEC_PREFIX is set in env,
6474 append program name to it and pass that as first argument
6475 to make_relative_prefix. Always pass standard_libexec_prefix
6476 as last argument to make_relative_prefix. If
6477 make_relative_prefix returns NULL, fall back to
6478 standard_libexec_prefix.
6479
6480 PR debug/53174
6481 * tree-predcom.c (remove_stmt): Call reset_debug_uses on stmts being
6482 removed.
6483
6484 PR target/53187
6485 * config/arm/arm.c (arm_select_cc_mode): If x has MODE_CC class
6486 mode, return that mode.
6487
6488 PR target/53194
6489 * config/i386/i386-c.c (ix86_target_macros_internal): Don't
6490 define __ATOMIC_HLE_* macros here.
6491 (ix86_target_macros): But here, using cpp_define_formatted.
6492
6493 2012-05-03 Richard Guenther <rguenther@suse.de>
6494
6495 PR tree-optimization/53144
6496 * tree-ssa-sccvn.c (vn_reference_lookup_or_insert_constant_for_pieces):
6497 Rename to ...
6498 (vn_reference_lookup_or_insert_for_pieces): ... this. Properly deal
6499 with SSA name values.
6500 (vn_reference_lookup_3): Adjust callers.
6501
6502 2012-05-03 Ganesh Gopalasubramanian <Ganesh.Gopalasubramanian@amd.com>
6503
6504 * config/i386/driver-i386.c (host_detect_local_cpu): Reset
6505 has_fma4 for AMD processors with both fma3 and fma4 support.
6506
6507 2012-05-03 Kirill Yukhin <kirill.yukhin@intel.com>
6508
6509 PR target/53201
6510 * config/i386/driver-i386.c (host_detect_local_cpu): Add space to
6511 "-mno-hle".
6512
6513 2012-05-03 Michael Matz <matz@suse.de>
6514
6515 PR bootstrap/53197
6516 * tree-ssa-dse.c (dse_optimize_stmt): Take pointer to iterator.
6517 (dse_enter_block): Properly iterate the whole sequence even
6518 if the last statement was removed.
6519
6520 2012-05-02 Steven Bosscher <steven@gcc.gnu.org>
6521
6522 * config/alpha/vms.h (SUBTARGET_OVERRIDE_OPTIONS): For pic code,
6523 unset flag_jump_tables.
6524 * stmt.c (expand_case): Remove special flag_pic case conditional
6525 on ASM_OUTPUT_ADDR_DIFF_ELT not being defined.
6526
6527 2012-05-02 Ulrich Weigand <ulrich.weigand@linaro.org>
6528
6529 * common/config/s390/s390-common.c (s390_option_optimization_table):
6530 Enable -fsched-pressure using -fsched-pressure-algorithm=model by
6531 default when optimizing.
6532
6533 2012-05-02 Martin Jambor <mjambor@suse.cz>
6534
6535 PR lto/52605
6536 * dwarf2out.c (dwarf2out_decl): Only lookup die representing context
6537 of a variable when the contect is a function.
6538
6539 2012-05-02 Michael Matz <matz@suse.de>
6540
6541 * coretypes.h (gimple_seq, const_gimple_seq): Typedef as gimple.
6542 * gimple.h (struct gimple_seq_node_d, struct gimple_seq_d): Remove.
6543 (const_gimple_seq_node): Remove.
6544 (gimple_seq_node): Typedef as gimple.
6545 (struct gimple_statement_base): Add next and prev members,
6546 adjust all WORD markers in using structs.
6547 (union gimple_statement_d): Link via gsbase.next field for GC and PCH.
6548 (gimple_seq_first, gimple_seq_first_stmt, gimple_seq_last,
6549 gimple_seq_last_stmt): Adjust as gimple_seq, gimple_seq_node and
6550 gimple are the same.
6551 (gimple_seq_set_last, gimple_seq_set_first): Don't allocate
6552 gimple_seq, adjust.
6553 (gimple_init_singleton): New function.
6554 (gsi_start_1, gsi_last_1, gsi_end_p, gsi_one_before_end_p): Adjust.
6555 (gsi_next, gsi_prev): Adjust, handle prev cyclic list correctly.
6556 (gsi_stmt): Adjust.
6557 (gsi_stmt_ptr): Remove.
6558 (enum gimple_alloc_kind): Remove gimple_alloc_kind_seq member.
6559
6560 * gimple-iterator.c (update_bb_for_stmts): Take last parameter
6561 again, adjust for above changes.
6562 (update_call_edge_frequencies): Adjust for above changes.
6563 (gsi_insert_seq_nodes_before): Rewrite for new data structure.
6564 (gsi_insert_seq_nodes_after): Ditto.
6565 (gsi_split_seq_after): Ditto.
6566 (gsi_set_stmt): Ditto.
6567 (gsi_split_seq_before): Ditto.
6568 (gsi_remove): Ditto.
6569 (gsi_insert_seq_before_without_update): Don't free sequence.
6570 (gsi_insert_seq_after_without_update): Ditto.
6571 (gsi_replace): Assert some more invariants.
6572 (gsi_insert_before_without_update, gsi_insert_after_without_update):
6573 Tidy.
6574 (gsi_for_stmt): Don't search for stmt.
6575 (gsi_insert_on_edge_immediate): Tidy.
6576
6577 * gimple.c (gimple_alloc_k): Remove "sequences".
6578 (gimple_seq_cache): Remove.
6579 (gimple_alloc_stat): Make stmt a singleton sequence.
6580 (gimple_seq_alloc, gimple_seq_free): Remove.
6581 (gimple_assign_set_rhs_with_ops_1): Ensure new stmt is a singleton.
6582 (gimple_copy): Ditto.
6583 * gimplify.c (gimplify_cleanup_point_expr): Use gsi_set_stmt,
6584 create iterator from correct sequence.
6585 * tree-phinodes.c (make_phi_node): Make stmt a singleton.
6586
6587 2012-05-02 Michael Matz <matz@suse.de>
6588
6589 * gimple.h (gimple_stmt_iterator <seq>): Make it be pointer to
6590 gimple_seq.
6591 (gimple_seq_set_last, gimple_seq_set_first): Take pointer to
6592 sequence, lazily allocate it.
6593 (bb_seq_addr): New function.
6594 (gsi_start_1): Rename from gsi_start, but take pointer to sequence.
6595 (gsi_start): Macro to wrap gsi_start_1 taking pointer of argument.
6596 (gsi_none): New function.
6597 (gsi_start_bb): Adjust.
6598 (gsi_last_1): Rename from gsi_last, but take pointer to sequence.
6599 (gsi_last): Macro to wrap gsi_last_1 taking pointer of argument.
6600 (gsi_last_bb): Adjust.
6601 (gsi_seq): Adjust.
6602 * tree-flow-inline.h (phi_nodes_ptr): New function.
6603
6604 * gimple-iterator.c (gsi_insert_seq_nodes_before): Adjust to
6605 datastructure and interface change.
6606 (gsi_insert_seq_before_without_update): Ditto.
6607 (gsi_insert_seq_nodes_after): Ditto.
6608 (gsi_insert_seq_after_without_update): Ditto.
6609 (gsi_split_seq_after): Ditto, don't use gimple_seq_alloc.
6610 (gsi_split_seq_before): Ditto.
6611 (gsi_start_phis): Adjust.
6612 * tree-vect-loop.c (vect_determine_vectorization_factor): Use gsi_none.
6613 (vect_transform_loop): Ditto.
6614 * gimple.c (gimple_seq_add_stmt, gimple_seq_add_seq,
6615 gimple_seq_copy): Don't use gimple_seq_alloc.
6616 * gimplify.c (gimple_seq_add_stmt_without_update): Ditto.
6617 (gimplify_seq_add_seq): Ditto.
6618 * lto-streamer-in.c (make_new_block): Ditto.
6619 * tree-cfg.c (create_bb): Ditto.
6620 * tree-sra.c (initialize_parameter_reductions): Ditto.
6621
6622 2012-05-02 Michael Matz <matz@suse.de>
6623
6624 * gimple.h (gimple_seq_first, gimple_seq_first_stmt, gimple_seq_last,
6625 gimple_seq_last_stmt, gimple_seq_set_last, gimple_seq_set_first,
6626 gimple_seq_empty_p, gimple_seq_alloc_with_stmt, bb_seq,
6627 set_bb_seq): Move down to after gimple_statement_d definition.
6628
6629 2012-05-02 Michael Matz <matz@suse.de>
6630
6631 * gimple-fold.c (gimplify_and_update_call_from_tree): Use
6632 gsi_replace_with_seq, instead of inserting itself.
6633 * gimple-iterator.c (gsi_replace_with_seq): New function.
6634 * tree-ssa-forwprop.c (forward_propagate_comparison): Take
6635 iterator instead of statement, advance it.
6636 (ssa_forward_propagate_and_combine): Adjust call to above.
6637
6638 2012-05-02 Michael Matz <matz@suse.de>
6639
6640 * tree-phinodes.c (add_phi_node_to_bb): Tidy, don't use
6641 gimple_seq_alloc.
6642 * omp-low.c (finalize_task_copyfn): Don't use gimple_seq_alloc.
6643 * tree-nested.c (walk_gimple_omp_for): Ditto.
6644 * trans-mem.c (lower_transaction): Ditto.
6645 * tree-eh.c (do_return_redirection): Ditto.
6646 (do_goto_redirection): Ditto.
6647 (lower_try_finally_switch): Ditto.
6648 * gimplify.c (gimplify_stmt): Ditto.
6649 (gimplify_scan_omp_clauses): Ditto.
6650 (gimplify_omp_for): Ditto.
6651 (gimplify_function_tree): Ditto.
6652 * gimple-fold.c (gimplify_and_update_call_from_tree): Ditto.
6653 * tree-mudflap.c (mf_decl_cache_locals): Ditto.
6654 (mf_build_check_statement_for): Ditto.
6655 (mx_register_decls): Ditto.
6656 * graphite-sese-to-poly.c (remove_invariant_phi): Ditto,
6657 and don't use itertors to append.
6658 (insert_stmts): Ditto.
6659 (insert_out_of_ssa_copy): Ditto.
6660 (insert_out_of_ssa_copy_on_edge): Ditto.
6661
6662 2012-05-02 Michael Matz <matz@suse.de>
6663
6664 * gimple.h (gimple_bind_body_ptr): New function.
6665 (gimple_bind_body): Use it.
6666 (gimple_catch_handler): Use gimple_catch_handler_ptr.
6667 (gimple_eh_filter_failure_ptr): New function.
6668 (gimple_eh_filter_failure): Use it.
6669 (gimple_eh_else_n_body_ptr): New function.
6670 (gimple_eh_else_n_body): Use it.
6671 (gimple_eh_else_e_body_ptr): New function.
6672 (gimple_eh_else_e_body): Use it.
6673 (gimple_try_eval_ptr): New function.
6674 (gimple_try_eval): Use it.
6675 (gimple_try_cleanup_ptr): New function.
6676 (gimple_try_cleanup): Use it.
6677 (gimple_wce_cleanup_ptr): New function.
6678 (gimple_wce_cleanup): Use it.
6679 (gimple_omp_body_ptr): New function.
6680 (gimple_omp_body): Use it.
6681 (gimple_omp_for_pre_body_ptr): New function.
6682 (gimple_omp_for_pre_body): Use it.
6683 (gimple_transaction_body_ptr): New function.
6684 (gimple_transaction_body): Use it.
6685 (gsi_split_seq_before): Adjust to return nothing and take pointer
6686 to sequence.
6687 (gsi_set_stmt): Declare.
6688 (gsi_replace_with_seq): Declare.
6689 (walk_gimple_seq_mod): Declare.
6690 * function.h (struct function <gimple_body>): Use typedef gimple_seq.
6691
6692 * gimple-iterator.c (gsi_set_stmt): New function.
6693 (gsi_split_seq_before): Return new sequence via pointer argument.
6694 (gsi_replace): Use gsi_set_stmt.
6695
6696 * tree-ssa-loop-im.c (move_computations_stmt): First remove
6697 then insert stmt.
6698 * tree-complex.c (update_complex_components_on_edge): Don't copy gsi.
6699 * tree-phinodes.c (resize_phi_node): Don't resize stmt in-place,
6700 return new stmt.
6701 (reserve_phi_args_for_new_edge): Change call to above,
6702 use gsi_set_stmt.
6703
6704 * omp-low.c (lower_omp): Change prototype to take pointer to sequence.
6705 (lower_rec_input_clauses): Use gimple_seq_add_seq instead of
6706 iterators. Adjust call to lower_omp.
6707 (lower_lastprivate_clauses): Adjust call to lower_omp.
6708 (lower_reduction_clauses): Ditto.
6709 (expand_omp_taskreg): Nullify non-cfg body of child_fn.
6710 (lower_omp_sections): Don't explicitely count sequence length,
6711 nullify lowered bodies earlier, ensure stmts are part of only
6712 one sequence, adjust call to lower_omp.
6713 (lower_omp_single): Ensure stmts are part of only one sequence,
6714 adjust call to lower_omp.
6715 (lower_omp_master): Ditto.
6716 (lower_omp_ordered): Ditto.
6717 (lower_omp_critical): Ditto.
6718 (lower_omp_for): Ditto.
6719 (lower_omp_taskreg): Ditto, tidy.
6720 (lower_omp_1): Adjust calls to lower_omp.
6721 (execute_lower_omp): Ditto.
6722 (lower_omp): Adjust to take pointer to sequence.
6723 (diagnose_sb_2): Use walk_gimple_seq_mod.
6724 (diagnose_omp_structured_block_errors): Ditto and set possibly
6725 changed function body.
6726 * gimple-low.c (lower_function_body): Set function body after
6727 it stabilizes.
6728 (lower_sequence): Adjust to take pointer to sequence.
6729 (lower_omp_directive): Ensure stmt isn't put twice into the
6730 sequence, adjust call to lower_sequence.
6731 (lower_stmt): Adjust calls to lower_sequence.
6732 (lower_gimple_bind): Ditto.
6733 (gimple_try_catch_may_fallthru): Call gsi_start with lvalue.
6734 * tree-nested.c (walk_body): Take pointer to sequence, use
6735 walk_gimple_seq_mod.
6736 (walk_function): Adjust call to walk_body, set possibly changed body.
6737 (walk_gimple_omp_for): Adjust calls to walk_body.
6738 (convert_nonlocal_omp_clauses): Ditto.
6739 (convert_nonlocal_reference_stmt): Ditto.
6740 (convert_local_omp_clauses): Ditto.
6741 (convert_local_reference_stmt): Ditto.
6742 (convert_tramp_reference_stmt): Ditto.
6743 (convert_gimple_call): Ditto.
6744 (convert_nl_goto_reference): Use local iterator copy.
6745 * gimple.c (walk_gimple_seq_mod): Renamed from walk_gimple_seq,
6746 but taking pointer to sequence, ensure gsi_start is called with
6747 callers lvalue.
6748 (walk_gimple_seq): New wrapper around walk_gimple_seq_mod,
6749 asserting that the sequence head didn't change.
6750 (walk_gimple_stmt): Replace all calls to walk_gimple_seq with
6751 walk_gimple_seq_mod.
6752 * trans-mem.c (lower_transaction): Use walk_gimple_seq_mod.
6753 (execute_lower_tm): Ditto, and set possibly changed body.
6754 * tree-eh.c (lower_eh_constructs_1): Take pointer to sequence,
6755 call gsi_start with that lvalue.
6756 (replace_goto_queue_stmt_list): Ditto.
6757 (replace_goto_queue_1): Adjust calls to replace_goto_queue_stmt_list.
6758 (replace_goto_queue): Ditto.
6759 (lower_try_finally_nofallthru): Adjust calls to lower_eh_constructs_1.
6760 (lower_try_finally_onedest): Ditto.
6761 (lower_try_finally_copy): Ditto.
6762 (lower_try_finally_switch): Ditto.
6763 (lower_try_finally): Ditto.
6764 (lower_eh_filter): Ditto.
6765 (lower_eh_must_not_throw): Ditto.
6766 (lower_cleanup): Ditto.
6767 (lower_eh_constructs_2): Ditto.
6768 (lower_catch): Ditto, and ensure gsi_start is called with lvalue.
6769 (lower_eh_constructs): Adjust calls to lower_eh_constructs_1, and
6770 set possibly changed body.
6771 (optimize_double_finally): Call gsi_start with lvalue.
6772
6773 * tree-cfg.c (make_blocks): Adjust call to gsi_split_seq_before.
6774 (gimple_split_block): Ditto.
6775 (gimple_merge_blocks): Use gsi_start_phis.
6776 (move_stmt_r): Use walk_gimple_seq_mod.
6777 * tree-ssa-dse.c (dse_enter_block): Use gsi_last_bb.
6778 * cgraphbuild.c (build_cgraph_edges): Use gsi_start_phis.
6779 (rebuild_cgraph_edges): Ditto.
6780 (cgraph_rebuild_references): Ditto.
6781 * ipa-prop.c (ipa_analyze_params_uses): Ditto.
6782 * tree-inline.c (copy_phis_for_bb): Ditto.
6783 * tree-ssa-dce.c: Ditto.
6784
6785 * cgraphunit.c (cgraph_analyze_function): Use gimple_has_body_p.
6786
6787 2012-05-02 Kirill Yukhin <kirill.yukhin@intel.com>
6788 Andi Kleen <ak@linux.intel.com>
6789
6790 * coretypes.h (MEMMODEL_MASK): New.
6791 * builtins.c (get_memmodel): Add val. Call target.memmodel_check
6792 and return new variable.
6793 (expand_builtin_atomic_exchange): Mask memmodel values.
6794 (expand_builtin_atomic_compare_exchange): Ditto.
6795 (expand_builtin_atomic_load): Ditto.
6796 (expand_builtin_atomic_store): Ditto.
6797 (expand_builtin_atomic_clear): Ditto.
6798 * doc/extend.texi: Mention port-dependent memory model flags.
6799 * config/i386/cpuid.h (bit_HLE): New.
6800 * config/i386/driver-i386.c (host_detect_local_cpu): Detect
6801 HLE support.
6802 * config/i386/i386-protos.h (ix86_generate_hle_prefix): New.
6803 * config/i386/i386-c.c (ix86_target_macros_internal): Set HLE defines.
6804 (ix86_target_string)<-mhle>: New.
6805 (ix86_valid_target_attribute_inner_p) <OPT_mhle>: Ditto.
6806 * config/i386/i386.c (ix86_target_string) <OPTION_MASK_ISA_HLE>: New.
6807 (ix86_valid_target_attribute_inner_p) <OPT_mhle>: Ditto.
6808 (ix86_option_override_internal) <PTA_HLE>: New switch, set it
6809 enabled for generic, generic64 and core-avx2.
6810 (ix86_print_operand): Generate HLE lock prefixes.
6811 (ix86_memmodel_check): New.
6812 (TARGET_MEMMODEL_CHECK): Ditto.
6813 * config/i386/i386.h (OPTION_ISA_HLE): Ditto.
6814 (IX86_HLE_ACQUIRE): Ditto.
6815 (IX86_HLE_RELEASE): Ditto.
6816 * config/i386/i386.h (ix86_generate_hle_prefix): Ditto.
6817 * config/i386/i386.opt (mhle): Ditto.
6818 * config/i386/sync.md(atomic_compare_and_swap<mode>): Pass
6819 success model to instruction emitter.
6820 (atomic_fetch_add<mode>): Ditto.
6821 (atomic_exchange<mode>): Ditto.
6822 (atomic_add<mode>): Ditto.
6823 (atomic_sub<mode>): Ditto.
6824 (atomic_<code><mode>): Ditto.
6825 (*atomic_compare_and_swap_doubledi_pic): Ditto.
6826 (atomic_compare_and_swap_single<mode>): Define and use argument
6827 for success model.
6828 (atomic_compare_and_swap_double<mode>): Ditto.
6829 * configure.ac: Check if assembler support HLE prefixes.
6830 * configure: Regenerate.
6831 * config.in: Ditto.
6832
6833 2012-05-02 Steven Bosscher <steven@gcc.gnu.org>
6834
6835 PR middle-end/53153
6836 * gimplify.c (preprocess_case_label_vec_for_gimple): New function,
6837 split out from ...
6838 (gimplify_switch_expr): ... here.
6839 * gimple.h (preprocess_case_label_vec_for_gimple): Add prototype.
6840 * tree-ssa-forwprop.c (simplify_gimple_switch_label_vec): New function
6841 to clean up case labels with values outside the index type range.
6842 (simplify_gimple_switch): Call it if something changed.
6843 Remove strange and unnecessary assert.
6844
6845 2012-05-02 Richard Guenther <rguenther@suse.de>
6846
6847 * fold-const.c (div_if_zero_remainder): sizetypes no longer
6848 sign-extend.
6849 (int_const_binop_1): New worker for int_const_binop with
6850 overflowable parameter. Pass it through to force_fit_type_double.
6851 (int_const_binop): Wrap around int_const_binop_1 with overflowable
6852 equal to one.
6853 (size_binop_loc): Call int_const_binop_1 with overflowable equal
6854 to minus one, forcing overflow detection for even unsigned types.
6855 (extract_muldiv_1): Remove bogus TYPE_IS_SIZETYPE special-casing.
6856 (fold_binary_loc): Call try_move_mult_to_index with signed offset.
6857 * stor-layout.c (initialize_sizetypes): sizetypes no longer
6858 sign-extend.
6859 (layout_type): For zero-sized arrays ignore overflow on the
6860 size calculations.
6861 * tree-ssa-ccp.c (bit_value_unop_1): Likewise.
6862 (bit_value_binop_1): Likewise.
6863 * tree.c (double_int_to_tree): Likewise.
6864 (double_int_fits_to_tree_p): Likewise.
6865 (force_fit_type_double): Likewise.
6866 (host_integerp): Likewise.
6867 (int_fits_type_p): Likewise.
6868 * varasm.c (output_constructor_regular_field): Sign-extend the
6869 field-offset to cater for negative offsets produced by the Ada
6870 frontend.
6871 * omp-low.c (extract_omp_for_data): Convert the loop step to
6872 signed for pointer adjustments.
6873
6874 2012-05-02 Richard Guenther <rguenther@suse.de>
6875
6876 * tree.c (valid_constant_size_p): New function.
6877 * tree.h (valid_constant_size_p): Declare.
6878 * cfgexpand.c (expand_one_var): Adjust check for too large
6879 variables by using valid_constant_size_p.
6880 * varasm.c (assemble_variable): Likewise.
6881
6882 * c-decl.c (grokdeclarator): Properly check for sizes that
6883 cover more than half of the address-space.
6884
6885 2012-05-02 Jakub Jelinek <jakub@redhat.com>
6886
6887 PR tree-optimization/53163
6888 * tree-ssa-phiopt.c (cond_if_else_store_replacement): Don't ignore
6889 return value from compute_all_dependences.
6890
6891 PR rtl-optimization/53160
6892 * ree.c (combine_reaching_defs): Handle the case where cand->insn
6893 has been modified by ree pass already.
6894
6895 2012-05-01 Ian Lance Taylor <iant@google.com>
6896
6897 PR c/37303
6898 * c-decl.c (build_compound_literal): Make the decl readonly if it
6899 an array of a readonly type.
6900 * gimplify.c (gimplify_compound_literal_expr): Add fallback
6901 parameter. Change all callers. If the decl is not addressable
6902 and is not an l-value, make it readonly.
6903
6904 2012-05-01 Bernd Schmidt <bernds@codesourcery.com>
6905
6906 * ira.c (allocated_reg_info_size): New static variable.
6907 (expand_reg_info): Manage it. Call
6908 setup_preferred_alternate_classes_for_new_pseudos.
6909 (ira): Don't do it here. Remove local allocated_reg_info_size,
6910 set the global before calling find_moveable_pseudos.
6911 (find_moveable_pseudos): Call expand_reg_info rather than
6912 resize_reg_info.
6913
6914 2012-05-01 Richard Henderson <rth@redhat.com>
6915
6916 * common.opt (fsync-libcalls): New.
6917 * doc/invoke.texi: Document it.
6918 * optabs.c (init_sync_libfuncs): Honor it.
6919
6920 2012-05-01 Kenneth Zadeck <zadeck@naturalbridge.com>
6921 Richard Sandiford <r.sandiford@uk.ibm.com>
6922
6923 PR rtl-optimization/52543
6924 * Makefile.in (lower-subreg.o, target-globals.o): Depend on
6925 lower-subreg.h.
6926 * lower-subreg.h: New file.
6927 * target-globals.h (this_target_lower_subreg): Declare.
6928 (target_globals): Add lower_subreg;
6929 (restore_target_globals): Restore this_target_lower_subreg.
6930 * target-globals.c: Include it.
6931 (default_target_globals): Add default_target_lower_subreg.
6932 (save_target_globals): Initialize target_lower_subreg.
6933 * rtl.h (init_lower_subreg): Added declaration.
6934 * toplev.c (backend_init_target): Call initializer for lower-subreg
6935 pass.
6936 * lower-subreg.c (LOG_COSTS, FORCE_LOWERING): New macros.
6937 (default_target_lower_subreg): New variable.
6938 (this_target_lower_subreg): Likewise.
6939 (twice_word_mode, choices): New macros.
6940 (shift_cost, compute_splitting_shift, compute_costs)
6941 (init_lower_subreg): New functions.
6942 (resolve_simple_move): Add speed_p argument. Check choices.
6943 (find_pseudo_copy): Don't check the mode size here.
6944 (resolve_simple_move): Assert the mode size.
6945 (find_decomposable_shift_zext): Add speed_p argument and return
6946 a bool. Check choices.
6947 (resolve_shift_zext): Add comment.
6948 (dump_shift_choices, dump_choices): New functions.
6949 (decompose_multiword_subregs): Dump list of profitable
6950 transformations. Add code to skip non profitable transformations.
6951 Update calls to simple_move and find_decomposable_shift_zext.
6952
6953 2012-05-01 Ian Bolton <ian.bolton@arm.com>
6954 Sameera Deshpande <sameera.deshpande@arm.com>
6955 Greta Yorsh <greta.yorsh@arm.com>
6956
6957 * config/arm/arm-protos.h (thumb_unexpanded_epilogue): Rename to...
6958 (thumb1_unexpanded_epilogue): ...this.
6959 * config/arm/arm.c (thumb_unexpanded_epilogue): Rename to...
6960 (thumb1_unexpanded_epilogue): ...this.
6961 * config/arm/arm.md (thumb_unexpanded_epilogue): Rename to...
6962 (thumb1_unexpanded_epilogue): ...this.
6963
6964 2012-05-01 Richard Earnshaw <rearnsha@arm.com>
6965
6966 * arm/linux-eabi.h (GLIBC_DYNAMIC_LINKER_DEFAULT): Avoid ifdef
6967 comparing enumeration values. Update comments.
6968
6969 2012-05-01 Alan Modra <amodra@gmail.com>
6970
6971 PR target/53038
6972 * config/rs6000/rs6000.c (load_lr_save, restore_saved_lr,
6973 load_cr_save, add_crlr_cfa_restore): New functions.
6974 (rs6000_restore_saved_cr): Rename to..
6975 (restore_saved_cr): ..this. Add cfa_restore notes for cr.
6976 (rs6000_emit_epilogue): Use new functions. Adjust condition
6977 for emitting lr and cr cfa_restore. Emit cfa_restores for fp
6978 regs when using out-of-line restore only when shrink wrapping.
6979
6980 2012-04-30 Uros Bizjak <ubizjak@gmail.com>
6981
6982 PR middle-end/53136
6983 * ipa-prop.c (ipa_print_node_jump_functions): Wrap multiple
6984 calls to cgraph_node_name in xstrdup.
6985 (ipa_make_edge_direct_to_target): Ditto.
6986 * cgraph.c (dump_cgraph_node): Ditto.
6987 * tree-sra.c (convert_callers_for_node): Ditto.
6988 * lto-symtab.c (lto_cgraph_replace_node): Ditto.
6989 * ipa-cp.c (perhaps_add_new_callers): Ditto.
6990 * cgraphunit.c (cgraph_redirect_edge_call_stmt_to_callee): Ditto.
6991 (cgraph_materialize_all_clones): Ditto.
6992 * ipa-inline.c (report_inline_failed_reason): Ditto.
6993 (want_early_inline_function_p): Ditto.
6994 (edge_badness): Ditto.
6995 (update_edge_key): Ditto.
6996 (flatten_function): Ditto.
6997 (ipa_inline): Ditto.
6998 (inline_always_inline_functions): Ditto.
6999 (early_inline_small_functions): Ditto.
7000
7001 2012-04-30 Uros Bizjak <ubizjak@gmail.com>
7002
7003 PR target/53141
7004 * config/i386/i386.md (*umul<mode><dwi>3_1): Switch places of
7005 constraints 0 and 1.
7006
7007 012-04-30 Jan Hubicka <jh@suse.cz>
7008
7009 * cgraph.c (ld_plugin_symbol_resolution_names): Move to symtab.c
7010 (cgraph_asm_nodes, cgraph_asm_last_node): Move to cgraphunit.c
7011 (cgraph_add_to_same_comdat_group): Remove.
7012 (cgraph_add_asm_node): Move to cgraphunit.c.
7013 (cgraph_make_decl_local): Move to symtab.c
7014 (cgraph_make_node_local_1): Update.
7015 (cgraph_can_remove_if_no_direct_calls_and): Update.
7016 (used_from_object_file_p): Update.
7017 (resolution_used_from_other_file_p): Move to symtab.c
7018 (cgraph_used_from_object_file_p): move to symtab.c
7019 (verify_cgraph_node): Verify same comdat groups.
7020 * cgraph.h (cgraph_asm_node): Rename to ...
7021 (asm_node): ... this one.
7022 (cgraph_asm_nodes): Rename to ...
7023 (asm_nodes): ... this one.
7024 (symtab_add_to_same_comdat_group): New function.
7025 (symtab_dissolve_same_comdat_group_list): New function.
7026 (symtab_used_from_object_file_p): Declare.
7027 (symtab_make_decl_local): Declare.
7028 (cgraph_add_to_same_comdat_group): Remove.
7029 (cgraph_add_asm_node): Remove.
7030 (cgraph_used_from_object_file_p, varpool_used_from_object_file_p):
7031 Remove.
7032 (cgraph_finalize_compilation_unit): Rename to ...
7033 (finalize_compilation_unit): ... this one.
7034 (cgraph_optimize): Rename to ....
7035 (compile): ... this one.
7036 (add_asm_node): Declare.
7037 (fixup_same_cpp_alias_visibility): Declare.
7038 (cgraph_make_decl_local): Remove.
7039 (varpool_assemble_pending_decls): Rename to ...
7040 (varpool_output_variables): ... this one.
7041 (varpool_remove_unreferenced_decls): Remove.
7042 * ipa-inline-transform.c (clone_inlined_nodes): Dissolve comdat groups.
7043 (preserve_function_body_p): Make static.
7044 * toplev.c (compile_file): Update comments; update.
7045 * cgraphunit.c: Update comments.
7046 (cgraph_expand_all_functions): Rename to ...
7047 (expand_all_functions): ... this one; update.
7048 (cgraph_mark_functions_to_output): Rename to ...
7049 (mark_functions_to_output): ... this one; cleanup.
7050 (cgraph_output_pending_asms): Remove prototype.
7051 (asm_nodes, asm_last_node): New static vars.
7052 (cgraph_process_new_functions): Update.
7053 (cgraph_reset_node): Cleanup; add comment.
7054 (cgraph_add_new_function): Update.
7055 (cgraph_output_pending_asms): Rename to ...
7056 (output_asm_statements): ... this one.
7057 (add_asm_node): New function.
7058 (fixup_same_cpp_alias_visibility): New function based on code
7059 in cgraph_analyze_function.
7060 (cgraph_analyze_function): Use it.
7061 (cgraph_order_sort): Update.
7062 (cgraph_output_in_order): Update.
7063 (cgraph_function_versioning): Update.
7064 (cgraph_optimize): Rename to ...
7065 (compile): ... this one; initialize streamer hooks here.
7066 (cgraph_finalize_compilation_unit): Rename to ...
7067 (finalize_compilation_unit): ... this one; do not initialize streamer
7068 hook here.
7069 * lto-streamer-out.c (lto_output_toplevel_asms): Update.
7070 * dwarf2out.c: Update ocmment.
7071 * optimize.c (maybe_clone_body): Use symtab_add_to_same_comdat_group.
7072 * method.c (use_thunk): Likewise.
7073 * semantics.c (maybe_add_lambda_conv_op): Likewise.
7074 * decl2.c (maybe_emit_vtables): Likewise.
7075 (cp_write_global_declarations): Use finalize_compilation_unit.
7076 * parser.c (cp_parser_asm_definition): Use add_asm_node.
7077 * lto-streamer-in.c (lto_input_toplevel_asms): Use add_asm_node
7078 * c-decl.c (c_write_global_declarations): Use
7079 finalize_compilation_unit.
7080 * langhooks.c (write_global_declarations): Update.
7081 * ipa.c (cgraph_externally_visible_p): Update.
7082 (dissolve_same_comdat_group_list): Remove.
7083 (function_and_variable_visibility): Update.
7084 * symtab.c: Inlcude lto-streamer.h and rtl.h
7085 (ld_plugin_symbol_resolution_names): New.
7086 (symtab_add_to_same_comdat_group): New.
7087 (symtab_dissolve_same_comdat_group_list): New.
7088 (resolution_used_from_other_file_p): Move here from cgraph.c
7089 (symtab_used_from_object_file_p): New.
7090 (symtab_make_decl_local): New.
7091 * passes.c (register_pass): Update comments.
7092 * c-parser.c (c_parser_asm_definition): Update.
7093 * varpool.c (varpool_analyze_node): Use
7094 fixup_same_cpp_alias_visibility.
7095 (varpool_remove_unreferenced_decls): Make static.
7096 (varpool_assemble_pending_decls): Rename to ...
7097 (varpool_output_variables): ... this one; call
7098 varpool_remove_unreferenced_decls.
7099 (varpool_used_from_object_file_p): Remove.
7100
7101 2012-04-30 Marc Glisse <marc.glisse@inria.fr>
7102
7103 PR c++/51033
7104 * c-typeck.c (build_array_ref): Call
7105 convert_vector_to_pointer_for_subscript.
7106 * doc/extend.texi (Vector Extensions): Subscripting not just for C.
7107
7108 2012-04-30 Uros Bizjak <ubizjak@gmail.com>
7109
7110 * config/i386/i386.md (and<mode>3): Change runtime operand mode checks
7111 to compile-time "mode == <MODE>mode" checks.
7112 (and splitter): Ditto.
7113
7114 2012-04-30 Richard Henderson <rth@redhat.com>
7115
7116 * config/arm/arm.md (UNSPEC_LL): New.
7117 * config/arm/sync.md (atomic_loaddi, atomic_loaddi_1): New.
7118 (arm_load_exclusivedi): Use %H0.
7119
7120 2012-04-30 Jason Merrill <jason@redhat.com>
7121
7122 * dwarf2out.c (comdat_symbol_id): Add const.
7123 (union die_symbol_or_type_node): Add const to die_symbol.
7124 (output_die_symbol, output_die, output_comp_unit): Adjust.
7125
7126 2012-04-30 Andrew Stubbs <ams@codesourcery.com>
7127
7128 * config/arm/arm.md (negdi2): Use gen_negdi2_neon.
7129 * config/arm/neon.md (negdi2_neon): New insn.
7130 Also add splitters for core and NEON registers.
7131
7132 2012-04-30 Andrew Stubbs <ams@codesourcery.com>
7133
7134 * config/arm/arm.c (neon_valid_immediate): Allow const_int.
7135 (arm_print_operand): Add 'x' format.
7136 * config/arm/constraints.md (Dn): Allow const_int.
7137 * config/arm/neon.md (neon_mov<mode>): Use VDX to allow DImode.
7138 Use 'x' format to print constants.
7139 * config/arm/predicates.md (imm_for_neon_mov_operand): Allow const_int.
7140 * config/arm/vfp.md (movdi_vfp): Disable for const_int when neon
7141 is enabled.
7142 (movdi_vfp_cortexa8): Likewise.
7143
7144 2012-04-30 Ian Bolton <ian.bolton@arm.com>
7145 Sameera Deshpande <sameera.deshpande@arm.com>
7146 Greta Yorsh <greta.yorsh@arm.com>
7147
7148 * config/arm/arm-protos.h (ldm_stm_operation_p): New declaration.
7149 * config/arm/arm.c (ldm_stm_operation_p): New function.
7150 * config/arm/predicates.md (load_multiple_operation): Update predicate.
7151 (store_multiple_operation): Likewise.
7152
7153 * config/arm/arm-protos.h (ldm_stm_operation_p): New parameters.
7154 * config/arm/arm.c (ldm_stm_operation_p): New parameters.
7155 * config/arm/predicates.md (load_multiple_operation): Add arguments.
7156 (store_multiple_operation): Likewise.
7157
7158 2012-04-30 Uros Bizjak <ubizjak@gmail.com>
7159
7160 * config/i386/i386.md (and<mode>3): Expand masking operations with
7161 0xff, 0xffff or 0xffffffff immediates to corresponding zero_extend RTX.
7162 (and splitter): Split to DImode zero_extend RTX for DImode operand[0].
7163
7164 2012-04-30 Dodji Seketeli <dodji@redhat.com>
7165
7166 Add -Wvarargs option
7167 * builtins.c (fold_builtin_next_arg): Use OPT_Wvarargs as an
7168 argument for the various warning_at calls.
7169 * docs/invoke.texi: Update the documentation.
7170
7171 2012-04-30 Dodji Seketeli <dodji@redhat.com>
7172
7173 Switch -ftrack-macro-expansion=2 on by default.
7174 * docs/cppopts.texi: Adjust for enabling -ftrack-macro-expansion=2
7175 by default.
7176
7177 Fix va_start related location
7178 * builtins.c (fold_builtin_next_arg): Unwinds to the first
7179 location in real source code.
7180
7181 Make conversion warnings work on NULL with -ftrack-macro-expansion
7182 * input.h (expansion_point_location_if_in_system_header): Declare
7183 new function.
7184 * input.c (expansion_point_location_if_in_system_header): Define it.
7185
7186 Fix -Wuninitialized for -ftrack-macro-expansion
7187 * tree-ssa.c (warn_uninit): Use the spelling location of the variable
7188 declaration. Use linemap_location_before_p for source locations.
7189
7190 Strip "<built-in>" loc from displayed expansion context
7191 * input.c (expand_location_1): When expanding to spelling location
7192 in a context of a macro expansion, skip reserved system header
7193 locations. Update comments. * tree-diagnostic.c
7194 (maybe_unwind_expanded_macro_loc): Likewise.
7195
7196 Make expand_location resolve to locus in main source file
7197 * input.c (expand_location_1): New. Takes a parameter to choose
7198 whether to resolve the location to spelling or expansion point.
7199 Was factorized from ...
7200 (expand_location): ... here.
7201 (expand_location_to_spelling_point): New. Implemented in terms of
7202 expand_location_1.
7203 * diagnostic.c (diagnostic_build_prefix): Use the new
7204 expand_location_to_spelling_point instead of expand_location.
7205
7206 Fix PCH crash on GTYed pointer-to-scalar field of a struct
7207 * gengtype.c (write_types_process_field): Force second argument of
7208 the call to the PCH object hierarchy walker to be 'x'.
7209
7210 2012-04-30 Eric Botcazou <ebotcazou@adacore.com>
7211
7212 * config/i386/i386.c (ix86_handle_struct_attribute): Use the proper
7213 predicate to discriminate types.
7214
7215 2012-04-30 Manuel López-Ibáñez <manu@gcc.gnu.org>
7216
7217 * doc/invoke.texi (Wmissing-format-attribute): Document as an
7218 alias of Wsuggest-attribute=format.
7219 * c-typeck.c (convert_for_assignment): Replace
7220 Wmissing-format-attribute with Wsuggest-attribute=format.
7221 (digest_init): Likewise.
7222
7223 2012-04-29 Manuel López-Ibáñez <manu@gcc.gnu.org>
7224
7225 * opts.c (finish_options): Do not handle -Wmissing-noreturn here.
7226 * common.opt (Wmissing-noreturn): Alias of
7227 -Wsuggest-attribute=noreturn.
7228
7229 2012-04-29 Hans-Peter Nilsson <hp@axis.com>
7230
7231 PR target/53156
7232 * config/cris/cris.md (andqu): New peephole2.
7233 (andu): Tweak head comment.
7234
7235 2012-04-28 Joern Rennecke <joern.rennecke@embecosm.com>
7236 Steven Bosscher <steven@gcc.gnu.org>
7237 Maxim Kuvyrkov <maxim@codesourcery.com>
7238
7239 PR tree-optimization/38785
7240 * common.opt (ftree-partial-pre): New option.
7241 * doc/invoke.texi: Document it.
7242 * opts.c (default_options_table): Initialize flag_tree_partial_pre.
7243 * tree-ssa-pre.c (do_partial_partial_insertion): Insert only if it will
7244 benefit speed path.
7245 (execute_pre): Use flag_tree_partial_pre.
7246
7247 2012-04-27 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
7248
7249 PR target/52999
7250 * config/pa/pa.c (pa_legitimate_constant_p): Don't put function labels
7251 in constant pool.
7252
7253 2012-04-27 Ollie Wild <aaw@google.com>
7254
7255 * doc/invoke.texi (Wliteral-suffix): Document new option.
7256
7257 2012-04-27 Tom Tromey <tromey@redhat.com>
7258
7259 * dwarf2out.c (dwarf_stack_op_name): Use get_DW_OP_name.
7260 (dwarf_tag_name): Use get_DW_TAG_name.
7261 (dwarf_attr_name): Use get_DW_AT_name.
7262 (dwarf_form_name): Use get_DW_FORM_name.
7263 * dwarf2cfi.c (dwarf_cfi_name): Use get_DW_CFA_name.
7264
7265 2012-04-27 Paolo Bonzini <bonzini@gnu.org>
7266
7267 * tree-ssa-phiopt.c (conditional_replacement): Replace PHIs whose
7268 arguments are -1 and 0, by negating the result of the conditional.
7269
7270 2012-04-27 Paolo Bonzini <bonzini@gnu.org>
7271
7272 PR target/53138
7273 * config/i386/i386.md (x86_mov<mode>cc_0_m1_neg): Add clobber.
7274
7275 2012-04-27 Richard Guenther <rguenther@suse.de>
7276
7277 * tree-flow.h (is_hidden_global_store): Remove.
7278 * tree-ssa-sink.c (is_hidden_global_store): Likewise.
7279 * tree-ssa-alias.h (ref_may_alias_global_p): Declare.
7280 (stmt_may_clobber_global_p): Likewise.
7281 * tree-ssa-alias.c (ref_may_alias_global_p): New function.
7282 (stmt_may_clobber_global_p): Likewise.
7283 * tree-ssa-dce.c (mark_stmt_if_obviously_necessary): Call
7284 stmt_may_clobber_global_p.
7285 * tree-ssa-dse.c (dse_possible_dead_store_p): Likewise.
7286
7287 2012-04-27 Steven Bosscher <steven@gcc.gnu.org>
7288
7289 * cfg.c (disconnect_src): Do df_mark_solutions_dirty in the right
7290 place.
7291
7292 * tree-switch-conversion.c (struct switch_conv_info): Add range_max,
7293 reorganize some fields and update comments. Rename bit_test_uniq
7294 and bit_test_count to uniq resp. count. Remove bit_test_bb.
7295 (collect_switch_conv_info): New function, collects info about a
7296 GIMPLE_SWITCH into a struct switch_conv_info.
7297 (check_range): Simplify to use pre-recorded info. Fix think-o in
7298 range-branch ratio check.
7299 (check_process_case): Remove function.
7300 (check_all_empty_except_final): New function, verifies that all
7301 non-final basic blocks are empty.
7302 (process_switch): Simplify to use pre-recorded info. Call
7303 collect_switch_conv_info to do that. Assert that degenerate switch
7304 statements have been cleaned up.
7305
7306 2012-04-27 Marc Glisse <marc.glisse@inria.fr>
7307
7308 PR middle-end/27139
7309 * tree-ssa-forwprop.c (combine_conversions): Handle INT->FP->INT.
7310
7311 2012-04-25 Manuel López-Ibáñez <manu@gcc.gnu.org>
7312
7313 PR c/53130
7314 * c-typeck.c (pop_init_level): Use %qD instead of %qT.
7315
7316 2012-04-27 Tom de Vries <tom@codesourcery.com>
7317
7318 PR tree-optimization/51879
7319 * tree-ssa-sccvn.h (struct vn_reference_s): Add result_vdef field.
7320 * tree-ssa-sccvn.c (mark_use_processed): New function, factored out
7321 of ...
7322 (defs_to_varying): ... here. Don't set use_processed.
7323 (visit_reference_op_call): Handle gimple_vdef.
7324 Handle case that lhs is NULL_TREE.
7325 (visit_use): Use mark_use_processed. Handle calls with side-effect
7326 using visit_reference_op_call.
7327
7328 2012-04-26 Richard Sandiford <richard.sandiford@linaro.org>
7329
7330 * sched-deps.c (fixup_sched_groups): Rename to...
7331 (chain_to_prev_insn): ...this.
7332 (chain_to_prev_insn_p): New function.
7333 (deps_analyze_insn): Use it instead of SCHED_GROUP_P.
7334
7335 2012-04-26 Richard Sandiford <richard.sandiford@linaro.org>
7336
7337 * sched-int.h (_haifa_insn_data): Move priority_status.
7338 Add model_index.
7339 (INSN_MODEL_INDEX): New macro.
7340 * haifa-sched.c (insn_delay): New function.
7341 (sched_regno_pressure_class): Update commentary.
7342 (mark_regno_birth_or_death): Pass the liveness bitmap and
7343 pressure array as arguments, instead of using curr_reg_live and
7344 curr_reg_pressure. Only update the pressure if the bit in the
7345 liveness set has changed.
7346 (initiate_reg_pressure_info): Always trust the live-in set for
7347 SCHED_PRESSURE_MODEL.
7348 (initiate_bb_reg_pressure_info): Update call to
7349 mark_regno_birth_or_death.
7350 (dep_list_size): Take the list as argument.
7351 (calculate_reg_deaths): New function, extracted from...
7352 (setup_insn_reg_pressure_info): ...here.
7353 (MODEL_BAR): New macro.
7354 (model_pressure_data, model_insn_info, model_pressure_limit)
7355 (model_pressure_group): New structures.
7356 (model_schedule, model_worklist, model_insns, model_num_insns)
7357 (model_curr_point, model_before_pressure, model_next_priority):
7358 New variables.
7359 (MODEL_PRESSURE_DATA, MODEL_MAX_PRESSURE, MODEL_REF_PRESSURE)
7360 (MODEL_INSN_INFO, MODEL_INSN): New macros.
7361 (model_index, model_update_limit_points_in_group): New functions.
7362 (model_update_limit_points, model_last_use_except): Likewise.
7363 (model_start_update_pressure, model_update_pressure): Likewise.
7364 (model_recompute, model_spill_cost, model_excess_group_cost): Likewise.
7365 (model_excess_cost, model_dump_pressure_points): Likewise.
7366 (model_set_excess_costs): Likewise.
7367 (rank_for_schedule): Extend SCHED_PRIORITY_WEIGHTED ordering to
7368 SCHED_PRIORITY_MODEL. Use insn_delay. Use the order in the model
7369 schedule as an alternative tie-breaker. Update the call to
7370 dep_list_size.
7371 (ready_sort): Call model_set_excess_costs.
7372 (update_register_pressure): Update call to mark_regno_birth_or_death.
7373 Rely on that function to check liveness rather than doing it here.
7374 (model_classify_pressure, model_order_p, model_add_to_worklist_at)
7375 (model_remove_from_worklist, model_add_to_worklist, model_promote_insn)
7376 (model_add_to_schedule, model_analyze_insns, model_init_pressure_group)
7377 (model_record_pressure, model_record_pressures): New functions.
7378 (model_record_final_pressures, model_add_successors_to_worklist)
7379 (model_promote_predecessors, model_choose_insn): Likewise.
7380 (model_reset_queue_indices, model_dump_pressure_summary): Likewise.
7381 (model_start_schedule, model_finalize_pressure_group): Likewise.
7382 (model_end_schedule): Likewise.
7383 (schedule_insn): Say when we're scheduling the next instruction
7384 in the model schedule.
7385 (schedule_insn): Handle SCHED_PRESSURE_MODEL.
7386 (queue_to_ready): Do not add instructions that are
7387 MAX_SCHED_READY_INSNS beyond the current point of the model schedule.
7388 Always allow the next instruction in the model schedule to be added.
7389 (debug_ready_list): Print the INSN_REG_PRESSURE_EXCESS_COST_CHANGE
7390 and delay for SCHED_PRESSURE_MODEL too.
7391 (prune_ready_list): Extend SCHED_PRIORITY_WEIGHTED handling to
7392 SCHED_PRIORITY_MODEL, but also take the DFA into account.
7393 (schedule_block): Call model_start_schedule and model_end_schedule.
7394 Extend SCHED_PRIORITY_WEIGHTED stall handling to SCHED_PRIORITY_MODEL.
7395 (sched_init): Extend INSN_REG_PRESSURE_EXCESS_COST_CHANGE handling
7396 to SCHED_PRESSURE_MODEL, but don't allocate saved_reg_live or
7397 region_ref_regs.
7398 (sched_finish): Update accordingly.
7399 (fix_tick_ready): Extend INSN_REG_PRESSURE_EXCESS_COST_CHANGE handling
7400 to SCHED_PRESSURE_MODEL.
7401 (add_jump_dependencies): Update call to dep_list_size.
7402 (haifa_finish_h_i_d): Fix leak of max_reg_pressure.
7403 (haifa_init_insn): Extend INSN_REG_PRESSURE_EXCESS_COST_CHANGE handling
7404 to SCHED_PRESSURE_MODEL.
7405 * sched-deps.c (init_insn_reg_pressure_info): Likewise, but don't
7406 allocate INSN_MAX_REG_PRESSURE for SCHED_PRESSURE_MODEL.
7407 (sched_analyze_insn): Extend INSN_REG_PRESSURE_EXCESS_COST_CHANGE
7408 handling to SCHED_PRESSURE_MODEL.
7409
7410 2012-04-26 Richard Sandiford <richard.sandiford@linaro.org>
7411
7412 * common.opt (fsched-pressure-algorithm=): New option.
7413 * flag-types.h (sched_pressure_algorithm): New enum.
7414 * sched-int.h (sched_pressure_p): Replace with...
7415 (sched_pressure): ...this new variable.
7416 * haifa-sched.c (sched_pressure_p): Replace with...
7417 (sched_pressure): ...this new variable.
7418 (sched_regno_pressure_class, rank_for_schedule, ready_sort)
7419 (update_reg_and_insn_max_reg_pressure, schedule_insn)
7420 (debug_ready_list, prune_ready_list, schedule_block, sched_init)
7421 (sched_finish, fix_tick_ready, haifa_init_insn): Update accordingly.
7422 * sched-deps.c (init_insn_reg_pressure_info): Likewise.
7423 (sched_analyze_insn): Likewise.
7424 * sched-rgn.c (schedule_region): Likewise.
7425 * config/m68k/m68k.c (m68k_sched_variable_issue): Likewise.
7426
7427 2012-04-26 Bernd Schmidt <bernds@codesourcery.com>
7428
7429 * PR middle-end/52997
7430 * ira.c (find_moveable_pseudos): Call resize_reg_info.
7431
7432 PR middle-end/52940
7433 * machmode.h (CLASS_HAS_WIDER_MODES_P): True for MODE_PARTIAL_INT.
7434 * expr.c (convert_move): Honor unsignedp when extending partial int
7435 modes.
7436 * genmodes.c (complete_mode): Don't clear component field of partial
7437 int modes.
7438 (emit_mode_inner): Don't emit it however.
7439 (calc_wider_mode): Partial int modes widen to their component.
7440
7441 2012-04-26 David S. Miller <davem@davemloft.net>
7442
7443 * config/sparc/niagara4.md: New file.
7444 * config/sparc/sparc.md: Include it.
7445 * config/sparc/sparc.c (niagara4_costs): New processor costs.
7446 (sparc_option_override): Use it.
7447 (sparc_use_sched_lookahead): Return 2 for niagara4.
7448 (sparc_issue_rate): Likewise.
7449
7450 * config/sparc/sparc.md (attr type): Delete 'fgm_cmp'.
7451 (fpack16_vis, fpackfix_vis, fpack32_vis): Set type to fgm_pack.
7452 (fmul8x16_vis, fmul8x16au_vis, fmul8x16al_vis, fmul8sux16_vis,
7453 fmul8ulx16_vis, fmuld8sux16_vis, fmuld8ulx16_vis): Set type to fgm_mul.
7454 (alignaddrsi_vis, alignaddrdi_vis, alignaddrlsi_vis,
7455 alignaddrldi_vis): Set type to gsr.
7456 (pdist_vis, pdistn<mode>_vis): Set type to fgm_pdsit.
7457 (fcmp<code><GCM:gcm_name><P:mode>_vis, cmask8<P:mode>_vis,
7458 cmask16<P:mode>_vis, cmask32<P:mode>_vis, fchksm16_vis,
7459 v<vis3_shift_patname><mode>3, fmean16_vis,
7460 fp<plusminus_insn>64_vis, <vis3_addsub_ss_patname><mode>3,
7461 fucmp<code>8<P:mode>_vis): Set type to fga.
7462 * config/sparc/ultra1_2.md: Remove refrences to fgm_cmp.
7463 * config/sparc/niagara.md: Likewise.
7464 * config/sparc/niagara2.md: Likewise.
7465 * config/sparc/ultra3.md: Likewise, and fix type matching for
7466 us3_ialuX reservation.
7467
7468 2012-04-26 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
7469
7470 * reload.c (find_reloads): Change the loop nesting when trying an
7471 alternative with swapped operands.
7472
7473 2012-04-26 Manuel López-Ibáñez <manu@gcc.gnu.org>
7474
7475 * tree-diagnostic.c (maybe_unwind_expanded_macro_loc): Fix
7476 comment. Delete unused parameter first_exp_point_map.
7477 (virt_loc_aware_diagnostic_finalizer): Update call.
7478
7479 2012-04-26 Michael Hope <michael.hope@linaro.org>
7480 Richard Earnshaw <rearnsha@arm.com>
7481
7482 * config/arm/linux-eabi.h (GLIBC_DYNAMIC_LINKER_SOFT_FLOAT): Define.
7483 (GLIBC_DYNAMIC_LINKER_HARD_FLOAT): Define.
7484 (GLIBC_DYNAMIC_LINKER_DEFAULT): Define.
7485 (GLIBC_DYNAMIC_LINKER): Redefine to use the hard float path.
7486
7487 2012-04-25 Sriraman Tallam <tmsriram@google.com>
7488
7489 * doc/extend.texi: Document avx2 support.
7490 * config/i386/i386.c (fold_builtin_cpu): Add avx2.
7491
7492 2012-04-26 Hans-Peter Nilsson <hp@axis.com>
7493
7494 PR target/53120
7495 * config/cris/cris.md ("*andhi_lowpart_v32")
7496 ("*andqi_lowpart_v32"): Change first input-only operand from
7497 a (match_operand ...) to (match_dup 0). Drop alternatives with
7498 const_int-matching constraints for redundancy.
7499 ("*andhi_lowpart_non_v32", "*andqi_lowpart_non_v32"): Ditto. Drop
7500 three-operand alternative.
7501
7502 2012-04-25 Jakub Jelinek <jakub@redhat.com>
7503
7504 PR target/53110
7505 * config/i386/i386.md (and<mode>3): For andq $0xffffffff, reg
7506 instead expand it as zero extension.
7507
7508 2012-04-25 H.J. Lu <hongjiu.lu@intel.com>
7509
7510 PR debug/52857
7511 * dwarf2out.c (dbx_reg_number): Assert return value != INVALID_REGNUM.
7512
7513 2012-04-25 Jakub Jelinek <jakub@redhat.com>
7514
7515 * common.opt (flag_debug_types_section): Default to 0.
7516 (dwarf_version): Default to 4.
7517 (dwarf_record_gcc_switches): Default to 1.
7518 (dwarf_strict): Default to 0.
7519 * toplev.c (process_options): Don't handle dwarf_strict
7520 or dwarf_version here.
7521 * config/vxworks.c (vxworks_override_options): Don't
7522 test whether dwarf_strict or dwarf_version are negative,
7523 instead test !global_options_set.x_dwarf_*.
7524 * config/darwin.c (darwin_override_options): Default to
7525 dwarf_version 2.
7526 * doc/invoke.texi: Note that -gdwarf-4, -grecord-gcc-switches
7527 and -fno-debug-types-section are now the default.
7528
7529 2012-04-25 Jan Hubicka <jh@suse.cz>
7530
7531 * cgraphunit.c: Update toplevel comment.
7532 (tree_rest_of_compilation): Merge into cgraph_expand_function.
7533 (cgraph_analyze_function): Make static.
7534 (cgraph_decide_is_function_needed): Make static.
7535 (cgraph_add_new_function): Use expand_function instead of
7536 rest_of_compilation.
7537 (clone_of_p, verify_edge_count_and_frequency, cgraph_debug_gimple_stmt,
7538 verify_edge_corresponds_to_fndecl, verify_cgraph_node, verify_cgraph):
7539 Move to cgraph.c
7540 (cgraph_inline_p): Remove.
7541 (cgraph_preserve_function_body_p): Move to ipa-inline-transform.
7542 (init_cgraph): Add comment.
7543 * cgraphbuild.c (record_reference, mark_address, mark_load,
7544 mark_store): Do not call analyze_expr hook.
7545 * cgraph.c: Update toplevel comment.
7546 (clone_of_p, verify_edge_count_and_frequency, cgraph_debug_gimple_stmt,
7547 verify_edge_corresponds_to_fndecl, verify_cgraph_node, verify_cgraph):
7548 Move fere from cgraphunit.c
7549 (cgraph_mark_force_output_node): Move to cgraph.h
7550 * cgraph.h: Reorder so the comments match the function placement.
7551 (cgraph_analyze_function, cgraph_decide_is_function_needed): Remove.
7552 (cgraph_mark_force_output_node): Move here from cgraph.c
7553 * tree.c (free_lang_data): Do not clear analyze_expr hook.
7554 * ipa-inline-transform.c (preserve_function_body_p): New function.
7555 (inline_transform): Update.
7556 * langhooks.c (lhd_callgraph_analyze_expr): Remove.
7557 * langhooks.h (lang_hooks_for_callgraph): Remove.
7558 (lang_hooks): Remove callgraph.
7559 * tree-inline.c (expand_call_inline): Do not use cgraph_inline_p.
7560 * varpool.c: Remove out of date comment.
7561 * langhooks-def.h (lhd_callgraph_analyze_expr): Remove.
7562 (LANG_HOOKS_CALLGRAPH_ANALYZE_EXPR): Remove.
7563
7564 2012-04-25 Jan Hubicka <jh@suse.cz>
7565
7566 PR middle-end/53089
7567 * cgraphunit.c (referred_to_p): Move ahead in file to avoid
7568 forward declaration.
7569 (cgraph_finalize_function): Finalize them here.
7570 * symtab.c (dump_symtab): Dump ctors and dtors.
7571
7572 2012-04-25 Jakub Jelinek <jakub@redhat.com>
7573
7574 PR middle-end/52979
7575 * stor-layout.c (get_best_mode): Don't return mode with bitsize
7576 larger than maxbits. Don't compute maxbits modulo align.
7577 Also check that unit bytes long store at bitpos / unit * unit
7578 doesn't affect bits beyond bitregion_end.
7579 * expmed.c (store_bit_field_1): Avoid trying insv if OP_MODE MEM
7580 would not fit into bitregion_start ... bitregion_end + 1 bit region.
7581 (store_split_bit_field): Decrease unit close to end of bitregion_end
7582 if access is restricted in order to avoid mutual recursion.
7583
7584 PR tree-optimization/53058
7585 * double-int.h (double_int_max_value, double_int_min_value): New
7586 prototypes.
7587 * double-int.c (double_int_max_value, double_int_min_value): New
7588 functions.
7589 * tree-vrp.c (register_edge_assert_for_2): Compare mask for LE_EXPR
7590 or GT_EXPR with double_int_max_value instead of double_int_mask.
7591
7592 2012-04-25 Richard Guenther <rguenther@suse.de>
7593
7594 * tree-vectorizer.h (vect_loop_versioning): Adjust prototype.
7595 * tree-vect-loop.c (vect_transform_loop): Adjust.
7596 * tree-vect-loop-manip.c (vect_do_peeling_for_loop_bound): Record
7597 the maximum number of iterations for the epilogue loop.
7598 (vect_loop_versioning): Remove case re-using the peeled epilogue loop.
7599
7600 2012-04-25 Jakub Jelinek <jakub@redhat.com>
7601
7602 PR c/52880
7603 * c-typeck.c (set_nonincremental_init,
7604 set_nonincremental_init_from_string): Pass true instead of false
7605 as IMPLICIT to add_pending_init.
7606
7607 2012-04-25 Manuel López-Ibáñez <manu@gcc.gnu.org>
7608
7609 * c-typeck.c (pop_init_level): Improve diagnostics.
7610
7611 2012-04-25 Uros Bizjak <ubizjak@gmail.com>
7612
7613 * compare-elim.c (try_eliminate_compare): Also handle operands with
7614 implicit extensions.
7615
7616 2012-04-25 Alan Modra <amodra@gmail.com>
7617
7618 * config/rs6000/rs6000 (SAVE_INLINE_VRS, REST_INLINE_VRS,
7619 V_SAVE_INLINE, SAVRES_LR, SAVRES_SAVE, SAVRES_REG,
7620 SAVRES_GPR, SAVRES_FPR, SAVRES_VR): Define.
7621 (no_global_regs_above): Delete.
7622 (no_global_regs): New function.
7623 (rs6000_savres_strategy): Handle vector regs. Use proper lr_save_p
7624 value for load multiple test.
7625 (savres_routine_syms): Increase size.
7626 (rs6000_savres_routine_name, rs6000_savres_routine_sym,
7627 ptr_regno_for_savres, rs6000_emit_savres_rtx): Pass in int selector
7628 rather than a number of boolean flags. Update all callers.
7629 (rs6000_savres_routine_name): Generate vector save/restore names.
7630 (rs6000_savres_routine_sym): Handle vector regs. Delete forward decl.
7631 (ptr_regno_for_savres, rs6000_emit_savres_rtx): Likewise.
7632 (rs6000_emit_prologue): Delete saving_FPRs_inline, saving_GPRs_inline
7633 and using_store_multiple. Expand uses. Don't always use r11 as
7634 frame reg when needed for out-of-line saves. Set up initial offset
7635 for out-of-line vector saves when buying stack frame. Handle pointer
7636 reg setup for out-of-line fp save. Emit call to out-of-line vector
7637 save function. Choose r11 or r12 for vrsave reg when available for
7638 better scheduling.
7639 (rs6000_output_function_prologue): Don't emit .extern for ELF.
7640 (rs6000_emit_epilogue): Choose a better frame reg when restoring
7641 from back-chain to suit out-of-line vector restore functions. Emit
7642 call to out-of-line vector restore function. Adjust register used
7643 for cr restore. Tweak pointer register setup for gpr restore.
7644 * config/rs6000/rs6000.h (FIRST_SAVED_GP_REGNO): Take into account
7645 FIXED_R13.
7646 * config/rs6000/sysv4.h (FP_SAVE_INLINE, GP_SAVE_INLINE): Simplify.
7647 (V_SAVE_INLINE): Define.
7648 * config/rs6000/altivec.md (save_vregs_*, restore_vregs_*): New insns.
7649
7650 2012-04-25 Alan Modra <amodra@gmail.com>
7651
7652 * config/rs6000/rs6000.c (rs6000_savres_strategy): Allow
7653 out-of-line save/restore for large frames. Don't disable
7654 out-of-line saves on ABI_AIX when using static chain reg.
7655 (rs6000_emit_prologue): Adjust cr_save_regno on ABI_AIX to not
7656 clobber static chain reg, and tweak for out-of-line gpr saves
7657 that use r1.
7658
7659 2012-04-25 Alan Modra <amodra@gmail.com>
7660
7661 * config/rs6000/rs6000.c (START_USE, END_USE, NOT_INUSE): Define.
7662 (rs6000_emit_prologue): Use the above to catch register overlap.
7663
7664 2012-04-25 Alan Modra <amodra@gmail.com>
7665
7666 * config/rs6000/rs6000.c (rs6000_emit_stack_reset): Delete forward
7667 decl. Move logic selecting update reg to callers. Update all callers.
7668 (rs6000_emit_allocate_stack): Add copy_off param.
7669 (emit_frame_save): Don't handle reg+reg addressing.
7670 (ptr_regno_for_savres): New function, extracted from..
7671 (rs6000_emit_savres_rtx): ..here. Add lr_offset param.
7672 (rs6000_emit_prologue): Generate frame_ptr_rtx as we need it.
7673 Set frame_reg_rtx to r11 whenever r11 is needed, and merge
7674 frame offset adjustment for out-of-line save with copy from sp.
7675 Simplify condition controlling whether cr is saved early or
7676 late. Use ptr_regno_for_savres to verify correct reg is set
7677 up for out-of-line saves. Pass the actual pointer reg used to
7678 rs6000_emit_savres_rtx so rtl matches insns in out-of-line
7679 function. Rearrange spe vars so code is similar to that
7680 elsewhere in this function. Don't update frame_off when spe
7681 save code will restore r11. Use emit_frame_save for spe and
7682 gpr saves. Consolidate darwin out-of-line gpr setup with that
7683 for other abis. Don't assume frame_offset is zero and frame
7684 reg is sp when setting up altivec reg saves, and calculate
7685 exact offset requirement.
7686 (rs6000_emit_epilogue): Use HOST_WIDE_INT for frame_off. Tidy
7687 spe restore code. Consolidate darwin out-of-line gpr setup
7688 with that for other abis.
7689
7690 2012-04-25 Alan Modra <amodra@gmail.com>
7691
7692 * config/rs6000/rs6000.c (rs6000_frame_related): Don't emit a
7693 REG_FRAME_RELATED_EXPR note when the instruction exactly matches
7694 the replacement.
7695 (emit_frame_save): Delete frame_ptr param. Rename total_size to
7696 frame_reg_to_sp.
7697 (rs6000_emit_prologue): Add sp_off. Update rs6000_frame_related
7698 and emit_frame_save calls. Cope with possibly missing note.
7699
7700 2012-04-24 Sriraman Tallam <tmsriram@google.com>
7701
7702 * config/i386/i386.c (build_processor_model_struct): New function.
7703 (make_var_decl): New function.
7704 (fold_builtin_cpu): New function.
7705 (ix86_fold_builtin): New function.
7706 (make_cpu_type_builtin): New function.
7707 (ix86_init_platform_type_builtins): New function.
7708 (ix86_expand_builtin): Expand new builtins by folding them.
7709 (ix86_init_builtins): Make new builtins to detect CPU type.
7710 (TARGET_FOLD_BUILTIN): New macro.
7711 (IX86_BUILTIN_CPU_INIT): New enum value.
7712 (IX86_BUILTIN_CPU_IS): New enum value.
7713 (IX86_BUILTIN_CPU_SUPPORTS): New enum value.
7714 * config/i386/i386-builtin-types.def: New function type.
7715 * testsuite/gcc.target/builtin_target.c: New testcase.
7716 * doc/extend.texi: Document builtins.
7717
7718 2012-04-24 Olivier Hainque <hainque@adacore.com>
7719
7720 * common.opt (gdwarf-): Initialize dwarf_version to -1 instead of 2.
7721 * toplev.c (process_options): Default to dwarf_version 2.
7722 * config/vxworks.c (vxworks_override_options): Default to strict-dwarf
7723 and dwarf_version 2.
7724
7725 2012-04-24 Manuel López-Ibáñez <manu@gcc.gnu.org>
7726
7727 * tree-pretty-print.h (default_tree_printer): Do not declare.
7728 * tree-diagnostic.c: Include tree-pretty-print.h, tree-pass.h and
7729 intl.h.
7730 (default_tree_diagnostic_starter): Make static.
7731 (default_tree_printer): Move to here. Make static.
7732 (tree_diagnostics_defaults): New.
7733 * tree-diagnostic.h (default_tree_diagnostic_starter): Do not declare.
7734 * tree.c (free_lang_data): Use tree_diagnostics_defaults.
7735 * toplev.c: Do not include tree-pass.h.
7736 (default_tree_printer): Move from here.
7737 (general_init): Use tree_diagnostics_defaults.
7738
7739 2012-04-24 Chao-ying Fu <fu@mips.com>
7740
7741 * config.gcc (mips64*-*-linux*): Append mips/linux-common.h to tm_file.
7742 (mips*-*-linux*): Append mips/linux-common.h to tm_file.
7743 * config/mips/gnu-user.h
7744 (SUBTARGET_CC1_SPEC): Use GNU_USER_TARGET_CC1_SPEC directly.
7745 (GNU_USER_TARGET_LINK_SPEC): New define.
7746 (LINK_SPEC): Use GNU_USER_TARGET_LINK_SPEC.
7747 (LIB_SPEC): Use GNU_USER_TARGET_LIB_SPEC directly.
7748 (GNU_USER_TARGET_MATHFILE_SPEC): New define.
7749 (ENDFILE_SPEC): Use GNU_USER_TARGET_MATHFILE_SPEC and
7750 GNU_USER_TARGET_ENDFILE_SPEC.
7751 * config/mips/gnu-user64.h (LIB_SPEC): Remove.
7752 (GNU_USER_TARGET_LINK_SPEC): New define.
7753 (LINK_SPEC): Use GNU_USER_TARGET_LINK_SPEC.
7754 * config/mips/linux-common.h: New file.
7755
7756 2012-04-24 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
7757
7758 PR target/47197
7759 * config/rs6000/rs6000-c.c (fully_fold_convert): New function.
7760 (altivec_build_resolved_builtin): Call fully_fold_convert.
7761
7762 2012-04-24 Georg-Johann Lay <avr@gjlay.de>
7763
7764 PR target/53065
7765 * config/avr/avr.h (HARD_REGNO_CALL_PART_CLOBBERED): New hook define.
7766
7767 2012-04-24 Richard Guenther <rguenther@suse.de>
7768
7769 PR tree-optimization/53085
7770 * tree-ssa-pre.c (eliminate): Do not eliminate volatile redundant
7771 stores.
7772
7773 2012-04-24 Richard Guenther <rguenther@suse.de>
7774
7775 * tree-if-conv.c (main_tree_if_conversion): Move bb under
7776 ENABLE_CHECKING.
7777
7778 2012-04-24 Jim Meyering <meyering@redhat.com>
7779
7780 * genattrtab.c (gen_attr): Avoid NULL-deref after diagnosing
7781 absence of an define_enum call.
7782
7783 2012-04-24 Richard Guenther <rguenther@suse.de>
7784
7785 * tree-vect-loop-manip.c (vect_do_peeling_for_loop_bound): If
7786 the epilogue loop is not re-used as unvectorized version
7787 record the its maximum number of iterations.
7788
7789 2012-04-24 Andrew Pinski <apinski@cavium.com>
7790
7791 * tree-ssa-forwprop.c (simplify_bitwise_binary):
7792 Don't directly use def1/def2.
7793
7794 2012-04-24 Richard Guenther <rguenther@suse.de>
7795
7796 PR tree-optimization/53098
7797 * tree-vect-loop.c (vect_analyze_loop_operations): Fixup
7798 comparison sign.
7799
7800 2012-04-24 Andrew Pinski <apinski@cavium.com>
7801
7802 PR tree-opt/33512
7803 * tree-ssa-forwprop.c (defcodefor_name): New function.
7804 (simplify_bitwise_binary): Use defcodefor_name instead of manually
7805 Simplify "( X | Y) & X" to X and "( X & Y) | X" to X.
7806 Simplify "(~X | Y) & X" to "X & Y" and
7807 "(~X & Y) | X" to "X | Y".
7808
7809 2012-04-24 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
7810
7811 * recog.c (insn_invalid_p): Add IN_GROUP parameter and use
7812 validate_change to add clobbers if IN_GROUP is nonzero.
7813 (verify_changes): Call insn_invalid_p with IN_GROUP set to true.
7814 * recog.h (insn_invalid_p): Add IN_GROUP parameter to function
7815 prototype.
7816 * gcse.c (process_insert_insn): Call insn_invalid_p with IN_GROUP
7817 set to false.
7818 * config/s390/s390.c (insn_invalid_p): Likewise.
7819
7820 2012-04-24 Jakub Jelinek <jakub@redhat.com>
7821
7822 PR middle-end/53084
7823 * varasm.c (compute_reloc_for_constant): Handle ADDR_EXPR of MEM_REF.
7824 (output_addressed_constants): Likewise.
7825
7826 PR middle-end/52999
7827 * varasm.c (get_section): Don't ICE for section conflicts with
7828 built-in section kinds.
7829
7830 2012-04-23 DJ Delorie <dj@redhat.com>
7831
7832 * config/s390/s390.h (LINK_SPEC): Remove, no longer needed.
7833 (LIBSTDCXX): Change to CPP2.
7834
7835 2012-04-23 H.J. Lu <hongjiu.lu@intel.com>
7836
7837 PR bootstrap/52878
7838 * opth-gen.awk: Check if MASK_ and TARGET_ macros are defined for
7839 extra_masks.
7840
7841 2012-04-23 Uros Bizjak <ubizjak@gmail.com>
7842
7843 * config/i386/i386.md (*add<mode>_2): Add r/r/0 alternative.
7844 (*addsi_2_zext): Ditto.
7845 (*add<mode>_3): Ditto.
7846 (*addsi_3_zext): Ditto.
7847 (*add<mode>_5): Ditto.
7848
7849 2012-04-23 Andrew Pinski <apinski@cavium.com>
7850
7851 * tree-ssa-forwprop.c (simplify_bitwise_binary): Simplify (A & B) OP0
7852 (C & B) to (A OP0) & B.
7853
7854 2012-04-23 Martin Jambor <mjambor@suse.cz>
7855
7856 * expr.c (expand_expr_real_1): Remove setting parent's alias set for
7857 temporaries created for a bitfield (reverting revision 122014).
7858
7859 2012-04-23 Richard Guenther <rguenther@suse.de>
7860
7861 * tree-vect-loop-manip.c (slpeel_add_loop_guard): Gimplify
7862 the condition using is_gimple_condexpr and avoid the not necessary
7863 boolification.
7864 (set_prologue_iterations): Likewise.
7865 (vect_loop_versioning): Likewise.
7866
7867 2012-04-23 Richard Guenther <rguenther@suse.de>
7868
7869 PR tree-optimization/53070
7870 * tree-if-conv.c (combine_blocks): Free predicates in all blocks.
7871 (main_tree_if_conversion): Verify we succeeded in that.
7872
7873 2012-04-23 Jan Hubicka <jh@suse.cz>
7874
7875 * lto-symtab.c (lto_cgraph_replace_node): Do not call
7876 mark_reahcable_node.
7877 * cgraph.c (cgraph_remove_node): Do not clear reachable.
7878 (cgraph_mark_reachable_node): Remove.
7879 (cgraph_mark_force_output_node): Do not set reachable.
7880 (dump_cgraph_node): Do not dump reachable.
7881 (cgraph_create_virtual_clone): Do not set reachable.
7882 * cgraph.h (cgraph_node): Remove reachable flag.
7883 (varpool_node): Remove reachable flag.
7884 (cgraph_mark_if_needed): Remove.
7885 (cgraph_mark_reachable_node): Remove.
7886 * tree-emutls.c (ipa_lower_emutls): Do not check reachable.
7887 * cgraphunit.c (cgraph_finalize_function): Do not mark node as
7888 reachable.
7889 (cgraph_add_new_function): Likewise.
7890 (cgraph_mark_if_needed): Remove.
7891 (cgraph_analyze_function): Do not set target as reachable.
7892 (process_function_and_variable_attributes): Do not care about
7893 dllexport.
7894 (cgraph_analyze_functions): Do not set reachable flags.
7895 (cgraph_mark_functions_to_output): Do not check reachability.
7896 (cgraph_copy_node_for_versioning): Do not set reachable flag.
7897 (dbxout_expand_expr): Update.
7898 * c-decl.c (merge_decls): Do not track changed externs.
7899 * ipa.c: Include pointer-set.h
7900 (enqueue_cgraph_node): Use reachable pointer set.
7901 (process_references): Likewise.
7902 (cgraph_remove_unreachable_nodes): Likewise.
7903 (whole_program_function_and_variable_visibility): Do not recompute
7904 reachable.
7905 * trans-mem.c (ipa_tm_execute): Do not check reachable flag.
7906
7907 2012-04-23 Georg-Johann Lay <avr@gjlay.de>
7908
7909 * doc/extend.texi (AVR Named Address Spaces): Fix typos.
7910
7911 2012-04-23 Richard Guenther <rguenther@suse.de>
7912
7913 PR c/53060
7914 * c-typeck.c (build_binary_op): Fix typo.
7915
7916 2012-04-23 Jakub Jelinek <jakub@redhat.com>
7917
7918 PR tree-optimizations/52891
7919 * tree-vect-patterns.c (adjust_bool_pattern): Use
7920 build_nonstandard_type even if rhs1 has unsigned INTEGER_TYPE,
7921 but with non-standard precision.
7922
7923 2012-04-22 Jan Hubicka <jh@suse.cz>
7924
7925 * tree-ssa-loop-ivopts.c (expr_invariant_in_loop_p): Bail out at NULL
7926 tree refs.
7927
7928 2012-04-22 Jan Hubicka <jh@suse.cz>
7929
7930 * lto-symtab.c (lto_varpool_replace_node): Do not merge needed flags.
7931 * cgraphbuild.c (record_reference, record_type_list, mark_address,
7932 mark_load, mark_store): Do not mark varpool nodes as needed.
7933 * cgraph.c (cgraph_new_nodes): Remove.
7934 (cgraph_create_function_alias): Do not mark nodes as reachable.
7935 (cgraph_add_thunk): Likewise.
7936 (cgraph_mark_reachable_node): Do not manage the queue.
7937 * cgraph.h (cgraph_node): Remove next_needed.
7938 (varpool_nodes_queue): Remove next_needed and prev_needed.
7939 (x_cgraph_nodes_queue, x_cgraph_nodes_queue, cgraph_new_nodes): Remove.
7940 (cgraph_new_nodes): Declare.
7941 (x_varpool_nodes_queue, varpool_nodes_queue); Remove.
7942 (varpool_analyze_pending_decls): Remove.
7943 (varpool_analyze_node): New.
7944 (varpool_mark_needed_node): Remove.
7945 (varpool_first_variable, varpool_next_variable): New inlines.
7946 (varpool_first_static_initializer, varpool_next_static_initializer):
7947 Update.
7948 (FOR_EACH_STATIC_VARIABLE): Remove unused walker.
7949 (varpool_first_defined_variable): New inline.
7950 (varpool_next_defined_variable): New inline
7951 (FOR_EACH_VARIABLE): Reimplement.
7952 (FOR_EACH_DEFINED_VARIABLE): Reimplement.
7953 * toplev.c (wrapup_global_declaration_2): Use analyzed instead of
7954 needed flag.
7955 * cgraphunit.c (cgraph_new_nodes): Declare here.
7956 (enqueue_node): New function.
7957 (cgraph_process_new_functions): update for new
7958 node set; when constructing cgraph enqueue node for processing.
7959 (cgraph_add_new_function): Use new node set.
7960 (process_function_and_variable_attributes): Do not set varpool needed
7961 flags.
7962 (referred_to_p): New function.
7963 (varpool_finalize_decl): Move here from varpool.c; enqueue needed node
7964 when varpool is in construction.
7965 (cgraph_analyze_functions): Rewrite.
7966 (cgraph_expand_all_functions): Update.
7967 (cgraph_output_in_order): Do not analyze pending decls; do not set
7968 needed flags.
7969 (cgraph_optimize): Do not analyze pending decls.
7970 * lto-cgraph.c (input_varpool_node): Clear analyzed flag for objects
7971 in other partition; do not mark node as needed.
7972 * dwarf2out.c (reference_to_unused): Use analyzed flag.
7973 (premark_types_used_by_global_vars_helper): Likewise.
7974 * ipa.c (process_references): Do not call varpool_mark_needed_node.
7975 (cgraph_remove_unreachable_nodes): Do not rely on varpool and
7976 cgrpah queues.
7977 (function_and_variable_visibility): Do not mark node as needed.
7978 (whole_program_function_and_variable_visibility): Likewise.
7979 * Makefile.in (gt-varpool.h): No longer needed.
7980 * passes.c (execute_one_pass, execute_ipa_pass_list): Update.
7981 (ipa_write_summaries): Do not use needed flag.
7982 * varpool.c: Do not include gt-varpool.h
7983 (x_varpool_nodes_queue, x_varpool_last_needed_node,
7984 x_varpool_last_needed_node, x_varpool_first_unanalyzed_node,
7985 x_varpool_first_unanalyzed_node, varpool_assembled_nodes_queue):
7986 Remove.
7987 (varpool_remove_node): Do not update the lists.
7988 (dump_varpool_node): Do not dump needed flag.
7989 (varpool_enqueue_needed_node): Remove.
7990 (varpool_mark_needed_node): Remove.
7991 (varpool_reset_queue): Remove.
7992 (varpool_finalize_decl): Move to cgraphunit.c
7993 (varpool_analyze_node): New functions based on former
7994 varpool_analyze_pending_decls.
7995 (varpool_analyze_pending_decls): Remove.
7996 (varpool_assemble_decl): Do not update the lists.
7997 (enqueue_node): New function.
7998 (varpool_remove_unreferenced_decls): Rewrite.
7999 (varpool_empty_needed_queue): Remove.
8000 (add_new_static_var): Do not mark node as needed.
8001 (varpool_create_variable_alias): Handle expansion state
8002 creation.
8003 * except.c (output_ttype): Do not mark node as needed.
8004 * varasm.c (mark_decl_referenced): Do not use mark_needed_node.
8005 * tree-profile.c (init_ic_make_global_vars, init_ic_make_global_vars):
8006 Likewise.
8007 * tree-switch-conversion.c (build_one_array): Likewise.
8008
8009 2012-04-22 Manuel López-Ibáñez <manu@gcc.gnu.org>
8010
8011 PR c/44774
8012 * doc/invoke.texi (pedantic): Rename to Wpedantic.
8013 * common.opt (Wpedantic): New.
8014 (pedantic): Alias Wpedantic.
8015 * diagnostic.c (warning_at): Likewise.
8016 * c-decl.c (diagnose_mismatched_decls): Likewise.
8017 (build_array_declarator): Likewise.
8018 (mark_forward_parm_decls):
8019 (check_bitfield_type_and_width): Likewise.
8020 (grokdeclarator): Likewise.
8021 (grokfield): Likewise.
8022 (finish_struct): Likewise.
8023 (build_enumerator): Likewise.
8024 (store_parm_decls_oldstyle): Likewise.
8025 (declspecs_add_qual): Likewise.
8026 (declspecs_add_type): Likewise.
8027 (finish_declspecs): Likewise.
8028 * c-typeck.c (composite_type): Likewise.
8029 (comp_target_types): Likewise.
8030 (build_array_ref): Likewise.
8031 (pointer_diff): Likewise.
8032 (build_unary_op): Likewise.
8033 (build_conditional_expr): Likewise.
8034 (build_c_cast): Likewise.
8035 (convert_for_assignment): Likewise.
8036 (maybe_warn_string_init): Likewise.
8037 (digest_init): Likewise.
8038 (pop_init_level): Likewise.
8039 (set_init_index): Likewise.
8040 (c_finish_goto_label): Likewise.
8041 (c_finish_return): Likewise.
8042 (do_case): Likewise.
8043 (build_binary_op): Likewise.
8044 * c-parser.c (static): Likewise.
8045 (c_parser_external_declaration): Likewise.
8046 (c_parser_declaration_or_fndef): Likewise.
8047 (c_parser_static_assert_declaration_no_se): Likewise.
8048 (c_parser_enum_specifier): Likewise.
8049 (c_parser_struct_or_union_specifier): Likewise.
8050 (c_parser_struct_declaration): Likewise.
8051 (c_parser_alignas_specifier): Likewise.
8052 (c_parser_braced_init): Likewise.
8053 (c_parser_initelt): Likewise.
8054 (c_parser_compound_statement_nostart): Likewise.
8055 (c_parser_conditional_expression): Likewise.
8056 (c_parser_alignof_expression): Likewise.
8057 (c_parser_postfix_expression): Likewise.
8058 (c_parser_postfix_expression_after_paren_): Likewise.
8059 (c_parser_objc_class_instance_variables): Likewise.
8060 (c_parser_objc_method_definition): Likewise.
8061 (c_parser_objc_methodprotolist): Likewise.
8062
8063 2012-04-22 Ian Lance Taylor <iant@google.com>
8064
8065 * godump.c (go_output_typedef): Dump size of structs.
8066
8067 2012-04-22 Razya Ladelsky <razya@il.ibm.com>
8068
8069 Correcting transform_to_exit_first_loop + fix to PR46886
8070 * tree-parloops.c (transform_to_exit_first_loop): Remove
8071 setting of number of iterations according to the loop pattern.
8072 Duplicate from entry to exit->src instead of loop->latch.
8073 (pallelize_loops): Remove the condition preventing do-while loops.
8074 * tree-cfg.c (bool bb_in_region_p): New.
8075 (gimple_duplicate_sese_tail): Adjust duplication of the the subloops.
8076 Adjust redirection of the duplicated iteration.
8077
8078 2012-04-21 Richard Sandiford <rdsandiford@googlemail.com>
8079
8080 PR bootstrap/53021
8081 * rtl.def (ADDRESS): Use "i" rather than "w".
8082 * rtl.h (find_base_term): Delete.
8083 (may_be_sp_based_p): Declare.
8084 * rtl.c (rtx_code_size): Remove ADDRESS special case.
8085 * alias.h (UNIQUE_BASE_VALUE_SP, UNIQUE_BASE_VALUE_ARGP)
8086 (UNIQUE_BASE_VALUE_FP, UNIQUE_BASE_VALUE_HFP): Move to...
8087 * alias.c: ...here.
8088 (find_base_term): Make static.
8089 (may_be_sp_based_p): New function.
8090 * dse.c (record_store): Use it.
8091 * store-motion.c (store_killed_in_insn): Likewise.
8092
8093 2012-04-21 Richard Sandiford <rdsandiford@googlemail.com>
8094
8095 * fold-const.c (fold_checksum_tree): Fix VECTOR_CST case.
8096
8097 2012-04-21 Manuel López-Ibáñez <manu@gcc.gnu.org>
8098
8099 PR 35441
8100 * c-typeck.c (inform_declaration): New.
8101 (build_function_call_vec): Do not pretty-print
8102 expressions when caret is enabled.
8103 (convert_arguments): Use inform_declaration.
8104
8105 2012-04-20 Jim Meyering <meyering@redhat.com>
8106
8107 * genmodes.c (make_complex_modes): Don't truncate a mode name of
8108 length 7 or more when prepending a "C". Suggested by Richard Guenther.
8109
8110 2012-04-20 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
8111
8112 PR rtl-optimization/44214
8113 * fold-const.c (exact_inverse): New function.
8114 (fold_binary_loc): Fold vector and complex division by constant into
8115 multiply by recripocal with flag_reciprocal_math; fold vector division
8116 by constant into multiply by reciprocal with exact inverse.
8117
8118 2012-04-20 Jan Hubicka <jh@suse.cz>
8119
8120 * lto-symtab.c (lto_cgraph_replace_node): Merge needed instead of
8121 force flags.
8122 * cgraph.c (cgraph_add_thunk): Use mark_reachable_node.
8123 (cgraph_remove_node): Update.
8124 (cgraph_mark_needed_node): Remove.
8125 (cgraph_mark_force_output_node): New.
8126 (dump_cgraph_node): Do not dump needed flag.
8127 (cgraph_node_cannot_be_local_p_1): Update.
8128 (cgraph_can_remove_if_no_direct_calls_and_refs): Update.
8129 * cgraph.h (symtab_node_base): Add force_output flag.
8130 (cgraph_node): Remove needed flag.
8131 (varpool_node): Remove force_output flag.
8132 (cgraph_mark_needed_node): Remove.
8133 (cgraph_mark_force_output_node): New.
8134 (cgraph_only_called_directly_or_aliased_p,
8135 varpool_can_remove_if_no_refs, varpool_all_refs_explicit_p): Update.
8136 * ipa-cp.c (ipcp_generate_summary): Remove out of date assert.
8137 * cgraphunit.c (cgraph_decide_is_function_needed): rewrite.
8138 (cgraph_add_new_function): Update.
8139 (cgraph_mark_if_needed): Update.
8140 (verify_cgraph_node): Update.
8141 (cgraph_analyze_function): Alias target is reachable.
8142 (process_function_and_variable_attributes): Update: externally_visible
8143 flag makes function reachable.
8144 (cgraph_analyze_functions): Update dumping.
8145 * lto-cgraph.c (lto_output_node, lto_output_varpool_node,
8146 input_overwrite_node, input_varpool_node): Update streaming.
8147 * lto-streamer-out.c (produce_symtab): Use force_output.
8148 * ipa.c (process_references): Weakrefs must be processed.
8149 (cgraph_remove_unreachable_nodes): Likewise; update for new
8150 force_output flag.
8151 (varpool_externally_visible_p): Weakrefs are externally visible
8152 even if they are not.
8153 (function_and_variable_visibility): Update; when processing alias
8154 pair force the targets to be output.
8155 (whole_program_function_and_variable_visility): Use
8156 mark_reachable_node.
8157 * trans-mem.c (ipa_tm_mark_needed_node): Remove
8158 (ipa_tm_mark_force_output_node): New function.
8159 (ipa_tm_create_version_alias, ipa_tm_create_version): Update.
8160 * gimple-fold.c (can_refer_decl_in_current_unit_p): Be lax about
8161 aliases.
8162 * varasm.c (mark_decl_referenced): Update.
8163 (find_decl_and_mark_needed): Remove.
8164 (find_decl): New function.
8165 (weak_finish, finish_aliases_1, assemble_alias): Update; do not mark
8166 alias targets as needed.
8167 (dump_tm_clone_pairs): Update.
8168 * tree-inline.c (copy_bb): Update check.
8169 * symtab.c (dump_symtab_base): Dump force_output.
8170 * tree-ssa-structalias.c (ipa_pta_execute): Use force_output.
8171 * passes.c (execute_todo): Fix dumping.
8172 * varpool.c (decide_is_variable_needed, varpool_finalize_decl): Update.
8173 (varpool_analyze_pending_decls): Alias target is reachable.
8174 (varpool_create_variable_alias): Finalize weakrefs.
8175
8176 2012-04-20 Jakub Jelinek <jakub@redhat.com>
8177
8178 PR bootstrap/53021
8179 * alias.h (UNIQUE_BASE_VALUE_SP, UNIQUE_BASE_VALUE_ARGP,
8180 UNIQUE_BASE_VALUE_FP, UNIQUE_BASE_VALUE_HFP): Define.
8181 * alias.c (init_alias_targets): Use UNIQUE_BASE_VALUE_*
8182 macros instead of constants.
8183 * dse.c (record_store): Check for SP ADDRESS by comparing
8184 XWINT to UNIQUE_BASE_VALUE_SP instead of expecting
8185 XEXP to be stack_pointer_rtx.
8186
8187 2012-04-20 Richard Guenther <rguenther@suse.de>
8188
8189 * tree-ssa-copy.c (propagate_tree_value_into_stmt): Use
8190 update_call_from_tree when propagating into a call.
8191
8192 2012-04-20 Alan Modra <amodra@gmail.com>
8193
8194 * config/rs6000/rs6000.c (rs6000_emit_savres_rtx): Formatting.
8195 (rs6000_emit_prologue, rs6000_emit_epilogue): Likewise. Rename
8196 sp_offset to frame_off. Move world save code earlier.
8197
8198 2012-04-20 Richard Guenther <rguenther@suse.de>
8199
8200 PR tree-optimization/53050
8201 * tree-ssa-forwprop.c (ssa_forward_propagate_and_combine):
8202 Do only one transform on COND_EXPRs at the same time.
8203
8204 2012-04-19 Jan Hubicka <jh@suse.cz>
8205
8206 * symtab.c (dump_symtab_base): Revert accidental checkin.
8207
8208 2012-04-20 Alan Modra <amodra@gmail.com>
8209
8210 PR target/53040
8211 * config/rs6000/rs6000.c (rs6000_savres_strategy): When using
8212 static chain, set REST_INLINE_FPRS too.
8213
8214 2012-04-20 Thomas Schwinge <thomas@codesourcery.com>
8215
8216 * tree-dump.c (dequeue_and_dump) <BIT_FIELD_REF>: Dump the three child
8217 nodes.
8218
8219 2012-04-20 Richard Guenther <rguenther@suse.de>
8220
8221 * tree-vect-loop.c (vect_analyze_loop_operations): Do not vectorize
8222 loops that can never run more often than the vectorization factor.
8223
8224 2012-04-19 Jan Hubicka <jh@suse.cz>
8225
8226 * symtab.c (dump_symtab_base): Fix dumping of asm lists.
8227
8228 2012-04-19 David Edelsohn <dje.gcc@gmail.com>
8229
8230 * config/rs6000/sync.md (fetchop_name): Change ior attribute to "or".
8231
8232 2012-04-19 Jim Meyering <meyering@redhat.com>
8233
8234 * genmodes.c (make_complex_modes): Avoid unnecessary use of strncpy.
8235 We verified above that the string(including trailing NUL) fits in buf,
8236 so just use memcpy.
8237
8238 2012-04-19 Richard Guenther <rguenther@suse.de>
8239
8240 * symtab.c (dump_symtab_base): Use TREE_STRING_POINTER
8241 for dumping DECL_SECTION_NAME.
8242
8243 2012-04-19 Michael Matz <matz@suse.de>
8244
8245 PR middle-end/52977
8246 * tree.h (VECTOR_CST_NELTS): Use part number of types again.
8247 (struct tree_vector): Adjust GTY length.
8248 * tree.c (make_vector_stat): Don't set VECTOR_CST_NELTS.
8249
8250 * gengtype.c (struct walk_type_data): Add in_record_p and loopcounter
8251 members.
8252 (walk_type, <TYPE_POINTER, TYPE_ARRAY>): Handle case where our
8253 caller emitted the length calulation already.
8254 (walk_type, <TYPE_UNION, TYPE_STRUCT>): Emit length calculations
8255 before handling any of the fields for structs.
8256
8257 2012-04-19 Richard Guenther <rguenther@suse.de>
8258
8259 PR tree-optimization/53031
8260 * tree-vrp.c (adjust_range_with_scev): Revert back to
8261 using max_loop_iterations.
8262
8263 2012-04-19 Michael Matz <matz@suse.de>
8264
8265 * diagnostic.c (emit_diagnostic): Move va_end call after user
8266 of the va_list.
8267 (warning, warning_at, pedwarn, permerror): Ditto.
8268
8269 2012-04-19 Richard Guenther <rguenther@suse.de>
8270
8271 * ira-int.h (ira_allocno_object_iter_cond): Avoid out-of-bound
8272 array access.
8273
8274 2012-04-19 Georg-Johann Lay <avr@gjlay.de>
8275
8276 PR target/53033
8277 * config/avr/avr.c (avr_out_load_psi): Fix assembler template for
8278 the case *(X+const).
8279
8280 2012-04-19 Ramana Radhakrishnan <ramana.radhakrishnan@linaro.org>
8281
8282 * config/arm/sync.md (sync_optab): Change ior attribute to "or".
8283
8284 2012-04-19 Manuel López-Ibáñez <manu@gcc.gnu.org>
8285
8286 PR c/52283/37985
8287 * stmt.c (warn_if_unused_value): Skip NOP_EXPR.
8288 * convert.c (convert_to_integer): Don't set TREE_NO_WARNING.
8289
8290 2012-04-19 Richard Guenther <rguenther@suse.de>
8291
8292 PR rtl-optimization/44688
8293 * loop-iv.c (determine_max_iter): Only return max_iter.
8294 (iv_number_of_iterations): Also use the recorded loop bound
8295 on the maximum number of iterations.
8296 * loop-unroll.c (decide_unroll_runtime_iterations): Use
8297 max_iter to avoid unrolling loops that do not roll.
8298 (decide_unroll_stupid): Likewise.
8299
8300 2012-04-18 Steven Bosscher <steven@gcc.gnu.org>
8301
8302 * targhooks.c (default_case_values_threshold): Fix code style nit.
8303
8304 * stmt.c (add_case_node, expand_case): Move logic to remove/reduce
8305 case range and type folding from here...
8306 * gimplify.c (gimplify_switch_expr): ... to here. Expect NULL_TREE
8307 type, as documented in tree.def.
8308
8309 2012-04-18 Jan Hubicka <jh@suse.cz>
8310
8311 * cgraph.h (verify_symtab, verify_symtab_node, verify_symtab_base):
8312 Declare.
8313 * cgraphunit.c (verify_cgraph_node): Verify symtab base; do not verify
8314 cgraph hash and same comdat groups.
8315 (cgraph_optimize): Verify symbol table.
8316 * ipa.c (cgraph_remove_unreachable_nodes): Verify symbol table.
8317 (dissolve_same_comdat_group_list): Work on symtab nodes.
8318 (function_and_variable_visibility): Dissolve variable same comdat group
8319 lists, too.
8320 * symtab.c: Include timevar.h
8321 (verify_symtab_base, verify_symtab_node, verify_symtab): New functions.
8322
8323 2012-04-18 Steven Bosscher <steven@gcc.gnu.org>
8324
8325 * tree-switch-conversion.c (info): Remove global pass info.
8326 (check_range, check_process_case, check_final_bb, create_temp_arrays,
8327 free_temp_arrays, gather_default_values, build_constructors,
8328 array_value_type, build_one_array, build_arrays, gen_def_assigns,
8329 fix_phi_nodes, gen_inbound_check): Pass info around from ...
8330 (process_switch): ... here. Unify message format. Return a const
8331 char pointer to the failure reason message.
8332 (do_switchconv): Unify message format. Update process_switch usage.
8333
8334 * tree.def (CASE_LABEL_EXPR): Fix documentation, mention all operands.
8335 * tree-cfg.c (edge_to_cases): Fix documentation.
8336
8337 2012-04-18 Uros Bizjak <ubizjak@gmail.com>
8338
8339 * config/alpha/sync.md (fetchop_name): Change ior attribute to "or".
8340
8341 2012-04-18 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
8342
8343 PR tree-optimization/52976
8344 * tree-ssa-reassoc.c (add_to_ops_vec_max_rank): Delete.
8345 (possibly_move_powi): New function.
8346 (rewrite_expr_tree): Call possibly_move_powi.
8347 (rewrite_expr_tree_parallel): Likewise.
8348 (attempt_builtin_powi): Change call of add_to_ops_vec_max_rank to
8349 call add_to_ops_vec instead.
8350
8351 2012-04-18 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
8352
8353 PR tree-optimization/52976
8354 * tree-ssa-reassoc.c (stmt_is_power_of_op): New function.
8355 (decrement_power): Likewise.
8356 (propagate_op_to_single_use): Likewise.
8357 (zero_one_operation): Handle __builtin_pow* calls in linearized
8358 expression trees; factor logic into propagate_op_to_single_use.
8359 (undistribute_ops_list): Allow operands with repeat counts > 1.
8360
8361 2012-04-18 Richard Guenther <rguenther@suse.de>
8362
8363 PR tree-optimization/44688
8364 * cfgloop.h (record_niter_bound): Declare.
8365 * tree-ssa-loop-niter.c (record_niter_bound): Export.
8366 Update the estimation with the upper bound here...
8367 (estimate_numbers_of_iterations_loop): ... instead of here.
8368 Do not forcefully reset a recorded upper bound.
8369 * tree-vect-loop-manip.c (vect_do_peeling_for_alignment):
8370 Record the maximum number of loop iterations of the prologue loop.
8371
8372 2012-04-18 Jan Hubicka <jh@suse.cz>
8373
8374 * lto-symtab.c (lto_cgraph_replace_node): Update.
8375 * cgraphbuild.c (record_reference, record_type_list,
8376 record_eh_tables, mark_address, mark_load, mark_store): Update.
8377 * cgraph.c (cgraph_same_body_alias, dump_cgraph_node,
8378 cgraph_create_virtual_clone, cgraph_for_node_thunks_and_aliases):
8379 Update.
8380 * cgraph.h (symtab_node_def, symtab_node, const_symtab_node): Remove.
8381 (cgraph_alias_aliased_node, varpool_alias_aliased_node): Update.
8382 * reload.c: Fix typo in comment.
8383 * rtlanal.c: Likewise.
8384 * tree-emultls.c (gen_emutls_addr): Update.
8385 * ipa-reference.c (analyze_function): Update.
8386 * cgraphunit.c (cgraph_analyze_function,
8387 cgraph_process_same_body_aliases, assemble_thunks_and_aliases):
8388 Update.
8389 * ipa-ref.c (ipa_record_reference): Reorg to avoid reference types.
8390 (ipa_remove_reference): Likewise.
8391 (ipa_remove_all_refering): Rename to ...
8392 (ipa_remove_all_referring): ... this one; update.
8393 (ipa_dump_references): Update.
8394 (ipa_dump_referring): Update.
8395 (ipa_clone_references): Update.
8396 (ipa_clone_refering): Rename to ...
8397 (ipa_clone_referring): ... this one; update.
8398 (ipa_ref_cannot_lead_to_return): Update.
8399 (ipa_ref_has_aliases_p): Update.
8400 * ipa-ref.h (symtab_node_def, symtab_node, const_symtab_node): New
8401 forward typedefs.
8402 (ipa_ref_type): Remove.
8403 (ipa_ref_ptr_u): Remove.
8404 (ipa_ref): Remove referencing, refered, refered_index, refering_type
8405 and refered_type; add referring, referred and referred_index.
8406 (ipa_ref_list): Rename refering to referring.
8407 (ipa_record_reference, ipa_remove_all_referring, ipa_dump_referring,
8408 ipa_clone_references, ipa_clone_referring): Update prototypes.
8409 * lto-cgraph.c (referenced_from_other_partition_p): Update.
8410 (lto_output_ref): Update.
8411 (add_references): Update.
8412 (input_varpool_node): Update.
8413 (input_refs): Update.
8414 * ipa-ref-inline.h (ipa_ref_node): Update.
8415 (ipa_ref_varpool_node): Update.
8416 (ipa_ref_referring_node): Update.
8417 (ipa_ref_referring_varpool_node): Update.
8418 (ipa_ref_referring_ref_list): Update.
8419 (ipa_ref_referred_ref_list): Update.
8420 (ipa_ref_list_first_referring): Update.
8421 (ipa_empty_ref_list): Update.
8422 (ipa_ref_list_refering_iterate): Rename to ...
8423 (ipa_ref_list_referring_iterate): ... this one.
8424 * cse.c: Update comment.
8425 * ipa-utils.c (ipa_reverse_postorder): Update.
8426 * tree-ssa-alias.c: Update.
8427 * ipa-inline.c (reset_edge_caches): Update.
8428 (update_caller_keys): Update.
8429 * ipa-inline.h: Update comments.
8430 * jump.c: Update comment.
8431 * alias.c: Likewise.
8432 * ipa.c (process_references): Update.
8433 (cgraph_remove_unreachable_nodes): Likewise.
8434 (ipa_discover_readonly_nonaddressable_var): Likewise.
8435 (cgraph_address_taken_from_non_vtable_p): Likewise.
8436 * trans-mem.c (ipa_tm_execute): Update.
8437 * simplify-rtx.c: Fix comment.
8438 * rtl.c: Fix comment.
8439 * symtab.c (symtab_unregister_node): Update.
8440 * varpool.c (dump_varpool_node): Update.
8441 (varpool_analyze_pending_decls): Update.
8442 (assemble_aliases): Update.
8443 (varpool_for_node_and_aliases): Update.
8444
8445 2012-04-18 Richard Guenther <rguenther@suse.de>
8446
8447 * cfgloop.h (estimate_numbers_of_iterations_loop): Remove
8448 use_undefined_p parameter.
8449 * tree-flow.h (estimate_numbers_of_iterations): Likewise.
8450 * tree-ssa-loop-niter.c (estimate_numbers_of_iterations_loop):
8451 Likewise.
8452 (estimate_numbers_of_iterations): Likewise.
8453 (estimated_loop_iterations): Adjust.
8454 (max_loop_iterations): Likewise.
8455 (scev_probably_wraps_p): Likewise.
8456 * tree-ssa-loop.c (tree_ssa_loop_bounds): Likewise.
8457 * tree-vrp.c (adjust_range_with_scev): Use max_stmt_executions,
8458 not max_loop_iterations.
8459 (execute_vrp): Remove explicit number of iterations estimation.
8460
8461 2012-04-18 Enkovich Ilya <ilya.enkovich@intel.com>
8462
8463 * config/i386/linux-common.h: New.
8464
8465 * config.gcc: Add i386/linux-common.h before
8466 all i386/linux.h and i386/linux64.h usages.
8467
8468 * config/i386/gnu-user.h (GNU_USER_TARGET_LINK_SPEC): New.
8469 (LINK_SPEC): Use GNU_USER_TARGET_LINK_SPEC.
8470 * config/i386/gnu-user64.h: Likewise.
8471
8472 * config/i386/gnu-user.common.h (GNU_USER_TARGET_CC1_SPEC): New.
8473 (CC1_SPEC): Use GNU_USER_TARGET_CC1_SPEC.
8474 (GNU_USER_TARGET_MATHFILE_SPEC): New.
8475 (ENDFILE_SPEC): Use GNU_USER_TARGET_MATHFILE_SPEC.
8476
8477 2012-04-18 Jan Hubicka <jh@suse.cz>
8478
8479 * cgraph.c (cgraph_node_name): Remove.
8480 (dump_cgraph_node): Use dump_symtab_base; reformat.
8481 * cgraph.h (symtab_node_asm_name, symtab_node_name, dump_symtab,
8482 debug_symtab, dump_symtab_node, debug_symtab_node, dump_symtab_base):
8483 Declare.
8484 (cgraph_node_name, varpool_node_name): Remove.
8485 (cgraph_node_asm_name, varpool_node_asm_name,
8486 cgraph_node_name, varpool_node_name): New.
8487 * tree-pass.h (TODO_dump_cgraph): Rename to ...
8488 (TODO_dump_symtab): ... this one.
8489 * ipa-cp (pass_ipa_cp): Update.
8490 * ia-reference.c (generate_summary, read_write_all_from_decl,
8491 propagate, ipa_reference_read_optimization_summary): Update.
8492 * cgraphunit.c (cgraph_analyze_functions): Update.
8493 (cgraph_optimize): Update.
8494 * ipa-ref.c (ipa_dump_references): Update.
8495 (ipa_dump_refering): Update.
8496 * ipa-inline.c (pass_ipa_inline): Update.
8497 * matrix-reorg.c (pass_ipa_matrix_reorg): Update.
8498 * ipa.c (pass_ipa_function_visibility,
8499 pass_ipa_whole_program_visibility): Update.
8500 * tree-sra.c (pass_early_ipa_sra): Update.
8501 * symtab.c: Include langhooks.h
8502 (symtab_node_asm_name): New.
8503 (symtab_node_name): New.
8504 (symtab_type_names): New static var.
8505 (dump_symtab_base): New.
8506 (dump_symtab_node, dump_symtab): New.
8507 (debug_symtab_node, debug_symtab): New.
8508 * tree-ssa-structalias.c: Dump symbol table.
8509 * pases.c (execute_todo): Handle TODO_dump_symtab instead
8510 of TODO_dump_cgraph.
8511 * varpoo.c (varpool_node_name): Remove.
8512 (dump_varpool_node): Use dump_symtab_base; reformat.
8513
8514 2012-04-18 Manuel López-Ibáñez <manu@gcc.gnu.org>
8515
8516 * doc/invoke.texi (Language Independent Options): @item should be
8517 before @opindex.
8518
8519 2012-04-17 Richard Sandiford <rdsandiford@googlemail.com>
8520
8521 PR bootstrap/53021
8522 * rtl.c (rtx_code_size): Handle ADDRESS.
8523
8524 2012-04-17 Tom de Vries <tom@codesourcery.com>
8525
8526 * tree-iterator.c (append_to_statement_list_1): Handle case that *list_p
8527 is not a STMT_LIST.
8528
8529 2012-04-17 Uros Bizjak <ubizjak@gmail.com>
8530
8531 PR target/53020
8532 * config/i386/sync.md (atomic_<code><mode>): Rename to
8533 atomic_<logic><mode>.
8534
8535 2012-04-17 Richard Sandiford <rdsandiford@googlemail.com>
8536
8537 * rtl.def (ADDRESS): Turn operand into a HOST_WIDE_INT.
8538 * alias.c (reg_base_value): Expand and update comment.
8539 (arg_base_value): New variable.
8540 (unique_id): Move up file.
8541 (unique_base_value, unique_base_value_p, known_base_value_p): New.
8542 (find_base_value): Use arg_base_value and known_base_value_p.
8543 (record_set): Document REG_NOALIAS handling. Use unique_base_value.
8544 (find_base_term): Use known_base_value_p.
8545 (base_alias_check): Use unique_base_value_p.
8546 (init_alias_target): Initialize arg_base_value. Use unique_base_value.
8547 (init_alias_analysis): Use 1 as the first id for REG_NOALIAS bases.
8548
8549 2012-04-17 Pat Haugen <pthaugen@us.ibm.com>
8550
8551 * config/rs6000/rs6000.h (SLOW_UNALIGNED_ACCESS): Remove DImode.
8552
8553 2012-04-17 Michael Matz <matz@suse.de>
8554
8555 PR tree-optimization/18437
8556 * tree-vectorizer.h (_stmt_vec_info.stride_load_p): New member.
8557 (STMT_VINFO_STRIDE_LOAD_P): New accessor.
8558 (vect_check_strided_load): Declare.
8559 * tree-vect-data-refs.c (vect_check_strided_load): New function.
8560 (vect_analyze_data_refs): Use it to accept strided loads.
8561 * tree-vect-stmts.c (vectorizable_load): Ditto and handle them.
8562
8563 2012-04-17 Richard Guenther <rguenther@suse.de>
8564
8565 PR middle-end/53011
8566 * tree-eh.c (cleanup_empty_eh_merge_phis): Properly discard
8567 loops when redirecting an entry or latch edge.
8568
8569 2012-04-17 Bernd Schmidt <bernds@codesourcery.com>
8570
8571 * sel-sched.c (sel_global_init): Revert previous change.
8572
8573 2012-04-17 Richard Guenther <rguenther@suse.de>
8574
8575 * tree-flow.h (array_at_struct_end_p): Move declaration ...
8576 * tree.h (array_at_struct_end_p): ... here.
8577 * tree-ssa-loop-niter.c (array_at_struct_end_p): Move ...
8578 * expr.c (array_at_struct_end_p): ... here. Rewrite.
8579
8580 2012-04-17 Steven Bosscher <steven@gcc.gnu.org>
8581
8582 * stmt.c (cost_table_, use_cost_table, cost_table_initialize,
8583 COST_TABLE): Remove.
8584 (estimate_case_costs): Remove.
8585 (expand_case): Do not call estimate_case_costs
8586 to set use_cost_table.
8587 (balance_case_nodes): Do not use use_cost_table.
8588
8589 2012-04-16 Jan Hubicka <jh@suse.cz>
8590
8591 * cgraph.c (cgraph_hash, assembler_name_hash): Remove.
8592 (hash_node, eq_node): Remove.
8593 (cgraph_create_node): Do not handle hashtable.
8594 (cgraph_get_node): Remove.
8595 (cgraph_insert_node_to_hashtable): Remove.
8596 (hash_node_by_assembler_name): Remove.
8597 (eq_assembler_name): Remove.
8598 (cgraph_node_for_asm): Rewrite.
8599 (cgraph_find_replacement_node): Break out from ...
8600 (cgraph_remove_node): ... here; do not maintain hashtables.
8601 (change_decl_assembler_name): Remove.
8602 (cgraph_clone_node): Do not maintain hashtables.
8603 * cgraph.h (const_symtab_node): New typedef.
8604 (cgraph_insert_node_to_hashtable): Remove.
8605 (symtab_get_node, symtab_node_for_asm,
8606 symtab_insert_node_to_hashtable): Declare.
8607 (cgraph_find_replacement_node): Declare.
8608 (cgraph_get_node, varpool_get_node): Turn into inlines.
8609 (cgraph, varpool): Work sanely on NULL pointers.
8610 (FOR_EACH_SYMBOL): New walker.
8611 * ipa-inline-transform.c (save_inline_function_body): Use
8612 symtab_insert_node_to_hashtable.
8613 * symtab.c: Include ggc.h and diagnostics.h
8614 (symtab_hash, assembler_name_hash): New static vars;
8615 (hash_node, eq_node, hash_node_by_assembler_name,
8616 eq_assembler_name, insert_to_assembler_name_hash,
8617 unlink_from_assembler_name_hash): New.
8618 (symtab_register_node): Update hashtables.
8619 (symtab_insert_node_to_hashtable): New.
8620 (symtab_unregister_node): Update hashtables.
8621 (symtab_get_node): New.
8622 (symtab_node_for_asm): New.
8623 (change_decl_assembler_name): New.
8624 * Makefile.in (symtab.o): Needs GTY.
8625 * varpool.c (varpool_hash): Remove.
8626 (hash_varpool_node, eq_varpool_node, varpool_get_node): Remove.
8627 (varpool_node): Rewrite using varpool_get_node.
8628 (varpool_remove_node): DO not maintain hashtables.
8629 (varpool_node_for_asm): Rewrite.
8630
8631 2012-04-16 Sandra Loosemore <sandra@codesourcery.com>
8632
8633 * doc/invoke.texi: Copy-edit to put verbs in the present tense
8634 when describing the current behavior of GCC.
8635
8636 2012-04-16 Richard Sandiford <rdsandiford@googlemail.com>
8637
8638 * genemit.c (gen_exp): Remove ADDRESS handling.
8639 * genoutput.c (scan_operands): Likewise.
8640 * genpeep.c (match_rtx): Likewise.
8641 * genrecog.c (add_to_sequence): Likewise.
8642
8643 2012-04-16 David Edelsohn <dje.gcc@gmail.com>
8644
8645 * doc/install.texi (Specific, *-ibm-aix*): Update assembler bug status.
8646
8647 2012-04-16 Martin Jambor <mjambor@suse.cz>
8648
8649 * tree-sra.c (build_ref_for_model): Create COMPONENT_REFs only for
8650 bit-fields.
8651
8652 2012-04-16 Ulrich Weigand <ulrich.weigand@linaro.org>
8653
8654 PR target/51819
8655 * config/arm/arm.c (arm_print_operand): Fix invalid alignment
8656 hints for 'A' operand types.
8657
8658 2012-04-16 Jan Hubicka <jh@suse.cz>
8659
8660 * cgraph.h (symtab_node_base): Add next and previous pointers.
8661 (cgraph_node): Remove next and preivous pointers.
8662 (varpool_node): Likewise; remove next/previous GTY marker;
8663 it is not type safe.
8664 (symtab_node_def): Update GTY marker
8665 (x_cgraph_nodes, cgraph_nodes): Remove.
8666 (symtab_nodes): New function.
8667 (cgraph_order): Rename to ...
8668 (symtab_order): ... this one.
8669 (symtab_register_node, symtab_unregister_node, symtab_remove_node):
8670 Declare.
8671 (x_varpool_nodes, varpool_nodes): Remove.
8672 (FOR_EACH_STATIC_VARIABLE): Update.
8673 (symtab_function_p, symtab_variable_p): New function.
8674 (FOR_EACH_VARIABLE): Update.
8675 (varpool_first_variable, varpool_next_variable): New functions.
8676 (FOR_EACH_VARIABLE): Update.
8677 (cgraph_first_defined_function): Update.
8678 (cgraph_next_defined_function, cgraph_next_defined_function): Update.
8679 (FOR_EACH_DEFINED_FUNCTION, FOR_EACH_FUNCTION): Update.
8680 (cgraph_first_function, cgraph_next_function): New.
8681 (FOR_EACH_FUNCTION): Update.
8682 (cgraph_first_function_with_gimple_body,
8683 cgraph_next_function_with_gimple_body): Update.
8684 * symtab.c: New file.
8685 * cgraph.c: Update copyright dates.
8686 (x_cgraph_nodes, cgraph_order): Remove.
8687 (NEXT_FREE_NODE): Update.
8688 (SET_NEXT_FREE_NODE): New.
8689 (cgraph_create_node_1): Remove common code.
8690 (cgraph_create_node): Remove common code; call symtab_register_node.
8691 (cgraph_remove_node): Remove common code; call symtab_unregister-node.
8692 (cgraph_add_asm_node): Update.
8693 (cgraph_clone_node): Register new node.
8694 * cgraphunit.c (process_function_and_variable_attributes): Update.
8695 (cgraph_analyze_functions): Update.
8696 (cgraph_analyze_functions): Update.
8697 (cgraph_output_in_order): Update.
8698 * lto-cgraph.c (input_node, input_varpool_node, input_cgraph_1):
8699 Update.
8700 * ipa-inline.c (recursive_inlining): Update.
8701 * lto-streamer-in.c (lto_input_toplevel_asms): Update.
8702 * ipa.c (cgraph_remove_unreachable_nodes): Update.
8703 * Makefile.in: Add symtab.o
8704 * varpool.c (x_varpool_nodes): Remove
8705 (varpool_node): Remove common code; call symtab_register_node.
8706 (varpool_remove_node): Remove common code; call symtab_unregister_node.
8707
8708 2012-04-16 Richard Guenther <rguenther@suse.de>
8709
8710 PR middle-end/52977
8711 * tree.h (VECTOR_CST_NELTS): Adjust.
8712 (struct tree_vector): Add explicit length field.
8713 (make_vector_stat): Declare.
8714 (make_vector): Define.
8715 * tree.c (make_vector_stat): New function.
8716 (build_vector_stat): Use it.
8717 * tree-streamer-in.c (streamer_alloc_tree): Likewise.
8718
8719 2012-04-16 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
8720
8721 PR tree-optimization/52976
8722 * tree-ssa-reassoc.c (add_to_ops_vec_max_rank): New function.
8723 (undistribute_ops_list): Ops with repeat counts aren't eligible for
8724 undistribution.
8725 (attempt_builtin_powi): Call add_to_ops_vec_max_rank.
8726
8727 2012-04-16 Jan Hubicka <jh@suse.cz>
8728
8729 * cgraph.h (FOR_EACH_VARIABLE, FOR_EACH_VARIABLE, FOR_EACH_FUNCTION):
8730 New macros.
8731 * lto-symtab.c (lto_symtab_merge_cgraph_nodes): Use FOR_EACH
8732 walkers to walk cgraph and varpool.
8733 * cgraph.c (cgraph_node_for_asm): Likewise.
8734 (dump_cgraph): Likewise.
8735 * value-prof.c (init_node_map): Likewise.
8736 * tree.c (free_lang_data_in_cgraph): Likewise.
8737 * tree-emutls.c: (ipa_lower_emutls): Likewise.
8738 * ipa-reference.c (generate_summary, propagate): Likewise.
8739 * cgraphunit.c (verify_cgraph, cgraph_process_same_body_aliases,
8740 cgraph_mark_functions_to_output, cgraph_output_in_order,
8741 output_weakrefs, cgraph_materialize_all_clones,
8742 cgraph_optimize): Likewise.
8743 * lto-cgraph.c (merge_profile_summaries): Likewise.
8744 (input_cgraph): Likewise.
8745 * ipa-pure-const.c (generate_summary): Likewise.
8746 (propagate): Likwise.
8747 * ipa-utils.c (ipa_reduced_postorder): Likewise.
8748 (ipa_free_postorder_info): Likewise.
8749 (ipa_reverse_postorder): Likewise.
8750 * ipa-inline.c (ipa_inline): Likewise.
8751 * matrix-reorg.c (find_matrices_decl): Likewise.
8752 (matrix_reorg): Likewise.
8753 * tree-vectorizer.c (increase_alignment): Likewise.
8754 * ipa.c (cgraph_remove_unreachable_nodes): Likewise.
8755 (function_and_variable_visibility): Likewise.
8756 (whole_program_function_and_variable_visibility): Likewise.
8757 (ipa_cdtor_merge): Likewise.
8758 * trans-mem.c (ipa_tm_execute): Likewise.
8759 * ipa-inline-analysis.c (dump_inline_summaries): Likewise.
8760 * ipa-prop.c (ipa_print_all_jump_functions): Likewise.
8761 (ipa_print_all_params): Likewise.
8762 (ipa_update_after_lto_read): Likewise.
8763 * tree-profie.c (tree_profiling): Likewise.
8764 * tree-ssa-structalias.c (ipa_pta_execute): Likewise.
8765 * passes.c (dump_passes): Likewise.
8766 (do_per_function): Likewise.
8767 (ipa_write_summaries): Likewise.
8768 * varpool.c (dump_varpool): Likewise.
8769 (varpool_node_for_asm): Likewise.
8770 (varpool_assemble_pending_decls): Likewise.
8771
8772 2012-04-16 Richard Guenther <rguenther@suse.de>
8773
8774 PR tree-optimization/52975
8775 * tree-if-conv.c (predicate_bbs): Do not simplify inverted
8776 condition but always mark it with TRUTH_NOT_EXPR.
8777
8778 2012-04-16 Richard Guenther <rguenther@suse.de>
8779
8780 PR tree-optimization/52975
8781 * tree-ssa-forwprop.c (combine_cond_exprs): New function.
8782 (ssa_forward_propagate_and_combine): Call it for COND_EXPRs
8783 and VEC_COND_EXPRs. Also combine into VEC_COND_EXPRs condition.
8784 * fold-const.c (operand_equal_p): Handle TARGET_MEM_REF.
8785
8786 2012-04-14 Uros Bizjak <ubizjak@gmail.com>
8787
8788 * config/i386/sse.md (ssse3_plusminus): New code iterator.
8789 (avx2_ph<plusminus_mnemonic>wv16hi3): Macroize insn from
8790 avx2_ph{add,adds,sub,subs}wv16hi3 using ssse3_plusminus code iterator.
8791 (ssse3_ph<plusminus_mnemonic>wv8hi3): Macroize insn from
8792 ssse3_ph{add,adds,sub,subs}wv8hi3 using ssse3_plusminus code iterator.
8793 (ssse3_ph<plusminus_mnemonic>wv4hi3): Macroize insn from
8794 ssse3_ph{add,adds,sub,subs}wv4hi3 using ssse3_plusminus code iterator.
8795
8796 (avx2_ph<plusminus_mnemonic>dv8si3): Macroize insn from
8797 avx2_ph{add,adds,sub,subs}dv8si3 using plusminus code iterator.
8798 (ssse3_ph<plusminus_mnemonic>dv4si3): Macroize insn from
8799 ssse3_ph{add,adds,sub,subs}dv4si3 using plusminus code iterator.
8800 (ssse3_ph<plusminus_mnemonic>dv2si3): Macroize insn from
8801 ssse3_ph{add,adds,sub,subs}dv2si3 using plusminus code iterator.
8802
8803 (xop_plus): New code iterator.
8804 (macs): New code attribute.
8805 (macds): Ditto.
8806 (xop_p<macs><ssemodesuffix><ssemodesuffix>): Macroize insn from
8807 xop_pmacs{,s}{ww,dd} using xop_plus code iterator and VI24_128 mode
8808 iterator.
8809 (xop_p<macs>dql): Macroize insn from xop_pmacs{,s}dql using
8810 xop_plus code iterator.
8811 (xop_p<macs>dqh): Macroize insn from xop_pmacs{,s}dqh using
8812 xop_plus code iterator.
8813 (xop_p<macs>wd): Macroize insn from xop_pmacs{,s}wd using
8814 xop_plus code iterator.
8815 (xop_p<madcs>wd): Macroize insn from xop_pmadcs{,s}wd using
8816 xop_plus code iterator.
8817
8818 (xop_phadd<u>bw): Macroize insn from xop_phadd{,u}bw usign
8819 any_extend code iterator.
8820 (xop_phadd<u>bd): Macroize insn from xop_phadd{,u}bd usign
8821 any_extend code iterator.
8822 (xop_phadd<u>bq): Macroize insn from xop_phadd{,u}bq usign
8823 any_extend code iterator.
8824 (xop_phadd<u>wd): Macroize insn from xop_phadd{,u}wd usign
8825 any_extend code iterator.
8826 (xop_phadd<u>wq): Macroize insn from xop_phadd{,u}wq usign
8827 any_extend code iterator.
8828 (xop_phadd<u>dq): Macroize insn from xop_phadd{,u}dq usign
8829 any_extend code iterator.
8830
8831 2012-04-14 Tom de Vries <tom@codesourcery.com>
8832
8833 * cfgcleanup.c (try_optimize_cfg): Replace call to delete_insn_chain by
8834 call to delete_insn. Remove code to reorder BASIC_BLOCK note and
8835 DELETED_LABEL note, and move it to ...
8836 * cfgrtl.c (delete_insn): ... here. Change return type to void.
8837 (delete_insn_and_edges): Likewise.
8838 (delete_insn_chain): Handle new return type of delete_insn. Delete
8839 chain backwards rather than forwards.
8840 * rtl.h (delete_insn, delete_insn_and_edges): Change return type to
8841 void.
8842 * cfglayout.c (fixup_reorder_chain): Delete unused label.
8843
8844 2012-04-14 Jan Hubicka <jh@suse.cz>
8845
8846 * cgraph.h: Update copyrights;
8847 (symtab_node): Turn to union typedef.
8848 (symtab_node_base): New structure.
8849 (symtab_type): Add SYMTAB_SYMBOL tag.
8850 (cgraph_node): Annotate some pinters with nested_ptr.
8851 (varpool_node): Likewise.
8852 (cgraph_local_info): Remove lto_file_data
8853 and externally_visible.
8854 (cgraph_node): Remove decl; same_comdat_group list;
8855 aux; ref_list; order; address_taken; reachable_from_other_parittion,
8856 in_other_partition; resolution.
8857 (varpool_node): Remove decl; same_comdat_group;
8858 ref_list; lto_file_data; aux; order; resolution; externally_visible;
8859 used_from_other_partition; in_other_partition.
8860 (symtab_node_def): New union.
8861 (cgraph, varpool): Update.
8862 (varpool_first_static_initializer, varpool_next_static_initializer,
8863 cgraph_only_called_directly_or_aliased_p,
8864 varpool_can_remove_if_no_refs, varpool_can_remove_if_no_refs,
8865 varpool_all_refs_explicit_p, cgraph_alias_aliased_node,
8866 varpool_alias_aliased_node, cgraph_edge_recursive_p): Update
8867 field references.
8868 * cgraph.c: Likewise.
8869 (cgraph_hash, assembler_name_hash): Turn into symtab_node.
8870 * cgraphbuild.c: Likewise.
8871 * lto-symtab.c: Likewise.
8872 * c-gimplify.c: Likewise.
8873 * value-prof.c: Likewise.
8874 * tree.c: Likewise.
8875 * ipa-cp.c: Likewise.
8876 * tree-emutls.c: Likewise.
8877 * ipa-inline-transform.c: Likwise.
8878 * ipa-reference.c: Likewise.
8879 * cgraphunit.c: Likewise.
8880 * ipa-ref.c: Likewise.
8881 * lto-cgraph.c: Likewise.
8882 * ipa-ref-inline.h: Likewise.
8883 * ipa-pure-const.c: Likewise.
8884 * lto-streamer-out.c: Likewise.
8885 * ipa-utils.c: Likewise.
8886 * ipa-inline.c: Likewise.
8887 * matrix-reorg.c: Likewise.
8888 * tree-eh.c: Likewise.
8889 * tree-vectorizer.c: Likewise.
8890 * ipa-split.c: Likewise.
8891 * ipa.c: Likewise.
8892 * trans-mem.c: Likewise.
8893 * ipa-inline-analysis.c: Likewise.
8894 * gimplify.c: Likewise.
8895 * cfgexpand.c: Likewise.
8896 * tree-sra.c: Likewise.
8897 * ipa-prop.c: Likewise.
8898 * varasm.c: Likewise.
8899 * tree-nested.c: Likewise.
8900 * tree-inline.c: Likewise.
8901 * tree-profile.c: Likewise.
8902 * tree-ssa-structalias.c: Likewise.
8903 * passes.c: Likewise.
8904 * varpool.c: Likewise.
8905
8906 2012-04-14 Tom de Vries <tom@codesourcery.com>
8907
8908 * tree-ssa-tail-merge.c (stmt_local_def): New function, factored out of
8909 same_succ_hash, with local_def inlined. Use SINGLE_SSA_DEF_OPERAND.
8910 Use FOR_EACH_IMM_USE_FAST instead of FOR_EACH_IMM_USE_STMT. Remove use
8911 of find_edge.
8912 (gsi_advance_fw_nondebug_nonlocal): New function.
8913 (local_def): Removed function.
8914 (same_succ_hash): Use stmt_local_def.
8915 (same_succ_equal): Use gsi_advance_fw_nondebug_nonlocal.
8916 (gsi_advance_bw_nondebug_nonlocal): Use stmt_local_def.
8917
8918 2012-04-13 H.J. Lu <hongjiu.lu@intel.com>
8919
8920 * config/i386/i386-c.c (ix86_target_macros): Define _ILP32
8921 and __ILP32__ for x32.
8922
8923 2012-04-13 Martin Jambor <mjambor@suse.cz>
8924
8925 PR middle-end/52939
8926 * gimple-fold.c (gimple_get_virt_method_for_binfo): Bail out if
8927 fold_ctor_reference returns a zero constant.
8928
8929 2012-04-13 Enkovich Ilya <ilya.enkovich@intel.com>
8930
8931 * config.gcc: Add i386/gnu-user-common.h before all
8932 i386/gnu-user.h and i386/gnu-user64.h usages.
8933
8934 * config/i386/gnu-user-common.h: New.
8935
8936 * config/i386/gnu-user.h (CPP_SPEC): Moved to gnu-user-common.h.
8937 (CC1_SPEC): Likewise.
8938 (ENDFILE_SPEC): Likewise.
8939 (DEFAULT_PCC_STRUCT_RETURN): Likewise.
8940 (TARGET_TLS_DIRECT_SEG_REFS_DEFAULT): Likewise.
8941 (TARGET_OS_CPP_BUILTINS): Likewise.
8942 (LIBGCC2_HAS_TF_MODE): Likewise.
8943 (LIBGCC2_TF_CEXT): Likewise.
8944 (TF_SIZE): Likewise.
8945 (TARGET_ASM_FILE_END): Likewise.
8946 (STACK_CHECK_MOVING_SP): Likewise.
8947 (STACK_CHECK_STATIC_BUILTIN): Likewise.
8948 * config/i386/gnu-user64.h: Likewise.
8949
8950 2012-04-13 Martin Jambor <mjambor@suse.cz>
8951
8952 * expr.c (expand_expr_real_1): Pass type, not the expression, to
8953 set_mem_attributes for a memory temporary. Do not call the function
8954 for the memory temporary created for a bitfield.
8955
8956 2012-04-13 Alexandre Oliva <aoliva@redhat.com>
8957
8958 PR debug/48866
8959 * df.h (enum debug_temp_where): New.
8960 (dead_debug_init, dead_debug_finish) Declare.
8961 (dead_debug_add, dead_debug_insert_temp): Declare.
8962 (struct dead_debug_use, struct dead_debug): Moved from...
8963 * df-problems.c: ... here.
8964 (df_set_unused_notes_for_mw): Bind debug uses of unused regno
8965 to a debug temp.
8966 (df_create_unused_note): Likewise.
8967 (df_set_dead_notes_for_mw): Move comment where it belongs.
8968 (dead_debug_init): Export.
8969 (dead_debug_reset_uses): New, factored out of...
8970 (dead_debug_finish): ...this. Export.
8971 (dead_debug_reset): Remove.
8972 (dead_debug_add): Export.
8973 (dead_debug_insert_before): Rename to...
8974 (dead_debug_insert_temp): ... this. Add where argument. Export.
8975 Locate stored value for BEFORE_WITH_VALUE. Avoid repeat inserts.
8976 Return insertion count.
8977 (df_note_bb_compute): Adjust.
8978 * dce.c (word_dce_process_block): Adjust dead debug uses.
8979 (dce_process_block): Likewise.
8980
8981 2012-04-13 Alexandre Oliva <aoliva@redhat.com>
8982
8983 * df-problems.c (df_note_bb_compute): Do not take note of
8984 debug uses for whose REGs we won't emit DEAD or UNUSED notes.
8985
8986 2012-04-13 Alexandre Oliva <aoliva@redhat.com>
8987
8988 PR debug/51570
8989 * var-tracking.c (expand_depth): New type.
8990 (onepart_aux, expand_loc_callback_data): Change depth type to it.
8991 (loc_exp_dep_alloc): Adjust initializer.
8992 (update_depth): Use new type. Add entryvals.
8993 (vt_expand_var_loc_chain): Take note of expansions with
8994 ENTRY_VALUEs, but don't accept them right away. Run an optional
8995 second pass accepting the minimum ENTRY_VALUE count found in the
8996 first pass.
8997 (vt_expand_loc_callback, INIT_ELCD): Adjust.
8998
8999 2012-04-13 Tom de Vries <tom@codesourcery.com>
9000
9001 * tree-ssa-tail-merge.c (gsi_advance_bw_nondebug_nonlocal): Add
9002 parameters vuse and vuse_escaped.
9003 (find_duplicate): Init vuse1, vuse2 and vuse_escaped. Pass to
9004 gsi_advance_bw_nondebug_nonlocal. Return if vuse_escaped and
9005 vuse1 != vuse2.
9006
9007 2012-04-13 Richard Guenther <rguenther@suse.de>
9008
9009 PR tree-optimization/52969
9010 * tree-if-conv.c (predicate_mem_writes): Properly gimplify
9011 the condition for the COND_EXPR and handle predicate negation
9012 by swapping the COND_EXPR arms.
9013
9014 2012-04-13 Nick Clifton <nickc@redhat.com>
9015
9016 * config/rl78/rl78.c (rl78_devirt_pass): Remove use of
9017 TODO_dump_func flag.
9018
9019 2012-04-13 Andrey Belevantsev <abel@ispras.ru>
9020
9021 PR rtl-optimization/52203
9022 PR rtl-optimization/52715
9023
9024 Revert the 2012-03-07 fix for PR 52203.
9025 * sel-sched.c (reset_sched_cycles_in_current_ebb): Check that
9026 the insn does not modify DFA right before issuing, adjust
9027 issue_rate accordingly.
9028
9029 2012-04-13 Richard Guenther <rguenther@suse.de>
9030
9031 PR c/52549
9032 * c-typeck.c (pointer_diff): Remove bogus assert.
9033
9034 2012-04-13 Richard Guenther <rguenther@suse.de>
9035
9036 PR c/52862
9037 * convert.c (convert_to_pointer): Remove special-casing of zero.
9038
9039 2012-04-13 Joey Ye <joey.ye@arm.com>
9040
9041 * config/arm/constraints.md (Pe): New constraint.
9042 * config/arm/arm.md: New split for imm 256-510.
9043
9044 2012-04-13 Terry Guo <terry.guo@arm.com>
9045
9046 * config/arm/arm-cores.def: Added core cortex-m0plus.
9047 * config/arm/arm-tune.md: Regenerated.
9048 * config/arm/arm-tables.opt: Regenerated.
9049 * doc/invoke.texi: Added entry for cpu ARM cortex-m0plus.
9050
9051 2012-04-13 Alan Modra <amodra@gmail.com>
9052
9053 PR target/52828
9054 * config/rs6000/rs6000.c (rs6000_emit_stack_tie): Rewrite with
9055 tie regs on destination of sets. Delete forward declaration.
9056 (rs6000_emit_stack_reset): Update rs6000_emit_stack_tie calls.
9057 (rs6000_emit_prologue): Likewise.
9058 (rs6000_emit_epilogue): Likewise. Use in place of gen_frame_tie
9059 and gen_stack_tie.
9060 (is_mem_ref): Use tie_operand to recognise stack ties.
9061 * config/rs6000/predicates.md (tie_operand): New.
9062 * config/rs6000/rs6000.md (restore_stack_block): Generate new
9063 stack tie rtl.
9064 (restore_stack_nonlocal): Likewise.
9065 (stack_tie): Update.
9066 (frame_tie): Delete.
9067
9068 2012-04-12 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
9069
9070 * tree-ssa-reassoc.c (attempt_builtin_powi_stats): Change %ld to
9071 HOST_WIDE_INT_PRINT_DEC in format strings.
9072
9073 2012-04-12 Uros Bizjak <ubizjak@gmail.com>
9074
9075 PR target/52932
9076 * config/i386/avx2intrin.h (_mm256_permutevar8x32_ps): Change second
9077 argument type to __m256i. Update call to __builtin_ia32_permvarsf256.
9078 * config/i386/sse.md (UNSPEC_VPERMVAR): New.
9079 (UNSPEC_VPERMSI, UNSPEC_VPERMSF): Remove.
9080 (avx2_permvarv8sf, avx2_permvarv8si): Switch operands 1 and 2.
9081 (avx2_permvar<mode>): Macroize insn from avx2_permvarv8sf and
9082 avx2_permvarv8si using VI4F_256 mode iterator.
9083 * config/i386/i386.c (bdesc_args) <__builtin_ia32_permvarsf256>:
9084 Update builtin type to V8SF_FTYPE_V8SF_V8SI.
9085 (ix86_expand_vec_perm): Update calls to gen_avx2_permvarv8si and
9086 gen_avx2_permvarv8sf.
9087 (expand_vec_perm_pshufb): Ditto.
9088
9089 2012-04-12 Michael Meissner <meissner@linux.vnet.ibm.com>
9090
9091 PR target/52775
9092 * config/rs6000/rs6000.h (TARGET_FCFID): Add TARGET_PPC_GPOPT to
9093 the list of options to enable the FCFID instruction.
9094 (TARGET_EXTRA_BUILTINS): Adjust comment.
9095
9096 2012-04-12 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
9097
9098 PR tree-optimization/18589
9099 * tree-ssa-reassoc.c (reassociate_stats): Add two fields.
9100 (operand_entry): Add count field.
9101 (add_repeat_to_ops_vec): New function.
9102 (completely_remove_stmt): Likewise.
9103 (remove_def_if_absorbed_call): Likewise.
9104 (remove_visited_stmt_chain): Remove feeding builtin pow/powi calls.
9105 (acceptable_pow_call): New function.
9106 (linearize_expr_tree): Look for builtin pow/powi calls and add operand
9107 entries with repeat counts when found.
9108 (repeat_factor_d): New struct and associated typedefs.
9109 (repeat_factor_vec): New static vector variable.
9110 (compare_repeat_factors): New function.
9111 (get_reassoc_pow_ssa_name): Likewise.
9112 (attempt_builtin_powi): Likewise.
9113 (reassociate_bb): Call attempt_builtin_powi.
9114 (fini_reassoc): Two new calls to statistics_counter_event.
9115
9116 2012-04-12 Richard Guenther <rguenther@suse.de>
9117
9118 * Makefile.in (cgraphunit.o): Add $(EXCEPT_H) dependency.
9119 * cgraph.h (tree_rest_of_compilation): Remove.
9120 * cgraph.c (cgraph_add_new_function): Move ...
9121 * cgraphunit.c (cgraph_add_new_function): ... here.
9122 (tree_rest_of_compilation): Make static.
9123 (cgraph_expand_function): Do not set cgraph_function_flags_ready.
9124 * tree-optimize.c (gate_all_optimizations, pass_all_optimizations,
9125 gate_all_early_local_passes, execute_all_early_local_passes,
9126 pass_early_local_passes, gate_all_early_optimizations,
9127 pass_all_early_optimizations): Move ...
9128 * passes.c (gate_all_optimizations, pass_all_optimizations,
9129 gate_all_early_local_passes, execute_all_early_local_passes,
9130 pass_early_local_passes, gate_all_early_optimizations,
9131 pass_all_early_optimizations): ... here.
9132 * tree-optimize.c (execute_free_datastructures): Remove.
9133 * tree-flow.h (execute_free_datastructures): Remove.
9134 * tree-optimize.c (execute_init_datastructures,
9135 pass_init_datastructures): Move ...
9136 * tree-ssa.c (execute_init_datastructures,
9137 pass_init_datastructures): ... here.
9138 * cfgexpand.c (gimple_expand_cfg): Inline-expand call to
9139 execute_free_datastructures.
9140
9141 2012-04-12 Bernd Schmidt <bernds@codesourcery.com>
9142
9143 * dbgcnt.def (ira_move): New counter.
9144 * ira-int.h (ira_create_new_reg): Declare function.
9145 (first_moveable_pseudo, last_moveable_pseudo): Declare variables.
9146 * ira-emit.c (ira_create_new_reg): Renamed from craete_new_reg and
9147 no longer static. All callers changed.
9148 * ira.c: Include "dbgcnt.h".
9149 (rtx_moveable_p, insn_dominated_by_p, find_moveable_pseudos,
9150 move_unallocated_pseudos): New static functions.
9151 (first_moveable_pseudo, last_moveable_pseudo): New global variables.
9152 (pseudo_replaced_reg, pseudo_move_insn): New static variables.
9153 (ira): Call find_moveable_pseudos and move_unallocated_pseudos.
9154 * ira-costs.c (find_costs_and_classes): Assign a memory cost of zero
9155 to the pseudos generated in find_moveable_pseudos.
9156 * Makefile.in (ira.o): Add $(DBGCNT_H).
9157
9158 2012-04-12 Richard Guenther <rguenther@suse.de>
9159
9160 PR tree-optimization/52943
9161 * tree-chrec.h (chrec_is_positive): Remove.
9162 * tree-scalar-evolution.c (chrec_is_positive): Move ...
9163 * tree-data-ref.c (chrec_is_positive): ... here. Make static.
9164 Return false for a constant zero instead of negative.
9165 (analyze_siv_subscript_cst_affine): Handle zero difference
9166 in the initial condition explicitely.
9167
9168 2012-04-12 Richard Guenther <rguenther@suse.de>
9169
9170 * tree-parloops.c (parallelize_loops): Also consult the upper
9171 bound for the number of iterations.
9172 * tree-ssa-loop-prefetch.c (determine_loop_nest_reuse): Likewise.
9173 (loop_prefetch_arrays): Likewise.
9174
9175 2012-04-12 Richard Guenther <rguenther@suse.de>
9176
9177 * cfgloop.h (estimated_loop_iterations_int): Ditch
9178 'conservative' parameter.
9179 (max_stmt_executions_int): Likewise.
9180 (estimated_loop_iterations): Likewise.
9181 (max_stmt_executions): Likewise.
9182 (max_loop_iterations): Declare.
9183 (max_loop_iterations_int): Likewise.
9184 (estimated_stmt_executions): Likewise.
9185 (estimated_stmt_executions_int): Likewise.
9186 * tree-ssa-loop-niter.c (estimated_loop_iterations):
9187 Split parts to ...
9188 (max_loop_iterations): ... this.
9189 (estimated_loop_iterations_int): Split parts to ...
9190 (max_loop_iterations_int): ... this.
9191 (max_stmt_executions_int): Split parts to ...
9192 (estimated_stmt_executions_int): ... this.
9193 (max_stmt_executions): Split parts to ...
9194 (estimated_stmt_executions): ... this.
9195 * graphite-sese-to-poly.c (build_loop_iteration_domains): Adjust.
9196 * predict.c (predict_loops): Likewise.
9197 * tree-data-ref.c (max_stmt_executions_tree): Likewise.
9198 (analyze_siv_subscript_cst_affine): Likewise.
9199 (compute_overlap_steps_for_affine_1_2): Likewise.
9200 (analyze_subscript_affine_affine): Likewise.
9201 (init_omega_for_ddr_1): Likewise.
9202 * tree-parloops.c (parallelize_loops): Likewise.
9203 * tree-ssa-loop-ivopts.c (avg_loop_niter): Likewise.
9204 (may_eliminate_iv): Likewise.
9205 * tree-ssa-loop-prefetch.c (determine_loop_nest_reuse): Likewise.
9206 (loop_prefetch_arrays): Likewise.
9207 * tree-vrp.c (adjust_range_with_scev): Likewise.
9208
9209 2012-04-12 Oleg Endo <olegendo@gcc.gnu.org>
9210
9211 * config/sh/sh.h (RETURN_ADDR_RTX): Use NULL_RTX instead of 0.
9212 * config/sh/sh.c (INSN_REGMODE_WEIGHT, CURR_REGMODE_PRESSURE):
9213 Fix line width.
9214 (dump_table): Use bool type for need_align and have_df variables.
9215 (find_barrier, sfunc_uses_reg): Use NULL_RTX instead of 0.
9216 (regs_used): Remove register modifier.
9217 (barrier_align): Move variables slot, credit, jump_to_next
9218 into if block above for loop. Use bool type for jump_to_next.
9219 (sh_function_arg): Use NULL_RTX instead of 0.
9220
9221 2012-04-11 Andreas Schwab <schwab@linux-m68k.org>
9222
9223 * config/m68k/m68k.md (rotrhi3+1): Name it rotrhi_lowpart.
9224 (bswapsi2): New expander.
9225
9226 2012-04-11 H.J. Lu <hongjiu.lu@intel.com>
9227
9228 * config/host-linux.c (TRY_EMPTY_VM_SPACE): Defined to
9229 0x60000000 if __x86_64 is defined and __LP64__ isn't defined.
9230
9231 2012-04-11 H.J. Lu <hongjiu.lu@intel.com>
9232
9233 PR rtl-optimization/52876
9234 * emit-rtl.c (set_reg_attrs_from_value): Handle arbitrary value.
9235 Don't call mark_reg_pointer for incompatible pointer sign extension.
9236
9237 * reginfo.c (reg_scan_mark_refs): Call set_reg_attrs_from_value
9238 directly.
9239
9240 2012-04-11 Bernd Schmidt <bernds@codesourcery.com>
9241
9242 * fold-const.c (fold_unary_loc): Use GET_MODE_PRECISION for
9243 comparisons against TYPE_PRECISION.
9244 * tree-ssa-forwprop.c (combine_conversions): Likewise.
9245
9246 2012-04-11 Xinliang David Li <davidxl@google.com>
9247
9248 * tree-passes.h: Remove TODO_dump_func.
9249 * tree-ssa-tail-merge.c (tail_merge_optimize): Remove TODO_dump_func.
9250 * trans-mem.c: Remove TODO_dump_func.
9251 * ira.c: Remove TODO_dump_func.
9252
9253 2012-04-11 H.J. Lu <hongjiu.lu@intel.com>
9254
9255 * config/i386/i386.c (ix86_option_override_internal): Check
9256 SUBTARGET_OVERRIDE_OPTIONS and SUBSUBTARGET_OVERRIDE_OPTIONS
9257 after TARGET_64BIT is updated.
9258
9259 2012-04-11 Oleg Endo <olegendo@gcc.gnu.org>
9260
9261 * config/sh/sh.h: Remove old secondary reload code.
9262
9263 2012-04-11 Oleg Endo <olegendo@gcc.gnu.org>
9264
9265 * config/sh/sh.c (SCHED_REORDER): Merge macro into ...
9266 (ready_reorder): ... this function.
9267
9268 2012-04-11 Bernd Schmidt <bernds@codesourcery.com>
9269
9270 * sel-sched.c (sel_global_init): Swap order of sched_rgn_init and
9271 sched_init calls.
9272
9273 * haifa-sched.c (prune_ready_list): Rework handling of SCHED_GROUP_P
9274 insns so that no other insn is queued for a time before them.
9275
9276 * config/c6x/c6x.md (load_got_gotoff): Set op_pattern attribute to
9277 unknown.
9278
9279 2012-04-11 Richard Guenther <rguenther@suse.de>
9280
9281 PR middle-end/52621
9282 * tree-chrec.c (evolution_function_is_invariant_rec_p): Properly
9283 consider loop nesting.
9284 (evolution_function_is_univariate_p): Properly check the remainder
9285 for chrecs.
9286
9287 2012-04-11 Richard Guenther <rguenther@suse.de>
9288
9289 PR middle-end/52918
9290 * except.c (sjlj_emit_dispatch_table): Properly update loop structure.
9291
9292 2012-04-11 Nick Clifton <nickc@redhat.com>
9293
9294 * config/rl78/rl78.c (rl78_expand_prologue): Set stack use
9295 information, if requested.
9296
9297 * config/rx/rx.c (rx_expand_prologue): Likewise.
9298
9299 2012-04-11 Peter Bergner <bergner@vnet.ibm.com>
9300 Michael Matz <matz@suse.de>
9301
9302 PR target/16458
9303 * rtlanal.c (unsigned_reg_p): New function.
9304 Update copyright notice dates.
9305 * rtl.h (unsigned_reg_p): Prototype it.
9306 Update copyright notice dates.
9307 * config/rs6000/rs6000.c (rs6000_generate_compare): Use it.
9308 Update comment.
9309 * expr.c (expand_expr_real_1): Set register attributes.
9310 * stmt.c (expand_case): Likewise.
9311
9312 2012-04-11 Oleg Endo <olegendo@gcc.gnu.org>
9313
9314 PR target/50751
9315 * config/sh/sh-protos.h (sh_legitimate_index_p): Add new arguments
9316 consider_sh2a and allow_zero.
9317 * config/sh/sh.c (sh_legitimate_index_p): Likewise.
9318 (disp_addr_displacement): New function.
9319 (sh_address_cost): Use disp_addr_displacement function instead
9320 of DISP_ADDR_OFFSET.
9321 (sh_legitimate_address_p): Adapt to changed
9322 sh_legitimate_index_p declaration.
9323 (sh_find_mov_disp_adjust): Remove HImode check.
9324 (sh_secondary_reload): Add HImode case. Use satisfies_constraint_Sdd,
9325 disp_addr_displacement and max_mov_insn_displacement.
9326 (max_mov_insn_displacement): Remove HImode check.
9327 * config/sh/sh.h (CONST_OK_FOR_K04, CONST_OK_FOR_K12,
9328 DISP_ADDR_P, DISP_ADDR_OFFSET): Remove.
9329 * config/sh/constraints.md (K05, K13): New constraints.
9330 (K12): Correct comment.
9331 (Sdd): Do not use DISP_ADDR_P macro.
9332 (Snd, Sbw): Use satisfies_constraint_Sdd.
9333 * config/sh/sh.md (extendhisi2): Remove constraints from expander.
9334 (*extendhisi2_compact, movhi_i): Remove.
9335 (*extendhisi2_compact_reg, *extendhisi2_compact_mem_disp,
9336 *extendhisi2_compact_mem_disp, *extendhisi2_compact_snd,
9337 *movhi_reg_reg, *movhi_store_mem_disp05, *movhi_store_mem_disp13,
9338 *movhi_load_mem_disp, *movhi_load_mem_disp, *movhi): New insns.
9339 (*extendqisi2_compact_mem_disp, *extendqisi2_compact_mem_disp,
9340 *movqi_store_mem_disp04, *movqi_store_mem_disp12, *movqi_load_mem_disp,
9341 *movqi_load_mem_disp): Use sh_legitimate_index_p instead of
9342 CONST_OK_FOR_Kxx.
9343 Add new peepholes for HImode displacement addressing.
9344
9345 2012-04-11 Oleg Endo <olegendo@gcc.gnu.org>
9346
9347 * config/sh/sh.h (SIDI_OFF): Remove.
9348 * config/sh/sh.md: Use gen_highpart and gen_lowpart to access
9349 DImode subregs instead of gen_rtx_REG or simplifly_gen_subreg
9350 or operand_subword.
9351
9352 2012-04-11 Eric Botcazou <ebotcazou@adacore.com>
9353
9354 PR target/52624
9355 * doc/extend.texi (Other Builtins): Document __builtin_bswap16.
9356 (PowerPC AltiVec/VSX Built-in Functions): Remove it.
9357 * doc/md.texi (Standard Names): Add bswap.
9358 * builtin-types.def (BT_UINT16): New primitive type.
9359 (BT_FN_UINT16_UINT16): New function type.
9360 * builtins.def (BUILT_IN_BSWAP16): New.
9361 * builtins.c (expand_builtin_bswap): Add TARGET_MODE argument.
9362 (expand_builtin) <BUILT_IN_BSWAP16>: New case. Pass TARGET_MODE to
9363 expand_builtin_bswap.
9364 (fold_builtin_bswap): Add BUILT_IN_BSWAP16 case.
9365 (fold_builtin_1): Likewise.
9366 (is_inexpensive_builtin): Likewise.
9367 * optabs.c (expand_unop): Deal with bswap in HImode specially. Add
9368 missing bits for bswap to libcall code.
9369 * tree.c (build_common_tree_nodes): Build uint16_type_node.
9370 * tree.h (enum tree_index): Add TI_UINT16_TYPE.
9371 (uint16_type_node): New define.
9372 * config/rs6000/rs6000-builtin.def (RS6000_BUILTIN_BSWAP_HI): Delete.
9373 * config/rs6000/rs6000.c (rs6000_expand_builtin): Remove handling of
9374 above builtin.
9375 (rs6000_init_builtins): Likewise.
9376 * config/rs6000/rs6000.md (bswaphi2): Add TARGET_POWERPC predicate.
9377
9378 2012-04-11 Tristan Gingold <gingold@adacore.com>
9379
9380 * doc/extend.texi (Type Attributes): Move paragraph.
9381
9382 2012-04-11 Manuel López-Ibáñez <manu@gcc.gnu.org>
9383
9384 PR 24985
9385 * diagnostic.h (show_caret): Declare.
9386 (caret_max_width): Declare.
9387 (diagnostic_show_locus): Declare.
9388 * diagnostic.c (diagnostic_initialize): Initialize to false.
9389 (diagnostic_show_locus): New.
9390 (diagnostic_report_diagnostic): Call it.
9391 (getenv_columns): New.
9392 (adjust_line): New.
9393 (diagnostic_set_caret_max_width): New.
9394 * input.c (read_line): New.
9395 (location_get_source_line): New.
9396 * input.h (location_get_source_line): Declare.
9397 * toplev.c (general_init): Initialize show_caret from options.
9398 * dwarf2out.c (gen_producer_string): Handle fdiagnostics-show-caret.
9399 * opts.c (common_handle_option): Likewise.
9400 * pretty-print.h (pp_get_prefix): New.
9401 (pp_base_get_prefix): New.
9402 * common.opt (fdiagnostics-show-caret): New option.
9403 * doc/invoke.texi (fdiagnostics-show-caret): Document it.
9404
9405 2012-04-11 Richard Guenther <rguenther@suse.de>
9406
9407 PR rtl-optimization/52881
9408 * ifcvt.c (find_if_case_2): Avoid speculating loop latches.
9409
9410 2012-04-11 Richard Guenther <rguenther@suse.de>
9411
9412 PR tree-optimization/52912
9413 * tree-ssa-threadupdate.c (thread_block): Tell the cfg
9414 manipulation code we are threading through a loop header
9415 to an exit destination.
9416
9417 2012-04-10 Manuel López-Ibáñez <manu@gcc.gnu.org>
9418
9419 * tree.h (warn_if_unused_value): Move declaration from here.
9420 * stmt.c (warn_if_unused_value): Move definition from here.
9421
9422 2012-04-10 Michael Matz <matz@suse.de>
9423
9424 * tree-vectorizer.h (_loop_vec_info.strided_stores): Rename to
9425 grouped_stores.
9426 (LOOP_VINFO_STRIDED_STORES): Rename to LOOP_VINFO_GROUPED_STORES.
9427 (struce _bb_vec_info.strided_stores): Rename to grouped_stores.
9428 (BB_VINFO_STRIDED_STORES): Rename to BB_VINFO_GROUPED_STORES.
9429 (STMT_VINFO_STRIDED_ACCESS): Rename to STMT_VINFO_GROUPED_ACCESS.
9430 (vect_strided_store_supported): Rename to vect_grouped_store_supported.
9431 (vect_strided_load_supported): Rename to vect_grouped_load_supported.
9432 (vect_transform_strided_load): Rename to vect_transform_grouped_load.
9433 (vect_record_strided_load_vectors): Rename to
9434 vect_record_grouped_load_vectors.
9435 * tree-vect-data-refs.c (vect_update_misalignment_for_peel):
9436 Rename use of above macros.
9437 (vect_verify_datarefs_alignment): Ditto.
9438 (vector_alignment_reachable_p): Ditto.
9439 (vect_peeling_hash_get_lowest_cost): Ditto.
9440 (vect_enhance_data_refs_alignment): Ditto.
9441 (vect_analyze_group_access): Ditto and rename stride to groupsize.
9442 (vect_analyze_data_ref_access): Rename "strided" to "grouped".
9443 (vect_strided_store_supported): Rename to vect_grouped_store_supported.
9444 (vect_strided_load_supported): Rename to vect_grouped_load_supported.
9445 (vect_transform_strided_load): Rename to vect_transform_grouped_load.
9446 (vect_record_strided_load_vectors): Rename to
9447 vect_record_grouped_load_vectors.
9448 * tree-vect-loop.c (new_loop_vec_info): Rename use of above macros.
9449 (destroy_loop_vec_info): Ditto.
9450 (vect_transform_loop): Ditto and rename strided_store to grouped_store.
9451 * tree-vect-slp.c (vect_build_slp_tree): Rename use of above macros.
9452 (vect_analyze_slp): Ditto.
9453 (new_bb_vec_info): Ditto.
9454 (destroy_bb_vec_info): Ditto.
9455 (vect_schedule_slp_instance): Ditto and rename strided_store to
9456 grouped_store.
9457 * tree-vect-stmts.c (vect_cost_strided_group_size): Rename to
9458 vect_cost_group_size.
9459 (vect_model_store_cost): Rename use of above macros and call
9460 to vect_cost_strided_group_size.
9461 (vect_model_load_cost): Ditto.
9462 (vectorizable_store): Ditto, rename strided_store to grouped_store
9463 and calls to renamed tree-vectorizer.h functions.
9464 (vectorizable_load): Ditto.
9465 (vect_transform_stmt): Rename use of above macros and strided_store
9466 to grouped_store.
9467
9468 2012-04-10 Jan Hubicka <jh@suse.cz>
9469
9470 * cgraph.h: Remove misledaing comment on ipa-ref.h.
9471 (symtab_type): New enum.
9472 (symtab_node): New structure.
9473 (cgraph_node, varpool_node): Add symbol base type.
9474 (cgraph, varpool): New accestor functions.
9475 * cgraph.c (cgraph_create_node_1): Set symbol type.
9476 * varpool.c (varpool_node): Set symbol type.
9477
9478 2012-04-10 Ulrich Weigand <ulrich.weigand@linaro.org>
9479 Richard Sandiford <rdsandiford@googlemail.com>
9480
9481 * fwprop.c (propagate_rtx): Also set PR_CAN_APPEAR for subregs.
9482
9483 2012-04-10 Richard Guenther <rguenther@suse.de>
9484
9485 PR middle-end/52888
9486 * gimple-low.c (gimple_check_call_args): Properly account for
9487 compatible aggregate types.
9488
9489 2012-04-10 Richard Guenther <rguenther@suse.de>
9490
9491 * toplev.h (tree_rest_of_compilation): Remove.
9492 * tree-optimize.c (tree_rest_of_compilation): Likewise.
9493 * cgraph.h (tree_rest_of_compilation): Declare.
9494 * tree-optimize.c (tree_rest_of_compilation): Move ...
9495 * cgraphunit.c (tree_rest_of_compilation): ... here.
9496 * cgraph.c (cgraph_add_new_function): Adjust.
9497 * Makefile.in (tree-optimize.o): Adjust.
9498 (cgraphunit.o): Likewise.
9499
9500 2012-04-10 Ulrich Weigand <ulrich.weigand@linaro.org>
9501
9502 PR tree-optimization/52870
9503 * tree-vect-patterns.c (vect_recog_widen_mult_pattern): Verify that
9504 presumed pattern statement is within the same loop or basic block.
9505
9506 2012-04-10 Tristan Gingold <gingold@adacore.com>
9507
9508 * gengtype.c (main): Make uintptr_t a known type.
9509
9510 2012-04-10 Richard Guenther <rguenther@suse.de>
9511
9512 * tree-pass.h (tree_lowering_passes): Remove.
9513 * tree-optimize.c (tree_lowering_passes): Remove.
9514 * cgraph.c (cgraph_add_new_function): Inline relevant parts
9515 of tree_lowering_passes, avoid redundant call of early local passes.
9516 * cgraphunit.c (cgraph_lower_function): Fold into ...
9517 (cgraph_analyze_function): ... its single caller. Inline
9518 relevant parts of tree_lowering_passes.
9519
9520 2012-04-09 H.J. Lu <hongjiu.lu@intel.com>
9521
9522 PR other/52777
9523 * config/pa/pa.opt: Remove SIO and GNU_LD.
9524
9525 2012-04-09 Jan Hubicka <jh@suse.cz>
9526
9527 PR lto/52722
9528 PR lto/51765
9529 PR lto/52634
9530 * lto-cgraph.c (compute_ltrans_boundary): When alias is in the
9531 boundary, add its target too.
9532 * lto.c (add_references_to_partition): Add also aliased nodes.
9533 (add_cgraph_node_to_partition,
9534 add_varpool_node_to_partition): Work on nodes, not functions/variables;
9535 when adding alias, add also the aliased object.
9536
9537 2012-04-09 Uros Bizjak <ubizjak@gmail.com>
9538
9539 PR target/52883
9540 * config/i386/predicates.md (x86_64_zext_general_operand): Prevent
9541 VOIDmode immediate operands.
9542 * config/i386/constraints.md (Wz): New constraint.
9543 * config/i386/i386.md (*zero_extendsidi2_rex64): Use Wz instead of Z.
9544
9545 2012-04-09 Eric Botcazou <ebotcazou@adacore.com>
9546
9547 PR target/52717
9548 * config/sparc/sparc.c (sparc_file_end): Set TREE_PUBLIC explicitly on
9549 the DECL generated for the special GOT helper.
9550
9551 2012-04-09 Oleg Endo <olegendo@gcc.gnu.org>
9552
9553 * config/sh/constraints.md: Update list of constraints in
9554 comment block.
9555 (Sr0): Remove unused memory constraint.
9556
9557 2012-04-08 Manuel López-Ibáñez <manu@gcc.gnu.org>
9558
9559 * tree-pretty-print.h: Update comment.
9560
9561 2012-04-08 Oleg Endo <olegendo@gcc.gnu.org>
9562
9563 * config/sh/sh.md: Use braced string notation where applicable.
9564 (*prefetch_i4, prefetch_m2a): Merge into ...
9565 (*prefetch): ... this new insn.
9566
9567 2012-04-07 Oleg Endo <olegendo@gcc.gnu.org>
9568
9569 * config/sh/sh.h (high_life_started): Remove
9570 * config/sh/predicates.md (general_movdst_operand): Use
9571 'reload_in_progress' instead of 'high_life_started'.
9572 * config/sh/sh.md (divsi_inv_call, *divsi_inv_call_combine,
9573 divsi_inv_fp): Likewise.
9574
9575 2012-04-07 Oleg Endo <olegendo@gcc.gnu.org>
9576
9577 * config/sh/sh-protos.h (prepare_move_operands): Return void
9578 instead of int.
9579 * config/sh/sh.c (prepare_move_operands): Likewise.
9580 * config/sh/sh.md: Remove return value checks of prepare_move_operands.
9581
9582 2012-04-07 Oleg Endo <olegendo@gcc.gnu.org>
9583
9584 * config/sh/sh-protos.h (fp_int_operand, symbol_ref_operand,
9585 general_movsrc_operand, general_movdst_operand, arith_reg_operand,
9586 fp_arith_reg_operand, arith_operand, arith_reg_or_0_operand,
9587 logical_operand, fpscr_operand, fpul_operand, expand_fp_branch,
9588 commutative_float_operator, noncommutative_float_operator,
9589 sh_handle_pragma): Remove.
9590
9591 2012-04-06 Sandra Loosemore <sandra@codesourcery.com>
9592
9593 * doc/invoke.texi: Clean up Texinfo markup throughout the file.
9594 Use @option markup on command-line options. Use @samp markup on
9595 literal keywords to options. Use @code markup on code fragments.
9596 Use other markup in preference to quotation marks in the text.
9597 Add markup to some passages without any.
9598
9599 2012-04-06 Mike Stump <mikestump@comcast.net>
9600
9601 * gimple-fold.c (gimple_fold_stmt_to_constant_1): Avoid warning.
9602
9603 2012-04-06 Oleg Endo <olegendo@gcc.gnu.org>
9604
9605 * config/sh/sh.c (hi_const): Remove.
9606 (find_barrier, sh_reorg): Use satisfies_constraint_I16 instead
9607 of hi_const.
9608
9609 2012-04-06 Oleg Endo <olegendo@gcc.gnu.org>
9610
9611 * config/sh/sh-protos.h (sh_expand_t_scc): Change return type from int
9612 to bool.
9613 * config/sh/sh.c (sh_expand_t_scc): Likewise.
9614 * config/sh/sh.md (cstoresi4, cstoredi4): Remove GET_CODE checks before
9615 calling sh_expand_t_scc.
9616
9617 2012-04-06 Oleg Endo <olegendo@gcc.gnu.org>
9618
9619 * config/sh/sh-protos.h (fp_zero_operand, fp_one_operand,
9620 nonpic_symbol_mentioned_p, expand_block_move, expand_ashiftrt,
9621 sh_dynamicalize_shift_p, gen_shl_and, gen_shl_sext, system_reg_operand,
9622 reg_unused_after, sh_can_redirect_branch, sh_need_epilogue, fldi_ok,
9623 sh_hard_regno_rename_ok, sh_cfun_interrupt_handler_p,
9624 sh_cfun_resbank_handler_p, sh_attr_renesas_p, sh_cfun_attr_renesas_p,
9625 check_use_sfunc_addr, sh_contains_memref_p, sh_loads_bankedreg_p,
9626 sh2a_is_function_vector_call): Use bool as return type.
9627 (sh_pass_in_reg_p): Remove.
9628 * config/sh/sh.c (broken_move, mova_p, noncall_uses_reg, high_pressure,
9629 flow_dependent_p, sh2a_function_vector_p, expand_block_move,
9630 expand_ashiftrt, sh_dynamicalize_shift_p, gen_shl_and, gen_shl_sext,
9631 sh_need_epilogue, sh2a_is_function_vector_call, sh_attr_renesas_p,
9632 sh_cfun_attr_renesas_p, sh_cfun_interrupt_handler_p,
9633 sh_cfun_resbank_handler_p, system_reg_operand, fp_zero_operand,
9634 fp_one_operand, fldi_ok, reg_unused_after, sh_can_redirect_branch,
9635 sh_hard_regno_rename_ok, check_use_sfunc_addr, sh_contains_memref_p,
9636 sh_loads_bankedreg_p): Use bool as return type.
9637 (nonpic_symbol_mentioned_p): Use bool as return type. Remove
9638 'register' modifier.
9639
9640 2012-04-06 Matt Turner <mattst88@gmail.com>
9641
9642 * doc/install.texi: Correct typo "-mno-lsc" -> "-mno-llsc".
9643
9644 2012-04-06 Eric Botcazou <ebotcazou@adacore.com>
9645
9646 * config/ia64/ia64.c (ia64_load_pair_ok): Return 0 if the second member
9647 of the destination isn't also a FP_REGS register.
9648
9649 2012-04-05 Teresa Johnson <tejohnson@google.com>
9650 H.J. Lu <hongjiu.lu@intel.com>
9651
9652 * config/i386/i386.h (ix86_tune_indices): Add X86_TUNE_LCP_STALL.
9653 * config/i386/i386.md (move immediate to memory peephole2):
9654 Add cases for HImode move when LCP stall avoidance is needed.
9655 * config/i386/i386.c (initial_ix86_tune_features): Initialize
9656 X86_TUNE_LCP_STALL entry.
9657
9658 2012-04-05 Uros Bizjak <ubizjak@gmail.com>
9659
9660 PR target/52882
9661 * config/i386/i386.c (ix86_decompose_address): Allow VOIDmode
9662 CONST_INT operands, zero-extended with AND.
9663
9664 2012-04-05 Oleg Endo <olegendo@gcc.gnu.org>
9665
9666 PR target/50751
9667 * config/sh/sh.c (sh_find_mov_disp_adjust): Take machine_mode as the
9668 first argument instead of mode size. Move displacement calculations
9669 to ...
9670 (mov_insn_size, max_mov_insn_displacement, mov_insn_alignment_mask):
9671 ... these new functions.
9672 (disp_adjust): Remove max_mov_disp field.
9673 (sh_legitimate_index_p): Use max_mov_insn_displacement and
9674 mov_insn_alignment_mask.
9675 (sh_address_cost): Use max_mov_insn_displacement.
9676
9677 2012-04-05 Andrew Stubbs <ams@codesourcery.com>
9678
9679 * config/arm/arm.md (arch): Add neon_onlya8 and neon_nota8.
9680 (arch_enabled): Handle new arch types.
9681 (one_cmpldi2): Add NEON support.
9682
9683 2012-04-05 Richard Guenther <rguenther@suse.de>
9684
9685 * gimple.c (walk_gimple_op): Compute val_only for the LHS
9686 of an assigment in the canonical way, avoiding is_gimple_mem_rhs.
9687 (is_gimple_mem_rhs, is_gimple_reg_rhs, is_gimple_stmt): Move ...
9688 * gimplify.c (is_gimple_mem_rhs, is_gimple_reg_rhs, is_gimple_stmt):
9689 ... here and make static.
9690 * gimple.h (is_gimple_mem_rhs, is_gimple_reg_rhs, is_gimple_stmt):
9691 Remove.
9692
9693 2012-04-05 Richard Guenther <rguenther@suse.de>
9694
9695 * tree-ssa-dse.c (dse_optimize_stmt): Remember the stmt
9696 basic-block before removing it.
9697
9698 2012-04-05 Richard Guenther <rguenther@suse.de>
9699
9700 * tree-ssanames.c (release_dead_ssa_names): Compact the SSA
9701 version namespace as we release the freelist.
9702
9703 2012-04-05 Richard Guenther <rguenther@suse.de>
9704
9705 * tree-nrv.c (tree_nrv): Release VDEFs.
9706 * tree-sra.c (sra_modify_constructor_assign): Likewise.
9707 (sra_modify_assign): Likewise.
9708 * tree-vect-stmts.c (vect_remove_stores): Likewise.
9709 * tree-vect-loop.c (vect_transform_loop): Likewise.
9710 * tree-ssa-dom.c (optimize_stmt): Likewise.
9711 * tree-vect-slp.c (vect_schedule_slp): Likewise.
9712 * tree-ssa-math-opts.c (execute_cse_sincos): Likewise.
9713
9714 2012-04-05 Richard Guenther <rguenther@suse.de>
9715
9716 * gimple-iterator.c (gsi_remove): Return whether EH edges need to be
9717 cleanup.
9718 * gimple.h (gsi_remove): Adjust.
9719 * tree-ssa-operands.c (unlink_stmt_vdef): Optimize.
9720 * tree-ssa-dom.c (optimize_stmt): Use gsi_remove result.
9721 * tree-ssa-dse.c (dse_optimize_stmt): Likewise.
9722 * tree-ssa-forwprop.c (remove_prop_source_from_use): Likewise.
9723 * tree-ssa-math-opts.c (execute_optimize_widening_mul): Likewise.
9724 * tree-ssa-pre.c (eliminate): Likewise.
9725
9726 2012-04-04 Mike Stump <mikestump@comcast.net>
9727
9728 * doc/rtl.texi (const_double): Document as sign-extending.
9729 * expmed.c (expand_mult): Ensure we don't use shift incorrectly.
9730 * emit-rtl.c (immed_double_int_const): Refine to state the
9731 value is signed.
9732 * simplify-rtx.c (mode_signbit_p): Add a fixme for wider than
9733 CONST_DOUBLE integers.
9734 (simplify_const_unary_operation, UNSIGNED_FLOAT): Ensure no
9735 negative values are converted. Fix conversions bigger than
9736 HOST_BITS_PER_WIDE_INT.
9737 (simplify_binary_operation_1): Ensure we don't use shift incorrectly.
9738 (simplify_immed_subreg): Sign-extend CONST_DOUBLEs.
9739 * explow.c (plus_constant_mode): Add.
9740 (plus_constant): Implement with plus_constant_mode.
9741 * rtl.h (plus_constant_mode): Add.
9742
9743 2012-04-04 Richard Guenther <rguenther@suse.de>
9744
9745 PR tree-optimization/52808
9746 * tracer.c (tail_duplicate): Do not tail-duplicate loop header blocks.
9747 * Makefile.in (tracer.o): Depend on $(CFGLOOP_H).
9748
9749 2012-04-04 Tristan Gingold <gingold@adacore.com>
9750
9751 * expr.c (expand_expr_real_2): Handle larger sizetype in
9752 POINTER_PLUS_EXPR.
9753
9754 2012-04-03 Kaz Kojima <kkojima@gcc.gnu.org>
9755
9756 * config/sh/t-sh (MULTILIB_MATCHES): Match m2a-single-only
9757 to m2a-single instead of m2e.
9758
9759 2012-04-03 Eric Botcazou <ebotcazou@adacore.com>
9760
9761 * expr.c (get_bit_range): Add OFFSET parameter and adjust BITPOS.
9762 Change type of BITOFFSET to signed. Make sure the lower bound of
9763 the computed range is non-negative by adjusting OFFSET and BITPOS.
9764 (expand_assignment): Adjust call to get_bit_range.
9765
9766 2012-04-03 Sandeep Kumar Singh <Sandeep.Singh2@kpitcummins.com>
9767
9768 * h8300/h8300.c (h8300_current_function_monitor_function_p):
9769 New function. Added to check monitor functions.
9770 (h8300_option_override): Modified to generate error/warning
9771 messages for invalid combinations of different command line
9772 options.
9773 * h8300/h8300.md: Generate 'rte' for monitor functions. Do not
9774 save EXR on stack for monitor function in case of H8S target
9775 when "-mno-exr" is passed.
9776 * h8300/h8300-protos.h (h8300_current_function_monitor_function_p):
9777 Add prototype.
9778 * doc/invoke.texi: Document H8S options.
9779
9780 2012-04-03 Tristan Gingold <gingold@adacore.com>
9781
9782 * configure.ac: Use GCC_AC_FUNC_MMAP_BLACKLIST instead
9783 of gcc_AC_FUNC_MMAP_BLACKLIST.
9784 * acinclude.m4 (gcc_AC_FUNC_MMAP_BLACKLIST): Remove.
9785 * Makefile.in (aclocal_deps): Add mmap.m4.
9786 * configure: Regenerate.
9787 * aclocal.m4: Regenerate.
9788
9789 2012-04-03 Richard Guenther <rguenther@suse.de>
9790
9791 PR tree-optimization/52808
9792 * tracer.c (tail_duplicate): Return whether we have duplicated
9793 any block.
9794 (tracer): If we have duplicated any block, cleanup the CFG.
9795 * cfghooks.c (duplicate_block): If we duplicated a loop
9796 header but not its loop, destroy the loop because it now has
9797 multiple entries.
9798 * tree-ssa-threadupdate.c (thread_through_loop_header): Tell
9799 the cfg manipulation routines we are not creating a multiple
9800 entry loop.
9801
9802 2012-04-03 Tristan Gingold <gingold@adacore.com>
9803
9804 * config/vms/vms-c.c (vms_pragma_nomember_alignment): Handle
9805 'byte' alignment.
9806 (vms_c_common_override_options): Allow parameterless variadic
9807 functions.
9808
9809 2012-04-03 Jakub Jelinek <jakub@redhat.com>
9810
9811 PR tree-optimization/52835
9812 * tree-data-ref.c (build_rdg): Return NULL if
9813 compute_data_dependences_for_loop failed.
9814
9815 2012-04-03 Eric Botcazou <ebotcazou@adacore.com>
9816
9817 * varasm.c (initializer_constant_valid_for_bitfield_p): Return true
9818 for REAL_CST as well.
9819 (output_constructor): Use RECORD_OR_UNION_TYPE_P predicate.
9820 In the bitfield case, if the value is a REAL_CST, convert it first to
9821 an INTEGER_CST.
9822
9823 2012-04-02 H.J. Lu <hongjiu.lu@intel.com>
9824
9825 * config.gcc: Use i386/biarchx32.h instead of i386/biarch64.h
9826 for --with-abi={x32|mx32} or --with-multilib-list=mx32.
9827 (supported_defaults): Add abi for i[34567]86-*-* and x86_64-*-*.
9828
9829 * config/i386/biarchx32.h: New.
9830
9831 2012-04-02 Anatoly Sokolov <aesok@post.ru>
9832
9833 * config/arm/arm.h (PREFERRED_RELOAD_CLASS): Remove.
9834 * config/arm/arm.c (TARGET_PREFERRED_RELOAD_CLASS): Define.
9835 (arm_preferred_reload_class): New function.
9836
9837 2012-04-02 Richard Guenther <rguenther@suse.de>
9838
9839 PR tree-optimization/52756
9840 * tree-ssa-threadupdate.c (def_split_header_continue_p): New function.
9841 (thread_through_loop_header): After threading through the loop latch
9842 remove the split part from the loop and clear further threading
9843 opportunities that would create a multiple entry loop.
9844
9845 2012-04-02 Richard Guenther <rguenther@suse.de>
9846
9847 PR rtl-optimization/52800
9848 * cprop.c (execute_rtl_cprop): Call cleanup_cfg with
9849 CLEANUP_CFG_CHANGED.
9850
9851 2012-04-02 Richard Guenther <rguenther@suse.de>
9852
9853 PR middle-end/52803
9854 * loop-init.c (gate_handle_loop2): Destroy loops here if
9855 we don't enter RTL loop optimizers.
9856
9857 2012-04-02 Uros Bizjak <ubizjak@gmail.com>
9858
9859 Partially revert:
9860 2012-03-29 Richard Guenther <rguenther@suse.de>
9861
9862 * rtl.h (extended_count): Remove.
9863 * combine.c (extended_count): Remove.
9864
9865 2012-04-02 Dodji Seketeli <dodji@redhat.com>
9866
9867 PR c++/40942
9868 * pt.c (more_specialized_fn): Don't apply decay conversion to
9869 types of function parameters.
9870
9871 2012-04-02 Tristan Gingold <gingold@adacore.com>
9872
9873 * ggc-page.c (PAGE_L1_SIZE, PAGE_L2_SIZE, LOOKUP_L1, LOOKUP_L2)
9874 (ggc_allocated_p, lookup_page_table_entry, set_page_table_entry)
9875 (alloc_page, init_ggc, clear_marks, struct ggc_pch_data)
9876 (ggc_pch_this_base): Use uintptr_t instead of size_t.
9877
9878 2012-03-31 H.J. Lu <hongjiu.lu@intel.com>
9879
9880 PR bootstrap/52784
9881 * config/i386/i386.c (ix86_option_override_internal): Don't
9882 check TARGET_64BIT if TARGET_64BIT_DEFAULT is false.
9883
9884 2012-03-31 Eric Botcazou <ebotcazou@adacore.com>
9885
9886 * tree-cfg.c (call_can_make_abnormal_goto): New predicate.
9887 (stmt_can_make_abnormal_goto): Use it.
9888 (is_ctrl_altering_stmt): Likewise.
9889
9890 2012-03-30 Naveen H.S <naveen.S@kpitcummins.com>
9891 Kaz Kojima <kkojima@gcc.gnu.org>
9892
9893 * config/sh/sh.c (push_regs): Skip banked registers when
9894 resbank attribute is specified.
9895 (sh_expand_epilogue): Likewise.
9896
9897 2012-03-30 Richard Henderson <rth@redhat.com>
9898
9899 PR debug/52727
9900 * combine-stack-adj.c (prev_active_insn_bb): New.
9901 (next_active_insn_bb): New.
9902 (force_move_args_size_note): New.
9903 (combine_stack_adjustments_for_block): Use it.
9904
9905 2012-03-30 Richard Henderson <rth@redhat.com>
9906
9907 * config/i386/i386.c (struct expand_vec_perm_d): Add one_operand_p.
9908 (ix86_expand_vector_init_duplicate): Initialize it.
9909 (expand_vec_perm_palignr): Likewise.
9910 (ix86_expand_vec_perm_const): Likewise.
9911 (ix86_vectorize_vec_perm_const_ok): Likewise.
9912 (expand_vec_perm_blend): Use it.
9913 (expand_vec_perm_vpermil): Likewise.
9914 (expand_vec_perm_pshufb): Likewise.
9915 (expand_vec_perm_1): Likewise.
9916 (expand_vec_perm_pshuflw_pshufhw): Likewise.
9917 (expand_vec_perm_interleave2): Likewise.
9918 (expand_vec_perm_vpermq_perm_1): Likewise.
9919 (expand_vec_perm_vperm2f128): Likewise.
9920 (expand_vec_perm_interleave3): Likewise.
9921 (expand_vec_perm_vperm2f128_vblend): Likewise.
9922 (expand_vec_perm_vpshufb2_vpermq): Likewise.
9923 (expand_vec_perm_vpshufb2_vpermq_even_odd): Likewise,.
9924 (expand_vec_perm_broadcast): Likewise.
9925 (expand_vec_perm_vpshufb4_vpermq2): Likewise.
9926
9927 2012-03-30 Richard Henderson <rth@redhat.com>
9928
9929 * dwarf2out.c (gen_variable_die): Initialize off.
9930
9931 2012-03-30 Tristan Gingold <gingold@adacore.com>
9932
9933 * config/vms/vms-f.c: New file.
9934 * config/vms/t-vms (vms-f.o): New rule.
9935 * config.gcc (*-*-*vms*): Define fortran_target_objs.
9936
9937 2012-03-30 Richard Guenther <rguenther@suse.de>
9938
9939 PR tree-optimization/52754
9940 * tree-ssa-forwprop.c (forward_propagate_addr_expr_1): Only
9941 propagate arbitrary addresses into really plain dereferences.
9942
9943 2012-03-30 Richard Guenther <rguenther@suse.de>
9944
9945 PR middle-end/52772
9946 * except.c (emit_to_new_bb_before): Move loop updating ...
9947 (dw2_build_landing_pads): ... here. Use a proper block for
9948 querying the loop father.
9949
9950 2012-03-30 Tristan Gingold <gingold@adacore.com>
9951
9952 * config/ia64/ia64.c (ia64_section_type_flags): Remove
9953 common_object attribute handling.
9954 (SECTION_VMS_OVERLAY): Remove
9955 (ia64_vms_common_object_attribute): Replace abort with an assert.
9956 Do not set DECL_SECTION_NAME.
9957 (ia64_vms_output_aligned_decl_common): Handle common_object
9958 attribute.
9959 (ia64_vms_elf_asm_named_section): Remove.
9960 * config/ia64/vms.h (TARGET_ASM_NAMED_SECTION): Remove.
9961
9962 2012-03-30 Richard Guenther <rguenther@suse.de>
9963
9964 PR middle-end/52786
9965 * double-int.c (rshift_double): Remove not needed cast.
9966
9967 2012-03-30 Richard Guenther <rguenther@suse.de>
9968
9969 * tree-affine.h (print_aff): Remove.
9970 * tree-affine.c (print_aff): Make static.
9971 * tree-data-ref.h (access_matrix_get_index_for_parameter): Remove.
9972 (get_references_in_stmt): Likewise.
9973 (print_direction_vector): Likewise.
9974 (print_dir_vectors): Likewise.
9975 (print_dist_vectors): Likewise.
9976 (dump_subscript): Likewise.
9977 (dump_ddrs): Likewise.
9978 (dump_dist_dir_vectors): Likewise.
9979 (dump_data_references): Likewise.
9980 (dump_data_dependence_relation): Likewise.
9981 (dump_data_dependence_direction): Likewise.
9982 (dump_rdg_vertex): Likewise.
9983 (dump_rdg_component): Likewise.
9984 (debug_ddrs): Declare.
9985 (struct data_ref_loc_d): Move ...
9986 * tree-data-ref.c (struct data_ref_loc_d): ... here.
9987 (get_references_in_stmt): Make static.
9988 (dump_data_references): Likewise.
9989 (dump_subscript): Likewise.
9990 (print_direction_vector): Likewise.
9991 (print_dir_vectors): Likewise.
9992 (print_dist_vectors): Likewise.
9993 (dump_data_dependence_relation): Likewise.
9994 (dump_dist_dir_vectors): Likewise.
9995 (dump_ddrs): Likewise.
9996 (dump_rdg_vertex): Likewise.
9997 (dump_rdg_component): Likewise.
9998 (debug_ddrs): New function.
9999 (access_matrix_get_index_for_parameter): Remove.
10000
10001 2012-03-30 Tristan Gingold <gingold@adacore.com>
10002
10003 * config/vms/vms.c (VMS_CRTL_FLOAT32): Rename.
10004 (VMS_CRTL_FLOAT64, VMS_CRTL_FLOAT64_VAXD): New.
10005 (VMS_CRTL_FLOAT128, VMS_CRTL_DPML, VMS_CRTL_NODMPL)
10006 (VMS_CRTL_32ONLY, VMS_CRTL_G_MASK, VMS_CRTL_G_NONE)
10007 (VMS_CRTL_GA, VMS_CRTL_GL, VMS_CRTL_FLOATV2): New.
10008 (vms_patch_builtins): Handle new flags
10009 * config/vms/vms-crtlmap.map: Completed using nm on
10010 c and math system libraries.
10011 * config/vms/make-crtlmap.awk: Handle any number of flags.
10012
10013 2012-03-30 Martin Jambor <mjambor@suse.cz>
10014
10015 * tree-ssa-ccp.c (insert_clobbers_for_var): Do not assert that there
10016 is a builtin_stack_save in a dominating BB.
10017
10018 2012-03-29 Uros Bizjak <ubizjak@gmail.com>
10019
10020 * config/i386/sse.md (avx_h<plusminus_insn>v4df3): Fix results
10021 crossing 128bit lane boundary.
10022
10023 2012-03-29 Vladimir Makarov <vmakarov@redhat.com>
10024
10025 * ira-color.c (setup_left_conflict_sizes_p): Process all
10026 conflicting objects.
10027
10028 2012-03-29 Jakub Jelinek <jakub@redhat.com>
10029
10030 PR tree-optimization/52760
10031 * tree-vect-slp.c (vect_get_constant_vectors): Convert constant_p
10032 shift count for {L,R}{SHIFT,ROTATE}_EXPR to TREE_TYPE (vector_type).
10033
10034 2012-03-29 Richard Guenther <rguenther@suse.de>
10035
10036 * cgraph.h (cgraph_materialize_all_clones): Remove.
10037 (reset_inline_failed): Likewise.
10038 * cgraphunit.c (cgraph_materialize_all_clones): Make static.
10039 * cgraphbuild.c (reset_inline_failed): Remove.
10040 * rtl.h (cse_main): Remove.
10041 (extended_count): Likewise.
10042 * cse.c (dump_class): Mark as DEBUG_FUNCTION.
10043 (cse_main): Make static.
10044 * combine.c (extended_count): Remove.
10045 (dump_combine_stats): Mark as DEBUG_FUNCTION.
10046 * basic-block.h (reorder_basic_blocks): Remove.
10047 * bb-reorder.c (reorder_basic_blocks): Make static.
10048 * Makefile.in (dse.o): Remove dse.h dependency.
10049 * dse.h: Remove.
10050 * dse.c (gate_dse): Remove.
10051 (clear_alias_mode_eq): Likewise.
10052 (clear_alias_mode_hash): Likewise.
10053 (dse_record_singleton_alias_set): Likewise.
10054 (dse_invalidate_singleton_alias_set): Likewise.
10055
10056 2012-03-29 H.J. Lu <hongjiu.lu@intel.com>
10057
10058 * config/linux-android.h (ANDROID_STARTFILE_SPEC): Use
10059 crtbegin_so%O%s for -shared.
10060 (ANDROID_ENDFILE_SPEC): Use crtend_so%O%s for -shared.
10061
10062 2012-03-29 Richard Guenther <rguenther@suse.de>
10063
10064 * tree-flow.h (struct pre_expr_d): Remove forward declaration.
10065 (add_to_value): Remove.
10066 (print_value_expressions): Likewise.
10067 * tree-ssa-pre.c (add_to_value): Make static.
10068 (print_value_expressions): Likewise.
10069 * gimple.h (gimple_adjust_this_by_delta): Remove.
10070 * gimple-fold.c (gimple_adjust_this_by_delta): Likewise.
10071
10072 2012-03-29 Richard Guenther <rguenther@suse.de>
10073
10074 PR middle-end/50708
10075 * double-int.h (rshift_double): Remove.
10076 * double-int.c (lshift_double): Use absu_hwi to make count positive.
10077 (rshift_double): Make static, take unsigned count argument,
10078 remove handling of negative count argument.
10079 (double_int_rshift): Dispatch to lshift_double.
10080
10081 2012-03-28 H.J. Lu <hongjiu.lu@intel.com>
10082
10083 * config/i386/biarch64.h (TARGET_64BIT_DEFAULT): Add
10084 OPTION_MASK_ABI_64.
10085
10086 * config/i386/gnu-user64.h (SPEC_64): Support TARGET_BI_ARCH == 2.
10087 (SPEC_X32): Likewise.
10088 (MULTILIB_DEFAULTS): Likewise.
10089
10090 * config/i386/i386.c (isa_opts): Remove -m64.
10091 (ix86_target_string): Properly handle -m32/-m64/-mx32.
10092 (ix86_option_override_internal): Properly
10093 set OPTION_MASK_ISA_64BIT and OPTION_MASK_ISA_X32 as well as
10094 handle -m32, -m64 and -mx32.
10095
10096 * config/i386/i386.h (TARGET_X32): Replace OPTION_ISA_X32
10097 with OPTION_ABI_X32. Moved after TARGET_LP64.
10098 (TARGET_LP64): Changed to OPTION_ABI_64.
10099
10100 * config/i386/i386.opt (m64): Replace ISA_64BIT with ABI_64.
10101 (mx32): Replace ISA_X32 with ABI_X32.
10102
10103 2012-03-28 Eric Botcazou <ebotcazou@adacore.com>
10104
10105 * tree.c (tree_size) <VECTOR_CST>: New case.
10106
10107 2012-03-28 Uros Bizjak <ubizjak@gmail.com>
10108
10109 * config/i386/i386.c (ix86_modes_tieable_p): Handle 32bit AVX modes.
10110 (ix86_expand_vector_move_misalign): Remove un-needed gen_lowpart calls.
10111
10112 2012-03-28 Jakub Jelinek <jakub@redhat.com>
10113
10114 PR middle-end/52691
10115 * tree-ssa-ccp.c (optimize_stdarg_builtin): Optimize
10116 __builtin_va_start to __builtin_next_arg if the latter is
10117 builtin_decl_explicit_p rather than when it is not.
10118
10119 PR middle-end/52750
10120 * tree-vect-generic.c (vector_element): Perform multiplication
10121 for pos in bitsizetype type instead of idx type.
10122
10123 2012-03-28 Richard Guenther <rguenther@suse.de>
10124
10125 * loop-init.c (loop_optimizer_init): If loops are preserved
10126 perform incremental initialization of required loop features.
10127 (loop_optimizer_finalize): If loops are to be preserved only
10128 clean up optional loop features.
10129 (rtl_loop_done): Forcefully free loops here.
10130 * cgraph.c (cgraph_release_function_body): Forcefully free loops.
10131 * cfgexpand.c (expand_gimple_cond): Properly add new basic-blocks
10132 to existing loops.
10133 (construct_init_block): Likewise.
10134 (construct_exit_block): Likewise.
10135 (gimple_expand_cfg): Clear LOOP_CLOSED_SSA loop state. Cleanup
10136 the CFG after expanding.
10137 * cfgloop.c (verify_loop_structure): Calculate or verify dominators.
10138 If we needed to calculate them, free them afterwards.
10139 * tree-pass.h (PROP_loops): New define.
10140 * tree-ssa-loop.c (pass_tree_loop_init): Provide PROP_loops.
10141 * basic-block.h (CLEANUP_CFG_CHANGED): New.
10142 * cfgcleanup.c (merge_blocks_move): Protect loop latches.
10143 (cleanup_cfg): If we did something and have loops around, fix them up.
10144 * cse.c (rest_of_handle_cse_after_global_opts): Call cleanup_cfg
10145 with CLEANUP_CFG_CHANGED.
10146 * cfghooks.c (merge_blocks): If we merge a loop header into
10147 its predecessor, update the loop structure.
10148 (duplicate_block): If we copy a loop latch, adjust loop state
10149 to note we may have multiple latches.
10150 (delete_basic_block): Mark loops for fixup if we remove a loop.
10151 * cfganal.c (forwarder_block_p): Protect loop latches, headers
10152 and preheaders.
10153 * cfgrtl.c (rtl_can_merge_blocks): Protect loop latches.
10154 (cfg_layout_can_merge_blocks_p): Likewise.
10155 * cprop.c (bypass_block): If we create a loop with multiple
10156 entries, mark it for removal.
10157 * except.c (emit_to_new_bb_before): Add the new basic-block
10158 to existing loops.
10159 * tree-eh.c (lower_resx): Likewise.
10160 * omp-low.c (finalize_task_copyfn): Do not copy PROP_loops.
10161 (expand_omp_taskreg): Likewise.
10162 * tree-inline.c (initialize_cfun): Likewise.
10163 * tree-mudflap.c (add_bb_to_loop): Prototype.
10164 (mf_build_check_statement_for): Properly add new basic-blocks
10165 to existing loops.
10166 * tree-ssa-threadupdate.c (thread_block): Mark loops for fixup
10167 if we remove a loop.
10168 (thread_through_loop_header): Likewise.
10169 * trans-mem.c (tm_log_emit_save_or_restores): Properly add
10170 new basic-blocks to existing loops.
10171 (expand_transaction): Likewise.
10172 * Makefile.in (except.o): Add $(CFGLOOP_H).
10173 (expr.o): Likewise.
10174 (cgraph.o): Likewise.
10175 (cprop.o): Likewise.
10176 (cfgexpand.o): Likewise.
10177 (cfganal.o): Likewise.
10178 (trans-mem.o): Likewise.
10179 (tree-eh.o): Likewise.
10180
10181 2012-03-28 Georg-Johann Lay <avr@gjlay.de>
10182
10183 PR target/52692
10184 * config/avr/avr.c (TARGET_BUILTIN_DECL): New define.
10185 (avr_builtin_decl): New static function.
10186 (struct avr_builtin_description, avr_bdesc): Move up.
10187 Add GTY marker. Add field fndecl. Remove redundant field id.
10188 (avr_init_builtins): Initialize avr_bdesc[ID].fndecl.
10189 (avr_expand_builtin): Code cleanup because .id is removed.
10190
10191 2012-03-28 Georg-Johann Lay <avr@gjlay.de>
10192
10193 PR target/52737
10194 * config.gcc (tm_file): Remove avr/multilib.h.
10195
10196 * doc/invoke.texi (AVR Options): Adjust documentation of -mtiny-stack.
10197
10198 * config/avr/genmultilib.awk: Remove code to generate multilib.h.
10199 (BEGIN): Use -msp8 as multilib option instead of -mtiny-stack.
10200 * config/avr/t-avr: Remove generation of multilib.h.
10201 * config/avr/t-multilib: Regenerate.
10202 * config/avr/multilib.h: Remove.
10203 * config/avr/avr.opt (-msp8): New option.
10204 (avr_sp8): New variable.
10205 * config/avr/driver-avr.c (avr_device_to_sp8): New function.
10206 * config/avr/avr.h (AVR_HAVE_SPH): New define.
10207 (AVR_HAVE_8BIT_SP): Also set by avr_sp8 i.e. -msp8.
10208 (avr_device_to_sp8): New prototype.
10209 (EXTRA_SPEC_FUNCTIONS): Add { "device_to_sp8", avr_device_to_sp8 }
10210 (DRIVER_SELF_SPECS): New define.
10211 * config/avr/avr-c.c (avr_cpu_cpp_builtins): New built-in defines:
10212 __AVR_SP8__, __AVR_HAVE_SPH__.
10213 * config/avr/avr.c (output_movhi): Use AVR_HAVE_SPH instead of
10214 AVR_HAVE_8BIT_SP to decide if SP_H is present.
10215 (avr_file_start): Ditto.
10216
10217 2012-03-28 Jakub Jelinek <jakub@redhat.com>
10218
10219 PR target/52736
10220 * config/i386/sse.md (sse2_loadlpd splitter): Use offset 0
10221 instead of 8 in adjust_address.
10222
10223 2012-03-27 Aurelien Buhrig <aurelien.buhrig.gcc@gmail.com>
10224
10225 PR middle-end/51893
10226 * expmed.c (store_bit_field_1): Fix wordnum value for big-endian
10227 targets.
10228
10229 2012-03-27 Oleg Endo <olegendo@gcc.gnu.org>
10230
10231 PR target/50751
10232 * config/sh/sh.c (sh_legitimize_address, sh_legitimize_reload_address):
10233 Rearrange conditional logic. Move displacement address calculations
10234 to ...
10235 (sh_find_mov_disp_adjust): ... this new function.
10236
10237 2012-03-27 H.J. Lu <hongjiu.lu@intel.com>
10238
10239 * config/arm/arm.opt (mapcs): Remove MaskExists.
10240 * config/cris/linux.opt (mno-gotplt): Likewise.
10241 * config/i386/i386.opt (mhard-float): Likewise.
10242 (msse4): Likewise.
10243 (mno-sse4): Likewise.
10244 * config/m68k/m68k.opt (mhard-float): Likewise.
10245 * config/mep/mep.op (mcop32): Likewise.
10246 * config/pa/pa-hpux.opt (msio): Likewise.
10247 * config/pa/pa64-hpux.opt (mgnu-ld): Likewise.
10248 * config/picochip/picochip.opt (mlittle): Likewise.
10249 * config/sh/sh.opt (mrenesas): Likewise.
10250 * config/sparc/long-double-switch.opt (mlong-double-128): Likewise.
10251 * config/sparc/sparc.opt (mhard-float): Likewise.
10252 * config/v850/v850.opt (mv850es): Likewise.
10253 * config/vax/vax.opt (mg-float): Likewise.
10254
10255 2012-03-27 Martin Jambor <mjambor@suse.cz>
10256
10257 PR middle-end/52693
10258 * tree-sra.c (sra_modify_assign): Do not call
10259 load_assign_lhs_subreplacements when working with an unscalarizable
10260 region.
10261
10262 2012-03-27 Uros Bizjak <ubizjak@gmail.com>
10263
10264 PR target/52698
10265 * config/i386/i386-protos.h (ix86_legitimize_reload_address):
10266 New prototype.
10267 * config/i386/i386.h (LEGITIMIZE_RELOAD_ADDRESS): New define.
10268 * config/i386/i386.c: Include reload.h.
10269 (ix86_legitimize_reload_address): New function.
10270
10271 2012-03-27 H.J. Lu <hongjiu.lu@intel.com>
10272
10273 * opth-gen.awk: Allocated a bit for Mask and InverseMask if it
10274 hasn't been allocated. Define a target macro for Mask and
10275 InverseMask if it hasn't been defined. Remove MaskExists handling.
10276
10277 * doc/options.texi: Remove MaskExists.
10278
10279 2012-03-27 Chung-Lin Tang <cltang@codesourcery.com>
10280
10281 PR target/52667
10282 * config/sh/sh.c (find_barrier): Add equality check of last_got
10283 to avoid going above orig insn. Update comments.
10284
10285 2012-03-27 Richard Guenther <rguenther@suse.de>
10286
10287 PR middle-end/52720
10288 * fold-const.c (try_move_mult_to_index): Handle &x.array more
10289 explicitely.
10290
10291 2012-03-27 Eric Botcazou <ebotcazou@adacore.com>
10292
10293 * expmed.c (store_bit_field): Assert that BITREGION_START is a multiple
10294 of a unit before computing the offset in units.
10295 * expr.c (get_bit_range): Return the null range if the enclosing record
10296 is part of a larger bit field.
10297
10298 2012-03-27 Tristan Gingold <gingold@adacore.com>
10299
10300 * config/ia64/vms.h (CASE_VECTOR_MODE): Define.
10301 * config/ia64/ia64.md: Remove mode in template.
10302 Sign extend operand in expand_simple_binop.
10303 * config/ia64/ia64.h (ASM_OUTPUT_ADDR_DIFF_ELT): Use
10304 CASE_VECTOR_MODE instead of TARGET_ILP32.
10305 (ADDR_VEC_ALIGN): Make it depends on CASE_VECTOR_MODE.
10306
10307 2012-03-26 Steven Bosscher <steven@gcc.gnu.org>
10308
10309 * varasm.c (assemble_external): #if 0 out the new assert from the
10310 previous commit, it breaks the Java and Go front ends.
10311
10312 2012-03-26 Steven Bosscher <steven@gcc.gnu.org>
10313
10314 * toplev.c (check_global_declaration_1): Do not call assemble_external.
10315 * expr.c (emit_block_move_libcall_fn): Likewise.
10316 (clear_storage_libcall_fn): Likewise.
10317 (expand_expr_addr_expr_1): Likewise.
10318 (expand_expr_real_1): Likewise.
10319 * calls.c (rtx_for_function_call): Likewise.
10320
10321 * varasm.c (assemble_external): Assert this function is only called
10322 during or after expanding to RTL.
10323
10324 2012-03-26 Martin Jambor <mjambor@suse.cz>
10325
10326 PR tree-optimization/50052
10327 * tree-sra.c (tree_non_aligned_mem_p): Removed.
10328 (tree_non_aligned_mem_for_access_p): Likewise.
10329 (build_accesses_from_assign): Removed strict alignment requirements
10330 checks.
10331 (access_precludes_ipa_sra_p): Likewise.
10332
10333 2012-03-26 Richard Guenther <rguenther@suse.de>
10334
10335 PR tree-optimization/52701
10336 * tree-vect-loop.c (vect_analyze_scalar_cycles_1): Always
10337 compute and set the evolution part of PHI nodes.
10338
10339 2012-03-26 Richard Guenther <rguenther@suse.de>
10340
10341 PR tree-optimization/52721
10342 * tree-vect-stmts.c (vect_init_vector): Handle scalars.
10343
10344 2012-03-26 Ulrich Weigand <ulrich.weigand@linaro.org>
10345
10346 PR tree-optimization/52686
10347 * tree-vect-data-refs.c (vect_get_smallest_scalar_type): Handle
10348 WIDEN_LSHIFT_EXPR.
10349
10350 2012-03-26 Tristan Gingold <gingold@adacore.com>
10351
10352 * config/alpha/vms.h (LINK_SPEC): Simplify.
10353 (STARTFILE_SPEC): Remove -mvms-return-codes handling.
10354 (NAME__MAIN, SYMBOL__MAIN): Remove.
10355 (VMS_DEBUG_MAIN_POINTER): Remove.
10356 * config/ia64/vms.h: Likewise.
10357 * config/alpha/alpha.c (alpha_start_function): Move vms_debug_main
10358 code to vms.c. Call vms_start_function.
10359 * config/ia64/ia64.c (ia64_start_function): Likewise.
10360 * config/vms/vms-protos.h (vms_start_function): Declare.
10361 * config/vms/vms.c (vms_start_function): New function.
10362 * config/vms/vms.h (MATH_LIBRARY): Define.
10363 (VMS_DEBUG_MAIN_POINTER): Define.
10364
10365 2012-03-26 Eric Botcazou <ebotcazou@adacore.com>
10366
10367 PR rtl-optimization/52629
10368 * reload1.c (count_pseudo): Short-circuit common case.
10369 (count_spilled_pseudo): Return early for pseudos without hard regs.
10370 Assert that the pseudo has got a hard reg before manipulating it.
10371
10372 2012-03-24 Jan Hubicka <jh@suse.cz>
10373
10374 PR lto/51663
10375 * varpool.c (varpool_finalize_decl): Handle toplevel_reorder here.
10376 (decide_is_variable_needed): Do not handle toplevel reorder here.
10377 * cgraph.h (varpool_can_remove_if_no_refs): Likewise.
10378 * ipa.c (cgraph_remove_unreachable_nodes): Remove unreachable vars
10379 even at -O0.
10380
10381 2012-03-24 Eric Botcazou <ebotcazou@adacore.com>
10382
10383 * expr.c (optimize_bitfield_assignment_op) <BIT_IOR_EXPR>: Use str_mode
10384 and str_bitsize instead of more convoluted expressions.
10385
10386 2012-03-24 Eric Botcazou <ebotcazou@adacore.com>
10387
10388 PR target/52610
10389 * config/sparc/sparc.h (ASM_CPU_SPEC): Pass -Av8 if -mcpu=leon.
10390
10391 2012-03-24 Eric Botcazou <ebotcazou@adacore.com>
10392
10393 PR target/52656
10394 * config/sparc/sparc.c (sparc_handle_vis_mul8x16): Fix pasto.
10395
10396 2012-03-23 Martin Jambor <mjambor@suse.cz>
10397
10398 * tree-sra.c (build_accesses_from_assign): Remove FIXME comment.
10399
10400 2012-03-23 Richard Guenther <rguenther@suse.de>
10401
10402 PR tree-optimization/52678
10403 * tree-vectorizer.h (struct _stmt_vec_info): Add
10404 loop_phi_evolution_part member.
10405 (STMT_VINFO_LOOP_PHI_EVOLUTION_PART): New define.
10406 * tree-vect-loop.c (vect_analyze_scalar_cycles_1): Initialize
10407 STMT_VINFO_LOOP_PHI_EVOLUTION_PART.
10408 * tree-vect-loop-manip.c (vect_update_ivs_after_vectorizer):
10409 Use the cached evolution part and the PHI nodes value from
10410 the loop preheader edge instead of re-analyzing the evolution.
10411
10412 2012-03-22 Maxim Kuvyrkov <maxim@codesourcery.com>
10413
10414 * config/mips/mips-tables.opt: Update.
10415 * config/mips/mips.md (processor): Add xlp.
10416 * config/mips/mips-cpus.def: Add xlp.
10417 * config/mips/mips.c (mips_rtx_cost_data): Add costs for XLP, copy from
10418 5KF for now.
10419 * config/mips/mips.h (MIPS_ISA_LEVEL_SPEC): Handle xlp.
10420 * doc/invoke.texi: Mention XLP.
10421
10422 2012-03-22 Jakub Jelinek <jakub@redhat.com>
10423
10424 PR middle-end/52547
10425 * tree-nested.c (convert_tramp_reference_stmt): Call declare_vars
10426 on any new_local_var_chain vars declared during recursing on
10427 GIMPLE_OMP_PARALLEL or GIMPLE_OMP_TASK body.
10428
10429 2012-03-22 Uros Bizjak <ubizjak@gmail.com>
10430
10431 * config/alpha/alpha.h (ASM_OUTPUT_ALIGN): Move to config/alpha/elf.h
10432 (ASM_OUTPUT_SKIP): Move to config/alpha/vms.h
10433 (ASM_OUTPUT_LOCAL): Ditto.
10434 (ASM_OUTPUT_COMMON): Remove.
10435 * config/alpha/elf.h (ASM_OUTPUT_DEF_FROM_DECLS): Use ASM_OUTPUT_DEF.
10436 * config/alpha/vms.h (ASM_OUTPUT_ALIGN): Do not undefine before define.
10437
10438 2012-03-22 Jan Hubicka <jh@suse.cz>
10439
10440 PR middle-end/51737
10441 * cgraph.c (cgraph_remove_node_and_inline_clones): Add FORBIDDEN_NODE
10442 parameter.
10443 * cgraph.h (cgraph_remove_node_and_inline_clones): Update prototype.
10444 * ipa-inline-transform.c (save_inline_function_body): Remove
10445 copied clone if needed.
10446 * tree-inline.c (delete_unreachable_blocks_update_callgraph): Update.
10447
10448 2012-03-22 Richard Guenther <rguenther@suse.de>
10449
10450 PR middle-end/52666
10451 * fold-const.c (fold_ternary_loc): Fix typo.
10452
10453 2012-03-22 Georg-Johann Lay <avr@gjlay.de>
10454
10455 PR target/52496
10456 * config/avr/avr.md (unspec): Remove UNSPEC_MEMORY_BARRIER.
10457 (unspecv): Add UNSPECV_MEMORY_BARRIER.
10458 (cli_sei): Use unspec_volatile instead of unspec for memory barrier.
10459 (delay_cycles_1, delay_cycles_2): Ditto.
10460 (delay_cycles_3, delay_cycles_4): Ditto.
10461 (nopv, *nopv): Ditto.
10462 (sleep, *sleep): Ditto.
10463 (wdr, *wdr): Ditto.
10464
10465 2012-03-22 Richard Guenther <rguenther@suse.de>
10466
10467 PR tree-optimization/52548
10468 * tree-ssa-pre.c (valid_in_sets): Remove handling of invalidation
10469 because of clobbers.
10470 (prune_clobbered_mems): New function.
10471 (compute_antic_aux): Use it to prune ANTIC_OUT.
10472 (compute_partial_antic_aux): Use it to prune PA_IN.
10473 (compute_avail): Only insert expressions into EXP_GEN that are not
10474 invalidated when translated up to the beginning of the block.
10475
10476 2012-03-22 Richard Guenther <rguenther@suse.de>
10477
10478 PR tree-optimization/52638
10479 * tree-vect-stmts.c (vect_init_vector_1): New function, split
10480 out from ...
10481 (vect_init_vector): ... here. Handle scalar vector inits.
10482 (vect_get_vec_def_for_operand): Adjust.
10483 (vectorizable_load): Likewise.
10484
10485 2012-03-22 Uros Bizjak <ubizjak@gmail.com>
10486
10487 * config.gcc (alpha*-*-linux*): Add elfos.h to tm_file.
10488 (alpha*-*-freebsd*): Ditto.
10489 (alpha*-*-netbsd*): Ditto.
10490 (alpha*-*-openbsd*): Ditto.
10491 * config/alpha/elf.h (OBJECT_FORMAT_ELF): Remove.
10492 (DWARF2_DEBUGGING_INFO): Remove.
10493 (PREFERRED_DEBUGGING_TYPE): Remove.
10494 (ASM_FINAL_SPEC): Remove.
10495 (IDENT_ASM_OP): Remove.
10496 (ASM_OUTPUT_IDENT): Remove.
10497 (SKIP_ASM_OP): Remove.
10498 (ASM_OUTPUT_SKIP): Remove.
10499 (ALIGN_ASM_OP): Remove.
10500 (ASM_OUTPUT_BEFORE_CASE_LABEL): Remove.
10501 (ASM_OUTPUT_CASE_LABEL): Remove.
10502 (ASM_OUTPUT_EXTERNAL_LIBCALL): Remove.
10503 (COMMON_ASM_OP): Remove.
10504 (ASM_OUTPUT_ALIGNED_COMMON): Remove.
10505 (ASCII_DATA_ASM_OP): Remove.
10506 (READONLY_DATA_SECTION_ASM_OP): Remove.
10507 (INIT_SECTION_ASM_OP): Remove.
10508 (FINI_SECTION_ASM_OP): Remove.
10509 (ASM_SECTION_START_OP): Remove.
10510 (ASM_OUTPUT_SECTION_START_FILE): Remove.
10511 (TARGET_ASM_NAMED_SECTION): Remove.
10512 (TARGET_ASM_SELECT_SECTION): Remove.
10513 (MAKE_DECL_ONE_ONLY): Remove.
10514 (TYPE_ASM_OP): Remove.
10515 (SIZE_ASM_OP): Remove.
10516 (ASM_WEAKEN_LABEL): Remove.
10517 (TYPE_OPERAND_FMT): Remove.
10518 (ASM_DECLARE_RESULT): Remove.
10519 (ASM_DECLARE_OBJECT_NAME): Remove.
10520 (ASM_FINISH_DECLARE_OBJECT): Remove.
10521 (ELF_ASCII_ESCAPES): Remove.
10522 (ELF_STRING_LIMIT): Remove.
10523 (STRING_ASM_OP): Remove.
10524 (ASM_OUTPUT_EXTERNAL): Remove.
10525 (TARGET_ASM_FILE_START_FILE_DIRECTIVE): Redefine to false.
10526 * config/alpha/alpha.h (PCC_BITFIELD_TYPE_MATTERS): Undefine
10527 before define.
10528 (ASM_DECLARE_FUNCTION_NAME): Ditto.
10529 (ASM_DECLARE_FUNCTION_SIZE): Ditto.
10530 (ASM_GENERATE_INTERNAL_LABEL): Ditto.
10531 (ASM_OUTPUT_SKIP): Ditto.
10532 (READONLY_DATA_SECTION_ASM_OP): Remove.
10533 (USER_LABEL_PREFIX): Remove.
10534 (ASM_OUTPUT_ASCII): Remove.
10535 (ASM_OUTPUT_CASE_LABEL): Remove.
10536 (NO_DOLLAR_IN_LABEL): Undefine.
10537
10538 2012-03-22 Richard Guenther <rguenther@suse.de>
10539
10540 PR tree-optimization/52459
10541 * tree-ssa-pre.c (inhibit_phi_insertion): Do not inhibit
10542 PHI insertion for calls.
10543
10544 2012-03-21 Steven Bosscher <steven@gcc.gnu.org>
10545
10546 * cse.c (invalidate_from_sets_and_clobbers, try_back_substitute_reg,
10547 find_sets_in_insn, canonicalize_insn): Split out from ...
10548 (cse_insn): ... here.
10549 (invalidate_from_clobbers): Take an insn instead of the pattern.
10550
10551 2012-03-21 Oleg Endo <olegendo@gcc.gnu.org>
10552
10553 PR target/52479
10554 * config/sh/sh-protos.h (sh_fsca_df2int): Remove.
10555 * config/sh/sh.c (sh_fsca_df2int_rtx, sh_fsca_df2int): Remove.
10556 * config/sh/sh.md (sindf2, cosdf2): Remove.
10557
10558 2012-03-21 Kaz Kojima <kkojima@gcc.gnu.org>
10559
10560 PR target/52642
10561 * config/sh/sh.c (sh_expand_prologue): Emit blockage at the end of
10562 prologue for unwinder and profiler.
10563
10564 2012-03-21 Andreas Tobler <andreast@fgznet.ch>
10565
10566 * configure.ac (HAVE_LD_NO_DOT_SYMBOLS): Add powerpc64-*-freebsd*.
10567 Introduce emul_name to select the right linker emulation for
10568 powerpc64-*-freebsd*.
10569 * configure: Regenerate.
10570 * config.gcc: Add bits to support powerpc64-*-freebsd*.
10571 * config/rs6000/freebsd.h (POWERPC_FREEBSD): Define.
10572 * config/rs6000/freebsd64.h: New file.
10573 * config/rs6000/rs6000.c (rs6000_option_override_internal): Use
10574 POWERPC_FREEBSD.
10575 (rs6000_savres_strategy): Likewise.
10576 (rs6000_savres_routine_name): Likewise.
10577 (rs6000_elf_file_end): Likewise.
10578 * config/rs6000/t-freebsd64: New file.
10579 * config/rs6000/sysv4.h (SUBTARGET_OVERRIDE_OPTIONS): Set the
10580 rs6000_current_abi for 64-bit FreeBSD to ABI_AIX.
10581
10582 * config/rs6000/freebsd64.h: Remove duplicated entries from last
10583 commit.
10584 * config/rs6000/t-freebsd64: Likewise.
10585
10586 2012-03-21 Georg-Johann Lay <avr@gjlay.de>
10587
10588 PR rtl-optimization/52543
10589 PR target/52461
10590 * config/avr/avr-protos.h (avr_load_lpm): New prototype.
10591 * config/avr/avr.c (avr_mode_dependent_address_p): New function.
10592 (TARGET_MODE_DEPENDENT_ADDRESS_P): New define.
10593 (avr_load_libgcc_p): Restrict to __flash loads.
10594 (avr_out_lpm): Only handle 1-byte loads from __flash.
10595 (avr_load_lpm): New function.
10596 (avr_find_unused_d_reg): Remove.
10597 (avr_out_lpm_no_lpmx): Remove.
10598 (adjust_insn_length): Handle ADJUST_LEN_LOAD_LPM.
10599 * config/avr/avr.md (unspec): Add UNSPEC_LPM.
10600 (load_<mode>_libgcc): Use UNSPEC_LPM instead of MEM.
10601 (load_<mode>, load_<mode>_clobber): New insns.
10602 (mov<mode>): For multi-byte move from non-generic
10603 16-bit address spaces: Expand to load_<mode> resp.
10604 load_<mode>_clobber.
10605 (load<mode>_libgcc): Remove expander.
10606 (split-lpmx): Remove split.
10607
10608 2012-03-21 Richard Earnshaw <rearnsha@arm.com>
10609
10610 * neon.md (neon_vget_lanev2di): Use gen_lowpart and gen_highpart.
10611 * config/arm/neon.ml (Fixed_return_reg): Renamed to fixed_vector_reg.
10612 All callers changed.
10613 (Fixed_core_reg): New feature.
10614 (Vget_lane [sizes S64 and U64]): Add Fixed_core_reg. Allow fmrrd in
10615 disassembly.
10616 * neon-testgen.ml: Handle Fixed_core_reg.
10617
10618 2012-03-21 Andrew Stubbs <ams@codesourcery.com>
10619
10620 * config/arm/arm.c (thumb2_reorg): Add complete support
10621 for 16-bit instructions.
10622 * config/arm/thumb2.md: Delete obsolete flag-clobbering peepholes.
10623
10624 2012-03-21 Richard Guenther <rguenther@suse.de>
10625
10626 PR tree-optimizer/52636
10627 * tree-vect-slp.c (vect_get_constant_vectors): Convert constants
10628 to the appropriate type.
10629
10630 2012-03-21 Richard Guenther <rguenther@suse.de>
10631
10632 * Makefile.in (cfgexpand.o): Add $(REGS_H) and $(INTEGRATE_H)
10633 dependencies.
10634 * cfgexpand.c (gimple_expand_cfg): Fold in pass_init_function,
10635 pass_jump, pass_initial_value_sets and pass_unshare_all_rtl.
10636 * passes.c (init_optimization_passes): Remove pass_init_function,
10637 pass_jump, pass_initial_value_sets and pass_unshare_all_rtl.
10638 * tree-pass.h (pass_init_function): Remove.
10639 (pass_jump): Remove.
10640 (pass_initial_value_sets): Remove.
10641 (pass_unshare_all_rtl): Remove.
10642 * integrate.c (pass_initial_value_sets): Remove.
10643 * emit-rtl.c (pass_unshare_all_rtl): Remove.
10644 * tree.h (init_function_for_compilation): Remove.
10645 * function.c (init_function_for_compilation): Remove.
10646 (pass_init_function): Remove.
10647 * cfgcleanup.c (rest_of_handle_jump): Remove.
10648 (pass_jump): Remove.
10649
10650 2012-03-20 Jason Merrill <jason@redhat.com>
10651
10652 * tree-streamer-in.c (streamer_alloc_tree): Call
10653 ggc_alloc_zone_cleared_tree_node instead of
10654 ggc_alloc_zone_cleared_tree_node_stat.
10655
10656 2012-03-20 Jonathan Wakely <jwakely.gcc@gmail.com>
10657
10658 * doc/extend.texi (Template Instantiation): Remove anachronisms.
10659
10660 2012-03-20 Jakub Jelinek <jakub@redhat.com>
10661
10662 PR target/52607
10663 * config/i386/i386.c (expand_vec_perm_vperm2f128): New function.
10664 (ix86_expand_vec_perm_const_1): Call it.
10665
10666 * config/i386/i386.c (vselect_insn): New variable.
10667 (init_vselect_insn): New function.
10668 (expand_vselect, expand_vselect_insn): Add testing_p argument.
10669 Call init_vselect_insn if vselect_insn is NULL. Adjust
10670 PATTERN (vselect_insn), instead of creating a new insn each time,
10671 only emit a copy of it if not testing and recog has been successful.
10672 (expand_vec_perm_pshufb, expand_vec_perm_1,
10673 expand_vec_perm_pshuflw_pshufhw, expand_vec_perm_broadcast_1): Adjust
10674 callers.
10675
10676 PR target/52607
10677 * config/i386/i386.md ("isa" attribute): Add avx2 and noavx2.
10678 ("enabled" attribute): Handle avx2 and noavx2 isas.
10679 * config/i386/sse.md (avx2_vec_dupv8sf_1, avx2_pbroadcast<mode>_1):
10680 New insns.
10681 (vec_dup<mode>): Add avx2 =x,x alternative.
10682 (vec_dup<mode> splitter): Don't split if TARGET_AVX2.
10683 (*avx_vperm_broadcast_<mode>): Don't split V4DFmode if TARGET_AVX2.
10684 For TARGET_AVX2, V8SFmode and elt == 0 split into vbroadcastss.
10685 * config/i386/i386.c (expand_vec_perm_pshufb): Emit also vpermps
10686 for V8SFmode.
10687 (expand_vec_perm_1): For broadcasts, use avx2_pbroadcast<mode>_1
10688 if possible, handle also V8SFmode.
10689
10690 2012-03-20 Richard Earnshaw <rearnsha@arm.com>
10691
10692 * arm/predicates.md (zero_operand, reg_or_zero_operand): New predicates.
10693 * arm/neon.md (neon_vceq<mode>, neon_vcge<mode>): Use
10694 reg_or_zero_operand predicate.
10695 (neon_vcle<mode>, neon_vclt<mode>): Use zero_operand predicate.
10696
10697 2012-03-20 Jakub Jelinek <jakub@redhat.com>
10698
10699 * config/i386/i386.c (ix86_decompose_address) <case ZERO_EXTEND>:
10700 If operand isn't UNSPEC, return 0.
10701
10702 2012-03-20 Richard Guenther <rguenther@suse.de>
10703
10704 * tree-pass.h (pass_rtl_eh): Remove.
10705 * except.c (gate_handle_eh): Likewise.
10706 (rest_of_handle_eh): Likewise.
10707 (pass_rtl_eh): Likewise.
10708 (finish_eh_generation): Export.
10709 * except.h (finish_eh_generation): Declare.
10710 * passes.c (init_optimization_passes): Remove pass_rtl_eh.
10711 * cfgexpand.c (gimple_expand_cfg): Call finish_eh_generation
10712 after expanding stack alignment. Instead of compacting blocks
10713 call cleanup_cfg.
10714
10715 2012-03-20 Richard Guenther <rguenther@suse.de>
10716
10717 * stor-layout.c (finish_bitfield_representative): Fallback
10718 to conservative maximum size if the padding up to the next
10719 field cannot be computed as a constant.
10720 (finish_bitfield_layout): If we cannot compute the distance
10721 between the start of the bitfield representative and the
10722 bitfield member start a new representative.
10723 * expr.c (get_bit_range): The distance between the start of
10724 the bitfield representative and the bitfield member is zero
10725 if the field offsets are not constants.
10726
10727 2012-03-20 Tristan Gingold <gingold@adacore.com>
10728
10729 * tree.h (enum size_type_kind): Add stk_ prefix to constants,
10730 convert in lowercase.
10731 (sizetype_tab, sizetype, bitsizetype, ssizetype, sbitsizetype)
10732 (size_int, ssize_int, bitsize_int, sbitsize_int): Adjust.
10733 * stor-layout.c (sizetype_tab): Adjust.
10734 (initialize_sizetypes): Use SIZETYPE instead of SIZE_TYPE.
10735 * tree-streamer.c (preload_common_nodes): Use stk_type_kind_last
10736 instead of type_kind_last.
10737 * tree-scalar-evolution.c (interpret_rhs_expr): Use size_int
10738 instead of size_int_kind.
10739 * doc/tm.texi.in (Type Layout): Document SIZETYPE.
10740 * doc/tm.texi: Regenerate.
10741 * defaults.h (SIZETYPE): Provide a default value.
10742 * config/vms/vms.h (SIZE_TYPE): Define as "unsigned int".
10743 (SIZETYPE): Define.
10744
10745 2012-03-20 Oleg Endo <olegendo@gcc.gnu.org>
10746
10747 * config/sh/sh.md: Use braced string notation where applicable.
10748
10749 2012-03-19 Uros Bizjak <ubizjak@gmail.com>
10750
10751 * config/i386/i386.md (allocate_stack): Simplify.
10752
10753 2012-03-19 Uros Bizjak <ubizjak@gmail.com>
10754
10755 * builtins.c (expand_builtin_cexpi): Use copy_addr_to_reg instead of
10756 copy_to_mode_reg (Pmode, ...).
10757 (expand_builtin_frame_address): Ditto.
10758 * expr.c (emit_block_move_via_libcall): Ditto.
10759 (set_storage_via_libcall): Ditto.
10760
10761 * config/i386/i386.c (ix86_expand_movmem): Ditto.
10762 (ix86_expand_setmem): Ditto.
10763 (ix86_trampoline_init): DItto.
10764 * config/i386/i386.md (cmpstrnsi): Ditto.
10765
10766 2012-03-19 Sandra Loosemore <sandra@codesourcery.com>
10767
10768 * config/sh/sh.opt (madjust-unroll): Mark as ignored/obsolete.
10769 * config/sh/sh.h (TARGET_OPT_DEFAULT): Don't use MASK_ADJUST_UNROLL.
10770 * doc/invoke.texi (Option Summary): Remove -madjust-unroll.
10771 (SH Options): Likewise.
10772
10773 2012-03-19 Uros Bizjak <ubizjak@gmail.com>
10774
10775 * config/i386/i386.c (get_thread_pointer): Add tp_mode argument.
10776 Generate ZERO_EXTEND in place if GET_MODE (tp) != tp_mode.
10777 (legitimize_tls_address) <TLS_MODEL_INITIAL_EXEC>: Always generate
10778 DImode UNSPEC_GOTNTPOFF references on TARGET_64BIT.
10779 (ix86_decompose_address): Allow zero extended UNSPEC_TP references.
10780
10781 Revert:
10782 2012-03-13 Uros Bizjak <ubizjak@gmail.com>
10783
10784 * config/i386/i386.h (TARGET_TLS_INDIRECT_SEG_REFS): New.
10785 * config/i386/i386.c (ix86_decompose_address): Use
10786 TARGET_TLS_INDIRECT_SEG_REFS to prevent %fs:(%reg) addresses.
10787 (legitimize_tls_address): Use TARGET_TLS_INDIRECT_SEG_REFS to load
10788 thread pointer to a register.
10789
10790 Revert:
10791 2012-03-10 H.J. Lu <hongjiu.lu@intel.com>
10792
10793 * config/i386/i386.c (ix86_decompose_address): Disallow fs:(reg)
10794 if Pmode != word_mode.
10795 (legitimize_tls_address): Call gen_tls_initial_exec_x32 if
10796 Pmode == SImode for TARGET_X32.
10797
10798 * config/i386/i386.md (UNSPEC_TLS_IE_X32): New.
10799 (tls_initial_exec_x32): Likewise.
10800
10801 2012-03-19 Oleg Endo <olegendo@gcc.gnu.org>
10802
10803 PR target/50751
10804 * config/sh/sh.h (CONST_OK_FOR_K04, CONST_OK_FOR_K12, DISP_ADDR_P,
10805 DISP_ADDR_OFFSET): New macros.
10806 * config/sh/sh.c (sh_address_cost): Add SH2A special case.
10807 (sh_legitimate_index_p): Allow QImode displacements for non-SH2A.
10808 (sh_legitimize_address): Add QImode displacement handling.
10809 (sh_cannot_change_mode_class): Disallow GENERAL_REGS for SFmode
10810 vector subregs.
10811 (sh_secondary_reload): Add QImode displacement handling.
10812 * config/sh/predicates.md (movsrc_no_disp_mem_operand): New predicate.
10813 * config/sh/constraints.md (K04, Snd, Sdd): New constraints.
10814 * config/sh/sh.md (extendqisi2): Remove constraints from expander.
10815 (*extendqisi2_compact): Rename to *extendqisi2_compact_reg, restrict
10816 to register operands only.
10817 (*extendqisi2_compact_mem_disp, *extendqisi2_compact_snd): New insns.
10818 (extendqihi2): Change insn to expander.
10819 (*extendqihi2_compact_reg): New insn.
10820 (movqi_i, movqi): Replace with ...
10821 (movqi, *movqi_reg_reg, *movqi_store_mem_disp12,
10822 *movqi_load_mem_disp, *movqi_load_mem_disp): ... these.
10823 Add new peepholes for QImode displacement addressing.
10824
10825 2012-03-19 Paolo Carlini <paolo.carlini@oracle.com>
10826
10827 PR c++/14710
10828 * doc/invoke.texi: Document -Wuseless-cast.
10829
10830 2012-03-19 Eric Botcazou <ebotcazou@adacore.com>
10831
10832 * tree.def (REALPART_EXPR, IMAGPART_EXPR, VIEW_CONVERT_EXPR): Move.
10833 * tree.h (handled_component_p): Reorder cases.
10834 * dwarf2out.c (loc_list_for_address_of_addr_expr_of_indirect_ref): Do
10835 not initialize unsignedp.
10836 (loc_list_from_tree): Likewise.
10837 (fortran_common): Likewise.
10838 * simplify-rtx.c (delegitimize_mem_from_attrs): Likewise.
10839
10840 2012-03-19 Uros Bizjak <ubizjak@gmail.com>
10841
10842 * config/i386/i386.c (ix86_expand_prologue) <CM_LARGE_PIC>: Use Pmode
10843 mode consistently. Use ix86_gen_add3. Assert that Pmode == DImode.
10844 (ix86_expand_split_stack_prologue): Use ix86_gen_add3.
10845 (ix86_split_long_move): Ditto.
10846 (legitimize_tls_address): Use ix86_gen_sub3.
10847 (construct_plt_address): Assert that Pmode == DImode.
10848
10849 2012-03-18 Uros Bizjak <ubizjak@gmail.com>
10850
10851 * config/i386/i386.md: Remove empty predicates and/or constraints.
10852 * config/i386/sync.md: Ditto.
10853 * config/i386/sse.md: Ditto.
10854 * config/i386/mmx.md: Ditto.
10855 * config/i386/pentium.md: Ditto.
10856 * config/i386/athlon.md: Ditto.
10857
10858 2012-03-16 Richard Guenther <rguenther@suse.de>
10859
10860 PR tree-optimization/52603
10861 * tree-vect-data-refs.c (vect_can_force_dr_alignment_p): Clarify
10862 comment.
10863
10864 Revert
10865 2012-03-14 Richard Guenther <rguenther@suse.de>
10866
10867 PR tree-optimization/52571
10868 * tree-vect-data-refs.c (vect_compute_data_ref_alignment): Move
10869 flag_section_anchors check ...
10870 (vect_can_force_dr_alignment_p): ... here.
10871
10872 2012-03-16 Martin Jambor <mjambor@suse.cz>
10873
10874 * expr.c (expand_expr_real_1): Handle misaligned scalar reads from
10875 memory through MEM_REFs by calling extract_bit_field.
10876
10877 2012-03-16 Richard Guenther <rguenther@suse.de>
10878
10879 * fold-const.c (native_interpret_expr): Also support POINTER_TYPE
10880 and REFERENCE_TYPE interpretations.
10881 (can_native_interpret_type_p): New function.
10882 (fold_ternary_loc): Use native encode/interpret to fold
10883 BIT_FIELD_REFs of constants.
10884
10885 2012-03-16 Richard Guenther <rguenther@suse.de>
10886
10887 PR middle-end/52584
10888 * fold-const.c (fold_ternary_loc): Fold vector typed BIT_FIELD_REFs
10889 of vector constants and constructors.
10890
10891 2012-03-16 Richard Guenther <rguenther@suse.de>
10892
10893 * tree-vect-stmts.c (vect_get_vec_def_for_operand): Use
10894 VIEW_CONVERT_EXPR to convert constants.
10895 (vect_is_simple_use): Treat all constants as vec_constant_def.
10896
10897 2012-03-16 Richard Guenther <rguenther@suse.de>
10898 Kai Tietz <ktietz@redhat.com>
10899
10900 PR middle-end/48814
10901 * gimplify.c (gimplify_self_mod_expr): Evaluate postfix
10902 side-effects completely in the pre-queue and use a temporary
10903 for the result.
10904
10905 2012-03-16 Richard Guenther <rguenther@suse.de>
10906
10907 * stor-layout.c (finish_bitfield_representative): Fall back
10908 to the conservative maximum size if we cannot compute the
10909 size of the tail padding.
10910
10911 2012-03-16 Tristan Gingold <gingold@adacore.com>
10912
10913 * config/vms/vms.h (TARGET_OS_CPP_BUILTINS): Define
10914 __CRTL_VER and __VMS_VER.
10915 * config/vms/vms-protos.h: Declare vms_c_get_crtl_ver
10916 and vms_c_get_vms_ver.
10917 * config/vms/vms-c.c (vms_c_get_crtl_ver, vms_c_get_vms_ver): New
10918 functions.
10919 * config/alpha/vms.h (VMS_DEFAULT_CRTL_VER)
10920 (VMS_DEFAULT_VMS_VER): Define.
10921 * config/ia64/vms.h (VMS_DEFAULT_CRTL_VER)
10922 (VMS_DEFAULT_VMS_VER): Define.
10923
10924 2012-03-16 Richard Guenther <rguenther@suse.de>
10925
10926 * tree-vect-loop.c (get_initial_def_for_induction): Use
10927 build_constructor directly.
10928 * tree-vect-stmts.c (vect_get_vec_def_for_operand): Use
10929 build_vector_from_val.
10930 * tree.c (build_vector_from_val): Avoid creating a constructor
10931 first when we want a constant vector.
10932
10933 2012-03-16 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
10934
10935 * doc/install.texi (Specific, *-*-solaris2*): Improve wording.
10936
10937 2012-03-16 Richard Guenther <rguenther@suse.de>
10938
10939 * tree.h (TREE_VECTOR_CST_ELTS): Remove.
10940 (VECTOR_CST_NELTS, VECTOR_CST_ELTS, VECTOR_CST_ELT): New defines.
10941 (struct tree_vector): Remove elements member, add variable size
10942 elts array member.
10943 (build_vector_stat): Declare.
10944 (build_vector): Define in terms of build_vector_stat.
10945 * tree.c (build_vector): Rename to ...
10946 (build_vector_stat): ... this. Take array of trees as parameter.
10947 (build_vector_from_ctor): Adjust.
10948 (integer_zerop, integer_onep, integer_all_onesp, iterative_hash_expr,
10949 initializer_zerop): Adjust.
10950 * cfgexpand.c (expand_debug_expr): Likewise.
10951 * expr.c (categorize_ctor_elements_1, expand_expr_real_1,
10952 const_vector_from_tree): Likewise.
10953 * fold-const.c (const_binop, operand_equal_p, native_encode_vector,
10954 native_interpret_vector, fold_unary_loc, vec_cst_ctor_to_array,
10955 fold_vec_perm, fold_binary_loc, fold_ternary_loc): Likewise.
10956 * tree-streamer-in.c (streamer_alloc_tree): Handle TS_VECTOR.
10957 (lto_input_ts_vector_tree_pointers): Adjust.
10958 * tree-streamer-out.c (streamer_write_tree_header): Handle TS_VECTOR.
10959 (write_ts_vector_tree_pointers): Adjust.
10960 * varasm.c (const_hash_1, compare_constant, copy_constant,
10961 output_constant): Adjust.
10962 * gimple-fold.c (gimple_fold_stmt_to_constant_1): Adjust.
10963 * print-tree.c (print_node): Adjust.
10964 * tree-pretty-print.c (dump_generic_node): Adjust.
10965 * tree-vect-generic.c (uniform_vector_p, vector_element,
10966 lower_vec_perm): Adjust.
10967 * tree-vect-loop.c (get_initial_def_for_reduction): Adjust.
10968 * tree-vect-slp.c (vect_get_constant_vectors,
10969 vect_transform_slp_perm_load): Adjust.
10970 * tree-vect-stmts.c (vect_gen_perm_mask): Adjust.
10971 * expmed.c (make_tree): Adjust.
10972 * config/i386/i386.c (ix86_expand_builtin): Adjust.
10973 * config/sparc/sparc.c (sparc_handle_vis_mul8x16): Adjust interface
10974 and implementation.
10975 (sparc_fold_builtin): Adjust.
10976
10977 2012-03-16 Tristan Gingold <gingold@adacore.com>
10978
10979 * config.gcc (*-*-*vms*): Define use_gcc_stdint and tm_file.
10980 * config/vms/vms-stdint.h: New file.
10981
10982 2012-03-16 Tristan Gingold <gingold@adacore.com>
10983
10984 * config.host (alpha64-dec-*vms*, alpha*-dec-*vms*)
10985 (ia64-hp-*vms*): Replaced by ...
10986 (*-*-*vms*): ... This new entry.
10987
10988 2012-03-15 Jakub Jelinek <jakub@redhat.com>
10989
10990 PR target/52568
10991 * config/i386/i386.c (expand_vec_perm_vperm2f128_vblend): New function.
10992 (ix86_expand_vec_perm_const_1): Use it.
10993
10994 PR target/52568
10995 * config/i386/sse.md (UNSPEC_VPERMDF): Remove.
10996 (avx2_permv4df): Remove.
10997 (avx2_permv4di): Macroize into...
10998 (avx2_perm<mode>): ... this using VI8F_256 iterator.
10999 (avx2_permv4di_1): Macroize into...
11000 (avx2_perm<mode>_1): ... this using VI8F_256 iterator.
11001
11002 2012-03-15 Ulrich Weigand <ulrich.weigand@linaro.org>
11003
11004 * combine.c (apply_distributive_law): Do not distribute SUBREG.
11005
11006 2012-03-15 Ira Rosen <irar@il.ibm.com>
11007 Ulrich Weigand <ulrich.weigand@linaro.org>
11008
11009 * tree-vect-patterns.c (widened_name_p): Rename to ...
11010 (type_conversion_p): ... this. Add new argument to determine
11011 if it's a promotion or demotion operation. Check for
11012 CONVERT_EXPR_CODE_P instead of NOP_EXPR.
11013 (vect_recog_dot_prod_pattern): Call type_conversion_p instead
11014 widened_name_p.
11015 (vect_recog_widen_mult_pattern, vect_recog_widen_sum_pattern,
11016 vect_operation_fits_smaller_type, vect_recog_widen_shift_pattern):
11017 Likewise.
11018 (vect_recog_mixed_size_cond_pattern): Likewise and allow
11019 non-constant then and else clauses.
11020
11021 2012-03-15 Ira Rosen <irar@il.ibm.com>
11022 Ulrich Weigand <ulrich.weigand@linaro.org>
11023
11024 * tree-vectorizer.h (vect_pattern_recog): Add new argument.
11025 * tree-vect-loop.c (vect_analyze_loop_2): Update call to
11026 vect_pattern_recog.
11027 * tree-vect-patterns.c (widened_name_p): Pass basic block
11028 info to vect_is_simple_use.
11029 (vect_recog_dot_prod_pattern): Fail for basic blocks.
11030 (vect_recog_widen_sum_pattern): Likewise.
11031 (vect_handle_widen_op_by_const): Support basic blocks.
11032 (vect_operation_fits_smaller_type,
11033 vect_recog_over_widening_pattern): Likewise.
11034 (vect_recog_vector_vector_shift_pattern): Support basic blocks.
11035 Update call to vect_is_simple_use.
11036 (vect_recog_mixed_size_cond_pattern): Support basic blocks.
11037 Add printing.
11038 (check_bool_pattern): Add an argument, update call to
11039 vect_is_simple_use and the recursive calls.
11040 (vect_recog_bool_pattern): Update relevant function calls.
11041 Add printing.
11042 (vect_mark_pattern_stmts): Update calls to new_stmt_vec_info.
11043 (vect_pattern_recog_1): Check for reduction only in loops.
11044 (vect_pattern_recog): Add new argument. Support basic blocks.
11045 * tree-vect-stmts.c (vectorizable_conversion): Pass basic block
11046 info to vect_is_simple_use_1.
11047 * tree-vect-slp.c (vect_get_and_check_slp_defs): Support basic blocks.
11048 (vect_slp_analyze_bb_1): Call vect_pattern_recog.
11049
11050 2012-03-15 Jakub Jelinek <jakub@redhat.com>
11051 Andrew Pinski <apinski@cavium.com>
11052
11053 PR middle-end/52592
11054 * builtins.c (expand_builtin_int_roundingfn_2): If expanding
11055 BUILT_IN_IR{INT,OUND}* using optab fails, emit lr{int,ound}*
11056 calls instead of __builtin_ir{int,ound}*.
11057
11058 2012-03-15 Bernhard Reutner-Fischer <aldot@gcc.gnu.org>
11059
11060 * doc/sourcebuild.texi (cleanup-modules, keep-modules): Update
11061 documentation.
11062
11063 2012-03-15 Ramana Radhakrishnan <ramana.radhakrishnan@linaro.org>
11064
11065 * config.gcc (target_type_format_char): New. Document it. Set it for
11066 arm*-*-* .
11067 * configure.ac (gnu_unique_option): Use target_type_format_char
11068 in test. Comment rationale.
11069 * configure: Regenerate .
11070
11071 2012-03-15 Jakub Jelinek <jakub@redhat.com>
11072
11073 PR tree-optimization/52267
11074 * tree-vrp.c (masked_increment): New function.
11075 (register_edge_assert_for_2): Derive ASSERT_EXPRs
11076 from (X & CST1) cmp CST2 tests.
11077
11078 2012-03-15 Richard Guenther <rguenther@suse.de>
11079
11080 PR middle-end/52580
11081 * tree-data-ref.c (subscript_dependence_tester_1): Check
11082 all dimensions for non-conflicting access functions.
11083
11084 2012-03-15 Manuel López-Ibáñez <manu@gcc.gnu.org>
11085
11086 PR c++/44783
11087 * doc/invoke.texi [C++ Language Options]: Document
11088 -ftemplate-backtrace-limit.
11089
11090 2012-03-15 Tristan Gingold <gingold@adacore.com>
11091
11092 * c-parser.c (c_parser_parameter_declaration): Handle #pragma
11093 before a parameter.
11094
11095 2012-03-15 Tristan Gingold <gingold@adacore.com>
11096
11097 * dwarf2out.c (gen_subprogram_die): Require dwarf unwinding to
11098 use DW_OP_call_frame_cfa.
11099
11100 2012-03-14 H.J. Lu <hongjiu.lu@intel.com>
11101
11102 PR target/50797
11103 * config/i386/i386-opts.h (pmode): New.
11104
11105 * config/i386/i386.c (ix86_option_override_internal): Properly
11106 check and set ix86_pmode.
11107
11108 * config/i386/i386.h (Pmode): Check ix86_pmode instead of TARGET_64BIT.
11109
11110 * config/i386/i386.opt (maddress-mode=): New.
11111
11112 * doc/invoke.texi: Document -maddress-mode=short|long for x86.
11113
11114 2012-03-14 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
11115
11116 * dwarf2cfi.c (def_cfa_0): Remove MIPS_DEBUGGING_INFO handling.
11117 (dwarf2out_do_cfi_asm): Likewise.
11118 * dwarf2out.c (output_call_frame_info): Remove MIPS_DEBUGGING_INFO
11119 handling.
11120 (add_data_member_location_attribute): Likewise.
11121 (gen_array_type_die): Likewise.
11122 (gen_subprogram_die): Likewise.
11123 (gen_producer_string): Likewise.
11124 * sdbout.c (sdbout_begin_prologue): Declare unconditionally.
11125 Remove MIPS_DEBUGGING_INFO handling.
11126 (sdb_debug_hooks): Likewise.
11127 (sdbout_begin_block): Likewise.
11128 (sdbout_end_block): Likewise.
11129 (sdbout_begin_prologue): Likewise.
11130 (sdbout_start_source_file): Likewise.
11131 (sdbout_end_source_file): Likewise.
11132 (sdbout_init): Likewise.
11133 * system.h (MIPS_DEBUGGING_INFO): Poison.
11134
11135 2012-03-14 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
11136
11137 * config/alpha/alpha.c [HAVE_STAMP_H]: Remove.
11138 (alpha_file_start) [MS_STAMP]: Remove.
11139
11140 * config/alpha/elf.h (TARGET_GAS): Remove.
11141 * config/alpha/freebsd.h (TARGET_DEFAULT): Remove.
11142 * config/alpha/linux.h (TARGET_DEFAULT): Remove.
11143 * config/alpha/netbsd.h (TARGET_DEFAULT): Remove.
11144 * config/alpha/vms.h (TARGET_DEFAULT): Remove.
11145 * config.gcc (alpha*-*-linux*): Remove target_cpu_default.
11146 (alpha*-*-freebsd*): Likewise.
11147 (alpha*-*-netbsd*): Likewise.
11148 (alpha*-*-openbsd*): Likewise.
11149 (alpha*-*-*): Remove target_cpu_default2.
11150 * config/alpha/alpha.c (alpha_output_filename): Remove !TARGET_GAS
11151 handling.
11152 * config/alpha/alpha.h (TARGET_AS_CAN_SUBTRACT_LABELS): Remove.
11153 (TARGET_AS_SLASH_BEFORE_SUFFIX): Remove.
11154 * config/alpha/alpha.c (print_operand): Always assume
11155 TARGET_AS_SLASH_BEFORE_SUFFIX.
11156 * config/alpha/alpha.md ("*builtin_setjmp_receiver_er_sl_1"):
11157 Remove TARGET_AS_CAN_SUBTRACT_LABELS.
11158 ("*builtin_setjmp_receiver_er_1"): Remove.
11159 * config/alpha/alpha.opt (malpha-as): Remove.
11160 (mgas): Ignore.
11161 * doc/invoke.texi (Option Summary, DEC Alpha Options): Remove
11162 -malpha-as, -mgas.
11163 Remove DEC Unix reference.
11164
11165 * config/alpha/alpha.h (OBJECT_FORMAT_COFF): Remove.
11166 (EXTENDED_COFF): Remove.
11167 * config/alpha/elf.h (OBJECT_FORMAT_COFF): Don't undef.
11168 (EXTENDED_COFF): Don't undef.
11169 * config/alpha/alpha.c (alpha_file_start): Always assume
11170 OBJECT_FORMAT_ELF.
11171 Don't set targetm.asm_file_start_file_directive.
11172 [!OBJECT_FORMAT_ELF]: Remove.
11173 (TARGET_ASM_FILE_START_FILE_DIRECTIVE): Remove.
11174
11175 * config/alpha/alpha.h (SDB_DEBUGGING_INFO): Remove.
11176 (DBX_DEBUGGING_INFO): Remove.
11177 (MIPS_DEBUGGING_INFO): Remove.
11178 (PREFERRED_DEBUGGING_TYPE): Remove.
11179 (DBX_OUTPUT_SOURCE_LINE): Remove.
11180 (SDB_OUTPUT_SOURCE_LINE): Remove.
11181 (DBX_CONTIN_LENGTH): Remove.
11182 (NO_DBX_FUNCTION_END): Remove.
11183 (ASM_STABS_OP): Remove.
11184 (ASM_STABN_OP): Remove.
11185 (ASM_STABD_OP): Remove.
11186 (SDB_ALLOW_FORWARD_REFERENCES): Remove.
11187 (SDB_ALLOW_UNKNOWN_REFERENCES): Remove.
11188 (PUT_SDB_DEF): Remove.
11189 (PUT_SDB_PLAIN_DEF): Remove.
11190 (PUT_SDB_TYPE): Remove.
11191 (sdb_label_count): Remove.
11192 (PUT_SDB_BLOCK_START): Remove.
11193 (PUT_SDB_BLOCK_END): Remove.
11194 (PUT_SDB_FUNCTION_START): Remove.
11195 (PUT_SDB_FUNCTION_END): Remove.
11196 (PUT_SDB_EPILOGUE_END): Remove.
11197 * config/alpha/elf.h (SDB_DEBUGGING_INFO): Don't undef.
11198 (MIPS_DEBUGGING_INFO): Don't undef.
11199 (DBX_DEBUGGING_INFO): Don't undef.
11200 * config/alpha/vms.h (SDB_DEBUGGING_INFO): Don't undef.
11201 (MIPS_DEBUGGING_INFO): Don't undef.
11202 (DBX_DEBUGGING_INFO): Don't undef.
11203 * config/alpha/freebsd.h (DBX_CONTIN_CHAR): Remove.
11204 * config/alpha/alpha.c (alpha_option_override): Remove SDB_DEBUG
11205 handling.
11206 (alpha_start_function): Likewise.
11207 (sdb_label_count): Remove.
11208 (alpha_output_filename): Remove DBX_DEBUG handling.
11209 (alpha_file_start): Likewise.
11210
11211 2012-03-14 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
11212
11213 * config.gcc (enable_obsolete): Remove *-*-solaris2.8*.
11214 (*-*-solaris2.[0-8], *-*-solaris2.[0-8].*): Mark unsupported.
11215 (i[34567]86-*-solaris2*, x86_64-*-solaris2.1[0-9]*): Remove
11216 Solaris 8 support.
11217 * configure.ac (gcc_cv_ld_hidden): Remove *-*-solaris2.8*.
11218 (ld_tls_support): Remove Solaris 8 references.
11219 (lwp_dir, lwp_spec): Remove support for alternate thread library.
11220 * acinclude.m4 (gcc_cv_initfini_array): Remove *-*-solaris2.* tests.
11221 * configure: Regenerate.
11222 * config.in: Regenerate.
11223
11224 * config/sol2.h (LINK_SPEC): Remove LIB_THREAD_LDFLAGS_SPEC.
11225 * config/i386/sol2.h: Remove Solaris 8 references.
11226
11227 * doc/install.texi (Specific, i?86-*-solaris2.[89]): Rename to ...
11228 (i?86-*-solaris2.9): ... this.
11229 Remove Solaris 8 references.
11230 (Specific, *-*-solaris2*): Document Solaris 8 removal.
11231 Remove Solaris 8 references.
11232
11233 2012-03-14 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
11234
11235 * config.gcc (enable_obsolete): Remove mips-sgi-irix6.5.
11236 (mips-sgi-irix6.5*): Remove.
11237 * config.host (mips-sgi-irix*): Remove.
11238 * configure.ac (enable_fixed_point): Remove mips*-sgi-irix*.
11239 (set_have_as_tls): Remove *-*-irix6*.
11240 (gcc_cv_ld_static_dynamic): Remove mips-sgi-irix6*.
11241 * configure: Regenerate.
11242
11243 * config/mips/iris6.h: Remove.
11244 * config/mips/iris6.opt: Remove.
11245 * config/mips/t-irix6: Remove.
11246
11247 * config/mips/mips.h (TARGET_GPWORD): Remove IRIX 6 N64 handling.
11248 (TARGET_IRIX6): Remove.
11249 (TARGET_CPU_CPP_BUILTINS): Remove IRIX 6 handling.
11250 Don't define LANGUAGE_C, _LANGUAGE_C for Objective-C.
11251 * config/mips/mips.c (mips_build_builtin_va_list): Remove IRIX 6
11252 handling.
11253 (mips_file_start): Likewise.
11254 * config/mips/mips-protos.h (irix_asm_output_align): Remove.
11255
11256 * config/mips/driver-native.c [__sgi__]: Remove.
11257 (host_detect_local_cpu) [__sgi__]: Remove.
11258
11259 * config/mips/gnu-user.h: Remove iris5.h reference.
11260
11261 * config/mips/mips-modes.def: Remove IRIX 6 reference.
11262 * config/mips/gnu-user64.h (MIPS_TFMODE_FORMAT): Remove.
11263 * config/mips/mips.c (mips_option_override) [MIPS_TFMODE_FORMAT]:
11264 Remove.
11265
11266 * gcc.c (main): Move asm_debug initialization ...
11267 (asm_debug): ... here.
11268
11269 * ginclude/stddef.h (__STDDEF_H__): Don't define.
11270
11271 * defaults.h (LINK_ELIMINATE_DUPLICATE_LDIRECTORIES): Remove.
11272 * system.h (LINK_ELIMINATE_DUPLICATE_LDIRECTORIES): Poison.
11273 * collect2.c [LINK_ELIMINATE_DUPLICATE_LDIRECTORIES]: Remove.
11274 (main) [LINK_ELIMINATE_DUPLICATE_LDIRECTORIES]: Remove.
11275 [LINK_ELIMINATE_DUPLICATE_LDIRECTORIES] (is_in_args): Remove.
11276 * doc/tm.texi.in (Driver, LINK_ELIMINATE_DUPLICATE_LDIRECTORIES):
11277 Remove.
11278 * doc/tm.texi: Regenerate.
11279
11280 * doc/invoke.texi (Debugging Options, -gdwarf-<version>): Remove
11281 IRIX 6 reference.
11282 (MIPS Options, -march): Remove IRIX reference.
11283 * doc/install.texi (Binaries, SGI IRIX): Remove.
11284 (Specific, mips-sgi-irix6): Document IRIX 6.5 removal, remove rest
11285 of section.
11286 * doc/trouble.texi (Interoperation): Remove -lgl_s handling.
11287
11288 2012-03-14 Martin Jambor <mjambor@suse.cz>
11289
11290 * expr.c (expand_assignment): Use expand_expr with EXPAND_WRITE
11291 when expanding MEM_REFs, MEM_TARGET_REFs and handled_component bases.
11292 (expand_expr_real_1): Do not handle misalignment if modifier is
11293 EXPAND_WRITE.
11294
11295 2012-03-14 Richard Guenther <rguenther@suse.de>
11296
11297 PR middle-end/52584
11298 * tree-vect-generic.c (type_for_widest_vector_mode): Take
11299 element type instead of mode, use build_vector_type_for_mode
11300 instead of the langhook, build a vector of proper signedness.
11301 (expand_vector_operations_1): Adjust.
11302
11303 2012-03-14 Richard Guenther <rguenther@suse.de>
11304
11305 PR middle-end/52582
11306 * gimple-fold.c (canonicalize_constructor_val): Make sure we have
11307 a cgraph node for a FUNCTION_DECL that comes from a constructor.
11308 (gimple_get_virt_method_for_binfo): Likewise.
11309
11310 2012-03-14 Richard Guenther <rguenther@suse.de>
11311
11312 PR tree-optimization/52571
11313 * tree-vect-data-refs.c (vect_compute_data_ref_alignment): Move
11314 flag_section_anchors check ...
11315 (vect_can_force_dr_alignment_p): ... here. Do not re-align
11316 DECL_COMMON variables.
11317
11318 2012-03-14 Richard Guenther <rguenther@suse.de>
11319
11320 * tree.h (DECL_BIT_FIELD_REPRESENTATIVE): New define.
11321 * stor-layout.c (start_bitfield_representative): New function.
11322 (finish_bitfield_representative): Likewise.
11323 (finish_bitfield_layout): Likewise.
11324 (finish_record_layout): Call finish_bitfield_layout.
11325 * tree.c (free_lang_data_in_decl): Only free DECL_QUALIFIER
11326 for QUAL_UNION_TYPE fields.
11327 * tree-streamer-in.c (lto_input_ts_field_decl_tree_pointers):
11328 Stream DECL_BIT_FIELD_REPRESENTATIVE.
11329 * tree-streamer-out.c (write_ts_field_decl_tree_pointers): Likewise.
11330
11331 PR middle-end/52080
11332 PR middle-end/52097
11333 PR middle-end/48124
11334 * expr.c (get_bit_range): Unconditionally extract bitrange
11335 from DECL_BIT_FIELD_REPRESENTATIVE.
11336 (expand_assignment): Adjust call to get_bit_range.
11337
11338 2012-03-14 Richard Guenther <rguenther@suse.de>
11339
11340 PR middle-end/52578
11341 * fold-const.c (fold_unary_loc): Fold (T1)(T2)x to (T1)x if
11342 the outermost conversion is a sign-change only.
11343 (fold_binary_loc): Disregard widening and sign-changing
11344 conversions when we determine if two variables are equal
11345 for reassociation.
11346 * tree-ssa-forwprop.c (combine_conversions): Fold (T1)(T2)x to
11347 (T1)x if the outermost conversion is a sign-change only.
11348
11349 2012-03-14 Uros Bizjak <ubizjak@gmail.com>
11350
11351 Revert:
11352 2012-03-14 Uros Bizjak <ubizjak@gmail.com>
11353
11354 * config/i386/predicates.md (constant_call_address_operand): Declare
11355 as special predicate. Update all uses.
11356
11357 2012-03-13 Jakub Jelinek <jakub@redhat.com>
11358
11359 PR c/52577
11360 * c-parser.c (c_parser_postfix_expression)
11361 <case RID_BUILTIN_SHUFFLE>: Call mark_exp_read on argument values.
11362
11363 * config/i386/smmintrin.h: Avoid /* within a comment.
11364 * config/i386/nmmintrin.h: Likewise.
11365
11366 2012-03-13 Uros Bizjak <ubizjak@gmail.com>
11367
11368 * config/i386/i386.md (xbegin): Remove constraint from expander.
11369
11370 2012-03-13 Uros Bizjak <ubizjak@gmail.com>
11371
11372 * config/i386/predicates.md (constant_call_address_operand): Declare
11373 as special predicate. Update all uses.
11374 * config/i386/i386.md: Remove mode from constant_call_address_operand
11375 predicates.
11376 * config/i386/i386.c (ix86_output_call_insn): Call
11377 constant_call_address_operand with VOIDmode.
11378
11379 2012-03-13 Uros Bizjak <ubizjak@gmail.com>
11380
11381 * config/i386/i386.c (ix86_decompose_address): Handle subregs of
11382 AND zero extended address correctly.
11383
11384 2012-03-13 Uros Bizjak <ubizjak@gmail.com>
11385
11386 * config/i386/predicates.md (tls_symbolic_operand): Declare as
11387 special predicate.
11388 (tls_modbase_operand): Ditto.
11389 * config/i386/i386.md: Remove mode from tls_symbolic_operand and
11390 tls_modbase_operand predicates.
11391
11392 2012-03-13 Martin Jambor <mjambor@suse.cz>
11393
11394 * expr.c (expand_assignment): Handle misaligned scalar writes to
11395 memory through top-level MEM_REFs by calling store_bit_field.
11396
11397 2012-03-13 Richard Guenther <rguenther@suse.de>
11398
11399 PR middle-end/52134
11400 * fold-const.c (fold_binary_loc): Fold (X * Y) & -(1 << CST) to X * Y
11401 if Y is a constant multiple of 1 << CST.
11402
11403 2012-03-13 Georg-Johann Lay <avr@gjlay.de>
11404
11405 PR target/52488
11406 * config/avr/avr.c (avr_prologue_setup_frame): Cut down stack
11407 offset (size) to a value the insns can deal with.
11408 (expand_epilogue): Ditto.
11409
11410 2012-03-13 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
11411
11412 * config/arm/neon.ml (ops): Fixup expected instructions for
11413 unsigned vector compares.
11414
11415 2012-03-13 Uros Bizjak <ubizjak@gmail.com>
11416
11417 * config/i386/i386.c (ix86_decompose_address): Prevent %fs:(%reg)
11418 addresses only when %reg is not in word mode.
11419
11420 2012-03-13 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
11421
11422 * config/microblaze/microblaze.md: Fix typo.
11423 * tree-if-conv.c: Likewise.
11424 * tree-vect-patterns.c: Likewise.
11425
11426 2012-03-13 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
11427
11428 * config.gcc (extra_passes): Remove.
11429 * configure.ac (extra_passes): Don't substitute.
11430 * configure: Regenerate.
11431 * Makefile.in (EXTRA_PASSES): Remove.
11432 (GCC_PASSES): Remove $(EXTRA_PASSES).
11433 (MOSTLYCLEANFILES): Likewise.
11434 (native): Likewise.
11435 (install-common): Likewise.
11436
11437 2012-03-13 Uros Bizjak <ubizjak@gmail.com>
11438
11439 * config/i386/i386.h (TARGET_TLS_INDIRECT_SEG_REFS): New.
11440 * config/i386/i386.c (ix86_decompose_address): Use
11441 TARGET_TLS_INDIRECT_SEG_REFS to prevent %fs:(%reg) addresses.
11442 (legitimize_tls_address): Use TARGET_TLS_INDIRECT_SEG_REFS to load
11443 thread pointer to a register.
11444
11445 2012-03-12 H.J. Lu <hongjiu.lu@intel.com>
11446
11447 * config/i386/i386.md (*tls_global_dynamic_64_<mode>): Remove :P
11448 on tls_symbolic_operand.
11449 (tls_global_dynamic_64_<mode>): Likewise.
11450
11451 2012-03-12 Georg-Johann Lay <avr@gjlay.de>
11452
11453 PR other/52545
11454 * output.h (SECTION_EXCLUDE, SECTION_MACH_DEP): Don't use
11455 SECTION_MACH_DEP reserved bits for SECTION_EXCLUDE.
11456
11457 2012-03-12 Georg-Johann Lay <avr@gjlay.de>
11458
11459 PR target/52499
11460 * config/avr/avr.c (avr_mode_code_base_reg_class): Change return
11461 type from reg_class_t to enum reg_class.
11462 * config/avr/avr-protos.h (avr_mode_code_base_reg_class): Ditto.
11463
11464 2012-03-12 Andrew Pinski <apinski@cavium.com>
11465
11466 * tree-ssa-phiopt.c (single_non_singleton_phi_for_edges): New function.
11467 (tree_ssa_phiopt_worker): Use single_non_singleton_phi_for_edges.
11468 (value_replacement): Likewise.
11469 (empty_block_p): Check also if the PHIs for the block are empty.
11470
11471 2012-03-12 Georg-Johann Lay <avr@gjlay.de>
11472
11473 PR target/52148
11474 * config/avr/avr.c (avr_out_movmem): Fix typo in output template
11475 for the case ADDR_SPACE_FLASH and AVR_HAVE_LPMX introduced in
11476 r184615 from 2012-02-28.
11477
11478 2012-03-12 H.J. Lu <hongjiu.lu@intel.com>
11479
11480 * config/i386/i386.c (ix86_gen_tls_global_dynamic_64): New.
11481 (ix86_gen_tls_local_dynamic_base_64): Likewise.
11482 (ix86_option_override_internal): Set ix86_gen_tls_global_dynamic_64
11483 and ix86_gen_tls_local_dynamic_base_64.
11484 (legitimize_tls_address): Use ix86_gen_tls_global_dynamic_64 and
11485 ix86_gen_tls_local_dynamic_base_64.
11486
11487 * config/i386/i386.md (*tls_global_dynamic_64): Renamed to ...
11488 (*tls_global_dynamic_64_<mode>): This.
11489 (tls_global_dynamic_64): Renamed to ...
11490 (tls_global_dynamic_64_<mode>): This.
11491 (*tls_local_dynamic_base_64): Renamed to ...
11492 (*tls_local_dynamic_base_64_<mode>): This.
11493 (tls_local_dynamic_base_64): Renamed to ...
11494 (tls_local_dynamic_base_64_<mode>): This.
11495
11496 2012-03-12 H.J. Lu <hongjiu.lu@intel.com>
11497
11498 * config/i386/i386.c (ix86_option_override_internal): Properly
11499 set ix86_gen_leave and ix86_gen_monitor. Check Pmode == DImode,
11500 instead of TARGET_64BIT, to set ix86_gen_add3, ix86_gen_sub3,
11501 ix86_gen_one_cmpl2, ix86_gen_andsp, ix86_gen_allocate_stack_worker,
11502 ix86_gen_adjust_stack_and_probe and ix86_gen_probe_stack_range.
11503
11504 * config/i386/sse.md (sse3_monitor64): Renamed to ...
11505 (sse3_monitor64_<mode>): This.
11506
11507 2012-03-12 Tristan Gingold <gingold@adacore.com>
11508
11509 * config/ia64/ia64.c (ia64_function_arg_1): Move code around.
11510 (ia64_function_arg_advance): Ditto.
11511
11512 2012-03-12 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
11513
11514 * config.gcc (mips*-*-openbsd*): Remove.
11515 * config/mips/openbsd.h: Remove.
11516 * config/mips/sdb.h: Remove.
11517
11518 * config/mips/mips.h (SDB_OUTPUT_SOURCE_LINE): Remove.
11519 * config/mips/mips.c (sdb_label_count): Remove.
11520 (mips_debugger_offset): Remove #if 0 code.
11521 (mips_output_function_prologue) [SDB_DEBUGGING_INFO]: Remove.
11522 * config/mips/sde.h (SDB_DEBUGGING_INFO): Don't undef.
11523
11524 2012-03-12 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
11525
11526 * doc/install.texi (Specific, i?86-*-solaris2.[89]): Update
11527 binutils reference.
11528 (Specific, i?86-*-solaris2.10): Remove GCC 4.0 reference.
11529 Update binutils references.
11530 (Specific, *-*-solaris2*): Mention bundled GCC in Solaris 10 and 11.
11531 Update binutils reference.
11532 Update Sun as/GNU ld caveat.
11533 Document binutils largefile requirement for LTO plugin.
11534 Remove reference to alternate libpthread.
11535
11536 2012-03-12 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
11537
11538 * config.gcc (alpha*-dec-osf5.1*): Remove.
11539 * config.host (alpha*-dec-osf*): Remove.
11540 * configure.ac (*-*-osf*): Remove.
11541 (alpha*-dec-osf*): Remove.
11542 * configure: Regenerate.
11543
11544 * config/alpha/host-osf.c, config/alpha/osf5.h, config/alpha/osf5.opt,
11545 config/alpha/va_list.h, config/alpha/x-osf: Remove.
11546
11547 * config/alpha/alpha.h (TARGET_LD_BUGGY_LDGP): Remove.
11548 * config/alpha/alpha.c (struct machine_function): Update comment.
11549 (alpha_start_function): Remove Tru64 UNIX as handling for
11550 max_frame_size.
11551 * config/alpha/alpha.md ("exception_receiver"): Remove
11552 TARGET_LD_BUGGY_LDGP.
11553 ("*exception_receiver_2"): Likewise.
11554 * except.c (finish_eh_generation): Remove Tru64 reference.
11555 * ginclude/stdarg.h [_HIDDEN_VA_LIST]: Don't undef _VA_LIST.
11556 * system.h (TARGET_HANDLE_PRAGMA_EXTERN_PREFIX): Poison.
11557 * target.def (handle_pragma_extern_prefix): Remove.
11558
11559 * Makefile.in (mips-tfile.o-warn): Remove.
11560 (ALL_HOST_BACKEND_OBJS): Remove mips-tfile.o, mips-tdump.o.
11561 (mips-tfile, mips-tfile.o, mips-tdump, mips-tdump.o): Remove.
11562 * mips-tdump.c, mips-tfile.c: Remove.
11563
11564 * doc/extend.texi (Symbol-Renaming Pragmas): Remove #pragma
11565 extern_prefix.
11566 * doc/install.texi (Binaries): Remove Tru64 UNIX reference.
11567 (Specific, alpha*-dec-osf5.1): Note removal.
11568 * doc/tm.texi.in (Misc, TARGET_HANDLE_PRAGMA_EXTERN_PREFIX):
11569 Remove.
11570 * doc/tm.texi: Regenerate.
11571 * doc/trouble.texi (Cross-Compiler Problems): Remove.
11572
11573 2012-03-12 Richard Guenther <rguenther@suse.de>
11574
11575 * config/arm/arm.c (neon_dereference_pointer): Do not call
11576 covert during RTL expansion.
11577
11578 2012-03-12 Tristan Gingold <gingold@adacore.com>
11579
11580 * doc/invoke.texi (VMS Options): Merge Alpha/VMS and IA-64/VMS
11581 Options. Mention -mpointer-size.
11582
11583 2012-03-12 Richard Guenther <rguenther@suse.de>
11584
11585 * config/alpha/alpha.c (alpha_gimplify_va_arg): Use
11586 build_nonstandard_integer_type.
11587
11588 2012-03-12 Richard Guenther <rguenther@suse.de>
11589
11590 * tree.c (signed_or_unsigned_type_for): Use
11591 build_nonstandard_integer_type.
11592 (signed_type_for): Adjust documentation.
11593 (unsigned_type_for): Likewise.
11594 * tree-pretty-print.c (dump_generic_node): Use standard names
11595 for non-standard integer types if available.
11596
11597 2012-03-12 Tristan Gingold <gingold@adacore.com>
11598
11599 * config/vms/vms.opt: Add vms-opts.h header.
11600 (mmalloc64): Use flag_vms_malloc64 flag instead of MALLOC64
11601 target mask.
11602 (-mvms-return-codes): Document.
11603 (-mpointer-size): New option.
11604 (vms_pointer_size): Add enumeration.
11605 * config/vms/vms-opts.h: New file.
11606 * config/vms/vms.h (TARGET_OS_CPP_BUILTINS): Define
11607 __INITIAL_POINTER_SIZE.
11608 (POINTER_SIZE, SIZE_TYPE, PTRDIFF_TYPE): Adjust definition.
11609 (C_COMMON_OVERRIDE_OPTIONS): Define.
11610 (DWARF2_ADDR_SIZE): Define.
11611 * config/vms/vms.c (vms_patch_builtins): Adjust condition.
11612 * config/vms/vms-protos.h (vms_c_common_override_options):
11613 New prototype.
11614 * config/vms/vms-c.c (vms_pragma_pointer_size): Ignore pragma
11615 if -mno-pointer-size.
11616 (vms_c_common_override_options): New function.
11617 * config/ia64/vms.h (TARGET_DEFAULT): Remove MASK_MALLOC64.
11618 * config/alpha/vms.h (TARGET_DEFAULT): Remove MASK_MALLOC64.
11619 (MALLOC_ABI_ALIGNMENT): Use flag_vms_malloc64
11620 and flag_vms_pointer_size.
11621 (MASK_RETURN_ADDR): Set according to flag_vms_pointer_size.
11622 * config.gcc (*-*-*vms*): Define xm_file.
11623 (alpha*-dec-*vms*): Do not define xm_file.
11624 (alpha64-dec-*vms*): Remove.
11625 (ia64-hp-*vms*): Do not define xm_file. Simplify tm_file
11626 and tmake_file.
11627
11628 2012-03-12 Jakub Jelinek <jakub@redhat.com>
11629
11630 PR tree-optimization/51721
11631 * tree-vrp.c (register_edge_assert_for_2): Add asserts for unsvar
11632 if (int) unsvar cmp CST.
11633
11634 2012-03-12 Richard Guenther <rguenther@suse.de>
11635
11636 * tree-sra.c (create_access_replacement): Only rename the replacement
11637 if we can rewrite it into SSA form. Properly mark register typed
11638 replacements that we cannot rewrite with TREE_ADDRESSABLE.
11639 * tree-cfg.c (verify_expr): Fix BIT_FIELD_REF verification
11640 for aggregate or BLKmode results.
11641
11642 2012-03-12 Jakub Jelinek <jakub@redhat.com>
11643
11644 PR tree-optimization/52533
11645 * tree-vrp.c (register_edge_assert_for_2): Use double_int
11646 type for mask, only handle shifts by non-zero in-range
11647 shift count, for LE_EXPR and GT_EXPR if new_val is
11648 maximum, don't add the assertion.
11649
11650 2012-02-12 Kirill Yukhin <kirill.yukhin@intel.com>
11651
11652 * doc/invoke.texi: Document -mrtm option.
11653 * common/config/i386/i386-common.c (OPTION_MASK_ISA_RTM_SET): New.
11654 (OPTION_MASK_ISA_RTM_UNSET): Ditto.
11655 (ix86_handle_option): Handle OPT_mrtm.
11656 * config.gcc (i[34567]86-*-*): Add rtmintrin.h and
11657 xtestintrin.h.
11658 (x86_64-*-*): Ditto.
11659 * i386-builtin-types.def (INT_FTYPE_VOID): New.
11660 * config/i386/i386-c.c (ix86_target_macros_internal): Define
11661 __RTM__ if needed.
11662 (ix86_target_string): Define -mrtm option.
11663 (PTA_RTM): New.
11664 (ix86_option_override_internal): Extend "corei7-avx" with RTM option.
11665 Handle new option.
11666 (ix86_valid_target_attribute_inner_p): Add OPT_mrtm.
11667 (ix86_builtins): Add IX86_BUILTIN_XBEGIN, IX86_BUILTIN_XEND,
11668 IX86_BUILTIN_XTEST.
11669 (bdesc_special_args): Ditto.
11670 (ix86_init_mmx_sse_builtins): Add IX86_BUILTIN_XABORT.
11671 (ix86_expand_special_args_builtin): Handle new built-in type.
11672 (ix86_expand_builtin): Handle XABORT instruction.
11673 * config/i386/i386.h (TARGET_RTM): New.
11674 * config/i386/i386.md (UNSPECV_XBEGIN): New.
11675 (UNSPECV_XEND): Ditto.
11676 (UNSPECV_XABORT): Ditto.
11677 (UNSPECV_XTEST): Ditto.
11678 (xbegin): Ditto.
11679 (xbegin_1): Ditto.
11680 (xend): Ditto.
11681 (xabort): Ditto
11682 (xtest): Ditto.
11683 (xtest_1): Ditto.
11684 * config/i386/i386.opt (mrtm): New.
11685 * config/i386/immintrin.h: Include rtmintrin.h and xtestintrin.h.
11686 * config/i386/rtmintrin.h: New header.
11687 * config/i386/xtestintrin.h: Ditto.
11688
11689 2012-03-12 Tristan Gingold <gingold@adacore.com>
11690
11691 * ginclude/stddef.h: Adjust previous patch.
11692 Use __VMS__ instead of VMS.
11693
11694 2012-03-12 Uros Bizjak <ubizjak@gmail.com>
11695
11696 * config/i386/i386.md (setcc + movzbl to xor + setcc peephole2):
11697 Also convert sequences with CC setting arithmetic instruction.
11698
11699 2012-03-11 Sandra Loosemore <sandra@codesourcery.com>
11700
11701 * doc/invoke.texi (Option Summary): Move -no-integrated-cpp
11702 from C Language Options to Preprocessor Options.
11703 (C Dialect Options): Move -no-integrated-cpp documentation
11704 from here...
11705 (Preprocessor Options): ...to here. Rewrite the description
11706 so it makes more sense, and remove discussion of merging front ends.
11707
11708 2012-03-11 H.J. Lu <hongjiu.lu@intel.com>
11709
11710 * config/i386/i386.c (ix86_expand_movmem): Use word_mode for size
11711 needed for loop.
11712 (ix86_expand_setmem): Likewise.
11713
11714 2012-03-11 Uros Bizjak <ubizjak@gmail.com>
11715
11716 * config/i386/i386.c (ix86_zero_extend_to_Pmode): Rewrite using
11717 convert_to_mode.
11718
11719 2012-03-11 H.J. Lu <hongjiu.lu@intel.com>
11720
11721 * config/i386/i386.c (ix86_trampoline_init): Use movl for 64bit if
11722 ptr_mode == SImode. Replace DImode with Pmode or ptr_mode.
11723
11724 2012-03-11 H.J. Lu <hongjiu.lu@intel.com>
11725
11726 * config/i386/i386.c (x86_this_parameter): Replace DImode with Pmode.
11727
11728 2012-03-11 H.J. Lu <hongjiu.lu@intel.com>
11729
11730 * config/i386/i386.md (lwp_slwpcb): Check Pmode instead of
11731 TARGET_64BIT.
11732
11733 2012-03-11 H.J. Lu <hongjiu.lu@intel.com>
11734 Uros Bizjak <ubizjak@gmail.com>
11735
11736 * config/i386/predicates.md (call_insn_operand): Allow
11737 constant_call_address_operand in Pmode only.
11738 (sibcall_insn_operand): Ditto.
11739 * config/i386/i386.md (*call): Use W mode iterator instead of P mode.
11740 (*call_vzeroupper): Ditto.
11741 (*sibcall): Ditto.
11742 (*sibcall_vzeroupper): Ditto.
11743 (*call_value): Ditto.
11744 (*call_value_vzeroupper): Ditto.
11745 (*sibcall_value): Ditto.
11746 (*sibcall_value_vzeroupper): Ditto.
11747 (*indirect_jump): Ditto.
11748 (*tablejump_1): Ditto.
11749 (indirect_jump): Convert memory address to word mode for TARGET_X32.
11750 (tablejump): Ditto.
11751 * config/i386/i386.c (ix86_expand_call): Convert indirect operands
11752 to word mode.
11753
11754 2012-03-11 Oleg Endo <olegendo@gcc.gnu.org>
11755
11756 PR target/51244
11757 * config/sh/sh.md (movnegt): Expand into respective insns immediately.
11758 Use movrt_negc instead of negc pattern for non-SH2A.
11759 (*movnegt): Remove.
11760 (*movrt_negc, *negnegt, *movtt, *movt_qi): New insns and splits.
11761
11762 2012-03-10 H.J. Lu <hongjiu.lu@intel.com>
11763
11764 * config/i386/i386.c (ix86_decompose_address): Disallow fs:(reg)
11765 if Pmode != word_mode.
11766 (legitimize_tls_address): Call gen_tls_initial_exec_x32 if
11767 Pmode == SImode for TARGET_X32.
11768
11769 * config/i386/i386.md (UNSPEC_TLS_IE_X32): New.
11770 (tls_initial_exec_x32): Likewise.
11771
11772 2012-03-10 Chung-Lin Tang <cltang@codesourcery.com>
11773
11774 PR rtl-optimization/52528
11775 * combine.c (can_combine_p): Add setting of subst_low_luid
11776 before call to expand_field_assignment().
11777
11778 2012-03-09 Sandra Loosemore <sandra@codesourcery.com>
11779
11780 * doc/invoke.texi: Use correct names/markup for "GCC", "GDB", "ld",
11781 and related program names.
11782
11783 2012-03-09 Sandra Loosemore <sandra@codesourcery.com>
11784
11785 * doc/invoke.texi: Use correct names for "DWARF", "stabs", and "ELF".
11786
11787 2012-03-09 Uros Bizjak <ubizjak@gmail.com>
11788
11789 PR target/52530
11790 * config/i386/i386.c (ix86_print_operand): Handle 'E' operand modifier.
11791 (ix86_print_operand_address): Handle UNSPEC_LEA_ADDR. Do not fallback
11792 to set code to 'q'.
11793 * config/i386/i386.md (UNSPEC_LEA_ADDR): New unspec.
11794 (*movdi_internal_rex64): Use %E operand modifier for lea.
11795 (*movsi_internal): Ditto.
11796 (*lea_1): Ditto.
11797 (*lea<mode>_2): Ditto.
11798 (*lea_{3,4,5,6}_zext): Ditto.
11799 (*tls_global_dynamic_32_gnu): Ditto.
11800 (*tls_global_dynamic_64): Ditto.
11801 (*tls_dynamic_gnu2_lea_32): Ditto.
11802 (*tls_dynamic_gnu2_lea_64): Ditto.
11803 (pro_epilogue_adjust_stack_<mode>_add): Ditto.
11804
11805 2012-03-09 Michael Meissner <meissner@linux.vnet.ibm.com>
11806
11807 * config/rs6000/linux64.h (OPTION_TARGET_CPU_DEFAULT): Do not
11808 redefine to be NULL if the current bit-size is different from the
11809 configured bit-size.
11810
11811 * config/rs6000/rs6000.c (rs6000_option_override_internal): If the
11812 cpu is defaulted, use PROCESSOR_DEFAULT and PROCESSOR_DEFAULT64 to
11813 set the default tuning. Add asserts to make sure the cpu and tune
11814 indexes are defined. Fix tests for cpu/tune index to use >= 0 to
11815 test whether the index is set, instead of > 0.
11816 (rs6000_file_start): Do not reset the default cpu if the current
11817 bit-size is different from the configured bit-size.
11818
11819 2012-03-09 Tristan Gingold <gingold@adacore.com>
11820
11821 * config/vms/vms-crtlmap.map: Add comments.
11822 Add entries needed to build Ada RTS.
11823
11824 2012-03-09 Tristan Gingold <gingold@adacore.com>
11825
11826 * ginclude/stddef.h: Do not define __size_t on VMS.
11827
11828 2012-03-09 Tristan Gingold <gingold@adacore.com>
11829
11830 * c-tree.h (c_default_pointer_mode): New variable.
11831 * c-decl.c (c_default_pointer_mode): New variable.
11832 (c_build_pointer_type): New function.
11833 (grokdeclarator): Call c_build_pointer_type instead
11834 of build_pointer_type.
11835
11836 * config/vms/vms-c.c: Include c-tree.h
11837 (saved_pointer_mode): New variable.
11838 (handle_pragma_pointer_size): New function.
11839 (vms_pragma_pointer_size, vms_pragma_required_pointer_size): Likewise.
11840 (vms_c_register_pragma): Register __pointer_size and
11841 __required_pointer_size pragmas.
11842
11843 2012-03-09 Tristan Gingold <gingold@adacore.com>
11844
11845 * config/vms/vms-c.c (vms_construct_include_filename): New function.
11846 (vms_c_register_includes): Reference it.
11847
11848 2012-03-09 Andrew Pinski <apinski@cavium.com>
11849
11850 PR middle-end/51988
11851 * tree-ssa-phiopt.c: Include tree-pretty-print.h for
11852 print_generic_expr.
11853 (tree_ssa_phiopt_worker): Go through all the PHIs for
11854 value_replacement instead of just the singleton one.
11855 (value_replacement): Change return type to int. Return 0 instead of
11856 false.
11857 Allow the middle basic block to contain more than just the defining
11858 statement.
11859 Handle non empty middle basic blocks.
11860 * Makefile.in (tree-ssa-phiopt.o): Add tree-pretty-print.h.
11861
11862 2012-03-09 Jiangning Liu <jiangning.liu@arm.com>
11863
11864 * tree-scalar-evolution (interpret_rhs_expr): generate chrec for
11865 array reference and component reference.
11866 (analyze_scalar_evolution_for_address_of): New.
11867
11868 2012-03-08 Jie Zhang <jzhang918@gmail.com>
11869
11870 PR target/49862
11871 * config/bfin/bfin.c (hwloop_optimize): Fix unused variable warnings.
11872 (hwloop_pattern_reg): Fix set but not used warning.
11873 (bfin_reorg_loops): Remove unused parameter.
11874 (bfin_reorg): Update use of bfin_reorg_loops.
11875
11876 2012-03-08 H.J. Lu <hongjiu.lu@intel.com>
11877
11878 * config/i386/i386.c (setup_incoming_varargs_64): Use word_mode
11879 with integer parameters in registers.
11880 (gen_push): Push register in word_mode instead of Pmode.
11881 (ix86_emit_save_regs): Likewise.
11882 (ix86_emit_save_regs_using_mov): Save integer registers in word_mode.
11883 (gen_pop): Pop register in word_mode instead of Pmode.
11884 (ix86_emit_restore_regs_using_pop): Likewise.
11885 (ix86_expand_prologue): Replace Pmode with word_mode for push
11886 immediate. Use ix86_gen_pro_epilogue_adjust_stack. Save and
11887 restore RAX and R10 in word_mode.
11888 (ix86_emit_restore_regs_using_mov): Restore integer registers
11889 in word_mode.
11890 (ix86_expand_split_stack_prologue): Save R10_REG and restore in
11891 word_mode.
11892 (ix86_split_to_parts): Use word_mode with PUT_MODE for push.
11893 (ix86_split_long_move): Likewise.
11894
11895 * config/i386/i386.md (W): New.
11896 (*push<mode>2_prologue): Replace :P with :W.
11897 (*pop<mode>1): Likewise.
11898 (*pop<mode>1_epilogue): Likewise.
11899 (push/pop peephole2): Use word_mode scratch registers.
11900
11901 2012-03-08 Uros Bizjak <ubizjak@gmail.com>
11902
11903 * config/i386/predicates.md (indirect_branch_operand): Simplify.
11904
11905 2012-03-08 Georg-Johann Lay <avr@gjlay.de>
11906
11907 * config/avr/avr.md (*addhi3, addhi3_clobber): Add "w" alternative
11908 for constants in [-63,63].
11909
11910 2012-03-08 Uros Bizjak <ubizjak@gmail.com>
11911
11912 PR target/52530
11913 Revert:
11914 2012-03-04 H.J. Lu <hongjiu.lu@intel.com>
11915
11916 * config/i386/i386.c (ix86_print_operand_address): Only handle
11917 zero-extended DImode addresses.
11918
11919 2012-03-08 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
11920
11921 * configure.ac (gcc_cv_as_ix86_tlsldmplt): Add label.
11922 * configure: Regenerate.
11923
11924 2012-03-08 Georg-Johann Lay <avr@gjlay.de>
11925
11926 PR target/52496
11927 * config/avr/avr.c (avr_mem_clobber): New static function.
11928 (avr_expand_delay_cycles): Add memory clobber operand to
11929 delay_cycles_1, delay_cycles_2, delay_cycles_3, delay_cycles_4.
11930 * config/avr/avr.md (unspec): Add UNSPEC_MEMORY_BARRIER.
11931 (enable_interrupt, disable_interrupt): New expander.
11932 (nopv, sleep, wdr): New expanders.
11933 (delay_cycles_1): Add memory clobber.
11934 (delay_cycles_2): Add memory clobber.
11935 (delay_cycles_3): Add memory clobber.
11936 (delay_cycles_4): Add memory clobber.
11937 (cli_sei): New insn from former "enable_interrupt",
11938 "disable_interrupt" with memory clobber.
11939 (*wdt): New insn from former "wdt" with memory clobber.
11940 (*nopv): Similar, but for "nopv".
11941 (*sleep): Similar, but for "sleep".
11942
11943 2012-03-07 Oleg Endo <olegendo@gcc.gnu.org>
11944 Kaz Kojima <kkojima@gcc.gnu.org>
11945
11946 PR target/52503
11947 * config/sh/sh.opt (msoft-atomic): Use Var instead of Mask.
11948 * config/sh/linux.h (TARGET_DEFAULT): Remove MASK_SOFT_ATOMIC.
11949 (SUBTARGET_OVERRIDE_OPTIONS): Define.
11950
11951 2012-03-07 Uros Bizjak <ubizjak@gmail.com>
11952
11953 * config/i386/predicates.md (x86_64_zext_general_operand): New.
11954 * config/i386/i386.md (*zero_extendsidi2_rex64): Change operand 1
11955 predicate to x86_64_zext_general_operand. Accept "Z" constraint.
11956
11957 2012-03-07 Walter Lee <walt@tilera.com>
11958
11959 * config/tilegx/tilegx.c (tilegx_expand_prologue): Don't generate
11960 REG_CFA_* notes for the stack pointer.
11961 (tilegx_expand_epilogue): Restore stack pointer by adjusting it by
11962 EH_RETURN_STACKADJ_RTX.
11963 * config/tilepro/tilepro.c (tilepro_expand_prologue): Don't
11964 generate REG_CFA_* notes for the stack pointer.
11965 (tilepro_expand_epilogue): Restore stack pointer by adjusting it
11966 by EH_RETURN_STACKADJ_RTX.
11967
11968 2012-03-07 Georg-Johann Lay <avr@gjlay.de>
11969
11970 * doc/invoke.texi (AVR Built-in Macros): Correct condition for
11971 when __AVR_3_BYTE_PC__ is defined.
11972
11973 2012-03-07 Uros Bizjak <ubizjak@gmail.com>
11974
11975 * config/i386/i386.c (ix86_print_operand_punct_valid_p): Add '^'.
11976 (ix86_print_operand): Handle '^'.
11977 * config/i386/i386.md (*strmovdi_rex_1): Macroize memory operands
11978 using P mode iterator. Add %^ to asm template to conditionally emit
11979 addr32 prefix.
11980 (*rep_movdi_rex64): Ditto.
11981 (*strsetdi_rex_1): Ditto.
11982 (*rep_stosdi_rex64): Ditto.
11983 (*strmov{si,hi,qi}_1): Add %^ to asm template to
11984 conditionally emit addr32 prefix.
11985 (*rep_mov{si,qi}): Ditto.
11986 (*strset{si,hi,qi}): Ditto.
11987 (*rep_stos{si,qi}): Ditto.
11988 (*cmpstrnqi_nz_1): Ditto.
11989 (*cmpstrnqi_1): Ditto.
11990 (*strlenqi_1): Ditto.
11991
11992 2012-03-07 H.J. Lu <hongjiu.lu@intel.com>
11993
11994 * config/i386/i386.c (function_value_64): Return pointers in
11995 word_mode instead of Pmode.
11996 (ix86_promote_function_mode): Likewise.
11997
11998 2012-03-07 Richard Guenther <rguenther@suse.de>
11999
12000 * coverage.c (get_gcov_type): Use type_for_mode.
12001 (get_gcov_unsigned_t): Likewise.
12002 * expr.c (store_constructor): Use type_for_mode.
12003 (try_casesi): Likewise.
12004 * tree-ssa-loop-ivopts.c (add_standard_iv_candidates_for_size): Remove.
12005 (add_standard_iv_candidates): Use standard type trees.
12006 * dojump.c (do_jump): Remove dead code.
12007
12008 2012-03-07 Richard Guenther <rguenther@suse.de>
12009
12010 * c-typeck.c (pointer_diff): Use c_common_type_for_size.
12011
12012 2012-03-07 Richard Guenther <rguenther@suse.de>
12013
12014 * convert.c (strip_float_extensions): Move ...
12015 * tree.c (strip_float_extensions): ... here.
12016
12017 2012-03-07 Georg-Johann Lay <avr@gjlay.de>
12018
12019 PR target/52484
12020 * config/avr/avr.md (xload<mode>_A): Add R22... to register footprint.
12021
12022 2012-03-07 Richard Guenther <rguenther@suse.de>
12023
12024 * omp-low.c (extract_omp_for_data): Use signed_type_for.
12025 (expand_omp_for_generic): Likewise.
12026 (expand_omp_for_static_nochunk): Likewise.
12027 (expand_omp_for_static_chunk): Likewise.
12028 * tree-vect-stmts.c (vect_gen_perm_mask): Use type_for_mode.
12029 * tree-vect-slp.c (vect_transform_slp_perm_load): Likewise.
12030 * tree-vect-loop-manip.c (vect_gen_niters_for_prolog_loop):
12031 Use unsigned_type_for.
12032 (vect_create_cond_for_align_checks): Use signed_type_for.
12033
12034 2012-03-07 Andrey Belevantsev <abel@ispras.ru>
12035
12036 PR rtl-optimization/52203
12037 * sel-sched.c (estimate_insn_cost): New parameter pempty. Adjust
12038 all callers to pass NULL except ...
12039 (reset_sched_cycles_in_current_ebb): ... here, save the value
12040 in new variable 'empty'. Increase issue_rate only for
12041 non-empty insns.
12042
12043 2012-03-07 Ralf Corsépius <ralf.corsepius@rtems.org>
12044
12045 PR target/51417
12046 * Makefile.in: Let install-gcc-ar depend on installdirs,
12047 gcc-ar$(exeext), gcc-nm$(exeext), gcc-ranlib$(exeext).
12048 Don't double canonicalize if cross-compiling.
12049
12050 2012-03-07 Georg-Johann Lay <avr@gjlay.de>
12051
12052 PR target/52506
12053 * gcc/config/avr/avr.c (expand_epilogue): Fix order of restoration
12054 to: RAMPZ, RAMPY, RAMPX, RAMPD.
12055 (expand_prologue): Only clear RAMPZ if it has effect on RAM-read.
12056
12057 2012-03-07 Georg-Johann Lay <avr@gjlay.de>
12058
12059 PR target/52505
12060 * config/avr/avr.c (avr_out_xload): Don't read unintentionally
12061 from RAM.
12062 * config/avr/avr.md (xload_8): Adjust insn length.
12063
12064 2012-03-07 Georg-Johann Lay <avr@gjlay.de>
12065
12066 PR target/52461
12067 * gcc/config/avr/avr.c (avr_out_lpm): Clear RAMPZ after usage
12068 if RAMPZ affects reading from RAM.
12069
12070 2012-03-07 Richard Guenther <rguenther@suse.de>
12071
12072 PR pch/52518
12073 PR pch/38987
12074 * doc/invoke.texi (Precompiled Headers): Remove sentence that
12075 suggests you can include PCHs from inside another header.
12076
12077 2012-03-07 Richard Sandiford <rdsandiford@googlemail.com>
12078
12079 PR middle-end/52515
12080 * rtl.h (pc_rtx, cc0_rtx, ret_rtx, simple_return_rtx): Add GTY markers.
12081
12082 2012-03-07 Kai Tietz <ktietz@redhat.com>
12083
12084 * doc/invoke.texi (fwritable-relocated-rdata): Document
12085 new Cygwin/MinGW target option.
12086 * config/i386/winnt.c (i386_pe_unique_section): Ignore
12087 reloc if flag -fwritable-relocated-rdata is not set.
12088 (i386_pe_section_type_flags): Likewise.
12089 * config/i386/cygming.opt (fwritable-relocated-rdata):
12090 Add new flag variable flag_writable_rel_rdata.
12091
12092 2012-03-07 Richard Guenther <rguenther@suse.de>
12093
12094 * tree-ssa-math-opts.c (convert_mult_to_widen): Check actual
12095 precision against gimple constraints.
12096
12097 2012-03-06 Richard Sandiford <rdsandiford@googlemail.com>
12098
12099 PR middle-end/52372
12100 * rtl.h (pc_rtx, ret_rtx, simple_return_rtx, cc0_rtx): Redefine as
12101 variables.
12102 (GR_PC, GR_CC0, GR_RETURN, GR_SIMPLE_RETURN): Delete.
12103 * emit-rtl.c (pc_rtx, ret_rtx, simple_return_rtx, cc0_rtx): New
12104 variables.
12105 (init_emit_regs): Move associated initialization to...
12106 (init_emit_once): ...here.
12107
12108 2012-03-06 Richard Henderson <rth@redhat.com>
12109
12110 * config/m68k/m68k.h (ISA_HAS_TAS): New.
12111 * config/m68k/sync.md (atomic_test_and_set): Use it.
12112 (atomic_test_and_set_1): Likewise.
12113
12114 2012-03-06 Michael Meissner <meissner@linux.vnet.ibm.com>
12115
12116 PR target/50310
12117 * config/rs6000/vector.md (vector_uneq<mode>): Add support for
12118 UNEQ, LTGT, ORDERED, and UNORDERED IEEE vector comparisons.
12119 (vector_ltgt<mode>): Likewise.
12120 (vector_ordered<mode>): Likewise.
12121 (vector_unordered<mode>): Likewise.
12122 * config/rs6000/rs6000.c (rs6000_emit_vector_compare_inner): Likewise.
12123
12124 2012-03-06 Aldy Hernandez <aldyh@redhat.com>
12125
12126 * trans-mem.c: New typedef for tm_region_p.
12127 Define vector types for tm_region_p.
12128 (tm_region_init): Replace region_worklist to a vector called
12129 bb_regions.
12130
12131 2012-03-06 Richard Guenther <rguenther@suse.de>
12132
12133 * fold-const.c (build_fold_addr_expr_with_type_loc): Fold
12134 MEM_REF with constant pointer operand.
12135
12136 2012-03-06 Richard Guenther <rguenther@suse.de>
12137
12138 PR middle-end/52493
12139 * tree-ssa-alias.c (ptr_derefs_may_alias_p): Robustify.
12140
12141 2012-03-06 Tristan Gingold <gingold@adacore.com>
12142
12143 * config/vms/vms-c.c (vms_pragma_nomember_alignment): Handle octaword.
12144 (external_model_kind): Improve documentation.
12145 (vms_pragma_extern_model): Handle relaxed_redef.
12146 (vms_c_register_pragma): Allow expansion for nomember_alignment.
12147
12148 2012-03-06 Georg-Johann Lay <avr@gjlay.de>
12149
12150 * doc/invoke.texi (AVR Options): -mmcu=: Document the XMEGA cores.
12151 Explain RAMPD, RAMPX, RAMPDY, RAMPZ usage by avr-gcc.
12152 Some more notes on EIND usage and reorder EIND subsection.
12153
12154 2012-03-06 Tristan Gingold <gingold@adacore.com>
12155
12156 * config/vms/vms.c (VMS_CRTL_LDBL): Rename from VMS_CRTL_PRNTF.
12157 * config/vms/vms-crtlmap.map: Rename PRNTF to LDBL.
12158
12159 2012-03-06 Tristan Gingold <gingold@adacore.com>
12160
12161 * config/vms/t-vmsnative (version): Define.
12162 * config/vms/t-vms (STMP_FIXPROTO, STMP_FIXINC, version): Remove.
12163
12164 2012-03-06 Andrey Belevantsev <abel@ispras.ru>
12165
12166 PR rtl-optimization/52250
12167 * sel-sched-ir.c (maybe_tidy_empty_bb): Try harder to find a bb
12168 to put note list into. Unconditionally call move_bb_info.
12169 (move_bb_info): Do not assert the blocks being in the same region,
12170 just drop the note list if they are not.
12171
12172 2012-03-06 Oleg Endo <olegendo@gcc.gnu.org>
12173
12174 PR target/51244
12175 * config/sh/sh.c (sh_expand_t_scc): Remove SH2A special case
12176 and use unified expansion logic.
12177 * config/sh/sh.md (xorsi3_movrt): Rename to movrt. Move
12178 closer to the existing movt insn.
12179 (negc): Rename insn to *negc. Add new expander.
12180 (movnegt): Use xor pattern for T bit negation. Reserve helper
12181 constant for negc pattern.
12182 (*movnegt): New insn and splitter.
12183
12184 2012-03-05 Bernd Schmidt <bernds@codesourcery.com>
12185
12186 * c-typeck.c (pointer_diff): Check for POINTER_PLUS_EXPR, not
12187 PLUS_EXPR.
12188
12189 2012-03-05 Richard Henderson <rth@redhat.com>
12190
12191 * genemit.c (main): Include "target.h" in insn-emit.c.
12192 * Makefile.in (insn-emit.o): Depend on TARGET_H.
12193 * config/sh/sync.md (atomic_test_and_set): Reference
12194 targetm.atomic_test_and_set_trueval instead of
12195 TARGET_ATOMIC_TEST_AND_SET_TRUEVAL.
12196
12197 2012-03-05 Joern Rennecke <joern.rennecke@embecosm.com>
12198
12199 * config/epiphany/epiphany.c (epiphany_function_value_regno_p):
12200 Make static.
12201
12202 2012-03-05 Steven Bosscher <steven@gcc.gnu.org>
12203
12204 * langhooks.c (add_builtin_type): New function.
12205 * langhooks.h (add_builtin_type): Export it.
12206 * config/mep/mep.c (mep_init_builtins): Use it.
12207 * config/rs6000/rs6000.c (rs6000_init_builtins): Use it.
12208
12209 2012-03-05 Jakub Jelinek <jakub@redhat.com>
12210
12211 PR debug/51902
12212 * tree.h (BLOCK_SAME_RANGE): Define.
12213 * function.c (block_fragments_nreverse): Clear BLOCK_SAME_RANGE
12214 if BLOCK_FRAGMENT_CHAIN is non-NULL, but has it cleared.
12215 Also clear BLOCK_SAME_RANGE if fragment chain's supercontext fragment
12216 isn't equal to supercontext fragment's fragment chain.
12217 Adjust BLOCK_SUPERCONTEXT to point to supercontext fragment's
12218 fragment origin.
12219 (blocks_nreverse_all): Likewise.
12220 (reorder_blocks_1): Compute BLOCK_SAME_RANGE bits. Set
12221 BLOCK_SUPERCONTEXT to supercontext fragment instead of
12222 supercontext fragment's fragment origin.
12223 * dwarf2out.c (add_high_low_attributes): If stmt has the same
12224 range as its parent (or parents thereof etc.), use the parent's
12225 DW_AT_ranges value instead of creating a new .debug_ranges range.
12226
12227 2012-03-05 Richard Henderson <rth@redhat.com>
12228
12229 PR tree-opt/52242
12230 Revert: 2011-11-26 Richard Henderson <rth@redhat.com>
12231 * omp-low.c (expand_omp_atomic): Assume anything aligned to
12232 BIGGEST_ALIGNMENT is aligned.
12233
12234 2012-03-05 Richard Henderson <rth@redhat.com>
12235
12236 * config/sh/sh.h (TARGET_ATOMIC_TEST_AND_SET_TRUEVAL): Move...
12237 * config/sh/sh.c: ... here.
12238
12239 2012-03-05 Richard Henderson <rth@redhat.com>
12240
12241 PR target/52481
12242 * config/m68k/sync.md (atomic_test_and_set): Use expand_simple_unop
12243 instead of calling negqi2 directly.
12244
12245 2012-03-05 Aldy Hernandez <aldyh@redhat.com>
12246
12247 PR middle-end/52463
12248 * trans-mem.c (tm_region_init): Use last_basic_block.
12249
12250 2012-03-05 Oleg Endo <olegendo@gcc.gnu.org>
12251
12252 * config/sh/sh.h (TARGET_ATOMIC_TEST_AND_SET_TRUEVAL): New hook.
12253 * config/sh/sync.md (atomic_test_and_set): New expander.
12254 (tasb, atomic_test_and_set_soft): New insns.
12255 * config/sh/sh.opt (menable-tas): New option.
12256 * doc/invoke.texi (SH Options): Document it.
12257
12258 2012-03-05 Richard Guenther <rguenther@suse.de>
12259
12260 * cfgloop.c (verify_loop_structure): Verify dominators before
12261 using them.
12262 * graphite-clast-to-gimple.c (graphite_verify): Do not verify
12263 dominators from here.
12264 * graphite-scop-detection.c (create_sese_edges): Likewise.
12265 * loop-doloop.c (doloop_optimize_loops): Likewise.
12266 * loop-init.c (loop_optimizer_init): Likewise.
12267 * loop-unroll.c (unroll_and_peel_loops): Likewise.
12268 * loop-unswitch.c (unswitch_loops): Likewise.
12269 * tree-ssa-loop-manip.c (tree_transform_and_unroll_loop): Likewise.
12270 * tree-parloops.c (parallelize_loops): Likewise. Verify
12271 only when checking is enabled.
12272 * tree-loop-distribution.c (tree_loop_distribution): Likewise.
12273
12274 2012-03-05 Bernd Schmidt <bernds@codesourcery.com>
12275
12276 * genautomata.c (parse_automata_opt): New static function.
12277 (initiate_automaton_gen): Remove all option handling code. Remove
12278 argc argument. All callers changed.
12279 (main): Call init_rtx_reader_args_cb with the new function as argument.
12280
12281 2012-03-05 Richard Guenther <rguenther@suse.de>
12282
12283 * cfgexpand.c (gimple_expand_cfg): Free dominator info.
12284 * tree-if-conv.c (combine_blocks): Free post-dominator info
12285 after breaking it.
12286 * tree-parloops.c (create_parallel_loop): Free and re-compute
12287 dominator info after breaking it.
12288
12289 2012-03-05 Richard Guenther <rguenther@suse.de>
12290
12291 PR middle-end/52353
12292 * optabs.h (trapv_unoptab_p): New function.
12293 (trapv_binoptab_p): Likewise.
12294 * optabs.c (expand_binop): Use emit_libcall_block_1 with
12295 a proper equiv_may_trap argument.
12296 (expand_unop): Likewise.
12297 (emit_libcall_block_1): Take extra argument whether the
12298 instruction may trap. Renamed from ...
12299 (emit_libcall_block): ... this. New wrapper.
12300
12301 2012-03-05 Jakub Jelinek <jakub@redhat.com>
12302
12303 PR tree-optimization/51721
12304 * tree-vrp.c (register_edge_assert_for_2): If comparing
12305 lhs of right shift by constant with an integer constant,
12306 add ASSERT_EXPRs for the rhs1 of the right shift.
12307
12308 * cfgrtl.c (cfg_layout_merge_blocks): Cleanup.
12309
12310 2012-03-05 Richard Guenther <rguenther@suse.de>
12311
12312 * tree.c (integer_zerop): Handle VECTOR_CSTs.
12313 (integer_onep): Likewise.
12314 (integer_all_onesp): Likewise.
12315
12316 2012-03-05 Georg-Johann Lay <avr@gjlay.de>
12317
12318 * config/avr/avr.md (*umaddqihi4.2): New insn-and-split.
12319
12320 2012-03-04 H.J. Lu <hongjiu.lu@intel.com>
12321
12322 * config/i386/i386.c (pro_epilogue_adjust_stack): Check Pmode
12323 instead of TARGET_64BIT.
12324
12325 2012-03-04 H.J. Lu <hongjiu.lu@intel.com>
12326
12327 * config/i386/i386.c (ix86_expand_prologue): Check Pmode to set
12328 adjust_stack_insn.
12329
12330 2012-03-04 H.J. Lu <hongjiu.lu@intel.com>
12331
12332 * config/i386/i386.c (ix86_print_operand_address): Only handle
12333 zero-extended DImode addresses.
12334
12335 2012-03-04 Uros Bizjak <ubizjak@gmail.com>
12336
12337 * config/i386/i386.c (ix86_print_operand) <case '+'>: Declare
12338 taken and cputaken as bool.
12339
12340 2012-03-04 Uros Bizjak <ubizjak@gmail.com>
12341
12342 * config/i386/constraints.md (Ya): New internal constraint.
12343 * config/i386/i386.md (zero_extendsidi2): Remove expansion.
12344 (*zero_extendsidi2_rex64): Add x,x alternative.
12345 (*zero_extendsidi2): Ditto. Add o,0 alternative.
12346 Remove flags reg clobber. Adjust corresponding splits.
12347 (zero_extend<mode>si2): Macroize expander from zero_extendhisi2 and
12348 zero_extendqisi2 expanders using SWI12 mode iterator.
12349 (zero_extend<mode>si2_and): Macroize insn from
12350 zero_extendhisi2_and and zero_extendqisi2_and. Merge corresponding
12351 splitters.
12352 (*zero_extend<mode>si2): Macroize insn from
12353 *zero_extendhisi2_movzbl and *zero_extendqisi2_movzbl.
12354 (*zero_extend*2_movzbl_and): Remove insn patterns.
12355 (zero_extendqihi2_and): Merge corresponding splitter.
12356 (*zero_extendqihi2): Rename from *zero_extendqihi2_movzbl.
12357 (*zero_extend*2_movzbl_and): Remove insn patterns.
12358 (*anddi_1): Split TYPE_IMOVX instructions.
12359 (*andsi_1): Use Ya for alternative 2. Split TYPE_IMOVX instructions.
12360 (*andhi_1): Ditto.
12361 (and->zext splitter): Add splitter pattern.
12362 (zero extend with andsi3 splitter): Adjust zero_extend pattern.
12363
12364 2012-03-04 Sandra Loosemore <sandra@codesourcery.com>
12365
12366 * doc/invoke.texi (C++ Dialect Options): Minor copy-edits to
12367 x86-specific text.
12368 (Debugging Options): Likewise.
12369 (Optimize Options): Likewise.
12370 (i386 and x86-64 Options): Discuss -march before -mtune, consistently
12371 with other architectures. Use official processor names with correct
12372 spelling/capitalization. Fix formatting and grammar issues.
12373 (i386 and x86-64 Windows Options): Similar cleanup here.
12374
12375 2012-03-03 Kaz Kojima <kkojima@gcc.gnu.org>
12376
12377 * config/sh/sh.md (abssi2): Add TARGET_SH1 condition.
12378
12379 2012-03-03 Kaz Kojima <kkojima@gcc.gnu.org>
12380
12381 * config/sh/sh.c (sh_dwarf_register_span): Don't apply
12382 DBX_REGISTER_NUMBER.
12383
12384 2012-03-03 Kaz Kojima <kkojima@gcc.gnu.org>
12385
12386 * config/sh/sh.c (shiftcosts): Return MAX_COST when the first
12387 operand is CONST_INT. Take COSTS_N_INSNS into account.
12388 (sh_rtx_costs): Don't apply COSTS_N_INSNS to the return value
12389 of shiftcosts.
12390
12391 2012-03-02 Richard Henderson <rth@redhat.com>
12392
12393 * optabs.c (expand_atomic_test_and_set): Honor
12394 atomic_test_and_set_trueval even when atomic_test_and_set
12395 optab is not in use.
12396
12397 2012-03-02 Kaz Kojima <kkojima@gcc.gnu.org>
12398
12399 PR target/48596
12400 PR target/48806
12401 * config/sh/sh.c (sh_register_move_cost): Increase cost between
12402 GENERAL_REGS and FP_REGS for SImode.
12403
12404 2012-03-02 Oleg Endo <olegendo@gcc.gnu.org>
12405
12406 PR target/49486
12407 * config/sh/sh.md (negdi2): Add TARGET_SH1 condition.
12408 (absdi2): New expander.
12409 (*absdi2, *negabsdi2, negdi_cond): New insns and splits.
12410
12411 2012-03-02 Oleg Endo <olegendo@gcc.gnu.org>
12412
12413 * config/sh/sync.md (atomic_exchange<mode>): New expander.
12414 (atomic_exchange<mode>_soft): New insn.
12415
12416 2012-03-02 Oleg Endo <olegendo@gcc.gnu.org>
12417
12418 * config/sh/sync.md: Update copyright notice dates.
12419 (atomic_compare_and_swap<mode>): Use SImode for return value instead
12420 of QImode.
12421 (atomic_compare_and_swap<mode>_soft): Likewise.
12422
12423 2012-03-02 Oleg Endo <olegendo@gcc.gnu.org>
12424
12425 PR target/31640
12426 * config/sh/sh.h (LOOP_ALIGN): Move logic to sh_loop_align.
12427 * config/sh/sh.c: Update copyright notice dates.
12428 (sh_loop_align): Add logic from LOOP_ALIGN. Don't disable loop
12429 alignment for TARGET_HARD_SH4.
12430 (sh_option_override): Reduce default function alignment. Set
12431 loop alignment to 4 bytes when not optimizing for size.
12432
12433 2012-03-02 Maxim Kuvyrkov <maxim@codesourcery.com>
12434
12435 PR middle-end/50335
12436 * doc/invoke.texi (floop-flatten): Remove.
12437 * toplev.c (process_options): Remove references to flag_loop_flatten.
12438 * tree-ssa-loop.c (gate_graphite_transform): Same.
12439 * common.opt (floop-flatten): Obsolete.
12440 * graphite-poly.c (apply_poly_transforms): Remove reference to
12441 flag_loop_flatten.
12442 * Makefile.in (graphite-flattening.o): Remove.
12443 * graphite-flattening.c: Remove.
12444
12445 2012-03-02 Uros Bizjak <ubizjak@gmail.com>
12446
12447 * compare-elim.c (find_comparisons_in_bb): Eliminate only compares
12448 having mode compatible with the mode of previous compare. Substitute
12449 compare mode of previous compare with the mode, compatible
12450 with eliminated and previous compare.
12451
12452 2012-03-02 Peter Bergner <bergner@vnet.ibm.com>
12453
12454 * config/rs6000/dfp.md (floatdidd2): New define_insn.
12455
12456 2012-03-02 Uros Bizjak <ubizjak@gmail.com>
12457
12458 * config/i386/i386.c (ix86_cc_modes_compatible): Declare CCZmode
12459 compatible with CCGOCmode and CCGCmode.
12460
12461 2012-03-02 Peter Bergner <bergner@vnet.ibm.com>
12462
12463 * config/rs6000/vsx.md (vsx_set_<mode>): Reorder operands.
12464
12465 2012-03-02 Ulrich Weigand <ulrich.weigand@linaro.org>
12466
12467 * config/arm/arm.c (arm_sat_operator_match): New function.
12468 * config/arm/arm-protos.h (arm_sat_operator_match): Add prototype.
12469 * config/arm/arm.md ("insn" attribute): Add "sat" value.
12470 ("SAT", "SATrev"): New code iterators.
12471 ("SATlo", "SAThi"): New code iterator attributes.
12472 ("*satsi_<SAT:code>"): New pattern.
12473 ("*satsi_<SAT:code>_shift"): Likewise.
12474 * config/arm/arm-fixed.md ("arm_ssatsihi_shift"): Add "insn"
12475 and "shift" attributes.
12476 ("arm_usatsihi"): Add "insn" attribute.
12477 * config/arm/predicates.md (sat_shift_operator): Allow multiplication
12478 by powers of two. Do not allow shift by 32.
12479
12480 2012-03-02 Uros Bizjak <ubizjak@gmail.com>
12481
12482 PR target/46716
12483 * config/i386/i386.c (construct_container): Use gen_reg_or_parallel
12484 to pass the argument in the register of "natural" mode.
12485
12486 2012-03-02 Richard Guenther <rguenther@suse.de>
12487
12488 PR tree-optimization/52406
12489 * tree-data-ref.h: Update documentation about DR_BASE_OBJECT.
12490 (struct indices): Add unconstrained_base member.
12491 (struct dr_alias): Remove unused vops member.
12492 (DR_UNCONSTRAINED_BASE): New define.
12493 * tree-data-ref.c (dr_analyze_indices): For COMPONENT_REFs
12494 add indices to allow their disambiguation. Make DR_BASE_OBJECT
12495 be an artificial access that covers the whole indexed object,
12496 or mark it with DR_UNCONSTRAINED_BASE if we cannot do so. Canonicalize
12497 plain decl base-objects to their MEM_REF variant.
12498 (dr_may_alias_p): When the base-object of either data reference
12499 has unknown size use only points-to information.
12500 (compute_affine_dependence): Make dumps easier to read and
12501 more verbose.
12502 * tree-vect-data-ref.c (vector_alignment_reachable_p): Use
12503 DR_REF when looking for packed references.
12504 (vect_supportable_dr_alignment): Likewise.
12505
12506 2012-03-02 Greta Yorsh <Greta.Yorsh@arm.com>
12507
12508 * config/arm/arm-ldmstm.ml (write_ldm_commutative_peephole):
12509 Improve conditions for peepholes of loads followed by commutative
12510 operators.
12511 * config/arm/ldmstm.md: Regenerated.
12512
12513 2012-03-02 Richard Guenther <rguenther@suse.de>
12514
12515 * BASE-VER: Set to 4.8.0.
12516
12517 2012-03-01 Richard Earnshaw <rearnsha@arm.com>
12518
12519 * config.gcc (obsolete): Add all ARM targets using the FPA.
12520 (with_fpu): Obsolete selection of the FPA or Maverick on ARM.
12521 * doc/install.texi: Avoid references to obsolete ARM ports.
12522
12523 2012-03-01 Joern Rennecke <joern.rennecke@embecosm.com>
12524
12525 * config/epiphany/epiphany.md (movmisalign<mode>): New patterns.
12526
12527 2012-03-01 Jeremy Bennett <jeremy.bennett@embecosm.com>
12528 Joern Rennecke <joern.rennecke@embecosm.com>
12529
12530 * doc/extend.texi: Expand and update information on interrupt
12531 attribute for Epiphany.
12532
12533 2012-03-01 Oleg Endo <olegendo@gcc.gnu.org>
12534
12535 * config/sh/sh-protos.h: Update copyright notice dates.
12536 * config/sh/sh.h: Likewise.
12537 * config/sh/sh.md: Likewise.
12538 * config/sh/constraints.md: Likewise.
12539 * config/sh/predicates.md: Likewise.
12540
12541 2012-03-01 Oleg Endo <olegendo@gcc.gnu.org>
12542
12543 * config/sh/sh-protos.h (tertiary_reload_operand): Remove dead function.
12544 * config/sh/sh.c (tertiary_reload_operand): Likewise.
12545
12546 2012-03-01 Oleg Endo <olegendo@gcc.gnu.org>
12547
12548 * config/sh/constraints.md: Fix comment typo.
12549
12550 2012-03-01 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
12551
12552 PR target/52408
12553 * config/pa/pa.md (zvdep_imm32): Change type of variable x from int to
12554 unsigned HOST_WIDE_INT.
12555 (zvdep_imm64): Likewise.
12556 (vdepi_ior): Change type of variable x from int to HOST_WIDE_INT.
12557 (vdepi_and): Likewise.
12558 Likewise for unamed 64-bit patterns.
12559 * config/pa/predicates.md (lhs_lshift_cint_operand): Update comment.
12560
12561 2012-03-01 Alexandre Oliva <aoliva@redhat.com>
12562
12563 PR debug/52001
12564 PR rtl-optimization/52417
12565 * cselib.c (cselib_any_perm_equivs): New variable.
12566 (cselib_reset_table): Check that it's not set when not
12567 preserving constants.
12568 (cselib_add_permanent_equiv): Set it.
12569 (cselib_have_permanent_equivalences): New.
12570 (cselib_init, cselib_finish): Reset it.
12571 * cselib.h (cselib_have_permanent_equivalences): Declare.
12572 * alias.c (get_addr): Restore earlier behavior when there
12573 aren't permanent equivalences.
12574
12575 2012-03-01 Steven Bosscher <steven@gcc.gnu.org>
12576
12577 * config/mn10300/mn10300-modes.def: Fix copyright notice.
12578 * config/v850/v850-modes.def: Fix copyright notice.
12579
12580 2012-03-01 Georg-Johann Lay <avr@gjlay.de>
12581
12582 * doc/extend.texi (AVR Built-in Functions): Document
12583 __builtin_avr_flash_segment.
12584
12585 * config/avr/builtins.def (__builtin_avr_flash_segment): New entry.
12586 * config/avr/avr.md (flash_segment, flash_segment1): New expanders.
12587 (*split.flash_segment): New insn-and-split.
12588 * config/avr/avr.c (avr_init_builtins): Add local variables:
12589 const_memx_void_node, const_memx_ptr_type_node,
12590 char_ftype_const_memx_ptr.
12591
12592 2012-03-01 Jakub Jelinek <jakub@redhat.com>
12593
12594 PR tree-optimization/52445
12595 * tree-ssa-phiopt.c (struct name_to_bb): Remove ssa_name field,
12596 add ssa_name_ver, offset and size fields and change store field
12597 to bool.
12598 (name_to_bb_hash, name_to_bb_eq): Adjust for the above changes.
12599 (add_or_mark_expr): Likewise. Only consider previous stores
12600 with the same size and offset.
12601 (nt_init_block): Only look at gimple_assign_single_p stmts,
12602 doesn't look at rhs2.
12603
12604 2012-03-01 Richard Guenther <rguenther@suse.de>
12605
12606 PR middle-end/52443
12607 * tree-cfg.c (verify_gimple_assign_unary): Allow any
12608 conversions from integral types to pointer types.
12609
12610 2012-03-01 Georg-Johann Lay <avr@gjlay.de>
12611
12612 * config/avr/avr-c.c (avr_cpu_cpp_builtins): Restore built-in
12613 defines for __UINT24_MAX__, __INT24_MAX__, __INT24_MIN__
12614 unintentionally removed in r184616.
12615
12616 2012-03-01 Venkataramanan Kumar <venkataramanan.kumar@amd.com>
12617
12618 * doc/invoke.texi: Document AMD bdver2 and remove mentioning
12619 3DNow from bdver1.
12620
12621 2012-02-29 Jakub Jelinek <jakub@redhat.com>
12622 Uros Bizjak <ubizjak@gmail.com>
12623
12624 PR target/52437
12625 * config/i386/sse.md (vec_set<mode>_0): Swap "*r" and "fF"
12626 alternatives, add "e" constraint to the new last alternative
12627 and ! to last 3 alternatives.
12628
12629 2012-02-29 Eric Botcazou <ebotcazou@adacore.com>
12630
12631 * dwarf2out.c (modified_type_die): Set DW_AT_GNAT_descriptive_type and
12632 DW_AT_artificial attributes at the end of the processing.
12633 (gen_array_type_die): Likewise.
12634 (gen_enumeration_type_die): Likewise.
12635 (gen_struct_or_union_type_die): Likewise.
12636 (add_gnat_descriptive_type_attribute): Do not suppress debug info for
12637 the parent type.
12638
12639 2012-02-29 Jakub Jelinek <jakub@redhat.com>
12640
12641 PR middle-end/52419
12642 * expr.c (expand_assignment): If doing misaligned store that doesn't
12643 cover all mode bits, perform a RMW cycle.
12644
12645 PR tree-optimization/52429
12646 * tree-parloops.c (separate_decls_in_region_debug): Return early
12647 if var is LABEL_DECL.
12648
12649 2012-02-29 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
12650
12651 PR tree-optimization/52424
12652 * tree-ssa-dom.c (dom_opt_leave_block): Push a marker before
12653 calling dom_thread_across_edge.
12654
12655 2012-02-29 Georg-Johann Lay <avr@gjlay.de>
12656
12657 * config/avr/avr.c: Move definition of TARGET macros to end of file.
12658
12659 2012-02-29 Georg-Johann Lay <avr@gjlay.de>
12660
12661 * config/avr/avr-protos.h (avr_output_bld): Remove unused prototype.
12662 * config/avr/avr.c (avr_output_bld): Remove unused function.
12663 (avr_out_sbxx_branch): Use "%T" to print bit position.
12664
12665 2012-02-29 Georg-Johann Lay <avr@gjlay.de>
12666
12667 * config/avr/avr.md: Untabify.
12668
12669 2012-02-29 Georg-Johann Lay <avr@gjlay.de>
12670
12671 * config/avr/avr.md (eqne): New code iterator.
12672 (*dec-and-branchsi): Use it in text peephole's condition.
12673 (*dec-and-branchhi): Ditto.
12674 (*dec-and-branchqi): Ditto.
12675
12676 2012-02-29 Georg-Johann Lay <avr@gjlay.de>
12677
12678 PR target/49939
12679 * config/avr/avr.h (ASM_SPEC): Add -mno-skip-bug if we know that
12680 the device does not have the skip-bug.
12681
12682 2012-02-29 Oleg Endo <olegendo@gcc.gnu.org>
12683
12684 * doc/invoke.texi (-msoft-atomic): Add more detailed description.
12685 (-mbranch-cost, -mcbranchdi -mcmpeqdi -mfused-madd
12686 -mpretend-cmove): New.
12687
12688 2012-02-29 Jakub Jelinek <jakub@redhat.com>
12689
12690 PR bootstrap/52397
12691 * df.h (struct df_d): Adjust comment that hard_regs_live_count
12692 doesn't count DEBUG_INSN refs.
12693 * df-scan.c (df_ref_create_structure): Don't set DF_HARD_REG_LIVE
12694 for DEBUG_INSN refs.
12695
12696 2012-02-28 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
12697
12698 Partially revert:
12699
12700 2012-02-20 Richard Guenther <rguenther@suse.de>
12701 PR tree-optimization/52298
12702 * tree-vect-stmts.c (vectorizable_load): Properly use
12703 STMT_VINFO_DR_STEP instead of DR_STEP when vectorizing outer loops.
12704
12705 2012-02-28 Aldy Hernandez <aldyh@redhat.com>
12706
12707 PR middle-end/51752
12708 * gimple.h (gimple_in_transaction): New.
12709 (gimple_set_in_transaction): New.
12710 (struct gimple_statement_base): Add in_transaction field.
12711 * tree-ssa-loop-im.c: (movement_possibility): Restrict movement of
12712 transaction loads.
12713 (tree_ssa_lim_initialize): Compute transaction bits.
12714 * tree.h (compute_transaction_bits): Protoize.
12715 * trans-mem.c (tm_region_init): Use the heap to store BB
12716 auxilliary data.
12717 (compute_transaction_bits): New.
12718
12719 2012-02-28 Bernhard Reutner-Fischer <aldot@gcc.gnu.org>
12720
12721 * gcc.c (display_help): Document --help=common and sort entries
12722 alphabetically.
12723
12724 2012-02-28 Bernhard Reutner-Fischer <aldot@gcc.gnu.org>
12725
12726 * doc/install.texi: Document check-$LANG specific shortcuts
12727
12728 2012-02-28 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
12729
12730 PR target/51534
12731 * config/arm/arm.c (neon_builtin_data): Add entries for vcgeu
12732 and vcgtu.
12733 * config/arm/arm_neon.h: Regenerate.
12734 * config/arm/neon.md (unspec): Add UNSPEC_VCGEU, and UNSPEC_VCGTU.
12735 (neon_vcgeu): New insn.
12736 (neon_vcgtu): Likewise.
12737 * config/arm/neon.ml (s_8_32, u_8_32): New lists.
12738 (ops): Unsigned comparison intrinsics call a different builtin.
12739
12740 2012-02-28 Richard Guenther <rguenther@suse.de>
12741
12742 PR target/52407
12743 * config/i386/i386.c (ix86_expand_vector_set): Fix element
12744 ordering for the VEC_CONCAT for two element vectors for
12745 V2SFmode, V2SImode and V2DImode.
12746
12747 2012-02-28 Richard Earnshaw <rearnsha@arm.com>
12748
12749 PR target/49448
12750 * config.gcc (arm*-*-linux*): Use an unambiguous pattern for
12751 detecting big-endian triplets.
12752
12753 2012-02-28 Richard Earnshaw <rearnsha@arm.com>
12754
12755 * arm.c (aapcs_vfp_is_call_or_return_candidate): Only use the machine
12756 mode if there is no type information available.
12757
12758 2012-02-28 Thomas Koenig <tkoenig@gcc.gnu.org>
12759
12760 PR tree-optimization/53207
12761 * doc/invoke.texi: Document as experimental and relying on graphite.
12762
12763 2012-02-28 Georg-Johann Lay <avr@gjlay.de>
12764
12765 * config/avr/avr-devices.c (avr_mcu_type): Adjust NULL part
12766 of initializer to changes from r184614.
12767
12768 2012-02-28 Richard Guenther <rguenther@suse.de>
12769
12770 PR tree-optimization/52395
12771 * tree-sra.c (build_ref_for_offset): Also look at the base
12772 TYPE_ALIGN when figuring out the alignment of the replacement.
12773
12774 2012-02-28 Richard Guenther <rguenther@suse.de>
12775
12776 PR tree-optimization/52402
12777 * ipa-prop.c (ipa_modify_call_arguments): Properly use
12778 mis-aligned types when creating the accesses at the call site.
12779
12780 2012-02-28 Georg-Johann Lay <avr@gjlay.de>
12781
12782 * config/avr/builtins.def: New file.
12783 * config/avr/t-avr (avr.o, avr-c.o): Depend on it.
12784 * config/avr/avr.c (enum avr_builtin_id): Use it.
12785 (avr_init_builtins): Use it. And use avr_bdesc.
12786 (bdesc_1arg): Remove.
12787 (bdesc_2arg): Remove.
12788 (bdesc_3arg): Remove.
12789 (struct avr_builtin_description): Add field n_args.
12790 (avr_bdesc): New static variable using builtins.def.
12791 (avr_expand_builtin): Use it.
12792 Don't call avr_expand_delay_cycles if op0 is not CONST_INT.
12793 (avr_fold_builtin): Fold AVR_BUILTIN_SWAP.
12794 Don't fold AVR_BUILTIN_INSERT_BITS if arg0 is not INTEGER_CST.
12795
12796 2012-02-28 Georg-Johann Lay <avr@gjlay.de>
12797
12798 PR target/52148
12799 * config/avr/avr.md (movmem_<mode>): Replace match_operand that
12800 match only one single hard register with respective hard reg rtx.
12801 (movmemx_<mode>): Ditto.
12802 * config/avr/avr.c (avr_emit_movmemhi): Adapt expanding to new
12803 insn anatomy of movmem[x]_<mode>.
12804 (avr_out_movmem): Same for printing assembler and operand usage.
12805
12806 2012-02-28 Georg-Johann Lay <avr@gjlay.de>
12807
12808 PR target/49868
12809 PR target/52261
12810 * doc/extend.texi (AVR Named Address Spaces): No more try to fix
12811 address spaces located outside of device flash.
12812
12813 * config/avr/avr.h (base_arch_s): Remove field n_segments.
12814 (mcu_type_s): Add field n_flash.
12815 * config/avr/avr-devices.c (avr_arch_types): Remove .n_segments.
12816 Set .have_elpm and .have_elpmx to 1 for avrxmega4 and avrxmega5.
12817 (AVR_MCU): Add N_FLASH argument.
12818 * config/avr/avr-mcus.def (AVR_MCU): Add initializer for .n_flash.
12819 * config/avr/avr-c.c (avr_cpu_cpp_builtins): Only define built-in
12820 macro __FLASH<n> if that address space makes sense for the device.
12821 * config/avr/avr.c (avr_out_lpm): Don't try to fix address spaces
12822 outside of target flash.
12823 (avr_asm_named_section): Ditto.
12824 (avr_asm_select_section): Ditto.
12825 (avr_addr_space_convert): Ditto.
12826 (avr_emit_movmemhi): Ditto.
12827 (avr_nonconst_pointer_addrspace, avr_pgm_check_var_decl): Error if
12828 address space is outside of device flash.
12829 (avr_insert_attributes): Ditto.
12830 (avr_xload_libgcc_p): Use avr_current_device->n_flash instead of
12831 avr_current_arch->n_segments.
12832
12833 2012-02-27 H.J. Lu <hongjiu.lu@intel.com>
12834
12835 PR target/52352
12836 * config/i386/i386.md (*movabs<mode>_1): Enable only for TARGET_LP64.
12837 (*movabs<mode>_2): Likewise.
12838
12839 2012-02-27 Jakub Jelinek <jakub@redhat.com>
12840
12841 PR target/52375
12842 * config/arm/neon.md (vashr<mode>3, vlshr<mode>3): Use
12843 s_register_operand in the test instead of REG_P. Don't call
12844 gen_reg_rtx if it won't be used.
12845
12846 PR tree-optimization/52376
12847 * ipa-split.c (split_function): Ignore CLOBBER stmts.
12848
12849 2012-02-27 Stuart Henderson <shenders@gcc.gnu.org>
12850
12851 * ifcvt.c (noce_get_condition): Check condition variable is not
12852 small_register_classes_for_mode_p before accepting.
12853
12854 2012-02-27 Uros Bizjak <ubizjak@gmail.com>
12855
12856 * config/i386/i386.md (*movabs<mode>_1): Fix operand 1 constraints.
12857
12858 2012-02-27 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
12859
12860 Revert:
12861 2012-01-09 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
12862 * config/arm/arm-cores.def (cortex-a15): Use cortex_a15_tune for
12863 tuning parameters.
12864 * config/arm/arm.c (arm_cortex_a15_tune): New static variable.
12865
12866 2012-02-27 Oleg Endo <olegendo@gcc.gnu.org>
12867
12868 * config/sh/sh.h: Delete dead GO_IF_LEGITIMATE_INDEX macro.
12869
12870 2012-02-26 Oleg Endo <olegendo@gcc.gnu.org>
12871
12872 * config/sh/predicates.md: Remove blank lines.
12873 * config/sh/sh.c: Fix typos in comments.
12874 * config/sh/constraints.md: Likewise.
12875 * config/sh/sh.md: Remove blank lines.
12876 Fix typos in comments. Use ;; as comment characters.
12877
12878 2012-02-26 Walter Lee <walt@tilera.com>
12879
12880 * config/tilegx/tilegx.c (match_pcrel_step2): Fix instruction pattern.
12881 (replace_mov_pcrel_step2): Ditto.
12882
12883 2012-02-25 Alexandre Oliva <aoliva@redhat.com>
12884
12885 PR debug/52001
12886 * alias.c (refs_newer_value_cb, refs_newer_value_p): New.
12887 (get_addr): Walk canonical value's locs. Avoid returning VALUEs
12888 and locs that reference values newer than the non-canonical value
12889 at hand. Return the canonical value as a worst case.
12890 (memrefs_conflict_p): Walk canonical value's locs.
12891
12892 PR debug/52001
12893 * cselib.c (preserve_only_constants): Rename to...
12894 (preserve_constants_and_equivs): ... this. Split out...
12895 (invariant_or_equiv_p): ... this. Preserve plus expressions
12896 of other preserved expressions too.
12897 (cselib_reset_table): Adjust.
12898 * var-tracking.c (reverse_op): Use canonical value to build
12899 reverse operation.
12900
12901 2012-02-23 Kai Tietz <ktietz@redhat.com>
12902
12903 * config/i386/i386.c (ix86_delegitimize_address): Handle
12904 UNSPEC_PCREL plus displacement.
12905
12906 2012-02-24 Georg-Johann Lay <avr@gjlay.de>
12907
12908 PR target/52261
12909 * config/avr/avr.c (avr_out_movhi_mr_r_xmega): Use base
12910 to test for unusedness in st X addressing.
12911
12912 2012-02-24 Richard Guenther <rguenther@suse.de>
12913
12914 PR middle-end/52361
12915 * gimple.c (walk_gimple_op): Use predicates with less redundant tests.
12916 (is_gimple_reg_type): Move inline ...
12917 * gimple.h (is_gimple_reg_type): ... here.
12918
12919 2012-02-24 Richard Guenther <rguenther@suse.de>
12920
12921 PR middle-end/52361
12922 * passes.c (execute_function_todo): When verifying SSA form
12923 verify gimple form first.
12924 * tree-ssa.c (verify_ssa): Do not verify gimple form here.
12925
12926 2012-02-24 Richard Guenther <rguenther@suse.de>
12927
12928 PR middle-end/52355
12929 * fold-const.c (fold_addr_of_array_ref_difference): New function.
12930 (fold_binary_loc): Use it to extend the existing &a[i] - &a[j] folding.
12931
12932 2012-02-13 Bernhard Reutner-Fischer <aldot@gcc.gnu.org>
12933
12934 * tree-if-conv (predicate_scalar_phi): Commentary typo fix.
12935
12936 2012-02-23 Bernhard Reutner-Fischer <aldot@gcc.gnu.org>
12937
12938 * tree-phinodes.c (make_phi_node): Mark static.
12939 * tree-flow.h (make_phi_node): Remove extern decl.
12940 * doc/gimple.texi (make_phi_node): Remove documentation.
12941
12942 2012-02-23 Bernhard Reutner-Fischer <aldot@gcc.gnu.org>
12943
12944 * tree-into-ssa (update_ssa): Avoid trailing whitespace in dump_file.
12945 * tree-ssa-sccvn.c (print_scc): Ditto.
12946
12947 2012-02-23 Bernhard Reutner-Fischer <aldot@gcc.gnu.org>
12948
12949 * doc/passes.texi (Full redundancy elimination): Fix typo.
12950
12951 2012-02-23 Bernhard Reutner-Fischer <aldot@gcc.gnu.org>
12952
12953 * doc/invoke.texi (-fdse, -fdce): Remove duplicate entries.
12954
12955 2012-02-23 Eric Botcazou <ebotcazou@adacore.com>
12956
12957 PR bootstrap/52287
12958 * haifa-sched.c (rank_for_schedule): Stabilize sort for debug insns.
12959
12960 2012-02-23 Uros Bizjak <ubizjak@gmail.com>
12961
12962 PR c/52290
12963 * c-decl.c (start_function): Exit early if decl1 is not FUNTION_DECL.
12964
12965 2012-02-23 Georg-Johann Lay <avr@gjlay.de>
12966
12967 * config/avr/avr.md (code_stdname): Add ior, xor.
12968 (xior): New code iterator.
12969 (*<code_stdname><mode>qi.byte0): Use xior instead of ior.
12970 (*<code_stdname><mode>qi.byte1-3): Ditto.
12971
12972 2012-02-23 Jakub Jelinek <jakub@redhat.com>
12973
12974 PR tree-optimization/52019
12975 * ipa-split.c (find_return_bb, find_retval, visit_bb): Ignore
12976 CLOBBER stmts.
12977
12978 2012-02-23 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
12979
12980 * acinclude.m4: Use HAVE_INITFINI_ARRAY_SUPPORT instead of
12981 HAVE_INITFINI_ARRAY to work around namespace pollution in
12982 certain versions of newlib system headers.
12983 * config.in: Regenerate.
12984 * configure: Regenerate.
12985 * config/initfini-array.h: Use HAVE_INITFINI_ARRAY_SUPPORT
12986 instead of HAVE_INITFINI_ARRAY.
12987
12988 2012-02-22 Uros Bizjak <ubizjak@gmail.com>
12989
12990 PR target/52330
12991 * config/i386/i386.c (ix86_print_operand) <case 'H'>: Error out if x
12992 is not offsettable memory reference.
12993
12994 2012-02-22 Georg-Johann Lay <avr@gjlay.de>
12995
12996 PR target/18145
12997 * config/avr/avr.c (avr_asm_output_aligned_decl_common): Skip
12998 setting avr_need_clear_bss_p for __gnu_lto* symbols.
12999
13000 2012-02-22 Georg-Johann Lay <avr@gjlay.de>
13001
13002 * config/avr/avr.h (avr_accumulate_outgoing_args): Return int.
13003 * config/avr/avr.c (avr_accumulate_outgoing_args): Return int.
13004
13005 2012-02-22 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
13006
13007 * configure.ac (LIB_TLS_SPEC): Enforce use of alternate thread
13008 library on Solaris 8 even without TLS support.
13009 * configure: Regenerate.
13010
13011 2012-02-22 Richard Guenther <rguenther@suse.de>
13012
13013 PR middle-end/52329
13014 * gimple-fold.c (fold_stmt_1): Also canonicalize ADDR_EXPRs
13015 for GIMPLE_DEBUG stmts.
13016
13017 2012-02-22 Martin Jambor <mjambor@suse.cz>
13018
13019 PR middle-end/51782
13020 * emit-rtl.c (set_mem_attributes_minus_bitpos): Set address space
13021 according to the base object.
13022
13023 2012-02-22 Georg-Johann Lay <avr@gjlay.de>
13024
13025 PR rtl-optimization/50063
13026 * config/avr/avr.md (movhi_sp_r): Handle -1 (unknown IRQ state)
13027 and 2 (8-bit SP) in operand 2.
13028 * config/avr/avr.c (avr_prologue_setup_frame): Adjust prologue
13029 setup to use movhi_sp_r instead of vanilla move to write SP.
13030 Adjust REG_CFA notes to superseed unspec.
13031 (expand_epilogue): Adjust epilogue setup to use movhi_sp_r instead
13032 of vanilla move.
13033 As function body might contain CLI or SEI: Use irq_state 0 (IRQ
13034 known to be off) only with TARGET_NO_INTERRUPTS. Never use
13035 irq_state 1 (IRQ known to be on) here.
13036
13037 2012-02-21 Bernd Schmidt <bernds@codesourcery.com>
13038
13039 * ira.c (check_allocation): Use REG_WORDS_BIG_ENDIAN, not
13040 WORDS_BIG_ENDIAN.
13041 * ira-color.c (setup_profitable_hard_regs, check_hard_reg_p,
13042 assign_hard_reg): Likewise.
13043
13044 2012-02-21 Georg-Johann Lay <avr@gjlay.de>
13045
13046 * config/avr/avr.md (neghi2): Remove "!d,0" alternative. Tweak "r,0".
13047
13048 2012-02-21 Georg-Johann Lay <avr@gjlay.de>
13049
13050 * config/avr/avr.md
13051 (*dec-and-branchhi!=-1.d.clobber): New text peephole.
13052 (*dec-and-branchhi!=-1.l.clobber): New text peephole.
13053
13054 2012-02-21 Georg-Johann Lay <avr@gjlay.de>
13055
13056 * config/avr/avr-protos.h (avr_accumulate_outgoing_args): Move
13057 prototype from here to...
13058 * config/avr/avr.h: ...here.
13059
13060 2012-02-21 Richard Earnshaw <rearnsha@arm.com>
13061
13062 PR target/52294
13063 * thumb2.md (thumb2_shiftsi3_short): Split register and
13064 immediate shifts. For register shifts tie operands 0 and 1.
13065 (peephole2 for above): Check that register-controlled shifts
13066 have suitably tied operands.
13067
13068 2012-02-21 Quentin Neill <quentin.neill@amd.com>
13069
13070 PR target/52137
13071 * config/i386/bdver1.md (bdver1_call, bdver1_push,
13072 bdver1_pop, bdver1_leave, bdver1_lea, bdver1_imul_DI, bdver1_imul,
13073 bdver1_imul_mem_DI, bdver1_imul_mem, bdver1_idiv, bdver1_idiv_mem,
13074 bdver1_str, bdver1_idirect, bdver1_ivector, bdver1_idirect_loadmov,
13075 bdver1_idirect_load, bdver1_ivector_load, bdver1_idirect_movstore,
13076 bdver1_idirect_both, bdver1_ivector_both, bdver1_idirect_store,
13077 bdver1_ivector_store, bdver1_fldxf, bdver1_fld, bdver1_fstxf,
13078 bdver1_fst, bdver1_fist, bdver1_fmov_bdver1, bdver1_fadd_load,
13079 bdver1_fadd, bdver1_fmul_load, bdver1_fmul, bdver1_fsgn,
13080 bdver1_fdiv_load, bdver1_fdiv, bdver1_fpspc_load, bdver1_fpspc,
13081 bdver1_fcmov_load, bdver1_fcmov, bdver1_fcomi_load,
13082 bdver1_fcomi, bdver1_fcom_load, bdver1_fcom,
13083 bdver1_fxch, bdver1_ssevector_avx128_unaligned_load,
13084 bdver1_ssevector_avx256_unaligned_load,
13085 bdver1_ssevector_sse128_unaligned_load,
13086 bdver1_ssevector_avx128_load, bdver1_ssevector_avx256_load,
13087 bdver1_ssevector_sse128_load, bdver1_ssescalar_movq_load,
13088 bdver1_ssescalar_vmovss_load, bdver1_ssescalar_sse128_load,
13089 bdver1_mmxsse_load, bdver1_sse_store_avx256, bdver1_sse_store,
13090 bdver1_mmxsse_store_short, bdver1_ssevector_avx256,
13091 bdver1_movss_movsd, bdver1_mmxssemov, bdver1_sselog_load_256,
13092 bdver1_sselog_256, bdver1_sselog_load, bdver1_sselog,
13093 bdver1_ssecmp_load, bdver1_ssecmp, bdver1_ssecomi_load,
13094 bdver1_ssecomi, bdver1_vcvtX2Y_avx256_load, bdver1_vcvtX2Y_avx256,
13095 bdver1_ssecvt_cvtss2sd_load, bdver1_ssecvt_cvtss2sd,
13096 bdver1_sseicvt_cvtsi2sd_load, bdver1_sseicvt_cvtsi2sd,
13097 bdver1_ssecvt_cvtpd2ps_load, bdver1_ssecvt_cvtpd2ps,
13098 bdver1_ssecvt_cvtdq2ps_load, bdver1_ssecvt_cvtdq2ps,
13099 bdver1_ssecvt_cvtdq2pd_load, bdver1_ssecvt_cvtdq2pd,
13100 bdver1_ssecvt_cvtps2pd_load, bdver1_ssecvt_cvtps2pd,
13101 bdver1_ssecvt_cvtsX2si_load, bdver1_ssecvt_cvtsX2si,
13102 bdver1_ssecvt_cvtpd2pi_load, bdver1_ssecvt_cvtpd2pi,
13103 bdver1_ssecvt_cvtpd2dq_load, bdver1_ssecvt_cvtpd2dq,
13104 bdver1_ssecvt_cvtps2pi_load, bdver1_ssecvt_cvtps2pi,
13105 bdver1_ssemuladd_load_256, bdver1_ssemuladd_256,
13106 bdver1_ssemuladd_load, bdver1_ssemuladd, bdver1_sseimul_load,
13107 bdver1_sseimul, bdver1_sseiadd_load, bdver1_sseiadd,
13108 bdver1_ssediv_double_load_256, bdver1_ssediv_double_256,
13109 bdver1_ssediv_single_load_256, bdver1_ssediv_single_256,
13110 bdver1_ssediv_double_load, bdver1_ssediv_double,
13111 bdver1_ssediv_single_load, bdver1_ssediv_single, bdver1_sseins):
13112 Add "bdver2" attribute.
13113
13114 2012-02-21 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
13115
13116 * config/s390/s390.c (s390_option_override): Make -mhard-dfp the
13117 default if possible and not specified otherwise.
13118
13119 2012-02-21 Richard Guenther <rguenther@suse.de>
13120
13121 PR middle-end/52314
13122 * gimplify.c (create_tmp_from_val): Use the main variant type
13123 for the type of the temporary we create.
13124
13125 2012-02-21 Richard Guenther <rguenther@suse.de>
13126
13127 PR tree-optimization/52324
13128 * gimplify.c (gimplify_expr): When re-gimplifying expressions
13129 do not gimplify a MEM_REF address operand if it is already
13130 in suitable form.
13131
13132 2012-02-21 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
13133
13134 * config/s390/s390.md ("fixuns_trunc<mode>si2"): Replace
13135 TARGET_HARD_FLOAT with TARGET_HARD_DFP.
13136
13137 2012-02-21 Richard Guenther <rguenther@suse.de>
13138
13139 * tree-vect-stmts.c (vectorizable_load): Use pre-computed
13140 nested_in_vect_loop.
13141
13142 2012-02-21 Jakub Jelinek <jakub@redhat.com>
13143
13144 PR tree-optimization/52318
13145 * gimple-fold.c (gimplify_and_update_call_from_tree): Add
13146 vdef also to non-pure/const call stmts in the sequence.
13147
13148 2012-02-21 Tristan Gingold <gingold@adacore.com>
13149
13150 * config/vms/vms-ld.c (main): Fix IDENTIFICATION padding.
13151
13152 2012-02-20 David S. Miller <davem@davemloft.net>
13153
13154 * config/sparc/sparc.md (load_pcrel_sym<P:mode>): Explain why we
13155 don't use the "rd %pc" instruction on v9 for PIC register loads.
13156
13157 2012-02-20 Aldy Hernandez <aldyh@redhat.com>
13158
13159 PR middle-end/52141
13160 * trans-mem.c (ipa_tm_scan_irr_block): Error out on GIMPLE_ASM's
13161 in a transaction safe function.
13162
13163 2012-02-20 Kai Tietz <ktietz@redhat.com>
13164
13165 PR target/52238
13166 * stor-layout.c (place_field): Handle desired_align for
13167 ms-bitfields, too.
13168
13169 2012-02-20 Richard Guenther <rguenther@suse.de>
13170
13171 PR tree-optimization/52298
13172 * tree-vect-stmts.c (vectorizable_store): Properly use
13173 STMT_VINFO_DR_STEP instead of DR_STEP when vectorizing
13174 outer loops.
13175 (vectorizable_load): Likewise.
13176 * tree-vect-data-refs.c (vect_analyze_data_ref_access):
13177 Access DR_STEP after ensuring it is not NULL.
13178
13179 2012-02-20 Jakub Jelinek <jakub@redhat.com>
13180
13181 PR tree-optimization/52286
13182 * fold-const.c (fold_binary_loc): For (X & C1) | C2
13183 optimization use double_int_to_tree instead of build_int_cst_wide,
13184 rewrite to use double_int vars.
13185
13186 2012-02-20 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
13187
13188 PR target/50166
13189 * acinclude.m4 (gcc_AC_INITFINI_ARRAY): Require gcc_SUN_LD_VERSION.
13190 Define _start.
13191 Remove -e 0 from $gcc_cv_ld invocation.
13192 Only use __GLIBC_PREREQ if defined.
13193 Enable on Solaris since Solaris 8 patch.
13194 (gcc_SUN_LD_VERSION): New macro.
13195 * configure.ac (ld_ver) <*-*-solaris2*>: Refer to
13196 gcc_SUN_LD_VERSION for version number format.
13197 * configure: Regenerate.
13198 * varasm.c (get_elf_initfini_array_priority_section): Set
13199 SECTION_NOTYPE for non-default priority.
13200 Use get_section instead of get_unnamed_section to emit
13201 .init_array/.fini_array with default priority.
13202
13203 2012-02-19 Richard Sandiford <rdsandiford@googlemail.com>
13204
13205 * config/mips/mips.c (mips_need_mips16_rdhwr_p): New variable.
13206 (mips_get_tp): Set it. Record that __mips16_rdhwr binds locally.
13207 (mips_start_unique_function, mips_output_mips16_rdhwr)
13208 (mips_code_end): New functions.
13209 (TARGET_ASM_CODE_END): Define.
13210
13211 2012-02-19 Richard Sandiford <rdsandiford@googlemail.com>
13212
13213 * config/mips/mips.c (mips16_build_call_stub): Add CFI information
13214 to stubs with non-sibling calls.
13215
13216 2012-02-18 Sandra Loosemore <sandra@codesourcery.com>
13217
13218 * doc/invoke.texi (-fira-* options): Copy-edit.
13219 (ira-* parameters): Copy-edit.
13220
13221 2012-02-17 Sandra Loosemore <sandra@codesourcery.com>
13222
13223 * doc/invoke.texi: Minor copy-edits to bring into conformance with
13224 GCC coding conventions.
13225
13226 2012-02-17 Sandra Loosemore <sandra@codesourcery.com>
13227
13228 * doc/invoke.texi: Consistently hyphenate "big-endian"/"little-endian"
13229 when used as adjectives.
13230
13231 2012-02-16 Sandra Loosemore <sandra@codesourcery.com>
13232
13233 * doc/invoke.texi: Clean up "that"/"which" confusion.
13234
13235 2012-02-17 Steven Bosscher <steven@gcc.gnu.org>
13236
13237 * system.h: Poison SMALL_REGISTER_CLASSES
13238 * config/rl78/rl78.h: Replace SMALL_REGISTER_CLASSES with hook.
13239 * config/rx/rx.h: Remove SMALL_REGISTER_CLASSES.
13240
13241 2012-02-16 Jakub Jelinek <jakub@redhat.com>
13242
13243 PR tree-optimization/52285
13244 * tree-tailcall.c (find_tail_calls): Ignore gimple_clobber_p stmts
13245 when deciding if a call is a tail call or tail recursion.
13246
13247 2012-02-16 Kai Tietz <ktietz@redhat.com>
13248
13249 * config/i386/i386.c (legitimate_pic_address_disp_p): Allow
13250 interger-constant displacement for UNSPEC_PCREL.
13251
13252 2012-02-16 Jakub Jelinek <jakub@redhat.com>
13253
13254 PR rtl-optimization/52208
13255 * ira-costs.c (scan_one_insn): Don't decrease mem_cost
13256 for MEMs with REG_EQUIV, if the MEM isn't general_operand.
13257
13258 PR tree-optimization/52255
13259 * tree-vect-loop-manip.c (slpeel_tree_peel_loop_to_edge): If
13260 loop->header has virtual PHI, but exit_e->dest doesn't, add
13261 virtual PHI to exit_e->dest and adjust all uses after the loop.
13262
13263 PR debug/52260
13264 * dwarf2out.c (copy_decls_walk): Fill in *slot before traversing
13265 children with clone_tree_hash, not after it.
13266
13267 2012-02-16 Iain Sandoe <iains@gcc.gnu.org>
13268
13269 * config/darwin.h (ASM_OUTPUT_LABELREF): Add user label prefix for
13270 extended identifiers.
13271
13272 2012-02-16 Jakub Jelinek <jakub@redhat.com>
13273
13274 PR middle-end/51929
13275 * cgraphunit.c (verify_edge_corresponds_to_fndecl): If node is
13276 a same_body_alias, also test whether e->callee isn't a former
13277 or current clone of the decl this is a same body alias of.
13278
13279 PR translation/52264
13280 * cgraphunit.c (verify_cgraph_node): Fix a typo.
13281
13282 2012-02-15 Sandra Loosemore <sandra@codesourcery.com>
13283
13284 * doc/invoke.texi: Clean up "n-bit/byte/word" modifiers.
13285
13286 2012-02-15 Michael Meissner <meissner@linux.vnet.ibm.com>
13287
13288 PR target/52199
13289 * config/rs6000/rs6000.c (rs6000_expand_vector_init): Use
13290 force_reg instead of copy_to_reg for better optimization. Force
13291 non-register or memory operands into a register.
13292
13293 2012-02-15 Andrew MacLeod <amacleod@redhat.com>
13294
13295 * extend.texi: Reserve upper bits of memory model for future use.
13296
13297 2012-01-15 Georg-Johann Lay <avr@gjlay.de>
13298 Anatoly Sokolov <aesok@post.ru>
13299 Eric Weddington <eric.weddington@atmel.com>
13300
13301 PR target/52261
13302 * config/avr/avr-devices.c (avr_arch_types): Add avrxmega2,
13303 avrxmega4, avrxmega5, avrxmega6, avrxmega7.
13304 Rewrite initializers for .macro.
13305 * config/avr/avr-mcus.def (AVR_MCU): Add known MCUs:
13306 avrxmega2: atxmega16a4, atxmega16d4, atxmega16x1, atxmega32a4
13307 atxmega32d4, atxmega32x1.
13308 avrxmega4: atxmega64a3, atxmega64d3.
13309 avrxmega5: atxmega64a1, atxmega64a1u.
13310 avrxmega6: atxmega128a3, atxmega128d3, atxmega192a3, atxmega192d3,
13311 atxmega256a3, atxmega256a3b, atxmega256a3bu, atxmega256d3.
13312 avrxmega7: atxmega128a1, atxmega128a1u.
13313 * config/avr/avr.h (enum avr_arch): Add: ARCH_AVRXMEGA2,
13314 ARCH_AVRXMEGA4, ARCH_AVRXMEGA5, ARCH_AVRXMEGA6, ARCH_AVRXMEGA7.
13315 (struct base_arch_s): Rename reserved to xmega_p.
13316 Rename reserved2 to have_rampd.
13317 (AVR_XMEGA): New define.
13318 (AVR_HAVE_RAMPD, AVR_HAVE_RAMPX, AVR_HAVE_RAMPY): New defines.
13319 (AVR_HAVE_RAMPZ): Change definition to fit xmega.
13320 * config/avr/predicates.md (io_address_operand): Take into
13321 account SFR offset.
13322 (low_io_address_operand): Ditto.
13323 (high_io_address_operand): Ditto.
13324 * config/avr/avr.md (isa): Add alternatives no_xmega, xmega.
13325 (enabled, movhi_sp_r): Use them.
13326 * config/avr/avr-c.c (avr_cpu_cpp_builtins): Use
13327 cpp_define_formatted to built-in define __AVR_ARCH__.
13328 (__AVR_XMEGA__): New built-in define.
13329 (__AVR_HAVE_RAMPD__): New built-in define.
13330 (__AVR_HAVE_RAMPX__): New built-in define.
13331 (__AVR_HAVE_RAMPY__): New built-in define.
13332 (__AVR_HAVE_RAMPZ__): Change condition when to built-in define it.
13333
13334 * config/avr/avr.c (avr_addr_t): Add ccp, rampd, rampx, rampy.
13335 (avr_option_override): Initialize them.
13336 (sreg_rtx, rampd_rtx, rampx_rtx, rampy_rtx): New GTY rtx.
13337 (avr_init_expanders): Initialize them. No more block several calls.
13338 (emit_push_sfr): New static function.
13339 (avr_prologue_setup_frame): Use it to push SREG, RAMPD/X/Y/Z as needed.
13340 Handle AVR_XMEGA.
13341 (expand_epilogue): Handle AVR_XMEGA. Pop RAMPD/X/Y/Z as needed.
13342 (avr_print_operand): Print addreeses as symbols for
13343 RAMPX, RAMPY, RAMPD, CCP.
13344 (output_movhi): Handle AVR_XMEGA when writing to SP.
13345 (avr_out_movhi_mr_r_xmega): New static function.
13346 (out_movhi_mr_r): Forward to avr_out_movhi_mr_r_xmega for AVR_XMEGA.
13347 (avr_file_start): Print symbol defines for __RAMPX__, __RAMPY__,
13348 __RAMPD__, __CCP__ as needed.
13349
13350 * config/avr/multilib.h: Regenerate.
13351 * config/avr/t-multilib: Regenerate.
13352 * config/avr/avr-tables.opt: Regenerate.
13353
13354 2012-02-15 Tobias Grosser <grosser@fim.uni-passau.de>
13355
13356 PR tree-optimization/50561
13357 * graphite-flattening.c (lst_project_loop): Do not
13358 remove old scattering dimensions after flattening.
13359 (lst_do_flatten): Likewise.
13360
13361 2012-02-15 Georg-Johann Lay <avr@gjlay.de>
13362
13363 * doc/extend.texi (AVR Built-in Functions): Remove doc for
13364 __builtin_avr_map8, __builtin_avr_map16.
13365 Document __builtin_avr_insert_bits.
13366
13367 * config/avr/avr.md (map_bitsqi, map_bitshi): Remove.
13368 (insert_bits): New insn.
13369 (adjust_len.map_bits): Rename to insert_bits.
13370 (UNSPEC_MAP_BITS): Rename to UNSPEC_INSERT_BITS.
13371 * avr-protos.h (avr_out_map_bits): Remove.
13372 (avr_out_insert_bits, avr_has_nibble_0xf): New.
13373 * config/avr/constraints.md (Cxf,C0f): New.
13374 * config/avr/avr.c (avr_cpu_cpp_builtins): Remove built-in
13375 defines __BUILTIN_AVR_MAP8, __BUILTIN_AVR_MAP16.
13376 New built-in define __BUILTIN_AVR_INSERT_BITS.
13377 * config/avr/avr.c (TARGET_FOLD_BUILTIN): New define.
13378 (enum avr_builtin_id): Add AVR_BUILTIN_INSERT_BITS.
13379 (avr_move_bits): Rewrite.
13380 (avr_fold_builtin, avr_map_metric, avr_map_decompose): New static
13381 functions.
13382 (avr_map_op_t): New typedef.
13383 (avr_map_op): New static variable.
13384 (avr_out_insert_bits, avr_has_nibble_0xf): New functions.
13385 (adjust_insn_length): Handle ADJUST_LEN_INSERT_BITS.
13386 (avr_init_builtins): Add definition for __builtin_avr_insert_bits.
13387 (bdesc_3arg, avr_expand_triop_builtin): New.
13388 (avr_expand_builtin): Use them. And handle AVR_BUILTIN_INSERT_BITS.
13389 (avr_revert_map, avr_swap_map, avr_id_map, avr_sig_map): Remove.
13390 (avr_map_hamming_byte, avr_map_hamming_nonstrict): Remove.
13391 (avr_map_equal_p, avr_map_sig_p): Remove.
13392 (avr_out_swap_bits, avr_out_revert_bits, avr_out_map_bits): Remove.
13393 (bdesc_2arg): Remove AVR_BUILTIN_MAP8, AVR_BUILTIN_MAP16.
13394 (adjust_insn_length): Remove handling for ADJUST_LEN_MAP_BITS.
13395 (enum avr_builtin_id): Remove AVR_BUILTIN_MAP8, AVR_BUILTIN_MAP16.
13396 (avr_init_builtins): Remove __builtin_avr_map8, __builtin_avr_map16.
13397 (avr_expand_builtin): Remove AVR_BUILTIN_MAP8, AVR_BUILTIN_MAP16.
13398
13399 2012-02-14 Bernd Schmidt <bernds@codesourcery.com>
13400
13401 * config/c6x/c6x.md (reserve_cycles): New attribute.
13402 * config/c6x/c6x.c (c6x_sched_reorder_1): Ensure insns we predicate
13403 don't reserve functional units after the branch occurs.
13404
13405 2012-02-14 Aldy Hernandez <aldyh@redhat.com>
13406
13407 PR middle-end/52142
13408 * ipa-inline.c (can_inline_edge_p): Do not inline tm_pure
13409 functions into non-tm_pure functions.
13410
13411 2012-02-14 Eric Botcazou <ebotcazou@adacore.com>
13412
13413 PR lto/52178
13414 * gimple.c (iterative_hash_gimple_type): Use RECORD_OR_UNION_TYPE_P.
13415 (iterative_hash_canonical_type): Likewise.
13416 * tree-ssa-pre.c (fini_pre): Clean up the CFG only after purging all
13417 the dead edges.
13418
13419 2012-02-14 Bernd Schmidt <bernds@codesourcery.com>
13420
13421 * haifa-sched.c (prune_ready_list): Ensure that if there is a
13422 sched-group insn, it either remains alone or the entire list is pruned.
13423
13424 2012-02-14 Jonathan Wakely <jwakely.gcc@gmail.com>
13425
13426 * doc/install.texi (Prerequisites): Fix grammar.
13427 (Configuration): Likewise.
13428
13429 2012-02-14 Jonathan Wakely <jwakely.gcc@gmail.com>
13430
13431 * doc/install.texi (Prerequisites): Suggest building GMP, MPFR and
13432 MPC as part of GCC before describing configuring with --with-gmp etc.
13433 (Installing GCC: Configuration): --with-gmp etc. aren't needed if
13434 sources are present.
13435
13436 2012-02-14 Jakub Jelinek <jakub@redhat.com>
13437
13438 PR debug/51950
13439 * dwarf2out.c (clone_tree_hash): New function.
13440 (copy_decls_walk): Use it instead of clone_tree.
13441
13442 2012-02-14 Richard Guenther <rguenther@suse.de>
13443
13444 PR tree-optimization/52244
13445 PR tree-optimization/51528
13446 * tree-sra.c (analyze_access_subtree): Only create INTEGER_TYPE
13447 replacements for integral types.
13448
13449 2012-02-14 Walter Lee <walt@tilera.com>
13450
13451 * config.gcc: Handle tilegx and tilepro.
13452 * configure.ac (gcc_cv_as_dwarf2_debug_line): Enable test for
13453 tilegx and tilepro.
13454 Add HAVE_AS_TLS check for tilegx and tilepro.
13455 * configure: Regenerate.
13456 * doc/contrib.texi: Add Mat Hostetter and self.
13457 * doc/extend.texi (TILE-Gx Built-in Functions): New node.
13458 Document instruction intrinsics and network accessing intrinsics.
13459 (TILEPro Built-in Functions): New node. Document instruction
13460 intrinsics and network accessing intrinsics.
13461 * doc/install.texi (Specific, tilegx-*-linux*): Document it.
13462 (Specific, tilepro-*-linux*): Likewise.
13463 * doc/invoke.texi (TILE-Gx Options): New section.
13464 (TILEPro Options): New section.
13465 * doc/md.texi (TILE-Gx): New section.
13466 (TILEPro): New section.
13467 * common/config/tilegx/tilegx-common.c: New file.
13468 * common/config/tilepro/tilepro-common.c: New file.
13469 * config/tilegx/constraints.md: New file.
13470 * config/tilegx/linux.h: New file.
13471 * config/tilegx/mul-tables.c: New file.
13472 * config/tilegx/predicates.md: New file.
13473 * config/tilegx/sync.md: New file.
13474 * config/tilegx/t-tilegx: New file.
13475 * config/tilegx/tilegx-builtins.h: New file.
13476 * config/tilegx/tilegx-c.c: New file.
13477 * config/tilegx/tilegx-generic.md: New file.
13478 * config/tilegx/tilegx-modes.def: New file.
13479 * config/tilegx/tilegx-multiply.h: New file.
13480 * config/tilegx/tilegx-protos.h: New file.
13481 * config/tilegx/tilegx.c: New file.
13482 * config/tilegx/tilegx.h: New file.
13483 * config/tilegx/tilegx.md: New file.
13484 * config/tilegx/tilegx.opt: New file.
13485 * config/tilepro/constraints.md: New file.
13486 * config/tilepro/gen-mul-tables.cc: New file.
13487 * config/tilepro/linux.h: New file.
13488 * config/tilepro/mul-tables.c: New file.
13489 * config/tilepro/predicates.md: New file.
13490 * config/tilepro/t-tilepro: New file.
13491 * config/tilepro/tilepro-builtins.h: New file.
13492 * config/tilepro/tilepro-c.c: New file.
13493 * config/tilepro/tilepro-generic.md: New file.
13494 * config/tilepro/tilepro-modes.def: New file.
13495 * config/tilepro/tilepro-multiply.h: New file.
13496 * config/tilepro/tilepro-protos.h: New file.
13497 * config/tilepro/tilepro.c: New file.
13498 * config/tilepro/tilepro.h: New file.
13499 * config/tilepro/tilepro.md: New file.
13500 * config/tilepro/tilepro.opt: New file.
13501
13502 2012-02-14 Jakub Jelinek <jakub@redhat.com>
13503
13504 PR tree-optimization/52210
13505 * tree-vect-slp.c (vect_get_and_check_slp_defs): Call
13506 vect_model_simple_cost with two entry vect_def_type array instead
13507 of an address of dt.
13508
13509 2012-02-14 Richard Guenther <rguenther@suse.de>
13510
13511 PR lto/52178
13512 * tree-streamer-in.c (lto_input_ts_field_decl_tree_pointers):
13513 Do not stream DECL_QUALIFIER.
13514 * tree-streamer-out.c (write_ts_field_decl_tree_pointers): Likewise.
13515 * tree.c (free_lang_data_in_decl): Free DECL_QUALIFIER.
13516 (find_decls_types_r): Do not walk DECL_QUALIFIER.
13517
13518 2012-02-14 Jakub Jelinek <jakub@redhat.com>
13519
13520 PR c/52181
13521 * c-decl.c (merge_decls): Copy DECL_USER_ALIGN bit from olddecl to
13522 newdecl.
13523
13524 2012-02-13 Jakub Jelinek <jakub@redhat.com>
13525
13526 PR bootstrap/52172
13527 * cselib.h (cselib_subst_to_values_from_insn): New prototype.
13528 * cselib.c (cselib_subst_to_values_from_insn): New function.
13529 * sched-deps.c (add_insn_mem_dependence,
13530 sched_analyze_1, sched_analyze_2): Use it.
13531
13532 2012-02-13 Jan Hubicka <jh@suse.cz>
13533
13534 PR middle-end/52214
13535 * predict.c (predict_paths_for_bb): Fix thinko in prevoius patch.
13536
13537 2012-02-13 Eric Botcazou <ebotcazou@adacore.com>
13538
13539 * gcc.c (LINK_COMMAND_SPEC): Deal with -fgnu-tm.
13540 (GTM_SELF_SPECS): Define if not already defined.
13541 (driver_self_specs): Add GTM_SELF_SPECS.
13542 * config/darwin.h (LINK_COMMAND_SPEC_A): Deal with -fgnu-tm.
13543 (GTM_SELF_SPECS): Define.
13544 * config/i386/cygwin.h (GTM_SELF_SPECS): Likewise.
13545 * config/i386/mingw32.h (GTM_SELF_SPECS): Likewise.
13546
13547 2012-02-13 Jakub Jelinek <jakub@redhat.com>
13548
13549 * cselib.c (expand_loc): Return sp, fp, hfp or cfa base reg right
13550 away if seen.
13551
13552 * cselib.c (dump_cselib_val): Don't assume l->setting_insn is non-NULL.
13553
13554 PR middle-end/52230
13555 * omp-low.c (expand_omp_for): If a static schedule without chunk size
13556 has NULL region->cont, force fd.chunk_size to be integer_zero_node.
13557
13558 2012-02-13 Andrew MacLeod <amacleod@redhat.com>
13559
13560 PR c/52190
13561 * doc/extend.texi : Fix another __atomic_compare_exchange typo.
13562
13563 2012-02-13 Richard Guenther <rguenther@suse.de>
13564
13565 PR translation/52211
13566 * passes.c (enable_disable_pass): Fix typo.
13567
13568 2012-02-13 Jakub Jelinek <jakub@redhat.com>
13569
13570 PR middle-end/52209
13571 * expr.c (expand_expr_real_2) <case BIT_NOT_EXPR>: Only expand using
13572 XOR for reduce_bit_field if type is unsigned.
13573
13574 2012-02-12 Eric Botcazou <ebotcazou@adacore.com>
13575
13576 * config/sparc/sparc.h (CANNOT_CHANGE_MODE_CLASS): In 64-bit mode,
13577 disallow changes from SFmode to mode with different size in FP regs.
13578
13579 2012-02-12 Robert Millan <rmh@gnu.org>
13580 Gerald Pfeifer <gerald@pfeifer.com>
13581
13582 * ginclude/stddef.h [__FreeBSD_kernel__] (__size_t): Do not define.
13583 Tweak comment.
13584
13585 2012-02-11 Richard Sandiford <rdsandiford@googlemail.com>
13586
13587 PR rtl-optimization/52175
13588 * reorg.c (fill_slots_from_thread): Don't apply add/sub optimization
13589 to frame-related instructions.
13590
13591 2012-02-10 Jason Merrill <jason@redhat.com>
13592
13593 PR c++/51910
13594 * tlink.c (demangled_hash_entry): Change mangled to a VEC.
13595 (demangle_new_symbols): Fill it.
13596 (scan_linker_output): Walk it.
13597 (start_tweaking): Split out from scan_linker_output.
13598 (maybe_tweak): Update sym->chosen.
13599 * Makefile.in (COLLECT2_OBJS): Add vec.o and gcc-none.o
13600
13601 2012-02-11 Jakub Jelinek <jakub@redhat.com>
13602
13603 PR debug/52132
13604 * reg-stack.c (subst_stack_regs_in_debug_insn): Don't use get_true_reg.
13605
13606 2012-02-11 Uros Bizjak <ubizjak@gmail.com>
13607
13608 * compare-elim.c (find_comparisons_in_bb): Eliminate only compares
13609 having the same mode as previous compare.
13610
13611 2012-02-10 Eric Botcazou <ebotcazou@adacore.com>
13612
13613 * config/sparc/sparc.c (sparc_flat_expand_prologue): Use emit_use.
13614 * config/sparc/sparc.md (UNSPECV_GOTO): Delete.
13615 (nonlocal_goto_internal): Likewise.
13616 (nonlocal_goto): Emit a use and an indirect jump directly.
13617
13618 2012-02-10 Andrew MacLeod <amacleod@redhat.com>
13619
13620 PR c/52190
13621 * doc/extend.texi : Update comments for __atomic_compare_exchange and
13622 __atomic_{is,always}_lock_free.
13623
13624 2012-02-10 Uros Bizjak <ubizjak@gmail.com>
13625
13626 PR target/52146
13627 * config/i386/i386.c (ix86_legitimate_address_p): Disallow
13628 negative constant address for TARGET_X32.
13629
13630 2012-02-10 Richard Henderson <rth@redhat.com>
13631
13632 * tree-ssa-dce.c (propagate_necessity): Handle GIMPLE_TRANSACTION.
13633 * tree-ssa-operands.c (parse_ssa_operands): Add virtual operands
13634 for GIMPLE_TRANSACTION. Tidy if's into a switch.
13635
13636 2012-02-10 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
13637 Ira Rosen <irar@il.ibm.com>
13638
13639 PR tree-optimization/50031
13640 * targhooks.c (default_builtin_vectorization_cost): Handle
13641 vec_promote_demote.
13642 * target.h (enum vect_cost_for_stmt): Add vec_promote_demote.
13643 * tree-vect-loop.c (vect_get_single_scalar_iteraion_cost): Handle
13644 all types of reduction and pattern statements.
13645 (vect_estimate_min_profitable_iters): Likewise.
13646 * tree-vect-stmts.c (vect_model_promotion_demotion_cost): New function.
13647 (vect_get_load_cost): Use vec_perm for permutations; add dump logic
13648 for explicit realigns.
13649 (vectorizable_conversion): Call vect_model_promotion_demotion_cost.
13650 * config/spu/spu.c (spu_builtin_vectorization_cost): Handle
13651 vec_promote_demote.
13652 * config/i386/i386.c (ix86_builtin_vectorization_cost): Likewise.
13653 * config/rs6000/rs6000.c (rs6000_builtin_vectorization_cost): Update
13654 vec_perm for VSX and handle vec_promote_demote.
13655
13656 2012-02-10 Jakub Jelinek <jakub@redhat.com>
13657
13658 PR middle-end/52177
13659 * builtins.c (fold_builtin_atomic_always_lock_free,
13660 expand_builtin_atomic_always_lock_free,
13661 fold_builtin_atomic_is_lock_free, expand_builtin_atomic_is_lock_free):
13662 Return and/or test boolean_true_node/boolean_false_node instead of
13663 integer_one_node/integer_zero_node.
13664
13665 2012-02-10 Jan Hubicka <jh@suse.cz>
13666
13667 PR middle-end/48600
13668 * predict.c (predict_paths_for_bb): Prevent looping.
13669 (predict_paths_leading_to_edge, predict_paths_leading_to): Update.
13670
13671 2012-02-10 Roman Zhuykov <zhroma@ispras.ru>
13672
13673 * config/arm/arm.c (output_move_double): In one case properly
13674 count number of instructions that will be emitted.
13675
13676 2012-02-10 Richard Guenther <rguenther@suse.de>
13677
13678 PR translation/52193
13679 * cgraphunit.c (cgraph_mark_functions_to_output): Fix typo.
13680
13681 2012-02-09 Peter Bergner <bergner@vnet.ibm.com>
13682
13683 PR middle-end/52140
13684 * dojump.c (do_compare_rtx_and_jump): Use SCALAR_FLOAT_MODE_P.
13685
13686 2012-02-09 Jakub Jelinek <jakub@redhat.com>
13687
13688 PR debug/52165
13689 * var-tracking.c (emit_note_insn_var_location): If
13690 EMIT_NOTE_BEFORE_INSN and insn is NOTE_INSN_CALL_ARG_LOCATION,
13691 emit it before next non-NOTE_INSN_CALL_ARG_LOCATION
13692 non-NOTE_DURING_CALL_P insn.
13693
13694 2012-02-09 Bin Cheng <bin.cheng@arm.com>
13695
13696 PR middle-end/51867
13697 * builtins.c (expand_builtin): Don't check DECL_ASSEMBLER_NAME_SET_P.
13698
13699 2012-02-08 Magnus Granberg <zorry@gentoo.org>
13700
13701 PR driver/48524
13702 * gcc.c (switch_matches) Support switches with separated form,
13703 -D and -U.
13704
13705 2012-02-08 Georg-Johann Lay <avr@gjlay.de>
13706
13707 * config/avr/avr.md (SREG_ADDR): Remove constant definition.
13708 (SP_ADDR): Ditto.
13709 (RAMPZ_ADDR): Ditto.
13710 * config/avr/avr.c (avr_addr_t): New typedef.
13711 (avr_addr): New struct to hold RAM address of SPL, SPH, RAMPZ, SREG.
13712 (avr_init_expanders): Initialize it.
13713 (expand_prologue): Use avr_addr instead of RAMPZ_ADDR, SP_ADDR,
13714 SREG_ADDR.
13715 (expand_epilogue): Ditto.
13716 (avr_print_operand): Ditto.
13717 (avr_file_start): Ditto.
13718 (avr_emit_movmemhi): Ditto.
13719
13720 2012-02-08 Richard Guenther <rguenther@suse.de>
13721
13722 PR tree-optimization/46886
13723 * tree-flow.h (do_while_loop_p): Declare.
13724 * tree-ssa-loop-ch.c (do_while_loop_p): Export.
13725 * tree-parloops.c (parallelize_loops): Only parallelize do-while loops.
13726
13727 2012-02-08 Andrew MacLeod <amacleod@redhat.com>
13728
13729 * optabs.c (expand_atomic_load): Do not assume compare_and_swap will
13730 always succeed for integers larger than a native word.
13731
13732 2012-02-08 Richard Guenther <rguenther@suse.de>
13733
13734 PR rtl-optimization/52170
13735 * simplify-rtx.c (simplify_plus_minus): Use CONSTM1_RTX to
13736 properly handle integer vector modes.
13737
13738 2012-02-08 Jakub Jelinek <jakub@redhat.com>
13739
13740 PR gcov-profile/52150
13741 * coverage.c: Include target.h.
13742 (build_var): Call targetm.strip_name_encoding on the assembler name.
13743 Change one _ into . or $ if the target allows it.
13744 * Makefile.in (coverage.o): Depend on $(TARGET_H).
13745
13746 PR rtl-optimization/52139
13747 * cfgrtl.c (cfg_layout_merge_blocks): If BB_END
13748 is a BARRIER after emit_insn_after_noloc, move BB_END
13749 to the last non-BARRIER insn before it.
13750
13751 2012-02-07 Richard Sandiford <rdsandiford@googlemail.com>
13752
13753 PR middle-end/24306
13754 * config/mips/mips.c (mips_std_gimplify_va_arg_expr): New function.
13755 (mips_gimplify_va_arg_expr): Call it instead of
13756 std_gimplify_va_arg_expr.
13757
13758 2012-02-07 Michael Meissner <meissner@linux.vnet.ibm.com>
13759
13760 * config/rs6000/rs6000.c (rs6000_trampoline_init): Fix error
13761 message for -mno-pointers-to-nested-function.
13762
13763 2012-02-07 Eric Botcazou <ebotcazou@adacore.com>
13764
13765 PR middle-end/51994
13766 * expr.c (get_inner_reference): If there is an offset, add a negative
13767 bit position to it (if any).
13768
13769 2012-02-07 Jakub Jelinek <jakub@redhat.com>
13770
13771 PR rtl-optimization/52060
13772 * combine.c (try_combine): Add i0src_copy and i0src_copy2 variables,
13773 copy i1src to i1src_copy whenever added_sets_2 && i1_feeds_i2_n already
13774 before i1dest -> i1src substitution in newpat, copy i0src to i0src_copy
13775 and/or i0src_copy2 when needed.
13776
13777 2012-02-07 Jakub Jelinek <jakub@redhat.com>
13778
13779 * gcc.c (main): Don't look for lto-wrapper or lto-wrapper
13780 or LTOPLUGINSONAME if have_c.
13781
13782 * config/freebsd-spec.h: Add comment about what macros can be defined
13783 in this header.
13784 (LINK_EH_SPEC, LINK_SSP_SPEC, USE_LD_AS_NEEDED): Don't define here.
13785 * config/freebsd.h (LINK_EH_SPEC, LINK_SSP_SPEC, USE_LD_AS_NEEDED): But
13786 here instead.
13787
13788 2012-02-07 Richard Guenther <rguenther@suse.de>
13789
13790 * gimple-pretty-print.c (dump_gimple_phi): Avoid excessive
13791 newline in -alias dumps.
13792
13793 2012-02-07 Kai Tietz <ktietz@redhat.com>
13794 Dave Korn <dave.korn.cygwin@gmail.com>
13795
13796 PR target/40068
13797 * config/i386/winnt-cxx.c (i386_pe_adjust_class_at_definition):
13798 Take care that typinfo gets dllexport-attribute.
13799
13800 2012-02-07 Jakub Jelinek <jakub@redhat.com>
13801
13802 PR middle-end/52074
13803 * expr.c (expand_expr_addr_expr_1): For CONSTANT_CLASS_P or CONST_DECL
13804 if modifier < EXPAND_SUM call force_operand on the result.
13805
13806 2012-02-07 Joern Rennecke <joern.rennecke@embecosm.com>
13807
13808 * config/epiphany/epiphany.h (ASM_DECLARE_FUNCTION_SIZE): Redefine,
13809 adding __forwarder_dst__ prefix if a forwarder_section attribute is
13810 present.
13811 (epiphany_function_type): Replace types for specific interrupts with
13812 EPIPHANY_FUNCTION_INTERRUPT.
13813 (EPIPHANY_INTERRUPT_P): Update.
13814 * config/epiphany/epiphany.c (epiphany_handle_forwarder_attribute):
13815 New static function.
13816 (epiphany_attribute_table) <interrupt>: min_len is 0, max_len is 9.
13817 <disinterrupt>: Affects type identity.
13818 (epiphany_handle_interrupt_attribute): Handle variable number of
13819 arguments.
13820 (epiphany_compute_function_type): Update for new
13821 epiphany_function_type definition.
13822 (epiphany_expand_prologue): Don't save (reg:DI GPR_0) for interrupt
13823 handlers with a longcall forwarder.
13824 (epiphany_start_function): Handle multiple interrupt arguments and/or
13825 forwarder_section attribute.
13826
13827 * config/epiphany/epiphany.h (LIB_SPEC): Link libc again after
13828 libgloss.
13829
13830 2012-02-07 Alan Modra <amodra@gmail.com>
13831
13832 PR target/52107
13833 * config/rs6000/rs6000.c (rs6000_emit_move): Don't create DImode
13834 subregs of TFmode.
13835
13836 2012-02-06 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
13837
13838 PR tree-optimization/50969
13839 * tree-vect-stmts.c (vect_model_store_cost): Correct statement cost to
13840 use vec_perm rather than vector_stmt.
13841 (vect_model_load_cost): Likewise.
13842 * config/i386/i386.c (ix86_builtin_vectorization_cost): Change cost of
13843 vec_perm to be the same as other vector statements.
13844 * config/rs6000/rs6000.c (rs6000_builtin_vectorization_cost): Revise
13845 cost of vec_perm for TARGET_VSX.
13846
13847 2012-02-06 Richard Guenther <rguenther@suse.de>
13848
13849 PR tree-optimization/52115
13850 * tree-sra.c (access_has_replacements_p): New function.
13851 (sra_modify_assign): Use it to decide whether a use is uninitialized.
13852
13853 2012-02-06 Patrick Marlier <patrick.marlier@gmail.com>
13854
13855 PR middle-end/52047
13856 * trans-mem.c (expand_call_tm): Add an assertion.
13857 * calls.c (flags_from_decl_or_type): Add ECF_TM_PURE to 'no vops'
13858 functions.
13859
13860 2012-02-06 Richard Guenther <rguenther@suse.de>
13861
13862 PR tree-optimization/50955
13863 * tree-ssa-loop-ivopts.c (get_computation_cost_at): Artificially
13864 raise cost of expressions that replace an address with an
13865 expression based on a different pointer.
13866
13867 2012-02-06 Jakub Jelinek <jakub@redhat.com>
13868
13869 PR target/52129
13870 * calls.c (mem_overlaps_already_clobbered_arg_p): If val is
13871 CONST_INT_P, subtract resp. add crtl->args.pretend_args_size to it.
13872
13873 2012-02-06 Jonathan Wakely <jwakely.gcc@gmail.com>
13874
13875 PR c++/48680
13876 * doc/invoke.texi (C++ Dialect Options): Use @option markup for
13877 -Weffc++ and specify guidelines come from second edition.
13878
13879 2012-02-05 Richard Sandiford <rdsandiford@googlemail.com>
13880
13881 * config/mips/mips.md (sibcall_internal, sibcall_value_internal)
13882 (sibcall_value_multiple_internal, call_split, call_internal_direct)
13883 (call_direct_split, call_value_split, call_value_internal_direct)
13884 (call_value_direct_split, call_value_multiple_split): Use jal and
13885 jal_macro attributes.
13886
13887 2012-02-05 Richard Sandiford <rdsandiford@googlemail.com>
13888
13889 * reload1.c (reload_regs_reach_end_p): Replace with...
13890 (reload_reg_rtx_reaches_end_p): ...this function.
13891 (new_spill_reg_store): Update commentary.
13892 (emit_input_reload_insns): Don't clear new_spill_reg_store here.
13893 (emit_output_reload_insns): Check reload_reg_rtx_reaches_end_p
13894 before setting new_spill_reg_store.
13895 (emit_reload_insns): Use a separate loop to clear new_spill_reg_store.
13896 Use reload_reg_rtx_reaches_end_p instead of reload_regs_reach_end_p.
13897 Also use reload_reg_rtx_reaches_end_p when reading new_spill_reg_store
13898 for non-spill reload registers.
13899
13900 2012-02-05 Ira Rosen <irar@il.ibm.com>
13901
13902 PR tree-optimization/52091
13903 * tree-vectorizer.h (vect_is_simple_use): Add an argument.
13904 (vect_is_simple_use_1): Likewise.
13905 * tree-vect-loop.c (vectorizable_reduction): Update calls
13906 to vect_is_simple_use_1 and vect_is_simple_use.
13907 (vectorizable_live_operation): Likewise.
13908 * tree-vect-patterns.c (widened_name_p,
13909 vect_recog_vector_vector_shift_pattern, check_bool_pattern): Likewise.
13910 * tree-vect-stmts.c (process_use, vect_get_vec_def_for_operand,
13911 vectorizable_call, vectorizable_conversion, vectorizable_assignment,
13912 vectorizable_shift,vectorizable_operation, vectorizable_store,
13913 vectorizable_load): Likewise.
13914 (vect_is_simple_cond): Add an argument, pass it to
13915 vect_is_simple_use_1.
13916 (vectorizable_condition): Update calls to vect_is_simple_cond,
13917 vect_is_simple_use.
13918 (vect_is_simple_use): Add an argument, the statement in which
13919 OPERAND is used. Check that if OPERAND's def stmt is a double
13920 reduction phi node, the use is a phi node too.
13921 (vect_is_simple_use_1): Add an argument, pass it to
13922 vect_is_simple_use.
13923 * tree-vect-slp.c (vect_get_and_check_slp_defs): Update a call
13924 to vect_is_simple_use.
13925
13926 2012-02-04 Jakub Jelinek <jakub@redhat.com>
13927
13928 PR rtl-optimization/52095
13929 * modulo-sched.c (dump_insn_locator): New function.
13930 (loop_canon_p, sms_schedule): Use it.
13931
13932 PR rtl-optimization/52113
13933 * lower-subreg.c (decompose_multiword_subregs): Call recog_memoized
13934 even for decomposable shift/zext insns.
13935
13936 2012-02-03 Jakub Jelinek <jakub@redhat.com>
13937 Zdenek Dvorak <ook@ucw.cz>
13938
13939 PR rtl-optimization/52092
13940 * loop-unswitch.c (unswitch_single_loop): Call copy_rtx_if_shared
13941 on get_iv_value result.
13942
13943 2012-02-02 Andrew Pinski <apinski@cavium.com>
13944
13945 PR middle-end/47982
13946 PR middle-end/43967
13947 * doc/libgcc.texi (__udivmoddi4/__udivmodti4): Fix documentation typo.
13948
13949 2012-02-02 Jakub Jelinek <jakub@redhat.com>
13950
13951 PR middle-end/48071
13952 * diagnostic.c (diagnostic_finish): Remove trailing newlines.
13953
13954 2012-02-02 Vladimir Makarov <vmakarov@redhat.com>
13955
13956 PR rtl-optimization/49800
13957 * haifa-sched.c (sched_init): Call regstat_init_n_sets_and_refs.
13958 (sched_finish): Call regstat_free_n_sets_and_refs.
13959
13960 2012-02-02 Jia Liu <proljc@gmail.com>
13961
13962 * config/mips/mips-dspr2.md (mips_prepend): Mask operand 3 rather
13963 than operand 2.
13964
13965 2012-02-02 Jan Hubicka <jh@suse.cz>
13966 Tom de Vries <tom@codesourcery.com>
13967
13968 PR middle-end/51998
13969 * cgraphunit.c (cgraph_analyze_function): Break cyclic aliases.
13970 * varpool.c (varpool_analyze_pending_decls): Likewise.
13971
13972 2012-02-02 Sumanth G <sumanth.gundapaneni@kpitcummins.com>
13973 Jayant R Sonar <jayant.sonar@kpitcummins.com>
13974
13975 * config.gcc: Add cr16-* support.
13976
13977 * doc/extend.texi: Document cr16 extensions.
13978 * doc/install.texi: Document cr16 install.
13979 * doc/invoke.texi: Document cr16 options.
13980 * doc/md.texi: Document cr16 constraints.
13981
13982 * common/config/cr16/cr16-common.c: New file.
13983 * config/cr16/cr16.c: New file.
13984 * config/cr16/cr16.h: New file.
13985 * config/cr16/cr16.md: New file.
13986 * config/cr16/cr16.opt: New file.
13987 * config/cr16/cr16-protos.h: New file.
13988 * config/cr16/predicates.md: New file.
13989 * config/cr16/constraints.md: New file.
13990 * config/cr16/t-cr16: New file.
13991
13992 2012-02-02 Jakub Jelinek <jakub@redhat.com>
13993
13994 PR target/52086
13995 * config/i386/i386.md (*addqi_2 peephole with SImode addition): Check
13996 that operands[2] is either immediate, or q_regs_operand.
13997
13998 PR tree-optimization/52073
13999 * tree-vect-stmts.c (vect_mark_relevant): When checking uses of
14000 a pattern stmt for pattern uses, ignore uses outside of the loop.
14001
14002 2012-02-01 Georg-Johann Lay <avr@gjlay.de>
14003
14004 * config/avr/avr.c: Resolve all AS1 and AS2 macros.
14005 * config/avr/avr.h (AS1, AS2, AS2C, AS3): Remove.
14006 (OUT_AS1, OUT_AS2): Remove.
14007
14008 2012-02-01 Georg-Johann Lay <avr@gjlay.de>
14009
14010 PR rtl-optimization/51374
14011 * combine.c (can_combine_p): Don't allow volatile_refs_p insns
14012 to cross other volatile_refs_p insns.
14013
14014 2012-02-01 Richard Guenther <rguenther@suse.de>
14015
14016 * doc/invoke.texi (fno-inline): Clarify documentation.
14017 (finline-small-functions): Likewise.
14018 (finline-functions): Likewise.
14019 * common.opt (finline): Adjust comment and documentation.
14020 (finline-small-functions): Clarify documentation.
14021 (finline-functions): Likewise.
14022 (finline-functions-called-once): Likewise.
14023
14024 2012-02-01 Tristan Gingold <gingold@adacore.com>
14025
14026 * c-typeck.c (composite_type): Keep mode for pointers.
14027
14028 2012-01-31 Richard Sandiford <rdsandiford@googlemail.com>
14029
14030 * function.h (regno_reg_rtx): Adjust comment.
14031 * reginfo.c (init_reg_modes_target): Only use the previous mode
14032 if it fits within one register. Remove MIPS comment.
14033
14034 2012-01-31 Jakub Jelinek <jakub@redhat.com>
14035
14036 PR bootstrap/52058
14037 * combine.c (do_SUBST_LINK, SUBST_LINK): Guard with #ifndef HAVE_cc0.
14038
14039 2012-01-31 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
14040
14041 * config/s390/s390.md ("*ashr<mode>3_and"): Add missing z196 flag
14042 to srak instruction.
14043
14044 2012-01-31 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
14045
14046 * config/arm/thumb2.md (thumb2_mov_notscc): Use MVN for true condition.
14047
14048 2012-01-31 Jakub Jelinek <jakub@redhat.com>
14049
14050 PR bootstrap/52041
14051 PR bootstrap/52039
14052 PR target/51974
14053 * ipa-prop.c (detect_type_change_1): Call ao_ref_init.
14054
14055 2012-01-31 Richard Guenther <rguenther@suse.de>
14056
14057 PR tree-optimization/51528
14058 * tree-sra.c (sra_modify_assign): Avoid copy-in/out for aggregate
14059 assigns.
14060
14061 2012-01-31 Jakub Jelinek <jakub@redhat.com>
14062
14063 PR bootstrap/52041
14064 PR bootstrap/52039
14065 PR target/51974
14066 * ree.c (add_removable_extension): Change def_map argument
14067 to unsigned *, store in def_map 1 + offset into *insn_list vector
14068 instead of pointers into the vector.
14069 (find_removable_extensions): Adjust caller.
14070
14071 2012-01-30 Georg-Johann Lay <avr@gjlay.de>
14072
14073 * config/avr/avr.md: Resolve all AS1 and AS2 macros.
14074 Transform all "* quoted-c-code" to { c-code }.
14075 Remove redundant test for "optimize" in combine patterns.
14076 Move (include "avr-dimode.md") to end of file.
14077
14078 2012-01-30 Bin Cheng <bin.cheng@arm.com>
14079
14080 PR target/51835
14081 * config/arm/arm.c (arm_libcall_uses_aapcs_base): Use correct ABI
14082 for __aeabi_d2iz/__aeabi_d2uiz with hard-float.
14083
14084 2012-01-30 Richard Guenther <rguenther@suse.de>
14085
14086 PR tree-optimization/52028
14087 * tree-loop-distribution.c (ldist_gen): Properly update
14088 virtual SSA form.
14089
14090 2012-01-30 Jakub Jelinek <jakub@redhat.com>
14091
14092 PR debug/52027
14093 * dwarf2out.c (dwarf2out_switch_text_section): Don't call
14094 set_cur_line_info_table if not emitting debug info.
14095
14096 PR tree-optimization/52046
14097 * tree-vect-patterns.c (check_bool_pattern): Give up if
14098 a comparison could throw.
14099
14100 PR debug/52048
14101 * tree-ssa-tail-merge.c (local_def): Ignore debug uses.
14102
14103 2012-01-30 Richard Guenther <rguenther@suse.de>
14104
14105 PR tree-optimization/52045
14106 * tree-optimize.c (execute_cleanup_cfg_post_optimizing): Update
14107 SSA form if cfgcleanup did anything.
14108
14109 2012-01-30 Richard Guenther <rguenther@suse.de>
14110
14111 PR tree-optimization/52045
14112 * ipa-inline-transform.c (inline_transform): Call execute_fixup_cfg
14113 before computing final todo.
14114
14115 2012-01-30 Richard Guenther <rguenther@suse.de>
14116
14117 PR tree-optimization/51528
14118 * tree-sra.c (sra_modify_assign): Re-factor in preparation
14119 for PR51528 fix.
14120
14121 2012-01-30 Paolo Bonzini <bonzini@gnu.org>
14122
14123 * df-problems.c (df_kill_notes): Check that the use refers
14124 to the note under examination.
14125
14126 2012-01-30 Eric Botcazou <ebotcazou@adacore.com>
14127
14128 PR target/51920
14129 * config/sparc/sparc.c (vector_init_fpmerge): Remove INNER_MODE
14130 parameter and use short-lived pseudos.
14131 (vector_init_faligndata): Remove INNER_MODE parameter and use loop.
14132 (sparc_expand_vector_init): Const-ify local variables and adjust
14133 calls to above functions.
14134
14135 2012-01-30 Georg-Johann Lay <avr@gjlay.de>
14136
14137 * config/avr/avr.c (out_movqi_mr_r): Fix length computation.
14138
14139 2012-01-29 Sandra Loosemore <sandra@codesourcery.com>
14140
14141 * doc/invoke.texi: Make usage of "compile time" and
14142 "run time"/"runtime" consistent throughout the file.
14143
14144 2012-01-29 Uros Bizjak <ubizjak@gmail.com>
14145
14146 * config/alpha/alpha.c (alpha_option_override): Default to
14147 full IEEE compliance mode for Go language.
14148
14149 2012-01-29 Tijl Coosemans <tijl@coosemans.org>
14150
14151 * config/freebsd-spec.h [TARGET_LIBC_PROVIDES_SSP]
14152 (LINK_SSP_SPEC): Define.
14153
14154 2012-01-28 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
14155
14156 PR target/51871
14157 * config/pa/pa.c (pa_return_addr_rtx): Add support for PA2.0 export
14158 stubs.
14159
14160 2012-01-28 Sandra Loosemore <sandra@codesourcery.com>
14161
14162 * doc/invoke.texi: Correct hyphenation of "floating point",
14163 "double precision", and related terminology throughout the file.
14164
14165 2012-01-28 Jakub Jelinek <jakub@redhat.com>
14166
14167 PR target/52006
14168 * config/arm/arm.md (pic_add_dot_plus_eight peephole2): Use
14169 arm_general_register_operand predicate for operand 2 instead of
14170 register_operand.
14171
14172 2012-01-27 Ian Lance Taylor <iant@google.com>
14173
14174 PR go/47656
14175 * builtins.def (BUILT_IN_INIT_HEAP_TRAMPOLINE): Define.
14176 * builtins.c (expand_builtin_init_trampoline): Add onstack
14177 parameter. Change caller.
14178 (expand_builtin): Handle BUILT_IN_INIT_HEAP_TRAMPOLINE.
14179 * tree.c (build_common_builtin_nodes): Declare
14180 __builtin_init_heap_trampoline.
14181
14182 2012-01-27 Georg-Johann Lay <avr@gjlay.de>
14183
14184 * config/avr/avr-protos.h (lpm_reg_rtx, lpm_addr_reg_rtx,
14185 tmp_reg_rtx, zero_reg_rtx, all_regs_rtx, rampz_rtx): Make global.
14186 * config/avr/avr.c: Ditto.
14187 (avr_regnames): Remove because unused.
14188 * config/avr/avr.md (*cpse.ne): New peephole.
14189 (*cpse.eq): New peephole from former cpse peepholes.
14190
14191 2012-01-27 Michael Eager <eager@eagercon.com>
14192
14193 * config/microblaze.c (microblaze_emit_compare): Correct
14194 test after pcmp instruction.
14195
14196 2012-01-27 Richard Guenther <rguenther@suse.de>
14197
14198 PR tree-optimization/52020
14199 * tree-sra.c (sra_modify_assign): Do not transform clobbers.
14200
14201 2012-01-27 Richard Guenther <rguenther@suse.de>
14202
14203 * ipa-pure-const.c (check_stmt): Clobbers do not make a
14204 function non-const/pure.
14205
14206 2012-01-27 Richard Guenther <rguenther@suse.de>
14207
14208 PR tree-optimization/50444
14209 * tree-sra.c (build_ref_for_offset): Properly adjust the
14210 MEM_REF type for unaligned accesses.
14211
14212 2012-01-27 Richard Guenther <rguenther@suse.de>
14213
14214 PR tree-optimization/50444
14215 * expr.c (mem_ref_refers_to_non_mem_p): New function.
14216 (expand_assignment): Use it. Properly handle misaligned
14217 bases when expanding stores to component references.
14218 (expand_expr_real_1): Use mem_ref_refers_to_non_mem_p and
14219 refactor that case.
14220
14221 2012-01-27 Andrey Belevantsev <abel@ispras.ru>
14222
14223 PR middle-end/51389
14224 * Makefile.in (tree-data-ref.o): Depend on $(PARAMS_H).
14225 * tree-data-ref.h (find_data_references_in_loop): Remove declaration.
14226 * tree-data-ref.c (find_data_references_in_loop): Make static.
14227 (compute_all_dependences): Change return type to bool. Bail out
14228 for too many datarefs in a loop. Move the hunk resetting the data
14229 dependences vector from ...
14230 (compute_data_dependences_for_loop): ... here. Account for
14231 compute_all_dependences returning false.
14232 (compute_data_dependences_for_bb): Likewise.
14233 * params.def (PARAM_LOOP_MAX_DATAREFS_FOR_DATADEPS): New param.
14234 * doc/invoke.texi (loop-max-datarefs-for-datadeps): Document it.
14235
14236 2012-01-27 Richard Guenther <rguenther@suse.de>
14237
14238 PR middle-end/51959
14239 * expr.c (store_field): Use the alias-set of the scratch memory
14240 for storing to it.
14241
14242 2012-01-27 Tom de Vries <tom@codesourcery.com>
14243
14244 PR tree-optimization/51990
14245 * tree-ssa-sccvn.c (copy_reference_ops_from_ref): Handle
14246 WITH_SIZE_EXPR.
14247 * tree-ssa-pre.c (create_component_ref_by_pieces_1): Same.
14248
14249 2012-01-27 Jakub Jelinek <jakub@redhat.com>
14250
14251 PR debug/52001
14252 * var-tracking.c (reverse_op): Don't add any reverse operation
14253 if V already has any constant locations.
14254
14255 2012-01-27 Sandra Loosemore <sandra@codesourcery.com>
14256
14257 * doc/invoke.texi: Correct usage of "command line" (noun)
14258 vs "command-line" (adjective) throughout.
14259
14260 2012-01-27 Sandra Loosemore <sandra@codesourcery.com>
14261
14262 * doc/invoke.texi (Language Independent Options): Move
14263 -Wcoverage-mismatch blurb from here....
14264 (Warning Options): ...to here.
14265
14266 2012-01-27 Peter Bergner <bergner@vnet.ibm.com>
14267
14268 * config/rs6000/rs6000.c (rs6000_option_override_internal):
14269 Set rs6000_always_hint to false for 476.
14270
14271 2012-01-27 Matthias Klose <doko@ubuntu.com>
14272
14273 * gcc.c (add_sysrooted_prefix): Remove trailing dir separator from
14274 system root.
14275 * incpath.c (add_standard_paths): Likewise.
14276
14277 2012-01-27 Richard Henderson <rth@redhat.com>
14278
14279 * config/m68k/m68k.c (TARGET_ATOMIC_TEST_AND_SET_TRUEVAL): New.
14280 * config/m68k/sync.md (atomic_test_and_set): Rename from
14281 sync_test_and_setqi and adjust the operands.
14282 (atomic_test_and_set_1): Rename from sync_test_and_setqi_1
14283 and unconditionally enable.
14284
14285 2012-01-27 Richard Henderson <rth@redhat.com>
14286
14287 * config/sparc/sparc.c (TARGET_ATOMIC_TEST_AND_SET_TRUEVAL): New.
14288 * config/sparc/sync.md (atomic_test_and_set): Only handle QImode.
14289 (ldstub): Rename from ldstubqi.
14290 (ldstub<I24MODE>): Remove.
14291
14292 2012-01-27 Richard Henderson <rth@redhat.com>
14293
14294 * target.def (TARGET_ATOMIC_TEST_AND_SET_TRUEVAL): New.
14295 * c-cppbuiltin.c (cpp_atomic_builtins): Define
14296 __GCC_ATOMIC_TEST_AND_SET_TRUEVAL.
14297 * doc/tm.texi.in (TARGET_ATOMIC_TEST_AND_SET_TRUEVAL): Add doc hook.
14298 * doc/tm.texi: Rebuild.
14299
14300 2012-01-27 Richard Henderson <rth@redhat.com>
14301
14302 * optabs.c (gen_atomic_test_and_set): Remove default.
14303 (maybe_emit_atomic_test_and_set): Use maybe_expand_insn.
14304
14305 2012-01-26 Jakub Jelinek <jakub@redhat.com>
14306
14307 PR rtl-optimization/51978
14308 * ree.c (make_defs_and_copies_lists): Change set_pat type to const_rtx.
14309 (combine_reaching_defs): Likewise.
14310 (struct re_info): Remove.
14311 (add_removable_extension): Remove x and data arguments,
14312 add insn, insn_list and def_map. Use the arguments directly
14313 instead of using struct re_info.
14314 (find_removable_extensions): Don't call add_removable_extension
14315 through note_stores, instead just call it with single_set
14316 result if non-NULL.
14317 (find_and_remove_re): Pass curr_cand->expr instead of
14318 PATTERN (curr_cand->insn) as set_pat argument to combine_reaching_defs.
14319
14320 2012-01-26 Michael Matz <matz@suse.de>
14321
14322 PR tree-optimization/46590
14323 * cfgexpand.c: Revert last change (r183305).
14324 * gimplify.c (gimplify_bind_expr): Add clobbers for all non-gimple
14325 regs.
14326 * tree-eh.c (cleanup_empty_eh): Try to optimize clobbers before
14327 checking for emptiness.
14328
14329 2012-01-26 Jakub Jelinek <jakub@redhat.com>
14330
14331 PR middle-end/51895
14332 * expr.c (expand_expr_real_1): Handle BLKmode MEM_REF of
14333 non-addressable non-BLKmode base correctly.
14334
14335 2012-01-26 Michael Matz <matz@suse.de>
14336
14337 PR tree-optimization/48794
14338 * tree-eh.c (remove_unreachable_handlers_no_lp): Don't remove
14339 regions referenced from RESX/EH_DISPATCH.
14340
14341 2012-01-26 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
14342
14343 * config/s390/s390.h: Make BRANCH_COST an option.
14344 * config/s390/s390.opt: New option -mbranch-cost.
14345
14346 2012-01-26 Richard Henderson <rth@redhat.com>
14347
14348 Revert 2012-01-24 change:
14349 * trans-mem.c (requires_barrier): Do not instrument thread local
14350 variables and emit save/restore for them.
14351
14352 2012-01-25 Jakub Jelinek <jakub@redhat.com>
14353
14354 PR middle-end/51986
14355 * sched-deps.c (sched_get_condition_with_rev_uncached): Don't test
14356 for pat == 0.
14357
14358 2012-01-25 Richard Sandiford <rdsandiford@googlemail.com>
14359
14360 * config/mips/mips.c (mips_small_data_pattern_1): Don't process
14361 ASM_OPERANDS.
14362
14363 2012-01-25 Georg-Johann Lay <avr@gjlay.de>
14364
14365 PR target/49868
14366 Rename __pgm to __flash.
14367 Rename __pgm1 to __flash1.
14368 Rename __pgm2 to __flash2.
14369 Rename __pgm3 to __flash3.
14370 Rename __pgm4 to __flash4.
14371 Rename __pgm5 to __flash5.
14372 Rename __pgmx to __memx.
14373 * doc/extend.texi (AVR Named Address Spaces)
14374 Rename address space names as indicated above.
14375 * config/avr/avr.c (avr_addrspace): Ditto.
14376
14377 * config/avr/avr-protos.h
14378 (avr_mem_pgmx_p): Rename to avr_mem_memx_p.
14379 (avr_mem_pgm_p): Rename to avr_mem_flash_p.
14380 * config/avr/predicates.md: Ditto.
14381 * config/avr/avr.c Ditto, and
14382 (avr_decl_pgmx_p): Rename to avr_decl_memx_p.
14383 (avr_decl_pgm_p): Rename to avr_decl_flash_p.
14384
14385 * config/avr/avr.h (ADDR_SPACE_PGM): Rename to ADDR_SPACE_FLASH.
14386 (ADDR_SPACE_PGM1): Rename to ADDR_SPACE_FLASH1.
14387 (ADDR_SPACE_PGM2): Rename to ADDR_SPACE_FLASH2.
14388 (ADDR_SPACE_PGM3): Rename to ADDR_SPACE_FLASH3.
14389 (ADDR_SPACE_PGM4): Rename to ADDR_SPACE_FLASH4.
14390 (ADDR_SPACE_PGM5): Rename to ADDR_SPACE_FLASH5.
14391 (ADDR_SPACE_PGMX): Rename to ADDR_SPACE_MEMX.
14392 * config/avr/avr.c: Ditto.
14393 * config/avr/avr.md: Ditto.
14394
14395 2012-01-25 Jason Merrill <jason@redhat.com>
14396
14397 PR c++/51992
14398 * tree.c (find_decls_types_in_node): Walk gimple_call_fntype.
14399
14400 2012-01-25 Jakub Jelinek <jakub@redhat.com>
14401
14402 PR tree-optimization/51987
14403 * tree-data-ref.c (get_references_in_stmt): Handle references in
14404 non-volatile GIMPLE_ASM.
14405
14406 2012-01-25 Richard Guenther <rguenther@suse.de>
14407
14408 * tree-ssa-sccvn.c (vn_reference_eq): Also compare if both
14409 bases are dereferenced.
14410
14411 2012-01-25 Andrey Belevantsev <abel@ispras.ru>
14412
14413 PR rtl-optimization/48374
14414 * sel-sched-ir.h (get_all_loop_exits): Check for zero successors.
14415
14416 2012-01-25 Andrey Belevantsev <abel@ispras.ru>
14417
14418 * tree-predcom.c (tree_predictive_commoning_loop): Bail out when
14419 compute_data_dependences_for_loop returns false.
14420 * tree-parloops.c (loop_parallel_p): Likewise.
14421
14422 2012-01-25 Richard Guenther <rguenther@suse.de>
14423
14424 * tree.h (get_pointer_alignment_1): Declare.
14425 * builtins.c (get_pointer_alignment_1): New function.
14426 (get_pointer_alignment): Use it.
14427
14428 2012-01-25 Ramana Radhakrishnan <ramana.radhakrishnan@linaro.org>
14429
14430 PR rtl-optimization/48308
14431 * combine.c (enum undo_kind): Add UNDO_LINKS.
14432 (struct undo): Add member l to other_contents and where.
14433 (do_SUBST_LINK): New.
14434 (SUBST_LINK): New.
14435 (try_combine): Handle LOG_LINKS for the dummy i1 case.
14436 (undo_all): Handle UNDO_LINKS.
14437
14438 2012-01-25 Richard Henderson <rth@redhat.com>
14439
14440 * optabs.c (maybe_emit_atomic_test_and_set): Allow non-QImode
14441 mem inputs.
14442
14443 2012-01-24 Richard Sandiford <rdsandiford@googlemail.com>
14444
14445 * optabs.c (gen_atomic_test_and_set): Use each argument.
14446
14447 2012-01-24 Richard Sandiford <rdsandiford@googlemail.com>
14448
14449 * config/mips/mips-ps-3d.md (mips_addr_ps, reduc_splus_v2sf)
14450 (mips_cvt_pw_ps, mips_cvt_ps_pw, mips_mulr_ps, mips_cabs_cond_<fmt>)
14451 (mips_cabs_cond_4s, mips_cabs_cond_ps, bc1any4t, bc1any4f, bc1any2t)
14452 (bc1any2f, mips_rsqrt1_<fmt>, mips_rsqrt2_<fmt>, mips_recip1_<fmt>)
14453 (mips_recip2_<fmt>): Require TARGET_MIPS3D rather than
14454 TARGET_PAIRED_SINGLE_FLOAT.
14455
14456 2012-01-24 Richard Sandiford <rdsandiford@googlemail.com>
14457
14458 * doc/rtl.texi (MEM_IN_STRUCT_P, MEM_SCALAR_P): Delete.
14459 (in_struct, return_val): Remove MEM documentation.
14460 * rtl.h (rtx_def): Remove MEM meanings from in_struct and return_val.
14461 (MEM_IN_STRUCT_P, MEM_SCALAR_P): Delete.
14462 (MEM_COPY_ATTRIBUTES): Remove references to MEM_IN_STRUCT_P
14463 and MEM_SCALAR.
14464 * emit-rtl.c (set_mem_attributes_minus_bitpos): Likewise.
14465 * cfgexpand.c (add_alias_set_conflicts): Likewise.
14466 * expr.c (store_field): Likewise.
14467 * function.c (assign_stack_temp_for_type): Likewise.
14468 * ifcvt.c (noce_try_cmove_arith): Likewise.
14469 * reload1.c (reload): Likewise.
14470 * config/alpha/alpha.c (alpha_set_memflags_1): Likewise.
14471 (alpha_set_memflags): Likewise.
14472 * config/m32c/m32c.c (m32c_immd_dbl_mov): Nullify.
14473
14474 2012-01-24 Richard Sandiford <rdsandiford@googlemail.com>
14475
14476 * rtl.h (true_dependence, canon_true_dependence): Remove varies
14477 parameter.
14478 * alias.c (fixed_scalar_and_varying_struct_p): Delete.
14479 (true_dependence_1, write_dependence_p, may_alias_p): Don't call it.
14480 (true_dependence_1, true_dependence, canon_true_dependence): Remove
14481 varies parameter.
14482 * cselib.c (cselib_rtx_varies_p): Delete.
14483 (cselib_invalidate_mem): Update call to canon_true_dependence.
14484 * dse.c (record_store, check_mem_read_rtx): Likewise.
14485 (scan_reads_nospill): Likewise.
14486 * cse.c (check_dependence): Likewise.
14487 (cse_rtx_varies_p): Delete.
14488 * expr.c (safe_from_p): Update call to true_dependence.
14489 * ira.c (validate_equiv_mem_from_store): Likewise.
14490 (memref_referenced_p): Likewise.
14491 * postreload-gcse.c (find_mem_conflicts): Likewise.
14492 * sched-deps.c (sched_analyze_2): Likewise.
14493 * store-motion.c (load_kills_store): Likewise.
14494 * config/frv/frv.c (frv_registers_conflict_p_1): Likewise.
14495 * gcse.c (mems_conflict_for_gcse_p): Likewise.
14496 (compute_transp): Update call to canon_true_dependence.
14497
14498 2012-01-25 Richard Henderson <rth@redhat.com>
14499
14500 * optabs.c (CODE_FOR_atomic_test_and_set): Provide default.
14501 (maybe_emit_atomic_test_and_set): New.
14502 (expand_sync_lock_test_and_set): Use it.
14503 (expand_atomic_test_and_set): Likewise.
14504 * doc/extend.texi (__atomic_test_and_set): Adjust the docs to match
14505 the implementation; clarify implementation defined details.
14506 * doc/md.texi (atomic_test_and_set): Document.
14507
14508 2012-01-25 Richard Henderson <rth@redhat.com>
14509
14510 * config/sparc/predicates.md (zero_or_v7_operand): Use match_code.
14511
14512 2012-01-25 Richard Henderson <rth@redhat.com>
14513
14514 PR target/51968
14515 * config/arm/arm.c (neon_split_vcombine): Emit deleted note
14516 to effect no-op split.
14517
14518 2012-01-24 Aldy Hernandez <aldyh@redhat.com>
14519
14520 PR lto/51698
14521 * builtin-types.def: (BT_CONST_DOUBLE_PTR): New.
14522 (BT_FN_VOID_PTR_CONST_PTR_SIZE): New.
14523 (BT_FN_VOID_PTR_INT_SIZE): New.
14524 (BT_FN_UINT_UINT_VAR): Remove.
14525 (BT_FN_UINT32_UINT32_VAR): New.
14526 (BT_FN_DOUBLE_VPTR): Remove.
14527 (BT_FN_DOUBLE_CONST_DOUBLE_PTR): New.
14528
14529 * gtm-builtins.def (_ITM_abortTransaction): Set return type to void.
14530 (_ITM_changeTransactionMode): Same.
14531 (_ITM_memmoveRtWt): Change return type to void.
14532 (_ITM_memcpyRtWt): Same.
14533 (_ITM_memsetW): Same.
14534 (_ITM_RaRD): Change types to double.
14535 (_ITM_RD): Same.
14536 (_ITM_RaWD): Same.
14537 (_ITM_RfWD): Same.
14538
14539 * builtins.def (DEF_TM_BUILTIN): Set BOTH_P to true.
14540
14541 2012-01-24 Aldy Hernandez <aldyh@redhat.com>
14542 Patrick Marlier <patrick.marlier@gmail.com>
14543
14544 * trans-mem.c (requires_barrier): Do not instrument thread local
14545 variables and emit save/restore for them.
14546
14547 2012-01-24 Jason Merrill <jason@redhat.com>
14548
14549 PR c++/51812
14550 * cgraphunit.c (cgraph_decide_is_function_needed): Don't always
14551 output static aliases.
14552
14553 2012-01-24 Jakub Jelinek <jakub@redhat.com>
14554
14555 PR driver/47249
14556 * common.opt (-pie, -shared, pie, shared): Change from Common to
14557 Driver.
14558 * gcc.c (display_help): Display help for -pie and -shared.
14559
14560 2012-01-24 Georg-Johann Lay <avr@gjlay.de>
14561
14562 PR target/49868
14563 * doc/extend.texi (AVR Named Address Spaces): Move sample code up.
14564 Remove note on size/offset limitation.
14565 (AVR Variable Attributes): Add example how to read data located
14566 with progmem. Refer to named address spaces.
14567 * doc/invoke.texi (AVR Options): Fix typo.
14568
14569 2012-01-24 Richard Guenther <rguenther@suse.de>
14570
14571 Forward-port to trunk
14572 2010-09-21 Jakub Jelinek <jakub@redhat.com>
14573
14574 PR middle-end/45678
14575 * expr.c (expand_expr_real_1) <case VIEW_CONVERT_EXPR>: If
14576 op0 isn't sufficiently aligned and there is movmisalignM
14577 insn for mode, use it to load op0 into a temporary register.
14578
14579 2012-01-24 Jakub Jelinek <jakub@redhat.com>
14580
14581 PR target/51957
14582 * target.def (const_not_ok_for_debug_p): New hook.
14583 * doc/tm.texi.in (TARGET_CONST_NOT_OK_FOR_DEBUG_P): New hook
14584 documentation.
14585 * doc/tm.texi: Regenerated.
14586 * dwarf2out.c (const_ok_for_output_1): If
14587 targetm.const_not_ok_for_debug_p returns true, fail.
14588 * config/rs6000/rs6000.c (rs6000_const_not_ok_for_debug_p): New
14589 function.
14590 (TARGET_CONST_NOT_OK_FOR_DEBUG_P): Redefine.
14591
14592 2012-01-23 Kai Tietz <ktietz@redhat.com>
14593
14594 PR target/51900
14595 * config/i386/predicates.md (symbolic_operand): Allow
14596 UNSPEC_PCREL as PIC expression for lea.
14597 * config/i386/winnt.c (i386_pe_binds_local_p): Reworked.
14598 * config/i386/i386.c (ix86_delegitimize_address): Handle
14599 UNSPEC_PCREL for none-MEM, too.
14600
14601 2012-01-23 Aldy Hernandez <aldyh@redhat.com>
14602
14603 * trans-mem.c (ipa_tm_create_version): Set externally_visible.
14604 (ipa_tm_create_version_alias): Same.
14605
14606 2012-01-23 Uros Bizjak <ubizjak@gmail.com>
14607
14608 PR libitm/51830
14609 * builtin-types.def (BT_FN_UINT_UINT_VAR): New.
14610 * gtm-builtins.def (BUILT_IN_TM_START): Declare as BT_FN_UINT_UINT_VAR.
14611
14612 2012-01-23 Aldy Hernandez <aldyh@redhat.com>
14613 Patrick Marlier <patrick.marlier@gmail.com>
14614 Iain Sandoe <developer@sandoe-acoustics.co.uk>
14615
14616 PR lto/51916
14617 * lto-wrapper.c (run_gcc): Pass the LTO section name to
14618 simple_object_start_read.
14619
14620 2012-01-23 Richard Guenther <rguenther@suse.de>
14621
14622
14623 PR tree-optimization/51895
14624 * tree-sra.c (decide_one_param_reduction): Avoid sub-optimal
14625 parameter decomposition into BLKmode components.
14626
14627 2012-01-23 Eric Botcazou <ebotcazou@adacore.com>
14628
14629 * tree-ssa-structalias.c (intra_create_variable_infos): Do not create
14630 fake variables for restrict-qualified pointers whose pointed-to type
14631 contains a placeholder.
14632
14633 2012-01-23 Richard Guenther <rguenther@suse.de>
14634
14635 PR tree-optimization/51949
14636 * ipa-split.c (execute_split_functions): Do not split malloc functions.
14637
14638 2012-01-23 Jakub Jelinek <jakub@redhat.com>
14639
14640 PR rtl-optimization/51933
14641 * ree.c (transform_ifelse): Return true right away if dstreg is
14642 already wider or equal to cand->mode.
14643 (enum ext_modified_kind, struct ext_modified, ext_state): New types.
14644 (make_defs_and_copies_lists): Remove defs_list and copies_list
14645 arguments, add state argument, just truncate state->work_list
14646 instead of always allocating and freeing the vector. Assert that
14647 get_defs succeeds instead of returning 2. Changed return type to bool.
14648 (merge_def_and_ext): Add state argument. If SET_DEST doesn't
14649 have ext_src_mode, see if it has been modified already with the
14650 right kind of extension and has been extended before from the
14651 ext_src_mode. If SET_DEST is already wider or equal to cand->mode,
14652 just return true. Remember the original mode in state->modified array.
14653 (combine_reaching_defs): Add state argument. Don't allocate and
14654 free here def_list, copied_list and vec vectors, instead just
14655 VEC_truncate the vectors in *state. Don't handle outcome == 2 here.
14656 (find_and_remove_re): Set DF_DEFER_INSN_RESCAN df flag.
14657 Add state variable, clear vectors in it, initialize state.modified
14658 if needed. Free all the vectors at the end and state.modified too.
14659 Don't skip a candidate if the extension expression has been modified.
14660
14661 2012-01-22 Douglas B Rupp <rupp@gnat.com>
14662
14663 PR target/47096
14664 * config.gcc: (i[34567]86-*-interix3*): Remove from obsolete
14665 configurations. Change triplet to i[34567]86-*-interix[3-9]*.
14666 (extra_options) interix.opt -> i386/interix.opt"
14667 (extra_objs):Add winnt-stubs.o
14668 * configure.ac: Add interix to target_os .comm on PE check.
14669 * configure: Regenerate.
14670 * config/interix3.h: Delete and move bits to..
14671 * config/interix.h: Delete and move bits to..
14672 * config/i386/i386-interix3.h: Delete and move bits to..
14673 * config/i386/i386-interix.h: ..here.
14674 (TARGET_CPU_DEFAULT): Remove redefinition.
14675 (TARGET_ASM_CONSTRUCTOR): Undefine.
14676 (SUBTARGET_SWITCHES): Define for ms-bitfields.
14677 (TARGET_OS_CPP_BUILTINS): Remove __OPENNT. Add __declspec.
14678 (PTRDIFF_TYPE): Define.
14679 (LONG_DOUBLE_TYPE_SIZE): Define.
14680 (LIBGCC2_LONG_DOUBLE_TYPE_SIZE): Define.
14681 (SUBTARGET_OVERRIDE_OPTIONS): Remove.
14682 (TARGET_SECTION_TYPE_FLAGS): Define.
14683 (ASM_DECLARE_FUNCTION_NAME): Define.
14684 (ASM_OUTPUT_EXTERNAL): Define.
14685 (ASM_OUTPUT_EXTERNAL_LIBCALL): Define.
14686 (ASM_OUTPUT_ALIGNED_BSS): Define.
14687 (PCC_BITFIELD_TYPE_MATTERS): Define.
14688 (USE_CONST_SECTION): Define.
14689 (SUBTARGET_ENCODE_SECTION_INFO): Remove.
14690 (TARGET_ASM_FUNCTION_RODATA_SECTION): Remove.
14691 (SUPPORTS_ONE_ONLY): Remove.
14692 (I386_PE_STRIP_ENCODING): Define.
14693 * config/interix.opt: Delete and move bits to..
14694 * config/i386/interix.opt: ..here. New.
14695 (mpe-aligned-commons): Add.
14696 * config/i386/t-interix: Add copyright header.
14697 (winnt-stubs.o): Add rule.
14698
14699 2012-01-22 Jason Merrill <jason@redhat.com>
14700
14701 PR c++/51832
14702 * varpool.c (varpool_analyze_pending_decls): Copy DECL_EXTERNAL
14703 for extra name aliases.
14704
14705 2012-01-22 Eric Botcazou <ebotcazou@adacore.com>
14706
14707 PR rtl-optimization/51924
14708 * ree.c (combine_set_extension): Improve debugging message.
14709 (combine_reaching_defs): Likewise.
14710 (get_defs): Rename confusingly named variable.
14711 (find_and_remove_re): Skip a candidate if the extension expression has
14712 been modified.
14713
14714 2012-01-21 Robert Millan <rmh@gnu.org>
14715 Gerald Pfeifer <gerald@pfeifer.com>
14716
14717 * config/kfreebsd-gnu.h (GNU_USER_DYNAMIC_LINKERX32): New macro.
14718 (GNU_USER_DYNAMIC_LINKER): Adjust indentation.
14719
14720 2012-01-20 Jakub Jelinek <jakub@redhat.com>
14721
14722 PR tree-optimization/51914
14723 * tree-vect-stmts.c (vectorizable_conversion): For
14724 cvt_type && modifier == WIDEN, put temporary with cvt_type
14725 at the beginning of vec_dsts and set vec_dest to temporary
14726 with vectype_out.
14727
14728 2012-01-20 Eric Botcazou <ebotcazou@adacore.com>
14729
14730 * cfgrtl.c (rtl_dump_bb): Do not dump insns for {ENTRY|EXIT}_BLOCK.
14731
14732 2012-01-20 Tijl Coosemans <tijl@coosemans.org>
14733
14734 * config/i386/i386.c: Fix checks for !TARGET_MACHO.
14735 * config/rs6000/rs6000.c: Likewise.
14736
14737 2012-01-20 Jakub Jelinek <jakub@redhat.com>
14738
14739 PR target/51915
14740 * config/arm/arm.c (arm_count_output_move_double_insns): Call
14741 output_move_double on a copy of operands array.
14742
14743 2012-01-20 Cary Coutant <ccoutant@google.com>
14744 Dodji Seketeli <dodji@redhat.com>
14745
14746 PR debug/45682
14747 * dwarf2out.c (copy_declaration_context): Return ref to parent
14748 of declaration DIE, if necessary.
14749 (remove_child_or_replace_with_skeleton): Add new parameter; update
14750 caller. Place skeleton DIE under parent DIE of original declaration.
14751 Move call to copy_declaration_context to here ...
14752 (break_out_comdat_types): ... from here.
14753
14754 2012-01-20 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
14755
14756 PR rtl-optimization/51856
14757 * reload.c (find_reloads_subreg_address): Set the address_reloaded
14758 flag to reloaded.
14759
14760 2012-01-20 Ramana Radhakrishnan <ramana.radhakrishnan@linaro.org>
14761
14762 PR target/51819
14763 * config/arm/arm.c (arm_print_operand): Correct output of alignment
14764 hints for neon loads and stores.
14765
14766 2012-01-20 Georg-Johann Lay <avr@gjlay.de>
14767
14768 PR target/49868
14769 PR target/50887
14770 * doc/extend.texi (Named Address Spaces): Split into subsections.
14771 (AVR Named Address Spaces): New subsection.
14772 (M32C Named Address Spaces): New subsection.
14773 (RL78 Named Address Spaces): New subsection.
14774 (SPU Named Address Spaces): New subsection.
14775 (Variable Attributes): New anchor "AVR Variable Attributes".
14776 (AVR Variable Attributes): Rewrite and avoid wording
14777 "address space" in this context.
14778 * doc/invoke.texi (AVR Options): Rewrite and add documentation
14779 for -maccumulate-args, -mbranch-cost=, -mrelax, -mshort-calls.
14780 (AVR Built-in Macros): New subsubsection therein.
14781 * doc/md.texi (AVR constraints): Remove "C04", "R".
14782
14783 2012-01-20 Richard Guenther <rguenther@suse.de>
14784
14785 PR tree-optimization/51903
14786 * tree-ssa-pre.c (eliminate): Properly purging of EH edges
14787 when removing stmts.
14788
14789 2012-01-20 Ramana Radhakrishnan <ramana.radhakrishnan@linaro.org>
14790
14791 PR target/50313
14792 * config/arm/arm.c (arm_load_pic_register): Use
14793 gen_pic_load_addr_unified. Delete calls to gen_pic_load_addr_32bit
14794 , gen_pic_add_dot_plus_eight and gen_pic_add_dot_plus_four.
14795 (arm_pic_static_addr): Likewise.
14796 (arm_rtx_costs_1): Adjust cost for UNSPEC_PIC_UNIFIED.
14797 (arm_note_pic_base): Handle UNSPEC_PIC_UNIFIED.
14798 * config/arm/arm.md (UNSPEC_PIC_UNIFIED): Define.
14799 (pic_load_addr_unified): New.
14800
14801 2012-01-20 Andrey Belevantsev <abel@ispras.ru>
14802
14803 PR target/51106
14804 * function.c (instantiate_virtual_regs_in_insn): Use
14805 delete_insn_and_edges when removing a wrong asm insn.
14806
14807 2012-01-19 Vladimir Makarov <vmakarov@redhat.com>
14808
14809 PR rtl-optimization/40761
14810 * ira-int.h (struct ira_loop_tree_node): Add comment for member loop.
14811 Add new member loop_num.
14812 (IRA_LOOP_NODE_BY_INDEX): Modify the check.
14813 (ira_build): Remove the parameter.
14814
14815 * ira.c (ira_print_disposition): Use loop_num instead of loop->num.
14816 (ira.c): Do not build CFG loops for one region allocation. Remove
14817 argument from ira_build call.
14818
14819 * ira-build.c (init_loop_tree_node): New function.
14820 (create_loop_tree_nodes): Use it. Separate the case when CFG
14821 loops are not built.
14822 (more_one_region_p): Check current_loops.
14823 (finish_loop_tree_nodes): Separate the case when CFG loops are not
14824 built.
14825 (add_loop_to_tree): Process loop equal to NULL too.
14826 (form_loop_tree): Separate the case when CFG loops are not built.
14827 Use explicitly number for the root.
14828 (rebuild_regno_allocno_maps, create_loop_tree_node_allocnos): Add
14829 an assertion.
14830 (ira_print_expanded_allocno, loop_compare_func): Use loop_num
14831 instead of loop->num.
14832 (mark_loops_for_removal): Ditto. Use loop_num instead of loop->num.
14833 (mark_all_loops_for_removal): Ditto.
14834 (remove_unnecessary_regions): Separate the case when CFG loops
14835 are not built.
14836 (ira_build): Remove the parameter. Use explicit number of regions
14837 when CFG loops are not built.
14838
14839 * ira-color.c (print_loop_title): Separate the case for the root node.
14840 Use loop_num instead of loop->num.
14841 (move_spill_restore): Use loop_num instead of loop->num.
14842
14843 * ira-emit.c (setup_entered_from_non_parent_p): Add an assertion.
14844 (change_loop): Ditto.
14845 (change_loop): Use loop_num instead of loop->num.
14846
14847 * ira-lives.c (process_bb_node_lives): Ditto.
14848
14849 * ira-costs.c (print_allocno_costs, find_costs_and_classes): Ditto.
14850
14851 * ira-conflicts.c (print_allocno_conflicts): Ditto.
14852
14853 2012-01-19 Jakub Jelinek <jakub@redhat.com>
14854
14855 PR libmudflap/40778
14856 * tree-mudflap.c (mf_artificial): New function.
14857 (execute_mudflap_function_ops, execute_mudflap_function_decls,
14858 mx_register_decls, mudflap_enqueue_decl): Use it.
14859
14860 PR target/51876
14861 * config/arm/neon.md (*neon_vswp<mode>): Fix up operand
14862 numbers in the insn pattern.
14863
14864 2012-01-19 Michael Matz <matz@suse.de>
14865
14866 PR tree-optimization/46590
14867 * cfgexpand.c (add_scope_conflicts_1): New old_conflicts argument,
14868 use it in remembering which conflicts we already created.
14869 (add_scope_conflicts): Adjust call to above, (de)allocate helper
14870 bitmap.
14871
14872 2012-01-19 Aldy Hernandez <aldyh@redhat.com>
14873
14874 PR lto/51280
14875 * lto-wrapper.c (run_gcc): Pass -fgnu_tm on.
14876 (merge_and_complain): Same.
14877
14878 2012-01-19 Jakub Jelinek <jakub@redhat.com>
14879
14880 PR bootstrap/50237
14881 * config/initfini-array.h: Guard content of the header
14882 with #ifdef HAVE_INITFINI_ARRAY.
14883 * configure.ac: Move gcc_AC_INITFINI_ARRAY much later into the file.
14884 Add initfini-array.h to tm_file here.
14885 * acinclude.m4 (gcc_AC_INITFINI_ARRAY): For non-ia64 do a linker test.
14886 * config.gcc: Don't add initfini-array.h to tm_file here.
14887 * configure: Regenerated.
14888
14889 2012-01-19 Andrey Belevantsev <abel@ispras.ru>
14890
14891 PR rtl-optimization/51505
14892 * df-problems.c (df_kill_notes): New parameter live. Update comment.
14893 Remove REG_EQUAL/REG_EQUIV notes referring to dead registers.
14894 (df_note_bb_compute): Update the call to df_kill_notes.
14895
14896 2012-01-18 Aldy Hernandez <aldyh@redhat.com>
14897
14898 * trans-mem.c (requires_barrier): Remove call to is_global_var.
14899
14900 2012-01-18 Richard Guenther <rguenther@suse.de>
14901
14902 * tree-ssa.c (useless_type_conversion_p): Remove special-casing
14903 of conversions to void *.
14904
14905 2012-01-17 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
14906 Richard Sandiford <rdsandiford@googlemail.com>
14907
14908 PR middle-end/50325
14909 PR middle-end/51192
14910 * optabs.h (simplify_expand_binop): Declare.
14911 * optabs.c (simplify_expand_binop): Make global.
14912 * expmed.c (store_bit_field_1): Use simplify_expand_binop on big
14913 endian targets if the source cannot be exactly covered by word
14914 mode chunks.
14915
14916 2012-01-17 Jakub Jelinek <jakub@redhat.com>
14917
14918 PR bootstrap/51872
14919 * hard-reg-set.h (struct hard_reg_set_container): New type.
14920 * target.h (struct hard_reg_set_container): Forward declare.
14921 * target.def (set_up_by_prologue): New target hook.
14922 * doc/tm.texi.in (TARGET_SET_UP_BY_PROLOGUE): Document it.
14923 * doc/tm.texi: Regenerated.
14924 * function.c (thread_prologue_and_epilogue_insns): Change
14925 set_up_by_prologue HARD_REG_SET into struct hard_reg_set_container.
14926 Call targetm.set_up_by_prologue on it.
14927 * config/rs6000/rs6000.c (rs6000_set_up_by_prologue): New function.
14928 (TARGET_SET_UP_BY_PROLOGUE): Redefine to it.
14929
14930 2012-01-17 Nick Clifton <nickc@redhat.com>
14931
14932 * config/rx/rx.c (rx_can_use_simple_return): New function.
14933 * config/rx/rx-protos.h (rx_can_use_simple_return): Prototype.
14934 * config/rx/rx.md (return): Predicate on rx_can_use_simple_return.
14935
14936 2012-01-17 Richard Guenther <rguenther@suse.de>
14937
14938 PR middle-end/51782
14939 * expr.c (expand_assignment): Take address-space information
14940 from the address operand of MEM_REF and TARGET_MEM_REF.
14941 (expand_expr_real_1): Likewise.
14942
14943 2012-01-17 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
14944
14945 * ira.c (do_reload): Make sure ira_dump_file is re-set if no
14946 reload dump is requested.
14947
14948 2012-01-17 Aldy Hernandez <aldyh@redhat.com>
14949
14950 PR other/51165
14951 * trans-mem.c (requires_barrier): Call may_be_aliased.
14952
14953 2012-01-17 Jakub Jelinek <jakub@redhat.com>
14954
14955 PR tree-optimization/51877
14956 * tree-ssa-tail-merge.c (gimple_equal_p): Don't return true whenever
14957 call arguments and fndecls compare equal, instead return false if they
14958 don't. Return true only if lhs1 and lhs2 are either both NULL, or
14959 both SSA_NAMEs that are valueized the same, or they satisfy
14960 operand_equal_p.
14961
14962 2012-01-17 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
14963
14964 * configure.ac (gcc_cv_target_dl_iterate_phdr): Only check on
14965 Solaris 11+.
14966 * configure: Regenerate.
14967
14968 2012-01-16 Jan Hubicka <jh@suse.cz>
14969
14970 PR c/12245
14971 PR c++/14179
14972 * convert.c (convert_to_integer): Use fold_convert for
14973 converting an INTEGER_CST to integer type.
14974
14975 2012-01-16 Jason Merrill <jason@redhat.com>
14976
14977 PR c++/14179
14978 * vec.c (vec_gc_o_reserve_1): Use ggc_round_alloc_size.
14979
14980 2012-01-16 Jakub Jelinek <jakub@redhat.com>
14981
14982 PR bootstrap/51860
14983 * config/s390/s390.c (s390_chunkify_start): Don't skip
14984 call insns followed by NOTE_INSN_CALL_ARG_LOCATION note. Skip
14985 NOTE_INSN_VAR_LOCATION and NOTE_INSN_CALL_ARG_LOCATION notes.
14986 If insn is followed by NOTE_INSN_VAR_LOCATION or
14987 NOTE_INSN_CALL_ARG_LOCATION notes, insert jump after all those notes.
14988 Don't use location of note insns.
14989
14990 PR tree-optimization/51865
14991 * tree-inline.c (tree_function_versioning): Call remap_decl
14992 on DECL_RESULT whenever it has VOID_TYPE_P type.
14993
14994 2012-01-15 Richard Sandiford <rdsandiford@googlemail.com>
14995
14996 * config/mips/mips.c (mips16_build_call_stub): Don't use a stub
14997 for calls to locally-binding MIPS16 functions if only the return
14998 type uses float regs.
14999
15000 2012-01-15 Chung-Lin Tang <cltang@codesourcery.com>
15001 Richard Sandiford <rdsandiford@googlemail.com>
15002
15003 * config/mips/mips-protos.h (SYMBOL_FORCE_TO_MEM): Delete.
15004 (SYMBOL_32_HIGH): Likewise.
15005 (mips_output_tls_reloc_directive): Declare.
15006 * config/mips/mips.h (PIC_FUNCTION_ADDR_REGNUM): Move to mips.md.
15007 (mips_use_pcrel_pool_p, mips_lo_relocs, mips_hi_relocs): Declare.
15008 * config/mips/mips.c (mips_use_pcrel_pool_p): New variable.
15009 (mips_lo_relocs, mips_hi_relocs): Make extern.
15010 (mips16_stub_function): Move up file.
15011 (mips_classify_symbol): Remove SYMBOL_FORCE_TO_MEM handling.
15012 (mips_symbolic_constant_p): Likewise. Remove SYMBOL_32_HIGH too.
15013 (mips_symbol_insns_1): Likewise. Check mips_use_pcrel_pool_p.
15014 (mips_cannot_force_const_mem): Use mips_use_pcrel_pool_p instead of
15015 SYMBOL_FORCE_TO_MEM. Only check mips_tls_symbol_ref_1 if it's false.
15016 (mips_get_tp): Add MIPS16 support.
15017 (mips_legitimize_tls_address): Remove MIPS16 sorry().
15018 Generalize DTPREL and TPREL handling.
15019 (mips_init_relocs): Initialize mips_use_pcrel_pool_p.
15020 Add MIPS16 TLS support.
15021 (mips_output_tls_reloc_directive): New function.
15022 (mips16_rewrite_pool_refs): Ignore UNSPEC_TLS_GET_TPs.
15023 * config/mips/predicates.md (symbolic_operand_with_high)
15024 (tls_reloc_operand): New predicates.
15025 (force_to_mem_operand): Use mips_use_pcrel_pool_p.
15026 * config/mips/mips.md (UNSPEC_UNSHIFTED_HIGH): New unspec.
15027 (PIC_FUNCTION_ADDR_REGNUM): Moved from mips.h.
15028 (*unshifted_high): New instruction. Use it for MIPS16 high splitter.
15029 (consttable_tls_reloc, tls_get_tp_mips16_<mode>): New patterns.
15030 (*tls_get_tp_mips16_call_<mode>): Likewise.
15031
15032 2012-01-15 Uros Bizjak <ubizjak@gmail.com>
15033
15034 PR rtl-optimization/51821
15035 * recog.c (peep2_find_free_register): Determine clobbered registers
15036 from insn pattern.
15037
15038 2012-01-14 Denis Chertykov <chertykov@gmail.com>
15039
15040 PR target/50925
15041 * config/avr/avr-protos.h: Revert change of 2012-01-09.
15042 * config/avr/avr.c: Likewise.
15043 * config/avr/avr.h: Likewise.
15044
15045 2012-01-13 Ian Lance Taylor <iant@google.com>
15046
15047 PR c++/50012
15048 * tree.h (TYPE_QUALS): Add cast to int.
15049 (TYPE_QUALS_NO_ADDR_SPACE): Likewise.
15050
15051 2012-01-13 Ian Lance Taylor <iant@google.com>
15052
15053 * ipa-cp.c (ipa_get_indirect_edge_target): Add typecasts when
15054 comparing param_index to VEC_length result.
15055
15056 2012-01-13 Steven Bosscher <steven@gcc.gnu.org>
15057
15058 * c-decl.c: Do not include tree-mudflap.h
15059 * tree-optimize.c: Likewise.
15060 * Makefile.in: Update dependencies.
15061
15062 2012-01-13 Richard Guenther <rguenther@suse.de>
15063
15064 PR middle-end/8081
15065 * gimplify.c (gimplify_modify_expr_rhs): For calls with a
15066 variable-sized result always use RSO.
15067
15068 2012-01-12 DJ Delorie <dj@redhat.com>
15069
15070 * cfgexpand.c (convert_debug_memory_address): Allow any valid
15071 pointer type, not just the default pointer type.
15072
15073 2012-01-09 Richard Henderson <rth@redhat.com>
15074 Denis Chertykov <chertykov@gmail.com>
15075
15076 PR target/50925
15077 * config/avr/avr-protos.h (avr_hard_regno_nregs): Declare.
15078 * config/avr/avr.c (avr_can_eliminate): Simplify.
15079 (avr_initial_elimination_offset): Likewise.
15080 (avr_prologue_setup_frame): Use hard_frame_pointer_rtx.
15081 (expand_epilogue): Likewise.
15082 (avr_legitimize_address): Gut.
15083 (avr_legitimize_reload_address): Use hard_frame_pointer_rtx.
15084 (avr_hard_regno_nregs): New.
15085 (avr_hard_regno_ok): Allow only Pmode for arg and frame_pointers.
15086 (avr_regno_mode_code_ok_for_base_b): Handle arg and frame pointers.
15087 * config/avr/avr.h (FIXED_REGISTERS): Adjust arg pointer,
15088 add soft frame pointer.
15089 (CALL_USED_REGISTERS): Likewise.
15090 (REG_CLASS_CONTENTS): Likewise.
15091 (REGISTER_NAMES): Likewise.
15092 (HARD_REGNO_NREGS): Use avr_hard_regno_nregs.
15093 (HARD_FRAME_POINTER_REGNUM): New.
15094 (FRAME_POINTER_REGNUM): Use soft frame pointer.
15095 (ELIMINABLE_REGS): Eliminate from the soft frame pointer,
15096 remove the HARD_FRAME_POINTER self-elimination.
15097
15098 2012-01-12 Georg-Johann Lay <avr@gjlay.de>
15099
15100 PR target/51756
15101 * config/avr/avr.c (avr_encode_section_info): Test for absence of
15102 DECL_EXTERNAL when checking for initializers of progmem variables.
15103
15104 2012-01-12 Ira Rosen <irar@il.ibm.com>
15105
15106 PR tree-optimization/51799
15107 * tree-vect-patterns.c (vect_recog_over_widening_pattern): Check
15108 that the last operation is a type demotion.
15109
15110 2012-01-12 Uros Bizjak <ubizjak@gmail.com>
15111
15112 * config/i386/i386.md (*zero_extendsidi2_rex64): Correct movl template.
15113 (x86_shift<mode>_adj_1): Remove operand constraint from operand 3.
15114
15115 2012-01-11 Jakub Jelinek <jakub@redhat.com>
15116
15117 PR bootstrap/51796
15118 * combine.c (distribute_notes): If i3 is a noreturn call,
15119 allow old_size to be equal to args_size and make sure the
15120 noreturn call gets REG_ARGS_SIZE note.
15121 * expr.c (fixup_args_size_notes): Put REG_ARGS_SIZE notes
15122 on noreturn calls even when the delta is 0.
15123
15124 2012-01-11 Nathan Sidwell <nathan@acm.org>
15125
15126 * gcov.c (STRING_SIZE): Remove.
15127 (generate_results): Erase annotations for source files with no
15128 coverage information.
15129 (read_line): New.
15130 (output_lines): Use it.
15131
15132 2012-01-11 Eric Botcazou <ebotcazou@adacore.com>
15133
15134 * gimple.h (gimplify_body): Remove first argument.
15135 * gimplify.c (copy_if_shared): Add DATA argument. Do not create the
15136 pointer set here, instead just pass DATA to walk_tree.
15137 (unshare_body): Remove BODY_P argument and adjust. Create the pointer
15138 set here and invoke copy_if_shared on the size trees of DECL_RESULT.
15139 (unvisit_body): Likewise, but with unmark_visited.
15140 (gimplify_body): Remove BODY_P argument and adjust.
15141 (gimplify_function_tree): Adjust call to gimplify_body.
15142 * omp-low.c (finalize_task_copyfn): Likewise.
15143
15144 2012-01-11 Eric Botcazou <ebotcazou@adacore.com>
15145
15146 * tree.h (build_function_decl_skip_args): Add boolean parameter.
15147 (build_function_type_skip_args): Delete.
15148 * tree.c (build_function_type_skip_args): Make static and add
15149 SKIP_RETURN parameter. Fix thinko in the handling of variants.
15150 (build_function_decl_skip_args): Add SKIP_RETURN parameter and
15151 pass it to build_function_type_skip_args.
15152 * cgraph.h (cgraph_function_versioning): Add boolean parameter.
15153 (tree_function_versioning): Likewise.
15154 * cgraph.c (cgraph_create_virtual_clone): Adjust call to
15155 build_function_decl_skip_args.
15156 * cgraphunit.c (cgraph_function_versioning): Add SKIP_RETURN parameter
15157 and pass it to build_function_decl_skip_args/tree_function_versioning.
15158 (cgraph_materialize_clone): Adjust call to tree_function_versioning.
15159 * ipa-inline-transform.c (save_inline_function_body): Likewise.
15160 * trans-mem.c (ipa_tm_create_version): Likewise.
15161 * tree-sra.c (modify_function): Ditto for cgraph_function_versioning.
15162 * tree-inline.c (declare_return_variable): Remove always-true test.
15163 (tree_function_versioning): Add SKIP_RETURN parameter. If the function
15164 returns non-void and SKIP_RETURN, create a void-typed RESULT_DECL.
15165 * ipa-split.c (split_function): Skip the return value for the split
15166 part if it doesn't return.
15167
15168 2012-01-11 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
15169
15170 PR tree-optimization/49642
15171 * ipa-split.c (forbidden_dominators): New variable.
15172 (check_forbidden_calls): New function.
15173 (dominated_by_forbidden): Likewise.
15174 (consider_split): Check for forbidden dominators.
15175 (execute_split_functions): Initialize and free forbidden
15176 dominators info; call check_forbidden_calls.
15177
15178 2012-01-11 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
15179
15180 * config/arm/arm.md (mov_notscc): Use MVN for false condition.
15181
15182 2012-01-11 Nick Clifton <nickc@redhat.com>
15183
15184 * config/rx/rx.md (return): Define pattern.
15185
15186 2012-01-11 Richard Guenther <rguenther@suse.de>
15187
15188 * doc/extend.texi (malloc attribute): Adjust according to
15189 implementation.
15190
15191 2012-01-10 Aldy Hernandez <aldyh@redhat.com>
15192 Patrick Marlier <patrick.marlier@gmail.com>
15193
15194 PR middle-end/51516
15195 * trans-mem.c (get_cg_data): Traverse aliases if requested.
15196 (ipa_tm_scan_calls_block): Update parameters to get_cg_data.
15197 (ipa_tm_note_irrevocable): Same.
15198 (ipa_tm_scan_irr_block): Same.
15199 (ipa_tm_decrement_clone_counts): Same.
15200 (ipa_tm_scan_irr_function): Same.
15201 (ipa_tm_create_version_alias): Same.
15202 (ipa_tm_create_version): Same.
15203 (ipa_tm_transform_calls_redirect): Same.
15204 (ipa_tm_transform_calls): Same.
15205 (ipa_tm_transform_transaction): Same.
15206 (ipa_tm_execute): Same.
15207
15208 2012-01-10 Richard Guenther <rguenther@suse.de>
15209
15210 PR middle-end/51806
15211 * opts.c (common_handle_option): Handle -Werror.
15212
15213 2012-01-10 Andreas Schwab <schwab@linux-m68k.org>
15214
15215 * config/m68k/sync.md ("atomic_compare_and_swap<mode>_1"): Fix
15216 operand number.
15217
15218 2012-01-10 Jason Merrill <jason@redhat.com>
15219
15220 * doc/invoke.texi (C++ Dialect Options): Update -fabi-version=6
15221 information.
15222
15223 2012-01-10 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
15224
15225 * configure.ac (gcc_cv_as_ix86_tlsgdplt): Check if linker
15226 supports R_386_TLS_GD_PLT reloc.
15227 (gcc_cv_as_ix86_tlsldmplt): Check if linker
15228 supports R_386_TLS_LDM_PLT reloc.
15229 * configure: Regenerate.
15230 * config.in: Regenerate.
15231
15232 2012-01-10 Georg-Johann Lay <avr@gjlay.de>
15233
15234 PR target/49868
15235 Extend __pgmx semantics to linearize memory.
15236 * config/avr/avr.md (mov<mode>): Use avr_xload_libgcc_p to
15237 determine if code comes inline or from libgcc.
15238 (MOVMEM_r_d:HI): Add "w" to constraint for better preference.
15239 (movmem_qi, movmem_qi): Set constraint #2 to "n".
15240 (movmem_qi_elpm, movmem_hi_elpm): Remove insns.
15241 (movmemx_qi, movmemx_hi): New insns.
15242 (xload_<mode>_libgcc): Rewrite to new insn condition.
15243 (xload_<mode>): Remove insns.
15244 * config/avr/avr.c (avr_out_xload): Rewrite: Only need to handle
15245 cases that don't satisfy avr_xload_libgcc_p().
15246 (avr_addr_space_convert): Allow converting in any direction.
15247 (avr_addr_space_subset_p): Return always true.
15248 (avr_xload_libgcc_p): Rewrite to fit new __pgmx semantics.
15249 (avr_emit_movmemhi): Ditto.
15250 (avr_out_lpm): No need to handle ADDR_SPACE_PGMX any more.
15251 (avr_out_movmem): Ditto.
15252 (AVR_SYMBOL_FLAG_PROGMEM): New macro.
15253 (AVR_SYMBOL_SET_ADDR_SPACE): New macro.
15254 (AVR_SYMBOL_GET_ADDR_SPACE): New macro.
15255 (avr_encode_section_info): Encode 'progmem' in symbol flags.
15256 (output_reload_in_const): Don't zero-extend any 24-bit symbols.
15257
15258 2012-01-10 Richard Guenther <rguenther@suse.de>
15259
15260 PR tree-optimization/50913
15261 * graphite-scop-detection.c (stmt_has_simple_data_refs_p):
15262 Require data-refs to be representable by Graphite with respect
15263 to any loop nest.
15264
15265 2012-01-10 Uros Bizjak <ubizjak@gmail.com>
15266
15267 * config/i386/constraints.md ("L"): Return true for 0xffffffff.
15268 * config/i386/i386.c (*anddi_1): Emit AND with 0xffffffff as MOV.
15269
15270 2012-01-10 Tom de Vries <tom@codesourcery.com>
15271
15272 PR rtl-optimization/51271
15273 * dwarf2cfi.c (scan_trace): Save and restore cur_row->reg_save when
15274 handling annulled branch.
15275
15276 2012-01-10 Richard Henderson <rth@redhat.com>
15277
15278 * config/arm/arm.c (arm_vectorize_vec_perm_const_ok,
15279 TARGET_VECTORIZE_VEC_PERM_CONST_OK, neon_split_vcombine, MAX_VECT_LEN,
15280 struct expand_vec_perm_d, arm_expand_vec_perm_1, arm_expand_vec_perm,
15281 arm_evpc_neon_vuzp, arm_evpc_neon_vzip, arm_evpc_neon_vrev,
15282 arm_evpc_neon_vtrn, arm_evpc_neon_vtbl, arm_expand_vec_perm_const_1,
15283 arm_expand_vec_perm_const): New.
15284 * config/arm/arm-protos.h: Update.
15285 * config/arm/neon.md (UNSPEC_VCONCAT): New.
15286 (*neon_vswp<VDQX>): New.
15287 (neon_vcombine<VDX>): Use neon_split_vcombine.
15288 (neon_vtbl1v16qi, neon_vtbl2v16qi, neon_vcombinev16qi): New.
15289 * config/arm/vec-common.md (vec_perm_const<VALL>): New.
15290 (vec_perm<VE>): New.
15291
15292 2012-01-10 Richard Henderson <rth@redhat.com>
15293
15294 * config/arm/arm.c (arm_gen_compare_reg): Add scratch argument;
15295 use it if reload_completed.
15296 (arm_legitimize_sync_memory, arm_emit, arm_insn_count, arm_count,
15297 arm_output_asm_insn, arm_process_output_memory_barrier,
15298 arm_output_memory_barrier, arm_ldrex_suffix, arm_output_ldrex,
15299 arm_output_strex, arm_output_it, arm_output_op2, arm_output_op3,
15300 arm_output_sync_loop, arm_get_sync_operand, FETCH_SYNC_OPERAND,
15301 arm_process_output_sync_insn, arm_output_sync_insn,
15302 arm_sync_loop_insns, arm_call_generator, arm_expand_sync): Remove.
15303 (arm_pre_atomic_barrier, arm_post_atomic_barrier): New.
15304 (arm_emit_load_exclusive, arm_emit_store_exclusive): New.
15305 (emit_unlikely_jump): New.
15306 (arm_expand_compare_and_swap, arm_split_compare_and_swap): New.
15307 (arm_split_atomic_op): New.
15308 * config/arm/arm-protos.h: Update.
15309 * config/arm/arm.h (enum arm_sync_generator_tag): Remove.
15310 (struct arm_sync_generator): Remove.
15311 * config/arm/arm.md (VUNSPEC_SYNC_COMPARE_AND_SWAP, VUNSPEC_SYNC_LOCK,
15312 VUNSPEC_SYNC_OP, VUNSPEC_SYNC_NEW_OP, VUNSPEC_SYNC_OLD_OP): Remove.
15313 (VUNSPEC_ATOMIC_CAS, VUNSPEC_ATOMIC_XCHG, VUNSPEC_ATOMIC_OP): New.
15314 (VUNSPEC_LL, VUNSPEC_SC): New.
15315 (sync_result, sync_memory, sync_required_value, sync_new_value,
15316 sync_t1, sync_t2, sync_release_barrier, sync_op): Remove.
15317 (attr length): Don't use arm_sync_loop_insns.
15318 (cbranch_cc, cstore_cc): Update call to arm_gen_compare_reg.
15319 (movsfcc, movdfcc): Likewise.
15320 * config/arm/constraints.md (Ua): New.
15321 * config/arm/prediates.md (mem_noofs_operand): New.
15322 (sync_compare_and_swap<QHSD>, sync_lock_test_and_set<QHSD>): Remove.
15323 (sync_clobber, sync_t2_reqd): Remove.
15324 (sync_<syncop><QHSD>, sync_nand<QHSD>): Remove.
15325 (sync_new_<syncop><QHSD>, sync_new_nand<QHSD>): Remove.
15326 (sync_old_<syncop><QHSD>, sync_old_nand<QHSD>): Remove.
15327 (arm_sync_compare_and_swap<SIDI>): Remove.
15328 (arm_sync_compare_and_swap<NARROW>): Remove.
15329 (arm_sync_lock_test_and_set<SIDI>): Remove.
15330 (arm_sync_lock_test_and_set<NARROW>): Remove.
15331 (arm_sync_new_<syncop><SIDI>): Remove.
15332 (arm_sync_new_<syncop><NARROW>): Remove.
15333 (arm_sync_new_nand<SIDI>): Remove.
15334 (arm_sync_new_nand<NARROW>): Remove.
15335 (arm_sync_old_<syncop><SIDI>): Remove.
15336 (arm_sync_old_<syncop><NARROW>): Remove.
15337 (arm_sync_old_nand<SIDI>): Remove.
15338 (arm_sync_old_nand<NARROW>): Remove.
15339 (*memory_barrier): Merge arm_output_memory_barrier.
15340 (atomic_compare_and_swap<QHSD>): New.
15341 (atomic_compare_and_swap<NARROW>_1): New.
15342 (atomic_compare_and_swap<SIDI>_1): New.
15343 (atomic_exchange<QHSD>): New.
15344 (cas_cmp_operand, cas_cmp_str): New.
15345 (atomic_op_operand, atomic_op_str): New.
15346 (atomic_<syncop><QHSD>, atomic_nand<QHSD>): New.
15347 (atomic_fetch_<syncop><QHSD>, atomic_fetch_nand<QHSD>): New.
15348 (atomic_<syncop>_fetch<QHSD>, atomic_nand_fetch<QHSD>): New.
15349 (arm_load_exclusive<NARROW>): New.
15350 (arm_load_exclusivesi, arm_load_exclusivedi): New.
15351 (arm_store_exclusive<QHSD>): New.
15352
15353 2012-01-09 Michael Meissner <meissner@linux.vnet.ibm.com>
15354
15355 * config/rs6000/rs6000.c (rs6000_init_hard_regno_mode_ok): Add DF
15356 reload patterns if -mvsx-scalar-memory.
15357
15358 * config/rs6000/vsx.md (vsx_xscvspdp): Allow xscvspdp to be
15359 generated, even -mno-vsx-scalar-double was used.
15360 (vsx_xscvdpsp_scalar): Likewise.
15361 (vsx_xscvspdp_scalar2): Likewise.
15362
15363 2012-01-09 Tom de Vries <tom@codesourcery.com>
15364 Andrew Pinski <apinski@cavium.com>
15365
15366 PR debug/51471
15367 * reorg.c (fill_slots_from_thread): Don't speculate
15368 frame-related insns.
15369
15370 2012-01-09 Richard Sandiford <rdsandiford@googlemail.com>
15371
15372 * sched-int.h (bb_note): Move to...
15373 * basic-block.h: ...here.
15374 * haifa-sched.c (bb_note): Move to...
15375 * cfgrtl.c: ...here.
15376 * function.c (next_block_for_reg): New function.
15377 (move_insn_for_shrink_wrap): Likewise.
15378 (prepare_shrink_wrap): Rewrite to use the above.
15379
15380 2012-01-09 Aldy Hernandez <aldyh@redhat.com>
15381
15382 * gimple.c (is_gimple_non_addressable): Remove.
15383 * gimple.h: Remove is_gimple_non_addressable.
15384 * gimplify.c (gimplify_modify_expr_rhs): Use is_gimple_reg instead of
15385 is_gimple_non_addressable.
15386 * trans-mem.c (expand_assign_tm): Same.
15387
15388 2012-01-09 Richard Guenther <rguenther@suse.de>
15389
15390 PR tree-optimization/51775
15391 * tree-ssa-sccvn.c (visit_use): Value-number throwing stmts.
15392 * tree-ssa-pre.c (eliminate): Properly fixup EH info.
15393
15394 2012-01-09 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
15395
15396 * config/arm/arm-cores.def (cortex-a15): Use cortex_a15_tune for
15397 tuning parameters.
15398 * config/arm/arm.c (arm_cortex_a15_tune): New static variable.
15399
15400 2012-01-09 Richard Guenther <rguenther@suse.de>
15401
15402 * tree-streamer-out.c (write_ts_optimization): Fix spelling.
15403
15404 2012-01-08 Jan Hubicka <jh@suse.cz>
15405
15406 PR tree-optimize/51680
15407 * ipa-inline-analyss.c (evaluate_properties_for_edge): Fix condition
15408 on when known_vals needs to be computed; cleanup.
15409
15410 2012-01-08 Jan Hubicka <jh@suse.cz>
15411
15412 PR tree-optimize/51694
15413 * ipa-cp.c (ipa_get_indirect_edge_target): Add bounds checks.
15414
15415 2012-01-08 Jonathan Wakely <jwakely.gcc@gmail.com>
15416
15417 * doc/cpp.texi (Predefined Macros): __STRICT_ANSI__ is defined
15418 for -std=c++98 and -std=c++11 too.
15419
15420 2012-01-08 Chung-Lin Tang <cltang@codesourcery.com>
15421
15422 * cfgloop.c (cancel_loop): Add free() of bbs array.
15423
15424 2012-01-07 Jan Hubicka <jh@suse.cz>
15425
15426 PR tree-optimization/51600
15427 * ipa-inline-analysis.c (estimate_edge_devirt_benefit): Disable code
15428 that benefits small functions.
15429
15430 2012-01-07 Jan Hubicka <jh@suse.cz>
15431
15432 * ipa-inline.c (want_inline_small_function_p): Fix formating.
15433
15434 2012-01-07 Jan Hubicka <jh@suse.cz>
15435
15436 PR tree-optimization/51680
15437 * ipa-inline.c (want_inline_small_function_p): Be more lax on functions
15438 whose inlining reduce unit size.
15439
15440 2012-01-07 Alexandre Oliva <aoliva@redhat.com>
15441
15442 PR bootstrap/51725
15443 * cselib.c (new_elt_loc_list): Promote addr_list to canonical node.
15444 Add canonical node to containing_mem chain after the non-canonical
15445 one, even if there weren't any locs to propagate.
15446 (remove_useless_values): Keep only canonical values.
15447 (add_mem_for_addr, cselib_lookup_mem): Canonicalize addr.
15448 (cselib_invalidate_mem): Likewise. Ensure v is canonical, and
15449 canonicalize mem_chain elements that are not discarded.
15450
15451 2012-01-06 Jakub Jelinek <jakub@redhat.com>
15452
15453 PR target/47333
15454 * cgraphunit.c (cgraph_optimize): Call output_weakrefs
15455 before emitting functions.
15456
15457 PR gcov-profile/50127
15458 * bb-reorder.c (partition_hot_cold_basic_blocks): Call
15459 clear_aux_for_blocks.
15460
15461 2012-01-06 Alexandre Oliva <aoliva@redhat.com>
15462
15463 PR debug/51746
15464 * cselib.c (cselib_hash_rtx): Hash incoming VALUEs too.
15465
15466 2012-01-06 Arnaud Charlet <charlet@adacore.com>
15467
15468 * c-decl.c (ext_block): Moved up.
15469 (collect_all_refs, for_each_global_decl): Take ext_block into account.
15470
15471 2012-01-06 Han Shen <shenhan@google.com>
15472
15473 Translate built-in include paths for sysroot.
15474 * Makefile.in (gcc_gxx_include_dir_add_sysroot): New.
15475 (PREPROCESSOR_DEFINES): Define GPLUSPLUS_INCLUDE_DIR_ADD_SYSROOT.
15476
15477 * cppdefault.c (cpp_include_defaults): Replace hard coded "0" with
15478 GPLUSPLUS_INCLUDE_DIR_ADD_SYSROOT for "add_sysroot" field.
15479
15480 * configure.ac (AC_SUBST): Add gcc_gxx_include_dir_add_sysroot to
15481 control whether sysroot should be prepended to gxx include dir.
15482
15483 * configure: Regenerate.
15484
15485 2012-01-06 Torvald Riegel <triegel@redhat.com>
15486
15487 PR rtl-optimization/51771
15488 * builtin-attrs.def (ATTR_RETURNS_TWICE, ATTR_TM_NOTHROW_RT_LIST): New.
15489 * gtm-builtins.def (BUILT_IN_TM_START): Add returns-twice attrib.
15490
15491 2012-01-05 Eric Botcazou <ebotcazou@adacore.com>
15492
15493 PR tree-optimization/51315
15494 * tree-sra.c (tree_non_aligned_mem_for_access_p): New predicate.
15495 (build_accesses_from_assign): Use it instead of tree_non_aligned_mem_p.
15496
15497 2012-01-05 Uros Bizjak <ubizjak@gmail.com>
15498
15499 PR target/51681
15500 * config/ia64/ia64.c (expand_vec_perm_shrp): Use correct operands
15501 for shrp pattern. Correctly handle and fixup shift variable.
15502 Return false when shift > nelt for BYTES_BIG_ENDIAN target.
15503
15504 2012-01-05 Jakub Jelinek <jakub@redhat.com>
15505
15506 PR debug/51762
15507 * calls.c (emit_call_1): For noreturn calls force a REG_ARGS_SIZE
15508 note when !ACCUMULATE_OUTGOING_ARGS.
15509
15510 2012-01-05 Eric Botcazou <ebotcazou@adacore.com>
15511
15512 * tree-vrp.c (extract_range_from_binary_expr_1): Remove duplicated
15513 condition.
15514 (extract_range_from_unary_expr_1): Avoid useless computations.
15515
15516 2012-01-05 Jakub Jelinek <jakub@redhat.com>
15517
15518 PR rtl-optimization/51767
15519 * cfgrtl.c (force_nonfallthru_and_redirect): Force addition
15520 of jump_block and add an extra edge for degenerated asm gotos.
15521
15522 PR middle-end/51768
15523 * stmt.c (check_unique_operand_names): Don't ICE during error
15524 reporting if i is from labels chain.
15525
15526 PR middle-end/44777
15527 * profile.c (branch_prob): Split bbs that have exit edge
15528 and need a fake entry edge too.
15529
15530 2012-01-05 Jan Hubicka <jh@suse.cz>
15531
15532 PR middle-end/49710
15533 * cfgloopmanip.c (remove_path): Walk loop hiearchy upwards when
15534 unlooping loops.
15535
15536 2012-01-05 Richard Guenther <rguenther@suse.de>
15537
15538 PR lto/50490
15539 * tree-streamer-out.c (write_ts_optimization): New function.
15540 (streamer_write_tree_body): Call it.
15541 * tree-streamer-in.c (lto_input_ts_optimization): New function.
15542 (streamer_read_tree_body): Call it.
15543 * lto-streamer-out.c (lto_is_streamable): Handle OPTIMIZATION_NODE.
15544
15545 2012-01-05 Jakub Jelinek <jakub@redhat.com>
15546
15547 PR middle-end/51761
15548 * gimple.h (struct gimplify_ctx): Add in_cleanup_point_expr field.
15549 * gimplify.c (gimplify_cleanup_point_expr): Save and set
15550 in_cleanup_point_expr before gimplify_stmt call and restore it
15551 afterwards.
15552 (gimplify_target_expr): Don't add {CLOBBER} cleanup if
15553 in_cleanup_point_expr is false.
15554
15555 2012-01-05 Richard Guenther <rguenther@suse.de>
15556
15557 PR middle-end/51764
15558 * common.opt (Wmudflap, fmudflap, fmudflapth, fmudflapir): Move
15559 to c.opt.
15560 * toplev.c (process_options): Reject combining mudflap and LTO.
15561 * tree-nomudflap.c (nogo): Use sorry instead of internal_error.
15562
15563 2012-01-05 Richard Guenther <rguenther@suse.de>
15564
15565 PR tree-optimization/51760
15566 * tree-ssa-ccp.c (likely_value): Drop UNDEFINED to CONSTANT,
15567 not VARYING.
15568 (bit_value_unop): Handle UNDEFINED operands.
15569 (bit_value_binop): Likewise.
15570
15571 2012-01-05 Georg-Johann Lay <avr@gjlay.de>
15572
15573 * config/avr/avr.c (avr_replace_prefix): Remove.
15574 (avr_asm_named_section): Use ACONCAT instead of avr_replace_prefix.
15575 (avr_asm_function_rodata_section): Ditto.
15576 (avr_asm_select_section): Ditto.
15577
15578 2012-01-05 Marcus Shawcroft <marcus.shawcroft@arm.com>
15579
15580 * reload.c (find_reloads): Adjust LABEL_NUSES on REG_LABEL_OPERAND
15581 insertion.
15582
15583 2012-01-05 Jakub Jelinek <jakub@redhat.com>
15584
15585 PR bootstrap/51648
15586 * tree-cfg.c (need_fake_edge_p): Return true also for noreturn
15587 calls that have any non-fake successor edges.
15588
15589 PR debug/51746
15590 * var-tracking.c (add_stores): For COND_EXEC allow oval to be NULL.
15591
15592 2012-01-04 Eric Botcazou <ebotcazou@adacore.com>
15593
15594 PR tree-optimization/51624
15595 * tree-sra.c (build_ref_for_model): When replicating a chain of
15596 COMPONENT_REFs, stop as soon as the offset would become negative.
15597
15598 2012-01-04 Jakub Jelinek <jakub@redhat.com>
15599
15600 PR debug/51695
15601 * dwarf2out.c (output_loc_list): For now drop >= 64KB expressions
15602 in .debug_loc on the floor.
15603
15604 2012-01-04 Andrew Pinski <apinski@cavium.com>
15605
15606 * doc/invoke.texi (-march=@var{arch}): Add octeon+ and octeon2.
15607
15608 2012-01-04 Andrew Pinski <apinski@cavium.com>
15609 Adam Nemet <anemet@caviumnetworks.com>
15610
15611 * config/mips/mips.md (size): Add SI and DI.
15612 (SIZE): New mode attribute.
15613 (U): New code attribute.
15614 * config/mips/mips-dsp.md (mips_lbux): Use gen_mips_lbux_extsi.
15615 (mips_lbux_<mode>): Delete.
15616 (mips_l<SHORT:size><u>x_ext<GPR:mode>_<P:mode>): New pattern.
15617 (mips_lhx): Use gen_mips_lhx_extsi.
15618 (mips_lhx_<mode>): Delete.
15619 (mips_lwx): Delete.
15620 (mips_l<size>x): New expand.
15621 (mips_lwx_<mode>): Delete.
15622 (mips_l<GPR:size>x_<P:mode>): New pattern.
15623 (*mips_lw<u>x_<P:mode>_ext): Likewise.
15624 * config/mips/mips-ftypes.def: Add DI f(POINTER, SI) function type.
15625 * config/mips/mips.c (mips_lx_address_p): New function.
15626 (mips_rtx_costs <case MEM>): Call mips_lx_address_p.
15627 (dsp64): New availability predicate.
15628 (mips_builtins): Add an entry for __builtin_mips_ldx.
15629 * config/mips/mips.h (ISA_HAS_LBX): New define.
15630 (ISA_HAS_LBUX): Likewise.
15631 (ISA_HAS_LHX): Likewise.
15632 (ISA_HAS_LHUX): Likewise.
15633 (ISA_HAS_LWX): Likewise.
15634 (ISA_HAS_LWUX): Likewise.
15635 (ISA_HAS_LDX): Likewise.
15636 * doc/extend.texi (__builtin_mips_ldx): Document.
15637
15638 2012-01-04 Tristan Gingold <gingold@adacore.com>
15639
15640 * config/vms/xm-vms.h (HOST_LONG_FORMAT, HOST_PTR_PRINTF): Define
15641 when long pointers are used.
15642 * config.build (*-*-*vms*): Handle all OpenVMS targets.
15643 (alpha64-dec-*vms*, alpha*-dec-*vms*)
15644 (ia64-hp-*vms*): Remove.
15645 * config/vms/xm-vms64.h: Delete.
15646
15647 2012-01-04 Aldy Hernandez <aldyh@redhat.com>
15648
15649 PR middle-end/51472
15650 * trans-mem.c (expand_assign_tm): Handle TM_MEMMOVE loads correctly.
15651
15652 2012-01-04 Aldy Hernandez <aldyh@redhat.com>
15653
15654 * opts.c (finish_options): Remove duplicate sorry.
15655
15656 2012-01-04 Aldy Hernandez <aldyh@redhat.com>
15657
15658 PR middle-end/51696
15659 * trans-mem.c (diagnose_tm_1): Display indirect calls with no name
15660 correctly.
15661
15662 2012-01-04 Richard Guenther <rguenther@suse.de>
15663
15664 PR middle-end/51750
15665 * tree.c (size_low_cst): New function.
15666 * tree.h (size_low_cst): Declare.
15667 * fold-const.c (fold_comparison): Use it to extract the low
15668 part of the POINTER_PLUS_EXPR offset.
15669
15670 2012-01-04 Georg-Johann Lay <avr@gjlay.de>
15671
15672 Fix clearing ZERO_REG
15673 * config/avr/avr.md (cc): Add alternative "ldi".
15674 (movqi_insn): Use it in cc attribute.
15675 * config/avr/avr.c (notice_update_cc): Handle CC_LDI.
15676 (output_reload_in_const): Use CLR to move 0 to ZERO_REG.
15677 (output_reload_insisf): Use ZERO_REG to pre-clear register.
15678
15679 2012-01-04 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
15680
15681 * configure: Regenerate.
15682
15683 2012-01-04 Richard Guenther <rguenther@suse.de>
15684
15685 PR tree-optimization/49651
15686 * tree-ssa-structalias.c (type_can_have_subvars): New function.
15687 (var_can_have_subvars): Use it.
15688 (get_constraint_for_1): Only consider subfields if there can be any.
15689
15690 2012-01-03 Jakub Jelinek <jakub@redhat.com>
15691
15692 PR bootstrap/51725
15693 * cselib.c (new_elt_loc_list): When moving locs from one cselib_val
15694 to its new canonical_cselib_val and the cselib_val was in
15695 first_containing_mem chain, but the canonical_cselib_val was not,
15696 add the latter into the chain.
15697 (cselib_invalidate_mem): Compare canonical_cselib_val of
15698 addr_list chain elt with v.
15699
15700 PR pch/51722
15701 * dwarf2out.c (dwarf2out_start_source_file, dwarf2out_define,
15702 dwarf2out_undef): Allocate e.info using ggc_strdup instead
15703 of xstrdup.
15704 (output_macinfo_op): Don't ggc_strdup fd->filename.
15705 (optimize_macinfo_range): Allocate grp_name using XALLOCAVEC,
15706 then ggc_strdup it. Don't free inc->info or cur->info.
15707 (output_macinfo): Don't free ref->info or file->info.
15708
15709 2012-01-03 Ira Rosen <irar@il.ibm.com>
15710
15711 PR tree-optimization/51269
15712 * tree-vect-loop-manip.c (set_prologue_iterations): Make
15713 first_niters a pointer.
15714 (slpeel_tree_peel_loop_to_edge): Likewise.
15715 (vect_do_peeling_for_loop_bound): Update call to
15716 slpeel_tree_peel_loop_to_edge.
15717 (vect_gen_niters_for_prolog_loop): Don't compute wide_prolog_niters
15718 here. Remove it from the parameters list.
15719 (vect_do_peeling_for_alignment): Update calls and compute
15720 wide_prolog_niters.
15721
15722 2012-01-03 Richard Guenther <rguenther@suse.de>
15723
15724 PR tree-optimization/51070
15725 * tree-loop-distribution.c (stmt_has_scalar_dependences_outside_loop):
15726 Properly handle calls.
15727
15728 2012-01-03 Richard Guenther <rguenther@suse.de>
15729
15730 PR tree-optimization/51692
15731 * tree-ssa-dce.c (eliminate_unnecessary_stmts): Do not remove
15732 the LHS of allocation stmts.
15733
15734 2012-01-03 Olivier Hainque <hainque@adacore.com>
15735
15736 * system.h: Prior to #define, #undef fopen and freopen unconditionally.
15737
15738 2012-01-03 Olivier Hainque <hainque@adacore.com>
15739
15740 * collect2.c (main): In AIX specific computations for vector
15741 insertions, use CONST_CAST2 to cast from char ** to const char **.
15742
15743 2012-01-03 Richard Guenther <rguenther@suse.de>
15744
15745 PR debug/51650
15746 * dwarf2out.c (dwarf2out_finish): Always create a DIE for
15747 the context of a limbo DIE when it does not already exist.
15748
15749 2012-01-03 Jakub Jelinek <jakub@redhat.com>
15750
15751 PR tree-optimization/51719
15752 * value-prof.c (gimple_ic): When indirect call isn't noreturn,
15753 but direct call is, clear direct call's lhs and don't add fallthrough
15754 edge from dcall_bb to join_bb and PHIs.
15755
15756 2012-01-03 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
15757
15758 * config/s390/s390.md ("*cmp<mode>_ccs"): Fix comment mentioning
15759 the instructions emitted by the pattern.
15760 ("*TDC_insn_<mode>"): Add comment.
15761
15762 2012-01-03 Richard Guenther <rguenther@suse.de>
15763
15764 PR middle-end/51730
15765 * fold-const.c (fold_comparison): Properly canonicalize
15766 tree offset and HOST_WIDE_INT bit position.
15767
15768 2012-01-02 Uros Bizjak <ubizjak@gmail.com>
15769
15770 * config/ia64/ia64.c (expand_vec_perm_broadcast): Use correct
15771 operands for extzv pattern.
15772
15773 2012-01-02 Jakub Jelinek <jakub@redhat.com>
15774
15775 PR bootstrap/51725
15776 * cselib.c (add_mem_for_addr): Call canonical_cselib_val
15777 on mem_elt first.
15778
15779 2012-01-02 Sandra Loosemore <sandra@codesourcery.com>
15780
15781 * doc/invoke.texi (-flto and related options): Copy-edit.
15782
15783 2012-01-02 Richard Sandiford <rdsandiford@googlemail.com>
15784
15785 * config/mips/mips.md (loadgp_newabi_<mode>): Add missing earlyclobber.
15786
15787 2012-01-02 Jakub Jelinek <jakub@redhat.com>
15788
15789 * config/i386/sse.md (*avx2_gatherdi<mode>_3, *avx2_gatherdi<mode>_4):
15790 New patterns.
15791
15792 2012-01-02 Richard Sandiford <rdsandiford@googlemail.com>
15793
15794 * expr.h (move_by_pieces_ninsns): Declare.
15795 * expr.c (move_by_pieces_ninsns): Make external.
15796 * config/mips/mips-protos.h (mips_move_by_pieces_p): Declare.
15797 (mips_store_by_pieces_p): Likewise.
15798 * config/mips/mips.h (MOVE_BY_PIECES_P): Call mips_move_by_pieces_p.
15799 (STORE_BY_PIECES_P): Likewise mips_store_by_pieces_p.
15800 * config/mips/mips.c (mips_move_by_pieces_p): New function.
15801 (mips_store_by_pieces_p): Likewise.
15802
15803 2012-01-02 Jakub Jelinek <jakub@redhat.com>
15804
15805 * passes.c (register_one_dump_file): Free full_name.
15806
15807 * reload1.c (reload): Don't allocate reg_max_ref_width here.
15808 (calculate_elim_costs_all_insns): Free offsets_at and
15809 offsets_known_at at the end and clear the pointers.
15810
15811 2012-01-02 Georg-Johann Lay <avr@gjlay.de>
15812
15813 * config/avr/avr.opt (-mbranch-cost): Fix double definition of
15814 this option introduced in r180739.
15815
15816 2012-01-02 Georg-Johann Lay <avr@gjlay.de>
15817
15818 PR target/51345
15819 * config.gcc (tm_file target=avr]): Add avr/avr-multilib.h
15820 (tmake_file target=avr): Add avr/t-multilib.
15821
15822 * config/avr/avr-c.c (avr_cpu_cpp_builtins): Use AVR_HAVE_8BIT_SP
15823 to built-in define __AVR_HAVE_8BIT_SP__, __AVR_HAVE_16BIT_SP__.
15824 * config/avr/genmultilib.awk: New file.
15825 * config/avr/t-multilib: New auto-generated file.
15826 * config/avr/multilib.h: New auto-generated file.
15827 * config/avr/t-avr (AVR_MCUS): New variable.
15828 (genopt.sh): Use it.
15829 (s-mlib): Depend on t-multilib.
15830 (t-multilib, multilib.h): New dependencies.
15831 (s-avr-mlib): New rule to build t-multilib, multilib.h from AVR_MCUS.
15832 (MULTILIB_OPTIONS): Remove.
15833 (MULTILIB_MATCHES): Remove.
15834 (MULTILIB_DIRNAMES): Remove.
15835 (MULTILIB_EXCEPTIONS): Remove:
15836 * config/avr/genopt.sh: Don't use hard coded file name;
15837 pass AVR_MCUS from t-avr instead.
15838
15839 2012-01-02 Georg-Johann Lay <avr@gjlay.de>
15840
15841 * config/avr/avr.c (avr_out_ashrpsi3): Fix "case 31" to "case 23".
15842
15843 2012-01-02 Georg-Johann Lay <avr@gjlay.de>
15844
15845 Implement light-weight DImode support.
15846 * config/avr/avr-dimode.md: New file.
15847 * config/avr/avr.md: Include it.
15848 (adjust_len): Add plus64, compare64.
15849 (HIDI): Remove code iterator.
15850 (code_stdname): New code attribute.
15851 (rotx, rotsmode): Remove DI.
15852 (rotl<mode>3, *rotw<mode>, *rotb<mode>): Use HISI instead of HIDI
15853 as code iterator.
15854 * config/avr/avr-protos.h (avr_have_dimode): New.
15855 (avr_out_plus64, avr_out_compare64): New.
15856 * config/avr/avr.c (avr_out_compare): Handle DImode.
15857 (avr_have_dimode): New variable definition and initialization.
15858 (avr_out_compare64, avr_out_plus64): New functions.
15859 (avr_out_plus_1): Use simplify_unary_operation to negate xval.
15860 (adjust_insn_length): Handle ADJUST_LEN_COMPARE64, ADJUST_LEN_PLUS64.
15861 (avr_compare_pattern): Skip DImode comparisons.
15862
15863 2012-01-02 Revital Eres <revital.eres@linaro.org>
15864
15865 * ddg.c (def_has_ccmode_p): New function.
15866 (add_cross_iteration_register_deps,
15867 create_ddg_dep_from_intra_loop_link): Call it.
15868
15869 2012-01-02 Richard Guenther <rguenther@suse.de>
15870
15871 PR other/51679
15872 * invoke.texi (fassociative-math): Remove spurious paranthesis.
15873
15874 2012-01-01 Jakub Jelinek <jakub@redhat.com>
15875
15876 * gcc.c (process_command): Update copyright notice dates.
15877 * gcov.c (print_version): Likewise.
15878 * gcov-dump.c (print_version): Likewise.
15879 * mips-tfile.c (main): Likewise.
15880 * mips-tdump.c (main): Likewise.
15881
15882 2012-01-01 Ira Rosen <irar@il.ibm.com>
15883
15884 PR tree-optimization/51704
15885 * tree-vect-slp.c (vect_detect_hybrid_slp_stmts): Check that
15886 a use is inside the basic block or loop before accessing its vect info.
15887
15888 2012-01-01 Jan Hubicka <jhjh@suse.cz>
15889
15890 PR rtl-optimization/51069
15891 * cfgloopmanip.c (remove_path): Removing path making irreducible
15892 region unconditional makes BB part of the region.
15893
15894 2012-01-01 Jakub Jelinek <jakub@redhat.com>
15895
15896 PR tree-optimization/51683
15897 * tree-ssa-propagate.c (substitute_and_fold): Don't optimize away
15898 calls with side-effects.
15899 * tree-ssa-ccp.c (ccp_fold_stmt): Likewise.
15900 \f
15901 Copyright (C) 2012 Free Software Foundation, Inc.
15902
15903 Copying and distribution of this file, with or without modification,
15904 are permitted in any medium without royalty provided the copyright
15905 notice and this notice are preserved.