]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/ChangeLog
2012-08-14 Richard Guenther <rguenther@suse.de>
[thirdparty/gcc.git] / gcc / ChangeLog
1 2012-08-14 Richard Guenther <rguenther@suse.de>
2
3 * gimplify.c (create_tmp_from_val): Mark temporary with
4 DECL_GIMPLE_REG_P here ...
5 (internal_get_tmp_var): ... instead of here. If we go into
6 SSA create an SSA name instead of a VAR_DECL.
7 (gimplify_modify_expr): Do not create SSA names here, assert
8 we already got them.
9 (force_gimple_operand_1): Create an SSA name if we go into SSA.
10 * sese.c (rename_uses): Simplify.
11
12 2012-08-14 Richard Guenther <rguenther@suse.de>
13
14 * tree-into-ssa.c: Include diagnostic-core.h.
15 * Makefile.in (tree-into-ssa.o): Adjust.
16
17 2012-08-14 Richard Guenther <rguenther@suse.de>
18
19 * tree-into-ssa.c (update_ssa): Verify we do not rename
20 symbols that are already partly in SSA form.
21
22 2012-08-14 Jakub Jelinek <jakub@redhat.com>
23
24 PR middle-end/53411
25 PR rtl-optimization/53495
26 * ira.c (ira): Move delete_trivially_dead_insns call before
27 find_moveable_pseudos call.
28
29 2012-08-13 Steven Bosscher <steven@gcc.gnu.org>
30
31 * tree-ssa-pre.c (do_regular_insertion): Add FIXME markers at points
32 of potentially huge memset overhead.
33 (do_partial_partial_insertion): Likewise.
34 * cfgexpand.c (gimple_expand_cfg): Use XCNEWVEC instead of xcalloc.
35 * tree-vrp.c (find_assert_locations): Use XNEWVEC instead of XCNEWVEC
36 for arrays to be filled by pre_and_rev_post_order_compute. Allocate
37 the right number of slots, not that number plus NUM_FIXED_BLOCKS.
38 * tree-ssa-reassoc.c (init_reassoc): Likewise.
39 * cfganal.c (dfs_enumerate_from): Use XNEWVEC instead of XCNEWVEC for
40 array used as stack.
41 * tree-ssa-sccvn.c (init_scc_vn): Use XNEWVEC instead of XCNEWVEC for
42 arrays to be filled by pre_and_rev_post_order_compute.
43 * cfgloopmanip.c (find_path): Use XNEWVEC instead of XCNEWVEC for
44 array to be filled by dfs_enumerate_from.
45 (remove_path): Likewise.
46 (duplicate_loop_to_header_edge): Use XNEWVEC instead of XCNEWVEC for
47 array of loops that is filled on the next lines.
48 * cfgloop.c (get_loop_body): Use XNEWVEC instead of XCNEWVEC for
49 array of basic blocks to be returned.
50 (get_loop_body_in_dom_order): Likewise.
51 (get_loop_body_in_bfs_order): Likewise.
52 * tree-ssa-loop-manip.c (loop_renamer_obstack): New static obstack
53 for all bitmaps used for rewriting into loop-closed SSA form.
54 (add_exit_phis_var): Allocate the def bitmap on it. Clear the livein
55 bitmap at the end to release a lot of memory.
56 (add_exit_phis): Allocate the exits bitmap on the new obstack.
57 (get_loops_exits): Allocate the exits bitmap on the new obstack.
58 (find_uses_to_rename_use): Allocate a use_blocks bitmap if ver is
59 seen for the first time.
60 (find_uses_to_rename): Add "???" for why the whole function must
61 be re-scanned if changed_bbs is empty.
62 (rewrite_into_loop_closed_ssa): Allocate bitmaps on the new obstack.
63 Use XNEWVEC to allocate the use_blocks array. Initialize the new
64 obstack, and free it at the end. Remove loop over all SSA names.
65 (check_loop_closed_ssa_stmt): Look only at SSA_OP_USE operands.
66 * tree-cfg.c (move_sese_region_to_fn): Use XNEWVEC instead of
67 xcalloc to allocate edge_pred and edge_flag arrays.
68
69 2012-08-13 Uros Bizjak <ubizjak@gmail.com>
70
71 * config/i386/i386.h (FIXED_REGISTERS): Do not mark REX registers here.
72 (CALL_USED_REGISTERS): Use bitmaps to mark call-used registers
73 for different ABIs.
74 (enum reg_class): Move CLOBBERED_REGS just before GENERAL_REGS.
75 (REG_CLASS_NAMES): Update.
76 (REG_CLASS_CONTENTS): Update. Clear CLOBBERED_REGS members.
77 * config/i386/i386.c (ix86_conditional_register_usage): Disable
78 REX registers on 32bit targets. Handle bitmaps from
79 CALL_USED_REGISTERS initializer. Calculate CLOBBERED_REGS register
80 set from GENERAL_REGS also for 32bit targets. Do not change call
81 used register set for TARGET_64BIT_MS_ABI separately.
82
83 2012-08-13 Richard Guenther <rguenther@suse.de>
84
85 * basic-block.h (struct basic_block): Remove loop_depth
86 member, move flags and index members next to each other.
87 * cfgloop.h (bb_loop_depth): New inline function.
88 * cfghooks.c (split_block): Do not set loop_depth.
89 (duplicate_block): Likewise.
90 * cfgloop.c (flow_loop_nodes_find): Likewise.
91 (flow_loops_find): Likewise.
92 (add_bb_to_loop): Likewise.
93 (remove_bb_from_loops): Likewise.
94 * cfgrtl.c (force_nonfallthru_and_redirect): Likewise.
95 * gimple-streamer-in.c (input_bb): Do not stream loop_depth.
96 * gimple-streamer-out.c (output_bb): Likewise.
97 * bt-load.c: Include cfgloop.h.
98 (migrate_btr_defs): Use bb_loop_depth.
99 * cfg.c (dump_bb_info): Likewise.
100 * final.c (compute_alignments): Likewise.
101 * ira.c (update_equiv_regs): Likewise.
102 * tree-ssa-copy.c (init_copy_prop): Likewise.
103 * tree-ssa-dom.c (loop_depth_of_name): Likewise.
104 * tree-ssa-forwprop.c: Include cfgloop.h.
105 (forward_propagate_addr_expr): Use bb_loop_depth.
106 * tree-ssa-pre.c (insert_into_preds_of_block): Likewise.
107 * tree-ssa-sink.c (select_best_block): Likewise.
108 * ipa-inline-analysis.c: Include cfgloop.h.
109 (estimate_function_body_sizes): Use bb_loop_depth.
110 * Makefile.in (tree-ssa-forwprop.o): Depend on $(CFGLOOP_H).
111 (ipa-inline-analysis.o): Likewise.
112 (bt-load.o): Likewise.
113
114 2012-08-13 Ganesh Gopalasubramanian <Ganesh.Gopalasubramanian@amd.com>
115 Jakub Jelinek <jakub@redhat.com>
116
117 PR driver/54210
118 * config/i386/driver-i386.c (host_detect_local_cpu): Test bit_PRFCHW
119 bit of CPUID 0x80000001 %ecx instead of CPUID 7 %ecx.
120 * config/i386/cpuid.h (bits_PRFCHW): Move definition to CPUID
121 0x80000001 %ecx flags.
122
123 2012-08-13 Richard Guenther <rguenther@suse.de>
124
125 * tree-cfg.c (print_loop): Avoid ICEing for loops marked for
126 removal and loops with multiple latches.
127
128 2012-08-13 Jakub Jelinek <jakub@redhat.com>
129
130 PR c/53968
131 * tree.c (integer_pow2p): Avoid undefined signed overflows.
132 * simplify-rtx.c (neg_const_int): Likewise.
133 * expr.c (fixup_args_size_notes): Likewise.
134 * stor-layout.c (set_min_and_max_values_for_integral_type): Likewise.
135 * double-int.c (mul_double_wide_with_sign): Likewise.
136 (double_int_mask): Likewise.
137 * tree-ssa-loop-ivopts.c (get_address_cost): Likewise.
138
139 2012-08-13 Richard Guenther <rguenther@suse.de>
140
141 PR tree-optimization/54200
142 * tree-ssa-copyrename.c (rename_ssa_copies): Do not add
143 PHI results to another partition if not all PHI arguments
144 have the same partition.
145
146 2012-08-12 Jan Hubicka <jh@suse.cz>
147
148 * tree-pass.h (write_summary, write_optimization_summary): Remove
149 set and vset arguments.
150 * ipa-cp.c (ipcp_write_summary): Remove set and vset arugments.
151 (write_node_summary_p): Likewise; use the encoder.
152 (ipa_reference_write_optimization_summary): Likewise.
153 * lto-cgraph.c (output_cgraph_opt_summary): Use encoder.
154 (lto_symtab_encoder_new): Initialize in_partition field.
155 (lto_symtab_encoder_delete): Destroy in_partition field.
156 (LCC_NOT_FOUND): Move to lto-streamer.h
157 (lto_symtab_encoder_deref): Likewise.
158 (lto_symtab_encoder_in_partition_p,
159 lto_set_symtab_encoder_in_partition): New functions.
160 (referenced_from_other_partition_p): Rewrite to use encoder.
161 (reachable_from_other_partition_p): Likewise.
162 (referenced_from_this_partition_p): Likewise.
163 (reachable_from_this_partition_p): Likewise.
164 (lto_output_node): Likewise.
165 (lto_output_varpool_node): Likewise.
166 (output_refs): Likewise.
167 (compute_ltrans_boundary): Initialize in_partition fileds of
168 the encoder.
169 (output_symtab): Likewise.
170 (input_refs): Match the changes in output_refs.
171 (output_cgraph_opt_summary_p): Remove set argument.
172 (output_node_opt_summary): Replace set by encoder.
173 (output_cgraph_opt_summary): Remove set argument; use
174 the encoder.
175 * ipa-pure-const.c (pure_const_write_summary): Remove set and vset
176 arguments; use the encoder.
177 * lto-streamer-out.c (lto_output): Remove set and vset argument; use
178 the encoder.
179 (produce_symtab): Likewise.
180 * ipa-inline.h (inline_write_summary): Remove set and vset arguments.
181 * ipa-inline-analysis.c (inline_write_summary): Likewise.
182 * ipa-prop.c (ipa_prop_write_jump_functions): Remove set argument;
183 use encoder.
184 * ipa-prop.h (ipa_prop_write_jump_functions): Likewise.
185 * passes.c (ipa_write_summaries_2): Remove set and vset arguments.
186 (ipa_write_summaries_1): Update.
187 (ipa_write_optimization_summaries_1): Likewise.
188 (ipa_write_optimization_summaries): Likewise.
189 * lto-streamer.h (lto_symtab_encoder_t): Add in_partition.
190 (lto_symtab_encoder_iterator): New type.
191 (lto_symtab_encoder_deref): Make inline.
192 (output_symtab, referenced_from_other_partition_p,
193 reachable_from_other_partition_p, referenced_from_this_partition_p,
194 reachable_from_this_partition_p): Update.
195 (lsei_end_p, lsei_next, lsei_node, lsei_cgraph_node,
196 lsei_varpool_node): New inline functions.
197 (LCC_NOT_FOUND): New macro.
198 (lto_symtab_encoder_deref, lsei_start, lsei_next_in_partition,
199 lsei_start_in_partition, lsei_next_function_in_partition,
200 lsei_start_function_in_partition, lsei_next_variable_in_partition,
201 lsei_start_variable_in_partition): New inline functions.
202
203 2012-08-12 Oleg Endo <olegendo@gcc.gnu.org>
204
205 * config/sh/sh.md (prefetch): Simplify expander. Fix condition to
206 allow SH3.
207 (*prefetch_media): Move insn below expander.
208 (*prefetch): Fix condition to allow SH3.
209
210 2012-08-12 Oleg Endo <olegendo@gcc.gnu.org>
211
212 PR target/51244
213 * config/sh/sh.md: Add splits for inverted compare and branch
214 opportunities.
215 (*cmpeqsi_t): New insn.
216 (cmpgtsi_t, cmpgesi_t): Swap r and N alternatives.
217 (cmpgeusi_t): Use satisfies_constraint_Z. Emit sett insn in
218 replacement insn list and not in the preparation statements.
219 (clrt, sett): Add mt_group attribute.
220
221 2012-08-12 Marc Glisse <marc.glisse@inria.fr>
222
223 PR middle-end/54193
224 * gimple-pretty-print.c (dump_ternary_rhs): Handle 4 arguments.
225
226 2012-08-12 Oleg Endo <olegendo@gcc.gnu.org>
227
228 PR target/39423
229 * config/sh/predicates.md (mem_index_disp_operand): Check for
230 arith_reg_operand instead of REG_P.
231
232 2012-08-11 Bernd Schmidt <bernds@codesourcery.com>
233
234 * reload1.c (replaced_subreg, gen_reload): Add
235 SECONDARY_MEMORY_NEEDED ifdefs as necessary.
236
237 2012-08-11 Jan Hubicka <jh@suse.cz>
238
239 * lto-section-in.c (lto_section_name): Do not use "symtab" as part of
240 symtab_node sectoin name; it confuses plugin.
241
242 2012-08-11 Uros Bizjak <ubizjak@gmail.com>
243
244 * config/alpha/alpha.c (alpha_stdarg_optimize_hook): Shift DECL_UID
245 index in the va_list_vars bitmap by num_ssa_names.
246
247 2012-08-11 Uros Bizjak <ubizjak@gmail.com>
248
249 * config/i386/sse.md (xop integer multiply/add insns): Use
250 register_operand for operand 3 predicate.
251 (xop_phadd<u>bq): Fix vec_select selectors.
252
253 2012-08-11 Martin Jambor <mjambor@suse.cz>
254
255 PR fortran/48636
256 * ipa-inline.h (condition): New fields offset, agg_contents and by_ref.
257 * ipa-inline-analysis.c (agg_position_info): New type.
258 (add_condition): New parameter aggpos, also store agg_contents, by_ref
259 and offset.
260 (dump_condition): Also dump aggregate conditions.
261 (evaluate_conditions_for_known_args): Also handle aggregate
262 conditions. New parameter known_aggs.
263 (evaluate_properties_for_edge): Gather known aggregate contents.
264 (inline_node_duplication_hook): Pass NULL known_aggs to
265 evaluate_conditions_for_known_args.
266 (unmodified_parm): Split into unmodified_parm and unmodified_parm_1.
267 (unmodified_parm_or_parm_agg_item): New function.
268 (set_cond_stmt_execution_predicate): Handle values passed in
269 aggregates.
270 (set_switch_stmt_execution_predicate): Likewise.
271 (will_be_nonconstant_predicate): Likewise.
272 (estimate_edge_devirt_benefit): Pass new parameter known_aggs to
273 ipa_get_indirect_edge_target.
274 (estimate_calls_size_and_time): New parameter known_aggs, pass it
275 recrsively to itself and to estimate_edge_devirt_benefit.
276 (estimate_node_size_and_time): New vector known_aggs, pass it o
277 functions which need it.
278 (remap_predicate): New parameter offset_map, use it to remap aggregate
279 conditions.
280 (remap_edge_summaries): New parameter offset_map, pass it recursively
281 to itself and to remap_predicate.
282 (inline_merge_summary): Also create and populate vector offset_map.
283 (do_estimate_edge_time): New vector of known aggregate contents,
284 passed to functions which need it.
285 (inline_read_section): Stream new fields of condition.
286 (inline_write_summary): Likewise.
287 * ipa-cp.c (ipa_get_indirect_edge_target): Also examine the aggregate
288 contents. Let all local callers pass NULL for known_aggs.
289
290 2012-08-11 Jan Hubicka <jh@suse.cz>
291
292 * lto-cgraph.c (output_cgraph): Rename to ...
293 (output_symtab): ... this one. Update for LTO_section_symtab_nodes.
294 (input_cgraph): Rename to ...
295 (input_symtab): ... this one. Update for LTO_section_symtab_nodes.
296 * lto-streamer-out.c (create_output_block): Do not set
297 section_type.
298 (produce_asm): Likewise.
299 (lto_output_toplevel_asms): Likewise.
300 (produce_asm_for_decls): Likewise.
301 (lto_output): Use output_symtab.
302 * lto-section-in.c (lto_section_name): Update.
303 * lto-section-out.c (lto_destroy_simple_output_block): Remove
304 section_type.
305 * lto-streamer.h (enum lto_section_type): Remove LTO_section_varpool;
306 rename LTO_section_cgraph to LTO_section_symtab_nodes.
307 (struct lto_header): Remove section_type.
308
309 2012-08-11 Jan Hubicka <jh@suse.cz>
310
311 * cgraph.h (vector types for symtab_node): Add.
312 * ipa-reference.c (ipa_reference_write_optimization_summary): Update
313 for new symtab encoder.
314 (ipa_reference_read_optimization_summary): Likewise.
315 * lto-cgraph.c (output_varpool): Remove.
316 (input_cgraph_opt_summary): Take symtab nodes vector as argument.
317 (LTO_cgraph_tags): Rename to ...
318 (LTO_symtab_tags): ... this one; add LTO_symtab_variable.
319 (lto_cgraph_encoder_new): Rename to ...
320 (lto_symtab_encoder_new): ... this on.
321 (lto_cgraph_encoder_encode): Rename to ...
322 (lto_symtab_encoder_encode): ... this one.
323 (lto_cgraph_encoder_delete): Rename to ...
324 (lto_symtab_encoder_delete): ... this one.
325 (lto_cgraph_encoder_deref): Rename to ...
326 (lto_symtab_encoder_deref): ... this one.
327 (lto_cgraph_encoder_encode_body_p): Rename to ...
328 (lto_symtab_encoder_encode_body_p): ... this one.
329 (lto_varpool_encoder_new, lto_varpool_encoder_delete,
330 lto_varpool_encoder_encode, lto_varpool_encoder_lookup,
331 lto_varpool_encoder_deref): Remove.
332 (lto_varpool_encoder_encode_initializer_p): Rename to ...
333 (lto_symtab_encoder_encode_initializer_p): ... this one.
334 (lto_set_varpool_encoder_encode_initializer): Rename to ...
335 (lto_set_symtab_encoder_encode_initializer): ... this one.
336 (lto_output_edge): Update.
337 (lto_output_node): Update.
338 (lto_output_varpool_node): Update; stream out LTO_symtab_variable tag.
339 (lto_output_ref): Drop varpool_encoder; update.
340 (add_node_to): Update.
341 (add_references): Update.
342 (output_outgoing_cgraph_edges): Update.
343 (output_refs): Update.
344 (compute_ltrans_boundary): Update.
345 (output_cgraph): Update; output varpools too.
346 (input_overwrite_node): Update.
347 (output_varpool): Remove.
348 (input_node): Update.
349 (input_ref): Update.
350 (input_edge): Update.
351 (input_cgraph_1): Update; input varpool too; unify fixup code.
352 (input_varpool_1): Remove.
353 (input_refs): Update.
354 (input_cgraph): Update.
355 (output_node_opt_summary): Update.
356 (input_cgraph_opt_section): Update.
357 (input_cgraph_opt_summary): Update.
358 * ipa-pure-const.c (pure_const_write_summary): Update.
359 (pure_const_read_summary): Update.
360 * lto-streamer-out.c (lto_write_tree): Update.
361 (lto_output): Likewise.
362 (produce_symtab): Update.
363 (produce_asm_for_decls): Update.
364 * ipa-inline-analysis.c (inline_read_section): Update.
365 (inline_write_summary): Update.
366 * ipa-prop.c (ipa_write_node_info): Update.
367 (ipa_prop_read_section): Update.
368 * lto-streamer.h (lto_cgraph_encoder_d): Rename to ...
369 (lto_symtab_encoder_d): ... this one; add initializer.
370 (lto_cgraph_encoder_t): Rename to ...
371 (lto_symtab_encoder_t): ... this one.
372 (lto_cgraph_encoder_size): Rename to ...
373 (lto_symtab_encoder_size): ... this one.
374 (lto_varpool_encoder_d): ... remove.
375 (lto_varpool_encoder_t): Remove.
376 (lto_out_decl_state): Remove cgraph_node_encoder, varpool_node_encoder
377 add symtab_node_encoder.
378 (lto_file_decl_data): Likewise.
379 (lto_cgraph_encoder_deref, lto_cgraph_encoder_lookup,
380 lto_cgraph_encoder_new, lto_cgraph_encoder_encode,
381 lto_cgraph_encoder_delete, lto_cgraph_encoder_encode_body_p,
382 lto_varpool_encoder_encode_body_p, lto_varpool_encoder_deref,
383 lto_varpool_encoder_lookup, lto_varpool_encoder_new,
384 lto_varpool_encoder_encode, lto_varpool_encoder_delete,
385 lto_varpool_encoder_encode_initializer_p): Remove.
386 (lto_symtab_encoder_deref, lto_symtab_encoder_lookup,
387 lto_symtab_encoder_t, lto_symtab_encoder_encode,
388 lto_symtab_encoder_delete, lto_symtab_encoder_encode_body_p,
389 lto_symtab_encoder_encode_initializer_p): New.
390
391 2012-08-11 Uros Bizjak <ubizjak@gmail.com>
392
393 * config/i386/i386.md (isa): Add fma and fma4.
394 (enabled): Handle fma and fma4.
395 * config/i386/sse.md (*fma_fmadd_<mode>): Merge *fma4_fmadd_<mode>.
396 (*fma_fmsub_<mode>): Merge *fma4_fmsub_<mode>.
397 (*fma_fnmadd_<mode>): Merge *fma4_fnmadd_<mode>.
398 (*fma_fnmsub_<mode>): Merge *fma4_fnmsub_<mode>.
399 (*fma_fmaddsub_<mode>): Merge *fma4_fmaddsub_<mode>.
400 (*fma_fmsubadd_<mode>): Merge *fma4_fmsubadd_<mode>.
401
402 2012-08-10 Uros Bizjak <ubizjak@gmail.com>
403
404 * config/i386/sse.md (*fma_fmadd_<mode>, *fma_fmsub_<mode>,
405 *fma_fnmadd_<mode>, *fma_fnmsub_<mode>, *fma_fmaddsub_<mode>,
406 *fma_fmsubadd_<mode>): Move FMA3 insn patterns before FMA4 patterns.
407
408 2012-08-10 Uros Bizjak <ubizjak@gmail.com>
409
410 * config/i386/i386.md (simple LEA peephole2s): Add zero-extend
411 variants of PLUS and MULT simple LEA patterns. Disable PLUS
412 patterns for TARGET_OPT_AGU.
413
414 2012-08-10 Richard Guenther <rguenther@suse.de>
415
416 * Makefile.in (OBJS): Remove matrix-reorg.o.
417 (matrix-reorg.o): Remove dependence rule.
418 (GTFILES): Remove matrix-reorg.c.
419 * matrix-reorg.c: Remove.
420 * passes.c (init_optimization_passes): Do not schedule
421 pass_ipa_matrix_reorg.
422 * tree-pass.h (pass_ipa_matrix_reorg): Remove.
423 * common.opt (fipa-matrix-reorg): Stub out.
424 * doc/invoke.texi (fipa-matrix-reorg): Remove documentation.
425
426 2012-08-10 Richard Guenther <rguenther@suse.de>
427
428 PR middle-end/54219
429 * fold-const.c (fold_ternary_loc): Do not reverse the mask
430 when canonicalizing it when folding VEC_PERM_EXPR.
431
432 2012-08-10 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
433
434 PR middle-end/54211
435 * gimple-ssa-strength-reduction.c (analyze_candidates_and_replace):
436 Use cand_type to determine whether pointer arithmetic will be generated.
437
438 2012-08-10 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
439
440 * doc/sourcebuild.texi: Document long_neq_int effective target.
441
442 2012-08-10 Richard Guenther <rguenther@suse.de>
443
444 PR tree-optimization/54109
445 * tree-ssa-forwprop.c
446 (forward_propagate_addr_into_variable_array_index): Remove.
447 (forward_propagate_addr_expr_1): Adjust.
448
449 2012-08-10 Richard Guenther <rguenther@suse.de>
450
451 * tree-cfg.c (dump_function_to_file): Make sure to dump
452 anonymous SSA names when there are no local decls.
453
454 2012-08-10 Steven Bosscher <steven@gcc.gnu.org>
455
456 * tree-ssa-pre.c (alloc_expression_id): Fix use of VEC_reserve.
457 * tree-into-ssa.c (get_ssa_name_ann): Likewise.
458 (mark_phi_for_rewrite): Likewise.
459 (compute_global_livein): Use VEC_reserve outside the innermost
460 loop and VEC_quick_push instead of VEC_safe_push in that loop.
461 (update_ssa): Re-organize to avoid unnecessary sbitmap_zero'ing
462 of new_ssa_names and old_ssa_names. Allocate phis_to_rewrite to
463 the correct initial size.
464
465 2012-08-10 Richard Guenther <rguenther@suse.de>
466
467 * tree-ssa-pre.c (pretemp, storetemp, prephitemp): Remove.
468 (need_creation): Remove.
469 (get_representative_for): Use anonymous named SSA names.
470 (create_expression_by_pieces): Likewise.
471 (insert_into_preds_of_block): Likewise.
472 (init_pre): Do not init removed vars.
473 (fini_pre): Do not free need_creation.
474 * tree-ssa-forwprop.c (simplify_bitwise_binary): Use anonymous
475 SSA names.
476 * tree-ssa-loop-manip.c (create_iv): Likewise.
477 * value-prof.c (gimple_divmod_fixed_value): Likewise.
478 (gimple_mod_pow2): Likewise.
479 (gimple_mod_subtract): Likewise.
480 (gimple_ic): Likewise.
481 (gimple_stringop_fixed_value): Likewise.
482 * tree-ssa-phiopt.c (condstoretemp): Remove.
483 (tree_ssa_phiopt_worker): Use anonymous named SSA names.
484 (conditional_replacement): Likewise.
485 (abs_replacement): Likewise.
486 (cond_store_replacement): Likewise.
487 (cond_if_else_store_replacement_1): Likewise.
488 * tree-ssa-loop-im.c (rewrite_reciprocal): Likewise.
489 (rewrite_bittest): Likewise.
490 * tree-ssa-reassoc.c (build_and_add_sum): Get type from callers
491 and build anonymous SSA names.
492 (undistribute_ops_list): Adjust.
493 (eliminate_redundant_comparison): Use anonymous SSA names.
494 (rewrite_expr_tree_parallel): Likewise.
495 (get_reassoc_pow_ssa_name): Remove.
496 (attempt_builtin_powi): Adjust.
497 (reassociate_bb): Likewise.
498 * tree-ssa-strlen.c (get_string_length): Use anonymous SSA names.
499 * tree-switch-conversion.c (emit_case_bit_tests): Likewise.
500 (build_arrays): Likewise.
501 * tree-tailcall.c (adjust_return_value_with_ops): Likewise.
502 (create_tailcall_accumulator): Likewise.
503 * tree-vect-generic.c (expand_vector_divmod): Likewise.
504 * tree-profile.c (gcov_type_tmp_var): Remove.
505 (gimple_init_edge_profiler): Do not initialize it and use anonymous
506 SSA names.
507 (gimple_gen_ic_profiler): Likewise.
508 (tree_profiling): Adjust.
509 * tree-sra.c (build_ref_for_offset): Use anonymous SSA names.
510 * tree-ssa-math-opts.c (execute_cse_sincos_1): Likewise.
511 (powi_as_mults_1): Likewise.
512 (powi_as_mults): Likewise.
513 (build_and_insert_call): Adjust.
514 (build_and_insert_binop): Likewise.
515 (build_and_insert_ref): Likewise.
516 (build_and_insert_cast): Likewise.
517 (gimple_expand_builtin_pow): Likewise.
518 (gimple_expand_builtin_cabs): Likewise.
519 (execute_optimize_bswap): Use anonymous SSA names.
520 (convert_mult_to_widen): Likewise.
521 (convert_plusminus_to_widen): Likewise.
522 * tree-ssa-phiprop.c (phiprop_insert_phi): Likewise.
523 * tree-ssa-propagate.c (update_call_from_tree): Likewise.
524 * tree-if-conv.c (ifc_temp_var): Likewise.
525 * tree-loop-distribution.c (generate_memset_builtin): Likewise.
526 * tree-parloops.c (take_address_of): Likewise.
527 * tree-vect-data-refs.c (vect_permute_store_chain): Likewise.
528 (vect_permute_load_chain): Likewise.
529 * tree-vect-loop-manip.c (vect_create_cond_for_align_checks): Likewise.
530 * tree-vect-patterns.c (vect_recog_temp_ssa_var): Likewise.
531 (vect_handle_widen_op_by_const): Likewise.
532 (vect_operation_fits_smaller_type): Likewise.
533 (vect_recog_over_widening_pattern): Likewise.
534 * tree-vect-stmts.c (vect_init_vector): Likewise.
535 * tree-vrp.c (simplify_truth_ops_using_ranges): Likewise.
536 (simplify_float_conversion_using_ranges): Likewise.
537
538 2012-08-10 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
539
540 * config/i386/i386.c (ix86_init_mmx_sse_builtins): Fix
541 target mask of __builtin_ia32_rdseed_di_step builtin.
542
543 2012-08-10 Richard Guenther <rguenther@suse.de>
544
545 PR tree-optimization/54027
546 * tree-vrp.c (extract_range_from_binary_expr_1): Merge RSHIFT_EXPR
547 and LSHIFT_EXPR handling, force -fwrapv for the multiplication used
548 to handle LSHIFT_EXPR with a constant.
549
550 2012-08-10 Richard Guenther <rguenther@suse.de>
551
552 * tree.h (SSA_NAME_VAR): Return NULL_TREE if an IDENTIFIER_NODE
553 is recorded as var.
554 (SSA_NAME_IDENTIFIER): Return the IDENTIFIER_NODE of the SSA_NAME
555 or its SSA_NAME_VAR.
556 (SET_SSA_NAME_VAR_OR_IDENTIFIER): New setter.
557 * tree-ssanames.c (make_ssa_name_fn): Handle creating anonymous
558 SSA names by passing a type instead of a variable decl.
559 (release_ssa_name): Use SET_SSA_NAME_VAR_OR_IDENTIFIER.
560 (copy_ssa_name_fn): Handle anonymous SSA names.
561 (replace_ssa_name_symbol): Use SET_SSA_NAME_VAR_OR_IDENTIFIER.
562 * tree-flow-inline.h (make_temp_ssa_name): New inline function.
563 * tree-pretty-print.c (dump_generic_node): Use SSA_NAME_IDENTIFIER,
564 dump SSA names without a name as <anon>.
565 * cfgexpand.c (expand_used_vars): Assing anonymous SSA names we are
566 going to expand a decl.
567 (gimple_expand_cfg): Assign all SSA names of a partition the
568 decl we created for its leader.
569 * tree-ssa.c (target_for_debug_bind): Handle SSA_NAMEs.
570 (verify_ssa_name): Handle anonymous SSA names.
571 (verify_def): Likewise.
572 * tree-predcom.c (eliminate_temp_copies): Likewise.
573 * tree-ssa-copyrename.c (copy_rename_partition_coalesce): Likewise.
574 * tree-ssa-live.c (var_map_base_init): Compute conflicts for
575 anonymous SSA names with the same type.
576 (mark_all_vars_used_1): Handle anonymous SSA names.
577 (verify_live_on_entry): Likewise.
578 * tree-ssa-coalesce.c (abnormal_corrupt): Remove.
579 (create_outofssa_var_map): Adjust with respect to conflicts we
580 compute for anonymous SSA names. Do not restrict abnormal
581 coalescing.
582 (coalesce_partitions): Do not restrict abnormal coalescing.
583 Assert we only ever coalesce variables we computed conflicts for.
584 * tree-ssa-ter.c (process_replaceable): Do not restrict TER
585 of anonymous names.
586 * expr.c (expand_expr_real_1): Handle anonymous SSA names
587 expanded from IVOPTs by creating a raw REG here.
588 * tree-cfg.c (replace_ssa_name): Handle anonymous SSA names.
589 (dump_function_to_file): Dump anonymous SSA names alongside
590 with their types in the variable list.
591 (verify_gimple_return): Guard use of SSA_NAME_VAR.
592 * tree-into-ssa.c (mark_for_renaming): Handle a NULL symbol.
593 (rewrite_into_ssa): Make SSA names anonymous.
594 * tree-ssa-structalias.c (alias_get_name): Rewrite.
595 * tree-ssa-uninit.c (ssa_undefined_value_p): Handle anonymous
596 SSA names.
597 (warn_uninitialized_phi): Likewise.
598 * tree-ssa-loop-ivopts.c (prepare_decl_rtl): Defer expanding
599 anonymous SSA names to the expander.
600 (determine_iv_cost): Anonymous SSA names are artificial.
601 * tree-ssa-loop-manip.c (tree_transform_and_unroll_loop):
602 Handle anonymous SSA names.
603 * lto-streamer-out.c (output_ssa_names): Stream SSA_NAME_VAR
604 or if NULL, the type of the SSA name.
605 * tree-inline.c (remap_ssa_name): Handle anonymous SSA names,
606 remap names as anonymous where appropriate.
607 (insert_init_stmt): Pass SSA names down to insert_init_debug_bind.
608 * tree-ssa-uncprop.c (uncprop_into_successor_phis): Adjust
609 according to what we create conflicts for in out-of-SSA
610 coalescing.
611 * tree-parloops.c (separate_decls_in_region_name): Handle
612 anonymous SSA names.
613 (add_field_for_name): Likewise.
614 * tree.c (get_name): Handle SSA names.
615 * tree-ssa-loop-im.c (gen_lsm_tmp_name): Defer to get_name for
616 SSA_NAMEs.
617 * tree-vect-loop-manip.c (adjust_debug_stmts): Use
618 virtual_operand_p.
619 * tree-sra.c (create_access_replacement): Give up generating
620 a DECL_DEBUG_EXPR for SSA names in the memory reference.
621 (replace_removed_params_ssa_names): Guard use of SSA_NAME_VAR.
622 * tree-complex.c (get_component_ssa_name): Handle anonymous
623 SSA names.
624 (set_component_ssa_name): Likewise.
625 * tree-ssa-sccvn.c (visit_reference_op_load): Likewise.
626 * tree-object-size.c (collect_object_sizes_for): Handle
627 uninitialized SSA names properly.
628 * ipa-inline-analysis.c (eliminated_by_inlining_prob): Guard use of
629 SSA_NAME_VAR.
630 * ipa-split.c (test_nonssa_use): Likewise.
631 (consider_split): Likewise.
632 (mark_nonssa_use): Likewise.
633
634 2012-08-09 Jan Hubicka <jh@suse.cz>
635
636 PR middle-end/54146
637 * ipa-inline-transform.c (inline_call): Add UPDATE_OVERALL_SUMMARY
638 parameter; honnor it.
639 * ipa-inline.c (recursive_inlining): Update call
640 of inline_call.
641 (inline_small_functions): Likewise.
642 (ipa_inline): Likewise.
643 (inline_always_inline_functions): Likewise.
644 (early_inline_small_functions): Likewise.
645 (flatten_function): Do separate update of summary info.
646 * ipa-inline.h (inline_update_overall_summary): Declare.
647 (inline_call): Update.
648 * ipa-inline-analysis.c (inline_merge_summary): Break out
649 updating code to ...
650 (inline_update_overall_summary): Likewise.
651
652 2012-08-09 Richard Henderson <rth@redhat.com>
653
654 * config/s390/s390.c (s390_expand_insv): Use VOIDmode in gen_rtx_SET.
655
656 * config/s390/s390.c (s390_expand_cs_hqi): Copy val to a temp before
657 performing the compare for the restart loop.
658
659 2012-08-09 DJ Delorie <dj@redhat.com>
660
661 * config/rl78/rl78.c (rl78_alloc_physical_registers): Check for
662 SET before extracting SET_SRC.
663 (rl78_remove_unused_sets): Check for REG before extractnig REGNO.
664
665 2012-08-09 Oleg Endo <olegendo@gcc.gnu.org>
666
667 PR target/54089
668 * config/sh/sh-protos (shift_insns_rtx): Delete.
669 (sh_ashlsi_clobbers_t_reg_p): Add.
670 * config/sh/sh.c (shift_insns, shift_amounts, ext_shift_insns,
671 ext_shift_amounts): Merge arrays of ints to array of structs.
672 Adapt usage of arrays throughout the file.
673 (shift_insns_rtx): Delete unused function.
674 (sh_ashlsi_clobbers_t_reg_p): New function.
675 * config/sh/sh.md (ashlsi3): Emit ashlsi3_n_clobbers_t insn if the
676 final shift sequence will clobber T_REG.
677 (ashlsi3_n): Split only if the final shift sequence will not
678 clobber T_REG.
679 (ashlsi3_n_clobbers_t): New insn_and_split.
680
681 2012-08-09 Steven Bosscher <steven@gcc.gnu.org>
682
683 * calls.c (mem_overlaps_already_clobbered_arg_p): Use SBITMAP_SIZE
684 instead of looking at sbitmap n_bits member directly.
685 * gcse.c (hoist_code): Likewise.
686 * sched-rgn.c (split_edges): Likewise.
687 * tree-into-ssa.c (is_old_name, is_new_name, add_new_name_mapping,
688 update_ssa): Likewise.
689
690 2012-08-09 Uros Bizjak <ubizjak@gmail.com>
691
692 * config/i386/i386.h (LIMIT_RELOAD_CLASS): Return preferred
693 single unit register class for classes that contain registers form
694 multiple units.
695 (REG_CLASS_CONTENTS): Add missing "frame" register to FLOAT_INT_REGS,
696 INT_SSE_REGS and FLOAT_INT_SSE_REGS register classes.
697
698 2012-08-09 Martin Jambor <mjambor@suse.cz>
699
700 * cgraph.h (cgraph_indirect_call_info): Field anc_offse renamd to
701 offset, updated all users. New field agg_contents.
702 * ipa-prop.h (jump_func_type): Removed IPA_JF_CONST_MEMBER_PTR.
703 (ipa_pass_through_data): New field agg_preserved.
704 (ipa_ancestor_jf_data): Likewise.
705 (ipa_member_ptr_cst): Removed.
706 (ipa_agg_jf_item): New type.
707 (ipa_agg_jump_function): Likewise.
708 (ipa_jump_func): New field agg. Removed field member_cst.
709 (ipa_get_jf_pass_through_agg_preserved): New function.
710 (ipa_get_jf_ancestor_agg_preserved): Likewise.
711 (ipa_get_jf_member_ptr_pfn): Removed.
712 (ipa_find_agg_cst_for_param): Declare.
713 (ipa_load_from_parm_agg): Likewise.
714 * ipa-prop.c (param_analysis_info): Fields modified and
715 visited_statements rename to parm_modified and parm_visited_statements
716 respectively, added fields ref_modified, ref_visited_statements,
717 pt_modified and pt_visited_statements.
718 (ipa_print_node_jump_functions_for_edge): Do not dump const member
719 functions. Dump agg_preserved flags and aggregate jump functions.
720 (ipa_set_jf_simple_pass_through): Set also agg_preserved.
721 (ipa_set_ancestor_jf): Likewise.
722 (ipa_set_jf_arith_pass_through): Clear agg_preserved.
723 (ipa_set_jf_member_ptr_cst): Removed.
724 (is_parm_modified_before_stmt): Logic reversed, renamed to
725 parm_preserved_before_stmt_p. Cache visited bitmap only for
726 naked DECL parameters. All callers updated.
727 (load_from_unmodified_param): Allow NULL parms_ainfo.
728 (parm_ref_data_preserved_p): New function.
729 (parm_ref_data_pass_through_p): Likewise.
730 (ipa_load_from_parm_agg_1): Likewise.
731 (ipa_load_from_parm_agg): Likewise.
732 (compute_complex_assign_jump_func): Check if aggregate contents are
733 preserved.
734 (compute_complex_ancestor_jump_func): Likewise.
735 (compute_scalar_jump_functions): Removed.
736 (type_like_member_ptr_p): Also check field position are known and sane.
737 (compute_pass_through_member_ptrs): Removed.
738 (determine_cst_member_ptr): Likewise.
739 (ipa_known_agg_contents_list): New type.
740 (determine_known_aggregate_parts): New function.
741 (compute_cst_member_ptr_arguments): Removed.
742 (ipa_compute_jump_functions_for_edge): Compute all kinds of jump
743 functions (scalar, aggregate and member pointer).
744 (ipa_get_member_ptr_load_param): Incorporate into
745 ipa_get_stmt_member_ptr_load_param, also pass back an offset.
746 (ipa_note_param_call): Clear agg_contents.
747 (ipa_analyze_indirect_call_uses): Also look for simple pointers loaded
748 from aggregates. In such cases, store offset of the called field.
749 (ipa_analyze_node): Initialize new fields of param_analysis_info.
750 (update_jump_functions_after_inlining): Handle aggregate contents.
751 (ipa_find_agg_cst_for_param): New function.
752 (try_make_edge_direct_simple_call): Handle called aggregate values.
753 (update_indirect_edges_after_inlining): Make sure aggregate preserving
754 jump functions comply with type compatibility requirements.
755 (ipa_edge_duplication_hook): Copy also aggregate jump functions.
756 (ipa_write_jump_function): Stream agg_preserved flags and aggregate
757 jump functions. Do not stream member pointer constant jump functions.
758 (ipa_read_jump_function): Likewise.
759 (ipa_write_indirect_edge_info): Stream new cgraph_indirect_call_info
760 fields.
761 (ipa_read_indirect_edge_info): Likewise.
762
763 2012-08-09 Oleg Endo <olegendo@gcc.gnu.org>
764
765 PR target/39423
766 * config/sh/predicates.md (mem_index_disp_operand): New predicate.
767 * config/sh/sh.md (*movsi_index_disp): Rewrite insns to use the new
768 mem_index_disp_operand predicate.
769
770 2012-08-09 Oleg Endo <olegendo@gcc.gnu.org>
771
772 PR target/51244
773 * config/sh/sh.md: Add negc extu sequence peephole.
774 (movrt, movnegt, movrt_negc, nott): Use t_reg_operand predicate.
775 (*movrt_negc): New insn.
776 * config/sh/sync.md (atomic_test_and_set): Pass gen_t_reg_rtx to
777 gen_movnegt.
778 * config/sh/sh.c (expand_cbranchsi4, sh_emit_scc_to_t,
779 sh_emit_compare_and_branch, sh_emit_compare_and_set): Use
780 get_t_reg_rtx.
781 (sh_expand_t_scc): Pass gen_t_reg_rtx to gen_movnegt.
782
783 2012-08-09 Oleg Endo <olegendo@gcc.gnu.org>
784
785 PR target/50751
786 * config/sh/sh.md (*extendqisi2_compact_reg, *extendhisi2_compact_reg):
787 Use arith_reg_operand predicate instead of register_operand.
788 * config/sh/predicates.md (movsrc_no_disp_mem_operand): Accept
789 only mem, simplify.
790
791 2012-08-09 Uros Bizjak <ubizjak@gmail.com>
792
793 * config/alpha/alpha.c (alpha_pad_noreturn): Rename to ...
794 (alpha_pad_function_end): ... this. Also insert NOP between
795 sibling call and GP load.
796 (alpha_reorg): Update call to alpha_pad_function_end. Expand comment.
797
798 2012-08-09 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
799
800 * config/i386/adxintrin.h: Remove guarding __ADX__ check.
801 * config/i386/x86intrin.h: Likewise.
802 * config/i386/i386.c (ix86_init_mmx_sse_builtins): Remove
803 OPTION_MASK_ISA_ADX from needed options for
804 __builtin_ia32_addcarryx_u32 and __builtin_ia32_addcarryx_u64.
805 (ix86_expand_builtin): Use add<mode>3_carry in expanding of
806 IX86_BUILTIN_ADDCARRYX32 and IX86_BUILTIN_ADDCARRYX64.
807
808 2012-08-09 Andrey Belevantsev <abel@ispras.ru>
809
810 PR rtl-optimization/53701
811 * sel-sched.c (vinsn_vec_has_expr_p): Clarify function comment.
812 Process not only expr's vinsns but all old vinsns from expr's
813 history of changes.
814 (update_and_record_unavailable_insns): Clarify comment.
815
816 2012-08-09 Bernd Schmidt <bernds@codesourcery.com>
817
818 * reload.c (find_valid_class_1): New static function.
819 (push_reload): Use it when reloading a SYMBOL_REG as the inner
820 of a subreg. Keep better track of needed classes for the
821 secondary memory case.
822 * config/i386/i386.h (LIMIT_RELOAD_CLASS): Limit INT_SSE_REGS to
823 GENERAL_REGS.
824 * reload1.c (replaced_subreg): New static function.
825 (gen_reload): Use it when deciding whether to use secondary
826 memory.
827
828 2012-08-09 Richard Guenther <rguenther@suse.de>
829
830 * tree.h (SSA_VAR_P): Simplify.
831 * tree-ssanames.c (make_ssa_name_fn): Strengthen assert.
832 * fold-const.c (fold_comparison): Check for default def first
833 before checking for PARM_DECL.
834 * tree-complex.c (get_component_ssa_name): Likewise.
835 * tree-inline.c (remap_ssa_name): Likewise.
836 * tree-ssa-loop-ivopts.c (parm_decl_cost): Likewise.
837 * tree-ssa-structalias.c (get_fi_for_callee): Likewise.
838 (find_what_p_points_to): Likewise.
839 * tree-ssa-operands.c (add_stmt_operand): Simplify.
840
841 2012-08-08 Joseph Myers <joseph@codesourcery.com>
842
843 * simplify-rtx.c (simplify_binary_operation_1): Do not simplify
844 IOR to a constant if one operand has side effects.
845
846 2012-08-08 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
847
848 * builtins.c (expand_builtin_atomic_compare_exchange): Pass old
849 value operand as MEM to expand_atomic_compare_and_swap.
850
851 * config/s390/s390.md ("atomic_compare_and_swap<mode>"): Accept
852 nonimmediate_operand for old value; generate load and store if
853 needed.
854 * config/s390/s390.c (s390_expand_cs_hqi): Accept any operand
855 as vtarget.
856
857 2012-08-08 Steven Bosscher <steven@gcc.gnu.org>
858
859 PR middle-end/54146
860 * gimpify.c (gimplify_body): Only verify_gimple_in_seq with
861 checking enabled.
862 * tree-ssa-loop-manip.c (add_exit_phis_var): Assert that var is
863 a gimple_reg if checking is enabled.
864 (find_uses_to_rename_stmt): Only look at non-virtual USE operands.
865 * tree-into-ssa (compute_global_livein): Change the worklist
866 type from an array to a VEC.
867
868 2012-08-08 Richard Guenther <rguenther@suse.de>
869
870 * tree-ssa-operands.h (virtual_operand_p): Declare.
871 * tree-ssa-operands.c (virtual_operand_p): New predicate.
872 * gimple.c (is_gimple_reg): Use virtual_operand_p.
873 * tree-into-ssa.c (prepare_block_for_update): Likewise.
874 * tree-vect-loop-manip.c (adjust_debug_stmts): Likewise.
875
876 2012-08-08 Richard Guenther <rguenther@suse.de>
877
878 * tree-call-cdce.c (check_pow): Simplify.
879 (gen_conditions_for_pow_int_base): Likewise.
880 * tree-ssa-dom.c (propagate_rhs_into_lhs): Do not handle
881 virtual operands here.
882 * tree-ssa-operands.c (get_name_decl): Remove unused function.
883 * gimplify.c (gimple_regimplify_operands): Remove dead code.
884 * tree-vrp.c (get_value_range): Move SSA_NAME_VAR access.
885 * tree-parloops.c (create_phi_for_local_result): Use copy_ssa_name.
886 * value-prof.c (gimple_ic): Use duplicate_ssa_name.
887 (gimple_stringop_fixed_value): Likewise.
888 * tree.c (needs_to_live_in_memory): Remove SSA name handling.
889 * tree-stdarg.c (find_va_list_reference): Store SSA_NAME_VERSIONs
890 in the bitmap alongside shifted DECL_UIDs.
891 (va_list_counter_struct_op): Likewise.
892 (va_list_ptr_read): Likewise.
893 (va_list_ptr_write): Likewise.
894 (check_va_list_escapes): Likewise.
895 (check_all_va_list_escapes): Likewise.
896 (execute_optimize_stdarg): Likewise.
897 * tree-outof-ssa.c (insert_backedge_copies): Use copy_ssa_name.
898
899 2012-08-08 Richard Sandiford <rdsandiford@googlemail.com>
900 H.J. Lu <hongjiu.lu@intel.com>
901
902 PR rtl-optimization/54157
903 * combine.c (gen_lowpart_for_combine): Don't return identity
904 for CONST or symbolic reference.
905
906 2012-08-08 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
907
908 * common/config/i386/i386-common.c (OPTION_MASK_ISA_ADX_SET): New.
909 (OPTION_MASK_ISA_ADX_UNSET): Likewise.
910 (ix86_handle_option): Handle madx option.
911 * config.gcc (i[34567]86-*-*): Add adxintrin.h.
912 (x86_64-*-*): Likewise.
913 * config/i386/adxintrin.h: New header.
914 * config/i386/driver-i386.c (host_detect_local_cpu): Detect ADCX/ADOX
915 support.
916 * config/i386/i386-builtin-types.def
917 (UCHAR_FTYPE_UCHAR_UINT_UINT_PUNSIGNED): New function type.
918 (UCHAR_FTYPE_UCHAR_ULONGLONG_ULONGLONG_PULONGLONG): Likewise.
919 * config/i386/i386-c.c: Define __ADX__ if needed.
920 * config/i386/i386.c (ix86_target_string): Define -madx option.
921 (PTA_ADX): New.
922 (ix86_option_override_internal): Handle new option.
923 (ix86_valid_target_attribute_inner_p): Add OPT_madx.
924 (ix86_builtins): Add IX86_BUILTIN_ADDCARRYX32,
925 IX86_BUILTIN_ADDCARRYX64.
926 (ix86_init_mmx_sse_builtins): Define corresponding built-ins.
927 (ix86_expand_builtin): Handle these built-ins.
928 (ix86_expand_args_builtin): Handle new function types.
929 * config/i386/i386.h (TARGET_ADX): New.
930 * config/i386/i386.md (adcx<mode>3): New define_insn.
931 * config/i386/i386.opt (madx): New.
932 * config/i386/x86intrin.h: Include adxintrin.h.
933
934 2012-08-08 Nick Clifton <nickc@redhat.com>
935
936 * config/rl78/rl78.c: Include tree-pass.h.
937
938 2012-08-08 Steven Bosscher <steven@gcc.gnu.org>
939
940 PR middle-end/54146
941 * ira.c (init_live_subregs): Take live_subregs_used as a bitmap.
942 (build_insn_chain): Make live_subregs_used a bitmap.
943 Use SBITMAP_SIZE to ignore the paradoxical bytes of subregs.
944 Use sbitmap_free to free the live_subreg sbitmaps.
945
946 PR middle-end/54146
947 * ifcvt.c: Include pointer-set.h.
948 (cond_move_process_if_block): Change type of then_regs and
949 else_regs from alloca'd array to pointer_sets.
950 (check_cond_move_block): Update for this change.
951 (cond_move_convert_if_block): Likewise.
952 * Makefile.in: Fix dependencies for ifcvt.o.
953
954 2012-08-07 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
955
956 * gimple-ssa-strength-reduction.c (struct incr_info_d): New struct.
957 (incr_vec): New static var.
958 (incr_vec_len): Likewise.
959 (address_arithmetic_p): Likewise.
960 (stmt_cost): Remove dead assignment.
961 (dump_incr_vec): New function.
962 (cand_abs_increment): Likewise.
963 (lazy_create_slsr_reg): Likewise.
964 (incr_vec_index): Likewise.
965 (count_candidates): Likewise.
966 (record_increment): Likewise.
967 (record_increments): Likewise.
968 (unreplaced_cand_in_tree): Likewise.
969 (optimize_cands_for_speed_p): Likewise.
970 (lowest_cost_path): Likewise.
971 (total_savings): Likewise.
972 (analyze_increments): Likewise.
973 (ncd_for_two_cands): Likewise.
974 (nearest_common_dominator_for_cands): Likewise.
975 (profitable_increment_p): Likewise.
976 (insert_initializers): Likewise.
977 (introduce_cast_before_cand): Likewise.
978 (replace_rhs_if_not_dup): Likewise.
979 (replace_one_candidate): Likewise.
980 (replace_profitable_candidates): Likewise.
981 (analyze_candidates_and_replace): Handle candidates with SSA-name
982 strides.
983
984 2012-08-07 Steven Bosscher <steven@gcc.gnu.org>
985
986 * cfg.c (debug_bb): Do not set TDF_BLOCKS.
987 * cfghooks.c (dump_bb): Honor ~TDF_BLOCKS.
988 * pretty-print.c (pp_base_flush): Do not add a newline, and do not
989 clear pp_needs_newline.
990 * pretty-print.h (pp_newline_and_flush): New macro with the behavior
991 of pp_base_flush before the above change.
992 * langhooks.c (lhd_print_error_function): Use pp_newline_and_flush
993 instead of pp_flush.
994 * diagnostic.c (diagnostic_finish): Likewise.
995 (diagnostic_report_diagnostic): Likewise.
996 (verbatim): Likewise.
997 (error_recursion): Likewise.
998 * tree-pretty-print.c (print_generic_stmt): Likewise.
999 (print_generic_stmt_indented): LIkewise.
1000 * gimple-pretty-print.c (print_gimple_stmt): Likewise.
1001 (print_gimple_seq): Likewise.
1002 (gimple_dump_bb_buff): Likewise.
1003
1004 2012-08-07 Uros Bizjak <ubizjak@gmail.com>
1005
1006 PR debug/54177
1007 * var-tracking.c (var_lowpart): Exit early for matched modes.
1008
1009 2012-08-07 Richard Henderson <rth@redhat.com>
1010
1011 * config/s390/s390.c (s390_emit_compare_and_swap): Update for
1012 atomic_compare_and_swapsi_internal name change.
1013 (s390_expand_insv): Try RISBG last, not requiring operands in
1014 registers but forcing them there. Try a limited form of ICM.
1015 (s390_two_part_insv): New.
1016 (s390_expand_cs_hqi): Use it. Update for atomic optabs.
1017 * config/s390/s390.md (UNSPEC_MOVA): New.
1018 (TDSI): Remove mode iterator.
1019 (DGPR, DINT, TDI): New mode iterators.
1020 (td): New mode attribute.
1021 (mem_signal_fence): New.
1022 (mem_thread_fence): Rename from memory_barrier; update for model arg.
1023 (mem_thread_fence_1): Rename from *memory_barrier.
1024 (atomic_load<DINT>, atomic_store<DINT>): New expanders.
1025 (atomic_loaddi_1, atomic_loadti_1): New.
1026 (atomic_storedi_1, atomic_storeti_1): New.
1027 (sync_compare_and_swap<TDSI>, sync_compare_and_swap<HQI>): Remove.
1028 (atomic_compare_and_swap<DGPR>, atomic_compare_and_swap<HQI>): New.
1029 (atomic_compare_and_swap<DGPR>_internal): New.
1030 (*sync_compare_and_swap<DW>, *sync_compare_and_swap<GPR>): Remove.
1031 (*atomic_compare_and_swap<TDI>_1): New.
1032 (*atomic_compare_and_swapdi_2, *atomic_compare_and_swapsi_3): New.
1033 (sync_<ATOMIC_Z196><GPR>, sync_old_<ATOMIC_Z196><GPR>): Remove.
1034 (atomic_fetch_<ATOMIC_Z196><GPR>): New.
1035 (atomic_fetch_<ATOMC_Z196><GPR>_iaf): New.
1036 (sync_<ATOMIC><HQI>, sync_old_<ATOMIC><HQI>): Remove.
1037 (sync_new_<ATOMIC><HQI>): Remove.
1038 (atomic_<ATOMIC><HQI>, atomic_fetch_<ATOMIC><HQI>): New.
1039 (atomic_<ATOMIC>_fetch<HQI>): New.
1040 (sync_lock_test_and_set<HQI>): Remove.
1041 (atomic_exchange<HQI>): New.
1042
1043 2012-08-07 Paul Brook <paul@codesourcery.com>
1044 Sandra Loosemore <sandra@codesourcery.com>
1045
1046 * except.c (switch_to_exception_section): Place tables for
1047 DECL_ONE_ONLY functions in comdat groups.
1048
1049 2012-08-07 Richard Guenther <rguenther@suse.de>
1050
1051 * tree-flow.h (copy_ssa_name_fn): New function.
1052 (duplicate_ssa_name_fn): Likewise.
1053 * tree-flow-inline.h (copy_ssa_name): New function.
1054 (duplicate_ssa_name): Likewise.
1055 * tree-ssanames.c (copy_ssa_name_fn): New function.
1056 (duplicate_ssa_name): Rename to ...
1057 (duplicate_ssa_name_fn): ... this and adjust.
1058 * tree-tailcall.c (update_accumulator_with_ops): Use copy_ssa_name.
1059 * tree-vect-loop-manip.c (slpeel_update_phi_nodes_for_guard1):
1060 Likewise.
1061 (slpeel_update_phi_nodes_for_guard2): Likewise.
1062 (slpeel_tree_peel_loop_to_edge): Likewise.
1063 (vect_loop_versioning): Likewise.
1064 * tree-parloops.c (transform_to_exit_first_loop): Likewise.
1065 (create_parallel_loop): Likewise.
1066 * ipa-split.c (split_function): Likewise.
1067 * tree-vect-loop.c (vect_is_simple_reduction_1): Likewise.
1068 (vect_create_epilog_for_reduction): Likewise.
1069 * tree-vect-data-refs.c (bump_vector_ptr): Likewise.
1070 (vect_setup_realignment): Likewise.
1071 * tree-vect-stmts.c (vectorizable_load): Likewise.
1072 * tree-switch-conversion.c (build_one_array): Likewise.
1073 (gen_def_assigns): Likewise.
1074 * tree-cfg.c (gimple_make_forwarder_block): Likewise.
1075 * graphite-sese-to-poly.c (rewrite_close_phi_out_of_ssa): Call
1076 create_zero_dim_array with the SSA name.
1077 (rewrite_phi_out_of_ssa): Likewise.
1078 (rewrite_cross_bb_scalar_dependence): Likewise. Use copy_ssa_name.
1079
1080 2012-08-07 Richard Guenther <rguenther@suse.de>
1081
1082 * tree-dfa.c (set_ssa_default_def): Clear the SSA_NAME_DEFAULT_DEF
1083 bit of the old name when we clear the slot.
1084 * tree-ssa-live.c (remove_unused_locals): Release any default
1085 def associated with an unused var.
1086 * tree-ssa-copy.c (may_propagate_copy_into_asm): Always return true.
1087
1088 2012-08-07 Richard Guenther <rguenther@suse.de>
1089
1090 * tree-into-ssa.c (rewrite_stmt): Remove clobbers for variables
1091 we rewrite into SSA form.
1092 (rewrite_enter_block): Adjust.
1093 * gimple-iterator.c (gsi_replace): Also allow replacement with
1094 a stmt without a lhs.
1095 * tree-ssa-live.c (remove_unused_locals): Remove code handling
1096 clobbers of SSA names.
1097 * tree-nested.c (convert_local_reference_stmt): Remove clobbers
1098 for variables we access through the local chain.
1099 * tree-cfg.c (verify_gimple_assign_single): Verify clobbers
1100 clobber full decls only.
1101
1102 2012-08-07 Richard Guenther <rguenther@suse.de>
1103
1104 * gimple.h (gimple_phi_set_result): Adjust SSA_NAME_DEF_STMT.
1105 * tree-phinodes.c (make_phi_node): Allow a NULL var.
1106 * tree-into-ssa.c (insert_phi_nodes_for): Simplify.
1107 * tree-complex.c (update_phi_components): Likewise.
1108 * tree-ssa-loop-manip.c (create_iv): Likewise.
1109 (add_exit_phis_edge): Likewise.
1110 (split_loop_exit_edge): Likewise.
1111 (tree_transform_and_unroll_loop): Likewise.
1112 * value-prof.c (gimple_ic): Likewise.
1113 (gimple_stringop_fixed_value): Likewise.
1114 * tree-tailcall.c (tree_optimize_tail_calls_1): Likewise.
1115 * omp-low.c (expand_parallel_call): Likewise.
1116 (expand_omp_for_static_chunk): Likewise.
1117 (expand_omp_atomic_pipeline): Likewise.
1118 * tree-parloops.c (create_phi_for_local_result): Likewise.
1119 (transform_to_exit_first_loop): Likewise.
1120 * tree-vect-data-refs.c (vect_setup_realignment): Likewise.
1121 * graphite-scop-detection.c (canonicalize_loop_closed_ssa): Likewise.
1122 * tree-predcom.c (initialize_root_vars): Likewise.
1123 (initialize_root_vars_lm): Likewise.
1124 * sese.c (sese_add_exit_phis_edge): Likewise.
1125 * gimple-streamer-in.c (input_phi): Likewise.
1126 * tree-inline.c (copy_phis_for_bb): Likewise.
1127 * tree-ssa-phiprop.c (phiprop_insert_phi): Likewise.
1128 * tree-cfg.c (gimple_make_forwarder_block): Likewise.
1129 (gimple_duplicate_bb): Likewise.
1130
1131 2012-08-07 Nick Clifton <nickc@redhat.com>
1132
1133 * config/mn10300/mn10300.c (mn10300_expand_prologue): Report
1134 stack usage if requested.
1135
1136 2012-08-06 Cary Coutant <ccoutant@google.com>
1137
1138 * cgraphunit.c (assemble_thunk): Add source line info.
1139 * final.c (final): Check for non-null cfg pointer.
1140
1141 2012-08-06 Sandra Loosemore <sandra@codesourcery.com>
1142 Maxim Kuvyrkov <maxim@codesourcery.com>
1143 Julian Brown <julian@codesourcery.com>
1144
1145 * config/mips/24k.md (r24k_unknown_store): Delete special handling
1146 for cprestore.
1147 (r24k_int_load, r24k_int_arith, r24k_int_mul3, r24k_int_mfhilo)
1148 (r24k_int_cop, r24k_int_multi)
1149 (r24kf2_1_fcvt_f2i, r24kf2_1_fxfer)
1150 (r24kf1_1_fcvt_f2i, r24kf1_1_fxfer): Use mips_store_data_bypass_p
1151 instead of store_data_bypass_p.
1152 * config/mips/74k.md (r74k_int_store): Delete special handling for
1153 cprestore.
1154 (r74k_int_load, r74k_int_logical, r74k_int_arith, r74k_int_cmove):
1155 Use mips_store_data_bypass_p instead of store_data_bypass_p.
1156
1157 2012-08-06 Marc Glisse <marc.glisse@inria.fr>
1158
1159 PR tree-optimization/51938
1160 PR tree-optimization/52005
1161 * tree-ssa-ifcombine.c (ifcombine_ifandif): New parameters for
1162 inverted conditions.
1163 (ifcombine_iforif): Remove, merge code into ifcombine_ifandif.
1164 (tree_ssa_ifcombine_bb): Update calls to the above. Detect !a&&b
1165 and !a||b patterns.
1166
1167 2012-08-06 Olivier Hainque <hainque@adacore.com>
1168
1169 * tree-emutls.c (new_emutls_decl): When a var_section is requested by
1170 the target, attach the new decl to that, not to the template section.
1171
1172 2012-08-06 Tom de Vries <tom@codesourcery.com>
1173
1174 * tree-switch-conversion.c (emit_case_bit_tests): Generate MINUS_EXPR in
1175 unsigned type.
1176
1177 2012-08-05 Venkataramanan Kumar <venkataramanan.kumar@amd.com>
1178
1179 * doc/invoke.texi: Document AMD btver2.
1180 * doc/extend.texi: Document AMD btver1 and btver2.
1181
1182 2012-08-04 Sandra Loosemore <sandra@codesourcery.com>
1183 Richard Sandiford <rdsandiford@googlemail.com>
1184
1185 * config/mips/mips.c (mips_option_override): Check -fpic
1186 for compatibility with -mabicalls and ABI.
1187
1188 2012-08-04 Catherine Moore <clm@codesourcery.com>
1189 Sandra Loosemore <sandra@codesourcery.com>
1190
1191 * config/mips/xlr.md (ir_xlr_alu_clz): New insn_reservation.
1192 (ir_xlr_alu): Remove clz.
1193 * config/mips/mips-cpus.def (xlr): Set PTF_AVOID_BRANCHLIKELY.
1194
1195 2012-08-04 Richard Earnshaw <rearnsha@arm.com>
1196
1197 * arm.c (arm_gen_constant): Use SImode when preparing operands for
1198 gen_extzv_t2.
1199
1200 2012-08-04 Uros Bizjak <ubizjak@gmail.com>
1201
1202 * config/i386/i386.h (QI_REGNO_P): New define.
1203 (ANY_QI_REGNO_P): Ditto.
1204 (GENERAL_REGNO_P): Use IN_RANGE macro.
1205 (QI_REG_P): Use QI_REGNO_P.
1206 (ANY_QI_REG_P): Use GENERAL_REGNO_P and QI_REGNO_P.
1207 (HARD_REGNO_CALLER_SAVE_MODE): Use QI_REGNO_P.
1208 * config/i386/i386.c (ix86_hard_regno_mode_ok): Ditto.
1209 (x86_extended_QIreg_mentioned_p): Ditto. Also check if
1210 register is a general register.
1211
1212 2012-08-03 Uros Bizjak <ubizjak@gmail.com>
1213
1214 * config/i386/sync.md (*atomic_fetch_add_cmp<mode>): Use
1215 incdec_operand predicate to return INC or DEC insn mnemonic.
1216 Add %K operand modifier.
1217 (atomic_add<mode>): Use incdec_operand predicate to
1218 return INC or DEC insn mnemonic.
1219 (atomic_dec<mode>): Ditto.
1220
1221 2012-08-03 Michael Matz <matz@suse.de>
1222
1223 PR tree-optimization/54146
1224 * cfgexpand.c (add_scope_conflicts_1): Use bitmap_ior_into.
1225 (add_scope_conflicts): Iterate in RPO order.
1226 (add_stack_protection_conflicts): Iterate over the other triangle.
1227 (fini_vars_expansion): Clear stack_vars_sorted.
1228
1229 2012-08-03 Marc Glisse <marc.glisse@inria.fr>
1230
1231 PR tree-optimization/30318
1232 * double-int.c (mul_double_wide_with_sign): New function.
1233 (mul_double_with_sign): Call the new function.
1234 * double-int.h (mul_double_wide_with_sign): Declare the new function.
1235 * tree-vrp.c (extract_range_from_binary_expr_1) [MULT_EXPR]:
1236 Handle integer types that wrap on overflow.
1237 (quad_int_cmp): New helper function.
1238 (quad_int_pair_sort): Likewise.
1239
1240 2012-08-03 Richard Guenther <rguenther@suse.de>
1241
1242 * tree-vect-loop-manip.c (vect_can_advance_ivs_p): Query
1243 is_gimple_reg on the SSA name, not its variable.
1244 (vect_update_ivs_after_vectorizer): Likewise.
1245 * tree-ssa-copyrename.c (rename_ssa_copies): Likewise.
1246 * tree-if-conv.c (if_convertible_phi_p): Likewise.
1247 (predicate_scalar_phi): Likewise.
1248 * tree-vect-loop.c (vect_analyze_scalar_cycles_1): Likewise.
1249 (vect_analyze_scalar_cycles_1): Likewise.
1250 * tree-ssa-live.c (register_ssa_partition_check): Likewise.
1251 * tree-outof-ssa.c (eliminate_useless_phis): Likewise.
1252 * tree-ssa-reassoc.c (phi_rank): Likewise.
1253 * tree-parloops.c (separate_decls_in_region_name): Use
1254 replace_ssa_name_symbol.
1255 * tree-predcom.c (base_names_in_chain_on): Likewise.
1256 * matrix-reorg.c (update_type_size): Query the type of the SSA name,
1257 not its variable.
1258 * gimple-ssa-strength-reduction.c (create_mul_ssa_cand): Likewise.
1259 (create_mul_imm_cand): Likewise.
1260 (create_add_ssa_cand): Likewise.
1261 (create_add_imm_cand): Likewise.
1262 (slsr_process_add): Likewise.
1263 * tree-inline.c (remap_ssa_name): Do not set the type of the
1264 new SSA_NAME.
1265 * tree-ssa-structalias.c (get_constraint_for_ssa_var): Clarify assert.
1266 Check for default def first.
1267
1268 2012-08-04 Steven Bosscher <steven@gcc.gnu.org>
1269
1270 * cfgrtl.c (print_rtl_with_bb): Do not print a newline between insns.
1271
1272 * sched-vis.c (print_pattern): Handle SEQUENCE also.
1273
1274 2012-08-02 Richard Henderson <rth@redhat.com>
1275
1276 Revert:
1277 PR 34548
1278 * function.h (struct rtl_data): Add max_dynamic_stack_alignment.
1279 * cfgexpand.c (gimple_expand_cfg): Initialise it.
1280 * explow.c (allocate_dynamic_stack_space): Set it. Simplify
1281 alignment requirements given the known alignment of dynamic_offset.
1282 * function.c (instantiate_virtual_regs): Align dtnamic_offset.
1283
1284 2012-08-02 Kenneth Zadeck <zadeck@naturalbridge.com>
1285
1286 * cfgexpand.c (expand_debug_locations): Encapsulate test for
1287 CONST_DOUBLE in macro.
1288 * combine.c (try_combine, gen_lowpart_for_combine): Ditto.
1289 * cprop.c (implicit_set_cond_p): Ditto.
1290 * cselib.c (rtx_equal_for_cselib_1): Ditto.
1291 * expmed.c (expand_mult): Ditto.
1292 * expr.c (convert_modes): Ditto.
1293 * ira-costs.c (record_reg_classes): Ditto.
1294 * ira-lives.c (single_reg_class): Ditto.
1295 * optabs.c (expand_copysign_absneg, expand_copysign): Ditto.
1296 * print-rtl.c (print_rtx): Ditto.
1297 * recog.c (simplify_while_replacing, const_double_operand)
1298 (asm_operand_ok, constrain_operands): Ditto.
1299 * reg-stack.c (subst_stack_regs_pat): Ditto.
1300 * reload.c (find_reloads, find_equiv_reg): Ditto.
1301 * rtlanal.c (replace_rtx): Remove test.
1302 * rtlanal.c (constant_pool_constant_p, split_double): Encapsulate
1303 test for CONST_DOUBLE in macro.
1304 * simplify-rtx.c (mode_signbit_p, avoid_constant_pool_reference)
1305 (simplify_unary_operation_1, simplify_const_unary_operation)
1306 (simplify_binary_operation_1, simplify_const_binary_operation)
1307 (simplify_relational_operation_1)
1308 (simplify_const_relational_operations)
1309 (implify_subreg): Ditto.
1310 * varasm.c (output_constant_pool_2): Ditto.
1311 * rtl.h (CONST_DOUBLE_AS_INT_P, CONST_DOUBLE_AS_FLOAT_P): New macros.
1312 * rtl.def (CONST_DOUBLE): Updated comments.
1313
1314 2012-08-02 Richard Sandiford <rdsandiford@googlemail.com>
1315
1316 PR target/51931
1317 * config/mips/mips-protos.h (mips_strip_unspec_address): Declare.
1318 * config/mips/mips.c (mips_strip_unspec_address): Make extern.
1319 (mips16_rewrite_pool_constant): Make a copy of the pool constant
1320 before adding to a PC-relative table.
1321 (mips16_lay_out_constants): Add a SPLIT_P parameter.
1322 (mips16_load_branch_target, mips16_split_long_branches): New functions.
1323 (mips_reorg): Update call to mips16_lay_out_constants.
1324 Call mips16_split_long_branches.
1325 * config/mips/predicates.md (pc_or_label_operand): Delete.
1326 * config/mips/mips.md (length): Add a calculation for MIPS16 branches.
1327 Move the extended_mips16 handling further down.
1328 (*branch_equality<mode>_mips16): Replace use pc_or_label_operand
1329 with explicit label_ref and pc. Follow the usual operand numbering.
1330 (*branch_equality<mode>_mips16_inverted): New pattern.
1331 (*jump_mips16): Add length attribute.
1332 (indirect_jump_and_restore_<mode>): New pattern.
1333 (consttable_int): Call mips_strip_unspec_address on the operand.
1334
1335 2012-08-02 Richard Sandiford <rdsandiford@googlemail.com>
1336
1337 * recog.c (split_insn): Copy the original SET_SRC before using
1338 it as a note.
1339
1340 2012-08-02 Richard Sandiford <rdsandiford@googlemail.com>
1341
1342 * reorg.c (dbr_schedule): Delete REG_BR_PRED loop.
1343
1344 2012-08-02 Marc Glisse <marc.glisse@inria.fr>
1345
1346 PR tree-optimization/53805
1347 * fold-const.c (invert_tree_comparison): Invert ORDERED_EXPR and
1348 UNORDERED_EXPR even for trapping floating point.
1349
1350 2012-08-02 H.J. Lu <hongjiu.lu@intel.com>
1351
1352 PR middle-end/53321
1353 PR middle-end/53865
1354 * ipa-inline-analysis.c (inline_free_summary): Return if
1355 inline_edge_summary_vec is NULL.
1356
1357 * ipa-split.c (execute_split_functions): Check if a function
1358 is inlinable only if inline_edge_summary_vec != NULL.
1359
1360 * ipa.c (symtab_remove_unreachable_nodes): Restore
1361 cgraph_propagate_frequency call when something was changed.
1362 (free_inline_summary): New function.
1363 (pass_ipa_free_inline_summary): New pass.
1364
1365 * passes.c (init_optimization_passes): Add
1366 pass_ipa_free_inline_summary before pass_ipa_tree_profile.
1367
1368 * timevar.def (TV_IPA_FREE_INLINE_SUMMARY): New.
1369
1370 * tree-pass.h (pass_ipa_free_inline_summary): New.
1371
1372 2012-08-02 Richard Earnshaw <rearnsha@arm.com>
1373
1374 * arm.c (arm_gen_constant): Use UBFX for some AND operations when
1375 available.
1376
1377 2012-08-02 Richard Guenther <rguenther@suse.de>
1378
1379 * tree-into-ssa.c (struct common_info_d): New struct.
1380 (struct var_info_d, struct ssa_name_info): Use it.
1381 (get_ssa_name_ann): Adjust.
1382 (get_phi_state, set_phi_state): Remove.
1383 (get_common_info): New function.
1384 (get_current_def, set_current_def): Adjust.
1385 (get_def_blocks_for): Take a common info as param.
1386 (set_def_block): Call get_common_info once.
1387 (set_livein_block): Likewise.
1388 (find_def_blocks_for): Adjust.
1389 (insert_phi_nodes): Likewise.
1390 (register_new_def): Call get_common_info once.
1391 (get_reaching_def): Likewise.
1392 (rewrite_debug_stmt_uses): Likewise.
1393 (rewrite_leave_block): Likewise.
1394 (dump_currdefs): Likewise.
1395 (debug_var_infos_r): Adjust.
1396 (register_new_update_single): Call get_common_info once.
1397 (maybe_replace_use_in_debug_stmt): Likewise.
1398 (rewrite_update_leave_block): Likewise.
1399 (mark_use_interesting): Adjust.
1400 (create_new_def_for): Likewise.
1401 (update_ssa): Likewise.
1402
1403 2012-08-02 Michael Matz <matz@suse.de>
1404
1405 * tree-ssa-live.c (set_is_used): Return a bool.
1406 (mark_all_vars_used): Don't take data argument.
1407 (mark_all_vars_used_1): Adjust calls to above, merge handling
1408 of local and global vars.
1409 (remove_unused_scope_block_p): Don't take global_unused_vars,
1410 merge handling of local and global vars.
1411 (remove_unused_locals): Don't allocate/fill/pass global_unused_vars,
1412 use is_used_p for local and global vars.
1413
1414 2012-08-02 Richard Guenther <rguenther@suse.de>
1415
1416 * tree-flow.h (make_rename_temp): Remove.
1417 * tree-dfa.c (make_rename_temp): Likewise.
1418 * cgraphunit.c (thunk_adjust, assemble_thunk): Use create_tmp_reg
1419 instead of make_rename_temp.
1420 * omp-low.c (expand_omp_for_generic, expand_omp_for_static_nochunk,
1421 expand_omp_atomic_pipeline): Likewise.
1422 * trans-mem.c (tm_log_emit_save_or_restores, build_tm_load,
1423 build_tm_store, expand_call_tm, expand_transaction,
1424 ipa_tm_insert_gettmclone_call): Likewise.
1425 * tree-complex.c (expand_complex_div_wide): Likewise.
1426 * tree-mudflap.c (mf_decl_cache_locals, mf_build_check_statement_for):
1427 Likewise.
1428 * tree-ssa-loop-im.c (execute_sm_if_changed_flag_set, execute_sm):
1429 Likewise.
1430 * tree-ssa-math-opts.c (insert_reciprocals): Likewise.
1431 * value-prof.c (gimple_divmod_fixed_value, gimple_mod_pow2,
1432 gimple_mod_subtract): Likewise.
1433
1434 2012-08-02 Richard Guenther <rguenther@suse.de>
1435
1436 * tree-flow.h (set_default_def): Rename to ...
1437 (set_ssa_default_def): ... this. Take a struct function argument.
1438 (gimple_default_def): Rename to ...
1439 (ssa_default_def): ... this.
1440 (get_or_create_ssa_default_def): New function.
1441 * tree-dfa.c: Likewise.
1442 (dump_variable): Adjust.
1443 * ipa-prop.c (ipa_analyze_params_uses): Adjust, properly check
1444 for used parameters.
1445 * ipa-split.c (consider_split): Adjust, avoid repeated default-def
1446 lookups.
1447 (split_function): Likewise.
1448 * lto-streamer-in.c (input_ssa_names): Adjust.
1449 * omp-low.c (expand_omp_taskreg): Likewise.
1450 * tree-cfg.c (replace_ssa_name): Adjust, no need to push/pop cfun.
1451 * tree-complex.c (init_parameter_lattice_values): Adjust.
1452 (get_component_ssa_name): Likewise.
1453 (update_parameter_components): Likewise.
1454 * tree-inline.c (remap_ssa_name): Likewise.
1455 (setup_one_parameter): Likewise.
1456 (initialize_inlined_parameters): Likewise.
1457 (declare_return_variable): Likewise.
1458 (expand_call_inline): Likewise.
1459 (tree_function_versioning): Likewise.
1460 * tree-into-ssa.c (get_default_def_for): Remove.
1461 (get_reaching_def): Use get_or_create_ssa_default_def instead.
1462 * tree-predcom.c (replace_ref_with): Adjust.
1463 * tree-sra.c (get_repl_default_def_ssa_name): Likewise.
1464 (is_unused_scalar_param): Likewise.
1465 (ptr_parm_has_direct_uses): Likewise.
1466 (sra_ipa_reset_debug_stmts): Likewise.
1467 * tree-ssa-coalesce.c (create_outofssa_var_map): Adjust.
1468 * tree-ssa-copyrename.c (copy_rename_partition_coalesce): Likewise.
1469 * tree-ssa-live.c (verify_live_on_entry): Likewise.
1470 * tree-ssa-math-opts.c (execute_cse_reciprocals): Likewise,
1471 avoid repeated default def lookups.
1472 * tree-ssa-sccvn.c (run_scc_vn): Likewise.
1473 * tree-tailcall.c (arg_needs_copy_p): Adjust.
1474 (tree_optimize_tail_calls_1): Likewise.
1475
1476 2012-08-02 Richard Guenther <rguenther@suse.de>
1477
1478 PR tree-optimization/50672
1479 Revert
1480 2012-08-01 Richard Guenther <rguenther@suse.de>
1481
1482 * tree-ssa-tail-merge.c (release_last_vdef): Remove.
1483 (replace_block_by): Adjust.
1484
1485 2012-08-02 Richard Guenther <rguenther@suse.de>
1486
1487 * tree-dfa.c (referenced_var_lookup): Remove.
1488 (find_referenced_vars): Remove.
1489 (pass_referenced_vars): Likewise.
1490 (make_rename_temp): Do not add referenced vars.
1491 (dump_referenced_vars): Remove.
1492 (debug_referenced_vars): Likewise.
1493 (dump_dfa_stats): Do not dump referenced var stats.
1494 (find_vars_r): Remove.
1495 (find_referenced_vars_in): Likewise.
1496 (referenced_var_check_and_insert): Likewise.
1497 (add_referenced_var_1): Likewise.
1498 (remove_referenced_var): Likewise.
1499 * tree-flow.h (referenced_var_lookup): Likewise.
1500 (struct gimple_df): Remove referenced_vars member.
1501 (typedef referenced_var_iterator): Remove.
1502 (FOR_EACH_REFERENCED_VAR): Likewise.
1503 (num_referenced_vars): Likewise.
1504 (debug_referenced_vars, dump_referenced_vars): Likewise.
1505 (add_referenced_var_1, add_referenced_var): Likewise.
1506 (remove_referenced_var): Likewise.
1507 (find_referenced_vars_in): Likewise.
1508 * tree-flow-inline.h (gimple_referenced_vars): Remove.
1509 (first_referenced_var): Likewise.
1510 (end_referenced_vars_p): Likewise.
1511 (next_referenced_var): Likewise.
1512 * cfgexpand.c (update_alias_info_with_stack_vars): Remove assert.
1513 * gimple-pretty-print.c (pp_points_to_solution): Dump UIDs
1514 unconditionally.
1515 * tree-into-ssa.c (dump_decl_set): Likewise.
1516 (pass_build_ssa): Do not require PROP_referenced_vars.
1517 * tree-ssa.c (target_for_debug_bind): Virtual operands are
1518 not suitable, but all register type vars are.
1519 (init_tree_ssa): Do not allocate referenced vars.
1520 (delete_tree_ssa): Do not free referenced vars.
1521 * cgraphunit.c (init_lowered_empty_function): Do not set
1522 PROP_referenced_vars.
1523 (assemble_thunk): Do not add referenced vars.
1524 * gimple-fold.c (canonicalize_constructor_val): Likewise.
1525 (gimplify_and_update_call_from_tree): Likewise.
1526 * gimple-streamer-in.c (input_bb): Likewise.
1527 * passes.c (init_optimization_passes): Do not run
1528 pass_referenced_vars.
1529 (dump_properties): Do not dump PROP_referenced_vars.
1530 * tree-inline.c (remap_decl): Do not add referenced vars.
1531 (remap_gimple_op_r): Likewise.
1532 (copy_tree_body_r): Likewise.
1533 (copy_bb): Likewise.
1534 (setup_one_parameter): Likewise.
1535 (declare_return_variable): Likewise.
1536 (copy_decl_for_dup_finish): Likewise.
1537 (copy_arguments_for_versioning): Likewise.
1538 (tree_function_versioning): Likewise.
1539 * tree-pass.h (PROP_referenced_vars): Remove.
1540 (pass_referenced_vars): Likewise.
1541 * tree-profile.c (gimple_gen_edge_profiler): Do not add
1542 referenced vars.
1543 (gimple_gen_interval_profiler): Likewise.
1544 (gimple_gen_pow2_profiler): Likewise.
1545 (gimple_gen_one_value_profiler): Likewise.
1546 (gimple_gen_ic_profiler): Likewise.
1547 (gimple_gen_average_profiler): Likewise.
1548 (gimple_gen_ior_profiler): Likewise.
1549 * tree-ssa-live.c (remove_unused_locals): Do not touch referenced vars.
1550 * tree-cfg.c (replace_ssa_name): Do not add referenced vars.
1551 (move_stmt_op): Likewise.
1552 * tree-ssa-operands.c (create_vop_var): Likewise.
1553 * gimple-low.c (record_vars_into): Likewise.
1554 * gimplify.c (gimple_regimplify_operands): Likewise.
1555 (force_gimple_operand_1): Likewise.
1556 * omp-low.c (expand_omp_for_generic): Likewise.
1557 (expand_omp_for_static_chunk): Likewise.
1558 (expand_omp_atomic_pipeline): Likewise.
1559 * graphite-clast-to-gimple.c (graphite_create_new_loop): Likewise.
1560 (translate_clast_assignment): Likewise.
1561 * graphite-sese-to-poly.c (create_zero_dim_array): Likewise.
1562 (handle_scalar_deps_crossing_scop_limits): Likewise.
1563 * ipa-prop.c (ipa_modify_formal_parameters): Likewise.
1564 * ipa-split.c (split_function): Likewise.
1565 * matrix-reorg.c (transform_access_sites): Likewise.
1566 * trans-mem.c (tm_log_add): Likewise.
1567 (ipa_tm_insert_gettmclone_call): Likewise.
1568 * tree-complex.c (create_one_component_var): Likewise.
1569 * tree-if-conv.c (ifc_temp_var): Likewise.
1570 * tree-parloops.c (take_address_of): Likewise.
1571 (initialize_reductions): Likewise.
1572 (separate_decls_in_region_name): Likewise.
1573 (create_call_for_reduction_1): Likewise.
1574 (separate_decls_in_region): Likewise.
1575 * tree-predcom.c (predcom_tmp_var): Likewise.
1576 (reassociate_to_the_same_stmt): Likewise.
1577 * tree-sra.c (build_ref_for_offset): Likewise.
1578 (create_access_replacement): Likewise.
1579 (get_replaced_param_substitute): Likewise.
1580 (sra_ipa_reset_debug_stmts): Likewise.
1581 * tree-ssa-loop-im.c (rewrite_reciprocal): Likewise.
1582 (rewrite_bittest): Likewise.
1583 * tree-ssa-loop-ivopts.c (create_new_iv): Likewise.
1584 * tree-ssa-loop-manip.c (create_iv): Likewise.
1585 (tree_transform_and_unroll_loop): Likewise.
1586 * tree-ssa-math-opts.c (powi_as_mults): Likewise.
1587 (build_and_insert_call): Likewise.
1588 (gimple_expand_builtin_cabs): Likewise.
1589 (execute_optimize_bswap): Likewise.
1590 * tree-ssa-phiopt.c (conditional_replacement): Likewise.
1591 (abs_replacement): Likewise.
1592 (cond_store_replacement): Likewise.
1593 (cond_if_else_store_replacement_1): Likewise.
1594 * tree-ssa-phiprop.c (phiprop_insert_phi): Likewise.
1595 * tree-ssa-pre.c (get_representative_for): Likewise.
1596 (create_expression_by_pieces): Likewise.
1597 (insert_into_preds_of_block): Likewise.
1598 * tree-ssa-propagate.c (update_call_from_tree): Likewise.
1599 * tree-ssa-reassoc.c (undistribute_ops_list): Likewise.
1600 (eliminate_redundant_comparison): Likewise.
1601 (rewrite_expr_tree_parallel): Likewise.
1602 (get_reassoc_pow_ssa_name): Likewise.
1603 * tree-ssa-strlen.c (get_string_length): Likewise.
1604 * tree-switch-conversion.c (emit_case_bit_tests): Likewise.
1605 (build_arrays): Likewise.
1606 * tree-tailcall.c (adjust_return_value_with_ops): Likewise.
1607 (create_tailcall_accumulator): Likewise.
1608 * tree-vect-data-refs.c (vect_get_new_vect_var): Likewise.
1609 (vect_create_addr_base_for_vector_ref): Likewise.
1610 (vect_permute_store_chain): Likewise.
1611 (vect_permute_load_chain): Likewise.
1612 * tree-vect-generic.c (expand_vector_divmod): Likewise.
1613 * tree-vect-loop-manip.c (set_prologue_iterations): Likewise.
1614 (vect_build_loop_niters): Likewise.
1615 (vect_generate_tmps_on_preheader): Likewise.
1616 (vect_update_ivs_after_vectorizer): Likewise.
1617 (vect_gen_niters_for_prolog_loop): Likewise.
1618 (vect_do_peeling_for_alignment): Likewise.
1619 (vect_create_cond_for_align_checks): Likewise.
1620 * tree-vect-patterns.c (vect_recog_temp_ssa_var): Likewise.
1621 (vect_handle_widen_op_by_const): Likewise.
1622 (vect_operation_fits_smaller_type): Likewise.
1623 (vect_recog_over_widening_pattern): Likewise.
1624 * tree-vect-stmts.c (vect_init_vector): Likewise.
1625
1626 2012-08-01 Alexandre Oliva <aoliva@redhat.com>
1627
1628 PR debug/52983
1629 * valtrack.c (dead_debug_insert_temp): Use cleanup_auto_inc_dec.
1630
1631 2012-08-01 Alexandre Oliva <aoliva@redhat.com>
1632
1633 PR debug/52983
1634 * valtrack.c (cleanup_auto_inc_dec): Implement unconditionally,
1635 falling back to copy_rtx on non-autoinc machines.
1636 (propagate_for_debug_subst): Always use cleanup_auto_inc_dec.
1637
1638 2012-08-01 Alexandre Oliva <aoliva@redhat.com>
1639
1640 PR debug/52983
1641 * valtrack.h, valtrack.c: New.
1642 * Makefile.in (VALTRACK_H): New.
1643 (OBJS): Add valtrack.o.
1644 (valtrack.o): New.
1645 (cselib.o, dce.o, df-problems.o, combine.o): Add VALTRACK_H.
1646 * combine.c: Include valtrack.h.
1647 (make_compound_operation): Publish.
1648 (cleanup_auto_inc_dec): Move to valtrack.c.
1649 (struct rtx_subst_pair, propagate_for_debug_subst): Likewise.
1650 (propagate_for_debug): Likewise. Add this_basic_block parameter.
1651 Adjust all callers.
1652 * cselib.c: Include valtrack.h.
1653 * dce.c: Likewise.
1654 * df-problems.c: Likewise.
1655 (dead_debug_init, dead_debug_reset_uses): Move to valtrack.c.
1656 (dead_debug_finish, dead_debug_add): Likewise.
1657 (dead_debug_insert_temp): Likewise.
1658 * df.h (struct dead_debug_use): Move to valtrack.h.
1659 (struct dead_debug, enum debug_temp_where): Likewise.
1660 (dead_debug_init, dead_debug_reset_uses): Move to valtrack.h.
1661 (dead_debug_finish, dead_debug_add): Likewise.
1662 (dead_debug_insert_temp): Likewise.
1663 * rtl.h (make_compound_operation): Declare.
1664
1665 2012-08-01 Catherine Moore <clm@codesourcery.com>
1666 Sandra Loosemore <sandra@codesourcery.com>
1667
1668 * config/mips/mips-cpus.def (34kn): New.
1669 * config/mips/mips.h (MIPS_ARCH_FLOAT_SPEC): Add 34kn.
1670 (BASE_DRIVER_SELF_SPECS): Do not imply -mdsp for the 34kn.
1671 * config/mips/mips-tables.opt: Regenerate.
1672 * doc/invoke.texi (MIPS Options): Document -march=34kn.
1673
1674 2012-08-01 Richard Henderson <rth@redhat.com>
1675
1676 * expmed.h (NUM_MODE_PARTIAL_INT): New.
1677 (NUM_MODE_VECTOR_INT, NUM_MODE_IP_INT, NUM_MODE_IPV_INT): New.
1678 (struct expmed_op_cheap): Size one array on NUM_MODE_IPV_INT.
1679 (struct expmed_op_costs): Likewise.
1680 (struct target_expmed): Size x_convert_cost on NUM_MODE_IP_INT.
1681 (expmed_mode_index): New.
1682 (expmed_op_cheap_ptr, expmed_op_cost_ptr): Use expmed_mode_index.
1683 (convert_cost_ptr): Likewise.
1684 * expmed.c (struct init_expmed_rtl): Rename convert to trunc.
1685 (init_expmed_one_conv): Split out from ...
1686 (init_expmed_one_mode): ... here. Iterate conversions over
1687 partial integer modes too.
1688 (init_expmed): Iterate over partial integer modes too.
1689
1690 2012-08-01 Richard Henderson <rth@redhat.com>
1691
1692 * config/m32c/m32c.c (TARGET_INIT_LIBFUNCS): Remove.
1693 (m32c_init_libfuncs): Remove.
1694 * config/m32c/cond.md (cstore<QHPSI>4_16): Rename from cstore<QHPSI>4.
1695 (cstore<QHPSI>4): New expander.
1696
1697 2012-08-01 Richard Guenther <rguenther@suse.de>
1698
1699 * tree-flow-inline.h (referenced_var): Remove.
1700 * tree-ssa-coalesce.c (create_outofssa_var_map): Remove duplicate
1701 checking code.
1702 * tree-sra.c (candidates): New global hashtable.
1703 (candidate): New function.
1704 (sra_initialize): Initialize candidates.
1705 (sra_deinitialize): Free candidates.
1706 (disqualify_candidate): Remove candidate from candidates.
1707 (maybe_add_sra_candidate): New function.
1708 (find_var_candidates): Walk over all local decls and parameters,
1709 add candidates to candidates hashtable.
1710 (find_param_candidates): Add candidates to candidates hashtable.
1711 (analyze_all_variable_accesses): Use candidate instead of
1712 referenced_var.
1713
1714 2012-08-01 Tom de Vries <tom@codesourcery.com>
1715
1716 * tree-vrp.c (find_case_label_ranges): New function.
1717 (vrp_visit_switch_stmt, simplify_switch_using_ranges): Use
1718 find_case_label_ranges instead of find_case_label_range. Handle second
1719 range.
1720
1721 2012-08-01 Michael Matz <matz@suse.de>
1722
1723 * tree-complex.c (init_parameter_lattice_values): Don't call var_ann.
1724 * tree-dfa.c (struct dfa_stats_d): Remove num_var_anns member.
1725 (dump_dfa_stats): Don't dump stats about var anns.
1726 (collect_dfa_stats): Don't collect them.
1727 (add_referenced_var_1): Don't set var annotation pointers.
1728 (remove_referenced_var): Ditto, and only remove it it's in the
1729 hash table.
1730
1731 * tree-flow-inline.h (var_ann): Remove.
1732 * tree-flow.h (struct var_ann_d, var_ann_t): Remove.
1733
1734 * tree-inline.c (remapped_type): Remove.
1735 (can_be_nonlocal): Most variable will be considered live here,
1736 return false earlier.
1737 (remap_decls): Don't call var_ann, all variables will be considered
1738 referenced here.
1739 (copy_debug_stmt): Ditto, and use is_global_var.
1740
1741 * tree-into-ssa.c (rewrite_debug_stmt_uses): Use get_current_def to
1742 determine if a variable was referred to, not var_ann.
1743 * tree-ssa-live.c (remove_unused_scope_block_p): Don't check var_ann.
1744 (remove_unused_locals): Ditto.
1745 * tree-ssa.c (delete_tree_ssa): Don't free/clear var ann pointers.
1746 * tree-tailcall.c (arg_needs_copy_p): Don't check var_ann.
1747 * tree.c (copy_node_stat): Don't clear var ann pointer.
1748 * tree.h (tree_result_decl, tree_parm_decl, tree_var_decl): Remove
1749 ann member.
1750 (DECL_VAR_ANN_PTR): Remove.
1751
1752 2012-08-01 Michael Matz <matz@suse.de>
1753
1754 * tree-flow.h (struct var_ann_d): Rename used member.
1755 (set_is_used): Don't declare.
1756 * tree-flow-inline.h (clear_is_used): Remove.
1757 (set_is_used, is_used_p): Move to ...
1758 * tree-ssa-live.c (set_is_used, is_used_p): ... here, and use
1759 on the side bitmap.
1760 (usedvars): New bitmap.
1761 (dump_scope_block): Don't dump unusedness.
1762 (remove_unused_locals): Allocate and free usedvars.
1763 * tree-nrv.c (tree_nrv): Don't clear used flags here.
1764
1765 2012-08-01 Michael Matz <matz@suse.de>
1766
1767 * tree-flow.h (struct var_ann_d): Remove base_var_processed and
1768 base_index members.
1769 * tree-ssa-live.h (struct _var_map): Remove basevars member.
1770 (VAR_ANN_BASE_INDEX): Remove.
1771 * tree-ssa-live.c (var_map_base_init): Use a hash table instead
1772 of var annotation to compress index space. Don't deal with above
1773 removed members.
1774 (var_map_base_fini): Don't free basevars.
1775 (init_var_map): Don't clear basevars.
1776
1777 2012-08-01 Bill Schmidt <wschmidt@linux.ibm.com>
1778
1779 * gimple-ssa-strength-reduction.c (struct slsr_cand_d): Change
1780 base_name to base_expr.
1781 (struct cand_chain_d): Likewise.
1782 (base_cand_hash): Likewise.
1783 (base_cand_eq): Likewise.
1784 (record_potential_basis): Likewise.
1785 (alloc_cand_and_find_basis): Likewise.
1786 (create_mul_ssa_cand): Likewise.
1787 (create_mul_imm_cand): Likewise.
1788 (create_add_ssa_cand): Likewise.
1789 (create_add_imm_cand): Likewise.
1790 (slsr_process_cast): Likewise.
1791 (slsr_process_copy): Likewise.
1792 (dump_candidate): Likewise.
1793 (base_cand_dump_callback): Likewise.
1794 (unconditional_cands_with_known_stride_p): Likewise.
1795 (cand_increment): Likewise.
1796
1797 2012-08-01 Bill Schmidt <wschmidt@linux.ibm.com>
1798
1799 PR tree-optimization/46556
1800 * gimple-ssa-strength-reduction.c (enum cand_kind): Add CAND_REF.
1801 (base_cand_map): Change to hash table.
1802 (base_cand_hash): New function.
1803 (base_cand_free): Likewise.
1804 (base_cand_eq): Likewise.
1805 (lookup_cand): Change base_cand_map to hash table.
1806 (find_basis_for_candidate): Likewise.
1807 (base_cand_from_table): Exclude CAND_REF.
1808 (restructure_reference): New function.
1809 (slsr_process_ref): Likewise.
1810 (find_candidates_in_block): Call slsr_process_ref.
1811 (dump_candidate): Handle CAND_REF.
1812 (base_cand_dump_callback): New function.
1813 (dump_cand_chains): Change base_cand_map to hash table.
1814 (replace_ref): New function.
1815 (replace_refs): Likewise.
1816 (analyze_candidates_and_replace): Call replace_refs.
1817 (execute_strength_reduction): Change base_cand_map to hash table.
1818
1819 2012-08-01 Uros Bizjak <ubizjak@gmail.com>
1820
1821 * config/i386/i386.c (ix86_address_subreg_operand): Reject
1822 stack pointer.
1823 (ix86_print_operand_address): Assert that parts.base and parts.index
1824 are non-NULL after call to simplify_subreg.
1825
1826 2012-08-01 Richard Guenther <rguenther@suse.de>
1827
1828 * doc/tree-ssa.texi: Remove pieces mentioning mark_sym_for_renaming.
1829
1830 2012-08-01 Richard Guenther <rguenther@suse.de>
1831
1832 * graphite-clast-to-gimple.c (translate_clast_user): Rename
1833 virtual operands.
1834 * sese.c (graphite_copy_stmts_from_block): Do not rename virtual
1835 operands here.
1836 * tree-call-cdce.c (tree_call_cdce): Use
1837 mark_virtual_operands_for_renaming.
1838 * tree-eh.c (sink_clobbers): Simplify.
1839 * tree-flow.h (mark_sym_for_renaming): Remove.
1840 (mark_virtual_operands_for_renaming): New function.
1841 * tree-if-conv.c (tree_if_conversion): Use
1842 mark_virtual_operands_for_renaming.
1843 * tree-inline.c (update_ssa_across_abnormal_edges): Likewise.
1844 * tree-into-ssa.c (mark_sym_for_renaming): Remove.
1845 (mark_virtual_operands_for_renaming): New function.
1846 * tree-loop-distribution.c (tree_loop_distribution): Use
1847 mark_virtual_operands_for_renaming.
1848 * tree-ssa-dce.c (mark_virtual_operand_for_renaming): Do not
1849 update stmts, use mark_virtual_operands_for_renaming.
1850 * tree-ssa-tail-merge.c (release_last_vdef): Remove.
1851 (replace_block_by): Adjust.
1852 (tail_merge_optimize): Use mark_virtual_operands_for_renaming.
1853 * tree-tailcall.c (tree_optimize_tail_calls_1): Use
1854 mark_virtual_operands_for_renaming.
1855 * tree-vect-slp.c (vect_slp_transform_bb): Likewise.
1856 * tree-vectorizer.c (vectorize_loops): Likewise.
1857
1858 2012-08-01 Richard Guenther <rguenther@suse.de>
1859
1860 * tree-flow.h (struct gimple_df): Remove syms_to_rename member,
1861 add ssa_renaming_needed and rename_vops flags.
1862 (SYMS_TO_RENAME): Remove.
1863 (symbol_marked_for_renaming): Likewise.
1864 (mark_virtual_ops_for_renaming): Likewise.
1865 * tree-into-ssa.c (symbols_to_rename_set, symbols_to_rename):
1866 New globals.
1867 (mark_for_renaming, marked_for_renaming): New functions.
1868 (symbol_marked_for_renaming): Remove.
1869 (dump_currdefs): Adjust.
1870 (maybe_replace_use): Likewise.
1871 (maybe_replace_use_in_debug_stmt): Likewise.
1872 (maybe_register_def): Likewise.
1873 (rewrite_update_phi_arguments): Likewise.
1874 (rewrite_update_enter_block): Likewise.
1875 (fini_ssa_renamer): Clear update SSA status here ...
1876 (delete_update_ssa): ... not here. Free rename set.
1877 (prepare_block_for_update): Compute which decls need renaming.
1878 (dump_update_ssa): Adjust.
1879 (mark_sym_for_renaming): Adjust update SSA status for virtuals.
1880 (need_ssa_update_p): Adjust.
1881 (insert_updated_phi_nodes_for): Likewise.
1882 (update_ssa): Likewise.
1883 * tree-ssa-operands.c (finalize_ssa_defs): Adjust update SSA status
1884 for virtual and real operands.
1885 (finalize_ssa_uses): Likewise.
1886 * tree-ssanames.c (init_ssanames): Adjust.
1887 * tree-ssa.c (maybe_rewrite_mem_ref_base, maybe_optimize_var,
1888 execute_update_addresses_taken): Add bitmap to keep track of which
1889 candidates are suitable for rewriting and later renaming by SSA update.
1890 * matrix-reorg.c (transform_access_sites): Do not rename all defs.
1891 * tree-dfa.c (make_rename_temp): Do not mark real operands for
1892 renaming.
1893 * cgraphunit.c (assemble_thunk): Likewise.
1894 * gimplify.c (gimple_regimplify_operands): Likewise.
1895 (force_gimple_operand_1): Likewise.
1896 * ipa-prop.c (ipa_modify_formal_parameters): Likewise.
1897 * tree-inline.c (declare_return_variable): Likewise.
1898 * tree-parloops.c (separate_decls_in_region_stmt): Do not call
1899 mark_virtual_ops_for_renaming.
1900 (create_stores_for_reduction): Likewise.
1901 (create_loads_and_stores_for_name): Likewise.
1902 * tree-predcom.c (mark_virtual_ops_for_renaming): Remove.
1903 (initialize_root_vars_lm): Do not call mark_virtual_ops_for_renaming.
1904 (execute_load_motion): Likewise.
1905 (remove_stmt): Likewise.
1906 (execute_pred_commoning_chain): Likewise.
1907 * tree-sra.c (create_access_replacement): Do not rename real operands.
1908 (get_unrenamed_access_replacement): Unify with ...
1909 (get_access_replacement): ... this.
1910 (get_repl_default_def_ssa_name): Adjust.
1911 * tree-ssa-loop-im.c (move_computations_stmt): Manually update
1912 virtual SSA form.
1913 (rewrite_mem_ref_loc): Do not call mark_virtual_ops_for_renaming.
1914 * tree-ssa-loop-prefetch.c (emit_mfence_after_loop): Likewise.
1915
1916 2012-07-31 DJ Delorie <dj@redhat.com>
1917
1918 * config/s390/s390.c (s390_option_override): Disable DWARF 3/4
1919 extensions for TPF, unless specifically selected.
1920
1921 2012-08-01 Alan Modra <amodra@gmail.com>
1922
1923 PR target/54131
1924 * config/rs6000/rs6000.c (mem_operand_gpr): Don't limit range
1925 of lo_sum offsets. Comment. Assert mode at least word size
1926 rather than bypassing powerpc64 word offset check.
1927
1928 2012-07-31 Bill Schmidt <wschmidt@linux.ibm.com>
1929
1930 * config/rs6000/rs6000.c (rs6000_builtin_vectorization_cost): Revise
1931 costs for vec_perm and vec_promote_demote down to more natural values.
1932 (struct _rs6000_cost_data): New data structure.
1933 (rs6000_density_test): New function.
1934 (rs6000_init_cost): Change to use rs6000_cost_data.
1935 (rs6000_add_stmt_cost): Likewise.
1936 (rs6000_finish_cost): Perform density test when vectorizing a loop.
1937
1938 2012-07-31 Steven Bosscher <steven@gcc.gnu.org>
1939
1940 * sched-vis.c (print_exp): Handle FMA explicitly. Simplify handling
1941 of RTX_UNARY function-like operations. Print unknown expression
1942 RTX classes as pseudo-functions.
1943 (print_pattern): Simplify return pattern printing.
1944 (dump_insn_slim): Print the value of notes as a pattern for proper
1945 printing of CFA notes.
1946
1947 2012-07-31 Dehao Chen <dehao@google.com>
1948
1949 * predict.c (tree_estimate_probability_driver): Normalize the
1950 loop when initializing the loop optimizer.
1951
1952 2012-07-31 Richard Guenther <rguenther@suse.de>
1953
1954 * tree-flow.h (struct var_ann_d): Remove need_phi_state
1955 and current_def members.
1956 * tree-into-ssa.c (struct def_blocks_d): Remove var member.
1957 (def_blocks): Remove.
1958 (struct var_info_d): New.
1959 (var_infos): New hashtable.
1960 (struct ssa_name_info): Add def_blocks member.
1961 (get_ssa_name_ann): Adjust.
1962 (get_var_info): New function.
1963 (get_phi_state, set_phi_state, get_current_def,
1964 set_current_def, get_def_blocks_for, find_def_blocks_for): Adjust.
1965 (insert_phi_nodes_compare_def_blocks): Rename to ...
1966 (insert_phi_nodes_compare_var_infos): ... this and adjust.
1967 (insert_phi_nodes): Adjust.
1968 (dump_tree_ssa, dump_tree_ssa_stats): Adjust.
1969 (def_blocks_hash, def_blocks_eq, def_blocks_free): Remove.
1970 (debug_def_blocks_r): Rename to ...
1971 (debug_var_infos_r): ... this and adjust.
1972 (var_info_hash): New function.
1973 (var_info_eq): Likewise.
1974 (rewrite_blocks): Adjust.
1975 (init_ssa_renamer): Likewise.
1976 (fini_ssa_renamer): Likewise.
1977 (delete_update_ssa): Likewise.
1978 (update_ssa): Likewise.
1979 * tree-ssanames.c (release_dead_ssa_names): Do not clear current defs.
1980
1981 2012-07-31 Bill Schmidt <wschmidt@linux.ibm.com>
1982
1983 PR tree-optimization/53773
1984 * tree-vectorizer.h (struct _loop_vec_info): Add operands_swapped.
1985 (LOOP_VINFO_OPERANDS_SWAPPED): New macro.
1986 * tree-vect-loop.c (new_loop_vec_info): Initialize
1987 LOOP_VINFO_OPERANDS_SWAPPED field.
1988 (destroy_loop_vec_info): Restore canonical form.
1989 (vect_is_slp_reduction): Set LOOP_VINFO_OPERANDS_SWAPPED field.
1990 (vect_is_simple_reduction_1): Likewise.
1991
1992 2012-07-31 Steven Bosscher <steven@gcc.gnu.org>
1993
1994 * sched-vis.c (dump_insn_slim): Print print_rtx_head at the
1995 start of each new line.
1996 * final.c (final_scan_insn): If the final dump is requested as
1997 slim RTL, dump slim RTL to the assembly file also.
1998
1999 2012-07-31 Andrey Belevantsev <abel@ispras.ru>
2000
2001 PR target/53975
2002
2003 * sel-sched-ir.c (has_dependence_note_reg_use): Clarify comment.
2004
2005 Revert
2006 2011-08-04 Sergey Grechanik <mouseentity@ispras.ru>
2007
2008 * sel-sched-ir.c (has_dependence_note_reg_use): Call ds_full_merge
2009 only if producer writes to the register given by regno.
2010
2011 2012-07-31 Nick Clifton <nickc@redhat.com>
2012
2013 * config/stormy16/stormy16.c (xstormy16_expand_prologue): Add
2014 support for reporting stack usage.
2015
2016 * config/frv/frv.c (QUAD): Fix typo.
2017 (frv_expand_prologue): Report stack usage.
2018
2019 2012-07-31 Steven Bosscher <steven@gcc.gnu.org>
2020
2021 PR pch/53880
2022 * gengtype.c (struct walk_type_data): Add have_this_obj field.
2023 (walk_type): For functions that take a this_obj argument and
2024 that process fields with a GTY((length)) argument, write the
2025 test that write_types_local_process_field will write also at the
2026 head of the loop, effectively unswitching the loop.
2027 (write_func_for_structure, write_local_func_for_structure): Clear
2028 have_this_obj before calling walk_type.
2029 (write_local_func_for_structure): Set have_this_obj before walk_type.
2030 (write_array): Set have_this_obj for output of local pointer walking
2031 functions but not for marker functions.
2032 (write_types_local_process_field): Assert have_this_obj is set.
2033
2034 * rtl.h (simplify_using_condition): Adjust prototype using bitmap
2035 from coretypes.h.
2036
2037 2012-07-30 Nathan Froyd <froydnj@gcc.gnu.org>
2038
2039
2040 * defaults.h (GO_IF_MODE_DEPENDENT_ADDRESS): Delete.
2041 * targhooks.c (default_mode_dependent_address_p): Delete code
2042 for GO_IF_MODE_DEPENDENT_ADDRESS.
2043 * system.h (GO_IF_MODE_DEPENDENT_ADDRESS): Poison.
2044 * doc/tm.texi.in (GO_IF_MODE_DEPENDENT_ADDRESS): Delete documention.
2045 * doc/tm.texi: Regenerate.
2046 * config/alpha.h (GO_IF_MODE_DEPENDENT_ADDRESS): Move code to...
2047 * config/alpha.c (alpha_mode_dependent_address_p): ...here. New
2048 function.
2049 (TARGET_MODE_DEPENDENT_ADDRESS_P): Define.
2050 * config/cr16/cr16.h (GO_IF_MODE_DEPENDENT_ADDRESS): Delete.
2051 * config/mep/mep.h (GO_IF_MODE_DEPENDENT_ADDRESS): Delete.
2052 * config/vax/vax-protos.h (vax_mode_dependent_address_p): Delete.
2053 * config/vax/vax.h (GO_IF_MODE_DEPENDENT_ADDRESS): Delete.
2054 * config/vax/vax.c (vax_mode_dependent_address_p): Make static.
2055 Take a const_rtx.
2056 (TARGET_MODE_DEPENDENT_ADDRESS_P): Define.
2057
2058 2012-07-30 Nathan Froyd <froydnj@gcc.gnu.org>
2059
2060 * expmed.h (NUM_MODE_VECTOR_INT): Define.
2061 (struct expmed_op_cheap, struct expmed_op_costs): New structures.
2062 (struct target_expmed): Convert x_mul_highpart_cost and
2063 x_mul_widen_cost fields to be indexed by integer modes.
2064 Convert x_sdiv_pow2_cheap and x_smod_pow2_cheap fields to be
2065 of type struct expmed_op_cheap. Convert other cost fields to be
2066 of type struct_expmed_op_costs.
2067 (mul_widen_cost_ptr, mul_highpart_cost_ptr): Adjust for new
2068 indexing of respective fields.
2069 (expmed_op_cheap_ptr): New function.
2070 (sdiv_pow2_cheap_ptr, smod_pow2_cheap_ptr): Call it.
2071 (expmed_op_cost_ptr): New function.
2072 (add_cost_ptr, neg_cost_ptr, shift_cost_ptr, shiftadd_cost_ptr,
2073 shiftsub0_cost_ptr, shiftsub1_cost_ptr, mul_cost_ptr,
2074 sdiv_cost_ptr, udiv_cost_ptr): Call it.
2075
2076 2012-07-30 Sandra Loosemore <sandra@codesourcery.com>
2077 Julian Brown <julian@codesourcery.com>
2078
2079 * doc/invoke.texi (MIPS Options): Document -mno-float.
2080 * config/mips/mips.h (MIPS_ARCH_FLOAT_SPEC): Make it know
2081 about -mno-float.
2082
2083 2012-07-30 Joseph Myers <joseph@codesourcery.com>
2084
2085 * doc/sourcebuild.texi (Subdirectories): Document common subdirectory.
2086
2087 2012-07-30 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
2088
2089 PR middle-end/53823
2090 * expmed.c (expand_mult): Skip synth_mult for constant double op1 except
2091 for special cases. Don't initialize coeff and is_neg.
2092
2093 2012-07-30 Ulrich Weigand <ulrich.weigand@linaro.org>
2094 Richard Earnshaw <rearnsha@arm.com>
2095
2096 * target.def (vector_alignment): New target hook.
2097 * doc/tm.texi.in (TARGET_VECTOR_ALIGNMENT): Document new hook.
2098 * doc/tm.texi: Regenerate.
2099 * targhooks.c (default_vector_alignment): New function.
2100 * targhooks.h (default_vector_alignment): Add prototype.
2101 * stor-layout.c (layout_type): Use targetm.vector_alignment.
2102 * config/arm/arm.c (arm_vector_alignment): New function.
2103 (TARGET_VECTOR_ALIGNMENT): Define.
2104
2105 * tree-vect-data-refs.c (vect_update_misalignment_for_peel): Use
2106 vector type alignment instead of size.
2107 * tree-vect-loop-manip.c (vect_do_peeling_for_loop_bound): Use
2108 element type size directly instead of computing it from alignment.
2109 Fix variable naming and comment.
2110
2111 2012-07-30 Kirill Yukhin <kirill.yukhin@intel.com>
2112 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
2113
2114 * common/config/i386/i386-common.c (OPTION_MASK_ISA_RDSEED_SET): New.
2115 (OPTION_MASK_ISA_RDSEED_UNSET): Likewise.
2116 (ix86_handle_option): Handle mrdseed option.
2117 * config.gcc (i[34567]86-*-*): Add rdseedintrin.h.
2118 (x86_64-*-*): Likewise.
2119 * config/i386/prfchwintrin.h: New header.
2120 * config/i386/cpuid.h (bit_RDSEED): New.
2121 * config/i386/driver-i386.c (host_detect_local_cpu): Detect
2122 RDSEED support.
2123 * config/i386/i386-c.c: Define __RDSEED__ if needed.
2124 * config/i386/i386.c (ix86_target_string): Define -mrdseed option.
2125 (PTA_RDSEED): New.
2126 (ix86_option_override_internal): Handle new option.
2127 (ix86_valid_target_attribute_inner_p): Add OPT_mrdseed.
2128 (ix86_builtins): Add enum entries for RDSEED* builtins.
2129 (ix86_init_mmx_sse_builtins): Define new builtins.
2130 (ix86_expand_builtin): Expand RDSEED* builtins.
2131 * config/i386/i386.h (TARGET_RDSEED): New.
2132 * config/i386/i386.md (rdseed<mode>_1): New.
2133 * config/i386/i386.opt (mrdseed): New.
2134 * config/i386/x86intrin.h: Include rdseedintrin.h.
2135
2136 2012-07-30 Richard Guenther <rguenther@suse.de>
2137
2138 * tree-into-ssa.c (mark_def_sites): Also process virtual operands.
2139 (rewrite_stmt): Likewise.
2140 (rewrite_enter_block): Likewise.
2141 (pass_build_ssa): Do not update virtual SSA form during TODO.
2142 (mark_symbol_for_renaming): Do nothing if we are not in SSA form.
2143 * lto-streamer-in.c (lto_read_body): Set in_ssa_p earlier.
2144
2145 2012-07-30 Oleg Endo <olegendo@gcc.gnu.org>
2146
2147 PR target/39423
2148 * config/gcc/sh/sh.md (*movsi_index_disp, *movhi_index_disp): New
2149 insns.
2150
2151 2012-07-30 Oleg Endo <olegendo@gcc.gnu.org>
2152
2153 PR target/51244
2154 * config/sh/sh.md (mov_neg_si_t): Move to Scc instructions section.
2155 Use t_reg_operand predicate. Add split for negated case.
2156 (ashrsi2_31): Pass get_t_reg_rtx to gen_mov_neg_si_t.
2157 * config/sh/sh.c (expand_ashiftrt): Likewise.
2158
2159 2012-07-30 Oleg Endo <olegendo@gcc.gnu.org>
2160
2161 PR target/54089
2162 * config/sh/sh.md (ashlsi3_d): Invoke gen_shifty_op directly instead
2163 of trying to emit ashlsi3_n.
2164
2165 2012-07-30 Laurynas Biveinis <laurynas.biveinis@gmail.com>
2166 Steven Bosscher <steven@gcc.gnu.org>
2167
2168 * gengtype.c (adjust_field_type): Diagnose duplicate "length"
2169 option applications and option being applied to arrays of atomic types.
2170 (walk_type): Allow "atomic" option on strings too.
2171 * dwarf2out.h (struct dw_vec_struct): Use the "atomic" GTY option
2172 for the array field.
2173 * vec.h: Describe the atomic object "A" type of the macros in
2174 the header comment.
2175 (VEC_T_GTY_ATOMIC, DEF_VEC_A, DEF_VEC_ALLOC_A): Define.
2176 * emit-rtl.c (locations_locators_vals): use the atomic object vector.
2177 * doc/gty.texi: Clarify that GTY option "length" is only for
2178 arrays of non-atomic objects. Fix typo in the description of the
2179 "atomic" option.
2180
2181 2012-07-27 Uros Bizjak <ubizjak@gmail.com>
2182
2183 * config/i386/i386.c (ix86_avoid_lea_for_addr): Handle
2184 zero-extended addresses. Return false if the address has less
2185 than two components.
2186 (ix86_split_lea_for_addr): Unconditionally convert target and
2187 all address operands to requested mode.
2188 * config/i386/i386.md (*lea<mode>): Recover operands from curr_insn.
2189 Pass SImode to ix86_split_lea_for_addr when splitting zero-extended
2190 address.
2191 (zero-extended add splitter): New splitter to conditionally split
2192 non-destructive adds.
2193 (*zero_extendsidi2_rex64): Conditionally emit leal instead of movl.
2194
2195 2012-07-28 Alan Modra <amodra@gmail.com>
2196
2197 PR target/54093
2198 * config/rs6000/rs6000.c (rs6000_secondary_reload): Limit 32-bit
2199 multi-gpr reload to cases where predicate passes. Do the same for
2200 64-bit multi-gpr reload.
2201
2202 2012-07-27 Nathan Froyd <froydnj@gcc.gnu.org>
2203
2204 * expmed.h (alg_hash, alg_hash_used_p, sdiv_pow2_cheap,
2205 smod_pow2_cheap, zero_cost, add_cost, neg_cost, shift_cost)
2206 shiftadd_cost, shiftsub0_cost, shiftsub1_cost, mul_cost,
2207 sdiv_cost, udiv_cost, mul_widen_cost, mul_highpart_cost): Delete
2208 macro definitions and re-purpose as inline functions.
2209 (alg_hash_entry_ptr, set_alg_hash_used_p, sdiv_pow2_cheap_ptr,
2210 set_sdiv_pow2_cheap, smod_pow2_cheap_ptr, set_smod_pow2_cheap,
2211 zero_cost_ptr, set_zero_cost, add_cost_ptr, set_add_cost,
2212 neg_cost_ptr, set_neg_cost, shift_cost_ptr, set_shift_cost,
2213 shiftadd_cost_ptr, set_shiftadd_cost, shiftsub0_cost_ptr,
2214 set_shiftsub0_cost, shiftsub1_cost_ptr, set_shiftsub1_cost,
2215 mul_cost_ptr, set_mul_cost, sdiv_cost_ptr, set_sdiv_cost,
2216 udiv_cost_ptr, set_udiv_cost, mul_widen_cost_ptr,
2217 set_mul_widen_cost, mul_highpart_cost_ptr, set_mul_highpart_cost):
2218 New functions.
2219 (convert_cost_ptr): New function, split out from...
2220 (set_convert_cost, convert_cost): ...here.
2221 * expmed.c, tree-ssa-loop-ivopts.c: Update for new functions.
2222 * gimple-ssa-strength-reduction.c: Likewise.
2223
2224 2012-07-20 Ryan Mansfield <rmansfield@qnx.com>
2225
2226 * gcc.c (main): Move GCC_DRIVER_HOST_INITIALIZATION after
2227 diagnostic_initialize.
2228
2229 2012-07-27 Oleg Endo <olegendo@gcc.gnu.org>
2230
2231 PR target/54089
2232 * config/sh/sh.c (shiftcosts): Remove case where first operand
2233 is a const_int. Move COSTS_N_INSNS usage into caller ...
2234 (sh_rtx_costs) ... here. Return false when shiftcosts cannot be
2235 calculated instead of MAX_COST.
2236
2237 2012-07-27 Richard Guenther <rguenther@suse.de>
2238
2239 * tree-cfg.c (gimple_can_merge_blocks_p): Do more fine-grained
2240 check whether SSA form is not up-to-date.
2241 * tree-flow.h (name_mappings_registered_p): Remove.
2242 * tree-into-ssa.c (struct repl_map_d): Remove.
2243 (repl_tbl): Likewise.
2244 (struct ssa_name_info): Add repl_set member.
2245 (update_ssa_obstack): New static global.
2246 (get_ssa_name_ann): Initialize repl_set.
2247 (clear_ssa_name_info): Assert age did not wrap.
2248 (repl_map_hash, repl_map_eq, repl_map_free): Remove.
2249 (names_replaced_by): Adjust.
2250 (add_to_repl_tbl): Likewise.
2251 (dump_tree_ssa_stats): Likewise.
2252 (init_update_ssa): Initialize update_ssa_obstack.
2253 (delete_update_ssa): Free update_ssa_obstack.
2254 (name_mappings_registered_p): Remove.
2255 (update_ssa): Adjust.
2256
2257 2012-07-27 Segher Boessenkool <segher@kernel.crashing.org>
2258
2259 * config/rs6000/constraints.md: Delete "q" constraint.
2260 * config/rs6000/dfp.md (movsd_hardfloat, movsd_softfloat):
2261 Delete the "q" alternative.
2262 * config/rs6000/predicates.md (gpc_reg_operand): Adjust.
2263 * config/rs6000/rs6000.c (rs6000_debug_reg_global)
2264 (rs6000_init_hard_regno_mode_ok, rs6000_dbx_register_number):
2265 adjust to MQ_REGNO removal.
2266 * config/rs6000/rs6000.h (FIRST_PSEUDO_REGISTER): Adjust
2267 comment.
2268 (REG_ALLOC_ORDER): Adjust comment. Remove MQ from alloc order.
2269 (enum reg_class): Adjust comment. Delete MQ_REGS.
2270 (REG_CLASS_CONTENTS): Adjust.
2271 (REGISTER_NAMES, ADDITIONAL_REGISTER_NAMES): Adjust comment.
2272 * config/rs6000/rs6000.md: Delete MQ_REGNO.
2273 (movsi_internal1, movsi_internal1_single, movhi_internal,
2274 movqi_internal, movcc_internal1, movsf_hardfloat,
2275 movsf_softfloat): Delete the "q" alternative.
2276 (ctr<mode>_internal1, ctr<mode>_internal2, ctr<mode>_internal5,
2277 ctr<mode>_internal6): Delete "q" constraint.
2278
2279 2012-07-27 Richard Guenther <rguenther@suse.de>
2280
2281 * tree-into-ssa.c (def_blocks_p): New typedef.
2282 (insert_phi_nodes_compare_def_blocks): New function.
2283 (insert_phi_nodes): Do not walk over referenced vars, instead
2284 walk over recorded def_blocks, record relevant ones and sort
2285 them to avoid repeated hashtable lookups.
2286
2287 2012-07-27 Richard Guenther <rguenther@suse.de>
2288
2289 * doc/invoke.texi (min-virtual-mappings, virtual-mappings-ratio):
2290 Remove param documentation.
2291 * params.def (PARAM_MIN_VIRTUAL_MAPPINGS,
2292 PARAM_VIRTUAL_MAPPINGS_TO_SYMS_RATIO): Remove.
2293 * tree-flow.h (mark_set_for_renaming): Remove.
2294 * tree-into-ssa.c (struct update_ssa_stats_d): Remove.
2295 (add_new_name_mapping): Remove bookkeeping code.
2296 (dump_update_ssa): Remove stats dumping code.
2297 (init_update_ssa): Remove stats allocation code.
2298 (delete_update_ssa): Remove stats freeing code.
2299 (mark_set_for_renaming): Remove.
2300 (switch_virtuals_to_full_rewrite_p): Likewise.
2301 (switch_virtuals_to_full_rewrite): Likewise.
2302 (update_ssa): Do not call switch_virtuals_to_full_rewrite.
2303
2304 2012-07-27 Marek Polacek <polacek@redhat.com>
2305
2306 * cgraphunit.c: Rename varpool_finalize_variable to
2307 varpool_finalize_decl in a comment.
2308
2309 2012-07-27 Segher Boessenkool <segher@kernel.crashing.org>
2310
2311 * common/config/rs6000/rs6000-common.c (rs6000_handle_option):
2312 Delete code for -mno-power, -mpower, and -mpower2.
2313 * config/rs6000/aix43.h (NON_POWERPC_MASKS): Delete.
2314 (SUBTARGET_OVERRIDE_OPTIONS): Delete check for POWER together
2315 with -maix64.
2316 (ASM_CPU_SPEC): Delete support for POWER and POWER2.
2317 * config/rs6000/aix51.h (NON_POWERPC_MASKS): Delete.
2318 (SUBTARGET_OVERRIDE_OPTIONS): Delete check for POWER together
2319 with -maix64.
2320 (ASM_CPU_SPEC): Delete support for POWER and POWER2.
2321 * config/rs6000/aix52.h (NON_POWERPC_MASKS): Delete.
2322 (SUBTARGET_OVERRIDE_OPTIONS): Delete check for POWER together
2323 with -maix64.
2324 (TARGET_POWER): Delete.
2325 * config/rs6000/aix53.h (NON_POWERPC_MASKS): Delete.
2326 (SUBTARGET_OVERRIDE_OPTIONS): Delete check for POWER together
2327 with -maix64.
2328 (TARGET_POWER): Delete.
2329 * config/rs6000/aix61.h (NON_POWERPC_MASKS): Delete.
2330 (SUBTARGET_OVERRIDE_OPTIONS): Delete check for POWER together
2331 with -maix64.
2332 (TARGET_POWER): Delete.
2333 * config/rs6000/darwin.h (TARGET_POWER): Delete.
2334 * config/rs6000/driver-rs6000.c (struct asm_names): Delete
2335 support for -mpower, -mpower2, and -mno-power.
2336 * config/rs6000/rs6000-c.c (rs6000_target_modify_macros):
2337 Likewise.
2338 (rs6000_cpu_cpp_builtins): Likewise.
2339 * config/rs6000/rs6000-cpus.def: Likewise.
2340 * config/rs6000/rs6000-tables.opt: Regenerate.
2341 * config/rs6000/rs6000.c (POWER_MASKS): Delete.
2342 (rs6000_option_override_internal): Adjust.
2343 (rs6000_conditional_register_usage): Adjust.
2344 (rs6000_emit_move): Adjust.
2345 (rs6000_common_init_builtins): Adjust.
2346 (rs6000_init_libfuncs): Adjust.
2347 (rs6000_output_function_prologue): Adjust.
2348 (rs6000_adjust_cost): Adjust.
2349 (struct rs6000_opt_masks): Delete MASK_POWER and MASK_POWER2.
2350 * config/rs6000/rs6000.h (ASM_CPU_SPEC): Delete support for
2351 POWER and POWER2.
2352 (TARGET_DEFAULT): Adjust.
2353 (PROCESSOR_POWER): Delete.
2354 (SHIFT_COUNT_TRUNCATED): Adjust.
2355 * config/rs6000/rs6000.md (extendqisi2): Delete POWER support.
2356 (extendqisi2_power): Delete.
2357 (extendqisi2_no_power): Adjust.
2358 (extendqihi2, extendqihi2_power, extendqihi2_no_power):
2359 Likewise.
2360 (sminsi3, smaxsi3, uminsi3, umaxsi3): Adjust.
2361 (anonymous doz insn patterns): Delete.
2362 (abssi2): Adjust.
2363 (abssi2_power): Delete.
2364 (abssi2_nopower): Adjust.
2365 (nabs_power, nabs_nopower): Likewise.
2366 (mulsi3, mulsi3_mq, mulsi3_no_mq, mulsi3_mq_internal1):
2367 Likewise. Delete anonymous post-reload splitter.
2368 (mulsi3_no_mq_internal1): rename to...
2369 (mulsi3_internal1): New define_insn.
2370 (mulsi3_mq_internal2, mulsi3_no_mq_internal2, mulsi3_internal2):
2371 Likewise.
2372 (divmodsi4, divmodsi4_internal, udiv<mode>3, udivsi3_mq,
2373 udivsi3_no_mq, udivsi3, div<mode>3, divsi3_mq, div<mode>3_no_mq,
2374 udivmodsi4_normal, udivmodsi4_tests, udivmodsi4): Likewise.
2375 (mulh_call, mull_call, divss_call, divus_call, quoss_call,
2376 quous_call): Likewise.
2377 (maskir_internal1, maskir_internal2, maskir_internal3,
2378 maskir_internal4, maskir_internal5, maskir_internal6,
2379 maskir_internal7, maskir_internal8): Delete.
2380 (ashlsi3, ashlsi3_power, ashlsi3_no_power): Adjust.
2381 (anonymous sl insn patterns): Delete.
2382 (lshrsi3, lshrsi3_power, lshrsi3_no_power): Adjust.
2383 (lshrsi3_64): Adjust.
2384 (anonymous sr insn patterns): Delete.
2385 (anonymous rrib insn patterns): Delete.
2386 (ashrsi3, ashrsi3_power, ashrsi3_no_power): Adjust.
2387 (anonymous sra insn patterns): Delete.
2388 (sqrtsf2, sqrtdf2, sqrtdf2_fpr): Adjust.
2389 (fix_trunc<mode>si2, fix_trunc<mode>si2_internal,
2390 fctiwz_<mode>): Adjust.
2391 (mulsidi3, mulsidi3_mq, mulsidi3_no_mq, umulsidi3, umulsidi3_mq,
2392 umulsidi3_no_mq, smulsi3_highpart, smulsi3_highpart_mq,
2393 smulsi3_highpart_no_mq, umulsi3_highpart, umulsi3_highpart_mq,
2394 umulsi3_highpart_no_mq): Adjust.
2395 (ashldi3_power, lshrdi3_power, ashrdi3_power): Delete.
2396 (ashrdi3_no_power, ashldi3, ashldi3_internal1,
2397 lshrdi3_internal1): Adjust.
2398 (fix_trunctfsi2, fix_trunctfsi2_fprs): Adjust.
2399 (movti_power): Delete.
2400 (movti_string): Adjust.
2401 (stmsi8, stmsi7, stmsi6, stmsi5, stmsi4, stmsi3): Adjust.
2402 (stmsi8_power, stmsi7_power, stmsi6_power, stmsi5_power,
2403 stmsi4_power, stmsi3_power): Delete.
2404 (anonymous movmemsi insn patterns): Adjust.
2405 (lfq_power2, stfq_power2): Delete.
2406 (eq<mode>, eq<mode>_compare): Adjust.
2407 (eqsi_power): Delete.
2408 (ne0si): Adjust.
2409 (anonymous le, lt, ge, gt insn patterns): Delete.
2410 * config/rs6000/rs6000.opt (mpower, mno-power, mpower2): Delete.
2411 * config/rs6000/sysv4.h (TARGET_POWER): Delete.
2412 * config/rs6000/t-aix43 (MULTILIB_OPTIONS, MULTILIB_DIRNAMES,
2413 MULTILIB_MATCHES): Adjust.
2414 * doc/invoke.texi (RS/6000 and PowerPC Options): Delete
2415 -mpower, -mno-power, -mpower2, -mno-power2 documentation.
2416 Delete -mcpu=power and -mcpu=power2 documentation.
2417
2418 2012-07-27 Segher Boessenkool <segher@kernel.crashing.org>
2419
2420 * config/rs6000/601.md: New file.
2421 * config/rs6000/aix43.h (ASM_CPU_SPEC): Delete support for
2422 RIOS CPUs.
2423 * config/rs6000/aix51.h (ASM_CPU_SPEC): Likewise.
2424 * config/rs6000/driver-rs6000.c (detect_processor_aix,
2425 struct asm_names): Likewise.
2426 * config/rs6000/rios1.md: Delete file.
2427 * config/rs6000/rios2.md: Delete file.
2428 * config/rs6000/rs6000-cpus.def: Delete definitions for RIOS
2429 CPUs.
2430 * config/rs6000/rs6000-opts.h (enum processor_type): Delete
2431 PROCESSOR_RIOS1 and PROCESSOR_RIOS2.
2432 * config/rs6000/rs6000-tables.opt: Regenerated.
2433 * config/rs6000/rs6000.c (struct rios1_cost, struct rios2_cost):
2434 Delete.
2435 (rs6000_option_override_internal): Delete support for RIOS CPUs.
2436 (rs6000_conditional_register_usage): Adjust comment.
2437 (rs6000_issue_rate):Delete support for RIOS CPUs.
2438 * config/rs6000/rs6000.h (ASM_CPU_SPEC): Delete support for
2439 RIOS CPUs.
2440 (PROCESSOR_POWER): Change to PROCESSOR_PPC601.
2441 (PROCESSOR_DEFAULT): Change to PROCESSOR_PPC603.
2442 * config/rs6000/rs6000.md (define_attr "cpu"): Delete rios1
2443 and rios2.
2444 (include "rios1.md", include "rios2.md"): Delete.
2445 (include "601.md"): New.
2446 * config/rs6000/rs6000.opt (enum rs6000_cpu): Default to
2447 PROCESSOR_PPC603.
2448 * config/rs6000/t-aix43 (MULTILIB_MATCHES): Delete support
2449 for RIOS CPUs.
2450 * config/rs6000/t-rs6000 (MD_INCLUDES): Delete rios1.md and
2451 rios2.md . Add 601.md .
2452
2453 2012-07-26 Richard Henderson <rth@redhat.com>
2454
2455 * doc/extend.texi (attribute): Document hot/cold for labels.
2456 * predict.c (tree_estimate_probability_bb): Handle hot/cold
2457 attributes on user labels.
2458 * predict.def (PRED_HOT_LABEL, PRED_COLD_LABEL): New.
2459
2460 2012-07-26 Andrew Jenner <andrew@codesourcery.com>
2461 Sandra Loosemore <sandra@codesourcery.com>
2462
2463 * cse.c (find_comparison_args): Check for cycles of any length.
2464
2465 2012-07-26 Nick Clifton <nickc@redhat.com>
2466
2467 * config/mn10300/mn10300.c (REG_SAVE_BYTES): Delete.
2468 (mn10300_get_live_callee_saved_regs): If requested return a count
2469 of the number of bytes in the mask.
2470 (mn10300_expand_prologue): Add argument to invocation of
2471 mn10300_get_live_callee_regs.
2472 (mn10300_expand_epilogue): Compute reg_save_bytes by calling
2473 mn10300_get_live_callee_saved_regs.
2474 (mn10300_initial_offset): Likewise.
2475 * config/mn10300/mn10300-protos.h (mn10300_get_live_callee_saved_regs):
2476 Update prototype.
2477 * config/mn10300/mn10300.md (return_ret): Add argument to
2478 invocation of mn10300_get_live_callee_saved_regs.
2479
2480 2012-07-26 Steven Bosscher <steven@gcc.gnu.org>
2481
2482 PR regression/54084
2483 * sel-sched-ir.c (cmp_v_in_regset_pool): Clarify logic, fix
2484 pointer difference check.
2485
2486 2012-07-26 Bill Schmidt <wschmidt@linux.ibm.com>
2487
2488 * tree-ssa-loop-ivopts.c (mbc_entry_hash): Remove.
2489 (mbc_entry_eq): Likewise.
2490 (mult_costs): Likewise.
2491 (cost_tables_exist): Likewise.
2492 (initialize_costs): Likewise.
2493 (finalize_costs): Likewise.
2494 (tree_ssa_iv_optimize_init): Remove call to initialize_costs.
2495 (add_regs_cost): Remove.
2496 (multiply_regs_cost): Likewise.
2497 (add_const_cost): Likewise.
2498 (extend_or_trunc_reg_cost): Likewise.
2499 (negate_reg_cost): Likewise.
2500 (struct mbc_entry): Likewise.
2501 (multiply_by_const_cost): Likewise.
2502 (get_address_cost): Change add_regs_cost calls to add_cost lookups;
2503 change multiply_by_const_cost to mult_by_coeff_cost.
2504 (force_expr_to_var_cost): Likewise.
2505 (difference_cost): Change multiply_by_const_cost to mult_by_coeff_cost.
2506 (get_computation_cost_at): Change add_regs_cost calls to add_cost
2507 lookups; change multiply_by_const_cost to mult_by_coeff_cost.
2508 (determine_iv_cost): Change add_regs_cost calls to add_cost lookups.
2509 (tree_ssa_iv_optimize_finalize): Remove call to finalize_costs.
2510 * tree-ssa-address.c (expmed.h): New #include.
2511 (most_expensive_mult_to_index): Change multiply_by_const_cost to
2512 mult_by_coeff_cost.
2513 * gimple-ssa-strength-reduction.c (expmed.h): New #include.
2514 (stmt_cost): Change to use mult_by_coeff_cost, mul_cost, add_cost,
2515 neg_cost, and convert_cost instead of IVOPTS interfaces.
2516 (execute_strength_reduction): Remove calls to initialize_costs and
2517 finalize_costs.
2518 * expmed.c (struct init_expmed_rtl): Add convert rtx_def.
2519 (init_expmed_one_mode): Initialize convert rtx_def; initialize
2520 x_convert_cost for related modes.
2521 (mult_by_coeff_cost): New function.
2522 * expmed.h (NUM_MODE_INT): New #define.
2523 (struct target_expmed): Add x_convert_cost matrix.
2524 (set_convert_cost): New inline function.
2525 (convert_cost): Likewise.
2526 (mult_by_coeff_cost): New extern decl.
2527 * tree-flow.h (initialize_costs): Remove decl.
2528 (finalize_costs): Likewise.
2529 (multiply_by_const_cost): Likewise.
2530 (add_regs_cost): Likewise.
2531 (multiply_regs_cost): Likewise.
2532 (add_const_cost): Likewise.
2533 (extend_or_trunc_reg_cost): Likewise.
2534 (negate_reg_cost): Likewise.
2535 * Makefile.in (gimple-ssa-strength-reduction.o): Update dependencies.
2536 (tree-ssa-address.o): Update dependencies.
2537
2538 2012-07-26 Steven Bosscher <steven@gcc.gnu.org>
2539
2540 * bitmap.h: Add explanation of sparse set as linked-list bitmap.
2541 * sbitmap.h: Add explanation about non-sparse sets as simple bitmap.
2542 (TEST_BIT): Make a static inline function for stronger type checking.
2543 (SET_BIT): Don't handle sbitmaps with popcount.
2544 (RESET_BIT): Likewise.
2545 (SET_BIT_WITH_POPCOUNT): New, like SET_BIT but with popcount.
2546 (RESET_BIT_WITH_POPCOUNT): New, like RESET_BIT but with popcount.
2547 * ebitmap.c (ebitmap_clear_bit): Use SET_BIT_WITH_POPCOUNT and
2548 RESET_BIT_WITH_POPCOUNT on wordmask bitmaps.
2549 (ebitmap_set_bit, ebitmap_and_into, ebitmap_and, ebitmap_ior_into,
2550 ebitmap_and_compl_into, ebitmap_and_compl): Likewise.
2551 * sparseset.h: Add explanation of sparse set representation.
2552
2553 2012-07-26 Richard Guenther <rguenther@suse.de>
2554
2555 PR tree-optimization/54098
2556 * tree-vrp.c (vrp_visit_phi_node): Iterate once more if the
2557 original range was UNDEFINED.
2558
2559 2012-07-26 Ramana Radhakrishnan <ramana.radhakrishnan@linaro.org>
2560
2561 * config/arm/neon.ml (ops): Fix regexp for vld1Q_dups64 and
2562 vld1Q_dupu64 tests.
2563
2564 2012-07-26 Oleg Endo <olegendo@gcc.gnu.org>
2565
2566 PR target/51244
2567 * config/sh/sh.opt (mzdcbranch): New option.
2568 * doc/invoke.texi: Document it.
2569 * config/sh/sh.md (negsi_cond): Use TARGET_ZDCBRANCH as condition
2570 instead of TARGET_HARD_SH4.
2571 * config/sh/sh.c (sh_option_override): Set TARGET_ZDCBRANCH as default
2572 for TARGET_HARD_SH4.
2573
2574 2012-07-25 Oleg Endo <olegendo@gcc.gnu.org>
2575
2576 PR target/54089
2577 * config/sh/predicates.md (shift_count_operand): Handle not-SHMEDIA
2578 case.
2579 (p27_shift_count_operand, not_p27_shift_count_operand): New predicates.
2580 * config/sh/sh.md (ashlsi3): Remove parallel and T_REG clobber
2581 from expander. Do not emit shift insn for not-SHMEDIA case.
2582 (ashlsi3_std): Replace with ...
2583 (ashlsi3_k, ashlsi3_d): ... these new insns.
2584 * config/sh/sh.c (gen_ashift): Make static. Add sanity checks.
2585 Emit ashlsi3_k insn instead of ashlsi3_std in ASHIFT case.
2586 (gen_ashift_hi): Make static.
2587 * config/sh/sh-protos.h (gen_ashift, gen_ashift_hi): Remove forward
2588 declaration.
2589
2590 2012-07-25 Bharathi Seshadri <bseshadr@cisco.com>
2591 Jim Wilson <jimwilso@cisco.com>
2592
2593 * config/arm/bpabi.h (BE8_LINK_SPEC): Set according to
2594 TARGET_BIG_ENDIAN_DEFAULT.
2595
2596 2012-07-25 Eric Botcazou <ebotcazou@adacore.com>
2597
2598 * gimple-low.c (lower_try_catch): New function.
2599 (lower_stmt) <GIMPLE_TRY>: Use it to lower GIMPLE_TRY_CATCH.
2600 <GIMPLE_CATCH>: Delete.
2601 <GIMPLE_EH_FILTER>: Likewise.
2602
2603 2012-07-25 Eric Botcazou <ebotcazou@adacore.com>
2604
2605 * expr.c (expand_expr_real_1): Do not expand operand #1 and #2
2606 of BIT_FIELD_REF for ignored results.
2607 * fold-const.c (fold_ternary_loc) <BIT_FIELD_REF>: Check that the
2608 CONSTRUCTOR has vector type before using vector accessors on it.
2609 * gimplify.c (gimplify_compound_lval): Do not gimplify operand #1 and
2610 #2 of BIT_FIELD_REF.
2611 (gimplify_expr) <BIT_FIELD_REF>: Likewise.
2612 * tree-nested.c (convert_nonlocal_reference_op) <BIT_FIELD_REF>: Do
2613 not process operand #1 and #2.
2614 (convert_local_reference_op): Likewise.
2615 * tree-ssa-pre.c (create_component_ref_by_pieces_1): Remove superfluous
2616 breaks throughout.
2617 <BIT_FIELD_REF>: Reuse operand #1 and #2 directly.
2618 * tree.c (stabilize_reference) <BIT_FIELD_REF>: Do not stabilize
2619 operand #1 and #2.
2620 (UPDATE_FLAGS): Do not consider operand #2 of BIT_FIELD_REF.
2621 (build6_stat): Delete.
2622 * tree.h (build6_stat, build6, build6_stat_loc, build6_loc): Likewise.
2623
2624 2012-07-25 Marc Glisse <marc.glisse@inria.fr>
2625
2626 PR tree-optimization/30318
2627 * tree-vrp.c (extract_range_from_binary_expr_1) [PLUS_EXPR]:
2628 Handle __int128.
2629 [MINUS_EXPR]: Merge with PLUS_EXPR.
2630
2631 2012-07-25 Sandra Loosemore <sandra@codesourcery.com>
2632 Paul Brook <paul@codesourcery.com>
2633
2634 PR target/53633
2635 * target.def (warn_func_return): New hook.
2636 * doc/tm.texi.in (TARGET_WARN_FUNC_RETURN): New hook.
2637 * doc/tm.texi: Regenerate.
2638 * doc/sourcebuild.texi (Effective-Target Keywords): Document
2639 naked_functions.
2640 * ipa-pure-const.c (warn_function_noreturn): Check
2641 targetm.warn_func_return.
2642 * tree-cfg.c (execute_warn_function_return): Likewise.
2643 * config/spu/spu.c (spu_warn_func_return): New.
2644 (TARGET_WARN_FUNC_RETURN): Define.
2645 * config/rx/rx.c (rx_warn_func_return): New.
2646 (TARGET_WARN_FUNC_RETURN): Define.
2647 * config/avr/avr.c (avr_warn_func_return): New.
2648 (TARGET_WARN_FUNC_RETURN): Define.
2649 * config/arm/arm.c (arm_warn_func_return): New.
2650 (TARGET_WARN_FUNC_RETURN): Define.
2651 * config/mcore/mcore.c (mcore_warn_func_return): New.
2652 (TARGET_WARN_FUNC_RETURN): Define.
2653 (saved_warn_return_type, saved_warn_return_type_count): Remove.
2654 (mcore_reorg, mcore_handle_naked_attribute): Remove warn_return hack.
2655
2656 2012-07-25 Siddhesh Poyarekar <siddhesh@redhat.com>
2657
2658 * final.c [ASSEMBLER_DIALECT](do_assembler_dialects): New
2659 function to implement assembler dialects.
2660 (output_asm_insn): Use do_assembler_dialects.
2661 (asm_fprintf): Likewise.
2662
2663 2012-07-25 Richard Henderson <rth@redhat.com>
2664
2665 PR bootstrap/54092
2666 * libfuncs.h: Don't include optabs.h.
2667 (struct libfunc_entry): Use "int" for op, mode1, mode2 members.
2668 * optabs.c (hash_libfunc): Don't cast members to int.
2669 * Makefile.in (LIBFUNCS_H): Don't include OPTABS_H.
2670
2671 2012-07-25 Dodji Seketeli <dodji@redhat.com>
2672
2673 * basic-block.c: Fix typo in comment.
2674
2675 2012-07-25 Kirill Yukhin <kirill.yukhin@intel.com>
2676 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
2677
2678 * common/config/i386/i386-common.c (OPTION_MASK_ISA_PRFCHW_SET): New.
2679 (OPTION_MASK_ISA_PRFCHW_UNSET): Likewise.
2680 (ix86_handle_option): Handle mprfchw option.
2681 * config.gcc (i[34567]86-*-*): Add prfchwintrin.h.
2682 (x86_64-*-*): Likewise.
2683 * config/i386/prfchwintrin.h: New header.
2684 * config/i386/cpuid.h (bit_PRFCHW): New.
2685 (bit_BMI): Formatting fix.
2686 (bit_HLE): Likewise.
2687 (bit_RTM): Likewise.
2688 * config/i386/driver-i386.c (host_detect_local_cpu): Detect
2689 PREFETCHW support.
2690 * config/i386/i386-c.c: Define __PRFCHW__ if needed.
2691 * config/i386/i386.c (ix86_target_string): Define
2692 -mprfchw option. Formatting fixes.
2693 (PTA_HLE): Formatting fix.
2694 (PTA_PRFCHW): New.
2695 (ix86_option_override_internal): Handle new option.
2696 (ix86_valid_target_attribute_inner_p): Add OPT_mprfchw.
2697 * config/i386/i386.h (TARGET_PRFCHW): New.
2698 * config/i386/i386.md (prefetch): Enable for TARGET_PRFCHW.
2699 * config/i386/i386.opt (mprfchw): New.
2700 * config/i386/mm3dnow.h: Move _m_prefetchw from here to prfchwintrin.h.
2701 * config/i386/x86intrin.h: Include prfchwintrin.h.
2702
2703 2012-07-25 Sergey Melnikov <sergey.melnikov@intel.com>
2704
2705 * config/i386/i386.md (stack_protect_set): Disable the pattern
2706 for Android since Android libc (bionic) does not provide random
2707 value for stack protection guard at gs:0x14. Guard value
2708 will be provided from external symbol (default implementation).
2709 (stack_protect_set_<mode>): Likewise.
2710 (stack_protect_test): Likewise.
2711 (stack_protect_test_<mode>): Likewise.
2712 * gcc/defaults.h: Define macro TARGET_HAS_BIONIC to 0 - target does
2713 not have Bionic by default
2714 * config/linux.h: Redefine macro TARGET_HAS_BIONIC to (OPTION_BIONIC)
2715 Macro OPTION_BIONIC is defined in this file and provides Bionic
2716 accessibility status
2717
2718 2012-07-25 Steven Bosscher <steven@gcc.gnu.org>
2719
2720 * gimple-pretty-print.c (gimple_dump_bb_buff): Call pp_flush.
2721
2722 2012-07-25 Venkataramanan Kumar <venkataramanan.kumar@amd.com>
2723
2724 btver2 Enablement
2725 * config.gcc (i[34567]86-*-linux* | ...): Add btver2.
2726 (case ${target}): Add btver2.
2727 * config/i386/driver-i386.c (host_detect_local_cpu): Let
2728 -march=native recognize btver2 processors.
2729 * config/i386/i386-c.c (ix86_target_macros_internal): Add
2730 btver2 def_and_undef
2731 * config/i386/i386.c (struct processor_costs btver2_cost): New
2732 btver2 cost table.
2733 (m_BTVER2): New definition.
2734 (m_AMD_MULTIPLE): Includes m_BTVER2.
2735 (initial_ix86_tune_features): Add btver2 tune.
2736 (processor_target_table): Add btver2 entry.
2737 (static const char *const cpu_names): Add btver2 entry.
2738 (software_prefetching_beneficial_p): Add btver2.
2739 (ix86_option_override_internal): Add btver2 instruction sets.
2740 (ix86_issue_rate): Add btver2.
2741 (ix86_adjust_cost): Add btver2.
2742 * config/i386/i386.h (TARGET_BTVER2): New definition.
2743 (enum target_cpu_default): Add TARGET_CPU_DEFAULT_btver2.
2744 (enum processor_type): Add PROCESSOR_BTVER2.
2745 * config/i386/i386.md (define_attr "cpu"): Add btver2.
2746
2747 2012-07-24 Bill Schmidt <wschmidt@linux.ibm.com>
2748
2749 * doc/tm.texi: Regenerate.
2750 * targhooks.c (default_init_cost): Add prologue and epilogue costs.
2751 (default_add_stmt_cost): Likewise; also handle NULL stmt_info.
2752 (default_finish_cost): Add prologue and epilogue costs.
2753 * targhooks.h (default_add_stmt_cost): Change parameter list.
2754 (default_finish_cost): Likewise.
2755 * target.def (init_cost): Change documentation string.
2756 (add_stmt_cost): Change documentation string and parameter list.
2757 (finish_cost): Likewise.
2758 * target.h (vect_cost_model_location): New enum.
2759 * tree-vectorizer.h (struct _slp_tree): Remove cost substruct.
2760 (struct _slp_instance): Remove cost substruct; rename stmt_cost_vec
2761 to body_cost_vec.
2762 (SLP_INSTANCE_OUTSIDE_OF_LOOP_COST): Remove.
2763 (SLP_INSTANCE_STMT_COST_VEC): Rename to SLP_INSTANCE_BODY_COST_VEC.
2764 (SLP_TREE_OUTSIDE_OF_LOOP_COST): Remove.
2765 (struct _vect_peel_extended_info): Rename stmt_cost_vec to
2766 body_cost_vec.
2767 (struct _stmt_vec_info): Remove cost substruct.
2768 (STMT_VINFO_OUTSIDE_OF_LOOP_COST): Remove.
2769 (stmt_vinfo_set_outside_of_loop_cost): Remove.
2770 (builtin_vectorization_cost): New function.
2771 (vect_get_stmt_cost): Change to use builtin_vectorization_cost.
2772 (add_stmt_cost): Change parameter list.
2773 (finish_cost): Likewise.
2774 (vect_model_simple_cost): Likewise.
2775 (vect_model_store_cost): Likewise.
2776 (vect_model_load_cost): Likewise.
2777 (record_stmt_cost): Likewise.
2778 (vect_get_load_cost): Likewise.
2779 (vect_get_known_peeling_cost): Likewise.
2780 * tree-vect-loop.c (vect_get_known_peeling_cost): Change parameter
2781 list; call record_stmt_cost for prologue and epilogue costs.
2782 (vect_estimate_min_profitable_iters): Call add_stmt_cost for
2783 prologue and epilogue costs; remove computation of vec_outside_cost;
2784 return vec_prologue_cost and vec_epilogue_cost from finish_cost.
2785 (vect_model_reduction_cost): Revise call to add_stmt_cost for body
2786 costs; call add_stmt_cost for prologue and epilogue costs.
2787 (vect_model_induction_cost): Revise call to add_stmt_cost for body
2788 costs; call add_stmt_cost for prologue costs.
2789 * tree-vect-data-refs.c (vect_get_data_access_cost): Change parameter
2790 list for function and arguments for calls to vect_get_load_cost and
2791 vect_get_store_cost.
2792 (vect_peeling_hash_get_lowest_cost): Change argument list for calls to
2793 vect_get_data_access_cost and vect_get_known_peeling_cost; use
2794 temporary vectors prologue_cost_vec and epilogue_cost_vec for the
2795 latter call and discard their results; rename stmt_cost_vec to
2796 body_cost_vec; correct possible storage leak for body_cost_vec.
2797 (vect_peeling_hash_choose_best_peeling): Rename stmt_cost_vec to
2798 body_cost_vec.
2799 (vect_enhance_data_refs_alignment): Rename stmt_cost_vec to
2800 body_cost_vec; add extra dummy parameter on calls to
2801 vect_get_data_access_cost; tolerate null si->stmt; add vect_body to
2802 argument list on call to add_stmt_cost.
2803 * tree-vect-stmts.c (record_stmt_cost): Change parameter list;
2804 rename stmt_cost_vec to body_cost_vec; tolerate null stmt_info; call
2805 builtin_vectorization_cost; add "where" parameter on call to
2806 add_stmt_cost.
2807 (vect_model_simple_cost): Change parameter list; call record_stmt_cost
2808 for prologue costs; remove call to stmt_vinfo_set_outside_of_loop_cost;
2809 rename stmt_cost_vec to body_cost_vec.
2810 (vect_model_promotion_demotion_cost): Add vect_body argument to call
2811 to add_stmt_cost; call add_stmt_cost for prologue costs; remove call
2812 to stmt_vinfo_set_outside_of_loop_cost.
2813 (vect_model_store_cost): Change parameter list; call record_stmt_cost
2814 for prologue costs; add vect_body argument to call to record_stmt_cost;
2815 rename stmt_cost_vec to body_cost_vec; remove call to
2816 stmt_vinfo_set_outside_of_loop_cost.
2817 (vect_get_store_cost): Rename stmt_cost_vec to body_cost_vec; add
2818 vect_body argument to calls to record_stmt_cost.
2819 (vect_model_load_cost): Change parameter list; rename stmt_cost_vec to
2820 body_cost_vec; add vect_body argument to calls to record_stmt_cost;
2821 remove call to stmt_vinfo_set_outside_of_loop_cost.
2822 (vect_get_load_cost): Change parameter list; rename stmt_cost_vec to
2823 body_cost_vec; add vect_body argument to calls to record_stmt_cost;
2824 call record_stmt_cost for prologue costs.
2825 (vectorizable_store): Change argument list for call to
2826 vect_model_store_cost.
2827 (vectorizable_load): Change argument list for call to
2828 vect_model_load_cost.
2829 (new_stmt_vec_info): Remove assignment to
2830 STMT_VINFO_OUTSIDE_OF_LOOP_COST.
2831 * config/spu/spu.c (spu_init_cost): Add prologue and epilogue costs.
2832 (spu_add_stmt_cost): Likewise; also handle NULL stmt_info.
2833 (spu_finish_cost): Add prologue and epilogue costs.
2834 * config/i386/i386.c (i386_init_cost): Add prologue and epilogue costs.
2835 (i386_add_stmt_cost): Likewise; also handle NULL stmt_info.
2836 (i386_finish_cost): Add prologue and epilogue costs.
2837 * config/rs6000/rs6000.c (rs6000_init_cost): Add prologue and epilogue
2838 costs.
2839 (rs6000_add_stmt_cost): Likewise; also handle NULL stmt_info.
2840 (rs6000_finish_cost): Add prologue and epilogue costs.
2841 * tree-vect-slp.c (vect_free_slp_instance): Rename
2842 SLP_INSTANCE_STMT_COST_VEC to SLP_INSTANCE_BODY_COST_VEC.
2843 (vect_create_new_slp_node): Remove assignment to
2844 SLP_TREE_OUTSIDE_OF_LOOP_COST.
2845 (vect_get_and_check_slp_defs): Change parameter list; change argument
2846 lists to calls to vect_model_store_cost and vect_model_simple_cost.
2847 (vect_build_slp_tree): Change parameter list; change argument lists
2848 to calls to vect_model_load_cost, vect_get_and_check_slp_defs, and
2849 recursive self-calls; remove setting of outside_cost from
2850 SLP_TREE_OUTSIDE_OF_LOOP_COST; add vect_body argument to call to
2851 record_stmt_cost.
2852 (vect_analyze_slp_instance): Rename stmt_cost_vec to body_cost_vec;
2853 rename SLP_INSTANCE_STMT_COST_VEC to SLP_INSTANCE_BODY_COST_VEC;
2854 remove assignment to SLP_INSTANCE_OUTSIDE_OF_LOOP_COST; record SLP
2855 prologue costs.
2856 (vect_bb_vectorization_profitable_p): Rename stmt_cost_vec to
2857 body_cost_vec; handle null ci->stmt; add vect_body argument to call
2858 to add_stmt_cost; simplify calls to targetm.vectorize.
2859 builtin_vectorization_cost; return vec_prologue_cost and
2860 vec_epilogue_cost from finish_cost.
2861 (vect_update_slp_costs_according_to_vf): Rename stmt_cost_vec to
2862 body_cost_vec; add vect_body argument to call to add_stmt_cost.
2863
2864 2012-07-24 Richard Henderson <rth@redhat.com>
2865
2866 * system.h (FIXUNS_TRUNC_LIKE_FIX_TRUNC): Poison.
2867 * config/cris/cris.h (FIXUNS_TRUNC_LIKE_FIX_TRUNC): Remove.
2868 * config/h8300/h8300.h (FIXUNS_TRUNC_LIKE_FIX_TRUNC): Remove.
2869 * config/mn10300/mn10300.h (FIXUNS_TRUNC_LIKE_FIX_TRUNC): Remove.
2870 * config/rs6000/rs6000.h (FIXUNS_TRUNC_LIKE_FIX_TRUNC): Remove
2871 comment reference.
2872 * config/v850/v850.h (FIXUNS_TRUNC_LIKE_FIX_TRUNC): Remove.
2873 * config/v850/v850.md (fixuns_truncsfsi2, fixuns_truncdfsi2): New.
2874 (fix_truncsfsi2, fix_truncdfsi2): Avoid double FIX.
2875 * config/vax/vax.h (FIXUNS_TRUNC_LIKE_FIX_TRUNC): Remove.
2876 * config/vax/vax.md (fixuns_trunc<VAXfp><VAXint>): New.
2877 * doc/tm.texi.in (FIXUNS_TRUNC_LIKE_FIX_TRUNC): Remove.
2878 * doc/tm.texi: Rebuild.
2879
2880 2012-07-24 Richard Henderson <rth@redhat.com>
2881
2882 * optabs.def: New file.
2883 * Makefile.in (OPTABS_H): Add insn-opinit.h.
2884 (MOSTLYCLEANFILES): Likewise.
2885 (insn-opinit.o): Remove reload.h
2886 (simple_rtl_generated_c): Remove insn-opinit.c.
2887 (s-opinit): New rule.
2888 (build/genopinit.o): Add optabs.def.
2889 * genopinit.c (rtx_upname): New.
2890 (optabs): Extract to optabs.def
2891 (enum optab_tag, struct optab_def_d, optabs): New.
2892 (struct pattern_d, patterns): New.
2893 (match_pattern): Split out from ...
2894 (gen_insn): ... here. Push matches on patterns vec.
2895 (pattern_cmp, optab_kind_cmp, optab_rcode_cmp): New.
2896 (header_file_name, source_file_name, handle_arg): New.
2897 (open_outfile): New.
2898 (main): Sort and emit new tables. Generate lookup_handler,
2899 raw_optab_handler, swap_optab_enable.
2900 * libfuncs.h (libfunc_entry): Change "size_t optab" to "optab op".
2901 * optabs.c (code_to_optab_): Remove.
2902 (hash_libfunc): Update for optab name change.
2903 (eq_libfunc): Likewise.
2904 (convert_optab_libfunc): Update computation of optab member;
2905 use the new convlib_def table.
2906 (optab_libfunc): Similarly.
2907 (set_optab_libfunc, set_conv_libfunc): Likewise.
2908 (sign_expand_binop): Use swap_optab_enable instead of fake optabs.
2909 (init_insn_codes, init_optab, init_optabv, init_convert_optab): Remove.
2910 (init_optabs): Don't call them; export the data to optabs.def.
2911 (gen_int_libfunc, gen_fp_libfunc): Export non-static.
2912 (gen_fixed_libfunc, gen_signed_fixed_libfunc): Likewise.
2913 (gen_unsigned_fixed_libfunc, gen_int_fp_libfunc): Likewise.
2914 (gen_intv_fp_libfunc, gen_int_fp_fixed_libfunc): Likewise.
2915 (gen_int_fp_signed_fixed_libfunc, gen_int_fixed_libfunc): Likewise.
2916 (gen_int_signed_fixed_libfunc): Likewise.
2917 (gen_int_unsigned_fixed_libfunc): Likewise.
2918 (gen_interclass_conv_libfunc, gen_int_to_fp_conv_libfunc): Likewise.
2919 (gen_ufloat_conv_libfunc): Likewise.
2920 (gen_int_to_fp_nondecimal_conv_libfunc): Likewise.
2921 (gen_fp_to_int_conv_libfunc, gen_intraclass_conv_libfunc): Likewise.
2922 (gen_trunc_conv_libfunc, gen_extend_conv_libfunc): Likewise.
2923 (gen_fract_conv_libfunc, gen_fractuns_conv_libfunc): Likewise.
2924 (gen_satfract_conv_libfunc, gen_satfractuns_conv_libfunc): Likewise.
2925 (debug_optab_libfuncs): Update for optab representation change.
2926 * optabs.h: Include insn-opinit.h.
2927 (optab, convert_optab, direct_optab): New typedefs.
2928 (struct optab_handlers, struct widening_optab_handlers): Remove.
2929 (struct optab_libcall_d): Rename from optab_d; remove code_,
2930 handlers, widening members.
2931 (struct convert_optab_libcall_d): Rename from convert_optab_d;
2932 remove code_ and handlers members.
2933 (enum optab_index, enum convert_optab_index): Remove.
2934 (enum direct_optab_index): Remove.
2935 (code_to_optab_): Fix array range.
2936 (optab_to_code): Covert to inline function.
2937 (optab_to_code_, convlib_def, normlib_def): Declare.
2938 (raw_optab_handler, swap_optab_enable): Declare.
2939 (unknown_optab): Remove; export to optabs.def
2940 (ssadd_optab, usadd_optab, sssub_optab, ussub_optab, ssmul_optab,
2941 usmul_optab, ssdiv_optab, usdiv_optab, ssneg_optab, usneg_optab,
2942 ssashl_optab, usashl_optab, add_optab, sub_optab, smul_optab,
2943 addv_optab, subv_optab, smul_highpart_optab, umul_highpart_optab,
2944 smul_widen_optab, umul_widen_optab, usmul_widen_optab,
2945 smadd_widen_optab, umadd_widen_optab, ssmadd_widen_optab,
2946 usmadd_widen_optab, smsub_widen_optab, umsub_widen_optab,
2947 ssmsub_widen_optab, usmsub_widen_optab, sdiv_optab, smulv_optab,
2948 sdivv_optab, sdivmod_optab, udiv_optab, udivmod_optab, smod_optab,
2949 umod_optab, fmod_optab, remainder_optab, ftrunc_optab, and_optab,
2950 ior_optab, xor_optab, ashl_optab, lshr_optab, ashr_optab, rotl_optab,
2951 rotr_optab, vashl_optab, vlshr_optab, vashr_optab, vrotl_optab,
2952 vrotr_optab, smin_optab, smax_optab, umin_optab, umax_optab, pow_optab,
2953 atan2_optab, fma_optab, fms_optab, fnma_optab, fnms_optab, mov_optab,
2954 movstrict_optab, movmisalign_optab, storent_optab, neg_optab,
2955 negv_optab, abs_optab, absv_optab, one_cmpl_optab, bswap_optab,
2956 ffs_optab, clz_optab, ctz_optab, clrsb_optab, popcount_optab,
2957 parity_optab, sqrt_optab, sincos_optab, sin_optab, asin_optab,
2958 cos_optab, acos_optab, exp_optab, exp10_optab, exp2_optab, expm1_optab,
2959 ldexp_optab, scalb_optab, significand_optab, logb_optab, ilogb_optab,
2960 log_optab, log10_optab, log2_optab, log1p_optab, floor_optab,
2961 ceil_optab, btrunc_optab, round_optab, nearbyint_optab, rint_optab,
2962 tan_optab, atan_optab, copysign_optab, signbit_optab, isinf_optab,
2963 cmp_optab, ucmp_optab, eq_optab, ne_optab, gt_optab, ge_optab,
2964 lt_optab, le_optab, unord_optab, strlen_optab, cbranch_optab,
2965 cmov_optab, cstore_optab, ctrap_optab, push_optab, addcc_optab,
2966 reduc_smax_optab, reduc_umax_optab, reduc_smin_optab, reduc_umin_optab,
2967 reduc_splus_optab, reduc_uplus_optab, ssum_widen_optab,
2968 usum_widen_optab, sdot_prod_optab, udot_prod_optab, vec_set_optab,
2969 vec_extract_optab, vec_init_optab, vec_shl_optab, vec_shr_optab,
2970 vec_realign_load_optab, vec_widen_umult_hi_optab,
2971 vec_widen_umult_lo_optab, vec_widen_smult_hi_optab,
2972 vec_widen_smult_lo_optab, vec_widen_umult_even_optab,
2973 vec_widen_umult_odd_optab, vec_widen_smult_even_optab,
2974 vec_widen_smult_odd_optab, vec_widen_ushiftl_hi_optab,
2975 vec_widen_ushiftl_lo_optab, vec_widen_sshiftl_hi_optab,
2976 vec_widen_sshiftl_lo_optab, vec_unpacks_hi_optab, vec_unpacks_lo_optab,
2977 vec_unpacku_hi_optab, vec_unpacku_lo_optab, vec_unpacks_float_hi_optab,
2978 vec_unpacks_float_lo_optab, vec_unpacku_float_hi_optab,
2979 vec_unpacku_float_lo_optab, vec_pack_trunc_optab, vec_pack_ssat_optab,
2980 vec_pack_usat_optab, vec_pack_sfix_trunc_optab,
2981 vec_pack_ufix_trunc_optab, powi_optab, sync_compare_and_swap_optab,
2982 sync_lock_test_and_set_optab, sync_old_add_optab, sync_old_sub_optab,
2983 sync_old_ior_optab, sync_old_and_optab, sync_old_xor_optab,
2984 sync_old_nand_optab, sync_new_add_optab, sync_new_sub_optab,
2985 sync_new_ior_optab, sync_new_and_optab, sync_new_xor_optab,
2986 sync_new_nand_optab, sext_optab, zext_optab, trunc_optab, sfix_optab,
2987 ufix_optab, sfixtrunc_optab, ufixtrunc_optab, sfloat_optab,
2988 ufloat_optab, lrint_optab, lround_optab, lfloor_optab, lceil_optab,
2989 fract_optab, fractuns_optab, satfract_optab, satfractuns_optab,
2990 vec_load_lanes_optab, vec_store_lanes_optab, vcond_optab, vcondu_optab,
2991 movcc_optab, reload_in_optab, reload_out_optab, movmem_optab,
2992 setmem_optab, cmpstr_optab, cmpstrn_optab, cmpmem_optab,
2993 sync_lock_release_optab, sync_add_optab, sync_sub_optab,
2994 sync_ior_optab, sync_and_optab, sync_xor_optab, sync_nand_optab,
2995 atomic_exchange_optab, atomic_compare_and_swap_optab,
2996 atomic_load_optab, atomic_store_optab, atomic_add_fetch_optab,
2997 atomic_sub_fetch_optab, atomic_and_fetch_optab,
2998 atomic_nand_fetch_optab, atomic_xor_fetch_optab, atomic_or_fetch_optab,
2999 atomic_fetch_add_optab, atomic_fetch_sub_optab, atomic_fetch_and_optab,
3000 atomic_fetch_nand_optab, atomic_fetch_xor_optab, atomic_fetch_or_optab,
3001 atomic_add_optab, atomic_sub_optab, atomic_and_optab,
3002 atomic_nand_optab, atomic_xor_optab, atomic_or_optab,
3003 atomic_always_lock_free_optab, atomic_is_lock_free_optab,
3004 atomic_thread_fence_optab, atomic_signal_fence_optab,
3005 vec_perm_optab, vec_perm_const_optab): Likewise.
3006 (struct target_optabs): Remove x_optab_table, x_convert_optab_table,
3007 and x_direct_optab_table members; add pat_enable.
3008 (optab_table, convert_optab_table, direct_optab_table): Remove.
3009 (optab_handler): Use raw_optab_handler.
3010 (widening_optab_handler, convert_optab_handler): Likewise.
3011 (set_optab_handler, set_widening_optab_handler): Remove.
3012 (set_convert_optab_handler, set_direct_optab_handler): Remove.
3013 (direct_optab_handler): Defer to optab_handler.
3014 * rtl.h (NON_GENERATOR_NUM_RTX_CODE): New.
3015
3016 2012-07-24 Jason Merrill <jason@redhat.com>
3017
3018 * bitmap.c (bitmap_descriptor): Adjust order of parameters to
3019 match MEM_STAT_DECL.
3020 * statistics.h (ALONE_FINAL_MEM_STAT_DECL): Correct typo.
3021
3022 2012-07-24 Richard Henderson <rth@redhat.com>
3023
3024 * optabs.h (struct optab_d): Rename code member to code_.
3025 (struct convert_optab_h): Likewise.
3026 (code_to_optab_): Rename from code_to_optab.
3027 (code_to_optab, optab_to_code): New.
3028 * dojump.c (do_compare_rtx_and_jump): Use code_to_optab.
3029 * ifcvt.c (noce_emit_move_insn): Likewise.
3030 * optabs.c (simplify_expand_binop): Use optab_to_code.
3031 (expand_simple_binop, shift_optab_p, commutative_optab_p): Likewise.
3032 (avoid_expensive_constant, expand_binop_directly): Likewise.
3033 (expand_binop, expand_simple_unop, expand_unop_direct): Likewise.
3034 (expand_unop, prepare_float_lib_cmp, expand_fixed_convert): Likewise.
3035 (have_insn_for, debug_optab_libfuncs): Likewise.
3036 (init_optab, init_optabv, init_convert_optab): Update for optab
3037 member name change.
3038
3039 * libfuncs.h: Include optabs.h.
3040 * dwarf2out.c, lto-streamer.in.c: Don't include libfuncs.h.
3041 * Makefile.in (LIBFUNCS_H): Add OPTABS_H.
3042 (lto-streamer-in.o, dwarf2out.o): Update deps.
3043
3044 * optabs.h (unknown_optab): New.
3045 * builtins.c (interclass_mathfn_icode): Use it.
3046 * dojump.c (do_compare_rtx_and_jump): Likewise.
3047 * optabs.c (optab_for_tree_code, expand_binop): Likewise.
3048 * tree-vect-generic.c (add_rshift, expand_vector_divmod): Likewise.
3049 (expand_vector_operations_1): Likewise.
3050 * tree-vect-patterns.c (vect_recog_divmod_pattern): Likewise.
3051 * tree-vect-stmts.c (supportable_narrowing_operation): Likewise.
3052
3053 2012-07-24 Steven Bosscher <steven@gcc.gnu.org>
3054
3055 * alloc-pool.c (create_alloc_pool): Fix ENABLE_CHECKING check.
3056
3057 2012-07-24 Ramana Radhakrishnan <ramana.radhakrishnan@linaro.org>
3058
3059 PR target/54051
3060 * config/arm/arm.c (arm_print_operand_address): Remove superfluous
3061 printing of 0.
3062 * config/arm/neon.md ("neon_vld3_lane<mode>":VD): Remove alignment
3063 specifier.
3064 ("neon_vld3_lane<mode>":VMQ): Likewise.
3065 ("neon_vld3_dup<mode>":VDX): Likewise.
3066 ("neon_vst3_lane<mode>":VD): Likewise.
3067 ("neon_vst3_lane<mode>":VMQ): Likewise.
3068
3069 2012-07-24 Roland McGrath <mcgrathr@google.com>
3070
3071 * arm.c (arm_get_frame_offsets): Don't use fixed regs for
3072 stack alignment padding.
3073
3074 2012-07-24 Uros Bizjak <ubizjak@gmail.com>
3075
3076 PR target/53961
3077 * config/i386/i386.c (ix86_legitimate_address_p): Move check for
3078 negative constant address for TARGET_X32 ...
3079 (ix86_decompose_address): ... here. Reject constant addresses
3080 that don't satisfy x86_64_immediate_operand predicate.
3081
3082 2012-07-24 Julian Brown <julian@codesourcery.com>
3083
3084 * doc/sourcebuild.texi (arm_hf_eabi): Document effective-target check.
3085
3086 2012-07-24 Steven Bosscher <steven@gcc.gnu.org>
3087
3088 * sbitmap.h (SBITMAP_ELT_BITS): Use "1u" trick as for BITMAP_WORD_BITS.
3089 Move test to check that there is a popcount function for the the number
3090 of bits in SBITMAP_ELT_BITS to sbitmap.c.
3091 * sbitmap.c: Test SBITMAP_ELT_BITS, not HOST_BITS_PER_WIDEST_FAST_INT.
3092 MEM_STAT_INFO): Define in terms of their ALONE counterparts.
3093
3094 * configure.ac (GATHER_STATISTICS): Always define, non-zero if enabled.
3095 * configure: Regenerate.
3096 * statistics.h (GATHER_STATISTICS): Error out if it is not defined.
3097 (GCC_MEM_STAT_ARGUMENTS): New define.
3098 (ALONE_MEM_STAT_DECL): Define in terms of GCC_MEM_STAT_ARGUMENTS.
3099 (ALONE_FINAL_MEM_STAT_DECL, ALONE_FINAL_PASS_MEM_STAT): New defines.
3100 (MEM_STAT_DECL, FINAL_MEM_STAT_DECL, PASS_MEM_STAT,
3101 FINAL_PASS_MEM_STAT): Define.
3102 * ggc-internal.h (ggc_record_overhead): Use FINAL_MEM_STAT_DECL.
3103 * ggc.h (ggc_record_overhead, ggc_free_overhead,
3104 ggc_prune_overhead_list): Remove internal prototypes, they are defined
3105 already in ggc-internal.h.
3106 * ggc-common.c (struct loc_descriptor): Remove #ifdef GATHER_STATISTICS
3107 wrappers.
3108 (add_statistics): Likewise.
3109 (dump_ggc_loc_statistics): Likewise. Return if GATHER_STATISTICS is 0.
3110 * ggc-zone.c (struct page_entry): Remove #ifdef GATHER_STATISTICS
3111 wrappers around "survived" and "stats" members.
3112 (alloc_large_page): Always initialize survived.
3113 (ggc_internal_alloc_zone_stat): Likewise.
3114 Remove #ifdef GATHER_STATISTICS wrappers. Record overhead if
3115 GATHER_STATISTICS is non-0.
3116 (ggc_free): Convert #ifdef GATHER_STATISTICS to if-code.
3117 (sweep_pages): Always increase survived.
3118 (ggc_collect_1): Convert #ifdef GATHER_STATISTICS to if-code.
3119 (calculate_average_page_survival): Always define.
3120 (ggc_collect): Convert #ifdef GATHER_STATISTICS to if-code.
3121 (ggc_print_statistics): Likewise.
3122 (ggc_pch_read): Likewise.
3123 * ggc-page.c (struct globals): Always define "stats" member.
3124 (ggc_internal_alloc_stat): Convert #ifdef GATHER_STATISTICS to if-code.
3125 (ggc_free): Likewise.
3126 (ggc_collec): Likewise.
3127 (ggc_print_statistics): Likewise.
3128 * bitmap.h (struct bitmap_head_def): Always define "desc" member.
3129 (bitmap_initialize_stat): Convert #ifdef GATHER_STATISTICS to if-code.
3130 * gimple.h (enum gimple_alloc_kind): Always define.
3131 (gimple_alloc_kind): Likewise.
3132 * tree-flow.h (phinodes_print_statistics): Always define.
3133 (ssanames_print_statistics): Likewise.
3134 * vec.h (vec_heap_free): Always define.
3135 (VEC_stack_alloc): Define if GATHER_STATISTICS is non-0.
3136 * alloc-pool.c (alloc_pool_descriptor): Always define.
3137 (create_alloc_pool): Convert #ifdef GATHER_STATISTICS to if-code.
3138 (empty_alloc_pool): Likewise.
3139 (pool_alloc): Likewise.
3140 (pool_free): Likewise.
3141 (dump_alloc_pool_statistics): Likewise.
3142 (print_statistics): Always define.
3143 * bitmap.c (struct bitmap_descriptor): Always define.
3144 (bitmap_register): Pass ALONE_FINAL_PASS_MEM_STAT.
3145 (register_overhead): Always define.
3146 (bitmap_element_free): Convert #ifdef GATHER_STATISTICS to if-code.
3147 (bitmap_element_allocate): Likewise.
3148 (bitmap_elt_clear_from): Likewise.
3149 (bitmap_obstack_alloc_stat): Likewise.
3150 (bitmap_gc_alloc_stat): Likewise.
3151 (bitmap_obstack_free): Likewise.
3152 (bitmap_find_bit): Likewise.
3153 (bitmap_ior_and_into): Likewise.
3154 (bitmap_print): Likewise.
3155 (dump_bitmap_statistics): Likewise. Return if GATHER_STATISTICS is 0.
3156 * gimple.c (gimple_alloc_counts, gimple_alloc_sizes): Always define.
3157 (gimple_alloc_kind_names): Likewise.
3158 (gimple_alloc_stat): Convert #ifdef GATHER_STATISTICS to if-code.
3159 (dump_gimple_statistics): Likewise. Return if GATHER_STATISTICS is 0.
3160 * rtl.c (rtx_alloc_counts, rtx_alloc_sizes, rtvec_alloc_counts,
3161 rtvec_alloc_sizes): Always define.
3162 (rvec_alloc): Convert #ifdef GATHER_STATISTICS to if-code.
3163 (rtx_alloc_stat): Likewise.
3164 (dump_rtx_statistics): Likewise. Return if GATHER_STATISTICS is 0.
3165 * tree.c (_obstack_allocated_p, tree_code_counts, tree_node_counts,
3166 tree_node_sizes, tree_node_kind_names): Always define.
3167 (record_node_allocation_statistics): Convert #ifdef GATHER_STATISTICS
3168 to if-code.
3169 (type_hash_canon): Likewise.
3170 (dump_tree_statistics): Likewise.
3171 * tree-ssanames.c (ssa_name_nodes_reused, ssa_name_nodes_created):
3172 Always define.
3173 (ssanames_print_statistics): Likewise.
3174 (make_ssa_name_fn): Convert #ifdef GATHER_STATISTICS to if-code.
3175 * tree-phinodes.c (phi_nodes_reused, phi_nodes_created): Always define.
3176 (phinodes_print_statistics): Likewise.
3177 (allocate_phi_node): Convert #ifdef GATHER_STATISTICS to if-code.
3178 * vec.c (struct vec_descriptor): Always define.
3179 (hash_descriptor, eq_descriptor, ptr_hash_entry, hash_ptr, eq_ptr,
3180 vec_descriptor, rester_overhead, free_overhead): Likewise.
3181 (cmp_statistic): Likewise.
3182 (vec_heap_free): Convert #ifdef GATHER_STATISTICS to if-code.
3183 (vec_heap_o_reserve_1): Likewise.
3184 (dump_vec_loc_statistics): Likewise.
3185
3186 2012-07-24 Richard Guenther <rguenther@suse.de>
3187
3188 PR tree-optimization/53616
3189 * tree-loop-distribution.c (ldist_gen): Do not change
3190 partition ordering when merging partitions.
3191
3192 2012-07-24 Alan Modra <amodra@gmail.com>
3193
3194 PR target/53914
3195 PR target/54009
3196 * config/rs6000/constraints.md (Y): Use mem_operand_gpr.
3197 * config/rs6000/predicates.md (word_offset_memref_operand): Delete.
3198 Adjust all rs6000_legitimate_offset_address_p calls.
3199 * config/rs6000/rs6000-protos.h (mem_operand_gpr): Declare.
3200 (rs6000_secondary_reload_gpr): Declare.
3201 (rs6000_legitimate_offset_address_p): Update prototype.
3202 (rs6000_offsettable_memref_p): Delete.
3203 (rs6000_secondary_reload_ppc64): Delete.
3204 * config/rs6000/rs6000.c (address_offset): New function.
3205 (mem_operand_gpr): Likewise.
3206 (rs6000_legitimate_offset_address_p): Add worst_case param. When
3207 not worst_case assume class of regs with least restrictive offsets.
3208 Adjust all calls.
3209 (legitimate_lo_sum_address_p): Simplify register mode tests.
3210 (rs6000_legitimize_address): Likewise. Assume best case offset
3211 addressing. Combine ELF and MACHO lo_sum code.
3212 (rs6000_mode_dependent_address): Correct offset addressing limits.
3213 (rs6000_offsettable_memref_p): Make static, add reg_mode param.
3214 Use reg_mode to help rs6000_legitimate_offset_address_p.
3215 (rs6000_secondary_reload): Use address_offset. Handle 32-bit multi
3216 gpr load/store when offset too large.
3217 (rs6000_secondary_reload_gpr): Renamed rs6000_secondary_reload_ppc64.
3218 (rs6000_split_multireg_move): Adjust rs6000_offsettable_memref_p calls.
3219 * config/rs6000/rs6000.md (movdf_hardfloat32): Use 'Y' constraint
3220 for gpr load/store. Order alternatives as r->Y,Y->r,r->r and
3221 d->m,m->d,d->d. Correct size of gpr load/store.
3222 (movdf_softfloat32): Use 'Y' constraint for gpr load/store. Order
3223 alternatives.
3224 (movti_ppc64): Likewise.
3225 (movdi_internal32): Likewise. Also disparage fprs.
3226 (movdi_mfpgpr, movdi_internal64): Likewise.
3227 (movtf_internal): Use 'm' for fpr load/store. Order alternatives.
3228 (movtf_softfloat): Order alternatives.
3229 (extenddftf2_internal): Use 'm' and 'Y' for store.
3230 (movti_power, movti_string): Use 'Y' for gpr load/store. Order.
3231 (stack_protect_setdi, stack_protect_testdi): Likewise.
3232 (movdf_hardfloat64_mfpgpr, movdf_hardfloat64): Order alternatives.
3233 (movdf_softfloat64): Likewise.
3234 (reload_<mode>_store): Adjust reload_di_store to provide
3235 reload_si_store as well.
3236 (reload_<mode>_load): Likewise.
3237
3238 2012-07-23 Oleg Endo <olegendo@gcc.gnu.org>
3239
3240 PR target/51244
3241 * config/sh/predicates.md (general_movsrc_operand,
3242 general_movdst_operand): Reject T_REG.
3243 * config/sh/sh.md (*extendqisi2_compact_reg, *extendhisi2_compact_reg,
3244 movsi_i, movsi_ie, movsi_i_lowpart, *movqi_reg_reg, *movhi_reg_reg):
3245 Remove T_REG alternatives.
3246 (*negtstsi): New insn.
3247
3248 2012-07-23 Oleg Endo <olegendo@gcc.gnu.org>
3249
3250 PR target/53511
3251 * config/sh/sh.md (mulsf3_ie): Delete.
3252 (mulsf3_i4): Rename to mulsf3_i.
3253 (mulsf3): Emit mulsf3_i insn.
3254
3255 2012-07-23 Oleg Endo <olegendo@gcc.gnu.org>
3256
3257 * config/sh/sh.md (addc1, subc1): Delete.
3258 (adddi3_compact): Use addc instead of addc1.
3259 (subdi3_compact): Use subc instead of subc1.
3260
3261 2012-07-23 Uros Bizjak <ubizjak@gmail.com>
3262
3263 * config/i386/i386-protos.h (ix86_lea_outperforms): Remove prototype.
3264 * config/i386/i386.c (ix86_lea_outperforms): Make static. Make
3265 split_cost argument signed.
3266 (ix86_avoid_lea_for_add): Cleanup.
3267 (ix86_use_lea_for_mov): Use INVALID_REGNUM instead of -1.
3268 (ix86_avoid_lea_for_addr): Ditto. Make split_cost signed.
3269 Use gen_lowpart instead of gen_rtx_SUBREG. Cleanup.
3270
3271 2012-07-23 Ulrich Weigand <ulrich.weigand@linaro.org>
3272
3273 * config/arm/arm.c (arm_reorg): Ensure all insns are split.
3274
3275 2012-07-23 Uros Bizjak <ubizjak@gmail.com>
3276
3277 PR target/53961
3278 * config/i386/i386.md (*lea): Add asserts to detect invalid addresses.
3279 * config/i386/i386.c (ix86_print_operand_address): Ditto.
3280 (ix86_decompose_address): Allow (zero_extend:DI (subreg:SI (...)))
3281 addresses. Prevent zero extensions of CONST_INT operands.
3282
3283 2012-07-23 Steven Bosscher <steven@gcc.gnu.org>
3284
3285 * sbitmap.h (struct int_list): Remove.
3286 (sbitmap_intersect_of_predsucc, sbitmap_union_of_predsucc):
3287 Remove prototypes of non-existing function.
3288 (sbitmap_intersect_of_predecessors, sbitmap_intersect_of_successors,
3289 sbitmap_union_of_predecessors, sbitmap_union_of_successors): Remove
3290 unused defines.
3291 (sbitmap_intersection_of_succs, sbitmap_intersection_of_preds,
3292 sbitmap_union_of_succs, sbitmap_union_of_preds): Move prototypes to...
3293 * basic-block.h: ... here.
3294 * sbitmap.c: Do not include basic-block.h.
3295 (sbitmap_intersection_of_succs, sbitmap_intersection_of_preds,
3296 sbitmap_union_of_succs, sbitmap_union_of_preds): Move functions to...
3297 * cfganal.c: ... here.
3298 * bt-load.c (compute_out, link_btr_uses): Update for above changes.
3299 * gcse.c (compute_code_hoist_vbeinout): Likewise.
3300 * lcm.c (compute_antinout_edge, compute_available): Likewise.
3301 * Makefile.in: Fix sbitmap.o dependencies.
3302
3303 2012-07-23 Jan-Benedict Glaw <jbglaw@lug-owl.de>
3304 Nick Clifton <nickc@redhat.com>
3305
3306 * config/frv/frv-protos.h (frv_ifcvt_machdep_init): Prototype.
3307 * config/frv/frv.c (frv_ifcvt_machdep_init): Change type of
3308 (unused) parameter to void *.
3309
3310 2012-07-23 Richard Guenther <rguenther@suse.de>
3311
3312 * tree-ssa-alias.c (dump_alias_info): Walk over local decls
3313 instead of referenced vars.
3314
3315 2012-07-23 Steven Bosscher <steven@gcc.gnu.org>
3316
3317 * coverage.c: Refer to "notes file" instead of "graph file"
3318 in all comments. Explain history of bbg prefix.
3319 * gcov-io.h: Likewise.
3320 * gcov.c: Likewise.
3321 (find_source): Likewise in fnotice.
3322 (read_graph_file): Likewise.
3323 (read_count_file): Likewise.
3324 * doc/gcov.texi: Document -fprofile-dir flag. Add "notes file"
3325 and "data file" explicitly in the explanation of the files.
3326
3327 2012-07-22 Steven Bosscher <steven@gcc.gnu.org>
3328
3329 PR tree-optimization/53881
3330 * tree-cfg.c (group_case_labels_stmt): Look up the basic block
3331 for each label and compare them instead of labels.
3332
3333 2012-07-22 Steven Bosscher <steven@gcc.gnu.org>
3334
3335 * opts.c (common_handle_option): Do not set
3336 flag_value_profile_transformations for -fprofile-generate.
3337 * profile.c (instrument_values): Use COUNTER_FOR_HIST_TYPE.
3338 (BB_TO_GCOV_INDEX): Remove.
3339 (output_location): Don't use it.
3340 (branch_prob): Likewise. Don't fiddle with the index of
3341 ENTRY_BLOCK_PTR and EXIT_BLOCK_PTR. Use clear_aux_for_blocks.
3342 (find_spanning_tree):
3343 * gcov.c (struct function_info): Document that blocks 0 and 1
3344 are the entry resp. exit blocks in gcov, too, like in GCC itself.
3345 (solve_flow_graph): Use ENTRY_BLOCK and EXIT_BLOCK for special
3346 blocks identification.
3347 (output_lines): Likewise.
3348 * value-prof.c (gimple_value_profile_transformations): Do not
3349 test flag_value_profile_transformations again.
3350 (gimple_ic_transform): Take a gimple_stmt_iterator like all other
3351 transformation functions.
3352 (gimple_values_to_profile):
3353 Don't test flag_value_profile_transformations
3354 * tree-profile.c (tree_profiling): Assert that the cgraph is in
3355 the CGRAPH_STATE_IPA_SSA state.
3356 Do not set, or look at, after_tree_profile.
3357 * function.h (struct function): Remove after_tree_profile bit.
3358 * omp-low.c (expand_omp_taskreg): Don't set after_tree_profile.
3359 * tree-inline.c (initialize_cfun): Don't copy it.
3360 * lto-streamer-out.c (output_struct_function_base): Don't stream it.
3361 * lto-streamer-in.c (input_struct_function_base): Likewise.
3362
3363 2012-07-22 Oleg Endo <olegendo@gcc.gnu.org>
3364
3365 * config/sh/sh.h (TARGET_DYNSHIFT): New macro.
3366 (SH_DYNAMIC_SHIFT_COST): Use it.
3367 * config/sh/sh.c (expand_ashiftrt, shl_sext_kind): Likewise.
3368 (sh_dynamicalize_shift_p): Add TARGET_DYNSHIFT condition.
3369 Add sanity check for input value. Add function description.
3370 * config/sh/sh.md (ashlsi3, ashlsi3_std, ashrsi3_d, lshrsi3,
3371 lshrsi3_d): Use TARGET_DYNSHIFT.
3372
3373 2012-07-22 Oleg Endo <olegendo@gcc.gnu.org>
3374
3375 * config/sh/sh.md (negc): Delete expander.
3376 (*negc): Rename insn to negc.
3377
3378 2012-07-22 Uros Bizjak <ubizjak@gmail.com>
3379
3380 PR target/53961
3381 * config/i386/i386.md (*lea): New insn pattern.
3382 (*lea_1): Remove.
3383 (*lea<mode>_2): Ditto.
3384 (*lea_{3,4,5,6}_zext): Ditto.
3385 * config/i386/predicates.md (lea_address_operand): Do not reject
3386 zero-extended address operands.
3387 * config/i386/constraints.md (j): Remove address constraint.
3388 * config/i386/i386.c (ix86_decompose_address): Allow SImode subreg
3389 of an address.
3390 (ix86_print_operand_address): Handle SImode subreg of an address.
3391 (ix86_avoid_lea_for_addr): Reject zero-extended addresses for now.
3392
3393 2012-07-22 Hans-Peter Nilsson <hp@axis.com>
3394
3395 Emit executable-stack note correctly for CRIS targets.
3396 * config/cris/cris.c (cris_file_end): New function.
3397 (TARGET_ASM_FILE_END): Define.
3398
3399 2012-07-22 Chung-Lin Tang <cltang@codesourcery.com>
3400 Maxim Kuvyrkov <maxim@codesourcery.com>
3401 NetLogic Microsystems Inc.
3402
3403 * config/mips/mips.c (mips_issue_rate): Handle XLP.
3404 * config/mips/mips.md: Include xlp.md.
3405 * config/mips/xlp.md: New file.
3406
3407 2012-07-21 Steven Bosscher <steven@gcc.gnu.org>
3408
3409 PR gcov-profile/32543
3410 * profile.c (branch_prob): Update total_num_edges_instrumented and
3411 report the number of edges to instrument.
3412
3413 2012-07-21 Oleg Endo <olegendo@gcc.gnu.org>
3414
3415 * config/sh/sh.md: Correct comment regarding clrt and sett insns.
3416
3417 2012-07-21 Andrew Pinski <apinski@cavium.com>
3418
3419 * config/mips/mips.md (*popcountdi2_trunc): New pattern
3420 to handle popcount of a truncation.
3421
3422 2012-07-21 Andrew Pinski <apinski@cavium.com>
3423
3424 * config/mips/mips-protos.h (mips_expand_ext_as_unaligned_load):
3425 Add a bool argument.
3426 * config/mips/mips.c (mips_block_move_straight): Update call to
3427 mips_expand_ext_as_unaligned_load.
3428 (mips_expand_ext_as_unaligned_load): Add unsigned_p argument.
3429 Accept DImode dest when the width is that of SImode.
3430 * config/mips/mips.md (extv): Update call to
3431 mips_expand_ext_as_unaligned_load.
3432 (extzv): Likewise.
3433
3434 2012-07-21 Andrew Pinski <apinski@cavium.com>
3435
3436 * config/mips/mips.c (mips_get_unaligned_mem): Copy *op after calling
3437 adjust_address.
3438
3439 2012-07-20 Maxim Kuvyrkov <maxim@codesourcery.com>
3440
3441 * config/mips/mips.md (define_attr sync_*): Move before "type".
3442 (define_attr "type"): New values "atomic" and "syncloop".
3443 * config/mips/sync.md (atomic_exchange<mode>, atomic_fetch_add<mode>):
3444 Set "type" attribute.
3445 * config/mips/generic.md (generic_atomic, generic_syncloop):
3446 New reservations.
3447 * gcc/config/mips/10000.md, gcc/config/mips/20kc.md,
3448 * gcc/config/mips/24k.md, gcc/config/mips/4130.md,
3449 * gcc/config/mips/4k.md, gcc/config/mips/5400.md,
3450 * gcc/config/mips/5500.md, gcc/config/mips/5k.md,
3451 * gcc/config/mips/7000.md, gcc/config/mips/74k.md,
3452 * gcc/config/mips/9000.md, gcc/config/mips/loongson2ef.md,
3453 * gcc/config/mips/loongson3a.md, gcc/config/mips/octeon.md,
3454 * gcc/config/mips/sb1.md, gcc/config/mips/sr71k.md,
3455 * gcc/config/mips/xlr.md: Handle "atomic" and "syncloop" types.
3456
3457 2012-07-20 Oleg Endo <olegendo@gcc.gnu.org>
3458
3459 * config/sh/sh.md: Group and sort shift related patterns.
3460 (ashlsi3_n, *ashlhi3_n, lshrsi3_n): Remove length attributes.
3461
3462 2012-07-20 Hans-Peter Nilsson <hp@axis.com>
3463
3464 * config/cris/cris.c (cris_asm_output_ident): Remove unused
3465 local variables section_asm_op, size, buf.
3466
3467 2012-07-20 Pat Haugen <pthaugen@us.ibm.com>
3468 Steven Bosscher <steven@gcc.gnu.org>
3469
3470 * config/rs6000/power4.md (power4-store-update): Fix reservation.
3471 (power4-three): Likewise.
3472
3473 2012-07-20 Sameera Deshpande <sameera.deshpande@arm.com>
3474 Greta Yorsh <Greta.Yorsh@arm.com>
3475
3476 * config/arm/arm.c (arm_cortex_a15_tune): New tune.
3477 * config/arm/arm-cores.def (cortex-a15): Use it.
3478
3479 2012-07-20 Sameera Deshpande <sameera.deshpande@arm.com>
3480 Greta Yorsh <Greta.Yorsh@arm.com>
3481
3482 * config/arm/arm-protos.h (tune_params): Add prefer_ldrd_strd.
3483 * config/arm/arm.c (arm_slowmul_tune): Initialize it.
3484 (arm_fastmul_tune, arm_strongarm_tune): Likewise.
3485 (arm_xscale_tune, arm_9e_tune, arm_v6t2_tune): Likewise.
3486 (arm_cortex_tune, arm_cortex_a5_tune, arm_cortex_a9_tune): Likewise.
3487 (arm_fa726te_tune): Likewise.
3488
3489 2012-07-20 Richard Guenther <rguenther@suse.de>
3490
3491 * tree-dfa.c (collect_dfa_stats): Simplify.
3492 * tree-ssa-structalias.c (compute_may_aliases): Do not dump
3493 referenced vars.
3494 * cfgexpand.c (estimated_stack_frame_size): Walk over local
3495 decls instead of referenced vars.
3496 * tree-ssa.c (delete_tree_ssa): Simplify.
3497 * tree-tailcall.c (find_tail_calls): Walk over local decls
3498 instead of referenced vars.
3499 (add_virtual_phis): Remove.
3500 (tree_optimize_tail_calls_1): Instead mark the virtual operand
3501 for renaming.
3502
3503 2012-07-20 Steven Bosscher <steven@gcc.gnu.org>
3504
3505 * basic-block.h (BB_FLAGS_TO_PRESERVE): New define.
3506 (brief_dump_cfg): Update prototype to take flags argument.
3507 (check_bb_profile): Remove prototype.
3508 * tracer.c (tracer): Update brief_dump_cfg calls.
3509 * cfghooks.c (dump_bb): Do not pass TDF_COMMENT to dump_bb_info.
3510 Call dump_bb_info before and after the cfghook dump_bb. Terminate
3511 the dump with a newline.
3512 (dump_flow_info): Do not call check_bb_profile.
3513 * cfg.c (clear_bb_flags): Update using BB_FLAGS_TO_PRESERVE.
3514 (check_bb_profile): Make static. Take indent and flags arguments.
3515 (dump_bb_info): Always dump loop depth. With TDF_DETAILS, call
3516 check_bb_profile. Print one edge per line.
3517 (brief_dump_cfg): Take a flags argument, and filter out
3518 TDF_COMMENT and TDF_DETAILS.
3519 * pretty-print.c (pp_base_newline): Set pp_needs_newline to false.
3520 * gimple-pretty-print.c (dump_gimple_bb_header): Do not use
3521 dump_bb_info here, it is already called from dump_bb. Idem for
3522 check_bb_profile.
3523 (dump_gimple_bb_footer): Likewise.
3524 (gimple_dump_bb_buff): Call pp_flush after dump_gimple_stmt to
3525 avoid broken dumps for statement histograms.
3526 (gimple_dump_bb): Handle ENTRY_BLOCK and EXIT_BLOCK. Do
3527 not call pp_flush here, the buffer should be empty.
3528 * sched-rgn.c (debug_region): Pass TDF_BLOCKS to dump_bb.
3529 * sched-vis.c (debug_bb_slim): Likewise.
3530 * tree-cfg.c (remove_bb): Pass dump_flags to dump_bb.
3531 (gimple_debug_bb): Pass TDF_BLOCKS to dump_bb.
3532 (gimple_dump_cfg): Do brief_dump_cfg with TDF_COMMENT.
3533 (dump_function_to_file): Do not call check_bb_profile on
3534 ENTRY_BLOCK and EXIT_BLOCK, check_bb_profile doesn't handle them.
3535 Use dump_bb instead of gimple_dump_bb.
3536 (print_loops_bb): Use dump_bb instead of gimple_dump_bb.
3537 * passes.c (execute_function_dump): Always call print_rtl_with_bb
3538 for RTL dumps.
3539 * cfgrtl.c (print_rtl_with_bb): Handle printing without an up-to-date
3540 CFG. With TDF_BLOCKS and TDF_DETAILS, do DF dumps at the top and
3541 bottom of each basic block.
3542
3543 2012-07-20 Richard Guenther <rguenther@suse.de>
3544
3545 PR tree-optimization/54031
3546 * tree-ssa-ccp.c (get_value_from_alignment): Use
3547 get_pointer_alignment_1.
3548
3549 2012-07-20 Richard Guenther <rguenther@suse.de>
3550
3551 * tree-inline.c (add_local_variables): Remove check_var_ann
3552 parameter and dead code.
3553 (expand_call_inline): Adjust.
3554 (tree_function_versioning): Likewise.
3555
3556 2012-07-20 Jakub Jelinek <jakub@redhat.com>
3557
3558 PR c++/28656
3559 * tree-vrp.c (nonnull_arg_p): Handle all nonnull attributes instead
3560 of just the first one.
3561
3562 2012-07-20 Richard Guenther <rguenther@suse.de>
3563
3564 * builtins.c (get_object_alignment_2): Correct offset handling
3565 when using type alignment of a MEM_REF kind base.
3566
3567 2012-07-20 Kirill Yukhin <kirill.yukhin@intel.com>
3568
3569 PR target/53877
3570 * config/i386/lzcntintrin.h (_lzcnt_u32): New.
3571 (_lzcnt_u64): Ditto.
3572
3573 2012-07-19 Eric Botcazou <ebotcazou@adacore.com>
3574
3575 * config/sparc/sparc.md (adddi3_insn_sp32): Add earlyclobber.
3576
3577 2012-07-19 Eric Botcazou <ebotcazou@adacore.com>
3578
3579 * tree-ssa-forwprop.c (combine_conversions): Punt if the RHS of the
3580 defining statement is a SSA name that occurs in abnormal PHIs.
3581
3582 2012-07-19 Eric Botcazou <ebotcazou@adacore.com>
3583
3584 * gimple-fold.c (canonicalize_constructor_val): Strip only useless type
3585 conversions.
3586
3587 2012-07-19 Jakub Jelinek <jakub@redhat.com>
3588
3589 PR rtl-optimization/53942
3590 * function.c (assign_parm_setup_reg): Avoid zero/sign extension
3591 directly from likely spilled non-fixed hard registers, move them
3592 to pseudo first.
3593
3594 2012-07-19 Steve Ellcey <sellcey@mips.com>
3595
3596 * config/mips/mips.c (mips_set_mips16_mode): Clear SYNCI_MASK in
3597 MIPS16 mode.
3598
3599 2012-07-19 Jason Merrill <jason@redhat.com>
3600
3601 PR debug/53235
3602 * dwarf2out.c (get_die_parent): New.
3603 (generate_type_signature): Use it.
3604
3605 2012-07-19 Richard Henderson <rth@redhat.com>
3606
3607 * config/ia64/vect.md (smulv4hi3_highpart): New.
3608 (umulv4hi3_highpart): New.
3609 (vec_widen_smult_even_v4hi): Rename from pmpy2_even.
3610 (vec_widen_smult_odd_v4hi): Rename from pmpy2_odd.
3611 (udot_prodv8qi, sdot_prodv8qi): Remove.
3612 (sdot_prodv4hi, udot_prodv4hi): Remove.
3613 * config/ia64/ia64.c (ia64_expand_dot_prod_v8qi): Remove.
3614 * config/ia64/ia64-protos.h: Update.
3615
3616 * tree-vect-patterns.c (vect_recog_divmod_pattern): Do not require
3617 vectors larger than UNITS_PER_WORD.
3618
3619 * expr.c (store_constructor): Initialize icode with CODE_FOR_nothing.
3620 * tree-vect-stmts.c (vectorizable_operation): Use LAST_INSN_CODE for
3621 dummy != CODE_FOR_nothing value.
3622
3623 2012-07-19 Uros Bizjak <ubizjak@gmail.com>
3624
3625 * doc/tm.texi.in (MODE_AFTER): Add entity as the first macro argument.
3626 * doc/tm.texi: Regenerate.
3627 * mode-switching.c (optimize_mode_switching): Update MODE_AFTER call.
3628 * config/sh/sh.h (MODE_AFTER): Update.
3629 * config/epiphany/epiphany.h (MODE_AFTER): Update.
3630
3631 2012-07-19 Jakub Jelinek <jakub@redhat.com>
3632
3633 PR middle-end/54017
3634 * tree-cfgcleanup.c (cleanup_omp_return): Remove.
3635 (cleanup_tree_cfg_bb): Don't call it.
3636 * omp-low.c (expand_omp_sections): Fix up the !exit_reachable case
3637 handling.
3638
3639 2012-07-19 Christian Bruel <christian.bruel@st.com>
3640
3641 PR target/54029
3642 * config/sh/sh.c (gen_far_branch): Set JUMP_LABEL for return jumps.
3643
3644 2012-07-19 Richard Guenther <rguenther@suse.de>
3645 Eric Botcazou <ebotcazou@adacore.com>
3646
3647 * tree-ssa-ccp.c (valid_lattice_transition): Clarify comment
3648 about transition from invariant to known bits.
3649 (likely_value): Addresses with UNDEFINED components are UNDEFINED.
3650
3651 2012-07-19 Richard Guenther <rguenther@suse.de>
3652
3653 PR tree-optimization/53970
3654 * tree-vect-data-refs.c (not_size_aligned): Avoid sign-compare warning.
3655
3656 2012-07-19 Tristan Gingold <gingold@adacore.com>
3657 Richard Henderson <rth@redhat.com>
3658
3659 * opts.c (finish_options): Handle UI_SEH.
3660 * expr.c (build_personality_function): Handle UI_SEH.
3661 * dwarf2out.c (dwarf2out_begin_prologue): Handle UI_SEH.
3662 * coretypes.h (unwind_info_type): Add UI_SEH.
3663 * config/i386/winnt.c (i386_pe_seh_emit_except_personality):
3664 New function.
3665 (i386_pe_seh_init_sections): Likewise.
3666 * config/i386/cygming.h (TARGET_ASM_EMIT_EXCEPT_PERSONALITY): Define.
3667 (TARGET_ASM_INIT_SECTIONS): Define.
3668 * common/config/i386/i386-common.c (TARGET_EXCEPT_UNWIND_INFO): Define.
3669 (i386_except_unwind_info): New function.
3670
3671 2012-07-18 Maciej W. Rozycki <macro@codesourcery.com>
3672 Chao-ying Fu <fu@mips.com>
3673
3674 * config/mips/mips.opt (mmcu): New option.
3675 * config/mips/mips.h (TARGET_CPU_CPP_BUILTINS): Define
3676 _mips_mcu when TARGET_MCU.
3677 (ASM_SPEC): Pass mcu options to the assembler.
3678 * doc/invoke.texi (MIPS Options): Document -mmcu and -mno-mcu.
3679
3680 2012-07-18 Ralf Corsépius <ralf.corsepius@rtems.org>
3681
3682 * config.gcc (v850-*-rtems*): New target.
3683 * config/v850/rtems.h: New.
3684 * config/v850/t-rtems: New.
3685
3686 2012-07-18 Bill Schmidt <wschmidt@linux.ibm.com>
3687
3688 * doc/invoke.texi: Add -fhoist-adjacent-loads and -ftree-slsr to list
3689 of flags controlling optimization; add -ftree-slsr to list of flags
3690 enabled by default at -O; add -fhoist-adjacent-loads to list of flags
3691 enabled by default at -O2; add -fvect-cost-model to list of flags
3692 enabled by default at -O3; document -fhoist-adjacent-loads and
3693 -ftree-slsr.
3694 * opts.c (default_option): Make -ftree-slsr default at -O1 and above.
3695 * gimple-ssa-strength-reduction.c (gate_strength_reduction): Use
3696 flag_tree_slsr.
3697 * common.opt: Add -ftree-slsr with flag_tree_slsr.
3698
3699 2012-07-18 Jie Zhang <jzhang918@gmail.com>
3700 Julian Brown <julian@codesourcery.com>
3701
3702 * config/arm/arm.c (arm_rtx_costs_1): Adjust cost for CONST_VECTOR.
3703 (arm_size_rtx_costs): Likewise.
3704 (neon_valid_immediate): Add a case for double 0.0.
3705
3706 2012-07-18 Andrew Stubbs <ams@codesourcery.com>
3707 Mark Shinwell <shinwell@codesourcery.com>
3708 Julian Brown <julian@codesourcery.com>
3709
3710 * config/arm/vfp.md (*arm_movsi_vfp, *thumb2_movsi_vfp)
3711 (*movdi_vfp_cortexa8, *movsf_vfp, *thumb2_movsf_vfp)
3712 (*movdf_vfp, *thumb2_movdf_vfp, *movsfcc_vfp)
3713 (*thumb2_movsfcc_vfp, *movdfcc_vfp, *thumb2_movdfcc_vfp): Add
3714 neon_type.
3715 * config/arm/arm.md (neon_type): Update comment.
3716
3717 2012-07-18 Richard Guenther <rguenther@suse.de>
3718
3719 PR tree-optimization/53970
3720 * tree.h (contains_packed_reference): Remove.
3721 * expr.c (contains_packed_reference): Likewise.
3722 * tree-vect-data-refs.c (not_size_aligned): New function.
3723 (vector_alignment_reachable_p): Use it.
3724 (vect_supportable_dr_alignment): Likewise.
3725
3726 2012-07-18 Richard Guenther <rguenther@suse.de>
3727
3728 * tree.h (get_object_or_type_alignment): Remove.
3729 * builtins.c (get_object_alignment_2): New function copied from
3730 get_object_alignment_1. Take extra argument to indicate whether
3731 we take the address of EXP. Rework to use type alignment information
3732 if not, and return whether the result is an approximation or not.
3733 (get_object_alignment_1): Wrap around get_object_alignment_2.
3734 (get_pointer_alignment_1): Call get_object_alignment_2 indicating
3735 we take the address.
3736 (get_object_or_type_alignment): Remove.
3737 * expr.c (expand_assignment): Call get_object_alignment.
3738 (expand_expr_real_1): Likewise.
3739
3740 2012-07-18 Nick Clifton <nickc@redhat.com>
3741
3742 * doc/invoke.texi (ARM Options): Document -munaligned-access.
3743
3744 2012-07-18 Oleg Endo <olegendo@gcc.gnu.org>
3745
3746 * config/sh/sh.md (mulsidi3, umulsidi3): Remove constraints in
3747 expander. Use arith_reg_dest predicate.
3748 (rotldi3, rotrdi3): Remove constraints in expander.
3749 (adddi3_compact, subdi3_compact, mulsidi3_compact, umulsidi3_compact,
3750 ashlsi3_n, *ashlhi3_n, ashrsi2_16, ashrsi2_31, lshrsi3_n): Convert to
3751 insn_and_split.
3752
3753 2012-07-18 Oleg Endo <olegendo@gcc.gnu.org>
3754
3755 PR target/33135
3756 * config/sh/sh.opt (mieee): Use Var instead of Mask. Correct
3757 description.
3758 * config/sh/sh.c (sh_option_override): Do not change
3759 flag_finite_math_only. Set TARGET_IEEE to complement of
3760 flag_finite_math_only.
3761 * doc/invoke.texi (SH options): Add mno-ieee. Correct description
3762 of mieee and mno-ieee behavior.
3763
3764 2012-07-18 Steven Bosscher <steven@gcc.gnu.org>
3765
3766 * graphite-poly.c (print_pbb_body): Fixup dump_bb call.
3767
3768 2012-07-18 Steven Bosscher <steven@gcc.gnu.org>
3769
3770 * dumpfile.h (TDF_COMMENT): New define.
3771 * basic-block.h (EDGE_FALLTHRU, EDGE_ABNORMAL, EDGE_ABNORMAL_CALL,
3772 EDGE_EH, EDGE_FAKE, EDGE_DFS_BACK, EDGE_CAN_FALLTHRU,
3773 EDGE_IRREDUCIBLE_LOOP, EDGE_SIBCALL, EDGE_LOOP_EXIT, EDGE_TRUE_VALUE,
3774 EDGE_FALSE_VALUE, EDGE_EXECUTABLE, EDGE_CROSSING, EDGE_PRESERVE):
3775 Move to new file cfg-flags.h.
3776 (enum cfg_edge_flags): New enum, using cfg-flags.h.
3777 (EDGE_ALL_FLAGS): Compute value automatically.
3778 (BB_NEW, BB_REACHABLE, BB_IRREDUCIBLE_LOOP, BB_SUPERBLOCK,
3779 BB_DISABLE_SCHEDULE, BB_HOT_PARTITION, BB_COLD_PARTITION,
3780 BB_DUPLICATED, BB_NON_LOCAL_GOTO_TARGET, BB_RTL,
3781 BB_FORWARDER_BLOCK, BB_NONTHREADABLE_BLOCK, BB_MODIFIED, BB_VISITED,
3782 BB_IN_TRANSACTION): Move to new file cfg-flags.h.
3783 (enum bb_flags): Rename to cfg_bb_flags. Use cfg-flags.h.
3784 (BB_ALL_FLAGS): New, compute value automatically.
3785 (dump_bb_info): Update prototype.
3786 (dump_edge_info): Update prototype.
3787 * cfg-flags.h: New file.
3788 * cfg.c (dump_edge_info): Take flags argument. Be verbose only if
3789 TDF_DETAILS and not TDF_SLIM. Include cfg-flags.h for bitnames.
3790 Check that the edge flags are within the range of EDGE_ALL_FLAGS.
3791 (debug_bb): Update dump_bb call.
3792 (dump_cfg_bb_info): Remove.
3793 (dump_bb_info): New function. Use cfg-flags.h for bitnames.
3794 Adjust verbosity using TDF_* flags. Check that the basic block flags
3795 are within the range of BB_ALL_FLAGS.
3796 (brief_dump_cfg): Use dump_bb_info instead of dump_cfg_bb_info.
3797 * cfghooks.h (struct cfghooks): Update dump_bb hook, take a FILE
3798 first for consistency with other dump functions.
3799 (dump_bb): Update prototype accordingly.
3800 * cfghooks.c: Include dumpfile.h.
3801 (verify_flow_info): Update dump_edge_info calls.
3802 (dump_bb): Take a flags argument and pass it around.
3803 Use dump_bb_info to dump common information about a basic block.
3804 (dump_flow_info): Moved here from cfgrtl.c. Make IL agnostic.
3805 (debug_flow_info): Moved here from cfgrtl.c.
3806 * profile.c (is_edge_inconsistent): Update dump_bb calls.
3807 * loop-invariant.c (find_defs): Update print_rtl_with_bb call.
3808 * rtl.h (debug_bb_n_slim, debug_bb_slim, print_rtl_slim,
3809 print_rtl_slim_with_bb): Remove prototypes.
3810 (dump_insn_slim): Adjust prototype to take a const_rtx.
3811 (print_rtl_with_bb): Adjust prototype.
3812 * sched-rgn.c (debug_region): Use dump_bb instead of debug_bb_n_slim.
3813 * sched-vis.c (dump_insn_slim): Take a const_rtx.
3814 (debug_insn_slim): Prototype here near DEBUG_FUNCTION marker.
3815 (print_rtl_slim_with_bb): Remove.
3816 (print_rtl_slim): Rename to debug_rtl_slim. Print only insn info,
3817 not basic block info (print_rtl_with_bb with TDF_SLIM should be used
3818 for that. Prototype here near DEBUG_FUNCTION marker.
3819 (debug_bb_slim): Prototype here near DEBUG_FUNCTION marker.
3820 Use dump_bb.
3821 (debug_bb_n_slim): Prototype here near DEBUG_FUNCTION marker.
3822 * tree-cfg.c (gimple_can_merge_blocks_p): Use EDGE_COMPLEX.
3823 (remove_bb): Update dump_bb call.
3824 (gimple_debug_bb): Use dump_bb.
3825 (dump_function_to_file): Update gimple_dump_bb call.
3826 (print_loops_bb): Likewise.
3827 * tree-flow.h (gimple_dump_bb): Update prototype.
3828 * gimple-pretty-print.c (dump_bb_header): Rename to
3829 dump_gimple_bb_header. Write to a stream instead of a pretty
3830 printer. Use dump_bb_info to dump basic block info.
3831 (dump_bb_end): Rename to dump_gimple_bb_footer. Write to a
3832 stream instead of a pretty printer. Use dump_bb_info.
3833 (gimple_dump_bb_buff): Do not call dump_bb_header and dump_bb_end.
3834 (gimple_dump_bb): Do it here with dump_gimple_bb_header and
3835 dump_gimple_bb_footer.
3836 * cfgrtl.c (rtl_dump_bb): Update prototype. Only dump DF if the
3837 dump flags have TDF_DETAILS. Use dump_insn_slim if TDF_SLIM.
3838 (print_rtl_with_bb): Take a flags argument and pass it around.
3839 Use dump_insn_slim if TDF_SLIM.
3840 (dump_bb_info): Removed and re-incarnated in cfg.c.
3841 (dump_flow_info): Moved to cfghooks.c.
3842 (debug_flow_info): Moved to cfghooks.c.
3843 * passes.c (execute_function_dump): Unconditionally use
3844 print_rtl_with_bb for RTL dumps, now that it understands TDF_SLIM.
3845 * final.c (dump_basic_block_info): Update dump_edge_info calls.
3846 * tree-vrp.c (dump_asserts_for): Likewise.
3847 * ifcvt.c (if_convert): Unconditionally use print_rtl_with_bb.
3848 * tree-if-conv.c (if_convertible_bb_p): Don't look at
3849 EDGE_ABNORMAL_CALL, it has no meaning in the GIMPLE world.
3850 * trans-mem.c (make_tm_edge): Don't set EDGE_ABNORMAL_CALL,
3851 for the same reason.
3852 * config/rl78/rl78.c (rl78_reorg): Update print_rtl_with_bb calls.
3853
3854 2012-07-17 Richard Guenther <rguenther@suse.de>
3855
3856 * tree-vect-data-refs.c (vect_get_new_vect_var): Add referenced
3857 vars here, use create_tmp_reg where appropriate.
3858 (vect_create_addr_base_for_vector_ref): Do not add referenced
3859 vars here, use create_tmp_reg where appropriate.
3860 (vect_create_data_ref_ptr): Likewise.
3861 (vect_create_destination_var): Likewise.
3862 (vect_permute_store_chain): Likewise.
3863 (vect_permute_load_chain): Likewise.
3864 * tree-vect-loop-manip.c (vect_create_cond_for_align_checks):
3865 Likewise.
3866 * tree-vect-loop.c (get_initial_def_for_induction): Likewise.
3867 * tree-vect-patterns.c (vect_recog_temp_ssa_var): Likewise.
3868 (vect_handle_widen_op_by_const): Likewise.
3869 * tree-vect-stmts.c (vect_init_vector): Likewise.
3870 (vectorizable_load): Likewise.
3871
3872 2012-07-17 Tom de Vries <tom@codesourcery.com>
3873
3874 * hwint.c: Fix loop range.
3875
3876 2012-07-17 Tom de Vries <tom@codesourcery.com>
3877
3878 * double-int.h (double_int_popcount): New inline function.
3879 * hwint.c (popcount_hwi): New function.
3880 * hwint.h (popcount_hwi): Declare function. New inline function.
3881
3882 2012-07-17 Richard Henderson <rth@redhat.com>
3883
3884 * tree-vect-stmts.c (supportable_widening_operation): Remove decl
3885 parameters.
3886 (vectorizable_conversion): Update supportable_widening_operation call.
3887 * tree-vect-patterns.c (vect_recog_widen_mult_pattern): Likewise.
3888 (vect_recog_widen_shift_pattern): Likewise.
3889 * tree-vectorizer.h: Update decl.
3890
3891 2012-07-17 Ramana Radhakrishnan <ramana.radhakrishnan@linaro.org>
3892 Ulrich Weigand <ulrich.weigand@linaro.org>
3893
3894 * common/config/arm/arm-common.c (arm_option_optimization_table):
3895 Enable -fsched-pressure by default while optimizing.
3896 * config/arm/arm.c (arm_option_override): Use the alternate scheduler
3897 pressure algorithm by default.
3898
3899 2012-07-16 Oleg Endo <olegendo@gcc.gnu.org>
3900
3901 * config/sh/sh.h (CONST_OK_FOR_I06): Delete.
3902 (CONST_OK_FOR_I10): Move macro to ...
3903 * config/sh/sh.c: ... here.
3904 (sh_legitimate_index_p): Use satisfies_constraint_I06 instead of
3905 CONST_OK_FOR_I06.
3906
3907 2012-07-16 Oleg Endo <olegendo@gcc.gnu.org>
3908
3909 * config/sh/sh.md: Delete mov related define_peephole patterns.
3910
3911 2012-07-16 Jonathan Wakely <jwakely.gcc@gmail.com>
3912
3913 PR c++/53919
3914 * doc/install.texi (Installing GCC): Refer to instructions for
3915 released versions. Fix hyphenation.
3916
3917 2012-07-16 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
3918
3919 * config/spu/spu.c (targetm): Move to bottom of file.
3920 (spu_attribute_table): Likewise.
3921 (spu_option_override, spu_init_builtins, spu_builtin_decl,
3922 spu_scalar_mode_supported_p, spu_vector_mode_supported_p,
3923 spu_legitimate_address_p, spu_addr_space_legitimate_address_p,
3924 adjust_operand, get_pic_reg, need_to_save_reg, frame_emit_store,
3925 frame_emit_load, frame_emit_add_imm, emit_nop_for_insn,
3926 insn_clobbers_hbr, spu_emit_branch_hint, spu_emit_vector_compare,
3927 get_branch_target, spu_machine_dependent_reorg, spu_sched_issue_rate,
3928 spu_sched_variable_issue, spu_sched_adjust_cost, spu_sched_init_global,
3929 spu_sched_init, spu_sched_reorder, spu_handle_fndecl_attribute,
3930 spu_handle_vector_attribute, spu_pass_by_reference, spu_function_arg,
3931 spu_function_arg_advance, spu_build_builtin_va_list, spu_va_start,
3932 spu_gimplify_va_arg_expr, store_with_one_insn_p, reg_aligned_for_addr,
3933 spu_assemble_integer, spu_asm_globalize_label, spu_rtx_costs,
3934 spu_function_ok_for_sibcall, spu_init_libfuncs, spu_return_in_memory,
3935 spu_encode_section_info, spu_legitimize_address,
3936 spu_addr_space_legitimize_address, spu_builtin_mask_for_load,
3937 spu_builtin_vectorization_cost, spu_vector_alignment_reachable,
3938 spu_addr_space_pointer_mode, spu_addr_space_address_mode,
3939 spu_addr_space_subset_p, spu_addr_space_convert, spu_sms_res_mii,
3940 spu_section_type_flags, spu_select_section, spu_unique_section,
3941 spu_trampoline_init, spu_conditional_register_usage,
3942 spu_ref_may_alias_errno, spu_output_mi_thunk, spu_unwind_word_mode,
3943 spu_libgcc_cmp_return_mode, spu_libgcc_shift_count_mode,
3944 spu_setup_incoming_varargs): Remove prototypes.
3945 (spu_legitimize_address): Add "static" to definition.
3946
3947 2012-07-16 Jakub Jelinek <jakub@redhat.com>
3948
3949 * config/i386/rtmintrin.h (_xabort): Remove trailing semicolon.
3950
3951 2012-07-16 Ulrich Weigand <ulrich.weigand@linaro.org>
3952
3953 * tree-ssa-ccp.c (optimize_unreachable): Check gsi_end_p
3954 before calling gsi_stmt.
3955
3956 2012-07-16 Kirill Yukhin <kirill.yukhin@intel.com>
3957
3958 Revert
3959 2012-07-16 Sergey Melnikov <sergey.melnikov@intel.com>
3960
3961 * config/i386/i386.md (stack_protect_set): Disable the pattern
3962 for Android since Android libc (bionic) does not provide random
3963 value for stack protection guard at gs:0x14. Guard value
3964 will be provided from external symbol (default implementation).
3965 (stack_protect_set_<mode>): Likewise.
3966 (stack_protect_test): Likewise.
3967 (stack_protect_test_<mode>): Likewise.
3968
3969 2012-07-16 H.J. Lu <hongjiu.lu@intel.com>
3970
3971 PR middle-end/53959
3972 PR bootstrap/53963
3973 * gimple.c (gimple_types_compatible_p_1): Restore type attribute
3974 comparison.
3975
3976 2012-07-16 Bill Schmidt <wschmidt@linux.ibm.com>
3977
3978 * opts.c (default_option): Add -fvect-cost-model to default options
3979 at -O3 and above.
3980
3981 2012-07-16 Steven Bosscher <steven@gcc.gnu.org>
3982
3983 * graphite-clast-to-gimple.c, graphite-dependences.c,
3984 graphite-sese-to-poly.c: Include tree-pass.h instead of dumpfile.h
3985 for pass TODO flags.
3986 * Makefile.in: Fix dependencies.
3987
3988 2012-07-16 Steven Bosscher <steven@gcc.gnu.org>
3989
3990 * haifa-sched.c (init_before_recovery): Do not set EDGE_CAN_FALLTHRU.
3991 * cfgrtl.c (force_nonfallthru_and_redirect): Likewise.
3992
3993 * function.c (stack_protect_epilogue): Use expand_call to expand
3994 targetm.stack_protect_fail.
3995 * stmt.c (expand_expr_stmt): Remove now-unused function.
3996 * tree.h (expand_expr_stmt): Remove prototype.
3997 * doc/tm.texi.in (TARGET_STACK_PROTECT_FAIL): Document that this
3998 hook must return a CALL_EXPR.
3999 * doc/tm.texi: Regenerate.
4000
4001 * emit-rtl.c (emit_label_before): Do not allow the same label
4002 to be emitted twice.
4003 (emit_label_after): Likewise.
4004 (emit_label): Likewise.
4005
4006 * flags.h (TYPE_OVERFLOW_WRAPS, TYPE_OVERFLOW_UNDEFINED,
4007 TYPE_OVERFLOW_TRAPS, POINTER_TYPE_OVERFLOW_UNDEFINED): Move to tree.h.
4008 * tree.h (TYPE_OVERFLOW_WRAPS, TYPE_OVERFLOW_UNDEFINED,
4009 TYPE_OVERFLOW_TRAPS, POINTER_TYPE_OVERFLOW_UNDEFINED): New home.
4010
4011 2012-07-16 Steven Bosscher <steven@gcc.gnu.org>
4012
4013 * system.h (dump_file): Do not define.
4014 * tree-pass.h: Include dumpfile.h, which is a new file containing...
4015 (enum tree_dump_index, TDF_*, get_dump_file_name, dump_enabled_p,
4016 dump_initialized_p, dump_begin, dump_end, dump_node, dump_switch_p,
4017 dump_flag_name, dump_file, dump_flags, dump_file_name,
4018 get_dump_file_info, struct dump_file_info): all of this, moved to...
4019 * dumpfile.h: Here, new file.
4020 * tree-dump.h: Include dumpfile.h, but not tree-pass.h.
4021 (dump_stmt): Remove prototype for C++ specific function.
4022 (dump_enumerated_decls): Move prototype from here...
4023 * tree-flow.h (dump_enumerated_decls): ... to here.
4024 (get_ref_base_and_extent) Move prototype from here ...
4025 * tree.h (get_ref_base_and_extent) ... to here.
4026 * tree-ssa-live.c: Do not inclde tree-pretty-print.h, because
4027 gimple-pretty-print.h is enough. Do not include tree-dump.h,
4028 include timevar.h and dumpfile.h instead.
4029 (struct numbered_tree_d, compare_decls_by_uid,
4030 dump_enumerated_decls_push, dump_enumerated_decls): Move from here ...
4031 * tree-dfa.c:(struct numbered_tree_d, compare_decls_by_uid,
4032 dump_enumerated_decls_push, dump_enumerated_decls):... to here.
4033 Do not include timevar.h.
4034 * tree.c: Do not include timevar.h.
4035 * tree-cfg.c: Do not include langhooks.h, tree-pretty-print.h, and
4036 timevar.h.
4037 (dump_cfg_stats): Use current_function_name.
4038 (gimple_cfg2vcg): Likewise.
4039 (dump_function_to_file): Likewise.
4040 * df-scan.c: Do not include tree-pass.h and timevar.h.
4041 Include dumpfile.h.
4042 (df_entry_block_bitmap_verify, df_exit_block_bitmap_verify): Do not
4043 use print_current_pass.
4044 * df-problems.c: Include dumpfile.h.
4045 Always define REG_DEAD_DEBUGGING, avoid #ifdef code, because it
4046 leads to errors in the code not selected.
4047 (df_note_compute): Do not print_rtl_with_bb here. Fix compilation
4048 bug if REG_DEAD_DEBUGGING is not 0, get_insns is not available here.
4049 * lcm.c: Include dumpfile.h.
4050 Remove obsolete include of insn-attr.h.
4051 * dojump.c (do_compare_rtx_and_jump): Remove failure printing for
4052 missing probability notes.
4053 * stmt.c: Include dumpfile.h.
4054 (emit_case_decision_tree): Re-enable printing expand details only
4055 if TDF_DETAILS.
4056 * alias.c, auto-inc-dec.c, bb-reorder.c, caller-save.c, cfg.c,
4057 cfgcleanup.c, cfgexpand.c, cfgloop.c, cfgloopmanip.c, cgraph.c,
4058 cgraphclones.c, cgraphunit.c, combine.c, combine-stack-adj.c,
4059 coverage.c, cprop.c, cse.c, cselib.c, dbgcnt.c, dce.c, df-core.c,
4060 dse.c, dwarf2out.c, emit-rtl.c, except.c, expr.c, final.c,
4061 function.c, fwprop.c, gcse.c, gimple-fold.c,
4062 gimple-pretty-print.c, gimple-ssa-strength-reduction.c,
4063 gimplify.c, graphite-blocking.c, graphite-clast-to-gimple.c,
4064 graphite-dependences.c, graphite-interchange.c,
4065 graphite-optimize-isl.c, graphite-poly.c,
4066 graphite-sese-to-poly.c, haifa-sched.c, hw-doloop.c, ifcvt.c,
4067 ipa.c, ipa-cp.c, ipa-inline-analysis.c, ipa-inline.c,
4068 ipa-inline-transform.c, ipa-prop.c, ipa-pure-const.c,
4069 ipa-reference.c, ipa-split.c, ipa-utils.c, ira.c, ira-emit.c,
4070 jump.c, loop-doloop.c, loop-init.c, loop-invariant.c, loop-iv.c,
4071 loop-unroll.c, loop-unswitch.c, lower-subreg.c,
4072 lto-section-out.c, lto-streamer-in.c, matrix-reorg.c, mcf.c,
4073 mode-switching.c, modulo-sched.c, omega.c, omp-low.c, passes.c,
4074 plugin.c, postreload.c, postreload-gcse.c, predict.c, print-rtl.c,
4075 print-tree.c, profile.c, recog.c, ree.c, regcprop.c, reginfo.c,
4076 regmove.c, regrename.c, reg-stack.c, reload1.c, reorg.c,
4077 sched-rgn.c, sched-vis.c, sel-sched.c, sel-sched-ir.c,
4078 store-motion.c, tracer.c, trans-mem.c, tree-affine.c,
4079 tree-call-cdce.c, tree-cfgcleanup.c, tree-chrec.c,
4080 tree-data-ref.c, tree-diagnostic.c, tree-dump.c,
4081 tree-eh.c, tree-flow-inline.h, tree-if-conv.c, tree-into-ssa.c,
4082 tree-mudflap.c, tree-nrv.c, tree-object-size.c,
4083 tree-optimize.c, tree-outof-ssa.c, tree-predcom.c,
4084 tree-pretty-print.c, tree-profile.c, tree-scalar-evolution.c,
4085 tree-sra.c, tree-ssa-address.c, tree-ssa-alias.c, tree-ssa.c,
4086 tree-ssa-ccp.c, tree-ssa-coalesce.c, tree-ssa-copy.c,
4087 tree-ssa-copyrename.c,, tree-ssa-dce.c, tree-ssa-dom.c,
4088 tree-ssa-dse.c, tree-ssa-forwprop.c, tree-ssa-ifcombine.c,
4089 tree-ssa-loop.c, tree-ssa-loop-ch.c, tree-ssa-loop-im.c,
4090 tree-ssa-loop-ivcanon.c, tree-ssa-loop-ivopts.c,
4091 tree-ssa-loop-manip.c, tree-ssa-loop-niter.c,
4092 tree-ssa-loop-prefetch.c, tree-ssa-loop-unswitch.c,
4093 tree-ssa-math-opts.c, tree-ssa-operands.c, tree-ssa-phiopt.c,
4094 tree-ssa-phiprop.c, tree-ssa-pre.c, tree-ssa-propagate.c,
4095 tree-ssa-reassoc.c, tree-ssa-sccvn.c, tree-ssa-sink.c,
4096 tree-ssa-structalias.c, tree-ssa-tail-merge.c, tree-ssa-ter.c,
4097 tree-ssa-threadedge.c, tree-ssa-threadupdate.c,
4098 tree-ssa-uncprop.c, tree-ssa-uninit.c,
4099 tree-switch-conversion.c, tree-tailcall.c,
4100 tree-vect-data-refs.c, tree-vect-loop.c,
4101 tree-vect-loop-manip.c, tree-vectorizer.c,
4102 tree-vect-patterns.c, tree-vect-slp.c, tree-vect-stmts.c,
4103 tree-vrp.c, value-prof.c, var-tracking.c, web.c: Include tree-pass.h
4104 only if needed. If tree-pass.h is included, do not include timevar.h
4105 and dumpfile.h. If tree-pass.h is not included but dump_file, or
4106 dump_flags, or the TDF_* flags are used, include dumpfile.h.
4107 If gimple-pretty-print.h is included, don't include
4108 tree-pretty-print.h. Remove assorted unnecessary includes.
4109
4110 * config/mn10300/mn10300.c, config/c6x/c6x.c, config/ia64/ia64.c,
4111 config/arm/arm.c, config/bfin/bfin.c, config/frv/frv.c,
4112 config/spu/spu.c, config/mep/mep.c, config/i386/i386.c:
4113 Include dumpfile.h.
4114 * config/rl78/rl78.c: Include dumpfile.h instead of tree-pass.h.
4115 * arm/t-arm, avr/t-avr, i386/t-i386, ia64/t-ia64, mep/t-mep,
4116 spu/t-spu-elf: Fix dependencies.
4117
4118 2012-07-16 Dehao Chen <dehao@google.com>
4119
4120 Revert
4121 2012-07-10 Dehao Chen <dehao@google.com>
4122
4123 * tree.h (phi_arg_d): New field.
4124 * tree-flow-inline.h (gimple_phi_arg_block): New function.
4125 (gimple_phi_arg_block_from_edge): New function.
4126 (gimple_phi_arg_set_block): New function.
4127 (gimple_phi_arg_has_block): New function.
4128 (redirect_edge_var_map_block): New function.
4129 * tree-flow.h (_edge_var_map): New field.
4130 * tree-ssa-live.c (remove_unused_locals): Mark phi_arg's block as used.
4131 * tree-eh.c (cleanup_empty_eh_merge_phis): Add block debug info for
4132 redirect_edge_var_map_add.
4133 * tree-outof-ssa.c (_elim_graph): New field.
4134 (insert_partition_copy_on_edge): New parameter.
4135 (insert_value_copy_on_edge): New parameter.
4136 (insert_rtx_to_part_on_edge): New parameter.
4137 (insert_part_to_rtx_on_edge): New parameter.
4138 (elim_graph_add_edge): New parameter.
4139 (elim_graph_remove_succ_edge): New parameter.
4140 (FOR_EACH_ELIM_GRAPH_SUCC): New parameter.
4141 (FOR_EACH_ELIM_GRAPH_PRED): New parameter.
4142 (new_elim_graph): Add block debug info.
4143 (clear_elim_graph): Likewise.
4144 (delete_elim_graph): Likewise.
4145 (elim_graph_add_node): Likewise.
4146 (elim_graph_add_edge): Likewise.
4147 (elim_graph_remove_succ_edge): Likewise.
4148 (eliminate_build): Likewise.
4149 (elim_forward): Likewise.
4150 (elim_unvisited_predecessor): Likewise.
4151 (elim_backward): Likewise.
4152 (elim_create): Likewise.
4153 (eliminate_phi): Likewise.
4154 (insert_backedge_copies): Likewise.
4155 * tree-into-ssa.c (insert_phi_nodes_for): Add block debug info for
4156 add_phi_arg.
4157 (rewrite_add_phi_arguments): Likewise.
4158 * tree-ssa-loop-im.c (execute_sm_if_changed): Likewise.
4159 * tree-ssa-tail-merge.c (replace_block_by): Likewise.
4160 * tree-ssa-threadupdate.c (copy_phi_args): Likewise.
4161 * tree-loop-distribution.c (update_phis_for_loop_copy): Likewise.
4162 * tree-ssa-loop-manip.c (create_iv): Likewise.
4163 (add_exit_phis_edge): Likewise.
4164 (split_loop_exit_edge): Likewise.
4165 (copy_phi_node_args): Likewise.
4166 (tree_transform_and_unroll_loop): Likewise.
4167 * value-prof.c (gimple_ic): Likewise.
4168 (gimple_stringop_fixed_value): Likewise.
4169 * tree-tailcall.c (add_successor_phi_arg): Likewise.
4170 (eliminate_tail_call): Likewise.
4171 (create_tailcall_accumulator): Likewise.
4172 (tree_optimize_tail_calls_1): Likewise.
4173 * tree-phinodes.c (add_phi_arg): Likewise.
4174 (make_phi_node): Likewise.
4175 (resize_phi_node): Likewise.
4176 (remove_phi_arg_num): Likewise.
4177 * omp-low.c (expand_parallel_call): Likewise.
4178 (expand_omp_for_static_chunk): Likewise.
4179 * tree-vect-loop-manip.c (slpeel_update_phis_for_duplicate_loop):
4180 Likewise.
4181 (slpeel_update_phi_nodes_for_guard1): Likewise.
4182 (slpeel_update_phi_nodes_for_guard2): Likewise.
4183 (slpeel_tree_duplicate_loop_to_edge_cfg): Likewise.
4184 (set_prologue_iterations): Likewise.
4185 (slpeel_tree_peel_loop_to_edge): Likewise.
4186 (vect_loop_versioning): Likewise.
4187 * tree-parloops.c (create_phi_for_local_result): Likewise.
4188 (transform_to_exit_first_loop): Likewise.
4189 (create_parallel_loop): Likewise.
4190 * ipa-split.c (split_function): Likewise.
4191 * tree-vect-loop.c (get_initial_def_for_induction): Likewise.
4192 (vect_create_epilog_for_reduction): Likewise.
4193 * tree-vect-data-refs.c (vect_setup_realignment): Likewise.
4194 * graphite-scop-detection.c (canonicalize_loop_closed_ssa): Likewise.
4195 * tree-ssa-phiopt.c (cond_store_replacement): Likewise.
4196 (cond_if_else_store_replacement_1): Likewise.
4197 * tree-cfgcleanup.c (remove_forwarder_block): Likewise.
4198 (remove_forwarder_block_with_phi): Likewise.
4199 * tree-ssa-pre.c (insert_into_preds_of_block): Likewise.
4200 * tree-predcom.c (initialize_root_vars): Likewise.
4201 (initialize_root_vars_lm): Likewise.
4202 * sese.c (sese_add_exit_phis_edge): Likewise.
4203 * tree-ssa-dce.c (forward_edge_to_pdom): Likewise.
4204 * tree-ssa.c (flush_pending_stmts): Likewise.
4205 (redirect_edge_var_map_add): Likewise.
4206 (ssa_redirect_edge): Likewise.
4207 * gimple-streamer-in.c (input_phi): Likewise.
4208 * tree-vect-stmts.c (vectorizable_load): Likewise.
4209 * tree-inline.c (copy_phis_for_bb): Likewise.
4210 * tree-ssa-phiprop.c (phiprop_insert_phi): Likewise.
4211 * tree-switch-conversion.c (fix_phi_nodes): Likewise.
4212 * tree-cfg.c (reinstall_phi_args): Likewise.
4213 (gimple_make_forwarder_block): Likewise.
4214 (add_phi_args_after_copy_edge): Likewise.
4215 (gimple_duplicate_sese_tail): Likewise.
4216
4217 2012-07-16 Sergey Melnikov <sergey.melnikov@intel.com>
4218
4219 * config/i386/i386.md (stack_protect_set): Disable the pattern
4220 for Android since Android libc (bionic) does not provide random
4221 value for stack protection guard at gs:0x14. Guard value
4222 will be provided from external symbol (default implementation).
4223 (stack_protect_set_<mode>): Likewise.
4224 (stack_protect_test): Likewise.
4225 (stack_protect_test_<mode>): Likewise.
4226
4227 2012-07-16 Hans-Peter Nilsson <hp@axis.com>
4228
4229 * config/cris/cris-protos.h (cris_legitimate_address_p): Declare.
4230 * config/cris/cris.h (CONSTANT_ADDRESS_P): Define in terms of
4231 CONSTANT_P and cris_legitimate_address_p.
4232 * config/cris/cris.c (cris_legitimate_address_p): Make non-static.
4233 (cris_preferred_reload_class): Don't return GENERAL_REGS as
4234 preferred to MOF_SRP_REGS.
4235
4236 * config/cris/cris.c (cris_init_libfuncs): Handle initialization
4237 of library functions for basic atomic compare-and-swap.
4238 * config/cris/cris.h (TARGET_ATOMICS_MAY_CALL_LIBFUNCS): New macro.
4239 * config/cris/cris.opt (munaligned-atomic-may-use-library): New option.
4240 * config/cris/sync.md ("atomic_fetch_<atomic_op_name><mode>")
4241 ("cris_atomic_fetch_<atomic_op_name><mode>_1")
4242 ("atomic_compare_and_swap<mode>")
4243 ("cris_atomic_compare_and_swap<mode>_1"): Make conditional on
4244 TARGET_ATOMICS_MAY_CALL_LIBFUNCS for sizes larger than byte.
4245 * config/cris/cris.c (cris_print_operand) <case 'P', 'q'>: New cases.
4246 * config/cris/sync.md (atomic_op_op_cnstr): New code_attr.
4247 (atomic_op_op_pred): Ditto.
4248 (atomic_op_mnem_pre_op2): Renamed from atomic_op_mnem_pre; to
4249 reflect the change to include %2 in expansion. All callers changed.
4250 (qm3): New mode_attr.
4251 ("atomic_fetch_<atomic_op_name><mode>"): Use <atomic_op_op_pred>
4252 as predicate for operand 2.
4253 ("cris_atomic_fetch_<atomic_op_name><mode>_1"): Update FIXME. Use
4254 "<atomic_op_op_pred>" "<atomic_op_op_cnstr>" for predicate and
4255 constraint for operand 2.
4256 ("atomic_compare_and_swap<mode>"): Add FIXME. Change predicate to
4257 nonmemory_operand for operand 3.
4258 ("cris_atomic_compare_and_swap<mode>_1"): Change operand 3 to
4259 exclude memory. Improve emitted sync code for v10 and v32. Use
4260 <qm3> instead of <m> for size designator for cmp.
4261 ("atomic_compare_and_swap<mode>"): Change predicate to
4262 nonmemory_operand for operand 3. Add FIXME.
4263 ("cris_atomic_compare_and_swap<mode>_1"): Change predicates and
4264 constraints for operand 3 to exclude memory.
4265 ("atomic_fetch_<atomic_op_name><mode>")
4266 ("atomic_compare_and_swap<mode>"): Gate expand_mem_thread_fence
4267 calls on result of call to need_atomic_barrier_p.
4268
4269 2012-07-15 Richard Sandiford <rdsandiford@googlemail.com>
4270
4271 * config/mips/mips.md (move_type): Replace mfhilo and mthilo
4272 with mflo and mtlo.
4273 (type): Split mfhilo into mfhi and mflo. Split mthilo into mthi
4274 and mtlo. Adjust move_type->type mapping.
4275 (may_clobber_hilo): Split mthilo into mthi and mtlo.
4276 (*movdi_32bit, *movdi_32bit_mips16, *movdi_64bit, *movdi_64bit_mips16)
4277 (*mov<mode>_internal, *mov<mode>_mips16, *movhi_internal)
4278 (*movhi_mips16, *movqi_internal, *movqi_mips16): Use mtlo and mflo
4279 instead of mthilo and mfhilo.
4280 (mfhi<GPR:mode>_<HILO:mode>): Use mfhi instead of mfhilo.
4281 (mthi<GPR:mode>_<HILO:mode>): Use mthi instead of mthilo.
4282 * config/mips/mips-dsp.md (mips_extr_w, mips_extr_r_w, mips_extr_rs_w)
4283 (mips_extr_s_h, mips_extp, mips_extpdp, mips_shilo, mips_mthlip):
4284 Use mflo instead of mfhilo.
4285 * config/mips/10000.md (r10k_arith): Split mthilo.
4286 (r10k_mfhi, r10k_mflo): Use mfhi and mflo directly.
4287 * config/mips/sb1.md (ir_sb1_mfhi, ir_sb1_mflo): Likewise.
4288 (ir_sb1_mthilo): Split mthilo into mthi and mtlo.
4289 * config/mips/20kc.md (r20kc_imthilo, r20kc_imfhilo): Split
4290 mthilo and mfhilo.
4291 * config/mips/24k.md (r24k_int_mfhilo, r24k_int_mthilo): Likewise.
4292 * config/mips/4130.md (vr4130_class, vr4130_mfhilo, vr4130_mthilo):
4293 Likewise.
4294 * config/mips/4k.md (r4k_int_mthilo, r4k_int_mfhilo): Likewise.
4295 * config/mips/5400.md (ir_vr54_hilo): Likewise.
4296 * config/mips/5500.md (ir_vr55_mthilo, ir_vr55_mfhilo): Likewise.
4297 * config/mips/5k.md (r5k_int_mthilo, r5k_int_mfhilo): Likewise.
4298 * config/mips/7000.md (rm7_mthilo, rm7_mfhilo): Likewise.
4299 * config/mips/74k.md (r74k_int_mfhilo, r74k_int_mthilo): Likewise.
4300 * config/mips/9000.md (rm9k_mfhilo, rm9k_mthilo): Likewise.
4301 * config/mips/generic.md (generic_hilo): Likewise.
4302 * config/mips/loongson2ef.md (ls2_alu): Likewise.
4303 * config/mips/loongson3a.md (ls3a_mfhilo): Likewise.
4304 * config/mips/octeon.md (octeon_imul_o1, octeon_imul_o2)
4305 (octeon_mfhilo_o1, octeon_mfhilo_o2): Likewise.
4306 * config/mips/sr71k.md (ir_sr70_hilo): Likewise.
4307 * config/mips/xlr.md (xlr_hilo): Likewise.
4308
4309 2012-07-14 Andrew Stubbs <ams@codesourcery.com>
4310 Sandra Loosemore <sandra@codesourcery.com>
4311
4312 * config/sh/sh.h (SH_ASM_SPEC): Add spaces between options.
4313
4314 2012-07-14 Uros Bizjak <ubizjak@gmail.com>
4315
4316 * config/i386/i386.c (ix86_set_reg_reg_cost): Enable TFmode/TCmode
4317 for TARGET_SSE.
4318
4319 2012-07-14 Steven Bosscher <steven@gcc.gnu.org>
4320
4321 * toplev.c (init_asm_output): Open asm_out_file in 'w' mode.
4322
4323 2012-07-13 Bill Schmidt <wschmidt@linux.ibm.com>
4324
4325 PR bootstrap/53955
4326 * config/spu/spu.c (spu_init_cost): Mark static.
4327 (spu_add_stmt_cost): Likewise.
4328 (spu_finish_cost): Likewise.
4329 (spu_destroy_cost_data): Likewise.
4330 * config/i386/i386.c (ix86_init_cost): Mark static.
4331 (ix86_add_stmt_cost): Likewise.
4332 (ix86_finish_cost): Likewise.
4333 (ix86_destroy_cost_data): Likewise.
4334 * config/rs6000/rs6000.c (rs6000_init_cost): Mark static.
4335 (rs6000_add_stmt_cost): Likewise.
4336 (rs6000_finish_cost): Likewise.
4337 (rs6000_destroy_cost_data): Likewise.
4338
4339 2012-07-13 Steven Bosscher <steven@gcc.gnu.org>
4340
4341 * ggc.h (ggc_internal_alloc_stat, ggc_alloc_typed_stat,
4342 ggc_internal_cleared_alloc_stat, ggc_cleared_alloc_htab_ignore_args,
4343 ggc_cleared_alloc_ptr_array_two_args, ggc_splay_alloc): Add
4344 ATTRIBUTE_MALLOC.
4345 * alloc-pool.h (pool_alloc): Likewise.
4346
4347 * final.c (final): Do not loop to find max_uid.
4348
4349 2012-07-13 Steven Bosscher <steven@gcc.gnu.org>
4350
4351 * emit-rtl.c (make_debug_insn_raw, make_jump_insn_raw): Make static.
4352 * rtl.h (make_debug_insn_raw, make_jump_insn_raw): Remove prototypes.
4353
4354 2012-07-13 Richard Guenther <rguenther@suse.de>
4355
4356 PR tree-optimization/53907
4357 * tree-ssa-forwprop.c (associate_pointerplus): New function.
4358 (ssa_forward_propagate_and_combine): Call it.
4359
4360 2012-07-13 Richard Guenther <rguenther@suse.de>
4361
4362 PR tree-optimization/53922
4363 * tree-vrp.c (value_inside_range): Change prototype to take
4364 min/max instead of value-range.
4365 (range_includes_zero_p): Likewise. Return the result from
4366 value_inside_range.
4367 (extract_range_from_binary_expr_1): Adjust to handle dont-know
4368 return value from range_includes_zero_p.
4369 (extract_range_from_unary_expr_1): Likewise.
4370 (compare_range_with_value): Likewise.
4371 (vrp_meet_1): Likewise.
4372
4373 2012-07-13 Bill Schmidt <wschmidt@linux.ibm.com>
4374
4375 * doc/tm.texi: Regenerate.
4376 * doc/tm.texi.in (TARGET_VECTORIZE_INIT_COST): New hook.
4377 (TARGET_VECTORIZE_ADD_STMT_COST): Likewise.
4378 (TARGET_VECTORIZE_FINISH_COST): Likewise.
4379 (TARGET_VECTORIZE_DESTROY_COST_DATA): Likewise.
4380 * targhooks.c (default_init_cost): New function.
4381 (default_add_stmt_cost): Likewise.
4382 (default_finish_cost): Likewise.
4383 (default_destroy_cost_data): Likewise.
4384 * targhooks.h (default_init_cost): New decl.
4385 (default_add_stmt_cost): Likewise.
4386 (default_finish_cost): Likewise.
4387 (default_destroy_cost_data): Likewise.
4388 * target.def (init_cost): New DEFHOOK.
4389 (add_stmt_cost): Likewise.
4390 (finish_cost): Likewise.
4391 (destroy_cost_data): Likewise.
4392 * target.h (struct _stmt_vec_info): New extern decl.
4393 (stmt_vectype): Likewise.
4394 (stmt_in_inner_loop_p): Likewise.
4395 * tree-vectorizer.h (stmt_info_for_cost): New struct/typedef.
4396 (stmt_vector_for_cost): New VEC/typedef.
4397 (add_stmt_info_to_vec): New function.
4398 (struct _slp_tree): Remove cost.inside_of_loop field.
4399 (struct _slp_instance): Remove cost.inside_of_loop field; add
4400 stmt_cost_vec field.
4401 (SLP_INSTANCE_INSIDE_OF_LOOP_COST): Remove macro.
4402 (SLP_INSTANCE_STMT_COST_VEC): New accessor macro.
4403 (SLP_TREE_INSIDE_OF_LOOP_COST): Remove macro.
4404 (struct _vect_peel_extended_info): Add stmt_cost_vec field.
4405 (struct _loop_vec_info): Add target_cost_data field.
4406 (LOOP_VINFO_TARGET_COST_DATA): New accessor macro.
4407 (struct _bb_vec_info): Add target_cost_data field.
4408 (BB_VINFO_TARGET_COST_DATA): New accessor macro.
4409 (struct _stmt_vec_info): Remove cost.inside_of_loop field.
4410 (STMT_VINFO_INSIDE_OF_LOOP_COST): Remove macro.
4411 (stmt_vinfo_set_inside_of_loop_cost): Remove function.
4412 (init_cost): New function.
4413 (add_stmt_cost): Likewise.
4414 (finish_cost): Likewise.
4415 (destroy_cost_data): Likewise.
4416 (vect_model_simple_cost): Change parameter list.
4417 (vect_model_store_cost): Likewise.
4418 (vect_model_load_cost): Likewise.
4419 (record_stmt_cost): New extern decl.
4420 (vect_get_load_cost): Change parameter list.
4421 (vect_get_store_cost): Likewise.
4422 * tree-vect-loop.c (new_loop_vec_info): Call init_cost.
4423 (destroy_loop_vec_info): Call destroy_cost_data.
4424 (vect_estimate_min_profitable_iters): Remove old calculation of
4425 inside costs; call finish_cost instead.
4426 (vect_model_reduction_cost): Call add_stmt_cost instead of old
4427 inside-costs calculation.
4428 (vect_model_induction_cost): Likewise.
4429 * tree-vect-data-refs.c (vect_get_data_access_cost): Change to
4430 return a stmt_vector_for_cost; modify calls to vect_get_load_cost
4431 and vect_get_store_cost to obtain the value to return.
4432 (vect_peeling_hash_get_lowest_cost): Obtain a stmt_cost_vec from
4433 vect_get_data_access_cost and store it in the minimum peeling
4434 structure.
4435 (vect_peeling_hash_choose_best_peeling): Change the parameter list
4436 to add a (stmt_vector_for_cost *) output parameter, and set its value.
4437 (vect_enhance_data_refs_alignment): Ignore the new return value from
4438 calls to vect_get_data_access_cost; obtain stmt_cost_vec from
4439 vect_peeling_hash_choose_best_peeling and pass its contents to the
4440 target cost model.
4441 * tree-vect-stmts.c (stmt_vectype): New function.
4442 (stmt_in_inner_loop_p): Likewise.
4443 (record_stmt_cost): Likewise.
4444 (vect_model_simple_cost): Add stmt_cost_vec parameter; call
4445 record_stmt_cost instead of old calculation; don't call
4446 stmt_vinfo_set_inside_of_loop_cost.
4447 (vect_model_promotion_demotion_cost): Call add_stmt_cost instead of
4448 old calculation; don't call stmt_vinfo_set_inside_of_loop_cost.
4449 (vect_model_store_cost): Add stmt_cost_vec parameter; call
4450 record_stmt_cost instead of old calculation; add stmt_cost_vec
4451 parameter to vect_get_store_cost call; don't call
4452 stmt_vinfo_set_inside_of_loop_cost.
4453 (vect_get_store_cost): Add stmt_cost_vec parameter; call
4454 record_stmt_cost instead of old calculation.
4455 (vect_model_load_cost): Add stmt_cost_vec parameter; call
4456 record_stmt_cost instead of old calculation; add stmt_cost_vec
4457 parameter to vect_get_load_cost call; don't call
4458 stmt_vinfo_set_inside_of_loop_cost.
4459 (vect_get_load_cost): Add stmt_cost_vec parameter; call
4460 record_stmt_cost instead of old calculation.
4461 (vectorizable_call): Add NULL parameter to vect_model_simple_cost call.
4462 (vectorizable_conversion): Likewise.
4463 (vectorizable_assignment): Likewise.
4464 (vectorizable_shift): Likewise.
4465 (vectorizable_operation): Likewise.
4466 (vectorizable_store): Add NULL parameter to vect_model_store_cost call.
4467 (vectorizable_load): Add NULL parameter to vect_model_load_cost call.
4468 (new_stmt_vec_info): Don't set STMT_VINFO_INSIDE_OF_LOOP_COST.
4469 * config/spu/spu.c (TARGET_VECTORIZE_INIT_COST): New macro def.
4470 (TARGET_VECTORIZE_ADD_STMT_COST): Likewise.
4471 (TARGET_VECTORIZE_FINISH_COST): Likewise.
4472 (TARGET_VECTORIZE_DESTROY_COST_DATA): Likewise.
4473 (spu_init_cost): New function.
4474 (spu_add_stmt_cost): Likewise.
4475 (spu_finish_cost): Likewise.
4476 (spu_destroy_cost_data): Likewise.
4477 * config/i386/i386.c (ix86_init_cost): New function.
4478 (ix86_add_stmt_cost): Likewise.
4479 (ix86_finish_cost): Likewise.
4480 (ix86_destroy_cost_data): Likewise.
4481 (TARGET_VECTORIZE_INIT_COST): New macro def.
4482 (TARGET_VECTORIZE_ADD_STMT_COST): Likewise.
4483 (TARGET_VECTORIZE_FINISH_COST): Likewise.
4484 (TARGET_VECTORIZE_DESTROY_COST_DATA): Likewise.
4485 * config/rs6000/rs6000.c (TARGET_VECTORIZE_INIT_COST): New macro def.
4486 (TARGET_VECTORIZE_ADD_STMT_COST): Likewise.
4487 (TARGET_VECTORIZE_FINISH_COST): Likewise.
4488 (TARGET_VECTORIZE_DESTROY_COST_DATA): Likewise.
4489 (rs6000_init_cost): New function.
4490 (rs6000_add_stmt_cost): Likewise.
4491 (rs6000_finish_cost): Likewise.
4492 (rs6000_destroy_cost_data): Likewise.
4493 * tree-vect-slp.c (vect_free_slp_instance): Free stmt_cost_vec.
4494 (vect_create_new_slp_node): Don't set SLP_TREE_INSIDE_OF_LOOP_COST.
4495 (vect_get_and_check_slp_defs): Add stmt_cost_vec parameter; add
4496 stmt_cost_vec parameter to vect_model_store_cost and
4497 vect_model_simple_cost calls.
4498 (vect_build_slp_tree): Remove inside_cost parameter; add stmt_cost_vec
4499 parameter; add stmt_cost_vec parameter to vect_get_and_check_slp_defs,
4500 vect_model_load_cost, and recursive vect_build_slp_tree calls; prevent
4501 calculating cost more than once for loads; remove inside_cost
4502 parameter from recursive vect_build_slp_tree calls; call
4503 record_stmt_cost instead of old calculation.
4504 (vect_analyze_slp_instance): Allocate stmt_cost_vec and save it with
4505 the instance; free it on premature exit; remove inside_cost parameter
4506 from vect_build_slp_tree call; add stmt_cost_vec parameter to
4507 vect_build_slp_tree call; don't set SLP_INSTANCE_INSIDE_OF_LOOP_COST.
4508 (new_bb_vec_info): Call init_cost.
4509 (destroy_bb_vec_info): Call destroy_cost_data.
4510 (vect_bb_vectorization_profitable_p): Call add_stmt_cost for each
4511 statement recorded with an SLP instance; call finish_cost instead of
4512 the old calculation.
4513 (vect_update_slp_costs_according_to_vf): Record statement costs from
4514 SLP instances, multiplying by the appropriate number of copies; don't
4515 update SLP_INSTANCE_INSIDE_OF_LOOP_COST.
4516
4517 2012-07-13 Richard Guenther <rguenther@suse.de>
4518
4519 PR middle-end/53937
4520 * builtins.c (get_pointer_alignment_1): Handle constant
4521 pointers.
4522
4523 2012-07-13 Richard Sandiford <rdsandiford@googlemail.com>
4524 Steven Bosscher <steven@gcc.gnu.org>
4525 Bernd Schmidt <bernds@codesourcery.com>
4526
4527 PR rtl-optimization/53908
4528 * df-problems.c (can_move_insns_across): When doing
4529 memory-reference book-keeping, handle call insns.
4530
4531 2012-07-13 Richard Guenther <rguenther@suse.de>
4532
4533 * gimple.c (gimple_types_compatible_p_1): Remove redundant
4534 type attribute comparisons.
4535 (gimple_canonical_types_compatible_p): Likewise.
4536
4537 2012-07-12 Hans-Peter Nilsson <hp@axis.com>
4538
4539 PR rtl-optimization/53176
4540 * rtlanal.c (rtx_cost): Adjust default cost for X with a
4541 UNITS_PER_WORD factor for all X according to the size of
4542 its mode, not just for SUBREGs with untieable modes.
4543 Handle SET. Use factor * factor for MULT, DIV, UDIV,
4544 MOD, UMOD.
4545
4546 2012-07-12 Uros Bizjak <ubizjak@gmail.com>
4547
4548 * config/i386/i386.md (QImode and HImode cmove splitters): Merge
4549 QImode and HImode splitters. Use ix86_comparison_operator.
4550 Explicitly match FLAGS_REG.
4551 (DFmode cmove splitter): Explicitly match FLAGS_REG.
4552
4553 2012-07-11 Steven Bosscher <steven@gcc.gnu.org>
4554
4555 * expr.h (can_move_by_pieces): Move prototype from here ...
4556 * tree.h (can_move_by_pieces): ... to here.
4557 * optabs.h (set_widening_optab_handler): Use XCNEW.
4558 * gimplify.c: Do not include expr.h.
4559
4560 * toplev.c: Do not include dwarf2out.h.
4561 * config/ia64/ia64.c: Likewise.
4562 * config/sparc/sparc.c: Likewise.
4563 * config/sparc/t-sparc (sparc.o): Fix dependencies.
4564
4565 * Makefile.in (toplev.o): Fix dependencies
4566 (c-family/c-gimplify.o): Likewise.
4567 (c-family/c-common.o): Likewise.
4568
4569 2012-07-11 Steven Bosscher <steven@gcc.gnu.org>
4570
4571 * basic-block.h (struct edge_def): Use basic_block instead of
4572 basic_block_def *.
4573 * cfgloop.h (struct loop_exit, struct loop): Likewise.
4574 * gengenrtl.c (type_from_format): Likewise. Also for 'tree'
4575 instead of union tree_node *.
4576 * rtl.h (union rtunion_def, emit_insn_before_noloc,
4577 emit_insn_after_noloc, add_insn_before, add_insn_after,
4578 debug_bb_slim): Likewise.
4579 * tree-inline.h (struct copy_body_data): Likewise.
4580 * sched-rgn.c (dump_region_dot): Likewise.
4581 * gimple.h (struct gimple_statement_base, gimple_set_bb,
4582 gsi_move_to_bb_end): Likewise.
4583 * sched-vis.c (debug_bb_slim): Likewise.
4584 (debug_bb_n_slim): Likewise.
4585 * config/mn10300/mn10300.c (mn10300_insert_setlb_lcc): Likewise.
4586 (mn10300_block_contains_call):
4587
4588 2012-07-11 Greta Yorsh <Greta.Yorsh@arm.com>
4589
4590 PR target/53859
4591 * config/arm/arm.c (arm_early_load_addr_dep): Handle new
4592 epilogue patterns.
4593
4594 2012-07-11 Jonathan Wakely <jwakely.gcc@gmail.com>
4595
4596 * doc/extend.texi (Namespace Association): Alter cautionary text.
4597
4598 2012-07-10 Oleg Endo <olegendo@gcc.gnu.org>
4599
4600 PR target/53911
4601 * config/sh/sh.md: Remove displacement addresssing related splits.
4602
4603 2012-07-10 Xinliang David Li <davidxl@google.com>
4604
4605 * doc/invoke.texi: New option documented.
4606 * flag-types.h: New enum type.
4607 * gimplify.c (gimplify_bind_expr): Control
4608 clobber generation with new option.
4609 (gimplify_target_expr): Ditto.
4610 * common.opt: New option.
4611
4612 2012-07-10 Julian Brown <julian@codesourcery.com>
4613
4614 * config/arm/arm.md (movsi): Don't split symbol refs here.
4615 (define_split): New.
4616
4617 2012-07-10 Andreas Schwab <schwab@linux-m68k.org>
4618
4619 PR bootstrap/53913
4620 * config/m68k/m68k.c (m68k_epilogue_uses): New.
4621 * config/m68k/m68k.h (EPILOGUE_USES): Use it.
4622 * config/m68k/m68k-protos.h (m68k_epilogue_uses): Add prototype.
4623
4624 2012-07-10 Richard Henderson <rth@redhat.com>
4625
4626 * target.def (builtin_mul_widen_even, builtin_mul_widen_odd): Remove.
4627 * system.h (TARGET_VECTORIZE_BUILTIN_MUL_WIDEN_EVEN): Poison.
4628 (TARGET_VECTORIZE_BUILTIN_MUL_WIDEN_ODD): Poison.
4629 * config/i386/i386.c (IX86_BUILTIN_VEC_WIDEN_SMUL_ODD_V4SI): Remove.
4630 (IX86_BUILTIN_VEC_WIDEN_SMUL_ODD_V8SI): Remove.
4631 (IX86_BUILTIN_VEC_WIDEN_UMUL_ODD_V4SI): Remove.
4632 (IX86_BUILTIN_VEC_WIDEN_UMUL_ODD_V8SI): Remove.
4633 (IX86_BUILTIN_VEC_WIDEN_SMUL_EVEN_V4SI): Remove.
4634 (IX86_BUILTIN_VEC_WIDEN_UMUL_EVEN_V4SI): Remove.
4635 (IX86_BUILTIN_VEC_WIDEN_UMUL_EVEN_V8SI): Remove.
4636 (bdesc_args): Remove entries to match.
4637 (ix86_builtin_mul_widen_even, ix86_builtin_mul_widen_odd): Remove.
4638 (TARGET_VECTORIZE_BUILTIN_MUL_WIDEN_EVEN): Remove.
4639 (TARGET_VECTORIZE_BUILTIN_MUL_WIDEN_ODD): Remove.
4640 * config/rs6000/rs6000.c (rs6000_builtin_mul_widen_even): Remove.
4641 (rs6000_builtin_mul_widen_odd): Remove.
4642 (TARGET_VECTORIZE_BUILTIN_MUL_WIDEN_EVEN): Remove.
4643 (TARGET_VECTORIZE_BUILTIN_MUL_WIDEN_ODD): Remove.
4644 * config/spu/spu.c (spu_builtin_mul_widen_even): Remove.
4645 (spu_builtin_mul_widen_odd): Remove.
4646 (TARGET_VECTORIZE_BUILTIN_MUL_WIDEN_EVEN): Remove.
4647 (TARGET_VECTORIZE_BUILTIN_MUL_WIDEN_ODD): Remove.
4648 * doc/tm.texi.in: Don't document the removed hooks.
4649
4650 * tree-vect-stmts.c (supportable_widening_operation): Expand
4651 WIDEN_MULT_EXPR via VEC_WIDEN_MULT_EVEN/ODD_EXPR if possible.
4652
4653 * expmed.c (expmed_mult_highpart): Rename from expand_mult_highpart.
4654 (expmed_mult_highpart_optab): Rename from expand_mult_highpart_optab.
4655 * optabs.c (can_mult_highpart_p): New.
4656 (expand_mult_highpart): New.
4657 * expr.c (expand_expr_real_2) [MULT_HIGHPART_EXPR): Use it.
4658 * tree-vect-generic.c (expand_vector_operations_1): Don't expand
4659 by pieces if can_mult_highpart_p.
4660 (expand_vector_divmod): Use can_mult_highpart_p and always
4661 generate MULT_HIGHPART_EXPR.
4662 * tree-vect-patterns.c (vect_recog_divmod_pattern): Likewise.
4663 * tree-vect-stmts.c (vectorizable_operation): Likewise.
4664
4665 * config/spu/spu-builtins.md (spu_mpy): Move to spu.md.
4666 (spu_mpyu, spu_mpyhhu, spu_mpyhh): Likewise.
4667 * config/spu/spu.md (vec_widen_smult_odd_v8hi): Rename from spu_mpy.
4668 (vec_widen_umult_odd_v8hi): Rename from spu_mpyu.
4669 (vec_widen_smult_even_v8hi): Rename from spu_mpyhh.
4670 (vec_widen_umult_even_v8hi): Rename from spu_mpyhhu.
4671 * config/spu/spu-builtins.def: Update pattern names to match.
4672
4673 * config/rs6000/altivec.md (vec_widen_umult_even_v16qi): Rename
4674 from altivec_vmuleub.
4675 (vec_widen_smult_even_v16qi): Rename from altivec_vmulesb.
4676 (vec_widen_umult_even_v8hi): Rename from altivec_vmuleuh.
4677 (vec_widen_smult_even_v8hi): Rename from altivec_vmulesh.
4678 (vec_widen_umult_odd_v16qi): Rename from altivec_vmuloub.
4679 (vec_widen_smult_odd_v16qi): Rename from altivec_vmulosb.
4680 (vec_widen_umult_odd_v8hi): Rename from altivec_vmulouh.
4681 (vec_widen_smult_odd_v8hi): Rename from altivec_vmulosh.
4682 * config/rs6000/rs6000-builtin.def: Update pattern names to match.
4683
4684 * config/i386/sse.md (vec_widen_umult_even_v8si): Rename from
4685 avx2_umulv4siv4di3.
4686 (vec_widen_umult_even_v4si): Rename from sse2_umulv2siv2di3.
4687 (vec_widen_smult_even_v8si): Rename from avx2_mulv4siv4di3.
4688 (mulv4si3): Remove XOP test shadowed by SSE4 test.
4689 * config/i386/i386.c (bdesc_args): Update pattern names.
4690 (ix86_expand_sse2_mulvxdi3): Likewise.
4691 (ix86_expand_mul_widen_evenodd): Likewise. Remove XOP test
4692 shadowed by SSE4 test.
4693
4694 * tree.def (VEC_WIDEN_MULT_EVEN_EXPR, VEC_WIDEN_MULT_ODD_EXPR): New.
4695 * cfgexpand.c (expand_debug_expr): Handle them.
4696 * expr.c (expand_expr_real_2): Likewise.
4697 * fold-const.c (fold_binary_loc): Likewise.
4698 * gimple-pretty-print.c (dump_binary_rhs): Likewise.
4699 * optabs.c (optab_for_tree_code): Likewise.
4700 * tree-cfg.c (verify_gimple_assign_binary): Likewise.
4701 * tree-inline.c (estimate_operator_cost): Likewise.
4702 * tree-pretty-print.c (dump_generic_node): Likewise.
4703 * tree.c (commutative_tree_code): Likewise.
4704 * tree-vect-generic.c (expand_vector_operations_1): Likewise.
4705 Handle type change before looking up optab.
4706 * optabs.h (OTI_vec_widen_umult_even, OTI_vec_widen_umult_odd): New.
4707 (OTI_vec_widen_smult_even, OTI_vec_widen_smult_odd): New.
4708 (vec_widen_umult_even_optab, vec_widen_umult_odd_optab): New.
4709 (vec_widen_smult_even_optab, vec_widen_smult_odd_optab): New.
4710 * genopinit.c (optabs): Initialize them.
4711 * doc/md.texi: Document them.
4712
4713 2012-07-10 Dehao Chen <dehao@google.com>
4714
4715 * tree.h (phi_arg_d): New field.
4716 * tree-flow-inline.h (gimple_phi_arg_block): New function.
4717 (gimple_phi_arg_block_from_edge): New function.
4718 (gimple_phi_arg_set_block): New function.
4719 (gimple_phi_arg_has_block): New function.
4720 (redirect_edge_var_map_block): New function.
4721 * tree-flow.h (_edge_var_map): New field.
4722 * tree-ssa-live.c (remove_unused_locals): Mark phi_arg's block as used.
4723 * tree-eh.c (cleanup_empty_eh_merge_phis): Add block debug info for
4724 redirect_edge_var_map_add.
4725 * tree-outof-ssa.c (_elim_graph): New field.
4726 (insert_partition_copy_on_edge): New parameter.
4727 (insert_value_copy_on_edge): New parameter.
4728 (insert_rtx_to_part_on_edge): New parameter.
4729 (insert_part_to_rtx_on_edge): New parameter.
4730 (elim_graph_add_edge): New parameter.
4731 (elim_graph_remove_succ_edge): New parameter.
4732 (FOR_EACH_ELIM_GRAPH_SUCC): New parameter.
4733 (FOR_EACH_ELIM_GRAPH_PRED): New parameter.
4734 (new_elim_graph): Add block debug info.
4735 (clear_elim_graph): Likewise.
4736 (delete_elim_graph): Likewise.
4737 (elim_graph_add_node): Likewise.
4738 (elim_graph_add_edge): Likewise.
4739 (elim_graph_remove_succ_edge): Likewise.
4740 (eliminate_build): Likewise.
4741 (elim_forward): Likewise.
4742 (elim_unvisited_predecessor): Likewise.
4743 (elim_backward): Likewise.
4744 (elim_create): Likewise.
4745 (eliminate_phi): Likewise.
4746 (insert_backedge_copies): Likewise.
4747 * tree-into-ssa.c (insert_phi_nodes_for): Add block debug info for
4748 add_phi_arg.
4749 (rewrite_add_phi_arguments): Likewise.
4750 * tree-ssa-loop-im.c (execute_sm_if_changed): Likewise.
4751 * tree-ssa-tail-merge.c (replace_block_by): Likewise.
4752 * tree-ssa-threadupdate.c (copy_phi_args): Likewise.
4753 * tree-loop-distribution.c (update_phis_for_loop_copy): Likewise.
4754 * tree-ssa-loop-manip.c (create_iv): Likewise.
4755 (add_exit_phis_edge): Likewise.
4756 (split_loop_exit_edge): Likewise.
4757 (copy_phi_node_args): Likewise.
4758 (tree_transform_and_unroll_loop): Likewise.
4759 * value-prof.c (gimple_ic): Likewise.
4760 (gimple_stringop_fixed_value): Likewise.
4761 * tree-tailcall.c (add_successor_phi_arg): Likewise.
4762 (eliminate_tail_call): Likewise.
4763 (create_tailcall_accumulator): Likewise.
4764 (tree_optimize_tail_calls_1): Likewise.
4765 * tree-phinodes.c (add_phi_arg): Likewise.
4766 (make_phi_node): Likewise.
4767 (resize_phi_node): Likewise.
4768 (remove_phi_arg_num): Likewise.
4769 * omp-low.c (expand_parallel_call): Likewise.
4770 (expand_omp_for_static_chunk): Likewise.
4771 * tree-vect-loop-manip.c (slpeel_update_phis_for_duplicate_loop):
4772 Likewise.
4773 (slpeel_update_phi_nodes_for_guard1): Likewise.
4774 (slpeel_update_phi_nodes_for_guard2): Likewise.
4775 (slpeel_tree_duplicate_loop_to_edge_cfg): Likewise.
4776 (set_prologue_iterations): Likewise.
4777 (slpeel_tree_peel_loop_to_edge): Likewise.
4778 (vect_loop_versioning): Likewise.
4779 * tree-parloops.c (create_phi_for_local_result): Likewise.
4780 (transform_to_exit_first_loop): Likewise.
4781 (create_parallel_loop): Likewise.
4782 * ipa-split.c (split_function): Likewise.
4783 * tree-vect-loop.c (get_initial_def_for_induction): Likewise.
4784 (vect_create_epilog_for_reduction): Likewise.
4785 * tree-vect-data-refs.c (vect_setup_realignment): Likewise.
4786 * graphite-scop-detection.c (canonicalize_loop_closed_ssa): Likewise.
4787 * tree-ssa-phiopt.c (cond_store_replacement): Likewise.
4788 (cond_if_else_store_replacement_1): Likewise.
4789 * tree-cfgcleanup.c (remove_forwarder_block): Likewise.
4790 (remove_forwarder_block_with_phi): Likewise.
4791 * tree-ssa-pre.c (insert_into_preds_of_block): Likewise.
4792 * tree-predcom.c (initialize_root_vars): Likewise.
4793 (initialize_root_vars_lm): Likewise.
4794 * sese.c (sese_add_exit_phis_edge): Likewise.
4795 * tree-ssa-dce.c (forward_edge_to_pdom): Likewise.
4796 * tree-ssa.c (flush_pending_stmts): Likewise.
4797 (redirect_edge_var_map_add): Likewise.
4798 (ssa_redirect_edge): Likewise.
4799 * gimple-streamer-in.c (input_phi): Likewise.
4800 * tree-vect-stmts.c (vectorizable_load): Likewise.
4801 * tree-inline.c (copy_phis_for_bb): Likewise.
4802 * tree-ssa-phiprop.c (phiprop_insert_phi): Likewise.
4803 * tree-switch-conversion.c (fix_phi_nodes): Likewise.
4804 * tree-cfg.c (reinstall_phi_args): Likewise.
4805 (gimple_make_forwarder_block): Likewise.
4806 (add_phi_args_after_copy_edge): Likewise.
4807 (gimple_duplicate_sese_tail): Likewise.
4808
4809 2012-07-09 Oleg Endo <olegendo@gcc.gnu.org>
4810
4811 PR target/53886
4812 * config/sh/sh.c (sequence_insn_p): New function.
4813 (find_barrier, sh_insn_length_adjustment): Use it.
4814
4815 2012-07-09 Iain Sandoe <iain@codesourcery.com>
4816
4817 PR target/53283
4818 * config/i386/i386.c (ix86_fold_builtin): Call SUBTARGET_FOLD_BUILTIN
4819 if defined.
4820 * config/darwin.h: Rename TARGET_FOLD_BUILTIN to
4821 SUBTARGET_FOLD_BUILTIN.
4822 * config/rs6000/darwin.h: Map TARGET_FOLD_BUILTIN onto
4823 SUBTARGET_FOLD_BUILTIN.
4824
4825 2012-07-09 Iain Sandoe <iain@codesourcery.com>
4826
4827 * config/darwin.h (SUBTARGET_C_COMMON_OVERRIDE_OPTIONS): Move NeXT
4828 runtime exceptions model setting from here ...
4829 * config/darwin.c (darwin_override_options): ... to here.
4830
4831 2012-07-09 Steven Bosscher <steven@gcc.gnu.org>
4832
4833 PR tree-optimization/53887
4834 * tree-cfg.c (group_case_labels_stmt): Make non-static.
4835 * tree-flow.h (group_case_labels_stmt): Add prototype.
4836 * tree-switch-conversion.c (process_switch): Use group_case_labels_stmt
4837 to pre-process every switch.
4838
4839 2012-07-09 Jason Merrill <jason@redhat.com>
4840
4841 PR c++/53882
4842 * tree.c (type_contains_placeholder_1): Handle NULLPTR_TYPE.
4843 (type_hash_eq): Likewise.
4844
4845 2012-07-09 Tom de Vries <tom@codesourcery.com>
4846 Richard Guenther <rguenther@suse.de>
4847
4848 * tree-ssa-ccp.c (optimize_unreachable): New function.
4849 (execute_fold_all_builtins): Use optimize_unreachable to optimize
4850 BUILT_IN_UNREACHABLE. Don't optimize after BUILT_IN_UNREACHABLE.
4851
4852 2012-07-09 Richard Guenther <rguenther@suse.de>
4853
4854 PR bootstrap/53898
4855 * graphite-optimize-isl.c: Make sure CU is not empty.
4856
4857 2012-07-09 Steven Bosscher <steven@gcc.gnu.org>
4858
4859 * gensupport.c (init_rtx_reader_args_cb): Start counting code
4860 generating patterns from 1 to free up 0 for CODE_FOR_nothing.
4861 * gencodes.c (main): Give CODE_FOR_nothing the value 0. Add
4862 the LAST_INSN_CODE marker at the end.
4863 * genoutput.c (nothing): New static struct data.
4864 (idata): Initialize to &nothing.
4865 (idata_end): Initialize to &nothing.next.
4866 (init_insn_for_nothing): New function to create dummy 'nothing' insn.
4867 (main): Use it.
4868 * genpeep.c (insn_code_number): Remove global variable.
4869 (gen_peephole): Take it as an argument instead.
4870 (main): Take insn_code_number from read_md_rtx.
4871 * optabs.h: Revert r161809:
4872 (optab_handlers): Change type of insn_code back to insn_code.
4873 (optab_handler, widening_optab_handler, set_optab_handler,
4874 set_widening_optab_handler, convert_optab_handler,
4875 set_convert_optab_handler, direct_optab_handler,
4876 set_direct_optab_handler): Remove int casts.
4877 Revert to treating the insn_code field as "insn_code".
4878
4879 2012-07-08 Oleg Endo <olegendo@gcc.gnu.org>
4880
4881 * config/sh/sh.md (*return_i): Move trap_exit attribute check to ...
4882 * config/sh/sh.c (sh_cfun_trap_exit_p): ... this new function.
4883 * config/sh/sh-protos.h: Declare it.
4884
4885 2012-07-08 Steven Bosscher <steven@gcc.gnu.org>
4886
4887 * mcf.c: Do not include tm.h, tree.h, and langhooks.h.
4888 (dump_fixup_graph): Use current_function_name.
4889 (adjust_cfg_counts): Likewise.
4890 * ira-conflicts.c: Do not include tree.h.
4891 (ira_build_conflicts): Use REG_USERVAR_P instead of DECL_ARTIFICIAL.
4892
4893 2012-07-08 Oleg Endo <olegendo@gcc.gnu.org>
4894
4895 PR target/51244
4896 * config/sh/sh.md (*branch_true_eq, *branch_false_ne, nott): New insns.
4897
4898 2012-07-08 Steven Bosscher <steven@gcc.gnu.org>
4899
4900 * basic-block.h: Re-group most prototypes per file.
4901 (struct edge_list): Remove num_blocks field.
4902 (dump_bb_info): Adjust prototypes.
4903 (dump_reg_info): Move prototype to regs.h.
4904 * function.h: Do not include tree.h.
4905 Include vec.h, vecir.h, input.h and machmode.h to compensate.
4906 (function_name): New prototype.
4907 * gimple.h: Include tree.h to compensate for basic-block.h change.
4908 * langhooks.h: Note that tree.h is only necessary for enum tree_code.
4909 * regs.h (dump_reg_info): Prototype here.
4910 * regset.h: Adjust file reference in comment.
4911 (debug_regset): Remove prototype.
4912 * rtl.h: Include flags.h for flag_var_tracking_assignments.
4913 (MAY_HAVE_DEBUG_INSNS): Define as flag_var_tracking_assignments
4914 instead of no-longer-available tree.h's MAY_HAVE_DEBUG_STMTS.
4915 (dump_reg_info, dump_flow_info): Remove prototypes.
4916 * bb-reorder.c (set_edge_can_fallthru_flag): Move from cfganal.c
4917 to here, the only user. Make static.
4918 (reorder_basic_blocks): Call dump_reg_info before dump_flow_info.
4919 * cfg.c: Do not include tm.h, tree.h, rtl.h, hard-reg-set.h, regs.h,
4920 flags.h, function.h, except.h, diagnostic-core.h, tm_p.h, timevar.h,
4921 tree-pass.h, cfgloop.h, and tree-flow.h.
4922 Include basic-block.h, the first header I'd expect to be included.
4923 (reg_obstack): Move to df-core.c.
4924 (free_edge): Remove bogus ATTRIBUTE_UNUSED.
4925 (remove_edge_raw): Do not call tree-ssa's redirect_edge_var_map_clear.
4926 (redirect_edge_succ_nodup): Move to cfghooks.c.
4927 (dump_regset, debug_regset): Move to df-core.c.
4928 (dump_bb_info): Move to cfgrtl.c.
4929 (dump_reg_info): Move to regstat.c.
4930 (dump_flow_info): Move to cfgrtl.c.
4931 (debug_flow_info): Likewise.
4932 (dump_edge_info): Do not look at cfun, a CFG without cfun is nonsense.
4933 * cfganal.c: Do not include tm.h, rtl.h, obstack.h, hard-reg-set.h,
4934 insn-config.h, recog.h, diagnostic-core.h, tm_p.h, and cfgloop.h.
4935 (flow_active_insn_p, forwarder_block_p, can_fallthru,
4936 could_fall_through): Move to cfgrtl.c.
4937 (set_edge_can_fallthru_flag): Moved to bb-reorder.c.
4938 (create_edge_list): Do not set edge_list's removed num_blocks.
4939 (print_edge_list): Look at n_basic_blocks instead of num_blocks.
4940 (flow_nodes_print): Remove.
4941 (flow_edge_list_print): Remove.
4942 (inverted_post_order_compute): Use FOR_ALL_BB.
4943 * cfgrtl.c (dump_flow_info): Moved from cfg.c.
4944 Do not call dump_reg_info.
4945 (debug_flow_info): Moved from cfg.c
4946 (dump_bb_info): Moved from cfg.c. Take 'verbose' argument
4947 to avoid looking at TDF_* flags from tree-pass.h.
4948 (flow_active_insn_p, forwarder_block_p, can_fallthru,
4949 could_fall_through): Moved from cfganal.c.
4950 (print_rtl_with_bb): Adjust dump_bb_info calls.
4951 * cfghooks.c (redirect_edge_succ_nodup): Moved from cfg.c.
4952 (remove_edge): Call redirect_edge_var_map_clear if IR_GIMPLE.
4953 (cfgcleanup.c): Look at MAY_HAVE_DEBUG_INSNS, not MAY_HAVE_DEBUG_STMTS.
4954 * cselib.c: Include tree.h with a FIXME.
4955 * df-core.c (reg_obstack): Moved from cfg.c.
4956 (dump_regset): Likewise.
4957 (debug_regset): Likewise. Make a DEBUG_FUNCTION.
4958 * final.c (compute_alignments): Call dump_reg_info before
4959 dump_flow_info.
4960 * function.c (function_name): New function.
4961 (current_function_name): Use it.
4962 * ifcvt.c (rest_of_handle_if_conversion): Call dump_reg_info before
4963 dump_flow_info.
4964 * ira-conflicts.c: Include tree.h with a note.
4965 * regstat.c (dump_reg_info): Moved here from cfg.c.
4966 * loop-init.c: Include regs.h instead of hard-reg-set.h.
4967 (rtl_loop_init): Call dump_reg_info before dump_flow_info.
4968 (rtl_loop_done): Likewise.
4969 * mcf.c: Include tree.h before langhooks.h.
4970 * predict.c (maybe_hot_count_p): Assert we have cfun.
4971 (probably_never_executed_bb_p): Likewise.
4972 * profile.c (compute_branch_probabilities): Use gimple_dump_cfg
4973 instead of dump_flow_info.
4974 * sched-deps.c: Include tree.h with a FIXME.
4975 (call_may_noreturn_p): Add FIXME note why this function has to
4976 look at function decls instead of function decl flags.
4977 * sched-vis.c: Include tree.h with a FIXME.
4978 (print_rtl_slim): Adjust dump_bb_info uses.
4979 * statistics.c (statistics_fini_pass_2): Use current_function_name
4980 to avoid including tree.h.
4981 (statistics_counter_event): Use function_name for the same reason.
4982 (statistics_histogram_event): Likewise.
4983 * tracer.c (tracer): Remove bogus gcc_assert. Use brief_dump_cfg
4984 instead of dump_flow_info.
4985 * var-tracking.c (variable_tracking_main_1): Call dump_reg_info
4986 before dump_flow_info.
4987 * doc/cfg.texi: Update CFG documentation.
4988 * Makefile.in (RTL_H): Depend on FLAGS_H.
4989 (GIMPLE_H): Depend on TREE_H.
4990 (FUNCTION_H): Depend on VEC_H, vecir.h, INPUT_H and MACHMODE_H,
4991 but no longer on TREE_H.
4992 (C_COMMON_H): Depend on TREE_H.
4993 (cselib.o, cse.o, cfganal.o, loop-init.o, ira-conflicts.o,
4994 sched-deps.o, sched-vis.o): Fixup dependencies.
4995
4996 2012-07-08 Steven Bosscher <steven@gcc.gnu.org>
4997
4998 * alias.h: Do not include coretypes.h in header files.
4999 * cppbuiltin.h: Likewise.
5000 * double-int.h: Likewise.
5001 * gimple-fold.h: Likewise.
5002 * flags.h: Likewise.
5003 * tree-ssa-alias.h: Likewise.
5004 * gengtype.h (obstack_chunk_alloc, obstack_chunk_free,
5005 OBSTACK_CHUNK_SIZE): Define here to avoid dependency on coretypes.h.
5006 * Makefile.in (RTL_BASE_H): Depend on coretypes.h.
5007 (TREE_H): Likewise.
5008 (ALIAS_H): Do not depend on coretypes.h.
5009 (FLAGS_H): Likewise.
5010 (realmpfr.o): Depend on coretypes.h.
5011
5012 2012-07-08 Steven Bosscher <steven@gcc.gnu.org>
5013
5014 * Makefile.in (gengtype-lex.o, gengtype-parse.o, gengtype-state.o,
5015 gengtype.o): Add -DGENERATOR_FILE manually for host gengtype objects.
5016
5017 2012-07-07 Richard Earnshaw <rearnsha@arm.com>
5018
5019 * arm.h (TARGET_CPU_CPP_BUILTINS): Remove Maverick support.
5020 (TARGET_FPA): Delete definition.
5021 (TARGET_MAVERICK): Likewise.
5022 (TARGET_FPA_EMU2): Likewise.
5023 (arm_fp_model): Remove FPA and Maverick models.
5024 (arm_arch_cirrus): Delete declaration.
5025 (FLOAT_WORDS_BIG_ENDIAN): Delete definition.
5026 (FIXED_REGISTERS): Remove FPA and Maverick support. Reorganize.
5027 (CALL_USED_REGISTERS): Likewise.
5028 (FIRST_FPA_REGNUM, LAST_FPA_REGNUM): Delete definition.
5029 (FIRST_VFP_REGNUM): Renumbered.
5030 (D7_VFP_REGNUM): Chain definition.
5031 (LAST_LO_VFP_REGNUM): Likewise.
5032 (FIRST_HI_VFP_REGNUM): Likewise.
5033 (LAST_HI_VFP_REGNUM): Likewise.
5034 (FIRST_IWMMXT_GR_REGNUM): Likewise.
5035 (LAST_IWMMXT_GR_REGNUM): Likewise.
5036 (FIRST_IWMMXT_REGNUM): Likewise.
5037 (LAST_IWMMXT_REGNUM): Likewise.
5038 (FRAME_POINTER_REGNUM): Renumbered.
5039 (ARG_POINTER_REGNUM): Renumbered.
5040 (FIRST_PSEUDO_REGISTER): Remove FPA and Maverick registers.
5041 (FIRST_CIRRUS_FP_REGNUM, LAST_CIRRUS_FP_REGNUM): Delete definitions.
5042 (HARD_REGNO_REGNUM): Remove FPA support.
5043 (REG_ALLOC_ORDER): Remove FPA and Maverick registers. Reorganize.
5044 (reg_class): Likewise.
5045 (REG_CLASS_NAMES): Likewise.
5046 (REG_CLASS_CONTENTS): Likewise.
5047 (CANNOT_CHANGE_MODE_CLASS): Never true. Update comment.
5048 (SECONDARY_INPUT_RELOAD_CLASS): Remove Maverick support.
5049 (CLASS_MAX_NREGS): Remove FPA and Maverick support.
5050 * aout.h (REGISTER_NAMES): Remove FPA and Maverick registers.
5051 Reorganize. Use AAPCS preferred names.
5052 (ADDITIONAL_REGISTER_NAMES): Remove aliases for Maverick. Update
5053 comments.
5054 (OVERLAPPING_REGISTER_NAMES): Update register numbering.
5055 * arm.c (FL_CIRRUS): Delete definition.
5056 (arm_arch_cirrus): Delete variable.
5057 (arm_float_words_big_endian): Delete function.
5058 (cirrus_memory_offset): Delete function.
5059 (output_mov_long_double_fpa_from_arm): Delete function.
5060 (output_mov_long_double_arm_from_fpa): Delete function.
5061 (output_mov_double_fpa_from_arm): Delete function.
5062 (output_mov_double_arm_from_fpa): Delete function.
5063 (emit_sfm): Delete function.
5064 (maybe_get_arm_condition_code): Update comment.
5065 (arm_file_start): Always use softvfp for softfloat systems.
5066 (thumb_core_reg_alloc_order): Adjust for updated register allocation.
5067 (arm_option_override): Remove FPA and Maverick support. Always
5068 default to vfp as the fallback FPU format.
5069 (use_return_insn): Remove FPA support.
5070 (arm_get_frame_offsets): Likewise.
5071 (arm_save_coproc_regs): Likewise.
5072 (arm_canonicalize_comparison): Remove Maverick support.
5073 (arm_select_cc_mode): Likewise.
5074 (arm_gen_compare_reg): Likewise.
5075 (arm_print_operand): Likewise.
5076 (arm_libcall_value_1): Remove FPA and Maverick support.
5077 (arm_function_value_regno_p): Likewise.
5078 (arm_apply_result_size): Likewise.
5079 (arm_legitimate_index_p): Likewise.
5080 (thumb2_legitimate_index_p): Likewise.
5081 (legitimize_reload_address): Likewise.
5082 (arm_register_move_cost): Likewise.
5083 (arm_hard_regno_mode_ok): Likewise.
5084 (arm_regno_class): Likewise.
5085 (arm_dbx_register_number): Likewise.
5086 (arm_emit_unwind_sequence): Likewise.
5087 (arm_conditional_register_usage): Likewise.
5088 * arm-protos.h (neg_const_double_rtx_ok_for_fpa): Remove declaration.
5089 (cirrus_memory_offset): Likewise.
5090 (output_move_long_double_fpa_from_arm): Likewise.
5091 (output_move_long_double_arm_from_fpa): Likewise.
5092 (output_move_double_fpa_from_arm): Likewise.
5093 (output_move_double_arm_from_fpa): Likewise.
5094 (arm_float_words_big_endian): Likewise.
5095 * arm.md (CC_REGNUM): Renumbered.
5096 (VFPCC_REGNUM): Moved here. Renumbered.
5097 (FPA_F0_REGNUM, FPA_F7_REGNUM): Delete.
5098 (attr fpu): Remove FPA and Maverick support.
5099 * vfp.md (VFPCC_REGNUM): Delete. Moved to arm.md.
5100 * arm-cores.def (ep9312): Remove Maverick support.
5101 * arm-arches.def (ep9312): Delete architecture.
5102 * arm-tables.opt: Regenerated.
5103
5104 * arm/linux-elf.h (FPUTYPE_DEFAULT): Set to vfp.
5105
5106 2012-07-07 Steven Bosscher <steven@gcc.gnu.org>
5107
5108 PR tree-optimization/53881
5109 * tree-switch-conversion.c (emit_case_bit_tests): Do not rely on
5110 comparing labels to establish uniqueness of a switch case target,
5111 use the CFG instead.
5112
5113 2012-07-07 Ulrich Weigand <ulrich.weigand@linaro.org>
5114
5115 * combine.c (force_to_mode) [LSHIFTRT]: Avoid undefined behaviour
5116 due to negative shift amount.
5117
5118 2012-07-07 Hans-Peter Nilsson <hp@axis.com>
5119
5120 Fix configure test for "stack protector support in target C library".
5121 * configure.ac (test_prefix, test_exec_prefix): Move setting from
5122 inside sysroot handling to before and outside it.
5123 * configure: Regenerate.
5124
5125 2012-07-06 Kai Tietz <ktietz@redhat.com>
5126
5127 PR bootstrap/52947
5128 * config/i386/mingw32.h (NATIVE_SYSTEM_HEADER_DIR): Define it always
5129 as "/mingw/include".
5130
5131 2012-07-06 Alexandre Oliva <aoliva@redhat.com>
5132
5133 PR debug/53820
5134 * var-tracking.c (vt_add_function_parameter): Convert
5135 internal_arg_pointer into arg_pointer-based address even
5136 without DRAP.
5137
5138 2012-07-06 Alexandre Oilva <aoliva@redhat.com>
5139
5140 PR rtl-optimization/53827
5141 PR debug/53671
5142 PR debug/49888
5143 * alias.c (memrefs_conflict_p): Adjust offset and size by the
5144 same amount for alignment ANDs.
5145
5146 2012-07-06 Tom de Vries <tom@codesourcery.com>
5147
5148 PR tree-optimization/51879
5149 * tree-ssa-sccvn.c (copy_reference_ops_from_call)
5150 (visit_reference_op_call): Handle case that lhs is not an SSA_NAME.
5151 (visit_use): Also call visit_reference_op_call for calls with a vdef.
5152
5153 2012-07-06 Tom de Vries <tom@codesourcery.com>
5154
5155 PR tree-optimization/52009
5156 * tree-ssa-tail-merge.c (gimple_equal_p): For GIMPLE_ASSIGN, compare
5157 value numbers of gimple_vdef.
5158 * tree-ssa-sccvn.h (vn_reference_insert): Add vdef parameter to
5159 prototype.
5160 * tree-ssa-sccvn.c (copy_reference_ops_from_ref): Handle MODIFY_EXPR.
5161 (vn_reference_insert): Add and handle vdef parameter.
5162 (visit_reference_op_load): Add argument to vn_reference_insert call.
5163 (visit_reference_op_store): Find value number of vdef of store. Insert
5164 value number of vdef of store.
5165
5166 2012-07-06 Uros Bizjak <ubizjak@gmail.com>
5167
5168 * config/i386/i386.md (simple lea to add peephole): Also transform
5169 RTXes where second PLUS operand matches output.
5170
5171 2012-07-06 Uros Bizjak <ubizjak@gmail.com>
5172
5173 * config/i386/i386.c (construct_plt_address): Make static.
5174 * config/i386/i386-protos.h (construct_plt_address): Remove.
5175
5176 2012-07-06 Nick Clifton <nickc@redhat.com>
5177
5178 * config/mn10300/mn10300.c (mn10300_encode_section_info): Call
5179 default_encode_section_info.
5180
5181 2012-07-06 Uros Bizjak <ubizjak@gmail.com>
5182
5183 PR target/53853
5184 * config/i386/i386.c (x86_output_mi_thunk): For CM_LARGE_PIC model,
5185 emit PIC sequence for fnaddr symbol reference in advance.
5186
5187 2012-07-06 Eric Botcazou <ebotcazou@adacore.com>
5188
5189 Revert
5190 2012-06-14 Eric Botcazou <ebotcazou@adacore.com>
5191
5192 * dwarf2out.c (function_possibly_abstracted_p): New static function.
5193 (gen_subprogram_die): Use it function_possibly_abstracted_p in lieu of
5194 cgraph_function_possibly_inlined_p.
5195 (gen_inlined_subroutine_die): Return if the origin is to be ignored.
5196 (process_scope_var): Do not emit concrete instances of abstracted
5197 nested functions from here.
5198 (gen_decl_die): Emit the abstract instance if the function is possibly
5199 abstracted and not only possibly inlined.
5200 (dwarf2out_finish): Find the first non-abstract parent instance and
5201 attach concrete instances on the limbo list to it.
5202
5203 2012-07-05 Ramana Radhakrishnan <ramana.radhakrishnan@linaro.org>
5204 Julian Brown <julian@codesourcery.com>
5205
5206 PR target/48941
5207 PR target/51980
5208 * config/arm/neon-gen.ml (return_by_ptr): Delete.
5209 (print_function): Handle empty strings.
5210 (return): Delete use of return_by_ptr.
5211 (mask_shape_for_shuffle): New function.
5212 (mask_elems): Likewise.
5213 (shuffle_fn): Likewise.
5214 (params): Simplify and remove use of return_by_ptr.
5215 (get_shuffle): New function.
5216 (print_variant): Update.
5217 * config/arm/neon.ml (rev_elems): New function.
5218 (permute_range): Likewise.
5219 (zip_range): Likewise.
5220 (uzip_range): Likewise.
5221 (trn_range): Likewise.
5222 (zip_elems): Likewise.
5223 (uzip_elems): Likewise.
5224 (trn_elems): Likewise.
5225 (features): New enumeration Use_shuffle. Delete ReturnPtr.
5226 (pf_su_8_16): New.
5227 (suf_32): New.
5228 (ops): Update entries for Vrev64, Vrev32, Vrev16, Vtr, Vzip, Vuzp.
5229 * config/arm/arm_neon.h: Regenerate.
5230
5231 2012-07-05 Richard Guenther <rguenther@suse.de>
5232
5233 * tree-pretty-print.c (dump_generic_node): Properly test
5234 the result of exact_log2.
5235
5236 2012-07-05 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
5237
5238 * config/s390/s390-protos.h (s390_expand_movmem)
5239 (s390_expand_cmpmem): Add return value.
5240 * config/s390/s390.c (s390_expand_movmem, s390_expand_cmpmem):
5241 Return FALSE to use the library function in some cases.
5242 * config/s390/s390.md (movmem, cmpmem): Evaluate return value of C
5243 helper functions.
5244
5245 2012-07-05 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
5246
5247 * config.gcc: Enable ifunc attribute by default on s390 and s390x.
5248
5249 2012-07-05 Steven Bosscher <steven@gcc.gnu.org>
5250
5251 * expr.c (try_casesi): Remove bogus ATTRIBUTE_UNUSED markers.
5252 * stmt.c (dump_case_nodes): New.
5253 (expand_case): Split out code generation parts into new functions.
5254 (expand_switch_as_decision_tree_p): Split out from expand_case.
5255 (emit_case_decision_tree): Likewise.
5256 (emit_case_dispatch_table): Likewise.
5257
5258 2012-07-05 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
5259
5260 * config/arm/iterators.md (SDF): New mode iterator.
5261 (V_if_elem): Add support for SF and DF modes.
5262 (V_reg): Likewise.
5263 (F_constraint): New mode iterator attribute.
5264 (F_fma_type): Likewise.
5265 config/arm/vfp.md (fma<SDF:mode>4): New pattern.
5266 (*fmsub<SDF:mode>4): Likewise.
5267 (*fmnsub<SDF:mode>4): Likewise.
5268 (*fmnadd<SDF:mode>4): Likewise.
5269
5270 2012-07-04 Uros Bizjak <ubizjak@gmail.com>
5271
5272 * expmed.c (expand_mult): Initialize coeff and is_neg.
5273
5274 2012-07-04 Oleg Endo <olegendo@gcc.gnu.org>
5275
5276 * config/sh/predicates.md (zero_extend_operand): New predicate.
5277 * config/sh/sh.md (zero_extendhisi2): Simplify by using new
5278 zero_extend_operand predicate.
5279 (zero_extendqisi2): Likewise.
5280
5281 2012-07-04 Uros Bizjak <ubizjak@gmail.com>
5282
5283 PR middle-end/53321
5284 * ipa.c (symtab_remove_unreachable_nodes): Partially revert r187375
5285 to not call cgraph_propagate_frequency if something was changed.
5286
5287 2012-07-04 Richard Guenther <rguenther@suse.de>
5288
5289 PR middle-end/53433
5290 * gimple-fold.c (get_base_constructor): Do not return an
5291 error_mark_node DECL_INITIAL.
5292
5293 2012-07-04 Richard Guenther <rguenther@suse.de>
5294
5295 PR tree-optimization/53844
5296 * tree-ssa-dse.c (dse_possible_dead_store_p): Properly handle
5297 the loop virtual PHI.
5298
5299 2012-07-04 Richard Guenther <rguenther@suse.de>
5300
5301 PR tree-optimization/53849
5302 * tree-cfg.c (move_stmt_op): Only call add_referenced_var
5303 for duplicated locals. Use add_referenced_var_1 to avoid
5304 pushing/popping cfun.
5305
5306 2012-07-04 Kai Tietz <ktietz@redhat.com>
5307
5308 * config/i386/winnt.c (i386_pe_reloc_rw_mask): New function.
5309 * config/i386/i386-protos.h (i386_pe_reloc_rw_mask): Add
5310 prototype.
5311 * config/i386/cygming.h (TARGET_ASM_RELOC_RW_MASK): Define
5312 as i386_pe_reloc_rw_mask.
5313
5314 2012-07-04 Richard Guenther <rguenther@suse.de>
5315
5316 * tree.c (find_decls_types_r): Handle TYPE_CONTEXT the same
5317 as in free_lang_data_in_type.
5318
5319 2012-07-04 Tobias Grosser <tobias@grosser.es>
5320 Michael Matz <matz@suse.de>
5321
5322 * Makefile.in (OBJS): Add graphite-optimize-isl.o.
5323 (graphite-optimize-isl.o): Add dependencies.
5324 * common.opt (floop-nest-optimize): New flag.
5325 * doc/invoke.texi (floop-nest-optimize): Document.
5326 * graphite-dependences.c (compute_deps): Export.
5327 * graphite-poly.h (compute_deps): Declare.
5328 * graphite-optimize-isl.c: New file.
5329 * graphite-poly.c (apply_poly_transforms): Run the loop
5330 nest optimizer.
5331 * tree-ssa-loop.c (gate_graphite_transforms): Enable graphite
5332 if -floop-nest-optimize is enabled.
5333
5334 2012-07-03 Oleg Endo <olegendo@gcc.gnu.org>
5335
5336 * config/sh/predicates.md (logical_and_operand): New predicate.
5337 * config/sh/constraints.md (Jmb, Jmw): New constraints.
5338 * config/sh/sh.md (andsi3): Move expander above insns. Add handling
5339 of 0xFFFF constant. Use logical_and_operand predicate and
5340 satisfies_constraint_Jmb, satisfies_constraint_Jmw.
5341 (*andsi3_compact): Make it an insn_and_split. Use
5342 logical_and_operand predicate. Add Jmb,Jmw alternatives.
5343
5344 2012-07-03 Jason Merrill <jason@redhat.com>
5345
5346 PR c++/53826
5347 * tree.c (build_zero_cst): Handle NULLPTR_TYPE.
5348
5349 2012-07-03 Nick Clifton <nickc@redhat.com>
5350
5351 * config/mep/mep.c (mep_reorg_regmove): Use
5352 next_nonnote_non_debug_insn to advance to the next insn. Do not
5353 expect delete_insn to return an rtx.
5354
5355 2012-07-03 Richard Guenther <rguenther@suse.de>
5356
5357 * doc/install.texi (CLooG): Clarify how CLooG needs to be
5358 configured and that it needs to be built against ISL 0.10.
5359
5360 2012-07-03 Uros Bizjak <ubizjak@gmail.com>
5361
5362 * config/i386/i386.c (ix86_option_override_internal): Fix wrong
5363 code model string in the error message.
5364
5365 2012-07-03 Uros Bizjak <ubizjak@gmail.com>
5366
5367 PR target/53811
5368 * config/i386/i386.c (x86_output_mi_thunk): Check if fnaddr satisfies
5369 sibcall_insn_operand. Move it to a temporary register if not.
5370
5371 2012-07-03 Andreas Schwab <schwab@linux-m68k.org>
5372
5373 PR target/28896
5374 * config/m68k/m68k.c (m68k_option_override): Reset stack_limit_rtx
5375 if !TARGET_68020.
5376
5377 2012-07-03 Uros Bizjak <ubizjak@gmail.com>
5378
5379 * config/i386/xmmintrin.h (_mm_sfence): Use __builtin_ia32_pause.
5380
5381 2012-07-03 Roland McGrath <mcgrathr@google.com>
5382
5383 * configure.ac (HAVE_AS_IX86_REP_LOCK_PREFIX): Also require that the
5384 assembler accept 'rep bsf ...', 'rep bsr ...', 'rep ret' and 'rep nop'.
5385 * configure: Regenerated.
5386 * config/i386/i386.md (simple_return_internal_long): Use %;
5387 (ctz<mode>2): Likewise.
5388 (*pause): Likewise.
5389
5390 2012-07-02 Oleg Endo <olegendo@gcc.gnu.org>
5391
5392 PR target/51244
5393 * config/sh/predicates.md (t_reg_operand, negt_reg_operand): New
5394 predicates.
5395 * config/sh/sh-protos.h (get_t_reg_rtx): New prototype.
5396 * config/sh/sh.c (get_t_reg_rtx): New function. Use it when invoking
5397 gen_branch_true and gen_branch_false.
5398 * config/sh/sh.md: Use get_t_reg_rtx when invoking gen_branch_true and
5399 gen_branch_false.
5400 (branch_true, branch_false): Use t_reg_operand predicate.
5401 (*branch_true, *branch_false): Delete.
5402 (movt): Use t_reg_operand predicate.
5403 (*negnegt): Use negt_reg_operand predicate and fold little and big
5404 endian variants.
5405 (*movtt): Use t_reg_operand and fold little and big endian variants.
5406 (*movt_qi): Delete.
5407
5408 2012-07-02 Steven Bosscher <steven@gcc.gnu.org>
5409
5410 * stmt.c (emit_case_bit_tests): Remove.
5411 (expand_case): Remove expand_switch_using_bit_tests_p code.
5412 * tree-switch-conversion.c (hoist_edge_and_branch_if_true): New.
5413 (MAX_CASE_BIT_TESTS): Moved from stmt.c to here.
5414 (lshift_cheap_p): Likewise.
5415 (expand_switch_using_bit_tests_p): Likewise.
5416 (struct case_bit_test): Likewise.
5417 (case_bit_test_cmp): Likewise.
5418 (emit_case_bit_tests): New implementation for GIMPLE.
5419 (gen_inbound_check): Do not release post-dominator info here.
5420 (process_switch): Reorder code. Expand as bit tests if it
5421 looks like a win.
5422 (do_switchconv): Release post-dominator info here if something changed.
5423 (struct gimple_opt_pass): Verify more.
5424 * tree.h (expand_switch_using_bit_tests_p): Remove prototype.
5425
5426 2012-07-02 Martin Jambor <mjambor@suse.cz>
5427
5428 PR middle-end/38474
5429 * ipa-prop.c (compute_known_type_jump_func): Put BINFO check before a
5430 dynamic type change check.
5431
5432 2012-07-02 Richard Guenther <rguenther@suse.de>
5433 Michael Matz <matz@suse.de>
5434 Tobias Grosser <tobias@grosser.es>
5435 Sebastian Pop <sebpop@gmail.com>
5436
5437 * Makefile.in: Remove PPL flags in favor of ISL ones.
5438 (BACKENDLIBS): Remove PPL libs.
5439 (INCLUDES): Remove PPL includes in favor of ISL ones.
5440 (graphite-clast-to-gimple.o): Remove graphite-dependences.h and
5441 graphite-cloog-compat.h dependencies.
5442 (graphite-dependences.o): Likewise.
5443 (graphite-poly.o): Likewise.
5444 * configure.ac: Declare ISL vars instead of PPL ones.
5445 * configure: Regenerated.
5446 * doc/install.texi: Replace PPL requirement documentation with ISL one.
5447 * graphite-blocking.c: Remove PPL code, add ISL equivalent.
5448 * graphite-clast-to-gimple.c: Likewise.
5449 * graphite-dependences.c: Likewise.
5450 * graphite-interchange.c: Likewise.
5451 * graphite-poly.h: Likewise.
5452 * graphite-poly.c: Likewise.
5453 * graphite-sese-to-poly.c: Likewise.
5454 * graphite.c: Likewise.
5455 * graphite-scop-detection.c: Re-arrange includes.
5456 * graphite-cloog-util.c: Remove.
5457 * graphite-cloog-util.h: Likewise.
5458 * graphite-ppl.h: Likewise.
5459 * graphite-ppl.c: Likewise.
5460 * graphite-dependences.h: Likewise.
5461
5462 2012-07-02 Richard Guenther <rguenther@suse.de>
5463
5464 Merge from graphite branch
5465 2011-07-21 Tobias Grosser <tobias@grosser.es>
5466
5467 * Makefile.in (graphite-clast-to-gimple.o, graphite-cloog-util.o):
5468 Remove graphite-cloog-util.h.
5469 * graphite-clast-to-gimple.c (gcc_type_for_iv_of_clast_loop,
5470 build_iv_mapping, translate_clast_user, translate_clast,
5471 free_scattering, initialize_cloog_names, build_cloog_prog,
5472 create_params_index): Do not use old compatibility functions.
5473 (clast_name_to_index, set_cloog_options): Remove code for legacy cloog.
5474 * graphite-cloog-util.c (openscop_print_cloog_matrix): Do not use old
5475 compatibility functions.
5476 (new_Cloog_Scattering_from_ppl_Polyhedron): Remove code for legacy
5477 cloog.
5478 * graphite-cloog-util.h: Remove include of graphite-cloog-util.h.
5479 * graphite.c (graphite.c): Do not call outdated cloog_initialize() and
5480 cloog_finalize().
5481 * graphite-cloog-compat.h: Remove.
5482
5483 2011-08-09 Tobias Grosser <tobias@grosser.es>
5484
5485 * graphite-clast-to-gimple.c (new_clast_name_index): Store a copy
5486 of the string, no just a reference.
5487 (clast_name_index): Add a new field, that specifies if we need to free
5488 the name.
5489 (free_clast_name_index): If necessary, free the name string.
5490 (clast_name_index_elt_info): Calculate the hash based on the string
5491 content, not the memory location it is stored in.
5492 (clast_name_to_level): Specify that we do not need to free the name.
5493 (clast_name_to_index): Dito.
5494 (clast_name_to_lb_ub): Dito.
5495 (eq_clast_name_indexes): Compare the strings, not their base pointers.
5496 (free_scattering): Removed.
5497 (initialize_cloog_names): Renamed to add_names_to_union_domain().
5498 (add_names_to_union_domain): Changed to work on a union_domain,
5499 instead of a CloogNames structure.
5500 (build_cloog_prog): Removed.
5501 (build_cloog_union_domain): New.
5502 (generate_cloog_input): New.
5503 (scop_to_clast): Use CloogInput instead of CloogProgram.
5504 (print_generated_program): Adapt to new scop_to_clast() and do not
5505 print the CloogProgram any more.
5506 (create_params_index): Removed, functionality integrated in
5507 add_names_to_union_domain().
5508 (gloog): Adapt to new scop_to_clast().
5509 * graphite-clast-to-gimple.h (scop_to_clast): Remove.
5510
5511 2012-01-11 Tobias Grosser <tobias@grosser.es>
5512
5513 * graphite-clast-to-gimple.c (clast_name_to_index,
5514 clast_name_to_lb_ub, clast_name_to_gcc): Change types.
5515 (clast_to_gcc_expression): Add clast_expr_name as a new
5516 case. Do not assume a clast_expr_term points always to a
5517 clast_expr_name.
5518 (type_for_clast_term): Do not assume a clast_expr_term points always to
5519 a clast_expr_name.
5520 (type_for_clast_name): New.
5521 (type_for_clast_expr): Add clast_expr_name as a new case.
5522
5523 2011-08-03 Sebastian Pop <sebpop@gmail.com>
5524
5525 * graphite-cloog-util.c (new_Cloog_Domain_from_ppl_Polyhedron,
5526 new_Cloog_Scattering_from_ppl_Polyhedron,
5527 new_Cloog_Domain_from_ppl_Pointset_Powerset): Remove ATTRIBUTE_UNUSED.
5528
5529 2012-07-02 Jakub Jelinek <jakub@redhat.com>
5530
5531 PR tree-optimization/53645
5532 * tree-vect-generic.c (expand_vector_divmod): Use TYPE_MODE (type)
5533 instead of TYPE_MODE (wider_type) as can_vec_perm_p argument.
5534
5535 2012-07-01 Wei Guozhi <carrot@google.com>
5536
5537 PR target/53447
5538 * config/arm/arm-protos.h (const_ok_for_dimode_op): New prototype.
5539 * config/arm/arm.c (const_ok_for_dimode_op): New function.
5540 * config/arm/constraints.md (Dd): New constraint.
5541 * config/arm/predicates.md (arm_adddi_operand): New predicate.
5542 * config/arm/arm.md (adddi3): Extend it to handle constants.
5543 (arm_adddi3): Likewise.
5544 (addsi3_carryin_<optab>): Extend it to handle sbc case.
5545 (addsi3_carryin_alt2_<optab>): Likewise.
5546 * config/arm/neon.md (adddi3_neon): Extend it to handle constants.
5547
5548 2012-06-30 Nathan Sidwell <nathan@acm.org>
5549
5550 * coverage.c (bbg_file_stamp): New.
5551 (read_counts_file): Merge incoming stamp with bbg_file_stamp.
5552 (build_info): Write bbg_file_stamp.
5553 (coverage_init): Initialize bbg_file_stamp. Read counts file
5554 before writing graph header.
5555 (coverage_finish): Don't unlink the data file if we can generate a
5556 unique file stamp.
5557 * tree.h (crc32_unsigned): Declare.
5558 * tree.c (crc32_unsigned_bits): New, broken out of ...
5559 (crc32_byte): ... here. Use it.
5560 (crc32_unsigned): New.
5561
5562 2012-06-29 Cary Coutant <ccoutant@google.com>
5563
5564 * dwarf2out.c (add_pubname_string): Don't check for want_pubnames.
5565 (gen_subprogram_die): Don't add pubname if want_pubnames is false.
5566 (gen_variable_die): Likewise.
5567 (gen_namespace_die): Likewise.
5568
5569 2012-06-29 Eric Botcazou <ebotcazou@adacore.com>
5570
5571 * tree-eh.c (lower_try_finally_switch): Really put the location of the
5572 last statement of the finally block onto the switch.
5573
5574 2012-06-29 H.J. Lu <hongjiu.lu@intel.com>
5575
5576 PR target/53539
5577 * config/i386/gnu-user64.h (WCHAR_TYPE): Use "int" only for
5578 TARGET_LP64.
5579
5580 2012-06-29 Sterling Augustine <saugustine@google.com>
5581
5582 * dwarf2out.c (add_pubname): Add comment.
5583 (add_pubtype): Fix indentation.
5584 (gen_enumeration_type_die): Likewise.
5585
5586 2012-06-29 Jakub Jelinek <jakub@redhat.com>
5587
5588 * tree-vect-generic.c (expand_vector_divmod): For even/odd
5589 widening multiply, put even always as first argument to VEC_PERM_EXPR.
5590
5591 2012-06-29 Richard Henderson <rth@redhat.com>
5592
5593 * tree-vect-generic.c: Include target.h.
5594 (expand_vector_divmod): Use builtin_mul_widen_even/odd if supported.
5595 * Makefile.in (tree-vect-generic.o): Update.
5596
5597 2012-06-29 Steven Bosscher <steven@gcc.gnu.org>
5598
5599 * configure.ac: Remove special gtfiles case for C.
5600 * configure: Regenerate.
5601 * Makefile.in: Remove C front-end hooks and build hooks that
5602 will be picked up from c/Make-lang.in now.
5603 Add tree-mudflap to C_COMMON_OBJS.
5604 * gengtype.c (files_rules): Adjust gt-files for c/c-decl.c.
5605 * config/vms/vms.c: Look for c-tree.h in c/.
5606 * doc/gty.texi: Remove reference to c-config-lang.in.
5607 * doc/sourcebuild.texi: Document the c/ subdirectory.
5608
5609 2012-06-29 Steven Bosscher <steven@gcc.gnu.org>
5610
5611 * system.h (CASE_USE_BIT_TESTS): Poison.
5612 * stmt.c (CASE_USE_BIT_TESTS): Fold away into its only user ...
5613 (expand_switch_using_bit_tests_p): ...here.
5614 * doc/tm.texi.in (CASE_USE_BIT_TESTS): Remove documentation.
5615 * doc/tm.texi (CASE_USE_BIT_TESTS): Regenerate.
5616
5617 2012-06-29 Steven Bosscher <steven@gcc.gnu.org>
5618
5619 * system.h (IFCVT_EXTRA_FIELDS): Poison.
5620 (IFCVT_INIT_EXTRA_FIELDS): Poison.
5621 * basic-block.h (struct ce_if_block): Remove IFCVT_EXTRA_FIELDS.
5622 * ifcvt.c (find_if_header): Use IFCVT_MACHDEP_INIT instead of
5623 IFCVT_INIT_EXTRA_FIELDS.
5624 * gengtype-parse.c (struct_field_seq): Remove obsolete comment.
5625 * config/frv/frv.h (IFCVT_INIT_EXTRA_FIELDS): Rename to
5626 IFCVT_MACHDEP_INIT.
5627 * config/frv/frv.c (frv_ifcvt_init_extra_fields): Rename to
5628 frv_ifcvt_machdep_init.
5629 * doc/tm.texi.in (IFCVT_INIT_EXTRA_FIELDS, IFCVT_EXTRA_FIELDS):
5630 Remove documentation.
5631 (IFCVT_MACHDEP_INIT): Document.
5632 * doc/tm.texi: Regenerate.
5633
5634 2012-06-29 Nick Clifton <nickc@redhat.com>
5635
5636 * config/lm32/lm32.c (lm32_compute_frame_size): Fix typo.
5637
5638 2012-06-29 Jakub Jelinek <jakub@redhat.com>
5639
5640 * tree-vect-stmts.c (vectorizable_operation): Check both
5641 VEC_WIDEN_MULT_LO_EXPR and VEC_WIDEN_MULT_HI_EXPR optabs.
5642 Verify that operand[0]'s mode is TYPE_MODE (wide_vectype).
5643
5644 2012-06-28 Richard Henderson <rth@redhat.com>
5645
5646 * doc/generic.texi (MULT_HIGHPART_EXPR): Document it.
5647
5648 2012-06-28 Jakub Jelinek <jakub@redhat.com>
5649
5650 PR tree-optimization/51581
5651 * tree-vect-stmts.c (permute_vec_elements): Add forward decl.
5652 (vectorizable_operation): Handle vectorization of MULT_HIGHPART_EXPR
5653 also using VEC_WIDEN_MULT_*_EXPR or builtin_mul_widen_* plus
5654 VEC_PERM_EXPR if vector MULT_HIGHPART_EXPR isn't supported.
5655 * tree-vect-patterns.c (vect_recog_divmod_pattern): Use
5656 MULT_HIGHPART_EXPR instead of VEC_WIDEN_MULT_*_EXPR and shifts.
5657
5658 PR tree-optimization/53645
5659 * tree-vect-generic.c (expand_vector_divmod): Use MULT_HIGHPART_EXPR
5660 instead of VEC_WIDEN_MULT_{HI,LO}_EXPR followed by VEC_PERM_EXPR
5661 if possible.
5662
5663 2012-06-28 Georg-Johann Lay <avr@gjlay.de>
5664
5665 PR 53595
5666 * config/avr/avr.c (avr_hard_regno_call_part_clobbered): New.
5667 * config/avr/avr-protos.h (avr_hard_regno_call_part_clobbered): New.
5668 * config/avr/avr.h (HARD_REGNO_CALL_PART_CLOBBERED): Forward to
5669 avr_hard_regno_call_part_clobbered.
5670
5671 2012-06-28 Richard Guenther <rguenther@suse.de>
5672
5673 PR middle-end/53790
5674 * expr.c (expand_expr_real_1): Verify if the type is complete
5675 before inspecting its size.
5676
5677 2012-06-28 Andreas Schwab <schwab@linux-m68k.org>
5678
5679 * doc/include/gpl.texi: Remove.
5680 * doc/sourcebuild.texi (Texinfo Manuals): Don't mention gpl.texi.
5681
5682 2012-06-28 Jakub Jelinek <jakub@redhat.com>
5683
5684 PR tree-optimization/53645
5685 * tree-vect-generic.c (add_rshift): New function.
5686 (expand_vector_divmod): New function.
5687 (expand_vector_operation): Use it for vector integer
5688 TRUNC_{DIV,MOD}_EXPR by VECTOR_CST.
5689 * tree-vect-patterns.c (vect_recog_divmod_pattern): Replace
5690 unused lguup variable with dummy_int.
5691
5692 2012-06-28 OLivier Hainque <hainque@adacore.com>
5693
5694 * expr.c (convert_move): Latch mem integer inputs into a
5695 register before expanding a multi-instructions sequence.
5696
5697 2012-06-28 Alexandre Oliva <aoliva@redhat.com>
5698 Uros Bizjak <ubizjak@gmail.com>
5699 Jakub Jelinek <jakub@redhat.com>
5700
5701 PR debug/53706
5702 PR debug/47624
5703 * var-tracking.c (vt_emit_notes): Release loc_exp_dep_pool...
5704 (vt_finalize): ... here instead, if needed.
5705
5706 2012-06-28 Alexandre Oliva <aoliva@redhat.com>
5707
5708 PR debug/53740
5709 PR debug/52983
5710 PR debug/48866
5711 * dce.c (word_dce_process_block): Check whether inserting debug
5712 temps are needed even for needed insns.
5713 (dce_process_block): Likewise.
5714 * df-problems.c (dead_debug_add): Add comment about multi-regs.
5715 (dead_debug_insert_temp): Likewise. Don't subreg when we're
5716 setting fewer regs than a multi-reg requires.
5717
5718 2012-06-27 Richard Henderson <rth@redhat.com>
5719
5720 * config/alpha/alpha.c (alpha_dimode_u): New.
5721 (alpha_init_builtins): Initialize it, and use it.
5722 (alpha_fold_builtin_cmpbge): Use alpha_dimode_u.
5723 (alpha_fold_builtin_zapnot, alpha_fold_builtin_insxx): Likewise.
5724 (alpha_fold_vector_minmax, alpha_fold_builtin_perr): Likewise.
5725 (alpha_fold_builtin_pklb, alpha_fold_builtin_pkwb): Likewise.
5726 (alpha_fold_builtin_unpkbl, alpha_fold_builtin_unpkbw): Likewise.
5727 (alpha_fold_builtin_cttz, alpha_fold_builtin_ctlz): Likewise.
5728 (alpha_fold_builtin_ctpop): Likewise.
5729 (alpha_fold_builtin_umulh): Remove.
5730 (alpha_fold_builtin): Use MULT_HIGHPART_EXPR for UMULH; fix
5731 typo in MAX_ARGS check.
5732
5733 2012-06-27 Richard Henderson <rth@redhat.com>
5734
5735 * tree.def (MULT_HIGHPART_EXPR): New.
5736 * cfgexpand.c (expand_debug_expr): Ignore it.
5737 * expr.c (expand_expr_real_2): Handle it.
5738 * fold-const.c (int_const_binop_1): Likewise.
5739 * optabs.c (optab_for_tree_code): Likewise.
5740 * tree-cfg.c (verify_gimple_assign_binary): Likewise.
5741 * tree-inline.c (estimate_operator_cost): Likewise.
5742 * tree-pretty-print.c (dump_generic_node): Likewise.
5743 (op_code_prio, op_symbol_code): Likewise.
5744 * tree.c (commutative_tree_code): Likewise. Also handle
5745 WIDEN_MULT_EXPR, VEC_WIDEN_MULT_HI_EXPR, VEC_WIDEN_MULT_LO_EXPR.
5746
5747 2012-06-27 Richard Henderson <rth@redhat.com>
5748
5749 PR target/53749
5750 * config/i386/i386.c (ix86_rtx_costs): Fix typo vs UNITS_PER_WORD
5751 in 2012-06-23 change. Adjust two other DImode tests as well.
5752
5753 2012-06-27 Nick Clifton <nickc@redhat.com>
5754
5755 * config/rx/rx.md (comparesi3_extend): Remove = modifier from
5756 input operand.
5757
5758 2012-06-27 Richard Guenther <rguenther@suse.de>
5759
5760 PR middle-end/53676
5761 * tree-chrec.c (chrec_convert_1): Represent truncation to
5762 a type with undefined overflow as truncation to an unsigned
5763 type converted to the type with undefined overflow.
5764 * tree-scalar-evolution.c (interpret_rhs_expr): For computing
5765 the scalar evolution of a truncated widened operation avoid
5766 looking at the non-existing evolution of the widened operation
5767 result.
5768
5769 2012-06-27 Richard Guenther <rguenther@suse.de>
5770
5771 PR tree-optimization/53774
5772 * tree-ssa-reassoc.c (get_rank): All default defs have
5773 precomputed rank.
5774 (init_reassoc): Precompute rank for all SSA default defs.
5775
5776 2012-06-27 Nick Clifton <nickc@redhat.com>
5777
5778 * config/rx/rx.md (simple_return): Use the simple_return rtx.
5779
5780 2012-06-26 Richard Henderson <rth@redhat.com>
5781
5782 * config/i386/i386.c (ix86_rtx_costs): Use standard_sse_constant_p
5783 and don't fall thru from standard_80387_constant_p to the memory
5784 fallback.
5785
5786 2012-06-26 Richard Henderson <rth@redhat.com>
5787
5788 * config/i386/i386.c (bdesc_args): Update. Change
5789 IX86_BUILTIN_VEC_WIDEN_SMUL_ODD_V4SI to OPTION_MASK_ISA_SSE2.
5790 (IX86_BUILTIN_VEC_WIDEN_SMUL_EVEN_V4SI): New.
5791 (ix86_builtin_mul_widen_even): Use it.
5792 (ix86_builtin_mul_widen_odd): Relax SMUL_ODD from sse4 to sse2.
5793 (ix86_expand_mul_widen_evenodd): Handle signed for sse2.
5794 * config/i386/sse.md (vec_widen_<s>mult_hi_<V124_AVX2>): Allow
5795 for all SSE2.
5796 (vec_widen_<s>mult_lo_<V124_AVX2>): Likewise.
5797 (vec_widen_<s>mult_odd_<VI4_AVX2>): Likewise. Relax from V124_AVX2.
5798 (vec_widen_smult_even_v4si): New.
5799
5800 2012-06-26 Richard Henderson <rth@redhat.com>
5801
5802 * config/i386/sse.md (mul<VI8_AVX2>3): Change from insn_and_split
5803 to expander; move guts to ...
5804 * config/i386/i386.c (ix86_expand_sse2_mulvxdi3): ... here. Add
5805 highparts before shifting up.
5806 * config/i386/i386-protos.h: Update.
5807
5808 2012-06-26 Steven Bosscher <steven@gcc.gnu.org>
5809
5810 * system.h (USE_COMMON_FOR_ONE_ONLY): Poison.
5811 * defaults.h (USE_COMMON_FOR_ONE_ONLY): Do not provide default.
5812 * config/darwin.h (USE_COMMON_FOR_ONE_ONLY): Do not define.
5813
5814 2012-06-26 Alexandre Oliva <aoliva@redhat.com>
5815
5816 * var-tracking.c (vt_add_function_parameter): Use a preserved
5817 VALUE for the MEM address of an incoming parameter.
5818
5819 2012-06-26 Sterling Augustine <saugustine@google.com>
5820
5821 * dwarf2out.c (output_pubnames): Add check for DW_TAG_enumerator.
5822 (prune_unused_types): Likewise.
5823
5824 2012-06-26 Steven Bosscher <steven@gcc.gnu.org>
5825
5826 * system.h (UNALIGNED_SHORT_ASM_OP, UNALIGNED_INT_ASM_OP,
5827 UNALIGNED_LONG_ASM_OP, UNALIGNED_DOUBLE_INT_ASM_OP): Poison.
5828 * vmsdbgout.c (UNALIGNED_SHORT_ASM_OP, UNALIGNED_INT_ASM_OP,
5829 UNALIGNED_LONG_ASM_OP, UNALIGNED_DOUBLE_INT_ASM_OP): Rename to
5830 VMS_UNALIGNED_SHORT_ASM_OP, VMS_UNALIGNED_INT_ASM_OP,
5831 VMS_UNALIGNED_LONG_ASM_OP, and VMS_UNALIGNED_DOUBLE_INT_ASM_OP.
5832 * config/microblaze/microblaze.h (UNALIGNED_SHORT_ASM_OP,
5833 UNALIGNED_INT_ASM_OP, UNALIGNED_DOUBLE_INT_ASM_OP): Do not define.
5834 * doc/tm.texi.in: Remove UNALIGNED_INT_ASM_OP reference from the
5835 documentation.
5836 * doc/tm.texi: Regenerate.
5837 * doc/cpp.texi: Make example for #error generic.
5838 * config/frv/frv.h: Fix example text to match tm.texi.
5839
5840 2012-06-26 Bill Schmidt <wschmidt@linux.ibm.com>
5841
5842 * tree-pass.h (pass_strength_reduction): New decl.
5843 * tree-ssa-loop-ivopts.c (initialize_costs): Make non-static.
5844 (finalize_costs): Likewise.
5845 * timevar.def (TV_TREE_SLSR): New timevar.
5846 * gimple-ssa-strength-reduction.c: New.
5847 * tree-flow.h (initialize_costs): New decl.
5848 (finalize_costs): Likewise.
5849 * Makefile.in (tree-ssa-strength-reduction.o): New dependencies.
5850 * passes.c (init_optimization_passes): Add pass_strength_reduction.
5851
5852 2012-06-26 Matt Turner <mattst88@gmail.com>
5853
5854 * doc/extend.texi (__builtin_arm_tinsrb): Add missing second parameter.
5855 (__builtin_arm_tinsrh): Likewise.
5856 (__builtin_arm_tinsrw): Likewise.
5857 (__builtin_arm_wsadb): Add missing v2si parameter.
5858 (__builtin_arm_wsadh): Likewise.
5859 (__builtin_arm_getwcx): Delete.
5860 (__builtin_arm_setwcx): Delete.
5861 (__builtin_arm_getwcgr0): Add.
5862 (__builtin_arm_getwcgr1): Add.
5863 (__builtin_arm_getwcgr2): Add.
5864 (__builtin_arm_getwcgr3): Add.
5865 (__builtin_arm_setwcgr0): Add.
5866 (__builtin_arm_setwcgr1): Add.
5867 (__builtin_arm_setwcgr2): Add.
5868 (__builtin_arm_setwcgr3): Add.
5869
5870 2012-06-26 Richard Guenther <rguenther@suse.de>
5871
5872 Revert
5873 2012-06-21 Richard Guenther <rguenther@suse.de>
5874
5875 * tree-inline.c (estimate_num_insns): Estimate call cost for
5876 tailcalls properly.
5877
5878 2012-06-26 Steven Bosscher <steven@gcc.gnu.org>
5879
5880 PR other/33190
5881 * doc/tm.texi.in: Document LOGICAL_OP_NON_SHORT_CIRCUIT.
5882 * doc/tm.texi: Regenerate.
5883
5884 2012-06-26 Steven Bosscher <steven@gcc.gnu.org>
5885
5886 PR other/33190
5887 * config/mips/mips.h: Do not define ALL_COP_ADDITIONAL_REGISTER_NAMES.
5888 * config/frv/frv.h: Do not define REVERSE_CONDEXEC_PREDICATES_P.
5889 * doc/tm.texi.in: Remove documentation for unused target macros
5890 ALL_COP_ADDITIONAL_REGISTER_NAMES, DBX_OUTPUT_LBRAC, DBX_OUTPUT_NFUN,
5891 DBX_OUTPUT_RBRAC, RANGE_TEST_NON_SHORT_CIRCUIT, REAL_VALUE_TRUNCATE,
5892 REVERSE_CONDEXEC_PREDICATES_P, TARGET_ALIGN_ANON_BITFIELDS, and
5893 TARGET_NARROW_VOLATILE_BITFIELDS.
5894 Document that MD_HANDLE_UNWABI is a macro in libgcc.
5895 * doc/tm.texi: Regenerate.
5896 * system.h: Poison target macros
5897 ALL_COP_ADDITIONAL_REGISTER_NAMES, DBX_OUTPUT_LBRAC, DBX_OUTPUT_NFUN,
5898 DBX_OUTPUT_RBRAC, RANGE_TEST_NON_SHORT_CIRCUIT, REAL_VALUE_TRUNCATE,
5899 REVERSE_CONDEXEC_PREDICATES_P, TARGET_ALIGN_ANON_BITFIELDS, and
5900 TARGET_NARROW_VOLATILE_BITFIELDS
5901
5902 2012-06-26 Jan Hubicka <jh@suse.cz>
5903
5904 PR lto/53572
5905 * cgraph.h (varpool_can_remove_if_no_refs): Fix handling of
5906 used symbols.
5907
5908 2012-06-26 Dehao Chen <dehao@google.com>
5909
5910 * tree-inline.c: (expand_call_inline): Ensure that lexical block's
5911 source location is consistant with the call stmt.
5912
5913 2012-06-26 Ulrich Weigand <ulrich.weigand@linaro.org>
5914
5915 PR tree-optimization/53729
5916 PR tree-optimization/53636
5917 * tree-vect-slp.c (vect_slp_analyze_bb_1): Delay call to
5918 vect_verify_datarefs_alignment until after statements have
5919 been marked as relevant/irrelevant.
5920 * tree-vect-data-refs.c (vect_verify_datarefs_alignment):
5921 Skip irrelevant statements.
5922 (vect_enhance_data_refs_alignment): Use STMT_VINFO_RELEVANT_P
5923 instead of STMT_VINFO_RELEVANT.
5924 (vect_get_data_access_cost): Do not check for supportable
5925 alignment before calling vect_get_load_cost/vect_get_store_cost.
5926 * tree-vect-stmts.c (vect_get_store_cost): Do not abort when
5927 handling unsupported alignment.
5928 (vect_get_load_cost): Likewise.
5929
5930 2012-06-25 Steven Bosscher <steven@gcc.gnu.org>
5931
5932 * config/rl78/rl78.h: Do not undefine DONT_USE_BUILTIN_SETJMP.
5933 Do not define JMP_BUF_SIZE.
5934
5935 2012-06-26 Jakub Jelinek <jakub@redhat.com>
5936
5937 PR tree-optimization/53748
5938 * tree-ssa-phiopt.c (conditional_replacement): Only optimize
5939 if arg0/arg1 have integral or pointer types.
5940
5941 2012-06-25 Richard Henderson <rth@redhat.com>
5942
5943 * config/i386/sse.md (sse2_sse4_1): Remove code attr.
5944 (<s>dot_prodv4si, <s>dot_prodv8si): Remove
5945 (sdot_prodv4si): New; handle only XOP.
5946
5947 2012-06-25 Richard Henderson <rth@redhat.com>
5948
5949 * config/i386/i386-builtin-types.def (V4UDI, V8USI): New.
5950 (V2UDI_FUNC_V4USI_V4USI): New.
5951 (V4UDI_FUNC_V8USI_V8USI): New.
5952 * config/i386/i386.c (ix86_expand_args_builtin): Handle them.
5953 (IX86_BUILTIN_VEC_WIDEN_SMUL_ODD_V4SI): New.
5954 (IX86_BUILTIN_VEC_WIDEN_SMUL_ODD_V8SI): New.
5955 (IX86_BUILTIN_VEC_WIDEN_UMUL_ODD_V4SI): New.
5956 (IX86_BUILTIN_VEC_WIDEN_UMUL_ODD_V8SI): New.
5957 (IX86_BUILTIN_VEC_WIDEN_UMUL_EVEN_V4SI): New.
5958 (IX86_BUILTIN_VEC_WIDEN_UMUL_EVEN_V8SI): New.
5959 (bdesc_args): Add them.
5960 (ix86_builtin_mul_widen_even, ix86_builtin_mul_widen_odd): New.
5961 (TARGET_VECTORIZE_BUILTIN_MUL_WIDEN_EVEN): New.
5962 (TARGET_VECTORIZE_BUILTIN_MUL_WIDEN_ODD): New.
5963 (ix86_expand_mul_widen_evenodd): Use xop_pmacsdqh.
5964 * config/i386/sse.md (vec_widen_<s>mult_odd_<V124_AVX2>): New.
5965
5966 2012-06-25 Richard Henderson <rth@redhat.com>
5967
5968 * config/i386.sse.md (mul<VI4_AVX2>3): Use xop_pmacsdd.
5969
5970 2012-06-25 Richard Henderson <rth@redhat.com>
5971
5972 * config/i386/i386.c (ix86_rtx_costs) [MULT]: Only apply XOP cost
5973 to V16QImode.
5974 (ix86_expand_vec_interleave): New.
5975 (ix86_expand_mul_widen_evenodd): New.
5976 (ix86_expand_mul_widen_hilo): New.
5977 (ix86_expand_sse2_mulv4si3): Use ix86_expand_mul_widen_evenodd.
5978 * config/i386/i386.md (u_bool) New code attr.
5979 * config/i386/predicates.md
5980 (nonimmediate_or_const_vector_operand): Remove.
5981 * config/i386/sse.md (mul<VI4_AVX2>3): Don't use it; don't test
5982 both AVX and SSE4_1.
5983 (vec_widen<s>mult_hi_<VI2_AVX2>): Remove.
5984 (vec_widen<s>mult_lo_<VI2_AVX2>): Remove.
5985 (vec_widen<s>mult_hi_v8si): Remove.
5986 (vec_widen<s>mult_lo_v8si): Remove.
5987 (vec_widen_smult_hi_v4si): Remove.
5988 (vec_widen_smult_lo_v4si): Remove.
5989 (vec_widen_umult_hi_v4si): Remove.
5990 (vec_widen_umult_lo_v4si): Remove.
5991 (vec_widen_<s>mult_hi_<VI124_AVX2>): New.
5992 (vec_widen_<s>mult_lo_<VI124_AVX2>): New.
5993 * config/i386/i386-protos.h: Update.
5994
5995 2012-06-25 Christophe Lyon <christophe.lyon@st.com>
5996
5997 * config/arm/neon.md (UNSPEC_VLD1_DUP): Remove.
5998 (neon_vld1_dup): Restrict to VQ operands.
5999 (neon_vld1_dupv2di): New, fixes vld1q_dup_s64.
6000
6001 2012-06-25 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
6002 James Greenhalgh <james.greenhalgh@arm.com>
6003
6004 * config/arm/arm.h (TARGET_CPU_CPP_BUILTINS): Add new built-ins.
6005 (TARGET_FMA): New macro.
6006 (TARGET_ARM_QBIT, TARGET_ARM_SAT): Likewise.
6007 (TARGET_ARM_ARCH): Likewise.
6008 (TARGET_ARM_ARCH_ISA_THUMB): Likewise.
6009 (TARGET_V6M, TARGET_V7M): Likewise.
6010 (TARGET_ARM_ARCH_PROFILE): Likewise.
6011 (TARGET_ARM_FEATURE_LDREX): Likewise.
6012 (TARGET_ARM_FP, TARGET_NEON_FP): Likewise.
6013 (ARM_MIN_ENUM_SIZE): Likewise.
6014 * config/arm/arm.c (arm_file_start): Refactor appropriately.
6015 (base_architecture): New enumeration.
6016 (arm_base_arch): New global variable.
6017 (processors): Add field base_arch.
6018 (ARM_ARCH, ARM_CORE): Adjust accordingly.
6019 (arm_option_override): Add initialization of arm_base_arch.
6020 * doc/cpp.texi (system-specific predefined macros.): Change.
6021
6022 2012-06-25 Jakub Jelinek <jakub@redhat.com>
6023
6024 PR target/53759
6025 * config/i386/sse.md (sse_loadlps): Use x m x constraints instead
6026 of x x x in the vmovlps load alternative.
6027
6028 2012-06-25 Richard Sandiford <rdsandiford@googlemail.com>
6029
6030 PR debug/53740
6031 * df.h (dead_debug_add): Remove third argument.
6032 * df-problems.c (dead_debug_add): Likewise. Use the REGNO of the
6033 REG that we want to replace instead.
6034 (dead_debug_insert_temp): Use the REGNO of the reg that we want
6035 to replace instead of DF_REF_REGNO. Require there to always be
6036 at least one such use. Check for cases where the same location
6037 has more than df_ref associated with it.
6038 (df_note_bb_compute): Remove third dead_debug_add argument.
6039 * dce.c (word_dce_process_block): Likewise.
6040
6041 2012-06-25 Steven Bosscher <steven@gcc.gnu.org>
6042
6043 * config/v850/v850.c: Remove redundant extern declarations for
6044 last_assemble_variable_decl and size_directive_output.
6045
6046 * doc/tm.texi.in: Document JMP_BUF_SIZE.
6047 * doc/tm.texi: Regenerate.
6048 * config/sparc/sparc.h (JMP_BUF_SIZE): Do not define.
6049 * config/pa/pa.h (JMP_BUF_SIZE): Likewise.
6050 * config/stormy16/stormy16.h: Likewise.
6051
6052 * config/picochip/picochip.c: Do not define DONT_USE_BUILTIN_SETJMP.
6053
6054 * doc/sourcebuild.texi: Add missing subdirectories.
6055
6056 2012-06-25 Tristan Gingold <gingold@adacore.com>
6057
6058 * config/i386/i386.h: Fix typo.
6059
6060 2012-06-25 Tristan Gingold <gingold@adacore.com>
6061
6062 * config/i386/winnt.c (i386_pe_seh_end_prologue): Move code to ...
6063 (seh_cfa_adjust_cfa): ... that function.
6064 (seh_emit_stackalloc): Do not emit out of range values.
6065 * config/i386/i386.md: Delete unused UNSPEC_REG_SAVE,
6066 UNSPEC_DEF_CFA constants.
6067 * config/i386/i386.h (SEH_MAX_FRAME_SIZE): Define.
6068 * config/i386/i386.c (ix86_frame_pointer_required): Required
6069 for very large frames on SEH target.
6070 (ix86_compute_frame_layout): Save area is before frame pointer
6071 on SEH target. Handle very large frames.
6072 (ix86_expand_prologue): Likewise.
6073
6074 2012-06-24 Steven Bosscher <steven@gcc.gnu.org>
6075
6076 * output.h: (current_function_is_leaf,
6077 current_function_sp_is_unchanging,
6078 current_function_uses_only_leaf_regs): Remove.
6079 * function.c (current_function_is_leaf,
6080 current_function_sp_is_unchanging,
6081 current_function_uses_only_leaf_regs): Remove.
6082 (rest_of_handle_check_leaf_regs): Set crtl->uses_only_leaf_regs
6083 instead of current_function_uses_only_leaf_regs.
6084 * function.h (struct rtl_data): New fields sp_is_unchanging,
6085 is_leaf, uses_only_leaf_regs.
6086 * resource.c (init_resource_info): Replace current_function_is_leaf,
6087 current_function_sp_is_unchanging, and
6088 current_function_uses_only_leaf_regs with new crtl fields.
6089 * sdbout.c (sdbout_symbol): Likewise.
6090 * df-core.c (rest_of_handle_df_initialize): Likewise.
6091 * ira.c (ira): Likewise.
6092 * final.c (final_start_function): Likewise.
6093 * reorg.c (fill_simple_delay_slots): Likewise.
6094 * regrename.c (check_new_reg_p): Likewise.
6095 * stack-ptr-mod.c (notice_stack_pointer_modification_1): Likewise.
6096 (notice_stack_pointer_modification): Likewise.
6097 * dbxout.c (dbxout_symbol): Likewise.
6098 (dbxout_parms): Likewise.
6099 * sel-sched.c (init_regs_for_mode): Likewise.
6100 * dwarf2out.c (dbx_reg_number): Likewise.
6101 (multiple_reg_loc_descriptor): Likewise.
6102 * config/i386/i386.c (ix86_frame_pointer_required): Likewise.
6103 (gen_pop): Likewise.
6104 (ix86_select_alt_pic_regnum): Likewise.
6105 (ix86_compute_frame_layout): Likewise.
6106 (ix86_finalize_stack_realign_flags): Likewise.
6107 (ix86_expand_epilogue): Likewise.
6108 * config/rs6000/rs6000.c (rs6000_stack_info): Likewise.
6109 * config/h8300/h8300.c (byte_reg): Likewise.
6110 * config/c6x/c6x.c (must_reload_pic_reg_p): Likewise.
6111 (c6x_save_reg): Likewise.
6112 (c6x_compute_frame_layout): Likewise.
6113 * config/pa/pa.c (pa_compute_frame_size): Likewise.
6114 (pa_output_function_prologue): Likewise.
6115 * config/stormy16/stormy16.c (struct xstormy16_stack_layout): Likewise.
6116 * config/sparc/sparc.md (attr "leaf_function"): Likewise.
6117 * config/sparc/sparc.c (sparc_initial_elimination_offset): Likewise.
6118 (sparc_expand_prologue): Likewise.
6119 (sparc_flat_expand_prologue): Likewise.
6120 (sparc_asm_function_prologue): Likewise.
6121 (sparc_output_mi_thunk): Likewise.
6122 (sparc_frame_pointer_required): Likewise.
6123 * config/epiphany/epiphany.c (epiphany_compute_function_type):
6124 Likewise.
6125 (epiphany_compute_frame_size): Likewise.
6126 * config/lm32/lm32.c (lm32_compute_frame_size): Likewise.
6127 * config/cris/cris.c (cris_md_asm_clobbers): Likewise.
6128 (cris_frame_pointer_required): Likewise.
6129 * config/tilepro/tilepro.c (emit_sp_adjust): Likewise.
6130 (tilepro_current_function_is_leaf): Likewise.
6131 * config/arm/arm.c (arm_compute_save_reg0_reg12_mask): Likewise.
6132 * config/pdp11/pdp11.c (pdp11_expand_epilogue): Likewise.
6133 * config/ia64/ia64.c (find_gr_spill): Likewise.
6134 (ia64_compute_frame_size): Likewise.
6135 (ia64_can_eliminate): Likewise.
6136 (ia64_initial_elimination_offset): Likewise.
6137 * config/m68k/m68k.c (m68k_save_reg): Likewise.
6138 (m68k_expand_epilogue): Likewise.
6139 * config/rx/rx.c (rx_get_stack_layout): Likewise.
6140 * config/tilegx/tilegx.c (tilegx_current_function_is_leaf): Likewise.
6141 * config/picochip/picochip.c (picochip_can_eliminate_link_sp_save):
6142 Likewise.
6143 (picochip_output_frame_debug): Likewise.
6144 * config/sh/sh.c (sh_media_register_for_return): Likewise.
6145 (sh_allocate_initial_value): Likewise.
6146 (sh_output_mi_thunk): Likewise.
6147 * config/microblaze/microblaze.c (microblaze_must_save_register):
6148 Likewise.
6149 (compute_frame_size): Likewise.
6150 (microblaze_initial_elimination_offset): Likewise.
6151 (microblaze_expand_prologue): Likewise.
6152 (microblaze_expand_epilogue): Likewise.
6153 * config/frv/frv.c (frv_expand_epilogue): Likewise.
6154 (frv_frame_pointer_required): Likewise.
6155 * config/spu/spu.c (get_pic_reg): Likewise.
6156 (direct_return): Likewise.
6157 (spu_expand_prologue): Likewise.
6158 (spu_expand_epilogue): Likewise.
6159 (spu_initial_elimination_offset): Likewise.
6160 * config/mips/mips.c (mips_global_pointer): Likewise.
6161 (mips_cfun_might_clobber_call_saved_reg_p): Likewise.
6162 (mips_compute_frame_info): Likewise.
6163 * config/mep/mep.c (mep_interrupt_saved_reg): Likewise.
6164 (mep_reload_pointer): Likewise.
6165 * config/rl78/rl78.c (need_to_save): Likewise.
6166 * config/cr16/cr16.c (cr16_compute_save_regs): Likewise.
6167 * config/score/score.c (score_compute_frame_size): Likewise.
6168 (score_function_prologue): Likewise.
6169 * config/bfin/bfin.c (must_save_p): Likewise.
6170 (expand_prologue_reg_save): Likewise.
6171 (expand_epilogue_reg_restore): Likewise.
6172 (bfin_frame_pointer_required): Likewise.
6173 (n_regs_saved_by_prologue): Likewise.
6174 (add_to_reg): Likewise.
6175 (expand_interrupt_handler_prologue): Likewise.
6176 (expand_interrupt_handler_epilogue): Likewise.
6177 (bfin_expand_prologue): Likewise.
6178 * config/avr/avr.c (avr_regs_to_save): Likewise.
6179 (avr_prologue_setup_frame): Likewise.
6180 (expand_epilogue): Likewise.
6181 * config/s390/s390.c (s390_regs_ever_clobbered): Likewise.
6182 (s390_register_info): Likewise.
6183 (s390_frame_info): Likewise.
6184 (s390_init_frame_layout): Likewise.
6185 (s390_emit_prologue): Likewise.
6186
6187
6188 2012-06-24 Steven Bosscher <steven@gcc.gnu.org>
6189
6190 * system.h: Poison ASM_BYTE_OP and ASM_OUTPUT_BYTE.
6191 * vmsdbgout: Do not undefine it if defined.
6192 Rename local ASM_BYTE_OP definition to VMS_ASM_BYTE_OP.
6193 * config/microblaze/microblaze/h: Do no define ASM_BYTE_OP.
6194 * config/mep/mep.h: Do not define ASM_OUTPUT_BYTE.
6195
6196 2012-06-24 Richard Sandiford <rdsandiford@googlemail.com>
6197
6198 * config/mips/mips.c (mips_process_sync_loop): Add missing enum cast.
6199
6200 2012-06-23 Richard Henderson <rth@redhat.com>
6201
6202 PR target/53749
6203 * config/i386/i386.c (ix86_rtx_costs): Add reasonable costs for
6204 V*QImode shifts and multiply.
6205 (ix86_expand_vecop_qihi): Support shifts.
6206 * config/i386/i386.md (any_shift): New code iterator.
6207 * config/i386/sse.md (ashlv16qi3): Merge ...
6208 (<any_shiftrt>v16qi3): ... into ...
6209 (<any_shift><VI1_AVX2>3): ... here. Use ix86_expand_vecop_qihi
6210 to support SSE and AVX.
6211
6212 * config/i386/i386.c (ix86_expand_sse_unpack): Split operands[]
6213 parameter into src and dest.
6214 * config/i386/sse.md (vec_unpacku_hi_<V124_AVX2>): Update call.
6215 (vec_unpacks_hi_<V124_AVX2>): Likewise.
6216 (vec_unpacku_lo_<V124_AVX2>): Likewise.
6217 (vec_unpacks_lo_<V124_AVX2>): Likewise.
6218 * config/i386/i386-protos.h: Update.
6219
6220 * config/i386/sse.md (mul<VI1_AVX2>3): Change from insn_and_split to
6221 pure expander; move expansion code ...
6222 * config/i386/i386.c (ix86_expand_vecop_qihi): ... here. New function.
6223 * config/i386/i386-protos.h: Update.
6224
6225 2012-06-22 Edmar Wienskoski <edmar@freescale.com>
6226
6227 * config/rs6000/rs6000.md (define_attr "type"): New type popcnt.
6228 (popcntb<mode>2): Add attribute type popcnt.
6229 (popcntd<mode>2): Ditto.
6230 * config/rs6000/power4.md (define_insn_reservation): Add type popcnt.
6231 * config/rs6000/power5.md (define_insn_reservation): Ditto.
6232 * config/rs6000/power7.md (define_insn_reservation): Ditto.
6233 * config/rs6000/476.md (define_insn_reservation): Ditto.
6234 * config/rs6000/power6.md (define_insn_reservation): New
6235 reservation for popcnt instructions.
6236
6237 2012-06-22 H.J. Lu <hongjiu.lu@intel.com>
6238
6239 * doc/invoke.texi: Update -mpreferred-stack-boundary=3 warning.
6240
6241 2012-06-22 H.J. Lu <hongjiu.lu@intel.com>
6242
6243 PR target/53383
6244 * doc/invoke.texi: Add a warning for -mpreferred-stack-boundary=3.
6245
6246 * config/i386/i386.c (ix86_option_override_internal): Allow
6247 -mpreferred-stack-boundary=3 for 64-bit if SSE is disabled.
6248
6249 * config/i386/i386.h (MIN_STACK_BOUNDARY): Set to 64 for 64-bit
6250 if SSE is disabled.
6251
6252 2012-06-22 Bill Schmidt <wschmidt@linux.ibm.com>
6253
6254 * double-int.c (double_int_multiple_of): New function.
6255 * double-int.h (double_int_multiple_of): New decl.
6256 * tree-ssa-loop-ivopts.c (add_cost, zero_cost): Remove undefs.
6257 (mbc_entry_hash): New forward decl.
6258 (mbc_entry_eq): Likewise.
6259 (zero_cost): Change to no_cost.
6260 (mult_costs): New static var.
6261 (cost_tables_exist): Likewise.
6262 (initialize_costs): New function.
6263 (finalize_costs): Likewise.
6264 (tree_ssa_iv_optimize_init): Call initialize_costs.
6265 (add_cost): Change to add_regs_cost; distinguish costs by speed.
6266 (multiply_regs_cost): New function.
6267 (add_const_cost): Likewise.
6268 (extend_or_trunc_reg_cost): Likewise.
6269 (negate_reg_cost): Likewise.
6270 (multiply_by_cost): Change to multiply_by_const_cost; distinguish
6271 costs by speed.
6272 (get_address_cost): Change add_cost to add_regs_cost; change
6273 multiply_by_cost to multiply_by_const_cost.
6274 (force_expr_to_var_cost): Change zero_cost to no_cost; change
6275 add_cost to add_regs_cost; change multiply_by_cost to
6276 multiply_by_const_cost.
6277 (split_cost): Change zero_cost to no_cost.
6278 (ptr_difference_cost): Likewise.
6279 (difference_cost): Change zero_cost to no_cost; change multiply_by_cost
6280 to multiply_by_const_cost.
6281 (get_computation_cost_at): Change add_cost to add_regs_cost; change
6282 multiply_by_cost to multiply_by_const_cost.
6283 (determine_use_iv_cost_generic): Change zero_cost to no_cost.
6284 (determine_iv_cost): Change add_cost to add_regs_cost.
6285 (iv_ca_new): Change zero_cost to no_cost.
6286 (tree_ssa_iv_optimize_finalize): Call finalize_costs.
6287 * tree-ssa-address.c (most_expensive_mult_to_index): Change
6288 multiply_by_cost to multiply_by_const_cost.
6289 * tree-flow.h (multiply_by_cost): Change to multiply_by_const_cost.
6290 (add_regs_cost): New decl.
6291 (multiply_regs_cost): Likewise.
6292 (add_const_cost): Likewise.
6293 (extend_or_trunc_reg_cost): Likewise.
6294 (negate_reg_cost): Likewise.
6295
6296 2012-06-22 Richard Guenther <rguenther@suse.de>
6297
6298 Merge from graphite branch
6299 2011-08-10 Sebastian Pop <sebpop@gmail.com>
6300
6301 * graphite-sese-to-poly.c (build_scop_drs): Fix memory leak.
6302
6303 2012-01-13 Tobias Grosser <tobias@grosser.es>
6304
6305 * tree-flow.h (parallelized_function_p): Declare.
6306 * tree-parloops.c (parallelized_function_p): Export.
6307 * graphite.c (graphite_transform_loops): Do not run graphite on
6308 already parallel functions.
6309
6310 2012-06-22 Alan Modra <amodra@gmail.com>
6311
6312 * config/rs6000/rs6000.c (rs6000_pre_atomic_barrier): Pass in and
6313 return mem. Convert to indirect addressing if not indirect or
6314 indexed. Adjust all callers.
6315
6316 2012-06-22 Richard Guenther <rguenther@suse.de>
6317
6318 * gcov-iov.c: Include bconfig.h and system.h.
6319
6320 2012-06-22 Andreas Schwab <schwab@linux-m68k.org>
6321
6322 * doc/include/texinfo.tex: Update to version 2012-06-05.14.
6323
6324 2012-06-22 Richard Guenther <rguenther@suse.de>
6325
6326 PR gcov-profile/53744
6327 * gcov-iov.c (main): Treat "" and "prerelease" the same.
6328
6329 2012-06-22 Eric Botcazou <ebotcazou@adacore.com>
6330
6331 PR debug/53704
6332 * dwarf2out.c (gen_compile_unit_die): Use DW_LANG_Fortran90 as language
6333 for GNU Fortran if in strict DWARF2 mode.
6334
6335 2012-06-22 Eric Botcazou <ebotcazou@adacore.com>
6336
6337 * tree-ssa-live.c (remove_unused_scope_block_p): Remove again
6338 DECL_IGNORED_P non-reg vars even if they are used.
6339
6340 2012-06-21 Alexandre Oliva <aoliva@redhat.com>
6341
6342 PR debug/53671
6343 PR debug/49888
6344 * var-tracking.c (vt_get_canonicalize_base): New.
6345 (vt_canonicalize_addr, vt_stack_offset_p): New.
6346 (vt_canon_true_dep): New.
6347 (drop_overlapping_mem_locs): Use vt_canon_true_dep.
6348 (clobber_overlaping_mems): Use vt_canonicalize_addr.
6349
6350 2012-06-21 Alexandre Oliva <aoliva@redhat.com>
6351
6352 PR debug/53671
6353 PR debug/49888
6354 * var-tracking.c (vt_initialize): Record initial offset between
6355 arg pointer and stack pointer.
6356
6357 2012-06-21 Alexandre Oliva <aoliva@redhat.com>
6358
6359 PR debug/53671
6360 PR debug/49888
6361 * var-tracking.c (vt_init_cfa_base): Drop redundant recording of
6362 CFA base.
6363
6364 2012-06-21 Alexandre Oliva <aoliva@redhat.com>
6365
6366 PR debug/53671
6367 PR debug/49888
6368 * alias.c (memrefs_conflict_p): Improve handling of AND for alignment.
6369
6370 2012-06-21 Alexandre Oliva <aoliva@redhat.com>
6371
6372 * ddg.c (build_intra_loop_deps): Discard deps of nondebug on debug.
6373
6374 2012-06-21 Alexandre Oliva <aoliva@redhat.com>
6375
6376 PR debug/53682
6377 * cselib.c (promote_debug_loc): Don't crash on NULL argument.
6378
6379 2012-06-21 Meador Inge <meadori@codesourcery.com>
6380
6381 PR c/53702
6382 * c-decl.c (c_push_function_context): Restore the behavior to reuse
6383 the language function allocated for -Wunused-local-typedefs.
6384 (c_pop_function_context): If necessary, clear the language function
6385 created in c_push_function_context. Always clear out the
6386 x_cur_stmt_list field of the restored language function.
6387
6388 2012-06-21 Sterling Augustine <saugustine@google.com>
6389 Cary Coutant <ccoutant@google.com>
6390
6391 * dwarf2out.c (is_cu_die, is_namespace_die, is_class_die,
6392 add_AT_pubnames, add_enumerator_pubname, want_pubnames): New functions.
6393 (comdat_type_struct): New field 'skeleton_die'.
6394 (breakout_comdat_types): Update it.
6395 (add_pubname): Rework logic. Call is_class_die, is_cu_die and
6396 is_namespace_die. Fix minor style violation. Call want_pubnames.
6397 (add_pubname_string): Call want_pubnames.
6398 (add_pubtype): Rework logic for calculating type name. Call
6399 is_namespace_die. Call want_pubnames.
6400 (output_pubnames): Move conditional logic deciding when to produce the
6401 section from dwarf2out_finish. Use new skeleton_die field.
6402 (base_type_die): Call add_pubtype.
6403 (gen_enumeration_type_die): Unconditionally call add_pubtype.
6404 (gen_subprogram_die): Adjust calls to add_pubname.
6405 (gen_namespace_die): Call add_pubname_string.
6406 (dwarf2out_finish): Call add_AT_pubnames; Move logic on when to
6407 produce pubnames and pubtypes sections to output_pubnames.
6408 * common.opt (-gpubnames): New option.
6409 * doc/invoke.texi: Document it.
6410
6411 2012-06-21 Steven Bosscher <steven@gcc.gnu.org>
6412
6413 * config/m32c/m32c-pragma.c: Remove unnecessary includes.
6414
6415 2012-06-21 Michael Matz <matz@suse.de>
6416
6417 PR middle-end/53688
6418 * builtins.c (get_memory_rtx): Always build an all-aliasing MEM_REF
6419 with correct size.
6420
6421 2012-06-21 Richard Guenther <rguenther@suse.de>
6422
6423 * tree-inline.c (estimate_num_insns): Estimate call cost for
6424 tailcalls properly.
6425
6426 2012-06-20 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
6427
6428 * tree.h (DECL_SOURCE_COLUMN): New accessor.
6429
6430 2012-06-20 Uros Bizjak <ubizjak@gmail.com>
6431
6432 * config/i386/i386.md (SINCOS): New int iterator.
6433 (sincos): New int attribute.
6434 (*<sincos>xf2_i387): Macroize insn from *{sin,cos}xf2_i387 using
6435 SINCOS int iterator.
6436 (*<sincos>_extend<mode>xf2_i387): Macroize insn from
6437 *{sin,cos}_extend<mode>xf2_i387 using SINCOS int iterator.
6438
6439 2012-06-20 Uros Bizjak <ubizjak@gmail.com>
6440
6441 * config/i386/i386.md (RDFSGSBASE): New int iterator.
6442 (WRFSGSBASE): Ditto.
6443 (fsgs): New int attribute.
6444 (rd<fsgs>base<mode>): Macroize insn from rd<fsgs>base<mode> using
6445 RDFSGSBASE int iterator.
6446 (wr<fsgs>base<mode>): Macroize insn from wr<fsgs>base<mode> using
6447 WRFSGSBASE int iterator.
6448
6449 2012-06-20 Uros Bizjak <ubizjak@gmail.com>
6450
6451 * config/i386/i386.md (<rounding_insn><mode>2): Macroize expander
6452 from {floor,ceil,btrunc}<mode>2 using FIST_ROUNDING int iterator.
6453 (l<rounding_insn><MODEF:mode><SWI48:mode>2): Macroize expander
6454 from l{floor,ceil}<MODEF:mode><SWI48:mode>2 using FIST_ROUNDING
6455 int iterator.
6456
6457 2012-06-20 Steven Bosscher <steven@gcc.gnu.org>
6458
6459 * system.h: Poison ASM_OUTPUT_IDENT and IDENT_ASM_OP.
6460
6461 2012-06-20 Richard Guenther <rguenther@suse.de>
6462
6463 PR tree-optimization/30318
6464 * tree-vrp.c (range_int_cst_p): Do not reject overflowed
6465 constants here.
6466 (range_int_cst_singleton_p): But explicitely here.
6467 (zero_nonzero_bits_from_vr): And here.
6468 (extract_range_from_binary_expr_1): Re-implement PLUS_EXPR
6469 to cover all cases we can perform arbitrary precision
6470 arithmetic with double-ints.
6471 (intersect_ranges): Handle adjacent anti-ranges.
6472
6473 2012-06-20 Uros Bizjak <ubizjak@gmail.com>
6474
6475 * config/i386/i386.md (rounding_insn): New int attribute.
6476 (<rounding_insn>xf2): Macroize insn from
6477 {floor,ceil,btrunc}xf2 using FRNDINT_ROUNDING int iterator.
6478 (l<rounding_insn>xf<mode>2): Rename from l<rounding>xf<mode>2.
6479
6480 2012-06-20 Uros Bizjak <ubizjak@gmail.com>
6481
6482 * config/i386/i386.md (IEEE_MAXMIN): New int iterator.
6483 (ieee_maxmin): New int attribute.
6484 (*ieee_s<ieee_maxmin><mode>3): Macroize insn from
6485 *ieee_s{max,min}<mode>3 using IEEE_MAXMIN int iterator.
6486
6487 2012-06-20 Steven Bosscher <steven@gcc.gnu.org>
6488
6489 * config/arm/arm.h (EMIT_EABI_ATTRIBUTE): Remove.
6490 * config/arm/arm.c: Do not include c-pragma.h.
6491 (arm_emit_eabi_attribute): New function based on EMIT_EABI_ATTRIBUTE.
6492 (arm_file_start): Replace uses of EMIT_EABI_ATTRIBUTE with calls
6493 to arm_emit_eabi_attribute.
6494 * arm-c.c: Do not include output.h.
6495 (arm_output_c_attributes): Replace use of EMIT_EABI_ATTRIBUTE with a
6496 call to arm_emit_eabi_attribute.
6497 * config/arm/arm-protos.h (arm_emit_eabi_attribute): Prototype it.
6498
6499 2012-06-20 Richard Guenther <rguenther@suse.de>
6500
6501 * tree-vect-data-refs.c (vect_can_force_dr_alignment_p):
6502 Allow adjusting alignment of user-aligned decls again.
6503
6504 2012-06-20 Steven Bosscher <steven@gcc.gnu.org>
6505
6506 * config/rl78/rl78-c.c: Remove unnecessary includes.
6507
6508 2012-06-20 Steven Bosscher <steven@gcc.gnu.org>
6509
6510 * config/cris/cris.c: Include cgraph.h.
6511 (cris_option_override): Do not set non-existing flag_no_gcc_ident.
6512
6513 2012-06-19 Maxim Kuvyrkov <maxim@codesourcery.com>
6514
6515 * emit-rtl.c (need_atomic_barrier_p): New function.
6516 * emit-rtl.h (need_atomic_barrier_p): Declare it.
6517 * config/alpha/alpha.c (alpha_{pre,post}_atomic_barrier): Use it.
6518 * config/arm/arm.c (arm_{pre,post}_atomic_barrier): Use it.
6519 * config/tilegx/tilegx.c (tile_{pre,post}_atomic_barrier): Use it.
6520 * config/mips/mips.c (mips_{pre,post}_atomic_barrier_p): Remove.
6521 (mips_process_sync_loop): Use generic version instead.
6522
6523 2012-06-19 Maxim Kuvyrkov <maxim@codesourcery.com>
6524
6525 * config/mips/mips.c (mips_process_sync_loop): Emit cmp result only if
6526 it is used.
6527
6528 2012-06-19 Tom de Vries <vries@codesourcery.com>
6529 Maxim Kuvyrkov <maxim@codesourcery.com>
6530
6531 * config/mips/constraints.md (ZR): New constraint.
6532 * config/mips/predicates.md (mem_noofs_operand): New predicate.
6533 * config/mips/mips.c (mips_print_operand): Handle new print modifier.
6534 * config/mips/mips.h (TARGET_XLP): Define.
6535 (TARGET_SYNC_AFTER_SC): Update.
6536 (ISA_HAS_SWAP, ISA_HAS_LDADD): Define.
6537 * config/mips/sync.md (atomic_exchange, atomic_fetch_add): Use
6538 XLP-specific swap and ldadd patterns.
6539 (atomic_exchange_swap, atomic_fetch_add_ldadd): New patterns.
6540
6541 2012-06-19 Tom de Vries <vries@codesourcery.com>
6542 Maxim Kuvyrkov <maxim@codesourcery.com>
6543
6544 * config/mips/mips.c (mips_emit_pre_atomic_barrier_p,)
6545 (mips_emit_post_atomic_barrier_p): New static functions.
6546 (mips_process_sync_loop): Use them. Emit sync memory barriers in
6547 accordance with memory model semantics. Add return of CMP result for
6548 compare_and_swap.
6549 * config/mips/mips.md: Update comment.
6550 (sync_cmp): New attribute.
6551 (sync_memmodel): New attribute replacing sync_release_barrier.
6552 * config/mips/sync.md (UNSPEC_ATOMIC_COMPARE_AND_SWAP,)
6553 (UNSPEC_ATOMIC_EXCHANGE, UNSPEC_ATOMIC_FETCH_OP): New constants.
6554 (sync_lock_test_and_set, test_and_set_12): Update.
6555 (atomic_compare_and_swap, atomic_exchange, atomic_exchange_llsc,)
6556 (atomic_fetch_add, atomic_fetch_add_llsc): New patterns.
6557
6558 2012-06-19 Joseph Myers <joseph@codesourcery.com>
6559
6560 * config/rs6000/spe.md (*mov_si<mode>_e500_subreg0): Rename to
6561 mov_si<mode>_e500_subreg0.
6562 (*mov_si<mode>_e500_subreg0_elf_low)
6563 (*mov_si<mode>_e500_subreg4_elf_low): New patterns.
6564
6565 2012-06-19 Richard Henderson <rth@redhat.com>
6566
6567 * config/alpha/alpha.c: Include params.h.
6568 (alpha_option_override): Initialize PARAM_L1_CACHE_LINE_SIZE,
6569 PARAM_L1_CACHE_SIZE, PARAM_L2_CACHE_SIZE for the cpu tuning.
6570
6571 2012-06-19 Steven Bosscher <steven@gcc.gnu.org>
6572
6573 * doc/tm.texi.in (TARGET_OBJC_DECLARE_UNRESOLVED_CLASS_REFERENCE,
6574 TARGET_OBJC_DECLARE_CLASS_DEFINITION): Add @hooks.
6575 (ASM_DECLARE_CLASS_REFERENCE, ASM_DECLARE_UNRESOLVED_REFERENCE):
6576 Remove.
6577 * doc/tm.texi: Regenerate.
6578 * config/darwin.h (ASM_OUTPUT_LABELREF): Remove special case for
6579 .objc_class_name_*.
6580 * config/darwin-c.c: Include target.h.
6581 (darwin_objc_declare_unresolved_class_reference): New function.
6582 (darwin_objc_declare_class_definition): New function.
6583 (TARGET_OBJC_DECLARE_UNRESOLVED_CLASS_REFERENCE): Define.
6584 (TARGET_OBJC_DECLARE_CLASS_DEFINITION): Define.
6585
6586 2012-06-19 Steven Bosscher <steven@gcc.gnu.org>
6587
6588 * target.def (output_ident): New hook.
6589 * targhooks.h (default_asm_output_ident_directive): Add prototype.
6590 * varasm.c (assemble_asm): Only prefix a tab if the string does not
6591 already start with one.
6592 (default_asm_output_ident_directive): New function to emit
6593 .ident as a top-level asm node while parsing, or directly to
6594 asm_out_file after parsing.
6595 * toplev.c (compile_file): Print a GCC .ident with
6596 targetm.asm_out.output_ident.
6597 * doc/tm.texi.in (ASM_OUTPUT_IDENT): Remove documentation for macro.
6598 (TARGET_ASM_OUTPUT_IDENT): Add @hook for this.
6599 * doc/tm.texi: Update.
6600
6601 * config/elfos.h (ASM_OUTPUT_IDENT, IDENT_ASM_OP): Remove.
6602 (TARGET_ASM_OUTPUT_IDENT): Define.
6603 * config/i386/djgpp.h (IDENT_ASM_OP): Remove.
6604 * config/i386/gas.h (ASM_OUTPUT_IDENT): Remove.
6605 * config/arm/aout.h (ASM_OUTPUT_IDENT): Remove.
6606 * config/sparc/sparc.h (IDENT_ASM_OP): Remove.
6607 (TARGET_ASM_OUTPUT_IDENT): Define.
6608 * config/picochip/picochip.h (IDENT_ASM_OP): Remove.
6609 (TARGET_ASM_OUTPUT_IDENT): Define.
6610
6611 * config/cris/cris-protos.h (cris_asm_output_ident): Add prototype.
6612 * config/cris/cris.c (cris_asm_output_ident): New function.
6613 * config/cris/cris.h (ASM_OUTPUT_IDENT, IDENT_ASM_OP): Remove.
6614
6615 * config/microblaze/microblaze-protos.h (microblaze_asm_output_ident):
6616 Add prototype.
6617 * config/microblaze/microblaze.c: Include cgraph.h for add_asm_node.
6618 (microblaze_asm_output_ident): Rewrite to work similar to
6619 default_asm_output_ident_directive for front-end .idents.
6620 * config/microblaze/microblaze.h (ASM_OUTPUT_IDENT): Remove.
6621 (TARGET_ASM_OUTPUT_IDENT): Define.
6622
6623 * config/mips/mips.h (ASM_OUTPUT_IDENT): Remove.
6624 * config/mips/sde.h (IDENT_ASM_OP, ASM_OUTPUT_IDENT): Remove.
6625
6626 * config/rx/rx.c: Include cgraph.h for add_asm_node.
6627 (rx_asm_output_ident): New function, similar to
6628 default_asm_output_ident_directive, but handle AS100 syntax also, so
6629 that #ident also works for rx in AS100 syntax.
6630 (TARGET_ASM_OUTPUT_IDENT): Define.
6631 * config/rx/rx.h (IDENT_ASM_OP): Remove.
6632
6633 * Makefile.in: Fix dependencies for c-family/c-lex.o.
6634
6635 2012-06-19 Uros Bizjak <ubizjak@gmail.com>
6636
6637 * config/i386/i386.md (FIST_ROUNDING): New int iterator.
6638 (rounding): Handle UNSPEC_FIST_{FLOOR,CEIL}.
6639 (ROUNDING): Ditto.
6640 (*fist<mode>2_<rounding>_1): Macroize insn from
6641 *fist<mode>2_{floor,ceil}_1 using FIST_ROUNDING int iterator.
6642 (fistdi2_<rounding>): Macroize insn from
6643 fistdi2_{floor,ceil} using FIST_ROUNDING int iterator.
6644 (fistdi2_<rounding>_with_temp and splitters): Macroize insn and
6645 corresponding splitters from fistdi2_{floor,ceil} and corresponding
6646 splitters using FIST_ROUNDING int iterator.
6647 (fist<mode>2_<rounding>): Macroize insn from
6648 fist<mode>2_{floor,ceil} using FIST_ROUNDING int iterator.
6649 (fist<mode>2_<rounding>_with_temp and splitters): Macroize insn and
6650 corresponding splitters from fist<mode>2_{floor,ceil} and corresponding
6651 splitters using FIST_ROUNDING int iterator.
6652 (l<rounding>xf<mode>2): Macroize expander from l{floor,ceil}xf<mode>2
6653 using FIST_ROUNDING int iterator.
6654
6655 2012-06-19 Richard Henderson <rth@redhat.com>
6656
6657 * config/i386/i386-protos.h (ix86_expand_sse2_mulv4si3): Declare.
6658 * config/i386/i386.c (ix86_expand_sse2_mulv4si3): New.
6659 * config/i386/predicates.md (nonimmediate_or_const_vector_operand): New.
6660 * config/i386/sse.md (sse2_mulv4si3): Delete.
6661 (mul<VI4_AVX2>3): Use ix86_expand_sse2_mulv4si3 and
6662 nonimmediate_or_const_vector_operand.
6663
6664 2012-06-19 Richard Henderson <rth@redhat.com>
6665
6666 * expmed.c (struct init_expmed_rtl): Split ...
6667 (init_expmed_one_mode): ... out of ...
6668 (init_expmed): ... here. Initialize integer vector modes also.
6669 (synth_mult): Handle integer vector modes.
6670 (choose_mult_variant): Likewise.
6671 (expand_mult_const): Likewise.
6672 (expand_mult): Likewise.
6673 * machmode.h (GET_MODE_UNIT_BITSIZE): New.
6674
6675 2012-06-19 Richard Henderson <rth@redhat.com>
6676
6677 * config/i386/i386.c (ix86_rtx_costs): Handle CONST_VECTOR, and
6678 integral vector modes.
6679
6680 2012-06-19 Uros Bizjak <ubizjak@gmail.com>
6681
6682 * config/i386/i386.md (FRNDINT_ROUNDING): New int iterator.
6683 (rounding): New int attribute.
6684 (ROUNDING): Ditto.
6685 (frndintxf2_<rounding>): Macroize insn from
6686 frndintxf2_{floor,ceil,trunc} using FRNDINT_ROUNDING int iterator.
6687 (frndintxf2_<rounding>_i387): Macroize insn from
6688 frndintxf2_{floor,ceil,trunc}_i387 using FRNDINT_ROUNDING int iterator.
6689
6690 2012-06-19 Richard Guenther <rguenther@suse.de>
6691
6692 * tree-vrp.c (union_ranges): New function.
6693 (vrp_meet_1): Use union_ranges.
6694 (vrp_meet): Dump what we union and call vrp_meet_1.
6695
6696 2012-06-19 Richard Earnshaw <rearnsha@arm.com>
6697
6698 * arm.md (enum unspec): Delete UNSPEC_SIN and UNSPEC_COS.
6699 (attr type): Remove fmul, ffmul, farith, ffarith, float_em
6700 f_fpa_load, f_fpa_store, f_mem_r, r_mem_f.
6701 (attr write_conflict, attr core_cycles): Update.
6702 * arm-generic.md (r_mem_f_wbuf): Delete reservation.
6703
6704 2012-06-19 Richard Guenther <rguenther@suse.de>
6705
6706 * tree-vrp.c (intersect_ranges): Handle more cases.
6707 (vrp_intersect_ranges): Dump what we intersect and call ...
6708 (vrp_intersect_ranges_1): ... this.
6709
6710 2012-06-19 Richard Guenther <rguenther@suse.de>
6711
6712 PR tree-optimization/53708
6713 * tree-vect-data-refs.c (vect_can_force_dr_alignment_p): Preserve
6714 user-supplied alignment and alignment of decls with the used
6715 attribute.
6716
6717 2012-06-18 Lawrence Crowl <crowl@google.com>
6718
6719 * timevar.def (TV_PHASE_GENERATE): Rename to TV_PHASE_LATE_ASM.
6720 (TV_PHASE_CGRAPH): Rename to TV_PHASE_OPT_GEN.
6721 (TV_PHASE_STREAM_IN): New.
6722 (TV_PHASE_STREAM_OUT): New.
6723 * timevar.c (validate_phases): New.
6724 (timevar_print): Call validate_phases.
6725 * c-decl.c (c_write_global_declarations): Rename use of TV_PHASE_CGRAPH
6726 to TV_PHASE_OPT_GEN.
6727 * langhooks.c (write_global_declarations): Rename use of
6728 TV_PHASE_CGRAPH to TV_PHASE_OPT_GEN. Use TV_PHASE_DBGINFO instead of
6729 TV_PHASE_CHECK_DBGINFO.
6730 * toplev.c (compile_file): Rename use of TV_PHASE_GENERATE to
6731 TV_PHASE_LATE_ASM. Move start of TV_PHASE_LATE_ASM to after call to
6732 lang_hooks.decls.final_write_globals.
6733
6734 2012-06-18 David Edelshn <dje.gcc@gmail.com>
6735
6736 * config/rs6000/aix52.h (TARGET_EXTRA_BUILTINS): Define as 0.
6737
6738 2012-06-18 Uros Bizjak <ubizjak@gmail.com>
6739
6740 PR target/53712
6741 * config/i386/sse.md (*sse4_2_pcmpestr_unaligned): New.
6742 (*sse4_2_pcmpistr_unaligned): New.
6743
6744 2012-06-18 Ian Bolton <ian.bolton@arm.com>
6745 Sameera Deshpande <sameera.deshpande@arm.com>
6746 Greta Yorsh <greta.yorsh@arm.com>
6747
6748 * config/arm/arm-protos.h (arm_output_epilogue): Remove.
6749 * config/arm/arm.c (print_multi_reg): Remove.
6750 (vfp_output_fldmd): Likewise.
6751 (arm_output_epilogue): Likewise.
6752 * config/arm/arm.md (epilogue_insns): Update condition and code.
6753
6754 2012-06-18 Ian Bolton <ian.bolton@arm.com>
6755 Sameera Deshpande <sameera.deshpande@arm.com>
6756 Greta Yorsh <greta.yorsh@arm.com>
6757
6758 * config/arm/arm-protos.h (thumb2_expand_return): New declaration.
6759 * config/arm/arm.c (thumb2_expand_return): New function.
6760 * config/arm/arm.md (return): Update condition and code.
6761
6762 2012-06-18 Ian Bolton <ian.bolton@arm.com>
6763 Sameera Deshpande <sameera.deshpande@arm.com>
6764 Greta Yorsh <greta.yorsh@arm.com>
6765
6766 * config/arm/arm-protos.h (output_return_instruction): New parameter
6767 and int to bool change of parameter types.
6768 * config/arm/arm.c (output_return_instruction): Likewise.
6769 * config/arm/arm.md (arm_simple_return): New pattern.
6770 (arm_return, cond_return, cond_return_inverted): Add new arguments.
6771 * config/arm/thumb2.md (thumb2_return): Update condition and code.
6772
6773 2012-06-18 Ian Bolton <ian.bolton@arm.com>
6774 Sameera Deshpande <sameera.deshpande@arm.com>
6775 Greta Yorsh <greta.yorsh@arm.com>
6776
6777 * config/arm/arm-protos.h (arm_expand_epilogue): New declaration.
6778 * config/arm/arm.c (arm_expand_epilogue): New function.
6779 * config/arm/arm.md (epilogue): Update condition and code.
6780 (sibcall_epilogue): Likewise.
6781
6782 2012-06-18 Ian Bolton <ian.bolton@arm.com>
6783 Sameera Deshpande <sameera.deshpande@arm.com>
6784 Greta Yorsh <greta.yorsh@arm.com>
6785
6786 * config/arm/arm.c (arm_expand_epilogue_apcs_frame): New function.
6787 * config/arm/arm.md (arm_addsi3) Add an alternative.
6788
6789 2012-06-18 Ian Bolton <ian.bolton@arm.com>
6790 Sameera Deshpande <sameera.deshpande@arm.com>
6791 Greta Yorsh <greta.yorsh@arm.com>
6792
6793 * config/arm/arm.md (vfp_pop_multiple_with_writeback) New define_insn.
6794 * config/arm/predicates.md (pop_multiple_fp) New special predicate.
6795 * config/arm/arm.c (arm_emit_vfp_multi_reg_pop): New function.
6796
6797 2012-06-18 Ian Bolton <ian.bolton@arm.com>
6798 Sameera Deshpande <sameera.deshpande@arm.com>
6799 Greta Yorsh <greta.yorsh@arm.com>
6800
6801 * config/arm/arm.md (load_multiple_with_writeback) New define_insn.
6802 (load_multiple, pop_multiple_with_writeback_and_return) Likewise.
6803 (pop_multiple_with_return, ldr_with_return) Likewise.
6804 * config/arm/predicates.md (pop_multiple_return) New special predicate.
6805 * config/arm/arm-protos.h (arm_output_multireg_pop) New declaration.
6806 * config/arm/arm.c (arm_output_multireg_pop) New function.
6807 (arm_emit_multi_reg_pop): New function.
6808
6809 2012-06-18 Greta Yorsh <Greta.Yorsh@arm.com>
6810
6811 * config/arm/arm.c (ldm_stm_operation_p): Require SP
6812 as base register for loads if SP is in the register list.
6813
6814 2012-06-18 Richard Guenther <rguenther@suse.de>
6815
6816 PR tree-optimization/53693
6817 * tree-vect-patterns.c (vect_operation_fits_smaller_type):
6818 Reject operands with more than one use.
6819
6820 2012-06-18 Bill Schmidt <wschmidt@linux.ibm.com>
6821
6822 PR tree-optimization/53703
6823 * tree-ssa-phiopt.c (hoist_adjacent_loads): Skip virtual phis;
6824 correctly set bb_for_def[12].
6825
6826 2012-06-18 Steven Bosscher <steven@gcc.gnu.org>
6827
6828 * config/vax/vax.h (VMS_TARGET): Remove.
6829
6830 2012-06-18 Richard Guenther <rguenther@suse.de>
6831
6832 * tree-vrp.c (extract_range_from_assert): Split out range
6833 intersecting code.
6834 (intersect_ranges): New function.
6835 (vrp_intersect_ranges): Likewise.
6836
6837 2012-06-18 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
6838
6839 * config/s390/s390.c (s390_gimplify_va_arg): Revert change from
6840 r187965.
6841
6842 2012-06-18 Tejas Belagod <tejas.belagod@arm.com>
6843
6844 * doc/md.texi: Document int iterators.
6845 * read-rtl.c (ints): New iterator group.
6846 (find_int): Int iterator group callback.
6847 (apply_int_iterator): Likewise.
6848 (apply_iterators): Traverse int iterator table and add all the used
6849 iterators to list.
6850 (initialize_iterators): Initialize data structures and callbacks for
6851 int iterators.
6852 (read_rtx): Parse and read mappings for int iterators.
6853 (read_rtx_code): Record int iterator usage.
6854
6855 2012-06-18 Richard Sandiford <rdsandiford@googlemail.com>
6856
6857 PR middle-end/53698
6858 * expr.c (expand_expr_addr_expr_1): Convert to tmode before
6859 performing an addition.
6860
6861 2012-06-17 Steven Bosscher <steven@gcc.gnu.org>
6862
6863 * output.h (split_double): Move prototype to rtl.h.
6864 (constructor_static_from_elts_p): Move prototype to tree.c.
6865 * rtl.h (split_double): Moved here from output.h.
6866 * tree.h (constructor_static_from_elts_p): Moved here from output.h.
6867 * final.c (split_double): Move from here ...
6868 * rtlanal.c (split_double): ... to here.
6869 * expr.c: Do not include output.h.
6870
6871 2012-06-17 Steven Bosscher <steven@gcc.gnu.org>
6872
6873 * cfglayout.h: Remove.
6874 * cfglayout.c: Remove.
6875 * function.h (struct function): Remove x_last_location field.
6876 * function.c: Do not include cfglayout.h.
6877 (expand_function_start): Do not call no-op force_next_line_note.
6878 (expand_function_end): Likewise.
6879 * cfgrtl.c: Do not include cfglayout.h. Include gt-cfgrtl.h.
6880 (unlink_insn_chain): Moved here from cfglayout.c.
6881 (skip_insns_after_block, label_for_bb, record_effective_endpoints,
6882 into_cfg_layout_mode, outof_cfg_layout_mode,
6883 pass_into_cfg_layout_mode, pass_outof_cfg_layout_mode,
6884 relink_block_chain, fixup_reorder_chain, verify_insn_chain,
6885 fixup_fallthru_exit_predecessor, force_one_exit_fallthru,
6886 cfg_layout_can_duplicate_bb_p, duplicate_insn_chain,
6887 cfg_layout_duplicate_bb, cfg_layout_initialize, break_superblocks,
6888 cfg_layout_finalize): Likewise.
6889 (rtl_can_remove_branch_p): Likewise.
6890 * rtl.h (insn_scope): Move prototype from cfglayout.h here.
6891 (duplicate_insn_chain): Likewise.
6892 (force_next_line_note): Remove prototype.
6893 * emit-rtl.c: Do not include tree-flow.h, egad. Include vecprim.h.
6894 (last_location): Remove #define to emit.x_last_location.
6895 (force_next_line_note): Remove no-op function.
6896 (init_emit): Don't set x_last_location.
6897 (block_locators_locs, block_locators_blocks, locations_locators_locs,
6898 locations_locators_vals, prologue_locator, epilogue_locator,
6899 curr_location, last_location, curr_block, last_block, curr_rtl_loc):
6900 Move POD to here from cfglayout.c.
6901 (insn_locators_alloc, insn_locators_finalize, insn_locators_free,
6902 set_curr_insn_source_location, get_curr_insn_source_location,
6903 set_curr_insn_block, get_curr_insn_block, curr_insn_locator,
6904 locator_scope, insn_scope, locator_location, locator_line, insn_line,
6905 locator_file, insn_file, locator_eq): Move to here from cfglayout.c.
6906 * cfghooks.h: Remove double-include protection.
6907 (can_copy_bbs_p, copy_bbs): Move prototypes from cfglayout.h to here.
6908 * cfghooks.c (can_copy_bbs_p, copy_bbs): Move to here from cfglayout.c.
6909 * final.c: Do not include cfglayout.h.
6910 (choose_inner_scope, change_scope): Move to here from cfglayout.c.
6911 (reemit_insn_block_notes): Likewise. Make static.
6912 * tree-flow.h (tree_could_trap_p, operation_could_trap_helper_p,
6913 operation_could_trap_p, tree_could_throw_p): Move from here...
6914 * tree.h: ... to here.
6915 * gengtype.c (open_base_files): Remove cfglayout.h from the list.
6916 * profile.c: Do not include cfghooks.h.
6917 * cfgloopmanip.c: Do not include cfglayout.h and cfghooks.h.
6918 * modulo-sched.c: Likewise.
6919 * loop-unswitch.c: Do not include cfglayout.h.
6920 * sched-ebb.c: Likewise.
6921 * tracer.c: Likewise.
6922 * ddg.c: Likewise.
6923 * tree-vect-loop-manip.c: Likewise.
6924 * loop-init.c: Likewise.
6925 * dwarf2out.c: Likewise.
6926 * hw-doloop.c: Likewise.
6927 * loop-unroll.c: Likewise.
6928 * cfgcleanup.c: Likewise.
6929 * bb-reorder.c: Likewise.
6930 * sched-rgn.c: Likewise.
6931 * tree-cfg.c: Likewise.
6932 * config/alpha/alpha.c: Likewise.
6933 * config/spu/spu.c: Likewise.
6934 * config/sparc/sparc.c: Likewise.
6935 * config/sh/sh.c: Likewise.
6936 * config/c6x/c6x.c: Likewise.
6937 * config/ia64/ia64.c: Likewise.
6938 * config/rs6000/rs6000.c: Likewise.
6939 * config/score/score.c: Likewise.
6940 * config/mips/mips.c: Likewise.
6941 * config/bfin/bfin.c: Likewise.
6942 * Makefile.in (CFGAYOUT_H): Remove, and fixup users.
6943 * config/rs6000/t-rs6000 (rs6000.o): Do not depend on cfglayout.h.
6944 * config/spu/t-spu-elf (spu.o: $): Likewise.
6945 * config/sparc/t-sparc (sparc.o): Do not depend on CFGLAYOUT_H.
6946
6947 2012-06-17 Steven Bosscher <steven@gcc.gnu.org>
6948
6949 * cfgloop.h: Do not include rtl.h.
6950 (enum iv_extend_code): New.
6951 (struct rtx_iv): Use iv_extend_code instead of rtx_code.
6952 * Makefile.in (CFGLOOP_H): Do not depend on RTL_H.
6953 * loop-iv.c (iv_extend_to_rtx_code): New function to translate
6954 an IV_EXTEND_CODE to an RTX_CODE.
6955 (dump_iv_info): Update for rtx_iv field type change.
6956 (iv_constant): Likewise.
6957 (iv_subreg): Likewise.
6958 (iv_extend): Likewise.
6959 (iv_neg): Likewise.
6960 (iv_add): Likewise.
6961 (iv_mult): Likewise.
6962 (iv_shift): Likewise.
6963 (get_biv_step_1): Likewise.
6964 (get_biv_step): Likewise.
6965 (iv_analyze_biv): Likewise.
6966 (get_iv_value): Likewise.
6967 (shorten_into_mode): Likewise.
6968 (canonicalize_iv_subregs): Likewise.
6969 * sese.c (sese_build_liveouts): Use MAY_HAVE_DEBUG_STMTS instead
6970 of MAY_HAVE_DEBUG_INSNS.
6971 * tree-ssa-loop-ivopts.c: Include recog.h after expr.h.
6972 * tree-ssa-loop-prefetch.c: Likewise.
6973
6974 2012-06-17 Steven Bosscher <steven@gcc.gnu.org>
6975
6976 * expmed.c (ceil_log2): Move from here...
6977 * hwint.c: ... to here for older GCCs...
6978 * hwint.h: ... and here for newer GCCs.
6979 * rtl.h (ceil_log2): Remove prototype.
6980
6981 * tree-phinodes.c: Do not include rtl.h.
6982 * Makefile.in (tree-phinodes.o): Do not depend on RTL_H.
6983
6984 2012-06-17 Steven Bosscher <steven@gcc.gnu.org>
6985
6986 * config/cris/cris.h (TARGET_ELF): Remove.
6987 (FORCE_EH_FRAME_INFO_IN_DATA_SECTION): Remove.
6988 (CRIS_ASM_OUTPUT_ALIGNED_DECL_COMMON): Simpify using TARGET_ELF==1.
6989 (LOCAL_LABEL_PREFIX): Likewise.
6990 * config/cris/cris.c (cris_target_asm_named_section): Remove.
6991 (cris_option_override): Simpify using TARGET_ELF==1.
6992 (cris_file_start): Likewise.
6993 * config/cris/cris-protos.h (cris_target_asm_named_section): Remove.
6994
6995 2012-06-17 Uros Bizjak <ubizjak@gmail.com>
6996
6997 * config/i386/sse.md (vcvtph2ps): Fix vec_select selector.
6998
6999 2012-06-16 Eric Botcazou <ebotcazou@adacore.com>
7000
7001 PR middle-end/53590
7002 * tree-inline.c (initialize_cfun): Copy can_delete_dead_exceptions.
7003
7004 2012-06-15 Easwaran Raman <eraman@google.com>
7005
7006 * passes.c (init_optimization_passes): Remove pass_call_cdce
7007 from its current position and insert after pass_dce.
7008
7009 2012-06-15 Walter Lee <walt@tilera.com>
7010
7011 * config/tilegx/sync.md (atomic_fetch_<fetchop_name><mode>): Fix typo.
7012
7013 2012-06-15 Richard Earnshaw <rearnsha@arm.com>
7014
7015 * arm.c (note_invalid_constants): Don't return a result.
7016 (arm_memory_load_p): Delete function.
7017 (arm_const_double_rtx): Delete iterator variable i;
7018 (fp_immediate_constant): Likewise.
7019 (fp_const_from_val): Likewise.
7020
7021 * arm.c (arm_init_iwmmxt_builtins): Delete void_ftype_void.
7022
7023 2012-06-15 Marc Glisse <marc.glisse@inria.fr>
7024
7025 PR c++/51033
7026 * c-typeck.c (c_build_vec_perm_expr): Move to c-family/c-common.c.
7027 * c-tree.h (c_build_vec_perm_expr): Move to c-family/c-common.h.
7028
7029 2012-06-15 Georg-Johann Lay <avr@gjlay.de>
7030
7031 * config/avr/avr.c (avr_default_expand_builtin): New function.
7032 (avr_expand_builtin): Use it.
7033 (avr_expand_unop_builtin): Remove.
7034 (avr_expand_binop_builtin): Remove.
7035 (avr_expand_triop_builtin): Remove.
7036
7037 2012-06-15 Michael Matz <matz@suse.de>
7038
7039 PR middle-end/38474
7040 * cfgexpand.c (add_alias_set_conflicts): Remove.
7041 (expand_used_vars): Don't call it.
7042 (aggregate_contains_union_type): Remove.
7043 * function.c (n_temp_slots_in_use): New static data.
7044 (make_slot_available, assign_stack_temp_for_type): Update it.
7045 (init_temp_slots): Zero it.
7046 (remove_unused_temp_slot_addresses): Use it for quicker removal.
7047 (remove_unused_temp_slot_addresses_1): Use htab_clear_slot.
7048
7049 2012-06-15 Michael Matz <matz@suse.de>
7050
7051 * gimplify.c (gimplify_compound_literal_expr): Take gimple_test_f
7052 argument, don't emit assign statement if value is directly usable.
7053 (gimplify_expr): Adjust.
7054
7055 2012-06-15 Michael Matz <matz@suse.de>
7056
7057 * gimplify.c (gimplify_modify_expr): Fold generated statements.
7058 * gimple-fold.c (can_refer_decl_in_current_unit_p): Check flag_ltrans.
7059
7060 2012-06-15 Richard Guenther <rguenther@suse.de>
7061
7062 * tree-vrp.c (set_and_canonicalize_value_range): Use canonical
7063 predicates to set VR_UNDEFINED and VR_VARYING. Drop a case
7064 we assert for in set_value_range to VR_VARYING.
7065
7066 2012-06-15 Richard Earnshaw <rearnsha@arm.com>
7067
7068 * arm.md (addsf3, adddf3): Use s_register_operand.
7069 (subsf3, subdf3): Likewise.
7070 (mulsf3, muldf3): Likewise.
7071 (difsf3, divdf3): Likewise.
7072 (movsfcc, movdfcc): Likewise.
7073 * predicates.md (f_register_operand): Delete.
7074 (arm_float_rhs_operand): Delete.
7075 (arm_float_add_operand): Delete.
7076 (arm_float_compare_operand): Use s_register_operand when
7077 there's no VFP.
7078 (cirrus_register_operand): Delete.
7079 (cirrus_fp_register): Delete.
7080 (cirrus_shift_const): Delete.
7081 (cmpdi_operand): Remove Maverick support.
7082 * constraints.md (f, v, H): Delete constraints.
7083 (G): Update documentation.
7084 * arm.c (fp_consts_inited): Convert to bool.
7085 (strings_fp): Delete.
7086 (values_fp): Delete.
7087 (value_fp0): New variable.
7088 (init_fp_table): Simplify logic.
7089 (arm_const_double_rtx): Likewise.
7090 (fp_immediate_constant): Likewise.
7091 (fp_const_from_val): Likewise.
7092 (neg_const_double_rtx_ok_for_fpa): Delete.
7093 * doc/md.texi (ARM constraints): Update documentation.
7094
7095 2012-06-15 Ulrich Weigand <ulrich.weigand@linaro.org>
7096
7097 PR tree-optimization/53636
7098 * tree-vect-data-refs.c (vect_compute_data_ref_alignment): Verify
7099 stride when doing basic-block vectorization.
7100
7101 2012-06-15 Ramana Radhakrishnan <ramana.radhakrishnan@linaro.org>
7102
7103 * tree-vect-generic.c (lower_vec_perm): Propagate vector constants
7104 into VEC_PERM_EXPR.
7105
7106 2012-06-15 Jakub Jelinek <jakub@redhat.com>
7107
7108 * tree-vect-patterns.c (vect_pattern_recog): Don't unnecessarily
7109 allocate and free bbs array for the SLP case.
7110
7111 PR tree-optimization/51581
7112 * expr.h (choose_multiplier): New prototype.
7113 * expmed.c (choose_multiplier): No longer static.
7114 Change multiplier_ptr from rtx * to UHWI *.
7115 (expand_divmod): Adjust callers.
7116 * tree-vect-patterns.c (vect_recog_sdivmod_pow2_pattern): Renamed to...
7117 (vect_recog_divmod_pattern): ... this. Pass bb_vinfo as last
7118 argument to new_stmt_vec_info. Attempt to optimize also divisions
7119 by non-pow2 constants if integer vector division isn't supported.
7120 * tree-vect-stmts.c (vect_analyze_stmt): If node != NULL,
7121 don't look at pattern stmts and sequences.
7122
7123 2012-06-15 Eric Botcazou <ebotcazou@adacore.com>
7124
7125 PR middle-end/53590
7126 * common.opt (-fdelete-dead-exceptions): New switch.
7127 * doc/invoke.texi (Code Gen Options): Document it.
7128 * cse.c (count_reg_usage) <CALL_INSN>: Use !insn_nothrow_p in lieu of
7129 insn_could_throw_p predicate. Do not skip an insn that could throw
7130 if dead exceptions can be deleted.
7131 (insn_live_p): Likewise, do not return true in that case.
7132 * dce.c (can_alter_cfg): New flag.
7133 (deletable_insn_p): Do not return false for an insn that can throw if
7134 the CFG can be altered and dead exceptions can be deleted.
7135 (init_dce): Set can_alter_cfg to false for fast DCE, true otherwise.
7136 * dse.c (scan_insn): Use !insn_nothrow_p in lieu of insn_could_throw_
7137 predicate. Do not preserve an insn that could throw if dead exceptions
7138 can be deleted.
7139 * function.h (struct function): Add can_delete_dead_exceptions flag.
7140 * function.c (allocate_struct_function): Set it.
7141 * lto-streamer-in.c (input_struct_function_base): Stream it.
7142 * lto-streamer-out.c (input_struct_function_base): Likewise.
7143 * tree-ssa-dce.c (mark_stmt_if_obviously_necessary): Do not mark a
7144 statement that could throw as necessary if dead exceptions can be
7145 deleted.
7146
7147 2012-06-14 Maxim Kuvyrkov <maxim@codesourcery.com>
7148
7149 * config/tilegx/sync.md (atomic_fetch_sub<mode>): Fix typo.
7150
7151 2012-06-14 Oleg Endo <olegendo@gcc.gnu.org>
7152
7153 PR target/53568
7154 * config/sh/sh.md: Add peephole for swapbsi2.
7155 (*swapbisi2_and_shl8, *swapbhisi2): New insns and splits.
7156
7157 2012-06-14 Uros Bizjak <ubizjak@gmail.com>
7158
7159 * config/i386/i386.md (*zero_extendsidi2): Remove x,x alternative.
7160 (*zero_extendsidi2_rex64): Ditto. Remove isa attribute.
7161
7162 2012-06-14 Jakub Jelinek <jakub@redhat.com>
7163
7164 PR target/53639
7165 * config/i386/i386.md (*anddi_1 into *andsi_1_zext splitter): New.
7166
7167 2012-06-14 Richard Earnshaw <rearnsha@arm.com>
7168
7169 * arm.c (arm_cirrus_insn_p): Delete.
7170 (cirrus_reorg): Delete.
7171 (arm_reorg): Don't call cirrus_reorg.
7172 (arm_final_prescan_insn_p): Don't check for cirrus insns.
7173 * arm.md (define_attr "type"): Remove mav_farith and mav_dmult.
7174 (adddi3, subdi3): Remove Maverick support.
7175 (arm_adddi3): Likewise.
7176 (adddi_sesidi_di, adddi_zesidi_di): Likewise.
7177 (addsf3, adddf3): Likewise.
7178 (subsf3, subdf3): Likewise.
7179 (mulsf3, muldf3): Likewise.
7180 (ashldi3, ashrdi3, lshrdi3): Likewise.
7181 (floatsisf2, floatsidf2): Likewise.
7182 (fix_truncsfsi2, fix_truncdfsi2): Likewise.
7183 (arm_movdi, thumb1_movdi_insn): Likewise.
7184 (arm_cmpdi_insn): Likewise.
7185 (cirrus_cmpsf, cirrus_cmpdf, cirrus_cmpdi): Likewise.
7186 (cirrus.md): Don't include.
7187 * cirrus.md: Delete file.
7188 * t-arm (MD_INCLUDES): Remove cirrus.md.
7189
7190 2012-06-14 Eric Botcazou <ebotcazou@adacore.com>
7191
7192 * dwarf2out.c (function_possibly_abstracted_p): New static function.
7193 (gen_subprogram_die): Use it function_possibly_abstracted_p in lieu of
7194 cgraph_function_possibly_inlined_p.
7195 (gen_inlined_subroutine_die): Return if the origin is to be ignored.
7196 (process_scope_var): Do not emit concrete instances of abstracted
7197 nested functions from here.
7198 (gen_decl_die): Emit the abstract instance if the function is possibly
7199 abstracted and not only possibly inlined.
7200 (dwarf2out_finish): Find the first non-abstract parent instance and
7201 attach concrete instances on the limbo list to it.
7202
7203 2012-06-14 Richard Earnshaw <rearnsha@arm.com>
7204
7205 * arm.md (divsf3, divdf3): Remove FPA support.
7206 (negsf2, negdf2): Likewise.
7207 (sqrtsf2, sqrtdf2): Likewise.
7208 (movdfcc): Likewise.
7209 (modsf3, moddf3, movxf): Delete.
7210 (push_fp_multi): Delete.
7211 (fpa.md): Don't include it.
7212 * fpa.md: Delete file.
7213 * t-arm (MD_INCLUDES): Remove fpa.md.
7214
7215 2012-06-14 Bill Schmidt <wschmidt@linux.ibm.com>
7216
7217 * tree-vectorizer.h (vect_get_stmt_cost): Move from tree-vect-stmts.c.
7218 (cost_for_stmt): Remove decl.
7219 (vect_get_single_scalar_iteration_cost): Correct typo in name.
7220 * tree-vect-loop.c (vect_get_cost): Remove.
7221 (vect_get_single_scalar_iteration_cost): Correct typo in name; use
7222 vect_get_stmt_cost rather than vect_get_cost.
7223 (vect_get_known_peeling_cost): Use vect_get_stmt_cost rather than
7224 vect_get_cost.
7225 (vect_estimate_min_profitable_iters): Correct typo in call to
7226 vect_get_single_scalar_iteration_cost; use vect_get_stmt_cost rather
7227 than vect_get_cost.
7228 (vect_model_reduction_cost): Use vect_get_stmt_cost rather than
7229 vect_get_cost.
7230 (vect_model_induction_cost): Likewise.
7231 * tree-vect-data-refs.c (vect_peeling_hash_get_lowest_cost): Correct
7232 typo in call to vect_get_single_scalar_iteration_cost.
7233 * tree-vect-stmts.c (vect_get_stmt_cost): Move to tree-vectorizer.h.
7234 (cost_for_stmt): Remove unnecessary function.
7235 * Makefile.in (TREE_VECTORIZER_H): Update dependencies.
7236
7237 2012-06-14 Richard Earnshaw <rearnsha@arm.com>
7238
7239 * arm.opt (mfp=2, mfp=3, mfpe, mfpe=2, mfpe=3): Delete options.
7240 * arm-fpus.def (fpa, fpe2, fpe3, maverick): Delete FPU types.
7241 * arm-tables.opt: Regenerated.
7242 * doc/invoke.texi: Remove references to deleted options.
7243
7244 2012-06-14 Sandeep Kumar Singh <Sandeep.Singh2@kpitcummins.com>
7245
7246 * config/h8300/genmova.sh: Modified to add offset bits of
7247 mova/Sz assembly instruction for memory access.
7248 * config/h8300/h8300.c: Likewise.
7249 * config/h8300/mova.md: Likewise.
7250
7251 2012-06-12 Christian Bruel <christian.bruel@st.com>
7252
7253 PR target/53621
7254 * config/sh/sh.c (sh_option_override): Don't force
7255 flag_omit_frame_pointer and maccumulate_outgoing_args.
7256 * config/sh/sh.opt (maccumulate-outgoing-args): Init as Var.
7257
7258 2012-06-14 Richard Guenther <rguenther@suse.de>
7259
7260 * tree-vrp.c (VR_INITIALIZER): New define.
7261 (ranges_from_anti_range): New function.
7262 (extract_range_from_binary_expr_1): Decompose operations on
7263 VR_ANTI_RANGEs to operations on VR_RANGE.
7264 (extract_range_from_unary_expr_1): Likewise.
7265 (extract_range_from_binary_expr_1, extract_range_from_binary_expr,
7266 extract_range_from_unary_expr_1, extract_range_from_unary_expr,
7267 extract_range_from_cond_expr, adjust_range_with_scev,
7268 vrp_visit_assignment_or_call, vrp_visit_phi_node,
7269 simplify_bit_ops_using_ranges): Use VR_INITIALIZER.
7270
7271 2012-06-13 Richard Henderson <rth@redhat.com>
7272
7273 * hwint.h (HOST_WIDEST_INT_C): New.
7274 (HOST_WIDE_INT_C): New.
7275 (HOST_WIDE_INT_1): Use it.
7276 * config/alpha/alpha.c (alpha_trampoline_init): Use it.
7277
7278 2012-06-13 Alexandre Oliva <aoliva@redhat.com>
7279
7280 PR debug/49888
7281 * var-tracking.c: Include alias.h.
7282 (overlapping_mems): New struct.
7283 (drop_overlapping_mem_locs): New.
7284 (clobber_overlapping_mems): New.
7285 (var_mem_delete_and_set, var_mem_delete): Call it.
7286 (val_bind): Likewise, but only if modified.
7287 (compute_bb_dataflow, emit_notes_in_bb): Call it on MEMs.
7288 * Makefile.in (var-tracking.o): Depend in $(ALIAS_H).
7289
7290 2012-06-13 Alexandre Oliva <aoliva@redhat.com>
7291
7292 PR debug/47624
7293 * var-tracking.c (loc_exp_dep_pool): New.
7294 (vt_emit_notes): Create and release the pool.
7295 (compute_bb_dataflow): Use value-based locations in MO_VAL_SET.
7296 (emit_notes_in_bb): Likewise.
7297 (loc_exp_dep_insert): Deal with NOT_ONEPART vars.
7298 (notify_dependents_of_changed_value): Likewise.
7299 (notify_dependents_of_resolved_value): Check that NOT_ONEPART
7300 variables don't have a VAR_LOC_DEP_LST.
7301 (emit_note_insn_var_location): Expand NOT_ONEPART locs that are
7302 VALUEs or MEMs of VALUEs.
7303
7304 2012-06-13 Alexandre Oliva <aoliva@redhat.com>
7305
7306 PR debug/52983
7307 PR debug/48866
7308 * dce.c (word_dce_process_block): Insert debug temps only if the
7309 insn is not marked.
7310 (dce_process_block): Likewise, and if debug.used is not empty,
7311 and only after iterating over all DEFs that might mark the insn.
7312
7313 2012-06-13 Alexandre Oliva <aoliva@redhat.com>
7314
7315 * common.opt (ftree-coalesce-inlined-vars): New.
7316 (ftree-coalesce-vars): New.
7317 * doc/invoke.texi: Document them.
7318 * tree-ssa-copyrename.c (copy_rename_partition_coalesce):
7319 Implement them.
7320
7321 2012-06-13 Richard Sandiford <rdsandiford@googlemail.com>
7322
7323 * read-rtl.c (mapping): Remove index field. Add current_value field.
7324 Define heap vectors.
7325 (iterator_group): Fix long line. Remove num_builtins field and
7326 uses_iterator fields. Make apply_iterator take a void * parameter.
7327 (iterator_use, atttribute_use): New structures.
7328 (iterator_traverse_data, BELLWETHER_CODE, bellwether_codes): Delete.
7329 (current_iterators, iterator_uses, attribute_uses): New variables.
7330 (uses_mode_iterator_p, uses_code_iterator_p): Delete.
7331 (apply_mode_iterator, apply_code_iterator): Take a void * parameter.
7332 (map_attr_string, apply_iterator_to_string): Remove iterator
7333 and value parameters. Look through all current iterator values
7334 for a matching attribute.
7335 (mode_attr_index, apply_mode_maps): Delete.
7336 (apply_iterator_to_rtx): Replace with...
7337 (copy_rtx_for_iterators): ...this new function.
7338 (uses_iterator_p, apply_iterator_traverse): Delete.
7339 (apply_attribute_uses, add_current_iterators, apply_iterators): New
7340 functions.
7341 (add_mapping): Remove index field. Set current_value field.
7342 (initialize_iterators): Don't set num_builtins and uses_iterator_p
7343 fields.
7344 (find_iterator): Delete.
7345 (record_iterator_use, record_attribute_use): New functions.
7346 (record_potential_iterator_use): New function.
7347 (check_code_iterator): Remove handling of bellwether codes.
7348 (read_rtx): Remove mode maps. Truncate iterator and attribute uses.
7349 (read_rtx_code, read_nested_rtx, read_rtx_variadic): Remove mode_maps
7350 parameter. Use the first code iterator value instead of the
7351 bellwether_codes array. Use record_potential_iterator_use for modes.
7352
7353 2012-06-13 Oleg Endo <olegendo@gcc.gnu.org>
7354
7355 PR target/53568
7356 * config/sh/sh.md (bswapsi2): New expander.
7357 (swapbsi2): New insn.
7358
7359 2012-06-13 H.J. Lu <hongjiu.lu@intel.com>
7360
7361 PR target/53647
7362 * config/i386/i386.c (ix86_tune_cost): New variable.
7363 (ix86_option_override_internal): Set ix86_tune_cost. Use
7364 ix86_tune_cost for simultaneous_prefetches, prefetch_block,
7365 l1_cache_size and l2_cache_size.
7366
7367 2012-06-13 Richard Guenther <rguenther@suse.de>
7368
7369 * tree-vrp.c (vrp_meet): Properly meet equivalent ranges.
7370 Handle meeting two VR_RANGE to an VR_ANTI_RANGE. Implement
7371 all possible meetings of VR_RANGE with VR_ANTI_RANGE and
7372 VR_ANTI_RANGE with VR_ANTI_RANGE.
7373
7374 2012-06-13 Richard Earnshaw <rearnsha@arm.com>
7375
7376 * config.gcc (unsupported): Move obsoleted FPA-based configurations
7377 here from ...
7378 (obsolete): ... here.
7379 (arm*-*-freebsd*): Remove.
7380 (arm*-*-linux*): Only accept EABI variants. Simplify logic.
7381 (arm*-*-uclinux*): Likewise.
7382 (arm*-*-ecos-elf): Remove.
7383 (arm*-*-rtems*): Remove.
7384 (arm*-*-elf): Remove.
7385 (arm*-wince-pe*): Remove.
7386 (arm, --with-fpu): Remove support for fpa and Maverick variants.
7387 * arm/ecos-elf.h: Delete.
7388 * arm/t-strongarm-elf: Delete.
7389 * arm/rtems-elf.h: Delete.
7390 * arm/wince-pe.h: Delete.
7391 * arm/pe.c: Delete.
7392 * arm/pe.h: Delete.
7393 * arm/t-wince-pe: Delete.
7394
7395 2012-06-13 Bill Schmidt <wschmidt@linux.ibm.com>
7396
7397 PR tree-optimization/53647
7398 * tree-ssa-phiopt.c (gate_hoist_loads): Skip transformation for
7399 targets with no defined cache line size.
7400
7401 2012-06-13 Bill Schmidt <wschmidt@linux.ibm.com>
7402
7403 * targhooks.c (default_builtin_vectorized_conversion): Handle
7404 vec_construct, using vectype to base cost on subparts.
7405 * target.h (enum vect_cost_for_stmt): Add vec_construct.
7406 * tree-vect-stmts.c (vect_model_load_cost): Use vec_construct
7407 instead of scalar_to-vec.
7408 * config/spu/spu.c (spu_builtin_vectorization_cost): Handle
7409 vec_construct in same way as default for now.
7410 * config/i386/i386.c (ix86_builtin_vectorization_cost): Likewise.
7411 * config/rs6000/rs6000.c (rs6000_builtin_vectorization_cost):
7412 Handle vec_construct, including special case for 32-bit loads.
7413
7414 2012-06-13 Xinyu Qi <xyqi@marvell.com>
7415
7416 * config/arm/arm.c (FL_IWMMXT2): New define.
7417 (arm_arch_iwmmxt2): New variable.
7418 (arm_option_override): Enable use of iWMMXt with VFP.
7419 Disable use of iWMMXt with NEON. Disable use of iWMMXt under
7420 Thumb mode. Set arm_arch_iwmmxt2.
7421 (arm_expand_binop_builtin): Accept VOIDmode op.
7422 (enum arm_builtins): Revise built-in fcode.
7423 (IWMMXT2_BUILTIN): New define.
7424 (IWMMXT2_BUILTIN2): Likewise.
7425 (iwmmx2_mbuiltin): Likewise.
7426 (builtin_description bdesc_2arg): Revise built in declaration.
7427 (builtin_description bdesc_1arg): Likewise.
7428 (arm_init_iwmmxt_builtins): Revise built in initialization.
7429 (arm_expand_builtin): Revise built in expansion.
7430 (arm_output_iwmmxt_shift_immediate): New function.
7431 (arm_output_iwmmxt_tinsr): Likewise.
7432 * config/arm/arm-protos.h (arm_output_iwmmxt_shift_immediate): Declare.
7433 (arm_output_iwmmxt_tinsr): Likewise.
7434 * config/arm/iwmmxt.md (WCGR0, WCGR1, WCGR2, WCGR3): New constant.
7435 (iwmmxt_psadbw, iwmmxt_walign, iwmmxt_tmrc, iwmmxt_tmcr): Delete.
7436 (rorv4hi3, rorv2si3, rordi3): Likewise.
7437 (rorv4hi3_di, rorv2si3_di, rordi3_di): Likewise.
7438 (ashrv4hi3_di, ashrv2si3_di, ashrdi3_di): Likewise.
7439 (lshrv4hi3_di, lshrv2si3_di, lshrdi3_di): Likewise.
7440 (ashlv4hi3_di, ashlv2si3_di, ashldi3_di): Likewise.
7441 (iwmmxt_tbcstqi, iwmmxt_tbcsthi, iwmmxt_tbcstsi): Likewise
7442 (*iwmmxt_clrv8qi, *iwmmxt_clrv4hi, *iwmmxt_clrv2si): Likewise.
7443 (tbcstv8qi, tbcstv4hi, tbsctv2si): New pattern.
7444 (iwmmxt_clrv8qi, iwmmxt_clrv4hi, iwmmxt_clrv2si): Likewise.
7445 (*and<mode>3_iwmmxt, *ior<mode>3_iwmmxt, *xor<mode>3_iwmmxt): Likewise.
7446 (ror<mode>3, ror<mode>3_di): Likewise.
7447 (ashr<mode>3_di, lshr<mode>3_di, ashl<mode>3_di): Likewise.
7448 (ashli<mode>3_iwmmxt, iwmmxt_waligni, iwmmxt_walignr): Likewise.
7449 (iwmmxt_walignr0, iwmmxt_walignr1): Likewise.
7450 (iwmmxt_walignr2, iwmmxt_walignr3): Likewise.
7451 (iwmmxt_setwcgr0, iwmmxt_setwcgr1): Likewise.
7452 (iwmmxt_setwcgr2, iwmmxt_setwcgr3): Likewise.
7453 (iwmmxt_getwcgr0, iwmmxt_getwcgr1): Likewise.
7454 (iwmmxt_getwcgr2, iwmmxt_getwcgr3): Likewise.
7455 (All instruction patterns): Add wtype attribute.
7456 (*iwmmxt_arm_movdi, *iwmmxt_movsi_insn): iWMMXt coexist with vfp.
7457 (iwmmxt_uavgrndv8qi3, iwmmxt_uavgrndv4hi3): Revise the pattern.
7458 (iwmmxt_uavgv8qi3, iwmmxt_uavgv4hi3): Likewise.
7459 (ashr<mode>3_iwmmxt, ashl<mode>3_iwmmxt, lshr<mode>3_iwmmxt): Likewise.
7460 (iwmmxt_tinsrb, iwmmxt_tinsrh, iwmmxt_tinsrw):Likewise.
7461 (eqv8qi3, eqv4hi3, eqv2si3, gtuv8qi3): Likewise.
7462 (gtuv4hi3, gtuv2si3, gtv8qi3, gtv4hi3, gtv2si3): Likewise.
7463 (iwmmxt_wunpckihh, iwmmxt_wunpckihw, iwmmxt_wunpckilh): Likewise.
7464 (iwmmxt_wunpckilw, iwmmxt_wunpckehub, iwmmxt_wunpckehuh): Likewise.
7465 (iwmmxt_wunpckehuw, iwmmxt_wunpckehsb, iwmmxt_wunpckehsh): Likewise.
7466 (iwmmxt_wunpckehsw, iwmmxt_wunpckelub, iwmmxt_wunpckeluh): Likewise.
7467 (iwmmxt_wunpckeluw, iwmmxt_wunpckelsb, iwmmxt_wunpckelsh): Likewise.
7468 (iwmmxt_wunpckelsw, iwmmxt_wmadds, iwmmxt_wmaddu): Likewise.
7469 (iwmmxt_wsadb, iwmmxt_wsadh, iwmmxt_wsadbz, iwmmxt_wsadhz): Likewise.
7470 (iwmmxt2.md): Include.
7471 * config/arm/arm.h (TARGET_CPU_CPP_BUILTINS): Define __IWMMXT2__.
7472 (TARGET_IWMMXT2): New define.
7473 (TARGET_REALLY_IWMMXT2): Likewise.
7474 (arm_arch_iwmmxt2): Declare.
7475 * config/arm/mmintrin.h: Use __IWMMXT__ to enable iWMMXt intrinsics.
7476 Use __IWMMXT2__ to enable iWMMXt2 intrinsics.
7477 Use C name-mangling for intrinsics.
7478 (__v8qi): Redefine.
7479 (_mm_cvtsi32_si64, _mm_andnot_si64, _mm_sad_pu8): Revise.
7480 (_mm_sad_pu16, _mm_align_si64, _mm_setwcx, _mm_getwcx): Likewise.
7481 (_m_from_int): Likewise.
7482 (_mm_sada_pu8, _mm_sada_pu16): New intrinsic.
7483 (_mm_alignr0_si64, _mm_alignr1_si64, _mm_alignr2_si64): Likewise.
7484 (_mm_alignr3_si64, _mm_tandcb, _mm_tandch, _mm_tandcw): Likewise.
7485 (_mm_textrcb, _mm_textrch, _mm_textrcw, _mm_torcb): Likewise.
7486 (_mm_torch, _mm_torcw, _mm_tbcst_pi8, _mm_tbcst_pi16): Likewise.
7487 (_mm_tbcst_pi32): Likewise.
7488 (_mm_abs_pi8, _mm_abs_pi16, _mm_abs_pi32): New iWMMXt2 intrinsic.
7489 (_mm_addsubhx_pi16, _mm_absdiff_pu8, _mm_absdiff_pu16): Likewise.
7490 (_mm_absdiff_pu32, _mm_addc_pu16, _mm_addc_pu32): Likewise.
7491 (_mm_avg4_pu8, _mm_avg4r_pu8, _mm_maddx_pi16, _mm_maddx_pu16): Likewise.
7492 (_mm_msub_pi16, _mm_msub_pu16, _mm_mulhi_pi32): Likewise.
7493 (_mm_mulhi_pu32, _mm_mulhir_pi16, _mm_mulhir_pi32): Likewise.
7494 (_mm_mulhir_pu16, _mm_mulhir_pu32, _mm_mullo_pi32): Likewise.
7495 (_mm_qmulm_pi16, _mm_qmulm_pi32, _mm_qmulmr_pi16): Likewise.
7496 (_mm_qmulmr_pi32, _mm_subaddhx_pi16, _mm_addbhusl_pu8): Likewise.
7497 (_mm_addbhusm_pu8, _mm_qmiabb_pi32, _mm_qmiabbn_pi32): Likewise.
7498 (_mm_qmiabt_pi32, _mm_qmiabtn_pi32, _mm_qmiatb_pi32): Likewise.
7499 (_mm_qmiatbn_pi32, _mm_qmiatt_pi32, _mm_qmiattn_pi32): Likewise.
7500 (_mm_wmiabb_si64, _mm_wmiabbn_si64, _mm_wmiabt_si64): Likewise.
7501 (_mm_wmiabtn_si64, _mm_wmiatb_si64, _mm_wmiatbn_si64): Likewise.
7502 (_mm_wmiatt_si64, _mm_wmiattn_si64, _mm_wmiawbb_si64): Likewise.
7503 (_mm_wmiawbbn_si64, _mm_wmiawbt_si64, _mm_wmiawbtn_si64): Likewise.
7504 (_mm_wmiawtb_si64, _mm_wmiawtbn_si64, _mm_wmiawtt_si64): Likewise.
7505 (_mm_wmiawttn_si64, _mm_merge_si64): Likewise.
7506 (_mm_torvscb, _mm_torvsch, _mm_torvscw): Likewise.
7507 (_m_to_int): New define.
7508 * config/arm/arm-cores.def (iwmmxt2): Add FL_IWMMXT2.
7509 * config/arm/arm-arches.def (iwmmxt2): Likewise.
7510 * config/arm/t-arm (MD_INCLUDES): Add marvell-f-iwmmxt.md and
7511 iwmmxt2.md.
7512 * config/arm/arm.md (marvell-f-iwmmxt.md): Include.
7513 (arch): Add "iwmmxt2".
7514 (arch_enabled): Handle "iwmmxt2".
7515 (wtype): New attribute.
7516 (UNSPEC_WMADDS, UNSPEC_WMADDU): Delete.
7517 (UNSPEC_WALIGNI): New unspec.
7518 * config/arm/predicates.md (imm_or_reg_operand): New predicate.
7519 * config/arm/iterators.md (VMMX2): New mode_iterator.
7520 * config/arm/marvell-f-iwmmxt.md: New file.
7521 * config/arm/iwmmxt2.md: New file.
7522
7523 2012-06-12 Jakub Jelinek <jakub@redhat.com>
7524
7525 PR c/53532
7526 PR c/51034
7527 PR c/53196
7528 * c-decl.c (build_compound_literal): Call c_incomplete_type_error
7529 if type isn't complete.
7530
7531 2012-06-12 Uros Bizjak <ubizjak@gmail.com>
7532
7533 * config/ia64/sync.md (fetchop_name): Change ior attribute to "or".
7534
7535 2012-06-12 Richard Henderson <rth@redhat.com>
7536
7537 * config/rs6000/sync.md (atomic_load, atomic_store): Use INT1 mode
7538 iterator instead of INT.
7539
7540 2012-06-12 Bill Schmidt <wschmidt@linux.ibm.com>
7541
7542 * opts.c: Add -fhoist-adjacent-loads to -O2 and above.
7543 * tree-ssa-phiopt.c (tree_ssa_phiopt_worker): Add argument to forward
7544 declaration.
7545 (hoist_adjacent_loads, gate_hoist_loads): New forward declarations.
7546 (tree_ssa_phiopt): Call gate_hoist_loads.
7547 (tree_ssa_cs_elim): Add parm to tree_ssa_phiopt_worker call.
7548 (tree_ssa_phiopt_worker): Add do_hoist_loads to formal arg list; call
7549 hoist_adjacent_loads.
7550 (local_mem_dependence): New function.
7551 (hoist_adjacent_loads): Likewise.
7552 (gate_hoist_loads): Likewise.
7553 * common.opt (fhoist-adjacent-loads): New switch.
7554 * Makefile.in (tree-ssa-phiopt.o): Added dependencies.
7555
7556 2012-06-12 Michael Matz <matz@suse.de>
7557
7558 * alias.c (nonoverlapping_component_refs_p): Take two rtx arguments.
7559 (nonoverlapping_memrefs_p): Don't call it here ...
7560 (true_dependence_1): ... but here.
7561
7562 2012-06-12 Richard Guenther <rguenther@suse.de>
7563
7564 * emit-rtl.c (set_mem_attributes_minus_bitpos): Remove dead code.
7565 * alias.c (ao_ref_from_mem): MEM_EXPR is conservative, MEM_OFFSET
7566 and MEM_SIZE only refines it. Reflect that and be less conservative
7567 if either of the latter is not known.
7568
7569 2012-06-12 Jakub Jelinek <jakub@redhat.com>
7570
7571 PR rtl-optimization/53589
7572 * cfgrtl.c (force_nonfallthru_and_redirect): Do asm_goto_edge
7573 discovery even when e->dest != target. If any LABEL_REF points
7574 to e->dest label, redirect it to target's label.
7575
7576 2012-06-12 Chung-Lin Tang <cltang@codesourcery.com>
7577
7578 * config/sh/sh.c (output_stack_adjust): Remove !epilogue_p
7579 condition for generating REG_FRAME_RELATED_EXPR note.
7580 (pop): Add code for generating REG_CFA_RESTORE,
7581 REG_CFA_ADJUST_CFA notes. Set RTX_FRAME_RELATED_P to 1.
7582 (sh_expand_epilogue): Use frame_insn() for FP to SP move.
7583 Set 'frame_p' of calls to output_stack_adjust() to 'true'.
7584
7585 2012-06-11 Richard Henderson <rth@redhat.com>
7586
7587 * config/alpha/alpha.c (HWI_HEX2): Add missing shift.
7588 * vmsdbgout.c (VMS_EPOCH_OFFSET): Add LL suffix.
7589
7590 * config/alpha/alpha.c (alpha_trampoline_init): Split large constants.
7591
7592 2012-06-12 Hans-Peter Nilsson <hp@axis.com>
7593
7594 * doc/tm.texi.in (Addressing Modes) <TARGET_LEGITIMIZE_ADDRESS>:
7595 Mention that this hook needs to be defined for native TLS.
7596 * doc/tm.texi: Regenerate.
7597
7598 2012-06-11 Mike Stump <mikestump@comcast.net>
7599
7600 * emit-rtl.c (init_emit_once): Iterate through the
7601 MODE_PARTIAL_INT modes with MIN_MODE_PARTIAL_INT and
7602 MAX_MODE_PARTIAL_INT, as GET_MODE_WIDER_MODE doesn't step through
7603 all the MIN_MODE_PARTIAL_INT modes anymore.
7604
7605 2012-06-12 Maxim Kuvyrkov <maxim@codesourcery.com>
7606
7607 * gcc/config/mips/mips-tables.opt (xlp): Fix merge typo.
7608
7609 2012-06-11 Roland McGrath <mcgrathr@google.com>
7610
7611 * dwarf2out.c (const_ok_for_output_1): Detect a TLS UNSPEC using
7612 SYMBOL_REF_TLS_MODEL rather than DECL_THREAD_LOCAL_P, in case it's
7613 not a VAR_DECL. Also don't limit it to UNSPECs with exactly one
7614 operand.
7615
7616 2012-06-11 Oleg Endo <olegendo@gcc.gnu.org>
7617
7618 PR target/53511
7619 * config/sh/sh.md (fmasf4): New expander.
7620 (*macsf3): Rename to fmasf4_i. Adapt to fma pattern.
7621 (mac_media): Rename to fmasf4_media. Adapt to fma pattern.
7622 * config/sh/sh.opt (mfused-madd): Remove.
7623 * config/sh/sh.c (sh_option_override): Remove mfused-madd handling.
7624 (builtin_description bdesc): Remove __builtin_sh_media_FMAC_S.
7625 * config.gcc (sh[123456789lbe]*-*-* | sh-*-*): Add fused-madd.opt
7626 as extra options.
7627 * doc/invoke.texi (SH Options): Update mfused-madd and mno-fused-madd
7628 descriptions.
7629
7630 2012-06-11 Richard Henderson <rth@redhat.com>
7631
7632 * dwarf2cfi.c (scan_trace): Handle annulled branch-taken delay slots.
7633
7634 2012-06-11 Richard Guenther <rguenther@suse.de>
7635
7636 PR middle-end/53470
7637 * tree.c (free_lang_data_in_type): Do not clear TYPE_CONTEXT but
7638 replace it with the first non-BLOCK context.
7639
7640 2012-06-11 Richard Guenther <rguenther@suse.de>
7641
7642 * alias.c (aliases_everything_p): Remove.
7643 (DIFFERENT_ALIAS_SETS_P): Likewise.
7644 (true_dependence_1): Use mems_in_disjoint_alias_sets_p directly.
7645 Do not use aliases_everything_p or special-case ANDs. Do not
7646 special-case BLKmode moves.
7647 (may_alias_p): Likewise. Handle BLKmode similar like everywhere
7648 - for SCATCH only.
7649
7650 2012-06-09 Hans-Peter Nilsson <hp@axis.com>
7651
7652 Fix CRIS build errors with --enable-build-with-cxx.
7653 * config/cris/cris.c (cris_emit_trap_for_misalignment): Rename
7654 variable "and" to "andop".
7655 * config/cris/sync.md ("atomic_fetch_<atomic_op_name><mode>"): Use
7656 temporary variable for memory model, passing C++-type-correct
7657 parameter type to expand_mem_thread_fence.
7658 ("atomic_compare_and_swap<mode>"): Ditto.
7659
7660 2012-06-09 Richard Henderson <rth@redhat.com>
7661
7662 PR c++/53602
7663 * cfgcleanup.c (execute_jump): Rename from rest_of_handle_jump2.
7664 (pass_jump): Rename from pass_jump2.
7665 (execute_jump2, pass_jump2): New.
7666 * combine-stack-adj.c (rest_of_handle_stack_adjustments): Don't
7667 perform cfg cleanup here. Move the test of PUSH_ROUNDING
7668 and ACCUMULATE_OUTGOING_ARGS test...
7669 (gate_handle_stack_adjustments): ... here.
7670 * passes.c (init_optimization_passes): Update for pass_jump2 rename.
7671 Place new pass_jump2 after pass_stack_adjustments.
7672 * tree-pass.h (pass_jump): Declare.
7673
7674 2012-06-09 Kenneth Zadeck <zadeck@naturalbridge.com>
7675
7676 * simplify-rtx.c (simplify_const_binary_operation): Fixed shift
7677 count trucation.
7678
7679 2012-06-08 Richard Henderson <rth@redhat.com>
7680
7681 PR c++/53602
7682 * combine-stack-adj.c (force_move_args_size_note): Add ARGS_SIZE
7683 note to a clobber insn when no other insn is available.
7684
7685 2012-06-08 Georg-Johann Lay <avr@gjlay.de>
7686
7687 * config/avr/avr.c (avr_case_values_threshold): Return 7.
7688
7689 2012-06-07 Andreas Schwab <schwab@linux-m68k.org>
7690
7691 * genhooks.c (main): Set progname.
7692 (emit_documentation): Remove variable found_start, always bail out
7693 when a place is missing.
7694 * doc/tm.texi.in (C++ ABI): Add @hook TARGET_CXX_DECL_MANGLING_CONTEXT.
7695
7696 2012-06-07 Jakub Jelinek <jakub@redhat.com>
7697
7698 PR middle-end/53580
7699 * omp-low.c (scan_omp): Change first argument to gimple_seq *,
7700 call walk_gimple_seq_mod instead of walk_gimple_seq.
7701 (scan_sharing_clauses, scan_omp_parallel, scan_omp_task,
7702 scan_omp_for, scan_omp_sections, scan_omp_single,
7703 execute_lower_omp): Adjust callers.
7704 (scan_omp_1_stmt): Likewise. If check_omp_nesting_restrictions
7705 returns false, replace stmt with GIMPLE_NOP.
7706 (check_omp_nesting_restrictions): Instead of issuing warnings,
7707 issue errors and return false if any errors were reported.
7708
7709 2012-06-06 Steven Bosscher <steven@gcc.gnu.org>
7710
7711 * doc/invoke.texi (fconserve-space): Remove documentation.
7712
7713 2012-06-06 Edmar Wienskoski <edmar@freescale.com>
7714
7715 * config/rs6000/rs6000-tables.opt: Regenerated.
7716
7717 2012-06-06 Richard Guenther <rguenther@suse.de>
7718
7719 PR tree-optimization/53081
7720 * tree-data-ref.h (adjacent_store_dr_p): Rename to ...
7721 (adjacent_dr_p): ... this and make it work for reads, too.
7722 * tree-loop-distribution.c (enum partition_kind): Add PKIND_MEMCPY.
7723 (struct partition_s): Change main_stmt to main_dr, add
7724 secondary_dr member.
7725 (build_size_arg_loc): Change to date data-reference and not
7726 gimplify here.
7727 (build_addr_arg_loc): New function split out from ...
7728 (generate_memset_builtin): ... here. Use it and simplify.
7729 (generate_memcpy_builtin): New function.
7730 (generate_code_for_partition): Adjust.
7731 (classify_partition): Streamline pattern detection. Detect memcpy.
7732 (ldist_gen): Adjust.
7733 (tree_loop_distribution): Adjust seed statements for memcpy
7734 recognition.
7735
7736 2012-06-06 Matt Turner <mattst88@gmail.com>
7737
7738 * config/arm/mmintrin.h (_mm_empty): New.
7739 (_m_empty): New.
7740
7741 2012-06-06 Richard Sandiford <r.sandiford@uk.ibm.com>
7742
7743 * doc/invoke.texi (sched-pressure-algorithm): Document new --param.
7744 * common.opt (fsched-pressure-algorithm=): Remove.
7745 * flag-types.h (sched_pressure_algorithm): Move to...
7746 * sched-int.h (sched_pressure_algorithm): ...here.
7747 * params.def (sched-pressure-algorithm): New param.
7748 * haifa-sched.c (sched_init): Use it to initialize sched_pressure.
7749 * common/config/s390/s390-common.c (s390_option_optimization_table):
7750 Remove OPT_fsched_pressure_algorithm_ entry.
7751 * config/s390/s390.c (s390_option_override): Set a default value for
7752 PARAM_SCHED_PRESSURE_ALGORITHM.
7753
7754 2012-06-05 Michael Meissner <meissner@linux.vnet.ibm.com>
7755
7756 PR target/53487
7757 * config/rs6000/rs6000.c (rs6000_generate_compare): If we are
7758 doing an unsigned compare, make sure the second argument is not a
7759 negative constant.
7760 (rs6000_emit_cmove): Don't allow floating point comparisons when
7761 generating ISEL moves.
7762
7763 2012-06-05 Edmar Wienskoski <edmar@freescale.com>
7764
7765 * config/rs6000/e5500.md: New file.
7766 * config/rs6000/e6500.md: New file.
7767 * config/rs6000/rs6000.c (processor_costs): Add new costs for
7768 e5500 and e6500.
7769 (rs6000_option_override_internal): Altivec and Spe options not
7770 allowed with e5500. Spe options not allowed with e6500. Increase
7771 move inline limit for e5500 and e6500. Disable string instructions
7772 for e5500 and e6500. Enable branch targets alignment for e5500 and
7773 e6500. Initialize rs6000_cost for e5500 and e6500.
7774 (rs6000_adjust_cost): Add extra scheduling cycles between compare
7775 and brnach for e5500 and e6500.
7776 (rs6000_issue_rate): Set issue rate for e5500 and e6500.
7777 * config/rs6000/rs6000-cpus.def: Add cpu definitions for e5500 and
7778 e6500.
7779 * config/rs6000/rs6000.h (ASM_CPU_SPEC): Add e5500 and e6500.
7780 * config/rs6000/rs6000.md (define_attr "cpu"): Add ppce5500 and
7781 ppce6500.
7782 Include e5500.md and e6500.md.
7783 * config/rs6000/rs6000-opt.h (processor_type): Add
7784 PROCESSOR_PPCE5500 and PROCESSOR_PPCE6500.
7785 * config.gcc (cpu_is_64bit): Add new cores e5500, e6500.
7786 (powerpc*-*-*): Add new cores e5500, e6500.
7787 * doc/invoke.texi: (item -mcpu): Add e5500 and e6500 to list of cpus.
7788
7789 2012-06-05 Richard Guenther <rguenther@suse.de>
7790
7791 * tree-vect-data-refs.c (vect_analyze_data_refs): Fix last change.
7792
7793 2012-06-05 H.J. Lu <hongjiu.lu@intel.com>
7794
7795 PR target/53575
7796 * config.gcc: Select x32 run-time library if --with-abi={x32|mx32}
7797 is used for x86_64-*-*.
7798
7799 2012-06-05 Richard Guenther <rguenther@suse.de>
7800
7801 PR tree-optimization/30442
7802 * tree-vect-data-refs.c (vect_analyze_data_refs): For basic-block
7803 vectorization stop analysis at the first stmt we cannot compute
7804 a data-reference for instead of giving up completely.
7805
7806 2012-06-05 Richard Guenther <rguenther@suse.de>
7807
7808 * tree-loop-distribution.c (struct partition_s): Add has_writes member.
7809 (partition_alloc): Initialize it.
7810 (partition_has_writes): New function.
7811 (rdg_flag_uses): Adjust.
7812 (rdg_flag_vertex): Likewise.
7813 (rdg_flag_vertex_and_dependent): Likewise.
7814 (rdg_flag_loop_exits): Likewise.
7815 (build_rdg_partition_for_component): Likewise.
7816 (rdg_build_partitions): Likewise.
7817
7818 2012-06-05 Richard Guenther <rguenther@suse.de>
7819
7820 PR tree-optimization/53081
7821 * tree-loop-distribution.c (generate_memset_builtin): Handle all
7822 kinds of byte-sized stores.
7823 (classify_partition): Likewise.
7824 (tree_loop_distribution): Adjust seed statements used for
7825 !flag_tree_loop_distribution.
7826
7827 2012-06-05 Alan Modra <amodra@gmail.com>
7828
7829 * config/rs6000/rs6000.c (ptr_regno_for_savres): Comment.
7830 (rs6000_emit_prologue): Ensure register used for inline saves
7831 of vector regs is not the static chain register. Revise comment.
7832
7833 2012-06-04 Oleg Endo <olegendo@gcc.gnu.org>
7834
7835 * doc/md.texi (Standard Pattern Names For Generation): Document
7836 sincos pattern.
7837
7838 2012-06-04 H.J. Lu <hongjiu.lu@intel.com>
7839
7840 PR bootstrap/53555
7841 * config/i386/i386.c (ix86_sched_reorder) Skip debug insns.
7842
7843 2012-06-04 Jason Merrill <jason@redhat.com>
7844
7845 * dwarf2out.c (is_unit_die): New.
7846 (copy_declaration_context, copy_ancestor_tree): Use it.
7847 (copy_decls_walk): Likewise.
7848
7849 2012-06-04 Paolo Carlini <paolo.carlini@oracle.com>
7850
7851 PR c++/53524
7852 * doc/invoke.texi (Wenum-compare): Update documentation.
7853
7854 2012-06-04 Dodji Seketeli <dodji@redhat.com>
7855
7856 PR preprocessor/53463
7857 * parser.c (cp_parser_assignment_expression): Use the location
7858 for the '=' as the default location for the expression.
7859
7860 2012-06-04 Edmar Wienskoski <edmar@freescale.com>
7861
7862 PR target/53559
7863 * config/rs6000/altivec.md (altivec_stvlx): Change machine mode of
7864 operands.
7865 (altivec_stvlxl): Ditto.
7866 (altivec_stvrx): Ditto.
7867 (altivec_stvrxl): Ditto.
7868
7869 2012-06-04 Vladimir Makarov <vmakarov@redhat.com>
7870
7871 * ira-int.h (struct target_ira_int): Add member x_ira_uniform_class_p.
7872 (ira_uniform_class_p): New macro.
7873
7874 * ira.c (setup_uniform_class_p): New function.
7875 (setup_allocno_and_important_classes): Call the function.
7876 (print_unform_and_important_classes): New function.
7877 (print_classes): Rename to print_translated_classes.
7878 (ira_debug_allocno_classes): Add call of
7879 print_unform_and_important_classes.
7880
7881 * ira-costs.c (setup_regno_cost_classes_by_aclass): Use uniform
7882 classes instead of pressure classes.
7883
7884 2012-06-04 Aldy Hernandez <aldyh@redhat.com>
7885
7886 PR middle-end/47530
7887 * trans-mem.c (expand_block_edges): Do not skip the first
7888 statement when resetting the BB.
7889
7890 2012-06-04 Richard Guenther <rguenther@suse.de>
7891
7892 * tree-data-ref.c (stores_from_loop): Remove.
7893 (stmt_with_adjacent_zero_store_dr_p): Likewise.
7894 (stores_zero_from_loop): Likewise.
7895 * tree-data-ref.h (stores_from_loop, stores_zero_from_loop,
7896 stmt_with_adjacent_zero_store_dr_p, stride_of_unit_type_p): Remove.
7897 (adjacent_store_dr_p): New function.
7898 * tree-loop-distribution.c (generate_memset_builtin): Pass
7899 the RDG, use the already available data-reference.
7900 (generate_code_for_partition): Pass down RDG.
7901 (classify_partition): Inline parts of the former
7902 stmt_with_adjacent_zero_store_dr_p here and use adjacent_store_dr_p.
7903 (ldist_gen): Remember if there was any detected builtin and
7904 do less work if not and flag_tree_loop_distribution is not set.
7905 (tree_loop_distribution): Inline and fuse stores_from_loop
7906 and stores_zero_from_loop here.
7907
7908 2012-06-04 Richard Guenther <rguenther@suse.de>
7909
7910 PR middle-end/53471
7911 * dwarf2out.c (dwarf2out_finish): If generating LTO do not
7912 create new assembler names.
7913
7914 2012-06-04 Richard Guenther <rguenther@suse.de>
7915
7916 * tree-data-ref.c (struct rdg_vertex_info): Remove.
7917 (rdg_vertex_for_stmt): Simplify using gimple_uid.
7918 (create_rdg_vertices): Pass loop argument, remove stmt to RDG index
7919 hashtable. Record stmt data-references.
7920 (hash_stmt_vertex_info): Remove.
7921 (eq_stmt_vertex_info): Likewise.
7922 (hash_stmt_vertex_del): Likewise.
7923 (build_empty_rdg): Simplify.
7924 (build_rdg): Adjust.
7925 (free_rdg): Likewise.
7926 (ref_base_address): Remove.
7927 (have_similar_memory_accesses): Likewise.
7928 * tree-data-ref.h (create_rdg_vertices): Remove.
7929 (struct rdg_vertex): Add datarefs member.
7930 (RDGV_DATAREFS): New define.
7931 (RDG_DATAREFS): Likewise.
7932 (have_similar_memory_accesses): Remove.
7933 (rdg_has_similar_memory_accesses): Likewise.
7934 * tree-loop-distribution.c (ref_base_address): Re-implement here.
7935 (similar_memory_accesses): Re-implement using existing data-references.
7936 (tree_loop_distribution): Initialize stmt uids for the stmt to
7937 RDG index mapping.
7938 * tree-vect-loop.c (vect_create_epilog_for_reduction): Only
7939 access stmt vinfo for stmts in loop.
7940
7941 2012-06-04 Andreas Schwab <schwab@linux-m68k.org>
7942
7943 PR target/53461
7944 * config/m68k/m68k.md ("tablejump"): Fix check for
7945 CASE_VECTOR_PC_RELATIVE.
7946
7947 2012-06-04 Steven Bosscher <steven@gcc.gnu.org>
7948
7949 * output.h (merge_weak, assemble_alias,
7950 initializer_constant_valid_p,
7951 initializer_constant_valid_for_bitfield_p): Move protos from here...
7952 * tree.h: ... to here.
7953 * cgraphclones.c: Do not include output.h.
7954 * gimplify.c: Likewise.
7955 * reload.c: Likewise.
7956 * recog.c: Likewise.
7957 * tree-ssa-loop-ivopts.c: Likewise.
7958 * tree-switch-conversion.c: Likewise.
7959 * c-parser.c: Likewise.
7960 * c-typeck.c: Likewise.
7961 * Makefile.in: Fix dependencies.
7962
7963 2012-06-04 Georg-Johann Lay <avr@gjlay.de>
7964
7965 PR target/46261
7966 * config/avr/avr-stdint.h: New file.
7967 * config.gcc (avr-*-*,tm_file): Use avr/avr-stdint.h instead of
7968 newlib-stdint.h
7969
7970 2012-06-04 Jakub Jelinek <jakub@redhat.com>
7971
7972 PR tree-optimization/53550
7973 * tree-ssa-loop-niter.c (number_of_iterations_cond): If type
7974 is POINTER_TYPE_P, use sizetype as step type instead of type.
7975
7976 2012-06-04 Richard Guenther <rguenther@suse.de>
7977
7978 * tree-data-ref.c (have_similar_memory_accesses_1): Remove.
7979 (ref_base_address_1): Likewise.
7980 (remove_similar_memory_refs): Likewise.
7981 * tree-data-ref.h (remove_similar_memory_refs): Remove.
7982 * tree-loop-distribution.c (classify_partition): Do not classify
7983 as builtin if -ftree-loop-distribute-patterns is not enabled.
7984 (fuse_partitions_with_similar_memory_accesses): Inline ...
7985 (ldist_gen): ... here. Fuse all non-builtin partitions if
7986 -ftree-loop-distribution is not enabled. Properly return
7987 the number of created partitions. Do not update SSA form here but ...
7988 (tree_loop_distribution): ... once here for the whole function.
7989 Only walk innermost loops, constrain loops we consider here
7990 further. Do not call remove_similar_memory_refs.
7991 (distribute_loop): Do not check number of loop nodes here.
7992
7993 2012-06-04 Steven Bosscher <steven@gcc.gnu.org>
7994
7995 * Makefile.in (GIMPLE_H): Do not depend on TARGET_H.
7996
7997 2012-06-03 Martin Jambor <mjambor@suse.cz>
7998
7999 * ipa-prop.h (ipa_get_jf_known_type_offset): New function.
8000 (ipa_get_jf_known_type_base_type): Likewise.
8001 (ipa_get_jf_known_type_component_type): Likewise.
8002 (ipa_get_jf_constant): Likewise.
8003 (ipa_get_jf_pass_through_formal_id): Likewise.
8004 (ipa_get_jf_pass_through_operation): Likewise.
8005 (ipa_get_jf_ancestor_offset): Likewise.
8006 (ipa_get_jf_ancestor_type): Likewise.
8007 (ipa_get_jf_ancestor_formal_id): Likewise.
8008 (ipa_get_jf_member_ptr_pfn): Likewise.
8009 * ipa-prop.c (ipa_set_jf_known_type): New function.
8010 (ipa_set_jf_constant): Likewise.
8011 (ipa_set_jf_simple_pass_through): Likewise.
8012 (ipa_set_jf_arith_pass_through): Likewise.
8013 (ipa_set_ancestor_jf): Likewise.
8014 (fill_member_ptr_cst_jump_function): Moved up and renamed to
8015 ipa_set_jf_member_ptr_cst.
8016 (detect_type_change_1): Use the new jump function creation functions.
8017 (compute_complex_assign_jump_func): Likewise.
8018 (compute_complex_ancestor_jump_func): Likewise.
8019 (compute_known_type_jump_func): Likewise.
8020 (compute_scalar_jump_functions): Likewise.
8021 (compute_pass_through_member_ptrs): Likewise.
8022 (determine_cst_member_ptr): Likewise.
8023 (combine_known_type_and_ancestor_jfs): Likewise.
8024 (try_make_edge_direct_simple_call): Likewise.
8025 (try_make_edge_direct_virtual_call): Likewise.
8026 (update_indirect_edges_after_inlining): Likewise.
8027 * ipa-cp.c (ipa_get_jf_pass_through_result): Use jump function
8028 access functions. Incorporat NOP_EXPR and BINFO handling from its
8029 callers.
8030 (ipa_get_jf_ancestor_result): Likewise. Incorporate handling BINFOs
8031 which was in its callers.
8032 (ipa_value_from_jfunc): Use jump function access functions. Some
8033 functionality moved to functions above.
8034 (propagate_vals_accross_ancestor): Likewise.
8035 (propagate_vals_accross_pass_through): Use jump function access
8036 functions.
8037 (propagate_accross_jump_function): Likewise.
8038 * ipa-inline-analysis.c (remap_edge_change_prob): Use jump function
8039 access functions.
8040 (inline_merge_summary): Likewise.
8041
8042 2012-06-03 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
8043
8044 * config/pa/pa.h (MAX_PCREL17F_OFFSET): Define.
8045 * config/pa/pa.c (pa_attr_length_millicode_call): Use
8046 MAX_PCREL17F_OFFSET instead of fixed offset.
8047 (pa_attr_length_call): Likewise.
8048 (pa_attr_length_indirect_call): Likewise.
8049
8050 2012-06-03 Oleg Endo <olegendo@gcc.gnu.org>
8051
8052 PR target/53512
8053 * config/sh/sh.opt (mfsca, mfsrra): New options.
8054 * config/sh/sh.md (rsqrtsf2): Use TARGET_FPU_ANY and TARGET_FSRRA
8055 condition.
8056 (fsca): Use TARGET_FPU_ANY and TARGET_FSCA condition.
8057 (sinssf2, cossf2): Fold expanders to ...
8058 (sincossf3): ... this new expander. Use TARGET_FPU_ANY and
8059 TARGET_FSCA condition.
8060 * config/sh/sh.c (sh_option_override): Handle TARGET_FSRRA and
8061 TARGET_FSCA.
8062 * doc/invoke.texi (SH Options): Add descriptions for -mfsca,
8063 -mno-fsca, -mfsrra, -mno-fsrra.
8064
8065 2012-06-03 Matt Turner <mattst88@gmail.com>
8066
8067 * config/mips/4600.md (r4700_imul_si): New.
8068 (r4700_imul_di): New.
8069 (r4700_fmul_single): New.
8070 (r4700_fmul_double): New.
8071 * config/mips/mips-cpus.def: Add r4700.
8072 * config/mips/mips.c: Likewise.
8073 * config/mips/mips.md: Likewise.
8074 * config/mips/mips-tables.opt: Regenerate.
8075
8076 2012-06-02 Steven Bosscher <steven@gcc.gnu.org>
8077
8078 * config/sparc/sparc.h (INITIAL_ELIMINATION_OFFSET): Split out to
8079 new function sparc_initial_elimination_offset.
8080 * config/sparc/sparc.c (sparc_initial_elimination_offset): New
8081 function.
8082 * config/sparc/sparc-protos.h (sparc_initial_elimination_offset):
8083 Prototype it.
8084
8085 2012-06-02 Kenneth Zadeck <zadeck@naturalbridge.com>
8086
8087 * expmed.c (expand_mult, choose_multiplier): Change
8088 "2 * HOST_BITS_PER_WIDE_INT" to "HOST_BITS_PER_DOUBLE_INT".
8089 * expr.c (convert_modes): Likewise.
8090 * explow.c (plus_constant): Likewise.
8091 * fixed-value.c (fixed_saturate1, fixed_saturate2)
8092 (do_fixed_add, do_fixed_multiply, do_fixed_multiply)
8093 (do_fixed_multiply, do_fixed_multiply, do_fixed_divide)
8094 (do_fixed_divide, do_fixed_divide, do_fixed_divide)
8095 (do_fixed_divide, do_fixed_divide, do_fixed_shift, do_fixed_shift)
8096 (do_fixed_shift, fixed_convert, fixed_convert)
8097 (fixed_convert_from_int, fixed_convert_from_int)
8098 (fixed_convert_from_real): Likewise.
8099 * fold-const.c (fold_convert_const_int_from_fixed, sign_bit_p)
8100 (native_interpret_int, fold_binary_loc, fold_ternary_loc): Likewise.
8101 * varasm.c (output_constructor_bitfield): Likewise.
8102 * tree-vrp.c (register_edge_assert_for_2): Likewise.
8103 * double-int.c (rshift_double, lshift_double): Likewise.
8104 * double-int.h (double_int_fits_in_uhwi_p, double_int, double_int):
8105 Likewise.
8106 * simplify-rtx.c (mode_signbit_p)
8107 (simplify_const_unary_operation, simplify_binary_operation_1)
8108 (simplify_immed_subreg): Likewise.
8109 * builtins.c (c_readstr, fold_builtin_bitop): Likewise.
8110 * tree-vect-generic.c (build_replicated_const): Likewise.
8111 * dbxout.c (stabstr_O): Likewise.
8112 * emit-rtl.c (immed_double_int_const, immed_double_const)
8113 (gen_lowpart_common, init_emit_once): Likewise.
8114 * tree.c (integer_pow2p, tree_log2, tree_floor_log2)
8115 (widest_int_cst_value, upper_bound_in_type): Likewise.
8116 * stor-layout.c (initialize_sizetypes, fixup_signed_type)
8117 (fixup_unsigned_type): Likewise.
8118 * real.c (real_to_integer2, real_from_integer): Likewise.
8119 * dwarf2out.c (size_of_loc_descr, size_of_die, output_die)
8120 (clz_loc_descriptor, mem_loc_descriptor): Likewise.
8121
8122 2012-06-01 Eric Botcazou <ebotcazou@adacore.com>
8123
8124 PR middle-end/53501
8125 * fold-const.c (fold_binary_loc): Refine previous change.
8126
8127 2012-06-01 Olivier Hainque <hainque@adacore.com>
8128
8129 * config/rs6000/vxworks.h (SUBSUBTARGET_OVERRIDE_OPTIONS): Restore
8130 the "do {" part of the do-while(0) loop.
8131
8132 2012-06-01 Yuri Rumyantsev <yuri.s.rumyantsev@intel.com>
8133
8134 * config/i386/i386.c (x86_sched_reorder): New function.
8135 Added new function x86_sched_reorder.
8136
8137 2012-06-01 Richard Guenther <rguenther@suse.de>
8138
8139 * tree-loop-distribution.c (stmt_has_scalar_dependences_outside_loop):
8140 Handle PHIs.
8141 (classify_partition): Likewise.
8142
8143 2012-06-01 Richard Guenther <rguenther@suse.de>
8144
8145 * tree-loop-distribution.c (enum partition_kind): New enum.
8146 (struct partition_s): Add kind and main_stmt members.
8147 (partition_alloc): Initialize kind to PKIND_NORMAL.
8148 (partition_builtin_p): New function.
8149 (copy_loop_before): Remove failure path and assert instead.
8150 (generate_loops_for_partition): Likewise.
8151 (generate_memset_zero): Fold into ...
8152 (generate_memset_builtin): ... this.
8153 (classify_partition): New function with code from
8154 can_generate_builtin and generate_builtin.
8155 (generate_builtin): Remove.
8156 (can_generate_builtin): Likewise.
8157 (fuse_partitions_with_similar_memory_accesses): Call
8158 partition_builtin_p instead of can_generate_builtin.
8159 (rdg_build_partitions): Do not call
8160 fuse_partitions_with_similar_memory_accesses here...
8161 (ldist_gen): ... but here after classifying all partitions.
8162 Remove failure path of generate_code_for_partition.
8163 (generate_code_for_partition): Generate code according
8164 to partition classification.
8165
8166 2012-06-01 Manuel López-Ibáñez <manu@gcc.gnu.org>
8167 Jonathan Wakely <jwakely.gcc@gmail.com>
8168
8169 PR c++/50134
8170 * doc/invoke.texi (Warning Options): Explain purpose and differences
8171 between -Wmissing-prototypes and -Wmissing-declarations.
8172
8173 2012-06-01 Christian Bruel <christian.bruel@st.com>
8174
8175 * gcc.c (save_switch): Add user_p parameter.
8176 (read_specs): Likewise.
8177 (set_specs): Likewise.
8178 (validate_switches): Likewise.
8179 (validate_switches_from_spec): Likewise.
8180 (validate_all_switches): Pass on user_p parameter.
8181 (struct spec_list): Add user_p field.
8182 (struct switchstr): Add known field.
8183 (save_switch): Add known parameter.
8184 (INIT_STATIC_SPEC): Initialize user_p;
8185 (driver_unknown_option_callbac): call save_switch if
8186 OPT_SPECIAL_unknown.
8187 (driver_handle_option): Propagate OPT_specs.
8188 (do_spec_1): Set validated only if known.
8189 (check_live_switch): Likewise.
8190 (validate_switches): Set validated if known or user_spec.
8191
8192 2012-06-01 Hans-Peter Nilsson <hp@axis.com>
8193
8194 Add CRIS atomic patterns for 1, 2, and 4 bytes.
8195 * config/cris/cris.c (cris_emit_trap_for_misalignment): New function.
8196 * config/cris/cris-protos.h: Declare it.
8197 * config/cris/cris.h [!TARGET_DEFAULT, TARGET_CPU_DEFAULT == 32]
8198 (TARGET_DEFAULT): Add alignment by 32.
8199 [!TARGET_DEFAULT, TARGET_CPU_DEFAULT == 10] (TARGET_DEFAULT): New
8200 case, as TARGET_CPU_DEFAULT == 0 but with alignment as for
8201 TARGET_CPU_DEFAULT == 32.
8202 (TARGET_TRAP_UNALIGNED_ATOMIC): New macro.
8203 * config/cris/cris.md: Include sync.md. Avoid allocating specific
8204 numbers by replacing the define_constants for all UNSPECs with the
8205 equivalent define_c_enum construct.
8206 * config/cris/cris.opt (mtrap-unaligned-atomic): New option.
8207 * config/cris/sync.md: New file.
8208
8209 2012-05-31 Matt Turner <mattst88@gmail.com>
8210
8211 * config/mips/4600.md (r4600_imul_si): Rename from r4600_imul.
8212 (r4600_imul_di): New.
8213 (r4600_idiv_si): Rename from r4600_idiv.
8214 (r4600_idiv_di): New.
8215
8216 2012-05-31 Steven Bosscher <steven@gcc.gnu.org>
8217
8218 * output.h (__gcc_host_wide_int__): Move to hwint.h.
8219 (decl_default_tls_model): Move to tree.h
8220 (dump_file): Move to system.h.
8221 (default_stabs_asm_out_destructor, default_stabs_asm_out_constructor,
8222 dbxout_int, dbxout_stabd, dbxout_begin_stabn, dbxout_begin_stabn_sline,
8223 dbxout_begin_empty_stabs, dbxout_begin_simple_stabs,
8224 dbxout_begin_simple_stabs_desc, dbxout_stab_value_zero,
8225 dbxout_stab_value_zero, dbxout_stab_value_label_diff,
8226 dbxout_stab_value_internal_label,
8227 dbxout_stab_value_internal_label_diff): Move from here ...
8228 * dbxout.h: ... to here.
8229 * system.h (dump_file): Moved here from output.h.
8230 * hwint.h (__gcc_host_wide_int__): Moved here from output.h.
8231 * tree.h (decl_default_tls_model): Moved here from output.h.
8232 * varasm.c (default_stabs_asm_out_destructor,
8233 default_stabs_asm_out_constructor): Move from here ...
8234 * dbxout.c: ... to here.
8235
8236 * gcov-dump.c (dump_file): Rename to dump_gcov_file. Update callers.
8237
8238 * collect2.h (dump_file): Rename to dump_ld_file.
8239 * collect2.c: Likewise.
8240 * tlink.c: Likewise.
8241
8242 * alias.c: Do not include output.h.
8243 * auto-inc-dec.c: Likewise.
8244 * bt-load.c: Likewise.
8245 * caller-save.c: Likewise.
8246 * cfg.c: Likewise.
8247 * cfgbuild.c: Likewise.
8248 * cfgcleanup.c: Likewise.
8249 * cfglayout.c: Likewise.
8250 * cfgloop.c: Likewise.
8251 * cfgloopanal.c: Likewise.
8252 * cfgloopmanip.c: Likewise.
8253 * cfgrtl.c: Likewise.
8254 * cgraph.c: Likewise.
8255 * cgraphclones.c: Likewise.
8256 * combine-stack-adj.c: Likewise.
8257 * combine.c: Likewise.
8258 * cprop.c: Likewise.
8259 * cse.c: Likewise.
8260 * cselib.c: Likewise.
8261 * dbgcnt.c: Likewise.
8262 * df-problems.c: Likewise.
8263 * df-scan.c: Likewise.
8264 * dojump.c: Likewise.
8265 * fwprop.c: Likewise.
8266 * gcse.c: Likewise.
8267 * graph.c: Likewise.
8268 * haifa-sched.c: Likewise.
8269 * hw-doloop.c: Likewise.
8270 * ipa-inline-transform.c: Likewise.
8271 * ipa-pure-const.c: Likewise.
8272 * ipa-reference.c: Likewise.
8273 * ipa-utils.c: Likewise.
8274 * ira-build.c: Likewise.
8275 * ira-emit.c: Likewise.
8276 * lcm.c: Likewise.
8277 * loop-doloop.c: Likewise.
8278 * loop-invariant.c: Likewise.
8279 * loop-iv.c: Likewise.
8280 * loop-unroll.c: Likewise.
8281 * loop-unswitch.c: Likewise.
8282 * lto-cgraph.c: Likewise.
8283 * lto-section-in.c: Likewise.
8284 * lto-streamer-in.c: Likewise.
8285 * mcf.c: Likewise.
8286 * mode-switching.c: Likewise.
8287 * postreload-gcse.c: Likewise.
8288 * postreload.c: Likewise.
8289 * predict.c: Likewise.
8290 * profile.c: Likewise.
8291 * ree.c: Likewise.
8292 * reg-stack.c: Likewise.
8293 * regcprop.c: Likewise.
8294 * regmove.c: Likewise.
8295 * regstat.c: Likewise.
8296 * reload1.c: Likewise.
8297 * sched-ebb.c: Likewise.
8298 * sel-sched-dump.c: Likewise.
8299 * simplify-rtx.c: Likewise.
8300 * stor-layout.c: Likewise.
8301 * store-motion.c: Likewise.
8302 * tracer.c: Likewise.
8303 * tree-affine.c: Likewise.
8304 * tree-cfg.c: Likewise.
8305 * tree-cfgcleanup.c: Likewise.
8306 * tree-dfa.c: Likewise.
8307 * tree-into-ssa.c: Likewise.
8308 * tree-nomudflap.c: Likewise.
8309 * tree-optimize.c: Likewise.
8310 * tree-pretty-print.c: Likewise.
8311 * tree-profile.c: Likewise.
8312 * tree-ssa-address.c: Likewise.
8313 * tree-ssa-ccp.c: Likewise.
8314 * tree-ssa-copy.c: Likewise.
8315 * tree-ssa-dom.c: Likewise.
8316 * tree-ssa-loop-ch.c: Likewise.
8317 * tree-ssa-loop-im.c: Likewise.
8318 * tree-ssa-loop-manip.c: Likewise.
8319 * tree-ssa-loop-niter.c: Likewise.
8320 * tree-ssa-loop-prefetch.c: Likewise.
8321 * tree-ssa-loop-unswitch.c: Likewise.
8322 * tree-ssa-loop.c: Likewise.
8323 * tree-ssa-propagate.c: Likewise.
8324 * tree-ssa-structalias.c: Likewise.
8325 * tree-ssa-tail-merge.c: Likewise.
8326 * tree-ssa-threadedge.c: Likewise.
8327 * tree-ssa-threadupdate.c: Likewise.
8328 * tree-ssa-uncprop.c: Likewise.
8329 * tree-ssa-uninit.c: Likewise.
8330 * tree-ssa.c: Likewise.
8331 * value-prof.c: Likewise.
8332 * var-tracking.c: Likewise.
8333 * web.c: Likewise.
8334
8335 * config/m32r/m32r.c: Include dbxout.h.
8336 * config/pa/pa.c: Likewise.
8337 * config/rs6000/rs6000.c: Likewise.
8338
8339 * Makefile.in: Fix dependencies.
8340 * config/rs6000/t-rs5000: Likewise.
8341
8342 2012-05-31 Aldy Hernandez <aldyh@redhat.com>
8343
8344 * tree-ssa-loop-im.c (execute_sm): Do not check flag_tm.
8345 * gimple.h (block_in_transaction): Check for flag_tm.
8346
8347 2012-05-31 Aldy Hernandez <aldyh@redhat.com>
8348
8349 PR tree-optimization/52558
8350 * cfg.c (alloc_aux_for_edge): Fix comment.
8351 (alloc_aux_for_edge): Remove static.
8352 * basic-block.h (alloc_aux_for_edge): Protoize.
8353 * tree-ssa-loop-im.c (execute_sm_if_changed): New.
8354 (execute_sm_if_changed_flag): New.
8355 (execute_sm_if_changed_flag_set): New.
8356 (execute_sm): Do not generate data races unless requested.
8357 (tree_ssa_lim_initialize): Call alloc_aux_for_edges.
8358 (tree_ssa_lim_finalize): Call free_aux_for_edges.
8359 * gimple.h (block_in_transaction): New.
8360 (gimple_in_transaction): Use block_in_transaction.
8361
8362 2012-05-31 Georg-Johann Lay <avr@gjlay.de>
8363
8364 PR target/51345
8365 * config/avr/avr.opt (-msp8): Document it.
8366 * doc/invoke.texi (AVR Options): Ditto. And document related
8367 built-in macros.
8368
8369 2012-05-31 Diego Novillo <dnovillo@google.com>
8370
8371 * configure.ac (CXX_FOR_BUILD): Define and substitute.
8372 (BUILD_CXXFLAGS): Define and substitute.
8373 * Makefile.in (BUILD_CXXFLAGS): Define.
8374 (CXX_FOR_BUILD): Define.
8375 (COMPILER_FOR_BUILD): Set to CXX_FOR_BUILD if building with C++.
8376 (LINKER_FOR_BUILD): Likewise.
8377 (BUILD_COMPILERFLAGS): Set to BUILD_CXXFLAGS if building with C++.
8378 (BUILD_LINKERFLAGS): Likewise.
8379 * configure: Regenerate.
8380
8381 2012-05-31 Steven Bosscher <steven@gcc.gnu.org>
8382
8383 * Makefile.in: Fix many dependencies.
8384 * tree-profile.c: Don't include regs.h.
8385 * tree-vectorizer.c: Don't include cfglayout.h.
8386 * tree-vect-stmts.c: Likewise.
8387 * tree-vect-slp.c: Likewise.
8388 * tree-vect-loop.c: Likewise.
8389 * reg-stack.c: Likewise.
8390 * tree-ssa-loop-manip.c: Likewise.
8391 * toplev.c: Likewise.
8392 * varasm.c: Don't include cfglayout.h, basic-block.h,
8393 and tree-iterator.h.
8394 * tree-cfgcleanup.c: Don't include cfglayout.h.
8395 * passes.c: Don't include cfglayout.h, dwarf2asm.h,
8396 dwarf2out.h, dbxout.h, sdbout.h, and xcoffout.h.
8397 * cgraphclones.c: Don't include plugin.h.
8398
8399 2012-05-31 Georg-Johann Lay <avr@gjlay.de>
8400
8401 * config/avr/t-avr: Correct avr-mmcu.texi dependencies.
8402 (s-avr-mmcu-texi): Don't sed on gen-avr-mmcu-texi output.
8403 * doc/avr-mmcu.texi (svn:eol-style): Set to native.
8404
8405 2012-05-31 Richard Guenther <rguenther@suse.de>
8406
8407 * tree-loop-distribution.c (struct partition_s): New struct,
8408 typedef and vector type.
8409 (partition_alloc, partition_free): New functions.
8410 (generate_loops_for_partition, generate_builtin,
8411 generate_code_for_partition, rdg_flag_uses, rdg_flag_vertex,
8412 rdg_flag_vertex_and_dependent, rdg_flag_loop_exits,
8413 build_rdg_partition_for_component, can_generate_builtin,
8414 similar_memory_accesses, fuse_partitions_with_similar_memory_accesses,
8415 rdg_build_partitions, dump_rdg_partitions, debug_rdg_partitions,
8416 number_of_rw_in_partition, partition_contains_all_rw,
8417 ldist_gen): Use partition_t instead of bitmap.
8418
8419 2012-05-31 Georg-Johann Lay <avr@gjlay.de>
8420
8421 * config/avr/gen-avr-mmcu-texi.c: Sort MCUs.
8422 * doc/avr-mmcu.texi: Regenerate.
8423
8424 2012-05-31 Richard Guenther <rguenther@suse.de>
8425
8426 * tree-loop-distribution.c (stmt_has_scalar_dependences_outside_loop):
8427 Use FOR_EACH_SSA_DEF_OPERAND.
8428 (generate_builtin): Adjust.
8429 (stmt_generated_in_another_partition): Remove.
8430 (add_scalar_computations_to_partition): Likewise.
8431 (rdg_build_partitions): Do not call
8432 add_scalar_computations_to_partition.
8433
8434 2012-05-31 Eric Botcazou <ebotcazou@adacore.com>
8435
8436 * tree-dfa.c (get_ref_base_and_extent): Compute the offset using
8437 double ints throughout.
8438 * tree-sra.c (build_user_friendly_ref_for_offset) <RECORD_TYPE>:
8439 Check that the position of the field is representable as an integer.
8440
8441 2012-05-31 Richard Guenther <rguenther@suse.de>
8442
8443 * tree-data-ref.c (dr_analyze_innermost): Properly convert
8444 the MEM_REF offset to sizetype.
8445
8446 2012-05-31 Georg-Johann Lay <avr@gjlay.de>
8447
8448 * doc/invoke.texi (AVR Options): Fix typos.
8449
8450 2012-05-31 Hans-Peter Nilsson <hp@axis.com>
8451
8452 * config/cris/cris.h (CC1_SPEC): Pass through all -march=
8453 and -mcpu= options.
8454 (ASM_SPEC): Ditto, not just -march=v32, but translate non-v10,
8455 non-v32 into --march=v0_v10.
8456
8457 2012-05-31 Richard Sandiford <rdsandiford@googlemail.com>
8458
8459 * ira-int.h (target_ira_int): Rename x_move_cost to
8460 x_ira_register_move_cost, x_may_move_in_cost to
8461 x_ira_may_move_in_cost and x_may_move_out_cost to
8462 x_ira_may_move_out_cost. Delete the old fields with
8463 those names and also x_ira_max_register_move_cost,
8464 x_ira_max_may_move_in_cost and x_ira_max_may_move_out_cost.
8465 (move_cost, may_move_in_cost, may_move_out_cost)
8466 (ira_max_register_move_cost, ira_max_may_move_in_cost)
8467 (ira_max_may_move_out_cost): Delete.
8468 * ira.c (init_move_cost): Rename to...
8469 (ira_init_register_move_cost): ...this, deleting the old
8470 function with that name. Apply above variable renamings.
8471 Retain asserts for null fields.
8472 (ira_init_once): Don't initialize register move costs here.
8473 (free_register_move_costs): Apply above variable renamings.
8474 Remove code for deleted fields.
8475
8476 2012-05-31 Richard Sandiford <rdsandiford@googlemail.com>
8477
8478 * ira.c (init_move_cost): Adjust choice of subclasses to match
8479 the current ira_init_register_move_cost choice. Use
8480 ira_class_subset_p instead of reg_class_subset_p.
8481 (ira_init_register_move_cost): Assert that move_cost,
8482 may_move_in_cost and may_move_out_cost already hold the desired
8483 values for their ira_* equivalents. For the latter two,
8484 ignore classes that can't store a register of the given mode.
8485
8486 2012-05-31 Richard Sandiford <rdsandiford@googlemail.com>
8487
8488 * ira.c (setup_allocno_and_important_classes): Use
8489 ira_class_hard_regs_num to check whether a class has any
8490 allocatable registers.
8491 (ira_init_register_move_cost): Likewise.
8492
8493 2012-05-31 Richard Sandiford <rdsandiford@googlemail.com>
8494
8495 * ira.c (init_move_cost): Adjust local variable names to match
8496 file conventions. Use ira_assert instead of gcc_assert.
8497
8498 2012-05-31 Richard Sandiford <rdsandiford@googlemail.com>
8499
8500 * regs.h (move_table, move_cost, may_move_in_cost, may_move_out_cost):
8501 Move these definitions and associated target_globals fields to...
8502 * ira-int.h: ...here.
8503 * rtl.h (init_move_cost): Delete.
8504 * reginfo.c (last_mode_for_init_move_cost, init_move_cost): Move to...
8505 * ira.c: ...here, making the latter static.
8506
8507 2012-05-31 Richard Sandiford <rdsandiford@googlemail.com>
8508
8509 * ira-costs.c (copy_cost): Use ira_init_register_move_cost_if_necessary
8510 and ira_register_move_cost instead of init_move_cost and move_cost.
8511
8512 2012-05-31 Richard Sandiford <rdsandiford@googlemail.com>
8513
8514 * ira.h (target_ira): Delete x_ira_available_class_regs.
8515 (ira_available_class_regs): Delete.
8516 * ira.c (setup_available_class_regs): Delete.
8517 (setup_alloc_classes): Don't call it.
8518 (setup_pressure_classes): Use ira_class_hard_regs_num instead of
8519 ira_available_class_regs.
8520 * haifa-sched.c (print_curr_reg_pressure, setup_insn_reg_pressure_info)
8521 (model_spill_cost): Likewise.
8522 * ira-build.c (low_pressure_loop_node_p): Likewise.
8523 * ira-color.c (color_pass): Likewise.
8524 * ira-emit.c (change_loop): Likewise.
8525 * ira-lives.c (inc_register_pressure, dec_register_pressure)
8526 (single_reg_class, ira_implicitly_set_insn_hard_regs)
8527 (process_bb_node_lives): Likewise.
8528 * loop-invariant.c (gain_for_invariant): Likewise.
8529
8530 2012-05-30 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
8531
8532 PR target/52999
8533 * config/pa/pa.c (TARGET_SECTION_TYPE_FLAGS): Define.
8534 (pa_section_type_flags): New.
8535 (pa_legitimate_constant_p): Revert previous change.
8536
8537 2012-05-30 Steven Bosscher <steven@gcc.gnu.org>
8538
8539 * ira.c (allocate_initial_values): Make static.
8540
8541 2012-05-30 Uros Bizjak <ubizjak@gmail.com>
8542
8543 * config/i386/i386.c (legitimize_tls_address) <TLS_MODEL_INITIAL_EXEC>:
8544 Generate tls_initial_exec_64_sun only when !TARGET_X32.
8545
8546 2012-05-30 Richard Guenther <rguenther@suse.de>
8547
8548 PR middle-end/53501
8549 * fold-const.c (fold_binary_loc): Make sure to call
8550 fold_plusminus_mult_expr with the original sign of operands.
8551
8552 2012-05-30 Steven Bosscher <steven@gcc.gnu.org>
8553
8554 * Makefile.in: Fix many dependencies.
8555 (DWARF2_H): Depend on dwarf2.def.
8556 (RTL_ERROR_H): Depend on rtl-error.h.
8557 (TREE_PRETTY_PRINT_H, GIMPLE_PRETTY_PRINT_H): New. Replace
8558 all gimple-pretty-print.h and tree-pretty-print.h references.
8559
8560 2012-05-30 Marc Glisse <marc.glisse@inria.fr>
8561
8562 * simplify-rtx.c (simplify_binary_operation_1): Optimize shuffle of
8563 concatenations.
8564
8565 2012-05-30 Richard Guenther <rguenther@suse.de>
8566
8567 PR middle-end/53522
8568 * tree-emutls.c (gen_emutls_addr): Do not add globals to
8569 referenced-vars.
8570
8571 2012-05-30 Eric Botcazou <ebotcazou@adacore.com>
8572
8573 * explow.c (probe_stack_range): Restore simple control flow and stop
8574 again when the probe cannot be generated if HAVE_check_stack.
8575
8576 2012-05-30 Jakub Jelinek <jakub@redhat.com>
8577
8578 PR rtl-optimization/53519
8579 * combine.c (simplify_shift_const_1) <case NOT>: Use constm1_rtx
8580 instead of GEN_INT (GET_MODE_MASK (mode)) as second operand of XOR.
8581
8582 2012-05-30 Ramana Radhakrishnan <ramana.radhakrishnan@linaro.org>
8583
8584 * config/arm/arm.c (arm_evpc_neon_vrev): Adjust off by one error.
8585
8586 2012-05-29 Jack Howarth <howarth@bromo.med.uc.edu>
8587
8588 PR debug/53453
8589 * doc/tm.texi: Update.
8590 * doc/tm.texi.in (SDB and DWARF) <TARGET_FORCE_AT_COMP_DIR>: Add @hook.
8591 * target.def (force_at_comp_dir): New hook.
8592 * config/darwin.h (TARGET_FORCE_AT_COMP_DIR): Define.
8593 * dwarf2out.c (dwarf2out_finish): Check targetm.force_at_comp_dir.
8594
8595 2012-05-29 Jack Howarth <howarth@bromo.med.uc.edu>
8596
8597 * config/darwin.h (STARTFILE_SPEC): Do not use -lbundle1.o when
8598 Darwin >= 10.
8599 (DARWIN_DYLIB1_SPEC): Do not use -ldylib1.10.5.o when Darwin >= 10.
8600 (DARWIN_CRT1_SPEC): Use -lcrt1.10.6.o when Darwin >= 10.
8601
8602 2012-05-29 Oleg Endo <olegendo@gcc.gnu.org>
8603
8604 PR target/51340
8605 * config/sh/sh.c (sh_option_override): Set TARGET_FMAC if
8606 flag_unsafe_math_optimizations is set.
8607 * doc/invoke.texi (SH Options): Add -mno-fused-madd description.
8608 Update description of -mfused-madd.
8609
8610 2012-05-29 Oleg Endo <olegendo@gcc.gnu.org>
8611
8612 PR target/52941
8613 * config/sh/predicates.md (atomic_arith_operand,
8614 atomic_logical_operand): New predicates.
8615 * config/sh/sh.c (sh_option_override): Check atomic options.
8616 * config/sh/sh.h (TARGET_ANY_ATOMIC, UNSUPPORTED_ATOMIC_OPTIONS,
8617 UNSUPPORTED_HARD_ATOMIC_CPU): New macros.
8618 (DRIVER_SELF_SPECS): Use UNSUPPORTED_ATOMIC_OPTIONS and
8619 UNSUPPORTED_HARD_ATOMIC_CPU.
8620 * config/sh/sync.md: Update description comments.
8621 (I12): New mode iterator.
8622 (fetchop_predicate, fetchop_constraint): New code attributes.
8623 (atomic_compare_and_swapsi_hard, atomic_compare_and_swap<mode>_hard,
8624 atomic_exchangesi_hard, atomic_exchange<mode>_hard,
8625 atomic_fetch_<fetchop_name>si_hard,
8626 atomic_fetch_<fetchop_name><mode>_hard,
8627 atomic_fetch_nandsi_hard, atomic_fetch_nand<mode>_hard,
8628 atomic_<fetchop_name>_fetchsi_hard,
8629 atomic_<fetchop_name>_fetch<mode>_hard,
8630 atomic_nand_fetchsi_hard, atomic_nand_fetch<mode>_hard,
8631 atomic_test_and_set_hard): New insns.
8632 (atomic_compare_and_swap<mode>_soft, atomic_exchange<mode>_soft,
8633 atomic_fetch_<fetchop_name><mode>_soft, atomic_fetch_nand<mode>_soft,
8634 atomic_<fetchop_name>_fetch<mode>_soft, atomic_nand_fetch<mode>_soft,
8635 atomic_test_and_set_soft): Use same formatting for the first line of
8636 the asm block as in new insns above.
8637 (atomic_compare_and_swap<mode>, atomic_exchange<mode>,
8638 atomic_fetch_<fetchop_name><mode>, atomic_<fetchop_name>_fetch<mode>,
8639 atomic_test_and_set): Integrate new *_hard insns into expanders.
8640 * config/sh/sh.opt (mhard-atomic): New option.
8641 * doc/invoke.texi (SH Options): Document it.
8642
8643 2012-05-29 Meador Inge <meadori@codesourcery.com>
8644
8645 * c-decl.c (c_push_function_context): Always create a new language
8646 function.
8647 (c_pop_function_context): Clear the language function created in
8648 c_push_function_context.
8649
8650 2012-05-29 Matt Turner <mattst88@gmail.com>
8651
8652 * config/alpha/ev6.md: (define_bypass "ev6_fmul,ev6_fadd"): New.
8653 (define_bypass "ev6_fcmov"): New.
8654
8655 2012-05-29 Steven Bosscher <steven@gcc.gnu.org>
8656
8657 * integrate.c: Remove.
8658 * integrate.h: Remove.
8659 * Makefile.in: Remove make rules for integrate.c and INTEGRATE_H.
8660 * config/arm/t-arm: Remove INTEGRATE_H dependency for target files.
8661 * config/rs6000/t-rs6000: Likewise
8662 * config/spu/t-spu-elf: Likewise.
8663 * function.h (get_hard_reg_initial_val, has_hard_reg_initial_val,
8664 get_hard_reg_initial_reg, emit_initial_value_sets): Move prototypes
8665 from integrate.h to here.
8666 (initial_value_entry): New prototype.
8667 * reload.h (allocate_initial_values): Remove prototype.
8668 * tree.h (set_decl_abstract_flags, set_decl_origin_self): Likewise.
8669 * cse.c (fixed_base_plus_p): Don't handle virtual registers for
8670 integrate.c.
8671 * dwarf2out.c (set_decl_origin_self, set_block_origin_self,
8672 set_decl_abstract_flags, set_block_abstract_flags): Move from
8673 integrate.c to here, the only user.
8674 * expmed.c (extract_fixed_bit_field): Remove outdated comment
8675 about integrate.c.
8676 * function.c: Don't include integrate.h.
8677 (struct initial_value_pair, struct initial_value_struct,
8678 get_hard_reg_initial_val, has_hard_reg_initial_val,
8679 get_hard_reg_initial_reg, emit_initial_value_sets): Move from
8680 integrate.c to here.
8681 (initial_value_entry): New function.
8682 * genemit.c (main): Don't print integrate.h include line.
8683 * ira.c: Don't include integrate.h.
8684 (allocate_initial_values): Move from integrate.c to here.
8685 (ira): Update allocate_initial_values call.
8686 * tree-inline.c: Don't include integrate.h.
8687 (function_attribute_inlinable_p): Moved from integrate.c to here.
8688 * cfgexpand.c: Don't include integrate.h.
8689 * except.c: Likewise.
8690 * langhooks.c: Likewise.
8691 * passes.c: Likewise.
8692 * toplev.c: Likewise.
8693 * config/frv/frv.c: Likewise.
8694 * config/pa/pa.c: Likewise.
8695 * config/spu/spu.c: Likewise.
8696 * config/epiphany/epiphany.c: Likewise.
8697 * config/mep/mep.c: Likewise.
8698 * config/score/score.c: Likewise.
8699 * config/picochip/picochip.c: Likewise.
8700 * config/sh/sh.c: Likewise.
8701 * config/alpha/alpha.c: Likewise.
8702 * config/microblaze/microblaze.c: Likewise.
8703 * config/mips/mips.c: Likewise.
8704 * config/v850/v850.c: Likewise.
8705 * config/mmix/mmix.c: Likewise.
8706 * config/bfin/bfin.c: Likewise.
8707 * config/arm/arm.c: Likewise.
8708 * config/s390/s390.c: Likewise.
8709 * config/m32r/m32r.c: Likewise.
8710 * config/rs6000/rs6000.c: Likewise.
8711 * config/c6x/c6x.c: Include function.h instead of integrate.h.
8712 * config/tilegx/tilegx.c: Likewise.
8713 * config/tilepro/tilepro.c: Likewise.
8714
8715 2012-05-29 Georg-Johann Lay <avr@gjlay.de>
8716
8717 * config/avr/t-avr (s-avr-mmcu-texi): Call
8718 gen-avr-mmcu-texi$(build_exeext) via ./ and don't assume . is in PATH.
8719
8720 2012-05-29 Michael Matz <matz@suse.de>
8721
8722 * rtl.h (assign_stack_temp, assign_stack_temp_for_type,
8723 assign_temp): Remove 'keep' argument.
8724 (mark_temp_addr_taken): Remove prototype.
8725 * tree.h (expand_decl): Remove prototype.
8726 * function.c (struct temp_slot): Remove addr_taken and keep member.
8727 (assign_stack_temp_for_type) Don't initialize above, remove
8728 keep argument.
8729 (assign_stack_temp, assign_temp): Remove keep argument.
8730 (mark_temp_addr_taken): Remove.
8731 (preserve_temp_slots): Remove handling of addr_taken and keep members.
8732 (free_temp_slots): Ditto.
8733 * expr.c (expand_expr_real_1 <COMPOUND_LITERAL_EXPR>): Remove
8734 dead code.
8735 * stmt.c (expand_asm_operands): Remove dead code.
8736 (expand_decl): Remove.
8737 * c-decl.c (finish_struct): Don't call expand_decl.
8738 * builtins.c (expand_builtin_cexpi): Adjust calls to assign_temp
8739 and assign_stack_temp.
8740 * calls.c (save_fixed_argument_area, initialize_argument_information,
8741 expand_call, emit_library_call_value_1, store_one_arg): Ditto.
8742 * expmed.c (extract_bit_field_1): Ditto.
8743 * expr.c (emit_group_load_1, emit_group_store,
8744 copy_blkmode_from_reg, emit_push_insn, expand_assignment,
8745 store_field, expand_constructor, expand_cond_expr_using_cmove,
8746 expand_expr_real_2, expand_expr_real_1): Ditto.
8747 * stmt.c (expand_asm_operands, expand_return): Ditto.
8748
8749 * function.c (pop_temp_slots): Call free_temp_slots.
8750 * calls.c (store_one_arg): Don't call preserve_temp_slots or
8751 free_temp_slots.
8752 * expr.c (expand_assignment): Don't call free_temp_slots.
8753
8754 * config/arm/arm.c (neon_expand_vector_init): Ditto.
8755 * config/i386/i386.c (ix86_expand_vector_set): Ditto.
8756 (ix86_expand_vector_extract): Ditto.
8757 * config/ia64/ia64.c (spill_xfmode_rfmode_operand,
8758 ia64_expand_movxf_movrf): Ditto.
8759 * config/mips/mips.c (mips_expand_vi_general): Ditto.
8760 * config/mmix/mmix.md (floatdisf2, floatunsdisf2, truncdfsf2,
8761 extendsfdf2): Ditto.
8762 * config/rs6000/rs6000.c (rs6000_expand_vector_init,
8763 rs6000_expand_vector_set, rs6000_expand_vector_extract,
8764 rs6000_allocate_stack_temp): Ditto.
8765 * config/rs6000/rs6000.md (fix_trunctfsi2_fprs): Ditto.
8766 * config/sparc/sparc.c (emit_soft_tfmode_libcall,
8767 sparc_emit_float_lib_cmp, sparc_emit_float_lib_cmp,
8768 sparc_expand_vector_init): Ditto.
8769
8770 2012-05-29 Michael Matz <matz@suse.de>
8771
8772 * c-tree.h (c_expand_decl): Remove prototype.
8773
8774 * expr.c (expand_expr_real_1 <normal_inner_ref>): Don't allocate
8775 a kept temp.
8776 (expand_expr_real_1 <COMPOUND_LITERAL_EXPR>): Make unreachable.
8777 * gimple-fold.c (canonicalize_constructor_val): Canonicalize
8778 COMPOUND_LITERAL_EXPR.
8779 * function.c (expand_function_start): Don't call expand_decl,
8780 instead assert that we have RTL assigned.
8781 * tree-ssa-live.c (remove_unused_locals): Clear
8782 nonlocal_goto_save_area if its backing variable is removed.
8783 * stmt.c (expand_asm_operands): Remove handling of non-lvalues
8784 as mem inputs.
8785 (expand_decl): Assert that this does nothing.
8786 * calls.c (expand_call): Don't call mark_temp_addr_taken.
8787
8788 2012-05-29 Richard Guenther <rguenther@suse.de>
8789
8790 PR tree-optimization/53516
8791 * tree-data-ref.c (stmt_with_adjacent_zero_store_dr_p): Reject
8792 bitfield accesses.
8793 * tree-vect-data-refs.c (vect_analyze_data_refs): Likewise.
8794
8795 2012-05-29 Joseph Myers <joseph@codesourcery.com>
8796
8797 * LANGUAGES: Fix typos.
8798 * Makefile.in: Fix typos.
8799 * alias.c: Fix typos.
8800 * auto-inc-dec.c: Fix typos.
8801 * bb-reorder.c: Fix typos.
8802 * cfgcleanup.c: Fix typos.
8803 * cgraph.c: Fix typos.
8804 * cgraph.h: Fix typos.
8805 * cgraphunit.c: Fix typos.
8806 * collect2-aix.h: Fix typos.
8807 * collect2.c: Fix typos.
8808 * compare-elim.c: Fix typos.
8809 * config/alpha/vms.h: Fix typos.
8810 * config/arm/README-interworking: Fix typos.
8811 * config/arm/arm.c: Fix typos.
8812 * config/arm/iterators.md: Fix typos.
8813 * config/arm/vxworks.h: Fix typos.
8814 * config/avr/avr.c: Fix typos.
8815 * config/avr/avr.h: Fix typos.
8816 * config/avr/avr.md: Fix typos.
8817 * config/avr/builtins.def: Fix typos.
8818 * config/c6x/c6x.c: Fix typos.
8819 * config/cr16/cr16.c: Fix typos.
8820 * config/cr16/cr16.md: Fix typos.
8821 * config/cris/cris.md: Fix typos.
8822 * config/darwin.c: Fix typos.
8823 * config/darwin.opt: Fix typos.
8824 * config/i386/i386-c.c: Fix typos.
8825 * config/i386/i386.c: Fix typos.
8826 * config/ia64/ia64.c: Fix typos.
8827 * config/m68k/cf.md: Fix typos.
8828 * config/mep/mep.c: Fix typos.
8829 * config/microblaze/microblaze.c: Fix typos.
8830 * config/microblaze/microblaze.h: Fix typos.
8831 * config/mn10300/mn10300.c: Fix typos.
8832 * config/mn10300/mn10300.md: Fix typos.
8833 * config/pa/pa.c: Fix typos.
8834 * config/picochip/picochip.h: Fix typos.
8835 * config/rs6000/a2.md: Fix typos.
8836 * config/rs6000/rs6000.c: Fix typos.
8837 * config/rs6000/vector.md: Fix typos.
8838 * config/rx/rx.md: Fix typos.
8839 * config/rx/rx.opt: Fix typos.
8840 * config/s390/2097.md: Fix typos.
8841 * config/s390/s390.c: Fix typos.
8842 * config/s390/s390.h: Fix typos.
8843 * config/sh/sh.c: Fix typos.
8844 * config/sh/sh.md: Fix typos.
8845 * config/sparc/sync.md: Fix typos.
8846 * config/spu/spu.c: Fix typos.
8847 * config/spu/spu.md: Fix typos.
8848 * config/vms/vms.c: Fix typos.
8849 * config/vxworks-dummy.h: Fix typos.
8850 * config/vxworks.h: Fix typos.
8851 * cselib.c: Fix typos.
8852 * df-scan.c: Fix typos.
8853 * df.h: Fix typos.
8854 * doc/extend.texi: Fix typos.
8855 * doc/install.texi: Fix typos.
8856 * doc/invoke.texi: Fix typos.
8857 * doc/md.texi: Fix typos.
8858 * doc/plugins.texi: Fix typos.
8859 * doc/rtl.texi: Fix typos.
8860 * dse.c: Fix typos.
8861 * dwarf2asm.c: Fix typos.
8862 * dwarf2out.c: Fix typos.
8863 * except.h: Fix typos.
8864 * expr.c: Fix typos.
8865 * fold-const.c: Fix typos.
8866 * gcc.c: Fix typos.
8867 * gcse.c: Fix typos.
8868 * genautomata.c: Fix typos.
8869 * gengtype-state.c: Fix typos.
8870 * gengtype.c: Fix typos.
8871 * genhooks.c: Fix typos.
8872 * gimple-fold.c: Fix typos.
8873 * gimple-pretty-print.c: Fix typos.
8874 * gimple.c: Fix typos.
8875 * gimple.h: Fix typos.
8876 * gimplify.c: Fix typos.
8877 * graphite-interchange.c: Fix typos.
8878 * graphite-sese-to-poly.c: Fix typos.
8879 * ifcvt.c: Fix typos.
8880 * input.c: Fix typos.
8881 * ipa-cp.c: Fix typos.
8882 * ipa-inline-analysis.c: Fix typos.
8883 * ipa-inline-transform.c: Fix typos.
8884 * ipa-inline.c: Fix typos.
8885 * ipa-pure-const.c: Fix typos.
8886 * ipa-ref.h: Fix typos.
8887 * ipa-reference.c: Fix typos.
8888 * ipa-utils.c: Fix typos.
8889 * ipa.c: Fix typos.
8890 * ira-emit.c: Fix typos.
8891 * ira-lives.c: Fix typos.
8892 * lto-streamer.c: Fix typos.
8893 * lto-streamer.h: Fix typos.
8894 * lto-wrapper.c: Fix typos.
8895 * mcf.c: Fix typos.
8896 * mode-switching.c: Fix typos.
8897 * modulo-sched.c: Fix typos.
8898 * plugin.c: Fix typos.
8899 * postreload.c: Fix typos.
8900 * sched-deps.c: Fix typos.
8901 * sel-sched-ir.c: Fix typos.
8902 * sel-sched-ir.h: Fix typos.
8903 * sel-sched.c: Fix typos.
8904 * sese.c: Fix typos.
8905 * stor-layout.c: Fix typos.
8906 * target-hooks-macros.h: Fix typos.
8907 * target.def: Fix typos.
8908 * trans-mem.c: Fix typos.
8909 * tree-eh.c: Fix typos.
8910 * tree-predcom.c: Fix typos.
8911 * tree-sra.c: Fix typos.
8912 * tree-ssa-address.c: Fix typos.
8913 * tree-ssa-loop-ivopts.c: Fix typos.
8914 * tree-ssa-loop-niter.c: Fix typos.
8915 * tree-ssa-math-opts.c: Fix typos.
8916 * tree-ssa-pre.c: Fix typos.
8917 * tree-ssa-propagate.c: Fix typos.
8918 * tree-ssa-reassoc.c: Fix typos.
8919 * tree-ssa-sccvn.c: Fix typos.
8920 * tree-ssa-ter.c: Fix typos.
8921 * tree-ssa-uninit.c: Fix typos.
8922 * tree-ssanames.c: Fix typos.
8923 * tree-vect-generic.c: Fix typos.
8924 * tree-vect-slp.c: Fix typos.
8925 * tree.c: Fix typos.
8926 * tree.h: Fix typos.
8927 * varasm.c: Fix typos.
8928 * varpool.c: Fix typos.
8929
8930 2012-05-29 Joseph Myers <joseph@codesourcery.com>
8931
8932 * doc/include/texinfo.tex: Update to version 2012-05-16.16.
8933
8934 2012-05-29 Richard Guenther <rguenther@suse.de>
8935
8936 * tree-dfa.c (find_vars_r): Do not call add_referenced_vars
8937 for globals.
8938 (add_referenced_var_1): Re-organize. Assert we are not
8939 called for globals.
8940 (remove_referenced_var): Likewise.
8941 * varpool.c (add_new_static_var): Use create_tmp_var_raw.
8942 * tree-mudflap.c (execute_mudflap_function_ops): Do not
8943 call add_referenced_var on globals.
8944 * matrix-reorg.c (transform_access_sites): Likewise.
8945
8946 2012-05-29 Steven Bosscher <steven@gcc.gnu.org>
8947
8948 * alias.c (reg_known_value): Make this a VEC.
8949 (reg_known_equiv_p): Make this an sbitmap.
8950 (reg_known_value_size): Remove.
8951 (get_reg_known_value, set_reg_known_value, get_reg_known_equiv_p,
8952 set_reg_known_equiv_p): Update for reg_known_value and
8953 reg_known_value_size data structure change.
8954 (init_alias_analysis, end_alias_analysis): Likewise.
8955
8956 2012-05-29 Jakub Jelinek <jakub@redhat.com>
8957
8958 PR middle-end/53510
8959 * input.c (read_line): Use XRESIZEVEC instead of XNEWVEC
8960 to avoid leaking memory. No need to handle memory allocation
8961 failure. Double string_len on each reallocation instead of adding 2.
8962 * gcov.c (read_line): Likewise.
8963
8964 2012-05-29 Hans-Peter Nilsson <hp@axis.com>
8965
8966 * config/cris/cris.h (TARGET_HAS_BREAK, TARGET_TRAP_USING_BREAK8):
8967 New macros.
8968 * config/cris/cris.md ("trap"): Define, enabled for
8969 TARGET_TRAP_USING_BREAK8.
8970 * config/cris/cris.opt (mtrap-using-break8): New option.
8971
8972 2012-05-28 Paolo Carlini <paolo.carlini@oracle.com>
8973
8974 PR c++/25137
8975 * doc/invoke.texi: Document -Wmissing-braces not enabled by -Wall
8976 for C++.
8977
8978 2012-05-28 Hans-Peter Nilsson <hp@axis.com>
8979
8980 * doc/md.texi (stack_protect_test): Remove negation of branch to label.
8981 (Standard Names): Fix typos in documentation of atomic patterns.
8982
8983 2012-05-27 Nathan Sidwell <nathan@acm.org>
8984
8985 * tree.c (build_constructor): Propagate TREE_SIDE_EFFECTS.
8986
8987 2012-05-26 Jason Merrill <jason@redhat.com>
8988
8989 PR c++/53220
8990 * c-typeck.c (array_to_pointer_conversion): Give -Wc++-compat warning
8991 about array compound literals.
8992
8993 2012-05-26 Eric Botcazou <ebotcazou@adacore.com>
8994
8995 * cfgcleanup.c (try_optimize_cfg): Do not delete forwarder blocks
8996 if CLEANUP_NO_INSN_DEL.
8997 * cfgrtl.c (unique_locus_on_edge_between_p): New function extracted
8998 from cfg_layout_merge_blocks.
8999 (emit_nop_for_unique_locus_between): New function.
9000 (rtl_merge_blocks): Invoke emit_nop_for_unique_locus_between.
9001 (cfg_layout_merge_blocks): Likewise.
9002
9003 2012-05-26 Dimitrios Apostolou <jimis@gmx.net>
9004 Paolo Bonzini <bonzini@gnu.org>
9005
9006 * df-scan.c (df_def_record_1): Assert a parallel must contain an
9007 EXPR_LIST at this point. Receive the LOC and move its extraction...
9008 (df_defs_record): ... here. Change if-else to a switch statement.
9009 (df_find_hard_reg_defs, df_find_hard_reg_defs_1): New.
9010 (df_get_call_refs): Changed defs_generated from bitmap to HARD_REG_SET
9011 and compute it from df_find_hard_reg_defs(). Record DF_REF_BASE
9012 DEFs in REGNO order. Use HARD_REG_SET instead of bitmap for
9013 regs_invalidated_by_call.
9014 (df_insn_refs_collect): Record DF_REF_REGULAR DEFs after
9015 df_get_call_refs().
9016
9017 2012-05-25 Eric Botcazou <ebotcazou@adacore.com>
9018
9019 PR lto/52178
9020 * tree-inline.c (remap_gimple_op_r): Fix handling of FIELD_DECL.
9021 * tree.c (RETURN_TRUE_IF_VAR): Do not return true for PLACEHOLDER_EXPR.
9022
9023 2012-05-25 Michael Meissner <meissner@linux.vnet.ibm.com>
9024
9025 * config/rs6000/t-linux64: Delete the 32-bit multilib that uses
9026 software floating point emulation. No longer build the multilibs
9027 with -mstrict-align.
9028
9029 2012-05-25 Aldy Hernandez <aldyh@redhat.com>
9030
9031 PR middle-end/53008
9032 * trans-mem.c (ipa_tm_create_version_alias): Output new_node if
9033 accessed indirectly.
9034 (ipa_tm_create_version): Same.
9035
9036 2012-05-25 Uros Bizjak <ubizjak@gmail.com>
9037
9038 PR target/53474
9039 * config/i386/i386.c (ix86_print_operand) <case 'O'>: Print '.' here.
9040 <case 'C', case 'c', case 'F', case 'f'>: Print '.' only for C and c.
9041
9042 2012-05-25 Alexander Ivchenko <alexander.ivchenko@intel.com>
9043
9044 PR target/53435
9045 * config/i386/i386.c (ix86_expand_vec_perm): Use correct op.
9046 (ix86_expand_vec_perm): Use int mode instead of float.
9047 (expand_vec_perm_pshufb): Remove handling of useseless type
9048 conversion.
9049
9050 2012-05-25 Eric Botcazou <ebotcazou@adacore.com>
9051
9052 PR ada/52362
9053 * config.gcc (i[34567]86-*-mingw* | x86_64-*-mingw*): Set gas and
9054 gnu_ld variables to yes.
9055 * configure.ac (HAVE_GNU_LD): Move to after config.gcc inclusion.
9056 (HAVE_GNU_AS): Likewise.
9057 * config.in: Regenerate.
9058 * configure: Likewise.
9059
9060 2012-05-25 Tristan Gingold <gingold@adacore.com>
9061
9062 * config/i386/i386.c (struct ix86_frame): Remove unused frame field.
9063 (ix86_compute_frame_layout): Fix type of stack_alignment_needed
9064 and preferred_alignment.
9065
9066 2012-05-25 Tristan Gingold <gingold@adacore.com>
9067
9068 * common/config/ia64/ia64-common.c (ia64_except_unwind_info): Fix typo.
9069
9070 2012-05-25 Thomas Schwinge <thomas@codesourcery.com>
9071
9072 * fold-const.c (optimize_bit_field_compare): Abort early in the strict
9073 volatile bitfields case.
9074
9075 2012-05-24 Pat Haugen <pthaugen@us.ibm.com>
9076
9077 * config/rs6000/rs6000.c (rs6000_option_override_internal): Change
9078 rs6000_sched_costly_dep default to true_store_to_load_dep_costly.
9079 (adjacent_mem_locations): Move some code to and call...
9080 (get_memref_parts): ...new function.
9081 (mem_locations_overlap): New function.
9082 (rs6000_adjust_priority): Adjust calls to is_load_insn/is_store_insn.
9083 (is_mem_ref): Rename to...
9084 (find_mem_ref): ...this. Return MEM rtx.
9085 (get_store_dest): Remove function.
9086 (is_load_insn1, is_load_insn, is_store_insn1, is_store_insn): Add
9087 new parameter and adjust calls.
9088 (rs6000_is_costly_dependence): Update calls for extra arg. Make sure
9089 mem refs overlap for true_store_to_load_dep_costly.
9090 (rs6000_sched_reorder2): Update calls for extra arg. Adjust args
9091 passed to adjacent_mem_locations.
9092 (is_costly_group): Walk resolved dependency list.
9093 (force_new_group): Emit group ending nop for Power6/Power7.
9094 * config/rs6000/rs6000.md (UNSPEC_GRP_END_NOP): New enum value.
9095 (group_ending_nop): New define_insn.
9096
9097 2012-05-24 Dodji Seketeli <dodji@redhat.com>
9098
9099 Make unwound macro expansion trace less redundant
9100 * tree-diagnostic.c (maybe_unwind_expanded_macro_loc): Don't print
9101 context of macro definition in the trace, when it's redundant.
9102 Update comments.
9103
9104 2012-05-24 Richard Guenther <rguenther@suse.de>
9105
9106 PR middle-end/53460
9107 * tree-profile.c (tree_profiling): Cleanup the CFG if
9108 execute_fixup_cfg requests it.
9109
9110 2012-05-24 Richard Guenther <rguenther@suse.de>
9111
9112 * tree-flow.h (create_var_ann): Remove.
9113 * tree-dfa.c (create_var_ann): Remove and inline into its
9114 single caller ...
9115 (add_referenced_var_1): ... here.
9116 * varpool.c (add_new_static_var): Do not call add_referenced_var
9117 for global vars.
9118 * gimple-fold.c (canonicalize_constructor_val): Likewise.
9119 * tree-switch-conversion.c (build_one_array): Likewise.
9120 * tree-profile.c (gimple_gen_ic_profiler): Likewise.
9121 * tree-flow-inline.h (gimple_referenced_vars): Guard against
9122 NULL fn argument.
9123 * tree-inline.c (remap_gimple_op_r): Likewise. Check
9124 gimple_referenced_vars instead of gimple_in_ssa_p.
9125 (copy_tree_body_r): Likewise.
9126 (setup_one_parameter): Likewise.
9127 (declare_return_variable): Likewise.
9128 (tree_function_versioning): Likewise.
9129
9130 2012-05-24 Jakub Jelinek <jakub@redhat.com>
9131
9132 PR tree-optimization/53465
9133 * tree-vrp.c (extract_range_from_cond_expr): First copy_value_range
9134 vr0 into *vr, then vrp_meet that.
9135 (vrp_meet): If one vr type is VR_UNDEFINED, ensure the result doesn't
9136 have any equivalences.
9137 (vrp_visit_phi_node): Call copy_value_range instead of vrp_meet the
9138 first time.
9139
9140 2012-05-24 Jim MacArthur <jim.macarthur@arm.com>
9141
9142 * recog.c (reg_fits_class_p): Check both regno and regno + offset are
9143 hard registers.
9144 * regs.h (in_hard_reg_set_p): Assert that regno is a hard register and
9145 check end_regno - 1 is a hard register.
9146
9147 2012-05-24 Richard Guenther <rguenther@suse.de>
9148
9149 * varpool.c (add_new_static_var): Remove call to create_var_ann.
9150 * tree-ssa-operands.c (create_vop_var): Likewise.
9151
9152 2012-05-24 Richard Guenther <rguenther@suse.de>
9153
9154 PR bootstrap/53466
9155 * tree-ssa-live.c (remove_unused_scope_block_p): Properly
9156 handle globals.
9157 (remove_unused_locals): Pass global_unused_vars to
9158 remove_unused_scope_block_p. Restore code walking all
9159 referenced vars and pruning them.
9160
9161 2012-05-23 Jan Hubicka <jh@suse.cz>
9162
9163 * tree.h (alias_diag_flags): Remove.
9164 (alias_pair): Remove emitted_diags.
9165 (finish_aliases_1, finish_aliases_2, remove_unreachable_alias_pairs,
9166 symbol_alias_set_t, symbol_alias_set_destroy,
9167 symbol_alias_set_contains, propagate_aliases_backward): Remove.
9168 * toplev.c (compile_file): Do not call finish_aliases_2
9169 * cgraphunit.c (cgraph_process_new_functions): Do not call
9170 finish_aliases_1.
9171 (handle_alias_pairs): Output diagnostics about aliases to externals.
9172 (assemble_thunks_and_aliases): Use do_assemble_alias.
9173 (output_weakrefs): Likewise.
9174 (finalize_compilation_unit): Do not call finish_aliases_1.
9175 * ipa.c (symtab_remove_unreachable_nodes): De not call
9176 remove_unreachable_alias_pairs.
9177 * varasm.c (do_assemble_alias): Export.
9178 (symbol_alias_set_create, symbol_alias_set_destroy,
9179 symbol_alias_set_contains, symbol_alias_set_insert,
9180 propagate_aliases_forward, propagate_aliases_backward,
9181 propagate_aliases_backward, trivially_visible_alias,
9182 trivially_defined_alias, remove_unreachable_alias_pairs,
9183 finish_aliases_1, finish_aliases_2, assemble_alias): Remove.
9184 * output.h (do_assemble_alias): Declare.
9185 * varpool.c (varpool_remove_unreferenced_decls): Do not call
9186 finish_aliases_1.
9187
9188 2012-05-23 Martin Jambor <mjambor@suse.cz>
9189
9190 * ipa-inline-analysis.c (inline_merge_summary): Free operand_map.
9191
9192 2012-05-23 Eric Botcazou <ebotcazou@adacore.com>
9193
9194 * gimple.c (gimple_types_compatible_p_1) <ARRAY_TYPE>: Remove bogus
9195 size handling.
9196 (gimple_canonical_types_compatible_p) <ARRAY_TYPE>: Likewise.
9197 (iterative_hash_gimple_type): Adjust comment.
9198 (iterative_hash_canonical_type): Likewise. Hash the bounds of the
9199 domain for an array type instead of the domain type itself.
9200
9201 2012-05-23 Richard Guenther <rguenther@suse.de>
9202
9203 PR tree-optimization/53438
9204 * tree-sra.c (analyze_access_subtree): Correct bitfield exclusion.
9205
9206 2012-05-23 Georg-Johann Lay <avr@gjlay.de>
9207
9208 PR target/53448
9209 * config/avr/avr.h (ASM_OUTPUT_ALIGN): Don't inhibit .p2align 1.
9210 * config/avr/elf.h (ASM_OUTPUT_BEFORE_CASE_LABEL): Use
9211 ASM_OUTPUT_ALIGN.
9212
9213 2012-05-23 Richard Guenther <rguenther@suse.de>
9214
9215 * tree-dfa.c (add_referenced_var_1): Do not add global vars.
9216 * tree-ssa-live.c (mark_all_vars_used_1): Handle global vars
9217 via the global_unused_vars bitmap.
9218 (remove_unused_locals): Handle global vars in local-decls via
9219 a global_unused_vars bitmap instead of the used flag in the
9220 var annotation. Simplify global variable handling and removal.
9221
9222 2012-05-22 Jan Hubicka <jh@suse.cz>
9223
9224 PR middle-end/53426
9225 * tree-ssa-structalias.c (create_variable_info_for): Skip constructors
9226 from other partitions.
9227
9228 2012-05-22 Jan Hubicka <jh@suse.cz>
9229
9230 PR middle-end/53161
9231 * symtab.c (symtab_register_node): Fix ordering issue.
9232
9233 2012-05-22 Steven Drake <sbd@NetBSD.org>
9234
9235 * gcc.c (do_spec_1): Add %M spec token to output multilib_os_dir.
9236
9237 2012-05-22 David Edelsohn <dje.gcc@gmail.com>
9238
9239 * config/rs6000/rs6000.c (rs6000_aix_asm_output_dwarf_table_ref):
9240 Use strip_name_encoding target hook.
9241
9242 2012-05-22 Richard Guenther <rguenther@suse.de>
9243
9244 * tree.h (VAR_DECL_IS_VIRTUAL_OPERAND): New.
9245 (init_function_for_compilation): Remove.
9246 * tree-dfa.c (find_vars_r): Take struct function argument.
9247 (find_referenced_vars_in): Adjust.
9248 * tree-ssa-operands.c (clobber_stats): Remove.
9249 (create_vop_var): Take struct function argument. Mark
9250 virtual operand with VAR_DECL_IS_VIRTUAL_OPERAND.
9251 (init_ssa_operands): Take struct function argument.
9252 (fini_ssa_operands): Do not dump dead stats.
9253 * tree-ssa-operands.h (init_ssa_operands): Take struct function
9254 argument.
9255 * cgraphunit.c (init_lowered_empty_function): Adjust.
9256 * lto-streamer-in.c (input_cfg): Likewise.
9257 * tree-inline.c (initialize_cfun): Likewise.
9258 * tree-into-ssa.c (rewrite_into_ssa): Likewise.
9259 * omp-low.c (expand_omp_taskreg): Likewise. Avoid switching cfun.
9260 * gimple.c (is_gimple_reg): Optimize the SSA_NAME case,
9261 virtual operands are not registers.
9262
9263 2012-05-22 Richard Guenther <rguenther@suse.de>
9264
9265 * tree-cfg.c (verify_gimple_assign_unary): Fix typo in previous commit.
9266
9267 2012-05-22 Richard Guenther <rguenther@suse.de>
9268
9269 PR middle-end/53437
9270 * tree-inline.c (setup_one_parameter): Create a dummy init
9271 statement for unused parameters when not optimizing.
9272
9273 2012-05-22 Richard Guenther <rguenther@suse.de>
9274
9275 * tree-flow.h (add_referenced_var_1): Declare.
9276 (add_referenced_var): Define.
9277 * tree-dfa.c (referenced_var_check_and_insert): Avoid one hash lookup.
9278 (add_referenced_var): Rename to ...
9279 (add_referenced_var_1): ... this. Take struct function argument.
9280
9281 2012-05-22 Ramana Radhakrishnan <ramana.radhakrishnan@linaro.org>
9282
9283 PR target/53334
9284 * config/arm/arm-protos.h (arm_validize_comparison): Declare.
9285 * config/arm/arm.c (arm_validize_comparison): Define.
9286 * config/arm/arm.md ("cbranchsi4"): Cleanup expansion and use
9287 arm_validize_comparison.
9288 ("cbranchdi4"): Likewise.
9289 ("cstoredi4"): Likewise.
9290 ("movsicc"): Likewise.
9291 ("movsfcc"): Likewise.
9292 ("movdfcc"): Likewise.
9293
9294 2012-05-22 Dimitrios Apostolou <jimis@gmx.net>
9295
9296 * df-scan.c (df_scan_alloc): Round up allocation pools size, reduce
9297 the mw_reg_pool size.
9298
9299 2012-05-22 Paolo Bonzini <bonzini@gnu.org>
9300
9301 PR tree-optimization/53336
9302 * tree-cfg.c (verify_gimple_assign_unary): Allow conversion from
9303 non-integer integral types to offset type and vice versa.
9304
9305 2012-05-22 Alan Modra <amodra@gmail.com>
9306
9307 * config/rs6000/aix.h (FP_SAVE_INLINE, GP_SAVE_INLINE): Delete.
9308 * config/rs6000/darwin.h (FP_SAVE_INLINE, GP_SAVE_INLINE): Delete.
9309 * config/rs6000/sysv4.h (FP_SAVE_INLINE, GP_SAVE_INLINE,
9310 V_SAVE_INLINE): Delete.
9311 * config/rs6000/rs6000.c (V_SAVE_INLINE): Delete.
9312 (rs6000_savres_strategy): Reimplement GP/FP/V_SAVE_INLINE logic.
9313 For ELF targets, use out-of-line restores for -Os and any number
9314 of regs if the restore exits, and out-of-line gp save for two or
9315 more regs. Use save_reg_p to test for holes in reg restore set.
9316 Replace "#if" with "if".
9317
9318 2012-05-22 Alan Modra <amodra@gmail.com>
9319
9320 * config/rs6000/rs6000.c (save_reg_p): New function.
9321 (first_reg_to_save, first_fp_reg_to_save): Use it here.
9322 (first_altivec_reg_to_save, restore_saved_cr): Likewise.
9323 (emit_frame_save): Use gen_frame_store.
9324 (gen_frame_mem_offset): Correct SPE condition requiring reg+reg.
9325 (rs6000_emit_prologue): Use save_reg_p. Use gen_frame_store for
9326 vrsave and toc.
9327 (rs6000_emit_epilogue): Use save_reg_p. Use gen_frame_load for
9328 vrsave, toc, gp and fp restores.
9329
9330 2012-05-22 Alan Modra <amodra@gmail.com>
9331
9332 * config/rs6000/rs6000.c: Delete unnecessary forward declarations.
9333 Move those with ATTRIBUTE_UNUSED to immediately before definitions.
9334 Move function pointer variables after forward declarations.
9335 (rs6000_builtin_support_vector_misalignment): Make static.
9336 (rs6000_legitimate_address_p, rs6000_gimplify_va_arg): Likewise.
9337 (rs6000_function_value, rs6000_can_eliminate): Likewise.
9338
9339 2012-05-21 Bernd Schmidt <bernds@codesourcery.com>
9340
9341 PR rtl-optimization/53373
9342 * caller-save.c (save_call_clobbered_regs): Look into a possible
9343 PARALLEL manually rather than using single_set on a call insn.
9344
9345 2012-05-21 Jakub Jelinek <jakub@redhat.com>
9346
9347 PR tree-optimization/53436
9348 * omp-low.c (omp_build_component_ref): New function.
9349 (build_receiver_ref, build_sender_ref, create_task_copyfn): Use it.
9350
9351 2012-05-21 Uros Bizjak <ubizjak@gmail.com>
9352
9353 * config/i386/i386.c (put_condition_code): Change "reverse" and "fp"
9354 arguments to bool.
9355 (ix86_print_operand) <case 'O'>: Look at mode size of the operand.
9356 Do not print '.' here. Output operand lossage error for unhandled
9357 sizes. Move.
9358 <case '*'>: Move.
9359 <case '&'>: Ditto.
9360 <case 'Y'>: Ditto.
9361 <case 'z'>: Hardcode "code" argument into error strings.
9362 <case 'Z'>: Ditto.
9363 <case 'D'>: Merge AVX and non-AVX codes.
9364 <case 'C', case 'c', case 'F', case 'f'>: Merge. Fix error string.
9365 Update call to put_condition_code.
9366
9367 2012-05-21 Andreas Schwab <schwab@linux-m68k.org>
9368
9369 * config/m68k/m68k.md (*clzsi2_cf): Renamed from clzsi2. Call
9370 CC_STATUS_INIT.
9371 (clzsi2): New expander.
9372 (*clzsi2_68k): New insn.
9373 * config/m68k/m68k.h: Update comment about CLZ_DEFINED_VALUE_AT_ZERO.
9374
9375 2012-05-21 Aldy Hernandez <aldyh@redhat.com>
9376
9377 * gimple.h (gimple_set_in_transaction): Remove.
9378 (gimple_in_transaction): Look in BB instead.
9379 (gimple_statement_base): Remove in_transaction field.
9380 * basic-block.h (enum bb_flags): Add BB_IN_TRANSACTION.
9381 * trans-mem.c (compute_transaction_bits): Place transaction bit
9382 information into basic blocks.
9383
9384 2012-05-21 Andreas Schwab <schwab@linux-m68k.org>
9385
9386 * expr.c (get_def_for_expr_class): Define only if
9387 HAVE_conditional_move.
9388 (convert_tree_comp_to_rtx): Likewise.
9389
9390 2012-05-21 Uros Bizjak <ubizjak@gmail.com>
9391
9392 PR target/53399
9393 * config/i386/i386.md (ffs<mode>2): Generate CCCmode compare
9394 for TARGET_BMI.
9395 (ffssi2_no_cmove): Ditto.
9396 (*ffs<mode>_1): Remove insn pattern.
9397 (*tzcnt<mode>_1): New insn pattern.
9398 (*bsf<mode>1): Ditto.
9399
9400 2012-05-21 Richard Guenther <rguenther@suse.de>
9401
9402 * tree-dfa.c (add_referenced_var): Do not walk DECL_INITIAL for
9403 more referenced vars.
9404 * tree-ssa-live.c (mark_all_vars_used_1): Only set the used
9405 flag on variables that have a var-annotation.
9406
9407 2012-05-21 Joseph Myers <joseph@codesourcery.com>
9408
9409 PR c/53418
9410 * c-typeck.c (build_conditional_expr): Remove C_MAYBE_CONST_EXPR
9411 from folded operands before wrapping another around the
9412 conditional expression.
9413
9414 2012-05-21 Jakub Jelinek <jakub@redhat.com>
9415
9416 PR tree-optimization/53366
9417 * tree-vect-slp.c (vect_supported_load_permutation_p): Don't shortcut
9418 tests if complex_numbers == 2, but there are non-complex number loads
9419 too.
9420
9421 PR tree-optimization/53409
9422 * tree-vect-loop.c (vect_analyze_loop_operations): Don't check
9423 vinfo_for_stmt (op_def_stmt) if op_def_stmt isn't inside loop.
9424
9425 PR tree-optimization/53410
9426 * fold-const.c (fold_binary_loc): Use build_zero_cst (type)
9427 instead of build_int_cst (type, 0) where vector types might be
9428 involved. Instead of build_int_cst (type, 1) convert the original
9429 integer_onep argument to the desired type.
9430
9431 2012-05-21 Michael Matz <matz@suse.de>
9432
9433 * genattrtab.c (attr_rtx_cost): Move earlier, start with cost being 1.
9434 (simplify_test_exp): Handle one more case of distributive law,
9435 decrease cost threshold.
9436 (tests_attr_p, get_attr_order): New functions.
9437 (optimize_attrs): Use topological order, inline only cheap values.
9438 (write_attr_set): Reset our_known_true after some time.
9439
9440 2012-05-21 H.J. Lu <hongjiu.lu@intel.com>
9441
9442 PR target/53425
9443 * config/i386/i386.c (type_natural_mode): Warn passing SSE
9444 vector argument without SSE enabled changes the ABI.
9445
9446 2012-05-21 Richard Guenther <rguenther@suse.de>
9447
9448 PR tree-optimization/53408
9449 * tree-vect-loop.c (vectorizable_induction): Properly check
9450 the restriction that we cannot handle induction results from
9451 the inner loop outside of the outer loop.
9452
9453 2012-05-21 H.J. Lu <hongjiu.lu@intel.com>
9454
9455 PR target/53416
9456 * config/i386/i386.md (UNSPEC_RDRAND): Renamed to ...
9457 (UNSPECV_RDRAND): This.
9458 (rdrand<mode>_1): Updated.
9459
9460 2012-05-21 Richard Guenther <rguenther@suse.de>
9461
9462 * tree-loop-distribution.c (can_generate_builtin): Reject
9463 volatile stmts.
9464
9465 2012-05-21 Chung-Lin Tang <cltang@codesourcery.com>
9466
9467 * Makefile.in (options.c): Add options.h to included header
9468 files, before tm.h.
9469
9470 2012-05-21 Razya Ladelsky <razya@il.ibm.com>
9471
9472 * tree-parloops.c : Add myself to contributors, update
9473 TODO list, add link to wiki.
9474
9475 2012-05-21 Alan Modra <amodra@gmail.com>
9476
9477 * config/rs6000/predicates.md (input_operand): Don't match
9478 constant pool addresses. Remove label_ref, high and plus from
9479 match_code list. Remove redundant CONSTANT_P test.
9480 (splat_input_operand): Similarly update match_code list.
9481 (small_toc_ref): New predicate.
9482 * config/rs6000/rs6000-protos.h (toc_relative_expr_p): Update prototype.
9483 * config/rs6000/rs6000.c (tocrel_base, tocrel_offset): Make const.
9484 (legitimate_constant_pool_address_p): Move TARGET_TOC test and
9485 register checks to..
9486 (toc_relative_expr_p): ..here. Add "strict" param. Match new rtl
9487 generated by create_TOC_reference.
9488 (rs6000_legitimize_address): Update cerate_TOC_reference call.
9489 (rs6000_delegitimize_address): Handle new rtl for toc refs.
9490 (rs6000_cannot_force_const_mem, rs6000_find_base_term): Likewise.
9491 (use_toc_relative_ref): New function, split out from..
9492 (rs6000_emit_move): ..here. Remove redundant tests. Update
9493 create_TOC_reference calls.
9494 (rs6000_legitimize_reload_address): Formatting. Handle splitting
9495 of medium/large model toc addresses. Use use_toc_relative_ref.
9496 (print_operand): Formatting, style. Adjust for toc changes.
9497 (print_operand_address): Likewise.
9498 (rs6000_output_addr_const_extra): Likewise.
9499 (create_TOC_reference): Put TOC_REGISTER in UNSPEC_TOCREL rather
9500 than a PLUS. Use this formulation for both high and low part
9501 of -mcmodel=medium/large toc reference too. Before reload,
9502 always use the small model formulation.
9503 * config/rs6000/rs6000.md (tls_gd, tls_gd_high): Similarly avoid
9504 a PLUS in high part of addresses here.
9505 (tls_ld, tls_ld_high, tls_got_dtprel, tls_got_dtprel_high): Likewise.
9506 (tls_got_tprel, tls_got_tprel_high, largetoc_high): Likewise.
9507 (largetoc_high, largetoc_low): Move earlier. Cope when no
9508 base reg available.
9509 (largetoc_high_plus): New insn.
9510 (movsi_internal1, movsi_internal1_single, movsf_softfloat,
9511 movdi_mfpgpr, movdi_internal64): Don't handle 'R' constraint here..
9512 (tocref): ..instead do so here, new insn and split.
9513
9514 2012-05-20 H.J. Lu <hongjiu.lu@intel.com>
9515
9516 * config/i386/driver-i386.c (host_detect_local_cpu): Support
9517 RDRND, F16C and FSGSBASE.
9518
9519 2012-05-20 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
9520
9521 PR rtl-optimzation/53373
9522 * config/pa/pa.md (call_symref_pic): Don't expose PIC register save in
9523 call pattern. Update split patterns.
9524 (call_symref_64bit, call_reg_pic, call_reg_64bit, call_val_symref_pic,
9525 call_val_symref_64bit, call_val_reg_pic, call_val_reg_64bit): Likewise.
9526
9527 2012-05-20 Razya Ladelsky <razya@il.ibm.com>
9528
9529 * tree-parloops.c (gen_parallel_loop): Change many_iterations_cond
9530 for outer loops.
9531
9532 2012-05-18 Jan Hubicka <jh@suse.cz>
9533
9534 * cgraphunit.c (handle_alias_pairs): Declare; free alias_pairs
9535 (cgraph_process_new_functions): Process also aliases.
9536 * lto-streamer-out.c (struct sets): Remove.
9537 (trivally_defined_alias): Remove.
9538 (output_alias_pair_p): Remove.
9539 (output_unreferenced_globals): Remove.
9540 (produce_symtab); Do not handle alias pairs.
9541 (produce_asm_for_decls): Likewise.
9542 * lto-streamer-in.c (input_alias_pairs): Remove.
9543 (lto_read_body): Do not input alias pairs.
9544 (lto_input_constructors_and_inits): Remove.
9545
9546 2012-05-18 Jan Hubicka <jh@suse.cz>
9547
9548 * cgraphunit.c (handle_alias_pairs): Cleanup; handle all types of
9549 aliases.
9550
9551 2012-05-18 Jan Hubicka <jh@suse.cz>
9552
9553 * cgraphbuild.c (record_reference): Update.
9554 * lto-cgraph.c (lto_output_varpool_node): External vars
9555 are not in other partition even if they are not output
9556 in current partition.
9557 * gimple-fold.c (can_refer_decl_in_current_unit_p): Take FROM_DECL
9558 argument; fix.
9559 (canonicalize_constructor_val): Take FROM_DECL argument.
9560 (fold_ctor_reference, fold_string_cst_ctor_reference,
9561 fold_array_ctor_reference, fold_nonarray_ctor_reference,
9562 fold_ctor_reference): Likewise.
9563 (fold_const_aggregate_ref_1, gimple_get_virt_method_for_binfo): Update.
9564 * gimple.h (gimple_fold_builtin): Likewise.
9565
9566 2012-05-18 Olivier Hainque <hainque@adacore.com>
9567
9568 * Makefile.in (FLAGS_TO_PASS): Pass $(libexecsubdir) instead of
9569 $(libsubdir) as libexecsubdir.
9570
9571 2012-05-18 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
9572
9573 * config/rs6000/rs6000.c (print_operand): Revise code that unsafely
9574 relied on signed overflow behavior.
9575
9576 2012-05-18 Richard Guenther <rguenther@suse.de>
9577
9578 PR tree-optimization/53346
9579 * tree-loop-distribution.c (ldist_gen): Make sure to apply
9580 builtin transform even when only a single partition with
9581 all reads/writes exists.
9582
9583 2012-05-18 Richard Guenther <rguenther@suse.de>
9584
9585 PR tree-optimization/53390
9586 * tree-vect-data-refs.c (vect_compute_data_ref_alignment): Ignore
9587 strided loads.
9588
9589 2012-05-18 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
9590
9591 * tree-ssa-reassoc.c (bip_map): Remove decl.
9592 (completely_remove_stmt): Remove function.
9593 (remove_def_if_absorbed_call): Remove function.
9594 (remove_visited_stmt_chain): Remove __builtin_powi handling.
9595 (possibly_move_powi): Remove function.
9596 (rewrite_expr_tree): Remove calls to possibly_move_powi.
9597 (rewrite_expr_tree_parallel): Likewise.
9598 (attempt_builtin_powi): Build multiplies explicitly rather than
9599 relying on the ops vector and rank system.
9600 (transform_stmt_to_copy): New function.
9601 (transform_stmt_to_multiply): Likewise.
9602 (reassociate_bb): Handle leftover operations after __builtin_powi
9603 optimization; build a final multiply if necessary.
9604
9605 2012-05-18 Jan Hubicka <jh@suse.cz>
9606
9607 * cgraphunit.c (varpool_finalize_decl): Allow external decls.
9608 (mark_functions_to_output): Fix sanity check.
9609 * ipa.c (function_and_variable_visibility): Remove TREE_STATIC check.
9610
9611 2012-05-18 Richard Guenther <rguenther@suse.de>
9612
9613 * tree-flow.h (mark_symbols_for_renaming): Remove.
9614 * tree-dfa.c (mark_symbols_for_renaming): Likewise.
9615 * tree-inline.c (copy_edges_for_bb): Do not mark symbols for renaming.
9616 (copy_debug_stmt): Likewise.
9617 (expand_call_inline): Likewise.
9618 (declare_return_variable): Mark the return variable for renaming
9619 if necessary.
9620
9621 2012-05-18 Andrew Stubbs <ams@codesourcery.com>
9622
9623 * config/arm/arm-protos.h (arm_emit_coreregs_64bit_shift): New
9624 prototype.
9625 * config/arm/arm.c (arm_emit_coreregs_64bit_shift): New function.
9626 * config/arm/arm.md (ashldi3): Use arm_emit_coreregs_64bit_shift.
9627 (ashrdi3,lshrdi3): Likewise.
9628 (arm_cond_branch): Remove '*' to enable gen_arm_cond_branch.
9629
9630 2012-05-18 Meador Inge <meadori@codesourcery.com>
9631
9632 PR rtl-optimization/53352
9633 * cse.c (equiv_constant): Ignore paradoxical subregs.
9634
9635 2012-05-17 Steven Bosscher <steven@gcc.gnu.org>
9636
9637 PR rtl-optimization/53125
9638 * regstat.c (regstat_bb_compute_ri): Take new local_live_last_luid
9639 argument. Simplify calculation of REG_LIVE_LENGTH for regnos that
9640 die in the basic block. Correctly top off REG_FREQ and
9641 REG_FREQ_CALLS_CROSSED.
9642 Remove do_not_gen.
9643 (regstat_compute_ri): Allocate and free local_live_last_luid.
9644 Remove do_not_gen.
9645 (regstat_bb_compute_calls_crossed): Correctly top off
9646 REG_FREQ_CALLS_CROSSED.
9647
9648 2012-05-17 Jan Hubicka <jh@suse.cz>
9649
9650 * lto-symtab.c (lto_symtab_resolve_symbols): Preffer decl with
9651 constructor over decl without.
9652 * cgraph.c (cgraph_remove_node): Clear also body of unanalyzed nodes.
9653 * cgraph.h (varpool_can_remove_if_no_refs): Handle external correctly.
9654 * cgraphunit.c (process_function_and_variable_attributes): Finalize
9655 extrnal decls.
9656 (mark_functions_to_output): Also accept bodies for functions with
9657 clones.
9658 (output_in_order): Skip external vars.
9659 * lto-cgraph.c (lto_output_node): External functions are never in other
9660 partition.
9661 (lto_output_varpool_node): Likewise.
9662 * lto-streamer-out.c (lto_write_tree): Always use error_mark_nodes for
9663 forgotten initializers.
9664 * ipa.c (process_references): Handle external vars.
9665 (symtab_remove_unreachable_nodes): Update to handle external vars.
9666 (varpool_externally_visible_p): External vars are externally visible.
9667 * gimple-fold.c (can_refer_decl_in_current_unit_p): Update.
9668 * varpool.c (varpool_remove_node): Remove constructor.
9669 (decide_is_variable_needed): Handle externals.
9670 (varpool_remove_unreferenced_decls): Likewise.
9671
9672 2012-05-17 Manuel López-Ibáñez <manu@gcc.gnu.org>
9673
9674 * opts.c (common_handle_option): -pedantic-errors enables -Wpedantic.
9675 (enable_warning_as_error): Do not special case Wuninitialized.
9676 * optc-gen.awk: Add sanity checks.
9677
9678 2012-05-17 Jan Hubicka <jh@suse.cz>
9679
9680 * ipa-reference.c (is_proper_for_analysis): Do not check flags
9681 that might change as result of global optimization.
9682 (analyze_function): Do not check analyzed and externally_visible
9683 flags; be happy about address dereferences.
9684 (propagate): Prune all_module_statics so it really contains just
9685 statics; prune all the local summaries.
9686 (ipa_reference_write_optimization_summary): Simplify.
9687
9688 2012-05-17 Kwok Cheung Yeung <kcy@codesourcery.com>
9689
9690 * config/m68k/m68k-devices.def: Add 51ag, 51je, 51jf, 51jg, 51mm, 51qm.
9691 * config/m68k/m68k-tables.opt: Regenerated.
9692 * doc/invoke.texi (M680x0 Options): Document.
9693
9694 2012-05-16 Dave Boutcher <daveboutcher@gmail.com>
9695 Patrick Marlier <patrick.marlier@gmail.com>
9696
9697 * trans-mem.c (ipa_tm_transform_clone): Transform functions with
9698 indirect calls.
9699
9700 2012-05-16 H.J. Lu <hongjiu.lu@intel.com>
9701
9702 * configure: Regenerated.
9703
9704 2012-05-16 Andrew Pinski <apinski@cavium.com>
9705
9706 * gimple-fold.c (get_maxval_strlen): Move COND_EXPR handling under
9707 GIMPLE_ASSIGN.
9708
9709 2012-05-16 David S. Miller <davem@davemloft.net>
9710
9711 * jump.c (delete_related_insns): If we remove a CALL, make sure
9712 we delete it's NOTE_INSN_CALL_ARG_LOCATION note too.
9713
9714 2012-05-16 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
9715
9716 PR tree-optimization/53217
9717 * tree-ssa-reassoc.c (bip_map): New static variable.
9718 (possibly_move_powi): Move feeding multiplies with __builtin_powi call.
9719 (attempt_builtin_powi): Save feeding multiplies on a stack.
9720 (reassociate_bb): Create and destroy bip_map.
9721
9722 2012-05-16 Olivier Hainque <hainque@adacore.com>
9723
9724 * Makefile.in (install-no-fixedincludes): New target, former toplevel
9725 gcc-no-fixedincludes. Stash "include-fixed" in addition to "include".
9726 Add comments and improve stamp preservation across the whole sequence.
9727 (stmp-int-hdrs): Use move-if-change + cp -p to setup fix_dir/limits.h.
9728
9729 2012-05-16 Richard Guenther <rguenther@suse.de>
9730
9731 * tree-inline.c (insert_init_stmt): Do not call
9732 mark_symbols_for_renaming.
9733 (setup_one_parameter): Avoid initializing unused parameters.
9734 (declare_return_variable): Properly handle DECL_BY_REFERENCE
9735 return vars in SSA form.
9736
9737 2012-05-16 Richard Guenther <rguenther@suse.de>
9738
9739 * tree-flow.h (get_virtual_var): Remove.
9740 * tree-dfa.c (get_virtual_var): Likewise.
9741
9742 2012-05-16 Richard Guenther <rguenther@suse.de>
9743
9744 * tree-vect-loop-manip.c (slpeel_update_phi_nodes_for_guard1):
9745 Remove set-only bitmap of new names.
9746 (slpeel_tree_peel_loop_to_edge): Likewise. Do not set
9747 CFG hooks.
9748 * tree-flow.h (ssa_names_to_replace): Remove.
9749 * tree-into-ssa.c (ssa_names_to_replace): Likewise.
9750
9751 2012-05-16 Richard Guenther <rguenther@suse.de>
9752
9753 PR tree-optimization/53364
9754 * tree-ssa-alias.c (indirect_ref_may_alias_decl_p): Properly
9755 detect a view-conversion of the decl.
9756
9757 2012-05-16 Dodji Seketeli <dodji@redhat.com>
9758
9759 PR preprocessor/7263
9760 * c-tree.h (enum c_declspec_word): Declare new enum.
9761 (struct c_declspecs::locations): New member.
9762 (declspecs_add_qual, declspecs_add_scspec)
9763 (declspecs_add_addrspace, declspecs_add_alignas): Take a new
9764 location parameter.
9765 * c-decl.c (build_null_declspecs): Initialize the new struct
9766 c_declspecs::locations member.
9767 (declspecs_add_addrspace): Take a location parameter for the
9768 address space. Store it onto declaration specifiers.
9769 (declspecs_add_qual): Likewise, take a location parameter for the
9770 qualifier.
9771 (declspecs_add_type): Likewise, take a location parameter for the
9772 type specifier.
9773 (declspecs_add_scspec): Likewise, take a location parameter for
9774 the storage class specifier.
9775 (declspecs_add_attrs): Likewise, take a location parameter for the
9776 first attribute.
9777 (declspecs_add_alignas): Likewise, take a location parameter for
9778 the alignas token.
9779 (finish_declspecs): For diagnostics, use the location of the
9780 relevant declspec, instead of the global input_location.
9781 * c-parser.c (c_parser_parameter_declaration): Pass the precise
9782 virtual location of the declspec to the declspecs-setters.
9783 (c_parser_declspecs): Likewise. Avoid calling c_parser_peek_token
9784 repeatedly.
9785
9786 2012-05-16 Igor Zamyatin <igor.zamyatin@intel.com>
9787
9788 * configure.ac: Stack protector enabling for Android targets.
9789 * configure: Regenerate.
9790
9791 2012-05-16 Richard Sandiford <r.sandiford@uk.ibm.com>
9792
9793 * ira.c (pseudo_move_insn): Delete.
9794 (find_moveable_pseudos): Don't set it.
9795 (move_unallocated_pseudos): Use DF_REG_DEF_CHAIN to find
9796 the definitions of the original pseudo. Delete all of them.
9797
9798 2012-05-16 Olivier Hainque <hainque@adacore.com>
9799
9800 * config/rs6000/rs6000-opts.h (enum processor_type): Add
9801 PROCESSOR_PPC8548.
9802 * config/rs6000/rs6000-cpus.def: Reference it for cpu="8548".
9803 * config/rs6000/rs6000.md (cpu attribute definition): Add ppc8548.
9804 * config/rs6000/8540.md: indicate that the units/patterns apply to
9805 ppc8548 as well.
9806
9807 * config/rs6000/rs6000.c (rs6000_option_override_internal): Rename
9808 default_cpu into implicit_cpu, conveying what --with-cpu was passed at
9809 configure time. Treat implicit_cpu as have_CPU. Pick defaults for SPE
9810 related flags, check that what is queried is supported by the selected
9811 configuration. Rework the single/double_float and MASK_STRING resets to
9812 hit for all the E500 cores (854x + E500MC variants). Select the ppc8540
9813 costs for PROCESSOR_PPC8548 as well.
9814 (rs6000_issue_rate): case CPU_PPC8548 together with CPU_PPC8540.
9815 (rs6000_use_sched_lookahead): Likewise, rewriting function as a case
9816 statement instead of a sequence of ifs.
9817
9818 * config/rs6000/rs6000.h (TARGET_E500): Remove.
9819 (TARGET_NO_LWSYNC): Adjust accordingly.
9820 * config/rs6000/e500.h (TARGET_E500): Remove.
9821 (CHECK_E500_OPTIONS): Adjust accordingly.
9822 * config/rs6000/eabispe.h (SUBSUBTARGET_OVERRIDE_OPTIONS): Remove.
9823 (TARGET_DEFAULT): Reformat definition to match the one in linuxspe.h.
9824 * config/rs6000/linuxspe.h: Likewise.
9825 * config/rs6000/vxworks.h: Remove bogus TARGET_E500 overrides and
9826 superfluous comments.
9827 * config/rs6000/e500-double.h: Remove.
9828
9829 * config.gcc (pick a default with_cpu): For powerpc*-*-*spe*,
9830 default to with_cpu=8548 if --enable-e500-double, and to 8540
9831 otherwise.
9832 (set misc flags section): For powerpc*|rs6000*, remove inclusion
9833 of e500-double.h for --enable-e500-double.
9834
9835 2012-05-16 Olivier Hainque <hainque@adacore.com>
9836
9837 * Makefile.in (s-header-vars): Resort to -n instead of trailing
9838 -e d in sed invocation.
9839
9840 2012-05-16 Hans-Peter Nilsson <hp@axis.com>
9841
9842 * doc/tm.texi.in (Type Layout) <SIZE_TYPE>: Update reference to
9843 source-code.
9844 * doc/tm.texi: Regenerate.
9845
9846 2012-05-15 Paolo Carlini <paolo.carlini@oracle.com>
9847
9848 * tree.h (EXPR_LOCATION): Use CAN_HAVE_LOCATION_P.
9849
9850 2012-05-15 Jakub Jelinek <jakub@redhat.com>
9851
9852 PR target/53358
9853 * config/i386/i386.md (*addqi_2 peephole with QImode addition): Check
9854 that operands[2] is either immediate, or q_regs_operand.
9855
9856 2012-05-15 Richard Guenther <rguenther@suse.de>
9857
9858 * cgraphunit.c (thunk_adjust): Use make_rename_temp.
9859 (assemble_thunk): Likewise. Manually rename and register
9860 function arguments.
9861
9862 2012-05-15 Richard Guenther <rguenther@suse.de>
9863
9864 PR tree-optimization/53355
9865 * tree-vrp.c (extract_range_from_binary_expr_1): Handle LSHIFT_EXPRs
9866 by constants.
9867
9868 2012-05-15 Tristan Gingold <gingold@adacore.com>
9869
9870 * tree-ssa-strlen.c (get_string_length): Convert lhs if needed.
9871
9872 2012-05-15 Richard Guenther <rguenther@suse.de>
9873
9874 * gimple.c (gimple_set_modified): Move ...
9875 * gimple.h (gimple_set_modified): ... here.
9876
9877 2012-05-15 Tristan Gingold <gingold@adacore.com>
9878
9879 * ira-color.c (move_spill_restore): Add a guard.
9880
9881 2012-05-15 Tristan Gingold <gingold@adacore.com>
9882
9883 * config/ia64/ia64.c (ia64_emit_probe_stack_range): Adjust calls to
9884 plus_constant.
9885
9886 2012-05-15 Eric Botcazou <ebotcazou@adacore.com>
9887
9888 * gimplify.c (gimplify_init_constructor): Do a block move for very
9889 small objects as well.
9890
9891 2012-05-15 Bernd Schmidt <bernds@codesourcery.com>
9892
9893 * ira.c (find_moveable_pseudos): Skip registers whose
9894 DF_REG_EQ_USE_COUNT is nonzero.
9895
9896 2012-05-15 Kenneth Zadeck <zadeck@naturalbridge.com>
9897
9898 * doc/md.texi (fma): Define to only be applicable for single rounding.
9899
9900 2012-05-14 Uros Bizjak <ubizjak@gmail.com>
9901
9902 PR target/46098
9903 * config/i386/i386.c (ix86_expand_special_args_builtin): Always
9904 generate target register for "load" class builtins.
9905
9906 Revert:
9907 2010-10-22 Uros Bizjak <ubizjak@gmail.com>
9908
9909 PR target/46098
9910 * config/i386/sse.md (*avx_movu<ssemodesuffix><avxmodesuffix>):
9911 Rename from avx_movu<ssemodesuffix><avxmodesuffix>.
9912 (avx_movu<ssemodesuffix><avxmodesuffix>): New expander.
9913 (*<sse>_movu<ssemodesuffix>): Rename from <sse>_movu<ssemodesuffix>.
9914 (<sse>_movu<ssemodesuffix>): New expander.
9915 (*avx_movdqu<avxmodesuffix>): Rename from avx_movdqu<avxmodesuffix>.
9916 (avx_movdqu<avxmodesuffix>): New expander.
9917 (*sse2_movdqu): Rename from sse2_movdqu.
9918 (sse2_movdqu): New expander.
9919
9920 2012-05-14 Marc Glisse <marc.glisse@inria.fr>
9921
9922 PR target/52607
9923 * config/i386/i386.c (ix86_expand_vec_perm_const): Move code to ...
9924 (canonicalize_perm): ... new function.
9925 (expand_vec_perm_2vperm2f128_vshuf): New function.
9926 (ix86_expand_vec_perm_const_1): Call it.
9927
9928 2012-05-14 Andrew Pinski <apinski@cavium.com>
9929 H.J. Lu <hongjiu.lu@intel.com>
9930 Jakub Jelinek <jakub@redhat.com>
9931
9932 PR target/53315
9933 * config/i386/i386.md (xbegin_1): Use + in constraint and match_dup.
9934 (xbegin): Updated.
9935
9936 2012-05-14 Jakub Jelinek <jakub@redhat.com>
9937
9938 * dwarf2out.c (dwarf2out_define, dwarf2out_undef): Treat
9939 lineno 1 the same as lineno 0 before first start file directive.
9940 (optimize_macinfo_range): Likewise.
9941
9942 * dwarf2out.c (have_macinfo): Define.
9943 (dwarf2out_finish): Don't emit DW_AT_GNU_macros or DW_AT_macro_info
9944 attribute, don't force empty compilation unit and don't emit any
9945 .debug_macinfo/.debug_macro section if macinfo_table is empty.
9946
9947 2012-05-14 Georg-Johann Lay <avr@gjlay.de>
9948
9949 PR target/53344
9950 * config/avr/avr.c (avr_const_address_lo16): Remove.
9951 (avr_assemble_integer): Print ".byte lo8(x)",
9952 ".byte hi8(x)", ".byte hh8(x)" instead of emit an assembler
9953 .warning if 3-byte address is assembled.
9954 * doc/extend.texi (AVR Named Address Spaces): Document that
9955 binutils 2.23 is needed to assemble 3-byte addresses.
9956
9957 2012-05-14 Richard Guenther <rguenther@suse.de>
9958
9959 * tree-vect-data-refs.c (vect_setup_realignment): Remove
9960 call to mark_symbols_for_renaming.
9961 (vect_permute_load_chain): Likewise.
9962 * tree-vect-loop.c (vect_is_slp_reduction): Update stmt
9963 instead of calling mark_symbols_for_renaming.
9964 * tree-vect-stmts.c (read_vector_array): Remove call to
9965 mark_symbols_for_renaming.
9966 (write_vector_array): Likewise.
9967 (vectorizable_call): Likewise.
9968 (vectorizable_store): Likewise.
9969 (vectorizable_load): Likewise.
9970 * matrix-reorg.c (transform_allocation_sites): Likewise.
9971 * tree-ssa-pre.c (create_expression_by_pieces): Likewise.
9972 (create_expression_by_pieces): Likewise.
9973
9974 2012-05-14 Richard Guenther <rguenther@suse.de>
9975
9976 * gimplify.c (gimple_regimplify_operands): Only mark the LHS
9977 of statements for renaming.
9978 (force_gimple_operand_1): Likewise, consistently for both
9979 calls to force_gimple_operand and force_gimple_operand_gsi.
9980
9981 2012-05-14 Richard Guenther <rguenther@suse.de>
9982
9983 * tree-dfa.c (make_rename_temp): Be forgiving if not in SSA form.
9984 * omp-low.c (expand_omp_taskreg): Properly conditionalize call
9985 to update_ssa.
9986 (expand_omp_for): Likewise.
9987 (expand_omp_for_generic): Adjust conditional add to referenced vars.
9988 Use make_rename_temp for temporaries that should be rewritten into
9989 SSA form.
9990 (expand_omp_for_static_nochunk): Likewise.
9991 (expand_omp_atomic_pipeline): Likewise.
9992
9993 2012-05-14 Richard Guenther <rguenther@suse.de>
9994
9995 PR tree-optimization/53331
9996 * tree-vect-data-refs.c (vect_verify_datarefs_alignment): Ignore
9997 strided loads.
9998 * tree-vect-stmts.c (vect_model_load_cost): Handle strided loads.
9999
10000 2012-05-14 Manuel López-Ibáñez <manu@gcc.gnu.org>
10001
10002 PR 53063
10003 * doc/options.texi: (LangEnabledBy): Document it.
10004 * optc-gen.awk: Handle LangEnabledBy.
10005 * opth-gen.awk: Generate declaration for lang-specific functions.
10006 * opt-read.awk: Record lang numbers.
10007 * opt-functions.awk (flag_set_p): Ignore the arguments of flags.
10008 (lang_sanitized_name): New.
10009
10010 2012-05-14 Bernd Schmidt <bernds@codesourcery.com>
10011
10012 * attribs.c (decl_attributes): Avoid emitting a warning if
10013 ATTR_FLAG_BUILT_IN.
10014 * doc/rtl.texi (CALL_INSN_FUNCTION_USAGE): Use lowercase for rtx
10015 codes. Document meaning of sets inside CALL_INSN_FUNCTION_USAGE.
10016 * builtin-attrs.def (DEF_ATTR_FOR_STRING): Define. Use it to
10017 define a string "1".
10018 (ATTR_RET1_NOTHROW_NONNULL_LEAF): New attr definition.
10019 * builtins.def (BUILT_IN_MEMCPY, BUILT_IN_MEMMOVE, BUILT_IN_MEMSET,
10020 BUILT_IN_STRCPY): Use it for these functions.
10021 * postreload.c (reload_combine): Deal with SETs inside
10022 CALL_INSN_FUNCTION_USAGE.
10023 * caller-save.c (setup_save_areas, save_call_clobbered_regs):
10024 Look for REG_RETURNED notes and use a cheap restore if possible.
10025 * ira-int.h (struct ira_allocno): New member cheap_calls_crossed_num.
10026 (ALLOCNO_CHEAP_CALLS_CROSSED_NUM): New macro.
10027 * ira-build.c (ira_create_allocno, create_cap_allocno,
10028 propagate_allocno_info, propagate_some_info_from_allocno,
10029 copy_info_to_removed_store_destination, ira_flattening): Handle it.
10030 * ira-lives.c (pseudo_regno_single_word_and_live_p,
10031 find_call_crossed_cheap_reg): New static functions.
10032 (process_bb_node_lives): Look for SETs in CALL_INSN_FUNCTION_USAGE,
10033 and set ALLOCNO_CHEAP_CALLS_CROSSED_NUM if possible. Also make
10034 a REG_RETURNED note in that case.
10035 * ira.c (setup_reg_renumber): Change assert to allow cases where
10036 allocnos only cross calls for which they are cheap to restore.
10037 * ira-costs.c (ira_tune_allocno_costs): Compare
10038 ALLOCNO_CALLS_CROSSED_NUM to ALLOCNO_CHEAP_CALLS_CROSSED_NUM rather
10039 than 0.
10040 * reg-notes.def (REG_RETURNED): New note.
10041 * cse.c (cse_insn): Likewise.
10042 * sched-deps.c (sched_analyze_insn): Likewise.
10043 * expr.c (init_block_move_fn): Set a "fn spec" attribute.
10044 * calls.c (decl_return_flags): New static function.
10045 (expand_call): Generate a SET in CALL_INSN_FUNCTION_USAGE for
10046 functions that return one of their arguments.
10047 * regcprop.c (struct kill_set_value_data): New.
10048 (kill_set_value): Interpret data as a pointer to such a struct.
10049 Do nothing if the caller wants the register to be ignored.
10050 (copyprop_hardreg_forward_1): Handle SETs in CALL_INSN_FUNCTION_USAGE.
10051
10052 2012-05-14 Richard Guenther <rguenther@suse.de>
10053
10054 PR tree-optimization/53340
10055 * tree-ssa-pre.c (op_valid_in_sets): Fix error in last commit.
10056
10057 2012-05-14 Richard Guenther <rguenther@suse.de>
10058
10059 * gimplify.c (gimplify_expr): Remove odd code.
10060
10061 2012-05-14 Eric Botcazou <ebotcazou@adacore.com>
10062
10063 * stor-layout.c (bit_from_pos): Distribute conversion to bitsizetype
10064 into a PLUS_EXPR byte offset.
10065
10066 * tree-ssa-pre.c (can_value_number_call): Delete.
10067 (compute_avail): Skip all statements with side effects.
10068 <GIMPLE_CALL>: Skip calls to internal functions.
10069
10070 2012-05-13 Steven Bosscher <steven@gcc.gnu.org>
10071
10072 * config/pa/pa.md: Use define_c_enum for "unspec" and "unspecv".
10073
10074 2012-05-13 Manuel López-Ibáñez <manu@gcc.gnu.org>
10075
10076 * common.opt (Wtype-limits): Use EnabledBy.
10077
10078 2012-05-13 Uros Bizjak <ubizjak@gmail.com>
10079
10080 * config/i386/i386.md (*pushtf): Enable for TARGET_SSE.
10081 (pushtf splitter): Ditto.
10082 (movtf): Ditto.
10083 (*movtf_internal): Ditto. Use V4SFmode for !TARGET_SSE2.
10084 (<code>tf2): Enable for TARGET_SSE.
10085 (*absnegtf2_sse): Ditto.
10086 (copysign<mode>3): Enable TFmode for TARGET_SSE.
10087 (copysign<mode>3_const): Ditto.
10088 (copysign<mode>3_var): Ditto.
10089 * config/i386/sse.md (<code>tf3): Enable for TARGET_SSE.
10090 (*andnottf3): Ditto. Use V4SFmode for !TARGET_SSE2.
10091 (*<code>tf3): Ditto.
10092 * config/i386/i386.c (struct builtin_description bdesc_args)
10093 <IX86_BUILTIN_FABSQ>: Enable for TARGET_SSE.
10094 <IX86_BUILTIN_COPYSIGNQ>: Ditto.
10095 (ix86_expand_builtin) <IX86_BUILTIN_FABSQ, IX86_BUILTIN_COPYSIGNQ>:
10096 Emit a normal call if SSE isn't available.
10097
10098 2012-05-13 Uros Bizjak <ubizjak@gmail.com>
10099
10100 * config/i386/sse.md (<sse>_andnot<mode>3): Handle
10101 TARGET_SSE_PACKED_SINGLE_INSN_OPTIMAL.
10102 (<code><mode>3): Ditto.
10103 (*andnot<mode>3): Ditto.
10104 (*andnottf3): Ditto.
10105 (*<code><mode>3): Ditto.
10106 (<code>tf3): Ditto.
10107
10108 2012-05-13 Manuel López-Ibáñez <manu@gcc.gnu.org>
10109
10110 * optc-gen.awk: Error instead of warning for conflicting help.
10111
10112 2012-05-12 Jason Merrill <jason@redhat.com>
10113
10114 PR debug/53235
10115 * dwarf2out.c (build_local_stub): Prefer DW_AT_signature for
10116 comdat types.
10117
10118 2012-05-12 Eric Botcazou <ebotcazou@adacore.com>
10119
10120 * function.c (requires_stack_frame_p): If the function can throw
10121 non-call exceptions, return true if the insn can throw internally.
10122
10123 2012-05-12 Paolo Carlini <paolo.carlini@oracle.com>
10124
10125 * doc/generic.texi: Rename TYPE_PTRMEM_P to TYPE_PTRDATAMEM_P.
10126
10127 2012-05-12 Uros Bizjak <ubizjak@gmail.com>
10128
10129 * config/alpha/alpha.c (alpha_emit_conditional_branch): Handle
10130 ORDERED and UNORDERED conditions.
10131
10132 2012-05-11 Richard Guenther <rguenther@suse.de>
10133
10134 * tree-flow.h (referenced_var_check_and_insert): Remove.
10135 (find_new_referenced_vars): Likewise.
10136 * tree-dfa.c (referenced_var_check_and_insert): Make static.
10137 (find_new_referenced_vars_1, find_new_referenced_vars): Remove.
10138 * tree-inline.c (copy_bb): Use find_referenced_vars_in
10139 instead of find_new_referenced_vars.
10140 * gimple-fold.c (gimplify_and_update_call_from_tree): Likewise.
10141
10142 2012-05-11 Richard Guenther <rguenther@suse.de>
10143
10144 * tree-pass.h (pass_rest_of_compilation,
10145 pass_all_optimizations, pass_postreload, pass_all_early_optimizations):
10146 Remove.
10147 * passes.c (pass_all_optimizations, pass_postreload,
10148 pass_all_early_optimizations): Make static.
10149 (pass_rest_of_compilation): Likewise. Make it an RTL_PASS.
10150 * tree-phinodes.c (init_phinodes, fini_phinodes): Remove.
10151 * tree-ssa.c (init_tree_ssa): Do not call init_phinodes.
10152 (delete_tree_ssa): Do not call fini_phinodes.
10153 * tree-flow.h (init_phinodes, fini_phinodes): Remove.
10154
10155 2012-05-11 Manuel López-Ibáñez <manu@gcc.gnu.org>
10156
10157 PR 53063
10158 * doc/options.texi (EnabledBy): Document
10159 * opts.c: Include opts.h and options.h before tm.h.
10160 (finish_options): Do not handle some sub-options here...
10161 (common_handle_option): ... instead call common_handle_option_auto
10162 here.
10163 * optc-gen.awk: Handle EnabledBy.
10164 * opth-gen.awk: Declare common_handle_option_auto.
10165 * common.opt (Wuninitialized): Use EnabledBy. Delete Init.
10166 (Wmaybe-uninitialized): Likewise.
10167 (Wunused-but-set-variable): Likewise.
10168 (Wunused-function): Likewise.
10169 (Wunused-label): Likewise.
10170 (Wunused-value): Likewise.
10171 (Wunused-variable): Likewise.
10172 * opt-read.awk: Create opt_numbers array.
10173
10174 2012-05-11 Richard Guenther <rguenther@suse.de>
10175
10176 PR tree-optimization/53295
10177 * tree-data-ref.h (stride_of_unit_type_p): Handle non-constant
10178 strides.
10179 * tree-data-ref.c (dr_analyze_innermost): Allow non-constant
10180 strides when analyzing data-references in a loop context.
10181 * tree-vect-data-refs.c (vect_mark_for_runtime_alias_test): Reject
10182 non-constant strides for now.
10183 (vect_enhance_data_refs_alignment): Ignore data references
10184 that are strided loads.
10185 (vect_analyze_data_ref_access): Handle non-constant strides.
10186 (vect_check_strided_load): Verify the data-reference is a load.
10187 (vect_analyze_data_refs): Restructure to make strided load
10188 support not dependent on gather support.
10189 * tree-vect-stmts.c (vectorizable_load): Avoid useless work
10190 when doing strided or gather loads.
10191 * tree-vect-loop-manip.c (vect_vfa_segment_size): Use
10192 integer_zerop to compare stride with zero.
10193
10194 2012-05-11 H.J. Lu <hongjiu.lu@intel.com>
10195
10196 * config/i386/driver-i386.c (host_detect_local_cpu): Support RTM.
10197
10198 2012-05-11 Jan Hubicka <jh@suse.cz>
10199
10200 PR bootstrap/53300
10201 * varpool.c (varpool_assemble_decl): Also output constat pool entries
10202 that output_constant_pool missed.
10203
10204 2012-05-11 Mingjie Xing <mingjie.xing@gmail.com>
10205
10206 * config/mips/t-vxworks: Change MUTLILIB_EXTRA_OPTS to
10207 MULTILIB_EXTRA_OPTS.
10208
10209 2012-05-11 Uros Bizjak <ubizjak@gmail.com>
10210
10211 PR target/53291
10212 * config/i386/i386.md (xtest): Use NE condition in ix86_expand_setcc.
10213
10214 2012-05-11 Uros Bizjak <ubizjak@gmail.com>
10215
10216 * config/i386/i386.md (*movti_internal_rex64): Avoid MOVAPS size
10217 optimization for TARGET_AVX.
10218 (*movti_internal_sse): Ditto.
10219 (*movdi_internal_rex64): Handle TARGET_SSE_PACKED_SINGLE_INSN_OPTIMAL.
10220 (*movdi_internal): Ditto.
10221 (*movsi_internal): Ditto.
10222 (*movtf_internal): Avoid MOVAPS size optimization for TARGET_AVX.
10223 (*movdf_internal_rex64): Ditto.
10224 (*movfd_internal): Ditto.
10225 (*movsf_internal): Ditto.
10226 * config/i386/sse.md (mov<mode>): Handle TARGET_SSE_LOAD0_BY_PXOR.
10227
10228 2012-05-10 Eric Botcazou <ebotcazou@adacore.com>
10229
10230 * dwarf2out.c (add_byte_size_attribute) <RECORD_TYPE>: Handle variable
10231 reference as size attribute.
10232
10233 2012-05-10 Eric Botcazou <ebotcazou@adacore.com>
10234 Tristan Gingold <gingold@adacore.com>
10235
10236 * doc/md.texi (Standard Names): Document probe_stack_address.
10237 * explow.c (emit_stack_probe): Handle probe_stack_address.
10238 * config/ia64/ia64.md (UNSPECV_PROBE_STACK_ADDRESS): New constant.
10239 (UNSPECV_PROBE_STACK_RANGE): Likewise.
10240 (probe_stack_address): New insn.
10241 (probe_stack_range): Likewise.
10242 * config/ia64/ia64.c: Include common/common-target.h.
10243 (ia64_compute_frame_size): Mark r2 and r3 as used if static stack
10244 checking is enabled.
10245 (ia64_emit_probe_stack_range): New function.
10246 (output_probe_stack_range): Likewise.
10247 (ia64_expand_prologue): Invoke ia64_emit_probe_stack_range if static
10248 builtin stack checking is enabled.
10249 (rtx_needs_barrier) <UNSPEC_VOLATILE>: Handle UNSPECV_PROBE_STACK_RANGE
10250 and UNSPECV_PROBE_STACK_ADDRESS.
10251 (unknown_for_bundling_p): New predicate.
10252 (group_barrier_needed): Use important_for_bundling_p.
10253 (ia64_dfa_new_cycle): Use unknown_for_bundling_p.
10254 (issue_nops_and_insn): Likewise.
10255 (bundling): Likewise.
10256 (final_emit_insn_group_barriers): Likewise.
10257 * config/ia64/ia64-protos.h (output_probe_stack_range): Declare.
10258 * config/ia64/hpux.h (STACK_CHECK_STATIC_BUILTIN): Define.
10259 (STACK_CHECK_PROTECT): Likewise.
10260 * config/ia64/linux.h (STACK_CHECK_STATIC_BUILTIN): Likewise.
10261
10262 2012-05-10 Jan Hubicka <jh@suse.cz>
10263
10264 * ipa-inline.c (update_all_callee_keys): Remove.
10265 (inline_small_functions): Simplify priority updating.
10266
10267 2012-05-10 Jan Hubicka <jh@suse.cz>
10268
10269 * ipa.c (symtab_remove_unreachable_nodes): Fix marking of clones.
10270
10271 2012-05-10 Jan Hubicka <jh@suse.cz>
10272
10273 * cgraph.h (cgraph_remove_unreachable_nodes): Rename to ...
10274 (symtab_remove_unreachable_nodes): ... this one.
10275 * ipa-cp.c (ipcp_driver): Do not remove unreachable nodes.
10276 * cgraphunit.c (ipa_passes): Update.
10277 * cgraphclones.c (cgraph_materialize_all_clones): Update.
10278 * cgraph.c (cgraph_release_function_body): Only turn initial
10279 into error mark when initial was previously set.
10280 * ipa-inline.c (ipa_inline): Update.
10281 * ipa.c: Include ipa-inline.h
10282 (enqueue_cgraph_node, enqueue_varpool_node): Remove.
10283 (enqueue_node): New function.
10284 (process_references): Update.
10285 (symtab_remove_unreachable_nodes): Cleanup.
10286 * passes.c (execute_todo, execute_one_pass): Update.
10287
10288 2012-05-10 Vladimir Makarov <vmakarov@redhat.com>
10289
10290 PR rtl-optimization/53125
10291 * ira.c (ira): Call find_moveable_pseudos and
10292 move_unallocated_pseudos if only ira_conflicts_p is true.
10293
10294 2012-05-10 Uros Bizjak <ubizjak@gmail.com>
10295
10296 * config/i386/i386.md (*movoi_internal_avx): Handle
10297 TARGET_SSE_PACKED_SINGLE_INSN_OPTIMAL and TARGET_SSE_TYPELESS_STORES.
10298 (*movti_internal_rex64): Handle TARGET_SSE_PACKED_SINGLE_INSN_OPTIMAL.
10299 (*movti_internal_sse): Ditto.
10300 (*movtf_internal): Ditto.
10301 * config/i386/sse.md (ssePSmode): New mode attribute.
10302 (*move<mode>_internal): Use ssePSmode.
10303 (*<sse>_movu<ssemodesuffix><avxsizesuffix>): Ditto.
10304 (*<sse2>_movdqu<avxsizesuffix>): Ditto.
10305 * config/i386/i386.c (standard_sse_constant_opcode): Do not handle
10306 TARGET_SSE_PACKED_SINGLE_INSN_OPTIMAL here.
10307
10308 2012-05-10 Eric Botcazou <ebotcazou@adacore.com>
10309
10310 * gimplify.c (gimplify_decl_expr): For a TYPE_DECL, also gimplify the
10311 DECL_ORIGINAL_TYPE if it is present.
10312
10313 2012-05-10 Nick Clifton <nickc@redhat.com>
10314
10315 PR target/53120
10316 * config/m32c/bitops.md (bset_qi): Change operand 2 from having
10317 a "0" constraint to being a (match_dup 0).
10318
10319 2012-05-10 Richard Guenther <rguenther@suse.de>
10320
10321 * stor-layout.c (byte_from_pos): Amend comment.
10322
10323 2012-05-10 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
10324
10325 * doc/extend.texi (X86 Built-in Functions, __builtin_cpu_init):
10326 Document requirement to call in constructors.
10327
10328 * config/i386/i386.c: Update comments for i386-cpuinfo.c name change.
10329
10330 2012-05-10 Richard Guenther <rguenther@suse.de>
10331
10332 * tree.h (TYPE_IS_SIZETYPE): Remove.
10333 * fold-const.c (int_const_binop_1): Remove TYPE_IS_SIZETYPE use.
10334 (extract_muldiv_1): Likewise.
10335 * gimple.c (gtc_visit): Likewise.
10336 (gimple_types_compatible_p): Likewise.
10337 (iterative_hash_canonical_type): Likewise.
10338 (gimple_canonical_types_compatible_p): Likewise.
10339 * gimplify.c (gimplify_one_sizepos): Likewise.
10340 * print-tree.c (print_node): Likewise.
10341 * stor-layout.c (initialize_sizetypes): Do not set TYPE_IS_SIZETYPE.
10342
10343 2012-05-09 Uros Bizjak <ubizjak@gmail.com>
10344
10345 PR target/52908
10346 * config/i386/sse.md (vec_widen_smult_hi_v4si): Expand using
10347 xop_pmacsdqh insn pattern instead of xop_mulv2div2di3_high.
10348 (vec_widen_smult_lo_v4si): Expand using xop_pmacsdql insn pattern
10349 instead of xop_mulv2div2di3_low.
10350 (xop_p<macs>dql): Fix vec_select selector.
10351 (xop_p<macs>dqh): Ditto.
10352 (xop_mulv2div2di3_low): Remove insn_and_split pattern.
10353 (xop_mulv2div2di3_high): Ditto.
10354
10355 2012-05-09 Manuel López-Ibáñez <manu@gcc.gnu.org>
10356
10357 PR c++/53289
10358 * diagnostic.h (diagnostic_context): Add last_location.
10359 * diagnostic.c (diagnostic_initialize): Initialize it.
10360 (diagnostic_show_locus): Use it.
10361
10362 2012-05-09 Manuel López-Ibáñez <manu@gcc.gnu.org>
10363
10364 * doc/extend.texi (Function Attributes): Point xref to section
10365 about Pragmas.
10366
10367 2012-05-09 Uros Bizjak <ubizjak@gmail.com>
10368
10369 * config/i386/i386.c (*movdf_internal_rex64): Remove
10370 TARGET_SSE_PACKED_SINGLE_INSN_OPTIMAL handling from asm output code.
10371 Calculate "mode" attribute according to
10372 TARGET_SSE_PACKED_SINGLE_INSN_OPTIMAL flag.
10373 (*movdf_internal): Ditto.
10374
10375 2012-05-09 Uros Bizjak <ubizjak@gmail.com>
10376
10377 PR target/44141
10378 * config/i386/i386.c (ix86_expand_vector_move_misalign): Do not handle
10379 128 bit vectors specially for TARGET_AVX. Emit sse2_movupd and
10380 sse_movupd RTXes for TARGET_AVX, TARGET_SSE_PACKED_SINGLE_INSN_OPTIMAL
10381 or when optimizing for size.
10382 * config/i386/sse.md (*mov<mode>_internal): Remove
10383 TARGET_SSE_PACKED_SINGLE_INSN_OPTIMAL handling from asm output code.
10384 Calculate "mode" attribute according to optimize_function_for_size_p
10385 and TARGET_SSE_PACKED_SINGLE_INSN_OPTIMAL flag.
10386 (*<sse>_movu<ssemodesuffix><avxsizesuffix>): Choose asm template
10387 depending on the mode of the instruction. Calculate "mode" attribute
10388 according to optimize_function_for_size_p, TARGET_SSE_TYPELESS_STORES
10389 and TARGET_SSE_PACKED_SINGLE_INSN_OPTIMAL flags.
10390 (*<sse2>_movdqu<avxsizesuffix>): Ditto.
10391
10392 2012-05-09 Georg-Johann Lay <avr@gjlay.de>
10393
10394 PR target/53256
10395 * config/avr/elf.h (ASM_DECLARE_FUNCTION_NAME): Remove.
10396 * config/avr/avr-protos.h (avr_asm_declare_function_name): Remove.
10397 * config/avr/avr.h (struct machine_function): Add attributes_checked_p.
10398 * config/avr/avr.c (avr_asm_declare_function_name): Remove.
10399 (expand_prologue): Move initialization of cfun->machine->is_naked,
10400 is_interrupt, is_signal, is_OS_task, is_OS_main from here to...
10401 (avr_set_current_function): ...this new static function.
10402 (TARGET_SET_CURRENT_FUNCTION): New define.
10403 (avr_function_ok_for_sibcall): Use cfun->machine->is_* instead of
10404 checking attributes of current_function_decl.
10405 (avr_regs_to_save): Ditto.
10406 (signal_function_p): Rename to avr_signal_function_p.
10407 (interrupt_function_p): Rename to avr_interrupt_function_p.
10408
10409 * doc/extend.texi (Function Attributes): Better explanation of
10410 'interrupt' and 'signal' for AVR. Move 'ifunc' down to establish
10411 alphabetical order.
10412
10413 2012-05-09 Michael Matz <matz@suse.de>
10414
10415 PR tree-optimization/53185
10416 * tree-vect-data-refs.c (vect_enhance_data_refs_alignment): Disable
10417 peeling when we see strided loads.
10418
10419 2012-05-09 Matthias Klose <doko@ubuntu.com>
10420
10421 * gcc-ar.c (main): Don't check for execute bits for the plugin.
10422
10423 2012-05-09 Ramana Radhakrishnan <ramana.radhakrishnan@linaro.org>
10424
10425 * tree-ssa-loop-ivopts.c (add_autoinc_candidates, get_address_cost):
10426 Replace use of HAVE_{POST/PRE}_{INCREMENT/DECREMENT} with
10427 USE_{LOAD/STORE}_{PRE/POST}_{INCREMENT/DECREMENT} appropriately.
10428 * config/arm/arm.h (ARM_AUTOINC_VALID_FOR_MODE_P): New.
10429 (USE_LOAD_POST_INCREMENT): Define.
10430 (USE_LOAD_PRE_INCREMENT): Define.
10431 (USE_LOAD_POST_DECREMENT): Define.
10432 (USE_LOAD_PRE_DECREMENT): Define.
10433 (USE_STORE_PRE_DECREMENT): Define.
10434 (USE_STORE_PRE_INCREMENT): Define.
10435 (USE_STORE_POST_DECREMENT): Define.
10436 (USE_STORE_POST_INCREMENT): Define.
10437 (arm_auto_incmodes): Add enumeration.
10438 * config/arm/arm-protos.h (arm_autoinc_modes_ok_p): Declare.
10439 * config/arm/arm.c (arm_autoinc_modes_ok_p): Define.
10440
10441 2012-05-09 Jakub Jelinek <jakub@redhat.com>
10442
10443 PR tree-optimization/53226
10444 * tree-ssa-forwprop.c (ssa_forward_propagate_and_combine): Remove
10445 prev and prev_initialized vars, gimple_set_plf (stmt, GF_PLF_1, false)
10446 before processing it and gimple_set_plf (stmt, GF_PLF_1, true) if it
10447 doesn't need to be revisited, look for earliest stmt with
10448 !gimple_plf (stmt, GF_PLF_1) if something changed.
10449
10450 2012-05-09 Terry Guo <terry.guo@arm.com>
10451
10452 * genmultilib: Update copyright dates.
10453 * doc/fragments.texi: Ditto.
10454
10455 2012-05-09 Terry Guo <terry.guo@arm.com>
10456
10457 * Makefile.in (s-mlib): Add new argument MULTILIB_REQUIRED.
10458 * genmultilib (MULTILIB_REQUIRED): New.
10459 * doc/fragments.texi: Document the MULTILIB_REQUIRED.
10460
10461 2012-05-09 Richard Guenther <rguenther@suse.de>
10462
10463 * tree-vectorizer.h (vect_loop_versioning): Adjust prototype.
10464 (vect_do_peeling_for_loop_bound): Likewise.
10465 (vect_do_peeling_for_alignment): Likewise.
10466 * tree-vect-loop-manip.c (conservative_cost_threshold): Remove.
10467 (vect_do_peeling_for_loop_bound): Get check_profitability and
10468 threshold as parameters.
10469 (vect_do_peeling_for_alignment): Likewise.
10470 (vect_loop_versioning): Likewise.
10471 * tree-vect-loop.c (vect_transform_loop): Compute check_profitability
10472 and threshold here. Control where to put the check here.
10473
10474 2012-05-09 Richard Sandiford <rdsandiford@googlemail.com>
10475
10476 PR middle-end/53249
10477 * dwarf2out.h (get_address_mode): Move declaration to...
10478 * rtl.h: ...here.
10479 * dwarf2out.c (get_address_mode): Move definition to...
10480 * rtlanal.c: ...here.
10481 * var-tracking.c (get_address_mode): Delete.
10482 * combine.c (find_split_point): Use get_address_mode instead of
10483 targetm.addr_space.address_mode.
10484 * cselib.c (cselib_record_sets): Likewise.
10485 * dse.c (canon_address, record_store): Likewise.
10486 * emit-rtl.c (adjust_address_1, offset_address): Likewise.
10487 * expr.c (move_by_pieces, emit_block_move_via_loop, store_by_pieces)
10488 (store_by_pieces_1, expand_assignment, store_expr, store_constructor)
10489 (expand_expr_real_1): Likewise.
10490 * ifcvt.c (noce_try_cmove_arith): Likewise.
10491 * optabs.c (maybe_legitimize_operand_same_code): Likewise.
10492 * reload.c (find_reloads): Likewise.
10493 * sched-deps.c (sched_analyze_1, sched_analyze_2): Likewise.
10494 * sel-sched-dump.c (debug_mem_addr_value): Likewise.
10495
10496 2012-05-09 Maciej W. Rozycki <macro@codesourcery.com>
10497
10498 * config/mips/mips.c (mips16_gp_pseudo_reg): Remove line
10499 information from the instruction produced.
10500
10501 2012-05-09 Richard Guenther <rguenther@suse.de>
10502
10503 * stor-layout.c (bit_from_pos): Document.
10504 (byte_from_pos): Likewise. Optimize.
10505 (pos_from_bit): Likewise.
10506 (normalize_offset): Use pos_from_bit instead of replicating it.
10507
10508 2012-05-09 Alan Modra <amodra@gmail.com>
10509
10510 PR target/53271
10511 * config/rs6000/rs6000.c (gen_frame_set): New function.
10512 (gen_frame_load, gen_frame_store): New functions.
10513 (rs6000_savres_rtx): Use the above.
10514 (rs6000_emit_epilogue, rs6000_emit_prologue): Here too.
10515 Correct mode used for CR2 in save/restore_world patterns.
10516 Don't emit instructions for eh_return frame unwind reg info.
10517
10518 2012-05-08 Jan Hubicka <jh@suse.cz>
10519
10520 * cgraphbuild.c (build_cgraph_edges): Do not finalize vars
10521 with VALUE_EXPR.
10522 * cgraph.h (varpool_can_remove_if_no_refs): Vars with VALUE_EXPR
10523 are removable.
10524 * toplev.c (wrapup_global_declaration_2): Vars with VALUE_EXPR
10525 need to wrapup.
10526 (compile_file): Do not output variables.
10527 * cgraphbuild.c (varpool_finalize_decl): When var is finalized late,
10528 output it.
10529 * langhooks.c: Include timevar.h
10530 (write_global_declarations): Finalize compilation unit after wrapup;
10531 set timevars correctly.
10532 * passes.c (rest_of_decl_compilation): Decls with VALUE_EXPR needs
10533 not to be added to varpool.
10534 * varpool.c (varpool_assemble_decl): Sanity check that we are called
10535 only on cases where it makes sense; skip constant pool and value expr
10536 vars.
10537
10538 2012-05-08 David S. Miller <davem@davemloft.net>
10539
10540 * config/sparc/linux.h (LINK_SPEC): Don't pass "-Y" option.
10541 * config/sparc/linux64.h (LINK_ARCH32_SPEC): Likewise.
10542 * config/sparc/linux64.h (LINK_ARCH64_SPEC): Likewise.
10543
10544 2012-05-08 Richard Sandiford <rdsandiford@googlemail.com>
10545
10546 PR rtl-optimization/53278
10547 * lower-subreg.c (decompose_multiword_subregs): Remove left-over
10548 speed_p code from earlier patch.
10549
10550 2012-05-08 Oleg Endo <olegendo@gcc.gnu.org>
10551
10552 PR target/51244
10553 * config/sh/sh.md (*branch_true, *branch_false): New insns.
10554
10555 2012-05-08 Teresa Johnson <tejohnson@google.com>
10556
10557 * gcov-io.h (__gcov_reset, __gcov_dump): Declare.
10558 * doc/gcov.texi: Add note on using __gcov_reset and __gcov_dump.
10559
10560 2012-05-08 Jan Hubicka <jh@suse.cz>
10561
10562 * cgraph.c (cgraph_call_edge_duplication_hooks): Export.
10563 (cgraph_create_node_1): Rename to ...
10564 (cgraph_create_empty_node): ... this one; export.
10565 (cgraph_create_node): Update.
10566 (cgraph_set_call_stmt_including_clones): Move to cgraphclones.c
10567 (cgraph_create_edge_including_clones): Likewise.
10568 (cgraph_find_replacement_node): Likewise.
10569 (cgraph_clone_edge): Likewise.
10570 (cgraph_clone_node): Likewise.
10571 (clone_function_name): Likewise.
10572 (cgraph_create_virtual_clone): Likewise.
10573 (cgraph_remove_node_and_inline_clones): Likewise.
10574 (cgraph_redirect_edge_call_stmt_to_callee): Move here from cgraphunit.c
10575 * cgraph.h: Reorder declarations so they match file of origin.
10576 (cgraph_create_empty_node): Declare.
10577 * cgraphunit.c (update_call_expr): Move to cgraphclones.c
10578 (cgraph_copy_node_for_versioning): Likewise.
10579 (cgraph_function_versioning): Likewise.
10580 (cgraph_materialize_clone): Likewise.
10581 (cgraph_redirect_edge_call_stmt_to_callee): Likewise.
10582 (cgraph_materialize_all_clones): Likewise.
10583 * cgraphclones.c: New file.
10584 * Makefile.in: Update for cgraphclones.
10585
10586 2012-05-08 Uros Bizjak <ubizjak@gmail.com>
10587
10588 PR target/53176
10589 * config/i386/i386.c (ix86_set_reg_reg_cost): New function.
10590 (ix86_rtx_costs): Handle SET.
10591
10592 2012-05-08 Michael Matz <matz@suse.de>
10593
10594 * basic-block.h (struct rtl_bb_info): Remove visited member and
10595 move head_ member to ...
10596 (struct basic_block_def.basic_block_il_dependent): ... the new
10597 member x, replacing but containing old member rtl.
10598 (enum bb_flags): New BB_VISITED flag.
10599 (BB_HEADER, BB_FOOTER): New macros.
10600
10601 * jump.c (mark_all_labels): Adjust.
10602 * cfgcleanup.c (try_optimize_cfg): Adjust.
10603 * cfglayout.c (record_effective_endpoints): Adjust.
10604 (relink_block_chain): Ditto (and don't fiddle with visited).
10605 (fixup_reorder_chain): Adjust.
10606 (fixup_fallthru_exit_predecessor): Ditto.
10607 (cfg_layout_duplicate_bb): Ditto.
10608 * combine.c (update_cfg_for_uncondjump): Adjust.
10609 * bb-reorder.c (struct bbro_basic_block_data_def): Add visited member.
10610 (bb_visited_trace): New accessor.
10611 (mark_bb_visited): Move in front.
10612 (rotate_loop): Use bb_visited_trace.
10613 (find_traces_1_round): Ditto.
10614 (emit_barrier_after): Ditto.
10615 (copy_bb): Ditto, and initialize visited on resize.
10616 (reorder_basic_blocks): Initize visited member.
10617 (duplicate_computed_gotos): Clear bb flags at start, use
10618 BB_VISITED flags.
10619
10620 * cfgrtl.c (try_redirect_by_replacing_jump): Adjust.
10621 (rtl_verify_flow_info_1): Ditto.
10622 (cfg_layout_split_block): Ditto.
10623 (cfg_layout_delete_block): Ditto.
10624 (cfg_layout_merge_blocks): Ditto.
10625 (init_rtl_bb_info): Adjust and initialize il.x.head_ member.
10626
10627 2012-05-08 Hans-Peter Nilsson <hp@axis.com>
10628
10629 PR target/53272
10630 * config/cris/cris.c (cris_normal_notice_update_cc): For TARGET_V32,
10631 when a constant source operand matches an "I" constraint, the "no
10632 CC0 change" applies to a register-destination only, not a
10633 strict_low_part-destination.
10634
10635 2012-05-08 Richard Guenther <rguenther@suse.de>
10636
10637 * fold-const.c (fold_binary_loc): Fold (X * CST1) & CST2
10638 to zero or to (X * CST1) & CST2' when CST1 has trailing zeros.
10639
10640 2012-05-08 Georg-Johann Lay <avr@gjlay.de>
10641
10642 * Makefile.in (TEXI_GCC_FILES): Add avr-mmcu.texi.
10643
10644 * doc/avr-mmcu.texi: New auto-generated file.
10645 * doc/invoke.texi (AVR Options): Include avr-mmcu.texi in order
10646 to document all valid -mmcu= arguments.
10647
10648 * config/avr/avr.h (arch_info_s): New struct definition.
10649 * config/avr/avr-devices.c (avr_texinfo): New variable.
10650 * config/avr/gen-avr-mmcu-texi.c: New file.
10651 * config/avr/t-avr: New rules and dependencies to build avr-mmcu.texi.
10652
10653 2012-05-08 Dehao Chen <dehao@google.com>
10654
10655 * predict.c (find_qualified_ssa_name): New.
10656 (find_ssa_name_in_expr): New.
10657 (find_ssa_name_in_assign_stmt): New.
10658 (is_comparison_with_loop_invariant_p): New.
10659 (is_bound_expr_similar): New.
10660 (predict_iv_comparison): New.
10661 (predict_loops): Add heuristic for loop-nested branches that compare an
10662 induction variable to a loop bound variable.
10663 * predict.def (PRED_LOOP_IV_COMPARE): New macro.
10664
10665 2012-05-08 Uros Bizjak <ubizjak@gmail.com>
10666
10667 * config/i386/i386.c (has_dispatch): Use TARGET_BDVER1 and
10668 TARGET_BDVER2 defines where appropriate.
10669
10670 2012-05-07 Eric Botcazou <ebotcazou@adacore.com>
10671
10672 * configure.ac (PLUGIN_LD): Rename into...
10673 (PLUGIN_LD_SUFFIX): ...this and strip the target_alias triplet.
10674 * config.in: Regenerate.
10675 * configure: Likewise.
10676 * collect2.c (main): Set plugin_ld_suffix to PLUGIN_LD_SUFFIX.
10677
10678 2012-05-07 Eric Botcazou <ebotcazou@adacore.com>
10679
10680 * tree-dfa.c (get_ref_base_and_extent) <ARRAY_REF>: Do the offset
10681 computation using the precision of the index type.
10682 * gimple-fold.c (fold_const_aggregate_ref_1) <ARRAY_REF>: Likewise.
10683 (fold_array_ctor_reference): Do index computations in the index type.
10684
10685 2012-05-07 Georg-Johann Lay <avr@gjlay.de>
10686
10687 * config/avr/avr.c (avr_prologue_setup_frame): Fix mode passed
10688 down to plus_constant.
10689 (expand_epilogue): Ditto.
10690
10691 2012-05-07 Steven Bosscher <steven@gcc.gnu.org>
10692
10693 * postreload.c (reload_cse_regs): Make static.
10694 * reload.h (reload_cse_regs): Remove prototype.
10695
10696 2012-05-07 Richard Henderson <rth@redhat.com>
10697
10698 * config/alpha/alpha.md (clear_cache): New pattern.
10699
10700 2012-05-07 Steven Bosscher <steven@gcc.gnu.org>
10701
10702 PR middle-end/53245
10703 * gimplify.c (preprocess_case_label_vec_for_gimple): If low or high
10704 is folded to a type boundary value, verify that the resulting case
10705 label is still a care range.
10706
10707 2012-05-07 Uros Bizjak <ubizjak@gmail.com>
10708
10709 * config/i386/i386.md (ctz<mode>2): Emit rep;bsf
10710 only for TARGET_GENERIC, when not optimizing for size.
10711 (*ffs<mode>_1): Ditto.
10712
10713 2012-05-07 Steven Bosscher <steven@gcc.gnu.org>
10714
10715 * tree-cfg.c (verify_gimple_switch): Tighten checks.
10716
10717 2012-05-07 Jakub Jelinek <jakub@redhat.com>
10718
10719 PR tree-optimization/53239
10720 * tree-vrp.c (get_value_range): Set VR of SSA_NAME_IS_DEFAULT_DEF
10721 of DECL_BY_REFERENCE RESULT_DECL to nonnull.
10722
10723 2012-05-07 Richard Guenther <rguenther@suse.de>
10724
10725 PR tree-optimization/53195
10726 * tree-inline.c (setup_one_parameter): Properly add referenced
10727 vars from the parameters new known value.
10728
10729 2012-05-07 Steven Bosscher <steven@gcc.gnu.org>
10730
10731 * config/m68k/m68k.c (m68k_sched_branch_type): Remove.
10732 (sched_branch_type): Remove.
10733 (m68k_sched_md_init_global): Don't allocate it.
10734 (m68k_sched_md_finish_global): Don't free it.
10735 * config/m68k/m68k.h (m68k_sched_branch_type): Remove prototype.
10736 * config/m68k/m68k.md: Set the type of insns using
10737 m68k_sched_branch_type to bcc directly.
10738
10739 2012-05-07 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
10740
10741 * config/sol2.c (solaris_override_options): New function.
10742 * config/sol2-protos.h (solaris_override_options): Declare.
10743 * config/sol2.h (SUBTARGET_OVERRIDE_OPTIONS): Define.
10744
10745 2012-05-07 Richard Guenther <rguenther@suse.de>
10746
10747 * tree-ssa-loop-prefetch.c (determine_loop_nest_reuse): Return
10748 whether we failed to compute data dependences.
10749 (loop_prefetch_arrays): Fail if we failed.
10750
10751 2012-05-07 Uros Bizjak <ubizjak@gmail.com>
10752 Paolo Bonzini <bonzini@gnu.org>
10753
10754 * config/i386/i386.md (ctz<mode>2): Emit rep;bsf even for !TARGET_BMI.
10755 Emit bsf when optimizing for size.
10756 (*ffs<mode>_1): Ditto.
10757
10758 2012-05-07 Oleg Endo <olegendo@gcc.gnu.org>
10759
10760 PR target/53250
10761 * config/sh/sh.c (sh_rtx_costs): Handle SET.
10762
10763 2012-05-06 Uros Bizjak <ubizjak@gmail.com>
10764
10765 PR target/53227
10766 * config/i386/i386.md (swap<mode>): Rename from *swap<mode>.
10767 (bswapdi2): Split from bswap<mode>2. Use nonnimediate_operand
10768 predicate for operand 1. Force operand 1 to register for TARGET_BSWAP.
10769 (bswapsi2): Ditto.
10770 (*bswapdi2_doubleword): New insn pattern.
10771 (*bswap<mode>2): Rename from *bswap<mode>2_1.
10772
10773 2012-05-06 Richard Sandiford <rdsandiford@googlemail.com>
10774
10775 * config/mips/mips.c (mips_set_reg_reg_piece_cost): New function.
10776 (mips_set_reg_reg_cost): Likewise.
10777 (mips_rtx_costs): Handle SET.
10778
10779 2012-05-06 Richard Sandiford <rdsandiford@googlemail.com>
10780
10781 * lower-subreg.c (shift_cost): Use set_src_cost, avoiding the SET.
10782 (compute_costs): Likewise for the zero extension. Use set_rtx_cost
10783 to compute the cost of moves. Set the mode of the target register.
10784
10785 2012-05-05 Richard Sandiford <rdsandiford@googlemail.com>
10786
10787 * rtl.h (plus_constant, plus_constant_mode): Merge into a single
10788 plus_constant function.
10789 * explow.c (plus_constant, plus_constant_mode): Likewise. Assert
10790 that the mode is sensible.
10791 (use_anchored_address, round_push, allocate_dynamic_stack_space)
10792 (probe_stack_range, anti_adjust_stack_and_probe): Update calls to
10793 plus_constant.
10794
10795 * alias.c (canon_rtx): Likewise.
10796 (init_alias_analysis): Likewise.
10797 * builtins.c (expand_builtin_return_addr)
10798 (expand_builtin_setjmp_setup, expand_builtin_longjmp)
10799 (expand_builtin_nonlocal_goto, expand_builtin_update_setjmp_buf)
10800 (expand_builtin_apply_args_1, expand_builtin_apply, expand_movstr)
10801 (expand_builtin_stpcpy): Likewise.
10802 * calls.c (save_fixed_argument_area, restore_fixed_argument_area)
10803 (compute_argument_addresses, internal_arg_pointer_based_exp)
10804 (expand_call, emit_library_call_value_1): Likewise.
10805 * cfgexpand.c (expand_one_stack_var_at, expand_debug_expr): Likewise.
10806 * combine-stack-adj.c (try_apply_stack_adjustment): Likewise.
10807 * combine.c (combine_simplify_rtx, force_to_mode): Likewise.
10808 * cse.c (insert_const_anchor, find_reg_offset_for_const)
10809 (use_related_value, fold_rtx): Likewise.
10810 * cselib.c (cselib_subst_to_values): Likewise.
10811 * dse.c (record_store, check_mem_read_rtx): Likewise.
10812 * dwarf2out.c (rtl_for_decl_location, gen_variable_die): Likewise.
10813 * emit-rtl.c (adjust_address_1): Likewise.
10814 * except.c (sjlj_emit_function_enter)
10815 (expand_builtin_extract_return_addr)
10816 (expand_builtin_frob_return_addr): Likewise.
10817 * expmed.c (expand_divmod): Likewise.
10818 * expr.c (move_by_pieces, store_by_pieces, store_by_pieces_1)
10819 (emit_move_resolve_push, push_block, emit_push_insn, store_expr)
10820 (expand_expr_addr_expr_1, expand_expr_real_1): Likewise.
10821 * function.c (assign_stack_local_1)
10822 (instantiate_virtual_regs_in_rtx): Likewise.
10823 * optabs.c (prepare_cmp_insn): Likewise.
10824 * recog.c (offsettable_address_addr_space_p): Likewise.
10825 * reload.c (find_reloads_address, form_sum)
10826 (find_reloads_subreg_address): Likewise.
10827 * reload1.c (init_reload, eliminate_regs_1)
10828 (eliminate_regs_in_insn): Likewise.
10829 * simplify-rtx.c (simplify_unary_operation_1)
10830 (simplify_binary_operation_1, simplify_plus_minus): Likewise.
10831 * var-tracking.c (compute_cfa_pointer, prepare_call_arguments)
10832 (vt_add_function_parameter): Likewise.
10833
10834 * config/alpha/alpha.h (EH_RETURN_HANDLER_RTX): Likewise.
10835 * config/alpha/vms.h (EH_RETURN_HANDLER_RTX): Likewise.
10836 * config/alpha/alpha.c (alpha_legitimize_address_1)
10837 (get_unaligned_address, alpha_expand_unaligned_load)
10838 (alpha_expand_unaligned_store, alpha_expand_unaligned_load_words)
10839 (alpha_expand_unaligned_store_words, alpha_expand_block_clear)
10840 (alpha_expand_builtin_establish_vms_condition_handler)
10841 (alpha_setup_incoming_varargs, emit_frame_store_1)
10842 (alpha_expand_prologue, alpha_expand_epilogue)
10843 (alpha_use_linkage): Likewise.
10844 * config/alpha/alpha.md: Likewise.
10845
10846 * config/arm/arm.c (arm_trampoline_init, legitimize_pic_address)
10847 (arm_load_pic_register, arm_pic_static_addr, arm_legitimize_address)
10848 (thumb_legitimize_address, arm_gen_load_multiple_1)
10849 (arm_gen_store_multiple_1, arm_gen_multiple_op, gen_ldm_seq)
10850 (gen_stm_seq, gen_const_stm_seq, arm_block_move_unaligned_straight)
10851 (arm_block_move_unaligned_loop, arm_gen_movmemqi, arm_reload_in_hi)
10852 (arm_reload_out_hi, arm_reorg, vfp_emit_fstmd, emit_multi_reg_push)
10853 (emit_sfm, thumb_set_frame_pointer, arm_expand_prologue)
10854 (thumb1_emit_multi_reg_push, thumb1_expand_prologue)
10855 (thumb_expand_movmemqi, arm_set_return_address)
10856 (thumb_set_return_address): Likewise.
10857 * config/arm/arm.md: Likewise.
10858
10859 * config/avr/avr.c (avr_incoming_return_addr_rtx)
10860 (avr_prologue_setup_frame, expand_epilogue)
10861 (avr_const_address_lo16): Likewise.
10862
10863 * config/bfin/bfin.h (EH_RETURN_HANDLER_RTX): Likewise.
10864 * config/bfin/bfin.c (setup_incoming_varargs, bfin_load_pic_reg)
10865 (bfin_expand_prologue, bfin_trampoline_init, bfin_expand_call)
10866 (bfin_output_mi_thunk): Likewise.
10867
10868 * config/c6x/c6x.c (c6x_initialize_trampoline)
10869 (c6x_output_mi_thunk): Likewise.
10870
10871 * config/cr16/cr16.h (EH_RETURN_HANDLER_RTX): Likewise.
10872 * config/cr16/cr16.c (cr16_create_dwarf_for_multi_push): Likewise.
10873
10874 * config/cris/cris.c (cris_return_addr_rtx, cris_split_movdx)
10875 (cris_expand_prologue, cris_expand_epilogue, cris_gen_movem_load)
10876 (cris_emit_movem_store, cris_trampoline_init): Likewise.
10877 * config/cris/cris.md: Likewise.
10878
10879 * config/darwin.c (machopic_indirect_data_reference)
10880 (machopic_legitimize_pic_address): Likewise.
10881
10882 * config/epiphany/epiphany.c (epiphany_emit_save_restore)
10883 (epiphany_expand_prologue, epiphany_expand_epilogue)
10884 (epiphany_trampoline_init): Likewise.
10885 * config/epiphany/epiphany.md: Likewise.
10886
10887 * config/fr30/fr30.c (fr30_move_double): Likewise.
10888
10889 * config/frv/frv.c (frv_dwarf_store, frv_expand_prologue)
10890 (frv_expand_block_move, frv_expand_block_clear, frv_return_addr_rtx)
10891 (frv_index_memory, unspec_got_name, frv_find_base_term)
10892 (frv_output_dwarf_dtprel): Likewise.
10893
10894 * config/h8300/h8300.c (h8300_push_pop, h8300_return_addr_rtx)
10895 (h8300_swap_into_er6, h8300_swap_out_of_er6): Likewise.
10896
10897 * config/i386/i386.h (RETURN_ADDR_RTX): Likewise.
10898 * config/i386/i386.c (setup_incoming_varargs_64)
10899 (setup_incoming_varargs_ms_64, choose_baseaddr)
10900 (ix86_emit_save_reg_using_mov, ix86_adjust_stack_and_probe)
10901 (ix86_emit_probe_stack_range, ix86_expand_prologue)
10902 (ix86_emit_restore_reg_using_pop, ix86_emit_leave)
10903 (ix86_expand_epilogue, legitimize_pic_address, ix86_legitimize_address)
10904 (ix86_split_long_move, ix86_expand_movmem, ix86_expand_setmem)
10905 (ix86_static_chain, ix86_trampoline_init, x86_this_parameter)
10906 (x86_output_mi_thunk): Likewise.
10907 * config/i386/i386.md: Likewise.
10908
10909 * config/ia64/ia64.c (ia64_expand_load_address)
10910 (ia64_expand_tls_address, ia64_expand_move, ia64_split_tmode)
10911 (do_spill, ia64_trampoline_init): Likewise.
10912
10913 * config/iq2000/iq2000.c (iq2000_va_start)
10914 (iq2000_emit_frame_related_store, iq2000_expand_prologue)
10915 (iq2000_expand_eh_return, iq2000_setup_incoming_varargs)
10916 (iq2000_print_operand, iq2000_legitimize_address): Likewise.
10917
10918 * config/lm32/lm32.c (lm32_setup_incoming_varargs): Likewise.
10919
10920 * config/m32c/m32c.c (m32c_return_addr_rtx)
10921 (m32c_expand_insv): Likewise.
10922
10923 * config/m32r/m32r.c (m32r_setup_incoming_varargs)
10924 (m32r_legitimize_pic_address, m32r_print_operand)
10925 (m32r_print_operand_address): Likewise.
10926
10927 * config/m68k/linux.h (FINALIZE_TRAMPOLINE): Likewise.
10928 * config/m68k/m68k.h (RETURN_ADDR_RTX): Likewise.
10929 (EH_RETURN_HANDLER_RTX): Likewise.
10930 * config/m68k/m68k.c (m68k_emit_movem, m68k_expand_prologue)
10931 (m68k_expand_epilogue, legitimize_pic_address)
10932 (m68k_output_mi_thunk): Likewise.
10933 * config/m68k/m68k.md: Likewise.
10934
10935 * config/mcore/mcore.c (mcore_expand_prolog): Likewise.
10936 (mcore_expand_epilog): Likewise.
10937 * config/mcore/mcore.md: Likewise.
10938
10939 * config/mep/mep.c (mep_allocate_initial_value)
10940 (mep_expand_prologue, mep_expand_epilogue): Likewise.
10941
10942 * config/microblaze/microblaze.c (double_memory_operand)
10943 (microblaze_block_move_loop): Likewise.
10944
10945 * config/mips/mips.c (mips_strip_unspec_address, mips_add_offset)
10946 (mips_setup_incoming_varargs, mips_va_start, mips_block_move_loop)
10947 (mips_print_operand, mips16e_save_restore_reg, mips_save_restore_reg)
10948 (mips_expand_prologue, mips_epilogue_set_cfa)
10949 (mips_expand_epilogue): Likewise.
10950 * config/mips/mips.md: Likewise.
10951
10952 * config/mmix/mmix.c (mmix_dynamic_chain_address, mmix_return_addr_rtx)
10953 (mmix_expand_prologue, mmix_expand_epilogue): Likewise.
10954
10955 * config/mn10300/mn10300.c (mn10300_gen_multiple_store)
10956 (mn10300_builtin_saveregs, mn10300_trampoline_init): Likewise.
10957
10958 * config/moxie/moxie.h (INCOMING_RETURN_ADDR_RTX): Likewise.
10959 (EH_RETURN_HANDLER_RTX): Likewise.
10960 * config/moxie/moxie.c (moxie_static_chain): Likewise.
10961
10962 * config/pa/pa.c (legitimize_pic_address, hppa_legitimize_address)
10963 (store_reg, set_reg_plus_d, pa_expand_prologue, load_reg)
10964 (pa_return_addr_rtx, hppa_builtin_saveregs)
10965 (pa_trampoline_init): Likewise.
10966 * config/pa/pa.md: Likewise.
10967
10968 * config/pdp11/pdp11.c (pdp11_expand_epilogue): Likewise.
10969
10970 * config/picochip/picochip.c (picochip_static_chain): Likewise.
10971
10972 * config/rs6000/rs6000.h (RS6000_SAVE_TOC): Likewise.
10973 * config/rs6000/rs6000.c (rs6000_legitimize_address)
10974 (setup_incoming_varargs, print_operand, rs6000_return_addr)
10975 (rs6000_emit_eh_reg_restore, rs6000_emit_probe_stack_range)
10976 (rs6000_emit_epilogue)
10977 (rs6000_machopic_legitimize_pic_address): Likewise.
10978
10979 * config/rx/rx.c (gen_rx_rtsd_vector, gen_rx_popm_vector): Likewise.
10980
10981 * config/s390/s390.h (INITIAL_FRAME_ADDRESS_RTX): Likewise.
10982 (DYNAMIC_CHAIN_ADDRESS): Likewise.
10983 * config/s390/s390.c (s390_decompose_address, legitimize_pic_address)
10984 (s390_delegitimize_address, print_operand, annotate_constant_pool_refs)
10985 (replace_constant_pool_ref, s390_return_addr_rtx, s390_back_chain_rtx)
10986 (save_fpr, restore_fpr, save_gprs, restore_gprs, s390_emit_prologue)
10987 (s390_emit_epilogue, s390_function_profiler): Likewise.
10988 * config/s390/s390.md: Likewise.
10989
10990 * config/score/score.c (score_add_offset, score_prologue): Likewise.
10991
10992 * config/sh/sh.c (expand_block_move, push_regs, sh_builtin_saveregs)
10993 (sh_output_mi_thunk): Likewise.
10994 * config/sh/sh.md: Likewise.
10995
10996 * config/sparc/sparc.h (DYNAMIC_CHAIN_ADDRESS, FRAME_ADDR_RTX)
10997 (RETURN_ADDR_RTX, INCOMING_RETURN_ADDR_RTX): Likewise.
10998 * config/sparc/sparc.c (sparc_legitimize_pic_address)
10999 (sparc_emit_probe_stack_range, emit_save_or_restore_regs)
11000 (emit_window_save, sparc_flat_expand_prologue, sparc_struct_value_rtx)
11001 (emit_and_preserve): Likewise.
11002 * config/sparc/sparc.md: Likewise.
11003
11004 * config/spu/spu.h (DYNAMIC_CHAIN_ADDRESS): Likewise.
11005 * config/spu/spu.c (spu_expand_insv, spu_machine_dependent_reorg)
11006 (spu_setup_incoming_varargs, ea_load_store_inline)
11007 (spu_expand_load): Likewise.
11008
11009 * config/stormy16/stormy16.c (xstormy16_expand_prologue)
11010 (combine_bnp): Likewise.
11011
11012 * config/tilegx/tilegx.h (DYNAMIC_CHAIN_ADDRESS): Likewise.
11013 * config/tilegx/tilegx.c (tilegx_setup_incoming_varargs)
11014 (tilegx_expand_unaligned_load, tilegx_trampoline_init): Likewise.
11015
11016 * config/tilepro/tilepro.h (DYNAMIC_CHAIN_ADDRESS): Likewise.
11017 * config/tilepro/tilepro.c (tilepro_setup_incoming_varargs)
11018 (tilepro_expand_unaligned_load, tilepro_trampoline_init): Likewise.
11019
11020 * config/v850/v850.c (expand_prologue, expand_epilogue): Likewise.
11021 * config/v850/v850.md: Likewise.
11022
11023 * config/vax/elf.h (EH_RETURN_STACKADJ_RTX): Likewise.
11024 (EH_RETURN_HANDLER_RTX): Likewise.
11025 * config/vax/vax.h (DYNAMIC_CHAIN_ADDRESS, RETURN_ADDR_RTX): Likewise.
11026 * config/vax/vax.c (vax_add_reg_cfa_offset, vax_expand_prologue)
11027 (print_operand_address, vax_trampoline_init): Likewise.
11028
11029 * config/xtensa/xtensa.c (xtensa_expand_prologue, xtensa_return_addr)
11030 (xtensa_function_value_regno_p): Likewise.
11031
11032 2012-05-04 Andrew Pinski <apinski@cavium.com>
11033
11034 * expr.c (get_def_for_expr_class): New function.
11035 (convert_tree_comp_to_rtx): New function.
11036 (expand_cond_expr_using_cmove): New function.
11037 (expand_expr_real_2 <case COND_EXPR>): Call
11038 expand_cond_expr_using_cmove first and return if it succeeds.
11039 Remove the check for HAVE_conditional_move since we should have
11040 already converted it to a conditional move.
11041 * config/i386/i386.c (ix86_expand_int_movcc): Disallow comparison
11042 modes of DImode for 32bits and TImode.
11043
11044 2012-05-04 Steven Bosscher <steven@gcc.gnu.org>
11045
11046 PR other/29442
11047 * read-md.c (fprint_md_ptr_loc, fprint_c_condition): New functions.
11048 (print_md_ptr_loc, print_c_condition): Use them.
11049 * read-md.h (fprint_md_ptr_loc, fprint_c_condition): New prototypes.
11050 * genattrtab.c (attr_file_name, dfa_file_name, latency_file_name,
11051 attr_file, dfa_file, latency_file): New global variables.
11052 (write_attr_valueq, write_attr_set, write_attr_case, write_attr_value,
11053 write_upcase, write_indent, write_length_unit_log, write_test_expr,
11054 write_attr_get, write_insn_cases, write_eligible_delay,
11055 write_const_num_delay_slots): Accept FILE pointer and toss it around.
11056 Update all callers.
11057 (write_header, open_outfile, handle_arg): New funcions.
11058 (make_automaton_attrs): Write prototypes as extern to the output
11059 files.
11060 (main): Use init_rtx_reader_args_cb with handle_arg to take 3 file
11061 names from the command line. Open the output files and write out
11062 internal functions for DFA functions to dfa_file_name, insn latency
11063 functions to latency_file_name, and everything else to attr_file.
11064 * Makefile.in (OBJS): Add insn-dfatab.o and insn-latencytab.o.
11065 (BACKEND): Build libbackend first.
11066 (MOSTLYCLEANFILES): Add insn-dfatab.c and insn-latencytab.c.
11067 (.PRECIOUS): Likewise.
11068 (insn-dfatab.o): New rule.
11069 (insn-latencytab.o): New rule.
11070 (simple_rtl_generated_c): Do not include insn-attrtab.c.
11071 (s-attrtab): New rule.
11072
11073 2012-05-04 Steven Bosscher <steven@gcc.gnu.org>
11074
11075 * rtl.def (ATTR_FLAG): Remove probability indicating flags.
11076 * genattr.c (main): Remove ATTR_FLAG_likely, ATTR_FLAG_unlikely,
11077 ATTR_FLAG_very_likely, and ATTR_FLAG_very_unlikely.
11078 * reorg.c (get_jump_flags): Do not set the removed flags.
11079
11080 * doc/md.texi (attr_flag): Update for abovementioned changes.
11081
11082 2012-05-04 Uros Bizjak <ubizjak@gmail.com>
11083
11084 PR target/53228
11085 * config/i386/i386.h (X86_ARCH_CMOV): Rename from X86_ARCH_CMOVE.
11086 (TARGET_CMOV): Rename from TARGET_CMOVE.
11087 (TARGET_CMOVE): New define.
11088 * config/i386/i386.c (ix86_option_override_internal): Use TARGET_CMOV.
11089 Do not set TARGET_CMOVE here.
11090
11091 2012-05-04 Dodji Seketeli <dodji@redhat.com>
11092
11093 Enable -Wunused-local-typedefs when -Wall or -Wunused is on
11094 * opts.c (finish_options): Activate -Wunused-local-typedefs if
11095 -Wunused is activated.
11096 * doc/invoke.texi: Update blurb of -Wunused-local-typedefs.
11097
11098 2012-05-04 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
11099
11100 * config/s390/s390.md (*movmem_short, *clrmem_short)
11101 (*cmpmem_short): Move the mode check from the insn condition to
11102 the match_scratch.
11103
11104 2012-05-04 Ulrich Weigand <ulrich.weigand@linaro.org>
11105
11106 PR tree-optimization/52633
11107 * tree-vect-patterns.c (vect_vect_recog_func_ptrs): Swap order of
11108 vect_recog_widen_shift_pattern and vect_recog_over_widening_pattern.
11109 (vect_recog_over_widening_pattern): Remove handling of code that was
11110 already detected as over-widening pattern. Remove special handling
11111 of "unsigned" cases. Instead, support general case of conversion
11112 of the shift result to another type.
11113
11114 2012-05-04 Ulrich Weigand <ulrich.weigand@linaro.org>
11115
11116 * tree-vect-patterns.c (vect_single_imm_use): New function.
11117 (vect_recog_widen_mult_pattern): Use it instead of open-coding loop.
11118 (vect_recog_over_widening_pattern): Likewise.
11119 (vect_recog_widen_shift_pattern): Likewise.
11120
11121 2012-05-04 Ulrich Weigand <ulrich.weigand@linaro.org>
11122
11123 * tree-vect-patterns.c (vect_same_loop_or_bb_p): New function.
11124 (vect_handle_widen_op_by_const): Use it instead of open-coding test.
11125 (vect_recog_widen_mult_pattern): Likewise.
11126 (vect_operation_fits_smaller_type): Likewise.
11127 (vect_recog_over_widening_pattern): Likewise.
11128 (vect_recog_widen_shift_pattern): Add to vect_same_loop_or_bb_p test.
11129
11130 2012-05-04 Richard Guenther <rguenther@suse.de>
11131
11132 PR lto/50602
11133 * lto-wrapper.c (merge_and_complain): Complain about mismatches
11134 of -freg-struct-return and -fpcc-struct-return.
11135 (run_gcc): Pass through -freg-struct-return and -fpcc-struct-return
11136 from the input file options and ignore those from the link
11137 command line.
11138
11139 2012-05-04 Richard Guenther <rguenther@suse.de>
11140
11141 PR tree-optimization/53168
11142 * tree-ssa-pre.c (phi_translate_1): Only handle type-punned
11143 memory reads when the result is a constant we can pun.
11144
11145 2012-05-04 Richard Guenther <rguenther@suse.de>
11146
11147 * common.opt (flto-report): Do not mark as Optimization.
11148
11149 2012-05-04 Eric Botcazou <ebotcazou@adacore.com>
11150
11151 PR target/48496
11152 * recog.c (constrain_operands): If extra constraints are present, also
11153 accept pseudo-registers with equivalent memory locations during reload.
11154
11155 2012-05-04 Olivier Hainque <hainque@adacore.com>
11156
11157 * collect2.c (may_unlink_output_file): New global.
11158 (maybe_unlink): Honor it.
11159 * collect2.h: Add extern for it.
11160 * tlink.c (do_tlink): Set it to true if the link succeeded.
11161
11162 2012-05-04 Olivier Hainque <hainque@adacore.com>
11163
11164 * gcc.c (eval_spec_function): Finalize/restore the current string
11165 obstack state as part of the context push/pop operations.
11166
11167 2012-05-04 Bin Cheng <bin.cheng@arm.com>
11168
11169 PR rtl-optimization/52804
11170 * reload1.c (reload_reg_reaches_end_p): Check whether successor
11171 reload with type RELOAD_FOR_INPUT_ADDRESS kills reload register
11172 of current one with type RELOAD_FOR_INPADDR_ADDRESS.
11173 Same stands for reloads with type RELOAD_FOR_OUTPUT_ADDRESS and
11174 RELOAD_FOR_OUTADDR_ADDRESS.
11175
11176 2012-05-04 Manuel López-Ibáñez <manu@gcc.gnu.org>
11177
11178 PR c++/24985
11179 * tree-diagnostic.c (maybe_unwind_expanded_macro_loc): Show caret
11180 for macro expansion.
11181
11182 2012-05-03 Manuel López-Ibáñez <manu@gcc.gnu.org>
11183
11184 * flags.h (flag_permissive): Do not declare.
11185 * diagnostic.c (diagnostic_report_diagnostic): Handle fpermissive
11186 option specially.
11187 * toplev.c (flag_permissive): Do not define.
11188 * c-tree.h (system_header_p): Delete unused.
11189
11190 2012-05-03 David S. Miller <davem@davemloft.net>
11191
11192 PR target/52684
11193 * config/sparc/sparc.c (emit_soft_tfmode_libcall): If we pass a
11194 MEM directly into a libcall, mark it's MEM_EXPR as addressable.
11195 (sparc_emit_float_lib_cmp): Likewise.
11196
11197 2012-05-03 Michael Meissner <meissner@linux.vnet.ibm.com>
11198
11199 PR target/53199
11200 * config/rs6000/rs6000.md (bswapdi splitters): If
11201 -mavoid-indexed-addresses (or -mcpu=power6 which sets it by
11202 default) is used, generate an alternate sequence that does not
11203 depend on using indexed addressing.
11204
11205 2012-05-03 Jason Merrill <jason@redhat.com>
11206
11207 * gengtype.c (write_types): Fix warning message.
11208 (write_local): Likewise.
11209
11210 2012-05-02 Jason Merrill <jason@redhat.com>
11211
11212 * dwarf2out.c (struct external_ref, build_local_stub): New.
11213 (hash_external_ref, external_ref_eq, lookup_external_ref): New.
11214 (optimize_external_refs, optimize_external_refs_1): New.
11215 (change_AT_die_ref): New.
11216 (clone_as_declaration): Add DW_AT_signature when cloning a declaration.
11217 (build_abbrev_table): Take the external refs hashtable.
11218 (output_comp_unit): Get it from optimize_external_refs and pass it in.
11219
11220 2012-05-03 Jan Hubicka <jh@suse.cz>
11221
11222 PR middle-end/53093
11223 * tree-emutls.c (new_emutls_decl): Fix handling of aliases.
11224
11225 2012-05-03 Jan Hubicka <jh@suse.cz>
11226
11227 PR middle-end/53106
11228 * ipa.c (cgraph_remove_unreachable_nodes): Fix handling of clones.
11229
11230 2012-05-03 Jason Merrill <jason@redhat.com>
11231
11232 * dwarf2out.c (die_struct): Add comdat_type_p flag. Use it instead of
11233 use_debug_types to discriminate the die_id union.
11234 (print_die, assign_symbol_names, copy_decls_walk): Likewise.
11235 (build_abbrev_table, output_die): Likewise.
11236 (prune_unused_types_walk_attribs): Likewise.
11237 (generate_type_signature, copy_declaration_context): Set it.
11238 (remove_child_or_replace_with_skeleton): Set it.
11239 (dwarf2out_start_source_file, dwarf2out_end_source_file): Don't
11240 check use_debug_types.
11241 (dwarf2out_finish): Do break_out_includes after .debug_types.
11242
11243 2012-05-03 Jason Merrill <jason@redhat.com>
11244
11245 * dwarf2out.c (modified_type_die): Use scope_die_for.
11246 (gen_type_die_with_usage, dwarf2out_finish): Likewise.
11247 (uses_local_type_r, uses_local_type): New.
11248 (scope_die_for): Keep a type that uses a local type in local scope.
11249 Use get_context_die for namespace and type scope.
11250
11251 2012-05-03 Jason Merrill <jason@redhat.com>
11252
11253 * config/i386/i386.c (ix86_code_end): Set DECL_IGNORED_P on the
11254 pc thunk.
11255 * dwarf2out.c (output_aranges): Skip DECL_IGNORED_P functions.
11256 (dwarf2out_finish): Likewise.
11257
11258 2012-05-03 Martin Jambor <mjambor@suse.cz>
11259
11260 * builtins.c (get_object_alignment_1): Return whether we can determine
11261 the alignment or conservatively assume byte alignment. Return the
11262 alignment by reference. Use get_pointer_alignment_1 for dereference
11263 alignment.
11264 (get_pointer_alignment_1): Return whether we can determine the
11265 alignment or conservatively assume byte alignment. Return the
11266 alignment by reference. Use get_ptr_info_alignment to get SSA name
11267 alignment.
11268 (get_object_alignment): Update call to get_object_alignment_1.
11269 (get_object_or_type_alignment): Likewise, fall back to type alignment
11270 only when it returned false.
11271 (get_pointer_alignment): Update call to get_pointer_alignment_1.
11272 * fold-const.c (get_pointer_modulus_and_residue): Update call to
11273 get_object_alignment_1.
11274 * ipa-prop.c (ipa_modify_call_arguments): Update call to
11275 get_pointer_alignment_1.
11276 * tree-sra.c (build_ref_for_offset): Likewise, fall back to the type
11277 of MEM_REF or TARGET_MEM_REF only when it returns false.
11278 * tree-ssa-ccp.c (get_value_from_alignment): Update call to
11279 get_object_alignment_1.
11280 (ccp_finalize): Use set_ptr_info_alignment.
11281 * tree.h (get_object_alignment_1): Update declaration.
11282 (get_pointer_alignment_1): Likewise.
11283 * gimple-pretty-print.c (dump_gimple_phi): Use get_ptr_info_alignment.
11284 (dump_gimple_stmt): Likewise.
11285 * tree-flow.h (ptr_info_def): Updated comments of fields align and
11286 misalign.
11287 (get_ptr_info_alignment): Declared.
11288 (mark_ptr_info_alignment_unknown): Likewise.
11289 (set_ptr_info_alignment): Likewise.
11290 (adjust_ptr_info_misalignment): Likewise.
11291 * tree-ssa-address.c (copy_ref_info): Use new access functions to get
11292 and set alignment of SSA names.
11293 * tree-ssa-loop-ivopts.c (rewrite_use_nonlinear_expr): Call
11294 mark_ptr_info_alignment_unknown.
11295 * tree-ssanames.c (get_ptr_info_alignment): New function.
11296 (mark_ptr_info_alignment_unknown): Likewise.
11297 (set_ptr_info_alignment): Likewise.
11298 (adjust_ptr_info_misalignment): Likewise.
11299 (get_ptr_info): Call mark_ptr_info_alignment_unknown.
11300 * tree-vect-data-refs.c (vect_create_addr_base_for_vector_ref):
11301 Likewise.
11302 (bump_vector_ptr): Likewise.
11303 * tree-vect-stmts.c (create_array_ref): Use set_ptr_info_alignment.
11304 (vectorizable_store): Likewise.
11305 (vectorizable_load): Likewise.
11306
11307 2012-05-03 Michael Matz <matz@suse.de>
11308
11309 * basic-block.h (struct rtl_bb_info, struct gimple_bb_info): Move
11310 in front of basic_block_def.
11311 (struct basic_block_def): Make il.gimple the full struct, not a
11312 pointer.
11313 (__assert_gimple_bb_smaller_rtl_bb): Asserting typedef.
11314
11315 * cfgexpand.c (expand_gimple_basic_block): Clear all il.gimple members.
11316 * gimple-iterator.c (gimple_stmt_iterator): Don't special case
11317 NULL il.gimple, which can't happen anymore.
11318 * gimple.h (bb_seq): il.gimple can't be NULL.
11319 (bb_seq_add): Ditto.
11320 (set_bb_seq): Adjust.
11321 (gsi_start_bb, gsi_last_bb): Tidy.
11322 * lto-streamer-in.c (make_new_block): Don't zero members that
11323 are zeroed already, don't allocate a gimple_bb_info.
11324 * tree-cfg.c (create_bb): Don't allocate a gimple_bb_info.
11325 (remove_bb): Clear all il.gimple members.
11326 (gimple_verify_flow_info): Adjust for flat il.gimple.
11327 * tree-flow-inline.h (phi_nodes, phi_nodes_ptr, set_phi_nodes): Adjust.
11328
11329 * coretypes.h (const_gimple_seq): Remove typedef.
11330 * gimple.h (gimple_seq_first): Take gimple_seq.
11331 (gimple_seq_first_stmt): Ditto.
11332 (gimple_seq_last): Ditto.
11333 (gimple_seq_last_stmt): Ditto.
11334 (gimple_seq_empty_p): Ditto.
11335
11336 2012-05-03 Richard Guenther <rguenther@suse.de>
11337
11338 * tree-ssa-pre.c (valid_in_sets): Remove checking of trapping
11339 operations.
11340 (prune_clobbered_mems): Do it here. Do not uselessly sort expressions.
11341 (compute_avail): Do not add possibly trapping operations to
11342 EXP_GEN if they might not be executed in the block.
11343
11344 2012-05-03 Uros Bizjak <ubizjak@gmail.com>
11345
11346 * config/alpha/elf.h (MAX_OFILE_ALIGNMENT): Remove.
11347
11348 2012-05-03 Steven Bosscher <steven@gcc.gnu.org>
11349
11350 * tree-switch-conversion.c (gen_inbound_check): Free post-dominance
11351 information as early as possible. Update dominance info instead of
11352 discarding it.
11353
11354 2012-05-03 Richard Guenther <rguenther@suse.de>
11355
11356 * tree-ssa-pre.c (debug_bitmap_sets_for): New function.
11357 (union_contains_value): Remove.
11358 (vro_valid_in_sets): Likewise.
11359 (op_valid_in_sets): New function.
11360 (valid_in_sets): Use op_valid_in_sets.
11361 (insert_into_preds_of_block): Move dumping ...
11362 (do_regular_insertion): ... here.
11363 (do_partial_partial_insertion): ... and here. Dump that
11364 we've found a partial partial redundancy.
11365 (insert): Dump the current insert iteration.
11366
11367 2012-05-03 Jakub Jelinek <jakub@redhat.com>
11368
11369 PR plugins/53126
11370 * gcc-ar.c (main): If GCC_EXEC_PREFIX is set in env,
11371 append program name to it and pass that as first argument
11372 to make_relative_prefix. Always pass standard_libexec_prefix
11373 as last argument to make_relative_prefix. If
11374 make_relative_prefix returns NULL, fall back to
11375 standard_libexec_prefix.
11376
11377 PR debug/53174
11378 * tree-predcom.c (remove_stmt): Call reset_debug_uses on stmts being
11379 removed.
11380
11381 PR target/53187
11382 * config/arm/arm.c (arm_select_cc_mode): If x has MODE_CC class
11383 mode, return that mode.
11384
11385 PR target/53194
11386 * config/i386/i386-c.c (ix86_target_macros_internal): Don't
11387 define __ATOMIC_HLE_* macros here.
11388 (ix86_target_macros): But here, using cpp_define_formatted.
11389
11390 2012-05-03 Richard Guenther <rguenther@suse.de>
11391
11392 PR tree-optimization/53144
11393 * tree-ssa-sccvn.c (vn_reference_lookup_or_insert_constant_for_pieces):
11394 Rename to ...
11395 (vn_reference_lookup_or_insert_for_pieces): ... this. Properly deal
11396 with SSA name values.
11397 (vn_reference_lookup_3): Adjust callers.
11398
11399 2012-05-03 Ganesh Gopalasubramanian <Ganesh.Gopalasubramanian@amd.com>
11400
11401 * config/i386/driver-i386.c (host_detect_local_cpu): Reset
11402 has_fma4 for AMD processors with both fma3 and fma4 support.
11403
11404 2012-05-03 Kirill Yukhin <kirill.yukhin@intel.com>
11405
11406 PR target/53201
11407 * config/i386/driver-i386.c (host_detect_local_cpu): Add space to
11408 "-mno-hle".
11409
11410 2012-05-03 Michael Matz <matz@suse.de>
11411
11412 PR bootstrap/53197
11413 * tree-ssa-dse.c (dse_optimize_stmt): Take pointer to iterator.
11414 (dse_enter_block): Properly iterate the whole sequence even
11415 if the last statement was removed.
11416
11417 2012-05-02 Steven Bosscher <steven@gcc.gnu.org>
11418
11419 * config/alpha/vms.h (SUBTARGET_OVERRIDE_OPTIONS): For pic code,
11420 unset flag_jump_tables.
11421 * stmt.c (expand_case): Remove special flag_pic case conditional
11422 on ASM_OUTPUT_ADDR_DIFF_ELT not being defined.
11423
11424 2012-05-02 Ulrich Weigand <ulrich.weigand@linaro.org>
11425
11426 * common/config/s390/s390-common.c (s390_option_optimization_table):
11427 Enable -fsched-pressure using -fsched-pressure-algorithm=model by
11428 default when optimizing.
11429
11430 2012-05-02 Martin Jambor <mjambor@suse.cz>
11431
11432 PR lto/52605
11433 * dwarf2out.c (dwarf2out_decl): Only lookup die representing context
11434 of a variable when the contect is a function.
11435
11436 2012-05-02 Michael Matz <matz@suse.de>
11437
11438 * coretypes.h (gimple_seq, const_gimple_seq): Typedef as gimple.
11439 * gimple.h (struct gimple_seq_node_d, struct gimple_seq_d): Remove.
11440 (const_gimple_seq_node): Remove.
11441 (gimple_seq_node): Typedef as gimple.
11442 (struct gimple_statement_base): Add next and prev members,
11443 adjust all WORD markers in using structs.
11444 (union gimple_statement_d): Link via gsbase.next field for GC and PCH.
11445 (gimple_seq_first, gimple_seq_first_stmt, gimple_seq_last,
11446 gimple_seq_last_stmt): Adjust as gimple_seq, gimple_seq_node and
11447 gimple are the same.
11448 (gimple_seq_set_last, gimple_seq_set_first): Don't allocate
11449 gimple_seq, adjust.
11450 (gimple_init_singleton): New function.
11451 (gsi_start_1, gsi_last_1, gsi_end_p, gsi_one_before_end_p): Adjust.
11452 (gsi_next, gsi_prev): Adjust, handle prev cyclic list correctly.
11453 (gsi_stmt): Adjust.
11454 (gsi_stmt_ptr): Remove.
11455 (enum gimple_alloc_kind): Remove gimple_alloc_kind_seq member.
11456
11457 * gimple-iterator.c (update_bb_for_stmts): Take last parameter
11458 again, adjust for above changes.
11459 (update_call_edge_frequencies): Adjust for above changes.
11460 (gsi_insert_seq_nodes_before): Rewrite for new data structure.
11461 (gsi_insert_seq_nodes_after): Ditto.
11462 (gsi_split_seq_after): Ditto.
11463 (gsi_set_stmt): Ditto.
11464 (gsi_split_seq_before): Ditto.
11465 (gsi_remove): Ditto.
11466 (gsi_insert_seq_before_without_update): Don't free sequence.
11467 (gsi_insert_seq_after_without_update): Ditto.
11468 (gsi_replace): Assert some more invariants.
11469 (gsi_insert_before_without_update, gsi_insert_after_without_update):
11470 Tidy.
11471 (gsi_for_stmt): Don't search for stmt.
11472 (gsi_insert_on_edge_immediate): Tidy.
11473
11474 * gimple.c (gimple_alloc_k): Remove "sequences".
11475 (gimple_seq_cache): Remove.
11476 (gimple_alloc_stat): Make stmt a singleton sequence.
11477 (gimple_seq_alloc, gimple_seq_free): Remove.
11478 (gimple_assign_set_rhs_with_ops_1): Ensure new stmt is a singleton.
11479 (gimple_copy): Ditto.
11480 * gimplify.c (gimplify_cleanup_point_expr): Use gsi_set_stmt,
11481 create iterator from correct sequence.
11482 * tree-phinodes.c (make_phi_node): Make stmt a singleton.
11483
11484 2012-05-02 Michael Matz <matz@suse.de>
11485
11486 * gimple.h (gimple_stmt_iterator <seq>): Make it be pointer to
11487 gimple_seq.
11488 (gimple_seq_set_last, gimple_seq_set_first): Take pointer to
11489 sequence, lazily allocate it.
11490 (bb_seq_addr): New function.
11491 (gsi_start_1): Rename from gsi_start, but take pointer to sequence.
11492 (gsi_start): Macro to wrap gsi_start_1 taking pointer of argument.
11493 (gsi_none): New function.
11494 (gsi_start_bb): Adjust.
11495 (gsi_last_1): Rename from gsi_last, but take pointer to sequence.
11496 (gsi_last): Macro to wrap gsi_last_1 taking pointer of argument.
11497 (gsi_last_bb): Adjust.
11498 (gsi_seq): Adjust.
11499 * tree-flow-inline.h (phi_nodes_ptr): New function.
11500
11501 * gimple-iterator.c (gsi_insert_seq_nodes_before): Adjust to
11502 datastructure and interface change.
11503 (gsi_insert_seq_before_without_update): Ditto.
11504 (gsi_insert_seq_nodes_after): Ditto.
11505 (gsi_insert_seq_after_without_update): Ditto.
11506 (gsi_split_seq_after): Ditto, don't use gimple_seq_alloc.
11507 (gsi_split_seq_before): Ditto.
11508 (gsi_start_phis): Adjust.
11509 * tree-vect-loop.c (vect_determine_vectorization_factor): Use gsi_none.
11510 (vect_transform_loop): Ditto.
11511 * gimple.c (gimple_seq_add_stmt, gimple_seq_add_seq,
11512 gimple_seq_copy): Don't use gimple_seq_alloc.
11513 * gimplify.c (gimple_seq_add_stmt_without_update): Ditto.
11514 (gimplify_seq_add_seq): Ditto.
11515 * lto-streamer-in.c (make_new_block): Ditto.
11516 * tree-cfg.c (create_bb): Ditto.
11517 * tree-sra.c (initialize_parameter_reductions): Ditto.
11518
11519 2012-05-02 Michael Matz <matz@suse.de>
11520
11521 * gimple.h (gimple_seq_first, gimple_seq_first_stmt, gimple_seq_last,
11522 gimple_seq_last_stmt, gimple_seq_set_last, gimple_seq_set_first,
11523 gimple_seq_empty_p, gimple_seq_alloc_with_stmt, bb_seq,
11524 set_bb_seq): Move down to after gimple_statement_d definition.
11525
11526 2012-05-02 Michael Matz <matz@suse.de>
11527
11528 * gimple-fold.c (gimplify_and_update_call_from_tree): Use
11529 gsi_replace_with_seq, instead of inserting itself.
11530 * gimple-iterator.c (gsi_replace_with_seq): New function.
11531 * tree-ssa-forwprop.c (forward_propagate_comparison): Take
11532 iterator instead of statement, advance it.
11533 (ssa_forward_propagate_and_combine): Adjust call to above.
11534
11535 2012-05-02 Michael Matz <matz@suse.de>
11536
11537 * tree-phinodes.c (add_phi_node_to_bb): Tidy, don't use
11538 gimple_seq_alloc.
11539 * omp-low.c (finalize_task_copyfn): Don't use gimple_seq_alloc.
11540 * tree-nested.c (walk_gimple_omp_for): Ditto.
11541 * trans-mem.c (lower_transaction): Ditto.
11542 * tree-eh.c (do_return_redirection): Ditto.
11543 (do_goto_redirection): Ditto.
11544 (lower_try_finally_switch): Ditto.
11545 * gimplify.c (gimplify_stmt): Ditto.
11546 (gimplify_scan_omp_clauses): Ditto.
11547 (gimplify_omp_for): Ditto.
11548 (gimplify_function_tree): Ditto.
11549 * gimple-fold.c (gimplify_and_update_call_from_tree): Ditto.
11550 * tree-mudflap.c (mf_decl_cache_locals): Ditto.
11551 (mf_build_check_statement_for): Ditto.
11552 (mx_register_decls): Ditto.
11553 * graphite-sese-to-poly.c (remove_invariant_phi): Ditto,
11554 and don't use itertors to append.
11555 (insert_stmts): Ditto.
11556 (insert_out_of_ssa_copy): Ditto.
11557 (insert_out_of_ssa_copy_on_edge): Ditto.
11558
11559 2012-05-02 Michael Matz <matz@suse.de>
11560
11561 * gimple.h (gimple_bind_body_ptr): New function.
11562 (gimple_bind_body): Use it.
11563 (gimple_catch_handler): Use gimple_catch_handler_ptr.
11564 (gimple_eh_filter_failure_ptr): New function.
11565 (gimple_eh_filter_failure): Use it.
11566 (gimple_eh_else_n_body_ptr): New function.
11567 (gimple_eh_else_n_body): Use it.
11568 (gimple_eh_else_e_body_ptr): New function.
11569 (gimple_eh_else_e_body): Use it.
11570 (gimple_try_eval_ptr): New function.
11571 (gimple_try_eval): Use it.
11572 (gimple_try_cleanup_ptr): New function.
11573 (gimple_try_cleanup): Use it.
11574 (gimple_wce_cleanup_ptr): New function.
11575 (gimple_wce_cleanup): Use it.
11576 (gimple_omp_body_ptr): New function.
11577 (gimple_omp_body): Use it.
11578 (gimple_omp_for_pre_body_ptr): New function.
11579 (gimple_omp_for_pre_body): Use it.
11580 (gimple_transaction_body_ptr): New function.
11581 (gimple_transaction_body): Use it.
11582 (gsi_split_seq_before): Adjust to return nothing and take pointer
11583 to sequence.
11584 (gsi_set_stmt): Declare.
11585 (gsi_replace_with_seq): Declare.
11586 (walk_gimple_seq_mod): Declare.
11587 * function.h (struct function <gimple_body>): Use typedef gimple_seq.
11588
11589 * gimple-iterator.c (gsi_set_stmt): New function.
11590 (gsi_split_seq_before): Return new sequence via pointer argument.
11591 (gsi_replace): Use gsi_set_stmt.
11592
11593 * tree-ssa-loop-im.c (move_computations_stmt): First remove
11594 then insert stmt.
11595 * tree-complex.c (update_complex_components_on_edge): Don't copy gsi.
11596 * tree-phinodes.c (resize_phi_node): Don't resize stmt in-place,
11597 return new stmt.
11598 (reserve_phi_args_for_new_edge): Change call to above,
11599 use gsi_set_stmt.
11600
11601 * omp-low.c (lower_omp): Change prototype to take pointer to sequence.
11602 (lower_rec_input_clauses): Use gimple_seq_add_seq instead of
11603 iterators. Adjust call to lower_omp.
11604 (lower_lastprivate_clauses): Adjust call to lower_omp.
11605 (lower_reduction_clauses): Ditto.
11606 (expand_omp_taskreg): Nullify non-cfg body of child_fn.
11607 (lower_omp_sections): Don't explicitely count sequence length,
11608 nullify lowered bodies earlier, ensure stmts are part of only
11609 one sequence, adjust call to lower_omp.
11610 (lower_omp_single): Ensure stmts are part of only one sequence,
11611 adjust call to lower_omp.
11612 (lower_omp_master): Ditto.
11613 (lower_omp_ordered): Ditto.
11614 (lower_omp_critical): Ditto.
11615 (lower_omp_for): Ditto.
11616 (lower_omp_taskreg): Ditto, tidy.
11617 (lower_omp_1): Adjust calls to lower_omp.
11618 (execute_lower_omp): Ditto.
11619 (lower_omp): Adjust to take pointer to sequence.
11620 (diagnose_sb_2): Use walk_gimple_seq_mod.
11621 (diagnose_omp_structured_block_errors): Ditto and set possibly
11622 changed function body.
11623 * gimple-low.c (lower_function_body): Set function body after
11624 it stabilizes.
11625 (lower_sequence): Adjust to take pointer to sequence.
11626 (lower_omp_directive): Ensure stmt isn't put twice into the
11627 sequence, adjust call to lower_sequence.
11628 (lower_stmt): Adjust calls to lower_sequence.
11629 (lower_gimple_bind): Ditto.
11630 (gimple_try_catch_may_fallthru): Call gsi_start with lvalue.
11631 * tree-nested.c (walk_body): Take pointer to sequence, use
11632 walk_gimple_seq_mod.
11633 (walk_function): Adjust call to walk_body, set possibly changed body.
11634 (walk_gimple_omp_for): Adjust calls to walk_body.
11635 (convert_nonlocal_omp_clauses): Ditto.
11636 (convert_nonlocal_reference_stmt): Ditto.
11637 (convert_local_omp_clauses): Ditto.
11638 (convert_local_reference_stmt): Ditto.
11639 (convert_tramp_reference_stmt): Ditto.
11640 (convert_gimple_call): Ditto.
11641 (convert_nl_goto_reference): Use local iterator copy.
11642 * gimple.c (walk_gimple_seq_mod): Renamed from walk_gimple_seq,
11643 but taking pointer to sequence, ensure gsi_start is called with
11644 callers lvalue.
11645 (walk_gimple_seq): New wrapper around walk_gimple_seq_mod,
11646 asserting that the sequence head didn't change.
11647 (walk_gimple_stmt): Replace all calls to walk_gimple_seq with
11648 walk_gimple_seq_mod.
11649 * trans-mem.c (lower_transaction): Use walk_gimple_seq_mod.
11650 (execute_lower_tm): Ditto, and set possibly changed body.
11651 * tree-eh.c (lower_eh_constructs_1): Take pointer to sequence,
11652 call gsi_start with that lvalue.
11653 (replace_goto_queue_stmt_list): Ditto.
11654 (replace_goto_queue_1): Adjust calls to replace_goto_queue_stmt_list.
11655 (replace_goto_queue): Ditto.
11656 (lower_try_finally_nofallthru): Adjust calls to lower_eh_constructs_1.
11657 (lower_try_finally_onedest): Ditto.
11658 (lower_try_finally_copy): Ditto.
11659 (lower_try_finally_switch): Ditto.
11660 (lower_try_finally): Ditto.
11661 (lower_eh_filter): Ditto.
11662 (lower_eh_must_not_throw): Ditto.
11663 (lower_cleanup): Ditto.
11664 (lower_eh_constructs_2): Ditto.
11665 (lower_catch): Ditto, and ensure gsi_start is called with lvalue.
11666 (lower_eh_constructs): Adjust calls to lower_eh_constructs_1, and
11667 set possibly changed body.
11668 (optimize_double_finally): Call gsi_start with lvalue.
11669
11670 * tree-cfg.c (make_blocks): Adjust call to gsi_split_seq_before.
11671 (gimple_split_block): Ditto.
11672 (gimple_merge_blocks): Use gsi_start_phis.
11673 (move_stmt_r): Use walk_gimple_seq_mod.
11674 * tree-ssa-dse.c (dse_enter_block): Use gsi_last_bb.
11675 * cgraphbuild.c (build_cgraph_edges): Use gsi_start_phis.
11676 (rebuild_cgraph_edges): Ditto.
11677 (cgraph_rebuild_references): Ditto.
11678 * ipa-prop.c (ipa_analyze_params_uses): Ditto.
11679 * tree-inline.c (copy_phis_for_bb): Ditto.
11680 * tree-ssa-dce.c: Ditto.
11681
11682 * cgraphunit.c (cgraph_analyze_function): Use gimple_has_body_p.
11683
11684 2012-05-02 Kirill Yukhin <kirill.yukhin@intel.com>
11685 Andi Kleen <ak@linux.intel.com>
11686
11687 * coretypes.h (MEMMODEL_MASK): New.
11688 * builtins.c (get_memmodel): Add val. Call target.memmodel_check
11689 and return new variable.
11690 (expand_builtin_atomic_exchange): Mask memmodel values.
11691 (expand_builtin_atomic_compare_exchange): Ditto.
11692 (expand_builtin_atomic_load): Ditto.
11693 (expand_builtin_atomic_store): Ditto.
11694 (expand_builtin_atomic_clear): Ditto.
11695 * doc/extend.texi: Mention port-dependent memory model flags.
11696 * config/i386/cpuid.h (bit_HLE): New.
11697 * config/i386/driver-i386.c (host_detect_local_cpu): Detect
11698 HLE support.
11699 * config/i386/i386-protos.h (ix86_generate_hle_prefix): New.
11700 * config/i386/i386-c.c (ix86_target_macros_internal): Set HLE defines.
11701 (ix86_target_string)<-mhle>: New.
11702 (ix86_valid_target_attribute_inner_p) <OPT_mhle>: Ditto.
11703 * config/i386/i386.c (ix86_target_string) <OPTION_MASK_ISA_HLE>: New.
11704 (ix86_valid_target_attribute_inner_p) <OPT_mhle>: Ditto.
11705 (ix86_option_override_internal) <PTA_HLE>: New switch, set it
11706 enabled for generic, generic64 and core-avx2.
11707 (ix86_print_operand): Generate HLE lock prefixes.
11708 (ix86_memmodel_check): New.
11709 (TARGET_MEMMODEL_CHECK): Ditto.
11710 * config/i386/i386.h (OPTION_ISA_HLE): Ditto.
11711 (IX86_HLE_ACQUIRE): Ditto.
11712 (IX86_HLE_RELEASE): Ditto.
11713 * config/i386/i386.h (ix86_generate_hle_prefix): Ditto.
11714 * config/i386/i386.opt (mhle): Ditto.
11715 * config/i386/sync.md(atomic_compare_and_swap<mode>): Pass
11716 success model to instruction emitter.
11717 (atomic_fetch_add<mode>): Ditto.
11718 (atomic_exchange<mode>): Ditto.
11719 (atomic_add<mode>): Ditto.
11720 (atomic_sub<mode>): Ditto.
11721 (atomic_<code><mode>): Ditto.
11722 (*atomic_compare_and_swap_doubledi_pic): Ditto.
11723 (atomic_compare_and_swap_single<mode>): Define and use argument
11724 for success model.
11725 (atomic_compare_and_swap_double<mode>): Ditto.
11726 * configure.ac: Check if assembler support HLE prefixes.
11727 * configure: Regenerate.
11728 * config.in: Ditto.
11729
11730 2012-05-02 Steven Bosscher <steven@gcc.gnu.org>
11731
11732 PR middle-end/53153
11733 * gimplify.c (preprocess_case_label_vec_for_gimple): New function,
11734 split out from ...
11735 (gimplify_switch_expr): ... here.
11736 * gimple.h (preprocess_case_label_vec_for_gimple): Add prototype.
11737 * tree-ssa-forwprop.c (simplify_gimple_switch_label_vec): New function
11738 to clean up case labels with values outside the index type range.
11739 (simplify_gimple_switch): Call it if something changed.
11740 Remove strange and unnecessary assert.
11741
11742 2012-05-02 Richard Guenther <rguenther@suse.de>
11743
11744 * fold-const.c (div_if_zero_remainder): sizetypes no longer
11745 sign-extend.
11746 (int_const_binop_1): New worker for int_const_binop with
11747 overflowable parameter. Pass it through to force_fit_type_double.
11748 (int_const_binop): Wrap around int_const_binop_1 with overflowable
11749 equal to one.
11750 (size_binop_loc): Call int_const_binop_1 with overflowable equal
11751 to minus one, forcing overflow detection for even unsigned types.
11752 (extract_muldiv_1): Remove bogus TYPE_IS_SIZETYPE special-casing.
11753 (fold_binary_loc): Call try_move_mult_to_index with signed offset.
11754 * stor-layout.c (initialize_sizetypes): sizetypes no longer
11755 sign-extend.
11756 (layout_type): For zero-sized arrays ignore overflow on the
11757 size calculations.
11758 * tree-ssa-ccp.c (bit_value_unop_1): Likewise.
11759 (bit_value_binop_1): Likewise.
11760 * tree.c (double_int_to_tree): Likewise.
11761 (double_int_fits_to_tree_p): Likewise.
11762 (force_fit_type_double): Likewise.
11763 (host_integerp): Likewise.
11764 (int_fits_type_p): Likewise.
11765 * varasm.c (output_constructor_regular_field): Sign-extend the
11766 field-offset to cater for negative offsets produced by the Ada
11767 frontend.
11768 * omp-low.c (extract_omp_for_data): Convert the loop step to
11769 signed for pointer adjustments.
11770
11771 2012-05-02 Richard Guenther <rguenther@suse.de>
11772
11773 * tree.c (valid_constant_size_p): New function.
11774 * tree.h (valid_constant_size_p): Declare.
11775 * cfgexpand.c (expand_one_var): Adjust check for too large
11776 variables by using valid_constant_size_p.
11777 * varasm.c (assemble_variable): Likewise.
11778
11779 * c-decl.c (grokdeclarator): Properly check for sizes that
11780 cover more than half of the address-space.
11781
11782 2012-05-02 Jakub Jelinek <jakub@redhat.com>
11783
11784 PR tree-optimization/53163
11785 * tree-ssa-phiopt.c (cond_if_else_store_replacement): Don't ignore
11786 return value from compute_all_dependences.
11787
11788 PR rtl-optimization/53160
11789 * ree.c (combine_reaching_defs): Handle the case where cand->insn
11790 has been modified by ree pass already.
11791
11792 2012-05-01 Ian Lance Taylor <iant@google.com>
11793
11794 PR c/37303
11795 * c-decl.c (build_compound_literal): Make the decl readonly if it
11796 an array of a readonly type.
11797 * gimplify.c (gimplify_compound_literal_expr): Add fallback
11798 parameter. Change all callers. If the decl is not addressable
11799 and is not an l-value, make it readonly.
11800
11801 2012-05-01 Bernd Schmidt <bernds@codesourcery.com>
11802
11803 * ira.c (allocated_reg_info_size): New static variable.
11804 (expand_reg_info): Manage it. Call
11805 setup_preferred_alternate_classes_for_new_pseudos.
11806 (ira): Don't do it here. Remove local allocated_reg_info_size,
11807 set the global before calling find_moveable_pseudos.
11808 (find_moveable_pseudos): Call expand_reg_info rather than
11809 resize_reg_info.
11810
11811 2012-05-01 Richard Henderson <rth@redhat.com>
11812
11813 * common.opt (fsync-libcalls): New.
11814 * doc/invoke.texi: Document it.
11815 * optabs.c (init_sync_libfuncs): Honor it.
11816
11817 2012-05-01 Kenneth Zadeck <zadeck@naturalbridge.com>
11818 Richard Sandiford <r.sandiford@uk.ibm.com>
11819
11820 PR rtl-optimization/52543
11821 * Makefile.in (lower-subreg.o, target-globals.o): Depend on
11822 lower-subreg.h.
11823 * lower-subreg.h: New file.
11824 * target-globals.h (this_target_lower_subreg): Declare.
11825 (target_globals): Add lower_subreg;
11826 (restore_target_globals): Restore this_target_lower_subreg.
11827 * target-globals.c: Include it.
11828 (default_target_globals): Add default_target_lower_subreg.
11829 (save_target_globals): Initialize target_lower_subreg.
11830 * rtl.h (init_lower_subreg): Added declaration.
11831 * toplev.c (backend_init_target): Call initializer for lower-subreg
11832 pass.
11833 * lower-subreg.c (LOG_COSTS, FORCE_LOWERING): New macros.
11834 (default_target_lower_subreg): New variable.
11835 (this_target_lower_subreg): Likewise.
11836 (twice_word_mode, choices): New macros.
11837 (shift_cost, compute_splitting_shift, compute_costs)
11838 (init_lower_subreg): New functions.
11839 (resolve_simple_move): Add speed_p argument. Check choices.
11840 (find_pseudo_copy): Don't check the mode size here.
11841 (resolve_simple_move): Assert the mode size.
11842 (find_decomposable_shift_zext): Add speed_p argument and return
11843 a bool. Check choices.
11844 (resolve_shift_zext): Add comment.
11845 (dump_shift_choices, dump_choices): New functions.
11846 (decompose_multiword_subregs): Dump list of profitable
11847 transformations. Add code to skip non profitable transformations.
11848 Update calls to simple_move and find_decomposable_shift_zext.
11849
11850 2012-05-01 Ian Bolton <ian.bolton@arm.com>
11851 Sameera Deshpande <sameera.deshpande@arm.com>
11852 Greta Yorsh <greta.yorsh@arm.com>
11853
11854 * config/arm/arm-protos.h (thumb_unexpanded_epilogue): Rename to...
11855 (thumb1_unexpanded_epilogue): ...this.
11856 * config/arm/arm.c (thumb_unexpanded_epilogue): Rename to...
11857 (thumb1_unexpanded_epilogue): ...this.
11858 * config/arm/arm.md (thumb_unexpanded_epilogue): Rename to...
11859 (thumb1_unexpanded_epilogue): ...this.
11860
11861 2012-05-01 Richard Earnshaw <rearnsha@arm.com>
11862
11863 * arm/linux-eabi.h (GLIBC_DYNAMIC_LINKER_DEFAULT): Avoid ifdef
11864 comparing enumeration values. Update comments.
11865
11866 2012-05-01 Alan Modra <amodra@gmail.com>
11867
11868 PR target/53038
11869 * config/rs6000/rs6000.c (load_lr_save, restore_saved_lr,
11870 load_cr_save, add_crlr_cfa_restore): New functions.
11871 (rs6000_restore_saved_cr): Rename to..
11872 (restore_saved_cr): ..this. Add cfa_restore notes for cr.
11873 (rs6000_emit_epilogue): Use new functions. Adjust condition
11874 for emitting lr and cr cfa_restore. Emit cfa_restores for fp
11875 regs when using out-of-line restore only when shrink wrapping.
11876
11877 2012-04-30 Uros Bizjak <ubizjak@gmail.com>
11878
11879 PR middle-end/53136
11880 * ipa-prop.c (ipa_print_node_jump_functions): Wrap multiple
11881 calls to cgraph_node_name in xstrdup.
11882 (ipa_make_edge_direct_to_target): Ditto.
11883 * cgraph.c (dump_cgraph_node): Ditto.
11884 * tree-sra.c (convert_callers_for_node): Ditto.
11885 * lto-symtab.c (lto_cgraph_replace_node): Ditto.
11886 * ipa-cp.c (perhaps_add_new_callers): Ditto.
11887 * cgraphunit.c (cgraph_redirect_edge_call_stmt_to_callee): Ditto.
11888 (cgraph_materialize_all_clones): Ditto.
11889 * ipa-inline.c (report_inline_failed_reason): Ditto.
11890 (want_early_inline_function_p): Ditto.
11891 (edge_badness): Ditto.
11892 (update_edge_key): Ditto.
11893 (flatten_function): Ditto.
11894 (ipa_inline): Ditto.
11895 (inline_always_inline_functions): Ditto.
11896 (early_inline_small_functions): Ditto.
11897
11898 2012-04-30 Uros Bizjak <ubizjak@gmail.com>
11899
11900 PR target/53141
11901 * config/i386/i386.md (*umul<mode><dwi>3_1): Switch places of
11902 constraints 0 and 1.
11903
11904 012-04-30 Jan Hubicka <jh@suse.cz>
11905
11906 * cgraph.c (ld_plugin_symbol_resolution_names): Move to symtab.c
11907 (cgraph_asm_nodes, cgraph_asm_last_node): Move to cgraphunit.c
11908 (cgraph_add_to_same_comdat_group): Remove.
11909 (cgraph_add_asm_node): Move to cgraphunit.c.
11910 (cgraph_make_decl_local): Move to symtab.c
11911 (cgraph_make_node_local_1): Update.
11912 (cgraph_can_remove_if_no_direct_calls_and): Update.
11913 (used_from_object_file_p): Update.
11914 (resolution_used_from_other_file_p): Move to symtab.c
11915 (cgraph_used_from_object_file_p): move to symtab.c
11916 (verify_cgraph_node): Verify same comdat groups.
11917 * cgraph.h (cgraph_asm_node): Rename to ...
11918 (asm_node): ... this one.
11919 (cgraph_asm_nodes): Rename to ...
11920 (asm_nodes): ... this one.
11921 (symtab_add_to_same_comdat_group): New function.
11922 (symtab_dissolve_same_comdat_group_list): New function.
11923 (symtab_used_from_object_file_p): Declare.
11924 (symtab_make_decl_local): Declare.
11925 (cgraph_add_to_same_comdat_group): Remove.
11926 (cgraph_add_asm_node): Remove.
11927 (cgraph_used_from_object_file_p, varpool_used_from_object_file_p):
11928 Remove.
11929 (cgraph_finalize_compilation_unit): Rename to ...
11930 (finalize_compilation_unit): ... this one.
11931 (cgraph_optimize): Rename to ....
11932 (compile): ... this one.
11933 (add_asm_node): Declare.
11934 (fixup_same_cpp_alias_visibility): Declare.
11935 (cgraph_make_decl_local): Remove.
11936 (varpool_assemble_pending_decls): Rename to ...
11937 (varpool_output_variables): ... this one.
11938 (varpool_remove_unreferenced_decls): Remove.
11939 * ipa-inline-transform.c (clone_inlined_nodes): Dissolve comdat groups.
11940 (preserve_function_body_p): Make static.
11941 * toplev.c (compile_file): Update comments; update.
11942 * cgraphunit.c: Update comments.
11943 (cgraph_expand_all_functions): Rename to ...
11944 (expand_all_functions): ... this one; update.
11945 (cgraph_mark_functions_to_output): Rename to ...
11946 (mark_functions_to_output): ... this one; cleanup.
11947 (cgraph_output_pending_asms): Remove prototype.
11948 (asm_nodes, asm_last_node): New static vars.
11949 (cgraph_process_new_functions): Update.
11950 (cgraph_reset_node): Cleanup; add comment.
11951 (cgraph_add_new_function): Update.
11952 (cgraph_output_pending_asms): Rename to ...
11953 (output_asm_statements): ... this one.
11954 (add_asm_node): New function.
11955 (fixup_same_cpp_alias_visibility): New function based on code
11956 in cgraph_analyze_function.
11957 (cgraph_analyze_function): Use it.
11958 (cgraph_order_sort): Update.
11959 (cgraph_output_in_order): Update.
11960 (cgraph_function_versioning): Update.
11961 (cgraph_optimize): Rename to ...
11962 (compile): ... this one; initialize streamer hooks here.
11963 (cgraph_finalize_compilation_unit): Rename to ...
11964 (finalize_compilation_unit): ... this one; do not initialize streamer
11965 hook here.
11966 * lto-streamer-out.c (lto_output_toplevel_asms): Update.
11967 * dwarf2out.c: Update ocmment.
11968 * optimize.c (maybe_clone_body): Use symtab_add_to_same_comdat_group.
11969 * method.c (use_thunk): Likewise.
11970 * semantics.c (maybe_add_lambda_conv_op): Likewise.
11971 * decl2.c (maybe_emit_vtables): Likewise.
11972 (cp_write_global_declarations): Use finalize_compilation_unit.
11973 * parser.c (cp_parser_asm_definition): Use add_asm_node.
11974 * lto-streamer-in.c (lto_input_toplevel_asms): Use add_asm_node
11975 * c-decl.c (c_write_global_declarations): Use
11976 finalize_compilation_unit.
11977 * langhooks.c (write_global_declarations): Update.
11978 * ipa.c (cgraph_externally_visible_p): Update.
11979 (dissolve_same_comdat_group_list): Remove.
11980 (function_and_variable_visibility): Update.
11981 * symtab.c: Inlcude lto-streamer.h and rtl.h
11982 (ld_plugin_symbol_resolution_names): New.
11983 (symtab_add_to_same_comdat_group): New.
11984 (symtab_dissolve_same_comdat_group_list): New.
11985 (resolution_used_from_other_file_p): Move here from cgraph.c
11986 (symtab_used_from_object_file_p): New.
11987 (symtab_make_decl_local): New.
11988 * passes.c (register_pass): Update comments.
11989 * c-parser.c (c_parser_asm_definition): Update.
11990 * varpool.c (varpool_analyze_node): Use
11991 fixup_same_cpp_alias_visibility.
11992 (varpool_remove_unreferenced_decls): Make static.
11993 (varpool_assemble_pending_decls): Rename to ...
11994 (varpool_output_variables): ... this one; call
11995 varpool_remove_unreferenced_decls.
11996 (varpool_used_from_object_file_p): Remove.
11997
11998 2012-04-30 Marc Glisse <marc.glisse@inria.fr>
11999
12000 PR c++/51033
12001 * c-typeck.c (build_array_ref): Call
12002 convert_vector_to_pointer_for_subscript.
12003 * doc/extend.texi (Vector Extensions): Subscripting not just for C.
12004
12005 2012-04-30 Uros Bizjak <ubizjak@gmail.com>
12006
12007 * config/i386/i386.md (and<mode>3): Change runtime operand mode checks
12008 to compile-time "mode == <MODE>mode" checks.
12009 (and splitter): Ditto.
12010
12011 2012-04-30 Richard Henderson <rth@redhat.com>
12012
12013 * config/arm/arm.md (UNSPEC_LL): New.
12014 * config/arm/sync.md (atomic_loaddi, atomic_loaddi_1): New.
12015 (arm_load_exclusivedi): Use %H0.
12016
12017 2012-04-30 Jason Merrill <jason@redhat.com>
12018
12019 * dwarf2out.c (comdat_symbol_id): Add const.
12020 (union die_symbol_or_type_node): Add const to die_symbol.
12021 (output_die_symbol, output_die, output_comp_unit): Adjust.
12022
12023 2012-04-30 Andrew Stubbs <ams@codesourcery.com>
12024
12025 * config/arm/arm.md (negdi2): Use gen_negdi2_neon.
12026 * config/arm/neon.md (negdi2_neon): New insn.
12027 Also add splitters for core and NEON registers.
12028
12029 2012-04-30 Andrew Stubbs <ams@codesourcery.com>
12030
12031 * config/arm/arm.c (neon_valid_immediate): Allow const_int.
12032 (arm_print_operand): Add 'x' format.
12033 * config/arm/constraints.md (Dn): Allow const_int.
12034 * config/arm/neon.md (neon_mov<mode>): Use VDX to allow DImode.
12035 Use 'x' format to print constants.
12036 * config/arm/predicates.md (imm_for_neon_mov_operand): Allow const_int.
12037 * config/arm/vfp.md (movdi_vfp): Disable for const_int when neon
12038 is enabled.
12039 (movdi_vfp_cortexa8): Likewise.
12040
12041 2012-04-30 Ian Bolton <ian.bolton@arm.com>
12042 Sameera Deshpande <sameera.deshpande@arm.com>
12043 Greta Yorsh <greta.yorsh@arm.com>
12044
12045 * config/arm/arm-protos.h (ldm_stm_operation_p): New declaration.
12046 * config/arm/arm.c (ldm_stm_operation_p): New function.
12047 * config/arm/predicates.md (load_multiple_operation): Update predicate.
12048 (store_multiple_operation): Likewise.
12049
12050 * config/arm/arm-protos.h (ldm_stm_operation_p): New parameters.
12051 * config/arm/arm.c (ldm_stm_operation_p): New parameters.
12052 * config/arm/predicates.md (load_multiple_operation): Add arguments.
12053 (store_multiple_operation): Likewise.
12054
12055 2012-04-30 Uros Bizjak <ubizjak@gmail.com>
12056
12057 * config/i386/i386.md (and<mode>3): Expand masking operations with
12058 0xff, 0xffff or 0xffffffff immediates to corresponding zero_extend RTX.
12059 (and splitter): Split to DImode zero_extend RTX for DImode operand[0].
12060
12061 2012-04-30 Dodji Seketeli <dodji@redhat.com>
12062
12063 Add -Wvarargs option
12064 * builtins.c (fold_builtin_next_arg): Use OPT_Wvarargs as an
12065 argument for the various warning_at calls.
12066 * docs/invoke.texi: Update the documentation.
12067
12068 2012-04-30 Dodji Seketeli <dodji@redhat.com>
12069
12070 Switch -ftrack-macro-expansion=2 on by default.
12071 * docs/cppopts.texi: Adjust for enabling -ftrack-macro-expansion=2
12072 by default.
12073
12074 Fix va_start related location
12075 * builtins.c (fold_builtin_next_arg): Unwinds to the first
12076 location in real source code.
12077
12078 Make conversion warnings work on NULL with -ftrack-macro-expansion
12079 * input.h (expansion_point_location_if_in_system_header): Declare
12080 new function.
12081 * input.c (expansion_point_location_if_in_system_header): Define it.
12082
12083 Fix -Wuninitialized for -ftrack-macro-expansion
12084 * tree-ssa.c (warn_uninit): Use the spelling location of the variable
12085 declaration. Use linemap_location_before_p for source locations.
12086
12087 Strip "<built-in>" loc from displayed expansion context
12088 * input.c (expand_location_1): When expanding to spelling location
12089 in a context of a macro expansion, skip reserved system header
12090 locations. Update comments. * tree-diagnostic.c
12091 (maybe_unwind_expanded_macro_loc): Likewise.
12092
12093 Make expand_location resolve to locus in main source file
12094 * input.c (expand_location_1): New. Takes a parameter to choose
12095 whether to resolve the location to spelling or expansion point.
12096 Was factorized from ...
12097 (expand_location): ... here.
12098 (expand_location_to_spelling_point): New. Implemented in terms of
12099 expand_location_1.
12100 * diagnostic.c (diagnostic_build_prefix): Use the new
12101 expand_location_to_spelling_point instead of expand_location.
12102
12103 Fix PCH crash on GTYed pointer-to-scalar field of a struct
12104 * gengtype.c (write_types_process_field): Force second argument of
12105 the call to the PCH object hierarchy walker to be 'x'.
12106
12107 2012-04-30 Eric Botcazou <ebotcazou@adacore.com>
12108
12109 * config/i386/i386.c (ix86_handle_struct_attribute): Use the proper
12110 predicate to discriminate types.
12111
12112 2012-04-30 Manuel López-Ibáñez <manu@gcc.gnu.org>
12113
12114 * doc/invoke.texi (Wmissing-format-attribute): Document as an
12115 alias of Wsuggest-attribute=format.
12116 * c-typeck.c (convert_for_assignment): Replace
12117 Wmissing-format-attribute with Wsuggest-attribute=format.
12118 (digest_init): Likewise.
12119
12120 2012-04-29 Manuel López-Ibáñez <manu@gcc.gnu.org>
12121
12122 * opts.c (finish_options): Do not handle -Wmissing-noreturn here.
12123 * common.opt (Wmissing-noreturn): Alias of
12124 -Wsuggest-attribute=noreturn.
12125
12126 2012-04-29 Hans-Peter Nilsson <hp@axis.com>
12127
12128 PR target/53156
12129 * config/cris/cris.md (andqu): New peephole2.
12130 (andu): Tweak head comment.
12131
12132 2012-04-28 Joern Rennecke <joern.rennecke@embecosm.com>
12133 Steven Bosscher <steven@gcc.gnu.org>
12134 Maxim Kuvyrkov <maxim@codesourcery.com>
12135
12136 PR tree-optimization/38785
12137 * common.opt (ftree-partial-pre): New option.
12138 * doc/invoke.texi: Document it.
12139 * opts.c (default_options_table): Initialize flag_tree_partial_pre.
12140 * tree-ssa-pre.c (do_partial_partial_insertion): Insert only if it will
12141 benefit speed path.
12142 (execute_pre): Use flag_tree_partial_pre.
12143
12144 2012-04-27 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
12145
12146 PR target/52999
12147 * config/pa/pa.c (pa_legitimate_constant_p): Don't put function labels
12148 in constant pool.
12149
12150 2012-04-27 Ollie Wild <aaw@google.com>
12151
12152 * doc/invoke.texi (Wliteral-suffix): Document new option.
12153
12154 2012-04-27 Tom Tromey <tromey@redhat.com>
12155
12156 * dwarf2out.c (dwarf_stack_op_name): Use get_DW_OP_name.
12157 (dwarf_tag_name): Use get_DW_TAG_name.
12158 (dwarf_attr_name): Use get_DW_AT_name.
12159 (dwarf_form_name): Use get_DW_FORM_name.
12160 * dwarf2cfi.c (dwarf_cfi_name): Use get_DW_CFA_name.
12161
12162 2012-04-27 Paolo Bonzini <bonzini@gnu.org>
12163
12164 * tree-ssa-phiopt.c (conditional_replacement): Replace PHIs whose
12165 arguments are -1 and 0, by negating the result of the conditional.
12166
12167 2012-04-27 Paolo Bonzini <bonzini@gnu.org>
12168
12169 PR target/53138
12170 * config/i386/i386.md (x86_mov<mode>cc_0_m1_neg): Add clobber.
12171
12172 2012-04-27 Richard Guenther <rguenther@suse.de>
12173
12174 * tree-flow.h (is_hidden_global_store): Remove.
12175 * tree-ssa-sink.c (is_hidden_global_store): Likewise.
12176 * tree-ssa-alias.h (ref_may_alias_global_p): Declare.
12177 (stmt_may_clobber_global_p): Likewise.
12178 * tree-ssa-alias.c (ref_may_alias_global_p): New function.
12179 (stmt_may_clobber_global_p): Likewise.
12180 * tree-ssa-dce.c (mark_stmt_if_obviously_necessary): Call
12181 stmt_may_clobber_global_p.
12182 * tree-ssa-dse.c (dse_possible_dead_store_p): Likewise.
12183
12184 2012-04-27 Steven Bosscher <steven@gcc.gnu.org>
12185
12186 * cfg.c (disconnect_src): Do df_mark_solutions_dirty in the right
12187 place.
12188
12189 * tree-switch-conversion.c (struct switch_conv_info): Add range_max,
12190 reorganize some fields and update comments. Rename bit_test_uniq
12191 and bit_test_count to uniq resp. count. Remove bit_test_bb.
12192 (collect_switch_conv_info): New function, collects info about a
12193 GIMPLE_SWITCH into a struct switch_conv_info.
12194 (check_range): Simplify to use pre-recorded info. Fix think-o in
12195 range-branch ratio check.
12196 (check_process_case): Remove function.
12197 (check_all_empty_except_final): New function, verifies that all
12198 non-final basic blocks are empty.
12199 (process_switch): Simplify to use pre-recorded info. Call
12200 collect_switch_conv_info to do that. Assert that degenerate switch
12201 statements have been cleaned up.
12202
12203 2012-04-27 Marc Glisse <marc.glisse@inria.fr>
12204
12205 PR middle-end/27139
12206 * tree-ssa-forwprop.c (combine_conversions): Handle INT->FP->INT.
12207
12208 2012-04-25 Manuel López-Ibáñez <manu@gcc.gnu.org>
12209
12210 PR c/53130
12211 * c-typeck.c (pop_init_level): Use %qD instead of %qT.
12212
12213 2012-04-27 Tom de Vries <tom@codesourcery.com>
12214
12215 PR tree-optimization/51879
12216 * tree-ssa-sccvn.h (struct vn_reference_s): Add result_vdef field.
12217 * tree-ssa-sccvn.c (mark_use_processed): New function, factored out
12218 of ...
12219 (defs_to_varying): ... here. Don't set use_processed.
12220 (visit_reference_op_call): Handle gimple_vdef.
12221 Handle case that lhs is NULL_TREE.
12222 (visit_use): Use mark_use_processed. Handle calls with side-effect
12223 using visit_reference_op_call.
12224
12225 2012-04-26 Richard Sandiford <richard.sandiford@linaro.org>
12226
12227 * sched-deps.c (fixup_sched_groups): Rename to...
12228 (chain_to_prev_insn): ...this.
12229 (chain_to_prev_insn_p): New function.
12230 (deps_analyze_insn): Use it instead of SCHED_GROUP_P.
12231
12232 2012-04-26 Richard Sandiford <richard.sandiford@linaro.org>
12233
12234 * sched-int.h (_haifa_insn_data): Move priority_status.
12235 Add model_index.
12236 (INSN_MODEL_INDEX): New macro.
12237 * haifa-sched.c (insn_delay): New function.
12238 (sched_regno_pressure_class): Update commentary.
12239 (mark_regno_birth_or_death): Pass the liveness bitmap and
12240 pressure array as arguments, instead of using curr_reg_live and
12241 curr_reg_pressure. Only update the pressure if the bit in the
12242 liveness set has changed.
12243 (initiate_reg_pressure_info): Always trust the live-in set for
12244 SCHED_PRESSURE_MODEL.
12245 (initiate_bb_reg_pressure_info): Update call to
12246 mark_regno_birth_or_death.
12247 (dep_list_size): Take the list as argument.
12248 (calculate_reg_deaths): New function, extracted from...
12249 (setup_insn_reg_pressure_info): ...here.
12250 (MODEL_BAR): New macro.
12251 (model_pressure_data, model_insn_info, model_pressure_limit)
12252 (model_pressure_group): New structures.
12253 (model_schedule, model_worklist, model_insns, model_num_insns)
12254 (model_curr_point, model_before_pressure, model_next_priority):
12255 New variables.
12256 (MODEL_PRESSURE_DATA, MODEL_MAX_PRESSURE, MODEL_REF_PRESSURE)
12257 (MODEL_INSN_INFO, MODEL_INSN): New macros.
12258 (model_index, model_update_limit_points_in_group): New functions.
12259 (model_update_limit_points, model_last_use_except): Likewise.
12260 (model_start_update_pressure, model_update_pressure): Likewise.
12261 (model_recompute, model_spill_cost, model_excess_group_cost): Likewise.
12262 (model_excess_cost, model_dump_pressure_points): Likewise.
12263 (model_set_excess_costs): Likewise.
12264 (rank_for_schedule): Extend SCHED_PRIORITY_WEIGHTED ordering to
12265 SCHED_PRIORITY_MODEL. Use insn_delay. Use the order in the model
12266 schedule as an alternative tie-breaker. Update the call to
12267 dep_list_size.
12268 (ready_sort): Call model_set_excess_costs.
12269 (update_register_pressure): Update call to mark_regno_birth_or_death.
12270 Rely on that function to check liveness rather than doing it here.
12271 (model_classify_pressure, model_order_p, model_add_to_worklist_at)
12272 (model_remove_from_worklist, model_add_to_worklist, model_promote_insn)
12273 (model_add_to_schedule, model_analyze_insns, model_init_pressure_group)
12274 (model_record_pressure, model_record_pressures): New functions.
12275 (model_record_final_pressures, model_add_successors_to_worklist)
12276 (model_promote_predecessors, model_choose_insn): Likewise.
12277 (model_reset_queue_indices, model_dump_pressure_summary): Likewise.
12278 (model_start_schedule, model_finalize_pressure_group): Likewise.
12279 (model_end_schedule): Likewise.
12280 (schedule_insn): Say when we're scheduling the next instruction
12281 in the model schedule.
12282 (schedule_insn): Handle SCHED_PRESSURE_MODEL.
12283 (queue_to_ready): Do not add instructions that are
12284 MAX_SCHED_READY_INSNS beyond the current point of the model schedule.
12285 Always allow the next instruction in the model schedule to be added.
12286 (debug_ready_list): Print the INSN_REG_PRESSURE_EXCESS_COST_CHANGE
12287 and delay for SCHED_PRESSURE_MODEL too.
12288 (prune_ready_list): Extend SCHED_PRIORITY_WEIGHTED handling to
12289 SCHED_PRIORITY_MODEL, but also take the DFA into account.
12290 (schedule_block): Call model_start_schedule and model_end_schedule.
12291 Extend SCHED_PRIORITY_WEIGHTED stall handling to SCHED_PRIORITY_MODEL.
12292 (sched_init): Extend INSN_REG_PRESSURE_EXCESS_COST_CHANGE handling
12293 to SCHED_PRESSURE_MODEL, but don't allocate saved_reg_live or
12294 region_ref_regs.
12295 (sched_finish): Update accordingly.
12296 (fix_tick_ready): Extend INSN_REG_PRESSURE_EXCESS_COST_CHANGE handling
12297 to SCHED_PRESSURE_MODEL.
12298 (add_jump_dependencies): Update call to dep_list_size.
12299 (haifa_finish_h_i_d): Fix leak of max_reg_pressure.
12300 (haifa_init_insn): Extend INSN_REG_PRESSURE_EXCESS_COST_CHANGE handling
12301 to SCHED_PRESSURE_MODEL.
12302 * sched-deps.c (init_insn_reg_pressure_info): Likewise, but don't
12303 allocate INSN_MAX_REG_PRESSURE for SCHED_PRESSURE_MODEL.
12304 (sched_analyze_insn): Extend INSN_REG_PRESSURE_EXCESS_COST_CHANGE
12305 handling to SCHED_PRESSURE_MODEL.
12306
12307 2012-04-26 Richard Sandiford <richard.sandiford@linaro.org>
12308
12309 * common.opt (fsched-pressure-algorithm=): New option.
12310 * flag-types.h (sched_pressure_algorithm): New enum.
12311 * sched-int.h (sched_pressure_p): Replace with...
12312 (sched_pressure): ...this new variable.
12313 * haifa-sched.c (sched_pressure_p): Replace with...
12314 (sched_pressure): ...this new variable.
12315 (sched_regno_pressure_class, rank_for_schedule, ready_sort)
12316 (update_reg_and_insn_max_reg_pressure, schedule_insn)
12317 (debug_ready_list, prune_ready_list, schedule_block, sched_init)
12318 (sched_finish, fix_tick_ready, haifa_init_insn): Update accordingly.
12319 * sched-deps.c (init_insn_reg_pressure_info): Likewise.
12320 (sched_analyze_insn): Likewise.
12321 * sched-rgn.c (schedule_region): Likewise.
12322 * config/m68k/m68k.c (m68k_sched_variable_issue): Likewise.
12323
12324 2012-04-26 Bernd Schmidt <bernds@codesourcery.com>
12325
12326 * PR middle-end/52997
12327 * ira.c (find_moveable_pseudos): Call resize_reg_info.
12328
12329 PR middle-end/52940
12330 * machmode.h (CLASS_HAS_WIDER_MODES_P): True for MODE_PARTIAL_INT.
12331 * expr.c (convert_move): Honor unsignedp when extending partial int
12332 modes.
12333 * genmodes.c (complete_mode): Don't clear component field of partial
12334 int modes.
12335 (emit_mode_inner): Don't emit it however.
12336 (calc_wider_mode): Partial int modes widen to their component.
12337
12338 2012-04-26 David S. Miller <davem@davemloft.net>
12339
12340 * config/sparc/niagara4.md: New file.
12341 * config/sparc/sparc.md: Include it.
12342 * config/sparc/sparc.c (niagara4_costs): New processor costs.
12343 (sparc_option_override): Use it.
12344 (sparc_use_sched_lookahead): Return 2 for niagara4.
12345 (sparc_issue_rate): Likewise.
12346
12347 * config/sparc/sparc.md (attr type): Delete 'fgm_cmp'.
12348 (fpack16_vis, fpackfix_vis, fpack32_vis): Set type to fgm_pack.
12349 (fmul8x16_vis, fmul8x16au_vis, fmul8x16al_vis, fmul8sux16_vis,
12350 fmul8ulx16_vis, fmuld8sux16_vis, fmuld8ulx16_vis): Set type to fgm_mul.
12351 (alignaddrsi_vis, alignaddrdi_vis, alignaddrlsi_vis,
12352 alignaddrldi_vis): Set type to gsr.
12353 (pdist_vis, pdistn<mode>_vis): Set type to fgm_pdsit.
12354 (fcmp<code><GCM:gcm_name><P:mode>_vis, cmask8<P:mode>_vis,
12355 cmask16<P:mode>_vis, cmask32<P:mode>_vis, fchksm16_vis,
12356 v<vis3_shift_patname><mode>3, fmean16_vis,
12357 fp<plusminus_insn>64_vis, <vis3_addsub_ss_patname><mode>3,
12358 fucmp<code>8<P:mode>_vis): Set type to fga.
12359 * config/sparc/ultra1_2.md: Remove refrences to fgm_cmp.
12360 * config/sparc/niagara.md: Likewise.
12361 * config/sparc/niagara2.md: Likewise.
12362 * config/sparc/ultra3.md: Likewise, and fix type matching for
12363 us3_ialuX reservation.
12364
12365 2012-04-26 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
12366
12367 * reload.c (find_reloads): Change the loop nesting when trying an
12368 alternative with swapped operands.
12369
12370 2012-04-26 Manuel López-Ibáñez <manu@gcc.gnu.org>
12371
12372 * tree-diagnostic.c (maybe_unwind_expanded_macro_loc): Fix
12373 comment. Delete unused parameter first_exp_point_map.
12374 (virt_loc_aware_diagnostic_finalizer): Update call.
12375
12376 2012-04-26 Michael Hope <michael.hope@linaro.org>
12377 Richard Earnshaw <rearnsha@arm.com>
12378
12379 * config/arm/linux-eabi.h (GLIBC_DYNAMIC_LINKER_SOFT_FLOAT): Define.
12380 (GLIBC_DYNAMIC_LINKER_HARD_FLOAT): Define.
12381 (GLIBC_DYNAMIC_LINKER_DEFAULT): Define.
12382 (GLIBC_DYNAMIC_LINKER): Redefine to use the hard float path.
12383
12384 2012-04-25 Sriraman Tallam <tmsriram@google.com>
12385
12386 * doc/extend.texi: Document avx2 support.
12387 * config/i386/i386.c (fold_builtin_cpu): Add avx2.
12388
12389 2012-04-26 Hans-Peter Nilsson <hp@axis.com>
12390
12391 PR target/53120
12392 * config/cris/cris.md ("*andhi_lowpart_v32")
12393 ("*andqi_lowpart_v32"): Change first input-only operand from
12394 a (match_operand ...) to (match_dup 0). Drop alternatives with
12395 const_int-matching constraints for redundancy.
12396 ("*andhi_lowpart_non_v32", "*andqi_lowpart_non_v32"): Ditto. Drop
12397 three-operand alternative.
12398
12399 2012-04-25 Jakub Jelinek <jakub@redhat.com>
12400
12401 PR target/53110
12402 * config/i386/i386.md (and<mode>3): For andq $0xffffffff, reg
12403 instead expand it as zero extension.
12404
12405 2012-04-25 H.J. Lu <hongjiu.lu@intel.com>
12406
12407 PR debug/52857
12408 * dwarf2out.c (dbx_reg_number): Assert return value != INVALID_REGNUM.
12409
12410 2012-04-25 Jakub Jelinek <jakub@redhat.com>
12411
12412 * common.opt (flag_debug_types_section): Default to 0.
12413 (dwarf_version): Default to 4.
12414 (dwarf_record_gcc_switches): Default to 1.
12415 (dwarf_strict): Default to 0.
12416 * toplev.c (process_options): Don't handle dwarf_strict
12417 or dwarf_version here.
12418 * config/vxworks.c (vxworks_override_options): Don't
12419 test whether dwarf_strict or dwarf_version are negative,
12420 instead test !global_options_set.x_dwarf_*.
12421 * config/darwin.c (darwin_override_options): Default to
12422 dwarf_version 2.
12423 * doc/invoke.texi: Note that -gdwarf-4, -grecord-gcc-switches
12424 and -fno-debug-types-section are now the default.
12425
12426 2012-04-25 Jan Hubicka <jh@suse.cz>
12427
12428 * cgraphunit.c: Update toplevel comment.
12429 (tree_rest_of_compilation): Merge into cgraph_expand_function.
12430 (cgraph_analyze_function): Make static.
12431 (cgraph_decide_is_function_needed): Make static.
12432 (cgraph_add_new_function): Use expand_function instead of
12433 rest_of_compilation.
12434 (clone_of_p, verify_edge_count_and_frequency, cgraph_debug_gimple_stmt,
12435 verify_edge_corresponds_to_fndecl, verify_cgraph_node, verify_cgraph):
12436 Move to cgraph.c
12437 (cgraph_inline_p): Remove.
12438 (cgraph_preserve_function_body_p): Move to ipa-inline-transform.
12439 (init_cgraph): Add comment.
12440 * cgraphbuild.c (record_reference, mark_address, mark_load,
12441 mark_store): Do not call analyze_expr hook.
12442 * cgraph.c: Update toplevel comment.
12443 (clone_of_p, verify_edge_count_and_frequency, cgraph_debug_gimple_stmt,
12444 verify_edge_corresponds_to_fndecl, verify_cgraph_node, verify_cgraph):
12445 Move fere from cgraphunit.c
12446 (cgraph_mark_force_output_node): Move to cgraph.h
12447 * cgraph.h: Reorder so the comments match the function placement.
12448 (cgraph_analyze_function, cgraph_decide_is_function_needed): Remove.
12449 (cgraph_mark_force_output_node): Move here from cgraph.c
12450 * tree.c (free_lang_data): Do not clear analyze_expr hook.
12451 * ipa-inline-transform.c (preserve_function_body_p): New function.
12452 (inline_transform): Update.
12453 * langhooks.c (lhd_callgraph_analyze_expr): Remove.
12454 * langhooks.h (lang_hooks_for_callgraph): Remove.
12455 (lang_hooks): Remove callgraph.
12456 * tree-inline.c (expand_call_inline): Do not use cgraph_inline_p.
12457 * varpool.c: Remove out of date comment.
12458 * langhooks-def.h (lhd_callgraph_analyze_expr): Remove.
12459 (LANG_HOOKS_CALLGRAPH_ANALYZE_EXPR): Remove.
12460
12461 2012-04-25 Jan Hubicka <jh@suse.cz>
12462
12463 PR middle-end/53089
12464 * cgraphunit.c (referred_to_p): Move ahead in file to avoid
12465 forward declaration.
12466 (cgraph_finalize_function): Finalize them here.
12467 * symtab.c (dump_symtab): Dump ctors and dtors.
12468
12469 2012-04-25 Jakub Jelinek <jakub@redhat.com>
12470
12471 PR middle-end/52979
12472 * stor-layout.c (get_best_mode): Don't return mode with bitsize
12473 larger than maxbits. Don't compute maxbits modulo align.
12474 Also check that unit bytes long store at bitpos / unit * unit
12475 doesn't affect bits beyond bitregion_end.
12476 * expmed.c (store_bit_field_1): Avoid trying insv if OP_MODE MEM
12477 would not fit into bitregion_start ... bitregion_end + 1 bit region.
12478 (store_split_bit_field): Decrease unit close to end of bitregion_end
12479 if access is restricted in order to avoid mutual recursion.
12480
12481 PR tree-optimization/53058
12482 * double-int.h (double_int_max_value, double_int_min_value): New
12483 prototypes.
12484 * double-int.c (double_int_max_value, double_int_min_value): New
12485 functions.
12486 * tree-vrp.c (register_edge_assert_for_2): Compare mask for LE_EXPR
12487 or GT_EXPR with double_int_max_value instead of double_int_mask.
12488
12489 2012-04-25 Richard Guenther <rguenther@suse.de>
12490
12491 * tree-vectorizer.h (vect_loop_versioning): Adjust prototype.
12492 * tree-vect-loop.c (vect_transform_loop): Adjust.
12493 * tree-vect-loop-manip.c (vect_do_peeling_for_loop_bound): Record
12494 the maximum number of iterations for the epilogue loop.
12495 (vect_loop_versioning): Remove case re-using the peeled epilogue loop.
12496
12497 2012-04-25 Jakub Jelinek <jakub@redhat.com>
12498
12499 PR c/52880
12500 * c-typeck.c (set_nonincremental_init,
12501 set_nonincremental_init_from_string): Pass true instead of false
12502 as IMPLICIT to add_pending_init.
12503
12504 2012-04-25 Manuel López-Ibáñez <manu@gcc.gnu.org>
12505
12506 * c-typeck.c (pop_init_level): Improve diagnostics.
12507
12508 2012-04-25 Uros Bizjak <ubizjak@gmail.com>
12509
12510 * compare-elim.c (try_eliminate_compare): Also handle operands with
12511 implicit extensions.
12512
12513 2012-04-25 Alan Modra <amodra@gmail.com>
12514
12515 * config/rs6000/rs6000 (SAVE_INLINE_VRS, REST_INLINE_VRS,
12516 V_SAVE_INLINE, SAVRES_LR, SAVRES_SAVE, SAVRES_REG,
12517 SAVRES_GPR, SAVRES_FPR, SAVRES_VR): Define.
12518 (no_global_regs_above): Delete.
12519 (no_global_regs): New function.
12520 (rs6000_savres_strategy): Handle vector regs. Use proper lr_save_p
12521 value for load multiple test.
12522 (savres_routine_syms): Increase size.
12523 (rs6000_savres_routine_name, rs6000_savres_routine_sym,
12524 ptr_regno_for_savres, rs6000_emit_savres_rtx): Pass in int selector
12525 rather than a number of boolean flags. Update all callers.
12526 (rs6000_savres_routine_name): Generate vector save/restore names.
12527 (rs6000_savres_routine_sym): Handle vector regs. Delete forward decl.
12528 (ptr_regno_for_savres, rs6000_emit_savres_rtx): Likewise.
12529 (rs6000_emit_prologue): Delete saving_FPRs_inline, saving_GPRs_inline
12530 and using_store_multiple. Expand uses. Don't always use r11 as
12531 frame reg when needed for out-of-line saves. Set up initial offset
12532 for out-of-line vector saves when buying stack frame. Handle pointer
12533 reg setup for out-of-line fp save. Emit call to out-of-line vector
12534 save function. Choose r11 or r12 for vrsave reg when available for
12535 better scheduling.
12536 (rs6000_output_function_prologue): Don't emit .extern for ELF.
12537 (rs6000_emit_epilogue): Choose a better frame reg when restoring
12538 from back-chain to suit out-of-line vector restore functions. Emit
12539 call to out-of-line vector restore function. Adjust register used
12540 for cr restore. Tweak pointer register setup for gpr restore.
12541 * config/rs6000/rs6000.h (FIRST_SAVED_GP_REGNO): Take into account
12542 FIXED_R13.
12543 * config/rs6000/sysv4.h (FP_SAVE_INLINE, GP_SAVE_INLINE): Simplify.
12544 (V_SAVE_INLINE): Define.
12545 * config/rs6000/altivec.md (save_vregs_*, restore_vregs_*): New insns.
12546
12547 2012-04-25 Alan Modra <amodra@gmail.com>
12548
12549 * config/rs6000/rs6000.c (rs6000_savres_strategy): Allow
12550 out-of-line save/restore for large frames. Don't disable
12551 out-of-line saves on ABI_AIX when using static chain reg.
12552 (rs6000_emit_prologue): Adjust cr_save_regno on ABI_AIX to not
12553 clobber static chain reg, and tweak for out-of-line gpr saves
12554 that use r1.
12555
12556 2012-04-25 Alan Modra <amodra@gmail.com>
12557
12558 * config/rs6000/rs6000.c (START_USE, END_USE, NOT_INUSE): Define.
12559 (rs6000_emit_prologue): Use the above to catch register overlap.
12560
12561 2012-04-25 Alan Modra <amodra@gmail.com>
12562
12563 * config/rs6000/rs6000.c (rs6000_emit_stack_reset): Delete forward
12564 decl. Move logic selecting update reg to callers. Update all callers.
12565 (rs6000_emit_allocate_stack): Add copy_off param.
12566 (emit_frame_save): Don't handle reg+reg addressing.
12567 (ptr_regno_for_savres): New function, extracted from..
12568 (rs6000_emit_savres_rtx): ..here. Add lr_offset param.
12569 (rs6000_emit_prologue): Generate frame_ptr_rtx as we need it.
12570 Set frame_reg_rtx to r11 whenever r11 is needed, and merge
12571 frame offset adjustment for out-of-line save with copy from sp.
12572 Simplify condition controlling whether cr is saved early or
12573 late. Use ptr_regno_for_savres to verify correct reg is set
12574 up for out-of-line saves. Pass the actual pointer reg used to
12575 rs6000_emit_savres_rtx so rtl matches insns in out-of-line
12576 function. Rearrange spe vars so code is similar to that
12577 elsewhere in this function. Don't update frame_off when spe
12578 save code will restore r11. Use emit_frame_save for spe and
12579 gpr saves. Consolidate darwin out-of-line gpr setup with that
12580 for other abis. Don't assume frame_offset is zero and frame
12581 reg is sp when setting up altivec reg saves, and calculate
12582 exact offset requirement.
12583 (rs6000_emit_epilogue): Use HOST_WIDE_INT for frame_off. Tidy
12584 spe restore code. Consolidate darwin out-of-line gpr setup
12585 with that for other abis.
12586
12587 2012-04-25 Alan Modra <amodra@gmail.com>
12588
12589 * config/rs6000/rs6000.c (rs6000_frame_related): Don't emit a
12590 REG_FRAME_RELATED_EXPR note when the instruction exactly matches
12591 the replacement.
12592 (emit_frame_save): Delete frame_ptr param. Rename total_size to
12593 frame_reg_to_sp.
12594 (rs6000_emit_prologue): Add sp_off. Update rs6000_frame_related
12595 and emit_frame_save calls. Cope with possibly missing note.
12596
12597 2012-04-24 Sriraman Tallam <tmsriram@google.com>
12598
12599 * config/i386/i386.c (build_processor_model_struct): New function.
12600 (make_var_decl): New function.
12601 (fold_builtin_cpu): New function.
12602 (ix86_fold_builtin): New function.
12603 (make_cpu_type_builtin): New function.
12604 (ix86_init_platform_type_builtins): New function.
12605 (ix86_expand_builtin): Expand new builtins by folding them.
12606 (ix86_init_builtins): Make new builtins to detect CPU type.
12607 (TARGET_FOLD_BUILTIN): New macro.
12608 (IX86_BUILTIN_CPU_INIT): New enum value.
12609 (IX86_BUILTIN_CPU_IS): New enum value.
12610 (IX86_BUILTIN_CPU_SUPPORTS): New enum value.
12611 * config/i386/i386-builtin-types.def: New function type.
12612 * testsuite/gcc.target/builtin_target.c: New testcase.
12613 * doc/extend.texi: Document builtins.
12614
12615 2012-04-24 Olivier Hainque <hainque@adacore.com>
12616
12617 * common.opt (gdwarf-): Initialize dwarf_version to -1 instead of 2.
12618 * toplev.c (process_options): Default to dwarf_version 2.
12619 * config/vxworks.c (vxworks_override_options): Default to strict-dwarf
12620 and dwarf_version 2.
12621
12622 2012-04-24 Manuel López-Ibáñez <manu@gcc.gnu.org>
12623
12624 * tree-pretty-print.h (default_tree_printer): Do not declare.
12625 * tree-diagnostic.c: Include tree-pretty-print.h, tree-pass.h and
12626 intl.h.
12627 (default_tree_diagnostic_starter): Make static.
12628 (default_tree_printer): Move to here. Make static.
12629 (tree_diagnostics_defaults): New.
12630 * tree-diagnostic.h (default_tree_diagnostic_starter): Do not declare.
12631 * tree.c (free_lang_data): Use tree_diagnostics_defaults.
12632 * toplev.c: Do not include tree-pass.h.
12633 (default_tree_printer): Move from here.
12634 (general_init): Use tree_diagnostics_defaults.
12635
12636 2012-04-24 Chao-ying Fu <fu@mips.com>
12637
12638 * config.gcc (mips64*-*-linux*): Append mips/linux-common.h to tm_file.
12639 (mips*-*-linux*): Append mips/linux-common.h to tm_file.
12640 * config/mips/gnu-user.h
12641 (SUBTARGET_CC1_SPEC): Use GNU_USER_TARGET_CC1_SPEC directly.
12642 (GNU_USER_TARGET_LINK_SPEC): New define.
12643 (LINK_SPEC): Use GNU_USER_TARGET_LINK_SPEC.
12644 (LIB_SPEC): Use GNU_USER_TARGET_LIB_SPEC directly.
12645 (GNU_USER_TARGET_MATHFILE_SPEC): New define.
12646 (ENDFILE_SPEC): Use GNU_USER_TARGET_MATHFILE_SPEC and
12647 GNU_USER_TARGET_ENDFILE_SPEC.
12648 * config/mips/gnu-user64.h (LIB_SPEC): Remove.
12649 (GNU_USER_TARGET_LINK_SPEC): New define.
12650 (LINK_SPEC): Use GNU_USER_TARGET_LINK_SPEC.
12651 * config/mips/linux-common.h: New file.
12652
12653 2012-04-24 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
12654
12655 PR target/47197
12656 * config/rs6000/rs6000-c.c (fully_fold_convert): New function.
12657 (altivec_build_resolved_builtin): Call fully_fold_convert.
12658
12659 2012-04-24 Georg-Johann Lay <avr@gjlay.de>
12660
12661 PR target/53065
12662 * config/avr/avr.h (HARD_REGNO_CALL_PART_CLOBBERED): New hook define.
12663
12664 2012-04-24 Richard Guenther <rguenther@suse.de>
12665
12666 PR tree-optimization/53085
12667 * tree-ssa-pre.c (eliminate): Do not eliminate volatile redundant
12668 stores.
12669
12670 2012-04-24 Richard Guenther <rguenther@suse.de>
12671
12672 * tree-if-conv.c (main_tree_if_conversion): Move bb under
12673 ENABLE_CHECKING.
12674
12675 2012-04-24 Jim Meyering <meyering@redhat.com>
12676
12677 * genattrtab.c (gen_attr): Avoid NULL-deref after diagnosing
12678 absence of an define_enum call.
12679
12680 2012-04-24 Richard Guenther <rguenther@suse.de>
12681
12682 * tree-vect-loop-manip.c (vect_do_peeling_for_loop_bound): If
12683 the epilogue loop is not re-used as unvectorized version
12684 record the its maximum number of iterations.
12685
12686 2012-04-24 Andrew Pinski <apinski@cavium.com>
12687
12688 * tree-ssa-forwprop.c (simplify_bitwise_binary):
12689 Don't directly use def1/def2.
12690
12691 2012-04-24 Richard Guenther <rguenther@suse.de>
12692
12693 PR tree-optimization/53098
12694 * tree-vect-loop.c (vect_analyze_loop_operations): Fixup
12695 comparison sign.
12696
12697 2012-04-24 Andrew Pinski <apinski@cavium.com>
12698
12699 PR tree-opt/33512
12700 * tree-ssa-forwprop.c (defcodefor_name): New function.
12701 (simplify_bitwise_binary): Use defcodefor_name instead of manually
12702 Simplify "( X | Y) & X" to X and "( X & Y) | X" to X.
12703 Simplify "(~X | Y) & X" to "X & Y" and
12704 "(~X & Y) | X" to "X | Y".
12705
12706 2012-04-24 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
12707
12708 * recog.c (insn_invalid_p): Add IN_GROUP parameter and use
12709 validate_change to add clobbers if IN_GROUP is nonzero.
12710 (verify_changes): Call insn_invalid_p with IN_GROUP set to true.
12711 * recog.h (insn_invalid_p): Add IN_GROUP parameter to function
12712 prototype.
12713 * gcse.c (process_insert_insn): Call insn_invalid_p with IN_GROUP
12714 set to false.
12715 * config/s390/s390.c (insn_invalid_p): Likewise.
12716
12717 2012-04-24 Jakub Jelinek <jakub@redhat.com>
12718
12719 PR middle-end/53084
12720 * varasm.c (compute_reloc_for_constant): Handle ADDR_EXPR of MEM_REF.
12721 (output_addressed_constants): Likewise.
12722
12723 PR middle-end/52999
12724 * varasm.c (get_section): Don't ICE for section conflicts with
12725 built-in section kinds.
12726
12727 2012-04-23 DJ Delorie <dj@redhat.com>
12728
12729 * config/s390/s390.h (LINK_SPEC): Remove, no longer needed.
12730 (LIBSTDCXX): Change to CPP2.
12731
12732 2012-04-23 H.J. Lu <hongjiu.lu@intel.com>
12733
12734 PR bootstrap/52878
12735 * opth-gen.awk: Check if MASK_ and TARGET_ macros are defined for
12736 extra_masks.
12737
12738 2012-04-23 Uros Bizjak <ubizjak@gmail.com>
12739
12740 * config/i386/i386.md (*add<mode>_2): Add r/r/0 alternative.
12741 (*addsi_2_zext): Ditto.
12742 (*add<mode>_3): Ditto.
12743 (*addsi_3_zext): Ditto.
12744 (*add<mode>_5): Ditto.
12745
12746 2012-04-23 Andrew Pinski <apinski@cavium.com>
12747
12748 * tree-ssa-forwprop.c (simplify_bitwise_binary): Simplify (A & B) OP0
12749 (C & B) to (A OP0) & B.
12750
12751 2012-04-23 Martin Jambor <mjambor@suse.cz>
12752
12753 * expr.c (expand_expr_real_1): Remove setting parent's alias set for
12754 temporaries created for a bitfield (reverting revision 122014).
12755
12756 2012-04-23 Richard Guenther <rguenther@suse.de>
12757
12758 * tree-vect-loop-manip.c (slpeel_add_loop_guard): Gimplify
12759 the condition using is_gimple_condexpr and avoid the not necessary
12760 boolification.
12761 (set_prologue_iterations): Likewise.
12762 (vect_loop_versioning): Likewise.
12763
12764 2012-04-23 Richard Guenther <rguenther@suse.de>
12765
12766 PR tree-optimization/53070
12767 * tree-if-conv.c (combine_blocks): Free predicates in all blocks.
12768 (main_tree_if_conversion): Verify we succeeded in that.
12769
12770 2012-04-23 Jan Hubicka <jh@suse.cz>
12771
12772 * lto-symtab.c (lto_cgraph_replace_node): Do not call
12773 mark_reahcable_node.
12774 * cgraph.c (cgraph_remove_node): Do not clear reachable.
12775 (cgraph_mark_reachable_node): Remove.
12776 (cgraph_mark_force_output_node): Do not set reachable.
12777 (dump_cgraph_node): Do not dump reachable.
12778 (cgraph_create_virtual_clone): Do not set reachable.
12779 * cgraph.h (cgraph_node): Remove reachable flag.
12780 (varpool_node): Remove reachable flag.
12781 (cgraph_mark_if_needed): Remove.
12782 (cgraph_mark_reachable_node): Remove.
12783 * tree-emutls.c (ipa_lower_emutls): Do not check reachable.
12784 * cgraphunit.c (cgraph_finalize_function): Do not mark node as
12785 reachable.
12786 (cgraph_add_new_function): Likewise.
12787 (cgraph_mark_if_needed): Remove.
12788 (cgraph_analyze_function): Do not set target as reachable.
12789 (process_function_and_variable_attributes): Do not care about
12790 dllexport.
12791 (cgraph_analyze_functions): Do not set reachable flags.
12792 (cgraph_mark_functions_to_output): Do not check reachability.
12793 (cgraph_copy_node_for_versioning): Do not set reachable flag.
12794 (dbxout_expand_expr): Update.
12795 * c-decl.c (merge_decls): Do not track changed externs.
12796 * ipa.c: Include pointer-set.h
12797 (enqueue_cgraph_node): Use reachable pointer set.
12798 (process_references): Likewise.
12799 (cgraph_remove_unreachable_nodes): Likewise.
12800 (whole_program_function_and_variable_visibility): Do not recompute
12801 reachable.
12802 * trans-mem.c (ipa_tm_execute): Do not check reachable flag.
12803
12804 2012-04-23 Georg-Johann Lay <avr@gjlay.de>
12805
12806 * doc/extend.texi (AVR Named Address Spaces): Fix typos.
12807
12808 2012-04-23 Richard Guenther <rguenther@suse.de>
12809
12810 PR c/53060
12811 * c-typeck.c (build_binary_op): Fix typo.
12812
12813 2012-04-23 Jakub Jelinek <jakub@redhat.com>
12814
12815 PR tree-optimizations/52891
12816 * tree-vect-patterns.c (adjust_bool_pattern): Use
12817 build_nonstandard_type even if rhs1 has unsigned INTEGER_TYPE,
12818 but with non-standard precision.
12819
12820 2012-04-22 Jan Hubicka <jh@suse.cz>
12821
12822 * tree-ssa-loop-ivopts.c (expr_invariant_in_loop_p): Bail out at NULL
12823 tree refs.
12824
12825 2012-04-22 Jan Hubicka <jh@suse.cz>
12826
12827 * lto-symtab.c (lto_varpool_replace_node): Do not merge needed flags.
12828 * cgraphbuild.c (record_reference, record_type_list, mark_address,
12829 mark_load, mark_store): Do not mark varpool nodes as needed.
12830 * cgraph.c (cgraph_new_nodes): Remove.
12831 (cgraph_create_function_alias): Do not mark nodes as reachable.
12832 (cgraph_add_thunk): Likewise.
12833 (cgraph_mark_reachable_node): Do not manage the queue.
12834 * cgraph.h (cgraph_node): Remove next_needed.
12835 (varpool_nodes_queue): Remove next_needed and prev_needed.
12836 (x_cgraph_nodes_queue, x_cgraph_nodes_queue, cgraph_new_nodes): Remove.
12837 (cgraph_new_nodes): Declare.
12838 (x_varpool_nodes_queue, varpool_nodes_queue); Remove.
12839 (varpool_analyze_pending_decls): Remove.
12840 (varpool_analyze_node): New.
12841 (varpool_mark_needed_node): Remove.
12842 (varpool_first_variable, varpool_next_variable): New inlines.
12843 (varpool_first_static_initializer, varpool_next_static_initializer):
12844 Update.
12845 (FOR_EACH_STATIC_VARIABLE): Remove unused walker.
12846 (varpool_first_defined_variable): New inline.
12847 (varpool_next_defined_variable): New inline
12848 (FOR_EACH_VARIABLE): Reimplement.
12849 (FOR_EACH_DEFINED_VARIABLE): Reimplement.
12850 * toplev.c (wrapup_global_declaration_2): Use analyzed instead of
12851 needed flag.
12852 * cgraphunit.c (cgraph_new_nodes): Declare here.
12853 (enqueue_node): New function.
12854 (cgraph_process_new_functions): update for new
12855 node set; when constructing cgraph enqueue node for processing.
12856 (cgraph_add_new_function): Use new node set.
12857 (process_function_and_variable_attributes): Do not set varpool needed
12858 flags.
12859 (referred_to_p): New function.
12860 (varpool_finalize_decl): Move here from varpool.c; enqueue needed node
12861 when varpool is in construction.
12862 (cgraph_analyze_functions): Rewrite.
12863 (cgraph_expand_all_functions): Update.
12864 (cgraph_output_in_order): Do not analyze pending decls; do not set
12865 needed flags.
12866 (cgraph_optimize): Do not analyze pending decls.
12867 * lto-cgraph.c (input_varpool_node): Clear analyzed flag for objects
12868 in other partition; do not mark node as needed.
12869 * dwarf2out.c (reference_to_unused): Use analyzed flag.
12870 (premark_types_used_by_global_vars_helper): Likewise.
12871 * ipa.c (process_references): Do not call varpool_mark_needed_node.
12872 (cgraph_remove_unreachable_nodes): Do not rely on varpool and
12873 cgrpah queues.
12874 (function_and_variable_visibility): Do not mark node as needed.
12875 (whole_program_function_and_variable_visibility): Likewise.
12876 * Makefile.in (gt-varpool.h): No longer needed.
12877 * passes.c (execute_one_pass, execute_ipa_pass_list): Update.
12878 (ipa_write_summaries): Do not use needed flag.
12879 * varpool.c: Do not include gt-varpool.h
12880 (x_varpool_nodes_queue, x_varpool_last_needed_node,
12881 x_varpool_last_needed_node, x_varpool_first_unanalyzed_node,
12882 x_varpool_first_unanalyzed_node, varpool_assembled_nodes_queue):
12883 Remove.
12884 (varpool_remove_node): Do not update the lists.
12885 (dump_varpool_node): Do not dump needed flag.
12886 (varpool_enqueue_needed_node): Remove.
12887 (varpool_mark_needed_node): Remove.
12888 (varpool_reset_queue): Remove.
12889 (varpool_finalize_decl): Move to cgraphunit.c
12890 (varpool_analyze_node): New functions based on former
12891 varpool_analyze_pending_decls.
12892 (varpool_analyze_pending_decls): Remove.
12893 (varpool_assemble_decl): Do not update the lists.
12894 (enqueue_node): New function.
12895 (varpool_remove_unreferenced_decls): Rewrite.
12896 (varpool_empty_needed_queue): Remove.
12897 (add_new_static_var): Do not mark node as needed.
12898 (varpool_create_variable_alias): Handle expansion state
12899 creation.
12900 * except.c (output_ttype): Do not mark node as needed.
12901 * varasm.c (mark_decl_referenced): Do not use mark_needed_node.
12902 * tree-profile.c (init_ic_make_global_vars, init_ic_make_global_vars):
12903 Likewise.
12904 * tree-switch-conversion.c (build_one_array): Likewise.
12905
12906 2012-04-22 Manuel López-Ibáñez <manu@gcc.gnu.org>
12907
12908 PR c/44774
12909 * doc/invoke.texi (pedantic): Rename to Wpedantic.
12910 * common.opt (Wpedantic): New.
12911 (pedantic): Alias Wpedantic.
12912 * diagnostic.c (warning_at): Likewise.
12913 * c-decl.c (diagnose_mismatched_decls): Likewise.
12914 (build_array_declarator): Likewise.
12915 (mark_forward_parm_decls):
12916 (check_bitfield_type_and_width): Likewise.
12917 (grokdeclarator): Likewise.
12918 (grokfield): Likewise.
12919 (finish_struct): Likewise.
12920 (build_enumerator): Likewise.
12921 (store_parm_decls_oldstyle): Likewise.
12922 (declspecs_add_qual): Likewise.
12923 (declspecs_add_type): Likewise.
12924 (finish_declspecs): Likewise.
12925 * c-typeck.c (composite_type): Likewise.
12926 (comp_target_types): Likewise.
12927 (build_array_ref): Likewise.
12928 (pointer_diff): Likewise.
12929 (build_unary_op): Likewise.
12930 (build_conditional_expr): Likewise.
12931 (build_c_cast): Likewise.
12932 (convert_for_assignment): Likewise.
12933 (maybe_warn_string_init): Likewise.
12934 (digest_init): Likewise.
12935 (pop_init_level): Likewise.
12936 (set_init_index): Likewise.
12937 (c_finish_goto_label): Likewise.
12938 (c_finish_return): Likewise.
12939 (do_case): Likewise.
12940 (build_binary_op): Likewise.
12941 * c-parser.c (static): Likewise.
12942 (c_parser_external_declaration): Likewise.
12943 (c_parser_declaration_or_fndef): Likewise.
12944 (c_parser_static_assert_declaration_no_se): Likewise.
12945 (c_parser_enum_specifier): Likewise.
12946 (c_parser_struct_or_union_specifier): Likewise.
12947 (c_parser_struct_declaration): Likewise.
12948 (c_parser_alignas_specifier): Likewise.
12949 (c_parser_braced_init): Likewise.
12950 (c_parser_initelt): Likewise.
12951 (c_parser_compound_statement_nostart): Likewise.
12952 (c_parser_conditional_expression): Likewise.
12953 (c_parser_alignof_expression): Likewise.
12954 (c_parser_postfix_expression): Likewise.
12955 (c_parser_postfix_expression_after_paren_): Likewise.
12956 (c_parser_objc_class_instance_variables): Likewise.
12957 (c_parser_objc_method_definition): Likewise.
12958 (c_parser_objc_methodprotolist): Likewise.
12959
12960 2012-04-22 Ian Lance Taylor <iant@google.com>
12961
12962 * godump.c (go_output_typedef): Dump size of structs.
12963
12964 2012-04-22 Razya Ladelsky <razya@il.ibm.com>
12965
12966 Correcting transform_to_exit_first_loop + fix to PR46886
12967 * tree-parloops.c (transform_to_exit_first_loop): Remove
12968 setting of number of iterations according to the loop pattern.
12969 Duplicate from entry to exit->src instead of loop->latch.
12970 (pallelize_loops): Remove the condition preventing do-while loops.
12971 * tree-cfg.c (bool bb_in_region_p): New.
12972 (gimple_duplicate_sese_tail): Adjust duplication of the the subloops.
12973 Adjust redirection of the duplicated iteration.
12974
12975 2012-04-21 Richard Sandiford <rdsandiford@googlemail.com>
12976
12977 PR bootstrap/53021
12978 * rtl.def (ADDRESS): Use "i" rather than "w".
12979 * rtl.h (find_base_term): Delete.
12980 (may_be_sp_based_p): Declare.
12981 * rtl.c (rtx_code_size): Remove ADDRESS special case.
12982 * alias.h (UNIQUE_BASE_VALUE_SP, UNIQUE_BASE_VALUE_ARGP)
12983 (UNIQUE_BASE_VALUE_FP, UNIQUE_BASE_VALUE_HFP): Move to...
12984 * alias.c: ...here.
12985 (find_base_term): Make static.
12986 (may_be_sp_based_p): New function.
12987 * dse.c (record_store): Use it.
12988 * store-motion.c (store_killed_in_insn): Likewise.
12989
12990 2012-04-21 Richard Sandiford <rdsandiford@googlemail.com>
12991
12992 * fold-const.c (fold_checksum_tree): Fix VECTOR_CST case.
12993
12994 2012-04-21 Manuel López-Ibáñez <manu@gcc.gnu.org>
12995
12996 PR 35441
12997 * c-typeck.c (inform_declaration): New.
12998 (build_function_call_vec): Do not pretty-print
12999 expressions when caret is enabled.
13000 (convert_arguments): Use inform_declaration.
13001
13002 2012-04-20 Jim Meyering <meyering@redhat.com>
13003
13004 * genmodes.c (make_complex_modes): Don't truncate a mode name of
13005 length 7 or more when prepending a "C". Suggested by Richard Guenther.
13006
13007 2012-04-20 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
13008
13009 PR rtl-optimization/44214
13010 * fold-const.c (exact_inverse): New function.
13011 (fold_binary_loc): Fold vector and complex division by constant into
13012 multiply by recripocal with flag_reciprocal_math; fold vector division
13013 by constant into multiply by reciprocal with exact inverse.
13014
13015 2012-04-20 Jan Hubicka <jh@suse.cz>
13016
13017 * lto-symtab.c (lto_cgraph_replace_node): Merge needed instead of
13018 force flags.
13019 * cgraph.c (cgraph_add_thunk): Use mark_reachable_node.
13020 (cgraph_remove_node): Update.
13021 (cgraph_mark_needed_node): Remove.
13022 (cgraph_mark_force_output_node): New.
13023 (dump_cgraph_node): Do not dump needed flag.
13024 (cgraph_node_cannot_be_local_p_1): Update.
13025 (cgraph_can_remove_if_no_direct_calls_and_refs): Update.
13026 * cgraph.h (symtab_node_base): Add force_output flag.
13027 (cgraph_node): Remove needed flag.
13028 (varpool_node): Remove force_output flag.
13029 (cgraph_mark_needed_node): Remove.
13030 (cgraph_mark_force_output_node): New.
13031 (cgraph_only_called_directly_or_aliased_p,
13032 varpool_can_remove_if_no_refs, varpool_all_refs_explicit_p): Update.
13033 * ipa-cp.c (ipcp_generate_summary): Remove out of date assert.
13034 * cgraphunit.c (cgraph_decide_is_function_needed): rewrite.
13035 (cgraph_add_new_function): Update.
13036 (cgraph_mark_if_needed): Update.
13037 (verify_cgraph_node): Update.
13038 (cgraph_analyze_function): Alias target is reachable.
13039 (process_function_and_variable_attributes): Update: externally_visible
13040 flag makes function reachable.
13041 (cgraph_analyze_functions): Update dumping.
13042 * lto-cgraph.c (lto_output_node, lto_output_varpool_node,
13043 input_overwrite_node, input_varpool_node): Update streaming.
13044 * lto-streamer-out.c (produce_symtab): Use force_output.
13045 * ipa.c (process_references): Weakrefs must be processed.
13046 (cgraph_remove_unreachable_nodes): Likewise; update for new
13047 force_output flag.
13048 (varpool_externally_visible_p): Weakrefs are externally visible
13049 even if they are not.
13050 (function_and_variable_visibility): Update; when processing alias
13051 pair force the targets to be output.
13052 (whole_program_function_and_variable_visility): Use
13053 mark_reachable_node.
13054 * trans-mem.c (ipa_tm_mark_needed_node): Remove
13055 (ipa_tm_mark_force_output_node): New function.
13056 (ipa_tm_create_version_alias, ipa_tm_create_version): Update.
13057 * gimple-fold.c (can_refer_decl_in_current_unit_p): Be lax about
13058 aliases.
13059 * varasm.c (mark_decl_referenced): Update.
13060 (find_decl_and_mark_needed): Remove.
13061 (find_decl): New function.
13062 (weak_finish, finish_aliases_1, assemble_alias): Update; do not mark
13063 alias targets as needed.
13064 (dump_tm_clone_pairs): Update.
13065 * tree-inline.c (copy_bb): Update check.
13066 * symtab.c (dump_symtab_base): Dump force_output.
13067 * tree-ssa-structalias.c (ipa_pta_execute): Use force_output.
13068 * passes.c (execute_todo): Fix dumping.
13069 * varpool.c (decide_is_variable_needed, varpool_finalize_decl): Update.
13070 (varpool_analyze_pending_decls): Alias target is reachable.
13071 (varpool_create_variable_alias): Finalize weakrefs.
13072
13073 2012-04-20 Jakub Jelinek <jakub@redhat.com>
13074
13075 PR bootstrap/53021
13076 * alias.h (UNIQUE_BASE_VALUE_SP, UNIQUE_BASE_VALUE_ARGP,
13077 UNIQUE_BASE_VALUE_FP, UNIQUE_BASE_VALUE_HFP): Define.
13078 * alias.c (init_alias_targets): Use UNIQUE_BASE_VALUE_*
13079 macros instead of constants.
13080 * dse.c (record_store): Check for SP ADDRESS by comparing
13081 XWINT to UNIQUE_BASE_VALUE_SP instead of expecting
13082 XEXP to be stack_pointer_rtx.
13083
13084 2012-04-20 Richard Guenther <rguenther@suse.de>
13085
13086 * tree-ssa-copy.c (propagate_tree_value_into_stmt): Use
13087 update_call_from_tree when propagating into a call.
13088
13089 2012-04-20 Alan Modra <amodra@gmail.com>
13090
13091 * config/rs6000/rs6000.c (rs6000_emit_savres_rtx): Formatting.
13092 (rs6000_emit_prologue, rs6000_emit_epilogue): Likewise. Rename
13093 sp_offset to frame_off. Move world save code earlier.
13094
13095 2012-04-20 Richard Guenther <rguenther@suse.de>
13096
13097 PR tree-optimization/53050
13098 * tree-ssa-forwprop.c (ssa_forward_propagate_and_combine):
13099 Do only one transform on COND_EXPRs at the same time.
13100
13101 2012-04-19 Jan Hubicka <jh@suse.cz>
13102
13103 * symtab.c (dump_symtab_base): Revert accidental checkin.
13104
13105 2012-04-20 Alan Modra <amodra@gmail.com>
13106
13107 PR target/53040
13108 * config/rs6000/rs6000.c (rs6000_savres_strategy): When using
13109 static chain, set REST_INLINE_FPRS too.
13110
13111 2012-04-20 Thomas Schwinge <thomas@codesourcery.com>
13112
13113 * tree-dump.c (dequeue_and_dump) <BIT_FIELD_REF>: Dump the three child
13114 nodes.
13115
13116 2012-04-20 Richard Guenther <rguenther@suse.de>
13117
13118 * tree-vect-loop.c (vect_analyze_loop_operations): Do not vectorize
13119 loops that can never run more often than the vectorization factor.
13120
13121 2012-04-19 Jan Hubicka <jh@suse.cz>
13122
13123 * symtab.c (dump_symtab_base): Fix dumping of asm lists.
13124
13125 2012-04-19 David Edelsohn <dje.gcc@gmail.com>
13126
13127 * config/rs6000/sync.md (fetchop_name): Change ior attribute to "or".
13128
13129 2012-04-19 Jim Meyering <meyering@redhat.com>
13130
13131 * genmodes.c (make_complex_modes): Avoid unnecessary use of strncpy.
13132 We verified above that the string(including trailing NUL) fits in buf,
13133 so just use memcpy.
13134
13135 2012-04-19 Richard Guenther <rguenther@suse.de>
13136
13137 * symtab.c (dump_symtab_base): Use TREE_STRING_POINTER
13138 for dumping DECL_SECTION_NAME.
13139
13140 2012-04-19 Michael Matz <matz@suse.de>
13141
13142 PR middle-end/52977
13143 * tree.h (VECTOR_CST_NELTS): Use part number of types again.
13144 (struct tree_vector): Adjust GTY length.
13145 * tree.c (make_vector_stat): Don't set VECTOR_CST_NELTS.
13146
13147 * gengtype.c (struct walk_type_data): Add in_record_p and loopcounter
13148 members.
13149 (walk_type, <TYPE_POINTER, TYPE_ARRAY>): Handle case where our
13150 caller emitted the length calulation already.
13151 (walk_type, <TYPE_UNION, TYPE_STRUCT>): Emit length calculations
13152 before handling any of the fields for structs.
13153
13154 2012-04-19 Richard Guenther <rguenther@suse.de>
13155
13156 PR tree-optimization/53031
13157 * tree-vrp.c (adjust_range_with_scev): Revert back to
13158 using max_loop_iterations.
13159
13160 2012-04-19 Michael Matz <matz@suse.de>
13161
13162 * diagnostic.c (emit_diagnostic): Move va_end call after user
13163 of the va_list.
13164 (warning, warning_at, pedwarn, permerror): Ditto.
13165
13166 2012-04-19 Richard Guenther <rguenther@suse.de>
13167
13168 * ira-int.h (ira_allocno_object_iter_cond): Avoid out-of-bound
13169 array access.
13170
13171 2012-04-19 Georg-Johann Lay <avr@gjlay.de>
13172
13173 PR target/53033
13174 * config/avr/avr.c (avr_out_load_psi): Fix assembler template for
13175 the case *(X+const).
13176
13177 2012-04-19 Ramana Radhakrishnan <ramana.radhakrishnan@linaro.org>
13178
13179 * config/arm/sync.md (sync_optab): Change ior attribute to "or".
13180
13181 2012-04-19 Manuel López-Ibáñez <manu@gcc.gnu.org>
13182
13183 PR c/52283/37985
13184 * stmt.c (warn_if_unused_value): Skip NOP_EXPR.
13185 * convert.c (convert_to_integer): Don't set TREE_NO_WARNING.
13186
13187 2012-04-19 Richard Guenther <rguenther@suse.de>
13188
13189 PR rtl-optimization/44688
13190 * loop-iv.c (determine_max_iter): Only return max_iter.
13191 (iv_number_of_iterations): Also use the recorded loop bound
13192 on the maximum number of iterations.
13193 * loop-unroll.c (decide_unroll_runtime_iterations): Use
13194 max_iter to avoid unrolling loops that do not roll.
13195 (decide_unroll_stupid): Likewise.
13196
13197 2012-04-18 Steven Bosscher <steven@gcc.gnu.org>
13198
13199 * targhooks.c (default_case_values_threshold): Fix code style nit.
13200
13201 * stmt.c (add_case_node, expand_case): Move logic to remove/reduce
13202 case range and type folding from here...
13203 * gimplify.c (gimplify_switch_expr): ... to here. Expect NULL_TREE
13204 type, as documented in tree.def.
13205
13206 2012-04-18 Jan Hubicka <jh@suse.cz>
13207
13208 * cgraph.h (verify_symtab, verify_symtab_node, verify_symtab_base):
13209 Declare.
13210 * cgraphunit.c (verify_cgraph_node): Verify symtab base; do not verify
13211 cgraph hash and same comdat groups.
13212 (cgraph_optimize): Verify symbol table.
13213 * ipa.c (cgraph_remove_unreachable_nodes): Verify symbol table.
13214 (dissolve_same_comdat_group_list): Work on symtab nodes.
13215 (function_and_variable_visibility): Dissolve variable same comdat group
13216 lists, too.
13217 * symtab.c: Include timevar.h
13218 (verify_symtab_base, verify_symtab_node, verify_symtab): New functions.
13219
13220 2012-04-18 Steven Bosscher <steven@gcc.gnu.org>
13221
13222 * tree-switch-conversion.c (info): Remove global pass info.
13223 (check_range, check_process_case, check_final_bb, create_temp_arrays,
13224 free_temp_arrays, gather_default_values, build_constructors,
13225 array_value_type, build_one_array, build_arrays, gen_def_assigns,
13226 fix_phi_nodes, gen_inbound_check): Pass info around from ...
13227 (process_switch): ... here. Unify message format. Return a const
13228 char pointer to the failure reason message.
13229 (do_switchconv): Unify message format. Update process_switch usage.
13230
13231 * tree.def (CASE_LABEL_EXPR): Fix documentation, mention all operands.
13232 * tree-cfg.c (edge_to_cases): Fix documentation.
13233
13234 2012-04-18 Uros Bizjak <ubizjak@gmail.com>
13235
13236 * config/alpha/sync.md (fetchop_name): Change ior attribute to "or".
13237
13238 2012-04-18 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
13239
13240 PR tree-optimization/52976
13241 * tree-ssa-reassoc.c (add_to_ops_vec_max_rank): Delete.
13242 (possibly_move_powi): New function.
13243 (rewrite_expr_tree): Call possibly_move_powi.
13244 (rewrite_expr_tree_parallel): Likewise.
13245 (attempt_builtin_powi): Change call of add_to_ops_vec_max_rank to
13246 call add_to_ops_vec instead.
13247
13248 2012-04-18 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
13249
13250 PR tree-optimization/52976
13251 * tree-ssa-reassoc.c (stmt_is_power_of_op): New function.
13252 (decrement_power): Likewise.
13253 (propagate_op_to_single_use): Likewise.
13254 (zero_one_operation): Handle __builtin_pow* calls in linearized
13255 expression trees; factor logic into propagate_op_to_single_use.
13256 (undistribute_ops_list): Allow operands with repeat counts > 1.
13257
13258 2012-04-18 Richard Guenther <rguenther@suse.de>
13259
13260 PR tree-optimization/44688
13261 * cfgloop.h (record_niter_bound): Declare.
13262 * tree-ssa-loop-niter.c (record_niter_bound): Export.
13263 Update the estimation with the upper bound here...
13264 (estimate_numbers_of_iterations_loop): ... instead of here.
13265 Do not forcefully reset a recorded upper bound.
13266 * tree-vect-loop-manip.c (vect_do_peeling_for_alignment):
13267 Record the maximum number of loop iterations of the prologue loop.
13268
13269 2012-04-18 Jan Hubicka <jh@suse.cz>
13270
13271 * lto-symtab.c (lto_cgraph_replace_node): Update.
13272 * cgraphbuild.c (record_reference, record_type_list,
13273 record_eh_tables, mark_address, mark_load, mark_store): Update.
13274 * cgraph.c (cgraph_same_body_alias, dump_cgraph_node,
13275 cgraph_create_virtual_clone, cgraph_for_node_thunks_and_aliases):
13276 Update.
13277 * cgraph.h (symtab_node_def, symtab_node, const_symtab_node): Remove.
13278 (cgraph_alias_aliased_node, varpool_alias_aliased_node): Update.
13279 * reload.c: Fix typo in comment.
13280 * rtlanal.c: Likewise.
13281 * tree-emultls.c (gen_emutls_addr): Update.
13282 * ipa-reference.c (analyze_function): Update.
13283 * cgraphunit.c (cgraph_analyze_function,
13284 cgraph_process_same_body_aliases, assemble_thunks_and_aliases):
13285 Update.
13286 * ipa-ref.c (ipa_record_reference): Reorg to avoid reference types.
13287 (ipa_remove_reference): Likewise.
13288 (ipa_remove_all_refering): Rename to ...
13289 (ipa_remove_all_referring): ... this one; update.
13290 (ipa_dump_references): Update.
13291 (ipa_dump_referring): Update.
13292 (ipa_clone_references): Update.
13293 (ipa_clone_refering): Rename to ...
13294 (ipa_clone_referring): ... this one; update.
13295 (ipa_ref_cannot_lead_to_return): Update.
13296 (ipa_ref_has_aliases_p): Update.
13297 * ipa-ref.h (symtab_node_def, symtab_node, const_symtab_node): New
13298 forward typedefs.
13299 (ipa_ref_type): Remove.
13300 (ipa_ref_ptr_u): Remove.
13301 (ipa_ref): Remove referencing, refered, refered_index, refering_type
13302 and refered_type; add referring, referred and referred_index.
13303 (ipa_ref_list): Rename refering to referring.
13304 (ipa_record_reference, ipa_remove_all_referring, ipa_dump_referring,
13305 ipa_clone_references, ipa_clone_referring): Update prototypes.
13306 * lto-cgraph.c (referenced_from_other_partition_p): Update.
13307 (lto_output_ref): Update.
13308 (add_references): Update.
13309 (input_varpool_node): Update.
13310 (input_refs): Update.
13311 * ipa-ref-inline.h (ipa_ref_node): Update.
13312 (ipa_ref_varpool_node): Update.
13313 (ipa_ref_referring_node): Update.
13314 (ipa_ref_referring_varpool_node): Update.
13315 (ipa_ref_referring_ref_list): Update.
13316 (ipa_ref_referred_ref_list): Update.
13317 (ipa_ref_list_first_referring): Update.
13318 (ipa_empty_ref_list): Update.
13319 (ipa_ref_list_refering_iterate): Rename to ...
13320 (ipa_ref_list_referring_iterate): ... this one.
13321 * cse.c: Update comment.
13322 * ipa-utils.c (ipa_reverse_postorder): Update.
13323 * tree-ssa-alias.c: Update.
13324 * ipa-inline.c (reset_edge_caches): Update.
13325 (update_caller_keys): Update.
13326 * ipa-inline.h: Update comments.
13327 * jump.c: Update comment.
13328 * alias.c: Likewise.
13329 * ipa.c (process_references): Update.
13330 (cgraph_remove_unreachable_nodes): Likewise.
13331 (ipa_discover_readonly_nonaddressable_var): Likewise.
13332 (cgraph_address_taken_from_non_vtable_p): Likewise.
13333 * trans-mem.c (ipa_tm_execute): Update.
13334 * simplify-rtx.c: Fix comment.
13335 * rtl.c: Fix comment.
13336 * symtab.c (symtab_unregister_node): Update.
13337 * varpool.c (dump_varpool_node): Update.
13338 (varpool_analyze_pending_decls): Update.
13339 (assemble_aliases): Update.
13340 (varpool_for_node_and_aliases): Update.
13341
13342 2012-04-18 Richard Guenther <rguenther@suse.de>
13343
13344 * cfgloop.h (estimate_numbers_of_iterations_loop): Remove
13345 use_undefined_p parameter.
13346 * tree-flow.h (estimate_numbers_of_iterations): Likewise.
13347 * tree-ssa-loop-niter.c (estimate_numbers_of_iterations_loop):
13348 Likewise.
13349 (estimate_numbers_of_iterations): Likewise.
13350 (estimated_loop_iterations): Adjust.
13351 (max_loop_iterations): Likewise.
13352 (scev_probably_wraps_p): Likewise.
13353 * tree-ssa-loop.c (tree_ssa_loop_bounds): Likewise.
13354 * tree-vrp.c (adjust_range_with_scev): Use max_stmt_executions,
13355 not max_loop_iterations.
13356 (execute_vrp): Remove explicit number of iterations estimation.
13357
13358 2012-04-18 Enkovich Ilya <ilya.enkovich@intel.com>
13359
13360 * config/i386/linux-common.h: New.
13361
13362 * config.gcc: Add i386/linux-common.h before
13363 all i386/linux.h and i386/linux64.h usages.
13364
13365 * config/i386/gnu-user.h (GNU_USER_TARGET_LINK_SPEC): New.
13366 (LINK_SPEC): Use GNU_USER_TARGET_LINK_SPEC.
13367 * config/i386/gnu-user64.h: Likewise.
13368
13369 * config/i386/gnu-user.common.h (GNU_USER_TARGET_CC1_SPEC): New.
13370 (CC1_SPEC): Use GNU_USER_TARGET_CC1_SPEC.
13371 (GNU_USER_TARGET_MATHFILE_SPEC): New.
13372 (ENDFILE_SPEC): Use GNU_USER_TARGET_MATHFILE_SPEC.
13373
13374 2012-04-18 Jan Hubicka <jh@suse.cz>
13375
13376 * cgraph.c (cgraph_node_name): Remove.
13377 (dump_cgraph_node): Use dump_symtab_base; reformat.
13378 * cgraph.h (symtab_node_asm_name, symtab_node_name, dump_symtab,
13379 debug_symtab, dump_symtab_node, debug_symtab_node, dump_symtab_base):
13380 Declare.
13381 (cgraph_node_name, varpool_node_name): Remove.
13382 (cgraph_node_asm_name, varpool_node_asm_name,
13383 cgraph_node_name, varpool_node_name): New.
13384 * tree-pass.h (TODO_dump_cgraph): Rename to ...
13385 (TODO_dump_symtab): ... this one.
13386 * ipa-cp (pass_ipa_cp): Update.
13387 * ia-reference.c (generate_summary, read_write_all_from_decl,
13388 propagate, ipa_reference_read_optimization_summary): Update.
13389 * cgraphunit.c (cgraph_analyze_functions): Update.
13390 (cgraph_optimize): Update.
13391 * ipa-ref.c (ipa_dump_references): Update.
13392 (ipa_dump_refering): Update.
13393 * ipa-inline.c (pass_ipa_inline): Update.
13394 * matrix-reorg.c (pass_ipa_matrix_reorg): Update.
13395 * ipa.c (pass_ipa_function_visibility,
13396 pass_ipa_whole_program_visibility): Update.
13397 * tree-sra.c (pass_early_ipa_sra): Update.
13398 * symtab.c: Include langhooks.h
13399 (symtab_node_asm_name): New.
13400 (symtab_node_name): New.
13401 (symtab_type_names): New static var.
13402 (dump_symtab_base): New.
13403 (dump_symtab_node, dump_symtab): New.
13404 (debug_symtab_node, debug_symtab): New.
13405 * tree-ssa-structalias.c: Dump symbol table.
13406 * pases.c (execute_todo): Handle TODO_dump_symtab instead
13407 of TODO_dump_cgraph.
13408 * varpoo.c (varpool_node_name): Remove.
13409 (dump_varpool_node): Use dump_symtab_base; reformat.
13410
13411 2012-04-18 Manuel López-Ibáñez <manu@gcc.gnu.org>
13412
13413 * doc/invoke.texi (Language Independent Options): @item should be
13414 before @opindex.
13415
13416 2012-04-17 Richard Sandiford <rdsandiford@googlemail.com>
13417
13418 PR bootstrap/53021
13419 * rtl.c (rtx_code_size): Handle ADDRESS.
13420
13421 2012-04-17 Tom de Vries <tom@codesourcery.com>
13422
13423 * tree-iterator.c (append_to_statement_list_1): Handle case that *list_p
13424 is not a STMT_LIST.
13425
13426 2012-04-17 Uros Bizjak <ubizjak@gmail.com>
13427
13428 PR target/53020
13429 * config/i386/sync.md (atomic_<code><mode>): Rename to
13430 atomic_<logic><mode>.
13431
13432 2012-04-17 Richard Sandiford <rdsandiford@googlemail.com>
13433
13434 * rtl.def (ADDRESS): Turn operand into a HOST_WIDE_INT.
13435 * alias.c (reg_base_value): Expand and update comment.
13436 (arg_base_value): New variable.
13437 (unique_id): Move up file.
13438 (unique_base_value, unique_base_value_p, known_base_value_p): New.
13439 (find_base_value): Use arg_base_value and known_base_value_p.
13440 (record_set): Document REG_NOALIAS handling. Use unique_base_value.
13441 (find_base_term): Use known_base_value_p.
13442 (base_alias_check): Use unique_base_value_p.
13443 (init_alias_target): Initialize arg_base_value. Use unique_base_value.
13444 (init_alias_analysis): Use 1 as the first id for REG_NOALIAS bases.
13445
13446 2012-04-17 Pat Haugen <pthaugen@us.ibm.com>
13447
13448 * config/rs6000/rs6000.h (SLOW_UNALIGNED_ACCESS): Remove DImode.
13449
13450 2012-04-17 Michael Matz <matz@suse.de>
13451
13452 PR tree-optimization/18437
13453 * tree-vectorizer.h (_stmt_vec_info.stride_load_p): New member.
13454 (STMT_VINFO_STRIDE_LOAD_P): New accessor.
13455 (vect_check_strided_load): Declare.
13456 * tree-vect-data-refs.c (vect_check_strided_load): New function.
13457 (vect_analyze_data_refs): Use it to accept strided loads.
13458 * tree-vect-stmts.c (vectorizable_load): Ditto and handle them.
13459
13460 2012-04-17 Richard Guenther <rguenther@suse.de>
13461
13462 PR middle-end/53011
13463 * tree-eh.c (cleanup_empty_eh_merge_phis): Properly discard
13464 loops when redirecting an entry or latch edge.
13465
13466 2012-04-17 Bernd Schmidt <bernds@codesourcery.com>
13467
13468 * sel-sched.c (sel_global_init): Revert previous change.
13469
13470 2012-04-17 Richard Guenther <rguenther@suse.de>
13471
13472 * tree-flow.h (array_at_struct_end_p): Move declaration ...
13473 * tree.h (array_at_struct_end_p): ... here.
13474 * tree-ssa-loop-niter.c (array_at_struct_end_p): Move ...
13475 * expr.c (array_at_struct_end_p): ... here. Rewrite.
13476
13477 2012-04-17 Steven Bosscher <steven@gcc.gnu.org>
13478
13479 * stmt.c (cost_table_, use_cost_table, cost_table_initialize,
13480 COST_TABLE): Remove.
13481 (estimate_case_costs): Remove.
13482 (expand_case): Do not call estimate_case_costs
13483 to set use_cost_table.
13484 (balance_case_nodes): Do not use use_cost_table.
13485
13486 2012-04-16 Jan Hubicka <jh@suse.cz>
13487
13488 * cgraph.c (cgraph_hash, assembler_name_hash): Remove.
13489 (hash_node, eq_node): Remove.
13490 (cgraph_create_node): Do not handle hashtable.
13491 (cgraph_get_node): Remove.
13492 (cgraph_insert_node_to_hashtable): Remove.
13493 (hash_node_by_assembler_name): Remove.
13494 (eq_assembler_name): Remove.
13495 (cgraph_node_for_asm): Rewrite.
13496 (cgraph_find_replacement_node): Break out from ...
13497 (cgraph_remove_node): ... here; do not maintain hashtables.
13498 (change_decl_assembler_name): Remove.
13499 (cgraph_clone_node): Do not maintain hashtables.
13500 * cgraph.h (const_symtab_node): New typedef.
13501 (cgraph_insert_node_to_hashtable): Remove.
13502 (symtab_get_node, symtab_node_for_asm,
13503 symtab_insert_node_to_hashtable): Declare.
13504 (cgraph_find_replacement_node): Declare.
13505 (cgraph_get_node, varpool_get_node): Turn into inlines.
13506 (cgraph, varpool): Work sanely on NULL pointers.
13507 (FOR_EACH_SYMBOL): New walker.
13508 * ipa-inline-transform.c (save_inline_function_body): Use
13509 symtab_insert_node_to_hashtable.
13510 * symtab.c: Include ggc.h and diagnostics.h
13511 (symtab_hash, assembler_name_hash): New static vars;
13512 (hash_node, eq_node, hash_node_by_assembler_name,
13513 eq_assembler_name, insert_to_assembler_name_hash,
13514 unlink_from_assembler_name_hash): New.
13515 (symtab_register_node): Update hashtables.
13516 (symtab_insert_node_to_hashtable): New.
13517 (symtab_unregister_node): Update hashtables.
13518 (symtab_get_node): New.
13519 (symtab_node_for_asm): New.
13520 (change_decl_assembler_name): New.
13521 * Makefile.in (symtab.o): Needs GTY.
13522 * varpool.c (varpool_hash): Remove.
13523 (hash_varpool_node, eq_varpool_node, varpool_get_node): Remove.
13524 (varpool_node): Rewrite using varpool_get_node.
13525 (varpool_remove_node): DO not maintain hashtables.
13526 (varpool_node_for_asm): Rewrite.
13527
13528 2012-04-16 Sandra Loosemore <sandra@codesourcery.com>
13529
13530 * doc/invoke.texi: Copy-edit to put verbs in the present tense
13531 when describing the current behavior of GCC.
13532
13533 2012-04-16 Richard Sandiford <rdsandiford@googlemail.com>
13534
13535 * genemit.c (gen_exp): Remove ADDRESS handling.
13536 * genoutput.c (scan_operands): Likewise.
13537 * genpeep.c (match_rtx): Likewise.
13538 * genrecog.c (add_to_sequence): Likewise.
13539
13540 2012-04-16 David Edelsohn <dje.gcc@gmail.com>
13541
13542 * doc/install.texi (Specific, *-ibm-aix*): Update assembler bug status.
13543
13544 2012-04-16 Martin Jambor <mjambor@suse.cz>
13545
13546 * tree-sra.c (build_ref_for_model): Create COMPONENT_REFs only for
13547 bit-fields.
13548
13549 2012-04-16 Ulrich Weigand <ulrich.weigand@linaro.org>
13550
13551 PR target/51819
13552 * config/arm/arm.c (arm_print_operand): Fix invalid alignment
13553 hints for 'A' operand types.
13554
13555 2012-04-16 Jan Hubicka <jh@suse.cz>
13556
13557 * cgraph.h (symtab_node_base): Add next and previous pointers.
13558 (cgraph_node): Remove next and preivous pointers.
13559 (varpool_node): Likewise; remove next/previous GTY marker;
13560 it is not type safe.
13561 (symtab_node_def): Update GTY marker
13562 (x_cgraph_nodes, cgraph_nodes): Remove.
13563 (symtab_nodes): New function.
13564 (cgraph_order): Rename to ...
13565 (symtab_order): ... this one.
13566 (symtab_register_node, symtab_unregister_node, symtab_remove_node):
13567 Declare.
13568 (x_varpool_nodes, varpool_nodes): Remove.
13569 (FOR_EACH_STATIC_VARIABLE): Update.
13570 (symtab_function_p, symtab_variable_p): New function.
13571 (FOR_EACH_VARIABLE): Update.
13572 (varpool_first_variable, varpool_next_variable): New functions.
13573 (FOR_EACH_VARIABLE): Update.
13574 (cgraph_first_defined_function): Update.
13575 (cgraph_next_defined_function, cgraph_next_defined_function): Update.
13576 (FOR_EACH_DEFINED_FUNCTION, FOR_EACH_FUNCTION): Update.
13577 (cgraph_first_function, cgraph_next_function): New.
13578 (FOR_EACH_FUNCTION): Update.
13579 (cgraph_first_function_with_gimple_body,
13580 cgraph_next_function_with_gimple_body): Update.
13581 * symtab.c: New file.
13582 * cgraph.c: Update copyright dates.
13583 (x_cgraph_nodes, cgraph_order): Remove.
13584 (NEXT_FREE_NODE): Update.
13585 (SET_NEXT_FREE_NODE): New.
13586 (cgraph_create_node_1): Remove common code.
13587 (cgraph_create_node): Remove common code; call symtab_register_node.
13588 (cgraph_remove_node): Remove common code; call symtab_unregister-node.
13589 (cgraph_add_asm_node): Update.
13590 (cgraph_clone_node): Register new node.
13591 * cgraphunit.c (process_function_and_variable_attributes): Update.
13592 (cgraph_analyze_functions): Update.
13593 (cgraph_analyze_functions): Update.
13594 (cgraph_output_in_order): Update.
13595 * lto-cgraph.c (input_node, input_varpool_node, input_cgraph_1):
13596 Update.
13597 * ipa-inline.c (recursive_inlining): Update.
13598 * lto-streamer-in.c (lto_input_toplevel_asms): Update.
13599 * ipa.c (cgraph_remove_unreachable_nodes): Update.
13600 * Makefile.in: Add symtab.o
13601 * varpool.c (x_varpool_nodes): Remove
13602 (varpool_node): Remove common code; call symtab_register_node.
13603 (varpool_remove_node): Remove common code; call symtab_unregister_node.
13604
13605 2012-04-16 Richard Guenther <rguenther@suse.de>
13606
13607 PR middle-end/52977
13608 * tree.h (VECTOR_CST_NELTS): Adjust.
13609 (struct tree_vector): Add explicit length field.
13610 (make_vector_stat): Declare.
13611 (make_vector): Define.
13612 * tree.c (make_vector_stat): New function.
13613 (build_vector_stat): Use it.
13614 * tree-streamer-in.c (streamer_alloc_tree): Likewise.
13615
13616 2012-04-16 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
13617
13618 PR tree-optimization/52976
13619 * tree-ssa-reassoc.c (add_to_ops_vec_max_rank): New function.
13620 (undistribute_ops_list): Ops with repeat counts aren't eligible for
13621 undistribution.
13622 (attempt_builtin_powi): Call add_to_ops_vec_max_rank.
13623
13624 2012-04-16 Jan Hubicka <jh@suse.cz>
13625
13626 * cgraph.h (FOR_EACH_VARIABLE, FOR_EACH_VARIABLE, FOR_EACH_FUNCTION):
13627 New macros.
13628 * lto-symtab.c (lto_symtab_merge_cgraph_nodes): Use FOR_EACH
13629 walkers to walk cgraph and varpool.
13630 * cgraph.c (cgraph_node_for_asm): Likewise.
13631 (dump_cgraph): Likewise.
13632 * value-prof.c (init_node_map): Likewise.
13633 * tree.c (free_lang_data_in_cgraph): Likewise.
13634 * tree-emutls.c: (ipa_lower_emutls): Likewise.
13635 * ipa-reference.c (generate_summary, propagate): Likewise.
13636 * cgraphunit.c (verify_cgraph, cgraph_process_same_body_aliases,
13637 cgraph_mark_functions_to_output, cgraph_output_in_order,
13638 output_weakrefs, cgraph_materialize_all_clones,
13639 cgraph_optimize): Likewise.
13640 * lto-cgraph.c (merge_profile_summaries): Likewise.
13641 (input_cgraph): Likewise.
13642 * ipa-pure-const.c (generate_summary): Likewise.
13643 (propagate): Likwise.
13644 * ipa-utils.c (ipa_reduced_postorder): Likewise.
13645 (ipa_free_postorder_info): Likewise.
13646 (ipa_reverse_postorder): Likewise.
13647 * ipa-inline.c (ipa_inline): Likewise.
13648 * matrix-reorg.c (find_matrices_decl): Likewise.
13649 (matrix_reorg): Likewise.
13650 * tree-vectorizer.c (increase_alignment): Likewise.
13651 * ipa.c (cgraph_remove_unreachable_nodes): Likewise.
13652 (function_and_variable_visibility): Likewise.
13653 (whole_program_function_and_variable_visibility): Likewise.
13654 (ipa_cdtor_merge): Likewise.
13655 * trans-mem.c (ipa_tm_execute): Likewise.
13656 * ipa-inline-analysis.c (dump_inline_summaries): Likewise.
13657 * ipa-prop.c (ipa_print_all_jump_functions): Likewise.
13658 (ipa_print_all_params): Likewise.
13659 (ipa_update_after_lto_read): Likewise.
13660 * tree-profie.c (tree_profiling): Likewise.
13661 * tree-ssa-structalias.c (ipa_pta_execute): Likewise.
13662 * passes.c (dump_passes): Likewise.
13663 (do_per_function): Likewise.
13664 (ipa_write_summaries): Likewise.
13665 * varpool.c (dump_varpool): Likewise.
13666 (varpool_node_for_asm): Likewise.
13667 (varpool_assemble_pending_decls): Likewise.
13668
13669 2012-04-16 Richard Guenther <rguenther@suse.de>
13670
13671 PR tree-optimization/52975
13672 * tree-if-conv.c (predicate_bbs): Do not simplify inverted
13673 condition but always mark it with TRUTH_NOT_EXPR.
13674
13675 2012-04-16 Richard Guenther <rguenther@suse.de>
13676
13677 PR tree-optimization/52975
13678 * tree-ssa-forwprop.c (combine_cond_exprs): New function.
13679 (ssa_forward_propagate_and_combine): Call it for COND_EXPRs
13680 and VEC_COND_EXPRs. Also combine into VEC_COND_EXPRs condition.
13681 * fold-const.c (operand_equal_p): Handle TARGET_MEM_REF.
13682
13683 2012-04-14 Uros Bizjak <ubizjak@gmail.com>
13684
13685 * config/i386/sse.md (ssse3_plusminus): New code iterator.
13686 (avx2_ph<plusminus_mnemonic>wv16hi3): Macroize insn from
13687 avx2_ph{add,adds,sub,subs}wv16hi3 using ssse3_plusminus code iterator.
13688 (ssse3_ph<plusminus_mnemonic>wv8hi3): Macroize insn from
13689 ssse3_ph{add,adds,sub,subs}wv8hi3 using ssse3_plusminus code iterator.
13690 (ssse3_ph<plusminus_mnemonic>wv4hi3): Macroize insn from
13691 ssse3_ph{add,adds,sub,subs}wv4hi3 using ssse3_plusminus code iterator.
13692
13693 (avx2_ph<plusminus_mnemonic>dv8si3): Macroize insn from
13694 avx2_ph{add,adds,sub,subs}dv8si3 using plusminus code iterator.
13695 (ssse3_ph<plusminus_mnemonic>dv4si3): Macroize insn from
13696 ssse3_ph{add,adds,sub,subs}dv4si3 using plusminus code iterator.
13697 (ssse3_ph<plusminus_mnemonic>dv2si3): Macroize insn from
13698 ssse3_ph{add,adds,sub,subs}dv2si3 using plusminus code iterator.
13699
13700 (xop_plus): New code iterator.
13701 (macs): New code attribute.
13702 (macds): Ditto.
13703 (xop_p<macs><ssemodesuffix><ssemodesuffix>): Macroize insn from
13704 xop_pmacs{,s}{ww,dd} using xop_plus code iterator and VI24_128 mode
13705 iterator.
13706 (xop_p<macs>dql): Macroize insn from xop_pmacs{,s}dql using
13707 xop_plus code iterator.
13708 (xop_p<macs>dqh): Macroize insn from xop_pmacs{,s}dqh using
13709 xop_plus code iterator.
13710 (xop_p<macs>wd): Macroize insn from xop_pmacs{,s}wd using
13711 xop_plus code iterator.
13712 (xop_p<madcs>wd): Macroize insn from xop_pmadcs{,s}wd using
13713 xop_plus code iterator.
13714
13715 (xop_phadd<u>bw): Macroize insn from xop_phadd{,u}bw usign
13716 any_extend code iterator.
13717 (xop_phadd<u>bd): Macroize insn from xop_phadd{,u}bd usign
13718 any_extend code iterator.
13719 (xop_phadd<u>bq): Macroize insn from xop_phadd{,u}bq usign
13720 any_extend code iterator.
13721 (xop_phadd<u>wd): Macroize insn from xop_phadd{,u}wd usign
13722 any_extend code iterator.
13723 (xop_phadd<u>wq): Macroize insn from xop_phadd{,u}wq usign
13724 any_extend code iterator.
13725 (xop_phadd<u>dq): Macroize insn from xop_phadd{,u}dq usign
13726 any_extend code iterator.
13727
13728 2012-04-14 Tom de Vries <tom@codesourcery.com>
13729
13730 * cfgcleanup.c (try_optimize_cfg): Replace call to delete_insn_chain by
13731 call to delete_insn. Remove code to reorder BASIC_BLOCK note and
13732 DELETED_LABEL note, and move it to ...
13733 * cfgrtl.c (delete_insn): ... here. Change return type to void.
13734 (delete_insn_and_edges): Likewise.
13735 (delete_insn_chain): Handle new return type of delete_insn. Delete
13736 chain backwards rather than forwards.
13737 * rtl.h (delete_insn, delete_insn_and_edges): Change return type to
13738 void.
13739 * cfglayout.c (fixup_reorder_chain): Delete unused label.
13740
13741 2012-04-14 Jan Hubicka <jh@suse.cz>
13742
13743 * cgraph.h: Update copyrights;
13744 (symtab_node): Turn to union typedef.
13745 (symtab_node_base): New structure.
13746 (symtab_type): Add SYMTAB_SYMBOL tag.
13747 (cgraph_node): Annotate some pinters with nested_ptr.
13748 (varpool_node): Likewise.
13749 (cgraph_local_info): Remove lto_file_data
13750 and externally_visible.
13751 (cgraph_node): Remove decl; same_comdat_group list;
13752 aux; ref_list; order; address_taken; reachable_from_other_parittion,
13753 in_other_partition; resolution.
13754 (varpool_node): Remove decl; same_comdat_group;
13755 ref_list; lto_file_data; aux; order; resolution; externally_visible;
13756 used_from_other_partition; in_other_partition.
13757 (symtab_node_def): New union.
13758 (cgraph, varpool): Update.
13759 (varpool_first_static_initializer, varpool_next_static_initializer,
13760 cgraph_only_called_directly_or_aliased_p,
13761 varpool_can_remove_if_no_refs, varpool_can_remove_if_no_refs,
13762 varpool_all_refs_explicit_p, cgraph_alias_aliased_node,
13763 varpool_alias_aliased_node, cgraph_edge_recursive_p): Update
13764 field references.
13765 * cgraph.c: Likewise.
13766 (cgraph_hash, assembler_name_hash): Turn into symtab_node.
13767 * cgraphbuild.c: Likewise.
13768 * lto-symtab.c: Likewise.
13769 * c-gimplify.c: Likewise.
13770 * value-prof.c: Likewise.
13771 * tree.c: Likewise.
13772 * ipa-cp.c: Likewise.
13773 * tree-emutls.c: Likewise.
13774 * ipa-inline-transform.c: Likwise.
13775 * ipa-reference.c: Likewise.
13776 * cgraphunit.c: Likewise.
13777 * ipa-ref.c: Likewise.
13778 * lto-cgraph.c: Likewise.
13779 * ipa-ref-inline.h: Likewise.
13780 * ipa-pure-const.c: Likewise.
13781 * lto-streamer-out.c: Likewise.
13782 * ipa-utils.c: Likewise.
13783 * ipa-inline.c: Likewise.
13784 * matrix-reorg.c: Likewise.
13785 * tree-eh.c: Likewise.
13786 * tree-vectorizer.c: Likewise.
13787 * ipa-split.c: Likewise.
13788 * ipa.c: Likewise.
13789 * trans-mem.c: Likewise.
13790 * ipa-inline-analysis.c: Likewise.
13791 * gimplify.c: Likewise.
13792 * cfgexpand.c: Likewise.
13793 * tree-sra.c: Likewise.
13794 * ipa-prop.c: Likewise.
13795 * varasm.c: Likewise.
13796 * tree-nested.c: Likewise.
13797 * tree-inline.c: Likewise.
13798 * tree-profile.c: Likewise.
13799 * tree-ssa-structalias.c: Likewise.
13800 * passes.c: Likewise.
13801 * varpool.c: Likewise.
13802
13803 2012-04-14 Tom de Vries <tom@codesourcery.com>
13804
13805 * tree-ssa-tail-merge.c (stmt_local_def): New function, factored out of
13806 same_succ_hash, with local_def inlined. Use SINGLE_SSA_DEF_OPERAND.
13807 Use FOR_EACH_IMM_USE_FAST instead of FOR_EACH_IMM_USE_STMT. Remove use
13808 of find_edge.
13809 (gsi_advance_fw_nondebug_nonlocal): New function.
13810 (local_def): Removed function.
13811 (same_succ_hash): Use stmt_local_def.
13812 (same_succ_equal): Use gsi_advance_fw_nondebug_nonlocal.
13813 (gsi_advance_bw_nondebug_nonlocal): Use stmt_local_def.
13814
13815 2012-04-13 H.J. Lu <hongjiu.lu@intel.com>
13816
13817 * config/i386/i386-c.c (ix86_target_macros): Define _ILP32
13818 and __ILP32__ for x32.
13819
13820 2012-04-13 Martin Jambor <mjambor@suse.cz>
13821
13822 PR middle-end/52939
13823 * gimple-fold.c (gimple_get_virt_method_for_binfo): Bail out if
13824 fold_ctor_reference returns a zero constant.
13825
13826 2012-04-13 Enkovich Ilya <ilya.enkovich@intel.com>
13827
13828 * config.gcc: Add i386/gnu-user-common.h before all
13829 i386/gnu-user.h and i386/gnu-user64.h usages.
13830
13831 * config/i386/gnu-user-common.h: New.
13832
13833 * config/i386/gnu-user.h (CPP_SPEC): Moved to gnu-user-common.h.
13834 (CC1_SPEC): Likewise.
13835 (ENDFILE_SPEC): Likewise.
13836 (DEFAULT_PCC_STRUCT_RETURN): Likewise.
13837 (TARGET_TLS_DIRECT_SEG_REFS_DEFAULT): Likewise.
13838 (TARGET_OS_CPP_BUILTINS): Likewise.
13839 (LIBGCC2_HAS_TF_MODE): Likewise.
13840 (LIBGCC2_TF_CEXT): Likewise.
13841 (TF_SIZE): Likewise.
13842 (TARGET_ASM_FILE_END): Likewise.
13843 (STACK_CHECK_MOVING_SP): Likewise.
13844 (STACK_CHECK_STATIC_BUILTIN): Likewise.
13845 * config/i386/gnu-user64.h: Likewise.
13846
13847 2012-04-13 Martin Jambor <mjambor@suse.cz>
13848
13849 * expr.c (expand_expr_real_1): Pass type, not the expression, to
13850 set_mem_attributes for a memory temporary. Do not call the function
13851 for the memory temporary created for a bitfield.
13852
13853 2012-04-13 Alexandre Oliva <aoliva@redhat.com>
13854
13855 PR debug/48866
13856 * df.h (enum debug_temp_where): New.
13857 (dead_debug_init, dead_debug_finish) Declare.
13858 (dead_debug_add, dead_debug_insert_temp): Declare.
13859 (struct dead_debug_use, struct dead_debug): Moved from...
13860 * df-problems.c: ... here.
13861 (df_set_unused_notes_for_mw): Bind debug uses of unused regno
13862 to a debug temp.
13863 (df_create_unused_note): Likewise.
13864 (df_set_dead_notes_for_mw): Move comment where it belongs.
13865 (dead_debug_init): Export.
13866 (dead_debug_reset_uses): New, factored out of...
13867 (dead_debug_finish): ...this. Export.
13868 (dead_debug_reset): Remove.
13869 (dead_debug_add): Export.
13870 (dead_debug_insert_before): Rename to...
13871 (dead_debug_insert_temp): ... this. Add where argument. Export.
13872 Locate stored value for BEFORE_WITH_VALUE. Avoid repeat inserts.
13873 Return insertion count.
13874 (df_note_bb_compute): Adjust.
13875 * dce.c (word_dce_process_block): Adjust dead debug uses.
13876 (dce_process_block): Likewise.
13877
13878 2012-04-13 Alexandre Oliva <aoliva@redhat.com>
13879
13880 * df-problems.c (df_note_bb_compute): Do not take note of
13881 debug uses for whose REGs we won't emit DEAD or UNUSED notes.
13882
13883 2012-04-13 Alexandre Oliva <aoliva@redhat.com>
13884
13885 PR debug/51570
13886 * var-tracking.c (expand_depth): New type.
13887 (onepart_aux, expand_loc_callback_data): Change depth type to it.
13888 (loc_exp_dep_alloc): Adjust initializer.
13889 (update_depth): Use new type. Add entryvals.
13890 (vt_expand_var_loc_chain): Take note of expansions with
13891 ENTRY_VALUEs, but don't accept them right away. Run an optional
13892 second pass accepting the minimum ENTRY_VALUE count found in the
13893 first pass.
13894 (vt_expand_loc_callback, INIT_ELCD): Adjust.
13895
13896 2012-04-13 Tom de Vries <tom@codesourcery.com>
13897
13898 * tree-ssa-tail-merge.c (gsi_advance_bw_nondebug_nonlocal): Add
13899 parameters vuse and vuse_escaped.
13900 (find_duplicate): Init vuse1, vuse2 and vuse_escaped. Pass to
13901 gsi_advance_bw_nondebug_nonlocal. Return if vuse_escaped and
13902 vuse1 != vuse2.
13903
13904 2012-04-13 Richard Guenther <rguenther@suse.de>
13905
13906 PR tree-optimization/52969
13907 * tree-if-conv.c (predicate_mem_writes): Properly gimplify
13908 the condition for the COND_EXPR and handle predicate negation
13909 by swapping the COND_EXPR arms.
13910
13911 2012-04-13 Nick Clifton <nickc@redhat.com>
13912
13913 * config/rl78/rl78.c (rl78_devirt_pass): Remove use of
13914 TODO_dump_func flag.
13915
13916 2012-04-13 Andrey Belevantsev <abel@ispras.ru>
13917
13918 PR rtl-optimization/52203
13919 PR rtl-optimization/52715
13920
13921 Revert the 2012-03-07 fix for PR 52203.
13922 * sel-sched.c (reset_sched_cycles_in_current_ebb): Check that
13923 the insn does not modify DFA right before issuing, adjust
13924 issue_rate accordingly.
13925
13926 2012-04-13 Richard Guenther <rguenther@suse.de>
13927
13928 PR c/52549
13929 * c-typeck.c (pointer_diff): Remove bogus assert.
13930
13931 2012-04-13 Richard Guenther <rguenther@suse.de>
13932
13933 PR c/52862
13934 * convert.c (convert_to_pointer): Remove special-casing of zero.
13935
13936 2012-04-13 Joey Ye <joey.ye@arm.com>
13937
13938 * config/arm/constraints.md (Pe): New constraint.
13939 * config/arm/arm.md: New split for imm 256-510.
13940
13941 2012-04-13 Terry Guo <terry.guo@arm.com>
13942
13943 * config/arm/arm-cores.def: Added core cortex-m0plus.
13944 * config/arm/arm-tune.md: Regenerated.
13945 * config/arm/arm-tables.opt: Regenerated.
13946 * doc/invoke.texi: Added entry for cpu ARM cortex-m0plus.
13947
13948 2012-04-13 Alan Modra <amodra@gmail.com>
13949
13950 PR target/52828
13951 * config/rs6000/rs6000.c (rs6000_emit_stack_tie): Rewrite with
13952 tie regs on destination of sets. Delete forward declaration.
13953 (rs6000_emit_stack_reset): Update rs6000_emit_stack_tie calls.
13954 (rs6000_emit_prologue): Likewise.
13955 (rs6000_emit_epilogue): Likewise. Use in place of gen_frame_tie
13956 and gen_stack_tie.
13957 (is_mem_ref): Use tie_operand to recognise stack ties.
13958 * config/rs6000/predicates.md (tie_operand): New.
13959 * config/rs6000/rs6000.md (restore_stack_block): Generate new
13960 stack tie rtl.
13961 (restore_stack_nonlocal): Likewise.
13962 (stack_tie): Update.
13963 (frame_tie): Delete.
13964
13965 2012-04-12 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
13966
13967 * tree-ssa-reassoc.c (attempt_builtin_powi_stats): Change %ld to
13968 HOST_WIDE_INT_PRINT_DEC in format strings.
13969
13970 2012-04-12 Uros Bizjak <ubizjak@gmail.com>
13971
13972 PR target/52932
13973 * config/i386/avx2intrin.h (_mm256_permutevar8x32_ps): Change second
13974 argument type to __m256i. Update call to __builtin_ia32_permvarsf256.
13975 * config/i386/sse.md (UNSPEC_VPERMVAR): New.
13976 (UNSPEC_VPERMSI, UNSPEC_VPERMSF): Remove.
13977 (avx2_permvarv8sf, avx2_permvarv8si): Switch operands 1 and 2.
13978 (avx2_permvar<mode>): Macroize insn from avx2_permvarv8sf and
13979 avx2_permvarv8si using VI4F_256 mode iterator.
13980 * config/i386/i386.c (bdesc_args) <__builtin_ia32_permvarsf256>:
13981 Update builtin type to V8SF_FTYPE_V8SF_V8SI.
13982 (ix86_expand_vec_perm): Update calls to gen_avx2_permvarv8si and
13983 gen_avx2_permvarv8sf.
13984 (expand_vec_perm_pshufb): Ditto.
13985
13986 2012-04-12 Michael Meissner <meissner@linux.vnet.ibm.com>
13987
13988 PR target/52775
13989 * config/rs6000/rs6000.h (TARGET_FCFID): Add TARGET_PPC_GPOPT to
13990 the list of options to enable the FCFID instruction.
13991 (TARGET_EXTRA_BUILTINS): Adjust comment.
13992
13993 2012-04-12 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
13994
13995 PR tree-optimization/18589
13996 * tree-ssa-reassoc.c (reassociate_stats): Add two fields.
13997 (operand_entry): Add count field.
13998 (add_repeat_to_ops_vec): New function.
13999 (completely_remove_stmt): Likewise.
14000 (remove_def_if_absorbed_call): Likewise.
14001 (remove_visited_stmt_chain): Remove feeding builtin pow/powi calls.
14002 (acceptable_pow_call): New function.
14003 (linearize_expr_tree): Look for builtin pow/powi calls and add operand
14004 entries with repeat counts when found.
14005 (repeat_factor_d): New struct and associated typedefs.
14006 (repeat_factor_vec): New static vector variable.
14007 (compare_repeat_factors): New function.
14008 (get_reassoc_pow_ssa_name): Likewise.
14009 (attempt_builtin_powi): Likewise.
14010 (reassociate_bb): Call attempt_builtin_powi.
14011 (fini_reassoc): Two new calls to statistics_counter_event.
14012
14013 2012-04-12 Richard Guenther <rguenther@suse.de>
14014
14015 * Makefile.in (cgraphunit.o): Add $(EXCEPT_H) dependency.
14016 * cgraph.h (tree_rest_of_compilation): Remove.
14017 * cgraph.c (cgraph_add_new_function): Move ...
14018 * cgraphunit.c (cgraph_add_new_function): ... here.
14019 (tree_rest_of_compilation): Make static.
14020 (cgraph_expand_function): Do not set cgraph_function_flags_ready.
14021 * tree-optimize.c (gate_all_optimizations, pass_all_optimizations,
14022 gate_all_early_local_passes, execute_all_early_local_passes,
14023 pass_early_local_passes, gate_all_early_optimizations,
14024 pass_all_early_optimizations): Move ...
14025 * passes.c (gate_all_optimizations, pass_all_optimizations,
14026 gate_all_early_local_passes, execute_all_early_local_passes,
14027 pass_early_local_passes, gate_all_early_optimizations,
14028 pass_all_early_optimizations): ... here.
14029 * tree-optimize.c (execute_free_datastructures): Remove.
14030 * tree-flow.h (execute_free_datastructures): Remove.
14031 * tree-optimize.c (execute_init_datastructures,
14032 pass_init_datastructures): Move ...
14033 * tree-ssa.c (execute_init_datastructures,
14034 pass_init_datastructures): ... here.
14035 * cfgexpand.c (gimple_expand_cfg): Inline-expand call to
14036 execute_free_datastructures.
14037
14038 2012-04-12 Bernd Schmidt <bernds@codesourcery.com>
14039
14040 * dbgcnt.def (ira_move): New counter.
14041 * ira-int.h (ira_create_new_reg): Declare function.
14042 (first_moveable_pseudo, last_moveable_pseudo): Declare variables.
14043 * ira-emit.c (ira_create_new_reg): Renamed from craete_new_reg and
14044 no longer static. All callers changed.
14045 * ira.c: Include "dbgcnt.h".
14046 (rtx_moveable_p, insn_dominated_by_p, find_moveable_pseudos,
14047 move_unallocated_pseudos): New static functions.
14048 (first_moveable_pseudo, last_moveable_pseudo): New global variables.
14049 (pseudo_replaced_reg, pseudo_move_insn): New static variables.
14050 (ira): Call find_moveable_pseudos and move_unallocated_pseudos.
14051 * ira-costs.c (find_costs_and_classes): Assign a memory cost of zero
14052 to the pseudos generated in find_moveable_pseudos.
14053 * Makefile.in (ira.o): Add $(DBGCNT_H).
14054
14055 2012-04-12 Richard Guenther <rguenther@suse.de>
14056
14057 PR tree-optimization/52943
14058 * tree-chrec.h (chrec_is_positive): Remove.
14059 * tree-scalar-evolution.c (chrec_is_positive): Move ...
14060 * tree-data-ref.c (chrec_is_positive): ... here. Make static.
14061 Return false for a constant zero instead of negative.
14062 (analyze_siv_subscript_cst_affine): Handle zero difference
14063 in the initial condition explicitely.
14064
14065 2012-04-12 Richard Guenther <rguenther@suse.de>
14066
14067 * tree-parloops.c (parallelize_loops): Also consult the upper
14068 bound for the number of iterations.
14069 * tree-ssa-loop-prefetch.c (determine_loop_nest_reuse): Likewise.
14070 (loop_prefetch_arrays): Likewise.
14071
14072 2012-04-12 Richard Guenther <rguenther@suse.de>
14073
14074 * cfgloop.h (estimated_loop_iterations_int): Ditch
14075 'conservative' parameter.
14076 (max_stmt_executions_int): Likewise.
14077 (estimated_loop_iterations): Likewise.
14078 (max_stmt_executions): Likewise.
14079 (max_loop_iterations): Declare.
14080 (max_loop_iterations_int): Likewise.
14081 (estimated_stmt_executions): Likewise.
14082 (estimated_stmt_executions_int): Likewise.
14083 * tree-ssa-loop-niter.c (estimated_loop_iterations):
14084 Split parts to ...
14085 (max_loop_iterations): ... this.
14086 (estimated_loop_iterations_int): Split parts to ...
14087 (max_loop_iterations_int): ... this.
14088 (max_stmt_executions_int): Split parts to ...
14089 (estimated_stmt_executions_int): ... this.
14090 (max_stmt_executions): Split parts to ...
14091 (estimated_stmt_executions): ... this.
14092 * graphite-sese-to-poly.c (build_loop_iteration_domains): Adjust.
14093 * predict.c (predict_loops): Likewise.
14094 * tree-data-ref.c (max_stmt_executions_tree): Likewise.
14095 (analyze_siv_subscript_cst_affine): Likewise.
14096 (compute_overlap_steps_for_affine_1_2): Likewise.
14097 (analyze_subscript_affine_affine): Likewise.
14098 (init_omega_for_ddr_1): Likewise.
14099 * tree-parloops.c (parallelize_loops): Likewise.
14100 * tree-ssa-loop-ivopts.c (avg_loop_niter): Likewise.
14101 (may_eliminate_iv): Likewise.
14102 * tree-ssa-loop-prefetch.c (determine_loop_nest_reuse): Likewise.
14103 (loop_prefetch_arrays): Likewise.
14104 * tree-vrp.c (adjust_range_with_scev): Likewise.
14105
14106 2012-04-12 Oleg Endo <olegendo@gcc.gnu.org>
14107
14108 * config/sh/sh.h (RETURN_ADDR_RTX): Use NULL_RTX instead of 0.
14109 * config/sh/sh.c (INSN_REGMODE_WEIGHT, CURR_REGMODE_PRESSURE):
14110 Fix line width.
14111 (dump_table): Use bool type for need_align and have_df variables.
14112 (find_barrier, sfunc_uses_reg): Use NULL_RTX instead of 0.
14113 (regs_used): Remove register modifier.
14114 (barrier_align): Move variables slot, credit, jump_to_next
14115 into if block above for loop. Use bool type for jump_to_next.
14116 (sh_function_arg): Use NULL_RTX instead of 0.
14117
14118 2012-04-11 Andreas Schwab <schwab@linux-m68k.org>
14119
14120 * config/m68k/m68k.md (rotrhi3+1): Name it rotrhi_lowpart.
14121 (bswapsi2): New expander.
14122
14123 2012-04-11 H.J. Lu <hongjiu.lu@intel.com>
14124
14125 * config/host-linux.c (TRY_EMPTY_VM_SPACE): Defined to
14126 0x60000000 if __x86_64 is defined and __LP64__ isn't defined.
14127
14128 2012-04-11 H.J. Lu <hongjiu.lu@intel.com>
14129
14130 PR rtl-optimization/52876
14131 * emit-rtl.c (set_reg_attrs_from_value): Handle arbitrary value.
14132 Don't call mark_reg_pointer for incompatible pointer sign extension.
14133
14134 * reginfo.c (reg_scan_mark_refs): Call set_reg_attrs_from_value
14135 directly.
14136
14137 2012-04-11 Bernd Schmidt <bernds@codesourcery.com>
14138
14139 * fold-const.c (fold_unary_loc): Use GET_MODE_PRECISION for
14140 comparisons against TYPE_PRECISION.
14141 * tree-ssa-forwprop.c (combine_conversions): Likewise.
14142
14143 2012-04-11 Xinliang David Li <davidxl@google.com>
14144
14145 * tree-passes.h: Remove TODO_dump_func.
14146 * tree-ssa-tail-merge.c (tail_merge_optimize): Remove TODO_dump_func.
14147 * trans-mem.c: Remove TODO_dump_func.
14148 * ira.c: Remove TODO_dump_func.
14149
14150 2012-04-11 H.J. Lu <hongjiu.lu@intel.com>
14151
14152 * config/i386/i386.c (ix86_option_override_internal): Check
14153 SUBTARGET_OVERRIDE_OPTIONS and SUBSUBTARGET_OVERRIDE_OPTIONS
14154 after TARGET_64BIT is updated.
14155
14156 2012-04-11 Oleg Endo <olegendo@gcc.gnu.org>
14157
14158 * config/sh/sh.h: Remove old secondary reload code.
14159
14160 2012-04-11 Oleg Endo <olegendo@gcc.gnu.org>
14161
14162 * config/sh/sh.c (SCHED_REORDER): Merge macro into ...
14163 (ready_reorder): ... this function.
14164
14165 2012-04-11 Bernd Schmidt <bernds@codesourcery.com>
14166
14167 * sel-sched.c (sel_global_init): Swap order of sched_rgn_init and
14168 sched_init calls.
14169
14170 * haifa-sched.c (prune_ready_list): Rework handling of SCHED_GROUP_P
14171 insns so that no other insn is queued for a time before them.
14172
14173 * config/c6x/c6x.md (load_got_gotoff): Set op_pattern attribute to
14174 unknown.
14175
14176 2012-04-11 Richard Guenther <rguenther@suse.de>
14177
14178 PR middle-end/52621
14179 * tree-chrec.c (evolution_function_is_invariant_rec_p): Properly
14180 consider loop nesting.
14181 (evolution_function_is_univariate_p): Properly check the remainder
14182 for chrecs.
14183
14184 2012-04-11 Richard Guenther <rguenther@suse.de>
14185
14186 PR middle-end/52918
14187 * except.c (sjlj_emit_dispatch_table): Properly update loop structure.
14188
14189 2012-04-11 Nick Clifton <nickc@redhat.com>
14190
14191 * config/rl78/rl78.c (rl78_expand_prologue): Set stack use
14192 information, if requested.
14193
14194 * config/rx/rx.c (rx_expand_prologue): Likewise.
14195
14196 2012-04-11 Peter Bergner <bergner@vnet.ibm.com>
14197 Michael Matz <matz@suse.de>
14198
14199 PR target/16458
14200 * rtlanal.c (unsigned_reg_p): New function.
14201 Update copyright notice dates.
14202 * rtl.h (unsigned_reg_p): Prototype it.
14203 Update copyright notice dates.
14204 * config/rs6000/rs6000.c (rs6000_generate_compare): Use it.
14205 Update comment.
14206 * expr.c (expand_expr_real_1): Set register attributes.
14207 * stmt.c (expand_case): Likewise.
14208
14209 2012-04-11 Oleg Endo <olegendo@gcc.gnu.org>
14210
14211 PR target/50751
14212 * config/sh/sh-protos.h (sh_legitimate_index_p): Add new arguments
14213 consider_sh2a and allow_zero.
14214 * config/sh/sh.c (sh_legitimate_index_p): Likewise.
14215 (disp_addr_displacement): New function.
14216 (sh_address_cost): Use disp_addr_displacement function instead
14217 of DISP_ADDR_OFFSET.
14218 (sh_legitimate_address_p): Adapt to changed
14219 sh_legitimate_index_p declaration.
14220 (sh_find_mov_disp_adjust): Remove HImode check.
14221 (sh_secondary_reload): Add HImode case. Use satisfies_constraint_Sdd,
14222 disp_addr_displacement and max_mov_insn_displacement.
14223 (max_mov_insn_displacement): Remove HImode check.
14224 * config/sh/sh.h (CONST_OK_FOR_K04, CONST_OK_FOR_K12,
14225 DISP_ADDR_P, DISP_ADDR_OFFSET): Remove.
14226 * config/sh/constraints.md (K05, K13): New constraints.
14227 (K12): Correct comment.
14228 (Sdd): Do not use DISP_ADDR_P macro.
14229 (Snd, Sbw): Use satisfies_constraint_Sdd.
14230 * config/sh/sh.md (extendhisi2): Remove constraints from expander.
14231 (*extendhisi2_compact, movhi_i): Remove.
14232 (*extendhisi2_compact_reg, *extendhisi2_compact_mem_disp,
14233 *extendhisi2_compact_mem_disp, *extendhisi2_compact_snd,
14234 *movhi_reg_reg, *movhi_store_mem_disp05, *movhi_store_mem_disp13,
14235 *movhi_load_mem_disp, *movhi_load_mem_disp, *movhi): New insns.
14236 (*extendqisi2_compact_mem_disp, *extendqisi2_compact_mem_disp,
14237 *movqi_store_mem_disp04, *movqi_store_mem_disp12, *movqi_load_mem_disp,
14238 *movqi_load_mem_disp): Use sh_legitimate_index_p instead of
14239 CONST_OK_FOR_Kxx.
14240 Add new peepholes for HImode displacement addressing.
14241
14242 2012-04-11 Oleg Endo <olegendo@gcc.gnu.org>
14243
14244 * config/sh/sh.h (SIDI_OFF): Remove.
14245 * config/sh/sh.md: Use gen_highpart and gen_lowpart to access
14246 DImode subregs instead of gen_rtx_REG or simplifly_gen_subreg
14247 or operand_subword.
14248
14249 2012-04-11 Eric Botcazou <ebotcazou@adacore.com>
14250
14251 PR target/52624
14252 * doc/extend.texi (Other Builtins): Document __builtin_bswap16.
14253 (PowerPC AltiVec/VSX Built-in Functions): Remove it.
14254 * doc/md.texi (Standard Names): Add bswap.
14255 * builtin-types.def (BT_UINT16): New primitive type.
14256 (BT_FN_UINT16_UINT16): New function type.
14257 * builtins.def (BUILT_IN_BSWAP16): New.
14258 * builtins.c (expand_builtin_bswap): Add TARGET_MODE argument.
14259 (expand_builtin) <BUILT_IN_BSWAP16>: New case. Pass TARGET_MODE to
14260 expand_builtin_bswap.
14261 (fold_builtin_bswap): Add BUILT_IN_BSWAP16 case.
14262 (fold_builtin_1): Likewise.
14263 (is_inexpensive_builtin): Likewise.
14264 * optabs.c (expand_unop): Deal with bswap in HImode specially. Add
14265 missing bits for bswap to libcall code.
14266 * tree.c (build_common_tree_nodes): Build uint16_type_node.
14267 * tree.h (enum tree_index): Add TI_UINT16_TYPE.
14268 (uint16_type_node): New define.
14269 * config/rs6000/rs6000-builtin.def (RS6000_BUILTIN_BSWAP_HI): Delete.
14270 * config/rs6000/rs6000.c (rs6000_expand_builtin): Remove handling of
14271 above builtin.
14272 (rs6000_init_builtins): Likewise.
14273 * config/rs6000/rs6000.md (bswaphi2): Add TARGET_POWERPC predicate.
14274
14275 2012-04-11 Tristan Gingold <gingold@adacore.com>
14276
14277 * doc/extend.texi (Type Attributes): Move paragraph.
14278
14279 2012-04-11 Manuel López-Ibáñez <manu@gcc.gnu.org>
14280
14281 PR 24985
14282 * diagnostic.h (show_caret): Declare.
14283 (caret_max_width): Declare.
14284 (diagnostic_show_locus): Declare.
14285 * diagnostic.c (diagnostic_initialize): Initialize to false.
14286 (diagnostic_show_locus): New.
14287 (diagnostic_report_diagnostic): Call it.
14288 (getenv_columns): New.
14289 (adjust_line): New.
14290 (diagnostic_set_caret_max_width): New.
14291 * input.c (read_line): New.
14292 (location_get_source_line): New.
14293 * input.h (location_get_source_line): Declare.
14294 * toplev.c (general_init): Initialize show_caret from options.
14295 * dwarf2out.c (gen_producer_string): Handle fdiagnostics-show-caret.
14296 * opts.c (common_handle_option): Likewise.
14297 * pretty-print.h (pp_get_prefix): New.
14298 (pp_base_get_prefix): New.
14299 * common.opt (fdiagnostics-show-caret): New option.
14300 * doc/invoke.texi (fdiagnostics-show-caret): Document it.
14301
14302 2012-04-11 Richard Guenther <rguenther@suse.de>
14303
14304 PR rtl-optimization/52881
14305 * ifcvt.c (find_if_case_2): Avoid speculating loop latches.
14306
14307 2012-04-11 Richard Guenther <rguenther@suse.de>
14308
14309 PR tree-optimization/52912
14310 * tree-ssa-threadupdate.c (thread_block): Tell the cfg
14311 manipulation code we are threading through a loop header
14312 to an exit destination.
14313
14314 2012-04-10 Manuel López-Ibáñez <manu@gcc.gnu.org>
14315
14316 * tree.h (warn_if_unused_value): Move declaration from here.
14317 * stmt.c (warn_if_unused_value): Move definition from here.
14318
14319 2012-04-10 Michael Matz <matz@suse.de>
14320
14321 * tree-vectorizer.h (_loop_vec_info.strided_stores): Rename to
14322 grouped_stores.
14323 (LOOP_VINFO_STRIDED_STORES): Rename to LOOP_VINFO_GROUPED_STORES.
14324 (struce _bb_vec_info.strided_stores): Rename to grouped_stores.
14325 (BB_VINFO_STRIDED_STORES): Rename to BB_VINFO_GROUPED_STORES.
14326 (STMT_VINFO_STRIDED_ACCESS): Rename to STMT_VINFO_GROUPED_ACCESS.
14327 (vect_strided_store_supported): Rename to vect_grouped_store_supported.
14328 (vect_strided_load_supported): Rename to vect_grouped_load_supported.
14329 (vect_transform_strided_load): Rename to vect_transform_grouped_load.
14330 (vect_record_strided_load_vectors): Rename to
14331 vect_record_grouped_load_vectors.
14332 * tree-vect-data-refs.c (vect_update_misalignment_for_peel):
14333 Rename use of above macros.
14334 (vect_verify_datarefs_alignment): Ditto.
14335 (vector_alignment_reachable_p): Ditto.
14336 (vect_peeling_hash_get_lowest_cost): Ditto.
14337 (vect_enhance_data_refs_alignment): Ditto.
14338 (vect_analyze_group_access): Ditto and rename stride to groupsize.
14339 (vect_analyze_data_ref_access): Rename "strided" to "grouped".
14340 (vect_strided_store_supported): Rename to vect_grouped_store_supported.
14341 (vect_strided_load_supported): Rename to vect_grouped_load_supported.
14342 (vect_transform_strided_load): Rename to vect_transform_grouped_load.
14343 (vect_record_strided_load_vectors): Rename to
14344 vect_record_grouped_load_vectors.
14345 * tree-vect-loop.c (new_loop_vec_info): Rename use of above macros.
14346 (destroy_loop_vec_info): Ditto.
14347 (vect_transform_loop): Ditto and rename strided_store to grouped_store.
14348 * tree-vect-slp.c (vect_build_slp_tree): Rename use of above macros.
14349 (vect_analyze_slp): Ditto.
14350 (new_bb_vec_info): Ditto.
14351 (destroy_bb_vec_info): Ditto.
14352 (vect_schedule_slp_instance): Ditto and rename strided_store to
14353 grouped_store.
14354 * tree-vect-stmts.c (vect_cost_strided_group_size): Rename to
14355 vect_cost_group_size.
14356 (vect_model_store_cost): Rename use of above macros and call
14357 to vect_cost_strided_group_size.
14358 (vect_model_load_cost): Ditto.
14359 (vectorizable_store): Ditto, rename strided_store to grouped_store
14360 and calls to renamed tree-vectorizer.h functions.
14361 (vectorizable_load): Ditto.
14362 (vect_transform_stmt): Rename use of above macros and strided_store
14363 to grouped_store.
14364
14365 2012-04-10 Jan Hubicka <jh@suse.cz>
14366
14367 * cgraph.h: Remove misledaing comment on ipa-ref.h.
14368 (symtab_type): New enum.
14369 (symtab_node): New structure.
14370 (cgraph_node, varpool_node): Add symbol base type.
14371 (cgraph, varpool): New accestor functions.
14372 * cgraph.c (cgraph_create_node_1): Set symbol type.
14373 * varpool.c (varpool_node): Set symbol type.
14374
14375 2012-04-10 Ulrich Weigand <ulrich.weigand@linaro.org>
14376 Richard Sandiford <rdsandiford@googlemail.com>
14377
14378 * fwprop.c (propagate_rtx): Also set PR_CAN_APPEAR for subregs.
14379
14380 2012-04-10 Richard Guenther <rguenther@suse.de>
14381
14382 PR middle-end/52888
14383 * gimple-low.c (gimple_check_call_args): Properly account for
14384 compatible aggregate types.
14385
14386 2012-04-10 Richard Guenther <rguenther@suse.de>
14387
14388 * toplev.h (tree_rest_of_compilation): Remove.
14389 * tree-optimize.c (tree_rest_of_compilation): Likewise.
14390 * cgraph.h (tree_rest_of_compilation): Declare.
14391 * tree-optimize.c (tree_rest_of_compilation): Move ...
14392 * cgraphunit.c (tree_rest_of_compilation): ... here.
14393 * cgraph.c (cgraph_add_new_function): Adjust.
14394 * Makefile.in (tree-optimize.o): Adjust.
14395 (cgraphunit.o): Likewise.
14396
14397 2012-04-10 Ulrich Weigand <ulrich.weigand@linaro.org>
14398
14399 PR tree-optimization/52870
14400 * tree-vect-patterns.c (vect_recog_widen_mult_pattern): Verify that
14401 presumed pattern statement is within the same loop or basic block.
14402
14403 2012-04-10 Tristan Gingold <gingold@adacore.com>
14404
14405 * gengtype.c (main): Make uintptr_t a known type.
14406
14407 2012-04-10 Richard Guenther <rguenther@suse.de>
14408
14409 * tree-pass.h (tree_lowering_passes): Remove.
14410 * tree-optimize.c (tree_lowering_passes): Remove.
14411 * cgraph.c (cgraph_add_new_function): Inline relevant parts
14412 of tree_lowering_passes, avoid redundant call of early local passes.
14413 * cgraphunit.c (cgraph_lower_function): Fold into ...
14414 (cgraph_analyze_function): ... its single caller. Inline
14415 relevant parts of tree_lowering_passes.
14416
14417 2012-04-09 H.J. Lu <hongjiu.lu@intel.com>
14418
14419 PR other/52777
14420 * config/pa/pa.opt: Remove SIO and GNU_LD.
14421
14422 2012-04-09 Jan Hubicka <jh@suse.cz>
14423
14424 PR lto/52722
14425 PR lto/51765
14426 PR lto/52634
14427 * lto-cgraph.c (compute_ltrans_boundary): When alias is in the
14428 boundary, add its target too.
14429 * lto.c (add_references_to_partition): Add also aliased nodes.
14430 (add_cgraph_node_to_partition,
14431 add_varpool_node_to_partition): Work on nodes, not functions/variables;
14432 when adding alias, add also the aliased object.
14433
14434 2012-04-09 Uros Bizjak <ubizjak@gmail.com>
14435
14436 PR target/52883
14437 * config/i386/predicates.md (x86_64_zext_general_operand): Prevent
14438 VOIDmode immediate operands.
14439 * config/i386/constraints.md (Wz): New constraint.
14440 * config/i386/i386.md (*zero_extendsidi2_rex64): Use Wz instead of Z.
14441
14442 2012-04-09 Eric Botcazou <ebotcazou@adacore.com>
14443
14444 PR target/52717
14445 * config/sparc/sparc.c (sparc_file_end): Set TREE_PUBLIC explicitly on
14446 the DECL generated for the special GOT helper.
14447
14448 2012-04-09 Oleg Endo <olegendo@gcc.gnu.org>
14449
14450 * config/sh/constraints.md: Update list of constraints in
14451 comment block.
14452 (Sr0): Remove unused memory constraint.
14453
14454 2012-04-08 Manuel López-Ibáñez <manu@gcc.gnu.org>
14455
14456 * tree-pretty-print.h: Update comment.
14457
14458 2012-04-08 Oleg Endo <olegendo@gcc.gnu.org>
14459
14460 * config/sh/sh.md: Use braced string notation where applicable.
14461 (*prefetch_i4, prefetch_m2a): Merge into ...
14462 (*prefetch): ... this new insn.
14463
14464 2012-04-07 Oleg Endo <olegendo@gcc.gnu.org>
14465
14466 * config/sh/sh.h (high_life_started): Remove
14467 * config/sh/predicates.md (general_movdst_operand): Use
14468 'reload_in_progress' instead of 'high_life_started'.
14469 * config/sh/sh.md (divsi_inv_call, *divsi_inv_call_combine,
14470 divsi_inv_fp): Likewise.
14471
14472 2012-04-07 Oleg Endo <olegendo@gcc.gnu.org>
14473
14474 * config/sh/sh-protos.h (prepare_move_operands): Return void
14475 instead of int.
14476 * config/sh/sh.c (prepare_move_operands): Likewise.
14477 * config/sh/sh.md: Remove return value checks of prepare_move_operands.
14478
14479 2012-04-07 Oleg Endo <olegendo@gcc.gnu.org>
14480
14481 * config/sh/sh-protos.h (fp_int_operand, symbol_ref_operand,
14482 general_movsrc_operand, general_movdst_operand, arith_reg_operand,
14483 fp_arith_reg_operand, arith_operand, arith_reg_or_0_operand,
14484 logical_operand, fpscr_operand, fpul_operand, expand_fp_branch,
14485 commutative_float_operator, noncommutative_float_operator,
14486 sh_handle_pragma): Remove.
14487
14488 2012-04-06 Sandra Loosemore <sandra@codesourcery.com>
14489
14490 * doc/invoke.texi: Clean up Texinfo markup throughout the file.
14491 Use @option markup on command-line options. Use @samp markup on
14492 literal keywords to options. Use @code markup on code fragments.
14493 Use other markup in preference to quotation marks in the text.
14494 Add markup to some passages without any.
14495
14496 2012-04-06 Mike Stump <mikestump@comcast.net>
14497
14498 * gimple-fold.c (gimple_fold_stmt_to_constant_1): Avoid warning.
14499
14500 2012-04-06 Oleg Endo <olegendo@gcc.gnu.org>
14501
14502 * config/sh/sh.c (hi_const): Remove.
14503 (find_barrier, sh_reorg): Use satisfies_constraint_I16 instead
14504 of hi_const.
14505
14506 2012-04-06 Oleg Endo <olegendo@gcc.gnu.org>
14507
14508 * config/sh/sh-protos.h (sh_expand_t_scc): Change return type from int
14509 to bool.
14510 * config/sh/sh.c (sh_expand_t_scc): Likewise.
14511 * config/sh/sh.md (cstoresi4, cstoredi4): Remove GET_CODE checks before
14512 calling sh_expand_t_scc.
14513
14514 2012-04-06 Oleg Endo <olegendo@gcc.gnu.org>
14515
14516 * config/sh/sh-protos.h (fp_zero_operand, fp_one_operand,
14517 nonpic_symbol_mentioned_p, expand_block_move, expand_ashiftrt,
14518 sh_dynamicalize_shift_p, gen_shl_and, gen_shl_sext, system_reg_operand,
14519 reg_unused_after, sh_can_redirect_branch, sh_need_epilogue, fldi_ok,
14520 sh_hard_regno_rename_ok, sh_cfun_interrupt_handler_p,
14521 sh_cfun_resbank_handler_p, sh_attr_renesas_p, sh_cfun_attr_renesas_p,
14522 check_use_sfunc_addr, sh_contains_memref_p, sh_loads_bankedreg_p,
14523 sh2a_is_function_vector_call): Use bool as return type.
14524 (sh_pass_in_reg_p): Remove.
14525 * config/sh/sh.c (broken_move, mova_p, noncall_uses_reg, high_pressure,
14526 flow_dependent_p, sh2a_function_vector_p, expand_block_move,
14527 expand_ashiftrt, sh_dynamicalize_shift_p, gen_shl_and, gen_shl_sext,
14528 sh_need_epilogue, sh2a_is_function_vector_call, sh_attr_renesas_p,
14529 sh_cfun_attr_renesas_p, sh_cfun_interrupt_handler_p,
14530 sh_cfun_resbank_handler_p, system_reg_operand, fp_zero_operand,
14531 fp_one_operand, fldi_ok, reg_unused_after, sh_can_redirect_branch,
14532 sh_hard_regno_rename_ok, check_use_sfunc_addr, sh_contains_memref_p,
14533 sh_loads_bankedreg_p): Use bool as return type.
14534 (nonpic_symbol_mentioned_p): Use bool as return type. Remove
14535 'register' modifier.
14536
14537 2012-04-06 Matt Turner <mattst88@gmail.com>
14538
14539 * doc/install.texi: Correct typo "-mno-lsc" -> "-mno-llsc".
14540
14541 2012-04-06 Eric Botcazou <ebotcazou@adacore.com>
14542
14543 * config/ia64/ia64.c (ia64_load_pair_ok): Return 0 if the second member
14544 of the destination isn't also a FP_REGS register.
14545
14546 2012-04-05 Teresa Johnson <tejohnson@google.com>
14547 H.J. Lu <hongjiu.lu@intel.com>
14548
14549 * config/i386/i386.h (ix86_tune_indices): Add X86_TUNE_LCP_STALL.
14550 * config/i386/i386.md (move immediate to memory peephole2):
14551 Add cases for HImode move when LCP stall avoidance is needed.
14552 * config/i386/i386.c (initial_ix86_tune_features): Initialize
14553 X86_TUNE_LCP_STALL entry.
14554
14555 2012-04-05 Uros Bizjak <ubizjak@gmail.com>
14556
14557 PR target/52882
14558 * config/i386/i386.c (ix86_decompose_address): Allow VOIDmode
14559 CONST_INT operands, zero-extended with AND.
14560
14561 2012-04-05 Oleg Endo <olegendo@gcc.gnu.org>
14562
14563 PR target/50751
14564 * config/sh/sh.c (sh_find_mov_disp_adjust): Take machine_mode as the
14565 first argument instead of mode size. Move displacement calculations
14566 to ...
14567 (mov_insn_size, max_mov_insn_displacement, mov_insn_alignment_mask):
14568 ... these new functions.
14569 (disp_adjust): Remove max_mov_disp field.
14570 (sh_legitimate_index_p): Use max_mov_insn_displacement and
14571 mov_insn_alignment_mask.
14572 (sh_address_cost): Use max_mov_insn_displacement.
14573
14574 2012-04-05 Andrew Stubbs <ams@codesourcery.com>
14575
14576 * config/arm/arm.md (arch): Add neon_onlya8 and neon_nota8.
14577 (arch_enabled): Handle new arch types.
14578 (one_cmpldi2): Add NEON support.
14579
14580 2012-04-05 Richard Guenther <rguenther@suse.de>
14581
14582 * gimple.c (walk_gimple_op): Compute val_only for the LHS
14583 of an assigment in the canonical way, avoiding is_gimple_mem_rhs.
14584 (is_gimple_mem_rhs, is_gimple_reg_rhs, is_gimple_stmt): Move ...
14585 * gimplify.c (is_gimple_mem_rhs, is_gimple_reg_rhs, is_gimple_stmt):
14586 ... here and make static.
14587 * gimple.h (is_gimple_mem_rhs, is_gimple_reg_rhs, is_gimple_stmt):
14588 Remove.
14589
14590 2012-04-05 Richard Guenther <rguenther@suse.de>
14591
14592 * tree-ssa-dse.c (dse_optimize_stmt): Remember the stmt
14593 basic-block before removing it.
14594
14595 2012-04-05 Richard Guenther <rguenther@suse.de>
14596
14597 * tree-ssanames.c (release_dead_ssa_names): Compact the SSA
14598 version namespace as we release the freelist.
14599
14600 2012-04-05 Richard Guenther <rguenther@suse.de>
14601
14602 * tree-nrv.c (tree_nrv): Release VDEFs.
14603 * tree-sra.c (sra_modify_constructor_assign): Likewise.
14604 (sra_modify_assign): Likewise.
14605 * tree-vect-stmts.c (vect_remove_stores): Likewise.
14606 * tree-vect-loop.c (vect_transform_loop): Likewise.
14607 * tree-ssa-dom.c (optimize_stmt): Likewise.
14608 * tree-vect-slp.c (vect_schedule_slp): Likewise.
14609 * tree-ssa-math-opts.c (execute_cse_sincos): Likewise.
14610
14611 2012-04-05 Richard Guenther <rguenther@suse.de>
14612
14613 * gimple-iterator.c (gsi_remove): Return whether EH edges need to be
14614 cleanup.
14615 * gimple.h (gsi_remove): Adjust.
14616 * tree-ssa-operands.c (unlink_stmt_vdef): Optimize.
14617 * tree-ssa-dom.c (optimize_stmt): Use gsi_remove result.
14618 * tree-ssa-dse.c (dse_optimize_stmt): Likewise.
14619 * tree-ssa-forwprop.c (remove_prop_source_from_use): Likewise.
14620 * tree-ssa-math-opts.c (execute_optimize_widening_mul): Likewise.
14621 * tree-ssa-pre.c (eliminate): Likewise.
14622
14623 2012-04-04 Mike Stump <mikestump@comcast.net>
14624
14625 * doc/rtl.texi (const_double): Document as sign-extending.
14626 * expmed.c (expand_mult): Ensure we don't use shift incorrectly.
14627 * emit-rtl.c (immed_double_int_const): Refine to state the
14628 value is signed.
14629 * simplify-rtx.c (mode_signbit_p): Add a fixme for wider than
14630 CONST_DOUBLE integers.
14631 (simplify_const_unary_operation, UNSIGNED_FLOAT): Ensure no
14632 negative values are converted. Fix conversions bigger than
14633 HOST_BITS_PER_WIDE_INT.
14634 (simplify_binary_operation_1): Ensure we don't use shift incorrectly.
14635 (simplify_immed_subreg): Sign-extend CONST_DOUBLEs.
14636 * explow.c (plus_constant_mode): Add.
14637 (plus_constant): Implement with plus_constant_mode.
14638 * rtl.h (plus_constant_mode): Add.
14639
14640 2012-04-04 Richard Guenther <rguenther@suse.de>
14641
14642 PR tree-optimization/52808
14643 * tracer.c (tail_duplicate): Do not tail-duplicate loop header blocks.
14644 * Makefile.in (tracer.o): Depend on $(CFGLOOP_H).
14645
14646 2012-04-04 Tristan Gingold <gingold@adacore.com>
14647
14648 * expr.c (expand_expr_real_2): Handle larger sizetype in
14649 POINTER_PLUS_EXPR.
14650
14651 2012-04-03 Kaz Kojima <kkojima@gcc.gnu.org>
14652
14653 * config/sh/t-sh (MULTILIB_MATCHES): Match m2a-single-only
14654 to m2a-single instead of m2e.
14655
14656 2012-04-03 Eric Botcazou <ebotcazou@adacore.com>
14657
14658 * expr.c (get_bit_range): Add OFFSET parameter and adjust BITPOS.
14659 Change type of BITOFFSET to signed. Make sure the lower bound of
14660 the computed range is non-negative by adjusting OFFSET and BITPOS.
14661 (expand_assignment): Adjust call to get_bit_range.
14662
14663 2012-04-03 Sandeep Kumar Singh <Sandeep.Singh2@kpitcummins.com>
14664
14665 * h8300/h8300.c (h8300_current_function_monitor_function_p):
14666 New function. Added to check monitor functions.
14667 (h8300_option_override): Modified to generate error/warning
14668 messages for invalid combinations of different command line
14669 options.
14670 * h8300/h8300.md: Generate 'rte' for monitor functions. Do not
14671 save EXR on stack for monitor function in case of H8S target
14672 when "-mno-exr" is passed.
14673 * h8300/h8300-protos.h (h8300_current_function_monitor_function_p):
14674 Add prototype.
14675 * doc/invoke.texi: Document H8S options.
14676
14677 2012-04-03 Tristan Gingold <gingold@adacore.com>
14678
14679 * configure.ac: Use GCC_AC_FUNC_MMAP_BLACKLIST instead
14680 of gcc_AC_FUNC_MMAP_BLACKLIST.
14681 * acinclude.m4 (gcc_AC_FUNC_MMAP_BLACKLIST): Remove.
14682 * Makefile.in (aclocal_deps): Add mmap.m4.
14683 * configure: Regenerate.
14684 * aclocal.m4: Regenerate.
14685
14686 2012-04-03 Richard Guenther <rguenther@suse.de>
14687
14688 PR tree-optimization/52808
14689 * tracer.c (tail_duplicate): Return whether we have duplicated
14690 any block.
14691 (tracer): If we have duplicated any block, cleanup the CFG.
14692 * cfghooks.c (duplicate_block): If we duplicated a loop
14693 header but not its loop, destroy the loop because it now has
14694 multiple entries.
14695 * tree-ssa-threadupdate.c (thread_through_loop_header): Tell
14696 the cfg manipulation routines we are not creating a multiple
14697 entry loop.
14698
14699 2012-04-03 Tristan Gingold <gingold@adacore.com>
14700
14701 * config/vms/vms-c.c (vms_pragma_nomember_alignment): Handle
14702 'byte' alignment.
14703 (vms_c_common_override_options): Allow parameterless variadic
14704 functions.
14705
14706 2012-04-03 Jakub Jelinek <jakub@redhat.com>
14707
14708 PR tree-optimization/52835
14709 * tree-data-ref.c (build_rdg): Return NULL if
14710 compute_data_dependences_for_loop failed.
14711
14712 2012-04-03 Eric Botcazou <ebotcazou@adacore.com>
14713
14714 * varasm.c (initializer_constant_valid_for_bitfield_p): Return true
14715 for REAL_CST as well.
14716 (output_constructor): Use RECORD_OR_UNION_TYPE_P predicate.
14717 In the bitfield case, if the value is a REAL_CST, convert it first to
14718 an INTEGER_CST.
14719
14720 2012-04-02 H.J. Lu <hongjiu.lu@intel.com>
14721
14722 * config.gcc: Use i386/biarchx32.h instead of i386/biarch64.h
14723 for --with-abi={x32|mx32} or --with-multilib-list=mx32.
14724 (supported_defaults): Add abi for i[34567]86-*-* and x86_64-*-*.
14725
14726 * config/i386/biarchx32.h: New.
14727
14728 2012-04-02 Anatoly Sokolov <aesok@post.ru>
14729
14730 * config/arm/arm.h (PREFERRED_RELOAD_CLASS): Remove.
14731 * config/arm/arm.c (TARGET_PREFERRED_RELOAD_CLASS): Define.
14732 (arm_preferred_reload_class): New function.
14733
14734 2012-04-02 Richard Guenther <rguenther@suse.de>
14735
14736 PR tree-optimization/52756
14737 * tree-ssa-threadupdate.c (def_split_header_continue_p): New function.
14738 (thread_through_loop_header): After threading through the loop latch
14739 remove the split part from the loop and clear further threading
14740 opportunities that would create a multiple entry loop.
14741
14742 2012-04-02 Richard Guenther <rguenther@suse.de>
14743
14744 PR rtl-optimization/52800
14745 * cprop.c (execute_rtl_cprop): Call cleanup_cfg with
14746 CLEANUP_CFG_CHANGED.
14747
14748 2012-04-02 Richard Guenther <rguenther@suse.de>
14749
14750 PR middle-end/52803
14751 * loop-init.c (gate_handle_loop2): Destroy loops here if
14752 we don't enter RTL loop optimizers.
14753
14754 2012-04-02 Uros Bizjak <ubizjak@gmail.com>
14755
14756 Partially revert:
14757 2012-03-29 Richard Guenther <rguenther@suse.de>
14758
14759 * rtl.h (extended_count): Remove.
14760 * combine.c (extended_count): Remove.
14761
14762 2012-04-02 Dodji Seketeli <dodji@redhat.com>
14763
14764 PR c++/40942
14765 * pt.c (more_specialized_fn): Don't apply decay conversion to
14766 types of function parameters.
14767
14768 2012-04-02 Tristan Gingold <gingold@adacore.com>
14769
14770 * ggc-page.c (PAGE_L1_SIZE, PAGE_L2_SIZE, LOOKUP_L1, LOOKUP_L2)
14771 (ggc_allocated_p, lookup_page_table_entry, set_page_table_entry)
14772 (alloc_page, init_ggc, clear_marks, struct ggc_pch_data)
14773 (ggc_pch_this_base): Use uintptr_t instead of size_t.
14774
14775 2012-03-31 H.J. Lu <hongjiu.lu@intel.com>
14776
14777 PR bootstrap/52784
14778 * config/i386/i386.c (ix86_option_override_internal): Don't
14779 check TARGET_64BIT if TARGET_64BIT_DEFAULT is false.
14780
14781 2012-03-31 Eric Botcazou <ebotcazou@adacore.com>
14782
14783 * tree-cfg.c (call_can_make_abnormal_goto): New predicate.
14784 (stmt_can_make_abnormal_goto): Use it.
14785 (is_ctrl_altering_stmt): Likewise.
14786
14787 2012-03-30 Naveen H.S <naveen.S@kpitcummins.com>
14788 Kaz Kojima <kkojima@gcc.gnu.org>
14789
14790 * config/sh/sh.c (push_regs): Skip banked registers when
14791 resbank attribute is specified.
14792 (sh_expand_epilogue): Likewise.
14793
14794 2012-03-30 Richard Henderson <rth@redhat.com>
14795
14796 PR debug/52727
14797 * combine-stack-adj.c (prev_active_insn_bb): New.
14798 (next_active_insn_bb): New.
14799 (force_move_args_size_note): New.
14800 (combine_stack_adjustments_for_block): Use it.
14801
14802 2012-03-30 Richard Henderson <rth@redhat.com>
14803
14804 * config/i386/i386.c (struct expand_vec_perm_d): Add one_operand_p.
14805 (ix86_expand_vector_init_duplicate): Initialize it.
14806 (expand_vec_perm_palignr): Likewise.
14807 (ix86_expand_vec_perm_const): Likewise.
14808 (ix86_vectorize_vec_perm_const_ok): Likewise.
14809 (expand_vec_perm_blend): Use it.
14810 (expand_vec_perm_vpermil): Likewise.
14811 (expand_vec_perm_pshufb): Likewise.
14812 (expand_vec_perm_1): Likewise.
14813 (expand_vec_perm_pshuflw_pshufhw): Likewise.
14814 (expand_vec_perm_interleave2): Likewise.
14815 (expand_vec_perm_vpermq_perm_1): Likewise.
14816 (expand_vec_perm_vperm2f128): Likewise.
14817 (expand_vec_perm_interleave3): Likewise.
14818 (expand_vec_perm_vperm2f128_vblend): Likewise.
14819 (expand_vec_perm_vpshufb2_vpermq): Likewise.
14820 (expand_vec_perm_vpshufb2_vpermq_even_odd): Likewise,.
14821 (expand_vec_perm_broadcast): Likewise.
14822 (expand_vec_perm_vpshufb4_vpermq2): Likewise.
14823
14824 2012-03-30 Richard Henderson <rth@redhat.com>
14825
14826 * dwarf2out.c (gen_variable_die): Initialize off.
14827
14828 2012-03-30 Tristan Gingold <gingold@adacore.com>
14829
14830 * config/vms/vms-f.c: New file.
14831 * config/vms/t-vms (vms-f.o): New rule.
14832 * config.gcc (*-*-*vms*): Define fortran_target_objs.
14833
14834 2012-03-30 Richard Guenther <rguenther@suse.de>
14835
14836 PR tree-optimization/52754
14837 * tree-ssa-forwprop.c (forward_propagate_addr_expr_1): Only
14838 propagate arbitrary addresses into really plain dereferences.
14839
14840 2012-03-30 Richard Guenther <rguenther@suse.de>
14841
14842 PR middle-end/52772
14843 * except.c (emit_to_new_bb_before): Move loop updating ...
14844 (dw2_build_landing_pads): ... here. Use a proper block for
14845 querying the loop father.
14846
14847 2012-03-30 Tristan Gingold <gingold@adacore.com>
14848
14849 * config/ia64/ia64.c (ia64_section_type_flags): Remove
14850 common_object attribute handling.
14851 (SECTION_VMS_OVERLAY): Remove
14852 (ia64_vms_common_object_attribute): Replace abort with an assert.
14853 Do not set DECL_SECTION_NAME.
14854 (ia64_vms_output_aligned_decl_common): Handle common_object
14855 attribute.
14856 (ia64_vms_elf_asm_named_section): Remove.
14857 * config/ia64/vms.h (TARGET_ASM_NAMED_SECTION): Remove.
14858
14859 2012-03-30 Richard Guenther <rguenther@suse.de>
14860
14861 PR middle-end/52786
14862 * double-int.c (rshift_double): Remove not needed cast.
14863
14864 2012-03-30 Richard Guenther <rguenther@suse.de>
14865
14866 * tree-affine.h (print_aff): Remove.
14867 * tree-affine.c (print_aff): Make static.
14868 * tree-data-ref.h (access_matrix_get_index_for_parameter): Remove.
14869 (get_references_in_stmt): Likewise.
14870 (print_direction_vector): Likewise.
14871 (print_dir_vectors): Likewise.
14872 (print_dist_vectors): Likewise.
14873 (dump_subscript): Likewise.
14874 (dump_ddrs): Likewise.
14875 (dump_dist_dir_vectors): Likewise.
14876 (dump_data_references): Likewise.
14877 (dump_data_dependence_relation): Likewise.
14878 (dump_data_dependence_direction): Likewise.
14879 (dump_rdg_vertex): Likewise.
14880 (dump_rdg_component): Likewise.
14881 (debug_ddrs): Declare.
14882 (struct data_ref_loc_d): Move ...
14883 * tree-data-ref.c (struct data_ref_loc_d): ... here.
14884 (get_references_in_stmt): Make static.
14885 (dump_data_references): Likewise.
14886 (dump_subscript): Likewise.
14887 (print_direction_vector): Likewise.
14888 (print_dir_vectors): Likewise.
14889 (print_dist_vectors): Likewise.
14890 (dump_data_dependence_relation): Likewise.
14891 (dump_dist_dir_vectors): Likewise.
14892 (dump_ddrs): Likewise.
14893 (dump_rdg_vertex): Likewise.
14894 (dump_rdg_component): Likewise.
14895 (debug_ddrs): New function.
14896 (access_matrix_get_index_for_parameter): Remove.
14897
14898 2012-03-30 Tristan Gingold <gingold@adacore.com>
14899
14900 * config/vms/vms.c (VMS_CRTL_FLOAT32): Rename.
14901 (VMS_CRTL_FLOAT64, VMS_CRTL_FLOAT64_VAXD): New.
14902 (VMS_CRTL_FLOAT128, VMS_CRTL_DPML, VMS_CRTL_NODMPL)
14903 (VMS_CRTL_32ONLY, VMS_CRTL_G_MASK, VMS_CRTL_G_NONE)
14904 (VMS_CRTL_GA, VMS_CRTL_GL, VMS_CRTL_FLOATV2): New.
14905 (vms_patch_builtins): Handle new flags
14906 * config/vms/vms-crtlmap.map: Completed using nm on
14907 c and math system libraries.
14908 * config/vms/make-crtlmap.awk: Handle any number of flags.
14909
14910 2012-03-30 Martin Jambor <mjambor@suse.cz>
14911
14912 * tree-ssa-ccp.c (insert_clobbers_for_var): Do not assert that there
14913 is a builtin_stack_save in a dominating BB.
14914
14915 2012-03-29 Uros Bizjak <ubizjak@gmail.com>
14916
14917 * config/i386/sse.md (avx_h<plusminus_insn>v4df3): Fix results
14918 crossing 128bit lane boundary.
14919
14920 2012-03-29 Vladimir Makarov <vmakarov@redhat.com>
14921
14922 * ira-color.c (setup_left_conflict_sizes_p): Process all
14923 conflicting objects.
14924
14925 2012-03-29 Jakub Jelinek <jakub@redhat.com>
14926
14927 PR tree-optimization/52760
14928 * tree-vect-slp.c (vect_get_constant_vectors): Convert constant_p
14929 shift count for {L,R}{SHIFT,ROTATE}_EXPR to TREE_TYPE (vector_type).
14930
14931 2012-03-29 Richard Guenther <rguenther@suse.de>
14932
14933 * cgraph.h (cgraph_materialize_all_clones): Remove.
14934 (reset_inline_failed): Likewise.
14935 * cgraphunit.c (cgraph_materialize_all_clones): Make static.
14936 * cgraphbuild.c (reset_inline_failed): Remove.
14937 * rtl.h (cse_main): Remove.
14938 (extended_count): Likewise.
14939 * cse.c (dump_class): Mark as DEBUG_FUNCTION.
14940 (cse_main): Make static.
14941 * combine.c (extended_count): Remove.
14942 (dump_combine_stats): Mark as DEBUG_FUNCTION.
14943 * basic-block.h (reorder_basic_blocks): Remove.
14944 * bb-reorder.c (reorder_basic_blocks): Make static.
14945 * Makefile.in (dse.o): Remove dse.h dependency.
14946 * dse.h: Remove.
14947 * dse.c (gate_dse): Remove.
14948 (clear_alias_mode_eq): Likewise.
14949 (clear_alias_mode_hash): Likewise.
14950 (dse_record_singleton_alias_set): Likewise.
14951 (dse_invalidate_singleton_alias_set): Likewise.
14952
14953 2012-03-29 H.J. Lu <hongjiu.lu@intel.com>
14954
14955 * config/linux-android.h (ANDROID_STARTFILE_SPEC): Use
14956 crtbegin_so%O%s for -shared.
14957 (ANDROID_ENDFILE_SPEC): Use crtend_so%O%s for -shared.
14958
14959 2012-03-29 Richard Guenther <rguenther@suse.de>
14960
14961 * tree-flow.h (struct pre_expr_d): Remove forward declaration.
14962 (add_to_value): Remove.
14963 (print_value_expressions): Likewise.
14964 * tree-ssa-pre.c (add_to_value): Make static.
14965 (print_value_expressions): Likewise.
14966 * gimple.h (gimple_adjust_this_by_delta): Remove.
14967 * gimple-fold.c (gimple_adjust_this_by_delta): Likewise.
14968
14969 2012-03-29 Richard Guenther <rguenther@suse.de>
14970
14971 PR middle-end/50708
14972 * double-int.h (rshift_double): Remove.
14973 * double-int.c (lshift_double): Use absu_hwi to make count positive.
14974 (rshift_double): Make static, take unsigned count argument,
14975 remove handling of negative count argument.
14976 (double_int_rshift): Dispatch to lshift_double.
14977
14978 2012-03-28 H.J. Lu <hongjiu.lu@intel.com>
14979
14980 * config/i386/biarch64.h (TARGET_64BIT_DEFAULT): Add
14981 OPTION_MASK_ABI_64.
14982
14983 * config/i386/gnu-user64.h (SPEC_64): Support TARGET_BI_ARCH == 2.
14984 (SPEC_X32): Likewise.
14985 (MULTILIB_DEFAULTS): Likewise.
14986
14987 * config/i386/i386.c (isa_opts): Remove -m64.
14988 (ix86_target_string): Properly handle -m32/-m64/-mx32.
14989 (ix86_option_override_internal): Properly
14990 set OPTION_MASK_ISA_64BIT and OPTION_MASK_ISA_X32 as well as
14991 handle -m32, -m64 and -mx32.
14992
14993 * config/i386/i386.h (TARGET_X32): Replace OPTION_ISA_X32
14994 with OPTION_ABI_X32. Moved after TARGET_LP64.
14995 (TARGET_LP64): Changed to OPTION_ABI_64.
14996
14997 * config/i386/i386.opt (m64): Replace ISA_64BIT with ABI_64.
14998 (mx32): Replace ISA_X32 with ABI_X32.
14999
15000 2012-03-28 Eric Botcazou <ebotcazou@adacore.com>
15001
15002 * tree.c (tree_size) <VECTOR_CST>: New case.
15003
15004 2012-03-28 Uros Bizjak <ubizjak@gmail.com>
15005
15006 * config/i386/i386.c (ix86_modes_tieable_p): Handle 32bit AVX modes.
15007 (ix86_expand_vector_move_misalign): Remove un-needed gen_lowpart calls.
15008
15009 2012-03-28 Jakub Jelinek <jakub@redhat.com>
15010
15011 PR middle-end/52691
15012 * tree-ssa-ccp.c (optimize_stdarg_builtin): Optimize
15013 __builtin_va_start to __builtin_next_arg if the latter is
15014 builtin_decl_explicit_p rather than when it is not.
15015
15016 PR middle-end/52750
15017 * tree-vect-generic.c (vector_element): Perform multiplication
15018 for pos in bitsizetype type instead of idx type.
15019
15020 2012-03-28 Richard Guenther <rguenther@suse.de>
15021
15022 * loop-init.c (loop_optimizer_init): If loops are preserved
15023 perform incremental initialization of required loop features.
15024 (loop_optimizer_finalize): If loops are to be preserved only
15025 clean up optional loop features.
15026 (rtl_loop_done): Forcefully free loops here.
15027 * cgraph.c (cgraph_release_function_body): Forcefully free loops.
15028 * cfgexpand.c (expand_gimple_cond): Properly add new basic-blocks
15029 to existing loops.
15030 (construct_init_block): Likewise.
15031 (construct_exit_block): Likewise.
15032 (gimple_expand_cfg): Clear LOOP_CLOSED_SSA loop state. Cleanup
15033 the CFG after expanding.
15034 * cfgloop.c (verify_loop_structure): Calculate or verify dominators.
15035 If we needed to calculate them, free them afterwards.
15036 * tree-pass.h (PROP_loops): New define.
15037 * tree-ssa-loop.c (pass_tree_loop_init): Provide PROP_loops.
15038 * basic-block.h (CLEANUP_CFG_CHANGED): New.
15039 * cfgcleanup.c (merge_blocks_move): Protect loop latches.
15040 (cleanup_cfg): If we did something and have loops around, fix them up.
15041 * cse.c (rest_of_handle_cse_after_global_opts): Call cleanup_cfg
15042 with CLEANUP_CFG_CHANGED.
15043 * cfghooks.c (merge_blocks): If we merge a loop header into
15044 its predecessor, update the loop structure.
15045 (duplicate_block): If we copy a loop latch, adjust loop state
15046 to note we may have multiple latches.
15047 (delete_basic_block): Mark loops for fixup if we remove a loop.
15048 * cfganal.c (forwarder_block_p): Protect loop latches, headers
15049 and preheaders.
15050 * cfgrtl.c (rtl_can_merge_blocks): Protect loop latches.
15051 (cfg_layout_can_merge_blocks_p): Likewise.
15052 * cprop.c (bypass_block): If we create a loop with multiple
15053 entries, mark it for removal.
15054 * except.c (emit_to_new_bb_before): Add the new basic-block
15055 to existing loops.
15056 * tree-eh.c (lower_resx): Likewise.
15057 * omp-low.c (finalize_task_copyfn): Do not copy PROP_loops.
15058 (expand_omp_taskreg): Likewise.
15059 * tree-inline.c (initialize_cfun): Likewise.
15060 * tree-mudflap.c (add_bb_to_loop): Prototype.
15061 (mf_build_check_statement_for): Properly add new basic-blocks
15062 to existing loops.
15063 * tree-ssa-threadupdate.c (thread_block): Mark loops for fixup
15064 if we remove a loop.
15065 (thread_through_loop_header): Likewise.
15066 * trans-mem.c (tm_log_emit_save_or_restores): Properly add
15067 new basic-blocks to existing loops.
15068 (expand_transaction): Likewise.
15069 * Makefile.in (except.o): Add $(CFGLOOP_H).
15070 (expr.o): Likewise.
15071 (cgraph.o): Likewise.
15072 (cprop.o): Likewise.
15073 (cfgexpand.o): Likewise.
15074 (cfganal.o): Likewise.
15075 (trans-mem.o): Likewise.
15076 (tree-eh.o): Likewise.
15077
15078 2012-03-28 Georg-Johann Lay <avr@gjlay.de>
15079
15080 PR target/52692
15081 * config/avr/avr.c (TARGET_BUILTIN_DECL): New define.
15082 (avr_builtin_decl): New static function.
15083 (struct avr_builtin_description, avr_bdesc): Move up.
15084 Add GTY marker. Add field fndecl. Remove redundant field id.
15085 (avr_init_builtins): Initialize avr_bdesc[ID].fndecl.
15086 (avr_expand_builtin): Code cleanup because .id is removed.
15087
15088 2012-03-28 Georg-Johann Lay <avr@gjlay.de>
15089
15090 PR target/52737
15091 * config.gcc (tm_file): Remove avr/multilib.h.
15092
15093 * doc/invoke.texi (AVR Options): Adjust documentation of -mtiny-stack.
15094
15095 * config/avr/genmultilib.awk: Remove code to generate multilib.h.
15096 (BEGIN): Use -msp8 as multilib option instead of -mtiny-stack.
15097 * config/avr/t-avr: Remove generation of multilib.h.
15098 * config/avr/t-multilib: Regenerate.
15099 * config/avr/multilib.h: Remove.
15100 * config/avr/avr.opt (-msp8): New option.
15101 (avr_sp8): New variable.
15102 * config/avr/driver-avr.c (avr_device_to_sp8): New function.
15103 * config/avr/avr.h (AVR_HAVE_SPH): New define.
15104 (AVR_HAVE_8BIT_SP): Also set by avr_sp8 i.e. -msp8.
15105 (avr_device_to_sp8): New prototype.
15106 (EXTRA_SPEC_FUNCTIONS): Add { "device_to_sp8", avr_device_to_sp8 }
15107 (DRIVER_SELF_SPECS): New define.
15108 * config/avr/avr-c.c (avr_cpu_cpp_builtins): New built-in defines:
15109 __AVR_SP8__, __AVR_HAVE_SPH__.
15110 * config/avr/avr.c (output_movhi): Use AVR_HAVE_SPH instead of
15111 AVR_HAVE_8BIT_SP to decide if SP_H is present.
15112 (avr_file_start): Ditto.
15113
15114 2012-03-28 Jakub Jelinek <jakub@redhat.com>
15115
15116 PR target/52736
15117 * config/i386/sse.md (sse2_loadlpd splitter): Use offset 0
15118 instead of 8 in adjust_address.
15119
15120 2012-03-27 Aurelien Buhrig <aurelien.buhrig.gcc@gmail.com>
15121
15122 PR middle-end/51893
15123 * expmed.c (store_bit_field_1): Fix wordnum value for big-endian
15124 targets.
15125
15126 2012-03-27 Oleg Endo <olegendo@gcc.gnu.org>
15127
15128 PR target/50751
15129 * config/sh/sh.c (sh_legitimize_address, sh_legitimize_reload_address):
15130 Rearrange conditional logic. Move displacement address calculations
15131 to ...
15132 (sh_find_mov_disp_adjust): ... this new function.
15133
15134 2012-03-27 H.J. Lu <hongjiu.lu@intel.com>
15135
15136 * config/arm/arm.opt (mapcs): Remove MaskExists.
15137 * config/cris/linux.opt (mno-gotplt): Likewise.
15138 * config/i386/i386.opt (mhard-float): Likewise.
15139 (msse4): Likewise.
15140 (mno-sse4): Likewise.
15141 * config/m68k/m68k.opt (mhard-float): Likewise.
15142 * config/mep/mep.op (mcop32): Likewise.
15143 * config/pa/pa-hpux.opt (msio): Likewise.
15144 * config/pa/pa64-hpux.opt (mgnu-ld): Likewise.
15145 * config/picochip/picochip.opt (mlittle): Likewise.
15146 * config/sh/sh.opt (mrenesas): Likewise.
15147 * config/sparc/long-double-switch.opt (mlong-double-128): Likewise.
15148 * config/sparc/sparc.opt (mhard-float): Likewise.
15149 * config/v850/v850.opt (mv850es): Likewise.
15150 * config/vax/vax.opt (mg-float): Likewise.
15151
15152 2012-03-27 Martin Jambor <mjambor@suse.cz>
15153
15154 PR middle-end/52693
15155 * tree-sra.c (sra_modify_assign): Do not call
15156 load_assign_lhs_subreplacements when working with an unscalarizable
15157 region.
15158
15159 2012-03-27 Uros Bizjak <ubizjak@gmail.com>
15160
15161 PR target/52698
15162 * config/i386/i386-protos.h (ix86_legitimize_reload_address):
15163 New prototype.
15164 * config/i386/i386.h (LEGITIMIZE_RELOAD_ADDRESS): New define.
15165 * config/i386/i386.c: Include reload.h.
15166 (ix86_legitimize_reload_address): New function.
15167
15168 2012-03-27 H.J. Lu <hongjiu.lu@intel.com>
15169
15170 * opth-gen.awk: Allocated a bit for Mask and InverseMask if it
15171 hasn't been allocated. Define a target macro for Mask and
15172 InverseMask if it hasn't been defined. Remove MaskExists handling.
15173
15174 * doc/options.texi: Remove MaskExists.
15175
15176 2012-03-27 Chung-Lin Tang <cltang@codesourcery.com>
15177
15178 PR target/52667
15179 * config/sh/sh.c (find_barrier): Add equality check of last_got
15180 to avoid going above orig insn. Update comments.
15181
15182 2012-03-27 Richard Guenther <rguenther@suse.de>
15183
15184 PR middle-end/52720
15185 * fold-const.c (try_move_mult_to_index): Handle &x.array more
15186 explicitely.
15187
15188 2012-03-27 Eric Botcazou <ebotcazou@adacore.com>
15189
15190 * expmed.c (store_bit_field): Assert that BITREGION_START is a multiple
15191 of a unit before computing the offset in units.
15192 * expr.c (get_bit_range): Return the null range if the enclosing record
15193 is part of a larger bit field.
15194
15195 2012-03-27 Tristan Gingold <gingold@adacore.com>
15196
15197 * config/ia64/vms.h (CASE_VECTOR_MODE): Define.
15198 * config/ia64/ia64.md: Remove mode in template.
15199 Sign extend operand in expand_simple_binop.
15200 * config/ia64/ia64.h (ASM_OUTPUT_ADDR_DIFF_ELT): Use
15201 CASE_VECTOR_MODE instead of TARGET_ILP32.
15202 (ADDR_VEC_ALIGN): Make it depends on CASE_VECTOR_MODE.
15203
15204 2012-03-26 Steven Bosscher <steven@gcc.gnu.org>
15205
15206 * varasm.c (assemble_external): #if 0 out the new assert from the
15207 previous commit, it breaks the Java and Go front ends.
15208
15209 2012-03-26 Steven Bosscher <steven@gcc.gnu.org>
15210
15211 * toplev.c (check_global_declaration_1): Do not call assemble_external.
15212 * expr.c (emit_block_move_libcall_fn): Likewise.
15213 (clear_storage_libcall_fn): Likewise.
15214 (expand_expr_addr_expr_1): Likewise.
15215 (expand_expr_real_1): Likewise.
15216 * calls.c (rtx_for_function_call): Likewise.
15217
15218 * varasm.c (assemble_external): Assert this function is only called
15219 during or after expanding to RTL.
15220
15221 2012-03-26 Martin Jambor <mjambor@suse.cz>
15222
15223 PR tree-optimization/50052
15224 * tree-sra.c (tree_non_aligned_mem_p): Removed.
15225 (tree_non_aligned_mem_for_access_p): Likewise.
15226 (build_accesses_from_assign): Removed strict alignment requirements
15227 checks.
15228 (access_precludes_ipa_sra_p): Likewise.
15229
15230 2012-03-26 Richard Guenther <rguenther@suse.de>
15231
15232 PR tree-optimization/52701
15233 * tree-vect-loop.c (vect_analyze_scalar_cycles_1): Always
15234 compute and set the evolution part of PHI nodes.
15235
15236 2012-03-26 Richard Guenther <rguenther@suse.de>
15237
15238 PR tree-optimization/52721
15239 * tree-vect-stmts.c (vect_init_vector): Handle scalars.
15240
15241 2012-03-26 Ulrich Weigand <ulrich.weigand@linaro.org>
15242
15243 PR tree-optimization/52686
15244 * tree-vect-data-refs.c (vect_get_smallest_scalar_type): Handle
15245 WIDEN_LSHIFT_EXPR.
15246
15247 2012-03-26 Tristan Gingold <gingold@adacore.com>
15248
15249 * config/alpha/vms.h (LINK_SPEC): Simplify.
15250 (STARTFILE_SPEC): Remove -mvms-return-codes handling.
15251 (NAME__MAIN, SYMBOL__MAIN): Remove.
15252 (VMS_DEBUG_MAIN_POINTER): Remove.
15253 * config/ia64/vms.h: Likewise.
15254 * config/alpha/alpha.c (alpha_start_function): Move vms_debug_main
15255 code to vms.c. Call vms_start_function.
15256 * config/ia64/ia64.c (ia64_start_function): Likewise.
15257 * config/vms/vms-protos.h (vms_start_function): Declare.
15258 * config/vms/vms.c (vms_start_function): New function.
15259 * config/vms/vms.h (MATH_LIBRARY): Define.
15260 (VMS_DEBUG_MAIN_POINTER): Define.
15261
15262 2012-03-26 Eric Botcazou <ebotcazou@adacore.com>
15263
15264 PR rtl-optimization/52629
15265 * reload1.c (count_pseudo): Short-circuit common case.
15266 (count_spilled_pseudo): Return early for pseudos without hard regs.
15267 Assert that the pseudo has got a hard reg before manipulating it.
15268
15269 2012-03-24 Jan Hubicka <jh@suse.cz>
15270
15271 PR lto/51663
15272 * varpool.c (varpool_finalize_decl): Handle toplevel_reorder here.
15273 (decide_is_variable_needed): Do not handle toplevel reorder here.
15274 * cgraph.h (varpool_can_remove_if_no_refs): Likewise.
15275 * ipa.c (cgraph_remove_unreachable_nodes): Remove unreachable vars
15276 even at -O0.
15277
15278 2012-03-24 Eric Botcazou <ebotcazou@adacore.com>
15279
15280 * expr.c (optimize_bitfield_assignment_op) <BIT_IOR_EXPR>: Use str_mode
15281 and str_bitsize instead of more convoluted expressions.
15282
15283 2012-03-24 Eric Botcazou <ebotcazou@adacore.com>
15284
15285 PR target/52610
15286 * config/sparc/sparc.h (ASM_CPU_SPEC): Pass -Av8 if -mcpu=leon.
15287
15288 2012-03-24 Eric Botcazou <ebotcazou@adacore.com>
15289
15290 PR target/52656
15291 * config/sparc/sparc.c (sparc_handle_vis_mul8x16): Fix pasto.
15292
15293 2012-03-23 Martin Jambor <mjambor@suse.cz>
15294
15295 * tree-sra.c (build_accesses_from_assign): Remove FIXME comment.
15296
15297 2012-03-23 Richard Guenther <rguenther@suse.de>
15298
15299 PR tree-optimization/52678
15300 * tree-vectorizer.h (struct _stmt_vec_info): Add
15301 loop_phi_evolution_part member.
15302 (STMT_VINFO_LOOP_PHI_EVOLUTION_PART): New define.
15303 * tree-vect-loop.c (vect_analyze_scalar_cycles_1): Initialize
15304 STMT_VINFO_LOOP_PHI_EVOLUTION_PART.
15305 * tree-vect-loop-manip.c (vect_update_ivs_after_vectorizer):
15306 Use the cached evolution part and the PHI nodes value from
15307 the loop preheader edge instead of re-analyzing the evolution.
15308
15309 2012-03-22 Maxim Kuvyrkov <maxim@codesourcery.com>
15310
15311 * config/mips/mips-tables.opt: Update.
15312 * config/mips/mips.md (processor): Add xlp.
15313 * config/mips/mips-cpus.def: Add xlp.
15314 * config/mips/mips.c (mips_rtx_cost_data): Add costs for XLP, copy from
15315 5KF for now.
15316 * config/mips/mips.h (MIPS_ISA_LEVEL_SPEC): Handle xlp.
15317 * doc/invoke.texi: Mention XLP.
15318
15319 2012-03-22 Jakub Jelinek <jakub@redhat.com>
15320
15321 PR middle-end/52547
15322 * tree-nested.c (convert_tramp_reference_stmt): Call declare_vars
15323 on any new_local_var_chain vars declared during recursing on
15324 GIMPLE_OMP_PARALLEL or GIMPLE_OMP_TASK body.
15325
15326 2012-03-22 Uros Bizjak <ubizjak@gmail.com>
15327
15328 * config/alpha/alpha.h (ASM_OUTPUT_ALIGN): Move to config/alpha/elf.h
15329 (ASM_OUTPUT_SKIP): Move to config/alpha/vms.h
15330 (ASM_OUTPUT_LOCAL): Ditto.
15331 (ASM_OUTPUT_COMMON): Remove.
15332 * config/alpha/elf.h (ASM_OUTPUT_DEF_FROM_DECLS): Use ASM_OUTPUT_DEF.
15333 * config/alpha/vms.h (ASM_OUTPUT_ALIGN): Do not undefine before define.
15334
15335 2012-03-22 Jan Hubicka <jh@suse.cz>
15336
15337 PR middle-end/51737
15338 * cgraph.c (cgraph_remove_node_and_inline_clones): Add FORBIDDEN_NODE
15339 parameter.
15340 * cgraph.h (cgraph_remove_node_and_inline_clones): Update prototype.
15341 * ipa-inline-transform.c (save_inline_function_body): Remove
15342 copied clone if needed.
15343 * tree-inline.c (delete_unreachable_blocks_update_callgraph): Update.
15344
15345 2012-03-22 Richard Guenther <rguenther@suse.de>
15346
15347 PR middle-end/52666
15348 * fold-const.c (fold_ternary_loc): Fix typo.
15349
15350 2012-03-22 Georg-Johann Lay <avr@gjlay.de>
15351
15352 PR target/52496
15353 * config/avr/avr.md (unspec): Remove UNSPEC_MEMORY_BARRIER.
15354 (unspecv): Add UNSPECV_MEMORY_BARRIER.
15355 (cli_sei): Use unspec_volatile instead of unspec for memory barrier.
15356 (delay_cycles_1, delay_cycles_2): Ditto.
15357 (delay_cycles_3, delay_cycles_4): Ditto.
15358 (nopv, *nopv): Ditto.
15359 (sleep, *sleep): Ditto.
15360 (wdr, *wdr): Ditto.
15361
15362 2012-03-22 Richard Guenther <rguenther@suse.de>
15363
15364 PR tree-optimization/52548
15365 * tree-ssa-pre.c (valid_in_sets): Remove handling of invalidation
15366 because of clobbers.
15367 (prune_clobbered_mems): New function.
15368 (compute_antic_aux): Use it to prune ANTIC_OUT.
15369 (compute_partial_antic_aux): Use it to prune PA_IN.
15370 (compute_avail): Only insert expressions into EXP_GEN that are not
15371 invalidated when translated up to the beginning of the block.
15372
15373 2012-03-22 Richard Guenther <rguenther@suse.de>
15374
15375 PR tree-optimization/52638
15376 * tree-vect-stmts.c (vect_init_vector_1): New function, split
15377 out from ...
15378 (vect_init_vector): ... here. Handle scalar vector inits.
15379 (vect_get_vec_def_for_operand): Adjust.
15380 (vectorizable_load): Likewise.
15381
15382 2012-03-22 Uros Bizjak <ubizjak@gmail.com>
15383
15384 * config.gcc (alpha*-*-linux*): Add elfos.h to tm_file.
15385 (alpha*-*-freebsd*): Ditto.
15386 (alpha*-*-netbsd*): Ditto.
15387 (alpha*-*-openbsd*): Ditto.
15388 * config/alpha/elf.h (OBJECT_FORMAT_ELF): Remove.
15389 (DWARF2_DEBUGGING_INFO): Remove.
15390 (PREFERRED_DEBUGGING_TYPE): Remove.
15391 (ASM_FINAL_SPEC): Remove.
15392 (IDENT_ASM_OP): Remove.
15393 (ASM_OUTPUT_IDENT): Remove.
15394 (SKIP_ASM_OP): Remove.
15395 (ASM_OUTPUT_SKIP): Remove.
15396 (ALIGN_ASM_OP): Remove.
15397 (ASM_OUTPUT_BEFORE_CASE_LABEL): Remove.
15398 (ASM_OUTPUT_CASE_LABEL): Remove.
15399 (ASM_OUTPUT_EXTERNAL_LIBCALL): Remove.
15400 (COMMON_ASM_OP): Remove.
15401 (ASM_OUTPUT_ALIGNED_COMMON): Remove.
15402 (ASCII_DATA_ASM_OP): Remove.
15403 (READONLY_DATA_SECTION_ASM_OP): Remove.
15404 (INIT_SECTION_ASM_OP): Remove.
15405 (FINI_SECTION_ASM_OP): Remove.
15406 (ASM_SECTION_START_OP): Remove.
15407 (ASM_OUTPUT_SECTION_START_FILE): Remove.
15408 (TARGET_ASM_NAMED_SECTION): Remove.
15409 (TARGET_ASM_SELECT_SECTION): Remove.
15410 (MAKE_DECL_ONE_ONLY): Remove.
15411 (TYPE_ASM_OP): Remove.
15412 (SIZE_ASM_OP): Remove.
15413 (ASM_WEAKEN_LABEL): Remove.
15414 (TYPE_OPERAND_FMT): Remove.
15415 (ASM_DECLARE_RESULT): Remove.
15416 (ASM_DECLARE_OBJECT_NAME): Remove.
15417 (ASM_FINISH_DECLARE_OBJECT): Remove.
15418 (ELF_ASCII_ESCAPES): Remove.
15419 (ELF_STRING_LIMIT): Remove.
15420 (STRING_ASM_OP): Remove.
15421 (ASM_OUTPUT_EXTERNAL): Remove.
15422 (TARGET_ASM_FILE_START_FILE_DIRECTIVE): Redefine to false.
15423 * config/alpha/alpha.h (PCC_BITFIELD_TYPE_MATTERS): Undefine
15424 before define.
15425 (ASM_DECLARE_FUNCTION_NAME): Ditto.
15426 (ASM_DECLARE_FUNCTION_SIZE): Ditto.
15427 (ASM_GENERATE_INTERNAL_LABEL): Ditto.
15428 (ASM_OUTPUT_SKIP): Ditto.
15429 (READONLY_DATA_SECTION_ASM_OP): Remove.
15430 (USER_LABEL_PREFIX): Remove.
15431 (ASM_OUTPUT_ASCII): Remove.
15432 (ASM_OUTPUT_CASE_LABEL): Remove.
15433 (NO_DOLLAR_IN_LABEL): Undefine.
15434
15435 2012-03-22 Richard Guenther <rguenther@suse.de>
15436
15437 PR tree-optimization/52459
15438 * tree-ssa-pre.c (inhibit_phi_insertion): Do not inhibit
15439 PHI insertion for calls.
15440
15441 2012-03-21 Steven Bosscher <steven@gcc.gnu.org>
15442
15443 * cse.c (invalidate_from_sets_and_clobbers, try_back_substitute_reg,
15444 find_sets_in_insn, canonicalize_insn): Split out from ...
15445 (cse_insn): ... here.
15446 (invalidate_from_clobbers): Take an insn instead of the pattern.
15447
15448 2012-03-21 Oleg Endo <olegendo@gcc.gnu.org>
15449
15450 PR target/52479
15451 * config/sh/sh-protos.h (sh_fsca_df2int): Remove.
15452 * config/sh/sh.c (sh_fsca_df2int_rtx, sh_fsca_df2int): Remove.
15453 * config/sh/sh.md (sindf2, cosdf2): Remove.
15454
15455 2012-03-21 Kaz Kojima <kkojima@gcc.gnu.org>
15456
15457 PR target/52642
15458 * config/sh/sh.c (sh_expand_prologue): Emit blockage at the end of
15459 prologue for unwinder and profiler.
15460
15461 2012-03-21 Andreas Tobler <andreast@fgznet.ch>
15462
15463 * configure.ac (HAVE_LD_NO_DOT_SYMBOLS): Add powerpc64-*-freebsd*.
15464 Introduce emul_name to select the right linker emulation for
15465 powerpc64-*-freebsd*.
15466 * configure: Regenerate.
15467 * config.gcc: Add bits to support powerpc64-*-freebsd*.
15468 * config/rs6000/freebsd.h (POWERPC_FREEBSD): Define.
15469 * config/rs6000/freebsd64.h: New file.
15470 * config/rs6000/rs6000.c (rs6000_option_override_internal): Use
15471 POWERPC_FREEBSD.
15472 (rs6000_savres_strategy): Likewise.
15473 (rs6000_savres_routine_name): Likewise.
15474 (rs6000_elf_file_end): Likewise.
15475 * config/rs6000/t-freebsd64: New file.
15476 * config/rs6000/sysv4.h (SUBTARGET_OVERRIDE_OPTIONS): Set the
15477 rs6000_current_abi for 64-bit FreeBSD to ABI_AIX.
15478
15479 * config/rs6000/freebsd64.h: Remove duplicated entries from last
15480 commit.
15481 * config/rs6000/t-freebsd64: Likewise.
15482
15483 2012-03-21 Georg-Johann Lay <avr@gjlay.de>
15484
15485 PR rtl-optimization/52543
15486 PR target/52461
15487 * config/avr/avr-protos.h (avr_load_lpm): New prototype.
15488 * config/avr/avr.c (avr_mode_dependent_address_p): New function.
15489 (TARGET_MODE_DEPENDENT_ADDRESS_P): New define.
15490 (avr_load_libgcc_p): Restrict to __flash loads.
15491 (avr_out_lpm): Only handle 1-byte loads from __flash.
15492 (avr_load_lpm): New function.
15493 (avr_find_unused_d_reg): Remove.
15494 (avr_out_lpm_no_lpmx): Remove.
15495 (adjust_insn_length): Handle ADJUST_LEN_LOAD_LPM.
15496 * config/avr/avr.md (unspec): Add UNSPEC_LPM.
15497 (load_<mode>_libgcc): Use UNSPEC_LPM instead of MEM.
15498 (load_<mode>, load_<mode>_clobber): New insns.
15499 (mov<mode>): For multi-byte move from non-generic
15500 16-bit address spaces: Expand to load_<mode> resp.
15501 load_<mode>_clobber.
15502 (load<mode>_libgcc): Remove expander.
15503 (split-lpmx): Remove split.
15504
15505 2012-03-21 Richard Earnshaw <rearnsha@arm.com>
15506
15507 * neon.md (neon_vget_lanev2di): Use gen_lowpart and gen_highpart.
15508 * config/arm/neon.ml (Fixed_return_reg): Renamed to fixed_vector_reg.
15509 All callers changed.
15510 (Fixed_core_reg): New feature.
15511 (Vget_lane [sizes S64 and U64]): Add Fixed_core_reg. Allow fmrrd in
15512 disassembly.
15513 * neon-testgen.ml: Handle Fixed_core_reg.
15514
15515 2012-03-21 Andrew Stubbs <ams@codesourcery.com>
15516
15517 * config/arm/arm.c (thumb2_reorg): Add complete support
15518 for 16-bit instructions.
15519 * config/arm/thumb2.md: Delete obsolete flag-clobbering peepholes.
15520
15521 2012-03-21 Richard Guenther <rguenther@suse.de>
15522
15523 PR tree-optimizer/52636
15524 * tree-vect-slp.c (vect_get_constant_vectors): Convert constants
15525 to the appropriate type.
15526
15527 2012-03-21 Richard Guenther <rguenther@suse.de>
15528
15529 * Makefile.in (cfgexpand.o): Add $(REGS_H) and $(INTEGRATE_H)
15530 dependencies.
15531 * cfgexpand.c (gimple_expand_cfg): Fold in pass_init_function,
15532 pass_jump, pass_initial_value_sets and pass_unshare_all_rtl.
15533 * passes.c (init_optimization_passes): Remove pass_init_function,
15534 pass_jump, pass_initial_value_sets and pass_unshare_all_rtl.
15535 * tree-pass.h (pass_init_function): Remove.
15536 (pass_jump): Remove.
15537 (pass_initial_value_sets): Remove.
15538 (pass_unshare_all_rtl): Remove.
15539 * integrate.c (pass_initial_value_sets): Remove.
15540 * emit-rtl.c (pass_unshare_all_rtl): Remove.
15541 * tree.h (init_function_for_compilation): Remove.
15542 * function.c (init_function_for_compilation): Remove.
15543 (pass_init_function): Remove.
15544 * cfgcleanup.c (rest_of_handle_jump): Remove.
15545 (pass_jump): Remove.
15546
15547 2012-03-20 Jason Merrill <jason@redhat.com>
15548
15549 * tree-streamer-in.c (streamer_alloc_tree): Call
15550 ggc_alloc_zone_cleared_tree_node instead of
15551 ggc_alloc_zone_cleared_tree_node_stat.
15552
15553 2012-03-20 Jonathan Wakely <jwakely.gcc@gmail.com>
15554
15555 * doc/extend.texi (Template Instantiation): Remove anachronisms.
15556
15557 2012-03-20 Jakub Jelinek <jakub@redhat.com>
15558
15559 PR target/52607
15560 * config/i386/i386.c (expand_vec_perm_vperm2f128): New function.
15561 (ix86_expand_vec_perm_const_1): Call it.
15562
15563 * config/i386/i386.c (vselect_insn): New variable.
15564 (init_vselect_insn): New function.
15565 (expand_vselect, expand_vselect_insn): Add testing_p argument.
15566 Call init_vselect_insn if vselect_insn is NULL. Adjust
15567 PATTERN (vselect_insn), instead of creating a new insn each time,
15568 only emit a copy of it if not testing and recog has been successful.
15569 (expand_vec_perm_pshufb, expand_vec_perm_1,
15570 expand_vec_perm_pshuflw_pshufhw, expand_vec_perm_broadcast_1): Adjust
15571 callers.
15572
15573 PR target/52607
15574 * config/i386/i386.md ("isa" attribute): Add avx2 and noavx2.
15575 ("enabled" attribute): Handle avx2 and noavx2 isas.
15576 * config/i386/sse.md (avx2_vec_dupv8sf_1, avx2_pbroadcast<mode>_1):
15577 New insns.
15578 (vec_dup<mode>): Add avx2 =x,x alternative.
15579 (vec_dup<mode> splitter): Don't split if TARGET_AVX2.
15580 (*avx_vperm_broadcast_<mode>): Don't split V4DFmode if TARGET_AVX2.
15581 For TARGET_AVX2, V8SFmode and elt == 0 split into vbroadcastss.
15582 * config/i386/i386.c (expand_vec_perm_pshufb): Emit also vpermps
15583 for V8SFmode.
15584 (expand_vec_perm_1): For broadcasts, use avx2_pbroadcast<mode>_1
15585 if possible, handle also V8SFmode.
15586
15587 2012-03-20 Richard Earnshaw <rearnsha@arm.com>
15588
15589 * arm/predicates.md (zero_operand, reg_or_zero_operand): New predicates.
15590 * arm/neon.md (neon_vceq<mode>, neon_vcge<mode>): Use
15591 reg_or_zero_operand predicate.
15592 (neon_vcle<mode>, neon_vclt<mode>): Use zero_operand predicate.
15593
15594 2012-03-20 Jakub Jelinek <jakub@redhat.com>
15595
15596 * config/i386/i386.c (ix86_decompose_address) <case ZERO_EXTEND>:
15597 If operand isn't UNSPEC, return 0.
15598
15599 2012-03-20 Richard Guenther <rguenther@suse.de>
15600
15601 * tree-pass.h (pass_rtl_eh): Remove.
15602 * except.c (gate_handle_eh): Likewise.
15603 (rest_of_handle_eh): Likewise.
15604 (pass_rtl_eh): Likewise.
15605 (finish_eh_generation): Export.
15606 * except.h (finish_eh_generation): Declare.
15607 * passes.c (init_optimization_passes): Remove pass_rtl_eh.
15608 * cfgexpand.c (gimple_expand_cfg): Call finish_eh_generation
15609 after expanding stack alignment. Instead of compacting blocks
15610 call cleanup_cfg.
15611
15612 2012-03-20 Richard Guenther <rguenther@suse.de>
15613
15614 * stor-layout.c (finish_bitfield_representative): Fallback
15615 to conservative maximum size if the padding up to the next
15616 field cannot be computed as a constant.
15617 (finish_bitfield_layout): If we cannot compute the distance
15618 between the start of the bitfield representative and the
15619 bitfield member start a new representative.
15620 * expr.c (get_bit_range): The distance between the start of
15621 the bitfield representative and the bitfield member is zero
15622 if the field offsets are not constants.
15623
15624 2012-03-20 Tristan Gingold <gingold@adacore.com>
15625
15626 * tree.h (enum size_type_kind): Add stk_ prefix to constants,
15627 convert in lowercase.
15628 (sizetype_tab, sizetype, bitsizetype, ssizetype, sbitsizetype)
15629 (size_int, ssize_int, bitsize_int, sbitsize_int): Adjust.
15630 * stor-layout.c (sizetype_tab): Adjust.
15631 (initialize_sizetypes): Use SIZETYPE instead of SIZE_TYPE.
15632 * tree-streamer.c (preload_common_nodes): Use stk_type_kind_last
15633 instead of type_kind_last.
15634 * tree-scalar-evolution.c (interpret_rhs_expr): Use size_int
15635 instead of size_int_kind.
15636 * doc/tm.texi.in (Type Layout): Document SIZETYPE.
15637 * doc/tm.texi: Regenerate.
15638 * defaults.h (SIZETYPE): Provide a default value.
15639 * config/vms/vms.h (SIZE_TYPE): Define as "unsigned int".
15640 (SIZETYPE): Define.
15641
15642 2012-03-20 Oleg Endo <olegendo@gcc.gnu.org>
15643
15644 * config/sh/sh.md: Use braced string notation where applicable.
15645
15646 2012-03-19 Uros Bizjak <ubizjak@gmail.com>
15647
15648 * config/i386/i386.md (allocate_stack): Simplify.
15649
15650 2012-03-19 Uros Bizjak <ubizjak@gmail.com>
15651
15652 * builtins.c (expand_builtin_cexpi): Use copy_addr_to_reg instead of
15653 copy_to_mode_reg (Pmode, ...).
15654 (expand_builtin_frame_address): Ditto.
15655 * expr.c (emit_block_move_via_libcall): Ditto.
15656 (set_storage_via_libcall): Ditto.
15657
15658 * config/i386/i386.c (ix86_expand_movmem): Ditto.
15659 (ix86_expand_setmem): Ditto.
15660 (ix86_trampoline_init): DItto.
15661 * config/i386/i386.md (cmpstrnsi): Ditto.
15662
15663 2012-03-19 Sandra Loosemore <sandra@codesourcery.com>
15664
15665 * config/sh/sh.opt (madjust-unroll): Mark as ignored/obsolete.
15666 * config/sh/sh.h (TARGET_OPT_DEFAULT): Don't use MASK_ADJUST_UNROLL.
15667 * doc/invoke.texi (Option Summary): Remove -madjust-unroll.
15668 (SH Options): Likewise.
15669
15670 2012-03-19 Uros Bizjak <ubizjak@gmail.com>
15671
15672 * config/i386/i386.c (get_thread_pointer): Add tp_mode argument.
15673 Generate ZERO_EXTEND in place if GET_MODE (tp) != tp_mode.
15674 (legitimize_tls_address) <TLS_MODEL_INITIAL_EXEC>: Always generate
15675 DImode UNSPEC_GOTNTPOFF references on TARGET_64BIT.
15676 (ix86_decompose_address): Allow zero extended UNSPEC_TP references.
15677
15678 Revert:
15679 2012-03-13 Uros Bizjak <ubizjak@gmail.com>
15680
15681 * config/i386/i386.h (TARGET_TLS_INDIRECT_SEG_REFS): New.
15682 * config/i386/i386.c (ix86_decompose_address): Use
15683 TARGET_TLS_INDIRECT_SEG_REFS to prevent %fs:(%reg) addresses.
15684 (legitimize_tls_address): Use TARGET_TLS_INDIRECT_SEG_REFS to load
15685 thread pointer to a register.
15686
15687 Revert:
15688 2012-03-10 H.J. Lu <hongjiu.lu@intel.com>
15689
15690 * config/i386/i386.c (ix86_decompose_address): Disallow fs:(reg)
15691 if Pmode != word_mode.
15692 (legitimize_tls_address): Call gen_tls_initial_exec_x32 if
15693 Pmode == SImode for TARGET_X32.
15694
15695 * config/i386/i386.md (UNSPEC_TLS_IE_X32): New.
15696 (tls_initial_exec_x32): Likewise.
15697
15698 2012-03-19 Oleg Endo <olegendo@gcc.gnu.org>
15699
15700 PR target/50751
15701 * config/sh/sh.h (CONST_OK_FOR_K04, CONST_OK_FOR_K12, DISP_ADDR_P,
15702 DISP_ADDR_OFFSET): New macros.
15703 * config/sh/sh.c (sh_address_cost): Add SH2A special case.
15704 (sh_legitimate_index_p): Allow QImode displacements for non-SH2A.
15705 (sh_legitimize_address): Add QImode displacement handling.
15706 (sh_cannot_change_mode_class): Disallow GENERAL_REGS for SFmode
15707 vector subregs.
15708 (sh_secondary_reload): Add QImode displacement handling.
15709 * config/sh/predicates.md (movsrc_no_disp_mem_operand): New predicate.
15710 * config/sh/constraints.md (K04, Snd, Sdd): New constraints.
15711 * config/sh/sh.md (extendqisi2): Remove constraints from expander.
15712 (*extendqisi2_compact): Rename to *extendqisi2_compact_reg, restrict
15713 to register operands only.
15714 (*extendqisi2_compact_mem_disp, *extendqisi2_compact_snd): New insns.
15715 (extendqihi2): Change insn to expander.
15716 (*extendqihi2_compact_reg): New insn.
15717 (movqi_i, movqi): Replace with ...
15718 (movqi, *movqi_reg_reg, *movqi_store_mem_disp12,
15719 *movqi_load_mem_disp, *movqi_load_mem_disp): ... these.
15720 Add new peepholes for QImode displacement addressing.
15721
15722 2012-03-19 Paolo Carlini <paolo.carlini@oracle.com>
15723
15724 PR c++/14710
15725 * doc/invoke.texi: Document -Wuseless-cast.
15726
15727 2012-03-19 Eric Botcazou <ebotcazou@adacore.com>
15728
15729 * tree.def (REALPART_EXPR, IMAGPART_EXPR, VIEW_CONVERT_EXPR): Move.
15730 * tree.h (handled_component_p): Reorder cases.
15731 * dwarf2out.c (loc_list_for_address_of_addr_expr_of_indirect_ref): Do
15732 not initialize unsignedp.
15733 (loc_list_from_tree): Likewise.
15734 (fortran_common): Likewise.
15735 * simplify-rtx.c (delegitimize_mem_from_attrs): Likewise.
15736
15737 2012-03-19 Uros Bizjak <ubizjak@gmail.com>
15738
15739 * config/i386/i386.c (ix86_expand_prologue) <CM_LARGE_PIC>: Use Pmode
15740 mode consistently. Use ix86_gen_add3. Assert that Pmode == DImode.
15741 (ix86_expand_split_stack_prologue): Use ix86_gen_add3.
15742 (ix86_split_long_move): Ditto.
15743 (legitimize_tls_address): Use ix86_gen_sub3.
15744 (construct_plt_address): Assert that Pmode == DImode.
15745
15746 2012-03-18 Uros Bizjak <ubizjak@gmail.com>
15747
15748 * config/i386/i386.md: Remove empty predicates and/or constraints.
15749 * config/i386/sync.md: Ditto.
15750 * config/i386/sse.md: Ditto.
15751 * config/i386/mmx.md: Ditto.
15752 * config/i386/pentium.md: Ditto.
15753 * config/i386/athlon.md: Ditto.
15754
15755 2012-03-16 Richard Guenther <rguenther@suse.de>
15756
15757 PR tree-optimization/52603
15758 * tree-vect-data-refs.c (vect_can_force_dr_alignment_p): Clarify
15759 comment.
15760
15761 Revert
15762 2012-03-14 Richard Guenther <rguenther@suse.de>
15763
15764 PR tree-optimization/52571
15765 * tree-vect-data-refs.c (vect_compute_data_ref_alignment): Move
15766 flag_section_anchors check ...
15767 (vect_can_force_dr_alignment_p): ... here.
15768
15769 2012-03-16 Martin Jambor <mjambor@suse.cz>
15770
15771 * expr.c (expand_expr_real_1): Handle misaligned scalar reads from
15772 memory through MEM_REFs by calling extract_bit_field.
15773
15774 2012-03-16 Richard Guenther <rguenther@suse.de>
15775
15776 * fold-const.c (native_interpret_expr): Also support POINTER_TYPE
15777 and REFERENCE_TYPE interpretations.
15778 (can_native_interpret_type_p): New function.
15779 (fold_ternary_loc): Use native encode/interpret to fold
15780 BIT_FIELD_REFs of constants.
15781
15782 2012-03-16 Richard Guenther <rguenther@suse.de>
15783
15784 PR middle-end/52584
15785 * fold-const.c (fold_ternary_loc): Fold vector typed BIT_FIELD_REFs
15786 of vector constants and constructors.
15787
15788 2012-03-16 Richard Guenther <rguenther@suse.de>
15789
15790 * tree-vect-stmts.c (vect_get_vec_def_for_operand): Use
15791 VIEW_CONVERT_EXPR to convert constants.
15792 (vect_is_simple_use): Treat all constants as vec_constant_def.
15793
15794 2012-03-16 Richard Guenther <rguenther@suse.de>
15795 Kai Tietz <ktietz@redhat.com>
15796
15797 PR middle-end/48814
15798 * gimplify.c (gimplify_self_mod_expr): Evaluate postfix
15799 side-effects completely in the pre-queue and use a temporary
15800 for the result.
15801
15802 2012-03-16 Richard Guenther <rguenther@suse.de>
15803
15804 * stor-layout.c (finish_bitfield_representative): Fall back
15805 to the conservative maximum size if we cannot compute the
15806 size of the tail padding.
15807
15808 2012-03-16 Tristan Gingold <gingold@adacore.com>
15809
15810 * config/vms/vms.h (TARGET_OS_CPP_BUILTINS): Define
15811 __CRTL_VER and __VMS_VER.
15812 * config/vms/vms-protos.h: Declare vms_c_get_crtl_ver
15813 and vms_c_get_vms_ver.
15814 * config/vms/vms-c.c (vms_c_get_crtl_ver, vms_c_get_vms_ver): New
15815 functions.
15816 * config/alpha/vms.h (VMS_DEFAULT_CRTL_VER)
15817 (VMS_DEFAULT_VMS_VER): Define.
15818 * config/ia64/vms.h (VMS_DEFAULT_CRTL_VER)
15819 (VMS_DEFAULT_VMS_VER): Define.
15820
15821 2012-03-16 Richard Guenther <rguenther@suse.de>
15822
15823 * tree-vect-loop.c (get_initial_def_for_induction): Use
15824 build_constructor directly.
15825 * tree-vect-stmts.c (vect_get_vec_def_for_operand): Use
15826 build_vector_from_val.
15827 * tree.c (build_vector_from_val): Avoid creating a constructor
15828 first when we want a constant vector.
15829
15830 2012-03-16 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
15831
15832 * doc/install.texi (Specific, *-*-solaris2*): Improve wording.
15833
15834 2012-03-16 Richard Guenther <rguenther@suse.de>
15835
15836 * tree.h (TREE_VECTOR_CST_ELTS): Remove.
15837 (VECTOR_CST_NELTS, VECTOR_CST_ELTS, VECTOR_CST_ELT): New defines.
15838 (struct tree_vector): Remove elements member, add variable size
15839 elts array member.
15840 (build_vector_stat): Declare.
15841 (build_vector): Define in terms of build_vector_stat.
15842 * tree.c (build_vector): Rename to ...
15843 (build_vector_stat): ... this. Take array of trees as parameter.
15844 (build_vector_from_ctor): Adjust.
15845 (integer_zerop, integer_onep, integer_all_onesp, iterative_hash_expr,
15846 initializer_zerop): Adjust.
15847 * cfgexpand.c (expand_debug_expr): Likewise.
15848 * expr.c (categorize_ctor_elements_1, expand_expr_real_1,
15849 const_vector_from_tree): Likewise.
15850 * fold-const.c (const_binop, operand_equal_p, native_encode_vector,
15851 native_interpret_vector, fold_unary_loc, vec_cst_ctor_to_array,
15852 fold_vec_perm, fold_binary_loc, fold_ternary_loc): Likewise.
15853 * tree-streamer-in.c (streamer_alloc_tree): Handle TS_VECTOR.
15854 (lto_input_ts_vector_tree_pointers): Adjust.
15855 * tree-streamer-out.c (streamer_write_tree_header): Handle TS_VECTOR.
15856 (write_ts_vector_tree_pointers): Adjust.
15857 * varasm.c (const_hash_1, compare_constant, copy_constant,
15858 output_constant): Adjust.
15859 * gimple-fold.c (gimple_fold_stmt_to_constant_1): Adjust.
15860 * print-tree.c (print_node): Adjust.
15861 * tree-pretty-print.c (dump_generic_node): Adjust.
15862 * tree-vect-generic.c (uniform_vector_p, vector_element,
15863 lower_vec_perm): Adjust.
15864 * tree-vect-loop.c (get_initial_def_for_reduction): Adjust.
15865 * tree-vect-slp.c (vect_get_constant_vectors,
15866 vect_transform_slp_perm_load): Adjust.
15867 * tree-vect-stmts.c (vect_gen_perm_mask): Adjust.
15868 * expmed.c (make_tree): Adjust.
15869 * config/i386/i386.c (ix86_expand_builtin): Adjust.
15870 * config/sparc/sparc.c (sparc_handle_vis_mul8x16): Adjust interface
15871 and implementation.
15872 (sparc_fold_builtin): Adjust.
15873
15874 2012-03-16 Tristan Gingold <gingold@adacore.com>
15875
15876 * config.gcc (*-*-*vms*): Define use_gcc_stdint and tm_file.
15877 * config/vms/vms-stdint.h: New file.
15878
15879 2012-03-16 Tristan Gingold <gingold@adacore.com>
15880
15881 * config.host (alpha64-dec-*vms*, alpha*-dec-*vms*)
15882 (ia64-hp-*vms*): Replaced by ...
15883 (*-*-*vms*): ... This new entry.
15884
15885 2012-03-15 Jakub Jelinek <jakub@redhat.com>
15886
15887 PR target/52568
15888 * config/i386/i386.c (expand_vec_perm_vperm2f128_vblend): New function.
15889 (ix86_expand_vec_perm_const_1): Use it.
15890
15891 PR target/52568
15892 * config/i386/sse.md (UNSPEC_VPERMDF): Remove.
15893 (avx2_permv4df): Remove.
15894 (avx2_permv4di): Macroize into...
15895 (avx2_perm<mode>): ... this using VI8F_256 iterator.
15896 (avx2_permv4di_1): Macroize into...
15897 (avx2_perm<mode>_1): ... this using VI8F_256 iterator.
15898
15899 2012-03-15 Ulrich Weigand <ulrich.weigand@linaro.org>
15900
15901 * combine.c (apply_distributive_law): Do not distribute SUBREG.
15902
15903 2012-03-15 Ira Rosen <irar@il.ibm.com>
15904 Ulrich Weigand <ulrich.weigand@linaro.org>
15905
15906 * tree-vect-patterns.c (widened_name_p): Rename to ...
15907 (type_conversion_p): ... this. Add new argument to determine
15908 if it's a promotion or demotion operation. Check for
15909 CONVERT_EXPR_CODE_P instead of NOP_EXPR.
15910 (vect_recog_dot_prod_pattern): Call type_conversion_p instead
15911 widened_name_p.
15912 (vect_recog_widen_mult_pattern, vect_recog_widen_sum_pattern,
15913 vect_operation_fits_smaller_type, vect_recog_widen_shift_pattern):
15914 Likewise.
15915 (vect_recog_mixed_size_cond_pattern): Likewise and allow
15916 non-constant then and else clauses.
15917
15918 2012-03-15 Ira Rosen <irar@il.ibm.com>
15919 Ulrich Weigand <ulrich.weigand@linaro.org>
15920
15921 * tree-vectorizer.h (vect_pattern_recog): Add new argument.
15922 * tree-vect-loop.c (vect_analyze_loop_2): Update call to
15923 vect_pattern_recog.
15924 * tree-vect-patterns.c (widened_name_p): Pass basic block
15925 info to vect_is_simple_use.
15926 (vect_recog_dot_prod_pattern): Fail for basic blocks.
15927 (vect_recog_widen_sum_pattern): Likewise.
15928 (vect_handle_widen_op_by_const): Support basic blocks.
15929 (vect_operation_fits_smaller_type,
15930 vect_recog_over_widening_pattern): Likewise.
15931 (vect_recog_vector_vector_shift_pattern): Support basic blocks.
15932 Update call to vect_is_simple_use.
15933 (vect_recog_mixed_size_cond_pattern): Support basic blocks.
15934 Add printing.
15935 (check_bool_pattern): Add an argument, update call to
15936 vect_is_simple_use and the recursive calls.
15937 (vect_recog_bool_pattern): Update relevant function calls.
15938 Add printing.
15939 (vect_mark_pattern_stmts): Update calls to new_stmt_vec_info.
15940 (vect_pattern_recog_1): Check for reduction only in loops.
15941 (vect_pattern_recog): Add new argument. Support basic blocks.
15942 * tree-vect-stmts.c (vectorizable_conversion): Pass basic block
15943 info to vect_is_simple_use_1.
15944 * tree-vect-slp.c (vect_get_and_check_slp_defs): Support basic blocks.
15945 (vect_slp_analyze_bb_1): Call vect_pattern_recog.
15946
15947 2012-03-15 Jakub Jelinek <jakub@redhat.com>
15948 Andrew Pinski <apinski@cavium.com>
15949
15950 PR middle-end/52592
15951 * builtins.c (expand_builtin_int_roundingfn_2): If expanding
15952 BUILT_IN_IR{INT,OUND}* using optab fails, emit lr{int,ound}*
15953 calls instead of __builtin_ir{int,ound}*.
15954
15955 2012-03-15 Bernhard Reutner-Fischer <aldot@gcc.gnu.org>
15956
15957 * doc/sourcebuild.texi (cleanup-modules, keep-modules): Update
15958 documentation.
15959
15960 2012-03-15 Ramana Radhakrishnan <ramana.radhakrishnan@linaro.org>
15961
15962 * config.gcc (target_type_format_char): New. Document it. Set it for
15963 arm*-*-* .
15964 * configure.ac (gnu_unique_option): Use target_type_format_char
15965 in test. Comment rationale.
15966 * configure: Regenerate .
15967
15968 2012-03-15 Jakub Jelinek <jakub@redhat.com>
15969
15970 PR tree-optimization/52267
15971 * tree-vrp.c (masked_increment): New function.
15972 (register_edge_assert_for_2): Derive ASSERT_EXPRs
15973 from (X & CST1) cmp CST2 tests.
15974
15975 2012-03-15 Richard Guenther <rguenther@suse.de>
15976
15977 PR middle-end/52580
15978 * tree-data-ref.c (subscript_dependence_tester_1): Check
15979 all dimensions for non-conflicting access functions.
15980
15981 2012-03-15 Manuel López-Ibáñez <manu@gcc.gnu.org>
15982
15983 PR c++/44783
15984 * doc/invoke.texi [C++ Language Options]: Document
15985 -ftemplate-backtrace-limit.
15986
15987 2012-03-15 Tristan Gingold <gingold@adacore.com>
15988
15989 * c-parser.c (c_parser_parameter_declaration): Handle #pragma
15990 before a parameter.
15991
15992 2012-03-15 Tristan Gingold <gingold@adacore.com>
15993
15994 * dwarf2out.c (gen_subprogram_die): Require dwarf unwinding to
15995 use DW_OP_call_frame_cfa.
15996
15997 2012-03-14 H.J. Lu <hongjiu.lu@intel.com>
15998
15999 PR target/50797
16000 * config/i386/i386-opts.h (pmode): New.
16001
16002 * config/i386/i386.c (ix86_option_override_internal): Properly
16003 check and set ix86_pmode.
16004
16005 * config/i386/i386.h (Pmode): Check ix86_pmode instead of TARGET_64BIT.
16006
16007 * config/i386/i386.opt (maddress-mode=): New.
16008
16009 * doc/invoke.texi: Document -maddress-mode=short|long for x86.
16010
16011 2012-03-14 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
16012
16013 * dwarf2cfi.c (def_cfa_0): Remove MIPS_DEBUGGING_INFO handling.
16014 (dwarf2out_do_cfi_asm): Likewise.
16015 * dwarf2out.c (output_call_frame_info): Remove MIPS_DEBUGGING_INFO
16016 handling.
16017 (add_data_member_location_attribute): Likewise.
16018 (gen_array_type_die): Likewise.
16019 (gen_subprogram_die): Likewise.
16020 (gen_producer_string): Likewise.
16021 * sdbout.c (sdbout_begin_prologue): Declare unconditionally.
16022 Remove MIPS_DEBUGGING_INFO handling.
16023 (sdb_debug_hooks): Likewise.
16024 (sdbout_begin_block): Likewise.
16025 (sdbout_end_block): Likewise.
16026 (sdbout_begin_prologue): Likewise.
16027 (sdbout_start_source_file): Likewise.
16028 (sdbout_end_source_file): Likewise.
16029 (sdbout_init): Likewise.
16030 * system.h (MIPS_DEBUGGING_INFO): Poison.
16031
16032 2012-03-14 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
16033
16034 * config/alpha/alpha.c [HAVE_STAMP_H]: Remove.
16035 (alpha_file_start) [MS_STAMP]: Remove.
16036
16037 * config/alpha/elf.h (TARGET_GAS): Remove.
16038 * config/alpha/freebsd.h (TARGET_DEFAULT): Remove.
16039 * config/alpha/linux.h (TARGET_DEFAULT): Remove.
16040 * config/alpha/netbsd.h (TARGET_DEFAULT): Remove.
16041 * config/alpha/vms.h (TARGET_DEFAULT): Remove.
16042 * config.gcc (alpha*-*-linux*): Remove target_cpu_default.
16043 (alpha*-*-freebsd*): Likewise.
16044 (alpha*-*-netbsd*): Likewise.
16045 (alpha*-*-openbsd*): Likewise.
16046 (alpha*-*-*): Remove target_cpu_default2.
16047 * config/alpha/alpha.c (alpha_output_filename): Remove !TARGET_GAS
16048 handling.
16049 * config/alpha/alpha.h (TARGET_AS_CAN_SUBTRACT_LABELS): Remove.
16050 (TARGET_AS_SLASH_BEFORE_SUFFIX): Remove.
16051 * config/alpha/alpha.c (print_operand): Always assume
16052 TARGET_AS_SLASH_BEFORE_SUFFIX.
16053 * config/alpha/alpha.md ("*builtin_setjmp_receiver_er_sl_1"):
16054 Remove TARGET_AS_CAN_SUBTRACT_LABELS.
16055 ("*builtin_setjmp_receiver_er_1"): Remove.
16056 * config/alpha/alpha.opt (malpha-as): Remove.
16057 (mgas): Ignore.
16058 * doc/invoke.texi (Option Summary, DEC Alpha Options): Remove
16059 -malpha-as, -mgas.
16060 Remove DEC Unix reference.
16061
16062 * config/alpha/alpha.h (OBJECT_FORMAT_COFF): Remove.
16063 (EXTENDED_COFF): Remove.
16064 * config/alpha/elf.h (OBJECT_FORMAT_COFF): Don't undef.
16065 (EXTENDED_COFF): Don't undef.
16066 * config/alpha/alpha.c (alpha_file_start): Always assume
16067 OBJECT_FORMAT_ELF.
16068 Don't set targetm.asm_file_start_file_directive.
16069 [!OBJECT_FORMAT_ELF]: Remove.
16070 (TARGET_ASM_FILE_START_FILE_DIRECTIVE): Remove.
16071
16072 * config/alpha/alpha.h (SDB_DEBUGGING_INFO): Remove.
16073 (DBX_DEBUGGING_INFO): Remove.
16074 (MIPS_DEBUGGING_INFO): Remove.
16075 (PREFERRED_DEBUGGING_TYPE): Remove.
16076 (DBX_OUTPUT_SOURCE_LINE): Remove.
16077 (SDB_OUTPUT_SOURCE_LINE): Remove.
16078 (DBX_CONTIN_LENGTH): Remove.
16079 (NO_DBX_FUNCTION_END): Remove.
16080 (ASM_STABS_OP): Remove.
16081 (ASM_STABN_OP): Remove.
16082 (ASM_STABD_OP): Remove.
16083 (SDB_ALLOW_FORWARD_REFERENCES): Remove.
16084 (SDB_ALLOW_UNKNOWN_REFERENCES): Remove.
16085 (PUT_SDB_DEF): Remove.
16086 (PUT_SDB_PLAIN_DEF): Remove.
16087 (PUT_SDB_TYPE): Remove.
16088 (sdb_label_count): Remove.
16089 (PUT_SDB_BLOCK_START): Remove.
16090 (PUT_SDB_BLOCK_END): Remove.
16091 (PUT_SDB_FUNCTION_START): Remove.
16092 (PUT_SDB_FUNCTION_END): Remove.
16093 (PUT_SDB_EPILOGUE_END): Remove.
16094 * config/alpha/elf.h (SDB_DEBUGGING_INFO): Don't undef.
16095 (MIPS_DEBUGGING_INFO): Don't undef.
16096 (DBX_DEBUGGING_INFO): Don't undef.
16097 * config/alpha/vms.h (SDB_DEBUGGING_INFO): Don't undef.
16098 (MIPS_DEBUGGING_INFO): Don't undef.
16099 (DBX_DEBUGGING_INFO): Don't undef.
16100 * config/alpha/freebsd.h (DBX_CONTIN_CHAR): Remove.
16101 * config/alpha/alpha.c (alpha_option_override): Remove SDB_DEBUG
16102 handling.
16103 (alpha_start_function): Likewise.
16104 (sdb_label_count): Remove.
16105 (alpha_output_filename): Remove DBX_DEBUG handling.
16106 (alpha_file_start): Likewise.
16107
16108 2012-03-14 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
16109
16110 * config.gcc (enable_obsolete): Remove *-*-solaris2.8*.
16111 (*-*-solaris2.[0-8], *-*-solaris2.[0-8].*): Mark unsupported.
16112 (i[34567]86-*-solaris2*, x86_64-*-solaris2.1[0-9]*): Remove
16113 Solaris 8 support.
16114 * configure.ac (gcc_cv_ld_hidden): Remove *-*-solaris2.8*.
16115 (ld_tls_support): Remove Solaris 8 references.
16116 (lwp_dir, lwp_spec): Remove support for alternate thread library.
16117 * acinclude.m4 (gcc_cv_initfini_array): Remove *-*-solaris2.* tests.
16118 * configure: Regenerate.
16119 * config.in: Regenerate.
16120
16121 * config/sol2.h (LINK_SPEC): Remove LIB_THREAD_LDFLAGS_SPEC.
16122 * config/i386/sol2.h: Remove Solaris 8 references.
16123
16124 * doc/install.texi (Specific, i?86-*-solaris2.[89]): Rename to ...
16125 (i?86-*-solaris2.9): ... this.
16126 Remove Solaris 8 references.
16127 (Specific, *-*-solaris2*): Document Solaris 8 removal.
16128 Remove Solaris 8 references.
16129
16130 2012-03-14 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
16131
16132 * config.gcc (enable_obsolete): Remove mips-sgi-irix6.5.
16133 (mips-sgi-irix6.5*): Remove.
16134 * config.host (mips-sgi-irix*): Remove.
16135 * configure.ac (enable_fixed_point): Remove mips*-sgi-irix*.
16136 (set_have_as_tls): Remove *-*-irix6*.
16137 (gcc_cv_ld_static_dynamic): Remove mips-sgi-irix6*.
16138 * configure: Regenerate.
16139
16140 * config/mips/iris6.h: Remove.
16141 * config/mips/iris6.opt: Remove.
16142 * config/mips/t-irix6: Remove.
16143
16144 * config/mips/mips.h (TARGET_GPWORD): Remove IRIX 6 N64 handling.
16145 (TARGET_IRIX6): Remove.
16146 (TARGET_CPU_CPP_BUILTINS): Remove IRIX 6 handling.
16147 Don't define LANGUAGE_C, _LANGUAGE_C for Objective-C.
16148 * config/mips/mips.c (mips_build_builtin_va_list): Remove IRIX 6
16149 handling.
16150 (mips_file_start): Likewise.
16151 * config/mips/mips-protos.h (irix_asm_output_align): Remove.
16152
16153 * config/mips/driver-native.c [__sgi__]: Remove.
16154 (host_detect_local_cpu) [__sgi__]: Remove.
16155
16156 * config/mips/gnu-user.h: Remove iris5.h reference.
16157
16158 * config/mips/mips-modes.def: Remove IRIX 6 reference.
16159 * config/mips/gnu-user64.h (MIPS_TFMODE_FORMAT): Remove.
16160 * config/mips/mips.c (mips_option_override) [MIPS_TFMODE_FORMAT]:
16161 Remove.
16162
16163 * gcc.c (main): Move asm_debug initialization ...
16164 (asm_debug): ... here.
16165
16166 * ginclude/stddef.h (__STDDEF_H__): Don't define.
16167
16168 * defaults.h (LINK_ELIMINATE_DUPLICATE_LDIRECTORIES): Remove.
16169 * system.h (LINK_ELIMINATE_DUPLICATE_LDIRECTORIES): Poison.
16170 * collect2.c [LINK_ELIMINATE_DUPLICATE_LDIRECTORIES]: Remove.
16171 (main) [LINK_ELIMINATE_DUPLICATE_LDIRECTORIES]: Remove.
16172 [LINK_ELIMINATE_DUPLICATE_LDIRECTORIES] (is_in_args): Remove.
16173 * doc/tm.texi.in (Driver, LINK_ELIMINATE_DUPLICATE_LDIRECTORIES):
16174 Remove.
16175 * doc/tm.texi: Regenerate.
16176
16177 * doc/invoke.texi (Debugging Options, -gdwarf-<version>): Remove
16178 IRIX 6 reference.
16179 (MIPS Options, -march): Remove IRIX reference.
16180 * doc/install.texi (Binaries, SGI IRIX): Remove.
16181 (Specific, mips-sgi-irix6): Document IRIX 6.5 removal, remove rest
16182 of section.
16183 * doc/trouble.texi (Interoperation): Remove -lgl_s handling.
16184
16185 2012-03-14 Martin Jambor <mjambor@suse.cz>
16186
16187 * expr.c (expand_assignment): Use expand_expr with EXPAND_WRITE
16188 when expanding MEM_REFs, MEM_TARGET_REFs and handled_component bases.
16189 (expand_expr_real_1): Do not handle misalignment if modifier is
16190 EXPAND_WRITE.
16191
16192 2012-03-14 Richard Guenther <rguenther@suse.de>
16193
16194 PR middle-end/52584
16195 * tree-vect-generic.c (type_for_widest_vector_mode): Take
16196 element type instead of mode, use build_vector_type_for_mode
16197 instead of the langhook, build a vector of proper signedness.
16198 (expand_vector_operations_1): Adjust.
16199
16200 2012-03-14 Richard Guenther <rguenther@suse.de>
16201
16202 PR middle-end/52582
16203 * gimple-fold.c (canonicalize_constructor_val): Make sure we have
16204 a cgraph node for a FUNCTION_DECL that comes from a constructor.
16205 (gimple_get_virt_method_for_binfo): Likewise.
16206
16207 2012-03-14 Richard Guenther <rguenther@suse.de>
16208
16209 PR tree-optimization/52571
16210 * tree-vect-data-refs.c (vect_compute_data_ref_alignment): Move
16211 flag_section_anchors check ...
16212 (vect_can_force_dr_alignment_p): ... here. Do not re-align
16213 DECL_COMMON variables.
16214
16215 2012-03-14 Richard Guenther <rguenther@suse.de>
16216
16217 * tree.h (DECL_BIT_FIELD_REPRESENTATIVE): New define.
16218 * stor-layout.c (start_bitfield_representative): New function.
16219 (finish_bitfield_representative): Likewise.
16220 (finish_bitfield_layout): Likewise.
16221 (finish_record_layout): Call finish_bitfield_layout.
16222 * tree.c (free_lang_data_in_decl): Only free DECL_QUALIFIER
16223 for QUAL_UNION_TYPE fields.
16224 * tree-streamer-in.c (lto_input_ts_field_decl_tree_pointers):
16225 Stream DECL_BIT_FIELD_REPRESENTATIVE.
16226 * tree-streamer-out.c (write_ts_field_decl_tree_pointers): Likewise.
16227
16228 PR middle-end/52080
16229 PR middle-end/52097
16230 PR middle-end/48124
16231 * expr.c (get_bit_range): Unconditionally extract bitrange
16232 from DECL_BIT_FIELD_REPRESENTATIVE.
16233 (expand_assignment): Adjust call to get_bit_range.
16234
16235 2012-03-14 Richard Guenther <rguenther@suse.de>
16236
16237 PR middle-end/52578
16238 * fold-const.c (fold_unary_loc): Fold (T1)(T2)x to (T1)x if
16239 the outermost conversion is a sign-change only.
16240 (fold_binary_loc): Disregard widening and sign-changing
16241 conversions when we determine if two variables are equal
16242 for reassociation.
16243 * tree-ssa-forwprop.c (combine_conversions): Fold (T1)(T2)x to
16244 (T1)x if the outermost conversion is a sign-change only.
16245
16246 2012-03-14 Uros Bizjak <ubizjak@gmail.com>
16247
16248 Revert:
16249 2012-03-14 Uros Bizjak <ubizjak@gmail.com>
16250
16251 * config/i386/predicates.md (constant_call_address_operand): Declare
16252 as special predicate. Update all uses.
16253
16254 2012-03-13 Jakub Jelinek <jakub@redhat.com>
16255
16256 PR c/52577
16257 * c-parser.c (c_parser_postfix_expression)
16258 <case RID_BUILTIN_SHUFFLE>: Call mark_exp_read on argument values.
16259
16260 * config/i386/smmintrin.h: Avoid /* within a comment.
16261 * config/i386/nmmintrin.h: Likewise.
16262
16263 2012-03-13 Uros Bizjak <ubizjak@gmail.com>
16264
16265 * config/i386/i386.md (xbegin): Remove constraint from expander.
16266
16267 2012-03-13 Uros Bizjak <ubizjak@gmail.com>
16268
16269 * config/i386/predicates.md (constant_call_address_operand): Declare
16270 as special predicate. Update all uses.
16271 * config/i386/i386.md: Remove mode from constant_call_address_operand
16272 predicates.
16273 * config/i386/i386.c (ix86_output_call_insn): Call
16274 constant_call_address_operand with VOIDmode.
16275
16276 2012-03-13 Uros Bizjak <ubizjak@gmail.com>
16277
16278 * config/i386/i386.c (ix86_decompose_address): Handle subregs of
16279 AND zero extended address correctly.
16280
16281 2012-03-13 Uros Bizjak <ubizjak@gmail.com>
16282
16283 * config/i386/predicates.md (tls_symbolic_operand): Declare as
16284 special predicate.
16285 (tls_modbase_operand): Ditto.
16286 * config/i386/i386.md: Remove mode from tls_symbolic_operand and
16287 tls_modbase_operand predicates.
16288
16289 2012-03-13 Martin Jambor <mjambor@suse.cz>
16290
16291 * expr.c (expand_assignment): Handle misaligned scalar writes to
16292 memory through top-level MEM_REFs by calling store_bit_field.
16293
16294 2012-03-13 Richard Guenther <rguenther@suse.de>
16295
16296 PR middle-end/52134
16297 * fold-const.c (fold_binary_loc): Fold (X * Y) & -(1 << CST) to X * Y
16298 if Y is a constant multiple of 1 << CST.
16299
16300 2012-03-13 Georg-Johann Lay <avr@gjlay.de>
16301
16302 PR target/52488
16303 * config/avr/avr.c (avr_prologue_setup_frame): Cut down stack
16304 offset (size) to a value the insns can deal with.
16305 (expand_epilogue): Ditto.
16306
16307 2012-03-13 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
16308
16309 * config/arm/neon.ml (ops): Fixup expected instructions for
16310 unsigned vector compares.
16311
16312 2012-03-13 Uros Bizjak <ubizjak@gmail.com>
16313
16314 * config/i386/i386.c (ix86_decompose_address): Prevent %fs:(%reg)
16315 addresses only when %reg is not in word mode.
16316
16317 2012-03-13 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
16318
16319 * config/microblaze/microblaze.md: Fix typo.
16320 * tree-if-conv.c: Likewise.
16321 * tree-vect-patterns.c: Likewise.
16322
16323 2012-03-13 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
16324
16325 * config.gcc (extra_passes): Remove.
16326 * configure.ac (extra_passes): Don't substitute.
16327 * configure: Regenerate.
16328 * Makefile.in (EXTRA_PASSES): Remove.
16329 (GCC_PASSES): Remove $(EXTRA_PASSES).
16330 (MOSTLYCLEANFILES): Likewise.
16331 (native): Likewise.
16332 (install-common): Likewise.
16333
16334 2012-03-13 Uros Bizjak <ubizjak@gmail.com>
16335
16336 * config/i386/i386.h (TARGET_TLS_INDIRECT_SEG_REFS): New.
16337 * config/i386/i386.c (ix86_decompose_address): Use
16338 TARGET_TLS_INDIRECT_SEG_REFS to prevent %fs:(%reg) addresses.
16339 (legitimize_tls_address): Use TARGET_TLS_INDIRECT_SEG_REFS to load
16340 thread pointer to a register.
16341
16342 2012-03-12 H.J. Lu <hongjiu.lu@intel.com>
16343
16344 * config/i386/i386.md (*tls_global_dynamic_64_<mode>): Remove :P
16345 on tls_symbolic_operand.
16346 (tls_global_dynamic_64_<mode>): Likewise.
16347
16348 2012-03-12 Georg-Johann Lay <avr@gjlay.de>
16349
16350 PR other/52545
16351 * output.h (SECTION_EXCLUDE, SECTION_MACH_DEP): Don't use
16352 SECTION_MACH_DEP reserved bits for SECTION_EXCLUDE.
16353
16354 2012-03-12 Georg-Johann Lay <avr@gjlay.de>
16355
16356 PR target/52499
16357 * config/avr/avr.c (avr_mode_code_base_reg_class): Change return
16358 type from reg_class_t to enum reg_class.
16359 * config/avr/avr-protos.h (avr_mode_code_base_reg_class): Ditto.
16360
16361 2012-03-12 Andrew Pinski <apinski@cavium.com>
16362
16363 * tree-ssa-phiopt.c (single_non_singleton_phi_for_edges): New function.
16364 (tree_ssa_phiopt_worker): Use single_non_singleton_phi_for_edges.
16365 (value_replacement): Likewise.
16366 (empty_block_p): Check also if the PHIs for the block are empty.
16367
16368 2012-03-12 Georg-Johann Lay <avr@gjlay.de>
16369
16370 PR target/52148
16371 * config/avr/avr.c (avr_out_movmem): Fix typo in output template
16372 for the case ADDR_SPACE_FLASH and AVR_HAVE_LPMX introduced in
16373 r184615 from 2012-02-28.
16374
16375 2012-03-12 H.J. Lu <hongjiu.lu@intel.com>
16376
16377 * config/i386/i386.c (ix86_gen_tls_global_dynamic_64): New.
16378 (ix86_gen_tls_local_dynamic_base_64): Likewise.
16379 (ix86_option_override_internal): Set ix86_gen_tls_global_dynamic_64
16380 and ix86_gen_tls_local_dynamic_base_64.
16381 (legitimize_tls_address): Use ix86_gen_tls_global_dynamic_64 and
16382 ix86_gen_tls_local_dynamic_base_64.
16383
16384 * config/i386/i386.md (*tls_global_dynamic_64): Renamed to ...
16385 (*tls_global_dynamic_64_<mode>): This.
16386 (tls_global_dynamic_64): Renamed to ...
16387 (tls_global_dynamic_64_<mode>): This.
16388 (*tls_local_dynamic_base_64): Renamed to ...
16389 (*tls_local_dynamic_base_64_<mode>): This.
16390 (tls_local_dynamic_base_64): Renamed to ...
16391 (tls_local_dynamic_base_64_<mode>): This.
16392
16393 2012-03-12 H.J. Lu <hongjiu.lu@intel.com>
16394
16395 * config/i386/i386.c (ix86_option_override_internal): Properly
16396 set ix86_gen_leave and ix86_gen_monitor. Check Pmode == DImode,
16397 instead of TARGET_64BIT, to set ix86_gen_add3, ix86_gen_sub3,
16398 ix86_gen_one_cmpl2, ix86_gen_andsp, ix86_gen_allocate_stack_worker,
16399 ix86_gen_adjust_stack_and_probe and ix86_gen_probe_stack_range.
16400
16401 * config/i386/sse.md (sse3_monitor64): Renamed to ...
16402 (sse3_monitor64_<mode>): This.
16403
16404 2012-03-12 Tristan Gingold <gingold@adacore.com>
16405
16406 * config/ia64/ia64.c (ia64_function_arg_1): Move code around.
16407 (ia64_function_arg_advance): Ditto.
16408
16409 2012-03-12 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
16410
16411 * config.gcc (mips*-*-openbsd*): Remove.
16412 * config/mips/openbsd.h: Remove.
16413 * config/mips/sdb.h: Remove.
16414
16415 * config/mips/mips.h (SDB_OUTPUT_SOURCE_LINE): Remove.
16416 * config/mips/mips.c (sdb_label_count): Remove.
16417 (mips_debugger_offset): Remove #if 0 code.
16418 (mips_output_function_prologue) [SDB_DEBUGGING_INFO]: Remove.
16419 * config/mips/sde.h (SDB_DEBUGGING_INFO): Don't undef.
16420
16421 2012-03-12 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
16422
16423 * doc/install.texi (Specific, i?86-*-solaris2.[89]): Update
16424 binutils reference.
16425 (Specific, i?86-*-solaris2.10): Remove GCC 4.0 reference.
16426 Update binutils references.
16427 (Specific, *-*-solaris2*): Mention bundled GCC in Solaris 10 and 11.
16428 Update binutils reference.
16429 Update Sun as/GNU ld caveat.
16430 Document binutils largefile requirement for LTO plugin.
16431 Remove reference to alternate libpthread.
16432
16433 2012-03-12 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
16434
16435 * config.gcc (alpha*-dec-osf5.1*): Remove.
16436 * config.host (alpha*-dec-osf*): Remove.
16437 * configure.ac (*-*-osf*): Remove.
16438 (alpha*-dec-osf*): Remove.
16439 * configure: Regenerate.
16440
16441 * config/alpha/host-osf.c, config/alpha/osf5.h, config/alpha/osf5.opt,
16442 config/alpha/va_list.h, config/alpha/x-osf: Remove.
16443
16444 * config/alpha/alpha.h (TARGET_LD_BUGGY_LDGP): Remove.
16445 * config/alpha/alpha.c (struct machine_function): Update comment.
16446 (alpha_start_function): Remove Tru64 UNIX as handling for
16447 max_frame_size.
16448 * config/alpha/alpha.md ("exception_receiver"): Remove
16449 TARGET_LD_BUGGY_LDGP.
16450 ("*exception_receiver_2"): Likewise.
16451 * except.c (finish_eh_generation): Remove Tru64 reference.
16452 * ginclude/stdarg.h [_HIDDEN_VA_LIST]: Don't undef _VA_LIST.
16453 * system.h (TARGET_HANDLE_PRAGMA_EXTERN_PREFIX): Poison.
16454 * target.def (handle_pragma_extern_prefix): Remove.
16455
16456 * Makefile.in (mips-tfile.o-warn): Remove.
16457 (ALL_HOST_BACKEND_OBJS): Remove mips-tfile.o, mips-tdump.o.
16458 (mips-tfile, mips-tfile.o, mips-tdump, mips-tdump.o): Remove.
16459 * mips-tdump.c, mips-tfile.c: Remove.
16460
16461 * doc/extend.texi (Symbol-Renaming Pragmas): Remove #pragma
16462 extern_prefix.
16463 * doc/install.texi (Binaries): Remove Tru64 UNIX reference.
16464 (Specific, alpha*-dec-osf5.1): Note removal.
16465 * doc/tm.texi.in (Misc, TARGET_HANDLE_PRAGMA_EXTERN_PREFIX):
16466 Remove.
16467 * doc/tm.texi: Regenerate.
16468 * doc/trouble.texi (Cross-Compiler Problems): Remove.
16469
16470 2012-03-12 Richard Guenther <rguenther@suse.de>
16471
16472 * config/arm/arm.c (neon_dereference_pointer): Do not call
16473 covert during RTL expansion.
16474
16475 2012-03-12 Tristan Gingold <gingold@adacore.com>
16476
16477 * doc/invoke.texi (VMS Options): Merge Alpha/VMS and IA-64/VMS
16478 Options. Mention -mpointer-size.
16479
16480 2012-03-12 Richard Guenther <rguenther@suse.de>
16481
16482 * config/alpha/alpha.c (alpha_gimplify_va_arg): Use
16483 build_nonstandard_integer_type.
16484
16485 2012-03-12 Richard Guenther <rguenther@suse.de>
16486
16487 * tree.c (signed_or_unsigned_type_for): Use
16488 build_nonstandard_integer_type.
16489 (signed_type_for): Adjust documentation.
16490 (unsigned_type_for): Likewise.
16491 * tree-pretty-print.c (dump_generic_node): Use standard names
16492 for non-standard integer types if available.
16493
16494 2012-03-12 Tristan Gingold <gingold@adacore.com>
16495
16496 * config/vms/vms.opt: Add vms-opts.h header.
16497 (mmalloc64): Use flag_vms_malloc64 flag instead of MALLOC64
16498 target mask.
16499 (-mvms-return-codes): Document.
16500 (-mpointer-size): New option.
16501 (vms_pointer_size): Add enumeration.
16502 * config/vms/vms-opts.h: New file.
16503 * config/vms/vms.h (TARGET_OS_CPP_BUILTINS): Define
16504 __INITIAL_POINTER_SIZE.
16505 (POINTER_SIZE, SIZE_TYPE, PTRDIFF_TYPE): Adjust definition.
16506 (C_COMMON_OVERRIDE_OPTIONS): Define.
16507 (DWARF2_ADDR_SIZE): Define.
16508 * config/vms/vms.c (vms_patch_builtins): Adjust condition.
16509 * config/vms/vms-protos.h (vms_c_common_override_options):
16510 New prototype.
16511 * config/vms/vms-c.c (vms_pragma_pointer_size): Ignore pragma
16512 if -mno-pointer-size.
16513 (vms_c_common_override_options): New function.
16514 * config/ia64/vms.h (TARGET_DEFAULT): Remove MASK_MALLOC64.
16515 * config/alpha/vms.h (TARGET_DEFAULT): Remove MASK_MALLOC64.
16516 (MALLOC_ABI_ALIGNMENT): Use flag_vms_malloc64
16517 and flag_vms_pointer_size.
16518 (MASK_RETURN_ADDR): Set according to flag_vms_pointer_size.
16519 * config.gcc (*-*-*vms*): Define xm_file.
16520 (alpha*-dec-*vms*): Do not define xm_file.
16521 (alpha64-dec-*vms*): Remove.
16522 (ia64-hp-*vms*): Do not define xm_file. Simplify tm_file
16523 and tmake_file.
16524
16525 2012-03-12 Jakub Jelinek <jakub@redhat.com>
16526
16527 PR tree-optimization/51721
16528 * tree-vrp.c (register_edge_assert_for_2): Add asserts for unsvar
16529 if (int) unsvar cmp CST.
16530
16531 2012-03-12 Richard Guenther <rguenther@suse.de>
16532
16533 * tree-sra.c (create_access_replacement): Only rename the replacement
16534 if we can rewrite it into SSA form. Properly mark register typed
16535 replacements that we cannot rewrite with TREE_ADDRESSABLE.
16536 * tree-cfg.c (verify_expr): Fix BIT_FIELD_REF verification
16537 for aggregate or BLKmode results.
16538
16539 2012-03-12 Jakub Jelinek <jakub@redhat.com>
16540
16541 PR tree-optimization/52533
16542 * tree-vrp.c (register_edge_assert_for_2): Use double_int
16543 type for mask, only handle shifts by non-zero in-range
16544 shift count, for LE_EXPR and GT_EXPR if new_val is
16545 maximum, don't add the assertion.
16546
16547 2012-02-12 Kirill Yukhin <kirill.yukhin@intel.com>
16548
16549 * doc/invoke.texi: Document -mrtm option.
16550 * common/config/i386/i386-common.c (OPTION_MASK_ISA_RTM_SET): New.
16551 (OPTION_MASK_ISA_RTM_UNSET): Ditto.
16552 (ix86_handle_option): Handle OPT_mrtm.
16553 * config.gcc (i[34567]86-*-*): Add rtmintrin.h and
16554 xtestintrin.h.
16555 (x86_64-*-*): Ditto.
16556 * i386-builtin-types.def (INT_FTYPE_VOID): New.
16557 * config/i386/i386-c.c (ix86_target_macros_internal): Define
16558 __RTM__ if needed.
16559 (ix86_target_string): Define -mrtm option.
16560 (PTA_RTM): New.
16561 (ix86_option_override_internal): Extend "corei7-avx" with RTM option.
16562 Handle new option.
16563 (ix86_valid_target_attribute_inner_p): Add OPT_mrtm.
16564 (ix86_builtins): Add IX86_BUILTIN_XBEGIN, IX86_BUILTIN_XEND,
16565 IX86_BUILTIN_XTEST.
16566 (bdesc_special_args): Ditto.
16567 (ix86_init_mmx_sse_builtins): Add IX86_BUILTIN_XABORT.
16568 (ix86_expand_special_args_builtin): Handle new built-in type.
16569 (ix86_expand_builtin): Handle XABORT instruction.
16570 * config/i386/i386.h (TARGET_RTM): New.
16571 * config/i386/i386.md (UNSPECV_XBEGIN): New.
16572 (UNSPECV_XEND): Ditto.
16573 (UNSPECV_XABORT): Ditto.
16574 (UNSPECV_XTEST): Ditto.
16575 (xbegin): Ditto.
16576 (xbegin_1): Ditto.
16577 (xend): Ditto.
16578 (xabort): Ditto
16579 (xtest): Ditto.
16580 (xtest_1): Ditto.
16581 * config/i386/i386.opt (mrtm): New.
16582 * config/i386/immintrin.h: Include rtmintrin.h and xtestintrin.h.
16583 * config/i386/rtmintrin.h: New header.
16584 * config/i386/xtestintrin.h: Ditto.
16585
16586 2012-03-12 Tristan Gingold <gingold@adacore.com>
16587
16588 * ginclude/stddef.h: Adjust previous patch.
16589 Use __VMS__ instead of VMS.
16590
16591 2012-03-12 Uros Bizjak <ubizjak@gmail.com>
16592
16593 * config/i386/i386.md (setcc + movzbl to xor + setcc peephole2):
16594 Also convert sequences with CC setting arithmetic instruction.
16595
16596 2012-03-11 Sandra Loosemore <sandra@codesourcery.com>
16597
16598 * doc/invoke.texi (Option Summary): Move -no-integrated-cpp
16599 from C Language Options to Preprocessor Options.
16600 (C Dialect Options): Move -no-integrated-cpp documentation
16601 from here...
16602 (Preprocessor Options): ...to here. Rewrite the description
16603 so it makes more sense, and remove discussion of merging front ends.
16604
16605 2012-03-11 H.J. Lu <hongjiu.lu@intel.com>
16606
16607 * config/i386/i386.c (ix86_expand_movmem): Use word_mode for size
16608 needed for loop.
16609 (ix86_expand_setmem): Likewise.
16610
16611 2012-03-11 Uros Bizjak <ubizjak@gmail.com>
16612
16613 * config/i386/i386.c (ix86_zero_extend_to_Pmode): Rewrite using
16614 convert_to_mode.
16615
16616 2012-03-11 H.J. Lu <hongjiu.lu@intel.com>
16617
16618 * config/i386/i386.c (ix86_trampoline_init): Use movl for 64bit if
16619 ptr_mode == SImode. Replace DImode with Pmode or ptr_mode.
16620
16621 2012-03-11 H.J. Lu <hongjiu.lu@intel.com>
16622
16623 * config/i386/i386.c (x86_this_parameter): Replace DImode with Pmode.
16624
16625 2012-03-11 H.J. Lu <hongjiu.lu@intel.com>
16626
16627 * config/i386/i386.md (lwp_slwpcb): Check Pmode instead of
16628 TARGET_64BIT.
16629
16630 2012-03-11 H.J. Lu <hongjiu.lu@intel.com>
16631 Uros Bizjak <ubizjak@gmail.com>
16632
16633 * config/i386/predicates.md (call_insn_operand): Allow
16634 constant_call_address_operand in Pmode only.
16635 (sibcall_insn_operand): Ditto.
16636 * config/i386/i386.md (*call): Use W mode iterator instead of P mode.
16637 (*call_vzeroupper): Ditto.
16638 (*sibcall): Ditto.
16639 (*sibcall_vzeroupper): Ditto.
16640 (*call_value): Ditto.
16641 (*call_value_vzeroupper): Ditto.
16642 (*sibcall_value): Ditto.
16643 (*sibcall_value_vzeroupper): Ditto.
16644 (*indirect_jump): Ditto.
16645 (*tablejump_1): Ditto.
16646 (indirect_jump): Convert memory address to word mode for TARGET_X32.
16647 (tablejump): Ditto.
16648 * config/i386/i386.c (ix86_expand_call): Convert indirect operands
16649 to word mode.
16650
16651 2012-03-11 Oleg Endo <olegendo@gcc.gnu.org>
16652
16653 PR target/51244
16654 * config/sh/sh.md (movnegt): Expand into respective insns immediately.
16655 Use movrt_negc instead of negc pattern for non-SH2A.
16656 (*movnegt): Remove.
16657 (*movrt_negc, *negnegt, *movtt, *movt_qi): New insns and splits.
16658
16659 2012-03-10 H.J. Lu <hongjiu.lu@intel.com>
16660
16661 * config/i386/i386.c (ix86_decompose_address): Disallow fs:(reg)
16662 if Pmode != word_mode.
16663 (legitimize_tls_address): Call gen_tls_initial_exec_x32 if
16664 Pmode == SImode for TARGET_X32.
16665
16666 * config/i386/i386.md (UNSPEC_TLS_IE_X32): New.
16667 (tls_initial_exec_x32): Likewise.
16668
16669 2012-03-10 Chung-Lin Tang <cltang@codesourcery.com>
16670
16671 PR rtl-optimization/52528
16672 * combine.c (can_combine_p): Add setting of subst_low_luid
16673 before call to expand_field_assignment().
16674
16675 2012-03-09 Sandra Loosemore <sandra@codesourcery.com>
16676
16677 * doc/invoke.texi: Use correct names/markup for "GCC", "GDB", "ld",
16678 and related program names.
16679
16680 2012-03-09 Sandra Loosemore <sandra@codesourcery.com>
16681
16682 * doc/invoke.texi: Use correct names for "DWARF", "stabs", and "ELF".
16683
16684 2012-03-09 Uros Bizjak <ubizjak@gmail.com>
16685
16686 PR target/52530
16687 * config/i386/i386.c (ix86_print_operand): Handle 'E' operand modifier.
16688 (ix86_print_operand_address): Handle UNSPEC_LEA_ADDR. Do not fallback
16689 to set code to 'q'.
16690 * config/i386/i386.md (UNSPEC_LEA_ADDR): New unspec.
16691 (*movdi_internal_rex64): Use %E operand modifier for lea.
16692 (*movsi_internal): Ditto.
16693 (*lea_1): Ditto.
16694 (*lea<mode>_2): Ditto.
16695 (*lea_{3,4,5,6}_zext): Ditto.
16696 (*tls_global_dynamic_32_gnu): Ditto.
16697 (*tls_global_dynamic_64): Ditto.
16698 (*tls_dynamic_gnu2_lea_32): Ditto.
16699 (*tls_dynamic_gnu2_lea_64): Ditto.
16700 (pro_epilogue_adjust_stack_<mode>_add): Ditto.
16701
16702 2012-03-09 Michael Meissner <meissner@linux.vnet.ibm.com>
16703
16704 * config/rs6000/linux64.h (OPTION_TARGET_CPU_DEFAULT): Do not
16705 redefine to be NULL if the current bit-size is different from the
16706 configured bit-size.
16707
16708 * config/rs6000/rs6000.c (rs6000_option_override_internal): If the
16709 cpu is defaulted, use PROCESSOR_DEFAULT and PROCESSOR_DEFAULT64 to
16710 set the default tuning. Add asserts to make sure the cpu and tune
16711 indexes are defined. Fix tests for cpu/tune index to use >= 0 to
16712 test whether the index is set, instead of > 0.
16713 (rs6000_file_start): Do not reset the default cpu if the current
16714 bit-size is different from the configured bit-size.
16715
16716 2012-03-09 Tristan Gingold <gingold@adacore.com>
16717
16718 * config/vms/vms-crtlmap.map: Add comments.
16719 Add entries needed to build Ada RTS.
16720
16721 2012-03-09 Tristan Gingold <gingold@adacore.com>
16722
16723 * ginclude/stddef.h: Do not define __size_t on VMS.
16724
16725 2012-03-09 Tristan Gingold <gingold@adacore.com>
16726
16727 * c-tree.h (c_default_pointer_mode): New variable.
16728 * c-decl.c (c_default_pointer_mode): New variable.
16729 (c_build_pointer_type): New function.
16730 (grokdeclarator): Call c_build_pointer_type instead
16731 of build_pointer_type.
16732
16733 * config/vms/vms-c.c: Include c-tree.h
16734 (saved_pointer_mode): New variable.
16735 (handle_pragma_pointer_size): New function.
16736 (vms_pragma_pointer_size, vms_pragma_required_pointer_size): Likewise.
16737 (vms_c_register_pragma): Register __pointer_size and
16738 __required_pointer_size pragmas.
16739
16740 2012-03-09 Tristan Gingold <gingold@adacore.com>
16741
16742 * config/vms/vms-c.c (vms_construct_include_filename): New function.
16743 (vms_c_register_includes): Reference it.
16744
16745 2012-03-09 Andrew Pinski <apinski@cavium.com>
16746
16747 PR middle-end/51988
16748 * tree-ssa-phiopt.c: Include tree-pretty-print.h for
16749 print_generic_expr.
16750 (tree_ssa_phiopt_worker): Go through all the PHIs for
16751 value_replacement instead of just the singleton one.
16752 (value_replacement): Change return type to int. Return 0 instead of
16753 false.
16754 Allow the middle basic block to contain more than just the defining
16755 statement.
16756 Handle non empty middle basic blocks.
16757 * Makefile.in (tree-ssa-phiopt.o): Add tree-pretty-print.h.
16758
16759 2012-03-09 Jiangning Liu <jiangning.liu@arm.com>
16760
16761 * tree-scalar-evolution (interpret_rhs_expr): generate chrec for
16762 array reference and component reference.
16763 (analyze_scalar_evolution_for_address_of): New.
16764
16765 2012-03-08 Jie Zhang <jzhang918@gmail.com>
16766
16767 PR target/49862
16768 * config/bfin/bfin.c (hwloop_optimize): Fix unused variable warnings.
16769 (hwloop_pattern_reg): Fix set but not used warning.
16770 (bfin_reorg_loops): Remove unused parameter.
16771 (bfin_reorg): Update use of bfin_reorg_loops.
16772
16773 2012-03-08 H.J. Lu <hongjiu.lu@intel.com>
16774
16775 * config/i386/i386.c (setup_incoming_varargs_64): Use word_mode
16776 with integer parameters in registers.
16777 (gen_push): Push register in word_mode instead of Pmode.
16778 (ix86_emit_save_regs): Likewise.
16779 (ix86_emit_save_regs_using_mov): Save integer registers in word_mode.
16780 (gen_pop): Pop register in word_mode instead of Pmode.
16781 (ix86_emit_restore_regs_using_pop): Likewise.
16782 (ix86_expand_prologue): Replace Pmode with word_mode for push
16783 immediate. Use ix86_gen_pro_epilogue_adjust_stack. Save and
16784 restore RAX and R10 in word_mode.
16785 (ix86_emit_restore_regs_using_mov): Restore integer registers
16786 in word_mode.
16787 (ix86_expand_split_stack_prologue): Save R10_REG and restore in
16788 word_mode.
16789 (ix86_split_to_parts): Use word_mode with PUT_MODE for push.
16790 (ix86_split_long_move): Likewise.
16791
16792 * config/i386/i386.md (W): New.
16793 (*push<mode>2_prologue): Replace :P with :W.
16794 (*pop<mode>1): Likewise.
16795 (*pop<mode>1_epilogue): Likewise.
16796 (push/pop peephole2): Use word_mode scratch registers.
16797
16798 2012-03-08 Uros Bizjak <ubizjak@gmail.com>
16799
16800 * config/i386/predicates.md (indirect_branch_operand): Simplify.
16801
16802 2012-03-08 Georg-Johann Lay <avr@gjlay.de>
16803
16804 * config/avr/avr.md (*addhi3, addhi3_clobber): Add "w" alternative
16805 for constants in [-63,63].
16806
16807 2012-03-08 Uros Bizjak <ubizjak@gmail.com>
16808
16809 PR target/52530
16810 Revert:
16811 2012-03-04 H.J. Lu <hongjiu.lu@intel.com>
16812
16813 * config/i386/i386.c (ix86_print_operand_address): Only handle
16814 zero-extended DImode addresses.
16815
16816 2012-03-08 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
16817
16818 * configure.ac (gcc_cv_as_ix86_tlsldmplt): Add label.
16819 * configure: Regenerate.
16820
16821 2012-03-08 Georg-Johann Lay <avr@gjlay.de>
16822
16823 PR target/52496
16824 * config/avr/avr.c (avr_mem_clobber): New static function.
16825 (avr_expand_delay_cycles): Add memory clobber operand to
16826 delay_cycles_1, delay_cycles_2, delay_cycles_3, delay_cycles_4.
16827 * config/avr/avr.md (unspec): Add UNSPEC_MEMORY_BARRIER.
16828 (enable_interrupt, disable_interrupt): New expander.
16829 (nopv, sleep, wdr): New expanders.
16830 (delay_cycles_1): Add memory clobber.
16831 (delay_cycles_2): Add memory clobber.
16832 (delay_cycles_3): Add memory clobber.
16833 (delay_cycles_4): Add memory clobber.
16834 (cli_sei): New insn from former "enable_interrupt",
16835 "disable_interrupt" with memory clobber.
16836 (*wdt): New insn from former "wdt" with memory clobber.
16837 (*nopv): Similar, but for "nopv".
16838 (*sleep): Similar, but for "sleep".
16839
16840 2012-03-07 Oleg Endo <olegendo@gcc.gnu.org>
16841 Kaz Kojima <kkojima@gcc.gnu.org>
16842
16843 PR target/52503
16844 * config/sh/sh.opt (msoft-atomic): Use Var instead of Mask.
16845 * config/sh/linux.h (TARGET_DEFAULT): Remove MASK_SOFT_ATOMIC.
16846 (SUBTARGET_OVERRIDE_OPTIONS): Define.
16847
16848 2012-03-07 Uros Bizjak <ubizjak@gmail.com>
16849
16850 * config/i386/predicates.md (x86_64_zext_general_operand): New.
16851 * config/i386/i386.md (*zero_extendsidi2_rex64): Change operand 1
16852 predicate to x86_64_zext_general_operand. Accept "Z" constraint.
16853
16854 2012-03-07 Walter Lee <walt@tilera.com>
16855
16856 * config/tilegx/tilegx.c (tilegx_expand_prologue): Don't generate
16857 REG_CFA_* notes for the stack pointer.
16858 (tilegx_expand_epilogue): Restore stack pointer by adjusting it by
16859 EH_RETURN_STACKADJ_RTX.
16860 * config/tilepro/tilepro.c (tilepro_expand_prologue): Don't
16861 generate REG_CFA_* notes for the stack pointer.
16862 (tilepro_expand_epilogue): Restore stack pointer by adjusting it
16863 by EH_RETURN_STACKADJ_RTX.
16864
16865 2012-03-07 Georg-Johann Lay <avr@gjlay.de>
16866
16867 * doc/invoke.texi (AVR Built-in Macros): Correct condition for
16868 when __AVR_3_BYTE_PC__ is defined.
16869
16870 2012-03-07 Uros Bizjak <ubizjak@gmail.com>
16871
16872 * config/i386/i386.c (ix86_print_operand_punct_valid_p): Add '^'.
16873 (ix86_print_operand): Handle '^'.
16874 * config/i386/i386.md (*strmovdi_rex_1): Macroize memory operands
16875 using P mode iterator. Add %^ to asm template to conditionally emit
16876 addr32 prefix.
16877 (*rep_movdi_rex64): Ditto.
16878 (*strsetdi_rex_1): Ditto.
16879 (*rep_stosdi_rex64): Ditto.
16880 (*strmov{si,hi,qi}_1): Add %^ to asm template to
16881 conditionally emit addr32 prefix.
16882 (*rep_mov{si,qi}): Ditto.
16883 (*strset{si,hi,qi}): Ditto.
16884 (*rep_stos{si,qi}): Ditto.
16885 (*cmpstrnqi_nz_1): Ditto.
16886 (*cmpstrnqi_1): Ditto.
16887 (*strlenqi_1): Ditto.
16888
16889 2012-03-07 H.J. Lu <hongjiu.lu@intel.com>
16890
16891 * config/i386/i386.c (function_value_64): Return pointers in
16892 word_mode instead of Pmode.
16893 (ix86_promote_function_mode): Likewise.
16894
16895 2012-03-07 Richard Guenther <rguenther@suse.de>
16896
16897 * coverage.c (get_gcov_type): Use type_for_mode.
16898 (get_gcov_unsigned_t): Likewise.
16899 * expr.c (store_constructor): Use type_for_mode.
16900 (try_casesi): Likewise.
16901 * tree-ssa-loop-ivopts.c (add_standard_iv_candidates_for_size): Remove.
16902 (add_standard_iv_candidates): Use standard type trees.
16903 * dojump.c (do_jump): Remove dead code.
16904
16905 2012-03-07 Richard Guenther <rguenther@suse.de>
16906
16907 * c-typeck.c (pointer_diff): Use c_common_type_for_size.
16908
16909 2012-03-07 Richard Guenther <rguenther@suse.de>
16910
16911 * convert.c (strip_float_extensions): Move ...
16912 * tree.c (strip_float_extensions): ... here.
16913
16914 2012-03-07 Georg-Johann Lay <avr@gjlay.de>
16915
16916 PR target/52484
16917 * config/avr/avr.md (xload<mode>_A): Add R22... to register footprint.
16918
16919 2012-03-07 Richard Guenther <rguenther@suse.de>
16920
16921 * omp-low.c (extract_omp_for_data): Use signed_type_for.
16922 (expand_omp_for_generic): Likewise.
16923 (expand_omp_for_static_nochunk): Likewise.
16924 (expand_omp_for_static_chunk): Likewise.
16925 * tree-vect-stmts.c (vect_gen_perm_mask): Use type_for_mode.
16926 * tree-vect-slp.c (vect_transform_slp_perm_load): Likewise.
16927 * tree-vect-loop-manip.c (vect_gen_niters_for_prolog_loop):
16928 Use unsigned_type_for.
16929 (vect_create_cond_for_align_checks): Use signed_type_for.
16930
16931 2012-03-07 Andrey Belevantsev <abel@ispras.ru>
16932
16933 PR rtl-optimization/52203
16934 * sel-sched.c (estimate_insn_cost): New parameter pempty. Adjust
16935 all callers to pass NULL except ...
16936 (reset_sched_cycles_in_current_ebb): ... here, save the value
16937 in new variable 'empty'. Increase issue_rate only for
16938 non-empty insns.
16939
16940 2012-03-07 Ralf Corsépius <ralf.corsepius@rtems.org>
16941
16942 PR target/51417
16943 * Makefile.in: Let install-gcc-ar depend on installdirs,
16944 gcc-ar$(exeext), gcc-nm$(exeext), gcc-ranlib$(exeext).
16945 Don't double canonicalize if cross-compiling.
16946
16947 2012-03-07 Georg-Johann Lay <avr@gjlay.de>
16948
16949 PR target/52506
16950 * gcc/config/avr/avr.c (expand_epilogue): Fix order of restoration
16951 to: RAMPZ, RAMPY, RAMPX, RAMPD.
16952 (expand_prologue): Only clear RAMPZ if it has effect on RAM-read.
16953
16954 2012-03-07 Georg-Johann Lay <avr@gjlay.de>
16955
16956 PR target/52505
16957 * config/avr/avr.c (avr_out_xload): Don't read unintentionally
16958 from RAM.
16959 * config/avr/avr.md (xload_8): Adjust insn length.
16960
16961 2012-03-07 Georg-Johann Lay <avr@gjlay.de>
16962
16963 PR target/52461
16964 * gcc/config/avr/avr.c (avr_out_lpm): Clear RAMPZ after usage
16965 if RAMPZ affects reading from RAM.
16966
16967 2012-03-07 Richard Guenther <rguenther@suse.de>
16968
16969 PR pch/52518
16970 PR pch/38987
16971 * doc/invoke.texi (Precompiled Headers): Remove sentence that
16972 suggests you can include PCHs from inside another header.
16973
16974 2012-03-07 Richard Sandiford <rdsandiford@googlemail.com>
16975
16976 PR middle-end/52515
16977 * rtl.h (pc_rtx, cc0_rtx, ret_rtx, simple_return_rtx): Add GTY markers.
16978
16979 2012-03-07 Kai Tietz <ktietz@redhat.com>
16980
16981 * doc/invoke.texi (fwritable-relocated-rdata): Document
16982 new Cygwin/MinGW target option.
16983 * config/i386/winnt.c (i386_pe_unique_section): Ignore
16984 reloc if flag -fwritable-relocated-rdata is not set.
16985 (i386_pe_section_type_flags): Likewise.
16986 * config/i386/cygming.opt (fwritable-relocated-rdata):
16987 Add new flag variable flag_writable_rel_rdata.
16988
16989 2012-03-07 Richard Guenther <rguenther@suse.de>
16990
16991 * tree-ssa-math-opts.c (convert_mult_to_widen): Check actual
16992 precision against gimple constraints.
16993
16994 2012-03-06 Richard Sandiford <rdsandiford@googlemail.com>
16995
16996 PR middle-end/52372
16997 * rtl.h (pc_rtx, ret_rtx, simple_return_rtx, cc0_rtx): Redefine as
16998 variables.
16999 (GR_PC, GR_CC0, GR_RETURN, GR_SIMPLE_RETURN): Delete.
17000 * emit-rtl.c (pc_rtx, ret_rtx, simple_return_rtx, cc0_rtx): New
17001 variables.
17002 (init_emit_regs): Move associated initialization to...
17003 (init_emit_once): ...here.
17004
17005 2012-03-06 Richard Henderson <rth@redhat.com>
17006
17007 * config/m68k/m68k.h (ISA_HAS_TAS): New.
17008 * config/m68k/sync.md (atomic_test_and_set): Use it.
17009 (atomic_test_and_set_1): Likewise.
17010
17011 2012-03-06 Michael Meissner <meissner@linux.vnet.ibm.com>
17012
17013 PR target/50310
17014 * config/rs6000/vector.md (vector_uneq<mode>): Add support for
17015 UNEQ, LTGT, ORDERED, and UNORDERED IEEE vector comparisons.
17016 (vector_ltgt<mode>): Likewise.
17017 (vector_ordered<mode>): Likewise.
17018 (vector_unordered<mode>): Likewise.
17019 * config/rs6000/rs6000.c (rs6000_emit_vector_compare_inner): Likewise.
17020
17021 2012-03-06 Aldy Hernandez <aldyh@redhat.com>
17022
17023 * trans-mem.c: New typedef for tm_region_p.
17024 Define vector types for tm_region_p.
17025 (tm_region_init): Replace region_worklist to a vector called
17026 bb_regions.
17027
17028 2012-03-06 Richard Guenther <rguenther@suse.de>
17029
17030 * fold-const.c (build_fold_addr_expr_with_type_loc): Fold
17031 MEM_REF with constant pointer operand.
17032
17033 2012-03-06 Richard Guenther <rguenther@suse.de>
17034
17035 PR middle-end/52493
17036 * tree-ssa-alias.c (ptr_derefs_may_alias_p): Robustify.
17037
17038 2012-03-06 Tristan Gingold <gingold@adacore.com>
17039
17040 * config/vms/vms-c.c (vms_pragma_nomember_alignment): Handle octaword.
17041 (external_model_kind): Improve documentation.
17042 (vms_pragma_extern_model): Handle relaxed_redef.
17043 (vms_c_register_pragma): Allow expansion for nomember_alignment.
17044
17045 2012-03-06 Georg-Johann Lay <avr@gjlay.de>
17046
17047 * doc/invoke.texi (AVR Options): -mmcu=: Document the XMEGA cores.
17048 Explain RAMPD, RAMPX, RAMPDY, RAMPZ usage by avr-gcc.
17049 Some more notes on EIND usage and reorder EIND subsection.
17050
17051 2012-03-06 Tristan Gingold <gingold@adacore.com>
17052
17053 * config/vms/vms.c (VMS_CRTL_LDBL): Rename from VMS_CRTL_PRNTF.
17054 * config/vms/vms-crtlmap.map: Rename PRNTF to LDBL.
17055
17056 2012-03-06 Tristan Gingold <gingold@adacore.com>
17057
17058 * config/vms/t-vmsnative (version): Define.
17059 * config/vms/t-vms (STMP_FIXPROTO, STMP_FIXINC, version): Remove.
17060
17061 2012-03-06 Andrey Belevantsev <abel@ispras.ru>
17062
17063 PR rtl-optimization/52250
17064 * sel-sched-ir.c (maybe_tidy_empty_bb): Try harder to find a bb
17065 to put note list into. Unconditionally call move_bb_info.
17066 (move_bb_info): Do not assert the blocks being in the same region,
17067 just drop the note list if they are not.
17068
17069 2012-03-06 Oleg Endo <olegendo@gcc.gnu.org>
17070
17071 PR target/51244
17072 * config/sh/sh.c (sh_expand_t_scc): Remove SH2A special case
17073 and use unified expansion logic.
17074 * config/sh/sh.md (xorsi3_movrt): Rename to movrt. Move
17075 closer to the existing movt insn.
17076 (negc): Rename insn to *negc. Add new expander.
17077 (movnegt): Use xor pattern for T bit negation. Reserve helper
17078 constant for negc pattern.
17079 (*movnegt): New insn and splitter.
17080
17081 2012-03-05 Bernd Schmidt <bernds@codesourcery.com>
17082
17083 * c-typeck.c (pointer_diff): Check for POINTER_PLUS_EXPR, not
17084 PLUS_EXPR.
17085
17086 2012-03-05 Richard Henderson <rth@redhat.com>
17087
17088 * genemit.c (main): Include "target.h" in insn-emit.c.
17089 * Makefile.in (insn-emit.o): Depend on TARGET_H.
17090 * config/sh/sync.md (atomic_test_and_set): Reference
17091 targetm.atomic_test_and_set_trueval instead of
17092 TARGET_ATOMIC_TEST_AND_SET_TRUEVAL.
17093
17094 2012-03-05 Joern Rennecke <joern.rennecke@embecosm.com>
17095
17096 * config/epiphany/epiphany.c (epiphany_function_value_regno_p):
17097 Make static.
17098
17099 2012-03-05 Steven Bosscher <steven@gcc.gnu.org>
17100
17101 * langhooks.c (add_builtin_type): New function.
17102 * langhooks.h (add_builtin_type): Export it.
17103 * config/mep/mep.c (mep_init_builtins): Use it.
17104 * config/rs6000/rs6000.c (rs6000_init_builtins): Use it.
17105
17106 2012-03-05 Jakub Jelinek <jakub@redhat.com>
17107
17108 PR debug/51902
17109 * tree.h (BLOCK_SAME_RANGE): Define.
17110 * function.c (block_fragments_nreverse): Clear BLOCK_SAME_RANGE
17111 if BLOCK_FRAGMENT_CHAIN is non-NULL, but has it cleared.
17112 Also clear BLOCK_SAME_RANGE if fragment chain's supercontext fragment
17113 isn't equal to supercontext fragment's fragment chain.
17114 Adjust BLOCK_SUPERCONTEXT to point to supercontext fragment's
17115 fragment origin.
17116 (blocks_nreverse_all): Likewise.
17117 (reorder_blocks_1): Compute BLOCK_SAME_RANGE bits. Set
17118 BLOCK_SUPERCONTEXT to supercontext fragment instead of
17119 supercontext fragment's fragment origin.
17120 * dwarf2out.c (add_high_low_attributes): If stmt has the same
17121 range as its parent (or parents thereof etc.), use the parent's
17122 DW_AT_ranges value instead of creating a new .debug_ranges range.
17123
17124 2012-03-05 Richard Henderson <rth@redhat.com>
17125
17126 PR tree-opt/52242
17127 Revert: 2011-11-26 Richard Henderson <rth@redhat.com>
17128 * omp-low.c (expand_omp_atomic): Assume anything aligned to
17129 BIGGEST_ALIGNMENT is aligned.
17130
17131 2012-03-05 Richard Henderson <rth@redhat.com>
17132
17133 * config/sh/sh.h (TARGET_ATOMIC_TEST_AND_SET_TRUEVAL): Move...
17134 * config/sh/sh.c: ... here.
17135
17136 2012-03-05 Richard Henderson <rth@redhat.com>
17137
17138 PR target/52481
17139 * config/m68k/sync.md (atomic_test_and_set): Use expand_simple_unop
17140 instead of calling negqi2 directly.
17141
17142 2012-03-05 Aldy Hernandez <aldyh@redhat.com>
17143
17144 PR middle-end/52463
17145 * trans-mem.c (tm_region_init): Use last_basic_block.
17146
17147 2012-03-05 Oleg Endo <olegendo@gcc.gnu.org>
17148
17149 * config/sh/sh.h (TARGET_ATOMIC_TEST_AND_SET_TRUEVAL): New hook.
17150 * config/sh/sync.md (atomic_test_and_set): New expander.
17151 (tasb, atomic_test_and_set_soft): New insns.
17152 * config/sh/sh.opt (menable-tas): New option.
17153 * doc/invoke.texi (SH Options): Document it.
17154
17155 2012-03-05 Richard Guenther <rguenther@suse.de>
17156
17157 * cfgloop.c (verify_loop_structure): Verify dominators before
17158 using them.
17159 * graphite-clast-to-gimple.c (graphite_verify): Do not verify
17160 dominators from here.
17161 * graphite-scop-detection.c (create_sese_edges): Likewise.
17162 * loop-doloop.c (doloop_optimize_loops): Likewise.
17163 * loop-init.c (loop_optimizer_init): Likewise.
17164 * loop-unroll.c (unroll_and_peel_loops): Likewise.
17165 * loop-unswitch.c (unswitch_loops): Likewise.
17166 * tree-ssa-loop-manip.c (tree_transform_and_unroll_loop): Likewise.
17167 * tree-parloops.c (parallelize_loops): Likewise. Verify
17168 only when checking is enabled.
17169 * tree-loop-distribution.c (tree_loop_distribution): Likewise.
17170
17171 2012-03-05 Bernd Schmidt <bernds@codesourcery.com>
17172
17173 * genautomata.c (parse_automata_opt): New static function.
17174 (initiate_automaton_gen): Remove all option handling code. Remove
17175 argc argument. All callers changed.
17176 (main): Call init_rtx_reader_args_cb with the new function as argument.
17177
17178 2012-03-05 Richard Guenther <rguenther@suse.de>
17179
17180 * cfgexpand.c (gimple_expand_cfg): Free dominator info.
17181 * tree-if-conv.c (combine_blocks): Free post-dominator info
17182 after breaking it.
17183 * tree-parloops.c (create_parallel_loop): Free and re-compute
17184 dominator info after breaking it.
17185
17186 2012-03-05 Richard Guenther <rguenther@suse.de>
17187
17188 PR middle-end/52353
17189 * optabs.h (trapv_unoptab_p): New function.
17190 (trapv_binoptab_p): Likewise.
17191 * optabs.c (expand_binop): Use emit_libcall_block_1 with
17192 a proper equiv_may_trap argument.
17193 (expand_unop): Likewise.
17194 (emit_libcall_block_1): Take extra argument whether the
17195 instruction may trap. Renamed from ...
17196 (emit_libcall_block): ... this. New wrapper.
17197
17198 2012-03-05 Jakub Jelinek <jakub@redhat.com>
17199
17200 PR tree-optimization/51721
17201 * tree-vrp.c (register_edge_assert_for_2): If comparing
17202 lhs of right shift by constant with an integer constant,
17203 add ASSERT_EXPRs for the rhs1 of the right shift.
17204
17205 * cfgrtl.c (cfg_layout_merge_blocks): Cleanup.
17206
17207 2012-03-05 Richard Guenther <rguenther@suse.de>
17208
17209 * tree.c (integer_zerop): Handle VECTOR_CSTs.
17210 (integer_onep): Likewise.
17211 (integer_all_onesp): Likewise.
17212
17213 2012-03-05 Georg-Johann Lay <avr@gjlay.de>
17214
17215 * config/avr/avr.md (*umaddqihi4.2): New insn-and-split.
17216
17217 2012-03-04 H.J. Lu <hongjiu.lu@intel.com>
17218
17219 * config/i386/i386.c (pro_epilogue_adjust_stack): Check Pmode
17220 instead of TARGET_64BIT.
17221
17222 2012-03-04 H.J. Lu <hongjiu.lu@intel.com>
17223
17224 * config/i386/i386.c (ix86_expand_prologue): Check Pmode to set
17225 adjust_stack_insn.
17226
17227 2012-03-04 H.J. Lu <hongjiu.lu@intel.com>
17228
17229 * config/i386/i386.c (ix86_print_operand_address): Only handle
17230 zero-extended DImode addresses.
17231
17232 2012-03-04 Uros Bizjak <ubizjak@gmail.com>
17233
17234 * config/i386/i386.c (ix86_print_operand) <case '+'>: Declare
17235 taken and cputaken as bool.
17236
17237 2012-03-04 Uros Bizjak <ubizjak@gmail.com>
17238
17239 * config/i386/constraints.md (Ya): New internal constraint.
17240 * config/i386/i386.md (zero_extendsidi2): Remove expansion.
17241 (*zero_extendsidi2_rex64): Add x,x alternative.
17242 (*zero_extendsidi2): Ditto. Add o,0 alternative.
17243 Remove flags reg clobber. Adjust corresponding splits.
17244 (zero_extend<mode>si2): Macroize expander from zero_extendhisi2 and
17245 zero_extendqisi2 expanders using SWI12 mode iterator.
17246 (zero_extend<mode>si2_and): Macroize insn from
17247 zero_extendhisi2_and and zero_extendqisi2_and. Merge corresponding
17248 splitters.
17249 (*zero_extend<mode>si2): Macroize insn from
17250 *zero_extendhisi2_movzbl and *zero_extendqisi2_movzbl.
17251 (*zero_extend*2_movzbl_and): Remove insn patterns.
17252 (zero_extendqihi2_and): Merge corresponding splitter.
17253 (*zero_extendqihi2): Rename from *zero_extendqihi2_movzbl.
17254 (*zero_extend*2_movzbl_and): Remove insn patterns.
17255 (*anddi_1): Split TYPE_IMOVX instructions.
17256 (*andsi_1): Use Ya for alternative 2. Split TYPE_IMOVX instructions.
17257 (*andhi_1): Ditto.
17258 (and->zext splitter): Add splitter pattern.
17259 (zero extend with andsi3 splitter): Adjust zero_extend pattern.
17260
17261 2012-03-04 Sandra Loosemore <sandra@codesourcery.com>
17262
17263 * doc/invoke.texi (C++ Dialect Options): Minor copy-edits to
17264 x86-specific text.
17265 (Debugging Options): Likewise.
17266 (Optimize Options): Likewise.
17267 (i386 and x86-64 Options): Discuss -march before -mtune, consistently
17268 with other architectures. Use official processor names with correct
17269 spelling/capitalization. Fix formatting and grammar issues.
17270 (i386 and x86-64 Windows Options): Similar cleanup here.
17271
17272 2012-03-03 Kaz Kojima <kkojima@gcc.gnu.org>
17273
17274 * config/sh/sh.md (abssi2): Add TARGET_SH1 condition.
17275
17276 2012-03-03 Kaz Kojima <kkojima@gcc.gnu.org>
17277
17278 * config/sh/sh.c (sh_dwarf_register_span): Don't apply
17279 DBX_REGISTER_NUMBER.
17280
17281 2012-03-03 Kaz Kojima <kkojima@gcc.gnu.org>
17282
17283 * config/sh/sh.c (shiftcosts): Return MAX_COST when the first
17284 operand is CONST_INT. Take COSTS_N_INSNS into account.
17285 (sh_rtx_costs): Don't apply COSTS_N_INSNS to the return value
17286 of shiftcosts.
17287
17288 2012-03-02 Richard Henderson <rth@redhat.com>
17289
17290 * optabs.c (expand_atomic_test_and_set): Honor
17291 atomic_test_and_set_trueval even when atomic_test_and_set
17292 optab is not in use.
17293
17294 2012-03-02 Kaz Kojima <kkojima@gcc.gnu.org>
17295
17296 PR target/48596
17297 PR target/48806
17298 * config/sh/sh.c (sh_register_move_cost): Increase cost between
17299 GENERAL_REGS and FP_REGS for SImode.
17300
17301 2012-03-02 Oleg Endo <olegendo@gcc.gnu.org>
17302
17303 PR target/49486
17304 * config/sh/sh.md (negdi2): Add TARGET_SH1 condition.
17305 (absdi2): New expander.
17306 (*absdi2, *negabsdi2, negdi_cond): New insns and splits.
17307
17308 2012-03-02 Oleg Endo <olegendo@gcc.gnu.org>
17309
17310 * config/sh/sync.md (atomic_exchange<mode>): New expander.
17311 (atomic_exchange<mode>_soft): New insn.
17312
17313 2012-03-02 Oleg Endo <olegendo@gcc.gnu.org>
17314
17315 * config/sh/sync.md: Update copyright notice dates.
17316 (atomic_compare_and_swap<mode>): Use SImode for return value instead
17317 of QImode.
17318 (atomic_compare_and_swap<mode>_soft): Likewise.
17319
17320 2012-03-02 Oleg Endo <olegendo@gcc.gnu.org>
17321
17322 PR target/31640
17323 * config/sh/sh.h (LOOP_ALIGN): Move logic to sh_loop_align.
17324 * config/sh/sh.c: Update copyright notice dates.
17325 (sh_loop_align): Add logic from LOOP_ALIGN. Don't disable loop
17326 alignment for TARGET_HARD_SH4.
17327 (sh_option_override): Reduce default function alignment. Set
17328 loop alignment to 4 bytes when not optimizing for size.
17329
17330 2012-03-02 Maxim Kuvyrkov <maxim@codesourcery.com>
17331
17332 PR middle-end/50335
17333 * doc/invoke.texi (floop-flatten): Remove.
17334 * toplev.c (process_options): Remove references to flag_loop_flatten.
17335 * tree-ssa-loop.c (gate_graphite_transform): Same.
17336 * common.opt (floop-flatten): Obsolete.
17337 * graphite-poly.c (apply_poly_transforms): Remove reference to
17338 flag_loop_flatten.
17339 * Makefile.in (graphite-flattening.o): Remove.
17340 * graphite-flattening.c: Remove.
17341
17342 2012-03-02 Uros Bizjak <ubizjak@gmail.com>
17343
17344 * compare-elim.c (find_comparisons_in_bb): Eliminate only compares
17345 having mode compatible with the mode of previous compare. Substitute
17346 compare mode of previous compare with the mode, compatible
17347 with eliminated and previous compare.
17348
17349 2012-03-02 Peter Bergner <bergner@vnet.ibm.com>
17350
17351 * config/rs6000/dfp.md (floatdidd2): New define_insn.
17352
17353 2012-03-02 Uros Bizjak <ubizjak@gmail.com>
17354
17355 * config/i386/i386.c (ix86_cc_modes_compatible): Declare CCZmode
17356 compatible with CCGOCmode and CCGCmode.
17357
17358 2012-03-02 Peter Bergner <bergner@vnet.ibm.com>
17359
17360 * config/rs6000/vsx.md (vsx_set_<mode>): Reorder operands.
17361
17362 2012-03-02 Ulrich Weigand <ulrich.weigand@linaro.org>
17363
17364 * config/arm/arm.c (arm_sat_operator_match): New function.
17365 * config/arm/arm-protos.h (arm_sat_operator_match): Add prototype.
17366 * config/arm/arm.md ("insn" attribute): Add "sat" value.
17367 ("SAT", "SATrev"): New code iterators.
17368 ("SATlo", "SAThi"): New code iterator attributes.
17369 ("*satsi_<SAT:code>"): New pattern.
17370 ("*satsi_<SAT:code>_shift"): Likewise.
17371 * config/arm/arm-fixed.md ("arm_ssatsihi_shift"): Add "insn"
17372 and "shift" attributes.
17373 ("arm_usatsihi"): Add "insn" attribute.
17374 * config/arm/predicates.md (sat_shift_operator): Allow multiplication
17375 by powers of two. Do not allow shift by 32.
17376
17377 2012-03-02 Uros Bizjak <ubizjak@gmail.com>
17378
17379 PR target/46716
17380 * config/i386/i386.c (construct_container): Use gen_reg_or_parallel
17381 to pass the argument in the register of "natural" mode.
17382
17383 2012-03-02 Richard Guenther <rguenther@suse.de>
17384
17385 PR tree-optimization/52406
17386 * tree-data-ref.h: Update documentation about DR_BASE_OBJECT.
17387 (struct indices): Add unconstrained_base member.
17388 (struct dr_alias): Remove unused vops member.
17389 (DR_UNCONSTRAINED_BASE): New define.
17390 * tree-data-ref.c (dr_analyze_indices): For COMPONENT_REFs
17391 add indices to allow their disambiguation. Make DR_BASE_OBJECT
17392 be an artificial access that covers the whole indexed object,
17393 or mark it with DR_UNCONSTRAINED_BASE if we cannot do so. Canonicalize
17394 plain decl base-objects to their MEM_REF variant.
17395 (dr_may_alias_p): When the base-object of either data reference
17396 has unknown size use only points-to information.
17397 (compute_affine_dependence): Make dumps easier to read and
17398 more verbose.
17399 * tree-vect-data-ref.c (vector_alignment_reachable_p): Use
17400 DR_REF when looking for packed references.
17401 (vect_supportable_dr_alignment): Likewise.
17402
17403 2012-03-02 Greta Yorsh <Greta.Yorsh@arm.com>
17404
17405 * config/arm/arm-ldmstm.ml (write_ldm_commutative_peephole):
17406 Improve conditions for peepholes of loads followed by commutative
17407 operators.
17408 * config/arm/ldmstm.md: Regenerated.
17409
17410 2012-03-02 Richard Guenther <rguenther@suse.de>
17411
17412 * BASE-VER: Set to 4.8.0.
17413
17414 2012-03-01 Richard Earnshaw <rearnsha@arm.com>
17415
17416 * config.gcc (obsolete): Add all ARM targets using the FPA.
17417 (with_fpu): Obsolete selection of the FPA or Maverick on ARM.
17418 * doc/install.texi: Avoid references to obsolete ARM ports.
17419
17420 2012-03-01 Joern Rennecke <joern.rennecke@embecosm.com>
17421
17422 * config/epiphany/epiphany.md (movmisalign<mode>): New patterns.
17423
17424 2012-03-01 Jeremy Bennett <jeremy.bennett@embecosm.com>
17425 Joern Rennecke <joern.rennecke@embecosm.com>
17426
17427 * doc/extend.texi: Expand and update information on interrupt
17428 attribute for Epiphany.
17429
17430 2012-03-01 Oleg Endo <olegendo@gcc.gnu.org>
17431
17432 * config/sh/sh-protos.h: Update copyright notice dates.
17433 * config/sh/sh.h: Likewise.
17434 * config/sh/sh.md: Likewise.
17435 * config/sh/constraints.md: Likewise.
17436 * config/sh/predicates.md: Likewise.
17437
17438 2012-03-01 Oleg Endo <olegendo@gcc.gnu.org>
17439
17440 * config/sh/sh-protos.h (tertiary_reload_operand): Remove dead function.
17441 * config/sh/sh.c (tertiary_reload_operand): Likewise.
17442
17443 2012-03-01 Oleg Endo <olegendo@gcc.gnu.org>
17444
17445 * config/sh/constraints.md: Fix comment typo.
17446
17447 2012-03-01 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
17448
17449 PR target/52408
17450 * config/pa/pa.md (zvdep_imm32): Change type of variable x from int to
17451 unsigned HOST_WIDE_INT.
17452 (zvdep_imm64): Likewise.
17453 (vdepi_ior): Change type of variable x from int to HOST_WIDE_INT.
17454 (vdepi_and): Likewise.
17455 Likewise for unamed 64-bit patterns.
17456 * config/pa/predicates.md (lhs_lshift_cint_operand): Update comment.
17457
17458 2012-03-01 Alexandre Oliva <aoliva@redhat.com>
17459
17460 PR debug/52001
17461 PR rtl-optimization/52417
17462 * cselib.c (cselib_any_perm_equivs): New variable.
17463 (cselib_reset_table): Check that it's not set when not
17464 preserving constants.
17465 (cselib_add_permanent_equiv): Set it.
17466 (cselib_have_permanent_equivalences): New.
17467 (cselib_init, cselib_finish): Reset it.
17468 * cselib.h (cselib_have_permanent_equivalences): Declare.
17469 * alias.c (get_addr): Restore earlier behavior when there
17470 aren't permanent equivalences.
17471
17472 2012-03-01 Steven Bosscher <steven@gcc.gnu.org>
17473
17474 * config/mn10300/mn10300-modes.def: Fix copyright notice.
17475 * config/v850/v850-modes.def: Fix copyright notice.
17476
17477 2012-03-01 Georg-Johann Lay <avr@gjlay.de>
17478
17479 * doc/extend.texi (AVR Built-in Functions): Document
17480 __builtin_avr_flash_segment.
17481
17482 * config/avr/builtins.def (__builtin_avr_flash_segment): New entry.
17483 * config/avr/avr.md (flash_segment, flash_segment1): New expanders.
17484 (*split.flash_segment): New insn-and-split.
17485 * config/avr/avr.c (avr_init_builtins): Add local variables:
17486 const_memx_void_node, const_memx_ptr_type_node,
17487 char_ftype_const_memx_ptr.
17488
17489 2012-03-01 Jakub Jelinek <jakub@redhat.com>
17490
17491 PR tree-optimization/52445
17492 * tree-ssa-phiopt.c (struct name_to_bb): Remove ssa_name field,
17493 add ssa_name_ver, offset and size fields and change store field
17494 to bool.
17495 (name_to_bb_hash, name_to_bb_eq): Adjust for the above changes.
17496 (add_or_mark_expr): Likewise. Only consider previous stores
17497 with the same size and offset.
17498 (nt_init_block): Only look at gimple_assign_single_p stmts,
17499 doesn't look at rhs2.
17500
17501 2012-03-01 Richard Guenther <rguenther@suse.de>
17502
17503 PR middle-end/52443
17504 * tree-cfg.c (verify_gimple_assign_unary): Allow any
17505 conversions from integral types to pointer types.
17506
17507 2012-03-01 Georg-Johann Lay <avr@gjlay.de>
17508
17509 * config/avr/avr-c.c (avr_cpu_cpp_builtins): Restore built-in
17510 defines for __UINT24_MAX__, __INT24_MAX__, __INT24_MIN__
17511 unintentionally removed in r184616.
17512
17513 2012-03-01 Venkataramanan Kumar <venkataramanan.kumar@amd.com>
17514
17515 * doc/invoke.texi: Document AMD bdver2 and remove mentioning
17516 3DNow from bdver1.
17517
17518 2012-02-29 Jakub Jelinek <jakub@redhat.com>
17519 Uros Bizjak <ubizjak@gmail.com>
17520
17521 PR target/52437
17522 * config/i386/sse.md (vec_set<mode>_0): Swap "*r" and "fF"
17523 alternatives, add "e" constraint to the new last alternative
17524 and ! to last 3 alternatives.
17525
17526 2012-02-29 Eric Botcazou <ebotcazou@adacore.com>
17527
17528 * dwarf2out.c (modified_type_die): Set DW_AT_GNAT_descriptive_type and
17529 DW_AT_artificial attributes at the end of the processing.
17530 (gen_array_type_die): Likewise.
17531 (gen_enumeration_type_die): Likewise.
17532 (gen_struct_or_union_type_die): Likewise.
17533 (add_gnat_descriptive_type_attribute): Do not suppress debug info for
17534 the parent type.
17535
17536 2012-02-29 Jakub Jelinek <jakub@redhat.com>
17537
17538 PR middle-end/52419
17539 * expr.c (expand_assignment): If doing misaligned store that doesn't
17540 cover all mode bits, perform a RMW cycle.
17541
17542 PR tree-optimization/52429
17543 * tree-parloops.c (separate_decls_in_region_debug): Return early
17544 if var is LABEL_DECL.
17545
17546 2012-02-29 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
17547
17548 PR tree-optimization/52424
17549 * tree-ssa-dom.c (dom_opt_leave_block): Push a marker before
17550 calling dom_thread_across_edge.
17551
17552 2012-02-29 Georg-Johann Lay <avr@gjlay.de>
17553
17554 * config/avr/avr.c: Move definition of TARGET macros to end of file.
17555
17556 2012-02-29 Georg-Johann Lay <avr@gjlay.de>
17557
17558 * config/avr/avr-protos.h (avr_output_bld): Remove unused prototype.
17559 * config/avr/avr.c (avr_output_bld): Remove unused function.
17560 (avr_out_sbxx_branch): Use "%T" to print bit position.
17561
17562 2012-02-29 Georg-Johann Lay <avr@gjlay.de>
17563
17564 * config/avr/avr.md: Untabify.
17565
17566 2012-02-29 Georg-Johann Lay <avr@gjlay.de>
17567
17568 * config/avr/avr.md (eqne): New code iterator.
17569 (*dec-and-branchsi): Use it in text peephole's condition.
17570 (*dec-and-branchhi): Ditto.
17571 (*dec-and-branchqi): Ditto.
17572
17573 2012-02-29 Georg-Johann Lay <avr@gjlay.de>
17574
17575 PR target/49939
17576 * config/avr/avr.h (ASM_SPEC): Add -mno-skip-bug if we know that
17577 the device does not have the skip-bug.
17578
17579 2012-02-29 Oleg Endo <olegendo@gcc.gnu.org>
17580
17581 * doc/invoke.texi (-msoft-atomic): Add more detailed description.
17582 (-mbranch-cost, -mcbranchdi -mcmpeqdi -mfused-madd
17583 -mpretend-cmove): New.
17584
17585 2012-02-29 Jakub Jelinek <jakub@redhat.com>
17586
17587 PR bootstrap/52397
17588 * df.h (struct df_d): Adjust comment that hard_regs_live_count
17589 doesn't count DEBUG_INSN refs.
17590 * df-scan.c (df_ref_create_structure): Don't set DF_HARD_REG_LIVE
17591 for DEBUG_INSN refs.
17592
17593 2012-02-28 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
17594
17595 Partially revert:
17596
17597 2012-02-20 Richard Guenther <rguenther@suse.de>
17598 PR tree-optimization/52298
17599 * tree-vect-stmts.c (vectorizable_load): Properly use
17600 STMT_VINFO_DR_STEP instead of DR_STEP when vectorizing outer loops.
17601
17602 2012-02-28 Aldy Hernandez <aldyh@redhat.com>
17603
17604 PR middle-end/51752
17605 * gimple.h (gimple_in_transaction): New.
17606 (gimple_set_in_transaction): New.
17607 (struct gimple_statement_base): Add in_transaction field.
17608 * tree-ssa-loop-im.c: (movement_possibility): Restrict movement of
17609 transaction loads.
17610 (tree_ssa_lim_initialize): Compute transaction bits.
17611 * tree.h (compute_transaction_bits): Protoize.
17612 * trans-mem.c (tm_region_init): Use the heap to store BB
17613 auxilliary data.
17614 (compute_transaction_bits): New.
17615
17616 2012-02-28 Bernhard Reutner-Fischer <aldot@gcc.gnu.org>
17617
17618 * gcc.c (display_help): Document --help=common and sort entries
17619 alphabetically.
17620
17621 2012-02-28 Bernhard Reutner-Fischer <aldot@gcc.gnu.org>
17622
17623 * doc/install.texi: Document check-$LANG specific shortcuts
17624
17625 2012-02-28 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
17626
17627 PR target/51534
17628 * config/arm/arm.c (neon_builtin_data): Add entries for vcgeu
17629 and vcgtu.
17630 * config/arm/arm_neon.h: Regenerate.
17631 * config/arm/neon.md (unspec): Add UNSPEC_VCGEU, and UNSPEC_VCGTU.
17632 (neon_vcgeu): New insn.
17633 (neon_vcgtu): Likewise.
17634 * config/arm/neon.ml (s_8_32, u_8_32): New lists.
17635 (ops): Unsigned comparison intrinsics call a different builtin.
17636
17637 2012-02-28 Richard Guenther <rguenther@suse.de>
17638
17639 PR target/52407
17640 * config/i386/i386.c (ix86_expand_vector_set): Fix element
17641 ordering for the VEC_CONCAT for two element vectors for
17642 V2SFmode, V2SImode and V2DImode.
17643
17644 2012-02-28 Richard Earnshaw <rearnsha@arm.com>
17645
17646 PR target/49448
17647 * config.gcc (arm*-*-linux*): Use an unambiguous pattern for
17648 detecting big-endian triplets.
17649
17650 2012-02-28 Richard Earnshaw <rearnsha@arm.com>
17651
17652 * arm.c (aapcs_vfp_is_call_or_return_candidate): Only use the machine
17653 mode if there is no type information available.
17654
17655 2012-02-28 Thomas Koenig <tkoenig@gcc.gnu.org>
17656
17657 PR tree-optimization/53207
17658 * doc/invoke.texi: Document as experimental and relying on graphite.
17659
17660 2012-02-28 Georg-Johann Lay <avr@gjlay.de>
17661
17662 * config/avr/avr-devices.c (avr_mcu_type): Adjust NULL part
17663 of initializer to changes from r184614.
17664
17665 2012-02-28 Richard Guenther <rguenther@suse.de>
17666
17667 PR tree-optimization/52395
17668 * tree-sra.c (build_ref_for_offset): Also look at the base
17669 TYPE_ALIGN when figuring out the alignment of the replacement.
17670
17671 2012-02-28 Richard Guenther <rguenther@suse.de>
17672
17673 PR tree-optimization/52402
17674 * ipa-prop.c (ipa_modify_call_arguments): Properly use
17675 mis-aligned types when creating the accesses at the call site.
17676
17677 2012-02-28 Georg-Johann Lay <avr@gjlay.de>
17678
17679 * config/avr/builtins.def: New file.
17680 * config/avr/t-avr (avr.o, avr-c.o): Depend on it.
17681 * config/avr/avr.c (enum avr_builtin_id): Use it.
17682 (avr_init_builtins): Use it. And use avr_bdesc.
17683 (bdesc_1arg): Remove.
17684 (bdesc_2arg): Remove.
17685 (bdesc_3arg): Remove.
17686 (struct avr_builtin_description): Add field n_args.
17687 (avr_bdesc): New static variable using builtins.def.
17688 (avr_expand_builtin): Use it.
17689 Don't call avr_expand_delay_cycles if op0 is not CONST_INT.
17690 (avr_fold_builtin): Fold AVR_BUILTIN_SWAP.
17691 Don't fold AVR_BUILTIN_INSERT_BITS if arg0 is not INTEGER_CST.
17692
17693 2012-02-28 Georg-Johann Lay <avr@gjlay.de>
17694
17695 PR target/52148
17696 * config/avr/avr.md (movmem_<mode>): Replace match_operand that
17697 match only one single hard register with respective hard reg rtx.
17698 (movmemx_<mode>): Ditto.
17699 * config/avr/avr.c (avr_emit_movmemhi): Adapt expanding to new
17700 insn anatomy of movmem[x]_<mode>.
17701 (avr_out_movmem): Same for printing assembler and operand usage.
17702
17703 2012-02-28 Georg-Johann Lay <avr@gjlay.de>
17704
17705 PR target/49868
17706 PR target/52261
17707 * doc/extend.texi (AVR Named Address Spaces): No more try to fix
17708 address spaces located outside of device flash.
17709
17710 * config/avr/avr.h (base_arch_s): Remove field n_segments.
17711 (mcu_type_s): Add field n_flash.
17712 * config/avr/avr-devices.c (avr_arch_types): Remove .n_segments.
17713 Set .have_elpm and .have_elpmx to 1 for avrxmega4 and avrxmega5.
17714 (AVR_MCU): Add N_FLASH argument.
17715 * config/avr/avr-mcus.def (AVR_MCU): Add initializer for .n_flash.
17716 * config/avr/avr-c.c (avr_cpu_cpp_builtins): Only define built-in
17717 macro __FLASH<n> if that address space makes sense for the device.
17718 * config/avr/avr.c (avr_out_lpm): Don't try to fix address spaces
17719 outside of target flash.
17720 (avr_asm_named_section): Ditto.
17721 (avr_asm_select_section): Ditto.
17722 (avr_addr_space_convert): Ditto.
17723 (avr_emit_movmemhi): Ditto.
17724 (avr_nonconst_pointer_addrspace, avr_pgm_check_var_decl): Error if
17725 address space is outside of device flash.
17726 (avr_insert_attributes): Ditto.
17727 (avr_xload_libgcc_p): Use avr_current_device->n_flash instead of
17728 avr_current_arch->n_segments.
17729
17730 2012-02-27 H.J. Lu <hongjiu.lu@intel.com>
17731
17732 PR target/52352
17733 * config/i386/i386.md (*movabs<mode>_1): Enable only for TARGET_LP64.
17734 (*movabs<mode>_2): Likewise.
17735
17736 2012-02-27 Jakub Jelinek <jakub@redhat.com>
17737
17738 PR target/52375
17739 * config/arm/neon.md (vashr<mode>3, vlshr<mode>3): Use
17740 s_register_operand in the test instead of REG_P. Don't call
17741 gen_reg_rtx if it won't be used.
17742
17743 PR tree-optimization/52376
17744 * ipa-split.c (split_function): Ignore CLOBBER stmts.
17745
17746 2012-02-27 Stuart Henderson <shenders@gcc.gnu.org>
17747
17748 * ifcvt.c (noce_get_condition): Check condition variable is not
17749 small_register_classes_for_mode_p before accepting.
17750
17751 2012-02-27 Uros Bizjak <ubizjak@gmail.com>
17752
17753 * config/i386/i386.md (*movabs<mode>_1): Fix operand 1 constraints.
17754
17755 2012-02-27 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
17756
17757 Revert:
17758 2012-01-09 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
17759 * config/arm/arm-cores.def (cortex-a15): Use cortex_a15_tune for
17760 tuning parameters.
17761 * config/arm/arm.c (arm_cortex_a15_tune): New static variable.
17762
17763 2012-02-27 Oleg Endo <olegendo@gcc.gnu.org>
17764
17765 * config/sh/sh.h: Delete dead GO_IF_LEGITIMATE_INDEX macro.
17766
17767 2012-02-26 Oleg Endo <olegendo@gcc.gnu.org>
17768
17769 * config/sh/predicates.md: Remove blank lines.
17770 * config/sh/sh.c: Fix typos in comments.
17771 * config/sh/constraints.md: Likewise.
17772 * config/sh/sh.md: Remove blank lines.
17773 Fix typos in comments. Use ;; as comment characters.
17774
17775 2012-02-26 Walter Lee <walt@tilera.com>
17776
17777 * config/tilegx/tilegx.c (match_pcrel_step2): Fix instruction pattern.
17778 (replace_mov_pcrel_step2): Ditto.
17779
17780 2012-02-25 Alexandre Oliva <aoliva@redhat.com>
17781
17782 PR debug/52001
17783 * alias.c (refs_newer_value_cb, refs_newer_value_p): New.
17784 (get_addr): Walk canonical value's locs. Avoid returning VALUEs
17785 and locs that reference values newer than the non-canonical value
17786 at hand. Return the canonical value as a worst case.
17787 (memrefs_conflict_p): Walk canonical value's locs.
17788
17789 PR debug/52001
17790 * cselib.c (preserve_only_constants): Rename to...
17791 (preserve_constants_and_equivs): ... this. Split out...
17792 (invariant_or_equiv_p): ... this. Preserve plus expressions
17793 of other preserved expressions too.
17794 (cselib_reset_table): Adjust.
17795 * var-tracking.c (reverse_op): Use canonical value to build
17796 reverse operation.
17797
17798 2012-02-23 Kai Tietz <ktietz@redhat.com>
17799
17800 * config/i386/i386.c (ix86_delegitimize_address): Handle
17801 UNSPEC_PCREL plus displacement.
17802
17803 2012-02-24 Georg-Johann Lay <avr@gjlay.de>
17804
17805 PR target/52261
17806 * config/avr/avr.c (avr_out_movhi_mr_r_xmega): Use base
17807 to test for unusedness in st X addressing.
17808
17809 2012-02-24 Richard Guenther <rguenther@suse.de>
17810
17811 PR middle-end/52361
17812 * gimple.c (walk_gimple_op): Use predicates with less redundant tests.
17813 (is_gimple_reg_type): Move inline ...
17814 * gimple.h (is_gimple_reg_type): ... here.
17815
17816 2012-02-24 Richard Guenther <rguenther@suse.de>
17817
17818 PR middle-end/52361
17819 * passes.c (execute_function_todo): When verifying SSA form
17820 verify gimple form first.
17821 * tree-ssa.c (verify_ssa): Do not verify gimple form here.
17822
17823 2012-02-24 Richard Guenther <rguenther@suse.de>
17824
17825 PR middle-end/52355
17826 * fold-const.c (fold_addr_of_array_ref_difference): New function.
17827 (fold_binary_loc): Use it to extend the existing &a[i] - &a[j] folding.
17828
17829 2012-02-13 Bernhard Reutner-Fischer <aldot@gcc.gnu.org>
17830
17831 * tree-if-conv (predicate_scalar_phi): Commentary typo fix.
17832
17833 2012-02-23 Bernhard Reutner-Fischer <aldot@gcc.gnu.org>
17834
17835 * tree-phinodes.c (make_phi_node): Mark static.
17836 * tree-flow.h (make_phi_node): Remove extern decl.
17837 * doc/gimple.texi (make_phi_node): Remove documentation.
17838
17839 2012-02-23 Bernhard Reutner-Fischer <aldot@gcc.gnu.org>
17840
17841 * tree-into-ssa (update_ssa): Avoid trailing whitespace in dump_file.
17842 * tree-ssa-sccvn.c (print_scc): Ditto.
17843
17844 2012-02-23 Bernhard Reutner-Fischer <aldot@gcc.gnu.org>
17845
17846 * doc/passes.texi (Full redundancy elimination): Fix typo.
17847
17848 2012-02-23 Bernhard Reutner-Fischer <aldot@gcc.gnu.org>
17849
17850 * doc/invoke.texi (-fdse, -fdce): Remove duplicate entries.
17851
17852 2012-02-23 Eric Botcazou <ebotcazou@adacore.com>
17853
17854 PR bootstrap/52287
17855 * haifa-sched.c (rank_for_schedule): Stabilize sort for debug insns.
17856
17857 2012-02-23 Uros Bizjak <ubizjak@gmail.com>
17858
17859 PR c/52290
17860 * c-decl.c (start_function): Exit early if decl1 is not FUNTION_DECL.
17861
17862 2012-02-23 Georg-Johann Lay <avr@gjlay.de>
17863
17864 * config/avr/avr.md (code_stdname): Add ior, xor.
17865 (xior): New code iterator.
17866 (*<code_stdname><mode>qi.byte0): Use xior instead of ior.
17867 (*<code_stdname><mode>qi.byte1-3): Ditto.
17868
17869 2012-02-23 Jakub Jelinek <jakub@redhat.com>
17870
17871 PR tree-optimization/52019
17872 * ipa-split.c (find_return_bb, find_retval, visit_bb): Ignore
17873 CLOBBER stmts.
17874
17875 2012-02-23 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
17876
17877 * acinclude.m4: Use HAVE_INITFINI_ARRAY_SUPPORT instead of
17878 HAVE_INITFINI_ARRAY to work around namespace pollution in
17879 certain versions of newlib system headers.
17880 * config.in: Regenerate.
17881 * configure: Regenerate.
17882 * config/initfini-array.h: Use HAVE_INITFINI_ARRAY_SUPPORT
17883 instead of HAVE_INITFINI_ARRAY.
17884
17885 2012-02-22 Uros Bizjak <ubizjak@gmail.com>
17886
17887 PR target/52330
17888 * config/i386/i386.c (ix86_print_operand) <case 'H'>: Error out if x
17889 is not offsettable memory reference.
17890
17891 2012-02-22 Georg-Johann Lay <avr@gjlay.de>
17892
17893 PR target/18145
17894 * config/avr/avr.c (avr_asm_output_aligned_decl_common): Skip
17895 setting avr_need_clear_bss_p for __gnu_lto* symbols.
17896
17897 2012-02-22 Georg-Johann Lay <avr@gjlay.de>
17898
17899 * config/avr/avr.h (avr_accumulate_outgoing_args): Return int.
17900 * config/avr/avr.c (avr_accumulate_outgoing_args): Return int.
17901
17902 2012-02-22 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
17903
17904 * configure.ac (LIB_TLS_SPEC): Enforce use of alternate thread
17905 library on Solaris 8 even without TLS support.
17906 * configure: Regenerate.
17907
17908 2012-02-22 Richard Guenther <rguenther@suse.de>
17909
17910 PR middle-end/52329
17911 * gimple-fold.c (fold_stmt_1): Also canonicalize ADDR_EXPRs
17912 for GIMPLE_DEBUG stmts.
17913
17914 2012-02-22 Martin Jambor <mjambor@suse.cz>
17915
17916 PR middle-end/51782
17917 * emit-rtl.c (set_mem_attributes_minus_bitpos): Set address space
17918 according to the base object.
17919
17920 2012-02-22 Georg-Johann Lay <avr@gjlay.de>
17921
17922 PR rtl-optimization/50063
17923 * config/avr/avr.md (movhi_sp_r): Handle -1 (unknown IRQ state)
17924 and 2 (8-bit SP) in operand 2.
17925 * config/avr/avr.c (avr_prologue_setup_frame): Adjust prologue
17926 setup to use movhi_sp_r instead of vanilla move to write SP.
17927 Adjust REG_CFA notes to superseed unspec.
17928 (expand_epilogue): Adjust epilogue setup to use movhi_sp_r instead
17929 of vanilla move.
17930 As function body might contain CLI or SEI: Use irq_state 0 (IRQ
17931 known to be off) only with TARGET_NO_INTERRUPTS. Never use
17932 irq_state 1 (IRQ known to be on) here.
17933
17934 2012-02-21 Bernd Schmidt <bernds@codesourcery.com>
17935
17936 * ira.c (check_allocation): Use REG_WORDS_BIG_ENDIAN, not
17937 WORDS_BIG_ENDIAN.
17938 * ira-color.c (setup_profitable_hard_regs, check_hard_reg_p,
17939 assign_hard_reg): Likewise.
17940
17941 2012-02-21 Georg-Johann Lay <avr@gjlay.de>
17942
17943 * config/avr/avr.md (neghi2): Remove "!d,0" alternative. Tweak "r,0".
17944
17945 2012-02-21 Georg-Johann Lay <avr@gjlay.de>
17946
17947 * config/avr/avr.md
17948 (*dec-and-branchhi!=-1.d.clobber): New text peephole.
17949 (*dec-and-branchhi!=-1.l.clobber): New text peephole.
17950
17951 2012-02-21 Georg-Johann Lay <avr@gjlay.de>
17952
17953 * config/avr/avr-protos.h (avr_accumulate_outgoing_args): Move
17954 prototype from here to...
17955 * config/avr/avr.h: ...here.
17956
17957 2012-02-21 Richard Earnshaw <rearnsha@arm.com>
17958
17959 PR target/52294
17960 * thumb2.md (thumb2_shiftsi3_short): Split register and
17961 immediate shifts. For register shifts tie operands 0 and 1.
17962 (peephole2 for above): Check that register-controlled shifts
17963 have suitably tied operands.
17964
17965 2012-02-21 Quentin Neill <quentin.neill@amd.com>
17966
17967 PR target/52137
17968 * config/i386/bdver1.md (bdver1_call, bdver1_push,
17969 bdver1_pop, bdver1_leave, bdver1_lea, bdver1_imul_DI, bdver1_imul,
17970 bdver1_imul_mem_DI, bdver1_imul_mem, bdver1_idiv, bdver1_idiv_mem,
17971 bdver1_str, bdver1_idirect, bdver1_ivector, bdver1_idirect_loadmov,
17972 bdver1_idirect_load, bdver1_ivector_load, bdver1_idirect_movstore,
17973 bdver1_idirect_both, bdver1_ivector_both, bdver1_idirect_store,
17974 bdver1_ivector_store, bdver1_fldxf, bdver1_fld, bdver1_fstxf,
17975 bdver1_fst, bdver1_fist, bdver1_fmov_bdver1, bdver1_fadd_load,
17976 bdver1_fadd, bdver1_fmul_load, bdver1_fmul, bdver1_fsgn,
17977 bdver1_fdiv_load, bdver1_fdiv, bdver1_fpspc_load, bdver1_fpspc,
17978 bdver1_fcmov_load, bdver1_fcmov, bdver1_fcomi_load,
17979 bdver1_fcomi, bdver1_fcom_load, bdver1_fcom,
17980 bdver1_fxch, bdver1_ssevector_avx128_unaligned_load,
17981 bdver1_ssevector_avx256_unaligned_load,
17982 bdver1_ssevector_sse128_unaligned_load,
17983 bdver1_ssevector_avx128_load, bdver1_ssevector_avx256_load,
17984 bdver1_ssevector_sse128_load, bdver1_ssescalar_movq_load,
17985 bdver1_ssescalar_vmovss_load, bdver1_ssescalar_sse128_load,
17986 bdver1_mmxsse_load, bdver1_sse_store_avx256, bdver1_sse_store,
17987 bdver1_mmxsse_store_short, bdver1_ssevector_avx256,
17988 bdver1_movss_movsd, bdver1_mmxssemov, bdver1_sselog_load_256,
17989 bdver1_sselog_256, bdver1_sselog_load, bdver1_sselog,
17990 bdver1_ssecmp_load, bdver1_ssecmp, bdver1_ssecomi_load,
17991 bdver1_ssecomi, bdver1_vcvtX2Y_avx256_load, bdver1_vcvtX2Y_avx256,
17992 bdver1_ssecvt_cvtss2sd_load, bdver1_ssecvt_cvtss2sd,
17993 bdver1_sseicvt_cvtsi2sd_load, bdver1_sseicvt_cvtsi2sd,
17994 bdver1_ssecvt_cvtpd2ps_load, bdver1_ssecvt_cvtpd2ps,
17995 bdver1_ssecvt_cvtdq2ps_load, bdver1_ssecvt_cvtdq2ps,
17996 bdver1_ssecvt_cvtdq2pd_load, bdver1_ssecvt_cvtdq2pd,
17997 bdver1_ssecvt_cvtps2pd_load, bdver1_ssecvt_cvtps2pd,
17998 bdver1_ssecvt_cvtsX2si_load, bdver1_ssecvt_cvtsX2si,
17999 bdver1_ssecvt_cvtpd2pi_load, bdver1_ssecvt_cvtpd2pi,
18000 bdver1_ssecvt_cvtpd2dq_load, bdver1_ssecvt_cvtpd2dq,
18001 bdver1_ssecvt_cvtps2pi_load, bdver1_ssecvt_cvtps2pi,
18002 bdver1_ssemuladd_load_256, bdver1_ssemuladd_256,
18003 bdver1_ssemuladd_load, bdver1_ssemuladd, bdver1_sseimul_load,
18004 bdver1_sseimul, bdver1_sseiadd_load, bdver1_sseiadd,
18005 bdver1_ssediv_double_load_256, bdver1_ssediv_double_256,
18006 bdver1_ssediv_single_load_256, bdver1_ssediv_single_256,
18007 bdver1_ssediv_double_load, bdver1_ssediv_double,
18008 bdver1_ssediv_single_load, bdver1_ssediv_single, bdver1_sseins):
18009 Add "bdver2" attribute.
18010
18011 2012-02-21 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
18012
18013 * config/s390/s390.c (s390_option_override): Make -mhard-dfp the
18014 default if possible and not specified otherwise.
18015
18016 2012-02-21 Richard Guenther <rguenther@suse.de>
18017
18018 PR middle-end/52314
18019 * gimplify.c (create_tmp_from_val): Use the main variant type
18020 for the type of the temporary we create.
18021
18022 2012-02-21 Richard Guenther <rguenther@suse.de>
18023
18024 PR tree-optimization/52324
18025 * gimplify.c (gimplify_expr): When re-gimplifying expressions
18026 do not gimplify a MEM_REF address operand if it is already
18027 in suitable form.
18028
18029 2012-02-21 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
18030
18031 * config/s390/s390.md ("fixuns_trunc<mode>si2"): Replace
18032 TARGET_HARD_FLOAT with TARGET_HARD_DFP.
18033
18034 2012-02-21 Richard Guenther <rguenther@suse.de>
18035
18036 * tree-vect-stmts.c (vectorizable_load): Use pre-computed
18037 nested_in_vect_loop.
18038
18039 2012-02-21 Jakub Jelinek <jakub@redhat.com>
18040
18041 PR tree-optimization/52318
18042 * gimple-fold.c (gimplify_and_update_call_from_tree): Add
18043 vdef also to non-pure/const call stmts in the sequence.
18044
18045 2012-02-21 Tristan Gingold <gingold@adacore.com>
18046
18047 * config/vms/vms-ld.c (main): Fix IDENTIFICATION padding.
18048
18049 2012-02-20 David S. Miller <davem@davemloft.net>
18050
18051 * config/sparc/sparc.md (load_pcrel_sym<P:mode>): Explain why we
18052 don't use the "rd %pc" instruction on v9 for PIC register loads.
18053
18054 2012-02-20 Aldy Hernandez <aldyh@redhat.com>
18055
18056 PR middle-end/52141
18057 * trans-mem.c (ipa_tm_scan_irr_block): Error out on GIMPLE_ASM's
18058 in a transaction safe function.
18059
18060 2012-02-20 Kai Tietz <ktietz@redhat.com>
18061
18062 PR target/52238
18063 * stor-layout.c (place_field): Handle desired_align for
18064 ms-bitfields, too.
18065
18066 2012-02-20 Richard Guenther <rguenther@suse.de>
18067
18068 PR tree-optimization/52298
18069 * tree-vect-stmts.c (vectorizable_store): Properly use
18070 STMT_VINFO_DR_STEP instead of DR_STEP when vectorizing
18071 outer loops.
18072 (vectorizable_load): Likewise.
18073 * tree-vect-data-refs.c (vect_analyze_data_ref_access):
18074 Access DR_STEP after ensuring it is not NULL.
18075
18076 2012-02-20 Jakub Jelinek <jakub@redhat.com>
18077
18078 PR tree-optimization/52286
18079 * fold-const.c (fold_binary_loc): For (X & C1) | C2
18080 optimization use double_int_to_tree instead of build_int_cst_wide,
18081 rewrite to use double_int vars.
18082
18083 2012-02-20 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
18084
18085 PR target/50166
18086 * acinclude.m4 (gcc_AC_INITFINI_ARRAY): Require gcc_SUN_LD_VERSION.
18087 Define _start.
18088 Remove -e 0 from $gcc_cv_ld invocation.
18089 Only use __GLIBC_PREREQ if defined.
18090 Enable on Solaris since Solaris 8 patch.
18091 (gcc_SUN_LD_VERSION): New macro.
18092 * configure.ac (ld_ver) <*-*-solaris2*>: Refer to
18093 gcc_SUN_LD_VERSION for version number format.
18094 * configure: Regenerate.
18095 * varasm.c (get_elf_initfini_array_priority_section): Set
18096 SECTION_NOTYPE for non-default priority.
18097 Use get_section instead of get_unnamed_section to emit
18098 .init_array/.fini_array with default priority.
18099
18100 2012-02-19 Richard Sandiford <rdsandiford@googlemail.com>
18101
18102 * config/mips/mips.c (mips_need_mips16_rdhwr_p): New variable.
18103 (mips_get_tp): Set it. Record that __mips16_rdhwr binds locally.
18104 (mips_start_unique_function, mips_output_mips16_rdhwr)
18105 (mips_code_end): New functions.
18106 (TARGET_ASM_CODE_END): Define.
18107
18108 2012-02-19 Richard Sandiford <rdsandiford@googlemail.com>
18109
18110 * config/mips/mips.c (mips16_build_call_stub): Add CFI information
18111 to stubs with non-sibling calls.
18112
18113 2012-02-18 Sandra Loosemore <sandra@codesourcery.com>
18114
18115 * doc/invoke.texi (-fira-* options): Copy-edit.
18116 (ira-* parameters): Copy-edit.
18117
18118 2012-02-17 Sandra Loosemore <sandra@codesourcery.com>
18119
18120 * doc/invoke.texi: Minor copy-edits to bring into conformance with
18121 GCC coding conventions.
18122
18123 2012-02-17 Sandra Loosemore <sandra@codesourcery.com>
18124
18125 * doc/invoke.texi: Consistently hyphenate "big-endian"/"little-endian"
18126 when used as adjectives.
18127
18128 2012-02-16 Sandra Loosemore <sandra@codesourcery.com>
18129
18130 * doc/invoke.texi: Clean up "that"/"which" confusion.
18131
18132 2012-02-17 Steven Bosscher <steven@gcc.gnu.org>
18133
18134 * system.h: Poison SMALL_REGISTER_CLASSES
18135 * config/rl78/rl78.h: Replace SMALL_REGISTER_CLASSES with hook.
18136 * config/rx/rx.h: Remove SMALL_REGISTER_CLASSES.
18137
18138 2012-02-16 Jakub Jelinek <jakub@redhat.com>
18139
18140 PR tree-optimization/52285
18141 * tree-tailcall.c (find_tail_calls): Ignore gimple_clobber_p stmts
18142 when deciding if a call is a tail call or tail recursion.
18143
18144 2012-02-16 Kai Tietz <ktietz@redhat.com>
18145
18146 * config/i386/i386.c (legitimate_pic_address_disp_p): Allow
18147 interger-constant displacement for UNSPEC_PCREL.
18148
18149 2012-02-16 Jakub Jelinek <jakub@redhat.com>
18150
18151 PR rtl-optimization/52208
18152 * ira-costs.c (scan_one_insn): Don't decrease mem_cost
18153 for MEMs with REG_EQUIV, if the MEM isn't general_operand.
18154
18155 PR tree-optimization/52255
18156 * tree-vect-loop-manip.c (slpeel_tree_peel_loop_to_edge): If
18157 loop->header has virtual PHI, but exit_e->dest doesn't, add
18158 virtual PHI to exit_e->dest and adjust all uses after the loop.
18159
18160 PR debug/52260
18161 * dwarf2out.c (copy_decls_walk): Fill in *slot before traversing
18162 children with clone_tree_hash, not after it.
18163
18164 2012-02-16 Iain Sandoe <iains@gcc.gnu.org>
18165
18166 * config/darwin.h (ASM_OUTPUT_LABELREF): Add user label prefix for
18167 extended identifiers.
18168
18169 2012-02-16 Jakub Jelinek <jakub@redhat.com>
18170
18171 PR middle-end/51929
18172 * cgraphunit.c (verify_edge_corresponds_to_fndecl): If node is
18173 a same_body_alias, also test whether e->callee isn't a former
18174 or current clone of the decl this is a same body alias of.
18175
18176 PR translation/52264
18177 * cgraphunit.c (verify_cgraph_node): Fix a typo.
18178
18179 2012-02-15 Sandra Loosemore <sandra@codesourcery.com>
18180
18181 * doc/invoke.texi: Clean up "n-bit/byte/word" modifiers.
18182
18183 2012-02-15 Michael Meissner <meissner@linux.vnet.ibm.com>
18184
18185 PR target/52199
18186 * config/rs6000/rs6000.c (rs6000_expand_vector_init): Use
18187 force_reg instead of copy_to_reg for better optimization. Force
18188 non-register or memory operands into a register.
18189
18190 2012-02-15 Andrew MacLeod <amacleod@redhat.com>
18191
18192 * extend.texi: Reserve upper bits of memory model for future use.
18193
18194 2012-01-15 Georg-Johann Lay <avr@gjlay.de>
18195 Anatoly Sokolov <aesok@post.ru>
18196 Eric Weddington <eric.weddington@atmel.com>
18197
18198 PR target/52261
18199 * config/avr/avr-devices.c (avr_arch_types): Add avrxmega2,
18200 avrxmega4, avrxmega5, avrxmega6, avrxmega7.
18201 Rewrite initializers for .macro.
18202 * config/avr/avr-mcus.def (AVR_MCU): Add known MCUs:
18203 avrxmega2: atxmega16a4, atxmega16d4, atxmega16x1, atxmega32a4
18204 atxmega32d4, atxmega32x1.
18205 avrxmega4: atxmega64a3, atxmega64d3.
18206 avrxmega5: atxmega64a1, atxmega64a1u.
18207 avrxmega6: atxmega128a3, atxmega128d3, atxmega192a3, atxmega192d3,
18208 atxmega256a3, atxmega256a3b, atxmega256a3bu, atxmega256d3.
18209 avrxmega7: atxmega128a1, atxmega128a1u.
18210 * config/avr/avr.h (enum avr_arch): Add: ARCH_AVRXMEGA2,
18211 ARCH_AVRXMEGA4, ARCH_AVRXMEGA5, ARCH_AVRXMEGA6, ARCH_AVRXMEGA7.
18212 (struct base_arch_s): Rename reserved to xmega_p.
18213 Rename reserved2 to have_rampd.
18214 (AVR_XMEGA): New define.
18215 (AVR_HAVE_RAMPD, AVR_HAVE_RAMPX, AVR_HAVE_RAMPY): New defines.
18216 (AVR_HAVE_RAMPZ): Change definition to fit xmega.
18217 * config/avr/predicates.md (io_address_operand): Take into
18218 account SFR offset.
18219 (low_io_address_operand): Ditto.
18220 (high_io_address_operand): Ditto.
18221 * config/avr/avr.md (isa): Add alternatives no_xmega, xmega.
18222 (enabled, movhi_sp_r): Use them.
18223 * config/avr/avr-c.c (avr_cpu_cpp_builtins): Use
18224 cpp_define_formatted to built-in define __AVR_ARCH__.
18225 (__AVR_XMEGA__): New built-in define.
18226 (__AVR_HAVE_RAMPD__): New built-in define.
18227 (__AVR_HAVE_RAMPX__): New built-in define.
18228 (__AVR_HAVE_RAMPY__): New built-in define.
18229 (__AVR_HAVE_RAMPZ__): Change condition when to built-in define it.
18230
18231 * config/avr/avr.c (avr_addr_t): Add ccp, rampd, rampx, rampy.
18232 (avr_option_override): Initialize them.
18233 (sreg_rtx, rampd_rtx, rampx_rtx, rampy_rtx): New GTY rtx.
18234 (avr_init_expanders): Initialize them. No more block several calls.
18235 (emit_push_sfr): New static function.
18236 (avr_prologue_setup_frame): Use it to push SREG, RAMPD/X/Y/Z as needed.
18237 Handle AVR_XMEGA.
18238 (expand_epilogue): Handle AVR_XMEGA. Pop RAMPD/X/Y/Z as needed.
18239 (avr_print_operand): Print addreeses as symbols for
18240 RAMPX, RAMPY, RAMPD, CCP.
18241 (output_movhi): Handle AVR_XMEGA when writing to SP.
18242 (avr_out_movhi_mr_r_xmega): New static function.
18243 (out_movhi_mr_r): Forward to avr_out_movhi_mr_r_xmega for AVR_XMEGA.
18244 (avr_file_start): Print symbol defines for __RAMPX__, __RAMPY__,
18245 __RAMPD__, __CCP__ as needed.
18246
18247 * config/avr/multilib.h: Regenerate.
18248 * config/avr/t-multilib: Regenerate.
18249 * config/avr/avr-tables.opt: Regenerate.
18250
18251 2012-02-15 Tobias Grosser <grosser@fim.uni-passau.de>
18252
18253 PR tree-optimization/50561
18254 * graphite-flattening.c (lst_project_loop): Do not
18255 remove old scattering dimensions after flattening.
18256 (lst_do_flatten): Likewise.
18257
18258 2012-02-15 Georg-Johann Lay <avr@gjlay.de>
18259
18260 * doc/extend.texi (AVR Built-in Functions): Remove doc for
18261 __builtin_avr_map8, __builtin_avr_map16.
18262 Document __builtin_avr_insert_bits.
18263
18264 * config/avr/avr.md (map_bitsqi, map_bitshi): Remove.
18265 (insert_bits): New insn.
18266 (adjust_len.map_bits): Rename to insert_bits.
18267 (UNSPEC_MAP_BITS): Rename to UNSPEC_INSERT_BITS.
18268 * avr-protos.h (avr_out_map_bits): Remove.
18269 (avr_out_insert_bits, avr_has_nibble_0xf): New.
18270 * config/avr/constraints.md (Cxf,C0f): New.
18271 * config/avr/avr.c (avr_cpu_cpp_builtins): Remove built-in
18272 defines __BUILTIN_AVR_MAP8, __BUILTIN_AVR_MAP16.
18273 New built-in define __BUILTIN_AVR_INSERT_BITS.
18274 * config/avr/avr.c (TARGET_FOLD_BUILTIN): New define.
18275 (enum avr_builtin_id): Add AVR_BUILTIN_INSERT_BITS.
18276 (avr_move_bits): Rewrite.
18277 (avr_fold_builtin, avr_map_metric, avr_map_decompose): New static
18278 functions.
18279 (avr_map_op_t): New typedef.
18280 (avr_map_op): New static variable.
18281 (avr_out_insert_bits, avr_has_nibble_0xf): New functions.
18282 (adjust_insn_length): Handle ADJUST_LEN_INSERT_BITS.
18283 (avr_init_builtins): Add definition for __builtin_avr_insert_bits.
18284 (bdesc_3arg, avr_expand_triop_builtin): New.
18285 (avr_expand_builtin): Use them. And handle AVR_BUILTIN_INSERT_BITS.
18286 (avr_revert_map, avr_swap_map, avr_id_map, avr_sig_map): Remove.
18287 (avr_map_hamming_byte, avr_map_hamming_nonstrict): Remove.
18288 (avr_map_equal_p, avr_map_sig_p): Remove.
18289 (avr_out_swap_bits, avr_out_revert_bits, avr_out_map_bits): Remove.
18290 (bdesc_2arg): Remove AVR_BUILTIN_MAP8, AVR_BUILTIN_MAP16.
18291 (adjust_insn_length): Remove handling for ADJUST_LEN_MAP_BITS.
18292 (enum avr_builtin_id): Remove AVR_BUILTIN_MAP8, AVR_BUILTIN_MAP16.
18293 (avr_init_builtins): Remove __builtin_avr_map8, __builtin_avr_map16.
18294 (avr_expand_builtin): Remove AVR_BUILTIN_MAP8, AVR_BUILTIN_MAP16.
18295
18296 2012-02-14 Bernd Schmidt <bernds@codesourcery.com>
18297
18298 * config/c6x/c6x.md (reserve_cycles): New attribute.
18299 * config/c6x/c6x.c (c6x_sched_reorder_1): Ensure insns we predicate
18300 don't reserve functional units after the branch occurs.
18301
18302 2012-02-14 Aldy Hernandez <aldyh@redhat.com>
18303
18304 PR middle-end/52142
18305 * ipa-inline.c (can_inline_edge_p): Do not inline tm_pure
18306 functions into non-tm_pure functions.
18307
18308 2012-02-14 Eric Botcazou <ebotcazou@adacore.com>
18309
18310 PR lto/52178
18311 * gimple.c (iterative_hash_gimple_type): Use RECORD_OR_UNION_TYPE_P.
18312 (iterative_hash_canonical_type): Likewise.
18313 * tree-ssa-pre.c (fini_pre): Clean up the CFG only after purging all
18314 the dead edges.
18315
18316 2012-02-14 Bernd Schmidt <bernds@codesourcery.com>
18317
18318 * haifa-sched.c (prune_ready_list): Ensure that if there is a
18319 sched-group insn, it either remains alone or the entire list is pruned.
18320
18321 2012-02-14 Jonathan Wakely <jwakely.gcc@gmail.com>
18322
18323 * doc/install.texi (Prerequisites): Fix grammar.
18324 (Configuration): Likewise.
18325
18326 2012-02-14 Jonathan Wakely <jwakely.gcc@gmail.com>
18327
18328 * doc/install.texi (Prerequisites): Suggest building GMP, MPFR and
18329 MPC as part of GCC before describing configuring with --with-gmp etc.
18330 (Installing GCC: Configuration): --with-gmp etc. aren't needed if
18331 sources are present.
18332
18333 2012-02-14 Jakub Jelinek <jakub@redhat.com>
18334
18335 PR debug/51950
18336 * dwarf2out.c (clone_tree_hash): New function.
18337 (copy_decls_walk): Use it instead of clone_tree.
18338
18339 2012-02-14 Richard Guenther <rguenther@suse.de>
18340
18341 PR tree-optimization/52244
18342 PR tree-optimization/51528
18343 * tree-sra.c (analyze_access_subtree): Only create INTEGER_TYPE
18344 replacements for integral types.
18345
18346 2012-02-14 Walter Lee <walt@tilera.com>
18347
18348 * config.gcc: Handle tilegx and tilepro.
18349 * configure.ac (gcc_cv_as_dwarf2_debug_line): Enable test for
18350 tilegx and tilepro.
18351 Add HAVE_AS_TLS check for tilegx and tilepro.
18352 * configure: Regenerate.
18353 * doc/contrib.texi: Add Mat Hostetter and self.
18354 * doc/extend.texi (TILE-Gx Built-in Functions): New node.
18355 Document instruction intrinsics and network accessing intrinsics.
18356 (TILEPro Built-in Functions): New node. Document instruction
18357 intrinsics and network accessing intrinsics.
18358 * doc/install.texi (Specific, tilegx-*-linux*): Document it.
18359 (Specific, tilepro-*-linux*): Likewise.
18360 * doc/invoke.texi (TILE-Gx Options): New section.
18361 (TILEPro Options): New section.
18362 * doc/md.texi (TILE-Gx): New section.
18363 (TILEPro): New section.
18364 * common/config/tilegx/tilegx-common.c: New file.
18365 * common/config/tilepro/tilepro-common.c: New file.
18366 * config/tilegx/constraints.md: New file.
18367 * config/tilegx/linux.h: New file.
18368 * config/tilegx/mul-tables.c: New file.
18369 * config/tilegx/predicates.md: New file.
18370 * config/tilegx/sync.md: New file.
18371 * config/tilegx/t-tilegx: New file.
18372 * config/tilegx/tilegx-builtins.h: New file.
18373 * config/tilegx/tilegx-c.c: New file.
18374 * config/tilegx/tilegx-generic.md: New file.
18375 * config/tilegx/tilegx-modes.def: New file.
18376 * config/tilegx/tilegx-multiply.h: New file.
18377 * config/tilegx/tilegx-protos.h: New file.
18378 * config/tilegx/tilegx.c: New file.
18379 * config/tilegx/tilegx.h: New file.
18380 * config/tilegx/tilegx.md: New file.
18381 * config/tilegx/tilegx.opt: New file.
18382 * config/tilepro/constraints.md: New file.
18383 * config/tilepro/gen-mul-tables.cc: New file.
18384 * config/tilepro/linux.h: New file.
18385 * config/tilepro/mul-tables.c: New file.
18386 * config/tilepro/predicates.md: New file.
18387 * config/tilepro/t-tilepro: New file.
18388 * config/tilepro/tilepro-builtins.h: New file.
18389 * config/tilepro/tilepro-c.c: New file.
18390 * config/tilepro/tilepro-generic.md: New file.
18391 * config/tilepro/tilepro-modes.def: New file.
18392 * config/tilepro/tilepro-multiply.h: New file.
18393 * config/tilepro/tilepro-protos.h: New file.
18394 * config/tilepro/tilepro.c: New file.
18395 * config/tilepro/tilepro.h: New file.
18396 * config/tilepro/tilepro.md: New file.
18397 * config/tilepro/tilepro.opt: New file.
18398
18399 2012-02-14 Jakub Jelinek <jakub@redhat.com>
18400
18401 PR tree-optimization/52210
18402 * tree-vect-slp.c (vect_get_and_check_slp_defs): Call
18403 vect_model_simple_cost with two entry vect_def_type array instead
18404 of an address of dt.
18405
18406 2012-02-14 Richard Guenther <rguenther@suse.de>
18407
18408 PR lto/52178
18409 * tree-streamer-in.c (lto_input_ts_field_decl_tree_pointers):
18410 Do not stream DECL_QUALIFIER.
18411 * tree-streamer-out.c (write_ts_field_decl_tree_pointers): Likewise.
18412 * tree.c (free_lang_data_in_decl): Free DECL_QUALIFIER.
18413 (find_decls_types_r): Do not walk DECL_QUALIFIER.
18414
18415 2012-02-14 Jakub Jelinek <jakub@redhat.com>
18416
18417 PR c/52181
18418 * c-decl.c (merge_decls): Copy DECL_USER_ALIGN bit from olddecl to
18419 newdecl.
18420
18421 2012-02-13 Jakub Jelinek <jakub@redhat.com>
18422
18423 PR bootstrap/52172
18424 * cselib.h (cselib_subst_to_values_from_insn): New prototype.
18425 * cselib.c (cselib_subst_to_values_from_insn): New function.
18426 * sched-deps.c (add_insn_mem_dependence,
18427 sched_analyze_1, sched_analyze_2): Use it.
18428
18429 2012-02-13 Jan Hubicka <jh@suse.cz>
18430
18431 PR middle-end/52214
18432 * predict.c (predict_paths_for_bb): Fix thinko in prevoius patch.
18433
18434 2012-02-13 Eric Botcazou <ebotcazou@adacore.com>
18435
18436 * gcc.c (LINK_COMMAND_SPEC): Deal with -fgnu-tm.
18437 (GTM_SELF_SPECS): Define if not already defined.
18438 (driver_self_specs): Add GTM_SELF_SPECS.
18439 * config/darwin.h (LINK_COMMAND_SPEC_A): Deal with -fgnu-tm.
18440 (GTM_SELF_SPECS): Define.
18441 * config/i386/cygwin.h (GTM_SELF_SPECS): Likewise.
18442 * config/i386/mingw32.h (GTM_SELF_SPECS): Likewise.
18443
18444 2012-02-13 Jakub Jelinek <jakub@redhat.com>
18445
18446 * cselib.c (expand_loc): Return sp, fp, hfp or cfa base reg right
18447 away if seen.
18448
18449 * cselib.c (dump_cselib_val): Don't assume l->setting_insn is non-NULL.
18450
18451 PR middle-end/52230
18452 * omp-low.c (expand_omp_for): If a static schedule without chunk size
18453 has NULL region->cont, force fd.chunk_size to be integer_zero_node.
18454
18455 2012-02-13 Andrew MacLeod <amacleod@redhat.com>
18456
18457 PR c/52190
18458 * doc/extend.texi : Fix another __atomic_compare_exchange typo.
18459
18460 2012-02-13 Richard Guenther <rguenther@suse.de>
18461
18462 PR translation/52211
18463 * passes.c (enable_disable_pass): Fix typo.
18464
18465 2012-02-13 Jakub Jelinek <jakub@redhat.com>
18466
18467 PR middle-end/52209
18468 * expr.c (expand_expr_real_2) <case BIT_NOT_EXPR>: Only expand using
18469 XOR for reduce_bit_field if type is unsigned.
18470
18471 2012-02-12 Eric Botcazou <ebotcazou@adacore.com>
18472
18473 * config/sparc/sparc.h (CANNOT_CHANGE_MODE_CLASS): In 64-bit mode,
18474 disallow changes from SFmode to mode with different size in FP regs.
18475
18476 2012-02-12 Robert Millan <rmh@gnu.org>
18477 Gerald Pfeifer <gerald@pfeifer.com>
18478
18479 * ginclude/stddef.h [__FreeBSD_kernel__] (__size_t): Do not define.
18480 Tweak comment.
18481
18482 2012-02-11 Richard Sandiford <rdsandiford@googlemail.com>
18483
18484 PR rtl-optimization/52175
18485 * reorg.c (fill_slots_from_thread): Don't apply add/sub optimization
18486 to frame-related instructions.
18487
18488 2012-02-10 Jason Merrill <jason@redhat.com>
18489
18490 PR c++/51910
18491 * tlink.c (demangled_hash_entry): Change mangled to a VEC.
18492 (demangle_new_symbols): Fill it.
18493 (scan_linker_output): Walk it.
18494 (start_tweaking): Split out from scan_linker_output.
18495 (maybe_tweak): Update sym->chosen.
18496 * Makefile.in (COLLECT2_OBJS): Add vec.o and gcc-none.o
18497
18498 2012-02-11 Jakub Jelinek <jakub@redhat.com>
18499
18500 PR debug/52132
18501 * reg-stack.c (subst_stack_regs_in_debug_insn): Don't use get_true_reg.
18502
18503 2012-02-11 Uros Bizjak <ubizjak@gmail.com>
18504
18505 * compare-elim.c (find_comparisons_in_bb): Eliminate only compares
18506 having the same mode as previous compare.
18507
18508 2012-02-10 Eric Botcazou <ebotcazou@adacore.com>
18509
18510 * config/sparc/sparc.c (sparc_flat_expand_prologue): Use emit_use.
18511 * config/sparc/sparc.md (UNSPECV_GOTO): Delete.
18512 (nonlocal_goto_internal): Likewise.
18513 (nonlocal_goto): Emit a use and an indirect jump directly.
18514
18515 2012-02-10 Andrew MacLeod <amacleod@redhat.com>
18516
18517 PR c/52190
18518 * doc/extend.texi : Update comments for __atomic_compare_exchange and
18519 __atomic_{is,always}_lock_free.
18520
18521 2012-02-10 Uros Bizjak <ubizjak@gmail.com>
18522
18523 PR target/52146
18524 * config/i386/i386.c (ix86_legitimate_address_p): Disallow
18525 negative constant address for TARGET_X32.
18526
18527 2012-02-10 Richard Henderson <rth@redhat.com>
18528
18529 * tree-ssa-dce.c (propagate_necessity): Handle GIMPLE_TRANSACTION.
18530 * tree-ssa-operands.c (parse_ssa_operands): Add virtual operands
18531 for GIMPLE_TRANSACTION. Tidy if's into a switch.
18532
18533 2012-02-10 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
18534 Ira Rosen <irar@il.ibm.com>
18535
18536 PR tree-optimization/50031
18537 * targhooks.c (default_builtin_vectorization_cost): Handle
18538 vec_promote_demote.
18539 * target.h (enum vect_cost_for_stmt): Add vec_promote_demote.
18540 * tree-vect-loop.c (vect_get_single_scalar_iteraion_cost): Handle
18541 all types of reduction and pattern statements.
18542 (vect_estimate_min_profitable_iters): Likewise.
18543 * tree-vect-stmts.c (vect_model_promotion_demotion_cost): New function.
18544 (vect_get_load_cost): Use vec_perm for permutations; add dump logic
18545 for explicit realigns.
18546 (vectorizable_conversion): Call vect_model_promotion_demotion_cost.
18547 * config/spu/spu.c (spu_builtin_vectorization_cost): Handle
18548 vec_promote_demote.
18549 * config/i386/i386.c (ix86_builtin_vectorization_cost): Likewise.
18550 * config/rs6000/rs6000.c (rs6000_builtin_vectorization_cost): Update
18551 vec_perm for VSX and handle vec_promote_demote.
18552
18553 2012-02-10 Jakub Jelinek <jakub@redhat.com>
18554
18555 PR middle-end/52177
18556 * builtins.c (fold_builtin_atomic_always_lock_free,
18557 expand_builtin_atomic_always_lock_free,
18558 fold_builtin_atomic_is_lock_free, expand_builtin_atomic_is_lock_free):
18559 Return and/or test boolean_true_node/boolean_false_node instead of
18560 integer_one_node/integer_zero_node.
18561
18562 2012-02-10 Jan Hubicka <jh@suse.cz>
18563
18564 PR middle-end/48600
18565 * predict.c (predict_paths_for_bb): Prevent looping.
18566 (predict_paths_leading_to_edge, predict_paths_leading_to): Update.
18567
18568 2012-02-10 Roman Zhuykov <zhroma@ispras.ru>
18569
18570 * config/arm/arm.c (output_move_double): In one case properly
18571 count number of instructions that will be emitted.
18572
18573 2012-02-10 Richard Guenther <rguenther@suse.de>
18574
18575 PR translation/52193
18576 * cgraphunit.c (cgraph_mark_functions_to_output): Fix typo.
18577
18578 2012-02-09 Peter Bergner <bergner@vnet.ibm.com>
18579
18580 PR middle-end/52140
18581 * dojump.c (do_compare_rtx_and_jump): Use SCALAR_FLOAT_MODE_P.
18582
18583 2012-02-09 Jakub Jelinek <jakub@redhat.com>
18584
18585 PR debug/52165
18586 * var-tracking.c (emit_note_insn_var_location): If
18587 EMIT_NOTE_BEFORE_INSN and insn is NOTE_INSN_CALL_ARG_LOCATION,
18588 emit it before next non-NOTE_INSN_CALL_ARG_LOCATION
18589 non-NOTE_DURING_CALL_P insn.
18590
18591 2012-02-09 Bin Cheng <bin.cheng@arm.com>
18592
18593 PR middle-end/51867
18594 * builtins.c (expand_builtin): Don't check DECL_ASSEMBLER_NAME_SET_P.
18595
18596 2012-02-08 Magnus Granberg <zorry@gentoo.org>
18597
18598 PR driver/48524
18599 * gcc.c (switch_matches) Support switches with separated form,
18600 -D and -U.
18601
18602 2012-02-08 Georg-Johann Lay <avr@gjlay.de>
18603
18604 * config/avr/avr.md (SREG_ADDR): Remove constant definition.
18605 (SP_ADDR): Ditto.
18606 (RAMPZ_ADDR): Ditto.
18607 * config/avr/avr.c (avr_addr_t): New typedef.
18608 (avr_addr): New struct to hold RAM address of SPL, SPH, RAMPZ, SREG.
18609 (avr_init_expanders): Initialize it.
18610 (expand_prologue): Use avr_addr instead of RAMPZ_ADDR, SP_ADDR,
18611 SREG_ADDR.
18612 (expand_epilogue): Ditto.
18613 (avr_print_operand): Ditto.
18614 (avr_file_start): Ditto.
18615 (avr_emit_movmemhi): Ditto.
18616
18617 2012-02-08 Richard Guenther <rguenther@suse.de>
18618
18619 PR tree-optimization/46886
18620 * tree-flow.h (do_while_loop_p): Declare.
18621 * tree-ssa-loop-ch.c (do_while_loop_p): Export.
18622 * tree-parloops.c (parallelize_loops): Only parallelize do-while loops.
18623
18624 2012-02-08 Andrew MacLeod <amacleod@redhat.com>
18625
18626 * optabs.c (expand_atomic_load): Do not assume compare_and_swap will
18627 always succeed for integers larger than a native word.
18628
18629 2012-02-08 Richard Guenther <rguenther@suse.de>
18630
18631 PR rtl-optimization/52170
18632 * simplify-rtx.c (simplify_plus_minus): Use CONSTM1_RTX to
18633 properly handle integer vector modes.
18634
18635 2012-02-08 Jakub Jelinek <jakub@redhat.com>
18636
18637 PR gcov-profile/52150
18638 * coverage.c: Include target.h.
18639 (build_var): Call targetm.strip_name_encoding on the assembler name.
18640 Change one _ into . or $ if the target allows it.
18641 * Makefile.in (coverage.o): Depend on $(TARGET_H).
18642
18643 PR rtl-optimization/52139
18644 * cfgrtl.c (cfg_layout_merge_blocks): If BB_END
18645 is a BARRIER after emit_insn_after_noloc, move BB_END
18646 to the last non-BARRIER insn before it.
18647
18648 2012-02-07 Richard Sandiford <rdsandiford@googlemail.com>
18649
18650 PR middle-end/24306
18651 * config/mips/mips.c (mips_std_gimplify_va_arg_expr): New function.
18652 (mips_gimplify_va_arg_expr): Call it instead of
18653 std_gimplify_va_arg_expr.
18654
18655 2012-02-07 Michael Meissner <meissner@linux.vnet.ibm.com>
18656
18657 * config/rs6000/rs6000.c (rs6000_trampoline_init): Fix error
18658 message for -mno-pointers-to-nested-function.
18659
18660 2012-02-07 Eric Botcazou <ebotcazou@adacore.com>
18661
18662 PR middle-end/51994
18663 * expr.c (get_inner_reference): If there is an offset, add a negative
18664 bit position to it (if any).
18665
18666 2012-02-07 Jakub Jelinek <jakub@redhat.com>
18667
18668 PR rtl-optimization/52060
18669 * combine.c (try_combine): Add i0src_copy and i0src_copy2 variables,
18670 copy i1src to i1src_copy whenever added_sets_2 && i1_feeds_i2_n already
18671 before i1dest -> i1src substitution in newpat, copy i0src to i0src_copy
18672 and/or i0src_copy2 when needed.
18673
18674 2012-02-07 Jakub Jelinek <jakub@redhat.com>
18675
18676 * gcc.c (main): Don't look for lto-wrapper or lto-wrapper
18677 or LTOPLUGINSONAME if have_c.
18678
18679 * config/freebsd-spec.h: Add comment about what macros can be defined
18680 in this header.
18681 (LINK_EH_SPEC, LINK_SSP_SPEC, USE_LD_AS_NEEDED): Don't define here.
18682 * config/freebsd.h (LINK_EH_SPEC, LINK_SSP_SPEC, USE_LD_AS_NEEDED): But
18683 here instead.
18684
18685 2012-02-07 Richard Guenther <rguenther@suse.de>
18686
18687 * gimple-pretty-print.c (dump_gimple_phi): Avoid excessive
18688 newline in -alias dumps.
18689
18690 2012-02-07 Kai Tietz <ktietz@redhat.com>
18691 Dave Korn <dave.korn.cygwin@gmail.com>
18692
18693 PR target/40068
18694 * config/i386/winnt-cxx.c (i386_pe_adjust_class_at_definition):
18695 Take care that typinfo gets dllexport-attribute.
18696
18697 2012-02-07 Jakub Jelinek <jakub@redhat.com>
18698
18699 PR middle-end/52074
18700 * expr.c (expand_expr_addr_expr_1): For CONSTANT_CLASS_P or CONST_DECL
18701 if modifier < EXPAND_SUM call force_operand on the result.
18702
18703 2012-02-07 Joern Rennecke <joern.rennecke@embecosm.com>
18704
18705 * config/epiphany/epiphany.h (ASM_DECLARE_FUNCTION_SIZE): Redefine,
18706 adding __forwarder_dst__ prefix if a forwarder_section attribute is
18707 present.
18708 (epiphany_function_type): Replace types for specific interrupts with
18709 EPIPHANY_FUNCTION_INTERRUPT.
18710 (EPIPHANY_INTERRUPT_P): Update.
18711 * config/epiphany/epiphany.c (epiphany_handle_forwarder_attribute):
18712 New static function.
18713 (epiphany_attribute_table) <interrupt>: min_len is 0, max_len is 9.
18714 <disinterrupt>: Affects type identity.
18715 (epiphany_handle_interrupt_attribute): Handle variable number of
18716 arguments.
18717 (epiphany_compute_function_type): Update for new
18718 epiphany_function_type definition.
18719 (epiphany_expand_prologue): Don't save (reg:DI GPR_0) for interrupt
18720 handlers with a longcall forwarder.
18721 (epiphany_start_function): Handle multiple interrupt arguments and/or
18722 forwarder_section attribute.
18723
18724 * config/epiphany/epiphany.h (LIB_SPEC): Link libc again after
18725 libgloss.
18726
18727 2012-02-07 Alan Modra <amodra@gmail.com>
18728
18729 PR target/52107
18730 * config/rs6000/rs6000.c (rs6000_emit_move): Don't create DImode
18731 subregs of TFmode.
18732
18733 2012-02-06 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
18734
18735 PR tree-optimization/50969
18736 * tree-vect-stmts.c (vect_model_store_cost): Correct statement cost to
18737 use vec_perm rather than vector_stmt.
18738 (vect_model_load_cost): Likewise.
18739 * config/i386/i386.c (ix86_builtin_vectorization_cost): Change cost of
18740 vec_perm to be the same as other vector statements.
18741 * config/rs6000/rs6000.c (rs6000_builtin_vectorization_cost): Revise
18742 cost of vec_perm for TARGET_VSX.
18743
18744 2012-02-06 Richard Guenther <rguenther@suse.de>
18745
18746 PR tree-optimization/52115
18747 * tree-sra.c (access_has_replacements_p): New function.
18748 (sra_modify_assign): Use it to decide whether a use is uninitialized.
18749
18750 2012-02-06 Patrick Marlier <patrick.marlier@gmail.com>
18751
18752 PR middle-end/52047
18753 * trans-mem.c (expand_call_tm): Add an assertion.
18754 * calls.c (flags_from_decl_or_type): Add ECF_TM_PURE to 'no vops'
18755 functions.
18756
18757 2012-02-06 Richard Guenther <rguenther@suse.de>
18758
18759 PR tree-optimization/50955
18760 * tree-ssa-loop-ivopts.c (get_computation_cost_at): Artificially
18761 raise cost of expressions that replace an address with an
18762 expression based on a different pointer.
18763
18764 2012-02-06 Jakub Jelinek <jakub@redhat.com>
18765
18766 PR target/52129
18767 * calls.c (mem_overlaps_already_clobbered_arg_p): If val is
18768 CONST_INT_P, subtract resp. add crtl->args.pretend_args_size to it.
18769
18770 2012-02-06 Jonathan Wakely <jwakely.gcc@gmail.com>
18771
18772 PR c++/48680
18773 * doc/invoke.texi (C++ Dialect Options): Use @option markup for
18774 -Weffc++ and specify guidelines come from second edition.
18775
18776 2012-02-05 Richard Sandiford <rdsandiford@googlemail.com>
18777
18778 * config/mips/mips.md (sibcall_internal, sibcall_value_internal)
18779 (sibcall_value_multiple_internal, call_split, call_internal_direct)
18780 (call_direct_split, call_value_split, call_value_internal_direct)
18781 (call_value_direct_split, call_value_multiple_split): Use jal and
18782 jal_macro attributes.
18783
18784 2012-02-05 Richard Sandiford <rdsandiford@googlemail.com>
18785
18786 * reload1.c (reload_regs_reach_end_p): Replace with...
18787 (reload_reg_rtx_reaches_end_p): ...this function.
18788 (new_spill_reg_store): Update commentary.
18789 (emit_input_reload_insns): Don't clear new_spill_reg_store here.
18790 (emit_output_reload_insns): Check reload_reg_rtx_reaches_end_p
18791 before setting new_spill_reg_store.
18792 (emit_reload_insns): Use a separate loop to clear new_spill_reg_store.
18793 Use reload_reg_rtx_reaches_end_p instead of reload_regs_reach_end_p.
18794 Also use reload_reg_rtx_reaches_end_p when reading new_spill_reg_store
18795 for non-spill reload registers.
18796
18797 2012-02-05 Ira Rosen <irar@il.ibm.com>
18798
18799 PR tree-optimization/52091
18800 * tree-vectorizer.h (vect_is_simple_use): Add an argument.
18801 (vect_is_simple_use_1): Likewise.
18802 * tree-vect-loop.c (vectorizable_reduction): Update calls
18803 to vect_is_simple_use_1 and vect_is_simple_use.
18804 (vectorizable_live_operation): Likewise.
18805 * tree-vect-patterns.c (widened_name_p,
18806 vect_recog_vector_vector_shift_pattern, check_bool_pattern): Likewise.
18807 * tree-vect-stmts.c (process_use, vect_get_vec_def_for_operand,
18808 vectorizable_call, vectorizable_conversion, vectorizable_assignment,
18809 vectorizable_shift,vectorizable_operation, vectorizable_store,
18810 vectorizable_load): Likewise.
18811 (vect_is_simple_cond): Add an argument, pass it to
18812 vect_is_simple_use_1.
18813 (vectorizable_condition): Update calls to vect_is_simple_cond,
18814 vect_is_simple_use.
18815 (vect_is_simple_use): Add an argument, the statement in which
18816 OPERAND is used. Check that if OPERAND's def stmt is a double
18817 reduction phi node, the use is a phi node too.
18818 (vect_is_simple_use_1): Add an argument, pass it to
18819 vect_is_simple_use.
18820 * tree-vect-slp.c (vect_get_and_check_slp_defs): Update a call
18821 to vect_is_simple_use.
18822
18823 2012-02-04 Jakub Jelinek <jakub@redhat.com>
18824
18825 PR rtl-optimization/52095
18826 * modulo-sched.c (dump_insn_locator): New function.
18827 (loop_canon_p, sms_schedule): Use it.
18828
18829 PR rtl-optimization/52113
18830 * lower-subreg.c (decompose_multiword_subregs): Call recog_memoized
18831 even for decomposable shift/zext insns.
18832
18833 2012-02-03 Jakub Jelinek <jakub@redhat.com>
18834 Zdenek Dvorak <ook@ucw.cz>
18835
18836 PR rtl-optimization/52092
18837 * loop-unswitch.c (unswitch_single_loop): Call copy_rtx_if_shared
18838 on get_iv_value result.
18839
18840 2012-02-02 Andrew Pinski <apinski@cavium.com>
18841
18842 PR middle-end/47982
18843 PR middle-end/43967
18844 * doc/libgcc.texi (__udivmoddi4/__udivmodti4): Fix documentation typo.
18845
18846 2012-02-02 Jakub Jelinek <jakub@redhat.com>
18847
18848 PR middle-end/48071
18849 * diagnostic.c (diagnostic_finish): Remove trailing newlines.
18850
18851 2012-02-02 Vladimir Makarov <vmakarov@redhat.com>
18852
18853 PR rtl-optimization/49800
18854 * haifa-sched.c (sched_init): Call regstat_init_n_sets_and_refs.
18855 (sched_finish): Call regstat_free_n_sets_and_refs.
18856
18857 2012-02-02 Jia Liu <proljc@gmail.com>
18858
18859 * config/mips/mips-dspr2.md (mips_prepend): Mask operand 3 rather
18860 than operand 2.
18861
18862 2012-02-02 Jan Hubicka <jh@suse.cz>
18863 Tom de Vries <tom@codesourcery.com>
18864
18865 PR middle-end/51998
18866 * cgraphunit.c (cgraph_analyze_function): Break cyclic aliases.
18867 * varpool.c (varpool_analyze_pending_decls): Likewise.
18868
18869 2012-02-02 Sumanth G <sumanth.gundapaneni@kpitcummins.com>
18870 Jayant R Sonar <jayant.sonar@kpitcummins.com>
18871
18872 * config.gcc: Add cr16-* support.
18873
18874 * doc/extend.texi: Document cr16 extensions.
18875 * doc/install.texi: Document cr16 install.
18876 * doc/invoke.texi: Document cr16 options.
18877 * doc/md.texi: Document cr16 constraints.
18878
18879 * common/config/cr16/cr16-common.c: New file.
18880 * config/cr16/cr16.c: New file.
18881 * config/cr16/cr16.h: New file.
18882 * config/cr16/cr16.md: New file.
18883 * config/cr16/cr16.opt: New file.
18884 * config/cr16/cr16-protos.h: New file.
18885 * config/cr16/predicates.md: New file.
18886 * config/cr16/constraints.md: New file.
18887 * config/cr16/t-cr16: New file.
18888
18889 2012-02-02 Jakub Jelinek <jakub@redhat.com>
18890
18891 PR target/52086
18892 * config/i386/i386.md (*addqi_2 peephole with SImode addition): Check
18893 that operands[2] is either immediate, or q_regs_operand.
18894
18895 PR tree-optimization/52073
18896 * tree-vect-stmts.c (vect_mark_relevant): When checking uses of
18897 a pattern stmt for pattern uses, ignore uses outside of the loop.
18898
18899 2012-02-01 Georg-Johann Lay <avr@gjlay.de>
18900
18901 * config/avr/avr.c: Resolve all AS1 and AS2 macros.
18902 * config/avr/avr.h (AS1, AS2, AS2C, AS3): Remove.
18903 (OUT_AS1, OUT_AS2): Remove.
18904
18905 2012-02-01 Georg-Johann Lay <avr@gjlay.de>
18906
18907 PR rtl-optimization/51374
18908 * combine.c (can_combine_p): Don't allow volatile_refs_p insns
18909 to cross other volatile_refs_p insns.
18910
18911 2012-02-01 Richard Guenther <rguenther@suse.de>
18912
18913 * doc/invoke.texi (fno-inline): Clarify documentation.
18914 (finline-small-functions): Likewise.
18915 (finline-functions): Likewise.
18916 * common.opt (finline): Adjust comment and documentation.
18917 (finline-small-functions): Clarify documentation.
18918 (finline-functions): Likewise.
18919 (finline-functions-called-once): Likewise.
18920
18921 2012-02-01 Tristan Gingold <gingold@adacore.com>
18922
18923 * c-typeck.c (composite_type): Keep mode for pointers.
18924
18925 2012-01-31 Richard Sandiford <rdsandiford@googlemail.com>
18926
18927 * function.h (regno_reg_rtx): Adjust comment.
18928 * reginfo.c (init_reg_modes_target): Only use the previous mode
18929 if it fits within one register. Remove MIPS comment.
18930
18931 2012-01-31 Jakub Jelinek <jakub@redhat.com>
18932
18933 PR bootstrap/52058
18934 * combine.c (do_SUBST_LINK, SUBST_LINK): Guard with #ifndef HAVE_cc0.
18935
18936 2012-01-31 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
18937
18938 * config/s390/s390.md ("*ashr<mode>3_and"): Add missing z196 flag
18939 to srak instruction.
18940
18941 2012-01-31 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
18942
18943 * config/arm/thumb2.md (thumb2_mov_notscc): Use MVN for true condition.
18944
18945 2012-01-31 Jakub Jelinek <jakub@redhat.com>
18946
18947 PR bootstrap/52041
18948 PR bootstrap/52039
18949 PR target/51974
18950 * ipa-prop.c (detect_type_change_1): Call ao_ref_init.
18951
18952 2012-01-31 Richard Guenther <rguenther@suse.de>
18953
18954 PR tree-optimization/51528
18955 * tree-sra.c (sra_modify_assign): Avoid copy-in/out for aggregate
18956 assigns.
18957
18958 2012-01-31 Jakub Jelinek <jakub@redhat.com>
18959
18960 PR bootstrap/52041
18961 PR bootstrap/52039
18962 PR target/51974
18963 * ree.c (add_removable_extension): Change def_map argument
18964 to unsigned *, store in def_map 1 + offset into *insn_list vector
18965 instead of pointers into the vector.
18966 (find_removable_extensions): Adjust caller.
18967
18968 2012-01-30 Georg-Johann Lay <avr@gjlay.de>
18969
18970 * config/avr/avr.md: Resolve all AS1 and AS2 macros.
18971 Transform all "* quoted-c-code" to { c-code }.
18972 Remove redundant test for "optimize" in combine patterns.
18973 Move (include "avr-dimode.md") to end of file.
18974
18975 2012-01-30 Bin Cheng <bin.cheng@arm.com>
18976
18977 PR target/51835
18978 * config/arm/arm.c (arm_libcall_uses_aapcs_base): Use correct ABI
18979 for __aeabi_d2iz/__aeabi_d2uiz with hard-float.
18980
18981 2012-01-30 Richard Guenther <rguenther@suse.de>
18982
18983 PR tree-optimization/52028
18984 * tree-loop-distribution.c (ldist_gen): Properly update
18985 virtual SSA form.
18986
18987 2012-01-30 Jakub Jelinek <jakub@redhat.com>
18988
18989 PR debug/52027
18990 * dwarf2out.c (dwarf2out_switch_text_section): Don't call
18991 set_cur_line_info_table if not emitting debug info.
18992
18993 PR tree-optimization/52046
18994 * tree-vect-patterns.c (check_bool_pattern): Give up if
18995 a comparison could throw.
18996
18997 PR debug/52048
18998 * tree-ssa-tail-merge.c (local_def): Ignore debug uses.
18999
19000 2012-01-30 Richard Guenther <rguenther@suse.de>
19001
19002 PR tree-optimization/52045
19003 * tree-optimize.c (execute_cleanup_cfg_post_optimizing): Update
19004 SSA form if cfgcleanup did anything.
19005
19006 2012-01-30 Richard Guenther <rguenther@suse.de>
19007
19008 PR tree-optimization/52045
19009 * ipa-inline-transform.c (inline_transform): Call execute_fixup_cfg
19010 before computing final todo.
19011
19012 2012-01-30 Richard Guenther <rguenther@suse.de>
19013
19014 PR tree-optimization/51528
19015 * tree-sra.c (sra_modify_assign): Re-factor in preparation
19016 for PR51528 fix.
19017
19018 2012-01-30 Paolo Bonzini <bonzini@gnu.org>
19019
19020 * df-problems.c (df_kill_notes): Check that the use refers
19021 to the note under examination.
19022
19023 2012-01-30 Eric Botcazou <ebotcazou@adacore.com>
19024
19025 PR target/51920
19026 * config/sparc/sparc.c (vector_init_fpmerge): Remove INNER_MODE
19027 parameter and use short-lived pseudos.
19028 (vector_init_faligndata): Remove INNER_MODE parameter and use loop.
19029 (sparc_expand_vector_init): Const-ify local variables and adjust
19030 calls to above functions.
19031
19032 2012-01-30 Georg-Johann Lay <avr@gjlay.de>
19033
19034 * config/avr/avr.c (out_movqi_mr_r): Fix length computation.
19035
19036 2012-01-29 Sandra Loosemore <sandra@codesourcery.com>
19037
19038 * doc/invoke.texi: Make usage of "compile time" and
19039 "run time"/"runtime" consistent throughout the file.
19040
19041 2012-01-29 Uros Bizjak <ubizjak@gmail.com>
19042
19043 * config/alpha/alpha.c (alpha_option_override): Default to
19044 full IEEE compliance mode for Go language.
19045
19046 2012-01-29 Tijl Coosemans <tijl@coosemans.org>
19047
19048 * config/freebsd-spec.h [TARGET_LIBC_PROVIDES_SSP]
19049 (LINK_SSP_SPEC): Define.
19050
19051 2012-01-28 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
19052
19053 PR target/51871
19054 * config/pa/pa.c (pa_return_addr_rtx): Add support for PA2.0 export
19055 stubs.
19056
19057 2012-01-28 Sandra Loosemore <sandra@codesourcery.com>
19058
19059 * doc/invoke.texi: Correct hyphenation of "floating point",
19060 "double precision", and related terminology throughout the file.
19061
19062 2012-01-28 Jakub Jelinek <jakub@redhat.com>
19063
19064 PR target/52006
19065 * config/arm/arm.md (pic_add_dot_plus_eight peephole2): Use
19066 arm_general_register_operand predicate for operand 2 instead of
19067 register_operand.
19068
19069 2012-01-27 Ian Lance Taylor <iant@google.com>
19070
19071 PR go/47656
19072 * builtins.def (BUILT_IN_INIT_HEAP_TRAMPOLINE): Define.
19073 * builtins.c (expand_builtin_init_trampoline): Add onstack
19074 parameter. Change caller.
19075 (expand_builtin): Handle BUILT_IN_INIT_HEAP_TRAMPOLINE.
19076 * tree.c (build_common_builtin_nodes): Declare
19077 __builtin_init_heap_trampoline.
19078
19079 2012-01-27 Georg-Johann Lay <avr@gjlay.de>
19080
19081 * config/avr/avr-protos.h (lpm_reg_rtx, lpm_addr_reg_rtx,
19082 tmp_reg_rtx, zero_reg_rtx, all_regs_rtx, rampz_rtx): Make global.
19083 * config/avr/avr.c: Ditto.
19084 (avr_regnames): Remove because unused.
19085 * config/avr/avr.md (*cpse.ne): New peephole.
19086 (*cpse.eq): New peephole from former cpse peepholes.
19087
19088 2012-01-27 Michael Eager <eager@eagercon.com>
19089
19090 * config/microblaze.c (microblaze_emit_compare): Correct
19091 test after pcmp instruction.
19092
19093 2012-01-27 Richard Guenther <rguenther@suse.de>
19094
19095 PR tree-optimization/52020
19096 * tree-sra.c (sra_modify_assign): Do not transform clobbers.
19097
19098 2012-01-27 Richard Guenther <rguenther@suse.de>
19099
19100 * ipa-pure-const.c (check_stmt): Clobbers do not make a
19101 function non-const/pure.
19102
19103 2012-01-27 Richard Guenther <rguenther@suse.de>
19104
19105 PR tree-optimization/50444
19106 * tree-sra.c (build_ref_for_offset): Properly adjust the
19107 MEM_REF type for unaligned accesses.
19108
19109 2012-01-27 Richard Guenther <rguenther@suse.de>
19110
19111 PR tree-optimization/50444
19112 * expr.c (mem_ref_refers_to_non_mem_p): New function.
19113 (expand_assignment): Use it. Properly handle misaligned
19114 bases when expanding stores to component references.
19115 (expand_expr_real_1): Use mem_ref_refers_to_non_mem_p and
19116 refactor that case.
19117
19118 2012-01-27 Andrey Belevantsev <abel@ispras.ru>
19119
19120 PR middle-end/51389
19121 * Makefile.in (tree-data-ref.o): Depend on $(PARAMS_H).
19122 * tree-data-ref.h (find_data_references_in_loop): Remove declaration.
19123 * tree-data-ref.c (find_data_references_in_loop): Make static.
19124 (compute_all_dependences): Change return type to bool. Bail out
19125 for too many datarefs in a loop. Move the hunk resetting the data
19126 dependences vector from ...
19127 (compute_data_dependences_for_loop): ... here. Account for
19128 compute_all_dependences returning false.
19129 (compute_data_dependences_for_bb): Likewise.
19130 * params.def (PARAM_LOOP_MAX_DATAREFS_FOR_DATADEPS): New param.
19131 * doc/invoke.texi (loop-max-datarefs-for-datadeps): Document it.
19132
19133 2012-01-27 Richard Guenther <rguenther@suse.de>
19134
19135 PR middle-end/51959
19136 * expr.c (store_field): Use the alias-set of the scratch memory
19137 for storing to it.
19138
19139 2012-01-27 Tom de Vries <tom@codesourcery.com>
19140
19141 PR tree-optimization/51990
19142 * tree-ssa-sccvn.c (copy_reference_ops_from_ref): Handle
19143 WITH_SIZE_EXPR.
19144 * tree-ssa-pre.c (create_component_ref_by_pieces_1): Same.
19145
19146 2012-01-27 Jakub Jelinek <jakub@redhat.com>
19147
19148 PR debug/52001
19149 * var-tracking.c (reverse_op): Don't add any reverse operation
19150 if V already has any constant locations.
19151
19152 2012-01-27 Sandra Loosemore <sandra@codesourcery.com>
19153
19154 * doc/invoke.texi: Correct usage of "command line" (noun)
19155 vs "command-line" (adjective) throughout.
19156
19157 2012-01-27 Sandra Loosemore <sandra@codesourcery.com>
19158
19159 * doc/invoke.texi (Language Independent Options): Move
19160 -Wcoverage-mismatch blurb from here....
19161 (Warning Options): ...to here.
19162
19163 2012-01-27 Peter Bergner <bergner@vnet.ibm.com>
19164
19165 * config/rs6000/rs6000.c (rs6000_option_override_internal):
19166 Set rs6000_always_hint to false for 476.
19167
19168 2012-01-27 Matthias Klose <doko@ubuntu.com>
19169
19170 * gcc.c (add_sysrooted_prefix): Remove trailing dir separator from
19171 system root.
19172 * incpath.c (add_standard_paths): Likewise.
19173
19174 2012-01-27 Richard Henderson <rth@redhat.com>
19175
19176 * config/m68k/m68k.c (TARGET_ATOMIC_TEST_AND_SET_TRUEVAL): New.
19177 * config/m68k/sync.md (atomic_test_and_set): Rename from
19178 sync_test_and_setqi and adjust the operands.
19179 (atomic_test_and_set_1): Rename from sync_test_and_setqi_1
19180 and unconditionally enable.
19181
19182 2012-01-27 Richard Henderson <rth@redhat.com>
19183
19184 * config/sparc/sparc.c (TARGET_ATOMIC_TEST_AND_SET_TRUEVAL): New.
19185 * config/sparc/sync.md (atomic_test_and_set): Only handle QImode.
19186 (ldstub): Rename from ldstubqi.
19187 (ldstub<I24MODE>): Remove.
19188
19189 2012-01-27 Richard Henderson <rth@redhat.com>
19190
19191 * target.def (TARGET_ATOMIC_TEST_AND_SET_TRUEVAL): New.
19192 * c-cppbuiltin.c (cpp_atomic_builtins): Define
19193 __GCC_ATOMIC_TEST_AND_SET_TRUEVAL.
19194 * doc/tm.texi.in (TARGET_ATOMIC_TEST_AND_SET_TRUEVAL): Add doc hook.
19195 * doc/tm.texi: Rebuild.
19196
19197 2012-01-27 Richard Henderson <rth@redhat.com>
19198
19199 * optabs.c (gen_atomic_test_and_set): Remove default.
19200 (maybe_emit_atomic_test_and_set): Use maybe_expand_insn.
19201
19202 2012-01-26 Jakub Jelinek <jakub@redhat.com>
19203
19204 PR rtl-optimization/51978
19205 * ree.c (make_defs_and_copies_lists): Change set_pat type to const_rtx.
19206 (combine_reaching_defs): Likewise.
19207 (struct re_info): Remove.
19208 (add_removable_extension): Remove x and data arguments,
19209 add insn, insn_list and def_map. Use the arguments directly
19210 instead of using struct re_info.
19211 (find_removable_extensions): Don't call add_removable_extension
19212 through note_stores, instead just call it with single_set
19213 result if non-NULL.
19214 (find_and_remove_re): Pass curr_cand->expr instead of
19215 PATTERN (curr_cand->insn) as set_pat argument to combine_reaching_defs.
19216
19217 2012-01-26 Michael Matz <matz@suse.de>
19218
19219 PR tree-optimization/46590
19220 * cfgexpand.c: Revert last change (r183305).
19221 * gimplify.c (gimplify_bind_expr): Add clobbers for all non-gimple
19222 regs.
19223 * tree-eh.c (cleanup_empty_eh): Try to optimize clobbers before
19224 checking for emptiness.
19225
19226 2012-01-26 Jakub Jelinek <jakub@redhat.com>
19227
19228 PR middle-end/51895
19229 * expr.c (expand_expr_real_1): Handle BLKmode MEM_REF of
19230 non-addressable non-BLKmode base correctly.
19231
19232 2012-01-26 Michael Matz <matz@suse.de>
19233
19234 PR tree-optimization/48794
19235 * tree-eh.c (remove_unreachable_handlers_no_lp): Don't remove
19236 regions referenced from RESX/EH_DISPATCH.
19237
19238 2012-01-26 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
19239
19240 * config/s390/s390.h: Make BRANCH_COST an option.
19241 * config/s390/s390.opt: New option -mbranch-cost.
19242
19243 2012-01-26 Richard Henderson <rth@redhat.com>
19244
19245 Revert 2012-01-24 change:
19246 * trans-mem.c (requires_barrier): Do not instrument thread local
19247 variables and emit save/restore for them.
19248
19249 2012-01-25 Jakub Jelinek <jakub@redhat.com>
19250
19251 PR middle-end/51986
19252 * sched-deps.c (sched_get_condition_with_rev_uncached): Don't test
19253 for pat == 0.
19254
19255 2012-01-25 Richard Sandiford <rdsandiford@googlemail.com>
19256
19257 * config/mips/mips.c (mips_small_data_pattern_1): Don't process
19258 ASM_OPERANDS.
19259
19260 2012-01-25 Georg-Johann Lay <avr@gjlay.de>
19261
19262 PR target/49868
19263 Rename __pgm to __flash.
19264 Rename __pgm1 to __flash1.
19265 Rename __pgm2 to __flash2.
19266 Rename __pgm3 to __flash3.
19267 Rename __pgm4 to __flash4.
19268 Rename __pgm5 to __flash5.
19269 Rename __pgmx to __memx.
19270 * doc/extend.texi (AVR Named Address Spaces)
19271 Rename address space names as indicated above.
19272 * config/avr/avr.c (avr_addrspace): Ditto.
19273
19274 * config/avr/avr-protos.h
19275 (avr_mem_pgmx_p): Rename to avr_mem_memx_p.
19276 (avr_mem_pgm_p): Rename to avr_mem_flash_p.
19277 * config/avr/predicates.md: Ditto.
19278 * config/avr/avr.c Ditto, and
19279 (avr_decl_pgmx_p): Rename to avr_decl_memx_p.
19280 (avr_decl_pgm_p): Rename to avr_decl_flash_p.
19281
19282 * config/avr/avr.h (ADDR_SPACE_PGM): Rename to ADDR_SPACE_FLASH.
19283 (ADDR_SPACE_PGM1): Rename to ADDR_SPACE_FLASH1.
19284 (ADDR_SPACE_PGM2): Rename to ADDR_SPACE_FLASH2.
19285 (ADDR_SPACE_PGM3): Rename to ADDR_SPACE_FLASH3.
19286 (ADDR_SPACE_PGM4): Rename to ADDR_SPACE_FLASH4.
19287 (ADDR_SPACE_PGM5): Rename to ADDR_SPACE_FLASH5.
19288 (ADDR_SPACE_PGMX): Rename to ADDR_SPACE_MEMX.
19289 * config/avr/avr.c: Ditto.
19290 * config/avr/avr.md: Ditto.
19291
19292 2012-01-25 Jason Merrill <jason@redhat.com>
19293
19294 PR c++/51992
19295 * tree.c (find_decls_types_in_node): Walk gimple_call_fntype.
19296
19297 2012-01-25 Jakub Jelinek <jakub@redhat.com>
19298
19299 PR tree-optimization/51987
19300 * tree-data-ref.c (get_references_in_stmt): Handle references in
19301 non-volatile GIMPLE_ASM.
19302
19303 2012-01-25 Richard Guenther <rguenther@suse.de>
19304
19305 * tree-ssa-sccvn.c (vn_reference_eq): Also compare if both
19306 bases are dereferenced.
19307
19308 2012-01-25 Andrey Belevantsev <abel@ispras.ru>
19309
19310 PR rtl-optimization/48374
19311 * sel-sched-ir.h (get_all_loop_exits): Check for zero successors.
19312
19313 2012-01-25 Andrey Belevantsev <abel@ispras.ru>
19314
19315 * tree-predcom.c (tree_predictive_commoning_loop): Bail out when
19316 compute_data_dependences_for_loop returns false.
19317 * tree-parloops.c (loop_parallel_p): Likewise.
19318
19319 2012-01-25 Richard Guenther <rguenther@suse.de>
19320
19321 * tree.h (get_pointer_alignment_1): Declare.
19322 * builtins.c (get_pointer_alignment_1): New function.
19323 (get_pointer_alignment): Use it.
19324
19325 2012-01-25 Ramana Radhakrishnan <ramana.radhakrishnan@linaro.org>
19326
19327 PR rtl-optimization/48308
19328 * combine.c (enum undo_kind): Add UNDO_LINKS.
19329 (struct undo): Add member l to other_contents and where.
19330 (do_SUBST_LINK): New.
19331 (SUBST_LINK): New.
19332 (try_combine): Handle LOG_LINKS for the dummy i1 case.
19333 (undo_all): Handle UNDO_LINKS.
19334
19335 2012-01-25 Richard Henderson <rth@redhat.com>
19336
19337 * optabs.c (maybe_emit_atomic_test_and_set): Allow non-QImode
19338 mem inputs.
19339
19340 2012-01-24 Richard Sandiford <rdsandiford@googlemail.com>
19341
19342 * optabs.c (gen_atomic_test_and_set): Use each argument.
19343
19344 2012-01-24 Richard Sandiford <rdsandiford@googlemail.com>
19345
19346 * config/mips/mips-ps-3d.md (mips_addr_ps, reduc_splus_v2sf)
19347 (mips_cvt_pw_ps, mips_cvt_ps_pw, mips_mulr_ps, mips_cabs_cond_<fmt>)
19348 (mips_cabs_cond_4s, mips_cabs_cond_ps, bc1any4t, bc1any4f, bc1any2t)
19349 (bc1any2f, mips_rsqrt1_<fmt>, mips_rsqrt2_<fmt>, mips_recip1_<fmt>)
19350 (mips_recip2_<fmt>): Require TARGET_MIPS3D rather than
19351 TARGET_PAIRED_SINGLE_FLOAT.
19352
19353 2012-01-24 Richard Sandiford <rdsandiford@googlemail.com>
19354
19355 * doc/rtl.texi (MEM_IN_STRUCT_P, MEM_SCALAR_P): Delete.
19356 (in_struct, return_val): Remove MEM documentation.
19357 * rtl.h (rtx_def): Remove MEM meanings from in_struct and return_val.
19358 (MEM_IN_STRUCT_P, MEM_SCALAR_P): Delete.
19359 (MEM_COPY_ATTRIBUTES): Remove references to MEM_IN_STRUCT_P
19360 and MEM_SCALAR.
19361 * emit-rtl.c (set_mem_attributes_minus_bitpos): Likewise.
19362 * cfgexpand.c (add_alias_set_conflicts): Likewise.
19363 * expr.c (store_field): Likewise.
19364 * function.c (assign_stack_temp_for_type): Likewise.
19365 * ifcvt.c (noce_try_cmove_arith): Likewise.
19366 * reload1.c (reload): Likewise.
19367 * config/alpha/alpha.c (alpha_set_memflags_1): Likewise.
19368 (alpha_set_memflags): Likewise.
19369 * config/m32c/m32c.c (m32c_immd_dbl_mov): Nullify.
19370
19371 2012-01-24 Richard Sandiford <rdsandiford@googlemail.com>
19372
19373 * rtl.h (true_dependence, canon_true_dependence): Remove varies
19374 parameter.
19375 * alias.c (fixed_scalar_and_varying_struct_p): Delete.
19376 (true_dependence_1, write_dependence_p, may_alias_p): Don't call it.
19377 (true_dependence_1, true_dependence, canon_true_dependence): Remove
19378 varies parameter.
19379 * cselib.c (cselib_rtx_varies_p): Delete.
19380 (cselib_invalidate_mem): Update call to canon_true_dependence.
19381 * dse.c (record_store, check_mem_read_rtx): Likewise.
19382 (scan_reads_nospill): Likewise.
19383 * cse.c (check_dependence): Likewise.
19384 (cse_rtx_varies_p): Delete.
19385 * expr.c (safe_from_p): Update call to true_dependence.
19386 * ira.c (validate_equiv_mem_from_store): Likewise.
19387 (memref_referenced_p): Likewise.
19388 * postreload-gcse.c (find_mem_conflicts): Likewise.
19389 * sched-deps.c (sched_analyze_2): Likewise.
19390 * store-motion.c (load_kills_store): Likewise.
19391 * config/frv/frv.c (frv_registers_conflict_p_1): Likewise.
19392 * gcse.c (mems_conflict_for_gcse_p): Likewise.
19393 (compute_transp): Update call to canon_true_dependence.
19394
19395 2012-01-25 Richard Henderson <rth@redhat.com>
19396
19397 * optabs.c (CODE_FOR_atomic_test_and_set): Provide default.
19398 (maybe_emit_atomic_test_and_set): New.
19399 (expand_sync_lock_test_and_set): Use it.
19400 (expand_atomic_test_and_set): Likewise.
19401 * doc/extend.texi (__atomic_test_and_set): Adjust the docs to match
19402 the implementation; clarify implementation defined details.
19403 * doc/md.texi (atomic_test_and_set): Document.
19404
19405 2012-01-25 Richard Henderson <rth@redhat.com>
19406
19407 * config/sparc/predicates.md (zero_or_v7_operand): Use match_code.
19408
19409 2012-01-25 Richard Henderson <rth@redhat.com>
19410
19411 PR target/51968
19412 * config/arm/arm.c (neon_split_vcombine): Emit deleted note
19413 to effect no-op split.
19414
19415 2012-01-24 Aldy Hernandez <aldyh@redhat.com>
19416
19417 PR lto/51698
19418 * builtin-types.def: (BT_CONST_DOUBLE_PTR): New.
19419 (BT_FN_VOID_PTR_CONST_PTR_SIZE): New.
19420 (BT_FN_VOID_PTR_INT_SIZE): New.
19421 (BT_FN_UINT_UINT_VAR): Remove.
19422 (BT_FN_UINT32_UINT32_VAR): New.
19423 (BT_FN_DOUBLE_VPTR): Remove.
19424 (BT_FN_DOUBLE_CONST_DOUBLE_PTR): New.
19425
19426 * gtm-builtins.def (_ITM_abortTransaction): Set return type to void.
19427 (_ITM_changeTransactionMode): Same.
19428 (_ITM_memmoveRtWt): Change return type to void.
19429 (_ITM_memcpyRtWt): Same.
19430 (_ITM_memsetW): Same.
19431 (_ITM_RaRD): Change types to double.
19432 (_ITM_RD): Same.
19433 (_ITM_RaWD): Same.
19434 (_ITM_RfWD): Same.
19435
19436 * builtins.def (DEF_TM_BUILTIN): Set BOTH_P to true.
19437
19438 2012-01-24 Aldy Hernandez <aldyh@redhat.com>
19439 Patrick Marlier <patrick.marlier@gmail.com>
19440
19441 * trans-mem.c (requires_barrier): Do not instrument thread local
19442 variables and emit save/restore for them.
19443
19444 2012-01-24 Jason Merrill <jason@redhat.com>
19445
19446 PR c++/51812
19447 * cgraphunit.c (cgraph_decide_is_function_needed): Don't always
19448 output static aliases.
19449
19450 2012-01-24 Jakub Jelinek <jakub@redhat.com>
19451
19452 PR driver/47249
19453 * common.opt (-pie, -shared, pie, shared): Change from Common to
19454 Driver.
19455 * gcc.c (display_help): Display help for -pie and -shared.
19456
19457 2012-01-24 Georg-Johann Lay <avr@gjlay.de>
19458
19459 PR target/49868
19460 * doc/extend.texi (AVR Named Address Spaces): Move sample code up.
19461 Remove note on size/offset limitation.
19462 (AVR Variable Attributes): Add example how to read data located
19463 with progmem. Refer to named address spaces.
19464 * doc/invoke.texi (AVR Options): Fix typo.
19465
19466 2012-01-24 Richard Guenther <rguenther@suse.de>
19467
19468 Forward-port to trunk
19469 2010-09-21 Jakub Jelinek <jakub@redhat.com>
19470
19471 PR middle-end/45678
19472 * expr.c (expand_expr_real_1) <case VIEW_CONVERT_EXPR>: If
19473 op0 isn't sufficiently aligned and there is movmisalignM
19474 insn for mode, use it to load op0 into a temporary register.
19475
19476 2012-01-24 Jakub Jelinek <jakub@redhat.com>
19477
19478 PR target/51957
19479 * target.def (const_not_ok_for_debug_p): New hook.
19480 * doc/tm.texi.in (TARGET_CONST_NOT_OK_FOR_DEBUG_P): New hook
19481 documentation.
19482 * doc/tm.texi: Regenerated.
19483 * dwarf2out.c (const_ok_for_output_1): If
19484 targetm.const_not_ok_for_debug_p returns true, fail.
19485 * config/rs6000/rs6000.c (rs6000_const_not_ok_for_debug_p): New
19486 function.
19487 (TARGET_CONST_NOT_OK_FOR_DEBUG_P): Redefine.
19488
19489 2012-01-23 Kai Tietz <ktietz@redhat.com>
19490
19491 PR target/51900
19492 * config/i386/predicates.md (symbolic_operand): Allow
19493 UNSPEC_PCREL as PIC expression for lea.
19494 * config/i386/winnt.c (i386_pe_binds_local_p): Reworked.
19495 * config/i386/i386.c (ix86_delegitimize_address): Handle
19496 UNSPEC_PCREL for none-MEM, too.
19497
19498 2012-01-23 Aldy Hernandez <aldyh@redhat.com>
19499
19500 * trans-mem.c (ipa_tm_create_version): Set externally_visible.
19501 (ipa_tm_create_version_alias): Same.
19502
19503 2012-01-23 Uros Bizjak <ubizjak@gmail.com>
19504
19505 PR libitm/51830
19506 * builtin-types.def (BT_FN_UINT_UINT_VAR): New.
19507 * gtm-builtins.def (BUILT_IN_TM_START): Declare as BT_FN_UINT_UINT_VAR.
19508
19509 2012-01-23 Aldy Hernandez <aldyh@redhat.com>
19510 Patrick Marlier <patrick.marlier@gmail.com>
19511 Iain Sandoe <developer@sandoe-acoustics.co.uk>
19512
19513 PR lto/51916
19514 * lto-wrapper.c (run_gcc): Pass the LTO section name to
19515 simple_object_start_read.
19516
19517 2012-01-23 Richard Guenther <rguenther@suse.de>
19518
19519
19520 PR tree-optimization/51895
19521 * tree-sra.c (decide_one_param_reduction): Avoid sub-optimal
19522 parameter decomposition into BLKmode components.
19523
19524 2012-01-23 Eric Botcazou <ebotcazou@adacore.com>
19525
19526 * tree-ssa-structalias.c (intra_create_variable_infos): Do not create
19527 fake variables for restrict-qualified pointers whose pointed-to type
19528 contains a placeholder.
19529
19530 2012-01-23 Richard Guenther <rguenther@suse.de>
19531
19532 PR tree-optimization/51949
19533 * ipa-split.c (execute_split_functions): Do not split malloc functions.
19534
19535 2012-01-23 Jakub Jelinek <jakub@redhat.com>
19536
19537 PR rtl-optimization/51933
19538 * ree.c (transform_ifelse): Return true right away if dstreg is
19539 already wider or equal to cand->mode.
19540 (enum ext_modified_kind, struct ext_modified, ext_state): New types.
19541 (make_defs_and_copies_lists): Remove defs_list and copies_list
19542 arguments, add state argument, just truncate state->work_list
19543 instead of always allocating and freeing the vector. Assert that
19544 get_defs succeeds instead of returning 2. Changed return type to bool.
19545 (merge_def_and_ext): Add state argument. If SET_DEST doesn't
19546 have ext_src_mode, see if it has been modified already with the
19547 right kind of extension and has been extended before from the
19548 ext_src_mode. If SET_DEST is already wider or equal to cand->mode,
19549 just return true. Remember the original mode in state->modified array.
19550 (combine_reaching_defs): Add state argument. Don't allocate and
19551 free here def_list, copied_list and vec vectors, instead just
19552 VEC_truncate the vectors in *state. Don't handle outcome == 2 here.
19553 (find_and_remove_re): Set DF_DEFER_INSN_RESCAN df flag.
19554 Add state variable, clear vectors in it, initialize state.modified
19555 if needed. Free all the vectors at the end and state.modified too.
19556 Don't skip a candidate if the extension expression has been modified.
19557
19558 2012-01-22 Douglas B Rupp <rupp@gnat.com>
19559
19560 PR target/47096
19561 * config.gcc: (i[34567]86-*-interix3*): Remove from obsolete
19562 configurations. Change triplet to i[34567]86-*-interix[3-9]*.
19563 (extra_options) interix.opt -> i386/interix.opt"
19564 (extra_objs):Add winnt-stubs.o
19565 * configure.ac: Add interix to target_os .comm on PE check.
19566 * configure: Regenerate.
19567 * config/interix3.h: Delete and move bits to..
19568 * config/interix.h: Delete and move bits to..
19569 * config/i386/i386-interix3.h: Delete and move bits to..
19570 * config/i386/i386-interix.h: ..here.
19571 (TARGET_CPU_DEFAULT): Remove redefinition.
19572 (TARGET_ASM_CONSTRUCTOR): Undefine.
19573 (SUBTARGET_SWITCHES): Define for ms-bitfields.
19574 (TARGET_OS_CPP_BUILTINS): Remove __OPENNT. Add __declspec.
19575 (PTRDIFF_TYPE): Define.
19576 (LONG_DOUBLE_TYPE_SIZE): Define.
19577 (LIBGCC2_LONG_DOUBLE_TYPE_SIZE): Define.
19578 (SUBTARGET_OVERRIDE_OPTIONS): Remove.
19579 (TARGET_SECTION_TYPE_FLAGS): Define.
19580 (ASM_DECLARE_FUNCTION_NAME): Define.
19581 (ASM_OUTPUT_EXTERNAL): Define.
19582 (ASM_OUTPUT_EXTERNAL_LIBCALL): Define.
19583 (ASM_OUTPUT_ALIGNED_BSS): Define.
19584 (PCC_BITFIELD_TYPE_MATTERS): Define.
19585 (USE_CONST_SECTION): Define.
19586 (SUBTARGET_ENCODE_SECTION_INFO): Remove.
19587 (TARGET_ASM_FUNCTION_RODATA_SECTION): Remove.
19588 (SUPPORTS_ONE_ONLY): Remove.
19589 (I386_PE_STRIP_ENCODING): Define.
19590 * config/interix.opt: Delete and move bits to..
19591 * config/i386/interix.opt: ..here. New.
19592 (mpe-aligned-commons): Add.
19593 * config/i386/t-interix: Add copyright header.
19594 (winnt-stubs.o): Add rule.
19595
19596 2012-01-22 Jason Merrill <jason@redhat.com>
19597
19598 PR c++/51832
19599 * varpool.c (varpool_analyze_pending_decls): Copy DECL_EXTERNAL
19600 for extra name aliases.
19601
19602 2012-01-22 Eric Botcazou <ebotcazou@adacore.com>
19603
19604 PR rtl-optimization/51924
19605 * ree.c (combine_set_extension): Improve debugging message.
19606 (combine_reaching_defs): Likewise.
19607 (get_defs): Rename confusingly named variable.
19608 (find_and_remove_re): Skip a candidate if the extension expression has
19609 been modified.
19610
19611 2012-01-21 Robert Millan <rmh@gnu.org>
19612 Gerald Pfeifer <gerald@pfeifer.com>
19613
19614 * config/kfreebsd-gnu.h (GNU_USER_DYNAMIC_LINKERX32): New macro.
19615 (GNU_USER_DYNAMIC_LINKER): Adjust indentation.
19616
19617 2012-01-20 Jakub Jelinek <jakub@redhat.com>
19618
19619 PR tree-optimization/51914
19620 * tree-vect-stmts.c (vectorizable_conversion): For
19621 cvt_type && modifier == WIDEN, put temporary with cvt_type
19622 at the beginning of vec_dsts and set vec_dest to temporary
19623 with vectype_out.
19624
19625 2012-01-20 Eric Botcazou <ebotcazou@adacore.com>
19626
19627 * cfgrtl.c (rtl_dump_bb): Do not dump insns for {ENTRY|EXIT}_BLOCK.
19628
19629 2012-01-20 Tijl Coosemans <tijl@coosemans.org>
19630
19631 * config/i386/i386.c: Fix checks for !TARGET_MACHO.
19632 * config/rs6000/rs6000.c: Likewise.
19633
19634 2012-01-20 Jakub Jelinek <jakub@redhat.com>
19635
19636 PR target/51915
19637 * config/arm/arm.c (arm_count_output_move_double_insns): Call
19638 output_move_double on a copy of operands array.
19639
19640 2012-01-20 Cary Coutant <ccoutant@google.com>
19641 Dodji Seketeli <dodji@redhat.com>
19642
19643 PR debug/45682
19644 * dwarf2out.c (copy_declaration_context): Return ref to parent
19645 of declaration DIE, if necessary.
19646 (remove_child_or_replace_with_skeleton): Add new parameter; update
19647 caller. Place skeleton DIE under parent DIE of original declaration.
19648 Move call to copy_declaration_context to here ...
19649 (break_out_comdat_types): ... from here.
19650
19651 2012-01-20 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
19652
19653 PR rtl-optimization/51856
19654 * reload.c (find_reloads_subreg_address): Set the address_reloaded
19655 flag to reloaded.
19656
19657 2012-01-20 Ramana Radhakrishnan <ramana.radhakrishnan@linaro.org>
19658
19659 PR target/51819
19660 * config/arm/arm.c (arm_print_operand): Correct output of alignment
19661 hints for neon loads and stores.
19662
19663 2012-01-20 Georg-Johann Lay <avr@gjlay.de>
19664
19665 PR target/49868
19666 PR target/50887
19667 * doc/extend.texi (Named Address Spaces): Split into subsections.
19668 (AVR Named Address Spaces): New subsection.
19669 (M32C Named Address Spaces): New subsection.
19670 (RL78 Named Address Spaces): New subsection.
19671 (SPU Named Address Spaces): New subsection.
19672 (Variable Attributes): New anchor "AVR Variable Attributes".
19673 (AVR Variable Attributes): Rewrite and avoid wording
19674 "address space" in this context.
19675 * doc/invoke.texi (AVR Options): Rewrite and add documentation
19676 for -maccumulate-args, -mbranch-cost=, -mrelax, -mshort-calls.
19677 (AVR Built-in Macros): New subsubsection therein.
19678 * doc/md.texi (AVR constraints): Remove "C04", "R".
19679
19680 2012-01-20 Richard Guenther <rguenther@suse.de>
19681
19682 PR tree-optimization/51903
19683 * tree-ssa-pre.c (eliminate): Properly purging of EH edges
19684 when removing stmts.
19685
19686 2012-01-20 Ramana Radhakrishnan <ramana.radhakrishnan@linaro.org>
19687
19688 PR target/50313
19689 * config/arm/arm.c (arm_load_pic_register): Use
19690 gen_pic_load_addr_unified. Delete calls to gen_pic_load_addr_32bit
19691 , gen_pic_add_dot_plus_eight and gen_pic_add_dot_plus_four.
19692 (arm_pic_static_addr): Likewise.
19693 (arm_rtx_costs_1): Adjust cost for UNSPEC_PIC_UNIFIED.
19694 (arm_note_pic_base): Handle UNSPEC_PIC_UNIFIED.
19695 * config/arm/arm.md (UNSPEC_PIC_UNIFIED): Define.
19696 (pic_load_addr_unified): New.
19697
19698 2012-01-20 Andrey Belevantsev <abel@ispras.ru>
19699
19700 PR target/51106
19701 * function.c (instantiate_virtual_regs_in_insn): Use
19702 delete_insn_and_edges when removing a wrong asm insn.
19703
19704 2012-01-19 Vladimir Makarov <vmakarov@redhat.com>
19705
19706 PR rtl-optimization/40761
19707 * ira-int.h (struct ira_loop_tree_node): Add comment for member loop.
19708 Add new member loop_num.
19709 (IRA_LOOP_NODE_BY_INDEX): Modify the check.
19710 (ira_build): Remove the parameter.
19711
19712 * ira.c (ira_print_disposition): Use loop_num instead of loop->num.
19713 (ira.c): Do not build CFG loops for one region allocation. Remove
19714 argument from ira_build call.
19715
19716 * ira-build.c (init_loop_tree_node): New function.
19717 (create_loop_tree_nodes): Use it. Separate the case when CFG
19718 loops are not built.
19719 (more_one_region_p): Check current_loops.
19720 (finish_loop_tree_nodes): Separate the case when CFG loops are not
19721 built.
19722 (add_loop_to_tree): Process loop equal to NULL too.
19723 (form_loop_tree): Separate the case when CFG loops are not built.
19724 Use explicitly number for the root.
19725 (rebuild_regno_allocno_maps, create_loop_tree_node_allocnos): Add
19726 an assertion.
19727 (ira_print_expanded_allocno, loop_compare_func): Use loop_num
19728 instead of loop->num.
19729 (mark_loops_for_removal): Ditto. Use loop_num instead of loop->num.
19730 (mark_all_loops_for_removal): Ditto.
19731 (remove_unnecessary_regions): Separate the case when CFG loops
19732 are not built.
19733 (ira_build): Remove the parameter. Use explicit number of regions
19734 when CFG loops are not built.
19735
19736 * ira-color.c (print_loop_title): Separate the case for the root node.
19737 Use loop_num instead of loop->num.
19738 (move_spill_restore): Use loop_num instead of loop->num.
19739
19740 * ira-emit.c (setup_entered_from_non_parent_p): Add an assertion.
19741 (change_loop): Ditto.
19742 (change_loop): Use loop_num instead of loop->num.
19743
19744 * ira-lives.c (process_bb_node_lives): Ditto.
19745
19746 * ira-costs.c (print_allocno_costs, find_costs_and_classes): Ditto.
19747
19748 * ira-conflicts.c (print_allocno_conflicts): Ditto.
19749
19750 2012-01-19 Jakub Jelinek <jakub@redhat.com>
19751
19752 PR libmudflap/40778
19753 * tree-mudflap.c (mf_artificial): New function.
19754 (execute_mudflap_function_ops, execute_mudflap_function_decls,
19755 mx_register_decls, mudflap_enqueue_decl): Use it.
19756
19757 PR target/51876
19758 * config/arm/neon.md (*neon_vswp<mode>): Fix up operand
19759 numbers in the insn pattern.
19760
19761 2012-01-19 Michael Matz <matz@suse.de>
19762
19763 PR tree-optimization/46590
19764 * cfgexpand.c (add_scope_conflicts_1): New old_conflicts argument,
19765 use it in remembering which conflicts we already created.
19766 (add_scope_conflicts): Adjust call to above, (de)allocate helper
19767 bitmap.
19768
19769 2012-01-19 Aldy Hernandez <aldyh@redhat.com>
19770
19771 PR lto/51280
19772 * lto-wrapper.c (run_gcc): Pass -fgnu_tm on.
19773 (merge_and_complain): Same.
19774
19775 2012-01-19 Jakub Jelinek <jakub@redhat.com>
19776
19777 PR bootstrap/50237
19778 * config/initfini-array.h: Guard content of the header
19779 with #ifdef HAVE_INITFINI_ARRAY.
19780 * configure.ac: Move gcc_AC_INITFINI_ARRAY much later into the file.
19781 Add initfini-array.h to tm_file here.
19782 * acinclude.m4 (gcc_AC_INITFINI_ARRAY): For non-ia64 do a linker test.
19783 * config.gcc: Don't add initfini-array.h to tm_file here.
19784 * configure: Regenerated.
19785
19786 2012-01-19 Andrey Belevantsev <abel@ispras.ru>
19787
19788 PR rtl-optimization/51505
19789 * df-problems.c (df_kill_notes): New parameter live. Update comment.
19790 Remove REG_EQUAL/REG_EQUIV notes referring to dead registers.
19791 (df_note_bb_compute): Update the call to df_kill_notes.
19792
19793 2012-01-18 Aldy Hernandez <aldyh@redhat.com>
19794
19795 * trans-mem.c (requires_barrier): Remove call to is_global_var.
19796
19797 2012-01-18 Richard Guenther <rguenther@suse.de>
19798
19799 * tree-ssa.c (useless_type_conversion_p): Remove special-casing
19800 of conversions to void *.
19801
19802 2012-01-17 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
19803 Richard Sandiford <rdsandiford@googlemail.com>
19804
19805 PR middle-end/50325
19806 PR middle-end/51192
19807 * optabs.h (simplify_expand_binop): Declare.
19808 * optabs.c (simplify_expand_binop): Make global.
19809 * expmed.c (store_bit_field_1): Use simplify_expand_binop on big
19810 endian targets if the source cannot be exactly covered by word
19811 mode chunks.
19812
19813 2012-01-17 Jakub Jelinek <jakub@redhat.com>
19814
19815 PR bootstrap/51872
19816 * hard-reg-set.h (struct hard_reg_set_container): New type.
19817 * target.h (struct hard_reg_set_container): Forward declare.
19818 * target.def (set_up_by_prologue): New target hook.
19819 * doc/tm.texi.in (TARGET_SET_UP_BY_PROLOGUE): Document it.
19820 * doc/tm.texi: Regenerated.
19821 * function.c (thread_prologue_and_epilogue_insns): Change
19822 set_up_by_prologue HARD_REG_SET into struct hard_reg_set_container.
19823 Call targetm.set_up_by_prologue on it.
19824 * config/rs6000/rs6000.c (rs6000_set_up_by_prologue): New function.
19825 (TARGET_SET_UP_BY_PROLOGUE): Redefine to it.
19826
19827 2012-01-17 Nick Clifton <nickc@redhat.com>
19828
19829 * config/rx/rx.c (rx_can_use_simple_return): New function.
19830 * config/rx/rx-protos.h (rx_can_use_simple_return): Prototype.
19831 * config/rx/rx.md (return): Predicate on rx_can_use_simple_return.
19832
19833 2012-01-17 Richard Guenther <rguenther@suse.de>
19834
19835 PR middle-end/51782
19836 * expr.c (expand_assignment): Take address-space information
19837 from the address operand of MEM_REF and TARGET_MEM_REF.
19838 (expand_expr_real_1): Likewise.
19839
19840 2012-01-17 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
19841
19842 * ira.c (do_reload): Make sure ira_dump_file is re-set if no
19843 reload dump is requested.
19844
19845 2012-01-17 Aldy Hernandez <aldyh@redhat.com>
19846
19847 PR other/51165
19848 * trans-mem.c (requires_barrier): Call may_be_aliased.
19849
19850 2012-01-17 Jakub Jelinek <jakub@redhat.com>
19851
19852 PR tree-optimization/51877
19853 * tree-ssa-tail-merge.c (gimple_equal_p): Don't return true whenever
19854 call arguments and fndecls compare equal, instead return false if they
19855 don't. Return true only if lhs1 and lhs2 are either both NULL, or
19856 both SSA_NAMEs that are valueized the same, or they satisfy
19857 operand_equal_p.
19858
19859 2012-01-17 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
19860
19861 * configure.ac (gcc_cv_target_dl_iterate_phdr): Only check on
19862 Solaris 11+.
19863 * configure: Regenerate.
19864
19865 2012-01-16 Jan Hubicka <jh@suse.cz>
19866
19867 PR c/12245
19868 PR c++/14179
19869 * convert.c (convert_to_integer): Use fold_convert for
19870 converting an INTEGER_CST to integer type.
19871
19872 2012-01-16 Jason Merrill <jason@redhat.com>
19873
19874 PR c++/14179
19875 * vec.c (vec_gc_o_reserve_1): Use ggc_round_alloc_size.
19876
19877 2012-01-16 Jakub Jelinek <jakub@redhat.com>
19878
19879 PR bootstrap/51860
19880 * config/s390/s390.c (s390_chunkify_start): Don't skip
19881 call insns followed by NOTE_INSN_CALL_ARG_LOCATION note. Skip
19882 NOTE_INSN_VAR_LOCATION and NOTE_INSN_CALL_ARG_LOCATION notes.
19883 If insn is followed by NOTE_INSN_VAR_LOCATION or
19884 NOTE_INSN_CALL_ARG_LOCATION notes, insert jump after all those notes.
19885 Don't use location of note insns.
19886
19887 PR tree-optimization/51865
19888 * tree-inline.c (tree_function_versioning): Call remap_decl
19889 on DECL_RESULT whenever it has VOID_TYPE_P type.
19890
19891 2012-01-15 Richard Sandiford <rdsandiford@googlemail.com>
19892
19893 * config/mips/mips.c (mips16_build_call_stub): Don't use a stub
19894 for calls to locally-binding MIPS16 functions if only the return
19895 type uses float regs.
19896
19897 2012-01-15 Chung-Lin Tang <cltang@codesourcery.com>
19898 Richard Sandiford <rdsandiford@googlemail.com>
19899
19900 * config/mips/mips-protos.h (SYMBOL_FORCE_TO_MEM): Delete.
19901 (SYMBOL_32_HIGH): Likewise.
19902 (mips_output_tls_reloc_directive): Declare.
19903 * config/mips/mips.h (PIC_FUNCTION_ADDR_REGNUM): Move to mips.md.
19904 (mips_use_pcrel_pool_p, mips_lo_relocs, mips_hi_relocs): Declare.
19905 * config/mips/mips.c (mips_use_pcrel_pool_p): New variable.
19906 (mips_lo_relocs, mips_hi_relocs): Make extern.
19907 (mips16_stub_function): Move up file.
19908 (mips_classify_symbol): Remove SYMBOL_FORCE_TO_MEM handling.
19909 (mips_symbolic_constant_p): Likewise. Remove SYMBOL_32_HIGH too.
19910 (mips_symbol_insns_1): Likewise. Check mips_use_pcrel_pool_p.
19911 (mips_cannot_force_const_mem): Use mips_use_pcrel_pool_p instead of
19912 SYMBOL_FORCE_TO_MEM. Only check mips_tls_symbol_ref_1 if it's false.
19913 (mips_get_tp): Add MIPS16 support.
19914 (mips_legitimize_tls_address): Remove MIPS16 sorry().
19915 Generalize DTPREL and TPREL handling.
19916 (mips_init_relocs): Initialize mips_use_pcrel_pool_p.
19917 Add MIPS16 TLS support.
19918 (mips_output_tls_reloc_directive): New function.
19919 (mips16_rewrite_pool_refs): Ignore UNSPEC_TLS_GET_TPs.
19920 * config/mips/predicates.md (symbolic_operand_with_high)
19921 (tls_reloc_operand): New predicates.
19922 (force_to_mem_operand): Use mips_use_pcrel_pool_p.
19923 * config/mips/mips.md (UNSPEC_UNSHIFTED_HIGH): New unspec.
19924 (PIC_FUNCTION_ADDR_REGNUM): Moved from mips.h.
19925 (*unshifted_high): New instruction. Use it for MIPS16 high splitter.
19926 (consttable_tls_reloc, tls_get_tp_mips16_<mode>): New patterns.
19927 (*tls_get_tp_mips16_call_<mode>): Likewise.
19928
19929 2012-01-15 Uros Bizjak <ubizjak@gmail.com>
19930
19931 PR rtl-optimization/51821
19932 * recog.c (peep2_find_free_register): Determine clobbered registers
19933 from insn pattern.
19934
19935 2012-01-14 Denis Chertykov <chertykov@gmail.com>
19936
19937 PR target/50925
19938 * config/avr/avr-protos.h: Revert change of 2012-01-09.
19939 * config/avr/avr.c: Likewise.
19940 * config/avr/avr.h: Likewise.
19941
19942 2012-01-13 Ian Lance Taylor <iant@google.com>
19943
19944 PR c++/50012
19945 * tree.h (TYPE_QUALS): Add cast to int.
19946 (TYPE_QUALS_NO_ADDR_SPACE): Likewise.
19947
19948 2012-01-13 Ian Lance Taylor <iant@google.com>
19949
19950 * ipa-cp.c (ipa_get_indirect_edge_target): Add typecasts when
19951 comparing param_index to VEC_length result.
19952
19953 2012-01-13 Steven Bosscher <steven@gcc.gnu.org>
19954
19955 * c-decl.c: Do not include tree-mudflap.h
19956 * tree-optimize.c: Likewise.
19957 * Makefile.in: Update dependencies.
19958
19959 2012-01-13 Richard Guenther <rguenther@suse.de>
19960
19961 PR middle-end/8081
19962 * gimplify.c (gimplify_modify_expr_rhs): For calls with a
19963 variable-sized result always use RSO.
19964
19965 2012-01-12 DJ Delorie <dj@redhat.com>
19966
19967 * cfgexpand.c (convert_debug_memory_address): Allow any valid
19968 pointer type, not just the default pointer type.
19969
19970 2012-01-09 Richard Henderson <rth@redhat.com>
19971 Denis Chertykov <chertykov@gmail.com>
19972
19973 PR target/50925
19974 * config/avr/avr-protos.h (avr_hard_regno_nregs): Declare.
19975 * config/avr/avr.c (avr_can_eliminate): Simplify.
19976 (avr_initial_elimination_offset): Likewise.
19977 (avr_prologue_setup_frame): Use hard_frame_pointer_rtx.
19978 (expand_epilogue): Likewise.
19979 (avr_legitimize_address): Gut.
19980 (avr_legitimize_reload_address): Use hard_frame_pointer_rtx.
19981 (avr_hard_regno_nregs): New.
19982 (avr_hard_regno_ok): Allow only Pmode for arg and frame_pointers.
19983 (avr_regno_mode_code_ok_for_base_b): Handle arg and frame pointers.
19984 * config/avr/avr.h (FIXED_REGISTERS): Adjust arg pointer,
19985 add soft frame pointer.
19986 (CALL_USED_REGISTERS): Likewise.
19987 (REG_CLASS_CONTENTS): Likewise.
19988 (REGISTER_NAMES): Likewise.
19989 (HARD_REGNO_NREGS): Use avr_hard_regno_nregs.
19990 (HARD_FRAME_POINTER_REGNUM): New.
19991 (FRAME_POINTER_REGNUM): Use soft frame pointer.
19992 (ELIMINABLE_REGS): Eliminate from the soft frame pointer,
19993 remove the HARD_FRAME_POINTER self-elimination.
19994
19995 2012-01-12 Georg-Johann Lay <avr@gjlay.de>
19996
19997 PR target/51756
19998 * config/avr/avr.c (avr_encode_section_info): Test for absence of
19999 DECL_EXTERNAL when checking for initializers of progmem variables.
20000
20001 2012-01-12 Ira Rosen <irar@il.ibm.com>
20002
20003 PR tree-optimization/51799
20004 * tree-vect-patterns.c (vect_recog_over_widening_pattern): Check
20005 that the last operation is a type demotion.
20006
20007 2012-01-12 Uros Bizjak <ubizjak@gmail.com>
20008
20009 * config/i386/i386.md (*zero_extendsidi2_rex64): Correct movl template.
20010 (x86_shift<mode>_adj_1): Remove operand constraint from operand 3.
20011
20012 2012-01-11 Jakub Jelinek <jakub@redhat.com>
20013
20014 PR bootstrap/51796
20015 * combine.c (distribute_notes): If i3 is a noreturn call,
20016 allow old_size to be equal to args_size and make sure the
20017 noreturn call gets REG_ARGS_SIZE note.
20018 * expr.c (fixup_args_size_notes): Put REG_ARGS_SIZE notes
20019 on noreturn calls even when the delta is 0.
20020
20021 2012-01-11 Nathan Sidwell <nathan@acm.org>
20022
20023 * gcov.c (STRING_SIZE): Remove.
20024 (generate_results): Erase annotations for source files with no
20025 coverage information.
20026 (read_line): New.
20027 (output_lines): Use it.
20028
20029 2012-01-11 Eric Botcazou <ebotcazou@adacore.com>
20030
20031 * gimple.h (gimplify_body): Remove first argument.
20032 * gimplify.c (copy_if_shared): Add DATA argument. Do not create the
20033 pointer set here, instead just pass DATA to walk_tree.
20034 (unshare_body): Remove BODY_P argument and adjust. Create the pointer
20035 set here and invoke copy_if_shared on the size trees of DECL_RESULT.
20036 (unvisit_body): Likewise, but with unmark_visited.
20037 (gimplify_body): Remove BODY_P argument and adjust.
20038 (gimplify_function_tree): Adjust call to gimplify_body.
20039 * omp-low.c (finalize_task_copyfn): Likewise.
20040
20041 2012-01-11 Eric Botcazou <ebotcazou@adacore.com>
20042
20043 * tree.h (build_function_decl_skip_args): Add boolean parameter.
20044 (build_function_type_skip_args): Delete.
20045 * tree.c (build_function_type_skip_args): Make static and add
20046 SKIP_RETURN parameter. Fix thinko in the handling of variants.
20047 (build_function_decl_skip_args): Add SKIP_RETURN parameter and
20048 pass it to build_function_type_skip_args.
20049 * cgraph.h (cgraph_function_versioning): Add boolean parameter.
20050 (tree_function_versioning): Likewise.
20051 * cgraph.c (cgraph_create_virtual_clone): Adjust call to
20052 build_function_decl_skip_args.
20053 * cgraphunit.c (cgraph_function_versioning): Add SKIP_RETURN parameter
20054 and pass it to build_function_decl_skip_args/tree_function_versioning.
20055 (cgraph_materialize_clone): Adjust call to tree_function_versioning.
20056 * ipa-inline-transform.c (save_inline_function_body): Likewise.
20057 * trans-mem.c (ipa_tm_create_version): Likewise.
20058 * tree-sra.c (modify_function): Ditto for cgraph_function_versioning.
20059 * tree-inline.c (declare_return_variable): Remove always-true test.
20060 (tree_function_versioning): Add SKIP_RETURN parameter. If the function
20061 returns non-void and SKIP_RETURN, create a void-typed RESULT_DECL.
20062 * ipa-split.c (split_function): Skip the return value for the split
20063 part if it doesn't return.
20064
20065 2012-01-11 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
20066
20067 PR tree-optimization/49642
20068 * ipa-split.c (forbidden_dominators): New variable.
20069 (check_forbidden_calls): New function.
20070 (dominated_by_forbidden): Likewise.
20071 (consider_split): Check for forbidden dominators.
20072 (execute_split_functions): Initialize and free forbidden
20073 dominators info; call check_forbidden_calls.
20074
20075 2012-01-11 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
20076
20077 * config/arm/arm.md (mov_notscc): Use MVN for false condition.
20078
20079 2012-01-11 Nick Clifton <nickc@redhat.com>
20080
20081 * config/rx/rx.md (return): Define pattern.
20082
20083 2012-01-11 Richard Guenther <rguenther@suse.de>
20084
20085 * doc/extend.texi (malloc attribute): Adjust according to
20086 implementation.
20087
20088 2012-01-10 Aldy Hernandez <aldyh@redhat.com>
20089 Patrick Marlier <patrick.marlier@gmail.com>
20090
20091 PR middle-end/51516
20092 * trans-mem.c (get_cg_data): Traverse aliases if requested.
20093 (ipa_tm_scan_calls_block): Update parameters to get_cg_data.
20094 (ipa_tm_note_irrevocable): Same.
20095 (ipa_tm_scan_irr_block): Same.
20096 (ipa_tm_decrement_clone_counts): Same.
20097 (ipa_tm_scan_irr_function): Same.
20098 (ipa_tm_create_version_alias): Same.
20099 (ipa_tm_create_version): Same.
20100 (ipa_tm_transform_calls_redirect): Same.
20101 (ipa_tm_transform_calls): Same.
20102 (ipa_tm_transform_transaction): Same.
20103 (ipa_tm_execute): Same.
20104
20105 2012-01-10 Richard Guenther <rguenther@suse.de>
20106
20107 PR middle-end/51806
20108 * opts.c (common_handle_option): Handle -Werror.
20109
20110 2012-01-10 Andreas Schwab <schwab@linux-m68k.org>
20111
20112 * config/m68k/sync.md ("atomic_compare_and_swap<mode>_1"): Fix
20113 operand number.
20114
20115 2012-01-10 Jason Merrill <jason@redhat.com>
20116
20117 * doc/invoke.texi (C++ Dialect Options): Update -fabi-version=6
20118 information.
20119
20120 2012-01-10 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
20121
20122 * configure.ac (gcc_cv_as_ix86_tlsgdplt): Check if linker
20123 supports R_386_TLS_GD_PLT reloc.
20124 (gcc_cv_as_ix86_tlsldmplt): Check if linker
20125 supports R_386_TLS_LDM_PLT reloc.
20126 * configure: Regenerate.
20127 * config.in: Regenerate.
20128
20129 2012-01-10 Georg-Johann Lay <avr@gjlay.de>
20130
20131 PR target/49868
20132 Extend __pgmx semantics to linearize memory.
20133 * config/avr/avr.md (mov<mode>): Use avr_xload_libgcc_p to
20134 determine if code comes inline or from libgcc.
20135 (MOVMEM_r_d:HI): Add "w" to constraint for better preference.
20136 (movmem_qi, movmem_qi): Set constraint #2 to "n".
20137 (movmem_qi_elpm, movmem_hi_elpm): Remove insns.
20138 (movmemx_qi, movmemx_hi): New insns.
20139 (xload_<mode>_libgcc): Rewrite to new insn condition.
20140 (xload_<mode>): Remove insns.
20141 * config/avr/avr.c (avr_out_xload): Rewrite: Only need to handle
20142 cases that don't satisfy avr_xload_libgcc_p().
20143 (avr_addr_space_convert): Allow converting in any direction.
20144 (avr_addr_space_subset_p): Return always true.
20145 (avr_xload_libgcc_p): Rewrite to fit new __pgmx semantics.
20146 (avr_emit_movmemhi): Ditto.
20147 (avr_out_lpm): No need to handle ADDR_SPACE_PGMX any more.
20148 (avr_out_movmem): Ditto.
20149 (AVR_SYMBOL_FLAG_PROGMEM): New macro.
20150 (AVR_SYMBOL_SET_ADDR_SPACE): New macro.
20151 (AVR_SYMBOL_GET_ADDR_SPACE): New macro.
20152 (avr_encode_section_info): Encode 'progmem' in symbol flags.
20153 (output_reload_in_const): Don't zero-extend any 24-bit symbols.
20154
20155 2012-01-10 Richard Guenther <rguenther@suse.de>
20156
20157 PR tree-optimization/50913
20158 * graphite-scop-detection.c (stmt_has_simple_data_refs_p):
20159 Require data-refs to be representable by Graphite with respect
20160 to any loop nest.
20161
20162 2012-01-10 Uros Bizjak <ubizjak@gmail.com>
20163
20164 * config/i386/constraints.md ("L"): Return true for 0xffffffff.
20165 * config/i386/i386.c (*anddi_1): Emit AND with 0xffffffff as MOV.
20166
20167 2012-01-10 Tom de Vries <tom@codesourcery.com>
20168
20169 PR rtl-optimization/51271
20170 * dwarf2cfi.c (scan_trace): Save and restore cur_row->reg_save when
20171 handling annulled branch.
20172
20173 2012-01-10 Richard Henderson <rth@redhat.com>
20174
20175 * config/arm/arm.c (arm_vectorize_vec_perm_const_ok,
20176 TARGET_VECTORIZE_VEC_PERM_CONST_OK, neon_split_vcombine, MAX_VECT_LEN,
20177 struct expand_vec_perm_d, arm_expand_vec_perm_1, arm_expand_vec_perm,
20178 arm_evpc_neon_vuzp, arm_evpc_neon_vzip, arm_evpc_neon_vrev,
20179 arm_evpc_neon_vtrn, arm_evpc_neon_vtbl, arm_expand_vec_perm_const_1,
20180 arm_expand_vec_perm_const): New.
20181 * config/arm/arm-protos.h: Update.
20182 * config/arm/neon.md (UNSPEC_VCONCAT): New.
20183 (*neon_vswp<VDQX>): New.
20184 (neon_vcombine<VDX>): Use neon_split_vcombine.
20185 (neon_vtbl1v16qi, neon_vtbl2v16qi, neon_vcombinev16qi): New.
20186 * config/arm/vec-common.md (vec_perm_const<VALL>): New.
20187 (vec_perm<VE>): New.
20188
20189 2012-01-10 Richard Henderson <rth@redhat.com>
20190
20191 * config/arm/arm.c (arm_gen_compare_reg): Add scratch argument;
20192 use it if reload_completed.
20193 (arm_legitimize_sync_memory, arm_emit, arm_insn_count, arm_count,
20194 arm_output_asm_insn, arm_process_output_memory_barrier,
20195 arm_output_memory_barrier, arm_ldrex_suffix, arm_output_ldrex,
20196 arm_output_strex, arm_output_it, arm_output_op2, arm_output_op3,
20197 arm_output_sync_loop, arm_get_sync_operand, FETCH_SYNC_OPERAND,
20198 arm_process_output_sync_insn, arm_output_sync_insn,
20199 arm_sync_loop_insns, arm_call_generator, arm_expand_sync): Remove.
20200 (arm_pre_atomic_barrier, arm_post_atomic_barrier): New.
20201 (arm_emit_load_exclusive, arm_emit_store_exclusive): New.
20202 (emit_unlikely_jump): New.
20203 (arm_expand_compare_and_swap, arm_split_compare_and_swap): New.
20204 (arm_split_atomic_op): New.
20205 * config/arm/arm-protos.h: Update.
20206 * config/arm/arm.h (enum arm_sync_generator_tag): Remove.
20207 (struct arm_sync_generator): Remove.
20208 * config/arm/arm.md (VUNSPEC_SYNC_COMPARE_AND_SWAP, VUNSPEC_SYNC_LOCK,
20209 VUNSPEC_SYNC_OP, VUNSPEC_SYNC_NEW_OP, VUNSPEC_SYNC_OLD_OP): Remove.
20210 (VUNSPEC_ATOMIC_CAS, VUNSPEC_ATOMIC_XCHG, VUNSPEC_ATOMIC_OP): New.
20211 (VUNSPEC_LL, VUNSPEC_SC): New.
20212 (sync_result, sync_memory, sync_required_value, sync_new_value,
20213 sync_t1, sync_t2, sync_release_barrier, sync_op): Remove.
20214 (attr length): Don't use arm_sync_loop_insns.
20215 (cbranch_cc, cstore_cc): Update call to arm_gen_compare_reg.
20216 (movsfcc, movdfcc): Likewise.
20217 * config/arm/constraints.md (Ua): New.
20218 * config/arm/prediates.md (mem_noofs_operand): New.
20219 (sync_compare_and_swap<QHSD>, sync_lock_test_and_set<QHSD>): Remove.
20220 (sync_clobber, sync_t2_reqd): Remove.
20221 (sync_<syncop><QHSD>, sync_nand<QHSD>): Remove.
20222 (sync_new_<syncop><QHSD>, sync_new_nand<QHSD>): Remove.
20223 (sync_old_<syncop><QHSD>, sync_old_nand<QHSD>): Remove.
20224 (arm_sync_compare_and_swap<SIDI>): Remove.
20225 (arm_sync_compare_and_swap<NARROW>): Remove.
20226 (arm_sync_lock_test_and_set<SIDI>): Remove.
20227 (arm_sync_lock_test_and_set<NARROW>): Remove.
20228 (arm_sync_new_<syncop><SIDI>): Remove.
20229 (arm_sync_new_<syncop><NARROW>): Remove.
20230 (arm_sync_new_nand<SIDI>): Remove.
20231 (arm_sync_new_nand<NARROW>): Remove.
20232 (arm_sync_old_<syncop><SIDI>): Remove.
20233 (arm_sync_old_<syncop><NARROW>): Remove.
20234 (arm_sync_old_nand<SIDI>): Remove.
20235 (arm_sync_old_nand<NARROW>): Remove.
20236 (*memory_barrier): Merge arm_output_memory_barrier.
20237 (atomic_compare_and_swap<QHSD>): New.
20238 (atomic_compare_and_swap<NARROW>_1): New.
20239 (atomic_compare_and_swap<SIDI>_1): New.
20240 (atomic_exchange<QHSD>): New.
20241 (cas_cmp_operand, cas_cmp_str): New.
20242 (atomic_op_operand, atomic_op_str): New.
20243 (atomic_<syncop><QHSD>, atomic_nand<QHSD>): New.
20244 (atomic_fetch_<syncop><QHSD>, atomic_fetch_nand<QHSD>): New.
20245 (atomic_<syncop>_fetch<QHSD>, atomic_nand_fetch<QHSD>): New.
20246 (arm_load_exclusive<NARROW>): New.
20247 (arm_load_exclusivesi, arm_load_exclusivedi): New.
20248 (arm_store_exclusive<QHSD>): New.
20249
20250 2012-01-09 Michael Meissner <meissner@linux.vnet.ibm.com>
20251
20252 * config/rs6000/rs6000.c (rs6000_init_hard_regno_mode_ok): Add DF
20253 reload patterns if -mvsx-scalar-memory.
20254
20255 * config/rs6000/vsx.md (vsx_xscvspdp): Allow xscvspdp to be
20256 generated, even -mno-vsx-scalar-double was used.
20257 (vsx_xscvdpsp_scalar): Likewise.
20258 (vsx_xscvspdp_scalar2): Likewise.
20259
20260 2012-01-09 Tom de Vries <tom@codesourcery.com>
20261 Andrew Pinski <apinski@cavium.com>
20262
20263 PR debug/51471
20264 * reorg.c (fill_slots_from_thread): Don't speculate
20265 frame-related insns.
20266
20267 2012-01-09 Richard Sandiford <rdsandiford@googlemail.com>
20268
20269 * sched-int.h (bb_note): Move to...
20270 * basic-block.h: ...here.
20271 * haifa-sched.c (bb_note): Move to...
20272 * cfgrtl.c: ...here.
20273 * function.c (next_block_for_reg): New function.
20274 (move_insn_for_shrink_wrap): Likewise.
20275 (prepare_shrink_wrap): Rewrite to use the above.
20276
20277 2012-01-09 Aldy Hernandez <aldyh@redhat.com>
20278
20279 * gimple.c (is_gimple_non_addressable): Remove.
20280 * gimple.h: Remove is_gimple_non_addressable.
20281 * gimplify.c (gimplify_modify_expr_rhs): Use is_gimple_reg instead of
20282 is_gimple_non_addressable.
20283 * trans-mem.c (expand_assign_tm): Same.
20284
20285 2012-01-09 Richard Guenther <rguenther@suse.de>
20286
20287 PR tree-optimization/51775
20288 * tree-ssa-sccvn.c (visit_use): Value-number throwing stmts.
20289 * tree-ssa-pre.c (eliminate): Properly fixup EH info.
20290
20291 2012-01-09 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
20292
20293 * config/arm/arm-cores.def (cortex-a15): Use cortex_a15_tune for
20294 tuning parameters.
20295 * config/arm/arm.c (arm_cortex_a15_tune): New static variable.
20296
20297 2012-01-09 Richard Guenther <rguenther@suse.de>
20298
20299 * tree-streamer-out.c (write_ts_optimization): Fix spelling.
20300
20301 2012-01-08 Jan Hubicka <jh@suse.cz>
20302
20303 PR tree-optimize/51680
20304 * ipa-inline-analyss.c (evaluate_properties_for_edge): Fix condition
20305 on when known_vals needs to be computed; cleanup.
20306
20307 2012-01-08 Jan Hubicka <jh@suse.cz>
20308
20309 PR tree-optimize/51694
20310 * ipa-cp.c (ipa_get_indirect_edge_target): Add bounds checks.
20311
20312 2012-01-08 Jonathan Wakely <jwakely.gcc@gmail.com>
20313
20314 * doc/cpp.texi (Predefined Macros): __STRICT_ANSI__ is defined
20315 for -std=c++98 and -std=c++11 too.
20316
20317 2012-01-08 Chung-Lin Tang <cltang@codesourcery.com>
20318
20319 * cfgloop.c (cancel_loop): Add free() of bbs array.
20320
20321 2012-01-07 Jan Hubicka <jh@suse.cz>
20322
20323 PR tree-optimization/51600
20324 * ipa-inline-analysis.c (estimate_edge_devirt_benefit): Disable code
20325 that benefits small functions.
20326
20327 2012-01-07 Jan Hubicka <jh@suse.cz>
20328
20329 * ipa-inline.c (want_inline_small_function_p): Fix formating.
20330
20331 2012-01-07 Jan Hubicka <jh@suse.cz>
20332
20333 PR tree-optimization/51680
20334 * ipa-inline.c (want_inline_small_function_p): Be more lax on functions
20335 whose inlining reduce unit size.
20336
20337 2012-01-07 Alexandre Oliva <aoliva@redhat.com>
20338
20339 PR bootstrap/51725
20340 * cselib.c (new_elt_loc_list): Promote addr_list to canonical node.
20341 Add canonical node to containing_mem chain after the non-canonical
20342 one, even if there weren't any locs to propagate.
20343 (remove_useless_values): Keep only canonical values.
20344 (add_mem_for_addr, cselib_lookup_mem): Canonicalize addr.
20345 (cselib_invalidate_mem): Likewise. Ensure v is canonical, and
20346 canonicalize mem_chain elements that are not discarded.
20347
20348 2012-01-06 Jakub Jelinek <jakub@redhat.com>
20349
20350 PR target/47333
20351 * cgraphunit.c (cgraph_optimize): Call output_weakrefs
20352 before emitting functions.
20353
20354 PR gcov-profile/50127
20355 * bb-reorder.c (partition_hot_cold_basic_blocks): Call
20356 clear_aux_for_blocks.
20357
20358 2012-01-06 Alexandre Oliva <aoliva@redhat.com>
20359
20360 PR debug/51746
20361 * cselib.c (cselib_hash_rtx): Hash incoming VALUEs too.
20362
20363 2012-01-06 Arnaud Charlet <charlet@adacore.com>
20364
20365 * c-decl.c (ext_block): Moved up.
20366 (collect_all_refs, for_each_global_decl): Take ext_block into account.
20367
20368 2012-01-06 Han Shen <shenhan@google.com>
20369
20370 Translate built-in include paths for sysroot.
20371 * Makefile.in (gcc_gxx_include_dir_add_sysroot): New.
20372 (PREPROCESSOR_DEFINES): Define GPLUSPLUS_INCLUDE_DIR_ADD_SYSROOT.
20373
20374 * cppdefault.c (cpp_include_defaults): Replace hard coded "0" with
20375 GPLUSPLUS_INCLUDE_DIR_ADD_SYSROOT for "add_sysroot" field.
20376
20377 * configure.ac (AC_SUBST): Add gcc_gxx_include_dir_add_sysroot to
20378 control whether sysroot should be prepended to gxx include dir.
20379
20380 * configure: Regenerate.
20381
20382 2012-01-06 Torvald Riegel <triegel@redhat.com>
20383
20384 PR rtl-optimization/51771
20385 * builtin-attrs.def (ATTR_RETURNS_TWICE, ATTR_TM_NOTHROW_RT_LIST): New.
20386 * gtm-builtins.def (BUILT_IN_TM_START): Add returns-twice attrib.
20387
20388 2012-01-05 Eric Botcazou <ebotcazou@adacore.com>
20389
20390 PR tree-optimization/51315
20391 * tree-sra.c (tree_non_aligned_mem_for_access_p): New predicate.
20392 (build_accesses_from_assign): Use it instead of tree_non_aligned_mem_p.
20393
20394 2012-01-05 Uros Bizjak <ubizjak@gmail.com>
20395
20396 PR target/51681
20397 * config/ia64/ia64.c (expand_vec_perm_shrp): Use correct operands
20398 for shrp pattern. Correctly handle and fixup shift variable.
20399 Return false when shift > nelt for BYTES_BIG_ENDIAN target.
20400
20401 2012-01-05 Jakub Jelinek <jakub@redhat.com>
20402
20403 PR debug/51762
20404 * calls.c (emit_call_1): For noreturn calls force a REG_ARGS_SIZE
20405 note when !ACCUMULATE_OUTGOING_ARGS.
20406
20407 2012-01-05 Eric Botcazou <ebotcazou@adacore.com>
20408
20409 * tree-vrp.c (extract_range_from_binary_expr_1): Remove duplicated
20410 condition.
20411 (extract_range_from_unary_expr_1): Avoid useless computations.
20412
20413 2012-01-05 Jakub Jelinek <jakub@redhat.com>
20414
20415 PR rtl-optimization/51767
20416 * cfgrtl.c (force_nonfallthru_and_redirect): Force addition
20417 of jump_block and add an extra edge for degenerated asm gotos.
20418
20419 PR middle-end/51768
20420 * stmt.c (check_unique_operand_names): Don't ICE during error
20421 reporting if i is from labels chain.
20422
20423 PR middle-end/44777
20424 * profile.c (branch_prob): Split bbs that have exit edge
20425 and need a fake entry edge too.
20426
20427 2012-01-05 Jan Hubicka <jh@suse.cz>
20428
20429 PR middle-end/49710
20430 * cfgloopmanip.c (remove_path): Walk loop hiearchy upwards when
20431 unlooping loops.
20432
20433 2012-01-05 Richard Guenther <rguenther@suse.de>
20434
20435 PR lto/50490
20436 * tree-streamer-out.c (write_ts_optimization): New function.
20437 (streamer_write_tree_body): Call it.
20438 * tree-streamer-in.c (lto_input_ts_optimization): New function.
20439 (streamer_read_tree_body): Call it.
20440 * lto-streamer-out.c (lto_is_streamable): Handle OPTIMIZATION_NODE.
20441
20442 2012-01-05 Jakub Jelinek <jakub@redhat.com>
20443
20444 PR middle-end/51761
20445 * gimple.h (struct gimplify_ctx): Add in_cleanup_point_expr field.
20446 * gimplify.c (gimplify_cleanup_point_expr): Save and set
20447 in_cleanup_point_expr before gimplify_stmt call and restore it
20448 afterwards.
20449 (gimplify_target_expr): Don't add {CLOBBER} cleanup if
20450 in_cleanup_point_expr is false.
20451
20452 2012-01-05 Richard Guenther <rguenther@suse.de>
20453
20454 PR middle-end/51764
20455 * common.opt (Wmudflap, fmudflap, fmudflapth, fmudflapir): Move
20456 to c.opt.
20457 * toplev.c (process_options): Reject combining mudflap and LTO.
20458 * tree-nomudflap.c (nogo): Use sorry instead of internal_error.
20459
20460 2012-01-05 Richard Guenther <rguenther@suse.de>
20461
20462 PR tree-optimization/51760
20463 * tree-ssa-ccp.c (likely_value): Drop UNDEFINED to CONSTANT,
20464 not VARYING.
20465 (bit_value_unop): Handle UNDEFINED operands.
20466 (bit_value_binop): Likewise.
20467
20468 2012-01-05 Georg-Johann Lay <avr@gjlay.de>
20469
20470 * config/avr/avr.c (avr_replace_prefix): Remove.
20471 (avr_asm_named_section): Use ACONCAT instead of avr_replace_prefix.
20472 (avr_asm_function_rodata_section): Ditto.
20473 (avr_asm_select_section): Ditto.
20474
20475 2012-01-05 Marcus Shawcroft <marcus.shawcroft@arm.com>
20476
20477 * reload.c (find_reloads): Adjust LABEL_NUSES on REG_LABEL_OPERAND
20478 insertion.
20479
20480 2012-01-05 Jakub Jelinek <jakub@redhat.com>
20481
20482 PR bootstrap/51648
20483 * tree-cfg.c (need_fake_edge_p): Return true also for noreturn
20484 calls that have any non-fake successor edges.
20485
20486 PR debug/51746
20487 * var-tracking.c (add_stores): For COND_EXEC allow oval to be NULL.
20488
20489 2012-01-04 Eric Botcazou <ebotcazou@adacore.com>
20490
20491 PR tree-optimization/51624
20492 * tree-sra.c (build_ref_for_model): When replicating a chain of
20493 COMPONENT_REFs, stop as soon as the offset would become negative.
20494
20495 2012-01-04 Jakub Jelinek <jakub@redhat.com>
20496
20497 PR debug/51695
20498 * dwarf2out.c (output_loc_list): For now drop >= 64KB expressions
20499 in .debug_loc on the floor.
20500
20501 2012-01-04 Andrew Pinski <apinski@cavium.com>
20502
20503 * doc/invoke.texi (-march=@var{arch}): Add octeon+ and octeon2.
20504
20505 2012-01-04 Andrew Pinski <apinski@cavium.com>
20506 Adam Nemet <anemet@caviumnetworks.com>
20507
20508 * config/mips/mips.md (size): Add SI and DI.
20509 (SIZE): New mode attribute.
20510 (U): New code attribute.
20511 * config/mips/mips-dsp.md (mips_lbux): Use gen_mips_lbux_extsi.
20512 (mips_lbux_<mode>): Delete.
20513 (mips_l<SHORT:size><u>x_ext<GPR:mode>_<P:mode>): New pattern.
20514 (mips_lhx): Use gen_mips_lhx_extsi.
20515 (mips_lhx_<mode>): Delete.
20516 (mips_lwx): Delete.
20517 (mips_l<size>x): New expand.
20518 (mips_lwx_<mode>): Delete.
20519 (mips_l<GPR:size>x_<P:mode>): New pattern.
20520 (*mips_lw<u>x_<P:mode>_ext): Likewise.
20521 * config/mips/mips-ftypes.def: Add DI f(POINTER, SI) function type.
20522 * config/mips/mips.c (mips_lx_address_p): New function.
20523 (mips_rtx_costs <case MEM>): Call mips_lx_address_p.
20524 (dsp64): New availability predicate.
20525 (mips_builtins): Add an entry for __builtin_mips_ldx.
20526 * config/mips/mips.h (ISA_HAS_LBX): New define.
20527 (ISA_HAS_LBUX): Likewise.
20528 (ISA_HAS_LHX): Likewise.
20529 (ISA_HAS_LHUX): Likewise.
20530 (ISA_HAS_LWX): Likewise.
20531 (ISA_HAS_LWUX): Likewise.
20532 (ISA_HAS_LDX): Likewise.
20533 * doc/extend.texi (__builtin_mips_ldx): Document.
20534
20535 2012-01-04 Tristan Gingold <gingold@adacore.com>
20536
20537 * config/vms/xm-vms.h (HOST_LONG_FORMAT, HOST_PTR_PRINTF): Define
20538 when long pointers are used.
20539 * config.build (*-*-*vms*): Handle all OpenVMS targets.
20540 (alpha64-dec-*vms*, alpha*-dec-*vms*)
20541 (ia64-hp-*vms*): Remove.
20542 * config/vms/xm-vms64.h: Delete.
20543
20544 2012-01-04 Aldy Hernandez <aldyh@redhat.com>
20545
20546 PR middle-end/51472
20547 * trans-mem.c (expand_assign_tm): Handle TM_MEMMOVE loads correctly.
20548
20549 2012-01-04 Aldy Hernandez <aldyh@redhat.com>
20550
20551 * opts.c (finish_options): Remove duplicate sorry.
20552
20553 2012-01-04 Aldy Hernandez <aldyh@redhat.com>
20554
20555 PR middle-end/51696
20556 * trans-mem.c (diagnose_tm_1): Display indirect calls with no name
20557 correctly.
20558
20559 2012-01-04 Richard Guenther <rguenther@suse.de>
20560
20561 PR middle-end/51750
20562 * tree.c (size_low_cst): New function.
20563 * tree.h (size_low_cst): Declare.
20564 * fold-const.c (fold_comparison): Use it to extract the low
20565 part of the POINTER_PLUS_EXPR offset.
20566
20567 2012-01-04 Georg-Johann Lay <avr@gjlay.de>
20568
20569 Fix clearing ZERO_REG
20570 * config/avr/avr.md (cc): Add alternative "ldi".
20571 (movqi_insn): Use it in cc attribute.
20572 * config/avr/avr.c (notice_update_cc): Handle CC_LDI.
20573 (output_reload_in_const): Use CLR to move 0 to ZERO_REG.
20574 (output_reload_insisf): Use ZERO_REG to pre-clear register.
20575
20576 2012-01-04 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
20577
20578 * configure: Regenerate.
20579
20580 2012-01-04 Richard Guenther <rguenther@suse.de>
20581
20582 PR tree-optimization/49651
20583 * tree-ssa-structalias.c (type_can_have_subvars): New function.
20584 (var_can_have_subvars): Use it.
20585 (get_constraint_for_1): Only consider subfields if there can be any.
20586
20587 2012-01-03 Jakub Jelinek <jakub@redhat.com>
20588
20589 PR bootstrap/51725
20590 * cselib.c (new_elt_loc_list): When moving locs from one cselib_val
20591 to its new canonical_cselib_val and the cselib_val was in
20592 first_containing_mem chain, but the canonical_cselib_val was not,
20593 add the latter into the chain.
20594 (cselib_invalidate_mem): Compare canonical_cselib_val of
20595 addr_list chain elt with v.
20596
20597 PR pch/51722
20598 * dwarf2out.c (dwarf2out_start_source_file, dwarf2out_define,
20599 dwarf2out_undef): Allocate e.info using ggc_strdup instead
20600 of xstrdup.
20601 (output_macinfo_op): Don't ggc_strdup fd->filename.
20602 (optimize_macinfo_range): Allocate grp_name using XALLOCAVEC,
20603 then ggc_strdup it. Don't free inc->info or cur->info.
20604 (output_macinfo): Don't free ref->info or file->info.
20605
20606 2012-01-03 Ira Rosen <irar@il.ibm.com>
20607
20608 PR tree-optimization/51269
20609 * tree-vect-loop-manip.c (set_prologue_iterations): Make
20610 first_niters a pointer.
20611 (slpeel_tree_peel_loop_to_edge): Likewise.
20612 (vect_do_peeling_for_loop_bound): Update call to
20613 slpeel_tree_peel_loop_to_edge.
20614 (vect_gen_niters_for_prolog_loop): Don't compute wide_prolog_niters
20615 here. Remove it from the parameters list.
20616 (vect_do_peeling_for_alignment): Update calls and compute
20617 wide_prolog_niters.
20618
20619 2012-01-03 Richard Guenther <rguenther@suse.de>
20620
20621 PR tree-optimization/51070
20622 * tree-loop-distribution.c (stmt_has_scalar_dependences_outside_loop):
20623 Properly handle calls.
20624
20625 2012-01-03 Richard Guenther <rguenther@suse.de>
20626
20627 PR tree-optimization/51692
20628 * tree-ssa-dce.c (eliminate_unnecessary_stmts): Do not remove
20629 the LHS of allocation stmts.
20630
20631 2012-01-03 Olivier Hainque <hainque@adacore.com>
20632
20633 * system.h: Prior to #define, #undef fopen and freopen unconditionally.
20634
20635 2012-01-03 Olivier Hainque <hainque@adacore.com>
20636
20637 * collect2.c (main): In AIX specific computations for vector
20638 insertions, use CONST_CAST2 to cast from char ** to const char **.
20639
20640 2012-01-03 Richard Guenther <rguenther@suse.de>
20641
20642 PR debug/51650
20643 * dwarf2out.c (dwarf2out_finish): Always create a DIE for
20644 the context of a limbo DIE when it does not already exist.
20645
20646 2012-01-03 Jakub Jelinek <jakub@redhat.com>
20647
20648 PR tree-optimization/51719
20649 * value-prof.c (gimple_ic): When indirect call isn't noreturn,
20650 but direct call is, clear direct call's lhs and don't add fallthrough
20651 edge from dcall_bb to join_bb and PHIs.
20652
20653 2012-01-03 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
20654
20655 * config/s390/s390.md ("*cmp<mode>_ccs"): Fix comment mentioning
20656 the instructions emitted by the pattern.
20657 ("*TDC_insn_<mode>"): Add comment.
20658
20659 2012-01-03 Richard Guenther <rguenther@suse.de>
20660
20661 PR middle-end/51730
20662 * fold-const.c (fold_comparison): Properly canonicalize
20663 tree offset and HOST_WIDE_INT bit position.
20664
20665 2012-01-02 Uros Bizjak <ubizjak@gmail.com>
20666
20667 * config/ia64/ia64.c (expand_vec_perm_broadcast): Use correct
20668 operands for extzv pattern.
20669
20670 2012-01-02 Jakub Jelinek <jakub@redhat.com>
20671
20672 PR bootstrap/51725
20673 * cselib.c (add_mem_for_addr): Call canonical_cselib_val
20674 on mem_elt first.
20675
20676 2012-01-02 Sandra Loosemore <sandra@codesourcery.com>
20677
20678 * doc/invoke.texi (-flto and related options): Copy-edit.
20679
20680 2012-01-02 Richard Sandiford <rdsandiford@googlemail.com>
20681
20682 * config/mips/mips.md (loadgp_newabi_<mode>): Add missing earlyclobber.
20683
20684 2012-01-02 Jakub Jelinek <jakub@redhat.com>
20685
20686 * config/i386/sse.md (*avx2_gatherdi<mode>_3, *avx2_gatherdi<mode>_4):
20687 New patterns.
20688
20689 2012-01-02 Richard Sandiford <rdsandiford@googlemail.com>
20690
20691 * expr.h (move_by_pieces_ninsns): Declare.
20692 * expr.c (move_by_pieces_ninsns): Make external.
20693 * config/mips/mips-protos.h (mips_move_by_pieces_p): Declare.
20694 (mips_store_by_pieces_p): Likewise.
20695 * config/mips/mips.h (MOVE_BY_PIECES_P): Call mips_move_by_pieces_p.
20696 (STORE_BY_PIECES_P): Likewise mips_store_by_pieces_p.
20697 * config/mips/mips.c (mips_move_by_pieces_p): New function.
20698 (mips_store_by_pieces_p): Likewise.
20699
20700 2012-01-02 Jakub Jelinek <jakub@redhat.com>
20701
20702 * passes.c (register_one_dump_file): Free full_name.
20703
20704 * reload1.c (reload): Don't allocate reg_max_ref_width here.
20705 (calculate_elim_costs_all_insns): Free offsets_at and
20706 offsets_known_at at the end and clear the pointers.
20707
20708 2012-01-02 Georg-Johann Lay <avr@gjlay.de>
20709
20710 * config/avr/avr.opt (-mbranch-cost): Fix double definition of
20711 this option introduced in r180739.
20712
20713 2012-01-02 Georg-Johann Lay <avr@gjlay.de>
20714
20715 PR target/51345
20716 * config.gcc (tm_file target=avr]): Add avr/avr-multilib.h
20717 (tmake_file target=avr): Add avr/t-multilib.
20718
20719 * config/avr/avr-c.c (avr_cpu_cpp_builtins): Use AVR_HAVE_8BIT_SP
20720 to built-in define __AVR_HAVE_8BIT_SP__, __AVR_HAVE_16BIT_SP__.
20721 * config/avr/genmultilib.awk: New file.
20722 * config/avr/t-multilib: New auto-generated file.
20723 * config/avr/multilib.h: New auto-generated file.
20724 * config/avr/t-avr (AVR_MCUS): New variable.
20725 (genopt.sh): Use it.
20726 (s-mlib): Depend on t-multilib.
20727 (t-multilib, multilib.h): New dependencies.
20728 (s-avr-mlib): New rule to build t-multilib, multilib.h from AVR_MCUS.
20729 (MULTILIB_OPTIONS): Remove.
20730 (MULTILIB_MATCHES): Remove.
20731 (MULTILIB_DIRNAMES): Remove.
20732 (MULTILIB_EXCEPTIONS): Remove:
20733 * config/avr/genopt.sh: Don't use hard coded file name;
20734 pass AVR_MCUS from t-avr instead.
20735
20736 2012-01-02 Georg-Johann Lay <avr@gjlay.de>
20737
20738 * config/avr/avr.c (avr_out_ashrpsi3): Fix "case 31" to "case 23".
20739
20740 2012-01-02 Georg-Johann Lay <avr@gjlay.de>
20741
20742 Implement light-weight DImode support.
20743 * config/avr/avr-dimode.md: New file.
20744 * config/avr/avr.md: Include it.
20745 (adjust_len): Add plus64, compare64.
20746 (HIDI): Remove code iterator.
20747 (code_stdname): New code attribute.
20748 (rotx, rotsmode): Remove DI.
20749 (rotl<mode>3, *rotw<mode>, *rotb<mode>): Use HISI instead of HIDI
20750 as code iterator.
20751 * config/avr/avr-protos.h (avr_have_dimode): New.
20752 (avr_out_plus64, avr_out_compare64): New.
20753 * config/avr/avr.c (avr_out_compare): Handle DImode.
20754 (avr_have_dimode): New variable definition and initialization.
20755 (avr_out_compare64, avr_out_plus64): New functions.
20756 (avr_out_plus_1): Use simplify_unary_operation to negate xval.
20757 (adjust_insn_length): Handle ADJUST_LEN_COMPARE64, ADJUST_LEN_PLUS64.
20758 (avr_compare_pattern): Skip DImode comparisons.
20759
20760 2012-01-02 Revital Eres <revital.eres@linaro.org>
20761
20762 * ddg.c (def_has_ccmode_p): New function.
20763 (add_cross_iteration_register_deps,
20764 create_ddg_dep_from_intra_loop_link): Call it.
20765
20766 2012-01-02 Richard Guenther <rguenther@suse.de>
20767
20768 PR other/51679
20769 * invoke.texi (fassociative-math): Remove spurious paranthesis.
20770
20771 2012-01-01 Jakub Jelinek <jakub@redhat.com>
20772
20773 * gcc.c (process_command): Update copyright notice dates.
20774 * gcov.c (print_version): Likewise.
20775 * gcov-dump.c (print_version): Likewise.
20776 * mips-tfile.c (main): Likewise.
20777 * mips-tdump.c (main): Likewise.
20778
20779 2012-01-01 Ira Rosen <irar@il.ibm.com>
20780
20781 PR tree-optimization/51704
20782 * tree-vect-slp.c (vect_detect_hybrid_slp_stmts): Check that
20783 a use is inside the basic block or loop before accessing its vect info.
20784
20785 2012-01-01 Jan Hubicka <jhjh@suse.cz>
20786
20787 PR rtl-optimization/51069
20788 * cfgloopmanip.c (remove_path): Removing path making irreducible
20789 region unconditional makes BB part of the region.
20790
20791 2012-01-01 Jakub Jelinek <jakub@redhat.com>
20792
20793 PR tree-optimization/51683
20794 * tree-ssa-propagate.c (substitute_and_fold): Don't optimize away
20795 calls with side-effects.
20796 * tree-ssa-ccp.c (ccp_fold_stmt): Likewise.
20797 \f
20798 Copyright (C) 2012 Free Software Foundation, Inc.
20799
20800 Copying and distribution of this file, with or without modification,
20801 are permitted in any medium without royalty provided the copyright
20802 notice and this notice are preserved.