2016-10-13 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / ChangeLog
blob756d77f66c53d09f150e728c55b4cb41ddba103b
1 2016-10-13  Richard Biener  <rguenther@suse.de>
3         PR middle-end/77826
4         * genmatch.c (struct capture): Add value_match member.
5         (commutate): Preserve value_match.
6         (lower_opt_convert): Likewise.
7         (lower_cond): Likewise.
8         (replace_id): Likewise.
9         (struct dt_operand): Add value_match member.
10         (decision_tree::cmp_node): Compare it.
11         (decision_tree::insert_operand): Honor it when finding and
12         when appending a DT_MATCH.
13         (dt_operand::gen_match_op): Generate a type check after
14         operand_equal_p if ! value_match for both GENERIC and GIMPLE.
15         (parser::get_internal_capture_id): New helper.
16         (parser::finish_match_operand): New function lowering @@<id>.
17         (parser::parse_capture): Parse @@<id> as value-match.
18         (parser::parse_expr): Use get_internal_capture_id.
19         (parser::parse_simplify): Call finish_match_operand.
20         (walk_captures): New helper.
21         * match.pd (X - (X / Y) * Y -> X % Y): Use value-matching instead
22         of operand_equal_p.
23         ((X /[ex] A) * A -> X): Likewise.
24         ((X | Y) ^ X -> Y & ~ X): Handle constants properly by using
25         convert[12] and value-matching.
26         ((A | B) & (A | C) ->  A | (B & C)): Likewise.
27         ((X | Y) | Y -> X | Y): Likewise.
28         ((X ^ Y) ^ Y -> X): Likewise.
29         (A - (A & B) -> ~B & A): Likewise.
30         ((T)(P + A) - (T)P -> (T) A): Likewise.
31         ((T)P - (T)(P + A) -> -(T) A): Likewise.
32         ((T)(P + A) - (T)(P + B) -> (T)A - (T)B): Likewise.
33         * doc/match-and-simplify.texi: Amend capture section.
35 2016-10-13  Claudiu Zissulescu  <claziss@synopsys.com>
37         * config/arc/arc.md (umul_600): Remove predicated variant.
38         (umul64_600): Likewise.
40 2016-10-13  Claudiu Zissulescu  <claziss@synopsys.com>
42         * config/arc/arc.h (INSN_LENGTH_ALIGNMENT): Change.
44 2016-10-13  Bin Cheng  <bin.cheng@arm.com>
46         * tree-vect-loop.c (loop_niters_no_overflow): New func.
47         (vect_transform_loop): Call loop_niters_no_overflow.  Pass the
48         no-overflow information to vect_do_peeling_for_loop_bound and
49         vect_gen_vector_loop_niters.
51 2016-10-13  Bin Cheng  <bin.cheng@arm.com>
53         * tree-predcom.c (tree_predictive_commoning_loop): Skip loop that only
54         iterates 1 time.
56 2016-10-13  Bin Cheng  <bin.cheng@arm.com>
58         * tree-vect-loop-manip.c (adjust_vec_debug_stmts): Don't release
59         adjust_vec automatically.
60         (slpeel_add_loop_guard): Remove param cond_expr_stmt_list.  Rename
61         param exit_bb to guard_to.
62         (slpeel_checking_verify_cfg_after_peeling):
63         (set_prologue_iterations):
64         (create_lcssa_for_virtual_phi): New func which is factored out from
65         slpeel_tree_peel_loop_to_edge.
66         (slpeel_tree_peel_loop_to_edge):
67         (iv_phi_p): New func.
68         (vect_can_advance_ivs_p): Call iv_phi_p.
69         (vect_update_ivs_after_vectorizer): Call iv_phi_p.  Directly insert
70         new gimple stmts in basic block.
71         (vect_do_peeling_for_loop_bound):
72         (vect_do_peeling_for_alignment):
73         (vect_gen_niters_for_prolog_loop): Rename to...
74         (vect_gen_prolog_loop_niters): ...Rename from.  Change parameters and
75         adjust implementation.
76         (vect_update_inits_of_drs): Fix code style issue.  Convert niters to
77         sizetype if necessary.
78         (vect_build_loop_niters): Move to here from tree-vect-loop.c.  Change
79         it to external function.
80         (vect_gen_scalar_loop_niters, vect_gen_vector_loop_niters): New.
81         (vect_gen_vector_loop_niters_mult_vf): New.
82         (slpeel_update_phi_nodes_for_loops): New.
83         (slpeel_update_phi_nodes_for_guard1): Reimplement.
84         (find_guard_arg, slpeel_update_phi_nodes_for_guard2): Reimplement.
85         (slpeel_update_phi_nodes_for_lcssa, vect_do_peeling): New.
86         * tree-vect-loop.c (vect_build_loop_niters): Move to file
87         tree-vect-loop-manip.c
88         (vect_generate_tmps_on_preheader): Delete.
89         (vect_transform_loop): Rename vectorization_factor to vf.  Call
90         vect_do_peeling instead of vect_do_peeling-* functions.
91         * tree-vectorizer.h (vect_do_peeling): New decl.
92         (vect_build_loop_niters, vect_gen_vector_loop_niters): New decls.
93         (vect_do_peeling_for_loop_bound): Delete.
94         (vect_do_peeling_for_alignment): Delete.
96 2016-10-13  Bin Cheng  <bin.cheng@arm.com>
98         * tree-vect-loop-manip.c (slpeel_tree_duplicate_loop_to_edge_cfg): Put
99         duplicated loop after its preheader and after the original loop.
101 2016-10-13  Bin Cheng  <bin.cheng@arm.com>
103         * tree-vect-loop.c (vect_analyze_loop_2): Check and skip loop if it
104         has no enough iterations for LOOP_VINFO_PEELING_FOR_GAPS.
106 2016-10-13  Bin Cheng  <bin.cheng@arm.com>
108         * tree-vect-loop.c (vectorizable_live_operation): Support handling
109         for live variable outside loop but not in lcssa form.
111 2016-10-13  Bin Cheng  <bin.cheng@arm.com>
113         * cfg.c (reset_original_copy_tables): New func.
114         * cfg.h (reset_original_copy_tables): New decl.
116 2016-10-13  Jakub Jelinek  <jakub@redhat.com>
118         PR c/77946
119         * tree.h (FALLTHROUGH_LABEL_P): Use private_flag instead of
120         public_flag.
121         * varasm.c (default_binds_local_p_3): Formatting fix.
123 2016-10-13  Bin Cheng  <bin.cheng@arm.com>
125         * tree-vect-loop-manip.c (slpeel_can_duplicate_loop_p): Fix code
126         style issue.
127         (vect_do_peeling_for_loop_bound, vect_do_peeling_for_alignment):
128         Remove useless code.
130 2016-10-13  Martin Liska  <mliska@suse.cz>
132         PR tree-optimization/77943
133         * tree-ssa-tail-merge.c (merge_stmts_p): Do not merge BBs with
134         a different EH landing pads.
136 2016-10-13  Jakub Jelinek  <jakub@redhat.com>
138         PR target/77957
139         * hooks.h (hook_tree_void_null): Declare.
140         * hooks.c (hook_tree_void_null): New function.
141         * langhooks.c (lhd_return_null_tree_v): Remove.
142         * langhooks-def.h (lhd_return_null_tree_v): Remove.
143         * cfgexpand.c (stack_protect_prologue): If guard_decl is NULL,
144         set y to const0_rtx.
145         * function.c (stack_protect_epilogue): Likewise.
146         * config/tilepro/tilepro.c (TARGET_STACK_PROTECT_GUARD): Redefine
147         if TARGET_THREAD_SSP_OFFSET is defined.
148         * config/s390/s390.c (TARGET_STACK_PROTECT_GUARD): Likewise.
149         * config/sparc/sparc.c (TARGET_STACK_PROTECT_GUARD): Likewise.
150         * config/tilegx/tilegx.c (TARGET_STACK_PROTECT_GUARD): Likewise.
151         * config/rs6000/rs6000.c (TARGET_STACK_PROTECT_GUARD): Likewise.
152         * config/i386/i386.c (TARGET_STACK_PROTECT_GUARD): Likewise.
153         (ix86_stack_protect_guard): New function.
155 2016-10-13  Richard Biener  <rguenther@suse.de>
157         * dwarf2out.c (tree_add_const_value_attribute): Do not try
158         rtl_for_decl_init during early phase.
159         (gen_variable_die): Do not create locations during early phase.
160         (gen_label_die): Likewise.
161         (decls_for_scope): Do not waste time handling BLOCK_NONLOCALIZED_VARs
162         twice.
164 2016-10-12  Richard Biener  <rguenther@suse.de>
166         * tree-vrp.c (evrp_dom_walker::try_find_new_range): Renamed from
167         try_add_new_range and made to eturn new range.
168         (evrp_dom_walker::before_dom_children): Push op1 value range before
169         pushing op0 value range.
171 2016-10-12  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
173         PR tree-optimization/77937
174         * gimple-ssa-strength-reduction.c (analyze_increments): Use
175         POINTER_TYPE_P on the candidate type to determine whether
176         candidates in this chain require pointer arithmetic.
178 2016-10-12  Eric Botcazou  <ebotcazou@adacore.com>
180         * config/visium/visium.c (visium_gimplify_va_arg): Emit a big-endian
181         correction if the type is smaller than a word.
182         (visium_select_cc_mode): Add ... fall through ... comment.
184 2016-10-12  Segher Boessenkool  <segher@kernel.crashing.org>
186         * config/rs6000/rs6000.c (machine_function): Add new fields
187         gpr_is_wrapped_separately and lr_is_wrapped_separately.
188         (TARGET_SHRINK_WRAP_GET_SEPARATE_COMPONENTS,
189         TARGET_SHRINK_WRAP_COMPONENTS_FOR_BB,
190         TARGET_SHRINK_WRAP_DISQUALIFY_COMPONENTS,
191         TARGET_SHRINK_WRAP_EMIT_PROLOGUE_COMPONENTS,
192         TARGET_SHRINK_WRAP_EMIT_EPILOGUE_COMPONENTS,
193         TARGET_SHRINK_WRAP_SET_HANDLED_COMPONENTS): Define.
194         (rs6000_get_separate_components): New function.
195         (rs6000_components_for_bb): New function.
196         (rs6000_disqualify_components): New function.
197         (rs6000_emit_prologue_components): New function.
198         (rs6000_emit_epilogue_components): New function.
199         (rs6000_set_handled_components): New function.
200         (rs6000_emit_prologue): Don't emit LR save if lr_is_wrapped_separately.
201         Don't emit GPR saves if gpr_is_wrapped_separately for that register.
202         (restore_saved_lr): Don't restore LR if lr_is_wrapped_separately.
203         (rs6000_emit_epilogue): Don't emit GPR restores if
204         gpr_is_wrapped_separately for that register.  Don't make a
205         REG_CFA_RESTORE note for registers we did not restore, either.
207 2016-10-12  Segher Boessenkool  <segher@kernel.crashing.org>
209         * function.c (thread_prologue_and_epilogue_insns): Call
210         try_shrink_wrapping_separate.  Compute the prologue_seq afterwards,
211         if it has possibly changed.  Compute the split_prologue_seq and
212         epilogue_seq later, too.
213         * shrink-wrap.c: #include cfgbuild.h and insn-config.h.
214         (dump_components): New function.
215         (struct sw): New struct.
216         (SW): New function.
217         (init_separate_shrink_wrap): New function.
218         (fini_separate_shrink_wrap): New function.
219         (place_prologue_for_one_component): New function.
220         (spread_components): New function.
221         (disqualify_problematic_components): New function.
222         (emit_common_heads_for_components): New function.
223         (emit_common_tails_for_components): New function.
224         (insert_prologue_epilogue_for_components): New function.
225         (try_shrink_wrapping_separate): New function.
226         * shrink-wrap.h: Declare try_shrink_wrapping_separate.
228 2016-10-12  Segher Boessenkool  <segher@kernel.crashing.org>
230         * regrename.c (build_def_use): Invalidate chains that have a
231         REG_CFA_RESTORE on some instruction.
233 2016-10-12  Segher Boessenkool  <segher@kernel.crashing.org>
235         * dce.c (delete_unmarked_insns): Don't delete instructions with
236         a REG_CFA_RESTORE note.
238 2016-10-12  Segher Boessenkool  <segher@kernel.crashing.org>
240         * common.opt (-fshrink-wrap-separate): New flag.
241         * doc/invoke.texi: Document it.
242         * doc/tm.texi.in (Shrink-wrapping separate components): New subsection.
243         * doc/tm.texi: Regenerate.
244         * emit-rtl.h (struct rtl_data): New field shrink_wrapped_separate.
245         * target.def (shrink_wrap): New hook vector.
246         (get_separate_components, components_for_bb, disqualify_components,
247         emit_prologue_components, emit_epilogue_components,
248         set_handled_components): New hooks.
250 2016-10-12  Segher Boessenkool  <segher@kernel.crashing.org>
252         * config/rs6000/rs6000.c (rs6000_return_in_memory): Warn for
253         vector return by reference only if -Wpsabi.
254         (rs6000_pass_by_reference): Similarly, for argument passing.
256 2016-10-12  David Malcolm  <dmalcolm@redhat.com>
258         * function-tests.c: Include "print-rtl.h".
259         (selftest::test_expansion_to_rtl): Call print_rtx_function on the
260         function, and verify what is dumped.
261         * print-rtl-function.c (print_edge): New function.
262         (begin_any_block): New function.
263         (end_any_block): New function.
264         (can_have_basic_block_p): New function.
265         (print_rtx_function): Track the basic blocks of insns in the
266         chain, wrapping those that are within blocks within "(block)"
267         directives.  Remove the "(cfg)" directive.
269 2016-10-12  David Malcolm  <dmalcolm@redhat.com>
271         * selftest.c (selftest::read_file): New function.
272         (selftest::test_read_file): New function.
273         (selftest::selftest_c_tests): Call test_read_file.
274         * selftest.h (selftest::read_file): New decl.
276 2016-10-12  Richard Biener  <rguenther@suse.de>
278         PR debug/77947
279         * cgraphunit.c (analyze_functions): Preserve cgraph nodes
280         function context.
282 2016-10-12  Thomas Schwinge  <thomas@codesourcery.com>
284         * lto-streamer.c: Fix LTO_STREAMER_DEBUG build.
286         * dwarf2out.c (dwarf2_lineno_debug_hooks): Use
287         dwarf2out_assembly_start.
289         * Makefile.in (SELFTEST_FLAGS): Add -nostdinc.
291         * Makefile.in (SELFTEST_FLAGS): New variable.
292         (s-selftest, selftest-gdb, selftest-valgrind): Use it.
294         * vmsdbgout.c (vmsdbg_debug_hooks): Add filename parameter to
295         early_finish hook.
297 2016-10-12  Georg-Johann Lay  <avr@gjlay.de>
299         * rtl.h (struct rtx_def): Comment how RTX_FLAGS will be
300         dumped in RTL dumps.
302 2016-10-12  Martin Liska  <mliska@suse.cz>
304         * gimple-fold.c (create_tmp_reg_or_ssa_name): New function.
305         (gimple_fold_builtin_memory_op): Use the function.
306         (gimple_fold_builtin_strchr): Likewise.
307         (gimple_fold_builtin_strcat): Likewise.
308         (gimple_build): Likewise.
310 2016-10-12  Nathan Sidwell  <nathan@acm.org>
312         * diagnostic.c (diagnostc_report_diagnostic): Fix formatting.
314 2016-10-12  Pierre-Marie de Rodat  <derodat@adacore.com>
316         * dwarf2out.c (int_loc_descriptor): Generate opcodes for another
317         equivalent 32-bit constant (modulo 2**32) when that yields
318         smaller instructions.
319         (size_of_int_loc_descriptor): Update accordingly.
321 2016-10-12  Pierre-Marie de Rodat  <derodat@adacore.com>
323         * dwarf2out.c (dwarf2out_early_global_decl): For nested
324         functions, call dwarf2out_decl on the parent function first.
326 2016-10-12  Richard Biener  <rguenther@suse.de>
328         * match.pd ((X /[ex] A) * A -> X): Remove unnecessary constraint
329         on the conversion.
331 2016-10-12  Richard Biener  <rguenther@suse.de>
333         * tree-ssa-propagate.c
334         (substitute_and_fold_dom_walker::before_dom_children): Do not
335         ignore ASSERT_EXPRs but only preserve them.
336         * tree-vrp.c (remove_range_assertions): Deal with ASSERT_EXPRs
337         that have been propagated into.
338         (vrp_finalize): Enable DCE for substitute_and_fold.
340 2016-10-12  Richard Biener  <rguenther@suse.de>
342         PR tree-optimization/77920
343         * tree-vrp.c (simplify_div_or_mod_using_ranges): Simplify.
344         (simplify_min_or_max_using_ranges): Pass in gsi and use it.
345         (simplify_abs_using_ranges): Likewise.
346         (simplify_conversion_using_ranges): Likewise.
347         (simplify_stmt_using_ranges): Adjust.
349 2016-10-12  Jakub Jelinek  <jakub@redhat.com>
351         PR tree-optimization/77929
352         * tree-ssa-reassoc.c (optimize_range_tests_var_bound): Handle
353         (*ops)[ranges[i].idx]->op != ranges[i].exp case.
355 2016-10-12  Aaron Sawdey  <acsawdey@linux.vnet.ibm.com>
357         PR target/77934
358         * config/rs6000/vmx.md (vsx_concat_<mode>): The mtvsrdd instruction
359         needs a base register for arg 1.
361 2016-10-12  Jakub Jelinek  <jakub@redhat.com>
363         * common.opt (Wimplicit-fallthrough) Turn into alias to
364         -Wimplicit-fallthrough=3.  Remove EnabledBy.
365         (Wimplicit-fallthrough=): New option.
366         * gimplify.c (warn_implicit_fallthrough_r): Use
367         OPT_Wimplicit_fallthrough_ instead of OPT_Wimplicit_fallthrough.
368         * doc/invoke.texi (-Wimplicit-fallthrough): Document as alias
369         to -Wimplicit-fallthrough=3.
370         (-Wimplicit-fallthrough=): Document.
372 2016-10-11  Eric Botcazou  <ebotcazou@adacore.com>
374         * config/sparc/sparc.c (emit_scc_insn): Remove direct support for EQ
375         and GEU in DImode if TARGET_SUBXC.
376         * config/sparc/sparc.md (seqdi<W:mode>_zero): Remove TARGET_SUBXC.
377         (seqdi<W:mode>_zero_subxc): Delete.
378         (neg_seqdi<W:mode>_zero): Remove TARGET_VIS3.
379         (neg_seqdi<W:mode>_zero_vis3): Delete.
380         (plus_seqdi<W:mode>_zero): Likewise.
381         (minus_seqdi<W:mode>_zero): Likewise.
382         (plus_plus_sltu<W:mode>): Accept only register.
383         (addx<W:mode>): Likewise.
384         (plus_sltu<W:mode>_vis3): Likewise.
385         (plus_plus_sltu<W:mode>_vis3): Likewise.
386         (neg_sgeu<W:mode>_vis3): Delete.
387         (minus_sgeu<W:mode>_vis3): Likewise.
388         (addxc<W:mode>): Accept only registers.
389         (neg_sltu<W:mode>_subxc): Write %%g0 instead of 0.
390         (minus_neg_sltu<W:mode>_subxc): Accept only register.
391         (neg_plus_sltu<W:mode>_subxc): Likewise.
392         (minus_sltu<W:mode>_subxc): Write %%g0 instead of 0.
393         (minus_minus_sltu<W:mode>_subxc): Accept only register.
394         (sgeu<W:mode>_insn_subxc): Delete.
395         (plus_sgeu<W:mode>_subxc): Likewise.
396         (subxc<W:mode>): Accept only register.
397         (scc splitter): Split always GEU again.
399 2016-10-11  Jeff Law  <law@redhat.com>
401         PR tree-optimization/77424
402         * tree-ssa-threadupdate.c (thread_through_all_blocks): Remove
403         dead conditionals.  Assert that all e->aux fields are NULL.
405 2016-10-11  David Malcolm  <dmalcolm@redhat.com>
407         * print-rtl.c (print_rtx): Rename "i" to "idx".  Split out the
408         operand-printing "switch" statement into...
409         (print_rtx_operand_code_0): ...this new function, ...
410         (print_rtx_operand_code_e): ...this new function, ...
411         (print_rtx_operand_codes_E_and_V): ...this new function, ...
412         (print_rtx_operand_code_i): ...this new function, ...
413         (print_rtx_operand_code_r): ...this new function, ...
414         (print_rtx_operand_code_u): ...this new function, ...
415         (print_rtx_operand): ...and this new function.
417 2016-10-11  Uros Bizjak  <ubizjak@gmail.com>
419         * config/alpha/alpha-passes.def: New file.
420         * config/alpha/t-alpha: New file.
421         * config/alpha/alpha-protos.h (gcc::context, rtl_opt_pass): Declare.
422         (make_pass_handle_trap_shadows): New prototype.
423         (make_pass_align_insns): Ditto.
424         * config/alpha/alpha.c (alpha_option_override): Don't register
425         passes here.
426         * config.gcc (alpha*-*-*) Add alpha/t-alpha to tmake_file.
428 2016-10-11  Michael Meissner  <meissner@linux.vnet.ibm.com>
430         PR target/77924
431         * config/rs6000/rs6000.c (rs6000_init_builtins): Only create the
432         distinct __ibm128 IBM extended double type if long doubles are
433         128-bits and the default format for long double is IEEE 128-bit.
435 2016-10-11  Richard Biener  <rguenther@suse.de>
437         * dwarf2out.c (DEBUG_STR_OFFSETS_SECTION): Remove conditional.
438         (init_sections_and_labels): Use DEBUG_DWO_STR_OFFSETS_SECTION.
439         (verify_die): New function.
440         (dwarf2out_finish): Call it.
441         (output_line_info): Handle case of -gsplit-dwarf without
442         DWARF2_ASM_LINE_DEBUG_INFO.
444 2016-10-11  Richard Biener  <rguenther@suse.de>
446         PR debug/77931
447         * gimple-low.c (lower_gimple_bind): Handle arbitrary common
448         sub-chains of BLOCK_VARS and gimple_bind_vars.
450 2016-10-11  Venkataramanan Kumar  <Venkataramanan.kumar@amd.com>
452         * config/i386/znver1.md : Fix imov/imovx load type reservations.
454 2016-10-11  Eric Botcazou  <ebotcazou@adacore.com>
456         * config/sparc/sparc.opt (msubxc): New option.
457         * doc/invoke.texi (SPARC options): Document it and tidy up.
458         * doc/tm.texi.in (Condition Codes): Adjust SPARC example.
459         * doc/tm.texi: Regenerate.
460         * config/sparc/sparc-modes.def (CC_NOOV): Rename into...
461         (CCNZ): ...this.
462         (CCX_NOOV): Rename into...
463         (CCXNZ): ...this.
464         (CCC): New.
465         (CCXC): Likewise.
466         * config/sparc/predicates.m (fcc_register_operand): Simplify.
467         (fcc0_register_operand): Likewise.
468         (icc_register_operand): New.
469         (icc_or_fcc_register_operand): Simplify.
470         (nz_comparison_operator): New.
471         (c_comparison_operator): Likewise.
472         (noov_compare_operator): Rename into...
473         (icc_comparison_operator): ...this.  Use above predicates.
474         (noov_compare64_operator): Rename into...
475         (v9_comparison_operator): ...this and tidy up.
476         (fcc_comparison_operator): New.
477         (icc_or_fcc_comparison_operator): Likewise.
478         (v9_register_compare_operator): Rename info...
479         (v9_register_comparison_operator): ...this.
480         * config/sparc/sparc.c (TARGET_FIXED_CONDITION_CODE_REGS): Define.
481         (sparc_option_override): Remove redundant VIS masks and add MASK_SUBXC
482         for Niagara-7.
483         (sparc_fixed_condition_code_regs): New function.
484         (select_cc_mode): Remove ATTRIBUTE_UNUSED.  Adjust for CCNZ/CCXNZ
485         renaming and add support for CCC/CCXC.
486         (output_cbranch): Likewise.
487         (sparc_print_operand): Likewise.
488         (gen_v9_scc): Remove obsolete assertion.
489         (emit_scc_insn): Emit RTL directly for EQ and NE.  Add direct support
490         for EQ in DImode if TARGET_SUBXC.  Remove test on TARGET_VIS3 for GEU.
491         (output_cbcond): Remove bogus handling of CC modes.
492         (sparc_register_move_cost): Return 100 for NO_REGS.
493         * config/sparc/sparc.md (W): New mode iterator.
494         (length): Adjust for noov_compare64_operator renaming.
495         (cmpsi_sne): New instruction.
496         (cmpdi_sne): Likewise.
497         (seqdi_special): Delete.
498         (seqdi_special): Likewise.
499         (snesi<P:mode>_special): Likewise.
500         (snedi_special): Likewise.
501         (snedi_special_vis3): Likewise.
502         (snesi patterns): Use W iterator.
503         (snedi patterns): Likewise.  Add TARGET_SUBXC patterns.
504         (sltu patterns): Likewise.
505         (sgeu patterns): Likewise.
506         (scc splitter): Do not split GEU in DImode if TARGET_SUBXC.
507         (normal_branch): Use icc_comparison_operator predicate.
508         (inverted_branch): Likewise.
509         (cbcond_sp32): Use comparison_operator predicate.
510         (cbcond_sp64): Likewise.
511         (normal_int_branch_sp64): Adjust for renaming
512         (inverted_int_branch_sp64): Likewise.
513         (mov<I:mode>_cc_reg_sp64): Likewise.
514         (movsf_cc_reg_sp6): Likewise.
515         (movdf_cc_reg_sp64): Likewise.
516         (movtf_cc_reg_hq_sp64): Likewise.
517         (movtf_cc_reg_sp64): Likewise.
518         (mov<I:mode>_cc_v9): Use icc_or_fcc_comparison_operator predicate.
519         (movsf_cc_v9): Likewise.
520         (movdf_cc_v9): Likewise.
521         (movtf_cc_hq_v9): Likewise.
522         (movtf_cc_v9): Likewise.
523         (adddi3): Call gen_adddi3_sp32.
524         (adddi3_insn_sp32): Rename to...
525         (adddi3_sp32): ...this.  Accept only register_operand as operand #1
526         and use CCCmode for the carry.
527         (addx_extend_sp32): Use CCCmode for the carry.
528         (addx_extend_sp64): Delete.
529         (adddi3_extend_sp32): Use CCCmode for the carry.
530         (cmp_plus patterns): Use CCNZ/CCXNZ mode and add C variants.
531         (subdi3): Call gen_subdi3_sp32.
532         (subdi3_insn_sp32): Rename to...
533         (subdi3_sp32): ...this and use CCmode for the carry.
534         (subx_extend_sp32): Use CCCmode for the carry.
535         (subx_extend_sp64): Delete.
536         (subdi3_extend_sp32): Use CCmode for the carry.
537         (cmp_minus patterns): Use CCNZ/CCXNZ mode and add C variants.
538         (negdi3): Call gen_negdi3_sp32.
539         (negdi3_sp32): Use CCCmode for the carry.
540         (cmp_neg patterns): Use CCNZ/CCXNZ mode and add C variants.
541         (cmp_nz_ashift_1): Use CCNZ mode.
542         (cmp_nz_set_ashift_1): Likewise.
543         (ctrapsi4): Use comparison_operator predicate.
544         (ctrapdi4): Likewise.
545         (trapsi_insn): Use icc_comparison_operator predicate.
546         (trapdi_insn): Likewise.
547         (edge8 patterns): Use CCNZmode.
548         (edge16 patterns): Likewise.
549         (edge32 patterns): Likewise.
551 2016-10-11  Eric Botcazou  <ebotcazou@adacore.com>
553         * config/visium/visium-modes.def (CC_NOOV): Rename into...
554         (CCNZ): ...this.
555         (CC_BTST): Rename into...
556         (CCC): ...this.
557         * config/visium/predicates.md (real_add_operand): New.
558         (visium_btst_operator): Rename into...
559         (visium_equality_comparison_operator): ...this.
560         (visium_noov_operator): Rename into...
561         (visium_nz_comparison_operator): ...this.
562         (visium_c_comparison_operator): New.
563         (visium_branch_operator): Adjust and deal with all CC modes.
564         * config/visium/visium.c (visium_adjust_cost): Adjust.
565         (visium_split_double_add): Use the *_set_carry patterns.
566         (visium_select_cc_mode): Add support for CCC mode and adjust.
567         (output_cbranch): Adjust and use the carry-based operators for
568         floating-point comparisons.
569         * config/visium/visium.md (flags_subst_arith): Adjust.
570         (addsi3_insn_set_carry): New instruction.
571         (subsi3_insn_set_carry): Likewise.
572         (negsi2_insn_set_carry): Likewise.
573         (btst): Adjust.
574         (cmp<mode>_sne): Likewise.
575         (cbranch<mode>4): Use ordered_comparison_operator.
576         (cbranch<mode>4_insn): Likewise.
577         (cbranchsi4_btst_insn): Adjust.
579 2016-10-11  Tom de Vries  <tom@codesourcery.com>
581         PR middle-end/77558
582         * builtins.c (std_canonical_va_list_type): Remove RECORD_TYPE
583         special-casing.
585 2016-10-11  Eric Botcazou  <ebotcazou@adacore.com>
587         * tree.h (build_complex_type): Add second parameter with default.
588         * tree.c (build_complex_type): Add NAMED second parameter and adjust
589         recursive call.  Create a TYPE_DECL only if NAMED is true.
590         (build_common_tree_nodes): Pass true in calls to build_complex_type.
592 2016-10-11  Georg-Johann Lay  <avr@gjlay.de>
594         New avr-passes.def to register AVR specific passes.
596         * config/avr/avr-passes.def: New file.
597         * config/avr/t-avr (PASSES_EXTRA): Add avr-passes.def.
598         * config/avr/avr-protos.h (gcc::context, rtl_opt_pass): Declare.
599         (make_avr_pass_recompute_note): New proto.
600         * config/avr/avr.c (make_avr_pass_recompute_notes): New function.
601         (avr_pass_recompute_notes): Use anonymous namespace.
602         (avr_register_passes): Remove function...
603         (avr_option_override): ...and its call.
605 2016-10-11  Robert Suchanek  <robert.suchanek@imgtec.com>
607         * config/mips/mips-cpus.def: Replace PTF_AVOID_BRANCHLIKELY with
608         PTF_AVOID_BRANCHLIKELY_ALWAYS for generic architecture and with
609         PTF_AVOID_BRANCHLIKELY_SPEED for others.
610         (mips2, mips3, mips4): Add PTF_AVOID_BRANCHLIKELY_SIZE to tune
611         flags.
612         * config/mips/mips.c (mips_option_override): Enable the branch
613         likely depending on the tune flags and optimization level.
614         * config/mips/mips.h (PTF_AVOID_BRANCHLIKELY): Remove.
615         (PTF_AVOID_BRANCHLIKELY_SPEED): Define.
616         (PTF_AVOID_BRANCHLIKELY_SIZE): Likewise.
617         (PTF_AVOID_BRANCHLIKELY_ALWAYS): Likewise.
619 2016-10-11  Richard Biener  <rguenther@suse.de>
621         * lto-streamer-out.c (collect_block_tree_leafs): New helper.
622         (output_function): Properly stream the whole block tree.
623         * lto-streamer-in.c (input_function): Likewise.
625 2016-10-11  Marek Polacek  <polacek@redhat.com>
627         * Makefile.in (C_COMMON_OBJS): Add c-family/c-warn.o.
629 2016-10-11  Kugan Vivekanandarajah  <kuganv@linaro.org>
631         * tree-vrp.c (evrp_dom_walker::try_add_new_range): New.
632         (evrp_dom_walker::before_dom_children): Infer and push new value
633         ranges for x in y < x.
635 2016-10-10  Joseph Myers  <joseph@codesourcery.com>
637         PR target/77586
638         * config/ia64/ia64.c (ia64_libgcc_floating_mode_supported_p)
639         (TARGET_LIBGCC_FLOATING_MODE_SUPPORTED_P): Remove.
640         * config/ia64/elf.h (IA64_NO_LIBGCC_TFMODE): Likewise.
641         * config/ia64/freebsd.h (IA64_NO_LIBGCC_TFMODE): Likewise.
642         * config/ia64/vms.h (IA64_NO_LIBGCC_XFMODE)
643         (IA64_NO_LIBGCC_TFMODE): Likewise.
645 2016-10-11  Kugan Vivekanandarajah  <kuganv@linaro.org>
647         * tree-vrp.c (vrp_intersect_ranges_1): Allocate bitmap before
648           copying.
650 2016-10-10  Andreas Tobler  <andreast@gcc.gnu.org>
652         * config.gcc: Add aarch64-*-freebsd* support.
653         * config.host: Likewise.
654         * config/aarch64/aarch64-freebsd.h: New file.
655         * config/aarch64/t-aarch64-freebsd: Ditto.
657 2016-10-10  Jeff Law  <law@redhat.com>
659         PR tree-optimization/71947
660         * tree-ssa-dom.c (cprop_into_stmt): Avoid replacing A with B, then
661         B with A within a single statement.
663 2016-10-10  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
665         PR tree-optimization/77824
666         * gimple-ssa-strength-reduction.c (stmt_cost): Explicitly return
667         zero cost for copies.
668         (find_candidates_dom_walker::before_dom_children): Replace
669         MODIFY_EXPR with SSA_NAME.
670         (replace_mult_candidate): Likewise.
671         (replace_profitable_candidates): Likewise.
673 2016-10-10  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
675         * config/s390/s390.h: Wrap more macros args in brackets and fix
677 2016-10-10  Georg-Johann Lay  <avr@gjlay.de>
679         * config/avr/gen-avr-mmcu-texi.c (string.h): Include.
681 2016-10-10  Andreas Schwab  <schwab@suse.de>
683         PR target/77738
684         * config/ia64/ia64.md ("doloop_end"): Reject if mode of loop
685         pseudo is not DImode.
687 2016-10-10  Claudiu Zissulescu  <claziss@synopsys.com>
689         * common/config/arc/arc-common.c (arc_option_optimization_table):
690         Remove compact casesi option.
691         * config/arc/arc.c (arc_override_options): Use compact casesi
692         option only for pre-ARCv2 cores.
693         * doc/invoke.texi (mcompact-casesi): Update text.
695 2016-10-09  Aaron Sawdey  <acsawdey@linux.vnet.ibm.com>
697         * config/rs6000/rs6000.h (TARGET_EFFICIENT_OVERLAPPING_UNALIGNED):
698         Add macro to say we can efficiently handle overlapping unaligned
699         loads.
700         * config/rs6000/rs6000.c (expand_block_compare): Avoid generating
701         poor code for processors older than p8.
703 2016-10-09  Eric Botcazou  <ebotcazou@adacore.com>
705         * gen-pass-instances.awk: Remove GNUism.
707 2016-10-09  Prathamesh Kulkarni  <prathamesh.kulkarni@linaro.org>
709         * ipa-prop.c (ipcp_transform_function): Set fields m_vr and bits to
710         NULL of (*ipcp_transformations)][node->uid].
712 2016-10-09  John David Anglin  <danglin@gcc.gnu.org>
714         * config/pa/pa.h (BIGGEST_ALIGNMENT): Adjust comment.
715         (MALLOC_ABI_ALIGNMENT): Define.
717 2016-10-09  Jakub Jelinek  <jakub@redhat.com>
719         * tree-ssa.c (target_for_debug_bind, verify_phi_args,
720         ssa_undefined_value_p, maybe_optimize_var): Use VAR_P and/or
721         VAR_OR_FUNCTION_DECL_P macros.
722         * tree-chkp.c (chkp_register_var_initializer, chkp_make_static_bounds,
723         chkp_get_bounds_for_decl_addr, chkp_parse_array_and_component_ref,
724         chkp_find_bounds_1): Likewise.
725         * ipa-polymorphic-call.c (decl_maybe_in_construction_p): Likewise.
726         * hsa-gen.c (get_symbol_for_decl): Likewise.
727         * cgraphunit.c (check_global_declaration, analyze_functions,
728         handle_alias_pairs, thunk_adjust, cgraph_node::expand_thunk):
729         Likewise.
730         * gimple-fold.c (can_refer_decl_in_current_unit_p,
731         canonicalize_constructor_val, gimple_get_virt_method_for_vtable):
732         Likewise.
733         * tree.c (set_decl_section_name, copy_node_stat,
734         need_assembler_name_p, free_lang_data_in_decl, find_decls_types_r,
735         merge_dllimport_decl_attributes, handle_dll_attribute,
736         decl_init_priority_insert, auto_var_in_fn_p, array_at_struct_end_p,
737         verify_type): Likewise.
738         * gimple-ssa-isolate-paths.c (find_implicit_erroneous_behavior,
739         find_explicit_erroneous_behavior): Likewise.
740         * sdbout.c (sdbout_toplevel_data, sdbout_late_global_decl): Likewise.
741         * ipa.c (process_references): Likewise.
742         * tree-chkp-opt.c (chkp_get_check_result): Likewise.
743         * varasm.c (get_block_for_decl, use_blocks_for_decl_p, make_decl_rtl,
744         notice_global_symbol, assemble_variable, mark_decl_referenced,
745         build_constant_desc, output_constant_def_contents, do_assemble_alias,
746         make_decl_one_only, default_section_type_flags,
747         categorize_decl_for_section, default_encode_section_info): Likewise.
748         * trans-mem.c (requires_barrier): Likewise.
749         * gimple-expr.c (mark_addressable): Likewise.
750         * cfgexpand.c (add_scope_conflicts_1, expand_one_var,
751         expand_used_vars_for_block, clear_tree_used, stack_protect_decl_p,
752         expand_debug_expr): Likewise.
753         * tree-dump.c (dequeue_and_dump): Likewise.
754         * ubsan.c (instrument_bool_enum_load): Likewise.
755         * tree-pretty-print.c (print_declaration): Likewise.
756         * simplify-rtx.c (delegitimize_mem_from_attrs): Likewise.
757         * tree-ssa-uninit.c (warn_uninitialized_vars): Likewise.
758         * asan.c (asan_protect_global, instrument_derefs): Likewise.
759         * tree-into-ssa.c (rewrite_stmt, maybe_register_def,
760         pass_build_ssa::execute): Likewise.
761         * var-tracking.c (var_debug_decl, track_expr_p): Likewise.
762         * tree-ssa-loop-ivopts.c (force_expr_to_var_cost, split_address_cost):
763         Likewise.
764         * ipa-split.c (test_nonssa_use, consider_split, mark_nonssa_use):
765         Likewise.
766         * tree-inline.c (insert_debug_decl_map, remap_ssa_name,
767         can_be_nonlocal, remap_decls, copy_debug_stmt,
768         initialize_inlined_parameters, add_local_variables,
769         reset_debug_binding, replace_locals_op): Likewise.
770         * dse.c (can_escape): Likewise.
771         * ipa-devirt.c (compare_virtual_tables, referenced_from_vtable_p):
772         Likewise.
773         * tree-diagnostic.c (default_tree_printer): Likewise.
774         * tree-streamer-in.c (unpack_ts_decl_common_value_fields,
775         unpack_ts_decl_with_vis_value_fields,
776         lto_input_ts_decl_common_tree_pointers): Likewise.
777         * builtins.c (builtin_save_expr, fold_builtin_expect,
778         readonly_data_expr): Likewise.
779         * tree-ssa-structalias.c (new_var_info, get_constraint_for_ssa_var,
780         create_variable_info_for, set_uids_in_ptset, visit_loadstore):
781         Likewise.
782         * gimple-streamer-out.c (output_gimple_stmt): Likewise.
783         * gimplify.c (force_constant_size, gimplify_bind_expr,
784         gimplify_decl_expr, gimplify_var_or_parm_decl,
785         gimplify_compound_lval, gimplify_init_constructor,
786         gimplify_modify_expr, gimplify_asm_expr, gimplify_oacc_declare,
787         gimplify_type_sizes): Likewise.
788         * cgraphbuild.c (record_reference, record_type_list, mark_address,
789         mark_load, mark_store, pass_build_cgraph_edges::execute): Likewise.
790         * tree-ssa-live.c (mark_all_vars_used_1, remove_unused_scope_block_p,
791         remove_unused_locals): Likewise.
792         * tree-ssa-alias.c (ptr_deref_may_alias_decl_p, ptrs_compare_unequal,
793         ref_maybe_used_by_call_p_1, call_may_clobber_ref_p_1): Likewise.
794         * function.c (instantiate_expr, instantiate_decls_1,
795         setjmp_vars_warning, add_local_decl): Likewise.
796         * alias.c (ao_ref_from_mem, get_alias_set, compare_base_symbol_refs):
797         Likewise.
798         * tree-stdarg.c (find_va_list_reference, va_list_counter_struct_op,
799         va_list_ptr_read, va_list_ptr_write, check_all_va_list_escapes,
800         optimize_va_list_gpr_fpr_size): Likewise.
801         * tree-nrv.c (pass_nrv::execute): Likewise.
802         * tsan.c (instrument_expr): Likewise.
803         * tree-ssa-dce.c (remove_dead_stmt): Likewise.
804         * vtable-verify.c (verify_bb_vtables): Likewise.
805         * tree-dfa.c (ssa_default_def, set_ssa_default_def,
806         get_ref_base_and_extent): Likewise.
807         * toplev.c (wrapup_global_declaration_1, wrapup_global_declaration_2):
808         Likewise.
809         * tree-sra.c (static bool constant_decl_p, find_var_candidates,
810         analyze_all_variable_accesses): Likewise.
811         * tree-nested.c (get_nonlocal_debug_decl,
812         convert_nonlocal_omp_clauses, note_nonlocal_vla_type,
813         note_nonlocal_block_vlas, convert_nonlocal_reference_stmt,
814         get_local_debug_decl, convert_local_omp_clauses,
815         convert_local_reference_stmt, nesting_copy_decl, remap_vla_decls):
816         Likewise.
817         * tree-vect-data-refs.c (vect_can_force_dr_alignment_p): Likewise.
818         * stmt.c (decl_overlaps_hard_reg_set_p): Likewise.
819         * dbxout.c (dbxout_late_global_decl, dbxout_type_fields,
820         dbxout_symbol, dbxout_common_check): Likewise.
821         * expr.c (expand_assignment, expand_expr_real_2, expand_expr_real_1,
822         string_constant): Likewise.
823         * hsa.c (hsa_get_declaration_name): Likewise.
824         * passes.c (rest_of_decl_compilation): Likewise.
825         * tree-ssanames.c (make_ssa_name_fn): Likewise.
826         * tree-streamer-out.c (pack_ts_decl_common_value_fields,
827         pack_ts_decl_with_vis_value_fields,
828         write_ts_decl_common_tree_pointers): Likewise.
829         * stor-layout.c (place_field): Likewise.
830         * symtab.c (symtab_node::maybe_create_reference,
831         symtab_node::verify_base, symtab_node::make_decl_local,
832         symtab_node::copy_visibility_from,
833         symtab_node::can_increase_alignment_p): Likewise.
834         * dwarf2out.c (add_var_loc_to_decl, tls_mem_loc_descriptor,
835         decl_by_reference_p, reference_to_unused, rtl_for_decl_location,
836         fortran_common, add_location_or_const_value_attribute,
837         add_scalar_info, add_linkage_name, set_block_abstract_flags,
838         local_function_static, gen_variable_die, dwarf2out_late_global_decl,
839         optimize_one_addr_into_implicit_ptr,
840         optimize_location_into_implicit_ptr): Likewise.
841         * gimple-low.c (record_vars_into): Likewise.
842         * ipa-visibility.c (update_vtable_references): Likewise.
843         * tree-ssa-address.c (fixed_address_object_p, copy_ref_info):
844         Likewise.
845         * lto-streamer-out.c (tree_is_indexable, get_symbol_initial_value,
846         DFS::DFS_write_tree_body, write_symbol): Likewise.
847         * langhooks.c (lhd_warn_unused_global_decl,
848         lhd_set_decl_assembler_name): Likewise.
849         * attribs.c (decl_attributes): Likewise.
850         * except.c (output_ttype): Likewise.
851         * varpool.c (varpool_node::get_create, ctor_for_folding,
852         varpool_node::assemble_decl, varpool_node::create_alias): Likewise.
853         * fold-const.c (fold_unary_loc): Likewise.
854         * ipa-prop.c (ipa_compute_jump_functions_for_edge,
855         ipa_find_agg_cst_from_init): Likewise.
856         * omp-low.c (expand_omp_regimplify_p, expand_omp_taskreg,
857         expand_omp_target, lower_omp_regimplify_p,
858         grid_reg_assignment_to_local_var_p, grid_remap_prebody_decls,
859         find_link_var_op): Likewise.
860         * tree-chrec.c (chrec_contains_symbols): Likewise.
861         * tree-cfg.c (verify_address, verify_expr, verify_expr_location_1,
862         gimple_duplicate_bb, move_stmt_op, replace_block_vars_by_duplicates,
863         execute_fixup_cfg): Likewise.
865         PR tree-optimization/77901
866         * tree-ssa-reassoc.c (optimize_range_tests_var_bound): Only optimize
867         if ranges[i].exp is SSA_NAME when looking for >= and only when
868         ranges[i].exp is NULL or SSA_NAME when looking for the other
869         comparison.
871 2016-10-09  Prathamesh Kulkarni  <prathamesh.kulkarni@linaro.org>
873         * ipa-cp.c (ipcp_alignment_lattice): Remove.
874         (ipcp_param_lattices): Remove field alignment.
875         (print_all_lattices): Remove call to ipcp_alignment_lattice::print.
876         (set_all_contains_variable): Remove call to
877         ipcp_alignment_lattice::set_to_bottom.
878         (initialize_node_lattices): Likewise.
879         (propagate_alignment_accross_jump_function): Remove.
880         (propagate_constants_accross_call): Remove call to
881         propagate_alignment_accross_jump_function.
882         (ipcp_store_alignment_results): Remove.
883         (ipcp_driver): Remove call to ipcp_store_alignment_results.
884         (propagate_bits_accross_jump_function): Handle ancestor jump function.
885         * ipa-prop.c (ipa_print_node_jump_functions_for_edge): Remove
886         pretty-printing of alignment jump function.
887         (ipa_set_jf_unknown): Remove assignment to jfunc->alignment.known.
888         (ipa_compute_jump_functions_for_edge): Adjust ipa_bits jump function for
889         alignments and remove computing ipa_alignment jump function.
890         (ipa_node_params_t::duplicate): Remove copying of src_trans->alignments.
891         (ipa_write_jump_functions): Remove streaming for ipa_alignment.
892         (ipa_read_jump_function): Remove reading of ipa_alignment.
893         (write_ipcp_transformation_info): Remove streaming for alignment
894         propagation summary.
895         (read_ipcp_transformation_info): Remove reading of alignment
896         propagation summary.
897         (ipcp_update_alignments): Remove.
898         (ipcp_update_bits): Adjust to set alignment for parameters of pointer
899         type.
900         (ipcp_transform_function): Remove call to ipcp_update_alignments()
901         and remove assignment to (*ipcp_transformations)[node->uid].alignments.
902         * ipa-prop.h (ipa_alignment): Remove.
903         (ipa_jump_func): Remove field alignment.
904         (ipcp_transformation_summary): Remove field alignments.
905         * doc/invoke.texi: Mark fipa-cp-alignment as obsolete.
906         * opts.c (default_options_table): Remove entry for fipa-cp-alignment.
907         (enable_fdo_optimizations): Remove checking for fipa-cp-alignment.
909 2016-10-08  Eric Botcazou  <ebotcazou@adacore.com>
911         * config/sparc/sparc.h (FIXED_REGISTERS): Add %icc.
913         * config/visium/visium.c (visium_expand_int_cstore): Revert latest
914         change.
915         (visium_expand_fp_cstore): Likewise.
917 2016-10-08  Prathamesh Kulkarni  <prathamesh.kulkarni@linaro.org>
919         * diagnostic-core.h (warning_at_rich_loc_n): Declare.
920         * diagnostic.c (warning_at_rich_loc_n): New function.
921         (diagnostic_n_impl_richloc): Likewise.
922         (diagnostic_n_impl): Move most of the function to
923         diagnostic_n_impl_richloc and call it.
925 2016-10-08  Jakub Jelinek  <jakub@redhat.com>
927         * gen-pass-instances.awk: Rewritten.
928         * Makefile.in (pass-instances.def): Depend on $(PASSES_EXTRA), pass
929         $(PASSES_EXTRA) after passes.def to the script.
930         * config/i386/t-i386 (PASSES_EXTRA): Add i386-passes.def.
931         * config/i386/i386-passes.def: New file.
932         * config/i386/i386-protos.h (make_pass_insert_vzeroupper,
933         make_pass_stv): Declare.
934         * config/i386/i386.c (pass_stv::pass_stv): Initialize timode_p to
935         false.
936         (pass_stv::gate): Depending on timode_p member require TARGET_64BIT
937         or !TARGET_64BIT.
938         (pass_stv::clone, pass_stv::set_pass_param): New methods.
939         (pass_stv::timode_p): New non-static data member.
940         (ix86_option_override): Don't register passes here.
942         * doc/invoke.texi: Document accepting Else, fallthrough.
944         * doc/invoke.texi (-Wimplicit-fallthrough): Document FALLTHRU comment
945         style changes.
947         * doc/invoke.texi (-Wimplicit-fallthrough): Document the accepted
948         FALLTHRU comment styles.
950 2016-10-07  Andrew Pinski  <apinski@cavium.com>
952         * config/aarch64/aarch64-arches.def (AARCH64_ARCH): #undef at the end.
953         * config/aarch64/aarch64-cores.def (AARCH64_CORE): Likewise.
954         * config/aarch64/aarch64-fusion-pairs.def (AARCH64_FUSION_PAIR):
955         Likewise.
956         * config/aarch64/aarch64-option-extensions.def (AARCH64_OPT_EXTENSION):
957         Likewise.
958         * config/aarch64/aarch64-tuning-flags.def (AARCH64_EXTRA_TUNING_OPTION):
959         Likewise.
960         * config/aarch64/aarch64-opts.h (AARCH64_CORE): Don't #undef here.
961         (AARCH64_ARCH): Likewise.
962         * common/config/aarch64/aarch64-common.c (AARCH64_OPT_EXTENSION):
963         Likewise.
964         (AARCH64_CORE): Likewise.
965         (AARCH64_ARCH): Likewise.
966         * config/aarch64/aarch64-protos.h (AARCH64_FUSION_PAIR): Likewise.
967         (AARCH64_EXTRA_TUNING_OPTION): Likewise.
968         * config/aarch64/aarch64.c (AARCH64_FUION_PAIR): Likewise.
969         (AARCH64_EXTRA_TUNING_OPTION): Likewise.
970         (AARCH64_ARCH): Likewise.
971         (AARCH64_CORE): Likewise.
972         * config/aarch64/aarch64.h (AARCH64_CORE): Likewise.
973         * config/aarch64/driver-aarch64.c (AARCH64_OPT_EXTENSION): Likewise.
974         (AARCH64_CORE): Likewise.
975         (AARCH64_ARCH): Likewise.
977 2016-10-06  Michael Meissner  <meissner@linux.vnet.ibm.com>
979         * config/rs6000/rs6000-c.c (rs6000_cpu_cpp_builtins): Split
980         -mfloat128 into -mfloat128-type that enables the IEEE 128-bit
981         floating point type infrastructre, and -mfloat128 that enables the
982         keyword.  Define __FLOAT128__ if -mfloat128, and __FLOAT128_TYPE__
983         if -mfloat128-type.  Define __ibm128 to be long double by default.
984         * config/rs6000/rs6000.c (rs6000_debug_reg_global): Print whether
985         the IEEE 128-bit floating point type infrastructure should
986         automatically be enabled.
987         (rs6000_init_hard_regno_mode_ok): Switch to use -mfloat128-type
988         instead of -mfloat128 to enable KFmode.
989         (rs6000_option_override_internal): Split the option -mfloat128
990         into -mfloat128-type and -mfloat128.  On Linux PowerPC 64-bit
991         systems, automatically set -mfloat128-type, but don't enable it on
992         other operating systems.  Move setting the long double size and
993         IEEE quad support before the IEEE 128-bit floating point changes.
994         (rs6000_init_builtins): Do not create a unique type for __ibm128
995         if long double is IBM extended double, instead rely on __ibm128
996         being defined as 'long double'.  If -mfloat128-type and not
997         -mfloat128, create the KFmode type with an undocumented __ieee128
998         keyword.
999         (rs6000_init_libfuncs): Use -mfloat128-type instead of
1000         -mfloat128 for tests about the types, but keep tests for
1001         -mfloat128 to enable the keyword support.
1002         (rs6000_complex_function_value): Likewise.
1003         (rs6000_scalar_mode_supported_p): Likewise.
1004         (rs6000_floatn_mode): Likewise.
1005         (rs6000_c_mode_for_suffix): Likewise.
1006         (rs6000_opt_masks): Add -mfloat128-type.
1007         * config/rs6000/rs6000-cpus.def (POWERPC_MASKS): Add support for
1008         -mfloat128-type being split from -mfloat128.  Add
1009         -mfloat128-hardware, which was missing.
1010         * config/rs6000/rs6000.opt (-mfloat128): Split -mfloat128 into
1011         -mfloat128 and -mfloat128-type:
1012         (-mfloat128-type): Likewise.
1013         * config/rs6000/linux64.h (TARGET_FLOAT128_ENABLE_TYPE): Define so
1014         that 64-bit Linux systems with enable -mfloat128-type by default
1015         on VSX systems.
1016         * config/rs6000/rs6000.h (TARGET_FLOAT128_ENABLE_TYPE): Likewise.
1017         (FLOAT128_VECTOR_P): Switch IEEE 128-bit floating points to use
1018         -mfloat128-type instead of -mfloat128.
1019         (FLOAT128_2REG_P): Likewise.
1020         (MASK_FLOAT128_TYPE): Likewise.
1021         (ALTIVEC_ARG_MAX_RETURN): Likewise.
1022         (RS6000_BTM_FLOAT128): Likewise.
1023         (TARGET_FLOAT128): Poison old identifiers.
1024         (OPTION_MASK_FLOAT128): Likewise.
1025         (MASK_FLOAT128): Likewise.
1026         * config/rs6000/rs6000.md (FP): Likewise.
1027         (FLOAT128): Likewise.
1028         (fix_trunc<mode>di2): Likewise.
1029         (fixuns_trunc<IEEE128:mode><SDI:mode>2): Likewise.
1030         (floatdi<mode>2): Likewise.
1031         (floatuns<SDI:mode><IEEE128:mode>2): Likewise.
1032         (neg<mode>2, FLOAT128 iterator): Likewise.
1033         (abs<mode>2, FLOAT128 iterator): Likewise.
1034         (ieee_128bit_negative_zero): Likewise.
1035         (ieee_128bit_vsx_neg<mode>2): Likewise.
1036         (ieee_128bit_vsx_neg<mode>2_internal): Likewise.
1037         (ieee_128bit_vsx_abs<mode>2): Likewise.
1038         (ieee_128bit_vsx_abs<mode>2_internal): Likewise.
1039         (ieee_128bit_vsx_nabs<mode>2): Likewise.
1040         (ieee_128bit_vsx_nabs<mode>2_internal): Likewise.
1041         (extendiftf2): Likewise.
1042         (extendifkf2): Likewise.
1043         (extendtfkf2): Likewise.
1044         (trunciftf2): Likewise.
1045         (truncifkf2): Likewise.
1046         (trunckftf2): Likewise.
1047         (trunctfif2): Likewise.
1048         (extendkftf2): Likewise.
1049         (trunctfkf2): Likewise.
1051 2016-10-07  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
1053         * simplify-rtx.c (simplify_immed_subreg): Zero-initialize tmp array
1054         before merging in bytes to pass down to real_from_target.
1056 2016-10-07  Richard Biener  <rguenther@suse.de>
1058         * tree-ssa-propagate.c (replace_phi_args_in): Remove no longer
1059         required hack.
1060         (substitute_and_fold_dom_walker::before_dom_children):
1061         Substitute and fold before pass specific folding to avoid
1062         feeding that with SSA names that will be later released.
1063         * tree-ssa-ccp.c (get_value_for_expr): Guard for new SSA names
1064         introduced by folding and visited by evaluate_stmt called during
1065         ccp_fold_stmt.
1066         (likely_value): Likewise.
1067         (evaluate_stmt): Likewise.
1068         * tree-vrp.c (simplify_truth_ops_using_ranges): Fold modified stmt.
1069         (simplify_div_or_mod_using_ranges): Likewise.
1070         (simplify_min_or_max_using_ranges): Likewise.
1071         (simplify_abs_using_ranges): Likewise.
1072         (simplify_conversion_using_ranges): Likewise.
1073         (simplify_float_conversion_using_ranges): Likewise.
1074         (simplify_stmt_using_ranges): Likewise.
1076 2016-10-07  Marek Polacek  <polacek@redhat.com>
1078         * gimplify.c (should_warn_for_implicit_fallthrough): Check for
1079         FALLTHROUGH_LABEL_P here...
1080         (warn_implicit_fallthrough_r): ...not here.
1082 2016-10-07  Bernd Schmidt  <bschmidt@redhat.com>
1084         PR tree-optimization/77880
1085         * expr.c (by_pieces_ninsns): Use unsigned HOST_WIDE_INT where
1086         necessary.
1088 2016-10-07  Marek Polacek  <polacek@redhat.com>
1090         PR c++/77803
1091         * gimplify.c (last_stmt_in_scope): Add check for FALLTHROUGH ().
1093 2016-10-07  Richard Biener  <rguenther@suse.de>
1095         * bitmap.h: Document constraints on bitmap modification while
1096         iterating over it.
1098 2016-10-07  Richard Biener  <rguenther@suse.de>
1100         * bitmap.c (bitmap_elem_to_freelist): Set indx to -1.
1101         * bitmap.h (bmp_iter_set): When advancing to the next element
1102         check that we didn't remove the current one.
1103         (bmp_iter_and): Likewise.
1104         (bmp_iter_and_compl): Likewise.
1105         * tree-ssa.c (release_defs_bitset): Do not remove worklist bit
1106         we currently iterate on but keep a one-level queue.
1107         * sched-deps.c (remove_from_deps): Do not clear current bit
1108         but keep a one-level queue.
1110 2016-10-07  Jakub Jelinek  <jakub@redhat.com>
1112         PR tree-optimization/77664
1113         * tree-ssa-reassoc.c (update_range_test): Also clear low and high
1114         for the other ranges.
1115         (optimize_range_tests_diff): Fix up formatting.
1116         (optimize_range_tests_var_bound): New function.
1117         (optimize_range_tests): Use it.
1119 2016-10-07  Martin Liska  <mliska@suse.cz>
1121         * coverage.c (build_gcov_exit_decl): Fix priority what
1122         should be really 99.
1124 2016-10-07  Richard Biener  <rguenther@suse.de>
1126         * gimple-low.c (lower_gimple_bind): Clear DECL_CHAIN of
1127         vars in gimple_bind_vars but not in BLOCK_VARS.
1129 2016-10-07  Richard Biener  <rguenther@suse.de>
1131         PR tree-optimization/77879
1132         * tree-ssa-structalias.c (handle_const_call): Properly handle
1133         NRV return slots.
1134         (handle_pure_call): Likewise.
1136 2016-10-06  Aaron Sawdey  <acsawdey@linux.vnet.ibm.com>
1138         * config/rs6000/rs6000.c (rs6000_elf_asm_out_constructor)
1139         (rs6000_elf_asm_out_destructor): increase size of buf to avoid
1140         possible overflow.
1142 2016-10-06  Andrew Pinski  <apinski@cavium.com>
1144         * config/aarch64/aarch64-cores.def: Add a comment before each
1145         set of cores.
1147 2016-10-06  Kugan Vivekanandarajah  <kuganv@linaro.org>
1149         PR tree-optimization/77862
1150         * tree-vrp.c (add_equivalence): Use get_value_range so that
1151         num_vr_values is checked before accessing vr_values.
1153 2016-10-06  Kugan Vivekanandarajah  <kuganv@linaro.org>
1155         * tree-vrp.c (evrp_dom_walker::before_dom_children): Handle
1156           POINTER_TYPE_P.
1158 2016-10-05  Jeff Law  <law@redhat.com>
1160         PR tree-optimization/71661
1161         * tree-cfgcleanup.c (remove_forwarder_block_with_phi): Handle case when
1162         removal of a forwarder exposes a new natural loop.
1164 2016-10-06  Uros Bizjak  <ubizjak@gmail.com>
1166         * config/i386/sse.md (andnot<mode>3): Add FALLTHRU comments.
1167         Introduce ssesuffix variable.
1168         (<mask_codefor><code><mode>3<mask_name>): Ditto.
1169         (*<code><mode>3): Ditto.
1171 2016-10-06  Jan Hubicka  <hubicka@ucw.cz>
1173         * postreload.c (reload_cse_simplify): Skip also USE when detecting
1174         noop move.
1176 2016-10-06  Richard Biener  <rguenther@suse.de>
1178         PR tree-optimization/77855
1179         * tree-ssa-pre.c (prune_clobbered_mems): Queue exprs to remove
1180         instead of removing the current item while iterating over the set
1181         which is not safe.
1183 2016-10-06  James Clarke  <jrtc27@jrtc27.com>
1184             Eric Botcazou  <ebotcazou@adacore.com>
1186         PR target/77759
1187         * config/sparc/sparc.c (classify_data_t): Remove int_regs field.
1188         (classify_registers): Don't set it
1189         (function_arg_slotno): Don't initialize and test it.  Tidy up.
1191 2016-10-06  Richard Biener  <rguenther@suse.de>
1193         PR tree-optimization/77839
1194         * tree-ssa-sccvn.c (set_ssa_val_to): Forbid value -> constant value
1195         lattice transition.
1197 2016-10-06  Martin Liska  <mliska@suse.cz>
1199         * gcc.c: Set -fprofile-update=atomic when profiling is
1200         enabled and -pthread is set.  Warn when one combines
1201         -pthread and -fprofile-update=single for an app using
1202         profiling code.
1204 2016-10-06  Martin Liska  <mliska@suse.cz>
1206         PR bootstrap/77788
1207         * expmed.h (mul_highpart_cost_ptr): Add an gcc_assert.
1208         * gimple-ssa-strength-reduction.c (slsr_process_cast):
1209         Initialize a pointer to NULL.
1210         (slsr_process_copy): Likewise.
1211         * input.c (location_get_source_line): Likewise.
1212         * tree-ssa-ccp.c (optimize_atomic_bit_test_and): Likewise.
1214 2016-10-05  Andrew Senkevich  <andrew.senkevich@intel.com>
1216         * common/config/i386/i386-common.c (OPTION_MASK_ISA_PCOMMIT_UNSET,
1217         OPTION_MASK_ISA_PCOMMIT_SET): Deleted definitions.
1218         (ix86_handle_option): Deleted handle of OPT_mpcommit.
1219         * config.gcc: Deleted pcommitintrin.h
1220         * config/i386/pcommitintrin.h: Deleted file.
1221         * config/i386/cpuid.h (bit_PCOMMIT): Deleted.
1222         * config/i386/driver-i386.c (host_detect_local_cpu): Deleted pcommit
1223         detection.
1224         * config/i386/i386-c.c (ix86_target_macros_internal): Deleted define
1225         __PCOMMIT__.
1226         * config/i386/i386.c (ix86_target_string): Deleted -mpcommit.
1227         (PTA_PCOMMIT): Deleted define.
1228         (ix86_option_override_internal): Deleted handle of option.
1229         (ix86_valid_target_attribute_inner_p): Deleted pcommit.
1230         * config/i386/i386-builtin.def (IX86_BUILTIN_PCOMMIT,
1231         __builtin_ia32_pcommit): Deleted.
1232         * config/i386/i386.h (TARGET_PCOMMIT, TARGET_PCOMMIT_P): Deleted.
1233         * config/i386/i386.md (unspecv): Deleted UNSPECV_PCOMMIT.
1234         (pcommit): Deleted instruction.
1235         * config/i386/i386.opt: Mention -mpcommit deprecation.
1236         * config/i386/x86intrin.h: Deleted inclusion of pcommitintrin.h.
1238 2016-10-05  Uros Bizjak  <ubizjak@gmail.com>
1240         PR target/77874
1241         * config/i386/sse.md (<mask_codefor><code><mode>3<mask_name>):
1242         Remove wrong assert.
1243         (<floatsuffix>float<sseintvecmodelower><mode>2<mask_name><round_name>:
1244         Use <round_constraint> as operand 1 constraint.
1246 2016-10-05  Jakub Jelinek  <jakub@redhat.com>
1248         PR sanitizer/66343
1249         * ubsan.c (ubsan_create_data): Call initialize_sanitizer_builtins here.
1250         (ubsan_instrument_float_cast): And not here.
1252         PR sanitizer/66343
1253         * ubsan.c (ubsan_ids): New GTY(()) array.
1254         (ubsan_type_descriptor, ubsan_create_data): Use ubsan_ids
1255         instead of static local counters.
1257 2016-10-05  Martin Sebor  <msebor@redhat.com>
1259         PR bootstrap/77819
1260         * config/linux.h (TARGET_PRINTF_POINTER_FORMAT): Define macro.
1261         * config/linux.c (gnu_libc_printf_pointer_format): Remove.
1262         * targhooks.c [DEFAULT_LIBC == LIBC_UCLIBC) && SINGLE_LIBC]
1263         (default_printf_pointer_format): Define function.
1264         * targhooks.c (linux_printf_pointer_format): Define new function.
1265         * targhooks.h (linux_printf_pointer_format): Declare.
1266         (gnu_libc_printf_pointer_format): Remove declaration.
1268 2016-10-05  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
1270         * fold-const.c (native_encode_real): Fix logic for selecting offset
1271         to write to when BYTES_BIG_ENDIAN.
1273 2016-10-05  Wilco Dijkstra  <wdijkstr@arm.com>
1275         * builtins.c (fold_builtin_strchr): Remove function.
1276         (fold_builtin_strrchr): Likewise.
1277         (fold_builtin2): Remove strchr, index, strrchr, rindex cases.
1278         * gimple-fold.c (target_char_cst_p): New function.
1279         (gimple_fold_builtin_strchr) Add more foldings.
1280         (gimple_fold_builtin): Add index, strrchr, rindex cases.
1282 2016-10-05  Richard Biener  <rguenther@suse.de>
1284         PR middle-end/77863
1285         * genmatch.c (capture_info::walk_c_expr): Diagnose unknown
1286         capture ids in c-exprs.
1288 2016-10-05  Richard Biener  <rguenther@suse.de>
1290         PR middle-end/77826
1291         * genmatch.c (dt_operand::gen_match_op): Amend operand_equal_p
1292         with types_match for GIMPLE code gen to handle type mismatched
1293         constants properly.
1294         (dt_operand::gen): Adjust.
1295         * match.pd ((X /[ex] A) * A -> X): Properly handle converted
1296         and constant A.
1298 2016-10-05  Richard Biener  <rguenther@suse.de>
1300         * match.pd (copysign(x, CST) -> [-]abs (x)): New pattern.
1302 2016-10-05  Richard Biener  <rguenther@suse.de>
1304         PR middle-end/77842
1305         * genmatch.c (parser::parse_c_expr): Handle premature EOF.
1307 2016-10-05  Pierre-Marie de Rodat  <derodat@adacore.com>
1309         * dwarf2out.c (dwarf2out_imported_module_or_decl): Move DWARF
1310         version check to protect only DW_TAG_imported_module generation.
1312 2016-10-05  Richard Biener  <rguenther@suse.de>
1314         PR middle-end/55152
1315         * match.pd (min(a,-a) -> -abs(a)): New pattern.
1317 2016-10-04  Ian Lance Taylor  <iant@golang.org>
1319         * explow.c (allocate_dynamic_stack_space): Call
1320         do_pending_stack_adjust before handling flag_split_stack.
1322 2016-10-04  David Malcolm  <dmalcolm@redhat.com>
1324         * genattrtab.c (make_internal_attr): Supply dummy column number to
1325         file_location ctor.
1326         (main): Likewise.
1327         * genoutput.c (init_insn_for_nothing): Likewise.
1328         * gensupport.c (add_define_attr): Likewise.
1329         * read-md.c (message_at_1): Print column number.
1330         (fatal_with_file_and_line): Likewise.
1331         (rtx_reader::read_char): Track column numbers.
1332         (rtx_reader::unread_char): Likewise.
1333         (rtx_reader::rtx_reader): Initialize m_read_md_colno.
1334         (rtx_reader::handle_include): Stash and restore m_read_md_colno.
1335         (rtx_reader::handle_file): Initialize m_read_md_colno.
1336         (rtx_reader::get_current_location): Supply column number to
1337         file_location ctor.
1338         * read-md.h (struct file_location): Add field "colno".
1339         (file_location::file_location): Likewise.
1340         (rtx_reader::get_colno): New accessor.
1341         (rtx_reader::m_read_md_colno): New field.
1342         (rtx_reader::m_last_line_colno): New field.
1344 2016-10-04  Jakub Jelinek  <jakub@redhat.com>
1346         * doc/extend.texi (Java Exceptions): Remove.
1347         (java_interface): Remove.
1349 2016-10-04  Doug Gilmore  <doug.gilmore@imgtec.com>
1351         PR tree-optimization/77808
1352         * tree-ssa-loop-prefetch.c (issue_prefetch_ref): Check base_addr
1353         and addr are different before copying points-to information.
1355 2016-10-04  Uros Bizjak  <ubizjak@gmail.com>
1357         * config/i386/x86-tune.def (X86_TUNE_VECTORIZE_DOUBLE): Remove.
1358         * config/i386/i386.h (TARGET_VECTORIZE_DOUBLE): Remove.
1359         * config/i386/i386.c (ix86_add_stmt_cost): Use TARGET_BONNEL instead
1360         of !TARGET_VECTORIZE_DOUBLE when penalizing DFmode vector ops.
1362 2016-10-04  Richard Biener  <rguenther@suse.de>
1364         PR tree-optimization/77399
1365         * tree-ssa-forwprop.c (simplify_vector_constructor): Properly
1366         verify the target can convert.
1368 2016-10-04  Richard Biener  <rguenther@suse.de>
1370         PR middle-end/77833
1371         * explow.c (plus_constant): Verify the mode of the constant
1372         pool offset before calling plus_constant.
1374 2016-10-04  Richard Biener  <rguenther@suse.de>
1376         PR middle-end/77407
1377         * match.pd (X / abs (X) -> X < 0 ? -1 : 1): Drop vector
1378         type support, mark with :C.
1379         (X / -X -> -1): Mark with :C.
1381 2016-10-04  Jakub Jelinek  <jakub@redhat.com>
1383         * defaults.h (JCR_SECTION_NAME, TARGET_USE_JCR_SECTION): Remove.
1384         * system.h (JCR_SECTION_NAME, TARGET_USE_JCR_SECTION): Poison.
1385         * doc/tm.texi.in (TARGET_USE_JCR_SECTION): Remove.
1386         * doc/tm.texi: Regenerated.
1387         * config/i386/mingw32.h (TARGET_USE_JCR_SECTION): Remove.
1388         * config/i386/cygming.h (TARGET_USE_JCR_SECTION): Remove.
1389         * config/darwin.h (JCR_SECTION_NAME): Remove.
1390         * config/pa/pa64-hpux.h (JCR_SECTION_NAME): Remove.
1391         * config/rs6000/aix71.h (TARGET_USE_JCR_SECTION): Remove.
1392         * config/rs6000/aix51.h (TARGET_USE_JCR_SECTION): Remove.
1393         * config/rs6000/aix52.h (TARGET_USE_JCR_SECTION): Remove.
1394         * config/rs6000/aix53.h (TARGET_USE_JCR_SECTION): Remove.
1395         * config/rs6000/aix61.h (TARGET_USE_JCR_SECTION): Remove.
1397 2016-10-03  Prathamesh Kulkarni  <prathamesh.kulkarni@linaro.org>
1399         * ipa-cp.c (propagate_bits_accross_jump_function): Introduce space
1400         between "because" and "param" in dump message in call to fprintf.
1402 2016-10-03  Jeff Law  <law@redhat.com>
1404         PR tree-optimization/71550
1405         PR tree-optimization/71403
1406         * tree-ssa-threadbackward.c: Include tree-vectorizer.h
1407         (profitable_jump_thread_path): Also return boolean indicating if
1408         the realized path will create an irreducible loop.
1409         Remove loop depth tests from 71403.
1410         (fsm_find_control_statement_thread_paths): Remove loop depth tests
1411         from 71403.  If threading will create an irreducible loop, then
1412         throw away loop iteration and related information.
1414 2016-10-03  Uros Bizjak  <ubizjak@gmail.com>
1416         * configure.ac (strict_warn): Merge -Wmissing-format-attribute and
1417         -Woverloaded-virtual checks for warning options.
1418         * configure: Regenerate.
1420 2016-10-03  Bernd Edlinger  <bernd.edlinger@hotmail.de>
1422         PR preprocessor/77699
1423         * input.c (maybe_grow): Don't allocate one byte extra headroom.
1424         (get_next_line): Return false on error.
1425         (read_next_line): Removed, use get_next_line instead.
1426         (read_line_num): Don't copy the line.
1427         (location_get_source_line): Don't use static data.
1428         (selftest::test_reading_source_line): Add more test cases.
1430 2016-10-03  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
1432         Revert
1433         2016-09-30  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
1435         * ifcvt.c (noce_try_avoid_const_materialization): New function.
1436         (noce_process_if_block): Use it.
1438 2016-10-03  Bernd Edlinger  <bernd.edlinger@hotmail.de>
1440         * doc/invoke.texi: Update -Wint-in-bool-context.
1442 2016-10-02  Jakub Jelinek  <jakub@redhat.com>
1444         * dwarf2out.c (output_fde, output_call_frame_info,
1445         dwarf2out_do_cfi_startproc, set_indirect_string,
1446         gen_internal_sym, output_die, output_line_info): Use
1447         MAX_ARTIFICIAL_LABEL_BYTES as char array sizes for
1448         ASM_GENERATE_INTERNAL_LABEL output.
1450 2016-10-01  Richard Biener  <rguenther@suse.de>
1452         PR middle-end/77798
1453         * genmatch.c (get_operand_type): Add operand position arg
1454         and handle COND_EXPR comparison operand with fixed boolean_type_node.
1455         (expr::gen_transform): Adjust.
1456         (dt_simplify::gen_1): Likewise.
1458 2016-10-01  Jakub Jelinek  <jakub@redhat.com>
1460         * config/i386/sse.md (<mask_codefor><code><mode>): Add FALLTHRU
1461         comments.  Simplify asserts, remove unnecessary conditions.
1462         Formatting fixes.
1463         (*<code><mode>3): Likewise.
1465 2016-09-30  Jakub Jelinek  <jakub@redhat.com>
1467         * doc/invoke.texi (-Wregister): Document.
1469 2016-09-30  Bernd Edlinger  <bernd.edlinger@hotmail.de>
1471         * configure.ac: Split CHECKING_P into CHECKING_P and
1472         ENABLE_EXTRA_CHECKING.
1473         * configure: Regenerated.
1474         * config.in: Adjust commment of CHECKING_P.  Add ENABLE_EXTRA_CHECKING.
1475         * common.opt (flag_checking): Use CHECKING_P and ENABLE_EXTRA_CHECKING.
1477 2016-09-30  Prasad Ghangal  <prasad.ghangal@gmail.com>
1479         PR other/31566
1480         * gcc.c (process_command): For @filename handling, output
1481         the correct name if the file does not exist.
1483 2016-09-30  Marek Polacek  <polacek@redhat.com>
1485         * config/aarch64/aarch64-simd.md: Adjust fall through comments.
1486         * config/alpha/predicates.md: Likewise.
1488 2016-09-30  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
1490         * ifcvt.c (noce_try_avoid_const_materialization): New function.
1491         (noce_process_if_block): Use it.
1493 2016-09-30  Martin Liska  <mliska@suse.cz>
1495         * doc/invoke.texi: Document asan-use-after-return that
1496         it's disabled by default in runtime.
1498 2016-09-30  Richard Biener  <rguenther@suse.de>
1500         * tree-vrp.c (intersect_ranges): If we failed to handle
1501         the intersection choose a constant singleton range if available.
1503 2016-09-30  Richard Biener  <rguenther@suse.de>
1505         PR tree-optimization/77399
1506         * tree-ssa-forwprop.c (simplify_vector_constructor): Handle
1507         float <-> int conversions.
1509 2016-09-30  Alan Modra  <amodra@gmail.com>
1511         * config/rs6000/rs6000.c (rs6000_opt_vars): Revert last change.
1513 2016-09-29  Uros Bizjak  <ubizjak@gmail.com>
1515         * config/i386/driver-i386.c (host_detect_local_cpu): Check maximum
1516         ext_level before calling CPUID with 0x80000008.
1517         Simplify xgetbv checks.
1519 2016-09-29  David Malcolm  <dmalcolm@redhat.com>
1521         * Makefile.in (OBJS): Add print-rtl-function.o.
1522         * print-rtl-function.c: New file.
1523         * print-rtl.h (print_rtx_function): New decl.
1525 2016-09-29  Uros Bizjak  <ubizjak@gmail.com>
1527         PR target/77756
1528         * config/i386/cpuid.h (__get_cpuid_count): New.
1529         (__get_cpuid): Rename __level to __leaf.
1531 2016-09-29  Marek Polacek  <polacek@redhat.com>
1533         * genattrtab.c (write_attr_case): Also emit FALLTHRU marker.
1535 2016-09-29  Bernd Schmidt  <bschmidt@redhat.com>
1537         * builtins.c (expand_builtin_memcmp): don't swap args unless
1538         result is only being compared with zero.
1540 2016-09-29  Marek Polacek  <polacek@redhat.com>
1542         * dwarf2out.c (loc_descriptor): Add fall through comment.
1543         (add_const_value_attribute): Likewise.
1545 2016-09-29  Matthew Wahab  <matthew.wahab@arm.com>
1547         * config/arm/arm.md (*arm_movsi_insn): Replace "t2" arch attribute
1548         with "v6t2".  Move "arch" attribute above "pool_range".
1549         * config/arm/vfp.md (*arm_movhi_vfp): Replace "t2" arch attribute
1550         with "v6t2".
1551         (*thumb2_movhi_vfp): Likewise.
1552         (*arm_movhi_fp16): Likewise.
1553         (*thumb2_movhi_fp16): Likewise.
1554         (*arm_movsi_vfp): Remove "arch" attribute.
1555         (*thumb2_movsi_vfp): Likewise.
1557 2016-09-29  Martin Liska  <mliska@suse.cz>
1559         * doc/extend.texi: Remove limitation of Objective C for
1560         __attribute__((constructor)) and __attribute__((destructor)).
1562 2016-09-29  Richard Biener  <rguenther@suse.de>
1564         PR tree-optimization/77768
1565         * tree-ssa-pre.c (eliminate_dom_walker::before_dom_children):
1566         Handle stores to readonly memory when removing redundant stores.
1568 2016-09-29  Richard Biener  <rguenther@suse.de>
1570         PR middle-end/77407
1571         * match.pd: Add X / abs (X) -> X < 0 ? -1 : 1 and
1572         X / -X -> -1 simplifications.
1574 2016-09-29  Richard Biener  <rguenther@suse.de>
1576         PR middle-end/55152
1577         * match.pd: Add max(a,-a) -> abs(a) pattern.
1578         * tree-ssa-phiopt.c (minmax_replacement): Disable for
1579         HONOR_SIGNED_ZEROS types.
1581 2016-09-29  James Greenhalgh  <james.greenhalgh@arm.com>
1583         * defaults.h (TARGET_FLT_EVAL_METHOD_NON_DEFAULT): Remove.
1584         * system.h (TARGET_FLT_EVAL_METHOD_NON_DEFAULT): Poison.
1586 2016-09-29  Richard Biener  <rguenther@suse.de>
1588         * tree-vrp.c (set_defs_to_varying): New helper avoiding
1589         writing to vr_const_varying.
1590         (vrp_initialize): Call it.
1591         (vrp_visit_stmt): Likewise.
1592         (evrp_dom_walker::before_dom_children): Likewise.
1594 2016-09-29  Richard Biener  <rguenther@suse.de>
1596         * tree-vect-stmts.c (vectorizable_load): Avoid emitting vector
1597         constructors with vector elements.
1599 2016-09-29  Richard Biener  <rguenther@suse.de>
1601         PR tree-optimization/77768
1602         * tree-ssa-sccvn.c (visit_reference_op_store): Properly deal
1603         with stores to a place we know has a constant value.
1605 2016-09-29  Alan Modra  <amodra@gmail.com>
1607         * config/rs6000/sysv4.opt (mgnu-attribute): New option.
1608         * doc/invoke.texi: Document it.
1609         * config/rs6000/rs6000.c (HAVE_LD_PPC_GNU_ATTR_LONG_DOUBLE): Define.
1610         (rs6000_passes_float): Comment.
1611         (rs6000_passes_long_double): New static var.
1612         (call_ABI_of_interest): Return false unless rs6000_gnu_attr is set.
1613         (init_cumulative_args): Set up to emit fp .gnu_attribute for
1614         ELF 64-bit ABIs as well as 32-bit ELF.  Correct rs6000_passes_float
1615         to include fp values returned in vectors.
1616         Set rs6000_passes_long_double.
1617         (rs6000_function_arg_advance_1): Likewise for function args.
1618         (rs6000_elf_file_end): Emit fp .gnu_attribute for ELF 64-bit ABIs,
1619         and SPE.  Emit long double tag value too.
1620         (rs6000_opt_vars): Add gnu-attr.
1621         * configure.ac (HAVE_LD_PPC_GNU_ATTR_LONG_DOUBLE): New ppc32 test.
1622         * configure: Regenerate.
1623         * config.in: Regenerate.
1625 2016-09-28  Jakub Jelinek  <jakub@redhat.com>
1627         * gimple-ssa-sprintf.c (pass_sprintf_length::gate): Use x > 0 instead
1628         of 0 < x.
1629         (format_floating, format_string, format_directive,
1630         get_destination_size, pass_sprintf_length::handle_gimple_call):
1631         Likewise.
1633 2016-09-28  Jakub Jelinek  <jakub@redhat.com>
1635         * gimple-ssa-sprintf.c: Fix comment formatting.
1636         (format_integer): Use is_gimple_assign.
1637         (pass_sprintf_length::handle_gimple_call): Use gimple_call_builtin_p
1638         and gimple_call_fndecl.  Reorder case BUILT_IN_SPRINTF_CHK.  Fix up
1639         BUILT_IN_SNPRINTF_CHK comment.  Replace "to to" with "to" in comment.
1640         (pass_sprintf_length::execute): Use is_gimple_call.
1642 2016-09-28  Wilco Dijkstra  <wdijkstr@arm.com>
1644         * gimple-fold.c (gimple_fold_builtin): After failing to fold
1645         strchr, also try the generic folding.
1647 2016-09-28  Martin Sebor  <msebor@redhat.com>
1649         PR c/77762
1650         * gimple-ssa-sprintf.c (pass_sprintf_length::handle_gimple_call):
1651         Fix typos.
1653 2016-09-28  Martin Sebor  <msebor@redhat.com>
1655         PR middle-end/77683
1656         * gimple-ssa-sprintf.c (format_integer): Fail gracefully when
1657         length modifier is not expected.
1658         (format_floating): Ignore l length modifier and fail gracefuly
1659         when it isn't one of the other expected ones.
1661 2016-09-28  Martin Sebor  <msebor@redhat.com>
1663         PR bootstrap/77753
1664         * varasm.c (assemble_addr_to_section): Increase local buffer size.
1666 2016-09-27  Richard Biener  <rguenther@suse.de>
1668         * dwarf2out.c (cu_die_list): New global.
1669         (dwarf2out_finish): Walk cu_die_list instead of limbo DIEs.  Add
1670         main_comp_unit_die to cu_die_list if we created it.
1671         Move break_out_includes ...
1672         (dwarf2out_early_finish): ... here.  Push created CU DIEs onto
1673         the cu_die_list.
1675 2016-09-28  Richard Biener  <rguenther@suse.de>
1677         * dwarf2out.c (struct die_struct): Add removed flag.
1678         (lookup_type_die): If the DIE is marked as removed, clear
1679         TYPE_SYMTAB_DIE and return NULL.
1680         (lookup_decl_die): If the DIE is marked as removed, remove it
1681         from the hash and return NULL.
1682         (mark_removed): New helper.
1683         (prune_unused_types_prune): Call it for removed DIEs.
1684         (gen_subprogram_die): Move the premark_used_types call to after
1685         DIEs for the functions scopes are generated.
1686         (process_scope_var): Do not re-create pruned types or type decls.
1687         Make sure to also re-parent type decls.
1688         (dwarf2out_finish): Move unused type pruning and debug_types
1689         handling ...
1690         (dwarf2out_early_finish): ... here.
1692 2016-09-29  Claudiu Zissulescu  <claziss@synopsys.com>
1694         * config/arc/arc-c.c: New file.
1695         * config/arc/arc-c.def: Likewise.
1696         * config/arc/t-arc: Likewise.
1697         * config.gcc: Include arc-c.o as c and cpp object.
1698         * config/arc/arc-protos.h (arc_cpu_cpp_builtins): Add prototype.
1699         * config/arc/arc.h (TARGET_CPU_CPP_BUILTINS): Use
1700         arc_cpu_cpp_builtins.
1702 2016-09-29  Claudiu Zissulescu  <claziss@synopsys.com>
1704         * config/arc/arc.md (*rotrsi3_cnt1): New pattern.
1705         (*ashlsi2_cnt1, *lshrsi3_cnt1, *ashrsi3_cnt1): Likewise.
1707 2016-09-28  Nathan Sidwell  <nathan@acm.org>
1709         * gimple-pretty-print.c (dump_gimple_call_args): Simplify "' "
1710         printing.
1712 2016-09-28  Wilco Dijkstra  <wdijkstr@arm.com>
1714         PR tree-optimization/61056
1715         * gimple-fold.c (gimple_fold_builtin_strchr):
1716         New function to optimize strchr (s, 0) to strlen.
1717         (gimple_fold_builtin): Add BUILT_IN_STRCHR case.
1719 2016-09-27  Robin Dapp  <rdapp@linux.vnet.ibm.com>
1721         PR tree-optimization/77724
1722         * tree-vect-loop-manip.c (create_intersect_range_checks_index):
1723         Add tree_fits_shwi_p check.
1725 2016-09-27  Jakub Jelinek  <jakub@redhat.com>
1727         * auto-inc-dec.c (try_merge): Remove break after return.
1728         * cselib.c (autoinc_split): Likewise.
1729         * explow.c (promote_mode): Likewise.
1730         * fixed-value.c (fixed_arithmetic): Likewise.
1731         * hsa.c (hsa_internal_fn::get_arity): Likewise.
1732         * rtlanal.c (modified_between_p, modified_in_p): Likewise.
1733         * trans-mem.c (get_attrs_for): Likewise.
1734         * tree-if-conv.c (if_convertible_stmt_p): Likewise.
1735         * tree-vrp.c (simplify_stmt_using_ranges): Likewise.
1736         * config/aarch64/aarch64-builtins.c (aarch64_fold_builtin): Likewise.
1737         * config/aarch64/aarch64.c (aarch64_get_condition_code_1): Likewise.
1738         * config/c6x/c6x.c (c6x_get_unit_specifier): Likewise.
1739         * config/cr16/cr16.c (legitimate_pic_operand_p): Likewise.
1740         * config/cris/cris.c (cris_op_str): Likewise.
1741         * config/mn10300/mn10300.c (cc_flags_for_code): Likewise.
1742         * config/tilepro/tilepro.c (tilepro_emit_setcc_internal_di): Likewise.
1744 2016-09-27  Nathan Sidwell  <nathan@codesourcery.com>
1746         * internal-fn.h (IFN_UNIQUE_CODES, IFN_GOACC_LOOP_CODES,
1747         IFN_GOACC_REDUCTION_CODES): New.
1748         (enum ifn_unique_kind, enum ifn_goacc_loop_kind, enum
1749         ifn_goacc_reduction_kind): Use them.
1750         * gimple-pretty-print.c (dump_gimple_call_args): Decode first arg
1751         of internal functions, when applicable.
1753 2016-09-27  Maciej W. Rozycki  <macro@imgtec.com>
1755         * config/mips/constraints.md (d): Fix documentation.
1756         * doc/md.texi (Machine Constraints): Update accordingly.
1758 2016-09-27  Richard Biener  <rguenther@suse.de>
1760         * dwarf2out.c (dwarf2out_init): Move text_section_line_info,
1761         cur_line_info_table initialization ...
1762         (dwarf2out_assembly_start): ... here.
1764 2016-09-27  Matthew Wahab  <matthew.wahab@arm.com>
1766         * config/arm/arm.md (*arm_movsi_insn): Add "arch" attribute.
1767         * config/arm/vfp.md (*arm_movhi_vfp): Likewise.
1768         (*thumb2_movhi_vfp): Likewise.
1769         (*arm_movhi_fp16): Remove predication operand from VMOV.F16
1770         template.  Expand predicable attribute to mark VMOV.F16 as not
1771         predicable.  Add "arch" attribute.
1772         (*thumb2_movhi_fp16): Likewise.
1773         (*arm_movsi_vfp): Break a long line.  Add "arch" attribute.
1774         (*thumb2_movsi_vfp): Add "arch" attribute.
1776 2016-09-27  David Edelsohn  <dje.gcc@gmail.com>
1778         * config/rs6000/rs6000.c (rs6000_output_symbol): Don't modify
1779         VAR_DECL string.
1781 2016-09-27  Marek Polacek  <polacek@redhat.com>
1783         * config/ia64/ia64.c (ia64_print_operand): Adjust fall through
1784         comment.
1786         * config/c6x/c6x.h: Adjust fall through comment.
1787         * config/sh/sh.c (final_prescan_insn): Likewise.
1788         * config/visium/visium.c (visium_expand_int_cstore): Likewise.
1789         (visium_expand_fp_cstore): Likewise.
1791 2016-09-27  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
1793         * config/arm/arm.c (const_ok_for_op): Use "Fall through" comment form
1794         expected by -Wimplicit-fallthrough.
1795         (thumb1_size_rtx_costs): Likewise.
1796         (thumb2_reorg): Likewise.
1797         (tls_mentioned_p): Add "Fall through" comment.
1798         (thumb2_reorg): Likewise.
1799         * config/arm/arm-builtins.c (arm_expand_neon_args): Use "Fall through"
1800         comment form expected by -Wimplicit-fallthrough.
1802 2016-09-27  Martin Liska  <mliska@suse.cz>
1804         PR gcov-profile/46266
1805         * input.h (RESERVED_LOCATION_P): New macro.
1806         * profile.c (branch_prob): Use RESERVED_LOCATION_P and
1807         instread of comparison with UNKNOWN_LOCATION.
1809 2016-09-27  Richard Biener  <rguenther@suse.de>
1811         PR tree-optimization/77745
1812         * tree-ssa-pre.c (eliminate_dom_walker::before_dom_children):
1813         When removing redundant stores make sure to check compatibility
1814         of the TBAA state for downstream accesses.
1815         * tree-ssa-sccvn.c (visit_reference_op_store): Likewise for when
1816         value-numbering virtual operands for store matches.
1818 2016-09-27  Oleg Endo  <olegendo@gcc.gnu.org>
1820         PR target/51244
1821         * config/sh/sh.c (sh_rtx_costs): Fix return value of SET of movt and
1822         movrt patterns.  Match them before anything else in the SET case.
1824 2016-09-27  Martin Liska  <mliska@suse.cz>
1826         PR gcov-profile/7970
1827         PR gcov-profile/16855
1828         PR gcov-profile/44779
1829         * coverage.c (build_gcov_exit_decl): New function.
1830         (coverage_obj_init): Call the function and generate __gcov_exit
1831         destructor.
1832         * doc/gcov.texi: Document when __gcov_exit function is called.
1834 2016-09-27  Marek Polacek  <polacek@redhat.com>
1836         PR bootstrap/77751
1837         * Makefile.in (insn-attrtab.o-warn, insn-dfatab.o-warn,
1838         insn-latencytab.o-warn, insn-output.o-warn, insn-emit.o-warn): Use
1839         -Wno-error instead of -Wno-implicit-fallthrough.
1841 2016-09-27  Martin Liska  <mliska@suse.cz>
1843         PR bootstrap/77749
1844         * gcov-counter.def: Remove GCOV_COUNTER_V_DELTA.
1846 2016-09-27  Jakub Jelinek  <jakub@redhat.com>
1848         * combine.c (simplify_comparison): Add canonical FALLTHROUGH comments.
1849         * config/i386/i386.c (ix86_dep_by_shift_count_body): Add FALLTHROUGH
1850         comments.  Remove break after return.
1851         (ix86_fp_compare_code_to_integer, has_dispatch,
1852         ix86_simd_clone_usable): Remove break after return.
1854 2016-09-27  Bernd Edlinger  <bernd.edlinger@hotmail.de>
1856         PR rlt-optimization/77714
1857         * lra-eliminations.c (eliminate_regs_in_insn): Avoid alias on
1858         REG_EQUAL note.
1860 2016-09-27  Kugan Vivekanandarajah  <kuganv@linaro.org>
1862         PR ipa/77677
1863         * ipa-prop.c (ipa_compute_jump_functions_for_edge): Use
1864         extract_range_from_unary_expr to convert value_range.
1865         * tree-vrp.c (extract_range_from_unary_expr_1): Rename to.
1866         (extract_range_from_unary_expr): This.
1867         * tree-vrp.h (extract_range_from_unary_expr): Declare.
1869 2016-09-27  Segher Boessenkool  <segher@kernel.crashing.org>
1871         * config/rs6000/rs6000.md (movcc_internal1): Disparage using CTR or LR.
1873 2016-09-26  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
1875         * config/i386/i386.c (ix86_print_operand)
1876         [HAVE_AS_IX86_CMOV_SUN_SYNTAX]: Add gcc_fallthrough.
1877         * config/sparc/sparc.c (check_pic): Add fallthrough comment.
1878         (epilogue_renumber): Likewise.
1880 2016-09-26  Kugan Vivekanandarajah  <kuganv@linaro.org>
1882         PR middle-end/77719
1883         * tree-ssa-reassoc.c (make_new_ssa_for_def): Use gimple_get_lhs
1884         to get lhs instead of gimple_assign_lhs as stmt can be builtins too.
1886 2016-09-26  Thomas Preud'homme  <thomas.preudhomme@arm.com>
1888         * tree.h (memmodel_from_int, memmodel_base, is_mm_relaxed,
1889         is_mm_consume, is_mm_acquire, is_mm_release, is_mm_acq_rel,
1890         is_mm_seq_cst, is_mm_sync): Move to ...
1891         * memmodel.h: This.  New file.
1892         * builtins.c: Include memmodel.h.
1893         * optabs.c: Likewise.
1894         * tsan.c: Likewise.
1895         * config/aarch64/aarch64.c: Likewise.
1896         * config/alpha/alpha.c: Likewise.
1897         * config/arm/arm.c: Likewise.
1898         * config/i386/i386.c: Likewise.
1899         * config/ia64/ia64.c: Likewise.
1900         * config/mips/mips.c: Likewise.
1901         * config/rs6000/rs6000.c: Likewise.
1902         * config/sparc/sparc.c: Likewise.
1903         * genconditions.c: Include memmodel.h in generated file.
1904         * genemit.c: Likewise.
1905         * genoutput.c: Likewise.
1906         * genpeep.c: Likewise.
1907         * genpreds.c: Likewise.
1908         * genrecog.c: Likewise.
1910 2016-09-26  David Malcolm  <dmalcolm@redhat.com>
1912         * read-rtl.c (read_rtx_code): Rename local "i" to "idx", and use
1913         "c" instead when parsing characters.  Move operand parsing into...
1914         (read_rtx_operand): ...this new function, renaming "i" to "idx",
1915         and tightening the scope of various locals.
1917 2016-09-26  Liu Hao  <lh_mouse@126.com>
1919         * config/i386/cygming.h (ASM_OUTPUT_DWARF_OFFSET): Fix typo.
1921 2016-09-26  Marek Polacek  <polacek@redhat.com>
1923         * system.h: Use __has_attribute to check whether the fallthrough
1924         attribute is supported.
1926 2016-09-26  Marek Polacek  <polacek@redhat.com>
1928         * ipa-inline-analysis.c (find_foldable_builtin_expect): Use
1929         gimple_call_internal_p.
1930         * ipa-split.c (find_return_bb): Likewise.
1931         (execute_split_functions): Likewise.
1932         * omp-low.c (dump_oacc_loop_part): Likewise.
1933         (oacc_loop_xform_head_tail): Likewise.
1934         * predict.c (predict_loops): Likewise.
1935         * sanopt.c (pass_sanopt::execute): Likewise.
1936         * tree-cfg.c (get_abnormal_succ_dispatcher): Likewise.
1937         * tree-parloops.c (oacc_entry_exit_ok_1): Likewise.
1938         * tree-stdarg.c (gimple_call_ifn_va_arg_p): Remove function.
1939         (expand_ifn_va_arg_1): Use gimple_call_internal_p.
1940         (expand_ifn_va_arg): Likewise.
1941         * tree-vect-loop.c (vect_determine_vectorization_factor): Likewise.
1942         (optimize_mask_stores): Likewise.
1943         * tree-vect-stmts.c (vect_simd_lane_linear): Likewise.
1944         (vect_transform_stmt): Likewise.
1945         * tree-vectorizer.c (vect_loop_vectorized_call): Likewise.
1946         * tsan.c (instrument_memory_accesses): Likewise.
1948 2016-09-26  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
1949             Alexander Monakov  <amonakov@ispras.ru>
1951         * regrename.c (rename_chains): Check
1952         HARD_FRAME_POINTER_IS_FRAME_POINTER rather than
1953         HARD_FRAME_POINTER_REGNUM when picking unavailable registers.
1954         * sel-sched.c (mark_unavailable_hard_regs): Likewise.
1956 2016-09-26  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
1958         * config/s390/s390.c (s390_rtx_costs): Add /* fallthrough */.
1959         (s390_sched_score): Likewise.
1961 2016-09-26  Martin Liska  <mliska@suse.cz>
1963         * doc/gcov.texi: Update program output of gcov tool.
1965 2016-09-26  Martin Liska  <mliska@suse.cz>
1967         PR gcov-profile/23332
1968         * profile.c (instrument_values): Do not handle HIST_TYPE_CONST_DELTA.
1969         * tree-profile.c (gimple_gen_const_delta_profiler): Remove.
1970         * value-prof.c (dump_histogram_value): Do not handle
1971         HIST_TYPE_CONST_DELTA.
1972         (stream_in_histogram_value): Likewise.
1973         (gimple_find_values_to_profile): Likewise.
1974         * value-prof.h (enum hist_type): Likewise.
1976 2016-09-26  Martin Liska  <mliska@suse.cz>
1978         * common.opt: Exclude SANITIZE_UNREACHABLE and SANITIZE_RETURN
1979         from default sanitize recover values.
1980         * doc/invoke.texi: Fix documentation related to -fsanitize=leak,
1981         -fsanitize=address, -fsanitize=thread and -fsanitize-recover.
1982         * flag-types.h: Replace couple of 1 << x to 1UL << x, make it
1983         consistent.
1984         * opts.c (finish_options): Do a generic loop over options
1985         that can be recovered.
1986         (parse_sanitizer_options): Exclude SANITIZE_UNREACHABLE and
1987         SANITIZE_RETURN.
1988         (common_handle_option): Likewise.
1989         * opts.h: Declare can_recover to sanitizer_opts_s.
1991 2016-09-26  Andre Vieira  <andre.simoesdiasvieira@arm.com>
1993         * target.def(elf_flags_numeric): Change documentation to present tense.
1994         * doc/tm.texi: Regenerate.
1996 2016-09-26  Marek Polacek  <polacek@redhat.com>
1998         PR c/7652
1999         * Makefile.in (insn-attrtab.o-warn, insn-dfatab.o-warn,
2000         insn-latencytab.o-warn, insn-output.o-warn, insn-emit.o-warn): Add
2001         -Wno-switch-fallthrough.
2002         * builtins.c (expand_builtin_int_roundingfn_2): Add gcc_fallthrough.
2003         (expand_builtin): Likewise.
2004         * config/rs6000/rs6000.c (rs6000_builtin_vectorized_libmass): Likewise.
2005         * convert.c (convert_to_real_1): Likewise.
2006         (convert_to_integer_1): Likewise.
2007         * final.c (output_alternate_entry_point): Likewise.
2008         * genattrtab.c (make_canonical): Likewise.
2009         (write_test_expr): Likewise.
2010         * genpreds.c (validate_exp): Likewise.
2011         * gimple-ssa-strength-reduction.c
2012         (find_candidates_dom_walker::before_dom_children): Likewise.
2013         * godump.c (go_format_type): Likewise.
2014         * reload1.c (elimination_effects): Likewise.
2015         * resource.c (mark_referenced_resources): Likewise.
2016         (mark_set_resources): Likewise.
2017         * tree-ssa-loop-ivopts.c (find_deriving_biv_for_expr): Likewise.
2018         * varasm.c (output_addressed_constants): Likewise.
2020 2016-09-26  Marek Polacek  <polacek@redhat.com>
2022         PR c/7652
2023         * common.opt (Wimplicit-fallthrough): New option.
2024         * doc/extend.texi: Document statement attributes and the fallthrough
2025         attribute.
2026         * doc/invoke.texi: Document -Wimplicit-fallthrough.
2027         * gimple.h (gimple_call_internal_p): New function.
2028         * gimplify.c (struct gimplify_ctx): Add in_switch_expr.
2029         (struct label_entry): New struct.
2030         (find_label_entry): New function.
2031         (case_label_p): New function.
2032         (collect_fallthrough_labels): New function.
2033         (last_stmt_in_scope): New function.
2034         (should_warn_for_implicit_fallthrough): New function.
2035         (warn_implicit_fallthrough_r): New function.
2036         (maybe_warn_implicit_fallthrough): New function.
2037         (expand_FALLTHROUGH_r): New function.
2038         (expand_FALLTHROUGH): New function.
2039         (gimplify_switch_expr): Call maybe_warn_implicit_fallthrough and
2040         expand_FALLTHROUGH for the innermost GIMPLE_SWITCH.
2041         (gimplify_label_expr): New function.
2042         (gimplify_case_label_expr): Set location.
2043         (gimplify_expr): Call gimplify_label_expr.
2044         * internal-fn.c (expand_FALLTHROUGH): New function.
2045         * internal-fn.def (FALLTHROUGH): New internal function.
2046         * langhooks.c (lang_GNU_OBJC): New function.
2047         * langhooks.h (lang_GNU_OBJC): Declare.
2048         * system.h (gcc_fallthrough): Define.
2049         * tree-core.h: Add FALLTHROUGH_LABEL_P comment.
2050         * tree.h (FALLTHROUGH_LABEL_P): Define.
2052 2016-09-26  Richard Biener  <rguenther@suse.de>
2054         * dwarf2out.c (stripattributes): Remove unused function.
2055         (DEBUG_NORM_MACINFO_SECTION): Rename to DEBUG_MACINFO_SECTION.
2056         Push dwarf_split_debug_info handling into init_sections_and_labels.
2057         (DEBUG_NORM_MACRO_SECTION): Likewise to DEBUG_MACRO_SECTION.
2058         (DEBUG_MACRO_SECTION_FLAGS): Remove.
2059         (debug_macinfo_section_name): New global.
2060         (output_macinfo): Use debug_macinfo_section_name.
2061         (init_sections_and_labels): Split out section and label generation
2062         from dwarf2out_init.  Set debug_macinfo_section_name.
2063         (dwarf2out_init): Move text section label generation and emission
2064         to ...
2065         (dwarf2out_assembly_start): ... here.
2066         (dwarf2out_finish): Call init_sections_and_labels before DWARF
2067         output starts.
2069 2016-09-26  Richard Biener  <rguenther@suse.de>
2071         PR debug/77692
2072         * cgraphunit.c (analyze_functions): Before early removing
2073         global vars calls the late_global_decl debug handler mark
2074         the variable as readonly.
2076 2016-09-25  Oleg Endo  <olegendo@gcc.gnu.org>
2078         PR target/51244
2079         * config/sh/sh.c (sh_movt_set_dest, sh_movrt_set_dest): Add overloads.
2080         (sh_rtx_costs): Handle SET of movt and movrt patterns.
2081         * cnofig/sh/sh-protos.h (sh_movt_set_dest, sh_movrt_set_dest): Forward
2082         declare new overloads.
2083         * config/sh/sh.md (*cset_zero): Add variant that takes a treg_set_expr
2084         operand.
2086 2016-09-24  Aaron Sawdey  <acsawdey@linux.vnet.ibm.com>
2088         * config/rs6000/rs6000.c (expand_block_compare, do_load_for_compare):
2089         Change TARGET_LITTLE_ENDIAN to !BYTES_BIG_ENDIAN.
2091 2016-09-24  David Edelsohn  <dje.gcc@gmail.com>
2093         * configure.ac (gcc_cv_as_aix_dwloc): Fix typo in assembly fragment.
2094         * configure: Regenerate.
2096 2016-09-24  Marek Polacek  <polacek@redhat.com>
2098         PR c/77490
2099         * doc/invoke.texi: Document -Wbool-operation.
2101 2016-09-23  Aaron Sawdey  <acsawdey@linux.vnet.ibm.com>
2103         * config/rs6000/rs6000.md (cmpmemsi): New define_expand.
2104         * config/rs6000/rs6000.c (expand_block_compare): New function used by
2105         cmpmemsi pattern to do builtin expansion of memcmp ().
2106         (compute_current_alignment): Add helper function for
2107         expand_block_compare used to compute alignment as the compare proceeds.
2108         (select_block_compare_mode): Used by expand_block_compare to select
2109         the mode used for reading the next chunk of bytes in the compare.
2110         (do_load_for_compare): Used by expand_block_compare to emit the load
2111         insns for the compare.
2112         (rs6000_emit_dot_insn): Moved this function to avoid a forward
2113         reference from expand_block_compare ().
2114         * config/rs6000/rs6000-protos.h (expand_block_compare): Add a
2115         prototype for this function.
2116         * config/rs6000/rs6000.opt (mblock-compare-inline-limit): Add a new
2117         target option for controlling how much code inline expansion of
2118         memcmp() will be allowed to generate.
2120 2016-09-23  Jakub Jelinek  <jakub@redhat.com>
2122         * hooks.c (hook_bool_bool_false, hook_bool_bool_gcc_optionsp_false,
2123         hook_bool_mode_false, hook_bool_mode_true,
2124         hook_bool_mode_const_rtx_false, hook_bool_mode_const_rtx_true,
2125         hook_bool_mode_rtx_false, hook_bool_mode_rtx_true,
2126         hook_bool_const_rtx_insn_const_rtx_insn_true,
2127         hook_bool_mode_uhwi_false, hook_void_FILEptr_constcharptr,
2128         hook_bool_FILEptr_rtx_false, hook_bool_gsiptr_false,
2129         hook_bool_const_tree_hwi_hwi_const_tree_false,
2130         hook_bool_const_tree_hwi_hwi_const_tree_true,
2131         default_can_output_mi_thunk_no_vcall, hook_int_uint_mode_1,
2132         hook_int_const_tree_0, hook_int_const_tree_const_tree_1,
2133         hook_int_rtx_0, hook_int_rtx_bool_0, hook_void_tree,
2134         hook_void_constcharptr, hook_void_tree_treeptr, hook_void_int_int,
2135         hook_bool_tree_false, hook_bool_const_tree_false, hook_bool_tree_true,
2136         hook_bool_const_tree_true, hook_bool_tree_tree_false,
2137         hook_bool_tree_tree_true, hook_bool_tree_bool_false,
2138         hook_bool_rtx_insn_true, hook_bool_rtx_false,
2139         hook_bool_uintp_uintp_false,
2140         hook_bool_rtx_mode_int_int_intp_bool_false, hook_rtx_rtx_null,
2141         hook_rtx_tree_int_null, hook_uint_mode_0,
2142         hook_constcharptr_const_tree_null, hook_tree_tree_int_treep_bool_null,
2143         hook_tree_tree_tree_null, hook_tree_tree_tree_tree_null,
2144         hook_constcharptr_const_rtx_insn_null,
2145         hook_constcharptr_const_tree_const_tree_null,
2146         hook_constcharptr_int_const_tree_null,
2147         hook_constcharptr_int_const_tree_const_tree_null,
2148         hook_tree_const_tree_null, hook_bool_rtx_insn_int_false,
2149         hook_void_rtx_insn_int, hook_void_gcc_optionsp): For arguments with
2150         ATTRIBUTE_UNUSED, remove parameter name as well as ATTRIBUTE_UNUSED.
2152         * vec.h (vNULL): Extend comment to say = vNULL initialization
2153         isn't needed for static vars.
2155         * sel-sched-ir.c (sel_global_bb_info, sel_region_bb_info,
2156         loop_nests, s_i_d, last_added_blocks): Remove unnecessary
2157         = vNULL initialization of file scope vec.
2158         * passes.c (pass_tab, enabled_pass_uid_range_tab,
2159         disabled_pass_uid_range_tab): Likewise.
2160         * haifa-sched.c (sched_luids, h_i_d): Likewise.
2161         * tree-chkp-opt.c (check_infos): Likewise.
2162         * sel-sched.c (vec_av_set, vec_temp_moveop_nops): Likewise.
2164         * vec.h (vnull::operator vec): Add constexpr keyword for
2165         C++11 and later.
2167 2016-09-23  Doug Gilmore  <doug.gilmore@imgtec.com>
2169         PR tree-optimization/77654
2170         * tree-ssa-loop-prefetch.c (issue_prefetch_ref): Add call
2171         to duplicate_ssa_name_ptr_info.
2173 2016-09-23  David Malcolm  <dmalcolm@redhat.com>
2175         PR preprocessor/77672
2176         * input.c (selftest::test_lexer_string_locations_simple): Update
2177         test to expect location information of the terminator character
2178         at the location of the final closing quote.
2179         (selftest::test_lexer_string_locations_hex): Likewise.
2180         (selftest::test_lexer_string_locations_oct): Likewise.
2181         (selftest::test_lexer_string_locations_letter_escape_1): Likewise.
2182         (selftest::test_lexer_string_locations_letter_escape_2): Likewise.
2183         (selftest::test_lexer_string_locations_ucn4): Likewise.
2184         (selftest::test_lexer_string_locations_ucn8): Likewise.
2185         (selftest::test_lexer_string_locations_u8): Likewise.
2186         (selftest::test_lexer_string_locations_utf8_source): Likewise.
2187         (selftest::test_lexer_string_locations_concatenation_1): Likewise.
2188         (selftest::test_lexer_string_locations_concatenation_2): Likewise.
2189         (selftest::test_lexer_string_locations_concatenation_3): Likewise.
2190         (selftest::test_lexer_string_locations_macro): Likewise.
2191         (selftest::test_lexer_string_locations_long_line): Likewise.
2193 2016-09-23  Richard Biener  <rguenther@suse.de>
2195         * tree-ssa-sccvn.c (visit_reference_op_call): Value number
2196         virtual definition to virtual use if the call devirtualizes
2197         to a const or pure function.
2198         (visit_use): Also visit calls we can devirtualize to a
2199         const or pure function.
2201 2016-09-23  Richard Biener  <rguenther@suse.de>
2203         PR tree-optimization/77697
2204         * tree-ssa-forwprop.c (defcodefor_name): Remove bogus code,
2205         signal error if we have sth ternary or unhandled.
2207 2016-09-23  Matthew Wahab  <matthew.wahab@arm.com>
2209         * config/arm/arm_neon.h (vabd_f16): New.
2210         (vabdq_f16): New.
2211         (vabs_f16): New.
2212         (vabsq_f16): New.
2213         (vadd_f16): New.
2214         (vaddq_f16): New.
2215         (vcage_f16): New.
2216         (vcageq_f16): New.
2217         (vcagt_f16): New.
2218         (vcagtq_f16): New.
2219         (vcale_f16): New.
2220         (vcaleq_f16): New.
2221         (vcalt_f16): New.
2222         (vcaltq_f16): New.
2223         (vceq_f16): New.
2224         (vceqq_f16): New.
2225         (vceqz_f16): New.
2226         (vceqzq_f16): New.
2227         (vcge_f16): New.
2228         (vcgeq_f16): New.
2229         (vcgez_f16): New.
2230         (vcgezq_f16): New.
2231         (vcgt_f16): New.
2232         (vcgtq_f16): New.
2233         (vcgtz_f16): New.
2234         (vcgtzq_f16): New.
2235         (vcle_f16): New.
2236         (vcleq_f16): New.
2237         (vclez_f16): New.
2238         (vclezq_f16): New.
2239         (vclt_f16): New.
2240         (vcltq_f16): New.
2241         (vcltz_f16): New.
2242         (vcltzq_f16): New.
2243         (vcvt_f16_s16): New.
2244         (vcvt_f16_u16): New.
2245         (vcvt_s16_f16): New.
2246         (vcvt_u16_f16): New.
2247         (vcvtq_f16_s16): New.
2248         (vcvtq_f16_u16): New.
2249         (vcvtq_s16_f16): New.
2250         (vcvtq_u16_f16): New.
2251         (vcvta_s16_f16): New.
2252         (vcvta_u16_f16): New.
2253         (vcvtaq_s16_f16): New.
2254         (vcvtaq_u16_f16): New.
2255         (vcvtm_s16_f16): New.
2256         (vcvtm_u16_f16): New.
2257         (vcvtmq_s16_f16): New.
2258         (vcvtmq_u16_f16): New.
2259         (vcvtn_s16_f16): New.
2260         (vcvtn_u16_f16): New.
2261         (vcvtnq_s16_f16): New.
2262         (vcvtnq_u16_f16): New.
2263         (vcvtp_s16_f16): New.
2264         (vcvtp_u16_f16): New.
2265         (vcvtpq_s16_f16): New.
2266         (vcvtpq_u16_f16): New.
2267         (vcvt_n_f16_s16): New.
2268         (vcvt_n_f16_u16): New.
2269         (vcvtq_n_f16_s16): New.
2270         (vcvtq_n_f16_u16): New.
2271         (vcvt_n_s16_f16): New.
2272         (vcvt_n_u16_f16): New.
2273         (vcvtq_n_s16_f16): New.
2274         (vcvtq_n_u16_f16): New.
2275         (vfma_f16): New.
2276         (vfmaq_f16): New.
2277         (vfms_f16): New.
2278         (vfmsq_f16): New.
2279         (vmax_f16): New.
2280         (vmaxq_f16): New.
2281         (vmaxnm_f16): New.
2282         (vmaxnmq_f16): New.
2283         (vmin_f16): New.
2284         (vminq_f16): New.
2285         (vminnm_f16): New.
2286         (vminnmq_f16): New.
2287         (vmul_f16): New.
2288         (vmul_lane_f16): New.
2289         (vmul_n_f16): New.
2290         (vmulq_f16): New.
2291         (vmulq_lane_f16): New.
2292         (vmulq_n_f16): New.
2293         (vneg_f16): New.
2294         (vnegq_f16): New.
2295         (vpadd_f16): New.
2296         (vpmax_f16): New.
2297         (vpmin_f16): New.
2298         (vrecpe_f16): New.
2299         (vrecpeq_f16): New.
2300         (vrnd_f16): New.
2301         (vrndq_f16): New.
2302         (vrnda_f16): New.
2303         (vrndaq_f16): New.
2304         (vrndm_f16): New.
2305         (vrndmq_f16): New.
2306         (vrndn_f16): New.
2307         (vrndnq_f16): New.
2308         (vrndp_f16): New.
2309         (vrndpq_f16): New.
2310         (vrndx_f16): New.
2311         (vrndxq_f16): New.
2312         (vrsqrte_f16): New.
2313         (vrsqrteq_f16): New.
2314         (vrecps_f16): New.
2315         (vrecpsq_f16): New.
2316         (vrsqrts_f16): New.
2317         (vrsqrtsq_f16): New.
2318         (vsub_f16): New.
2319         (vsubq_f16): New.
2321 2016-09-23  Matthew Wahab  <matthew.wahab@arm.com>
2323         * config.gcc (extra_headers): Add arm_fp16.h
2324         * config/arm/arm_fp16.h: New.
2325         * config/arm/arm_neon.h: Include "arm_fp16.h".
2327 2016-09-23  Matthew Wahab  <matthew.wahab@arm.com>
2329         * config/arm/arm_neon_builtins.def (vadd): New (v8hf, v4hf
2330         variants).
2331         (vmulf): New (v8hf, v4hf variants).
2332         (vfma): New (v8hf, v4hf variants).
2333         (vfms): New (v8hf, v4hf variants).
2334         (vsub): New (v8hf, v4hf variants).
2335         (vcage): New (v8hf, v4hf variants).
2336         (vcagt): New (v8hf, v4hf variants).
2337         (vcale): New (v8hf, v4hf variants).
2338         (vcalt): New (v8hf, v4hf variants).
2339         (vceq): New (v8hf, v4hf variants).
2340         (vcgt): New (v8hf, v4hf variants).
2341         (vcge): New (v8hf, v4hf variants).
2342         (vcle): New (v8hf, v4hf variants).
2343         (vclt): New (v8hf, v4hf variants).
2344         (vceqz): New (v8hf, v4hf variants).
2345         (vcgez): New (v8hf, v4hf variants).
2346         (vcgtz): New (v8hf, v4hf variants).
2347         (vcltz): New (v8hf, v4hf variants).
2348         (vclez): New (v8hf, v4hf variants).
2349         (vabd): New (v8hf, v4hf variants).
2350         (vmaxf): New (v8hf, v4hf variants).
2351         (vmaxnm): New (v8hf, v4hf variants).
2352         (vminf): New (v8hf, v4hf variants).
2353         (vminnm): New (v8hf, v4hf variants).
2354         (vpmaxf): New (v4hf variant).
2355         (vpminf): New (v4hf variant).
2356         (vpadd): New (v4hf variant).
2357         (vrecps): New (v8hf, v4hf variants).
2358         (vrsqrts): New (v8hf, v4hf variants).
2359         (vabs): New (v8hf, v4hf variants).
2360         (vneg): New (v8hf, v4hf variants).
2361         (vrecpe): New (v8hf, v4hf variants).
2362         (vrnd): New (v8hf, v4hf variants).
2363         (vrnda): New (v8hf, v4hf variants).
2364         (vrndm): New (v8hf, v4hf variants).
2365         (vrndn): New (v8hf, v4hf variants).
2366         (vrndp): New (v8hf, v4hf variants).
2367         (vrndx): New (v8hf, v4hf variants).
2368         (vrsqrte): New (v8hf, v4hf variants).
2369         (vmul_lane): Add v4hf and v8hf variants.
2370         (vmul_n): Add v4hf and v8hf variants.
2371         (vext): New (v8hf, v4hf variants).
2372         (vcvts): New (v8hi, v4hi variants).
2373         (vcvts): New (v8hf, v4hf variants).
2374         (vcvtu): New (v8hi, v4hi variants).
2375         (vcvtu): New (v8hf, v4hf variants).
2376         (vcvts_n): New (v8hf, v4hf variants).
2377         (vcvtu_n): New (v8hi, v4hi variants).
2378         (vcvts_n): New (v8hi, v4hi variants).
2379         (vcvtu_n): New (v8hf, v4hf variants).
2380         (vbsl): New (v8hf, v4hf variants).
2381         (vcvtas): New (v8hf, v4hf variants).
2382         (vcvtau): New (v8hf, v4hf variants).
2383         (vcvtms): New (v8hf, v4hf variants).
2384         (vcvtmu): New (v8hf, v4hf variants).
2385         (vcvtns): New (v8hf, v4hf variants).
2386         (vcvtnu): New (v8hf, v4hf variants).
2387         (vcvtps): New (v8hf, v4hf variants).
2388         (vcvtpu): New (v8hf, v4hf variants).
2390 2016-09-23  Matthew Wahab  <matthew.wahab@arm.com>
2392         * config/arm/arm-builtins.c (hf_UP): New.
2393         (si_UP): New.
2394         (vfp_builtin_data): New.  Update comment.
2395         (enum arm_builtins): Include "arm_vfp_builtins.def".
2396         (ARM_BUILTIN_VFP_PATTERN_START): New.
2397         (arm_init_vfp_builtins): New.
2398         (arm_init_builtins): Add arm_init_vfp_builtins.
2399         (arm_expand_vfp_builtin): New.
2400         (arm_expand_builtins): Update for arm_expand_vfp_builtin.  Fix
2401         long line.
2402         * config/arm/arm_vfp_builtins.def: New file.
2403         * config/arm/t-arm (arm.o): Add arm_vfp_builtins.def.
2404         (arm-builtins.o): Likewise.
2406 2016-09-23  Kugan Vivekanandarajah  <kuganv@linaro.org>
2408         PR ipa/77677
2409         * ipa-cp.c (propagate_vr_accross_jump_function): Drop TREE_OVERFLOW
2410         from constant while creating value range.
2412 2016-09-23  Renlin Li  <renlin.li@arm.com>
2414         * ira.c (ira): Move ira_use_lra_p initialization code to ...
2415         (ira_init_once): Here.
2417 2016-09-23  Uros Bizjak  <ubizjak@gmail.com>
2418             Jakub Jelinek  <jakub@redhat.com>
2420         * hooks.h (hook_uint_uintp_false): Rename to...
2421         (hook_bool_uint_uintp_false): ... this.
2422         * hooks.c (hook_uint_uintp_false): Rename to...
2423         (hook_bool_uint_uintp_false): ... this.
2424         * target.def (elf_flags_numeric): Use hook_bool_uint_uintp_false
2425         instead of hook_uint_uintp_false.
2427 2016-09-23  Matthew Wahab  <matthew.wahab@arm.com>
2429         * config/arm/arm-builtins.c (arm_init_neon_builtin): New.
2430         (arm_init_builtins): Move body of a loop to the standalone
2431         function arm_init_neon_builtin.
2432         (arm_expand_neon_builtin_1): New.  Update comment.  Function body
2433         moved from arm_neon_builtin with some white-space fixes.
2434         (arm_expand_neon_builtin): Move code into the standalone function
2435         arm_expand_neon_builtin_1.
2437 2016-09-23  Matthew Wahab  <matthew.wahab@arm.com>
2439         * config/arm/iterators.md (VCVTHI): New.
2440         (NEON_VCMP): Add UNSPEC_VCLT and UNSPEC_VCLE.  Fix a long line.
2441         (NEON_VAGLTE): New.
2442         (VFM_LANE_AS): New.
2443         (VH_CVTTO): New.
2444         (V_reg): Add HF, V4HF and V8HF.  Fix white-space.
2445         (V_HALF): Add V4HF.  Fix white-space.
2446         (V_if_elem): Add HF, V4HF and V8HF.  Fix white-space.
2447         (V_s_elem): Likewise.
2448         (V_sz_elem): Fix white-space.
2449         (V_elem_ch): Likewise.
2450         (VH_elem_ch): New.
2451         (scalar_mul_constraint): Add V8HF and V4HF.
2452         (Is_float_mode): Fix white-space.
2453         (Is_d_reg): Add V4HF and V8HF.  Fix white-space.
2454         (q): Add HF.  Fix white-space.
2455         (float_sup): New.
2456         (float_SUP): New.
2457         (cmp_op_unsp): Add UNSPEC_VCALE and UNSPEC_VCALT.
2458         (neon_vfm_lane_as): New.
2459         * config/arm/neon.md (add<mode>3_fp16): New.
2460         (sub<mode>3_fp16): New.
2461         (mul<mode>3add<mode>_neon): New.
2462         (fma<VH:mode>4_intrinsic): New.
2463         (fmsub<VCVTF:mode>4_intrinsic): Fix white-space.
2464         (fmsub<VH:mode>4_intrinsic): New.
2465         (<absneg_str><mode>2): New.
2466         (neon_v<absneg_str><mode>): New.
2467         (neon_v<fp16_rnd_str><mode>): New.
2468         (neon_vrsqrte<mode>): New.
2469         (neon_vpaddv4hf): New.
2470         (neon_vadd<mode>): New.
2471         (neon_vsub<mode>): New.
2472         (neon_vmulf<mode>): New.
2473         (neon_vfma<VH:mode>): New.
2474         (neon_vfms<VH:mode>): New.
2475         (neon_vc<cmp_op><mode>): New.
2476         (neon_vc<cmp_op><mode>_fp16insn): New
2477         (neon_vc<cmp_op_unsp><mode>_fp16insn_unspec): New.
2478         (neon_vca<cmp_op><mode>): New.
2479         (neon_vca<cmp_op><mode>_fp16insn): New.
2480         (neon_vca<cmp_op_unsp><mode>_fp16insn_unspec): New.
2481         (neon_vc<cmp_op>z<mode>): New.
2482         (neon_vabd<mode>): New.
2483         (neon_v<maxmin>f<mode>): New.
2484         (neon_vp<maxmin>fv4hf: New.
2485         (neon_<fmaxmin_op><mode>): New.
2486         (neon_vrecps<mode>): New.
2487         (neon_vrsqrts<mode>): New.
2488         (neon_vrecpe<mode>): New (VH variant).
2489         (neon_vdup_lane<mode>_internal): New.
2490         (neon_vdup_lane<mode>): New.
2491         (neon_vcvt<sup><mode>): New (VCVTHI variant).
2492         (neon_vcvt<sup><mode>): New (VH variant).
2493         (neon_vcvt<sup>_n<mode>): New (VH variant).
2494         (neon_vcvt<sup>_n<mode>): New (VCVTHI variant).
2495         (neon_vcvt<vcvth_op><sup><mode>): New.
2496         (neon_vmul_lane<mode>): New.
2497         (neon_vmul_n<mode>): New.
2498         * config/arm/unspecs.md (UNSPEC_VCALE): New
2499         (UNSPEC_VCALT): New.
2500         (UNSPEC_VFMA_LANE): New.
2501         (UNSPECS_VFMS_LANE): New.
2503 2016-09-23  Dominik Vogt  <vogt@linux.vnet.ibm.com>
2505         * config/s390/s390.md ("*extzv<mode>_zEC12", "*extzv<mode>_z10")
2506         ("*extzv<mode><clobbercc_or_nocc>"):
2507         Correct a typo in a comment.
2508         Merged patterns.
2509         ("*insv<mode>_zEC12", "*insv<mode>_z10")
2510         ("*insv<mode><clobbercc_or_nocc>"): Ditto.
2511         ("*insv<mode>_zEC12_appendbitsleft")
2512         ("*insv<mode><clobbercc_or_nocc>_appendbitsleft")
2513         ("*insv<mode>_z10_appendbitsleft"): Ditto.
2514         ("*insv<mode>_zEC12_noshift", "*insv<mode>_z10_noshift")
2515         ("*insv<mode><clobbercc_or_nocc>_noshift"): Ditto.
2516         Provide pattern with operands switched.
2517         ("*pre_z10_extv<mode>"):
2518         Use new subst patterns.
2519         ("*extzvdi<clobbercc_or_nocc>_lshiftrt", "*<risbg_n>_ior_and_sr_ze")
2520         ("*extvsidi<clobbercc_or_nocc>", "*<risbg_n>_and_subregdi_rotr")
2521         ("*<risbg_n>_and_subregdi_rotl", "*<risbg_n>_di_and_rot")
2522         ("*insv_z10_noshift_cc", "*insv_z10_noshift_cconly")
2523         ("*<risbg_n>_<mode>_ior_and_lshiftrt")
2524         ("*<risbg_n>_sidi_ior_and_lshiftrt")
2525         ("*trunc_sidi_and_subreg_lshrt<clobbercc_or_nocc>"):
2526         New patterns.
2527         ("*extzv_<mode>_sll", "*extzv_<mode>_srl")
2528         ("*extzv_<mode>_srl<clobbercc_or_nocc>")
2529         ("*extzv_<mode>_sll<clobbercc_or_nocc>"): Renamed patterns, use risbgn
2530         on zEC12.
2531         ("SINT"): New mode_iterator with SI, HI, QI.
2532         * config/s390/subst.md ("clobbercc_or_nocc_subst", "z10_or_zEC12_cond")
2533         ("clobbercc_or_nocc", "risbg_n"): New constructs for risbg pattern
2534         duplication.
2536 2016-09-23  Dominik Vogt  <vogt@linux.vnet.ibm.com>
2538         * config/s390/predicates.md ("contiguous_bitmask_operand"): Adapt to
2539         new interface of s390_contiguous_bitmask_p.
2540         ("contiguous_bitmask_nowrap_operand"): New predicate.
2541         ("*anddi3_cc", "*anddi3_cconly", "*anddi3"): Replace NxxDq with NxxDw.
2542         * config/s390/constraints.md ("NxxDw", "NxxSq"): Adapt to new interface
2543         of s390_contiguous_bitmask_p.
2544         ("NxxDw"): Rename NxxDq constraint to NxxDw.
2545         ("NxxSw"): New constraint.
2546         * config/s390/s390.md ("*andsi3_zarch"): Enable bitmask wraparound.
2547         * config/s390/s390-protos.h (s390_contiguous_bitmask_p): Updated
2548         interface.
2549         (s390_contiguous_bitmask_nowrap_p): Export.
2550         * config/s390/s390.c (s390_contiguous_bitmask_nowrap_p): New name of
2551         former s390_contiguous_bitmask_p.
2552         (s390_contiguous_bitmask_p): Use s390_contiguous_bitmask_nowrap_p to
2553         detect contiguous bit ranges with wraparound.  Change signature to
2554         return START and END position instead of POS and LENGTH.
2555         (s390_contiguous_bitmask_vector_p): Remove extra code for continous bit
2556         ranges with wraparound.
2557         (s390_extzv_shift_ok): Use s390_contiguous_bitmask_nowrap_p.
2558         (s390_contiguous_bitmask_vector_p,s390_extzv_shift_ok,print_operand):
2559         Adapt to new signature of s390_contiguous_bitmask_p.
2561 2016-09-23  Bin Cheng  <bin.cheng@arm.com>
2563         * tree-vect-loop-manip.c (create_intersect_range_checks_index): New.
2564         (create_intersect_range_checks): New.
2565         (vect_create_cond_for_alias_checks): Call above function.
2567 2016-09-23  Matthew Wahab  <matthew.wahab@arm.com>
2569         * config/arm/iterators.md (Code iterators): Fix some white-space
2570         in the comments.
2571         (GLTE): New.
2572         (ABSNEG): New
2573         (FCVT): Moved from vfp.md.
2574         (VCVT_HF_US_N): New.
2575         (VCVT_SI_US_N): New.
2576         (VCVT_HF_US): New.
2577         (VCVTH_US): New.
2578         (FP16_RND): New.
2579         (absneg_str): New.
2580         (FCVTI32typename): Moved from vfp.md.
2581         (sup): Add UNSPEC_VCVTA_S, UNSPEC_VCVTA_U, UNSPEC_VCVTM_S,
2582         UNSPEC_VCVTM_U, UNSPEC_VCVTN_S, UNSPEC_VCVTN_U, UNSPEC_VCVTP_S,
2583         UNSPEC_VCVTP_U, UNSPEC_VCVT_HF_S_N, UNSPEC_VCVT_HF_U_N,
2584         UNSPEC_VCVT_SI_S_N, UNSPEC_VCVT_SI_U_N,  UNSPEC_VCVTH_S_N,
2585         UNSPEC_VCVTH_U_N, UNSPEC_VCVTH_S and UNSPEC_VCVTH_U.
2586         (vcvth_op): New.
2587         (fp16_rnd_str): New.
2588         (fp16_rnd_insn): New.
2589         * config/arm/unspecs.md (UNSPEC_VCVT_HF_S_N): New.
2590         (UNSPEC_VCVT_HF_U_N): New.
2591         (UNSPEC_VCVT_SI_S_N): New.
2592         (UNSPEC_VCVT_SI_U_N): New.
2593         (UNSPEC_VCVTH_S): New.
2594         (UNSPEC_VCVTH_U): New.
2595         (UNSPEC_VCVTA_S): New.
2596         (UNSPEC_VCVTA_U): New.
2597         (UNSPEC_VCVTM_S): New.
2598         (UNSPEC_VCVTM_U): New.
2599         (UNSPEC_VCVTN_S): New.
2600         (UNSPEC_VCVTN_U): New.
2601         (UNSPEC_VCVTP_S): New.
2602         (UNSPEC_VCVTP_U): New.
2603         (UNSPEC_VCVTP_S): New.
2604         (UNSPEC_VCVTP_U): New.
2605         (UNSPEC_VRND): New.
2606         (UNSPEC_VRNDA): New.
2607         (UNSPEC_VRNDI): New.
2608         (UNSPEC_VRNDM): New.
2609         (UNSPEC_VRNDN): New.
2610         (UNSPEC_VRNDP): New.
2611         (UNSPEC_VRNDX): New.
2612         * config/arm/vfp.md (<absneg_str>hf2): New.
2613         (neon_vabshf): New.
2614         (neon_v<fp16_rnd_str>hf): New.
2615         (neon_vrndihf): New.
2616         (addhf3): New.
2617         (subhf3): New.
2618         (divhf3): New.
2619         (mulhf3): New.
2620         (*mulsf3neghf_vfp): New.
2621         (*negmulhf3_vfp): New.
2622         (*mulsf3addhf_vfp): New.
2623         (*mulhf3subhf_vfp): New.
2624         (*mulhf3neghfaddhf_vfp): New.
2625         (*mulhf3neghfsubhf_vfp): New.
2626         (fmahf4): New.
2627         (neon_vfmahf): New.
2628         (fmsubhf4_fp16): New.
2629         (neon_vfmshf): New.
2630         (*fnmsubhf4): New.
2631         (*fnmaddhf4): New.
2632         (neon_vsqrthf): New.
2633         (neon_vrsqrtshf): New.
2634         (FCVT): Move to iterators.md.
2635         (FCVTI32typename): Likewise.
2636         (neon_vcvth<sup>hf): New.
2637         (neon_vcvth<sup>si): New.
2638         (neon_vcvth<sup>_nhf_unspec): New.
2639         (neon_vcvth<sup>_nhf): New.
2640         (neon_vcvth<sup>_nsi_unspec): New.
2641         (neon_vcvth<sup>_nsi): New.
2642         (neon_vcvt<vcvth_op>h<sup>si): New.
2643         (neon_<fmaxmin_op>hf): New.
2645 2016-09-23  Dominik Vogt  <vogt@linux.vnet.ibm.com>
2647         * config/s390/s390.md (bitoff, bitoff_plus): Neq mode attributes.
2648         ("*extzv<mode>_zEC12", "*insv<mode>_zEC12", "*insv<mode>_z10")
2649         ("*insv<mode>_zEC12_appendbitsleft")
2650         ("*insv<mode>_z10_appendbitsleft", "*r<noxa>sbg_<mode>_sll")
2651         ("*r<noxa>sbg_<mode>_srl"): Use new attributes.
2653 2016-09-23  Jakub Jelinek  <jakub@redhat.com>
2655         * ipa-cp.c (ipcp_store_vr_results): Avoid static local var zero.
2656         * sreal.h (sreal::min, sreal::max): Avoid static local vars,
2657         construct values without normalization.
2658         * tree-ssa-sccvn.c (vn_reference_lookup_3): Don't initialize
2659         static local lhs_ops to vNULL.
2661 2016-09-23  Matthew Wahab  <matthew.wahab@arm.com>
2662             Jiong Wang <jiong.wang@arm.com>
2664         * config/arm/arm.c (coproc_secondary_reload_class): Make HFmode
2665         available when FP16 instructions are available.
2666         (output_move_vfp): Add support for 16-bit data moves.
2667         (arm_validize_comparison): Fix some white-space.  Support HFmode
2668         by conversion to SFmode.
2669         * config/arm/arm.md (truncdfhf2): Fix a comment.
2670         (extendhfdf2): Likewise.
2671         (cstorehf4): New.
2672         (movsicc): Fix some white-space.
2673         (movhfcc): New.
2674         (movsfcc): Fix some white-space.
2675         (*cmovhf): New.
2676         * config/arm/vfp.md (*arm_movhi_vfp): Disable when VFP FP16
2677         instructions are available.
2678         (*thumb2_movhi_vfp): Likewise.
2679         (*arm_movhi_fp16): New.
2680         (*thumb2_movhi_fp16): New.
2681         (*movhf_vfp_fp16): New.
2682         (*movhf_vfp_neon): Disable when VFP FP16 instructions are available.
2683         (*movhf_vfp): Likewise.
2684         (extendhfsf2): Enable when VFP FP16 instructions are available.
2685         (truncsfhf2):  Enable when VFP FP16 instructions are available.
2687 2016-09-23  Martin Liska  <mliska@suse.cz>
2689         * config/s390/vx-builtins.md: Replace 'adress' with 'address'.
2691 2016-09-23  Matthew Wahab  <matthew.wahab@arm.com>
2693         * config/arm/arm.c (arm_evpc_neon_vuzp): Add support for V8HF and
2694         V4HF modes.
2695         (arm_evpc_neon_vtrn): Likewise.
2696         (arm_evpc_neon_vrev): Likewise.
2697         (arm_evpc_neon_vext): Likewise.
2698         * config/arm/arm_neon.h (vbsl_f16): New.
2699         (vbslq_f16): New.
2700         (vdup_n_f16): New.
2701         (vdupq_n_f16): New.
2702         (vdup_lane_f16): New.
2703         (vdupq_lane_f16): New.
2704         (vext_f16): New.
2705         (vextq_f16): New.
2706         (vmov_n_f16): New.
2707         (vmovq_n_f16): New.
2708         (vrev64_f16): New.
2709         (vrev64q_f16): New.
2710         (vtrn_f16): New.
2711         (vtrnq_f16): New.
2712         (vuzp_f16): New.
2713         (vuzpq_f16): New.
2714         (vzip_f16): New.
2715         (vzipq_f16): New.
2716         * config/arm/arm_neon_buillins.def (vdup_n): New (v8hf, v4hf variants).
2717         (vdup_lane): New (v8hf, v4hf variants).
2718         (vext): New (v8hf, v4hf variants).
2719         (vbsl): New (v8hf, v4hf variants).
2720         * config/arm/iterators.md (VDQWH): New.
2721         (VH): New.
2722         (V_double_vector_mode): Add V8HF and V4HF.  Fix white-space.
2723         (Scalar_mul_8_16): Fix white-space.
2724         (Is_d_reg): Add V4HF and V8HF.
2725         * config/arm/neon.md (neon_vdup_lane<mode>_internal): New.
2726         (neon_vdup_lane<mode>): New.
2727         (neon_vtrn<mode>_internal): Replace VDQW with VDQWH.
2728         (*neon_vtrn<mode>_insn): Likewise.
2729         (neon_vzip<mode>_internal): Likewise. Also fix white-space.
2730         (*neon_vzip<mode>_insn): Likewise
2731         (neon_vuzp<mode>_internal): Likewise.
2732         (*neon_vuzp<mode>_insn): Likewise
2733         * config/arm/vec-common.md (vec_perm_const<mode>): New.
2735 2016-09-23  Jiong Wang  <jiong.wang@arm.com>
2736             Matthew Wahab  <matthew.wahab@arm.com>
2738         * config/arm/arm.c (output_move_vfp): Weaken assert to allow HImode.
2739         (arm_hard_regno_mode_ok): Allow HImode values in VFP registers.
2740         * config/arm/arm.md (*movhi_bytes): Disable when VFP registers are
2741         available.  Also fix some white-space.
2742         * config/arm/vfp.md (*arm_movhi_vfp): New.
2743         (*thumb2_movhi_vfp): New.
2745 2016-09-23  Matthew Wahab  <matthew.wahab@arm.com>
2747         * config/arm/arm-c.c (arm_cpu_builtins): Define
2748         "__ARM_FEATURE_FP16_SCALAR_ARITHMETIC" and
2749         "__ARM_FEATURE_FP16_VECTOR_ARITHMETIC".
2751 2016-09-23  Matthew Wahab  <matthew.wahab@arm.com>
2753         * doc/sourcebuild.texi (ARM-specific attributes): Add anchor for
2754         arm_v8_1a_neon_ok.  Add entries for arm_v8_2a_fp16_scalar_ok,
2755         arm_v8_2a_fp16_scalar_hw, arm_v8_2a_fp16_neon_ok and
2756         arm_v8_2a_fp16_neon_hw.
2757         (Add options): Add entries for arm_v8_1a_neon, arm_v8_2a_scalar,
2758         arm_v8_2a_neon.
2760 2016-09-23  Matthew Wahab  <matthew.wahab@arm.com>
2762         * doc/sourcebuild.texi (ARM-specific attributes): Add entries for
2763         arm_fp16_alternative_ok and arm_fp16_none_ok.
2765 2016-09-23  Martin Liska  <mliska@suse.cz>
2767         * ipa-icf.c (sem_variable::merge): Replace adress with address.
2769 2016-09-23  Matthew Wahab  <matthew.wahab@arm.com>
2771         * config/arm/arm-arches.def ("armv8.1-a"): Add FL_CRC32.
2772         ("armv8.2-a"): New.
2773         ("armv8.2-a+fp16"): New.
2774         * config/arm/arm-protos.h (FL2_ARCH8_2): New.
2775         (FL2_FP16INST): New.
2776         (FL2_FOR_ARCH8_2A): New.
2777         * config/arm/arm-tables.opt: Regenerate.
2778         * config/arm/arm.c (arm_arch8_2): New.
2779         (arm_fp16_inst): New.
2780         (arm_option_override): Set arm_arch8_2 and arm_fp16_inst.  Check
2781         for incompatible fp16-format settings.
2782         * config/arm/arm.h (TARGET_VFP_FP16INST): New.
2783         (TARGET_NEON_FP16INST): New.
2784         (arm_arch8_2): Declare.
2785         (arm_fp16_inst): Declare.
2786         * config/arm/bpabi.h (BE8_LINK_SPEC): Add entries for
2787         march=armv8.2-a and march=armv8.2-a+fp16.
2788         * config/arm/t-aprofile (Arch Matches): Add entries for armv8.2-a
2789         and armv8.2-a+fp16.
2790         * doc/invoke.texi (ARM Options): Add "-march=armv8.1-a",
2791         "-march=armv8.2-a" and "-march=armv8.2-a+fp16".
2793 2016-09-23  Martin Liska  <mliska@suse.cz>
2795         * doc/extend.texi: Remove fused-madd from i386 target options.
2797 2016-09-23  Martin Liska  <mliska@suse.cz>
2799         * config/i386/i386.c (ix86_valid_target_attribute_inner_p):
2800         Handle movbe.
2802 2016-09-23  Martin Liska  <mliska@suse.cz>
2804         * config/i386/i386.c (ix86_valid_target_attribute_inner_p):
2805         Handle crc32.
2807 2016-09-23  Martin Liska  <mliska@suse.cz>
2809         PR target/71652
2810         * config/i386/i386.c (ix86_option_override_internal): Change
2811         signature and return false when there's an error related to
2812         arch string.
2813         (release_options_strings): New function.
2814         (ix86_valid_target_attribute_tree): Call the function.
2816 2016-09-23  Jakub Jelinek  <jakub@redhat.com>
2818         * hsa-gen.c (hsa_op_immed::hsa_op_immed Use CONSTRUCTOR_NELTS (...)
2819         instead of vec_safe_length (CONSTRUCTOR_ELTS (...)).
2820         (gen_hsa_ctor_assignment): Likewise.
2821         * print-tree.c (print_node): Likewise.
2822         * tree-dump.c (dequeue_and_dump): Likewise.
2823         * tree-sra.c (sra_modify_constructor_assign): Likewise.
2824         * expr.c (store_constructor): Likewise.
2825         * fold-const.c (operand_equal_p): Likewise.
2826         * tree-pretty-print.c (dump_generic_node): Likewise.
2827         * hsa-brig.c (hsa_op_immed::emit_to_buffer): Likewise.
2828         * ipa-icf-gimple.c (func_checker::compare_operand): Likewise.
2830 2016-09-23  Richard Biener  <rguenther@suse.de>
2832         * hooks.h (hook_uint_uintp_false): Declare.
2834 2016-09-22  Senthil Kumar Selvaraj  <senthil_kumar.selvaraj@atmel.com>
2836         * config/avr/avr.c (avr_rtx_costs_1): Handle DImode MULT.
2837         (avr_address_cost): Replace 61 with MAX_LD_OFFSET(mode).
2839 2016-09-22  Martin Sebor  <msebor@redhat.com>
2841         PR target/77676
2842         * gimple-ssa-sprintf.c (target_int_min, target_int_max): Use
2843         HOST_BITS_PER_WIDE_INT, make a static local variable auto.
2844         (target_int_min): Correct computation.
2845         (format_integer): Use long long as the argument for the ll length
2846         modifier.
2847         (format_floating): Use target_int_max().
2848         (get_string_length): Same.
2849         (format_string): Avoid setting the bounded flag for strings
2850         of unknown length.
2851         (try_substitute_return_value): Avoid setting range info when
2852         the result isn't bounded.
2853         * varasm.c (assemble_name): Increase buffer size.
2855 2016-09-22  Andre Vieira  <andre.simoesdiasvieira@arm.com>
2856             Terry Guo  <terry.guo@arm.com>
2858         * target.def (elf_flags_numeric): New target hook.
2859         * targhooks.h (default_asm_elf_flags_numeric): New.
2860         * varasm.c (default_asm_elf_flags_numeric): New.
2861         (default_elf_asm_named_section): Use new target hook.
2862         * config/arm/arm.opt (mpure-code): New.
2863         * config/arm/arm.h (SECTION_ARM_PURECODE): New.
2864         * config/arm/arm.c (arm_asm_init_sections): Add section
2865         attribute to default text section if -mpure-code.
2866         (arm_option_check_internal): Diagnose use of option with
2867         non supported targets and/or options.
2868         (arm_asm_elf_flags_numeric): New.
2869         (arm_function_section): New.
2870         (arm_elf_section_type_flags): New.
2871         * config/arm/elf.h (JUMP_TABLES_IN_TEXT_SECTION): Disable
2872         for -mpure-code.
2873         * gcc/doc/texi (TARGET_ASM_ELF_FLAGS_NUMERIC): New.
2874         * gcc/doc/texi.in (TARGET_ASM_ELF_FLAGS_NUMERIC): Likewise.
2876 2016-09-22  Jan Hubicka  <hubicka@ucw.cz>
2878         * regcprop.c (copyprop_hardreg_forward_1): Remove noop moves.
2880 2016-09-22  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
2882         * emit-rtl.c (next_cc0_user): Make argument type rtx_insn *.
2883         * rtl.h: Adjust prototype.
2885 2016-09-22  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
2887         * emit-rtl.c (next_active_insn): Change argument type to rtx_insn *.
2888         (prev_active_insn): Likewise.
2889         (active_insn_p): Likewise.
2890         * rtl.h: Adjust prototypes.
2891         * cfgcleanup.c (merge_blocks_move_successor_nojumps): Adjust.
2892         * config/arc/arc.md: Likewise.
2893         * config/pa/pa.c (branch_to_delay_slot_p): Likewise.
2894         (branch_needs_nop_p): Likewise.
2895         (use_skip_p): Likewise.
2896         * config/sh/sh.c (gen_block_redirect): Likewise.
2897         (split_branches): Likewise.
2898         * reorg.c (optimize_skip): Likewise.
2899         (fill_simple_delay_slots): Likewise.
2900         (fill_slots_from_thread): Likewise.
2901         (relax_delay_slots): Likewise.
2902         * resource.c (mark_target_live_regs): Likewise.
2904 2016-09-22  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
2906         * config/cris/cris.c (cris_asm_output_case_end): Change argument
2907         type to rtx_insn *.
2908         * emit-rtl.c (next_nonnote_nondebug_insn): Likewise.
2909         (prev_nonnote_nondebug_insn): Likewise.
2910         * config/cris/cris-protos.h: Adjust prototype.
2911         * rtl.h: Likewise.
2912         * jump.c (rtx_renumbered_equal_p): Adjust.
2914 2016-09-22  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
2916         * emit-rtl.c (prev_real_insn): Change argument type to rtx_insn *.
2917         * rtl.h: Adjust prototype.
2918         * config/sh/sh.md: Adjust.
2919         * dwarf2out.c (add_var_loc_to_decl): Likewise.
2921 2016-09-22  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
2923         * emit-rtl.c (next_nondebug_insn): Change argument type to rtx_insn *.
2924         (prev_nondebug_insn): Likewise.
2925         * loop-doloop.c (doloop_condition_get): Likewise.
2926         * rtl.h: Adjust prototype.
2927         * cfgloop.h: Likewise.
2929 2016-09-22  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
2931         * emit-rtl.c (next_nonnote_insn): Change argument type to rtx_insn *.
2932         (prev_nonnote_insn): Likewise.
2933         * jump.c (reversed_comparison_code_parts): Likewise.
2934         (reversed_comparison): Likewise.
2935         * rtl.h: Adjust prototypes.
2936         * config/arc/arc.md: Adjust.
2937         * cse.c (find_comparison_args): Likewise.
2938         * reorg.c (redundant_insn): Change return type to rtx_insn *.
2939         (fix_reg_dead_note): Change argument type to rtx_insn *.
2940         (delete_prior_computation): Likewise.
2941         (delete_computation): Likewise.
2942         (fill_slots_from_thread): Adjust.
2943         (relax_delay_slots): Likewise.
2944         * simplify-rtx.c (simplify_unary_operation_1): Likewise.
2945         (simplify_relational_operation_1): Likewise.
2946         (simplify_ternary_operation): Likewise.
2948 2016-09-22  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
2950         * config/arc/arc-protos.h (arc_label_align): Change type of
2951         variables from rtx to rtx_insn *.
2952         * config/arc/arc.c (arc_label_align): Likewise.
2953         * config/arm/arm.c (any_sibcall_could_use_r3): Likewise.
2954         * config/bfin/bfin.c (workaround_speculation): Likewise.
2955         * config/c6x/c6x.c (find_next_cycle_insn): Likewise.
2956         (find_last_same_clock): Likewise.
2957         (reorg_split_calls): Likewise.
2958         * config/cris/cris-protos.h (cris_cc0_user_requires_cmp): Likewise.
2959         * config/cris/cris.c (cris_cc0_user_requires_cmp): Likewise.
2960         * config/h8300/h8300-protos.h (same_cmp_preceding_p): Likewise.
2961         (same_cmp_following_p): Likewise.
2962         * config/h8300/h8300.c (same_cmp_preceding_p): Likewise.
2963         (same_cmp_following_p): Likwise.
2964         * config/m32r/m32r.c (m32r_expand_epilogue): Likewise.
2965         * config/nds32/nds32-protos.h (nds32_target_alignment): Likewise.
2966         * config/nds32/nds32.c (nds32_target_alignment): Likewise.
2967         * config/rl78/rl78.c (rl78_alloc_physical_registers_op2): Likewise.
2968         (rl78_alloc_physical_registers_cmp): Likewise.
2969         (rl78_alloc_physical_registers_umul): Likewise.
2970         (rl78_calculate_death_notes): Likewise.
2971         * config/s390/s390-protos.h (s390_label_align): Likewise.
2972         * config/s390/s390.c (s390_label_align): Likewise.
2973         * config/sh/sh.c (barrier_align): Likewise.
2974         * config/sparc/sparc-protos.h (emit_cbcond_nop): Likewise.
2975         * config/sparc/sparc.c (sparc_asm_function_epilogue): Likewise.
2976         (emit_cbcond_nop): Likewise.
2978 2016-09-22  Martin Liska  <mliska@suse.cz>
2980         PR ipa/77653
2981         * ipa-icf.c (sem_variable::merge): Yield merge operation if
2982         alias address matters, not necessarily address of original.
2984 2016-09-22  Richard Biener  <rguenther@suse.de>
2986         PR middle-end/77697
2987         * gimple-fold.c (fold_array_ctor_reference): Turn asserts into
2988         fold fails.
2990 2016-09-22  Richard Biener  <rguenther@suse.de>
2992         PR middle-end/77677
2993         * gimple-match-head.c (gimple_resimplify1): Drop TREE_OVERFLOW
2994         from constant folding results.
2995         (gimple_resimplify2): Likewise.
2996         (gimple_resimplify3): Likewise.
2998 2016-09-22  Richard Biener  <rguenther@suse.de>
3000         PR middle-end/77678
3001         * expr.c (expand_expr_real_1): Guard array access against negative
3002         offset.
3004 2016-09-22  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
3006         * gimple-ssa-sprintf.c (format_floating_max): Use GMP_RNDN instead
3007         of MPFR_RNDN.
3008         (format_floating): Likewise.
3010 2016-09-22  Jakub Jelinek  <jakub@redhat.com>
3012         PR fortran/77665
3013         * tree-inline.c (remap_gimple_stmt): Set has_simduid_loops
3014         for all IFN_GOMP_SIMD_* internal fns, not just for
3015         IFN_GOMP_SIMD_ORDERED_*.
3017 2016-09-21  Michael Meissner  <meissner@linux.vnet.ibm.com>
3019         PR target/77670
3020         * config/rs6000/predicates.md (invert_fpmask_comparison_operator):
3021         New predicate that matches the ISA 3.0 XSCMP{EQ,GT,GE}DP
3022         instructions when you want to invert the test.
3023         * config/rs6000/rs6000.md (fpmask<mode>): Use the arguments in the
3024         correct order for XXSEL.
3025         (mov<SFDF:mode><SFDF2:mode>cc_invert_p9): Define the inverted test
3026         for using XSCMP{EQ,GT,GE}DP.
3028 2016-09-21  David Malcolm  <dmalcolm@redhat.com>
3030         * genconstants.c (main): Introduce noop_reader and convert call
3031         to read_md_files to a method call.
3032         * genenums.c (main): Likewise.
3033         * genmddeps.c (main): Likewise.
3034         * genpreds.c (write_tm_constrs_h): Replace use of "in_fname" with
3035         rtx_reader_ptr->get_top_level_filename ().
3036         (write_tm_preds_h): Likewise.
3037         (write_insn_preds_c): Likewise.
3038         * gensupport.c (class gen_reader): New subclass of rtx_reader.
3039         (rtx_handle_directive): Convert to...
3040         (gen_reader::handle_unknown_directive): ...this.
3041         (init_rtx_reader_args_cb): Convert return type from bool to
3042         rtx_reader *.  Create a gen_reader instance, using it for the
3043         call to read_md_files.  Return it if no errors occur.
3044         (init_rtx_reader_args): Convert return type from bool to
3045         rtx_reader *.
3046         * gensupport.h (init_rtx_reader_args_cb): Likewise.
3047         (init_rtx_reader_args_cb): Likewise.
3048         * read-md.c (struct file_name_list): Move to class rtx_reader.
3049         (read_md_file): Delete in favor of rtx_reader::m_read_md_file.
3050         (read_md_filename): Delete in favor of
3051         rtx_reader::m_read_md_filename.
3052         (read_md_lineno): Delete in favor of rtx_reader::m_read_md_lineno.
3053         (in_fname): Delete in favor of rtx_reader::m_toplevel_fname.
3054         (base_dir): Delete in favor of rtx_reader::m_base_dir.
3055         (first_dir_md_include): Delete in favor of
3056         rtx_reader::m_first_dir_md_include.
3057         (last_dir_md_include_ptr): Delete in favor of
3058         rtx_reader::m_last_dir_md_include_ptr.
3059         (max_include_len): Delete.
3060         (rtx_reader_ptr): New.
3061         (fatal_with_file_and_line): Use get_filename and get_lineno
3062         accessors of rtx_reader_ptr.
3063         (require_char_ws): Likewise.
3064         (rtx_reader::read_char): New method, based on ::read_char.
3065         (rtx_reader::unread_char): New method, based on ::unread_char.
3066         (read_escape): Use get_filename and get_lineno accessors of
3067         rtx_reader_ptr.
3068         (read_braced_string): Use get_lineno accessor of rtx_reader_ptr.
3069         (read_string): Use get_filename and get_lineno accessors of
3070         rtx_reader_ptr.
3071         (rtx_reader::rtx_reader): New ctor.
3072         (rtx_reader::~rtx_reader): New dtor.
3073         (handle_include): Convert from a function to...
3074         (rtx_reader::handle_include): ...this method, converting
3075         handle_directive from a callback to a virtual function.
3076         (handle_file): Likewise, converting to...
3077         (rtx_reader::handle_file): ...this method.
3078         (handle_toplevel_file): Likewise, converting to...
3079         (rtx_reader::handle_toplevel_file): ...this method.
3080         (rtx_reader::get_current_location): New method.
3081         (parse_include): Convert from a function to...
3082         (rtx_reader::add_include_path): ...this method, dropping redundant
3083         update to unused max_include_len.
3084         (read_md_files): Convert from a function to...
3085         (rtx_reader::read_md_files): ...this method, converting
3086         handle_directive from a callback to a virtual function.
3087         (noop_reader::handle_unknown_directive): New method.
3088         * read-md.h (directive_handler_t): Delete this typedef.
3089         (in_fname): Delete.
3090         (read_md_file): Delete.
3091         (read_md_lineno): Delete.
3092         (read_md_filename): Delete.
3093         (class rtx_reader): New class.
3094         (rtx_reader_ptr): New decl.
3095         (class noop_reader): New subclass of rtx_reader.
3096         (read_char): Reimplement in terms of rtx_reader::read_char.
3097         (unread_char): Reimplement in terms of rtx_reader::unread_char.
3098         (read_md_files): Delete.
3099         * read-rtl.c (read_rtx_code): Update for deletion of globals
3100         read_md_filename and read_md_lineno.
3102 2016-09-21  Jason Merrill  <jason@redhat.com>
3104         * input.h (from_macro_definition_at): New.
3106 2016-09-21  Segher Boessenkool  <segher@kernel.crashing.org>
3108         * doc/rtl.texi (JUMP_LABEL): Document RETURN and SIMPLE_RETURN values.
3110 2016-09-21  Bernd Edlinger  <bernd.edlinger@hotmail.de>
3112         PR tree-optimization/77550
3113         * tree-vect-stmts.c (create_array_ref): Change parameters.
3114         (get_group_alias_ptr_type): New function.
3115         (vectorizable_store, vectorizable_load): Use get_group_alias_ptr_type.
3117 2016-09-21  Marek Polacek  <polacek@redhat.com>
3119         * gimple-ssa-sprintf.c (pass_sprintf_length::compute_format_length):
3120         Add falls through comment.
3122 2016-09-21  Richard Biener  <rguenther@suse.de>
3124         * dwarf2out.c (remove_child_with_prev): Clear child->die_sib.
3125         (replace_child): Likewise.
3126         (remove_child_TAG): Adjust.
3127         (move_marked_base_types): Likewise.
3128         (prune_unused_types_prune): Clear die_sib of removed children.
3130 2016-09-21  Georg-Johann Lay  <avr@gjlay.de>
3132         PR target/77326
3133         * config/avr/avr.c (avr_notice_update_cc) [CC_NONE]: If insn
3134         touches some regs mentioned in cc_status, do CC_STATUS_INIT.
3136 2016-09-21  Richard Biener  <rguenther@suse.de>
3138         PR tree-optimization/77648
3139         * tree-ssa-structalias.c (process_constraint): Handle all DEREF
3140         with complex RHS.
3141         (make_transitive_closure_constraints): Adjust comment.
3142         (make_any_offset_constraints): New function.
3143         (handle_rhs_call): Make sure to first expand a pointer to all
3144         subfields before transitively closing it.
3145         (handle_const_call): Likewise.  Properly expand returned
3146         pointers as well.
3147         (handle_pure_call): Likewise.
3149 2016-09-21  Richard Biener  <rguenther@suse.de>
3150             Jakub Jelinek  <jakub@redhat.com>
3152         PR tree-optimization/77621
3153         * tree-vect-data-refs.c (vect_analyze_data_ref_accesses): Split
3154         group at non-vectorizable stmts.
3156 2016-09-21  Kugan Vivekanandarajah  <kuganv@linaro.org>
3158         PR tree-optimization/72835
3159         * tree-ssa-reassoc.c (make_new_ssa_for_def): New.
3160         (make_new_ssa_for_all_defs): Likewise.
3161         (zero_one_operation): Replace all SSA_NAMEs defined in the chain.
3163 2016-09-20  Martin Sebor  <msebor@redhat.com>
3165         PR middle-end/49905
3166         * Makefile.in (OBJS): Add gimple-ssa-sprintf.o.
3167         * config/linux.h (TARGET_PRINTF_POINTER_FORMAT): Redefine.
3168         * config/linux.c (gnu_libc_printf_pointer_format): New function.
3169         * config/sol2.h (TARGET_PRINTF_POINTER_FORMAT): Same.
3170         * config/sol2.c (solaris_printf_pointer_format): New function.
3171         * doc/invoke.texi (-Wformat-length, -fprintf-return-value): New
3172         options.
3173         * doc/tm.texi.in (TARGET_PRINTF_POINTER_FORMAT): Document.
3174         * doc/tm.texi: Regenerate.
3175         * gimple-fold.h (get_range_strlen): New function.
3176         (get_maxval_strlen): Declare existing function.
3177         * gimple-fold.c (get_range_strlen): Add arguments and compute both
3178         maximum and minimum.
3179          (get_range_strlen): Define overload.
3180         (get_maxval_strlen): Adjust.
3181         * gimple-ssa-sprintf.c: New file and pass.
3182         * passes.def (pass_sprintf_length): Add new pass.
3183         * targhooks.h (default_printf_pointer_format): Declare new function.
3184         (gnu_libc_printf_pointer_format): Same.
3185         (solaris_libc_printf_pointer_format): Same.
3186         * targhooks.c (default_printf_pointer_format): Define new function.
3187         * tree-pass.h (make_pass_sprintf_length): Declare new function.
3188         * print-tree.c: Increase buffer size.
3190 2016-09-21  Kugan Vivekanandarajah  <kuganv@linaro.org>
3192         * tree-vrp.c (get_value_range): Teach PARM_DECL to use ipa-vrp results.
3194 2016-09-21  Kugan Vivekanandarajah  <kuganv@linaro.org>
3196         * common.opt: New option -fipa-vrp.
3197         * ipa-cp.c (ipa_get_vr_lat): New.
3198         (ipcp_vr_lattice::print): Likewise.
3199         (print_all_lattices): Call ipcp_vr_lattice::print.
3200         (ipcp_vr_lattice::meet_with): New.
3201         (ipcp_vr_lattice::meet_with_1): Likewise.
3202         (ipcp_vr_lattice::top_p): Likewise.
3203         (ipcp_vr_lattice::bottom_p): Likewsie.
3204         (ipcp_vr_lattice::set_to_bottom): Likewise.
3205         (set_all_contains_variable): Call VR set_to_bottom.
3206         (initialize_node_lattices): Init VR lattices.
3207         (propagate_vr_accross_jump_function): New.
3208         (propagate_constants_accross_call): Call
3209         propagate_vr_accross_jump_function.
3210         (ipcp_store_vr_results): New.
3211         (ipcp_driver): Handle VR.
3212         * ipa-prop.c (ipa_print_node_jump_functions_for_edge): Handle VR.
3213         (ipa_set_jf_unknown): Likewise.
3214         (ipa_compute_jump_functions_for_edge): Likewise.
3215         (ipa_node_params_t::duplicate): Likewise.
3216         (ipa_write_jump_function): Likewise.
3217         (ipa_read_jump_function): Likewise.
3218         (write_ipcp_transformation_info): Likewise.
3219         (read_ipcp_transformation_info): Likewise.
3220         (ipcp_update_vr): New.
3221         (ipcp_transform_function): Handle VR.
3222         * ipa-prop.h (struct ipa_vr): New.
3223         * cgraph.c: Include tree-vrp.h.
3224         * cgraphunit.c: Likewise.
3225         * ipa-utils.c: Likewise.
3226         * ipa.c: Likewise.
3227         * opts.c: Likewise.
3228         * toplev.c: Likewise.
3229         * ipa-devirt.c: Likewise.
3230         * ipa-inline-transform.c: Likewise.
3231         * ipa-inline.c: Likewise.
3232         * ipa-profile.c: Likewise.
3234 2016-09-21  Kugan Vivekanandarajah  <kuganv@linaro.org>
3236         * doc/invoke.texi: Document -fdump-tree-evrp.
3237         * passes.def: Define new pass_early_vrp.
3238         * timevar.def: Define new TV_TREE_EARLY_VRP.
3239         * tree-pass.h (make_pass_early_vrp): New.
3240         * tree-ssa-propagate.c: Make replace_uses_in non static.
3241         * tree-ssa-propagate.h: Export replace_uses_in.
3242         * tree-vrp.c (extract_range_for_var_from_comparison_expr): New.
3243         (extract_range_from_assert): Factor out
3244         extract_range_for_var_from_comparison_expr.
3245         (vrp_initialize_lattice): New.
3246         (vrp_initialize): Factor out vrp_initialize_lattice.
3247         (vrp_valueize): Fix it to reject complex value ranges.
3248         (vrp_free_lattice): New.
3249         (evrp_dom_walker::before_dom_children): Likewise.
3250         (evrp_dom_walker::after_dom_children): Likewise.
3251         (evrp_dom_walker::push_value_range): Likewise.
3252         (evrp_dom_walker::pop_value_range): Likewise.
3253         (execute_early_vrp): Likewise.
3254         (execute_vrp): Call vrp_initialize_lattice and vrp_free_lattice.
3255         (make_pass_early_vrp): New.
3257 2016-09-20  Uros Bizjak  <ubizjak@gmail.com>
3259         * config/i386/i386.md (mult->ashift peephole2s): Use pow2p_hwi
3260         instead of exact_log2.
3262 2016-09-20  Uros Bizjak  <ubizjak@gmail.com>
3264         PR target/77621
3265         * config/i386/i386.c (ix86_preferred_simd_mode) <case DFmode>:
3266         Don't return word_mode for !TARGET_VECTORIZE_DOUBLE.
3267         (ix86_add_stmt_cost): Penalize DFmode vector operations
3268         for !TARGET_VECTORIZE_DOUBLE.
3270 2016-09-20  Gerald Pfeifer  <gerald@pfeifer.com>
3272         * doc/invoke.texi (Warning Options): Simplify language.
3273         (Optimize Options): Complete sentence.
3275 2016-09-20  David Edelsohn  <dje.gcc@gmail.com>
3277         * dbxout.c (xcoff_debug_hooks):  Add filename parameter to
3278         early_finish hook.
3280 2016-09-20  Michael Meissner  <meissner@linux.vnet.ibm.com>
3282         PR target/71395
3283         * config/rs6000/rs6000.c (rs6000_expand_vector_init): For V4SF
3284         inits on power8 and above, use the VMRGEW instruction instead of a
3285         permute.
3287         * config/rs6000/altivec.md (UNSPEC_VMRGEW_DIRECT): New unspec.
3288         (p8_vmrgew_v4sf_direct): New VMRGEW insn for V4SF floating
3289         initialization.
3291 2016-09-20  Tamar Christina  <tamar.christina@arm.com>
3293         * config/aarch64/arm_neon.h
3294         (vst2_s64, vst2_u64, vst2_f64, vst2_s8): Add missing attributes.
3295         (vst3_s64, vst3_u64, vst3_f64, vst3_s8): Likewise.
3296         (vst4_s64, vst4_u64, vst4_f64, vst4_s8): Likewise.
3298 2016-09-20  Bernd Edlinger  <bernd.edlinger@hotmail.de>
3300         * config/var/vax.h (ELIMINABLE_REGS): Define.
3301         (INITIAL_ELIMINATION_OFFSET): Define.
3303 2016-09-20  Jakub Jelinek  <jakub@redhat.com>
3305         PR middle-end/77624
3306         * builtins.c (fold_builtin_atomic_always_lock_free): Only look through
3307         cast to void * if the cast is from some other pointer type.
3309 2016-09-20  Richard Biener  <rguenther@suse.de>
3311         PR tree-optimization/77646
3312         * tree-ssa-sccvn.c (visit_reference_op_call): Always value-number
3313         a VDEF.
3315 2016-09-20  Tamar Christina  <tamar.christina@arm.com>
3317         * config/aarch64/arm_neon.h: Add gnu_inline and artificial
3318         attributes to all inlined functions and make them extern.
3320 2016-09-20  Richard Biener  <rguenther@suse.de>
3322         * debug.h (gcc_debug_hooks): Add filename parameter to early_finish
3323         hook.
3324         * debug.c (do_nothing_debug_hooks): Adjust.
3325         * dbxout.c (dbx_debug_hooks): Likewise.
3326         * sdbout.c (sdb_debug_hooks): Likewise.
3327         * dwarf2out.c (dwarf2_lineno_debug_hooks): Likewise.
3328         (dwarf2out_finish): Move producer, filename and
3329         path annotation ...
3330         (dwarf2out_early_finish): ... here.  Remove in_lto_p special-casing.
3331         * cgraphunit.c (symbol_table::finalize_compilation_unit): Adjust.
3333 2016-09-19  Bernd Edlinger  <bernd.edlinger@hotmail.de>
3335         PR c++/77434
3336         * doc/invoke.texi: Document -Wint-in-bool-context.
3338         PR middle-end/77421
3339         * dwarf2out.c (output_loc_operands): Fix an assertion.
3341 2016-09-19  Joseph Myers  <joseph@codesourcery.com>
3343         * ginclude/float.h [__STDC_WANT_IEC_60559_BFP_EXT__]
3344         (CR_DECIMAL_DIG): New macro.
3346 2016-09-19  Joseph Myers  <joseph@codesourcery.com>
3348         * ginclude/stddef.h (max_align_t) [__i386__]: Add __float128
3349         element.
3351 2016-09-19  Vladimir Makarov  <vmakarov@redhat.com>
3353         PR rtl-optimization/77416
3354         * lra-remat.c (operand_to_remat): Process hard coded insn
3355         registers.
3357 2016-09-19  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
3359         * simplify-rtx.c (simplify_relational_operation_1): Add transformation
3360         (GTU (PLUS a C) (C - 1)) --> (LTU a -C).
3362 2016-09-19  Segher Boessenkool  <segher@kernel.crashing.org>
3364         * target.def (lra_p): Wordsmithing.
3365         * doc/tm.texi: Regenerate.
3367 2016-09-19  Jakub Jelinek  <jakub@redhat.com>
3368             Jan Hubicka  <jh@suse.cz>
3370         PR target/77587
3371         * cgraph.c (cgraph_node::rtl_info): Pass &avail to
3372         ultimate_alias_target call, return NULL if avail < AVAIL_AVAILABLE.
3373         Call ultimate_alias_target just once, not up to 4 times.
3375 2016-09-19  Richard Biener  <rguenther@suse.de>
3377         * dwarf2out.c (early_dwarf_finished): New global.
3378         (set_early_dwarf::set_early_dwarf): Assert early_dwarf_finished
3379         is false.
3380         (dwarf2out_early_finish): Set early_dwarf_finished at the end,
3381         if called from LTO exit early.
3382         (dwarf2out_late_global_decl): When being during the early
3383         debug phase do not add locations but only const value attributes.
3384         Adjust the way we generate early DIEs for LTO.
3386 2016-09-19  Richard Biener  <rguenther@suse.de>
3388         PR middle-end/77605
3389         * tree-data-ref.c (analyze_subscript_affine_affine): Use the
3390         proper niter to bound the loops.
3392 2016-09-19  Richard Biener  <rguenther@suse.de>
3394         PR tree-optimization/77514
3395         * tree-ssa-pre.c (create_expression_by_pieces): Optimize
3396         search for folded stmt.
3398 2016-09-17  Jan Hubicka  <hubicka@ucw.cz>
3400         * passes.def (pass_early_thread_jumps): Schedule after forwprop.
3401         * tree-pass.h (make_pass_early_thread_jumps): Declare.
3402         * tree-ssa-threadbackward.c (fsm_find_thread_path,
3403         fsm_find_thread_path, profitable_jump_thread_path,
3404         fsm_find_control_statement_thread_paths,
3405         find_jump_threads_backwards): Add speed_p parameter.
3406         (pass_data_early_thread_jumps): New pass.
3407         (make_pass_early_thread_jumps): New function.
3409 2016-09-17  Andreas Schwab  <schwab@suse.de>
3411         * config/ia64/ia64.h (ASM_OUTPUT_DWARF_OFFSET): Add cast.
3412         * config/i386/cygming.h (ASM_OUTPUT_DWARF_OFFSET): Likewise.
3414 2016-09-16  Eric Botcazou  <ebotcazou@adacore.com>
3416         * recog.c (rest_of_handle_split_after_reload): Delete.
3417         (pass_split_after_reload::gate): New method.
3418         (pass_split_after_reload::execute): Call split_all_insns directly.
3420 2016-09-16  Jonathan Wakely  <jwakely@redhat.com>
3422         * doc/extend.texi (Integer Overflow Builtins): Fix type of out
3423         parameters for functions taking long long arguments.
3425 2016-09-16  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
3427         PR target/77613
3428         * config/rs6000/rs6000.c (rtx_is_swappable_p): Add support for
3429         splat with truncate.
3431 2016-09-16  Jason Merrill  <jason@redhat.com>
3433         * hwint.h (least_bit_hwi, pow2_or_zerop, pow2p_hwi, ctz_or_zero):
3434         New.
3435         * hwint.c (exact_log2): Use pow2p_hwi.
3436         (ctz_hwi, ffs_hwi): Use least_bit_hwi.
3437         * alias.c (memrefs_conflict_p): Use pow2_or_zerop.
3438         * builtins.c (get_object_alignment_2, get_object_alignment)
3439         (get_pointer_alignment, fold_builtin_atomic_always_lock_free): Use
3440         least_bit_hwi.
3441         * calls.c (compute_argument_addresses, store_one_arg): Use
3442         least_bit_hwi.
3443         * cfgexpand.c (expand_one_stack_var_at): Use least_bit_hwi.
3444         * combine.c (force_to_mode): Use least_bit_hwi.
3445         (contains_muldiv, find_split_point, combine_simplify_rtx)
3446         (simplify_if_then_else, simplify_set, force_to_mode)
3447         (if_then_else_cond, simplify_and_const_int_1)
3448         (simplify_compare_const): Use pow2p_hwi.
3449         * cse.c (fold_rtx): Use pow2p_hwi.
3450         * emit-rtl.c (set_mem_attributes_minus_bitpos, adjust_address_1):
3451         Use least_bit_hwi.
3452         * expmed.c (synth_mult, expand_divmod): Use ctz_or_zero, ctz_hwi.
3453         (init_expmed_one_conv): Use pow2p_hwi.
3454         * expr.c (is_aligning_offset): Use pow2p_hwi.
3455         * fold-const.c (round_up_loc, round_down_loc): Use pow2_or_zerop.
3456         (fold_binary_loc): Use pow2p_hwi.
3457         * function.c (assign_parm_find_stack_rtl): Use least_bit_hwi.
3458         * gimple-fold.c (gimple_fold_builtin_memory_op): Use pow2p_hwi.
3459         * gimple-ssa-strength-reduction.c (replace_ref): Use least_bit_hwi.
3460         * hsa-gen.c (gen_hsa_addr_with_align, hsa_bitmemref_alignment):
3461         Use least_bit_hwi.
3462         * ifcvt.c (noce_try_store_flag_constants): Use pow2p_hwi.
3463         * ipa-cp.c (ipcp_alignment_lattice::meet_with_1): Use least_bit_hwi.
3464         * ipa-prop.c (ipa_modify_call_arguments): Use least_bit_hwi.
3465         * omp-low.c (oacc_loop_fixed_partitions)
3466         (oacc_loop_auto_partitions): Use least_bit_hwi.
3467         * rtlanal.c (nonzero_bits1): Use ctz_or_zero.
3468         * stor-layout.c (place_field): Use least_bit_hwi.
3469         * tree-pretty-print.c (dump_generic_node): Use pow2p_hwi.
3470         * tree-sra.c (build_ref_for_offset): Use least_bit_hwi.
3471         * tree-ssa-ccp.c (ccp_finalize): Use least_bit_hwi.
3472         * tree-ssa-math-opts.c (bswap_replace): Use least_bit_hwi.
3473         * tree-ssa-strlen.c (handle_builtin_memcmp): Use pow2p_hwi.
3474         * tree-vect-data-refs.c (vect_analyze_group_access_1)
3475         (vect_grouped_store_supported, vect_grouped_load_supported)
3476         (vect_permute_load_chain, vect_shift_permute_load_chain)
3477         (vect_transform_grouped_load): Use pow2p_hwi.
3478         * tree-vect-generic.c (expand_vector_divmod): Use ctz_or_zero.
3479         * tree-vect-patterns.c (vect_recog_divmod_pattern): Use ctz_or_zero.
3480         * tree-vect-stmts.c (vectorizable_mask_load_store): Use
3481         least_bit_hwi.
3482         * tsan.c (instrument_expr): Use least_bit_hwi.
3483         * var-tracking.c (negative_power_of_two_p): Use pow2_or_zerop.
3485 2016-09-16  Andreas Schwab  <schwab@suse.de>
3487         * config/ia64/ia64.h (ASM_OUTPUT_DWARF_OFFSET): Use parameter
3488         OFFSET, not offset.
3489         * config/i386/cygming.h (ASM_OUTPUT_DWARF_OFFSET): Likewise.
3491 2016-09-16  Jakub Jelinek  <jakub@redhat.com>
3493         PR target/77526
3494         * combine.c (rest_of_handle_combine): If any edges have been purged,
3495         free dominators if available.
3497 2016-09-16  Jakub Jelinek  <jakub@redhat.com>
3498             Eric Botcazou  <ebotcazou@adacore.com>
3500         PR middle-end/77594
3501         * internal-fn.c (expand_arith_overflow) <case MINUS_EXPR>: Don't fall
3502         through into expand_addsub_overflow after expand_neg_overflow.
3504 2016-09-15  David Malcolm  <dmalcolm@redhat.com>
3506         * diagnostic-show-locus.c
3507         (selftest::test_fixit_insert_containing_newline): New function.
3508         (selftest::test_fixit_replace_containing_newline): New function.
3509         (selftest::diagnostic_show_locus_c_tests): Call the above.
3511 2016-09-15  Bin Cheng  <bin.cheng@arm.com>
3513         PR tree-optimization/77503
3514         * tree-vect-loop.c (vectorizable_reduction): Record reduction
3515         code for CONST_COND_REDUCTION at analysis stage and use it at
3516         transform stage.
3517         * tree-vectorizer.h (struct _stmt_vec_info): New field.
3518         (STMT_VINFO_VEC_CONST_COND_REDUC_CODE): New macro.
3519         * tree-vect-stmts.c (new_stmt_vec_info): Initialize above new
3520         field.
3522 2016-09-15  Richard Biener  <rguenther@suse.de>
3524         PR middle-end/77544
3525         * fold-const.c (split_tree): Do not split constant ~X.
3527 2016-09-15  Jakub Jelinek  <jakub@redhat.com>
3529         PR rtl-optimization/77425
3530         * sched-int.h (sd_iterator_cond): Don't update it_ptr->linkp if list
3531         is NULL.
3533         PR middle-end/77475
3534         * config/i386/i386.c (ix86_parse_stringop_strategy_string): Simplify,
3535         use %qs instead of %s where desirable, use argument instead of arg in
3536         the diagnostic wording, add list of supported strategies and
3537         spellcheck hint.
3538         (ix86_option_override_internal): Emit target("m...") instead of
3539         option("m...") in the diagnostic.  Use %qs instead of %s in invalid
3540         -march/-mtune option diagnostic.  Add list of supported arches/tunings
3541         and spellcheck hint.  Remove prefix, suffix and sw variables, use
3542         main_args_p ? "..." : "..." in diagnostics to make translation
3543         possible.
3545 2016-09-15  Richard Biener  <rguenther@suse.de>
3547         * dwarf2asm.h (dw2_asm_output_offset): Add overload with
3548         extra offset argument.
3549         * dwarf2asm.c (dw2_asm_output_offset): Implement that.
3550         * doc/tm.texi.in (ASM_OUTPUT_DWARF_OFFSET): Adjust documentation
3551         to reflect new offset parameter.
3552         * doc/tm.texi: Regenerate.
3553         * config/darwin.h (ASM_OUTPUT_DWARF_OFFSET): Adjust.
3554         * config/darwin-protos.h (darwin_asm_output_dwarf_delta): Add
3555         offset argument.
3556         (darwin_asm_output_dwarf_offset): Likewise.
3557         * config/darwin.c (darwin_asm_output_dwarf_delta): Add offset
3558         argument.
3559         (darwin_asm_output_dwarf_offset): Pass offset argument through.
3560         * config/ia64/ia64.h (ASM_OUTPUT_DWARF_OFFSET): Adjust.
3561         * config/i386/cygmin.h (ASM_OUTPUT_DWARF_OFFSET): Likewise.
3563 2016-09-15  Chung-Lin Tang  <cltang@codesourcery.com>
3565         PR fortran/72743
3566         * ipa-icf.c (set_alias_uids): New function.
3567         (sem_variable::merge): Use set_alias_uids to set DECL_PT_UID of
3568         all the merged variable's referring aliases.
3570 2016-09-15  Richard Biener  <rguenther@suse.de>
3572         PR tree-optimization/77514
3573         * tree-ssa-pre.c (create_expression_by_pieces): Handle garbage
3574         only forced_stmts sequence.
3576 2016-09-15  Kugan Vivekanandarajah  <kuganv@linaro.org>
3578         * tree-ssanames.h (FOR_EACH_SSA_NAME): New.
3579         * cfgexpand.c (update_alias_info_with_stack_vars): Use
3580         FOR_EACH_SSA_NAME to iterate over SSA variables.
3581         (pass_expand::execute): Likewise.
3582         * omp-simd-clone.c (ipa_simd_modify_function_body): Likewise.
3583         * tree-cfg.c (dump_function_to_file): Likewise.
3584         * tree-into-ssa.c (pass_build_ssa::execute): Likewise.
3585         (update_ssa): Likewise.
3586         * tree-ssa-alias.c (dump_alias_info): Likewise.
3587         * tree-ssa-ccp.c (ccp_finalize): Likewise.
3588         * tree-ssa-coalesce.c (build_ssa_conflict_graph): Likewise.
3589         (create_outofssa_var_map): Likewise.
3590         (coalesce_ssa_name): Likewise.
3591         * tree-ssa-operands.c (dump_immediate_uses): Likewise.
3592         * tree-ssa-pre.c (compute_avail): Likewise.
3593         * tree-ssa-sccvn.c (init_scc_vn): Likewise.
3594         (scc_vn_restore_ssa_info): Likewise.
3595         (free_scc_vn): Likwise.
3596         (run_scc_vn): Likewise.
3597         * tree-ssa-structalias.c (compute_points_to_sets): Likewise.
3598         * tree-ssa-ter.c (new_temp_expr_table): Likewise.
3599         * tree-ssa-copy.c (fini_copy_prop): Likewise.
3600         * tree-ssa.c (verify_ssa): Likewise.
3602 2016-09-14  Matthew Fortune  <matthew.fortune@imgtec.com>
3604         * config.gcc (mips*-mti-elf*, mips*-mti-linux*): Set mips32r2
3605         and mips64r2 as default 32-bit and 64-bit architectures.
3606         (mips*-img-elf*, mips*-img-linux*): Set mips32r6 and mips64r6
3607         as default 32-bit and 64-bit architectures.
3609 2016-09-14  Pat Haugen  <pthaugen@us.ibm.com>
3611         * loop-unroll.c (unroll_loop_runtime_iterations): Set probability
3612         of succ edge.
3614 2016-09-14  Segher Boessenkool  <segher@kernel.crashing.org>
3616         * target.def (lra_p): Change commentary (for the manual) for the
3617         new default.
3618         * doc/tm.texi: Regenerate.
3620 2016-09-14  Segher Boessenkool  <segher@kernel.crashing.org>
3622         * config/aarch64/aarch64.c (TARGET_LRA_P): Delete macro.
3623         * config/arm/arm.c (TARGET_LRA_P): Delete macro.
3624         * config/i386/i386.c (TARGET_LRA_P): Delete macro.
3625         * config/nds32/nds32.c (TARGET_LRA_P): Delete macro.
3627 2016-09-14  Segher Boessenkool  <segher@kernel.crashing.org>
3629         * targhooks.c (default_lra_p): Return true instead of false.
3631 2016-09-14  Segher Boessenkool  <segher@kernel.crashing.org>
3633         * config/alpha/alpha.c (TARGET_LRA_P): New macro, defined to
3634         hook_bool_void_false.
3635         * config/avr/avr.c: Ditto.
3636         * config/bfin/bfin.c: Ditto.
3637         * config/c6x/c6x.c: Ditto.
3638         * config/cr16/cr16.c: Ditto.
3639         * config/cris/cris.c: Ditto.
3640         * config/epiphany/epiphany.c: Ditto.
3641         * config/fr30/fr30.c: Ditto.
3642         * config/frv/frv.c: Ditto.
3643         * config/h8300/h8300.c: Ditto.
3644         * config/ia64/ia64.c: Ditto.
3645         * config/iq2000/iq2000.c: Ditto.
3646         * config/lm32/lm32.c: Ditto.
3647         * config/m32c/m32c.c: Ditto.
3648         * config/m32r/m32r.c: Ditto.
3649         * config/m68k/m68k.c: Ditto.
3650         * config/mcore/mcore.c: Ditto.
3651         * config/microblaze/microblaze.c: Ditto.
3652         * config/mmix/mmix.c: Ditto.
3653         * config/mn10300/mn10300.c: Ditto.
3654         * config/moxie/moxie.c: Ditto.
3655         * config/msp430/msp430.c: Ditto.
3656         * config/nios2/nios2.c: Ditto.
3657         * config/nvptx/nvptx.c: Ditto.
3658         * config/pa/pa.c: Ditto.
3659         * config/pdp11/pdp11.c: Ditto.
3660         * config/rl78/rl78.c: Ditto.
3661         * config/sparc/sparc.c: Ditto.
3662         * config/spu/spu.c: Ditto.
3663         * config/stormy16/stormy16.c: Ditto.
3664         * config/tilegx/tilegx.c: Ditto.
3665         * config/tilepro/tilepro.c: Ditto.
3666         * config/v850/v850.c: Ditto.
3667         * config/vax/vax.c: Ditto.
3668         * config/visium/visium.c: Ditto.
3669         * config/xtensa/xtensa.c: Ditto.
3671 2016-09-14  Jakub Jelinek  <jakub@redhat.com>
3673         PR sanitizer/68260
3674         * tsan.c: Include target.h.
3675         (enum tsan_atomic_action): Add bool_clear and bool_test_and_set.
3676         (BOOL_CLEAR, BOOL_TEST_AND_SET): Define.
3677         (tsan_atomic_table): Add BUILT_IN_ATOMIC_CLEAR and
3678         BUILT_IN_ATOMIC_TEST_AND_SET entries.
3679         (instrument_builtin_call): Handle bool_clear and bool_test_and_set.
3681 2016-09-14  Bernd Edlinger  <bernd.edlinger@hotmail.de>
3682             Martin Liska  <mliska@suse.cz>
3684         PR middle-end/77574
3685         * predict.c (force_edge_cold): Add braces to a condition.
3687 2016-09-13  Bernd Edlinger  <bernd.edlinger@hotmail.de>
3689         PR rtl-optimization/77289
3690         * lra-constraints.c (get_final_hard_regno): Removed.
3691         (get_hard_regno): Add new parameter final_p.
3692         (get_reg_class): Directly call lra_get_elimination_hard_regno.
3693         (operands_match_p): Adjust call to get_hard_regno.
3694         (uses_hard_regs_p): Likewise.
3695         (process_alt_operands): Likewise.
3697 2016-09-13  Joe Seymour  <joe.s@somniumtech.com>
3699         PR target/70713
3700         * config/msp430/msp430.c (msp430_start_function): Emit an error
3701         if a function is both weak and specifies an interrupt number.
3703 2016-09-13  Jakub Jelinek  <jakub@redhat.com>
3705         PR tree-optimization/77454
3706         * tree-ssa-dom.c (optimize_stmt): Set modified flag on stmt after
3707         changing GIMPLE_COND.  Move update_stmt_if_modified call after this.
3708         Formatting fix.
3710 2016-09-13  Tamar Christina  <tamar.christina@arm.com>
3712         * config/aarch64/aarch64-builtins.c
3713         (aarch64_init_simd_builtins): Fix builtin type signature printing.
3715 2016-09-13  Uros Bizjak  <ubizjak@gmail.com>
3717         * config/alpha/alpha.c (alpha_pass_by_reference): Pass un-named
3718         SFmode and SCmode arguments by reference.
3720 2016-09-13  David Malcolm  <dmalcolm@redhat.com>
3722         * diagnostic-show-locus.c (selftest::test_one_liner_fixit_insert):
3723         Rename to...
3724         (selftest::test_one_liner_fixit_insert_before): ...this, and update
3725         for renaming of add_fixit_insert to add_fixit_insert_before.
3726         (selftest::test_one_liner_fixit_insert_after): New function.
3727         (selftest::test_one_liner_fixit_validation_adhoc_locations):
3728         Update for renaming of add_fixit_insert to add_fixit_insert_before.
3729         (selftest::test_one_liner_many_fixits): Likewise.
3730         (selftest::test_diagnostic_show_locus_one_liner): Update for
3731         renaming, call new test function.
3732         (selftest::test_diagnostic_show_locus_fixit_lines): Update for
3733         renaming of add_fixit_insert to add_fixit_insert_before.
3734         (selftest::test_fixit_consolidation): Likewise.
3735         * diagnostic.c (selftest::test_print_parseable_fixits_insert):
3736         Likewise.
3737         * edit-context.c (selftest::test_applying_fixits_insert): Rename to...
3738         (selftest::test_applying_fixits_insert_before): ...this.
3739         (selftest::test_applying_fixits_insert): Update for renaming of
3740         add_fixit_insert to add_fixit_insert_before.
3741         (selftest::test_applying_fixits_insert_after): New function.
3742         (selftest::test_applying_fixits_insert_after_at_line_end): New
3743         function.
3744         (selftest::test_applying_fixits_insert_after_failure): New function.
3745         (selftest::test_applying_fixits_multiple): Update for renaming of
3746         add_fixit_insert to add_fixit_insert_before.
3747         (selftest::change_line): Likewise.
3748         (selftest::test_applying_fixits_unreadable_file): Likewise.
3749         (selftest::test_applying_fixits_line_out_of_range): Likewise.
3750         (selftest::test_applying_fixits_column_validation): Likewise.
3751         (selftest::test_applying_fixits_column_validation): Likewise.
3752         (selftest::edit_context_c_tests): Update for renamed test function;
3753         call new test functions.
3755 2016-09-13  Pat Haugen  <pthaugen@us.ibm.com>
3757         PR tree-optimization/77536
3758         PR rtl-optimization/68212
3759         * config/rs6000/rs6000.md (div->recip splitter): Remove
3760         optimize_insn_for_speed_p condition.
3762 2016-09-13  Maciej W. Rozycki  <macro@imgtec.com>
3764         * optabs.c (prepare_cmp_insn): Update documentation comment.
3766 2016-09-13  Jakub Jelinek  <jakub@redhat.com>
3767             Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
3769         PR middle-end/77475
3770         * opts.h (candidates_list_and_hint): Declare.
3771         * opts-common.c (candidates_list_and_hint): New function.
3772         (cmdline_handle_error): Use it.
3774 2016-09-12  David Malcolm  <dmalcolm@redhat.com>
3776         * edit-context.c (edited_line::get_len): New accessor.
3777         (edited_file::print_diff): Split out hunk-printing into...
3778         (edited_file::print_diff_hunk): New method.
3779         (edited_file::print_diff_line): New method.
3781 2016-09-12  Andrew Pinski  <apinski@cavium.com>
3783         * config/aarch64/aarch64-tuning-flags.def (SLOW_UNALIGNED_LDPW):
3784         New tuning option.
3785         * config/aarch64/aarch64.c (thunderx_tunings): Enable
3786         AARCH64_EXTRA_TUNE_SLOW_UNALIGNED_LDPW.
3787         (aarch64_operands_ok_for_ldpstp): Return false if
3788         AARCH64_EXTRA_TUNE_SLOW_UNALIGNED_LDPW and the mode
3789         was SImode and the alignment is less than 8 byte.
3790         (aarch64_operands_adjust_ok_for_ldpstp): Likewise.
3792 2016-09-12  Orlando Arias  <oarias@knights.ucf.edu>
3794         PR target/77570
3795         * config/msp430/msp430.md (delay_cycles_32x): Fix pushm/popm.
3797 2016-09-12  Marek Polacek  <polacek@redhat.com>
3799         * doc/extend.texi: Use lowercase "boolean".
3800         * doc/invoke.texi: Likewise.
3801         * doc/md.texi: Likewise.
3802         * target.def: Likewise.
3803         * doc/tm.texi: Regenerated.
3805 2016-09-12  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
3807         PR middle-end/77426
3808         * expmed.c (synth_mult): Delete duplicate mode check.
3810 2016-09-10  Tom de Vries  <tom@codesourcery.com>
3812         PR C/71602
3813         * builtins.c (std_canonical_va_list_type): Strictly return non-null for
3814         va_list type only.
3815         * config/i386/i386.c (ix86_canonical_va_list_type): Same.
3816         * gimplify.c (gimplify_va_arg_expr): Handle &va_list.
3818 2016-09-09  Peter Bergner  <bergner@vnet.ibm.com>
3820         PR rtl-optimization/77289
3821         * lra-constraints.c (get_final_hard_regno): Add support for non hard
3822         register numbers.  Remove support for subregs.
3823         (get_hard_regno): Use SUBREG_P.  Don't call get_final_hard_regno().
3824         (get_reg_class): Delete removed get_final_hard_regno() argument.
3825         (uses_hard_regs_p): Call get_final_hard_regno().
3827 2016-09-09  Martin Sebor  <msebor@redhat.com>
3829         PR c/77520
3830         PR c/77521
3831         * pretty-print.c (pp_quoted_string): New function.
3832         (pp_format): Call it for %c and %s directives.
3834 2016-09-10  Bernd Edlinger  <bernd.edlinger@hotmail.de>
3836         * doc/tm.texi.in (INITIAL_FRAME_POINTER_OFFSET): Remove.
3837         (ELIMINABLE_REGS, TARGET_CAN_ELIMINATE,
3838         INITIAL_ELIMINATION_OFFSET) : Update documentation.
3839         * target.def (frame_pointer_required, can_eliminate): Likewise.
3840         * doc/tm.texi: Regenerated.
3841         * builtins.c (expand_builtin_setjmp_receiver): Remove #ifdef
3842         ELIMINABLE_REGS.
3843         * df-scan.c (df_hard_reg_init): Likewise.
3844         * ira.c (ira_setup_eliminable_regset): Likewise.
3845         * lra-eliminations.c (reg_eliminate_1, (update_reg_eliminate,
3846         init_elim_table): Likewise.
3847         * reload1.c (reg_eliminate_1, verify_initial_elim_offsets,
3848         set_initial_elim_offsets, update_eliminables,
3849         init_elim_table): Likewise.
3850         * rtlanal.c (get_initial_register_offset): Likewise.
3851         * config/ft32/ft32.h (INITIAL_FRAME_POINTER_OFFSET): Remove.
3852         * config/m32r/m32r.h (INITIAL_FRAME_POINTER_OFFSET): Likewise.
3853         * config/moxie/moxie.h (INITIAL_FRAME_POINTER_OFFSET): Likewise.
3854         * config/vax/vax.h (INITIAL_FRAME_POINTER_OFFSET): Likewise.
3855         * config/fr30/fr30.h: Fix comment.
3856         * config/frv/frv.c: Likewise.
3857         * config/frv/frv.h: Likewise.
3858         * config/ft32/ft32.h: Likewise.
3859         * config/visium/visium.h: Likewise.
3860         * config/pa/pa64-linux.h: Likewise.
3861         * config/v850/v850.h: Likewise.
3862         * config/cris/cris.c: Likewise.
3863         * config/ia64/ia64.h: Likewise.
3864         * config/moxie/moxie.h: Likewise.
3865         * config/m32r/m32r.h: Likewise.
3867 2016-09-10  Alexander Ivchenko  <alexander.ivchenko@intel.com>
3869         PR target/77267
3870         * config.in: Regenerate.
3871         * config/i386/linux-common.h (MPX_LD_AS_NEEDED_GUARD_PUSH):
3872         New macro.
3873         (MPX_LD_AS_NEEDED_GUARD_PUSH): Ditto.
3874         (LIBMPXWRAPPERS_SPEC): Remove "--no-whole-archive" from
3875         static-libmpxwrappers case.
3876         (LIBMPX_SPEC): Add guards with MPX_LD_AS_NEEDED_GUARD_PUSH and
3877         MPX_LD_AS_NEEDED_GUARD_POP.
3878         * configure: Regenerate.
3879         * configure.ac (HAVE_LD_PUSHPOPSTATE_SUPPORT): New variable.
3880         defined if linker support "--push-state"/"--pop-state".
3882 2016-09-09  Bernd Edlinger  <bernd.edlinger@hotmail.de>
3884         * doc/cpp.texi (__*_WIDTH__): Small wording fixes.
3886 2016-09-09  Joseph Myers  <joseph@codesourcery.com>
3888         * doc/cpp.texi (__SCHAR_WIDTH__, __SHRT_WIDTH__, __INT_WIDTH__)
3889         (__LONG_WIDTH__, __LONG_LONG_WIDTH__, __PTRDIFF_WIDTH__)
3890         (__SIG_ATOMIC_WIDTH__, __SIZE_WIDTH__, __WCHAR_WIDTH__)
3891         (__WINT_WIDTH__, __INT_LEAST8_WIDTH__, __INT_LEAST16_WIDTH__)
3892         (__INT_LEAST32_WIDTH__, __INT_LEAST64_WIDTH__)
3893         (__INT_FAST8_WIDTH__, __INT_FAST16_WIDTH__, __INT_FAST32_WIDTH__)
3894         (__INT_FAST64_WIDTH__, __INTPTR_WIDTH__, __INTMAX_WIDTH__):
3895         Document.
3896         * ginclude/stdint-gcc.h [__STDC_WANT_IEC_60559_BFP_EXT__]: Define
3897         width macros from TS 18661-1.
3898         * glimits.h [__STDC_WANT_IEC_60559_BFP_EXT__]: Likewise.
3900 2016-09-08  Jakub Jelinek  <jakub@redhat.com>
3902         PR fortran/77516
3903         * omp-low.c (lower_rec_simd_input_clauses): Use max_vf for non-positive
3904         OMP_CLAUSE_SAFELEN_EXPR.
3906 2016-09-07  David Malcolm  <dmalcolm@redhat.com>
3908         * Makefile.in (OBJS): Add substring-locations.o.
3909         * langhooks-def.h (class substring_loc): New forward decl.
3910         (lhd_get_substring_location): New decl.
3911         (LANG_HOOKS_GET_SUBSTRING_LOCATION): New macro.
3912         (LANG_HOOKS_INITIALIZER): Add LANG_HOOKS_GET_SUBSTRING_LOCATION.
3913         * langhooks.c (lhd_get_substring_location): New function.
3914         * langhooks.h (class substring_loc): New forward decl.
3915         (struct lang_hooks): Add field get_substring_location.
3916         * substring-locations.c: New file, taking definition of
3917         format_warning_va and format_warning_at_substring from
3918         c-family/c-format.c, making them non-static.
3919         * substring-locations.h (class substring_loc): Move class here
3920         from c-family/c-common.h.  Add and rewrite comments.
3921         (format_warning_va): New decl.
3922         (format_warning_at_substring): New decl.
3923         (get_source_location_for_substring): Add comment.
3925 2016-09-07  Eric Gallager  <egall@gwmail.gwu.edu>
3927         * config/i386/i386.c: Add 'U' suffix to processor feature bits
3928         to avoid -Wnarrowing warning.
3929         * config/i386/x86-tune.def: Likewise for DEF_TUNE selector bitmasks.
3930         * opts.c: Likewise for SANITIZER_OPT bitmasks.
3932 2016-09-07  Wilco Dijkstra  <wdijkstr@arm.com>
3934         * config/aarch64/aarch64.c (aarch64_legitimize_address):
3935         Avoid use of base_offset if offset already in range.
3937 2016-09-07  Kaz Kojima  <kkojima@gcc.gnu.org>
3939         * config/sh/sh-protos.h (struct sh_atomic_model,
3940         selected_atomic_model, TARGET_ATOMIC_ANY, TARGET_ATOMIC_STRICT,
3941         TARGET_ATOMIC_SOFT_GUSA, TARGET_ATOMIC_HARD_LLCS,
3942         TARGET_ATOMIC_SOFT_TCB, TARGET_ATOMIC_SOFT_IMASK): Move to...
3943         * config/sh/sh.h (struct sh_atomic_model,
3944         selected_atomic_model, TARGET_ATOMIC_ANY, TARGET_ATOMIC_STRICT,
3945         TARGET_ATOMIC_SOFT_GUSA, TARGET_ATOMIC_HARD_LLCS,
3946         TARGET_ATOMIC_SOFT_TCB, TARGET_ATOMIC_SOFT_IMASK): ...here.
3947         Guard with __cplusplus.
3949 2016-09-06  Jakub Jelinek  <jakub@redhat.com>
3951         PR target/69255
3952         * config/i386/i386.c (ix86_expand_builtin): For builtin with
3953         unsupported or unknown ISA, use expand_call.
3955 2016-09-06  Martin Liska  <mliska@suse.cz>
3957         PR gcov-profile/77378
3958         PR gcov-profile/77466
3959         * tree-profile.c (tree_profiling): Detect whether target can use
3960         -fprofile-update=atomic.
3962 2016-09-06  Richard Biener  <rguenther@suse.de>
3964         PR tree-optimization/77479
3965         * tree-vrp.c (update_value_range): Extend overflow handling to
3966         VARYING.
3968 2016-09-05  Jakub Jelinek  <jakub@redhat.com>
3970         PR target/77476
3971         * config/i386/i386.md (isa): Add x64_avx512bw.
3972         (*zero_extendsidi2): For alternative 11 use x64_avx512bw isa.
3973         (kmov_isa): New mode attr.
3974         (zero_extend<mode>di2): Use <kmov_isa> isa for the last alternative.
3975         (*zero_extend<mode>si2): Likewise.
3976         (*zero_extendqihi2): Use avx512dq isa for the last alternative.
3978 2016-09-05  Gerald Pfeifer  <gerald@pfeifer.com>
3980         * doc/invoke.texi (SPU Options): nops -> NOPs.
3981         (x86 Options): Ditto.
3983 2016-09-05  Jakub Jelinek  <jakub@redhat.com>
3985         PR middle-end/77475
3986         * toplev.c (process_options): Temporarily set input_location
3987         to UNKNOWN_LOCATION around targetm.target_option.override () call.
3989 2016-09-05  Uros Bizjak  <ubizjak@gmail.com>
3991         PR rtl-optimization/77452
3992         * explow.c (plus_constant) <case MEM>: Extract scalar constant from
3993         inner-mode reference to a CONST_VECTOR constant in the constant pool.
3995 2016-09-05  Marek Polacek  <polacek@redhat.com>
3997         PR c/77423
3998         * doc/invoke.texi: Update -Wlogical-not-parentheses documentation.
4000 2016-09-05  Jakub Jelinek  <jakub@redhat.com>
4002         PR other/77421
4003         * gensupport.c (alter_output_for_subst_insn): Remove redundant
4004         *insn_out == '*' test.  Don't copy unnecessary to yet another
4005         memory buffer, and don't leak it.
4007         PR rtl-optimization/77425
4008         * ipa-devirt.c (get_odr_type): Set val->id unconditionally.
4010 2016-09-03  Kirill Yukhin  <kirill.yukhin@intel.com>
4012         * ubsan.c (ubsan_use_new_style_p): Fix check for empty string.
4014 2016-09-02  David Malcolm  <dmalcolm@redhat.com>
4016         * common.opt (fdiagnostics-generate-patch): New option.
4017         * diagnostic.c: Include "edit-context.h".
4018         (diagnostic_initialize): Initialize context->edit_context_ptr.
4019         (diagnostic_finish): Delete context->edit_context_ptr.
4020         (diagnostic_report_diagnostic): Add fix-it hints from the
4021         diagnostic to context->edit_context_ptr, if any.
4022         * diagnostic.h (class edit_context): Add forward decl.
4023         (struct diagnostic_context): Add field "edit_context_ptr".
4024         * doc/invoke.texi (Diagnostic Message Formatting Options): Add
4025         -fdiagnostics-generate-patch.
4026         (-fdiagnostics-generate-patch): New item.
4027         * toplev.c: Include "edit-context.h".
4028         (process_options): Set global_dc->edit_context_ptr to a new
4029         edit_context if the options need one.
4030         (toplev::main): Handle -fdiagnostics-generate-patch by using
4031         global_dc->edit_context_ptr.
4033 2016-09-02  Jakub Jelinek  <jakub@redhat.com>
4035         PR c/65467
4036         * gimplify.c (gimplify_adjust_omp_clauses_1): Diagnose implicit
4037         map and firstprivate clauses on target construct for _Atomic
4038         qualified decls.
4039         (gimplify_adjust_omp_clauses): Diagnose explicit firstprivate clauses
4040         on target construct for _Atomic qualified decls.
4041         * omp-low.c (use_pointer_for_field): Return true for _Atomic qualified
4042         decls.
4043         * omp-simd-clone.c (simd_clone_clauses_extract): Warn and give up for
4044         _Atomic qualified arguments not mentioned in uniform clause.
4046 2016-09-02  David Malcolm  <dmalcolm@redhat.com>
4048         * Makefile.in (OBJS-libcommon): Add edit-context.o.
4049         * diagnostic-color.c (color_dict): Add "diff-filename",
4050         "diff-hunk", "diff-delete", and "diff-insert".
4051         (parse_gcc_colors): Update default value of GCC_COLORS in comment
4052         to reflect above changes.
4053         * doc/invoke.texi (-fdiagnostics-color): Update description of
4054         default GCC_COLORS, and of the supported capabilities.
4055         * edit-context.c: New file.
4056         * edit-context.h: New file.
4057         * input.c (struct fcache): Add field "missing_trailing_newline".
4058         (diagnostics_file_cache_forcibly_evict_file): Initialize it to
4059         true.
4060         (add_file_to_cache_tab): Likewise.
4061         (fcache::fcache): Likewise.
4062         (get_next_line): Update c->missing_trailing_newline.
4063         (location_missing_trailing_newline): New function.
4064         * input.h (location_missing_trailing_newline): New decl.
4065         * selftest-run-tests.c (selftest::run_tests): Call
4066         edit_context_c_tests.
4067         * selftest.h (edit_context_c_tests): New decl.
4069 2016-09-02  Jakub Jelinek  <jakub@redhat.com>
4070             Richard Biener  <rguenth@suse.de>
4072         PR tree-optimization/77444
4073         * tree-ssa-loop-ivopts.c (cand_value_at): For pointers use sizetype
4074         as steptype, remove redundant initialization.
4076 2016-09-02  Jakub Jelinek  <jakub@redhat.com>
4078         PR sanitizer/77396
4079         * sanopt.c: Include gimple-ssa.h, tree-phinodes.h and ssa-iterators.h.
4080         (sanopt_optimize_walker): Optimize away
4081         __asan_before_dynamic_init (...) followed by
4082         __asan_after_dynamic_init () without intervening memory loads/stores.
4083         * ipa-pure-const.c (special_builtin_state): Handle
4084         BUILT_IN_ASAN_BEFORE_DYNAMIC_INIT and
4085         BUILT_IN_ASAN_AFTER_DYNAMIC_INIT.
4087 2016-09-02  Prathamesh Kulkarni  <prathamesh.kulkarni@linaro.org>
4089         * cfg.c (free_original_copy_tables): Replace second assignment of
4090         bb_copy = NULL by bb_original = NULL.
4092 2016-09-02  Jakub Jelinek  <jakub@redhat.com>
4094         PR other/77421
4095         * config/i386/i386.c (ix86_expanded_args_builtin): Remove redundant
4096         assignment added in r216794.
4098 2016-09-02  David Malcolm  <dmalcolm@redhat.com>
4100         * Makefile.in (OBJS): Add typed-splay-tree.o.
4101         * selftest-run-tests.c (selftest::run_tests): Call
4102         typed_splay_tree_c_tests.
4103         * selftest.h (typed_splay_tree_c_tests): New decl.
4104         * typed-splay-tree.c: New file.
4105         * typed-splay-tree.h (typed_splay_tree::foreach_fn): New typedef.
4106         (typed_splay_tree::max): New method.
4107         (typed_splay_tree::min): New method.
4108         (typed_splay_tree::foreach): New method.
4109         (typed_splay_tree::closure): New struct.
4110         (typed_splay_tree::inner_foreach_fn): New function.
4112 2016-09-02  Prathamesh Kulkarni  <prathamesh.kulkarni@linaro.org>
4114         * ipa-cp.c (ipcp_store_bits_results): Change option name from
4115         -fipa-cp-bit to -fipa-bit-cp.
4117 2016-09-01  Martin Sebor  <msebor@redhat.com>
4119         PR tree-optimization/71831
4120         * tree-object-size.h: Return bool instead of the size and add
4121         argument for the size.
4122         * tree-object-size.c (compute_object_offset): Update signature.
4123         (addr_object_size): Same.
4124         (compute_builtin_object_size): Return bool instead of the size
4125         and add argument for the size.  Handle POINTER_PLUS_EXPR when
4126         optimization is disabled.
4127         (expr_object_size): Adjust.
4128         (plus_stmt_object_size): Adjust.
4129         (pass_object_sizes::execute): Adjust.
4130         * builtins.c (fold_builtin_object_size): Adjust.
4131         * doc/extend.texi (Object Size Checking): Update.
4132         * ubsan.c (instrument_object_size): Adjust.
4134 2016-09-01  Martin Sebor  <msebor@redhat.com>
4136         * genmatch.c (parser::parse_expr): Increase buffer size to guarantee
4137         it fits the output of the formatted function regardless of its
4138         arguments.
4139         * gcc/genmodes.c (parser::parse_expr): Same.
4140         * gimplify.c (gimplify_asm_expr): Same.
4141         * passes.c (pass_manager::register_one_dump_file): Same.
4142         * print-tree.c (print_node): Same.
4144 2016-09-01  Segher Boessenkool  <segher@kernel.crashing.org>
4146         * config/rs6000/altivec.md: Use VSCR_REGNO instead of 110 throughout.
4148 2016-09-01  Segher Boessenkool  <segher@kernel.crashing.org>
4150         * config/rs6000/altivec.md: Use VRSAVE_REGNO instead of 109 throughout.
4152 2016-09-01  Segher Boessenkool  <segher@kernel.crashing.org>
4154         * config/rs6000/altivec.md: Use CR6_REGNO instead of 74 throughout.
4155         * config/rs6000/vector.md: Ditto.
4156         * config/rs6000/vsx.md: Ditto.
4158 2016-09-01  Eric Botcazou  <ebotcazou@adacore.com>
4160         * ipa-inline-analysis.c (param_change_prob): Get to the base object
4161         first in all cases.
4163 2016-09-01  Segher Boessenkool  <segher@kernel.crashing.org>
4165         * config/rs6000/rs6000.md (*restore_gpregs_<mode>_r11,
4166         *restore_gpregs_<mode>_r12, *restore_gpregs_<mode>_r1,
4167         *return_and_restore_gpregs_<mode>_r11,
4168         *return_and_restore_gpregs_<mode>_r12,
4169         *return_and_restore_gpregs_<mode>_r1,
4170         *return_and_restore_fpregs_<mode>_r11,
4171         *return_and_restore_fpregs_<mode>_r12,
4172         *return_and_restore_fpregs_<mode>_r1): Use the hard register LR_REGNO
4173         directly instead of via the "l" constraint.  Renumber operands.
4174         Fix whitespace.
4176 2016-09-01  Segher Boessenkool  <segher@kernel.crashing.org>
4178         * config/rs6000/altivec.md (*save_world, *save_vregs_<mode>_r11,
4179         save_vregs_<mode>_r12, *restore_vregs_<mode>_r11,
4180         *restore_vregs_<mode>_r12): Use LR_REGNO instead of 65.
4181         * config/rs6000/darwin.md (load_macho_picbase, load_macho_picbase_si,
4182         load_macho_picbase_di, *call_indirect_nonlocal_darwin64,
4183         *call_nonlocal_darwin64, *call_value_indirect_nonlocal_darwin64,
4184         *call_value_nonlocal_darwin64, reload_macho_picbase,
4185         reload_macho_picbase_si, reload_macho_picbase_di): Ditto.
4186         * config/rs6000/rs6000.h (RETURN_ADDR_IN_PREVIOUS_FRAME): Ditto.
4187         * config/rs6000/rs6000.md (*save_gpregs_<mode>_r11,
4188         *save_gpregs_<mode>_r12, *save_gpregs_<mode>_r1,
4189         *save_fpregs_<mode>_r11, *save_fpregs_<mode>_r12,
4190         *save_fpregs_<mode>_r1): Ditto.
4191         * config/rs6000/spe.md (*save_gpregs_spe, *restore_gpregs_spe,
4192         *return_and_restore_gpregs_spe): Ditto.
4194 2016-09-01  Segher Boessenkool  <segher@kernel.crashing.org>
4196         * config/rs6000/rs6000.md
4197         (define_insn "*return_and_restore_fpregs_aix_<mode>_r11"): Delete
4198         the use of the link register.
4199         (define_insn "*return_and_restore_fpregs_aix_<mode>_r1"): Ditto.
4201 2016-09-01  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
4202             Michael Meissner  <meissner@linux.vnet.ibm.com>
4204         PR target/72827
4205         * config/rs6000/rs6000.c (rs6000_legitimize_address): Avoid
4206         reg+reg addressing for TImode.
4207         (rs6000_legitimate_address_p): Only allow register indirect
4208         addressing for TImode, even without TARGET_QUAD_MEMORY.
4210 2016-09-01  Richard Biener  <rguenther@suse.de>
4212         PR middle-end/77436
4213         * tree-chrec.c (tree_fold_binomial): Use widest_int, properly
4214         check whether the result fits the desired result type.
4216 2016-09-01  Nathan Sidwell  <nathan@acm.org>
4218         * config/nvptx/nvptx.md (cbranch<mode>4): Op 2 can be const.
4220 2016-09-01  Wilco Dijkstra  <wdijkstr@arm.com>
4222         * config/aarch64/aarch64.c (aarch64_legitimize_address_displacement):
4223         New function.
4224         (TARGET_LEGITIMIZE_ADDRESS_DISPLACEMENT): Define.
4226 2016-09-01  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
4228         * config/aarch64/aarch64.md (*ands<mode>_compare0): New pattern.
4229         * config/aarch64/aarch64.c (aarch64_select_cc_mode): Return CC_NZmode
4230         for comparisons of integer ZERO_EXTEND against zero.
4232 2016-09-01  Eric Botcazou  <ebotcazou@adacore.com>
4234         * config/i386/i386.c (ix86_option_override_internal): Also disable the
4235         STV pass if -mstackrealign is enabled.
4237 2016-08-31  Ilya Verbin  <iverbin@gmail.com>
4239         * config/i386/driver-i386.c (host_detect_local_cpu): Fix detection of
4240         AVX512IFMA.
4242 2016-08-31  David Malcolm  <dmalcolm@redhat.com>
4244         * diagnostic-show-locus.c (class layout): Add field m_fixit_hints.
4245         (layout_range::intersects_line_p): New method.
4246         (test_range_contains_point_for_single_point): Rename to...
4247         (test_layout_range_for_single_point): ...this, and add testing
4248         for layout_range::intersects_line_p.
4249         (test_range_contains_point_for_single_line): Rename to...
4250         (test_layout_range_for_single_line): ...this,  and add testing
4251         for layout_range::intersects_line_p.
4252         (test_range_contains_point_for_multiple_lines): Rename to...
4253         (test_layout_range_for_multiple_lines): ...this,  and add testing
4254         for layout_range::intersects_line_p.
4255         (layout::layout): Populate m_fixit_hints.
4256         (layout::get_expanded_location): Handle the case of a line-span
4257         for a fix-it hint.
4258         (layout::validate_fixit_hint_p): New method.
4259         (get_line_span_for_fixit_hint): New function.
4260         (layout::calculate_line_spans): Add spans for fixit-hints.
4261         (layout::should_print_annotation_line_p): New method.
4262         (layout::print_any_fixits): Drop param "richloc", instead using
4263         validated fixits in m_fixit_hints.  Add "const" to hint pointers.
4264         (diagnostic_show_locus): Avoid printing blank annotation lines.
4265         (selftest::test_diagnostic_context::test_diagnostic_context):
4266         Initialize show_column and start_span.
4267         (selftest::test_diagnostic_context::start_span_cb): New static
4268         function.
4269         (selftest::test_diagnostic_show_locus_fixit_lines): New function.
4270         (selftest::diagnostic_show_locus_c_tests): Update for function
4271         renamings.  Call test_diagnostic_show_locus_fixit_lines.
4273 2016-08-31  Marc Glisse  <marc.glisse@inria.fr>
4275         PR tree-optimization/73714
4276         * match.pd (a * (1 << b)): Revert change from 2016-05-23.
4278 2016-08-31  David Malcolm  <dmalcolm@redhat.com>
4280         * selftest.c: Move "namespace selftest {" to top of file,
4281         removing explicit "selftest::" qualifiers throughout.
4283 2016-08-31  Marc Glisse  <marc.glisse@inria.fr>
4285         * config/i386/avx512fintrin.h (__m512_u, __m512i_u, __m512d_u):
4286         New types.
4287         (_mm512_loadu_pd, _mm512_storeu_pd, _mm512_loadu_ps,
4288         _mm512_storeu_ps, _mm512_loadu_si512, _mm512_storeu_si512):
4289         Replace builtin with vector extension.
4290         * config/i386/avxintrin.h (__m256_u, __m256i_u, __m256d_u):
4291         New types.
4292         (_mm256_loadu_pd, _mm256_storeu_pd, _mm256_loadu_ps,
4293         _mm256_storeu_ps, _mm256_loadu_si256, _mm256_storeu_si256):
4294         Replace builtin with vector extension.
4295         * config/i386/emmintrin.h (__m128i_u, __m128d_u): New types.
4296         (_mm_loadu_pd, _mm_storeu_pd, _mm_loadu_si128, _mm_storeu_si128):
4297         Replace builtin with vector extension.
4298         * config/i386/xmmintrin.h (__m128_u): New type.
4299         (_mm_loadu_ps, _mm_storeu_ps): Replace builtin with vector extension.
4300         (_mm_load_ps, _mm_store_ps): Simplify.
4302 2016-08-31  Eric Botcazou  <ebotcazou@adacore.com>
4304         * config/arm/arm.c (thumb1_size_rtx_costs) <SET>: Add missing guard.
4306 2016-08-30  David Malcolm  <dmalcolm@redhat.com>
4308         * diagnostic-show-locus.c (colorizer::begin_state): Support more
4309         than 3 ranges per diagnostic by alternating between color 1 and
4310         color 2.
4311         (layout::layout): Replace use of rich_location::MAX_RANGES
4312         with richloc->get_num_locations ().
4313         (layout::calculate_line_spans): Replace use of
4314         rich_location::MAX_RANGES with m_layout_ranges.length ().
4315         (layout::print_annotation_line): Handle arbitrary numbers of
4316         ranges in caret-printing by defaulting to '^'.
4317         (selftest::test_one_liner_many_fixits): New function.
4318         (test_diagnostic_show_locus_one_liner): Call it.
4319         * diagnostic.c (diagnostic_initialize): Update for renaming
4320         of rich_location::MAX_RANGES to
4321         rich_location::STATICALLY_ALLOCATED_RANGES.
4322         * diagnostic.h (struct diagnostic_context): Likewise.
4324 2016-08-30  David Malcolm  <dmalcolm@redhat.com>
4326         * selftest.c (selftest::named_temp_file::named_temp_file): New
4327         ctor.
4328         (selftest::temp_source_file::~temp_source_file): Move to...
4329         (selftest::named_temp_file::~named_temp_file): ...here.
4330         (selftest::test_named_temp_file): New function.
4331         (selftest::selftest_c_tests): Call test_named_temp_file.
4332         * selftest.h (class named_temp_file): New class.
4333         (class temp_source_file): Convert to a subclass of named_temp_file.
4335 2016-08-30  Segher Boessenkool  <segher@kernel.crashing.org>
4337         * config/rs6000/rs6000.c (rs6000_emit_epilogue): Do not emit
4338         USEs of LR_REGNO in returns and sibcalls.
4339         (rs6000_output_mi_thunk): Similar.
4340         (rs6000_sibcall_aix): Similar.
4341         * config/rs6000/rs6000.md (sibcall, sibcall_value, sibcall_local32,
4342         sibcall_local64, sibcall_value_local32, sibcall_value_local64,
4343         sibcall_nonlocal_sysv<mode>, sibcall_value_nonlocal_sysv<mode>):
4344         Remove the USE of LR_REGNO from the patterns as well.  Delete an
4345         obsolete comment.
4346         (return_internal_<mode>): Delete.
4348 2016-08-30  Tamar Christina  <tamar.christina@arm.com>
4350         * gcc/config/aarch64/aarch64-simd.md
4351         (aarch64_ld2<mode>_dreg_le): New.
4352         (aarch64_ld2<mode>_dreg_be): New.
4353         (aarch64_ld2<mode>_dreg): Removed.
4354         (aarch64_ld3<mode>_dreg_le): New.
4355         (aarch64_ld3<mode>_dreg_be): New.
4356         (aarch64_ld3<mode>_dreg): Removed.
4357         (aarch64_ld4<mode>_dreg_le): New.
4358         (aarch64_ld4<mode>_dreg_be): New.
4359         (aarch64_ld4<mode>_dreg): Removed.
4360         (aarch64_ld<VSTRUCT:nregs><VDC:mode>): Wrapper around _le, _be.
4362 2016-08-30  David Malcolm  <dmalcolm@redhat.com>
4364         * diagnostic-show-locus.c (test_one_liner_fixit_insert): Remove
4365         redundant location param.
4366         (test_one_liner_fixit_remove): Likewise.
4367         (test_one_liner_fixit_replace): Likewise.
4368         (test_one_liner_fixit_replace_equal_secondary_range): Likewise.
4369         * gcc-rich-location.c
4370         (gcc_rich_location::add_fixit_misspelled_id): Eliminate call to
4371         get_range_from_loc.  Drop overload taking a const char *.
4372         * gcc-rich-location.h
4373         (gcc_rich_location::add_fixit_misspelled_id): Drop overload taking
4374         a const char *.
4376 2016-08-30  Szabolcs Nagy  <szabolcs.nagy@arm.com>
4378         * config/linux.c (linux_libc_has_function): Return true on musl.
4380 2016-08-30  Szabolcs Nagy  <szabolcs.nagy@arm.com>
4382         * config.gcc (*-*-*musl*): Disable gnu-indirect-function.
4384 2016-08-30  Eric Botcazou  <ebotcazou@adacore.com>
4386         * postreload-gcse.c (bb_has_well_behaved_predecessors): Tweak criterion
4387         used for abnormal egdes.
4389 2016-08-30  Jakub Jelinek  <jakub@redhat.com>
4391         PR tree-optimization/72866
4392         * tree-vect-patterns.c (search_type_for_mask): Turn into
4393         a small wrapper, move all code to ...
4394         (search_type_for_mask_1): ... this new function.  Add caching
4395         and adjust recursive calls.
4397         PR debug/77363
4398         * dwarf2out.c (modified_type_die): Use lookup_type_die (type)
4399         instead of lookup_type_die (type_main_variant (type)) even for array
4400         types.
4402         PR middle-end/77377
4403         * simplify-rtx.c (avoid_constant_pool_reference): For out of bounds
4404         constant pool reference return x instead of c.
4406 2016-08-29  Segher Boessenkool  <segher@kernel.crashing.org>
4408         * config/rs6000/rs6000.h (CALL_REALLY_USED_REGISTERS): Do not
4409         include MQ.
4411 2016-08-29  David Malcolm  <dmalcolm@redhat.com>
4413         * input.c
4414         (selftest::test_make_location_nonpure_range_endpoints): Fix
4415         header comment.
4417 2016-08-29  David Malcolm  <dmalcolm@redhat.com>
4419         * diagnostic-show-locus.c
4420         (selftest::test_one_liner_fixit_validation_adhoc_locations): New
4421         function.
4422         (selftest::test_diagnostic_show_locus_one_liner): Call it.
4423         * input.c (get_pure_location): Move to libcpp/line-map.c.
4424         * input.h (get_pure_location): Convert decl to an inline function
4425         calling implementation in libcpp.
4427 2016-08-29  Uros Bizjak  <ubizjak@gmail.com>
4429         PR target/77403
4430         * config/i386/sse.md (vec_set_lo_<mode><mask_name>): Fix assembler
4431         template for intel asm dialect.
4432         (vec_set_hi_<mode><mask_name>): Ditto.
4434 2016-08-29  David Malcolm  <dmalcolm@redhat.com>
4436         * selftest.h (selftest::fail): Add ATTRIBUTE_NORETURN.
4437         (selftest::fail_formatted): Likewise.
4439 2016-08-29  David Malcolm  <dmalcolm@redhat.com>
4441         * input.c (make_location): Call get_start and get_finish
4442         on the endpoints to avoid storing packed ranges or ad-hoc
4443         ranges in them.
4444         (selftest::test_make_location_nonpure_range_endpoints): New function.
4445         (selftest::input_c_tests): Call it.
4446         * input.h (get_start): New inline function.
4448 2016-08-29  Tom de Vries  <tom@codesourcery.com>
4450         PR c/77398
4451         * gimplify.c (gimplify_va_arg_expr): Replace first argument type error
4452         with assert.
4454 2016-08-29  Eric Botcazou  <ebotcazou@adacore.com>
4456         * Makefile.in (gcov-iov.h): Add dummy recipe.
4458 2016-08-29  Nathan Sidwell  <nathan@acm.org>
4460         * config/nvptx/nvptx.c: #include tree-vrp.h.
4462 2016-08-28  Eric Botcazou  <ebotcazou@adacore.com>
4464         PR target/77324
4465         * config/sparc/sparc.c (sparc_legitimate_address_p): Accept special
4466         HIGH+LO construct during reload.
4468 2016-08-28  Tom de Vries  <tom@codesourcery.com>
4470         PR lto/70955
4471         * config/i386/i386.c (ix86_build_builtin_va_list_64): Tag type with
4472         'sysv_abi va_list' attribute.
4473         (ix86_build_builtin_va_list): Tag type with 'ms_abi va_list' attribute.
4474         (ix86_canonical_va_list_type): Handle 'sysv_abi/ms_abi va_list'
4475         attributes.
4477 2016-08-27  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
4479         * emit-rtl.h (struct rtl_data): Make stack_slot_list a vector.
4480         * emit-rtl.c (unshare_all_rtl_1): Adjust.
4481         (unshare_all_rtl_again): Likewise.
4482         * function.c (assign_stack_local_1): Likewise.
4483         (assign_stack_temp_for_type): Likewise.
4485 2016-08-27  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
4487         * cfgbuild.c (make_edges): Adjust.
4488         * cfgrtl.c (can_delete_label_p): Likewise.
4489         * dwarf2cfi.c (create_trace_edges): Likewise.
4490         * except.c (sjlj_emit_dispatch_table): Likewise.
4491         * function.h (struct expr_status): make x_forced_labels a vector.
4492         * jump.c (rebuild_jump_labels_1): Adjust.
4493         * reload1.c (set_initial_label_offsets): Likewise.
4494         * stmt.c (force_label_rtx): Likewise.
4495         (expand_label): Likewise.
4497 2016-08-27  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
4499         * haifa-sched.c (fix_recovery_deps): Make ready_list a vector.
4501 2016-08-27  Patrick Palka  <ppalka@gcc.gnu.org>
4503         PR tree-optimization/71077
4504         PR tree-optimization/68542
4505         * fold-const.c (fold_relational_const): Fix folding of
4506         VECTOR_CST comparisons that have a scalar boolean result type.
4507         (selftest::test_vector_folding): New static function.
4508         (selftest::fold_const_c_tests): Call it.
4510 2016-08-27  Gerald Pfeifer  <gerald@pfeifer.com>
4512         * doc/extend.texi (SPU Built-in Functions): Remove stale
4513         references to material formerly at IBM and Sony.
4515 2016-08-26  David Edelsohn  <dje.gcc@gmail.com>
4517         PR target/77349
4518         * config/rs6000/xcoff.h (DWARF_OFFSET_SIZE): Define as PTR_SIZE.
4520 2016-08-26  David Malcolm  <dmalcolm@redhat.com>
4522         * diagnostic-show-locus.c
4523         (selftest::test_fixit_consolidation): New function.
4524         (selftest::diagnostic_show_locus_c_tests): Call it.
4525         * gcc-rich-location.h (gcc_rich_location): Eliminate unused
4526         constructor based on source_range.
4528 2016-08-26  David Malcolm  <dmalcolm@redhat.com>
4530         * diagnostic-color.c (color_dict): Add "fixit-insert" and
4531         "fixit-delete".
4532         (parse_gcc_colors): Update description of default GCC_COLORS.
4533         * diagnostic-show-locus.c (colorizer::set_fixit_hint): Delete.
4534         (colorizer::set_fixit_insert): New method.
4535         (colorizer::set_fixit_delete): New method.
4536         (colorizer::get_color_by_name): New method.
4537         (colorizer::STATE_FIXIT_INSERT): New constant.
4538         (colorizer::STATE_FIXIT_DELETE): New constant.
4539         (class colorizer): Drop "_cs" suffix from fields.  Delete "_ce"
4540         fields in favor of new field "m_stop_color".  Add fields
4541         "m_fixit_insert" and "m_fixit_delete".
4542         (colorizer::colorizer): Update for above changes.  Replace
4543         colorize_start calls with calls to get_color_by_name.
4544         (colorizer::begin_state): Handle STATE_FIXIT_INSERT and
4545         STATE_FIXIT_DELETE.  Update for field renamings.
4546         (colorizer::finish_state): Simplify by using m_stop_color,
4547         rather than multiple identical "*_ce" fields.
4548         (colorizer::get_color_by_name): New method.
4549         (layout::print_any_fixits): Print insertions and replacements
4550         using the "fixit-insert" color, and deletions using the
4551         "fixit-delete" color.
4552         * doc/invoke.texi (-fdiagnostics-color): Update description of
4553         default GCC_COLORS, and of the supported capabilities.
4555 2016-08-26  Max Filippov  <jcmvbkbc@gmail.com>
4557         * config/xtensa/xtensa.c (xtensa_expand_prologue): Update
4558         current_function_static_stack_size variable with the static
4559         stack frame size of the current function when
4560         flag_stack_usage_info is enabled.
4562 2016-08-26  Nathan Sidwell  <nathan@acm.org>
4564         * ipa-inline-analysis.c (inline_write_summary): Remove unnecessary
4565         assignment inside if condition.
4567 2016-08-26  Richard Biener  <rguenther@suse.de>
4569         PR tree-optimization/69047
4570         * tree-ssa.c (maybe_rewrite_mem_ref_base): Handle general bitfield
4571         extracts similar to what FRE does.
4572         (non_rewritable_mem_ref_base): Likewise.
4574 2016-08-26  Joseph Myers  <joseph@codesourcery.com>
4576         * config/i386/i386.c (ix86_libgcc_floating_mode_supported_p)
4577         (TARGET_LIBGCC_FLOATING_MODE_SUPPORTED_P): Remove.
4578         * config/i386/i386elf.h (IX86_MAYBE_NO_LIBGCC_TFMODE): Likewise.
4579         * config/i386/lynx.h (IX86_MAYBE_NO_LIBGCC_TFMODE): Likewise.
4580         * config/i386/netbsd-elf.h (IX86_MAYBE_NO_LIBGCC_TFMODE):
4581         Likewise.
4582         * config/i386/netbsd64.h (IX86_MAYBE_NO_LIBGCC_TFMODE): Likewise.
4583         * config/i386/nto.h (IX86_MAYBE_NO_LIBGCC_TFMODE): Likewise.
4584         * config/i386/openbsd.h (IX86_MAYBE_NO_LIBGCC_TFMODE): Likewise.
4585         * config/i386/rtemself.h (IX86_NO_LIBGCC_TFMODE): Likewise.
4586         * config/i386/vxworks.h (IX86_MAYBE_NO_LIBGCC_TFMODE): Likewise.
4588 2016-08-26  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
4590         PR target/70473
4591         * config/arm/cortex-a8-neon.md (cortex_a8_vfp_muld): Reduce
4592         reservation duration to 15 cycles.
4593         (cortex_a8_vfp_macs): Likewise.
4594         (cortex_a8_vfp_macd): Likewise.
4595         (cortex_a8_vfp_divs): Likewise.
4596         (cortex_a8_vfp_divd): Likewise.
4598 2016-08-26  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
4600         * config/arm/arm.c (arm_sets_movw_movt_fusible_p): New function.
4601         (aarch_macro_fusion_pair_p): Use above to avoid early return.
4603 2016-08-26  Prathamesh Kulkarni  <prathamesh.kulkarni@linaro.org>
4604             Martin Jambhor  <mjambor@suse.cz>
4606         * common.opt: New option -fipa-bit-cp.
4607         * doc/invoke.texi: Document -fipa-bit-cp.
4608         * opts.c (default_options_table): Add entry for -fipa-bit-cp.
4609         (enable_fdo_optimizations): Check for flag_ipa_bit_cp.
4610         * tree-ssa-ccp.h: New header file.
4611         * tree-ssa-ccp.c: Include tree-ssa-ccp.h
4612         (bit_value_binop_1): Change to bit_value_binop_1 and export it.
4613         Replace all occurences of tree parameter by two new params: signop, int.
4614         (bit_value_unop_1): Change to bit_value_unop and export it.
4615         Replace all occurences of tree parameter by two new params: signop,
4616         int.
4617         (bit_value_binop): Change call from bit_value_binop_1 to
4618         bit_value_binop.
4619         (bit_value_assume_aligned): Likewise.
4620         (bit_value_unop): Change call from bit_value_unop_1 to bit_value_unop.
4621         (do_ssa_ccp): Pass nonzero_p || flag_ipa_cp_bit instead of nonzero_p
4622         to ccp_finalize.
4623         (ccp_finalize): Skip processing if val->mask == 0.
4624         * ipa-cp.c: Include tree-ssa-ccp.h
4625         (ipcp_bits_lattice): New class.
4626         (ipcp_param_lattice (bits_lattice): New member.
4627         (print_all_lattices): Call ipcp_bits_lattice::print.
4628         (set_all_contains_variable): Call ipcp_bits_lattice::set_to_bottom.
4629         (initialize_node_lattices): Likewise.
4630         (propagate_bits_accross_jump_function): New function.
4631         (propagate_constants_accross_call): Call
4632         propagate_bits_accross_jump_function.
4633         (ipcp_propagate_stage): Store parameter types when in_lto_p is true.
4634         (ipcp_store_bits_results): New function.
4635         (ipcp_driver): Call ipcp_store_bits_results.
4636         * ipa-prop.h (ipa_bits): New struct.
4637         (ipa_jump_func): Add new member bits of type ipa_bits.
4638         (ipa_param_descriptor): Change decl to decl_or_type.
4639         (ipa_get_param): Change decl to decl_or_type and assert on
4640         PARM_DECL.
4641         (ipa_get_type): New function.
4642         (ipcp_transformation_summary): New member bits.
4643         * ipa-prop.c (ipa_get_param_decl_index_1): s/decl/decl_or_type.
4644         (ipa_populate_param_decls): Likewise.
4645         (ipa_dump_param): Likewise.
4646         (ipa_print_node_jump_functions_for_edge): Pretty-print ipa_bits jump
4647         function.
4648         (ipa_set_jf_unknown): Set ipa_bits::known to false.
4649         (ipa_compute_jump_functions_for_edge): Compute jump function for bits
4650         propagation.
4651         (ipa_node_params_t::duplicate): Copy src->bits into dst->bits.
4652         (ipa_write_jump_function): Add streaming for ipa_bits.
4653         (ipa_read_jump_function): Add support for reading streamed ipa_bits.
4654         (write_ipcp_transformation_info): Add streaming for ipa_bits
4655         summary for ltrans.
4656         (read_ipcp_transfomration_info): Add support for reading streamed
4657         ipa_bits.
4658         (ipcp_update_bits): New function.
4659         (ipcp_transform_function): Call ipcp_update_bits.
4661 2016-08-25  Szabolcs Nagy  <szabolcs.nagy@arm.com>
4663         * config/mips/linux.h (MUSL_DYNAMIC_LINKER32): Update.
4664         (MUSL_DYNAMIC_LINKER64, MUSL_DYNAMIC_LINKERN32): Update.
4666 2016-08-25  David Edelsohn  <dje.gcc@gmail.com>
4668         * multiple_target.c (pass_data_dispatcher_calls): Fix typo.
4670 2016-08-25  Richard Biener  <rguenther@suse.de>
4672         * dwarf2out.c (gen_remaining_tmpl_value_param_die_attributes):
4673         Only add locations in late dwarf.
4674         (gen_scheduled_generic_parms_dies): Do not set early dwarf here.
4675         (dwarf2out_early_finish): But do it here.
4677 2016-08-24  Michael Collison  <michael.collison@linaro.org>
4678             Michael Collison  <michael.collison@arm.com>
4680         * config/arm/arm-modes.def: Add new condition code mode CC_V
4681         to represent the overflow bit.
4682         * config/arm/arm.c (maybe_get_arm_condition_code):
4683         Add support for CC_Vmode.
4684         (arm_gen_unlikely_cbranch): New function to generate common
4685         rtl conditional branches for overflow patterns.
4686         * config/arm/arm-protos.h: Add prototype for
4687         arm_gen_unlikely_cbranch.
4688         * config/arm/arm.md (addv<mode>4, add<mode>3_compareV,
4689         addsi3_compareV_upper): New patterns to support signed
4690         builtin overflow add operations.
4691         (uaddv<mode>4, add<mode>3_compareC, addsi3_compareV_upper):
4692         New patterns to support unsigned builtin add overflow operations.
4693         (subv<mode>4, sub<mode>3_compare1): New patterns to support signed
4694         builtin overflow subtract operations,
4695         (usubv<mode>4): New patterns to support unsigned builtin subtract
4696         overflow operations.
4697         (negvsi3, negvdi3, negdi2_compare, negsi2_carryin_compare): New patterns
4698         to support builtin overflow negate operations.
4700 2016-08-24  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
4702         Revert
4703         2016-08-23  Dominik Vogt  <vogt@linux.vnet.ibm.com>
4705         * explow.c (get_dynamic_stack_size): Take known alignment of stack
4706         pointer + STACK_DYNAMIC_OFFSET into account when calculating the size
4707         needed.
4709 2016-08-24  Thomas Preud'homme  <thomas.preudhomme@arm.com>
4711         * doc/fragments.texi (MULTILIB_REUSE): Mention that only options in
4712         MULTILIB_OPTIONS should be used.  Small wording fixes.
4713         * genmultilib: Memorize set of all option combinations in
4714         combination_space.  Detect if RHS of MULTILIB_REUSE uses an option not
4715         found in MULTILIB_OPTIONS by checking if option set is listed in
4716         combination_space.  Output new and existing error message to stderr.
4718 2016-08-24  Thomas Preud'homme  <thomas.preudhomme@arm.com>
4720         * config/arm/t-aprofile (MULTILIB_MATCHES): Add mapping for
4721         -mcpu=cortex-a7, -mfpu=neon-fp16, -mfpu=fpv5-d16 and -mfpu=fp-armv8.
4722         Fix typo in -mfpu=vfpv3-d16-fp16 mapping.
4723         (MULTILIB_REUSE): Remove reuse rules for option set including
4724         -mfpu=fp-armv8 and -mfpu=vfpv4
4726 2016-08-24  Sebastian Huber  <sebastian.huber@embedded-brains.de>
4728         * config/arm/t-rtems: Add vfp multilib.
4730 2016-08-23  Ian Lance Taylor  <iant@golang.org>
4732         * config/s390/s390.c (s390_asm_file_start): Call
4733         default_file_start.
4735 2016-08-23  Michael Meissner  <meissner@linux.vnet.ibm.com>
4737         * config/rs6000/rs6000.c (rs6000_expand_vector_init): Set
4738         initialization of all 0's to the 0 constant, instead of directly
4739         generating XOR.  Add support for V4SImode vector initialization on
4740         64-bit systems with direct move, and rework the ISA 3.0 V4SImode
4741         initialization.  Change variables used in V4SFmode vector
4742         intialization.  For V4SFmode vector splat on ISA 3.0, make sure
4743         any memory addresses are in index form.  Add support for using
4744         VSPLTH/VSPLTB to initialize vector short and vector char vectors
4745         with all of the same element.
4746         (regno_or_subregno): New helper function to return a register
4747         number for either REG or SUBREG.
4748         (rs6000_adjust_vec_address): Do not generate ADDI <reg>,R0,<num>.
4749         Use regno_or_subregno where possible.
4750         (rs6000_split_v4si_init_di_reg): New helper function to build up a
4751         DImode value from two SImode values in order to generate V4SImode
4752         vector initialization on 64-bit systems with direct move.
4753         (rs6000_split_v4si_init): Split up the insns for a V4SImode vector
4754         initialization.
4755         (rtx_is_swappable_p): V4SImode vector initialization insn is not
4756         swappable.
4757         * config/rs6000/rs6000-protos.h (rs6000_split_v4si_init): Add
4758         declaration.
4759         * config/rs6000/vsx.md (VSX_SPLAT_I): New mode iterators and
4760         attributes to initialize V8HImode and V16QImode vectors with the
4761         same element.
4762         (VSX_SPLAT_COUNT): Likewise.
4763         (VSX_SPLAT_SUFFIX): Likewise.
4764         (UNSPEC_VSX_VEC_INIT): New unspec.
4765         (vsx_concat_v2sf): Eliminate using 'preferred' register classes.
4766         Allow SFmode values to come from Altivec registers.
4767         (vsx_init_v4si): New insn/split for V4SImode vector initialization
4768         on 64-bit systems with direct move.
4769         (vsx_splat_<mode>, VSX_W iterator): Rework V4SImode and V4SFmode
4770         vector initializations, to allow V4SImode vector initializations
4771         on 64-bit systems with direct move.
4772         (vsx_splat_v4si): Likewise.
4773         (vsx_splat_v4si_di): Likewise.
4774         (vsx_splat_v4sf): Likewise.
4775         (vsx_splat_v4sf_internal): Likewise.
4776         (vsx_xxspltw_<mode>, VSX_W iterator): Eliminate using 'preferred'
4777         register classes.
4778         (vsx_xxspltw_<mode>_direct, VSX_W iterator): Likewise.
4779         (vsx_vsplt<VSX_SPLAT_SUFFIX>_di): New insns to support
4780         initializing V8HImode and V16QImode vectors with the same
4781         element.
4782         * config/rs6000/rs6000.h (TARGET_DIRECT_MOVE_64BIT): Disallow
4783         optimization if -maltivec=be.
4785 2016-08-23  Christophe Lyon  <christophe.lyon@linaro.org>
4787         * config/arm/arm.md (arm_movqi_insn): Swap predicable_short_it
4788         attribute for alternatives 3 and 4.
4790 2016-08-23  David Malcolm  <dmalcolm@redhat.com>
4792         * selftest.c (selftest::assert_str_contains): New function.
4793         (selftest::test_assertions): Verify ASSERT_STR_CONTAINS.
4794         * selftest.h (selftest::assert_str_contains): New decl.
4795         (ASSERT_STR_CONTAINS): New macro.
4797 2016-08-23  Richard Biener  <rguenther@suse.de>
4799         PR tree-optimization/77286
4800         * tree-vect-loop.c (vect_analyze_loop_form_1): Do not modify
4801         the CFG here.
4802         (vect_transform_loop): Split exit edges of loop and scalar
4803         loop if required and at the appropriate time.
4805 2016-08-23  Dominik Vogt  <vogt@linux.vnet.ibm.com>
4807         * explow.c (get_dynamic_stack_size): Take known alignment of stack
4808         pointer + STACK_DYNAMIC_OFFSET into account when calculating the size
4809         needed.
4810         Correct a typo in a comment.
4812 2016-08-23  Dominik Vogt  <vogt@linux.vnet.ibm.com>
4814         * config/s390/s390.md ("*andc_split"): New splitter for and with
4815         complement.
4817 2016-08-23  Richard Biener  <rguenther@suse.de>
4819         PR tree-optimization/27336
4820         * tree-vrp.c (infer_value_range): Handle stmts that can throw
4821         by looking for a non-EH edge.
4822         (process_assert_insertions_for): Likewise.
4824 2016-08-23  Richard Biener  <rguenther@suse.de>
4826         PR middle-end/77305
4827         * statistics.c (statistics_counter_event): Robustify against
4828         NULL current_pass.
4830 2016-08-23  Venkataramanan Kumar  <venkataramanan.kumar@amd.com>
4832         * config/i386/i386.c (processor_alias_table): Enable PTA_PRFCHW
4833         for targets amdfam10 and barcelona.
4835 2016-08-22  Uros Bizjak  <ubizjak@gmail.com>
4837         * config/i386/i386.md (*zero_extendsidi2): Add (*r,*k) alternative.
4838         (zero_extend<mode>di2): Ditto.
4839         (*zero_extend<mode>si2): Ditto.
4840         (*zero_extendqihi2): Ditto.
4842 2016-08-22  Joseph Myers  <joseph@codesourcery.com>
4844         PR middle-end/77269
4845         * builtins.c (fold_builtin_classify): Use builtin_decl_explicit
4846         (BUILT_IN_SIGNBIT) to expand __builtin_isinf_sign.
4848 2016-08-22  Patrick Palka  <ppalka@gcc.gnu.org>
4850         * print-tree.c (print_node) [VECTOR_CST]: Coalesce the output of
4851         identical consecutive elements.
4852         [SSA_NAME]: Print the name's def stmt on its own line.  When printing
4853         the node's def stmt, avoid printing an unwanted trailing newline by
4854         replacing the call to print_gimple_stmt() with its inlined body and
4855         adjusting it to not set pp_needs_newline and to call pp_flush()
4856         instead of pp_newline_and_flush().
4858 2016-08-22  Joseph Myers  <joseph@codesourcery.com>
4860         * tree.h (CASE_FLT_FN_FLOATN_NX, float16_type_node)
4861         (float32_type_node, float64_type_node, float32x_type_node)
4862         (float128x_type_node): New macros.
4863         * builtin-types.def (BT_FLOAT16, BT_FLOAT32, BT_FLOAT64)
4864         (BT_FLOAT128, BT_FLOAT32X, BT_FLOAT64X, BT_FLOAT128X)
4865         (BT_FN_FLOAT16, BT_FN_FLOAT32, BT_FN_FLOAT64, BT_FN_FLOAT128)
4866         (BT_FN_FLOAT32X, BT_FN_FLOAT64X, BT_FN_FLOAT128X)
4867         (BT_FN_FLOAT16_FLOAT16, BT_FN_FLOAT32_FLOAT32)
4868         (BT_FN_FLOAT64_FLOAT64, BT_FN_FLOAT128_FLOAT128)
4869         (BT_FN_FLOAT32X_FLOAT32X, BT_FN_FLOAT64X_FLOAT64X)
4870         (BT_FN_FLOAT128X_FLOAT128X, BT_FN_FLOAT16_CONST_STRING)
4871         (BT_FN_FLOAT32_CONST_STRING, BT_FN_FLOAT64_CONST_STRING)
4872         (BT_FN_FLOAT128_CONST_STRING, BT_FN_FLOAT32X_CONST_STRING)
4873         (BT_FN_FLOAT64X_CONST_STRING, BT_FN_FLOAT128X_CONST_STRING)
4874         (BT_FN_FLOAT16_FLOAT16_FLOAT16, BT_FN_FLOAT32_FLOAT32_FLOAT32)
4875         (BT_FN_FLOAT64_FLOAT64_FLOAT64, BT_FN_FLOAT128_FLOAT128_FLOAT128)
4876         (BT_FN_FLOAT32X_FLOAT32X_FLOAT32X)
4877         (BT_FN_FLOAT64X_FLOAT64X_FLOAT64X)
4878         (BT_FN_FLOAT128X_FLOAT128X_FLOAT128X): New type definitions.
4879         * builtins.def (DEF_GCC_FLOATN_NX_BUILTINS): New macro.
4880         (copysign, fabs, huge_val, inf, nan, nans): Use it.
4881         * builtins.c (expand_builtin): Use CASE_FLT_FN_FLOATN_NX for fabs
4882         and copysign.
4883         (fold_builtin_0): Use CASE_FLT_FN_FLOATN_NX for inf and huge_val.
4884         (fold_builtin_1): Use CASE_FLT_FN_FLOATN_NX for fabs.
4885         * doc/extend.texi (Other Builtins): Document these built-in
4886         functions.
4887         * fold-const-call.c (fold_const_call): Use CASE_FLT_FN_FLOATN_NX
4888         for nan and nans.
4890 2016-08-22  Gerald Pfeifer  <gerald@pfeifer.com>
4892         * doc/install.texi (Binaries): www.opencsw.org now uses https.
4894 2016-08-22  Richard Biener  <rguenther@suse.de>
4896         * tree-ssa-forwprop.c (pass_forwprop::execute): Use RPO order.
4898 2016-08-21  Uros Bizjak  <ubizjak@gmail.com>
4900         PR target/77270
4901         * config/i386/i386.md (prefetch): When TARGET_PRFCHW or
4902         TARGET_PREFETCHWT1 are disabled, emit 3dNOW! write prefetches for
4903         non-SSE2 athlons only, otherwise prefer SSE prefetches.
4905 2016-08-20  Kugan Vivekanandarajah  <kuganv@linaro.org>
4907         * tree-vrp.c (vrp_visit_assignment_or_call): Changed to Return VR.
4908         (vrp_visit_cond_stmt): Just sets TAKEN_EDGE_P.
4909         (vrp_visit_switch_stmt): Likewise.
4910         (extract_range_from_stmt): Factored out from vrp_visit_stmt.
4911         (extract_range_from_phi_node): Factored out from vrp_visit_phi_stmt.
4912         (vrp_visit_stmt): Use extract_range_from_stmt.
4913         (vrp_visit_phi_node): Use extract_range_from_phi_node.
4915 2016-08-20  Kugan Vivekanandarajah  <kuganv@linaro.org>
4917         * Makefile.in: Add tree-vrp.h to GTFILES.
4918         * gengtype.c (open_base_files): Add tree-vrp.h.
4919         * asan.c: Add tree-vrp.h which now has the definition value_range_type.
4920         * builtins.c: Likewise.
4921         * fold-const.c: Likewise.
4922         * gimple-builder.c: Likewise.
4923         * gimple-laddress.c: Likewise.
4924         * hsa-gen.c: Likewise.
4925         * internal-fn.c: Likewise.
4926         * ssa.h: Likewise.
4927         * targhooks.c: Liewise,
4928         * tree-ssa-address.c: Likewise.
4929         * tree-ssanames.h (value_range_type: Move to tree-vrp.h.
4930         * tree-vrp.c (struct value_range): Move to tree-vrp.h
4931         * tree-vrp.h: New file.
4933 2016-08-20  Kugan Vivekanandarajah  <kuganv@linaro.org>
4935         PR tree-optimization/61839
4936         * tree-vrp.c (two_valued_val_range_p): New.
4937         (simplify_stmt_using_ranges): Convert CST BINOP VAR where VAR is
4938         two-valued to VAR == VAL1 ? (CST BINOP VAL1) : (CST BINOP VAL2).
4939         Also Convert VAR BINOP CST where VAR is two-valued to
4940         VAR == VAL1 ? (VAL1 BINOP CST) : (VAL2 BINOP CST).
4942 2016-08-19  David Malcolm  <dmalcolm@redhat.com>
4944         * diagnostic-show-locus.c
4945         (layout::annotation_line_showed_range_p): New method.
4946         (layout::print_any_fixits): Remove case fixit_hint::REMOVE.
4947         Reimplement case fixit_hint::REPLACE to cover removals, and
4948         replacements where the range of the replacement isn't one
4949         of the ranges in the rich_location.
4950         (test_one_liner_fixit_replace): Likewise.
4951         (selftest::test_one_liner_fixit_replace_non_equal_range): New
4952         function.
4953         (selftest::test_one_liner_fixit_replace_equal_secondary_range):
4954         New function.
4955         (selftest::test_diagnostic_show_locus_one_liner): Call the new
4956         functions.
4957         * diagnostic.c (print_parseable_fixits): Remove case
4958         fixit_hint::REMOVE.
4960 2016-08-19  Uros Bizjak  <ubizjak@gmail.com>
4962         PR target/77270
4963         * config/i386/i386.c (ix86_option_override_internal): Remove
4964         PTA_PRFCHW from entries that also have PTA_3DNOW flag.
4965         Enable SSE prefetch also for TARGET_PREFETCHWT1.
4966         Do not try to enable TARGET_PRFCHW ISA flag here.
4967         * config/i386/i386.md (prefetch): Enable also for TARGET_3DNOW.
4968         Rewrite expander function body.
4969         (*prefetch_3dnow): Enable for TARGET_3DNOW and TARGET_PREFETCHWT1.
4971 2016-08-19  Joseph Myers  <joseph@codesourcery.com>
4973         PR c/32187
4974         * tree-core.h (TI_COMPLEX_FLOAT16_TYPE)
4975         (TI_COMPLEX_FLOATN_NX_TYPE_FIRST, TI_COMPLEX_FLOAT32_TYPE)
4976         (TI_COMPLEX_FLOAT64_TYPE, TI_COMPLEX_FLOAT128_TYPE)
4977         (TI_COMPLEX_FLOAT32X_TYPE, TI_COMPLEX_FLOAT64X_TYPE)
4978         (TI_COMPLEX_FLOAT128X_TYPE, TI_FLOAT16_TYPE, TI_FLOATN_TYPE_FIRST)
4979         (TI_FLOATN_NX_TYPE_FIRST, TI_FLOAT32_TYPE, TI_FLOAT64_TYPE)
4980         (TI_FLOAT128_TYPE, TI_FLOATN_TYPE_LAST, TI_FLOAT32X_TYPE)
4981         (TI_FLOATNX_TYPE_FIRST, TI_FLOAT64X_TYPE, TI_FLOAT128X_TYPE)
4982         (TI_FLOATNX_TYPE_LAST, TI_FLOATN_NX_TYPE_LAST): New enum
4983         tree_index values.
4984         (NUM_FLOATN_TYPES, NUM_FLOATNX_TYPES, NUM_FLOATN_NX_TYPES): New
4985         macros.
4986         (struct floatn_type_info): New structure type.
4987         (floatn_nx_types): New variable declaration.
4988         * tree.h (FLOATN_TYPE_NODE, FLOATN_NX_TYPE_NODE)
4989         (FLOATNX_TYPE_NODE, float128_type_node, float64x_type_node)
4990         (COMPLEX_FLOATN_NX_TYPE_NODE): New macros.
4991         * tree.c (floatn_nx_types): New variable.
4992         (build_common_tree_nodes): Initialize _FloatN, _FloatNx and
4993         corresponding complex types.
4994         * target.def (floatn_mode): New hook.
4995         * targhooks.c: Include "real.h".
4996         (default_floatn_mode): New function.
4997         * targhooks.h (default_floatn_mode): New prototype.
4998         * doc/extend.texi (Floating Types): Document _FloatN and _FloatNx
4999         types.
5000         * doc/sourcebuild.texi (float@var{n}, float@var{n}x): Document new
5001         effective-target and dg-add-options keywords.
5002         (float@var{n}_runtime, float@var{n}x_runtime, floatn_nx_runtime):
5003         Document new effective-target keywords.
5004         * doc/tm.texi.in (TARGET_FLOATN_MODE): New @hook.
5005         * doc/tm.texi: Regenerate.
5006         * ginclude/float.h (LDBL_DECIMAL_DIG): Define to
5007         __LDBL_DECIMAL_DIG__, not __DECIMAL_DIG__.
5008         [__STDC_WANT_IEC_60559_TYPES_EXT__]: Define macros from TS
5009         18661-3.
5010         * real.h (struct real_format): Add field ieee_bits.
5011         * real.c (ieee_single_format, mips_single_format)
5012         (motorola_single_format, spu_single_format, ieee_double_format)
5013         (mips_double_format, motorola_double_format)
5014         (ieee_extended_motorola_format, ieee_extended_intel_96_format)
5015         (ieee_extended_intel_128_format)
5016         (ieee_extended_intel_96_round_53_format, ibm_extended_format)
5017         (mips_extended_format, ieee_quad_format, mips_quad_format)
5018         (vax_f_format, vax_d_format, vax_g_format, decimal_single_format)
5019         (decimal_double_format, decimal_quad_format, ieee_half_format)
5020         (arm_half_format, real_internal_format: Initialize ieee_bits
5021         field.
5022         * config/i386/i386.c (ix86_init_builtin_types): Do not initialize
5023         float128_type_node.  Set float80_type_node to float64x_type_node
5024         if appropriate and long_double_type_node not appropriate.
5025         * config/ia64/ia64.c (ia64_init_builtins): Likewise.
5026         * config/pdp11/pdp11.c (pdp11_f_format, pdp11_d_format):
5027         Initialize ieee_bits field.
5028         * config/rs6000/rs6000.c (TARGET_FLOATN_MODE): New macro.
5029         (rs6000_init_builtins): Set ieee128_float_type_node to
5030         float128_type_node.
5031         (rs6000_floatn_mode): New function.
5033 2016-08-19  Jakub Jelinek  <jakub@redhat.com>
5035         * config/i386/rdseedintrin.h (_rdseed16_step, _rdseed32_step,
5036         _rdseed64_step): Uglify argument names and/or local variable names
5037         in inline functions.
5038         * config/i386/rtmintrin.h (_xabort): Likewise.
5039         * config/i386/avx512vlintrin.h (_mm256_ternarylogic_epi64,
5040         _mm256_mask_ternarylogic_epi64, _mm256_maskz_ternarylogic_epi64,
5041         _mm256_ternarylogic_epi32, _mm256_mask_ternarylogic_epi32,
5042         _mm256_maskz_ternarylogic_epi32, _mm_ternarylogic_epi64,
5043         _mm_mask_ternarylogic_epi64, _mm_maskz_ternarylogic_epi64,
5044         _mm_ternarylogic_epi32, _mm_mask_ternarylogic_epi32,
5045         _mm_maskz_ternarylogic_epi32): Likewise.
5046         * config/i386/lwpintrin.h (__llwpcb, __lwpval32, __lwpval64,
5047         __lwpins32, __lwpins64): Likewise.
5048         * config/i386/avx2intrin.h (_mm_i32gather_pd, _mm_mask_i32gather_pd,
5049         _mm256_i32gather_pd, _mm256_mask_i32gather_pd, _mm_i64gather_pd,
5050         _mm_mask_i64gather_pd, _mm256_i64gather_pd, _mm256_mask_i64gather_pd,
5051         _mm_i32gather_ps, _mm_mask_i32gather_ps, _mm256_i32gather_ps,
5052         _mm256_mask_i32gather_ps, _mm_i64gather_ps, _mm_mask_i64gather_ps,
5053         _mm256_i64gather_ps, _mm256_mask_i64gather_ps, _mm_i32gather_epi64,
5054         _mm_mask_i32gather_epi64, _mm256_i32gather_epi64,
5055         _mm256_mask_i32gather_epi64, _mm_i64gather_epi64,
5056         _mm_mask_i64gather_epi64, _mm256_i64gather_epi64,
5057         _mm256_mask_i64gather_epi64, _mm_i32gather_epi32,
5058         _mm_mask_i32gather_epi32, _mm256_i32gather_epi32,
5059         _mm256_mask_i32gather_epi32, _mm_i64gather_epi32,
5060         _mm_mask_i64gather_epi32, _mm256_i64gather_epi32,
5061         _mm256_mask_i64gather_epi32): Likewise.
5062         * config/i386/pmm_malloc.h (_mm_malloc, _mm_free): Likewise.
5063         * config/i386/ia32intrin.h (__writeeflags): Likewise.
5064         * config/i386/pkuintrin.h (_wrpkru): Likewise.
5065         * config/i386/avx512pfintrin.h (_mm512_mask_prefetch_i32gather_pd,
5066         _mm512_mask_prefetch_i32gather_ps, _mm512_mask_prefetch_i64gather_pd,
5067         _mm512_mask_prefetch_i64gather_ps, _mm512_prefetch_i32scatter_pd,
5068         _mm512_prefetch_i32scatter_ps, _mm512_mask_prefetch_i32scatter_pd,
5069         _mm512_mask_prefetch_i32scatter_ps, _mm512_prefetch_i64scatter_pd,
5070         _mm512_prefetch_i64scatter_ps, _mm512_mask_prefetch_i64scatter_pd,
5071         _mm512_mask_prefetch_i64scatter_ps): Likewise.
5072         * config/i386/gmm_malloc.h (_mm_malloc, _mm_free): Likewise.
5073         * config/i386/avx512fintrin.h (_mm512_ternarylogic_epi64,
5074         _mm512_mask_ternarylogic_epi64, _mm512_maskz_ternarylogic_epi64,
5075         _mm512_ternarylogic_epi32, _mm512_mask_ternarylogic_epi32,
5076         _mm512_maskz_ternarylogic_epi32, _mm512_i32gather_ps,
5077         _mm512_mask_i32gather_ps, _mm512_i32gather_pd, _mm512_i64gather_ps,
5078         _mm512_i64gather_pd, _mm512_i32gather_epi32, _mm512_i32gather_epi64,
5079         _mm512_i64gather_epi32, _mm512_i64gather_epi64): Likewise.
5081         * config/i386/fxsrintrin.h (_fxsave): Remove return keyword in inlines
5082         returning void.
5083         (_fxrstor, _fxsave64, _fxrstor64): Likewise.
5084         * config/i386/xsaveintrin.h (_xsave, _xrstor, _xsave64, _xrstor64):
5085         Likewise.
5086         * config/i386/xsaveoptintrin.h (_xsaveopt, _xsaveopt64): Likewise.
5087         * config/i386/pkuintrin.h (_wrpkru): Likewise.  Add space after
5088         function name.
5089         (_rdpkru_u32): Add space after function name.
5091         * config/i386/t-i386 (i386-c.o): Don't depend on
5092         i386-builtin-types.inc.
5093         (i386.o): Depend on i386-builtin-types.inc.
5095 2016-08-19  Matthew Wahab  <matthew.wahab@arm.com>
5097         PR target/77281
5098         * config/arm/arm.c (neon_valid_immediate): Delete declaration.
5099         Use const_vec_duplicate to check for duplicated elements.
5101 2016-08-19  Richard Biener  <rguenther@suse.de>
5103         PR tree-optimization/77290
5104         * tree-ssa-pre.c (eliminate_dom_walker::before_dom_children):
5105         Fix flag_tree_parallelize_loops check.
5107 2016-08-19  Richard Biener  <rguenther@suse.de>
5109         * match.pd (x | 0 -> x): Add.
5111 2016-08-19  Richard Biener  <rguenther@suse.de>
5113         PR tree-optimization/77286
5114         * tree-vect-loop-manip.c (slpeel_duplicate_current_defs_from_edges):
5115         Deal with virtual PHIs being out-of-order.
5117 2016-08-18  David Malcolm  <dmalcolm@redhat.com>
5119         * doc/invoke.texi (fverbose-asm): Note that source code lines
5120         are emitted, and provide an example.
5121         * final.c (asm_show_source): New function.
5122         (final_scan_insn): Call asm_show_source.
5124 2016-08-18  David Malcolm  <dmalcolm@redhat.com>
5126         * diagnostic-show-locus.c (colorizer::colorizer): Replace diagnostic
5127         param with diagnostic_kind.
5128         (class colorizer): Similarly replace field m_diagnostic with
5129         m_diagnostic_kind.
5130         (colorizer::colorizer): Replace diagnostic
5131         param with diagnostic_kind.
5132         (colorizer::begin_state): Update for above field change.
5133         (layout::layout): Replace diagnostic param with rich_location *
5134         and diagnostic_kind.
5135         (diagnostic_show_locus): Replace diagnostic param with richloc
5136         and diagnostic_kind.
5137         (class selftest::test_diagnostic_context): New class.
5138         (selftest::test_diagnostic_show_locus_unknown_location): New
5139         function.
5140         (selftest::test_one_liner_simple_caret): New function.
5141         (selftest::test_one_liner_caret_and_range): New function.
5142         (selftest::test_one_liner_multiple_carets_and_ranges): New
5143         function.
5144         (selftest::test_one_liner_fixit_remove): New function.
5145         (selftest::test_one_liner_fixit_replace): New function.
5146         (selftest::test_diagnostic_show_locus_one_liner): New function.
5147         (selftest::diagnostic_show_locus_c_tests): Call the new test
5148         functions.
5149         * diagnostic.c (diagnostic_initialize): Initialize
5150         colorize_source_p, show_ruler_p and parseable_fixits_p.
5151         (default_diagnostic_finalizer): Update for change to
5152         diagnostic_show_locus.
5153         (diagnostic_append_note): Likewise.
5154         * diagnostic.h (diagnostic_show_locus): Replace
5155         const diagnostic_info * param with location * and diagnostic_t.
5157 2016-08-18  David Malcolm  <dmalcolm@redhat.com>
5159         * input.c (saved_line_table): New global.
5160         (class selftest::temp_line_table): Rename to line_table_test and
5161         move declaration to selftest.h, and drop field m_old_line_table.
5162         (selftest::temp_line_table::temp_line_table): Rename ctor to...
5163         (selftest::line_table_test::line_table_test): ...this.  Add a
5164         default ctor.  Store current value of line_table within
5165         saved_line_table.
5166         (selftest::temp_line_table::~temp_line_table): Rename dtor to...
5167         (selftest::line_table_test::~line_table_test): ...this, and
5168         restore line_table from the saved_line_table, rather than
5169         m_old_line_table.
5170         (selftest::test_accessing_ordinary_linemaps): Update for above
5171         renaming.
5172         (selftest::test_lexer): Likewise.
5173         (struct selftest::lexer_test): Likewise.
5174         (selftest::lexer_test::lexer_test): Likewise.
5175         (selftest::input_c_tests): Move the looping over test cases from
5176         here into...
5177         (selftest::for_each_line_table_case): New function.
5178         * input.h (saved_line_table): New decl.
5179         * selftest.h (struct selftest::line_table_case): New forward decl.
5180         (class selftest::line_table_test): New class, moved here from
5181         selftest::temp_line_table in input.c, and renamed.
5182         (selftest::for_each_line_table_case): New decl.
5184 2015-08-18  H.J. Lu  <hongjiu.lu@intel.com>
5186         PR target/72839
5187         * config/i386/i386.c (lakemont_cost): Set MOVE_RATIO to 17.
5189 2016-08-18  Chung-Lin Tang  <cltang@codesourcery.com>
5191         PR middle-end/70895
5192         * gimplify.c (omp_add_variable): Adjust/add variable mapping on
5193         enclosing parallel construct for reduction variables on OpenACC loop
5194         directives.
5196 2016-08-18  Pierre-Marie de Rodat  <derodat@adacore.com>
5198         * dwarf2out.c (copy_dwarf_procedure): Remove obsolete comment.
5199         (new_dwarf_proc_die): Emit DW_TAG_dwarf_procedure DIEs even for
5200         -gdwarf-3.
5201         (function_to_dwarf_procedure): Update comment.
5203 2016-08-18  David Malcolm  <dmalcolm@redhat.com>
5205         * input.c (diagnostics_file_cache_forcibly_evict_file): New
5206         function.
5207         * input.h (diagnostics_file_cache_forcibly_evict_file): New
5208         declaration.
5209         * selftest.c (selftest::temp_source_file::~temp_source_file):
5210         Evict m_filename from the diagnostic file cache.
5212 2016-08-18  Richard Biener  <rguenther@suse.de>
5214         * tree-pass.h (make_pass_materialize_all_clones): Declare.
5215         * ipa.c (pass_data_materialize_all_clones, pass_materialize_all_clones,
5216         make_pass_materialize_all_clones): New simple IPA pass encapsulating
5217         clone materialization.
5218         * passes.def (all_late_ipa_passes): Start with
5219         pass_materialize_all_clones.
5220         * cgraphunit.c (symbol_table::compile): Remove call to
5221         materialize_all_clones.
5222         * tree-into-ssa.c: Include statistics.h.
5223         (update_ssa): Count number of times we do incremental/rewrite
5224         SSA update.
5226 2016-08-18  Richard Biener  <rguenther@suse.de>
5228         PR tree-optimization/77282
5229         * tree-ssa-pre.c (eliminate_dom_walker::before_dom_children):
5230         When doing auto-parallelizing also prevent use of PHIs that
5231         carry dependences across loop backedges.
5233 2016-08-18  Tamar Christina  <tamar.christina@arm.com>
5234             Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>
5236         * varasm.c (default_use_anchors_for_symbol_p): Reject too large decls.
5238 2016-08-18  Richard Biener  <rguenther@suse.de>
5240         * ssa-iterators.h (ssa_vuse_operand): New inline.
5241         * tree-if-conv.c (ifc_temp_var): Update virtual operand.
5242         (predicate_all_scalar_phis): Use remove_phi_node to remove
5243         phi nodes predicated.  Delay removing virtual PHIs.
5244         (predicate_mem_writes): Update virtual operands.
5245         (combine_blocks): Likewise.  Propagate out remaining virtual PHIs.
5246         (tree_if_conversion): Do not rewrite virtual SSA form.
5247         * tree-phinodes.c (release_phi_node): Make static.
5248         * tree-phinodes.h (release_phi_node): Remove.
5250 2016-08-18  Jakub Jelinek  <jakub@redhat.com>
5252         * config/i386/i386.c (enum ix86_builtins): Remove IX86_BUILTIN_*
5253         codes that appear in bdesc_* arrays, instead include i386-builtin.def
5254         twice to define those.
5255         (bdesc_comi, bdesc_pcmpestr, bdesc_pcmpistr, bdesc_special_args,
5256         bdesc_args, bdesc_round_args, bdesc_mpx, bdesc_mpx_const,
5257         bdesc_multi_arg): Define by including i386-builtin.def the third time.
5258         * config/i386/i386-builtin.def: New file.
5260 2016-08-17  David Malcolm  <dmalcolm@redhat.com>
5262         * input.c (get_source_range_for_char): Rename to...
5263         (selftest::get_source_range_for_char): ...this, and move within
5264         the #if CHECKING_P guard.
5265         (get_num_source_ranges_for_substring): Rename to...
5266         (selftest::get_num_source_ranges_for_substring): ...this, move
5267         within the #if CHECKING_P guard, and make static.
5268         (selftest::assert_num_substring_ranges): Initialize
5269         actual_num_ranges.
5271 2016-08-18  Alan Modra  <amodra@gmail.com>
5273         PR rtl-optimization/72771
5274         * reload.c (find_reloads): Don't assume that a subreg mem is OK
5275         when find_reloads_toplev returns address_reloaded==-1.
5276         (alternative_allows_const_pool_ref): Update comment.
5278 2015-08-17  Alan Hayward  <alan.hayward@arm.com>
5280         PR tree-optimization/71752
5281         * tree-vect-loop.c (vectorizable_reduction): Keep SLP operand ordering.
5282         * tree-vect-slp.c (vect_get_slp_defs): Handle null operands.
5284 2016-08-17  Jakub Jelinek  <jakub@redhat.com>
5286         * gimple-fold.c (gimple_fold_call): Use gimple_call_noreturn_p
5287         instead of testing ECF_NORETURN bit in gimple_call_flags.
5288         * tree-cfg.c (make_edges_bb, execute_fixup_cfg): Likewise.
5289         * predict.c (tree_bb_level_predictions): Likewise.
5290         * gimple-low.c (gimple_stmt_may_fallthru): Likewise.
5292         PR middle-end/77259
5293         * tree-ssa-pre.c (eliminate_dom_walker::before_dom_children): If
5294         turning a call into __builtin_unreachable-like noreturn call, adjust
5295         gimple_call_set_fntype.
5296         * tree-cfgcleanup.c (fixup_noreturn_call): Remove lhs also if
5297         gimple_call_fntype has void return type.
5299 2016-08-17  Chung-Lin Tang  <cltang@codesourcery.com>
5301         * omp-low.c (lower_oacc_reductions): Adjust variable lookup to use
5302         maybe_lookup_decl, to handle nested acc loop directives.
5304 2016-08-17  Richard Biener  <rguenther@suse.de>
5306         PR tree-optimization/76490
5307         * tree-vrp.c (update_value_range): Preserve overflow infinities
5308         when intersecting with ranges from get_range_info.
5309         (operand_less_p): Handle overflow infinities correctly.
5310         (value_range_constant_singleton): Use vrp_operand_equal_p
5311         to handle overflow max/min correctly.
5312         (vrp_valueize): Likewise.
5313         (union_ranges): Likewise.
5314         (intersect_ranges): Likewise.
5315         (vrp_visit_phi_node): Improve iteration limitation to only
5316         apply when we'll possibly re-visit the PHI via a changed argument
5317         on the backedge.
5319 2016-08-17  Thomas Preud'homme  <thomas.preudhomme@arm.com>
5321         * config/arm/t-aprofile (MULTILIB_EXCEPTIONS): Rewrite into ...
5322         (MULTILIB_REQUIRED): This by specifying multilib needing to be built
5323         rather than those that should not be built.
5325 2016-08-17  Stanislaw Halik  <sthalik@misaki.pl>
5327         PR target/66488
5328         * config/i386/xm-mingw32.h (HOST_BITS_PER_PTR): Define if __x86_64__.
5330 2016-08-17  Richard Biener  <rguenther@suse.de>
5332         * tree-ssa.c: Include tree-cfg.h and tree-dfa.h.
5333         (verify_vssa): New function verifying virtual SSA form.
5334         (verify_ssa): Call it.
5335         * tree-ssa-loop-manip.c (slpeel_update_phi_nodes_for_guard2):
5336         Do not apply loop-closed SSA handling to virtuals.
5337         * ssa-iterators.h (op_iter_init): Handle GIMPLE_TRANSACTION.
5338         * tree-into-ssa.c (prepare_use_sites_for): Skip virtual SSA names
5339         when rewriting their symbol.
5340         (prepare_def_site_for): Likewise.
5341         * tree-chkp-opt.c (chkp_reduce_bounds_lifetime): Clear virtual
5342         operands of moved stmts.
5344 2016-08-17  Richard Biener  <rguenther@suse.de>
5346         PR tree-optimization/23855
5347         * tree-ssa-loop-unswitch.c: Include tree-ssa-loop-manip.h.
5348         (tree_unswitch_outer_loop): Iterate find_loop_guard as long as we
5349         find guards to hoist.  Do not update SSA form but rewrite virtuals
5350         into loop closed SSA.
5351         (find_loop_guard): Adjust to skip already hoisted guards.  Do
5352         not mark virtuals for renaming or update SSA form.
5354 2016-08-17  Martin Liska  <mliska@suse.cz>
5356         * coverage.c (get_gcov_type): Replace GCOV_TYPE_SIZE with
5357         a LONG_LONG_TYPE_SIZE comparison.
5358         * gcov-io.h: Remove macro definitions.
5359         * tree-profile.c (gimple_gen_edge_profiler): Replace usage
5360         of GCOV_TYPE_ATOMIC_FETCH_ADD with a LONG_LONG_TYPE_SIZE
5361         comparison.
5363 2016-08-16  Jakub Jelinek  <jakub@redhat.com>
5365         * config/i386/i386.c (enum ix86_builtins): Reorder enumerators, so
5366         that builtins not mentioned in bdesc_* arrays come first, then
5367         the ones mentioned in bdesc_* arrays in the order they appear in
5368         the arrays in between IX86_BUILTIN__BDESC_*_FIRST and
5369         IX86_BUILTIN__BDESC_*_LAST enumerator.
5370         (bdesc_mpx): Fix up a comment typo.
5371         (bdesc_multi_arg): Remove __builtin_ia32_vpcomne[bwdq] and
5372         __builtin_ia32_vpcomneu[bwdq] builtins.
5373         (BDESC_VERIFY, BDESC_VERIFYS): Define.
5374         (ix86_init_mmx_sse_builtins, ix86_init_mpx_builtins): Verify
5375         enum ix86_builtins ordering.
5376         (ix86_expand_builtin): Use enum ix86_builtins ordering assumption
5377         for direct bdesc_* array member access instead of searching all the
5378         arrays until an fcode match is found.
5380 2016-08-16  Uros Bizjak  <ubizjak@gmail.com>
5382         * config/i386/i386.md (*ashl<mode>3_mask): Rewrite define_insn
5383         pattern as define_insn_and_split.  Split insn before reload to
5384         ashl<mode>3_1.
5385         (*<shift_insn><mode>3_mask): Ditto.  Split insn before reload to
5386         <shift_insn><mode>3_1.
5387         (*<rotate_insn><mode>3_mask): Ditto.  Split insn before reload to
5388         <rotate_insn><mode>3_1.
5390 2016-08-16  David Malcolm  <dmalcolm@redhat.com>
5392         PR c/72857
5393         * input.c (get_source_range_for_substring): Rename to...
5394         (get_source_location_for_substring): ...this, adding param
5395         "caret_idx", and converting output param from source_range * to
5396         location_t *.
5397         (get_source_range_for_char): New function.
5398         (get_num_source_ranges_for_substring): Update comment to reflect
5399         above renaming.
5400         (assert_char_at_range): Update to use get_source_range_for_char
5401         rather than get_source_range_for_substring.
5402         (test_lexer_string_locations_concatenation_2): Likewise.
5403         * substring-locations.h (get_source_range_for_substring): Rename
5404         to...
5405         (get_source_location_for_substring): ...this, and adding param
5406         "caret_idx", and converting output param from source_range * to
5407         location_t *.
5409 2016-08-16  David Malcolm  <dmalcolm@redhat.com>
5411         * input.c (class selftest::temp_source_file): Move to
5412         selftest.h.
5413         (selftest::temp_source_file::temp_source_file): Move to
5414         selftest.c.
5415         (selftest::temp_source_file::~temp_source_file): Likewise.
5416         * selftest.c (selftest::temp_source_file::temp_source_file): Move
5417         here from input.c.
5418         (selftest::temp_source_file::~temp_source_file): Likewise.
5419         * selftest.h (class selftest::temp_source_file): Move here from
5420         input.c
5422 2016-08-16  Jakub Jelinek  <jakub@redhat.com>
5424         PR target/71910
5425         * tree-cfg.c (execute_fixup_cfg): Add node variable, use it.  Before
5426         inlining, add cgraph edge for the added __builtin_unreachable call.
5428         PR middle-end/67485
5429         * expmed.c (expand_mult_const): Change val_so_far's type to UHWI,
5430         only cast it to SHWI for the final comparison.
5432 2016-08-16  Martin Liska  <mliska@suse.cz>
5434         PR gcov-profile/36412
5435         * doc/gcov.texi: Document --hash-filenames(-x).
5436         * gcov.c (print_usage): Add the option.
5437         (process_args): Process the option, sort options alphabetically.
5438         (md5sum_to_hex): New function.
5439         (make_gcov_file_name): Do the md5sum and append it to a
5440         filename.
5442 2016-08-16  Bin Cheng  <bin.cheng@arm.com>
5444         PR tree-optimization/69848
5445         * config/aarch64/aarch64-simd.md (vcond<mode><mode>): Invert NE
5446         and swtich operands to avoid additional NOT instruction.
5447         (vcond<v_cmp_mixed><mode>): Ditto.
5448         (vcondu<mode><mode>, vcondu<mode><v_cmp_mixed>): Ditto.
5450 2016-08-16  Eric Botcazou  <ebotcazou@adacore.com>
5452         * doc/install.texi (*-*-solaris2*): Adjust latest change.
5454 2016-08-16  Richard Biener  <rguenther@suse.de>
5456         PR tree-optimization/76783
5457         * tree-ssa-propagate.c (ssa_prop_init): Use RPO order.  Clear
5458         BB visited flags at start.
5460 2016-08-16  Bin Cheng  <bin.cheng@arm.com>
5462         PR tree-optimization/72817
5463         PR tree-optimization/73450
5464         * tree-ssa-loop-niter.c (number_of_iterations_ne): Check
5465         multiple_of_p for adjusted IV.base.
5467 2016-08-15  Uros Bizjak  <ubizjak@gmail.com>
5469         PR target/72867
5470         * config/i386/sse.md (<code><mode>3<mask_name><round_saeonly_name>):
5471         Emit ieee_<ieee_maxmin><mode>3<mask_name><round_saeonly_name>
5472         for !flag_finite_math_only or flag_signed_zeros.
5473         (*<code><mode>3<mask_name><round_saeonly_name>): Rename from
5474         *<code><mode>3_finite<mask_name><round_saeonly_name>.  Do not
5475         depend on flag_finite_math_only.
5476         (ieee_<ieee_maxmin><mode>3<mask_name><round_saeonly_name>):
5477         New insn pattern.
5478         (*<code><mode>3<mask_name><round_saeonly_name>): Remove.
5479         (*ieee_smin<mode>3): Ditto.
5480         (*ieee_smax<mode>3): Ditto.
5481         * config/i386/mmx.md (mmx_<code>v2sf3): Emit
5482         mmx_ieee_<ieee_maxmin>v2sf3 for !flag_finite_math_only or
5483         flag_signed_zeros.
5484         (*mmx_<code>v2sf3): Rename from *mmx_<code>v2sf3_finite.  Do not
5485         depend on flag_finite_math_only.
5486         (mmx_ieee_<ieee_maxmin>v2sf3): New insn pattern.
5487         (*mmx_<code>v2sf3): Remove.
5488         * config/i386/subst.md (round_saeonly_mask_arg3): New subst attribute.
5489         * config/i386/i386.c (ix86_expand_sse_fp_mimnax): Check
5490         flag_signed_zeros instead of !flag_unsafe_math_optimizations.
5492 2016-08-15  Segher Boessenkool  <segher@kernel.crashing.org>
5494         PR rtl-optimization/73650
5495         * lra-constraints.c (simple_move_p): If the insn is multiple_sets
5496         it is not a simple move.
5498 2016-08-15  Martin Liska  <mliska@suse.cz>
5500         PR driver/72765
5501         * gcc.c (do_spec_1): Call save_string with the right size.
5502         (save_string): Do an assert about string we copy.
5504 2016-08-15  Richard Biener  <rguenther@suse.de>
5506         * ree.c (rest_of_handle_ree): Remove redundant timevar push/pop.
5507         * config/i386/i386.c (pass_data_insert_vzeroupper): Account to
5508         TV_MACH_DEP.
5509         (pass_data_stv): Likewise.
5511 2016-08-15  Richard Biener  <rguenther@suse.de>
5513         PR tree-optimization/73434
5514         * tree-ssa-sccvn.c (vn_reference_maybe_forwprop_address): Preserve
5515         TBAA info on the base when forwarding a non-invariant address.
5517 2016-08-15  Jakub Jelinek  <jakub@redhat.com>
5519         * dwarf2out.c (struct checksum_attributes): Add
5520         at_string_length_bit_size and at_string_length_byte_size fields.
5521         (collect_checksum_attributes): Handle DW_AT_string_length_bit_size
5522         and DW_AT_string_length_byte_size.
5523         (die_checksum_ordered): Handle at_string_length_bit_size and
5524         at_string_length_byte_size.
5525         (gen_array_type_die): For dwarf_version >= 5 emit
5526         DW_AT_string_length_byte_size instead of DW_AT_byte_size.
5527         (adjust_string_types): For dwarf_version >= 5 remove
5528         DW_AT_string_length_byte_size instead of DW_AT_byte_size.
5529         (resolve_addr): Likewise.
5531         PR debug/71906
5532         * dwarf2out.c (string_types): New variable.
5533         (gen_array_type_die): Change early_dwarf handling of
5534         DW_AT_string_length, create DW_OP_call4 referencing the
5535         length var temporarily.  Handle parameters that are pointers
5536         to string length.
5537         (adjust_string_types): New function.
5538         (gen_subprogram_die): Temporarily set string_types to local var,
5539         call adjust_string_types if needed.
5540         (non_dwarf_expression, copy_deref_exprloc, optimize_string_length):
5541         New functions.
5542         (resolve_addr): Adjust DW_AT_string_length if it is DW_OP_call4.
5544 2016-08-15  Eric Botcazou  <ebotcazou@adacore.com>
5546         * doc/install.texi (*-*-solaris2*): Fix version number and document
5547         requirement on GNU make for building libjava with the Solaris linker.
5549 2016-08-15  Martin Liska  <mliska@suse.cz>
5550             Jakub Jelinek  <jakub@redhat.com>
5552         PR tree-optimization/72824
5553         * tree-loop-distribution.c (const_with_all_bytes_same)
5554         <case VECTOR_CST>: Fix a typo.
5556 2016-08-14  Uros Bizjak  <ubizjak@gmail.com>
5558         PR target/76342
5559         * config/i386/avx512fintrin.h (_mm512_undefined_epi32):
5560         Renamed from _mm512_undefined_si512.
5561         (_mm_undefined_si512): New definition.
5563 2016-08-13  Richard Biener  <rguenther@suse.de>
5565         * tree-ssa-forwprop.c (pass_forwprop::execute): Propagate
5566         into PHIs and update the lattice for its def.
5568 2016-08-12  Jakub Jelinek  <jakub@redhat.com>
5570         PR c/71512
5571         * ubsan.c (instrument_si_overflow): Pass true instead of false
5572         to gsi_replace.
5573         (pass_ubsan::execute): Call gimple_purge_dead_eh_edges at the end
5574         of bbs.  Return TODO_cleanup_cfg if any returned true.
5576 2016-08-12  Michael Meissner  <meissner@linux.vnet.ibm.com>
5578         * config/rs6000/vsx.md (vsx_concat_<mode>): Add support for the
5579         ISA 3.0 MTVSRDD instruction.
5580         (vsx_splat_<mode>): Change cpu type of MTVSRDD instruction to
5581         vecperm.
5583 2016-08-12  Bernd Edlinger  <bernd.edlinger@hotmail.de>
5585         PR tree-optimization/71083
5586         * tree-predcom.c (ref_at_iteration): Use a COMPONENT_REF for the
5587         bitfield access when possible.
5589 2016-08-12  Patrick Palka  <ppalka@gcc.gnu.org>
5591         PR middle-end/71654
5592         * match.pd ((T)A CMP (T)B -> A CMP B): Allow (T)A to be a
5593         sign-changing cast from a shorter unsigned type to a wider
5594         signed type.
5596 2016-08-12  Jakub Jelinek  <jakub@redhat.com>
5598         * config/i386/sse.md (avx512dq_vextract<shuffletype>64x2_1_maskm,
5599         vec_extract_hi_<mode>_mask, vec_extract_lo_<mode>_mask,
5600         vec_extract_hi_<mode>_mask): Use Yk constraint instead of k.
5602 2016-08-12  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
5604         * config/rs6000/rs6000.c (rs6000_builtin_vectorization_cost):
5605         Correct costs for vec_construct.
5607 2016-08-12  Bin Cheng  <bin.cheng@arm.com>
5609         PR tree-optimization/69848
5610         * tree-vectorizer.h (enum vect_def_type): New condition reduction
5611         type CONST_COND_REDUCTION.
5612         * tree-vect-loop.c (vectorizable_reduction): Support new condition
5613         reudction type CONST_COND_REDUCTION.
5615 2016-08-12  Richard Biener  <rguenther@suse.de>
5617         PR tree-optimization/57326
5618         * tree-ssa-pre.c (fully_constant_expression): Handle simplification
5619         returning an SSA name.
5620         (phi_translate_1): When fully_constant_expression returns a NAME
5621         make sure we have a leader for it.
5623 2016-08-12  Martin Liska  <mliska@suse.cz>
5624             Adam Fineman  <afineman@afineman.com>
5626         * gcov.c (process_file): Create .gcov file when .gcda
5627         file is missing.
5629 2016-08-12  Marek Polacek  <polacek@redhat.com>
5631         PR c/7652
5632         * alias.c (find_base_value): Adjust fall through comment.
5633         * cfgexpand.c (expand_debug_expr): Likewise.
5634         * combine.c (find_split_point): Likewise.
5635         (expand_compound_operation): Likewise.  Add FALLTHRU.
5636         (make_compound_operation): Adjust fall through comment.
5637         (canon_reg_for_combine): Add FALLTHRU.
5638         (force_to_mode): Adjust fall through comment.
5639         (simplify_shift_const_1): Likewise.
5640         (simplify_comparison): Likewise.
5641         * config/aarch64/aarch64-builtins.c (aarch64_simd_expand_args): Add
5642         FALLTHRU.
5643         * config/aarch64/predicates.md: Likewise.
5644         * config/i386/i386.c (function_arg_advance_32): Likewise.
5645         (ix86_gimplify_va_arg): Likewise.
5646         (print_reg): Likewise.
5647         (ix86_print_operand): Likewise.
5648         (ix86_build_const_vector): Likewise.
5649         (ix86_expand_branch): Likewise.
5650         (ix86_sched_init_global): Adjust fall through comment.
5651         (ix86_expand_args_builtin): Add FALLTHRU.
5652         (ix86_expand_builtin): Likewise.
5653         (ix86_expand_vector_init_one_var): Likewise.
5654         * config/rs6000/rs6000.c (rs6000_emit_vector_compare_inner): Likewise.
5655         (rs6000_adjust_cost): Likewise.
5656         (insn_must_be_first_in_group): Likewise.
5657         * config/rs6000/rs6000.md: Likewise.  Adjust fall through comment.
5658         * dbxout.c (dbxout_symbol): Adjust fall through comment.
5659         * df-scan.c (df_uses_record): Likewise.
5660         * dojump.c (do_jump): Add FALLTHRU.
5661         * dwarf2out.c (mem_loc_descriptor): Likewise.  Adjust fall through
5662         comment.
5663         (resolve_args_picking_1): Adjust fall through comment.
5664         (loc_list_from_tree_1): Likewise.
5665         * expmed.c (make_tree): Likewise.
5666         * expr.c (expand_expr_real_2): Add FALLTHRU.
5667         (expand_expr_real_1): Likewise.  Adjust fall through comment.
5668         * fold-const.c (const_binop): Adjust fall through comment.
5669         (fold_truth_not_expr): Likewise.
5670         (fold_cond_expr_with_comparison): Add FALLTHRU.
5671         (fold_binary_loc): Likewise.
5672         (contains_label_1): Adjust fall through comment.
5673         (multiple_of_p): Likewise.
5674         * gcov-tool.c (process_args): Add FALLTHRU.
5675         * genattrtab.c (check_attr_test): Likewise.
5676         (write_test_expr): Likewise.
5677         * genconfig.c (walk_insn_part): Likewise.
5678         * genpreds.c (validate_exp): Adjust fall through comment.
5679         (needs_variable): Likewise.
5680         * gensupport.c (get_alternatives_number): Add FALLTHRU.
5681         (subst_dup): Likewise.
5682         * gimple-pretty-print.c (dump_gimple_assign): Likewise.
5683         * gimplify.c (gimplify_addr_expr): Adjust fall through comment.
5684         (gimplify_scan_omp_clauses): Add FALLTHRU.
5685         (goa_stabilize_expr): Likewise.
5686         * graphite-isl-ast-to-gimple.c (substitute_ssa_name): Adjust fall
5687         through comment.
5688         * hsa-gen.c (get_address_from_value): Likewise.
5689         * ipa-icf.c (sem_function::hash_stmt): Likewise.
5690         * ira.c (ira_setup_alts): Add FALLTHRU.
5691         * lra-eliminations.c (lra_eliminate_regs_1): Adjust fall through
5692         comment.
5693         * lto-streamer-out.c (lto_output_tree_ref): Add FALLTHRU.
5694         * opts.c (common_handle_option): Likewise.
5695         * read-rtl.c (read_rtx_code): Likewise.
5696         * real.c (round_for_format): Likewise.
5697         * recog.c (asm_operand_ok): Likewise.
5698         * reginfo.c (reg_scan_mark_refs): Adjust fall through comment.
5699         * reload1.c (set_label_offsets): Likewise.
5700         (eliminate_regs_1): Likewise.
5701         (reload_reg_reaches_end_p): Likewise.
5702         * rtlanal.c (commutative_operand_precedence): Add FALLTHRU.
5703         (rtx_cost): Likewise.
5704         * sched-rgn.c (is_exception_free): Likewise.
5705         * simplify-rtx.c (simplify_rtx): Adjust fall through comment.
5706         * stor-layout.c (int_mode_for_mode): Likewise.
5707         * toplev.c (print_to_asm_out_file): Likewise.
5708         (print_to_stderr): Likewise.
5709         * tree-cfg.c (gimple_verify_flow_info): Likewise.
5710         * tree-chrec.c (chrec_fold_plus_1): Add FALLTHRU.
5711         (chrec_fold_multiply): Likewise.
5712         (evolution_function_is_invariant_rec_p): Likewise.
5713         (for_each_scev_op): Likewise.
5714         * tree-data-ref.c (siv_subscript_p): Likewise.
5715         (get_references_in_stmt): Likewise.
5716         * tree.c (find_placeholder_in_expr): Adjust fall through comment.
5717         (substitute_in_expr): Likewise.
5718         (type_cache_hasher::equal): Likewise.
5719         (walk_type_fields): Likewise.
5720         * var-tracking.c (adjust_mems): Add FALLTHRU.
5721         (set_dv_changed): Adjust fall through comment.
5722         * varasm.c (default_function_section): Add FALLTHRU.
5724 2016-08-12  Marek Polacek  <polacek@redhat.com>
5726         PR c/7652
5727         * tree-complex.c (expand_complex_division): Add missing break.
5729 2016-08-12  Richard Biener  <rguenther@suse.de>
5731         * passes.c (execute_todo): Do not push/pop TV_TODO.
5732         (execute_one_ipa_transform_pass): Move timevar push/pop TODO execution.
5733         (execute_one_pass): Likewise.
5734         * common.opt (ftime-report-details): New switch.
5735         * doc/invoke.texi (ftime-report-details): Document.
5736         * timevar.h (timer::print_row): Adjust signature.
5737         (timer::all_zero): New static helper.
5738         (timer::child_map_t): New typedef.
5739         (timer::time_var_def): Add children field.
5740         * timevar.c (timer::named_items::print): Adjust.
5741         (timer::~timer): Free timevar recorded children.
5742         (timer::pop_internal): When -ftime-report-details record
5743         time spent in sub-timevars.
5744         (timer::print_row): Adjust.
5745         (timer::print): Print sub-timevar stats, use all_zero.
5746         * timevar.def (TV_TODO): Remove.
5748 2016-08-12  Richard Biener  <rguenther@suse.de>
5750         PR tree-optimization/72851
5751         * tree-ssa-propagate.c: Include cfganal.h.  Rewrite block and stmt
5752         worklists to use bitmaps indexed in execution order.
5753         (executable_blocks, cfg_blocks_num, cfg_blocks_tail, cfg_blocks_head,
5754         bb_in_list, interesting_ssa_edges, varying_ssa_edges): Remove.
5755         (cfg_blocks): Make a bitmap.
5756         (bb_to_cfg_order, cfg_order_to_bb, ssa_edge_worklist, uid_to_stmt):
5757         New globals.
5758         (cfg_blocks_empty_p): Adjust.
5759         (cfg_blocks_add): Likewise.
5760         (cfg_blocks_get): Likewise.
5761         (add_ssa_edge): Likewise.
5762         (add_control_edge): Likewise.
5763         (simulate_stmt): Likewise.
5764         (process_ssa_edge_worklist): Likewise.
5765         (simulate_block): Likewise.
5766         (ssa_prop_init): Compute PRE order and stmt UIDs.
5767         (ssa_prop_fini): Adjust.
5768         (ssa_propagate): Adjust.
5770 2016-08-12  Richard Biener  <rguenther@suse.de>
5772         * tree-vrp.c (vrp_visit_phi_node): Allow a last iteration if
5773         the currently executable edges have fixed ranges.  Always
5774         go through update_value_range.
5776 2016-08-12  Alexandre Oliva  <aoliva@redhat.com>
5778         PR debug/63240
5779         * langhooks-def.h
5780         (LANG_HOOKS_FUNCTION_DECL_EXPLICIT_P): Const_tree-ify.
5781         (LANG_HOOKS_FUNCTION_DECL_DELETED_P): Likewise.
5782         (LANG_HOOKS_FUNCTION_DECL_DEFAULTED): Set default.
5783         (LANG_HOOKS_DECLS): Add it.
5784         * langhooks.h (struct lang_hooks_for_decls): Add
5785         function_decl_defaulted.  Const_tree-ify
5786         function_decl_explicit_p and function_decl_deleted_p.
5787         * dwarf2out.c (gen_subprogram_die): Add DW_AT_defaulted
5788         attribute.  Add DW_AT_deleted instead of DW_AT_GNU_deleted,
5789         also at strict DWARF v5.
5791         PR debug/55641
5792         * dwarf2out.c (decl_quals): Don't map TREE_READONLY to
5793         TYPE_QUAL_CONST in reference-typed decls.
5795         PR debug/49366
5796         * dwarf2out.c (loc_list_from_tree_1): Expand some CONSTRUCTORs
5797         in DW_OP_pieces, just enough to handle pointers to member
5798         functions.
5799         (gen_remaining_tmpl_value_param_die_attribute): Use a location
5800         expression on DWARFv5 if a constant value doesn't work.
5802 2016-08-11  David Malcolm  <dmalcolm@redhat.com>
5804         * selftest-run-tests.c (selftest::run_tests): Call selftest_c_tests.
5805         * selftest.c (selftest::test_assertions): New function.
5806         (selftest::selftest_c_tests): New function.
5807         * selftest.h (selftest::selftest_c_tests): New declaration.
5809 2016-08-11  Richard Biener  <rguenther@suse.de>
5810             Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
5812         PR rtl-optimization/72855
5813         * df-core.c (df_verify): Turn off DF_VERIFY_SCHEDULED at end.
5815 2016-08-11  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
5817         PR target/72863
5818         * vsx.md (vsx_load_<mode>): For P8LE, emit swaps at expand time.
5819         (vsx_store_<mode>): Likewise.
5821 2015-08-11  H.J. Lu  <hongjiu.lu@intel.com>
5823         * config/i386/i386.c (timode_scalar_to_vector_candidate_p): Allow
5824         TImode CONST_WIDE_INT store.
5825         (timode_scalar_chain::convert_insn): Handle CONST_WIDE_INT store.
5827 2015-08-11  H.J. Lu  <hongjiu.lu@intel.com>
5829         * config/i386/i386.h (MOVE_MAX_PIECES): Use TImode in 64-bit
5830         mode if unaligned SSE load and store are optimal.
5832 2016-08-11  Bernd Edlinger  <bernd.edlinger@hotmail.de>
5834         PR tree-optimization/71083
5835         * tree-predcom.c (ref_at_iteration): Correctly align the
5836         reference type.
5838 2016-08-11  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
5840         * config/s390/s390-builtin-types.def: Add INT128 types.
5841         * config/s390/s390-builtins.def: Add INT128 variants for the add
5842         sub low-level builtins dealing with TImode.
5843         * config/s390/s390.c (s390_expand_builtin): Allow mode conversions
5844         via subreg when expanding a builtin.
5845         * config/s390/s390.md: Remove UNSPEC_VEC_ADDC_U128,
5846         UNSPEC_VEC_SUB_U128, and UNSPEC_VEC_SUBC_U128 constants.
5847         Fix comment.
5848         * config/s390/vecintrin.h: Adjust builtin names accordingly.
5849         * config/s390/vx-builtins.md ("vec_add_u128"): Remove expander.
5850         ("vec_addc<mode>", "vec_addc_u128"): Merge to
5851         "vacc<bhfgq>_<mode>".
5852         ("vec_adde_u128"): Rename to "vacq". Change mode to TImode.
5853         ("vec_addec_u128"): Rename to "vacccq". Change mode to TImode.
5854         ("vec_subc<mode>", "vec_subc_u128"): Merge to
5855         "vscbi<bhfgq>_<mode>".
5856         ("vec_sube_u128"): Rename to "vsbiq". Change mode to TImode.
5857         ("vec_subec_u128"): Rename to "vsbcbiq". Change mode to TImode.
5859 2016-08-11  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
5861         * config/s390/s390-builtins.def: Mark last operand of s390_vlvg*
5863 2016-08-11  Bin Cheng  <bin.cheng@arm.com>
5865         * config/aarch64/aarch64-simd.md (vcond<mode><mode>): Delete
5866         unused declaration.
5867         (vcond<v_cmp_mixed><mode>): Ditto.
5868         (vcondu<mode><mode>, vcondu<mode><v_cmp_mixed>): Ditto.
5870 2016-08-11  Bin Cheng  <bin.cheng@arm.com>
5872         * config/aarch64/aarch64-simd.md (vec_cmp<mode><v_cmp_result>): Init
5873         variable explicitly, also assert on it before use.
5875 2016-08-11  Richard Biener  <rguenther@suse.de>
5877         PR tree-optimization/72772
5878         * cfgloopmanip.c (create_preheader): Use split_edge if there
5879         is a single loop entry, avoiding degenerate PHIs.
5881 2016-08-11  Richard Biener  <rguenther@suse.de>
5883         * tree-ssa-threadbackward.c (pass_data_thread_jumps): Remove
5884         unconditional TODO_cleanup_cfg.
5885         (pass_thread_jumps::execute): Initialize loops, perform a CFG
5886         cleanup only if we threaded a jump.
5888 2016-08-11  Alan Modra  <amodra@gmail.com>
5890         PR target/71680
5891         * lra-constraints.c (simplify_operand_subreg): Allow subreg
5892         mode for mem when SLOW_UNALIGNED_ACCESS if inner mode is also
5893         slow.  Emit two reloads for slow mem case, first loading in
5894         fast innermode, then converting to required mode.
5896 2016-08-10  Kelvin Nilsen  <kelvin@gcc.gnu.org>
5898         * config/rs6000/altivec.h (vec_extract_exp): New macro.
5899         (vec_extract_sig): New macro.
5900         (vec_insert_exp): New macro.
5901         (vec_test_data_class): New macro.
5902         (scalar_extract_exp): New macro.
5903         (scalar_extract_sig): New macro.
5904         (scalar_insert_exp): New macro.
5905         (scalar_test_data_class): New macro.
5906         (scalar_test_neg): New macro.
5907         (scalar_cmp_exp_gt): New macro.
5908         (scalar_cmp_exp_lt): New macro.
5909         (scalar_cmp_exp_eq): New macro.
5910         (scalar_cmp_exp_unordered): New macro.
5911         * config/rs6000/predicates.md (u7bit_cint_operand): New predicate
5912         to enforce constraint that operand is a 7-bit unsigned literal.
5913         * config/rs6000/rs6000-builtin.def (BU_P9V_64BIT_VSX_1): New macro
5914         for power9 built-ins.
5915         (BU_P9V_VSX_2): Likewise.
5916         (BU_P9V_64BIT_VSX_2): Likewise.
5917         (VSEEDP): Add scalar extract exponent support.
5918         (VSEESP): Add scalar extract signature support.
5919         (VSTDCNDP): Add scalar test negative support.
5920         (VSTDCNSP): Likewise.
5921         (VSIEDP): Add scalar insert exponent support.
5922         (VSCEDPGT): Add scalar compare exponent greater than support.
5923         (VSCEDPLT): Add scalar compare exponent less than support.
5924         (VSCEDPEQ): Add scalar compare exponent test-for-equality support.
5925         (VSCEDPUO): Add scalar compare exponent test-for-unordered support.
5926         (VSTDCDP): Add scalar test data class support.
5927         (VSTDCSP): Likewise.
5928         (VSEEDP): Add overload support for scalar extract exponent
5929         operation.
5930         (VSESDP): Add overload support for scalar extract signature
5931         operation.
5932         (VSTDCN): Add overload support for scalar test negative
5933         operation.
5934         (VSTDCNDP): Add overload support for scalar test negative
5935         operation.
5936         (VSTDCNSP): Add overload support for scalar test negative
5937         operation.
5938         (VSIEDP): Add overload support for scalar insert exponent
5939         operation.
5940         (VSTDC): Add overload support for scalar test data class
5941         operation.
5942         (VSTDCDP): Add overload support for scalar test data class
5943         operation.
5944         (VSTDCSP): Add overload support for scalar test data class
5945         opreation.
5946         (VSCEDPGT): Add overload support for scalar compare exponent
5947         greater than operation.
5948         (VSCEDPLT): Add overload support for scalar compare exponent
5949         less than operation.
5950         (VSCEDPEQ): Add overload support for scalar compare exponent
5951         test-for-equality operation.
5952         (VSCEDPUO): Add overload support for scalar compare exponent
5953         test-for-unordered operation.
5954         (VEEDP): Add vector extract exponent support.
5955         (VEESP): Likewise.
5956         (VESDP): Add vector extract significand support.
5957         (VESSP): Likewise.
5958         (VIEDP): Add vector insert exponent support.
5959         (VIESP): Likewise.
5960         (VTDCDP): Add vector test data class support.
5961         (VTDCSP): Likewise.
5962         (VES): Add overload support for vector extract significand operation.
5963         (VESDP): Likewise.
5964         (VESSP): Likewise
5965         (VEE): Add overload support for vector extract exponent operation.
5966         (VEEDP): Likewise.
5967         (VEESP): Likewise.
5968         (VTDC): Add overload support for vector test data class operation.
5969         (VTDCDP): Likewise.
5970         (VTDCSP): Likewise.
5971         (VIE): Add overload support for vector insert exponent operation.
5972         (VIEDP): Likewise.
5973         (VIESP): Likewise.
5974         * config/rs6000/rs6000-c.c (altivec_overloaded_builtins): Add
5975         overloaded binary floating point functions.
5976         (altivec_resolve_overloaded_builtin): Improve error messages to
5977         distinguish between functions not supported in the current
5978         compiler configuration and functions that were invoked with an
5979         invalid parameter combination, and include the built-in function
5980         name in both error messages.
5981         * config/rs6000/rs6000-protos.h (rs6000_overloaded_builtin_name):
5982         New prototype.
5983         * config/rs6000/rs6000.c (rs6000_overloaded_builtin_name): New
5984         function.
5985         (rs6000_expand_binop_builtin): Add check to enforce that argument
5986         2 of the test data class operations is a 7-bit unsigned literal.
5987         (rs6000_invalid_builtin): Add code to issue an error message if a
5988         built-in function that requires the power9_vector and -m32
5989         command-line options is compiled without these options.
5990         * config/rs6000/vsx.md (UNSPEC_VSX_SXEXPDP): New value.
5991         (UNSPEC_VSX_SXSIGDP): New value.
5992         (UNSPEC_VSX_SXSIGPDP): New value.
5993         (UNSPEC_VSX_SIEXPDP): New value.
5994         (UNSPEC_VSX_SCMPEXPDP): New value.
5995         (UNSPEC_VSX_STSTDC): New value.
5996         (UNSPEC_VSX_VXEXP): New value.
5997         (UNSPEC_VSX_VXSIG): New value.
5998         (UNSPEC_VSX_VIEXP): New value.
5999         (UNSPEC_VSX_VTSTDC): New value.
6000         (xsxexpdp): New insn for scalar extract exponent.
6001         (xsxsigdp): New insn for scalar extract significand.
6002         (xsiexpdp): New insn for scalar insert exponent.
6003         (xscmpexpdp_<code>): New expansion for scalar compare exponents.
6004         (*xscmpexpdp): New insn for scalar compare exponents.
6005         (xststdc<Fvsx): New expansion for both single- and
6006         double-precision scalar test data class operations.
6007         (xststdcneg<Fvsx>): New expansion for both single- and
6008         double-precision scalar test for negative value operations.
6009         (*xststdc<Fvsx>): New insn for scalar test data class
6010         operation.
6011         (xvxexp<VSs>): New insn for single- and double-precision
6012         vector extract exponent operation.
6013         (xvxsig<VSs>): New insn for single- and double-precision
6014         vector extract significand operation.
6015         (xviexp<VSs>): New insn for single- and double-precision
6016         vector insert exponent operation.
6017         (xvtstdc<VSs>): New insn for single- and double-precision
6018         vector test data class operation.
6019         * doc/extend.texi (PowerPC AltiVec Built-in Functions): Document
6020         built-in functions to represent the Power9 binary floating-point
6021         support instructions.
6023 2016-08-10  bin cheng  <bin.cheng@arm.com>
6025         * doc/sourcebuild.texi (@item vect_cond_mixed): New item.
6027 2016-08-10  Alan Lawrence  <alan.lawrence@arm.com>
6028             Renlin Li  <renlin.li@arm.com>
6029             Bin Cheng  <bin.cheng@arm.com>
6031         * config/aarch64/iterators.md (V_cmp_mixed, v_cmp_mixed): New.
6032         * config/aarch64/aarch64-simd.md (<su><maxmin>v2di3): Call
6033         gen_vcondv2div2di instead of gen_aarch64_vcond_internalv2div2di.
6034         (aarch64_vcond_internal<mode><mode>): Delete pattern.
6035         (aarch64_vcond_internal<VDQF_COND:mode><VDQF:mode>): Ditto.
6036         (vcond<v_cmp_result><mode>): Ditto.
6037         (vcond<mode><mode>): Re-implement using vec_cmp and vcond_mask.
6038         (vcondu<mode><mode>): Ditto.
6039         (vcond<v_cmp_mixed><mode>): New pattern.
6040         (vcondu<mode><v_cmp_mixed>): New pattern.
6041         (aarch64_cmtst<mode>): Revise comment using aarch64_vcond instead
6042         of aarch64_vcond_internal.
6044 2016-08-10  Alan Lawrence  <alan.lawrence@arm.com>
6045             Renlin Li  <renlin.li@arm.com>
6046             Bin Cheng  <bin.cheng@arm.com>
6048         * config/aarch64/aarch64-simd.md (vec_cmp<mode><mode>): New pattern.
6049         (vec_cmp<mode><v_cmp_result>): New pattern.
6050         (vec_cmpu<mode><mode>): New pattern.
6051         (vcond_mask_<mode><v_cmp_result>): New pattern.
6053 2016-08-10  Yuri Rumyantsev  <ysrumyan@gmail.com>
6055         PR tree-optimization/71734
6056         * tree-ssa-loop-im.c (ref_indep_loop_p): Add new argument
6057         REF_LOOP, invoke ref_indep_loop_p_1.
6058         (outermost_indep_loop): Pass LOOP argumnet where REF was defined
6059         to ref_indep_loop_p.
6060         (ref_indep_loop_p_1): Fix commentary, add argument REF_LOOP,
6061         combine it with ref_indep_lopp_p_2, update SAFELEN if only REF
6062         is inside LOOP, do not cache dpendence value for loops with
6063         non-zero SAFELEN.
6064         (ref_indep_loop_p_2): Delete function.
6065         (can_sm_ref_p): Pass LOOP as additional argument to
6066         ref_indep_loop_p.
6068 2016-08-10  Michael Meissner  <meissner@linux.vnet.ibm.com>
6070         PR target/72853
6071         * config/rs6000/rs6000.c (mem_operand_ds_form): Add check for op
6072         being an offsettable address.
6074 2016-08-10  Martin Liska  <mliska@suse.cz>
6076         PR gcov-profile/58306
6077         * tree-profile.c (gimple_init_edge_profiler): Create conditionally
6078         atomic variants of profile update functions.
6080 2016-08-10  Martin Liska  <mliska@suse.cz>
6082         Cherry picked (and modified) from google-4_7 branch
6083         2012-12-26  Rong Xu  <xur@google.com>
6084         * common.opt (fprofile-update): Add new flag.
6085         * coretypes.h: Define enum profile_update.
6086         * doc/invoke.texi: Document -fprofile-update.
6087         * gcov-io.h: Declare GCOV_TYPE_ATOMIC_FETCH_ADD and
6088         GCOV_TYPE_ATOMIC_FETCH_ADD_FN.
6089         * tree-profile.c (gimple_init_edge_profiler): Generate
6090         also atomic profiler update.
6091         (gimple_gen_edge_profiler): Likewise.
6093 2016-08-10  David Malcolm  <dmalcolm@redhat.com>
6095         * toplev.c (finalize): Set aux_info_file, asm_out_file, and
6096         stack_usage_file to NULL after fclose calls.
6098 2016-08-10  Senthil Kumar Selvaraj  <senthil_kumar.selvaraj@atmel.com>
6100         PR target/71873
6101         * reload.c (push_reload): Compute subreg_in_class for
6102         subregs of constants and plus expressions. Remove special
6103         handling of SYMBOL_REFs.
6105 2016-08-10  Alan Modra  <amodra@gmail.com>
6107         PR target/71680
6108         * config/rs6000/rs6000.h (HARD_REGNO_CALLER_SAVE_MODE): Return
6109         SImode for TARGET_E500_DOUBLE when given SImode.
6111 2016-08-09  David Wohlferd  <dw@LimeGreenSocks.com>
6113         * config/i3836/avx512fintrin.h (_mm512_cvtsepi64_epi32): Remove
6114         unused variable __O.
6116 2016-08-09  Martin Liska  <mliska@suse.cz>
6118         * doc/gcov.texi: Change _gcov_dump to __gcov_dump and
6119         _gcov_reset to __gcov_reset.
6120         * doc/gcov-tool.texi: Fix typo.
6122 2016-08-09  Martin Liska  <mliska@suse.cz>
6124         * value-prof.c (gimple_divmod_values_to_profile): Do not
6125         instrument MOD histogram if a value is not a SSA name.
6127 2016-08-09  Martin Liska  <mliska@suse.cz>
6129         * value-prof.c (dump_histogram_value): Swap pow2 and non-pow2
6130         values.
6132 2016-08-09  Renlin Li  <renlin.li@arm.com>
6134         PR middle-end/64971
6135         * calls.c (prepare_call_address): Convert funexp to Pmode when
6136         necessary.
6137         * config/aarch64/aarch64.md (sibcall): Remove fix for PR 64971.
6138         (sibcall_value): Likewise.
6140 2016-08-09  Marek Polacek  <polacek@redhat.com>
6142         PR c/7652
6143         * cselib.c (cselib_expand_value_rtx_1): Add return.
6144         * gengtype.c (dbgprint_count_type_at): Likewise.
6145         * hsa-gen.c (gen_hsa_insn_for_internal_fn_call): Likewise.
6146         * reg-stack.c (get_true_reg): Restructure to avoid fallthrough warning.
6148 2016-08-09  Martin Jambor  <mjambor@suse.cz>
6150         PR ipa/71981
6151         * ipa-polymorphic-call.c (get_dynamic_type): Bail out gracefully
6152         if instance is a MEM_REF.
6154 2016-08-09  Uros Bizjak  <ubizjak@gmail.com>
6156         PR target/72843
6157         * config/i386/i386.md (*movtf_internal): Use
6158         lra_in_progress || reload_completed instead of !can_create_pseudo_p
6159         in the insn constraint.
6160         (*movxf_internal): Ditto.
6161         (*movdf_internal): Ditto.
6162         (*movsf_internal): Ditto.
6164 2016-08-09  Bin Cheng  <bin.cheng@arm.com>
6166         PR tree-optimization/72772
6167         * tree-ssa-loop-niter.c (loop_exits_before_overflow): Check equality
6168         for expanded base.
6170 2016-08-09  Bin Cheng  <bin.cheng@arm.com>
6172         PR tree-optimization/72772
6173         * tree-ssa-loop-niter.h (simplify_using_initial_conditions): Delete
6174         parameter STOP.
6175         * tree-ssa-loop-niter.c (tree_simplify_using_condition_1): Delete
6176         parameter STOP and update calls.  Move expand_simple_operations
6177         function call from here...
6178         (simplify_using_initial_conditions): ...to here.  Delete parameter
6179         STOP.
6180         (tree_simplify_using_condition): Delete parameter STOP.
6181         * tree-scalar-evolution.c (simple_iv_with_niters): Update call to
6182         simplify_using_initial_conditions.
6184 2016-08-09  Matthew Fortune  <matthew.fortune@imgtec.com>
6186         PR c/65345
6187         * config/mips/mips.c (mips_atomic_assign_expand_fenv):
6188         Use create_tmp_var_raw instead of create_tmp_var.
6190 2016-08-09  Richard Biener  <rguenther@suse.de>
6192         * tree-ssa-threadbackward.c (profitable_jump_thread_path):
6193         Treat same SSA names related.
6195 2016-08-09  Jakub Jelinek  <jakub@redhat.com>
6197         PR tree-optimization/72824
6198         * tree-loop-distribution.c (const_with_all_bytes_same): Verify
6199         real_zerop is not negative.
6201 2016-08-09  Richard Biener  <rguenther@suse.de>
6203         PR tree-optimization/71802
6204         * tree-cfgcleanup.c (cleanup_tree_cfg_bb): Make sure to catch
6205         all merge opportunities with the predecessor.
6207 2016-08-09  Richard Biener  <rguenther@suse.de>
6209         PR ipa/68273
6210         * ipa-prop.c (ipa_modify_formal_parameters): Build
6211         parameter types with natural alignment also for the
6212         over-aligned case.
6214 2016-08-08  Andi Kleen  <ak@linux.intel.com>
6216         * tree-vrp.c (get_single_symbol): Always initialize inv and neg.
6218 2016-08-08  David Malcolm  <dmalcolm@redhat.com>
6220         PR c/64955
6221         * langhooks-def.h (LANG_HOOKS_RUN_LANG_SELFTESTS): New default
6222         do-nothing langhook.
6223         (LANG_HOOKS_INITIALIZER): Add LANG_HOOKS_RUN_LANG_SELFTESTS.
6224         * langhooks.h (struct lang_hooks): Add run_lang_selftests.
6225         * selftest-run-tests.c: Include "tree.h" and "langhooks.h".
6226         (selftest::run_tests): Call lang_hooks.run_lang_selftests.
6228 2016-08-08  David Malcolm  <dmalcolm@redhat.com>
6230         PR bootstrap/72844
6231         * input.c: Ensure that HAVE_ICONV is defined.
6233 2016-08-08  Jakub Jelinek  <jakub@redhat.com>
6235         PR middle-end/72781
6236         * omp-low.c (lower_lastprivate_clauses): Set TREE_NO_WARNING on the
6237         private vars for lastprivate and for linear iterator.
6239         PR middle-end/68762
6240         * omp-simd-clone.c: Include varasm.h.
6241         (simd_clone_create): Copy over DECL_COMDAT, DECL_WEAK, DECL_EXTERNAL,
6242         DECL_VISIBILITY, DECL_VISIBILITY_SPECIFIED, DECL_DLLIMPORT_P and for
6243         DECL_ONE_ONLY call make_decl_one_only.  Fix up spelling in comment and
6244         update function name.
6246 2016-07-29  Pitchumani Sivanupandi  <pitchumani.s@atmel.com>
6248         * config/avr/driver-avr.c (specfiles_doc_url): Remove.
6249         (avr_diagnose_devicespecs_error): Remove.
6250         (avr_devicespecs_file): Remove composing absolute path for specfile
6251         and its verbose info. Remove conditions to check specs-file,
6253 2016-08-08  Jakub Jelinek  <jakub@redhat.com>
6255         PR rtl-optimization/72821
6256         * lra-spills.c (regno_in_use_p): Don't use BLOCK_FOR_INSN on barriers,
6257         just return false for them.
6259 2016-08-08  Alan Modra  <amodra@gmail.com>
6261         PR target/72771
6262         * config/rs6000/rs6000.c (toc_relative_expr_p): Allow (lo_sum (high))
6263         toc refs created during reload.  Update function comment.
6265 2016-08-08  Alan Modra  <amodra@gmail.com>
6267         PR target/72802
6268         * config/rs6000/rs6000.md (mov<mode>_hardfloat): Sort
6269         alternatives.  Put loads first, then stores, and reg/reg moves
6270         within same class later.  Delete attr length.
6272 2016-08-08  Alan Modra  <amodra@gmail.com>
6274         PR target/72802
6275         * config/rs6000/rs6000.c (mem_operand_gpr): Remove vsx dform test.
6276         (mem_operand_ds_form): New predicate.
6277         * config/rs6000/rs6000-protos.h (mem_operand_ds_form): Declare.
6278         * config/rs6000/constraints.md (wY): Use mem_operand_df_form.
6279         * config/rs6000/predicates.md (offsettable_mem_14bit_operand): Delete.
6280         * config/rs6000/rs6000.md (f32_lm2, f32_sm2): Use wY for SF.
6281         (extendsfdf2_fpr): Replace o constraint with wY.
6283 2016-08-07  Jan Hubicka  <hubicka@ucw.cz>
6285         * tree-ssa-threadbackward.c: Include tree-inline.h
6286         (profitable_jump_thread_path): Use estimate_num_insns to estimate
6287         size of copied block; for cold paths reduce duplication.
6288         (find_jump_threads_backwards): Remove redundant tests.
6289         (pass_thread_jumps::gate): Enable for -Os.
6291 2016-08-07  Jakub Jelinek  <jakub@redhat.com>
6293         PR c/72816
6294         * stor-layout.c (layout_decl): Fix up formatting.
6295         (relayout_decl): Allow DECL to be FIELD_DECL.
6297 2016-08-07  Alan Modra  <amodra@gmail.com>
6299         * config/rs6000/rs6000.md (fix_trunc<mode>si2): Fix mode of reg.
6301 2016-08-07  Kugan Vivekanandarajah  <kuganv@linaro.org>
6303         * data-streamer-in.c (streamer_read_wide_int): New.
6304         (streamer_read_widest_int): Renamed function.
6305         * data-streamer-out.c (streamer_write_wide_int): New
6306         (streamer_write_widest_int): Renamed function.
6307         * lto-streamer-in.c (streamer_read_wi): Renamed and moved to
6308         data-stream-in.c.
6309         (input_cfg): Call renamed function.
6310         * lto-streamer-out.c (streamer_write_wi): Renamed and moved to
6311         data-stream-out.c.
6312         (output_cfg): Call renamed function.
6313         * data-streamer.h: Add declarations.
6315 2016-08-08  Prathamesh Kulkarni  <prathamesh.kulkarni@linaro.org>
6317         * tree-ssa-ccp.c (extend_mask): New param sgn.
6318         Remove ORing with wi::mask.
6319         (get_default_value): Adjust call to extend_mask to pass sign.
6320         (evaluate_stmt): Likewise.
6322 2016-08-06  Jakub Jelinek  <jakub@redhat.com>
6324         * gcov.c (handle_cycle): Use INTTYPE_MAXIMUM (int64_t) instead of
6325         INT64_MAX.
6327 2016-08-06  Prathamesh Kulkarni  <prathamesh.kulkarni@linaro.org>
6329         * match.pd ((intptr_t) x eq/ne CST to x eq/ne (typeof x) cst): Disable
6330         transform if operand's type is pointer to function or method.
6332 2016-08-05  Patrick Palka  <ppalka@gcc.gnu.org>
6334         PR tree-optimization/18046
6335         * tree-ssa-threadedge.c: Include cfganal.h.
6336         (simplify_control_statement_condition): If simplifying a
6337         GIMPLE_SWITCH, replace the index operand of the GIMPLE_SWITCH
6338         with the dominating ASSERT_EXPR before handing it off to VRP.
6339         Mention that a CASE_LABEL_EXPR may be returned.
6340         (thread_around_empty_blocks): Adjust to handle
6341         simplify_control_statement_condition() returning a
6342         CASE_LABEL_EXPR.
6343         (thread_through_normal_block): Likewise.
6344         * tree-vrp.c (simplify_stmt_for_jump_threading): Simplify
6345         a switch statement by trying to determine which case label
6346         will be taken.
6348 2016-08-05  Vladimir Makarov  <vmakarov@redhat.com>
6350         PR rtl-optimization/69847
6351         * lra-constraints.c (process_invariant_for_inheritance): Save
6352         pattern instead of src.
6353         (remove_inheritance_pseudos): Use the pattern.  Add assert.
6355 2016-08-05  David Malcolm  <dmalcolm@redhat.com>
6357         * input.c (string_concat::string_concat): New constructor.
6358         (string_concat_db::string_concat_db): New constructor.
6359         (string_concat_db::record_string_concatenation): New method.
6360         (string_concat_db::get_string_concatenation): New method.
6361         (string_concat_db::get_key_loc): New method.
6362         (class auto_cpp_string_vec): New class.
6363         (get_substring_ranges_for_loc): New function.
6364         (get_source_range_for_substring): New function.
6365         (get_num_source_ranges_for_substring): New function.
6366         (class selftest::lexer_test_options): New class.
6367         (struct selftest::lexer_test): New struct.
6368         (class selftest::ebcdic_execution_charset): New class.
6369         (selftest::ebcdic_execution_charset::s_singleton): New variable.
6370         (selftest::lexer_test::lexer_test): New constructor.
6371         (selftest::lexer_test::~lexer_test): New destructor.
6372         (selftest::lexer_test::get_token): New method.
6373         (selftest::assert_char_at_range): New function.
6374         (ASSERT_CHAR_AT_RANGE): New macro.
6375         (selftest::assert_num_substring_ranges): New function.
6376         (ASSERT_NUM_SUBSTRING_RANGES): New macro.
6377         (selftest::assert_has_no_substring_ranges): New function.
6378         (ASSERT_HAS_NO_SUBSTRING_RANGES): New macro.
6379         (selftest::test_lexer_string_locations_simple): New function.
6380         (selftest::test_lexer_string_locations_ebcdic): New function.
6381         (selftest::test_lexer_string_locations_hex): New function.
6382         (selftest::test_lexer_string_locations_oct): New function.
6383         (selftest::test_lexer_string_locations_letter_escape_1): New function.
6384         (selftest::test_lexer_string_locations_letter_escape_2): New function.
6385         (selftest::test_lexer_string_locations_ucn4): New function.
6386         (selftest::test_lexer_string_locations_ucn8): New function.
6387         (selftest::uint32_from_big_endian): New function.
6388         (selftest::test_lexer_string_locations_wide_string): New function.
6389         (selftest::uint16_from_big_endian): New function.
6390         (selftest::test_lexer_string_locations_string16): New function.
6391         (selftest::test_lexer_string_locations_string32): New function.
6392         (selftest::test_lexer_string_locations_u8): New function.
6393         (selftest::test_lexer_string_locations_utf8_source): New function.
6394         (selftest::test_lexer_string_locations_concatenation_1): New
6395         function.
6396         (selftest::test_lexer_string_locations_concatenation_2): New
6397         function.
6398         (selftest::test_lexer_string_locations_concatenation_3): New
6399         function.
6400         (selftest::test_lexer_string_locations_macro): New function.
6401         (selftest::test_lexer_string_locations_stringified_macro_argument):
6402         New function.
6403         (selftest::test_lexer_string_locations_non_string): New function.
6404         (selftest::test_lexer_string_locations_long_line): New function.
6405         (selftest::test_lexer_char_constants): New function.
6406         (selftest::input_c_tests): Call the new test functions once per
6407         case within the line_table test matrix.
6408         * input.h (struct string_concat): New struct.
6409         (struct location_hash): New struct.
6410         (class string_concat_db): New class.
6411         * substring-locations.h: New header.
6413 2016-08-05  Patrick Palka  <ppalka@gcc.gnu.org>
6415         PR tree-optimization/72810
6416         * tree-vrp.c (simplify_switch_using_ranges): Avoid changing
6417         the type of the case labels when truncating.
6419 2016-08-05  James Greenhalgh  <james.greenhalgh@arm.com>
6421         PR Target/72819
6422         * config/aarch64/aarch64.h (aarch64_fp16_type_node): Declare.
6423         (aarch64_fp16_ptr_type_node): Likewise.
6424         * config/aarch64/aarch64-simd-builtins.c
6425         (aarch64_fp16_ptr_type_node): Define.
6426         (aarch64_init_fp16_types): New, refactored out of...
6427         (aarch64_init_builtins): ...here, update to call
6428         aarch64_init_fp16_types.
6429         * config/aarch64/aarch64.c (aarch64_gimplify_va_arg_expr): Handle
6430         HFmode.
6431         (aapcs_vfp_sub_candidate): Likewise.
6433 2016-08-05  Martin Liska  <mliska@suse.cz>
6434             Joshua Cranmer  <Pidgeot18@gmail.com>
6436         * gcov.c (line_t::has_block): New function.
6437         (enum loop_type): New enum.
6438         (handle_cycle): New function.
6439         (unblock): Likewise.
6440         (circuit): Likewise.
6441         (get_cycles_count): Likewise.
6442         (accumulate_line_counts): Use new loop detection algorithm.
6444 2016-08-05  Martin Liska  <mliska@suse.cz>
6446         * gcov.c (output_intermediate_file): Rename
6447         function_info::line_next to next_file_fn.
6448         (process_file): Likewise.
6449         (read_graph_file): Likewise.
6450         (accumulate_line_counts): Likewise.
6451         (output_lines): Likewise.
6453 2016-08-05  Richard Biener  <rguenther@suse.de>
6455         * tree-ssa-threadupdate.c (thread_block_1): Remove unnecessary
6456         restriction on threading to a loop header.
6458 2016-08-05  Richard Biener  <rguenther@suse.de>
6460         * tree-cfgcleanup.c (tree_forwarder_block_p): Use bb_loop_header_p.
6461         * cfghooks.c (force_nonfallthru): If we ended up splitting a latch
6462         adjust loop info accordingly.
6464 2016-08-05  Kugan Vivekanandarajah  <kuganv@linaro.org>
6466         * tree-vrp.c (extract_range_basic): Check cfun->after_inlining
6467         before folding call to __builtin_constant_p with parameters to false.
6469 2016-08-05  Alan Modra  <amodra@gmail.com>
6471         * config/rs6000/rs6000.c (rs6000_preferred_reload_class): Delete
6472         code accidentally committed 2016-05-02 providing class when given
6473         NO_REGS.
6475 2016-08-04  Patrick Palka  <ppalka@gcc.gnu.org>
6477         * tree-vrp.c (simplify_switch_using_ranges): Try to truncate
6478         the case label ranges that partially overlap with OP's value
6479         range.
6481 2016-08-04  Uros Bizjak  <ubizjak@gmail.com>
6483         PR target/72805
6484         * config/i386/avx512fintrin.h (_mm512_cmp_epi32_mask) [!__OPTIMIZE__]:
6485         Cast builtin function result to __mmask16 instead of __mmask8.
6486         (_mm512_cmp_epu32_mask) [!__OPTIMIZE__]: Ditto.
6487         (_mm512_mask_cmp_epi32_mask) [!__OPTIMIZE__]: Ditto.
6488         (_mm512_mask_cmp_epu32_mask) [!__OPTIMIZE__]: Ditto.
6490 2016-08-04  David Malcolm  <dmalcolm@redhat.com>
6492         * selftest.h (ASSERT_TRUE): Reimplement in terms of...
6493         (ASSERT_TRUE_AT): New macro.
6494         (ASSERT_FALSE): Reimplement in terms of...
6495         (ASSERT_FALSE_AT): New macro.
6496         (ASSERT_STREQ_AT): Fix typo in comment.
6498 2016-08-04  Patrick Palka  <ppalka@gcc.gnu.org>
6500         * gimple.c (preprocess_case_label_vec_for_gimple): When the case
6501         labels are exhaustive, designate the label with the widest
6502         range to be the default label.
6504 2016-08-04  Andrew Pinski  <apinski@cavium.com>
6506         * config/aarch64/aarch64.c (thunderx_vector_cost): New variable.
6507         (thunderx_tunings): Use thunderx_vector_cost instead of
6508         generic_vector_cost.
6510 2016-08-04  Martin Liska  <mliska@suse.cz>
6512         * gcov.c (main): Fix GNU coding style.
6513         (output_intermediate_file): Likewise.
6514         (process_file): Likewise.
6515         (generate_results): Likewise.
6516         (release_structures): Likewise.
6517         (create_file_names): Likewise.
6518         (find_source): Likewise.
6519         (read_graph_file): Likewise.
6520         (find_exception_blocks): Likewise.
6521         (canonicalize_name): Likewise.
6522         (make_gcov_file_name): Likewise.
6523         (mangle_name): Likewise.
6524         (accumulate_line_counts): Likewise.
6525         (output_branch_count): Likewise.
6526         (read_line): Likewise.
6528 2016-08-04  Bernd Edlinger  <bernd.edlinger@hotmail.de>
6530         PR rtl-optimization/71779
6531         * emit-rtl.c (set_reg_attrs_from_value): Only propagate REG_POINTER,
6532         if the value was sign-extended according to POINTERS_EXTEND_UNSIGNED
6533         or if it was truncated.
6535         PR rtl-optimization/70903
6536         * cse.c (cse_insn): If DEST is a paradoxical SUBREG, don't record DEST.
6538 2016-08-04  Kugan Vivekanandarajah  <kuganv@linaro.org>
6540         * tree-inline.c (remap_ssa_name): Check for POINTER_TYPE_P before
6541         accessing SSA_NAME_PTR_INFO.
6543 2016-08-04  Georg-Johann Lay  <avr@gjlay.de>
6545         PR 70677
6546         * common/config/avr/avr-common.c (avr_option_optimization_table)
6547         [OPT_LEVELS_ALL]: Turn off -fcaller-saves.
6549 2016-08-04  Georg-Johann Lay  <avr@gjlay.de>
6551         PR 55181
6552         * config/avr/avr.md: New pattern to work around do_store_flag
6553         generating shift instructions for bit extractions.
6555 2016-08-04  Kugan Vivekanandarajah  <kuganv@linaro.org>
6557         * tree-vrp.c (set_value_range): Use vrp_equiv_obstack with
6558         BITMAP_ALLOC.
6559         (add_equivalence): Likewise.
6560         (get_value_range): Allocate value range with vrp_value_range_pool.
6561         (vrp_initialize): Initialize vrp_equiv_obstack for equiv allocation.
6562         (vrp_finalize): Relase vrp_equiv_obstack and vrp_value_range_pool.
6564 2016-08-03  Peter Bergner  <bergner@vnet.ibm.com>
6566         * config/rs6000/rs6000.c (rs6000_option_override_internal): Make LRA
6567         the default for the rs6000 port.
6569 2016-08-03  Bernd Edlinger  <bernd.edlinger@hotmail.de>
6571         PR middle-end/71876
6572         * calls.c (special_function_p): Remove special handling of
6573         "setjmp_syscall", "qsetjmp", "longjmp", "siglongjmp" and the
6574         prefix "__x".  Recognize "savectx", "vfork" and "getcontext" only
6575         without prefix.  Remove potentially unsafe ECF_LEAF and ECF_NORETURN.
6577 2016-08-03  Vladimir Makarov  <vmakarov@redhat.com>
6579         PR middle-end/72778
6580         * lra-spills.c (regno_in_use_p): Check bb and regno modification.
6581         Don't stop on regular insns.
6583 2016-08-03  Nathan Sidwell  <nathan@codesourcery.com>
6585         * config/nvptx/nvptx.c (nvptx_declare_function_name): Round frame
6586         size to DImode boundary.
6587         (nvptx_propagate): Likewise.
6589 2016-08-03  Alan Modra  <amodra@gmail.com>
6591         * config/rs6000/rs6000.h (SLOW_UNALIGNED_ACCESS): Make scalar
6592         float access depend on TARGET_EFFICIENT_UNALIGNED_VSX.
6593         * config/rs6000/rs6000.opt (-mefficient-unaligned-vsx): Renamed
6594         from -mefficient-unaligned-vector.  Note that this affects fp too.
6596 2016-08-03  Alan Modra  <amodra@gmail.com>
6598         * config/rs6000/rs6000.c (rs6000_rtx_costs): Make unaligned mem
6599         cost more.
6601 2016-08-03  Alan Modra  <amodra@gmail.com>
6603         * config/rs6000/rs6000.md (fix_trunc<mode>si2): Force source operand
6604         to a reg.  Localize vars.
6606 2016-08-03  Alan Modra  <amodra@gmail.com>
6608         * config/rs6000/rs6000.opt: Remove negatives from help strings
6609         and comments.
6611 2016-08-03  Alan Modra  <amodra@gmail.com>
6613         * config/rs6000/rs6000.c (rs6000_secondary_reload_direct_move):
6614         Delete duplicated code.
6616 2016-08-02  Vladimir Makarov  <vmakarov@redhat.com>
6618         PR middle-end/72778
6619         * lra-spills.c (regno_in_use_p): New.
6620         (lra_final_code_change): Use it.
6622 2016-08-02  Vladimir Makarov  <vmakarov@redhat.com>
6624         PR rtl-optimization/69847
6625         * lra-int.h (struct lra-reg): Use restore_rtx instead of
6626         restore_regno.
6627         (lra_rtx_hash): New.
6628         * lra.c (initialize_lra_reg_info_element): Use restore_rtx instead
6629         of restore_regno.
6630         (lra_rtx_hash): Rename and move lra-remat.c::rtx_hash.
6631         * lra-remat.c (rtx_hash): Rename and Move to lra.c.
6632         * lra-spills.c (lra_final_code_change): Don't delete insn when the
6633         next insn is USE with the same reg as the current insn source.
6634         * lra-constraints.c (curr_insn_transform): Use restore_rtx instead
6635         of restore_regno.
6636         (lra_constraints_init): Call initiate_invariants.
6637         (lra_constraints_finish): Call finish_invariants.
6638         (struct invariant, invariant_t, invariant_ptr_t): New.
6639         (const_invariant_ptr_t, invariants, invariants_pool): New.
6640         (invariant_table, invariant_hash, invariant_eq_p): New.
6641         (insert_invariant, initiate_invariants, finish_invariants): New.
6642         (clear_invariants, invalid_invariant_regs): New.
6643         (inherit_reload_reg, split_reg, fix_bb_live_info): Use restore_rtx
6644         instead of restore_regno.
6645         (invariant_p, process_invariant_for_inheritance): New.
6646         (inherit_in_ebb): Implement invariant inheritance.
6647         (lra_inheritance): Initialize and finalize invalid_invariant_regs.
6648         (remove_inheritance_pseudos): Implement undoing invariant
6649         inheritance.
6650         (undo_optional_reloads, lra_undo_inheritance): Use restore_rtx
6651         instead of restore_regno.
6652         * lra-assigns.c (regno_live_length): New.
6653         (reload_pseudo_compare_func): Use regno_live_length.
6654         (assign_by_spills): Use restore_rtx instead of restore_regno.
6655         (lra_assign): Ditto.  Initiate regno_live_length.
6657 2016-02-08  James Greenhalgh  <james.greenhalgh@arm.com>
6659         * config/aarch64/arm_neon.h (vminnm_f64): Add back missing 'f' from
6660         __builtin_aarch64_fmindf.
6662 2016-08-02  Bin Cheng  <bin.cheng@arm.com>
6664         PR tree-optimization/34114
6665         * tree-ssa-loop-niter.c (number_of_iterations_ne): Prove no-overflow
6666         information for more control IVs.
6668 2016-08-02  Bin Cheng  <bin.cheng@arm.com>
6670         PR tree-optimization/34114
6671         * fold-const.c (multiple_of_p): Improve MULT_EXPR, PLUS_EXPR,
6672         PLUS_EXPR case.  Handle SSA_NAME case.
6674 2016-08-02  Tamar Christina  <tamar.christina@arm.com>
6676         * config/aarch64/aarch64-simd-builtins.def
6677         (__builtin_aarch64_fmindf): Change BUILTIN_VDQF to BUILTIN_VDQF_DF.
6678         (__builtin_aarch64_fmaxdf): Likewise.
6679         (__builtin_aarch64_smin_nandf): Likewise.
6680         (__builtin_aarch64_smax_nandf): Likewise.
6681         * config/aarch64/aarch64-simd.md (<fmaxmin><mode>3): Remove.
6682         * config/aarch64/aarch64.md (<fmaxmin><mode>3): Rename to...
6683         (<fmaxmin><mode>3): ...this.
6684         * config/aarch64/arm_neon.h (vmaxnm_f64): New.
6685         (vminnm_f64): Likewise.
6686         (vmin_f64): Likewise.
6687         (vmax_f64): Likewise.
6688         * config/aarch64/iterators.md (FMAXMIN): Merge with...
6689         (FMAXMIN_UNS): ...this.
6690         (fmaxmin): Merged with
6691         (fmaxmin_op): ...this...
6692         (maxmin_uns_op): ...in to this.
6694 2016-08-01  Michael Meissner  <meissner@linux.vnet.ibm.com>
6696         * config/rs6000/rs6000-c.c (altivec_resolve_overloaded_builtin):
6697         Add support for vec_extract on vector float, vector int, vector
6698         short, and vector char vector types.
6699         * config/rs6000/rs6000.c (rs6000_expand_vector_extract): Add
6700         vector float, vector int, vector short, and vector char
6701         optimizations on 64-bit ISA 2.07 systems for both constant and
6702         variable element numbers.
6703         (rs6000_split_vec_extract_var): Likewise.
6704         * config/rs6000/vsx.md (vsx_xscvspdp_scalar2): Allow SFmode to be
6705         Altivec registers on ISA 2.07 and above.
6706         (vsx_extract_v4sf): Delete alternative that hard coded element 0,
6707         which never was matched due to the split occuring before register
6708         allocation (and the code would not have worked on little endian
6709         systems if it did match).  Allow extracts to go to the Altivec
6710         registers if ISA 2.07 (power8).  Change from using "" around the
6711         C++ code to using {}'s.
6712         (vsx_extract_v4sf_<mode>_load): New insn to optimize vector float
6713         vec_extracts when the vector is in memory.
6714         (vsx_extract_v4sf_var): New insn to optimize vector float
6715         vec_extracts when the element number is variable on 64-bit ISA
6716         2.07 systems.
6717         (vsx_extract_<mode>, VSX_EXTRACT_I iterator): Add optimizations
6718         for 64-bit ISA 2.07 as well as ISA 3.0.
6719         (vsx_extract_<mode>_p9, VSX_EXTRACT_I iterator): Likewise.
6720         (vsx_extract_<mode>_p8, VSX_EXTRACT_I iterator): Likewise.
6721         (vsx_extract_<mode>_load, VSX_EXTRACT_I iterator): New insn to
6722         optimize vector int, vector short, and vector char vec_extracts
6723         when the vector is in memory.
6724         (vsx_extract_<mode>_var, VSX_EXTRACT_I iterator): New insn to
6725         optimize vector int, vector short, and vector char vec_extracts
6726         when the element number is variable.
6728 2016-08-01  Georg-Johann Lay  <avr@gjlay.de>
6730         PR target/71948
6731         * config/avr/avr.c (AVR_SYMBOL_FLAG_TINY_PM): Use a value that
6732         does not overlap with other symbol flags.
6734 2016-08-01  Wilco Dijkstra  <wdijkstr@arm.com>
6736         * config/aarch64/aarch64.h (aarch64_frame):
6737         Remove padding0 and hardfp_offset.  Add locals_offset,
6738         initial_adjust, callee_adjust, callee_offset and final_adjust.
6739         * config/aarch64/aarch64.c (aarch64_layout_frame):
6740         Remove unused padding0 and hardfp_offset initializations.
6741         Choose frame layout and set frame variables accordingly.
6742         Use INVALID_REGNUM instead of FIRST_PSEUDO_REGISTER.
6743         (aarch64_push_regs): Use INVALID_REGNUM, not FIRST_PSEUDO_REGISTER.
6744         (aarch64_pop_regs): Likewise.
6745         (aarch64_expand_prologue): Remove all decision code, just emit
6746         prolog according to frame variables.
6747         (aarch64_expand_epilogue): Remove all decision code, just emit
6748         epilog according to frame variables.
6749         (aarch64_initial_elimination_offset): Use offset to local/arg area.
6751 2015-08-01  H.J. Lu  <hongjiu.lu@intel.com>
6753         PR target/72748
6754         * config/i386/i386.c (timode_scalar_chain::convert_insn): Call
6755         fix_debug_reg_uses after changing source register mode to
6756         V1TImode if source register is undefined.
6758 2015-08-01  Alan Hayward  <alan.hayward@arm.com>
6760         PR tree-optimization/71818
6761         * tree-vect-loop-manip.c (vect_can_advance_ivs_p): Don't advance IVs
6762         with non invariant evolutions
6764 2016-08-01  Georg-Johann Lay  <avr@gjlay.de>
6766         PR target/72767
6767         * config/avr/avr.md (length) [branch]: Correct insn length
6768         attribute for forward branches.
6770 2016-08-01  Georg-Johann Lay  <avr@gjlay.de>
6772         * doc/extend.texi (AVR Built-in Functions): Document
6773         __builtin_avr_nops.
6774         * config/avr/builtins.def (NOPS): New.
6775         * config/avr/avr.c (avr_expand_nops): New static function.
6776         (avr_expand_builtin): Use it to handle AVR_BUILTIN_NOPS.
6778 2016-08-01  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
6780         * config/aarch64/aarch64.c (aarch64_classify_address): Use DImode when
6781         performing aarch64_offset_7bit_signed_scaled_p check for TImode LDP/STP
6782         addresses.
6784 2016-08-01  Virendra Pathak  <virendra.pathak@broadcom.com>
6786         * config/aarch64/aarch64.c (vulcan_tunings): Update
6787         vulcan L1 cache_line_size.
6789 2016-07-30  Michael Meissner  <meissner@linux.vnet.ibm.com>
6791         * config/rs6000/rs6000-protos.h (rs6000_adjust_vec_address): New
6792         function that takes a vector memory address, a hard register, an
6793         element number and a temporary base register, and recreates an
6794         address that points to the appropriate element within the vector.
6795         * config/rs6000/rs6000.c (rs6000_adjust_vec_address): Likewise.
6796         (rs6000_split_vec_extract_var): Add support for the target of a
6797         vec_extract with variable element number being a scalar memory
6798         location.
6799         (rtx_is_swappable_p): VLSO insns (UNSPEC_VSX_VSLOW) are not
6800         swappable.
6801         * config/rs6000/vsx.md (vsx_extract_<mode>_load): Replace
6802         vsx_extract_<mode>_load insn with a new insn that optimizes
6803         storing either element to a memory location, using scratch
6804         registers to pick apart the vector and reconstruct the address.
6805         (vsx_extract_<P:mode>_<VSX_D:mode>_load): Likewise.
6806         (vsx_extract_<mode>_store): Rework alternatives to more correctly
6807         support Altivec registers.  Add support for ISA 3.0 Altivec d-form
6808         store instruction.
6809         (vsx_extract_<mode>_var): Add support for extracting a variable
6810         element number from memory.
6812 2016-07-29  Georg-Johann Lay  <avr@gjlay.de>
6814         * config/avr/avr.c (avr_out_compare): Use const0_rtx instead of 0
6815         when testing for compares against constants of the form 0xabab.
6817 2016-07-29  Bin Cheng  <bin.cheng@arm.com>
6819         PR tree-optimization/57558
6820         * tree-vect-loop-manip.c (vect_create_cond_for_niters_checks): New
6821         function.
6822         (vect_loop_versioning): Support versioning with niter assumptions.
6823         * tree-vect-loop.c (tree-ssa-loop.h): Include header file.
6824         (vect_get_loop_niters): New parameter.  Reimplement to support
6825         assumptions in loop niter info.
6826         (vect_analyze_loop_form_1, vect_analyze_loop_form): Ditto.
6827         (new_loop_vec_info): Init LOOP_VINFO_NITERS_ASSUMPTIONS.
6828         (vect_estimate_min_profitable_iters): Use LOOP_REQUIRES_VERSIONING.
6829         Support loop versioning for niters.
6830         * tree-vectorizer.c (tree-ssa-loop-niter.h): Include header file.
6831         (vect_free_loop_info_assumptions): New function.
6832         (vectorize_loops): Free loop niter info for loops with flag
6833         LOOP_F_ASSUMPTIONS set if vectorization failed.
6834         * tree-vectorizer.h (struct _loop_vec_info): New field
6835         num_iters_assumptions.
6836         (LOOP_VINFO_NITERS_ASSUMPTIONS): New macro.
6837         (LOOP_REQUIRES_VERSIONING_FOR_NITERS): New macro.
6838         (LOOP_REQUIRES_VERSIONING): New macro.
6839         (vect_free_loop_info_assumptions): New decl.
6841 2016-07-29  Bin Cheng  <bin.cheng@arm.com>
6843         * cfgloop.h (struct loop): New field constraints.
6844         (LOOP_C_INFINITE, LOOP_C_FINITE): New macros.
6845         (loop_constraint_set, loop_constraint_clr, loop_constraint_set_p): New
6846         functions.
6847         * cfgloop.c (alloc_loop): Initialize new field.
6848         * cfgloopmanip.c (copy_loop_info): Copy constraints.
6849         * tree-ssa-loop-niter.c (number_of_iterations_exit_assumptions):
6850         Adjust niter analysis wrto loop constraints.
6851         * doc/loop.texi (@node Number of iterations): Add description for loop
6852         constraints.
6854 2016-07-29  Marek Polacek  <polacek@redhat.com>
6856         PR c/7652
6857         * config/i386/i386.c (ix86_expand_args_builtin): Add break.
6858         (ix86_expand_round_builtin): Likewise.
6860 2016-07-29  Segher Boessenkool  <segher@kernel.crashing.org>
6861             Georg-Johann Lay  <avr@gjlay.de>
6863         PR rtl-optimization/71976
6864         * combine.c (get_last_value): Return 0 if the argument for which
6865         the function is called has a wider mode than the recorded value.
6867 2016-07-29  Marek Polacek  <polacek@redhat.com>
6869         PR c/7652
6870         * config/rs6000/rs6000.c (altivec_expand_ld_builtin): Add break.
6871         (altivec_expand_st_builtin): Likewise.
6873 2016-07-29  Georg-Johann Lay  <avr@gjlay.de>
6875         * config/avr/avr.md (addqi3) [cc]: Revert glitch in insn attribute
6876         introduced in r238381.
6878 2016-07-29  Kugan Vivekanandarajah  <kuganv@linaro.org>
6880         PR middle-end/68217
6881         * tree-vrp.c (extract_range_from_binary_expr_1): In case of signed
6882         & sign-bit-CST, generate [-INF, 0] instead of [-INF, INF].
6884 2016-07-28  Michael Meissner  <meissner@linux.vnet.ibm.com>
6886         * config/rs6000/rs6000-protos.h (rs6000_split_vec_extract_var):
6887         New declaration.
6888         * config/rs6000/rs6000-c.c (altivec_resolve_overloaded_builtin):
6889         Add support for vec_extract of vector double or vector long having
6890         a variable element number on 64-bit ISA 2.07 systems or newer.
6891         * config/rs6000/rs6000.c (rs6000_expand_vector_extract):
6892         Likewise.
6893         (rs6000_split_vec_extract_var): New function to split a
6894         vec_extract built-in function with variable element number.
6895         (rtx_is_swappable_p): Variable vec_extracts and shifts are not
6896         swappable.
6897         * config/rs6000/vsx.md (UNSPEC_VSX_VSLO): New unspec.
6898         (UNSPEC_VSX_EXTRACT): Likewise.
6899         (vsx_extract_<mode>, VSX_D iterator): Fix constraints to allow
6900         direct move instructions to be generated on 64-bit ISA 2.07
6901         systems and newer, and to take advantage of the ISA 3.0 MFVSRLD
6902         instruction.
6903         (vsx_vslo_<mode>): New insn to do VSLO on V2DFmode and V2DImode
6904         arguments for vec_extract variable element.
6905         (vsx_extract_<mode>_var, VSX_D iterator): New insn to support
6906         vec_extract with variable element on V2DFmode and V2DImode
6907         vectors.
6908         * config/rs6000/rs6000.h (TARGET_VEXTRACTUB): Remove
6909         -mupper-regs-df requirement, since it isn't needed.
6910         (TARGET_DIRECT_MOVE_64BIT): New macro to say whether we can
6911         do direct moves on 64-bit systems, which allows optimization of
6912         vec_extract on 64-bit ISA 2.07 systems and newer.
6914 2016-07-28  Kristina Martsenko  <kristina.martsenko@arm.com>
6915 2016-07-28  Wilco Dijkstra  <wdijkstr@arm.com>
6917          * config/aarch64/aarch64.md
6918         (zero_extend<SHORT:mode><GPI:mode>2_aarch64): Change output
6919         statement and type.
6920         (<optab>qihi2_aarch64): Likewise, and split into two.
6921         (extendqihi2_aarch64): New.
6922         (zero_extendqihi2_aarch64): New.
6923         * config/aarch64/iterators.md (ldrxt): Remove.
6924         * config/aarch64/aarch64.c (aarch64_rtx_costs): Change cost of
6925         uxtb/uxth.
6927 2016-07-28  Kristina Martsenko  <kristina.martsenko@arm.com>
6929         * config/aarch64/aarch64.c (aarch64_rtx_costs): Fix cost of zero extend.
6931 2016-07-28  Wilco Dijkstra  <wdijkstr@arm.com>
6933         * config/aarch64/aarch64.c (aarch64_pushwb_pair_reg): Rename.
6934         (aarch64_push_reg): New function to push 1 or 2 registers.
6935         (aarch64_pop_reg): New function to pop 1 or 2 registers.
6936         (aarch64_expand_prologue): Use aarch64_push_regs.
6937         (aarch64_expand_epilogue): Use aarch64_pop_regs.
6939 2016-07-28  Yuri Rumyantsev  <ysrumyan@gmail.com>
6941         PR tree-optimization/71734
6942         * tree-ssa-loop-im.c (ref_indep_loop_p_1): Pass value of safelen
6943         attribute instead of REF_LOOP and use it.
6944         (ref_indep_loop_p_2): Use SAFELEN argument instead of REF_LOOP and
6945         set it for Loops having non-zero safelen attribute.
6946         (ref_indep_loop_p): Pass zero as initial value for safelen.
6948 2016-07-28  Ilya Enkovich  <ilya.enkovich@intel.com>
6950         PR middle-end/72657
6951         PR target/72683
6952         * tree-chkp.c (chkp_retbnd_call_by_val): Check for instrumentation
6953         call using chkp_gimple_call_builtin_p.
6954         (chkp_copy_bounds_for_assign): Likewise.
6956 2016-07-28  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
6958         * config/alpha/alpha.c (alpha_adjust_cost): Adjust.
6959         * config/arm/arm-protos.h (struct tune_params): Likewise.
6960         * config/arm/arm.c (xscale_sched_adjust_cost): Likewise.
6961         (cortex_a9_sched_adjust_cost): Likewise.
6962         (fa726te_sched_adjust_cost): Likewise.
6963         (arm_adjust_cost): Likewise.
6964         * config/bfin/bfin.c (bfin_adjust_cost): Likewise.
6965         * config/c6x/c6x.c (c6x_adjust_cost): Likewise.
6966         * config/epiphany/epiphany.c (epiphany_adjust_cost): Likewise.
6967         * config/i386/i386.c (ix86_adjust_cost): Likewise.
6968         * config/ia64/ia64.c: Likewise.
6969         * config/m68k/m68k.c: Likewise.
6970         * config/mep/mep.c (mep_adjust_cost): Likewise.
6971         * config/microblaze/microblaze.c (microblaze_adjust_cost):
6972         * Likewise.
6973         * config/mips/mips.c (mips_adjust_cost): Likewise.
6974         * config/mn10300/mn10300.c (mn10300_adjust_sched_cost):
6975         * Likewise.
6976         * config/pa/pa.c (pa_adjust_cost): Likewise.
6977         * config/rs6000/rs6000.c (rs6000_adjust_cost): Likewise.
6978         (rs6000_debug_adjust_cost): Likewise.
6979         * config/sh/sh.c (sh_adjust_cost): Likewise.
6980         * config/sparc/sparc.c (supersparc_adjust_cost): Likewise.
6981         (hypersparc_adjust_cost): Likewise.
6982         (sparc_adjust_cost): Likewise.
6983         * config/spu/spu.c (spu_sched_adjust_cost): Likewise.
6984         * config/tilegx/tilegx.c (tilegx_sched_adjust_cost): Likewise.
6985         * config/tilepro/tilepro.c (tilepro_sched_adjust_cost):
6986         * Likewise.
6987         * config/visium/visium.c (visium_adjust_cost): Likewise.
6988         * doc/tm.texi: Regenerate.
6989         * haifa-sched.c (dep_cost_1): Adjust.
6990         * target.def: Merge adjust_cost and adjust_cost_2.
6992 2016-07-28  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
6994         * haifa-sched.c (add_to_speculative_block): Make twins a vector.
6996 2016-07-28  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
6998         * store-motion.c (struct st_expr): Make pattern_regs a vector.
6999         (extract_mentioned_regs): Append to a vector instead of
7000         returning a rtx_expr_list.
7001         (st_expr_entry): Adjust.
7002         (free_st_expr_entry): Likewise.
7003         (store_ops_ok): Likewise.
7004         (store_killed_in_insn): Likewise.
7005         (find_moveable_store): Likewise.
7007 2016-07-28  Martin Liska  <mliska@suse.cz>
7009         PR gcov-profile/68025
7010         * tree-profile.c (tree_profiling): Respect
7011         no_profile_instrument_function attribute.
7012         * doc/extend.texi: Document no_profile_instrument_function
7013         attribute.
7015 2016-07-28  Martin Liska  <mliska@suse.cz>
7017         PR rtl-optimization/70944
7018         * combine.c (make_compound_operation):
7019         Do not allow make_compound_operation for vector mode
7021 2016-07-28  Kugan Vivekanandarajah  <kuganv@linaro.org>
7023         PR middle-end/71994
7024         * tree-ssa-reassoc.c (maybe_optimize_range_tests): Check tcc_comparison
7025          before calling get_ops.
7027 2016-07-27  Bernd Edlinger  <bernd.edlinger@hotmail.de>
7029         * defaults.h (LOG2_BITS_PER_UNIT): Move from here...
7030         * tree.h (LOG2_BITS_PER_UNIT): ...to here.
7031         (BITS_PER_UNIT_LOG): Remove.
7032         (int_bit_position): Use LOG2_BITS_PER_UNIT instead of BITS_PER_UNIT_LOG.
7033         * expr.c (expand_assignment): Likewise.
7034         * stor-layout.c (initialize_sizetypes): Likewise.
7036 2016-07-27  Michael Meissner  <meissner@linux.vnet.ibm.com>
7038         * config/rs6000/vector.md (vec_extract<mode>): Change the calling
7039         signature of rs6000_expand_vector_extract so that the element
7040         number is a RTX instead of a constant integer.
7041         * config/rs6000/rs6000-protos.h (rs6000_expand_vector_extract):
7042         Likewise.
7043         * config/rs6000/rs6000.c (rs6000_expand_vector_extract): Likewise.
7044         (altivec_expand_vec_ext_builtin): Likewise.
7045         * config/rs6000/altivec.md (reduc_plus_scal_<mode>): Likewise.
7046         * config/rs6000/vsx.md (vsx_extract_<mode>): Fix spelling of the
7047         MFVSRLD instruction.
7049 2016-07-27  David Malcolm  <dmalcolm@redhat.com>
7051         * input.c (get_pure_location): Move here from tree.c.
7052         (make_location): Likewise.  Add header comment.
7053         (selftest::test_accessing_ordinary_linemaps): Verify
7054         pure_location_p, make_location, get_location_from_adhoc_loc and
7055         get_range_from_loc.
7056         * input.h (get_pure_location): Move declaration here from tree.h.
7057         (get_finish): Likewise for inline function.
7058         (make_location): Likewise for declaration.
7059         * tree.c (get_pure_location): Move to input.c.
7060         (make_location): Likewise.
7061         * tree.h (get_pure_location): Move declaration to tree.h.
7062         (get_finish): Likewise for inline function.
7063         (make_location): Likewise for declaration.
7065 2016-07-27  Prathamesh Kulkarni  <prathamesh.kulkarni@linaro.org>
7067         PR middle-end/71078
7068         * match.pd (x / abs(x) -> copysign(1.0, x)): New pattern.
7070 2016-07-27  David Malcolm  <dmalcolm@redhat.com>
7072         * system.h (STATIC_ASSERT): Use static_assert if building
7073         with C++11 onwards.
7075 2016-07-27  Richard Biener  <rguenther@suse.de>
7077         PR tree-optimization/72517
7078         * tree-vect-data-refs.c (vect_analyze_data_ref_dependences):
7079         Revert change to not compute read-read dependences.
7081 2016-07-27  Richard Biener  <rguenther@suse.de>
7083         * predict.c (set_even_probabilities): Make nedges unsigned.
7085 2016-07-27  Martin Liska  <mliska@suse.cz>
7087         * predict.c (set_even_probabilities): Handle unlikely edges.
7088         (combine_predictions_for_bb): Likewise.
7090 2016-07-26  Michael Meissner  <meissner@linux.vnet.ibm.com>
7092         PR target/71869
7093         * config/rs6000/rs6000.c (rs6000_generate_compare): Rework
7094         __float128 support when we don't have hardware support, so that
7095         the IEEE built-in functions like isgreater, first call __unordkf3
7096         to make sure neither operand is a NaN, and if both operands are
7097         ordered, do the normal comparison.
7099 2016-07-26  Patrick Palka  <ppalka@gcc.gnu.org>
7101         * tree-vrp.c (dump_asserts_for): Print loc->expr instead of
7102         name.
7103         (extract_code_and_val_from_cond_with_ops): Verify that name is
7104         either cond_op0 or cond_op1.
7106 2016-07-26  Patrick Palka  <ppalka@gcc.gnu.org>
7108         PR tree-optimization/18046
7109         * genmodes.c (emit_mode_size_inline): Emit an assert that
7110         verifies that mode is a valid array index.
7111         (emit_mode_nuinits_inline): Likewise.
7112         (emit_mode_inner_inline): Likewise.
7113         (emit_mode_unit_size_inline): Likewise.
7114         (emit_mode_unit_precision_inline): Likewise.
7115         * tree-vrp.c: Include params.h.
7116         (find_switch_asserts): Register edge assertions for the default
7117         label which correspond to the anti-ranges of each case label.
7118         * params.def (PARAM_MAX_VRP_SWITCH_ASSERTIONS): New.
7119         * doc/invoke.texi: Document it.
7121 2016-07-26  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
7123         * gimple-ssa-strength-reduction.c (slsr_process_phi): Remove dead
7124         and unnecessary call to gimple_bb.
7126 2016-07-26  Richard Biener  <rguenther@suse.de>
7128         PR rtl-optimization/71984
7129         * simplify-rtx.c (simplify_subreg): Use GET_MODE_SIZE and prepare
7130         for VOIDmode.
7132 2016-07-26  Richard Biener  <rguenther@suse.de>
7134         PR middle-end/72517
7135         * expmed.c (extract_bit_field_1): Constrain the vector mode
7136         with element size matching the extraction mode size when
7137         choosing a better vector mode to do the extraction from.
7139 2016-07-26  Richard Biener  <rguenther@suse.de>
7140             Prathamesh Kulkarni  <prathamesh.kulkarni@linaro.org>
7142         PR middle-end/70920
7143         * match.pd ((intptr)x eq/ne CST to x eq/ne (typeof x) CST): New
7144         pattern.
7146 2016-07-26  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
7148         * tree-ssa-structalias.c (struct scc_info): Change types of
7149         members to auto_sbitmap and auto_vec.
7150         (scc_info::scc_info): New constructor.
7151         (scc_info::~scc_info): New destructor.
7152         (init_scc_info): Remove.
7153         (free_scc_info): Remove.
7154         (find_indirect_cycles): Adjust.
7155         (perform_var_substitution): Likewise.
7156         (free_var_substitution_info): Likewise.
7158 2016-07-26  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
7160         * tree-outof-ssa.c (struct elim_graph): Change type of members
7161         to auto_vec and auto_sbitmap.
7162         (elim_graph::elim_graph): New constructor.
7163         (delete_elim_graph): Remove.
7164         (expand_phi_nodes): Adjust.
7166 2016-07-26  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
7168         * tree-outof-ssa.c (struct elim_graph): Remove typedef.
7169         (new_elim_graph): Adjust.
7170         (clear_elim_graph): Likewise.
7171         (delete_elim_graph): Likewise.
7172         (elim_graph_size): Likewise.
7173         (elim_graph_add_node): Likewise.
7174         (elim_graph_add_edge): Likewise.
7175         (elim_graph_remove_succ_edge): Likewise.
7176         (eliminate_name): Likewise.
7177         (eliminate_build): Likewise.
7178         (elim_forward): Likewise.
7179         (elim_unvisited_predecessor): Likewise.
7180         (elim_backward): Likewise.
7181         (elim_create): Likewise.
7182         (eliminate_phi): Likewise.
7183         (expand_phi_nodes): Likewise.
7185 2016-07-26  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
7187         * bt-load.c (compute_out): Use auto_sbitmap class.
7188         (link_btr_uses): Likewise.
7189         * cfganal.c (mark_dfs_back_edges): Likewise.
7190         (post_order_compute): Likewise.
7191         (inverted_post_order_compute): Likewise.
7192         (pre_and_rev_post_order_compute_fn): Likewise.
7193         (single_pred_before_succ_order): Likewise.
7194         * cfgexpand.c (pass_expand::execute): Likewise.
7195         * cfgloop.c (verify_loop_structure): Likewise.
7196         * cfgloopmanip.c (fix_bb_placements): Likewise.
7197         (remove_path): Likewise.
7198         (update_dominators_in_loop): Likewise.
7199         * cfgrtl.c (break_superblocks): Likewise.
7200         * ddg.c (check_sccs): Likewise.
7201         (create_ddg_all_sccs): Likewise.
7202         * df-core.c (df_worklist_dataflow): Likewise.
7203         * dse.c (dse_step3): Likewise.
7204         * except.c (eh_region_outermost): Likewise.
7205         * function.c (thread_prologue_and_epilogue_insns): Likewise.
7206         * gcse.c (prune_expressions): Likewise.
7207         (prune_insertions_deletions): Likewise.
7208         * gimple-ssa-backprop.c (backprop::~backprop): Likewise.
7209         * graph.c (draw_cfg_nodes_no_loops): Likewise.
7210         * ira-lives.c (remove_some_program_points_and_update_live_ranges): Likewise.
7211         * lcm.c (compute_earliest): Likewise.
7212         (compute_farthest): Likewise.
7213         * loop-unroll.c (unroll_loop_constant_iterations): Likewise.
7214         (unroll_loop_runtime_iterations): Likewise.
7215         (unroll_loop_stupid): Likewise.
7216         * lower-subreg.c (decompose_multiword_subregs): Likewise.
7217         * lra-lives.c: Likewise.
7218         * lra.c (lra): Likewise.
7219         * modulo-sched.c (schedule_reg_moves): Likewise.
7220         (optimize_sc): Likewise.
7221         (get_sched_window): Likewise.
7222         (sms_schedule_by_order): Likewise.
7223         (check_nodes_order): Likewise.
7224         (order_nodes_of_sccs): Likewise.
7225         (order_nodes_in_scc): Likewise.
7226         * recog.c (split_all_insns): Likewise.
7227         * regcprop.c (pass_cprop_hardreg::execute): Likewise.
7228         * reload1.c (reload): Likewise.
7229         * sched-rgn.c (haifa_find_rgns): Likewise.
7230         (split_edges): Likewise.
7231         (compute_trg_info): Likewise.
7232         * sel-sched.c (init_seqno): Likewise.
7233         * store-motion.c (remove_reachable_equiv_notes): Likewise.
7234         * tree-into-ssa.c (update_ssa): Likewise.
7235         * tree-ssa-live.c (live_worklist): Likewise.
7236         * tree-ssa-loop-im.c (fill_always_executed_in): Likewise.
7237         * tree-ssa-loop-ivcanon.c (try_unroll_loop_completely):
7238         * Likewise.
7239         (try_peel_loop): Likewise.
7240         * tree-ssa-loop-manip.c (tree_transform_and_unroll_loop):
7241         * Likewise.
7242         * tree-ssa-pre.c (compute_antic): Likewise.
7243         * tree-ssa-reassoc.c (undistribute_ops_list): Likewise.
7244         * tree-stdarg.c (reachable_at_most_once): Likewise.
7245         * tree-vect-slp.c (vect_attempt_slp_rearrange_stmts): Likewise.
7246         * var-tracking.c (vt_find_locations): Likewise.
7248 2016-07-26  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
7250         * sbitmap.h (auto_sbitmap): New class.
7252 2016-07-26  Alan Modra  <amodra@gmail.com>
7254         PR target/72103
7255         * config/rs6000/rs6000.c (rs6000_secondary_reload): Initialize
7256         sri->t_icode.
7258 2016-07-25  David Malcolm  <dmalcolm@redhat.com>
7260         * input.c (selftest::temp_source_file::temp_source_file): Fix
7261         missing "%s" in fprintf.
7263 2016-07-25  John David Anglin  <danglin@gcc.gnu.org>
7265         PR middle-end/71732
7266         * cselib.c (cselib_process_insn): Invalidate argument slots for
7267         const/pure calls.
7269 2016-07-25  Jiong Wang  <jiong.wang@arm.com>
7271         * config/aarch64/arm_neon.h (vfmah_lane_f16, vfmah_laneq_f16,
7272         vfmsh_lane_f16, vfmsh_laneq_f16, vmulh_lane_f16, vmulh_laneq_f16,
7273         vmulxh_lane_f16, vmulxh_laneq_f16): New.
7275 2016-07-25  Jiong Wang  <jiong.wang@arm.com>
7277         * config/aarch64/aarch64-simd-builtins.def: Register new builtins.
7278         * config/aarch64/aarch64.md (fma, fnma): Support HF.
7279         * config/aarch64/arm_fp16.h (vfmah_f16, vfmsh_f16): New.
7281 2016-07-25  Jiong Wang  <jiong.wang@arm.com>
7283         * config/aarch64/aarch64-simd-builtins.def: Register new builtins.
7284         * config/aarch64/aarch64.md (<FCVT_F2FIXED:fcvt_fixed_insn>hf<mode>3):
7285         New.
7286         (<FCVT_FIXED2F:fcvt_fixed_insn><mode>hf3): Likewise.
7287         (add<mode>3): Likewise.
7288         (sub<mode>3): Likewise.
7289         (mul<mode>3): Likewise.
7290         (div<mode>3): Likewise.
7291         (*div<mode>3): Likewise.
7292         (<fmaxmin><mode>3): Extend to HF.
7293         * config/aarch64/aarch64-simd.md (aarch64_rsqrts<mode>): Likewise.
7294         (fabd<mode>3): Likewise.
7295         (<FCVT_F2FIXED:fcvt_fixed_insn><VHSDF_HSDF:mode>3): Likewise.
7296         (<FCVT_FIXED2F:fcvt_fixed_insn><VHSDI_HSDI:mode>3): Likewise.
7297         (aarch64_fmulx<mode>): Likewise.
7298         (aarch64_fac<optab><mode>): Likewise.
7299         (aarch64_frecps<mode>): Likewise.
7300         (<FCVT_F2FIXED:fcvt_fixed_insn>hfhi3): New.
7301         (<FCVT_FIXED2F:fcvt_fixed_insn>hihf3): Likewise.
7302         * config/aarch64/iterators.md (VHSDF_SDF): Delete.
7303         (VSDQ_HSDI): Support HI.
7304         (fcvt_target, FCVT_TARGET): Likewise.
7305         * config/aarch64/arm_fp16.h (vaddh_f16, vsubh_f16, vabdh_f16,
7306         vcageh_f16, vcagth_f16, vcaleh_f16, vcalth_f16, vceqh_f16, vcgeh_f16,
7307         vcgth_f16, vcleh_f16, vclth_f16, vcvth_n_f16_s16, vcvth_n_f16_s32,
7308         vcvth_n_f16_s64, vcvth_n_f16_u16, vcvth_n_f16_u32, vcvth_n_f16_u64,
7309         vcvth_n_s16_f16, vcvth_n_s32_f16, vcvth_n_s64_f16, vcvth_n_u16_f16,
7310         vcvth_n_u32_f16, vcvth_n_u64_f16, vdivh_f16, vmaxh_f16, vmaxnmh_f16,
7311         vminh_f16, vminnmh_f16, vmulh_f16, vmulxh_f16, vrecpsh_f16,
7312         vrsqrtsh_f16): New.
7314 2016-07-25  Jiong Wang  <jiong.wang@arm.com>
7316         * config.gcc (aarch64*-*-*): Install arm_fp16.h.
7317         * config/aarch64/aarch64-builtins.c (hi_UP): New.
7318         * config/aarch64/aarch64-simd-builtins.def: Register new builtins.
7319         * config/aarch64/aarch64-simd.md (aarch64_frsqrte<mode>): Extend to HF
7320         mode.
7321         (aarch64_frecp<FRECP:frecp_suffix><mode>): Likewise.
7322         (aarch64_cm<optab><mode>): Likewise.
7323         * config/aarch64/aarch64.md (<frint_pattern><mode>2): Likewise.
7324         (l<fcvt_pattern><su_optab><GPF:mode><GPI:mode>2): Likewise.
7325         (fix_trunc<GPF:mode><GPI:mode>2): Likewise.
7326         (sqrt<mode>2): Likewise.
7327         (*sqrt<mode>2): Likewise.
7328         (abs<mode>2): Likewise.
7329         (<optab><mode>hf2): New pattern for HF mode.
7330         (<optab>hihf2): Likewise.
7331         * config/aarch64/arm_neon.h: Include arm_fp16.h.
7332         * config/aarch64/iterators.md (GPF_F16, GPI_F16, VHSDF_HSDF): New.
7333         (w1, w2, v, s, q, Vmtype, V_cmp_result, fcvt_iesize, FCVT_IESIZE):
7334         Support HF mode.
7335         * config/aarch64/arm_fp16.h: New file.
7336         (vabsh_f16, vceqzh_f16, vcgezh_f16, vcgtzh_f16, vclezh_f16, vcltzh_f16,
7337         vcvth_f16_s16, vcvth_f16_s32, vcvth_f16_s64, vcvth_f16_u16,
7338         vcvth_f16_u32, vcvth_f16_u64, vcvth_s16_f16, vcvth_s32_f16,
7339         vcvth_s64_f16, vcvth_u16_f16, vcvth_u32_f16, vcvth_u64_f16,
7340         vcvtah_s16_f16, vcvtah_s32_f16, vcvtah_s64_f16, vcvtah_u16_f16,
7341         vcvtah_u32_f16, vcvtah_u64_f16, vcvtmh_s16_f16, vcvtmh_s32_f16,
7342         vcvtmh_s64_f16, vcvtmh_u16_f16, vcvtmh_u32_f16, vcvtmh_u64_f16,
7343         vcvtnh_s16_f16, vcvtnh_s32_f16, vcvtnh_s64_f16, vcvtnh_u16_f16,
7344         vcvtnh_u32_f16, vcvtnh_u64_f16, vcvtph_s16_f16, vcvtph_s32_f16,
7345         vcvtph_s64_f16, vcvtph_u16_f16, vcvtph_u32_f16, vcvtph_u64_f16,
7346         vnegh_f16, vrecpeh_f16, vrecpxh_f16, vrndh_f16, vrndah_f16, vrndih_f16,
7347         vrndmh_f16, vrndnh_f16, vrndph_f16, vrndxh_f16, vrsqrteh_f16,
7348         vsqrth_f16): New.
7350 2016-07-25  Jiong Wang  <jiong.wang@arm.com>
7352         * config/aarch64/aarch64-simd-builtins.def (reduc_smax_scal_,
7353         reduc_smin_scal_): Use VDQIF_F16.
7354         (reduc_smax_nan_scal_, reduc_smin_nan_scal_): Use VHSDF.
7355         * config/aarch64/aarch64-simd.md (reduc_<maxmin_uns>_scal_<mode>):
7356         Use VHSDF.
7357         (aarch64_reduc_<maxmin_uns>_internal<mode>): Likewise.
7358         * config/aarch64/iterators.md (VDQIF_F16): New.
7359         (vp): Support HF modes.
7360         * config/aarch64/arm_neon.h (vmaxv_f16, vmaxvq_f16, vminv_f16,
7361         vminvq_f16, vmaxnmv_f16, vmaxnmvq_f16, vminnmv_f16, vminnmvq_f16): New.
7363 2016-07-25  Jiong Wang  <jiong.wang@arm.com>
7365         * config/aarch64/aarch64-simd.md (*aarch64_mulx_elt_to_64v2df): Rename to
7366         "*aarch64_mulx_elt_from_dup<mode>".
7367         (*aarch64_mul3_elt<mode>): Update schedule type.
7368         (*aarch64_mul3_elt_from_dup<mode>): Likewise.
7369         (*aarch64_fma4_elt_from_dup<mode>): Likewise.
7370         (*aarch64_fnma4_elt_from_dup<mode>): Likewise.
7371         * config/aarch64/iterators.md (VMUL): Supprt half precision float modes.
7372         (f, fp): Support HF modes.
7373         * config/aarch64/arm_neon.h (vfma_lane_f16, vfmaq_lane_f16,
7374         vfma_laneq_f16, vfmaq_laneq_f16, vfma_n_f16, vfmaq_n_f16, vfms_lane_f16,
7375         vfmsq_lane_f16, vfms_laneq_f16, vfmsq_laneq_f16, vfms_n_f16,
7376         vfmsq_n_f16, vmul_lane_f16, vmulq_lane_f16, vmul_laneq_f16,
7377         vmulq_laneq_f16, vmul_n_f16, vmulq_n_f16, vmulx_lane_f16,
7378         vmulxq_lane_f16, vmulx_laneq_f16, vmulxq_laneq_f16): New.
7380 2016-07-25  Jiong Wang  <jiong.wang@arm.com>
7382         * config/aarch64/aarch64-simd-builtins.def: Register new builtins.
7383         * config/aarch64/aarch64-simd.md (fma<mode>4, fnma<mode>4): Extend to HF
7384         modes.
7385         * config/aarch64/arm_neon.h (vfma_f16, vfmaq_f16, vfms_f16,
7386         vfmsq_f16): New.
7388 2016-07-25  Jiong Wang  <jiong.wang@arm.com>
7390         * config/aarch64/aarch64-simd-builtins.def: Register new builtins.
7391         * config/aarch64/aarch64-simd.md
7392         (aarch64_rsqrts<mode>): Extend to HF modes.
7393         (fabd<mode>3): Likewise.
7394         (<FCVT_F2FIXED:fcvt_fixed_insn><VHSDF_SDF:mode>3): Likewise.
7395         (<FCVT_FIXED2F:fcvt_fixed_insn><VHSDI_SDI:mode>3): Likewise.
7396         (aarch64_<maxmin_uns>p<mode>): Likewise.
7397         (<su><maxmin><mode>3): Likewise.
7398         (<maxmin_uns><mode>3): Likewise.
7399         (<fmaxmin><mode>3): Likewise.
7400         (aarch64_faddp<mode>): Likewise.
7401         (aarch64_fmulx<mode>): Likewise.
7402         (aarch64_frecps<mode>): Likewise.
7403         (*aarch64_fac<optab><mode>): Rename to aarch64_fac<optab><mode>.
7404         (add<mode>3): Extend to HF modes.
7405         (sub<mode>3): Likewise.
7406         (mul<mode>3): Likewise.
7407         (div<mode>3): Likewise.
7408         (*div<mode>3): Likewise.
7409         * config/aarch64/aarch64.c (aarch64_emit_approx_div): Return false for
7410         HF, V4HF and V8HF.
7411         * config/aarch64/iterators.md (VDQ_HSDI, VSDQ_HSDI): New mode iterator.
7412         * config/aarch64/arm_neon.h (vadd_f16, vaddq_f16, vabd_f16, vabdq_f16,
7413         vcage_f16, vcageq_f16, vcagt_f16, vcagtq_f16, vcale_f16, vcaleq_f16,
7414         vcalt_f16, vcaltq_f16, vceq_f16, vceqq_f16, vcge_f16, vcgeq_f16,
7415         vcgt_f16, vcgtq_f16, vcle_f16, vcleq_f16, vclt_f16, vcltq_f16,
7416         vcvt_n_f16_s16, vcvtq_n_f16_s16, vcvt_n_f16_u16, vcvtq_n_f16_u16,
7417         vcvt_n_s16_f16, vcvtq_n_s16_f16, vcvt_n_u16_f16, vcvtq_n_u16_f16,
7418         vdiv_f16, vdivq_f16, vdup_lane_f16, vdup_laneq_f16, vdupq_lane_f16,
7419         vdupq_laneq_f16, vdups_lane_f16, vdups_laneq_f16, vmax_f16, vmaxq_f16,
7420         vmaxnm_f16, vmaxnmq_f16, vmin_f16, vminq_f16, vminnm_f16, vminnmq_f16,
7421         vmul_f16, vmulq_f16, vmulx_f16, vmulxq_f16, vpadd_f16, vpaddq_f16,
7422         vpmax_f16, vpmaxq_f16, vpmaxnm_f16, vpmaxnmq_f16, vpmin_f16, vpminq_f16,
7423         vpminnm_f16, vpminnmq_f16, vrecps_f16, vrecpsq_f16, vrsqrts_f16,
7424         vrsqrtsq_f16, vsub_f16, vsubq_f16): New.
7426 2016-07-25  Jiong Wang  <jiong.wang@arm.com>
7428         * config/aarch64/aarch64-builtins.c (TYPES_BINOP_USS): New.
7429         * config/aarch64/aarch64-simd-builtins.def: Register new builtins.
7430         * config/aarch64/aarch64-simd.md (aarch64_rsqrte<mode>): Extend to HF modes.
7431         (neg<mode>2): Likewise.
7432         (abs<mode>2): Likewise.
7433         (<frint_pattern><mode>2): Likewise.
7434         (l<fcvt_pattern><su_optab><VDQF:mode><fcvt_target>2): Likewise.
7435         (<optab><VDQF:mode><fcvt_target>2): Likewise.
7436         (<fix_trunc_optab><VDQF:mode><fcvt_target>2): Likewise.
7437         (ftrunc<VDQF:mode>2): Likewise.
7438         (<optab><fcvt_target><VDQF:mode>2): Likewise.
7439         (sqrt<mode>2): Likewise.
7440         (*sqrt<mode>2): Likewise.
7441         (aarch64_frecpe<mode>): Likewise.
7442         (aarch64_cm<optab><mode>): Likewise.
7443         * config/aarch64/aarch64.c (aarch64_emit_approx_sqrt): Return false for
7444         HF, V4HF and V8HF.
7445         * config/aarch64/iterators.md (VHSDF, VHSDF_DF, VHSDF_SDF): New.
7446         (VDQF_COND, fcvt_target, FCVT_TARGET, hcon): Extend mode attribute to HF modes.
7447         (stype): New.
7448         * config/aarch64/arm_neon.h (vdup_n_f16): New.
7449         (vdupq_n_f16): Likewise.
7450         (vld1_dup_f16): Use vdup_n_f16.
7451         (vld1q_dup_f16): Use vdupq_n_f16.
7452         (vabs_f16, vabsq_f16, vceqz_f16, vceqzq_f16, vcgez_f16, vcgezq_f16,
7453         vcgtz_f16, vcgtzq_f16, vclez_f16, vclezq_f16, vcltz_f16, vcltzq_f16,
7454         vcvt_f16_s16, vcvtq_f16_s16, vcvt_f16_u16, vcvtq_f16_u16, vcvt_s16_f16,
7455         vcvtq_s16_f16, vcvt_u16_f16, vcvtq_u16_f16, vcvta_s16_f16,
7456         vcvtaq_s16_f16, vcvta_u16_f16, vcvtaq_u16_f16, vcvtm_s16_f16,
7457         vcvtmq_s16_f16, vcvtm_u16_f16, vcvtmq_u16_f16, vcvtn_s16_f16,
7458         vcvtnq_s16_f16, vcvtn_u16_f16, vcvtnq_u16_f16, vcvtp_s16_f16,
7459         vcvtpq_s16_f16, vcvtp_u16_f16, vcvtpq_u16_f16, vneg_f16, vnegq_f16,
7460         vrecpe_f16, vrecpeq_f16, vrnd_f16, vrndq_f16, vrnda_f16, vrndaq_f16,
7461         vrndi_f16, vrndiq_f16, vrndm_f16, vrndmq_f16, vrndn_f16, vrndnq_f16,
7462         vrndp_f16, vrndpq_f16, vrndx_f16, vrndxq_f16, vrsqrte_f16, vrsqrteq_f16,
7463         vsqrt_f16, vsqrtq_f16): New.
7465 2016-07-25  Jiong Wang  <jiong.wang@arm.com>
7467         * config/aarch64/aarch64-simd.md
7468         (aarch64_<PERMUTE:perm_insn><PERMUTE:perm_hilo><mode>): Use VALL_F16.
7469         (aarch64_ext<mode>): Likewise.
7470         (aarch64_rev<REVERSE:rev_op><mode>): Likewise.
7471         * config/aarch64/aarch64.c (aarch64_evpc_trn, aarch64_evpc_uzp,
7472         aarch64_evpc_zip, aarch64_evpc_ext, aarch64_evpc_rev): Support V4HFmode
7473         and V8HFmode.
7474         * config/aarch64/arm_neon.h (__INTERLEAVE_LIST): Support float16x4_t,
7475         float16x8_t.
7476         (__aarch64_vdup_lane_f16, __aarch64_vdup_laneq_f16,
7477         __aarch64_vdupq_lane_f16, __aarch64_vdupq_laneq_f16, vbsl_f16,
7478         vbslq_f16, vdup_n_f16, vdupq_n_f16, vdup_lane_f16, vdup_laneq_f16,
7479         vdupq_lane_f16, vdupq_laneq_f16, vduph_lane_f16, vduph_laneq_f16,
7480         vext_f16, vextq_f16, vmov_n_f16, vmovq_n_f16, vrev64_f16, vrev64q_f16,
7481         vtrn1_f16, vtrn1q_f16, vtrn2_f16, vtrn2q_f16, vtrn_f16, vtrnq_f16,
7482         vuzp1_f16, vuzp1q_f16, vuzp2_f16, vuzp2q_f16, vzip1_f16, vzip2q_f16):
7483         New.
7484         (vmov_n_f16): Reimplement using vdup_n_f16.
7485         (vmovq_n_f16): Reimplement using vdupq_n_f16..
7487 2016-07-25  Jiong Wang  <jiong.wang@arm.com>
7489         * config/aarch64/aarch64.c (aarch64_add_constant): New parameter
7490         "frame_related_p".  Generate CFA annotation when it's necessary.
7491         (aarch64_expand_prologue): Use aarch64_add_constant.
7492         (aarch64_expand_epilogue): Likewise.
7493         (aarch64_output_mi_thunk): Pass "false" when calling
7494         aarch64_add_constant.
7496 2016-07-25  Jiong Wang  <jiong.wang@arm.com>
7498         * config/aarch64/aarch64.c (aarch64_add_constant): Optimize instruction
7499         sequences.
7501 2016-07-25  Jiong Wang  <jiong.wang@arm.com>
7503         * config/aarch64/aarch64.c (aarch64_add_constant): New parameter "mode".
7504         Use aarch64_internal_mov_immediate instead of aarch64_build_constant.
7505         (aarch64_output_mi_thunk): Pass Pmode when calling aarch64_add_constant.
7506         (aarch64_build_constant): Delete.
7508 2016-07-25  Alexander Monakov  <amonakov@ispras.ru>
7510         Revert
7511         2016-07-20  Alexander Monakov  <amonakov@ispras.ru>
7513         * config/nvptx/nvptx.c (nvptx_option_override): Do not set
7514         flag_toplevel_reorder.
7516 2016-07-25  Richard Biener  <rguenther@suse.de>
7518         * cgraph.c (cgraph_node::verify_node): Compare against builtin
7519         by using DECL_BUILT_IN_CLASS and DECL_FUNCTION_CODE.
7520         * tree-chkp.c (chkp_gimple_call_builtin_p): Likewise.
7521         * tree-streamer.h (streamer_handle_as_builtin_p): Remove.
7522         (streamer_get_builtin_tree): Likewise.
7523         (streamer_write_builtin): Likewise.
7524         * lto-streamer.h (LTO_builtin_decl): Remove.
7525         * lto-streamer-in.c (lto_read_tree_1): Remove assert.
7526         (lto_input_scc): Remove LTO_builtin_decl handling.
7527         (lto_input_tree_1): Liekwise.
7528         * lto-streamer-out.c (lto_output_tree_1): Remove special
7529         handling of builtins.
7530         (DFS::DFS): Likewise.
7531         * tree-streamer-in.c (streamer_get_builtin_tree): Remove.
7532         * tree-streamer-out.c (pack_ts_function_decl_value_fields): Remove
7533         assert.
7534         (streamer_write_builtin): Remove.
7536 2016-07-25  Martin Liska  <mliska@suse.cz>
7538         * lto-cgraph.c (input_symtab): Don't call get_working_sets
7539         if flag_auto_profile is set to true.
7541 2016-07-25  Martin Liska  <mliska@suse.cz>
7543         PR gcov-profile/71868
7544         * cfgloopanal.c (expected_loop_iterations_unbounded): When we
7545         have a function with multiple latches, count them all.
7547 2016-07-25  Martin Liska  <mliska@suse.cz>
7549         * tree-ssa-loop-niter.c (loop_only_exit_p): Release body array.
7551 2016-07-25  Martin Liska  <mliska@suse.cz>
7553         PR tree-optimization/71987
7554         * tree-ssa-reassoc.c (maybe_optimize_range_tests): Call get_ops
7555         just for SSA_NAMEs. Fix GNU coding style.
7557 2016-07-25  Martin Liska  <mliska@suse.cz>
7559         PR gcov-profile/64874
7560         * gcov-io.h: Update command about file format.
7561         * gcov-iov.c (main): Adapt the numbering scheme.
7563 2016-07-24  Kugan Vivekanandarajah  <kuganv@linaro.org>
7565         PR middle-end/66726
7566         * tree-ssa-reassoc.c (optimize_vec_cond_expr): Handle tcc_compare stmt
7567         whose result is used in PHI.
7568         (final_range_test_p): Likewise.
7569         (maybe_optimize_range_tests): Likewise.
7571 2016-07-22  Michael Meissner  <meissner@linux.vnet.ibm.com>
7573         * config/rs6000/rs6000-c.c (altivec_resolve_overloaded_builtin):
7574         Reformat two multi-line strings.
7576 2016-07-22  Martin Sebor  <msebor@redhat.com>
7578         * doc/extend.texi (Compound Literals): Add '@' missed in last commit.
7580 2016-07-22  Martin Sebor  <msebor@redhat.com>
7582         PR c/71560
7583         * doc/extend.texi (Compound Literals): Correct and clarify.
7584         (Cast to Union): Same.
7586 2016-07-22  Kelvin Nilsen  <kelvin@gcc.gnu.org>
7588         * config/rs6000/rs6000.c (rs6000_option_override_internal): Add
7589         comments to explain why certain error messages make mention of
7590         undocumented options.
7591         (rs6000_invalid_builtin): Change error messages to replace mention
7592         of undocumented options with mention of the -mcpu=power9 option
7593         that enables those undocumented options.
7594         * config/rs6000/rs6000.h (MASK_FLOAT128): New macro.
7595         (RS6000_BTM_FLOAT128): Use the new MASK_FLOAT128 macro in the
7596         definition of this macro to correct an existing error.
7597         * config/rs6000/rs6000.opt: Add the Undocumented qualifier to the
7598         mpower9-fusion, mpower9-vector, mpower9-dform, and mmodulo entries.
7599         * doc/extend.texi (PowerPC AltiVec Built-in Functions): Modify
7600         descriptions of built-in functions so that they depend on
7601         -mcpu=power9 instead of on the corresponding undocumented flags.
7602         * doc/invoke.texi (Option Summary):  Remove all mention of newly
7603         undocumented flags.
7604         (IBM RS/6000 and PowerPC Options): Likewise.
7605         * doc/md.texi (Constraints for Particuliar Machines): Remove all
7606         mention of newly undocumented flags.
7608 2016-07-22  Evgeny Stupachenko  <evstupac@gmail.com>
7610         * ipa-cp.c (determine_versionability): Do not create constprop clones,
7611         when target_clones attribute is set.
7613 2016-07-22  Bin Cheng  <bin.cheng@arm.com>
7615         * common.opt (funsafe-loop-optimizations): Mark ignore.
7616         * doc/invoke.texi (funsafe-loop-optimizations): Remove.
7617         * loop-iv.c (get_simple_loop_desc): Remove unsafe-loop-optimizations
7618         related code.
7619         * tree-ssa-loop-niter.c (finite_loop_p): Ditto.
7620         * config/bfin/bfin.c (bfin_can_use_doloop_p): Ditto.
7622 2016-07-22  Bin Cheng  <bin.cheng@arm.com>
7624         * tree-ssa-loop-niter.h (number_of_iterations_exit_assumptions): New
7625         Parameter.
7626         * tree-ssa-loop-niter.c (number_of_iterations_exit_assumptions): New
7627         Parameter.
7628         (number_of_iterations_exit): Warn missed loop optimization for
7629         possible infinite loops.
7631 2016-07-22  Segher Boessenkool  <segher@kernel.crashing.org>
7633         PR target/71216
7634         * config/rs6000/rs6000.c (rs6000_file_start): Fix condition for
7635         when to emit a ".machine" pseudo-op.
7637 2016-07-22  Martin Liska  <mliska@suse.cz>
7639         PR gcov-profile/69028
7640         PR gcov-profile/62047
7641         * coverage.c (coverage_compute_lineno_checksum): Do not
7642         calculate checksum for fns w/o xloc.file.
7643         (coverage_compute_profile_id): Likewise.
7645 2016-07-22  Georg-Johann Lay  <avr@gjlay.de>
7647         * config/avr/avr.c (TARGET_SECONDARY_RELOAD): Remove hook define...
7648         (avr_secondary_reload): ...and implementation.
7649         (avr_adjust_insn_length) [ADJUST_LEN_LPM]: Remove handling.
7650         * config/avr/avr.md (reload_in<mode>): Remove insns.
7651         (adjust_len) [lpm]: Remove insn attribute value.
7652         * config/avr/predicates.md (flash_operand): Remove insn predicate.
7654 2016-07-21  Bernd Edlinger  <bernd.edlinger@hotmail.de>
7656         PR middle-end/71876
7657         * builtin-attrs.def (ATTR_RT_NOTHROW_LEAF_LIST): New return twice
7658         attribute.
7659         * builtins.def (BUILT_IN_SETJMP): Use ATTR_RT_NOTHROW_LEAF_LIST here.
7660         * calls.c (special_function_p): Remove the special handling of the
7661         "__builtin_" prefix.
7663 2016-07-21  Bernd Edlinger  <bernd.edlinger@hotmail.de>
7665         PR middle-end/71876
7666         * calls.c (gimple_maybe_alloca_call_p): New function.  Return true
7667         if STMT may be an alloca call.
7668         (gimple_alloca_call_p, alloca_call_p): Return only true for the
7669         builtin alloca call.
7670         * calls.h (gimple_maybe_alloca_call_p): New function.
7671         * tree-inline.c (inline_forbidden_p_stmt): Use
7672         gimple_maybe_alloca_call_p here.
7674 2016-07-21  David Malcolm  <dmalcolm@redhat.com>
7676         * spellcheck-tree.c (best_macro_match::best_macro_match):
7677         Explictly specify the template arguments when invoking the base
7678         class constructor, to help older C++ compilers.
7680 2016-07-21  Jakub Jelinek  <jakub@redhat.com>
7682         PR sanitizer/71953
7683         * asan.c (asan_dynamic_init_call): Call asan_init_shadow_ptr_types
7684         before builtin_decl_implicit.
7686 2016-07-21  James Greenhalgh  <james.greenhalgh@arm.com>
7688         * optabs.c (emit_condiitonal_move): Short circuit for identical
7689         sources.
7691 2016-07-21  James Greenhalgh  <james.greenhalgh@arm.com>
7693         * ifcvt.c (noce_if_info): New fields: speed_p, original_cost,
7694         max_seq_cost.  Removed fields: then_cost, else_cost, branch_cost.
7695         (noce_conversion_profitable_p): New.
7696         (noce_try_store_flag_constants): Use it.
7697         (noce_try_addcc): Likewise.
7698         (noce_try_store_flag_mask): Likewise.
7699         (noce_try_cmove): Likewise.
7700         (noce_try_cmove_arith): Likewise.
7701         (bb_valid_for_noce_process_p): Add to the cost parameter rather than
7702         overwriting it.
7703         (noce_convert_multiple_sets): Move cost model to here, from...
7704         (bb_ok_for_noce_convert_multiple_sets) ...here.
7705         (noce_process_if_block): Update calls for above changes.
7706         (noce_find_if_block): Record new noce_if_info parameters.
7708 2016-07-21  James Greenhalgh  <james.greenhalgh@arm.com>
7710         * target.def (max_noce_ifcvt_seq_cost): New.
7711         * doc/tm.texi.in (TARGET_MAX_NOCE_IFCVT_SEQ_COST): Document it.
7712         * doc/tm.texi: Regenerate.
7713         * targhooks.h (default_max_noce_ifcvt_seq_cost): New.
7714         * targhooks.c (default_max_noce_ifcvt_seq_cost): New.
7715         * params.def (PARAM_MAX_RTL_IF_CONVERSION_PREDICTABLE_COST): New.
7716         (PARAM_MAX_RTL_IF_CONVERSION_UNPREDICTABLE_COST): Likewise.
7717         * doc/invoke.texi: Document new params.
7719 2016-07-21  Richard Biener  <rguenther@suse.de>
7721         PR tree-optimization/71947
7722         * tree-vrp.c (extract_range_from_assert): Singleton symbolic
7723         ranges have useful limit_vr information.
7725 2016-07-21  Richard Biener  <rguenther@suse.de>
7727         * function-tests.c (build_trivial_generic_function): Set
7728         BLOCK_SUPERCONTEXT of DECL_INITIAL.
7729         * omp-low.c (create_omp_child_function): Likewise.
7730         (grid_expand_target_grid_body): Likewise.
7731         * cgraphunit.c (init_lowered_empty_function): Likewise.
7732         (cgraph_node::expand_thunk): Likewise.
7733         * tree-parloops.c (create_loop_fn): Likewise.
7734         * ipa.c (cgraph_build_static_cdtor_1): Likewise.
7736 2016-07-21  Prathamesh Kulkarni  <prathamesh.kulkarni@linaro.org>
7738         * tree-ssa-strlen.c (strlen_dom_walker::before_dom_children): Fix typo
7739         in comment.
7741 2016-07-21  Georg-Johann Lay  <avr@gjlay.de>
7743         * config/avr/avr.md (any_extract, any_shiftrt): New code iterators.
7744         (*insv.extract, *insv.shiftrt, *insv.not-bit.0, *insv.not-bit.7)
7745         (*insv.xor-extract, *insv.xor1-bit.0): New insns.
7746         (adjust_len) [insv_notbit, insv_notbit_0, insv_notbit_7]: New
7747         values for insn attribute.
7748         * config/avr/avr.c (avr_out_insert_notbit): New function.
7749         (avr_adjust_insn_length): Handle ADJUST_LEN_INSV_NOTBIT,
7750         ADJUST_LEN_INSV_NOTBIT_0/_7.
7751         * config/avr/avr-protos.h (avr_out_insert_notbit): New proto.
7753 2016-07-21  Bin Cheng  <bin.cheng@arm.com>
7755         * tree-chrec.c (convert_affine_scev): New parameter.  Pass new arg.
7756         (chrec_convert_1, chrec_convert): Ditto.
7757         * tree-chrec.h (chrec_convert, convert_affine_scev): New parameter.
7758         * tree-scalar-evolution.c (interpret_rhs_expr): Pass new arg.
7759         * tree-vrp.c (adjust_range_with_scev): Ditto.
7760         * tree-ssa-loop-niter.c (idx_infer_loop_bounds): Ditto.
7761         (scev_var_range_cant_overflow): New function.
7762         (scev_probably_wraps_p): New parameter.  Call above function.
7763         * tree-ssa-loop-niter.h (scev_probably_wraps_p): New parameter.
7765 2016-07-21  Bin Cheng  <bin.cheng@arm.com>
7767         * tree-ssa-loop-niter.c (number_of_iterations_lt_to_ne): Clean up
7768         by removing computation of may_be_zero.
7770 2016-07-21  Jakub Jelinek  <jakub@redhat.com>
7772         * tree-object-size.c (unknown): Use HOST_WIDE_INT_M1U instead of -1.
7774 2016-07-21  Andrew Sutton  <andrew.n.sutton@gmail.com>
7776         Improving concepts performance and diagnostics.
7777         * timevar.def (TV_CONSTRAINT_SAT, TV_CONSTRAINT_SUB): New time vars
7778         for constraint satisfaction and subsumption.
7779         * timevar.h (auto_timevar): New constructor that matches the push/pop
7780         pattern of usage in pt.c.
7782 2016-07-20  Uros Bizjak  <ubizjak@gmail.com>
7784         * hwint.h (HOST_WIDE_INT_0): New define.
7785         (HOST_WIDE_INT_0U): Ditto.
7786         * double-int.c: Use HOST_WIDE_INT_0 instead of (HOST_WIDE_INT) 0.
7787         * dse.c: Use HOST_WIDE_INT_0U instead of (unsigned HOST_WIDE_INT) 0.
7788         * simplify-rtx.c: Ditto.
7789         * tree-object-size.c: Ditto.
7791 2016-07-20  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
7793         * config/s390/s390.c (s390_encode_section_info): Remove mode size
7794         check.
7796 2016-07-20  Uros Bizjak  <ubizjak@gmail.com>
7798         * cse.c: Use HOST_WIDE_INT_M1 instead of ~(HOST_WIDE_INT) 0.
7799         * combine.c: Use HOST_WIDE_INT_M1U instead of
7800         ~(unsigned HOST_WIDE_INT) 0.
7801         * double-int.h: Ditto.
7802         * dse.c: Ditto.
7803         * dwarf2asm.c:Ditto.
7804         * expmed.c: Ditto.
7805         * genmodes.c: Ditto.
7806         * match.pd: Ditto.
7807         * read-rtl.c: Ditto.
7808         * tree-ssa-loop-ivopts.c: Ditto.
7809         * tree-ssa-loop-prefetch.c: Ditto.
7810         * tree-vect-generic.c: Ditto.
7811         * tree-vect-patterns.c: Ditto.
7812         * tree.c: Ditto.
7814 2016-07-20  Georg-Johann Lay  <avr@gjlay.de>
7816         * gcc/config/avr.c (avr_legitimize_address) [AVR_TINY]: Force
7817         constant addresses outside [0,0xc0] into a register.
7818         (avr_out_movhi_r_mr_reg_no_disp_tiny): Pass insn.  And handle
7819         cases where the base address register is unused after.
7820         (avr_out_movhi_r_mr_reg_disp_tiny): Same.
7821         (avr_out_movhi_mr_r_reg_disp_tiny): Same.
7822         (avr_out_store_psi_reg_disp_tiny): Same.
7824 2016-07-20  Georg-Johann Lay  <avr@gjlay.de>
7826         Implement attribute progmem on reduced Tiny cores by adding
7827         flash offset 0x4000 to respective symbols.
7829         PR target/71948
7830         * doc/extend.texi (AVR Variable Attributes) [progmem]: Add
7831         documentation how it works on reduced Tiny cores.
7832         (AVR Named Address Spaces): No support for reduced Tiny.
7833         * config/avr/avr.c (AVR_SYMBOL_FLAG_TINY_PM): New macro.
7834         (avr_address_tiny_pm_p): New static function.
7835         (avr_print_operand_address) [AVR_TINY]: Add AVR_TINY_PM_OFFSET
7836         if the address is in progmem.
7837         (avr_assemble_integer): Same.
7838         (avr_encode_section_info) [AVR_TINY]: Set AVR_SYMBOL_FLAG_TINY_PM
7839         for symbol_ref in progmem.
7840         * config/avr/avr.h (AVR_TINY_PM_OFFSET): New macro.
7841         * config/avr/avr-c.c (avr_cpu_cpp_builtins): Use it instead of
7842         magic 0x4000 when built-in def'ing __AVR_TINY_PM_BASE_ADDRESS__.
7844 2016-07-20  Patrick Palka  <ppalka@gcc.gnu.org>
7846         * configure.ac (thin_archive_support): New variable.  AC_SUBST it.
7847         * configure: Regenerate.
7848         * Makefile.in (THIN_ARCHIVE_SUPPORT): New variable.
7849         (USE_THIN_ARCHIVES): New variable.
7850         (libbackend.a): If USE_THIN_ARCHIVES then pass T to ar to build
7851         this archive as a thin archive.
7853 2016-07-20  David Malcolm  <dmalcolm@redhat.com>
7855         * diagnostic-show-locus.c (diagnostic_show_locus): If this is the
7856         same location as last time, don't skip if we have fix-it hints.
7857         Clarify the skipping logic by converting it from one "if" clause
7858         to repeated "if" clauses.
7859         * spellcheck-tree.c: Include "cpplib.h".
7860         (find_closest_macro_cpp_cb): Move here from c/c-decl.c.
7861         (best_macro_match::best_macro_match): New constructor.
7862         * spellcheck-tree.h (struct edit_distance_traits<cpp_hashnode *>):
7863         Move here from c/c-decl.c.
7864         (class best_macro_match): Move here from c/c-decl.c, converting
7865         from a typedef to a subclass, gaining a ctor.
7867 2016-07-20  Georg-Johann Lay  <avr@gjlay.de>
7869         * config/avr/avr-protos.h (avr_addr_space_supported_p): New prototype.
7870         * config/avr/avr.c (TARGET_ADDR_SPACE_DIAGNOSE_USAGE): New hook
7871         define...
7872         (avr_addr_space_diagnose_usage): ...and implementation.
7873         (avr_addr_space_supported_p): New function.
7874         (avr_nonconst_pointer_addrspace, avr_pgm_check_var_decl): Only
7875         report bad address space usage if that space is supported.
7876         (avr_insert_attributes): Same.  No more complain about unsupported
7877         address spaces.
7878         * config/avr/avr-c.c (tm_p.h): Include it.
7879         (avr_cpu_cpp_builtins): Only define addr-space related built-in
7880         macro if avr_addr_space_supported_p.
7882 2016-07-20  Alexander Monakov  <amonakov@ispras.ru>
7884         * config/nvptx/nvptx.c (nvptx_option_override): Do not set
7885         flag_toplevel_reorder.
7887 2016-07-20  David Malcolm  <dmalcolm@redhat.com>
7889         * gcc-rich-location.c
7890         (gcc_rich_location::add_fixit_misspelled_id): New overload, taking
7891         a const char *.
7892         * gcc-rich-location.h
7893         (gcc_rich_location::add_fixit_misspelled_id): Likewise.
7895 2016-07-20  Georg-Johann Lay  <avr@gjlay.de>
7897         * target.def (addr_space): Add new diagnose_usage to hook vector.
7898         * targhooks.c (default_addr_space_diagnose_usage): Add default
7899         implementation and...
7900         * targhooks.h (default_addr_space_diagnose_usage): ... its prototype.
7901         * c/c-parser.c (c_lex_one_token) [CPP_NAME]: If the token
7902         is some address space, call targetm.addr_space.diagnose_usage.
7903         * doc/tm.texi.in (Named Address Spaces): Add anchor for
7904         TARGET_ADDR_SPACE_DIAGNOSE_USAGE documentation.
7905         * doc/tm.texi: Regenerate.
7907 2016-07-20  Martin Liska  <mliska@suse.cz>
7909         PR middle-end/71898
7910         * graphite-isl-ast-to-gimple.c (later_of_the_two):
7911         Properly handly PHI stmts.
7913 2016-07-20  Bin Cheng  <bin.cheng@arm.com>
7915         PR tree-optimization/71503
7916         PR tree-optimization/71683
7917         * tree-if-conv.c (gen_phi_arg_condition): Record true predicate
7918         and break.
7920 2016-07-20  Martin Liska  <mliska@suse.cz>
7922         * doc/invoke.texi (-fipa-ra): Document when the option is
7923         disabled. Fix a typo.
7925 2016-07-20  Martin Liska  <mliska@suse.cz>
7927         * Makefile.in: Include fibonacci_heap.c
7928         * fibonacci_heap.c: New file.
7929         * fibonacci_heap.h (fibonacci_heap::insert): Use insert_node.
7930         (fibonacci_heap::union_with): Fix deletion of the second heap.
7931         * selftest-run-tests.c (selftest::run_tests): Incorporate
7932         fibonacci heap tests.
7933         * selftest.h: Declare fibonacci_heap_c_tests.
7935 2016-07-20  Martin Liska  <mliska@suse.cz>
7937         * selftest-run-tests.c (selftest::run_tests): New function.
7938         * selftest.h (sreal_c_tests): Declare.
7939         * sreal.c (sreal_verify_basics): New function.
7940         (verify_aritmetics): Likewise.
7941         (sreal_verify_arithmetics): Likewise.
7942         (verify_shifting): Likewise.
7943         (sreal_verify_shifting): Likewise.
7944         (void sreal_c_tests): Likewise.
7946 2016-07-19  Jakub Jelinek  <jakub@redhat.com>
7948         PR rtl-optimization/71916
7949         * cfgrtl.c (contains_no_active_insn_p): Return false also for
7950         bb which have a single succ fake edge.
7952 2016-07-19  Aldy Hernandez  <aldyh@redhat.com>
7954         PR debug/71855
7955         * dwarf2out.c (gen_subprogram_die): Only call
7956         gen_unspecified_parameters_die while dumping early dwarf.
7958 2016-07-19  Jakub Jelinek  <jakub@redhat.com>
7960         PR middle-end/71874
7961         * gimple-fold.c (fold_builtin_memory_op): Use
7962         get_addr_base_and_unit_offset instead of get_ref_base_and_extent.
7964 2016-07-19  Uros Bizjak  <ubizjak@gmail.com>
7966         * builtins.c: Use HOST_WIDE_INT_1 instead of (HOST_WIDE_INT) 1,
7967         HOST_WIDE_INT_1U instead of (unsigned HOST_WIDE_INT) 1,
7968         HOST_WIDE_INT_M1 instead of (HOST_WIDE_INT) -1 and
7969         HOST_WIDE_INT_M1U instead of (unsigned HOST_WIDE_INT) -1.
7970         * combine.c: Ditto.
7971         * cse.c: Ditto.
7972         * dojump.c: Ditto.
7973         * double-int.c: Ditto.
7974         * dse.c: Ditto.
7975         * dwarf2out.c: Ditto.
7976         * expmed.c: Ditto.
7977         * expr.c: Ditto.
7978         * fold-const.c: Ditto.
7979         * function.c: Ditto.
7980         * fwprop.c: Ditto.
7981         * genmodes.c: Ditto.
7982         * hwint.c: Ditto.
7983         * hwint.h: Ditto.
7984         * ifcvt.c: Ditto.
7985         * loop-doloop.c: Ditto.
7986         * loop-invariant.c: Ditto.
7987         * loop-iv.c: Ditto.
7988         * match.pd: Ditto.
7989         * optabs.c: Ditto.
7990         * real.c: Ditto.
7991         * reload.c: Ditto.
7992         * rtlanal.c: Ditto.
7993         * simplify-rtx.c: Ditto.
7994         * stor-layout.c: Ditto.
7995         * toplev.c: Ditto.
7996         * tree-ssa-loop-ivopts.c: Ditto.
7997         * tree-vect-generic.c: Ditto.
7998         * tree-vect-patterns.c: Ditto.
7999         * tree.c: Ditto.
8000         * tree.h: Ditto.
8001         * ubsan.c: Ditto.
8002         * varasm.c: Ditto.
8003         * wide-int-print.cc: Ditto.
8004         * wide-int.cc: Ditto.
8005         * wide-int.h: Ditto.
8007 2016-07-19  David Malcolm  <dmalcolm@redhat.com>
8009         * selftest.c (selftest::assert_streq): Handle NULL values of
8010         val_actual and val_expected.
8012 2016-07-19  Martin Jambor  <mjambor@suse.cz>
8014         PR fortran/71688
8015         * trans-decl.c (gfc_generate_function_code): Use cgraph_get_create_node
8016         rather than cgraph_create_node to get a call graph node.
8018 2016-07-19  Richard Biener  <rguenther@suse.de>
8020         * gimple-fold.c (get_base_constructor): Add VIEW_CONVERT case,
8021         handle all tcc_constant bases and valueize SSA names.
8022         * tree-ssa-sccvn.c (fully_constant_vn_reference_p): Handle
8023         tcc_constant bases.
8025 2016-07-19  David Malcolm  <dmalcolm@redhat.com>
8027         * function-tests.c (selftest::verify_three_block_rtl_cfg): Verify
8028         the flags of the exit block and bb2, not just the entry block.
8030 2016-07-19  Richard Biener  <rguenther@suse.de>
8032         PR tree-optimization/71901
8033         * tree-ssa-sccvn.h (struct vn_reference_op_struct): Add
8034         align member, group stuff with the bitfield.
8035         (vn_ref_op_align_unit): New inline.
8036         * tree-ssa-sccvn.c (copy_reference_ops_from_ref): For ARRAY_REFs
8037         record element alignment and operand 3 unchanged.
8038         (ao_ref_init_from_vn_reference): Adjust.
8039         (valueize_refs_1): Likewise.
8040         * tree-ssa-pre.c (create_component_ref_by_pieces_1): Likewise.
8042 2016-07-19  Richard Biener  <rguenther@suse.de>
8044         PR tree-optimization/71908
8045         * tree-ssa-structalias.c (get_constraint_for_component_ref): Handle
8046         symbolic constants in a more reliable way.
8048 2016-07-19  Ilya Enkovich  <ilya.enkovich@intel.com>
8050         * tree-vect-loop-manip.c (vect_update_ivs_after_vectorizer): Update
8051         comment.
8052         (vect_update_inits_of_drs): Likewise.
8053         (vect_create_cond_for_alias_checks): Likewise.
8054         * tree-vect-loop.c (vect_get_known_peeling_cost): Likewise.
8056 2016-07-19  Richard Biener  <rguenther@suse.de>
8058         PR lto/71907
8059         * lto-streamer-out.c (DFS::DFS_write_tree_body): For blocks
8060         with an abstract origin that is not an inlined function outer
8061         scope add a self-reference as abstract origin.
8062         * tree-streamer-out.c (write_ts_block_tree_pointers): Likewise.
8064 2016-07-18  Michael Meissner  <meissner@linux.vnet.ibm.com>
8066         PR target/71493
8067         * config/rs6000/rs6000.c (rs6000_function_value): Fix
8068         unintentional System V.4 structure return breakage for structures
8069         with a single floating point element.
8071 2016-07-18  Yuri Rumyantsev  <ysrumyan@gmail.com>
8073         PR tree-optimization/71734
8074         * tree-ssa-loop-im.c (ref_indep_loop_p_1): Add REF_LOOP argument which
8075         contains REF, use it to check safelen, assume that safelen value
8076         must be greater 1, fix style.
8077         (ref_indep_loop_p_2): Add REF_LOOP argument.
8078         (ref_indep_loop_p): Pass LOOP as additional argument to
8079         ref_indep_loop_p_2.
8081 2016-07-18  Dominik Vogt  <vogt@linux.vnet.ibm.com>
8083         * cfgexpand.c (expand_stack_vars): Implement synamic stack space
8084         allocation in the prologue.
8085         * explow.c (get_dynamic_stack_base): New function to return an address
8086         expression for the dynamic stack base.
8087         (get_dynamic_stack_size): New function to do the required dynamic stack
8088         space size calculations.
8089         (allocate_dynamic_stack_space): Use new functions.
8090         (align_dynamic_address): Move some code from
8091         allocate_dynamic_stack_space to new function.
8092         * explow.h (get_dynamic_stack_base, get_dynamic_stack_size): Export.
8094 2016-07-18  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
8096         * config/s390/s390.c (s390_encode_section_info): Always set
8097         notaligned marker if mode size is 0 or no MEM_ALIGN info could be
8098         found.
8100 2016-07-18  Richard Biener  <rguenther@suse.de>
8102         PR tree-optimization/71893
8103         * tree-ssa-pre.c (create_component_ref_by_pieces_1): Compensate
8104         for sizetype cast added by array_ref_element_size.
8105         * tree-ssa-sccvn.c (copy_reference_ops_from_ref): Likewise.
8107 2016-07-16  John David Anglin  <danglin@gcc.gnu.org>
8109         * config/pa/pa.c (hppa_profile_hook): Allocate stack space for
8110         register parameters.  Remove code to initialize argument pointer
8111         on TARGET_64BIT.  Optimize call to _mcount when it can be reached
8112         using a pc-relative branch.  Cleanup conditional code.
8113         * config/pa/pa.md (call_mcount): New expander.
8114         (call_mcount_nonpic): New insn.
8115         (call_mcount_pic): New insn and split.
8116         (call_mcount_pic_post_reload): New insn.
8117         (call_mcount_64bit): New insn and split.
8118         (call_mcount_64bit_post_reload): New insn.
8120 2016-07-15  Georg-Johann Lay  <avr@gjlay.de>
8122         * config/avr/predicates.md (const_m255_to_m1_operand): New.
8123         * config/avr/constraints.md (Cn8, Ca1, Co1, Yx2): New constraints.
8124         * config/avr/avr.md (add<mode>3) <ALL1>: Fix set_vzn for +/-2.
8125         (*cmphi.zero-extend.0, *cmphi.zero-extend.1)
8126         (*usum_widenqihi3, *udiff_widenqihi3)
8127         (*addhi3_zero_extend.const): New combiner insns.
8128         (andqi3, iorqi3): Provide "l" (NO_LD_REGS) alternative if
8129         just 1 bit is affected.
8130         * config/avr/avr.c (avr_out_bitop) <QImode>: Don't access xop[3].
8131         (avr_out_compare) [EQ,NE]: Tweak comparing d-regs against -1.
8133 2016-07-15  Cesar Philippidis  <cesar@codesourcery.com>
8135         * omp-low.c (lower_omp_target): Mark data clauses with
8136         GOMP_MAP_FORCE_{PRESENT,TO,FROM,TOFROM} as potentially having
8137         zero-length subarrays.
8139 2016-07-15  Richard Biener  <rguenther@suse.de>
8141         PR tree-optimization/71881
8142         * tree-loop-distribution.c (destroy_loop): Remove blocks in
8143         reverse DOM order to make debug temp generation happy.
8145 2016-07-15  Richard Biener  <rguenther@suse.de>
8147         PR tree-optimization/71887
8148         * tree-ssa-phiopt.c (absorbing_element_p): Add rhs arg and
8149         verify it is not zero for division / modulo handling.
8150         (value_replacement): Adjust.
8152 2016-07-15  Virendra Pathak  <virendra.pathak@broadcom.com>
8153             Julian Brown  <julian@codesourcery.com>
8155         * config/aarch64/aarch64-cores.def: Update vulcan COSTS.
8156         * config/aarch64/aarch64-cost-tables.h
8157         (vulcan_extra_costs): New variable.
8158         * config/aarch64/aarch64.c
8159         (vulcan_addrcost_table): Likewise.
8160         (vulcan_regmove_cost): Likewise.
8161         (vulcan_vector_cost): Likewise.
8162         (vulcan_branch_cost): Likewise.
8163         (vulcan_tunings): Likewise.
8165 2016-07-15  Alexander Monakov  <amonakov@ispras.ru>
8167         * cgraphunit.c (cgraph_order_sort_kind): New entry ORDER_VAR_UNDEF.
8168         (output_in_order): Loop over undefined variables too.  Output them
8169         via assemble_undefined_decl.  Skip variables that correspond to hard
8170         registers or have value-exprs.
8171         * varpool.c (symbol_table::output_variables): Handle undefined
8172         variables together with defined ones.
8174 2016-07-15  Richard Biener  <rguenther@suse.de>
8176         * tree-ssa-pre.c (get_representative_for): Make sure to return
8177         the value number of SSA names.
8178         (phi_translate_1): get_representative_for cannot return NULL.
8179         (do_pre_regular_insertion): Remove redundant call to
8180         fully_constant_expression.
8181         (do_pre_partial_partial_insertion): Likewise.
8183 2016-07-15  Bin Cheng  <bin.cheng@arm.com>
8185         * tree-scalar-evolution.c (simple_iv_with_niters): New funcion.
8186         (derive_simple_iv_with_niters): New function.
8187         (simple_iv): Rewrite using simple_iv_with_niters.
8188         * tree-scalar-evolution.h (simple_iv_with_niters): New decl.
8189         * tree-ssa-loop-niter.c (number_of_iterations_exit_assumptions): New
8190         function.
8191         (number_of_iterations_exit): Rewrite using above function.
8192         * tree-ssa-loop-niter.h (number_of_iterations_exit_assumptions): New
8193         Decl.
8195 2016-07-15  Richard Biener  <rguenther@suse.de>
8197         * config/i386/i386.c (ix86_builtin_vectorization_cost): Adjust
8198         vec_construct cost.
8200 2016-07-14  Jakub Jelinek  <jakub@redhat.com>
8202         PR tree-optimization/71872
8203         * tree-data-ref.c (get_references_in_stmt): Ignore references
8204         with is_gimple_constant get_base_address.
8206 2016-07-14  Thomas Preud'homme  <thomas.preudhomme@arm.com>
8208         * config/arm/arm.h (TARGET_HAVE_LDACQ): Enable for ARMv8-M Mainline.
8209         (TARGET_HAVE_LDACQD): New macro.
8210         * config/arm/sync.md (atomic_loaddi): Use TARGET_HAVE_LDACQD rather
8211         than TARGET_HAVE_LDACQ.
8212         (arm_load_acquire_exclusivedi): Likewise.
8213         (arm_store_release_exclusivedi): Likewise.
8215 2016-07-14  Thomas Preud'homme  <thomas.preudhomme@arm.com>
8217         PR rtl-optimization/71878
8218         * lra-constraints.c (match_reload): Pass information about other
8219         output operands.  Create new unique register value if matching input
8220         operand shares same register value as output operand being considered.
8221         (curr_insn_transform): Record output operands already processed.
8223 2016-07-14  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
8225         PR target/65951
8226         PR tree-optimization/70923
8227         * tree-vect-patterns.c: Include mult-synthesis.h.
8228         (target_supports_mult_synth_alg): New function.
8229         (synth_lshift_by_additions): Likewise.
8230         (apply_binop_and_append_stmt): Likewise.
8231         (vect_synth_mult_by_constant): Likewise.
8232         (target_has_vecop_for_code): Likewise.
8233         (vect_recog_mult_pattern): Use above functions to synthesize vector
8234         multiplication by integer constants.
8236 2016-07-14  Alan Modra  <amodra@gmail.com>
8238         * gcc/config/rs6000/altivec.md (altivec_mov<mode>): Disparage
8239         gpr alternatives.  Correct '*' placement on Y,r alternative.
8240         Add '*' on operand 1 of r,r alternative.
8242 2016-07-14  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
8244         * expmed.c (mult_variant, choose_mult_variant): Move declaration to...
8245         * expmed.h: ... Here.
8247 2016-07-14  Jan Hubicka  <hubicka@ucw.cz>
8249         * gimple.h (stmt_can_terminate_bb_p): New function.
8250         * tree-cfg.c (need_fake_edge_p): Rename to ...
8251         (stmt_can_terminate_bb_p): ... this; return true if stmt can
8252         throw external; handle const and pure calls.
8253         * tree-ssa-loop-niter.c (loop_only_exit_p): Use it.
8255 2016-07-14  Richard Biener  <rguenther@suse.de>
8257         PR tree-optimization/71866
8258         * tree-ssa-pre.c (get_constant_for_value_id): Remove.
8259         (do_hoist_insertion): Avoid endless recursion when we
8260         didn't insert anything because we managed to simplify
8261         things down to a constant or SSA name.
8262         (fully_constant_expression): Re-write in terms of ...
8263         * tree-ssa-sccvn.h (vn_nary_simplify): ... this.  Declare.
8264         * tree-ssa-sccvn.c (vn_nary_simplify): New wrapper around
8265         vn_nary_build_or_lookup_1.
8266         (vn_nary_build_or_lookup_1): Added flag and renamed from ...
8267         (vn_nary_build_or_lookup): ... this which now wraps it.
8269 2016-07-14  Alan Modra  <amodra@gmail.com>
8271         PR target/71733
8272         * config/rs6000/rs6000.c (rs6000_option_override_internal): Deal
8273         with p9_vector override before power9-dform override.
8275 2016-07-13  Andi Kleen  <ak@linux.intel.com>
8277         * value-prof.c (gimple_value_profile_transformations): Don't run
8278         when auto_profile is on.
8280 2016-07-13  Andi Kleen  <ak@linux.intel.com>
8282         * auto-profile.c (update_inlined_ind_target,
8283         afdo_indirect_call): Print information to dump file.
8285 2016-07-13  Andrew Burgess  <andrew.burgess@embecosm.com>
8287         * genrecog.c (special_predicate_operand_p): New function.
8288         (predicate_name): Move function.
8289         (validate_pattern): Don't warn about missing mode for all
8290         define_special_predicate predicates.
8292 2016-07-13  Bin Cheng  <bin.cheng@arm.com>
8294         * tree-vect-data-refs.c (vect_no_alias_p): New function.
8295         (vect_prune_runtime_alias_test_list): Call vect_no_alias_p to
8296         resolve alias checks which are known at compilation time.
8297         Truncate vector LOOP_VINFO_MAY_ALIAS_DDRS(loop_vinfo) if all
8298         alias checks are resolved.  Move dump info for too many runtime
8299         alias checks to here...
8300         * tree-vect-loop.c (vect_analyze_loop_2): ...From here.
8302 2016-07-13  Richard Biener  <rguenther@suse.de>
8304         PR tree-optimization/24574
8305         * tree-ssa-phiopt.c (absorbing_element_p): Pass in argument
8306         position and add shift, rotate, divison and modulo support
8307         for left zero.
8308         (value_replacement): Pass in argument position to absorbing_element_p.
8310 2016-07-13  Ilya Enkovich  <ilya.enkovich@intel.com>
8312         PR ipa/71633
8313         * ipa-inline-transform.c (inline_call): Support
8314         instrumented thunks.
8316 2016-07-13  Thomas Preud'homme  <thomas.preudhomme@arm.com>
8318         * config/arm/arm.h (TARGET_HAVE_CBZ): Define.
8319         (TARGET_IDIV): Set for all Thumb targets provided they have hardware
8320         divide feature.
8321         * config/arm/arm.md (divsi3): New unpredicable alternative for ARMv8-M
8322         Baseline.  Make initial alternative TARGET_32BIT only.
8323         (udivsi3): Likewise.
8324         * config/arm/thumb1.md (thumb1_cbz): New define_insn.
8325         * doc/sourcebuild.texi (arm_thumb1_cbz_ok): Document new effective
8326         target.
8328 2016-07-13  Thomas Preud'homme  <thomas.preudhomme@arm.com>
8330         * config/arm/arm.h (TARGET_HAVE_MOVT): Include ARMv8-M as having MOVT.
8331         * config/arm/arm.c (arm_arch_name): (const_ok_for_op): Check MOVT/MOVW
8332         availability with TARGET_HAVE_MOVT.
8333         (thumb_legitimate_constant_p): Strip the high part of a label_ref.
8334         (thumb1_rtx_costs): Also return 0 if setting a half word constant and
8335         MOVW is available and replace (unsigned HOST_WIDE_INT) INTVAL by
8336         UINTVAL.
8337         (thumb1_size_rtx_costs): Make set of half word constant also cost 1
8338         extra instruction if MOVW is available.  Use a cost variable
8339         incremented by COSTS_N_INSNS (1) when the condition match rather than
8340         returning an arithmetic expression based on COSTS_N_INSNS.  Make
8341         constant with bottom half word zero cost 2 instruction if MOVW is
8342         available.
8343         * config/arm/arm.md (define_attr "arch"): Add v8mb.
8344         (define_attr "arch_enabled"): Set to yes if arch value is v8mb and
8345         target is ARMv8-M Baseline.
8346         (arm_movt): New unpredicable alternative for ARMv8-M Baseline.
8347         (arm_movtas_ze): Likewise.
8348         * config/arm/thumb1.md (thumb1_movdi_insn): Add ARMv8-M Baseline only
8349         alternative for constants satisfying j constraint.
8350         (thumb1_movsi_insn): Likewise.
8351         (movsi splitter for K alternative): Tighten condition to not trigger
8352         if movt is available and j constraint is satisfied.
8353         (Pe immediate splitter): Likewise.
8354         (thumb1_movhi_insn): Add ARMv8-M Baseline only alternative for
8355         constant fitting in an halfword to use MOVW.
8356         * doc/sourcebuild.texi (arm_thumb1_movt_ok): Document new ARM
8357         effective target.
8359 2016-07-13  Richard Biener  <rguenther@suse.de>
8361         PR middle-end/71104
8362         * gimplify.c (gimplify_modify_expr): Gimplify the RHS before
8363         gimplifying the LHS.  Make sure to gimplify a returning twice
8364         call LHS without using SSA names.
8366 2016-07-12  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
8368         * tree-data-ref.c (find_data_references_in_stmt): Remove
8369         unnecessary call to vec::release.
8370         (graphite_find_data_references_in_stmt): Likewise.
8371         * tree-ssa-alias.c (nonoverlapping_component_refs_of_decl_p): Likewise.
8372         * tree-vect-stmts.c (vectorizable_condition): Likewise.
8374 2016-07-12  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
8376         * cfgexpand.c (expand_used_vars): Make the type of a local
8377         variable auto_vec.
8378         * genmatch.c (lower_for): Likewise.
8379         * haifa-sched.c (haifa_sched_init): Likewise.
8380         (add_to_speculative_block): Likewise.
8381         (create_check_block_twin): Likewise.
8382         * predict.c (handle_missing_profiles): Likewise.
8383         * tree-data-ref.c (loop_nest_has_data_refs): Likewise.
8384         * tree-diagnostic.c (maybe_unwind_expanded_macro_loc): Likewise.
8385         * tree-ssa-loop-niter.c (discover_iteration_bound_by_body_walk):
8386         Likewise.
8387         (maybe_lower_iteration_bound): Likewise.
8388         * tree-ssa-sccvn.c (DFS): Likewise.
8389         * tree-stdarg.c (reachable_at_most_once): Likewise.
8390         * tree-vect-stmts.c (vectorizable_conversion): Likewise.
8391         (vectorizable_store): Likewise.
8393 2016-07-12  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
8395         * tree-ssa-sccvn.c (sccvn_dom_walker::~sccvn_dom_walker): remove.
8396         (sccvn_dom_walker): make cond_stack an auto_vec.
8398 2016-07-12  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
8400         * ree.c (struct ext_state): Make type of members auto_vec.
8401         (find_and_remove_re): Adjust.
8403 2016-07-12  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
8405         * cfgexpand.c (struct stack_vars_data): Make type of fields
8406         auto_vec.
8407         (expand_used_vars): Adjust.
8409 2016-07-12  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
8411         * ipa.c (record_cdtor_fn): Adjust.
8412         (build_cdtor_fns): Likewise.
8413         (ipa_cdtor_merge): Make static_ctors and static_dtors local
8414         variables.
8416 2016-07-12  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
8418         * genextract.c (struct accum_extract): Add constructor and make
8419         members auto_vec.
8420         (gen_insn): Adjust.
8422 2016-07-12  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
8424         * tree.c (struct free_lang_data_d): Add constructor and change
8425         types of members to ones that automatically manage resources.
8426         (fld_worklist_push): Adjust.
8427         (find_decls_types): Likewise.
8428         (find_decls_types_in_eh_region): Likewise.
8429         (free_lang_data_in_cgraph): Stop manually creating and
8430         destroying members of free_lang_data_d.
8432 2016-07-13  Uros Bizjak  <ubizjak@gmail.com>
8434         PR rtl-optimization/68961
8435         * config/i386/sse.md (movsd/movhpd to movupd peephole2s): Add new
8436         peephole variant.  Use sse_reg_operand predicates.
8438 2016-07-12  Uros Bizjak  <ubizjak@gmail.com>
8440         * config/i386/predicates.md (x86_64_immediate_operand)
8441         <case CONST_INT>: Remove unneeded truncation to DImode.
8442         <case CONST>: Ditto.
8443         (x86_64_zext_immediate_operand) <case CONST>: Ditto.
8445 2016-07-12  Michael Meissner  <meissner@linux.vnet.ibm.com>
8447         PR target/71805
8448         * config/rs6000/altivec.md (altivec_vperm_<mode>_internal):
8449         The xxperm and xxpermr instructions require that the 2nd input
8450         operand overlap with the output operand, and not the 1st.
8451         (altivec_vperm_v8hiv16qi): Likewise.
8452         (altivec_vperm_<mode>_uns_internal): Likewise.
8453         (altivec_vpermr_<mode>_internal): Likewise.
8454         (vperm_v8hiv4si): Likewise.
8455         (vperm_v16qiv8hi): Likewise.
8457 2016-07-12  Nathan Sidwell  <nathan@acm.org>
8459         * config/arm/arm.c (arm_option_override): Set MASK_SINGLE_PIC_BASE
8460         when -mno-pic-data-is-text-relative is in effect, by default.
8461         * doc/invoke.texi (mpic-data-is-text-relative): Document new
8462         behavior and clarify.
8464 2016-07-12  Martin Liska  <mliska@suse.cz>
8466         * params.def: Add avg-loop niter.
8467         * tree-ssa-loop-ivopts.c (avg_loop_niter): Use the param.
8468         * cfgloopanal.c (expected_loop_iterations_unbounded): Likewise.
8469         * doc/invoke.texi: Document the new parameter.
8471 2016-07-12  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
8473         PR middle-end/71700
8474         * expr.c (store_constructor): Mask sign-extended bits when widening
8475         sub-word constructor element at the start of a word.
8477 2016-07-12  Martin Liska  <mliska@suse.cz>
8479         * Makefile.in: Append rule for params-options.h.
8480         * params-options.h: New file.
8482 2016-07-12  Martin Liska  <mliska@suse.cz>
8484         * ira-build.c (mark_loops_for_removal): Properly iterate
8485         loops.
8487 2016-07-12  Steven Bosscher  <steven@gcc.gnu.org>
8488             Richard Biener  <rguenther@suse.de>
8490         PR tree-optimization/23286
8491         PR tree-optimization/70159
8492         * doc/invoke.texi: Document -fcode-hoisting.
8493         * common.opt (fcode-hoisting): New flag.
8494         * opts.c (default_options_table): Enable -fcode-hoisting at -O2+.
8495         * tree-ssa-pre.c (pre_stats): Add hoist_insert.
8496         (do_regular_insertion): Rename to ...
8497         (do_pre_regular_insertion): ... this and amend general comments
8498         on insertion strathegy.
8499         (do_partial_partial_insertion): Rename to ...
8500         (do_pre_partial_partial_insertion): ... this.
8501         (do_hoist_insertion): New function.
8502         (insert_aux): Take flags on whether to do PRE and/or hoist insertion
8503         and call do_hoist_insertion properly.
8504         (insert): Adjust.
8505         (pass_pre::gate): Enable also if -fcode-hoisting is enabled.
8506         (pass_pre::execute): Register hoist_insert stats.
8508 2016-07-12  Jakub Jelinek  <jakub@redhat.com>
8510         PR middle-end/71716
8511         * gimple-fold.c (optimize_atomic_compare_exchange_p): Return false
8512         for SCALAR_FLOAT_TYPE_P type of expected var, or if TYPE_PRECISION
8513         is different from mode's bitsize.  Small cleanup.
8515 2016-07-12  Richard Biener  <rguenther@suse.de>
8517         PR rtl-optimization/68961
8518         * fwprop.c (propagate_rtx): Allow SUBREGs of VEC_CONCAT and CONCAT
8519         to simplify to a non-constant.
8521 2016-07-11  Jakub Jelinek  <jakub@redhat.com>
8523         PR middle-end/71758
8524         * omp-low.c (expand_omp_target): Gimplify device.
8526         PR tree-optimization/71823
8527         * tree-vect-stmts.c (vectorizable_operation): Use vect_get_vec_defs
8528         to get vec_oprnds2 from op2.
8530 2016-07-11  Uros Bizjak  <ubizjak@gmail.com>
8532         * config/i386/predicates.md (x86_64_immediate_operand) <case CONST>:
8533         Hoist common subexpressions.
8534         (x86_64_zext_immediate_operand) <case CONST>: Ditto.
8536 2016-07-11  Pat Haugen  <pthaugen@us.ibm.com>
8538         PR target/71800
8539         * config/rs6000/rs6000.md (stfiwx): Change constraint to 'wu' to
8540         prevent generation of 'stxsiwx' on pre Power8 hardware.
8542 2016-07-11  David Malcolm  <dmalcolm@redhat.com>
8544         * input.c: Include cpplib.h.
8545         (selftest::temp_source_file): New class.
8546         (selftest::temp_source_file::temp_source_file): New ctor.
8547         (selftest::temp_source_file::~temp_source_file): New dtor.
8548         (selftest::should_have_column_data_p): New function.
8549         (selftest::test_should_have_column_data_p): New function.
8550         (selftest::temp_line_table): New class.
8551         (selftest::temp_line_table::temp_line_table): New ctor.
8552         (selftest::temp_line_table::~temp_line_table): New dtor.
8553         (selftest::test_accessing_ordinary_linemaps): Add case_ param; use
8554         it to create a temp_line_table.
8555         (selftest::assert_loceq): Only verify LOCATION_COLUMN for
8556         locations that are known to have column data.
8557         (selftest::line_table_case): New struct.
8558         (selftest::test_reading_source_line): Move tempfile handling
8559         to class temp_source_file.
8560         (ASSERT_TOKEN_AS_TEXT_EQ): New macro.
8561         (selftest::assert_token_loc_eq): New function.
8562         (ASSERT_TOKEN_LOC_EQ): New macro.
8563         (selftest::test_lexer): New function.
8564         (selftest::boundary_locations): New array.
8565         (selftest::input_c_tests): Call test_should_have_column_data_p.
8566         Loop over a test matrix of interesting values of location and
8567         default_range_bits, calling test_lexer on each case in the matrix.
8568         Move call to test_accessing_ordinary_linemaps into the matrix.
8569         * selftest.h (ASSERT_EQ): Reimplement in terms of...
8570         (ASSERT_EQ_AT): New macro.
8572 2016-07-11  H.J. Lu  <hongjiu.lu@intel.com>
8574         PR target/71801
8575         * config/i386/i386.c (timode_scalar_chain::fix_debug_reg_uses):
8576         Don't convert TImode in debug insn.
8578 2016-07-11  Bernd Edlinger  <bernd.edlinger@hotmail.de>
8580         Convert TYPE_ALIGN_OK to a TYPE_LANG_FLAG.
8581         * tree-core.h (tree_base::nothrow_flag): Adjust comment.
8582         (tree_type_common::lang_flag_7): New.
8583         (tree_type_common::spare): Reduce size.
8584         * tree.h (TYPE_ALIGN_OK): Remove.
8585         (TYPE_LANG_FLAG_7): New.
8586         (get_inner_reference): Adjust header.
8587         * print-tree.c (print_node): Adjust.
8588         * expr.c (get_inner_reference): Remove parameter keep_aligning.
8589         (get_bit_range, expand_assignment, expand_expr_addr_expr_1): Adjust
8590         calls to get_inner_reference.
8591         (expand_expr_real_1): Adjust call to get_inner_reference.  Remove
8592         handling of TYPE_ALIGN_OK.
8593         * builtins.c (get_object_alignment_2): Adjust call to
8594         get_inner_reference.  Remove handling of VIEW_CONVERT_EXPR.
8595         * emit-rtl.c (set_mem_attributes_minus_bitpos): Remove handling of
8596         TYPE_ALIGN_OK.
8597         * asan.c (instrument_derefs): Adjust calls to get_inner_reference.
8598         * cfgexpand.c (expand_debug_expr): Likewise.
8599         * dbxout.c (dbxout_expand_expr): Likewise.
8600         * dwarf2out.c (loc_list_for_address_of_addr_expr_of_indirect_ref,
8601         loc_list_from_tree, fortran_common): Likewise.
8602         * fold-const.c (optimize_bit_field_compare,
8603         decode_field_reference, fold_unary_loc, fold_comparison,
8604         split_address_to_core_and_offset): Likewise.
8605         * gimple-laddress.c (execute): Likewise.
8606         * gimple-ssa-strength-reduction.c (slsr_process_ref): Likewise.
8607         * gimplify.c (gimplify_scan_omp_clauses): Likewise.
8608         * hsa-gen.c (gen_hsa_addr): Likewise.
8609         * simplifx-rtx.c (delegitimize_mem_from_attrs): Likewise.
8610         * tsan.c (instrument_expr): Likewise.
8611         * ubsan.c (instrument_bool_enum_load, instrument_object_size): Likewise.
8612         * tree.c (verify_type_variant): Remove handling of TYPE_ALIGN_OK.
8613         * tree-affine.c (tree_to_aff_combination,
8614         get_inner_reference_aff): Adjust calls to get_inner_reference.
8615         * tree-data-ref.c (split_constant_offset_1,
8616         dr_analyze_innermost): Likewise.
8617         * tree-scalar-evolution.c (interpret_rhs_expr): Likewise.
8618         * tree-sra.c (ipa_sra_check_caller): Likewise.
8619         * tree-ssa-loop-ivopts.c (split_address_cost): Likewise.
8620         * tree-ssa-math-opts.c (find_bswap_or_nop_load,
8621         bswap_replace): Likewise.
8622         * tree-vect-data-refs.c (vect_check_gather,
8623         vect_analyze_data_refs): Likewise.
8624         * config/mips/mips.c (r10k_safe_mem_expr_p): Likewise.
8625         * config/pa/pa.c (pa_emit_move_sequence): Remove handling of
8626         TYPE_ALIGN_OK.
8628 2016-07-11  David Malcolm  <dmalcolm@redhat.com>
8630         * Makefile.in (selftest-valgrind): New phony target.
8631         * function-tests.c (selftest::build_cfg): Delete pass instances
8632         created by the test.
8633         (selftest::convert_to_ssa): Likewise.
8634         (selftest::test_expansion_to_rtl): Likewise.
8635         * tree-cfg.c (selftest::test_linear_chain): Release dominator
8636         vectors.
8637         (selftest::test_diamond): Likewise.
8639 2016-07-11  Richard Biener  <rguenther@suse.de>
8641         PR tree-optimization/71816
8642         * tree-ssa-pre.c (compute_avail): Adjust alignment of ref rather
8643         than replacing all of its operands.
8645 2016-07-11  Alan Modra  <amodra@gmail.com>
8647         * config/rs6000/rs6000.md (UNSPEC_DOLOOP): New unspec.
8648         (ctr<mode>): Add unspec.
8649         (ctr<mode>_internal*): Likewise.
8651 2016-07-08  James Bowman  <james.bowman@ftdichip.com>
8653         * config/ft32/ft32.c (ft32_elf_encode_section_info): New function.
8654         * config/ft32/ft32.h (ASM_OUTPUT_SYMBOL_REF): New function.
8656 2016-07-08  Vladimir Makarov  <vmakarov@redhat.com>
8658         PR rtl-optimization/71621
8659         * lra-constraints.c (process_alt_operands): Check combination of
8660         reg class and mode.
8662 2016-07-08  Jason Merrill  <jason@redhat.com>
8663             Richard Biener  <rguenther@suse.de>
8665         P0145: Refining Expression Order for C++.
8666         * gimplify.c (initial_rhs_predicate_for): New.
8667         (gimplfy_modify_expr): Gimplify RHS before LHS.
8669 2016-07-08  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
8671         PR target/71297
8672         * config/rs6000/rs6000-c.c (altivec_resolve_overloaded_builtin):
8673         Allow standard error handling to take over when a wrong number
8674         of arguments is presented to __builtin_vec_ld () or
8675         __builtin_vec_st ().
8677 2016-07-08  Jiong Wang  <jiong.wang@arm.com>
8679         * config/aarch64/aarch64-simd-builtins.def (smax): Remove float
8680         variants.
8681         (smin): Likewise.
8682         (fmax): New entry.
8683         (fmin): Likewise.
8684         * config/aarch64/arm_neon.h (vmaxnm_f32): Use
8685         __builtin_aarch64_fmaxv2sf.
8686         (vmaxnmq_f32): Likewise.
8687         (vmaxnmq_f64): Likewise.
8688         (vminnm_f32): Likewise.
8689         (vminnmq_f32): Likewise.
8690         (vminnmq_f64): Likewise.
8692 2016-07-08  Michael Meissner  <meissner@linux.vnet.ibm.com>
8694         PR target/71806
8695         * config/rs6000/rs6000-cpus.def (ISA_3_0_MASKS_SERVER): Do not
8696         enable -mfloat128-hardware by default.
8697         (ISA_3_0_MASKS_IEEE): New macro to give all of the VSX options
8698         that IEEE 128-bit hardware support needs.
8699         * config/rs6000/rs6000.c (rs6000_option_override_internal): If
8700         -mcpu=power9 -mfloat128, enable -mfloat128-hardware by default.
8701         Use ISA_3_0_MASKS_IEEE as the set of options that IEEE 128-bit
8702         floating point requires.
8703         * doc/invoke.texi (RS/6000 and PowerPC Options): Document
8704         -mfloat128 and -mfloat128-hardware changes.
8706 2016-07-08  Alan Hayward  <alan.hayward@arm.com>
8708         PR tree-optimization/71667
8709         * tree-vect-loop.c (vectorizable_live_operation): ignore DEBUG stmts
8711 2016-07-08  Martin Liska  <mliska@suse.cz>
8713         PR middle-end/71606
8714         * fold-const.c (fold_convertible_p): As COMPLEX_TYPE
8715         folding produces SAVE_EXPRs, thus return false for the type.
8717 2016-07-07  Martin Liska  <mliska@suse.cz>
8719         * file-find.c (remove_prefix): New function.
8720         * file-find.h (remove_prefix): Declare the function.
8721         * gcc-ar.c (main): Skip a folder of the wrapper if
8722         a wrapped binary would point to the same file.
8724 2016-07-07  Jan Hubicka  <jh@suse.cz>
8726         * tree-scalar-evolution.c (iv_can_overflow_p): export.
8727         * tree-scalar-evolution.h (iv_can_overflow_p): Declare.
8728         * tree-ssa-loop-ivopts.c (alloc_iv): Use it.
8730 2016-07-07  Ilya Enkovich  <ilya.enkovich@intel.com>
8732         PR ipa/71624
8733         * ipa-inline-analysis.c (compute_inline_parameters): Set
8734         local.can_change_signature to false for intrumentation
8735         thunk callees.
8737 2016-07-07  Thomas Preud'homme  <thomas.preudhomme@arm.com>
8739         * config/arm/arm.h (TARGET_USE_MOVT): Check MOVT/MOVW availability
8740         with TARGET_HAVE_MOVT.
8741         (TARGET_HAVE_MOVT): Define.
8742         * config/arm/arm.c (const_ok_for_op): Check MOVT/MOVW
8743         availability with TARGET_HAVE_MOVT.
8744         * config/arm/arm.md (arm_movt): Use TARGET_HAVE_MOVT to check MOVT
8745         availability.
8746         (addsi splitter): Use TARGET_THUMB && TARGET_HAVE_MOVT rather than
8747         TARGET_THUMB2.
8748         (symbol_refs movsi splitter): Remove TARGET_32BIT check.
8749         (arm_movtas_ze): Use TARGET_HAVE_MOVT to check MOVT availability.
8750         * config/arm/constraints.md (define_constraint "j"): Use
8751         TARGET_HAVE_MOVT to check MOVT availability.
8753 2016-07-07  Thomas Preud'homme  <thomas.preudhomme@arm.com>
8755         * config/arm/arm-protos.h: Reindent FL_FOR_* macro definitions.
8757 2016-07-07  Thomas Preud'homme  <thomas.preudhomme@arm.com>
8759         * config/arm/arm-arches.def (armv8-m.base): Define new architecture.
8760         (armv8-m.main): Likewise.
8761         (armv8-m.main+dsp): Likewise.
8762         * config/arm/arm-protos.h (FL_FOR_ARCH8M_BASE): Define.
8763         (FL_FOR_ARCH8M_MAIN): Likewise.
8764         * config/arm/arm-tables.opt: Regenerate.
8765         * config/arm/bpabi.h: Add armv8-m.base, armv8-m.main and
8766         armv8-m.main+dsp to BE8_LINK_SPEC.
8767         * config/arm/arm.h (TARGET_HAVE_LDACQ): Exclude ARMv8-M.
8768         (enum base_architecture): Add BASE_ARCH_8M_BASE and BASE_ARCH_8M_MAIN.
8769         * config/arm/arm.c (arm_arch_name): Increase size to work with ARMv8-M
8770         Baseline and Mainline.
8771         (arm_option_override_internal): Also disable arm_restrict_it when
8772         !arm_arch_notm.  Update comment for -munaligned-access to also cover
8773         ARMv8-M Baseline.
8774         (arm_file_start): Increase buffer size for printing architecture name.
8775         * doc/invoke.texi: Document architectures armv8-m.base, armv8-m.main
8776         and armv8-m.main+dsp.
8777         (mno-unaligned-access): Clarify that this is disabled by default for
8778         ARMv8-M Baseline architectures as well.
8780 2016-07-07  Thomas Preud'homme  <thomas.preudhomme@arm.com>
8782         * config/arm/elf.h: Use __ARM_ARCH_ISA_THUMB and __ARM_ARCH_ISA_ARM to
8783         decide whether to prevent some libgcc routines being included for some
8784         multilibs rather than __ARM_ARCH_6M__ and add comment to indicate the
8785         link between this condition and the one in
8786         libgcc/config/arm/lib1func.S.
8788 2016-07-07  Richard Biener  <rguenther@suse.de>
8790         * tree-ssa-pre.c: Include alias.h.
8791         (compute_avail): If we have multiple VN_REFERENCEs with the
8792         same hashtable entry adjust that to make it a valid replacement
8793         for all of them with respect to alignment and aliasing
8794         when doing insertion.
8795         * tree-ssa-sccvn.h (vn_reference_operands_for_lookup): Declare.
8796         * tree-ssa-sccvn.c (vn_reference_operands_for_lookup): New function.
8798 2016-07-06  Segher Boessenkool  <segher@kernel.crashing.org>
8800         PR target/70098
8801         PR target/71763
8802         * config/rs6000/rs6000.md (*ctr<mode>_internal1, *ctr<mode>_internal2,
8803         *ctr<mode>_internal5, *ctr<mode>_internal6): Add *wi to the output
8804         constraint.
8806 2016-07-06  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
8808         * var-tracking.c (struct adjust_mem_data): Make side_effects a vector.
8809         (adjust_mems): Adjust.
8810         (adjust_insn): Likewise.
8811         (prepare_call_arguments): Likewise.
8813 2016-07-06  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
8815         * gcse.c (struct ls_expr): Make stores field a vector.
8816         (ldst_entry): Adjust.
8817         (free_ldst_entry): Likewise.
8818         (print_ldst_list): Likewise.
8819         (compute_ld_motion_mems): Likewise.
8820         (update_ld_motion_stores): Likewise.
8822 2016-07-06  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
8824         * gcse.c (struct ls_expr): Remove loads field.
8825         (ldst_entry): Adjust.
8826         (free_ldst_entry): Likewise.
8827         (print_ldst_list): Likewise.
8828         (compute_ld_motion_mems): Likewise.
8830 2016-07-06  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
8832         * store-motion.c (struct st_expr): Make antic_stores a vector.
8833         (st_expr_entry): Adjust.
8834         (free_st_expr_entry): Likewise.
8835         (print_store_motion_mems): Likewise.
8836         (find_moveable_store): Likewise.
8837         (compute_store_table): Likewise.
8838         (remove_reachable_equiv_notes): Likewise.
8839         (replace_store_insn): Likewise.
8840         (build_store_vectors): Likewise.
8842 2016-07-06  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
8844         * config/arm/driver-arm.c (arm_cpu_table): Add entries for cortex-a32,
8845         cortex-a35, cortex-a53, cortex-a57, cortex-a72, cortex-a73.
8847 2016-07-06  Yuri Rumyantsev  <ysrumyan@gmail.com>
8849         PR tree-optimization/71518
8850         * tree-vect-data-refs.c (vect_compute_data_ref_alignment): Adjust
8851         misalign also for outer loops with negative step.
8853 2016-07-06  Wilco Dijkstra  <wdijkstr@arm.com>
8855         * config/arm/cortex-a53.md: Use final_presence_set for in-order.
8856         (cortex_a53_shift): Add mov_shift.
8857         (cortex_a53_shift_reg): Add new reservation for register shifts.
8858         (cortex_a53_alu): Remove bfm.
8859         (cortex_a53_alu_shift): Add bfm, remove mov_shift.
8860         (cortex_a53_alu_extr): Add new reservation for EXTR.
8861         (bypasses): Improve bypass modelling.
8863 2016-07-06  Senthil Kumar Selvaraj  <senthil_kumar.selvaraj@atmel.com>
8865         PR target/50739
8866         * config/avr/avr.c (avr_asm_select_section): Strip off
8867         SECTION_DECLARED from flags when calling get_section.
8869 2016-07-06  Richard Sandiford  <richard.sandiford@arm.com>
8871         * tree-vectorizer.h (vect_memory_access_type): Add
8872         VMAT_INVARIANT, VMAT_CONTIGUOUS_DOWN and VMAT_CONTIGUOUS_REVERSED.
8873         * tree-vect-stmts.c (compare_step_with_zero): New function.
8874         (perm_mask_for_reverse): Move further up file.
8875         (get_group_load_store_type): Stick to VMAT_ELEMENTWISE if the
8876         step is negative.
8877         (get_negative_load_store_type): New function.
8878         (get_load_store_type): Call it.  Add an ncopies argument.
8879         (vectorizable_mask_load_store): Update call accordingly and
8880         remove tests for negative steps.
8881         (vectorizable_store, vectorizable_load): Likewise.  Handle new
8882         memory_access_types.
8884 2016-07-06  Richard Sandiford  <richard.sandiford@arm.com>
8886         * tree-vectorizer.h (vect_memory_access_type): New enum.
8887         (_stmt_vec_info): Add a memory_access_type field.
8888         (STMT_VINFO_MEMORY_ACCESS_TYPE): New macro.
8889         (vect_model_store_cost): Take an access type instead of a boolean.
8890         (vect_model_load_cost): Likewise.
8891         * tree-vect-slp.c (vect_analyze_slp_cost_1): Update calls to
8892         vect_model_store_cost and vect_model_load_cost.
8893         * tree-vect-stmts.c (vec_load_store_type): New enum.
8894         (vect_model_store_cost): Take an access type instead of a
8895         store_lanes_p boolean.  Simplify tests.
8896         (vect_model_load_cost): Likewise, but for load_lanes_p.
8897         (get_group_load_store_type, get_load_store_type): New functions.
8898         (vectorizable_store): Use get_load_store_type.  Record the access
8899         type in STMT_VINFO_MEMORY_ACCESS_TYPE.
8900         (vectorizable_load): Likewise.
8901         (vectorizable_mask_load_store): Likewise.  Replace is_store
8902         variable with vls_type.
8904 2016-07-06  Richard Sandiford  <richard.sandiford@arm.com>
8906         * tree-vectorizer.h (vect_grouped_load_supported): Add a
8907         single_element_p parameter.
8908         * tree-vect-data-refs.c (vect_grouped_load_supported): Likewise.
8909         Check the PR65518 case here rather than in vectorizable_load.
8910         * tree-vect-loop.c (vect_analyze_loop_2): Update call accordignly.
8911         * tree-vect-stmts.c (vectorizable_load): Likewise.
8913 2016-07-06  Richard Sandiford  <richard.sandiford@arm.com>
8915         * tree-vectorizer.h (gather_scatter_info): New structure.
8916         (vect_check_gather_scatter): Return a bool rather than a decl.
8917         Replace return-by-pointer arguments with a single
8918         gather_scatter_info *.
8919         * tree-vect-data-refs.c (vect_check_gather_scatter): Likewise.
8920         (vect_analyze_data_refs): Update call accordingly.
8921         * tree-vect-stmts.c (vect_mark_stmts_to_be_vectorized): Likewise.
8922         (vectorizable_mask_load_store): Likewise.  Also record the
8923         offset dt and vectype in the gather_scatter_info.
8924         (vectorizable_store): Likewise.
8925         (vectorizable_load): Likewise.
8927 2016-07-06  Richard Sandiford  <richard.sandiford@arm.com>
8929         * tree-vect-stmts.c (vect_model_store_cost): For non-SLP
8930         strided groups, use the cost of N scalar accesses instead
8931         of ncopies vector accesses.
8932         (vect_model_load_cost): Likewise.
8934 2016-07-06  Richard Sandiford  <richard.sandiford@arm.com>
8936         * tree-vect-stmts.c (vect_cost_group_size): Delete.
8937         (vect_model_store_cost): Avoid calling it.  Use first_stmt_p
8938         variable to indicate when once-per-group costs are being used.
8939         (vect_model_load_cost): Likewise.  Fix comment and misindented code.
8941 2016-07-06  Richard Sandiford  <richard.sandiford@arm.com>
8943         * tree-vect-stmts.c (vectorizable_load): Remove unnecessary
8944         peeling-for-gaps condition.
8946 2016-07-06  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
8948         * config/s390/s390.c (s390_expand_vec_init): Force initializer
8949         element to register if it doesn't match general_operand.
8951 2016-07-05  Michael Meissner  <meissner@linux.vnet.ibm.com>
8952             Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
8954         * config/rs6000/rs6000-protos.h (rs6000_split_signbit): New
8955         prototype.
8956         * config/rs6000/rs6000.c (rs6000_split_signbit): New function.
8957         * config/rs6000/rs6000.md (UNSPEC_SIGNBIT): New constant.
8958         (SIGNBIT): New mode iterator.
8959         (Fsignbit): New mode attribute.
8960         (signbit<mode>2): Change operand1 to match FLOAT128 instead of
8961         IBM128; dispatch to gen_signbit{kf,tf}2_dm for __float128
8962         when direct moves are available.
8963         (signbit<mode>2_dm): New define_insn_and_split).
8964         (signbit<mode>2_dm2): New define_insn.
8966 2016-07-05  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
8968         PR rtl-optimization/71594
8969         * ifcvt.c (noce_convert_multiple_sets): Wrap new_val or old_val
8970         into subregs of appropriate mode before trying to emit a conditional
8971         move.
8973 2016-07-05  Jan Hubicka  <jh@suse.cz>
8975         * tree-scalar-evolution.c (iv_can_overflow_p): New function.
8976         (simple_iv): Use it.
8978 2016-07-05  Jan Hubicka  <jh@suse.cz>
8980         * tree-ssa-loop-niter.c (nowrap_type_p): Use ANY_INTEGRAL_TYPE_P.
8982 2016-07-05  Jiong Wang  <jiong.wang@arm.com>
8984         * lra-constraints.c (process_alt_operands): Don't add spilling cost for
8985         "offmemok".
8987 2016-07-05  Jan Hubicka  <jh@suse.cz>
8989         * tree-scalar-evoluiton.c (simple_iv): Use nowrap_type to check if
8990         IV can overflow.
8992 2016-07-05  Richard Biener  <rguenther@suse.de>
8994         * gimple-ssa-split-paths.c (find_block_to_duplicate_for_splitting_pa):
8995         Handle empty else block.
8996         (is_feasible_trace): Likewise.
8997         (split_paths): Likewise.
8999 2016-07-05  Richard Biener  <rguenther@suse.de>
9001         * tree-loop-distribution.c (distribute_loop): Fix issue with
9002         the cost model loop.
9004 2016-07-05  Christophe Lyon  <christophe.lyon@linaro.org>
9006         * config/arm/neon-testgen.ml: Delete.
9007         * config/arm/neon.ml: Delete.
9009 2016-07-04  Jakub Jelinek  <jakub@redhat.com>
9011         PR c++/71739
9012         * tree.c (attribute_value_equal): Use get_attribute_name instead of
9013         directly using TREE_PURPOSE.
9015 2016-07-04  Jiong Wang  <jiong.wang@arm.com>
9017         * config/aarch64/aarch64.h: Rename "ARMv8.1" to "ARMv8.1-A".
9018         * config/aarch64/aarch64_neon.h: Likewise.
9019         * config/aarch64/arm_neon.h: Likewise.
9020         * config/aarch64/atomics.md: Likewise.
9021         * config/aarch64/aarch64-simd-builtins.def: Likewise.
9022         * doc/invoke.texi: Likewise.
9024 2016-07-04  Dominik Vogt  <vogt@linux.vnet.ibm.com>
9026         * config/s390/s390.md: Add "z13" cpu_facility.
9027         ("*mov<mode>cc"): Add support for z13 instructions lochi and locghi.
9028         * config/s390/predicates.md ("loc_operand"): New predicate for "load on
9029         condition" type instructions.
9031 2016-07-04  Dominik Vogt  <vogt@linux.vnet.ibm.com>
9032             Jeff Law  <law@redhat.com>
9034         * explow.c (allocate_dynamic_stack_space): Simplify knowing that
9035         MUST_ALIGN was always true and extra_align ist always BITS_PER_UNIT.
9037 2016-07-04  Yuri Rumyantsev  <ysrumyan@gmail.com>
9039         * config/i386/i386.c (ix86_expand_vec_perm): Add handle one-operand
9040         permutation for TARGET_AVX512F.
9041         (ix86_expand_vec_one_operand_perm_avx512): New function.
9042         (expand_vec_perm_1): Invoke introduced function.
9043         * tree-vect-loop.c (vect_transform_loop): Clear-up safelen value since
9044         it may be not valid after vectorization.
9046 2016-07-04  Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>
9048         PR target/63874
9049         * config/aarch64/aarch64.c (aarch64_classify_symbol): Fix
9050         typo in comment.  Only force to memory if it is a weak
9051         external reference.
9053 2016-07-04  Matthew Wahab  <matthew.wahab@arm.com>
9054             Jiong Wang  <jiong.wang@arm.com>
9056         * config/aarch64/aarch64-arches.def: Add "armv8.2-a".
9057         * config/aarch64/aarch64.h (AARCH64_FL_V8_2): New.
9058         (AARCH64_FL_F16): New.
9059         (AARCH64_FL_FOR_ARCH8_2): New.
9060         (AARCH64_ISA_8_2): New.
9061         (AARCH64_ISA_F16): New.
9062         (TARGET_FP_F16INST): New.
9063         (TARGET_SIMD_F16INST): New.
9064         * config/aarch64/aarch64-option-extensions.def ("fp16"): New entry.
9065         ("fp"): Disabling "fp" also disables "fp16".
9066         * config/aarch64/aarch64-c.c (arch64_update_cpp_builtins):
9067         Conditionally define __ARM_FEATURE_FP16_SCALAR_ARITHMETIC
9068         and __ARM_FEATURE_FP16_VECTOR_ARITHMETIC.
9069         * doc/invoke.texi (AArch64 Options): Document "armv8.2-a" and "fp16".
9071 2016-07-04  Jan Beulich  <jbeulich@suse.com>
9073         * gcc.c (default_compilers["@c-header"]): Conditionalize "-o".
9075 2016-07-01  Michael Meissner  <meissner@linux.vnet.ibm.com>
9077         PR target/71720
9078         * config/rs6000/vsx.md (vsx_splat_v4sf_internal): When splitting
9079         the insns, use an insn form that does not adjust the offset on
9080         little endian systems.
9082 2016-07-01  Jan Beulich  <jbeulich@suse.com>
9084         * varasm.c (get_variable_section): Validate initializer in
9085         named .bss-like sections.
9087 2016-07-01  Kelvin Nilsen  <kelvin@gcc.gnu.org>
9089         * config/rs6000/altivec.md (*altivec_vpermr_<mode>_internal):
9090         Exchange the order of the second and third operands in the vpermr
9091         instruction tmeplate.
9093 2016-07-01  Peter Bergner  <bergner@vnet.ibm.com>
9095         PR target/71698
9096         * config/rs6000/rs6000.c (rs6000_secondary_reload_simple_move):
9097         Disallow TDmode values.
9099 2016-07-01  Alan Modra  <amodra@gmail.com>
9101         PR rtl-optimization/71709
9102         * ira-lives.c (find_call_crossed_cheap_reg): Exit loop on arg reg
9103         being set, not referenced.
9105 2016-07-01  Yuri Rumyantsev  <ysrumyan@gmail.com>
9107         PR tree-optimization/70729
9108         * tree-vectorizer.c (adjust_simduid_builtins): Nullify safelen field
9109         of loop since it can be not valid after transformation.
9111 2016-07-01  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
9113         * config/arm/arm.c (thumb_reload_in_hi): Delete.
9114         * config/arm/arm-protos.h (thumb_reload_in_hi): Delete prototype.
9116 2016-07-01  Eric Botcazou  <ebotcazou@adacore.com>
9118         * config/arm/arm.c (arm_function_ok_for_sibcall): Add another check
9119         for NULL decl.
9121 2016-06-30  Michael Meissner  <meissner@linux.vnet.ibm.com>
9123         PR target/71677
9124         * config/rs6000/constraints.md (wY constraint): New constraint to
9125         match the requirements for the LXSD and STXSD instructions.
9126         * config/rs6000/predicates.md (offsettable_mem_14bit_operand): New
9127         predicate to match the requirements for the LXSD and STXSD
9128         instructions.
9129         * config/rs6000/rs6000.md (mov<mode>_hardfloat32, FMOVE64 case):
9130         Use constaint wY for LXSD/STXSD instructions instead of 'o' or 'Y'
9131         to make sure that the bottom 2 bits of offset are 0, the address
9132         form is offsettable, and no updating is done in the address mode.
9133         (mov<mode>_hardfloat64, FMOVE64 case): Likewise.
9134         (movdi_internal32): Likewise
9135         (movdi_internal64): Likewise.
9137 2016-06-30  Jakub Jelinek  <jakub@redhat.com>
9139         PR tree-optimization/71707
9140         * tree-ssa-strlen.c (get_stridx_plus_constant): Handle already present
9141         strinfo even for ADDR_EXPR ptr.
9143 2016-06-30  Kelvin Nilsen  <kelvin@gcc.gnu.org>
9145         * config/rs6000/altivec.md (darn_32): Change the condition to
9146         TARGET_P9_MISC instead of TARGET_MODULO.
9147         (darn_raw): Replace TARGET_MODULO with TARGET_P9_MISC in the
9148         condition expression.
9149         (darn): Replace TARGET_MODULO with TARGET_P9_MISC in the
9150         condition expression.
9151         * config/rs6000/dfp.md (UNSPEC_DTSTSFI): New unspec constant.
9152         (DFP_TEST): New code iterator.
9153         (dfptstsfi_<code>_mode>): New define_expand.
9154         (*dfp_sgnfcnc_<mode>): New define_insn.
9155         * config/rs6000/rs6000-builtin.def (BU_P9_MISC_0): Move this macro
9156         definition next to BU_P9_MISC_1 definition and change the MASK
9157         value to RS6000_BTM_P9_MISC.
9158         (BU_P9_MISC_1): Change the MASK value to RS6000_BTM_P9_MISC.
9159         (BU_P9_64BIT_MISC_0): Likewise.
9160         (BU_P9_DFP_MISC_0): New macro definition.
9161         (BU_P9_DFP_MISC_1): New macro definition.
9162         (BU_P9_DFP_MISC_2): New macro definition.
9163         (BU_P9_DFP_OVERLOAD_1): New macro definition.
9164         (BU_P9_DFP_OVERLOAD_2): New macro definition.
9165         (BU_P9_DFP_OVERLOAD_3): New macro definition.
9166         (TSTSFI_LT_DD): New BU_P9_DFP_MISC_2.
9167         (TSTSFI_LT_TD): Likewise.
9168         (TSTSFI_EQ_DD): Likewise.
9169         (TSTSFI_EQ_TD): Likewise.
9170         (TSTSFI_GT_DD): Likewise.
9171         (TSTSFI_GT_TD): Likewise.
9172         (TSTSFI_OV_DD): Likewise.
9173         (TSTSFI_OV_TD): Likewise.
9174         (TSTSFI_LT): New BU_P9_DFP_OVERLOAD_2.
9175         (TSTSFI_LT_DD): Likewise.
9176         (TSTSFI_LT_TD): Likewise.
9177         (TSTSFI_EQ): Likewise.
9178         (TSTSFI_EQ_DD): Likewise.
9179         (TSTSFI_EQ_TD): Likewise.
9180         (TSTSFI_GT): Likewise.
9181         (TSTSFI_GT_DD): Likewise.
9182         (TSTSFI_GT_TD): Likewise.
9183         (TSTSFI_OV): Likewise.
9184         (TSTSFI_OV_DD): Likewise.
9185         (TSTSFI_OV_TD): Likewise.
9186         * config/rs6000/rs6000-c.c (altivec_overloaded_builtins): Add
9187         overloaded test significance functions.
9188         * config/rs6000/rs6000-cpus.def (ISA_3_0_MASKS_SERVER): Add
9189         OPTION_MASK_P9_MISC into the representation of this mask.
9190         (POWERPC_MASKS): Add OPTION_MASK_P9_MISC into the representation
9191         of this mask.
9192         * config/rs6000/rs6000.c (rs6000_builtin_mask_calculate): Set the
9193         RS6000_BTM_P9_MISC flag in the return value if TARGET_P9_MISC is
9194         non-zero.
9195         (rs6000_expand_binop_builtin): Enforce that argument 0 of the exp
9196         argument is a 6-bit unsigned literal value if the icode argument
9197         represents a DFP test significance built-in call.
9198         (rs6000_invalid_builtin): Add support for the RS6000_BTM_P9_MISC
9199         flag used independently and in combination with the
9200         RS6000_BTM_64BIT flag.
9201         (rs6000_opt_masks): Add entry for power9-misc command-line option.
9202         (rs6000_builtin_mask_names): Add entry for power9-misc
9203         command-line option.
9204         * config/rs6000/rs6000.h: Redefine TARGET_P9_MISC as 0 if
9205         HAVE_AS_POWER9 is not a defined macro.  Define MASK_P9_MISC and
9206         RS6000_BTM_P9_MISC macros.
9207         * config/rs6000/rs6000.opt: Add support for the -mpower9-misc
9208         option and change the description of the -mpower9-vector option to
9209         enable only vector instructions, removing its erroneously claimed
9210         support for scalar instructions.
9211         * doc/extend.texi (PowerPC AltiVec Built-in Functions): Document
9212         the ISA 3.0 digital floating point test significance built-in
9213         functions.
9215 2016-06-30  Wilco Dijkstra  <wdijkstr@arm.com>
9217         * config/aarch64/aarch64.c (cortexa35_tunings):
9218         Enable AES fusion.  Use cortexa57_branch_cost.
9219         (cortexa53_tunings): Use cortexa57_branch_cost.
9220         (cortexa72_tunings): Use cortexa57_branch_cost.
9221         Use AUTOPREFETCHER_WEAK.
9222         (cortexa73_tunings): Use cortexa57_branch_cost.
9224 2016-06-30  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
9225             James Greenhalgh  <james.greenhalgh@arm.com>
9227         * config/aarch64/arm_neon.h (vcopyq_lane_f32, vcopyq_lane_f64,
9228         vcopyq_lane_p8, vcopyq_lane_p16, vcopyq_lane_s8, vcopyq_lane_s16,
9229         vcopyq_lane_s32, vcopyq_lane_s64, vcopyq_lane_u8, vcopyq_lane_u16,
9230         vcopyq_lane_u32, vcopyq_lane_u64): Reimplement in C.
9231         (vcopy_lane_f32, vcopy_lane_f64, vcopy_lane_p8, vcopy_lane_p16,
9232         vcopy_lane_s8, vcopy_lane_s16, vcopy_lane_s32, vcopy_lane_s64,
9233         vcopy_lane_u8, vcopy_lane_u16, vcopy_lane_u32, vcopy_lane_u64,
9234         vcopy_laneq_f32, vcopy_laneq_f64, vcopy_laneq_p8, vcopy_laneq_p16,
9235         vcopy_laneq_s8, vcopy_laneq_s16, vcopy_laneq_s32, vcopy_laneq_s64,
9236         vcopy_laneq_u8, vcopy_laneq_u16, vcopy_laneq_u32, vcopy_laneq_u64,
9237         vcopyq_laneq_f32, vcopyq_laneq_f64, vcopyq_laneq_p8, vcopyq_laneq_p16,
9238         vcopyq_laneq_s8, vcopyq_laneq_s16, vcopyq_laneq_s32, vcopyq_laneq_s64,
9239         vcopyq_laneq_u8, vcopyq_laneq_u16, vcopyq_laneq_u32, vcopyq_laneq_u64):
9240         New intrinsics.
9242 2016-06-30  James Greenhalgh  <james.greenhalgh@arm.com>
9243             Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
9245         * config/aarch64/aarch64-simd.md (*aarch64_simd_vec_copy_lane<mode>):
9246         New define_insn.
9247         (*aarch64_simd_vec_copy_lane_<vswap_width_name><mode>): Likewise.
9249 2016-06-30  David Malcolm  <dmalcolm@redhat.com>
9251         PR driver/71651
9252         * gcc.c (driver::build_option_suggestions): Pass "option" to
9253         add_misspelling_candidates.
9254         * opts-common.c (add_misspelling_candidates): Add "option" param;
9255         use it to avoid adding negated forms for options marked with
9256         RejectNegative.
9257         * opts.h (add_misspelling_candidates): Add "option" param.
9259 2016-06-30  Jakub Jelinek  <jakub@redhat.com>
9261         PR middle-end/71693
9262         * fold-const.c (fold_binary_loc) <case RROTATE_EXPR>: Cast
9263         TREE_OPERAND (arg0, 0) and TREE_OPERAND (arg0, 1) to type
9264         first when permuting bitwise operation with rotate.  Cast
9265         TREE_OPERAND (arg0, 0) to type when cancelling two rotations.
9267 2016-06-29  David Malcolm  <dmalcolm@redhat.com>
9269         * opts.c (handle_param): Use find_param_fuzzy to offer suggestions
9270         for misspelled param names.
9271         * params.c: Include spellcheck.h.
9272         (find_param_fuzzy): New function.
9273         * params.h (find_param_fuzzy): New prototype.
9274         * spellcheck.c (struct edit_distance_traits<const char *>): Move to...
9275         * spellcheck.h (struct edit_distance_traits<const char *>):
9276         ...here.
9278 2016-06-29  Michael Meissner  <meissner@linux.vnet.ibm.com>
9280         * config/rs6000/predicates.md (const_0_to_7_operand): New
9281         predicate, recognize 0..7.
9282         * config/rs6000/rs6000.c (rs6000_expand_vector_extract): Add
9283         support for doing extracts from V16QImode, V8HImode, V4SImode
9284         under ISA 3.0.
9285         * config/rs6000/vsx.md (VSX_EXTRACT_I): Mode iterator for ISA 3.0
9286         vector extract support.
9287         (VSX_EXTRACT_PREDICATE): Mode attribute to validate element number
9288         for ISA 3.0 vector extract.
9289         (VSX_EX): Constraints to use for ISA 3.0 vector extract.
9290         (vsx_extract_<mode>, VSX_EXTRACT_I): Add support for doing
9291         extracts of a constant element number from small integer vectors
9292         on 64-bit ISA 3.0 systems.
9293         (vsx_extract_<mode>_di): Likewise.
9294         * config/rs6000/rs6000.h (TARGET_VEXTRACTUB): New target macro to
9295         say when we can do ISA 3.0 vector extracts.
9296         * config/rs6000/rs6000.md (stfiwx): Allow DImode in Altivec
9297         registers, using the stxsiwx instruction.
9299 2016-06-29  Jim Wilson  <jim.wilson@linaro.org>
9301         * config/aarch64/aarch64-cores.def (qdf24xx): Use qdf24xx tuning.
9302         * config/aarch64/aarch64.c (qdf24xx_addrcost_table,
9303         qdf24xx_regmove_cost, qdf24xx_tunings): New.
9304         * config/arm/aarch64-cost-tables.h (qdf24xx_extra_costs): New.
9305         * config/arm/arm-cores.def (qdf24xx): Use qdf24xx tuning.
9306         * config/arm/arm.c (arm_qdf24xx_tune): New.
9308 2016-06-29  Wilco Dijkstra  <wdijkstr@arm.com>
9310         * config/aarch64/aarch64.c (cortexa53_tunings):
9311         Increase loop alignment to 8.  Set function alignment to 16.
9312         (cortexa35_tunings): Likewise.
9313         (cortexa57_tunings): Increase loop alignment to 8.
9314         (cortexa72_tunings): Likewise.
9315         (cortexa73_tunings): Likewise.
9317 2016-06-29  Matthew Wahab  <matthew.wahab@arm.com>
9319         * doc/sourcebuild.texi (Effective-Target keywords): Add entries
9320         for arm_fp16_ok and arm_fp16_hw.
9321         (Add Options): Add entries for arm_fp16, arm_fp16_ieee and
9322         arm_fp16_alternative.
9324 2016-06-29  Ilya Enkovich  <ilya.enkovich@intel.com>
9326         PR tree-optimization/71655
9327         * tree-vect-stmts.c (vectorizable_comparison): Swap definition
9328         types when swapping operands.
9330 2016-06-29  Martin Liska  <mliska@suse.cz>
9332         PR middle-end/71585
9333         * common.opt (flag_stack_protect): Mark the flag as optimization flag.
9334         * ipa-inline-transform.c (inline_call): Remove unnecessary call
9335         of build_optimization_node.
9337 2016-06-29  Yuri Rumyantsev  <ysrumyan@gmail.com>
9339         PR tree-optimization/70729
9340         * tree-ssa-loop-im.c (ref_indep_loop_p_1): Consider memory reference as
9341         independent in loops having positive safelen value.
9342         * tree-vect-loop.c (vect_transform_loop): Clear-up safelen value since
9343         it may be not valid after vectorization.
9345 2016-06-29  Jakub Jelinek  <jakub@redhat.com>
9347         PR tree-optimization/71625
9348         * tree-ssa-strlen.c (get_addr_stridx): Add PTR argument.  Assume list
9349         is sorted by ascending list->offset.  If PTR is non-NULL and there is
9350         previous strinfo, call get_stridx_plus_constant.
9351         (get_stridx): Pass exp as second argument to get_addr_stridx.
9352         (addr_stridxptr): Add missing list = list->next, so that there can be
9353         more than one entries in the list.  Bump limit from 16 to 32.  Ensure
9354         the list is sorted by ascending list->offset.
9355         (get_stridx_plus_constant): Adjust so that it can be also called with
9356         ADDR_EXPR instead of SSA_NAME as PTR.
9357         (handle_char_store): Pass NULL_TREE as second argument to
9358         get_addr_stridx.
9360 2016-06-29  Richard Biener  <rguenther@suse.de>
9362         PR rtl-optimization/68961
9363         * simplify-rtx.c (simplify_subreg): Handle VEC_CONCAT like CONCAT.
9365 2016-06-29  Richard Biener  <rguenther@suse.de>
9367         PR middle-end/71002
9368         * alias.c (component_uses_parent_alias_set_from): Handle
9369         type punning through union accesses by using the union alias set.
9370         * gimple.c (gimple_get_alias_set): Remove union type punning case.
9372 2016-07-29  Richard Biener  <rguenther@suse.de>
9374         * match.pd ((T)(T2)x -> (T)x): Remove restriction on final
9375         precision not matching mode precision.
9377 2016-06-28  John David Anglin  <danglin@gcc.gnu.org>
9379         * config/pa/pa.md (call_symref_64bit_post_reload): Don't call
9380         pa_output_arg_descriptor.
9381         (call_val_symref_64bit_post_reload): Likewise.
9382         (call_val_powf_64bit_post_reload): Likewise.
9383         (sibcall_internal_symref_64bit): Likewise.
9384         (sibcall_value_internal_symref_64bit): Likewise.
9386 2016-06-28  Jakub Jelinek  <jakub@redhat.com>
9388         PR middle-end/71626
9389         * config/i386/i386.c (ix86_expand_vector_move): For SUBREG of
9390         a constant, force its SUBREG_REG into memory or register instead
9391         of whole op1.
9393 2016-06-28  Pitchumani Sivanupandi  <pitchumani.s@atmel.com>
9395         PR target/58655
9396         * config/avr/avr.opt (-mfract-convert-truncate): Update description.
9397         * doc/invoke.texi (AVR Options): Document it.
9399 2016-06-28  Walter Lee  <walt@tilera.com>
9401         * config/tilegx/linux.h: Do not include arch/icache.h
9402         (CLEAR_INSN_CACHE): Provide inlined definition directly.
9403         * config/tilepro/linux.h: Do not include arch/icache.h
9404         (CLEAR_INSN_CACHE): Provide inlined definition directly.
9406 2016-06-28  Wilco Dijkstra  <wdijkstr@arm.com>
9408         * tree-ssa-math-opts.c (find_bswap_or_nop_1): Adjust bitnumbering
9409         for big-endian BIT_FIELD_REF.
9411 2016-06-28  Pat Haugen  <pthaugen@us.ibm.com>
9413         * config/rs6000/rs6000.md ('type' attribute): Add htmsimple/dfp types.
9414         ('size' attribute): Add '128'.
9415         Include power9.md.
9416         (*mov<mode>_hardfloat32, *mov<mode>_hardfloat64, *movdi_internal32,
9417         *movdi_internal64, *movdf_update1): Set size attribute to '64'.
9418         (add<mode>3, sub<mode>3, mul<mode>3, div<mode>3, sqrt<mode>2,
9419         copysign<mode>3, neg<mode>2_hw, abs<mode>2_hw, *nabs<mode>2_hw,
9420         *fma<mode>4_hw, *fms<mode>4_hw, *nfma<mode>4_hw, *nfms<mode>4_hw,
9421         extend<SFDF:mode><IEEE128:mode>2_hw, trunc<mode>df2_hw,
9422         *xscvqp<su>wz_<mode>, *xscvqp<su>dz_<mode>, *xscv<su>dqp_<mode>,
9423         *trunc<mode>df2_odd): Set size attribute to '128'.
9424         (*cmp<mode>_hw): Change type to veccmp and set size attribute to '128'.
9425         * config/rs6000/power6.md (power6-fp): Include dfp type.
9426         * config/rs6000/power7.md (power7-fp): Likewise.
9427         * config/rs6000/power8.md (power8-fp): Likewise.
9428         * config/rs6000/power9.md: New file.
9429         * config/rs6000/t-rs6000 (MD_INCLUDES): Add power9.md.
9430         * config/rs6000/htm.md (*tabort, *tabort<wd>c, *tabort<wd>ci,
9431         *trechkpt, *treclaim, *tsr, *ttest): Change type attribute to
9432         htmsimple.
9433         * config/rs6000/dfp.md (extendsddd2, truncddsd2, extendddtd2,
9434         trunctddd2, adddd3, addtd3, subdd3, subtd3, muldd3, multd3, divdd3,
9435         divtd3, *cmpdd_internal1, *cmptd_internal1, floatdidd2, floatditd2,
9436         ftruncdd2, fixdddi2, ftrunctd2, fixtddi2, dfp_ddedpd_<mode>,
9437         dfp_denbcd_<mode>, dfp_dxex_<mode>, dfp_diex_<mode>, dfp_dscli_<mode>,
9438         dfp_dscri_<mode>): Change type attribute to dfp.
9439         * config/rs6000/crypto.md (crypto_vshasigma<CR_char>): Change type
9440         attribute to vecsimple.
9441         * config/rs6000/rs6000.c (power9_cost): Update costs, cache size
9442         and prefetch streams.
9443         (rs6000_option_override_internal): Remove temporary code setting
9444         tuning to power8.  Don't set rs6000_sched_groups for power9.
9445         (last_scheduled_insn): Change to rtx_insn *.
9446         (divide_cnt, vec_load_pendulum): New variables.
9447         (rs6000_adjust_cost): Add Power9 to test for store->load separation.
9448         (rs6000_issue_rate): Set issue rate for Power9.
9449         (is_power9_pairable_vec_type): New.
9450         (power9_sched_reorder2): New.
9451         (rs6000_sched_reorder2): Call new function for Power9 specific
9452         reordering.
9453         (insn_must_be_first_in_group): Remove Power9.
9454         (insn_must_be_last_in_group): Likewise.
9455         (force_new_group): Likewise.
9456         (rs6000_sched_init): Fix initialization of last_scheduled_insn.
9457         Initialize divide_cnt/vec_load_pendulum.
9458         (_rs6000_sched_context, rs6000_init_sched_context,
9459         rs6000_set_sched_context): Handle context save/restore of new
9460         variables.
9462 2016-06-28  Richard Biener  <rguenther@suse.de>
9464         * tree-ssa-alias.c (nonoverlapping_component_refs_of_decl_p):
9465         Properly handle DECL_BIT_FIELD_REPRESENTATIVE occuring as
9466         COMPONENT_REF operand.
9467         (nonoverlapping_component_refs_p): Likewise.
9468         * stor-layout.c (start_bitfield_representative): Mark
9469         DECL_BIT_FIELD_REPRESENTATIVE as DECL_NONADDRESSABLE_P.
9471 2016-06-28  Jakub Jelinek  <jakub@redhat.com>
9473         * Makefile.in: Don't cat ../stage_current if it does not exist.
9475         * doc/extend.texi (__builtin_add_overflow_p): Clarify behavior when
9476         last argument is a bit-field.
9478         PR rtl-optimization/71673
9479         * internal-fn.c (expand_arith_overflow_result_store): Use
9480         OPTAB_LIB_WIDEN instead of OPTAB_DIRECT as last argument to
9481         expand_simple_binop.
9483         PR middle-end/66867
9484         * builtins.c (expand_ifn_atomic_compare_exchange_into_call,
9485         expand_ifn_atomic_compare_exchange): New functions.
9486         * internal-fn.c (expand_ATOMIC_COMPARE_EXCHANGE): New function.
9487         * tree.h (build_call_expr_internal_loc): Rename to ...
9488         (build_call_expr_internal_loc_array): ... this.  Fix up type of
9489         last argument.
9490         * internal-fn.def (ATOMIC_COMPARE_EXCHANGE): New internal fn.
9491         * predict.c (expr_expected_value_1): Handle IMAGPART_EXPR of
9492         ATOMIC_COMPARE_EXCHANGE result.
9493         * builtins.h (expand_ifn_atomic_compare_exchange): New prototype.
9494         * gimple-fold.h (optimize_atomic_compare_exchange_p,
9495         fold_builtin_atomic_compare_exchange): New prototypes.
9496         * gimple-fold.c (optimize_atomic_compare_exchange_p,
9497         fold_builtin_atomic_compare_exchange): New functions..
9498         * tree-ssa.c (execute_update_addresses_taken): If
9499         optimize_atomic_compare_exchange_p, ignore &var in 2nd argument
9500         of call when finding addressable vars, and if such var becomes
9501         non-addressable, call fold_builtin_atomic_compare_exchange.
9503 2016-06-27  Segher Boessenkool  <segher@kernel.crashing.org>
9505         PR target/71670
9506         * config/rs6000/rs6000.md (ashdi3_extswsli_dot): Use
9507         gen_ashdi3_extswsli_dot2 instead of gen_ashdi3_extswsli_dot.
9509 2016-06-27  Pat Haugen  <pthaugen@us.ibm.com>
9511         * config/rs6000/rs6000.md ('type' attribute): Add
9512         veclogical,veccmpfx,vecexts,vecmove insn types.
9513         (*abs<mode>2_fpr, *nabs<mode>2_fpr, *neg<mode>2_fpr, *extendsfdf2_fpr,
9514         copysign<mode>3_fcpsgn, trunc<mode>df2_internal1, neg<mode>2_internal,
9515         p8_fmrgow_<mode>, pack<mode>): Change type to fpsimple.
9516         (*xxsel<mode>, copysign<mode>3_hard, neg<mode>2_hw, abs<mode>2_hw,
9517         *nabs<mode>2_hw): Change type to vecmove.
9518         (*and<mode>3_internal, *bool<mode>3_internal, *boolc<mode>3_internal,
9519         *boolcc<mode>3_internal, *eqv<mode>3_internal,
9520         *one_cmpl<mode>3_internal, *ieee_128bit_vsx_neg<mode>2_internal,
9521         *ieee_128bit_vsx_abs<mode>2_internal,
9522         *ieee_128bit_vsx_nabs<mode>2_internal, extendkftf2, trunctfkf2,
9523         *ieee128_mfvsrd_64bit, *ieee128_mfvsrd_32bit, *ieee128_mtvsrd_64bit,
9524         *ieee128_mtvsrd_32bit): Change type to veclogical.
9525         (mov<mode>_hardfloat, *mov<mode>_hardfloat32, *mov<mode>_hardfloat64,
9526         *movdi_internal32, *movdi_internal64): Update insn types.
9527         * config/rs6000/vsx.md (*vsx_le_undo_permute_<mode>,
9528         vsx_extract_<mode>): Change type to veclogical.
9529         (*vsx_xxsel<mode>, *vsx_xxsel<mode>_uns): Change type to vecmove.
9530         (vsx_sign_extend_qi_<mode>, *vsx_sign_extend_hi_<mode>,
9531         *vsx_sign_extend_si_v2di): Change type to vecexts.
9532         * config/rs6000/altivec.md (*altivec_mov<mode>, *altivec_movti): Change
9533         type to veclogical.
9534         (*altivec_eq<mode>, *altivec_gt<mode>, *altivec_gtu<mode>,
9535         *altivec_vcmpequ<VI_char>_p, *altivec_vcmpgts<VI_char>_p,
9536         *altivec_vcmpgtu<VI_char>_p): Change type to veccmpfx.
9537         (*altivec_vsel<mode>, *altivec_vsel<mode>_uns): Change type to vecmove.
9538         * config/rs6000/dfp.md (*negdd2_fpr, *absdd2_fpr, *nabsdd2_fpr,
9539         negtd2, *abstd2_fpr, *nabstd2_fpr): Change type to fpsimple.
9540         * config/rs6000/40x.md (ppc405-float): Add fpsimple.
9541         * config/rs6000/440.md (ppc440-fp): Add fpsimple.
9542         * config/rs6000/476.md (ppc476-fp): Add fpsimple.
9543         * config/rs6000/601.md (ppc601-fp): Add fpsimple.
9544         * config/rs6000/603.md (ppc603-fp): Add fpsimple.
9545         * config/rs6000/6xx.md (ppc604-fp): Add fpsimple.
9546         * config/rs6000/7xx.md (ppc750-fp): Add fpsimple.
9547         (ppc7400-vecsimple): Add veclogical, vecmove, veccmpfx.
9548         * config/rs6000/7450.md (ppc7450-fp): Add fpsimple.
9549         (ppc7450-vecsimple): Add veclogical, vecmove.
9550         (ppc7450-veccmp): Add veccmpfx.
9551         * config/rs6000/8540.md (ppc8540_simple_vector): Add veclogical,
9552         vecmove.
9553         (ppc8540_vector_compare): Add veccmpfx.
9554         * config/rs6000/a2.md (ppca2-fp): Add fpsimple.
9555         * config/rs6000/cell.md (cell-fp): Add fpsimple.
9556         (cell-vecsimple): Add veclogical, vecmove.
9557         (cell-veccmp): Add veccmpfx.
9558         * config/rs6000/e300c2c3.md (ppce300c3_fp): Add fpsimple.
9559         * config/rs6000/e6500.md (e6500_vecsimple): Add veclogical, vecmove,
9560         veccmpfx.
9561         * config/rs6000/mpc.md (mpccore-fp): Add fpsimple.
9562         * config/rs6000/power4.md (power4-fp): Add fpsimple.
9563         (power4-vecsimple): Add veclogical, vecmove.
9564         (power4-veccmp): Add veccmpfx.
9565         * config/rs6000/power5.md (power5-fp): Add fpsimple.
9566         * config/rs6000/power6.md (power6-fp): Add fpsimple.
9567         (power6-vecsimple): Add veclogical, vecmove.
9568         (power6-veccmp): Add veccmpfx.
9569         * config/rs6000/power7.md (power7-fp): Add fpsimple.
9570         (power7-vecsimple): Add veclogical, vecmove, veccmpfx.
9571         * config/rs6000/power8.md (power8-fp): Add fpsimple.
9572         (power8-vecsimple): Add veclogical, vecmove, veccmpfx.
9573         * config/rs6000/rs64.md (rs64a-fp): Add fpsimple.
9574         * config/rs6000/titan.md (titan_fp): Add fpsimple.
9575         * config/rs6000/xfpu.md (fp-default, fp-addsub-s, fp-addsub-d): Add
9576         fpsimple.
9577         * config/rs6000/rs6000.c (rs6000_adjust_cost): Add TYPE_FPSIMPLE.
9579 2016-06-27  Peter Bergner  <bergner@vnet.ibm.com>
9581         PR target/71656
9582         * config/rs6000/rs6000-cpus.def (ISA_3_0_MASKS_SERVER): Add
9583         OPTION_MASK_P9_DFORM_VECTOR.
9584         * config/rs6000/rs6000.c (rs6000_option_override_internal): Do not
9585         disable -mpower9-dform-vector when using reload.
9586         (quad_address_p): Remove 'gpr_p' argument and all associated code.
9587         New 'strict' argument.  Update all callers.  Add strict addressing
9588         support.
9589         (rs6000_legitimate_offset_address_p): Remove call to
9590         virtual_stack_registers_memory_p.
9591         (rs6000_legitimize_reload_address): Add quad address support.
9592         (rs6000_legitimate_address_p): Move call to quad_address_p above
9593         call to virtual_stack_registers_memory_p.  Adjust quad_address_p args
9594         to account for new strict usage.
9595         (rs6000_output_move_128bit): Adjust quad_address_p args to account
9596         for new strict usage.
9597         * config/rs6000/predicates.md (quad_memory_operand): Likewise.
9599 2016-06-26  Uros Bizjak  <ubizjak@gmail.com>
9601         PR target/70902
9602         PR target/71453
9603         PR target/71555
9604         PR target/71596
9605         PR target/71657
9606         * config/i386/i386.c (ix86_spill_class): Disable condition to
9607         always return NO_REGS.
9609 2016-06-26  Jan Hubicka  <hubicka@ucw.cz>
9611         * predict.c: Include gimple-pretty-print.h
9612         (predicted_by_loop_heuristics_p): Check also
9613         PRED_LOOP_EXIT_WITH_RECURSION
9614         (predict_loops): Find self recursive calls and use special purpose
9615         predictors for them; dump log about decisions.
9616         (pass_profile::execute): Dump info about #of iterations.
9617         * predict.def (PRED_LOOP_EXIT_WITH_RECURSION,
9618         (PRED_LOOP_GUARD_WITH_RECURSION): New predictors.
9620 2016-06-26  John David Anglin  <danglin@gcc.gnu.org>
9622         * config/pa/pa.c (pa_output_indirect_call): Rework to combine
9623         output_asm_insn calls and shorten long lines.  Output .CALL
9624         argument descriptor using pa_output_arg_descriptor.  Add various
9625         inline $$dyncall and other optimizations.
9626         (pa_attr_length_indirect_call): Adjust ordering and lengths.
9628 2016-06-25  Jakub Jelinek  <jakub@redhat.com>
9630         PR tree-optimization/71643
9631         * tree-ssa-tail-merge.c (find_clusters_1): Ignore basic blocks with
9632         EH preds.
9634         * tree-ssa-tail-merge.c (deps_ok_for_redirect_from_bb_to_bb): Don't
9635         leak a bitmap if dep_bb is NULL.
9637         PR tree-optimization/71631
9638         * tree-ssa-reassoc.c (reassociate_bb): Pass true as last argument
9639         to rewrite_expr_tree even if negate_result, move new_lhs var
9640         declaration and initialization earlier, for powi_result set afterwards
9641         new_lhs to lhs.  For negate_result, use new_lhs instead of tmp
9642         if new_lhs != lhs, and don't shadow gsi var.
9644 2016-06-24  Jan Hubicka  <hubicka@ucw.cz>
9646         * predict.c (predict_paths_leading_to, predict_paths_leading_to_edge):
9647         Add in_loop parameter.
9648         (predict_loops): Add loop guard heuristics.
9649         * predict.def (PRED_LOOP_GUARD): New heuristics.
9651 2016-06-24  Jan Hubicka  <hubicka@ucw.cz>
9653         * predict.c: Include ipa-utils.h
9654         (tree_bb_level_prediction): Predict recursive calls.
9655         (tree_estimate_probability_bb): Skip inexpensive calls for call
9656         predictor.
9657         * predict.def (PRED_RECURSIVE_CALL): New.
9659 2016-06-24  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
9661         * config/rs6000/rs6000-builtin.def (BU_FLOAT128_2): New #define.
9662         (BU_FLOAT128_1): Likewise.
9663         (FABSQ): Likewise.
9664         (COPYSIGNQ): Likewise.
9665         (RS6000_BUILTIN_NANQ): Likewise.
9666         (RS6000_BUILTIN_NANSQ): Likewise.
9667         (RS6000_BUILTIN_INFQ): Likewise.
9668         (RS6000_BUILTIN_HUGE_VALQ): Likewise.
9669         * config/rs6000/rs6000.c (rs6000_fold_builtin): New prototype.
9670         (TARGET_FOLD_BUILTIN): New #define.
9671         (rs6000_builtin_mask_calculate): Add TARGET_FLOAT128 entry.
9672         (rs6000_invalid_builtin): Add handling for RS6000_BTM_FLOAT128.
9673         (rs6000_fold_builtin): New target hook implementation, handling
9674         folding of 128-bit NaNs and infinities.
9675         (rs6000_init_builtins): Initialize const_str_type_node; ensure all
9676         entries are filled in to avoid problems during bootstrap
9677         self-test; define builtins for 128-bit NaNs and infinities.
9678         (rs6000_opt_mask): Add entry for float128.
9679         * config/rs6000/rs6000.h (RS6000_BTM_FLOAT128): New #define.
9680         (RS6000_BTM_COMMON): Include RS6000_BTM_FLOAT128.
9681         (rs6000_builtin_type_index): Add RS6000_BTI_const_str.
9682         (const_str_type_node): New #define.
9683         * config/rs6000/rs6000.md (copysign<mode>3 for IEEE128): Convert
9684         to a define_expand that dispatches to either copysign<mode>3_soft
9685         or copysign<mode>3_hard.
9686         (copysign<mode>3_hard): Rename from copysign<mode>3.
9687         (copysign<mode>3_soft): New define_insn.
9688         * doc/extend.texi: Document new builtins.
9690 2016-06-24  Jakub Jelinek  <jakub@redhat.com>
9692         * cfgloop.c (flow_loop_dump): Cast nit to uint64_t and print it using
9693         PRIu64 instead of lu.
9695 2016-06-24  Eric Botcazou  <ebotcazou@adacore.com>
9697         PR debug/71642
9698         * tree-inline.c (remap_decl): When fixing up DECL_ORIGINAL_TYPE, just
9699         copy the type name.
9701 2016-06-24  Jakub Jelinek  <jakub@redhat.com>
9703         PR tree-optimization/71647
9704         * omp-low.c (lower_rec_input_clauses): Convert
9705         omp_clause_aligned_alignment (c) to size_type_node for the
9706         last argument of __builtin_assume_aligned.
9708 2016-06-24  H.J. Lu  <hongjiu.lu@intel.com>
9710         * configure.ac (calling ___tls_get_addr via GOT): New
9711         assembler/linker check.
9712         (HAVE_AS_IX86_TLS_GET_ADDR_GOT): New.  Defined to 1 if 32-bit
9713         assembler and linker supports calling ___tls_get_addr via GOT.
9714         Otherise, defined to 0.
9715         * config.in: Regenerated.
9716         * configure: Likewise.
9717         * config/i386/constraints.md (Yb): New constraint.
9718         * config/i386/i386.h (reg_class): Add TLS_GOTBASE_REGS.
9719         (REG_CLASS_NAMES): Likewise.
9720         (REG_CLASS_CONTENTS): Likewise.
9721         * config/i386/i386.md (*tls_global_dynamic_32_gnu): Replace
9722         the b constraint with the Yb constraint.  Call ___tls_get_addr
9723         via GOT for GNU TLS with -fno-plt if HAVE_AS_IX86_TLS_GET_ADDR_GOT
9724         is 1.
9725         (*tls_local_dynamic_base_32_gnu): Likewise.
9726         (*tls_global_dynamic_64_<mode>): Call _tls_get_addr via GOT for
9727         GNU TLS with -fno-plt if HAVE_AS_IX86_TLS_GET_ADDR_GOT is 1.
9728         (*tls_local_dynamic_base_64_<mode>): Likewise.
9730 2016-06-24  Martin Liska  <mliska@suse.cz>
9732         * cfgloop.c (flow_loop_dump): Dump average number of loop iterations.
9733         * cfgloop.h: Change 'struct loop' to 'const struct loop' for a
9734         few functions.
9735         * cfgloopanal.c (expected_loop_iterations_unbounded): Set a new
9736         argument to true if the expected number of iterations is
9737         loop-based.
9739 2016-06-24  Uros Bizjak  <ubizjak@gmail.com>
9741         * configure.ac (HAVE_AS_GOTOF_IN_DATA): Use $as_ix86_gas_32_opt to
9742         assemble for 32bit target.
9743         (HAVE_AS_IX86_TLSGDPLT): Use $as_ix86_gas_32_opt to assemble
9744         and $ld_ix86_gld_32_opt to link for 32bit target.
9745         (HAVE_AS_IX86_TLSLDMPLT): Ditto.
9746         * configure: Regenerate.
9748 2016-06-24  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
9750         * config/arm/arm.c (int_log2): Delete definition and prototype.
9751         (shift_op): Use exact_log2 instead of int_log2.
9752         (vfp3_const_double_for_fract_bits): Likewise.
9754 2016-06-24  Jakub Jelinek  <jakub@redhat.com>
9756         * internal-fn.c (expand_arith_set_overflow): New function.
9757         (expand_addsub_overflow, expand_neg_overflow, expand_mul_overflow):
9758         Use it.
9759         (expand_arith_overflow_result_store): Likewise.  Handle precision
9760         smaller than mode precision.
9761         * tree-vrp.c (extract_range_basic): For imag part, handle
9762         properly signed 1-bit precision result.
9763         * doc/extend.texi (__builtin_add_overflow): Document that last
9764         argument can't be pointer to enumerated or boolean type.
9765         (__builtin_add_overflow_p): Document that last argument can't
9766         have enumerated or boolean type.
9768 2016-06-23  Michael Meissner  <meissner@linux.vnet.ibm.com>
9769             Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
9771         * config/rs6000/predicates.md (splat_input_operand): Rework.
9772         Don't allow constants, since the insns that use this predicate
9773         don't support constants.  Constants are handled by other insns
9774         that are created via combine.  During and after register
9775         allocation, only allow indexed or indirect addresses, and not
9776         general addresses.  Only allow modes supported by the hardware.
9777         * config/rs6000/rs6000.c (xxsplitb_constant_p): Update usage
9778         comment.  Move check for using VSPLTIS<x> to a common location,
9779         instead of doing it in two different places.
9781 2016-06-23  Jocelyn Mayer  <l_indien@magic.fr>
9783         * config/i386/driver-i386.c (host_detect_local_cpu): Set
9784         PROCESSOR_PENTIUMPRO for signature_CENTAUR_ebx family >= 9.
9785         <case PROCESSOR_PENTIMUMPRO>: Pass c7 or nehemiah for
9786         signature_CENTAUR_ebx.
9788 2016-06-23  H.J. Lu  <hongjiu.lu@intel.com>
9790         PR target/66232
9791         PR target/67400
9792         * configure.ac (as_ix86_tls_ldm_opt): Renamed to ...
9793         (as_ix86_gas_32_opt): This.
9794         (ld_ix86_tls_ldm_opt): Renamed to ...
9795         (ld_ix86_gld_32_opt): This.
9796         (R_386_TLS_LDM reloc): Updated.
9797         (R_386_GOT32X reloc): New assembler/linker check.
9798         (HAVE_AS_IX86_GOT32X): New.  Defined to 1 if 32-bit assembler and
9799         linker support "jmp *_start@GOT" and "cmpl $0, bar@GOT".  Otherise,
9800         defined to 0.
9801         * config.in: Regenerated.
9802         * configure: Likewise.
9803         * config/i386/i386.c (ix86_force_load_from_GOT_p): Return
9804         true if HAVE_AS_IX86_GOT32X is 1 in 32-bit mode.
9805         (ix86_legitimate_address_p): Allow UNSPEC_GOT for -fno-plt
9806         if ix86_force_load_from_GOT_p returns true.
9807         (ix86_print_operand_address_as): Also support UNSPEC_GOT if
9808         ix86_force_load_from_GOT_p returns true.
9809         (ix86_expand_move): Generate UNSPEC_GOT in 32-bit mode to load
9810         the external function address via the GOT slot.
9811         (ix86_nopic_noplt_attribute_p): Check both TARGET_64BIT and
9812         HAVE_AS_IX86_GOT32X before returning false.
9813         (ix86_output_call_insn): Generate "%!jmp/call\t*%p0@GOT" in
9814         32-bit mode if ix86_nopic_noplt_attribute_p returns true.
9816 2016-06-23  Eric Botcazou  <ebotcazou@adacore.com>
9818         * tree-inline.c (remap_decl): Preserve DECL_ORIGINAL_TYPE invariant.
9820 2016-06-23  Andi Kleen  <ak@linux.intel.com>
9822         * Makefile.in: Regenerate.
9823         * doc/install.texi: Document autoprofiledbootstrap.
9825 2016-06-23  Andi Kleen  <ak@linux.intel.com>
9827         * config/i386/gcc-auto-profile: New file.
9829 2016-06-23  Martin Liska  <mliska@suse.cz>
9831         PR middle-end/71619
9832         * predict.c (predict_loops): Revert the hunk that was removed
9833         in r237103.
9835 2016-06-23  Jakub Sejdak  <jakub.sejdak@phoesys.com>
9837         * config.gcc: Add support for arm*-*-phoenix* targets.
9838         * config/arm/t-phoenix: New.
9839         * config/phoenix.h: New.
9841 2016-06-23  Uros Bizjak  <ubizjak@gmail.com>
9842             H.J. Lu  <hongjiu.lu@intel.com>
9844         PR target/67400
9845         * config/i386/i386-protos.h (ix86_force_load_from_GOT_p): New.
9846         * config/i386/i386.c (ix86_force_load_from_GOT_p): New function.
9847         (ix86_legitimate_constant_p): Do not allow UNSPEC_GOTPCREL if
9848         ix86_force_load_from_GOT_p returns true.
9849         (ix86_legitimate_address_p): Allow UNSPEC_GOTPCREL if
9850         ix86_force_load_from_GOT_p returns true.
9851         (ix86_print_operand_address_as): Support UNSPEC_GOTPCREL if
9852         ix86_force_load_from_GOT_p returns true.
9853         (ix86_expand_move): Load the external function address via the
9854         GOT slot if ix86_force_load_from_GOT_p returns true.
9855         * config/i386/predicates.md (x86_64_immediate_operand): Return
9856         false for SYMBOL_REFs where ix86_force_load_from_GOT_p returns true.
9857         (x86_64_zext_immediate_operand): Ditto.
9859 2016-06-22  Uros Bizjak  <ubizjak@gmail.com>
9861         * config/i386/i386.c (ix86_expand_move): Simplify SYMBOL_REF handling.
9863 2016-06-22  David Malcolm  <dmalcolm@redhat.com>
9865         PR c/70339
9866         * diagnostic-core.h (pedwarn_at_rich_loc): New prototype.
9867         * diagnostic.c (pedwarn_at_rich_loc): New function.
9868         * spellcheck.h (best_match::best_match): Add a
9869         "best_distance_so_far" optional parameter.
9870         (best_match::set_best_so_far): New method.
9871         (best_match::get_best_distance): New accessor.
9872         (best_match::get_best_candidate_length): New accessor.
9874 2016-06-22  Nick Clifton  <nickc@redhat.com>
9876         * dwarf2out.c (scompare_loc_descriptor): Use SCALAR_INT_MODE_P() in
9877         place of GET_MODE_CLASS() == MODE_INT, so that partial integer
9878         modes are accepted as well.
9879         (ucompare_loc_descriptor): Likewise.
9880         (minmax_loc_descriptor): Likewise.
9881         (clz_loc_descriptor): Likewise.
9882         (popcount_loc_descriptor): Likewise.
9883         (bswap_loc_descriptor): Likewise.
9884         (rotate_loc_descriptor): Likewise.
9885         (mem_loc_descriptor): Likewise.
9886         (loc_descriptor): Likewise.
9888 2016-06-22  David Malcolm  <dmalcolm@redhat.com>
9890         * common.opt (fdiagnostics-parseable-fixits): New option.
9891         * diagnostic.c: Include "selftest.h".
9892         (print_escaped_string): New function.
9893         (print_parseable_fixits): New function.
9894         (diagnostic_report_diagnostic): Call print_parseable_fixits.
9895         (selftest::assert_print_escaped_string): New function.
9896         (ASSERT_PRINT_ESCAPED_STRING_STREQ): New macro.
9897         (selftest::test_print_escaped_string): New function.
9898         (selftest::test_print_parseable_fixits_none): New function.
9899         (selftest::test_print_parseable_fixits_insert): New function.
9900         (selftest::test_print_parseable_fixits_remove): New function.
9901         (selftest::test_print_parseable_fixits_replace): New function.
9902         (selftest::diagnostic_c_tests): New function.
9903         * diagnostic.h (struct diagnostic_context): Add field
9904         "parseable_fixits_p".
9905         * doc/invoke.texi (Diagnostic Message Formatting Options): Add
9906         -fdiagnostics-parseable-fixits.
9907         (-fdiagnostics-parseable-fixits): New option.
9908         * opts.c (common_handle_option): Handle
9909         -fdiagnostics-parseable-fixits.
9910         * selftest-run-tests.c (selftest::run_tests): Call
9911         selftest::diagnostic_c_tests.
9912         * selftest.h (selftest::diagnostic_c_tests): New prototype.
9914 2016-06-22  Ilya Enkovich  <ilya.enkovich@intel.com>
9916         PR tree-optimization/71488
9917         * tree-vect-patterns.c (vect_recog_mask_conversion_pattern): Support
9918         comparison of boolean vectors.
9919         * tree-vect-stmts.c (vectorizable_comparison): Vectorize comparison
9920         of boolean vectors using bitwise operations.
9922 2016-06-22  Andreas Schwab  <schwab@suse.de>
9924         * config/aarch64/aarch64-protos.h (aarch64_elf_asm_named_section):
9925         Remove declaration.
9927 2016-06-22  Eric Botcazou  <ebotcazou@adacore.com>
9929         * function.c (assign_parm_setup_reg): Prevent sharing in another case.
9931 2016-06-22  Bernd Edlinger  <bernd.edlinger@hotmail.de>
9933         * config/i386/i386.c (print_reg): Emit an error message on attempt to
9934         print FLAGS_REG.
9936 2016-06-22  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
9938         * config/arm/arm.c (arm_cortex_a73_tune): New struct.
9939         * config/arm/arm-cores.def (cortex-a73): New entry.
9940         (cortex-a73.cortex-a35): Likewise.
9941         (cortex-a73.cortex-a53): Likewise.
9942         * config/arm/arm-tables.opt: Regenerate.
9943         * config/arm/arm-tune.md: Likewise.
9944         * config/arm/bpabi.h (BE8_LINK_SPEC): Handle mcpu=cortex-a73,
9945         mcpu=cortex-a73.cortex-a35 and mcpu=cortex-a73.cortex-a53.
9946         * config/arm/t-aprofile: Handle mcpu=cortex-a73,
9947         mcpu=cortex-a73.cortex-a35 and mcpu=cortex-a73.cortex-a53.
9948         * doc/invoke.texi (ARM Options): Document cortex-a73,
9949         cortex-a73.cortex-a35 and cortex-a73.cortex-a53.
9951 2016-06-22  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
9953         * config/aarch64/aarch64.c (cortexa73_tunings): New struct.
9954         * config/aarch64/aarch64-cores.def (cortex-a73): New entry.
9955         (cortex-a73.cortex-a35): Likewise.
9956         (cortex-a73.cortex-a53): Likewise.
9957         * config/aarch64/aarch64-tune.md: Regenerate.
9958         * doc/invoke.texi (AArch64 Options): Document cortex-a73,
9959         cortex-a73.cortex-a35 and cortex-a73.cortex-a53 arguments to
9960         -mcpu and -mtune.
9962 2016-06-22  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
9964         * configure.ac (gcc_cv_as_compress_debug): Remove
9965         --compress-debug-sections as extra as switch.
9966         Handle gas --compress-debug-sections=type.
9967         (gcc_cv_ld_compess_debug): Remove bogus ld_date check.
9968         Handle gld --compress-debug-sections=type.
9969         * configure: Regenerate.
9971 2016-06-21  Andrew Burgess  <andrew.burgess@embecosm.com>
9973         * bb-reorder.c (pass_partition_blocks::gate): Update comment.
9975 2016-06-21  John David Anglin  <danglin@gcc.gnu.org>
9977         * gcov-tool.c (profile_rewrite): Use int64_t instead of long long.
9978         (do_rewrite): likewise.
9980 2016-06-21  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
9982         * common/config/mep/mep-common.c: Remove.
9983         * config.gcc: Remove mep-* support.
9984         * config/mep/constraints.md: Remove.
9985         * config/mep/default.h: Remove.
9986         * config/mep/intrinsics.h: Remove.
9987         * config/mep/intrinsics.md: Remove.
9988         * config/mep/ivc2-template.h: Remove.
9989         * config/mep/mep-c5.cpu: Remove.
9990         * config/mep/mep-core.cpu: Remove.
9991         * config/mep/mep-default.cpu: Remove.
9992         * config/mep/mep-ext-cop.cpu: Remove.
9993         * config/mep/mep-intrin.h: Remove.
9994         * config/mep/mep-ivc2.cpu: Remove.
9995         * config/mep/mep-pragma.c: Remove.
9996         * config/mep/mep-protos.h: Remove.
9997         * config/mep/mep.c: Remove.
9998         * config/mep/mep.cpu: Remove.
9999         * config/mep/mep.h: Remove.
10000         * config/mep/mep.md: Remove.
10001         * config/mep/mep.opt: Remove.
10002         * config/mep/predicates.md: Remove.
10003         * config/mep/t-mep: Remove.
10004         * doc/install.texi: Remove mep-* documentation.
10005         * doc/md.texi: Likewise.
10007 2016-06-21  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
10009         * config.gcc: Remove support for avr-rtems.
10010         * config/avr/gen-avr-mmcu-specs.c: Likewise.
10011         * config/avr/rtems.h: Remove.
10012         * config/avr/t-rtems: Remove.
10014 2016-06-21  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
10016         * config.gcc: Remove m32r-rtems support.
10017         * config/m32r/rtems.h: Remove.
10019 2016-06-21  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
10021         * config.gcc: Remove h8300-rtems support.
10022         * config/h8300/rtems.h: Remove.
10023         * config/h8300/t-rtems: Remove.
10025 2016-06-21  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
10027         * config.gcc: Remove support for knetbsd.
10028         * configure.ac: Likewise.
10029         * config/i386/knetbsd-gnu.h: Remove.  * config/i386/knetbsd-gnu64.h: Remove.
10030         * config/knetbsd-gnu.h: Remove.
10031         * configure: Regenerate.
10033 2016-06-21  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
10035         * config.gcc: Remove support for openbsd 2 and 3.
10036         * config/openbsd-oldgas.h: Remove.
10038 2016-06-21  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
10040         * config.gcc: Remove interix support.
10041         * config/i386/i386-interix.h: Remove.
10042         * config/i386/interix.opt: Remove.
10043         * config/i386/t-interix: Remove.
10044         * configure: Regenerate.
10045         * configure.ac: Remove interix support.
10046         * doc/install.texi: Remove interix documentation.
10048 2016-06-21  Kelvin Nilsen  <kelvin@gcc.gnu.org>
10050         * config/rs6000/rs6000.h: Add conditional preprocessing directives
10051         to disable Power9-specific compiler features if HAVE_AS_POWER9 is
10052         not defined.
10054 2016-06-21  Eric Botcazou  <ebotcazou@adacore.com>
10056         * tree.c (verify_type_variant): Skip TYPE_SIZE and TYPE_SIZE_UNIT if
10057         they are both PLACEHOLDER_EXPRs.
10059 2016-06-21  Michael Meissner  <meissner@linux.vnet.ibm.com>
10061         * stor-layout.c (layout_type): Move setting complex MODE to
10062         layout_type, instead of setting it ahead of time by the caller.
10063         * tree.c (build_complex_type): Likewise.
10065 2016-06-21  Martin Liska  <mliska@suse.cz>
10067         * predict.c (force_edge_cold): Replace imposisble with
10068         impossible.
10070 2016-06-21  Ilya Verbin  <ilya.verbin@intel.com>
10072         * config/i386/i386.c (ix86_emit_swsqrtsf): Emit vrsqrt28ps.
10073         * config/i386/sse.md (define_expand "rsqrtv16sf2"): New.
10075 2016-06-21  Ilya Verbin  <ilya.verbin@intel.com>
10077         * config/i386/i386.c (ix86_emit_swdivsf): Emit vrcp28ps.
10079 2016-06-21  H.J. Lu  <hongjiu.lu@intel.com>
10080             Ilya Enkovich  <ilya.enkovich@intel.com>
10082         PR target/71549
10083         * config/i386/i386.c (timode_scalar_chain::fix_debug_reg_uses):
10084         New member function to convert V1TImode register to SUBREG
10085         TImode in debug insn.
10086         (timode_scalar_chain::convert_insn): Call fix_debug_reg_uses
10087         after changing register mode to V1TImode.
10089 2016-06-21  Virendra Pathak  <virendra.pathak@broadcom.com>
10091         * config/aarch64/aarch64-cores.def (vulcan): New core.
10092         * config/aarch64/aarch64-tune.md: Regenerate.
10093         * doc/invoke.texi: Document vulcan as an available option.
10095 2016-06-21  Eric Botcazou  <ebotcazou@adacore.com>
10097         * cse.c (canon_asm_operands): New function extracted from...
10098         (canonicalize_insn): ...here.  Call it to canonicalize an ASM_OPERANDS
10099         either standalone or member of a PARALLEL.
10101 2016-06-21  Georg-Johann Lay  <avr@gjlay.de>
10103         PR target/30417
10104         * config/avr/gen-avr-mmcu-specs.c (print_mcu):
10105         [*link_data_start]: Wrap -Tdata into %{!Tdata:...}.
10106         [*link_text_start]: Wrap -Ttext into %{!Ttext:...}.
10108 2016-06-21  Georg-Johann Lay  <avr@gjlay.de>
10110         PR target/71103
10111         * config/avr/avr.md (movqi): Only handle loading subreg:qi of
10112         constant addresses if can_create_pseudo_p.
10114 2016-06-21  Jakub Jelinek  <jakub@redhat.com>
10116         PR tree-optimization/71588
10117         * tree-ssa-strlen.c (valid_builtin_call): New function.
10118         (adjust_last_stmt, handle_builtin_memset, strlen_optimize_stmt): Use
10119         it.
10121 2016-06-20  Jakub Jelinek  <jakub@redhat.com>
10123         PR middle-end/71581
10124         * tree-ssa-uninit.c (warn_uninit): If EXPR and VAR are NULL,
10125         see if T isn't anonymous SSA_NAME with COMPLEX_EXPR created
10126         for conversion of scalar user var to complex type and use the
10127         underlying SSA_NAME_VAR in that case.  If EXPR is still NULL,
10128         punt.
10130         PR rtl-optimization/71591
10131         * toplev.c (toplev::run_self_tests): If no_backend, complain and
10132         don't run any tests.
10134 2016-06-20  Hans-Peter Nilsson  <hp@axis.com>
10136         PR target/71571
10137         * config/cris/cris.c (cris_asm_output_mi_thunk): Add missing "ba"
10138         delay-slot "nop" for PIC with CRIS v32.  Also add missing leading
10139         space for PIC with non-v32 and the common non-PIC "jump".
10141 2016-06-20  Jakub Jelinek  <jakub@redhat.com>
10143         PR target/71559
10144         * config/i386/i386.c (ix86_fp_cmp_code_to_pcmp_immediate): Fix up
10145         returned values and add UN*/LTGT/*ORDERED cases with values matching
10146         D operand modifier on vcmp for AVX.
10148 2016-06-20  Wilco Dijkstra  <wdijkstr@arm.com>
10150         * config/aarch64/aarch64.opt
10151         (mpc-relative-literal-loads): Rename internal option name.
10152         * config/aarch64/aarch64.c
10153         (aarch64_nopcrelative_literal_loads): Rename to
10154         aarch64_pcrelative_literal_loads.
10155         (aarch64_expand_mov_immediate): Likewise.
10156         (aarch64_secondary_reload): Likewise.
10157         (aarch64_can_use_per_function_literal_pools_p): Likewise.
10158         (aarch64_override_options_after_change_1): Rename and simplify logic.
10159         (aarch64_classify_symbol): Merge large model checks into switch,
10160         remove pc-relative load check.
10162 2016-06-20  James Greenhalgh  <james.greenhalgh@arm.com>
10164         * config/arm/aarch-cost-tables.h (cortexa53_extra_costs): Make FP
10165         costs relative to the cost of a register move.
10167 2016-06-20  James Greenhalgh  <james.greenhalgh@arm.com>
10169         * config/aarch64/arm_neon.h (vcvt_n_f64_s64): New.
10170         (vcvt_n_f64_u64): Likewise.
10171         (vcvt_n_s64_f64): Likewise.
10172         (vcvt_n_u64_f64): Likewise.
10173         (vcvt_f64_s64): Likewise.
10174         (vrecpe_f64): Likewise.
10175         (vcvt_f64_u64): Likewise.
10176         (vrecps_f64): Likewise.
10178 2016-06-20  James Greenhalgh  <james.greenhalgh@arm.com>
10180         * config/aarch64/aarch64.md
10181         (<FCVT_F2FIXED:fcvt_fixed_insn><GPF:mode>3): Add attributes to
10182         iterators.
10183         (<FCVT_FIXED2F:fcvt_fixed_insn><GPI:mode>3): Likewise.  Correct
10184         attributes.
10185         * config/aarch64/aarch64-builtins.c
10186         (aarch64_types_binop_uss_qualifiers): Delete.
10187         (TYPES_BINOP_USS): Likewise.
10188         (aarch64_types_binop_sus_qualifiers): Likewise.
10189         (TYPES_BINOP_SUS): Likewise.
10190         (aarch64_types_fcvt_from_unsigned_qualifiers): New.
10191         (TYPES_FCVTIMM_SUS): Likewise.
10192         * config/aarch64/aarch64-simd-builtins.def (scvtf): Use SHIFTIMM
10193         rather than BINOP.
10194         (ucvtf): Use FCVTIMM_SUS rather than BINOP_SUS.
10195         (fcvtzs): Use SHIFTIMM rather than BINOP.
10196         (fcvtzu): Use SHIFTIMM_USS rather than BINOP_USS.
10198 2016-06-20  James Greenhalgh  <james.greenhalgh@arm.com>
10200         * config/arm/aarch-cost-tables.h (cortexa57_extra_costs): Make FP
10201         costs relative to the cost of a register move.
10203 2016-06-20  Wilco Dijkstra  <wdijkstr@arm.com>
10205         * config/aarch64/aarch64.c (aarch64_modes_tieable_p):
10206         Allow scalar/single vector modes to be tieable.
10208 2016-06-20  Wilco Dijkstra  <wdijkstr@arm.com>
10210         * config/arm/cortex-a57.md (cortex_a57_fp_cpys): Add fcsel.
10212 2016-06-20  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
10214         * params.def (PARAM_ALIGN_LOOP_ITERATIONS): Use "alignment" instead of
10215         "alignement".
10216         * tree.h (TYPE_ALIGN): Likewise.
10218 2016-06-20  Georg-Johann Lay  <avr@gjlay.de>
10220         PR target/71103
10221         * config/avr/avr.md (movqi): Handle loading subreg:qi (const).
10223 2016-06-20  Georg-Johann Lay  <avr@gjlay.de>
10225         * config/avr/avr.c (avr_print_operand): Fix "format not a string
10226         literal" build warnings.
10227         (avr_print_operand_address): Dito.
10229 2016-06-19  David Edelsohn  <dje.gcc@gmail.com>
10231         PR target/71375
10232         * config/rs6000/aix51.h (TARGET_EXTRA_BUILTINS): Define as 0.
10233         * config/rs6000/aix43.h (TARGET_EXTRA_BUILTINS): Same.
10235 2016-06-18  John David Anglin  <danglin@gcc.gnu.org>
10237         * config/pa/pa.h (TARGET_LONG_PIC_PCREL_CALL): Remove.
10239 2016-06-18  Eric Botcazou  <ebotcazou@adacore.com>
10241         PR bootstrap/71435
10242         * reload1.c (reload): Pass 0 to finish_spills when called because
10243         update_eliminables_and_spill returns true and remove did_spill.
10244         (finish_spills): Adjust comment and document GLOBAL parameter.
10246 2016-06-17  DJ Delorie  <dj@redhat.com>
10248         PR target/71338
10249         * config/rl78/rl78-expand.c (umulqihi3): Enable for G10.
10250         * config/rl78/rl78-virtual.c (umulhi3_shift_virt): Likewise.
10251         (umulqihi3_virt): Likewise.
10252         * config/rl78/rl78-real.c (umulhi3_shift_real): Likewise.
10253         (umulqihi3_real): Likewise.
10255 2016-06-17  Martin Liska  <mliska@suse.cz>
10257         * tree-ssa-reassoc.c (transform_add_to_multiply): Use auto_vec.
10259 2016-06-17  Martin Liska  <mliska@suse.cz>
10261         * predict.def: PRED_LOOP_EXIT from 92 to 85.
10263 2016-06-17  James Greenhalgh  <james.greenhalgh@arm.com>
10265         * config/arm/arm_neon.h (vadd_f32): replace __FAST_MATH with
10266         __FAST_MATH__.
10267         (vaddq_f32): Likewise.
10268         (vmul_f32): Likewise.
10269         (vmulq_f32): Likewise.
10270         (vsub_f32): Likewise.
10271         (vsubq_f32): Likewise.
10273 2016-06-17  Bin Cheng  <bin.cheng@arm.com>
10275         PR tree-optimization/71347
10276         * tree-ssa-loop-ivopts.c (determine_group_iv_cost_address): Compute
10277         cost for all uses in group.
10279 2016-06-17  Bin Cheng  <bin.cheng@arm.com>
10281         * tree-vect-loop.c (vect_create_epilog_for_reduction): Only
10282         insert gimple seq if it's not empty.
10284 2016-06-17  Bin Cheng  <bin.cheng@arm.com>
10286         * tree-vectorizer.h (struct dr_with_seg_len): Remove class
10287         member OFFSET.
10288         * tree-vect-data-refs.c (operator ==): Handle DR_OFFSET directly,
10289         rather than OFFSET.
10290         (comp_dr_with_seg_len_pair): Ditto.
10291         (vect_prune_runtime_alias_test_list): Ditto.  Also Canonicalize
10292         struct dr_with_seg_len_pair against DR_OFFSET.
10293         * tree-vect-loop-manip.c (vect_create_cond_for_alias_checks): Handle
10294         DR_OFFSET directly.
10296 2016-06-17  Szabolcs Nagy  <szabolcs.nagy@arm.com>
10298         * config/aarch64/geniterators.sh: Handle parenthesised conditions.
10300 2016-06-16  John David Anglin  <danglin@gcc.gnu.org>
10302         * config/pa/pa.c (pa_output_pic_pcrel_sequence): New.
10303         (pa_output_lbranch): Use pa_output_pic_pcrel_sequence.
10304         (pa_output_millicode_call): Likewise.
10305         (pa_output_call): Likewise.
10306         (pa_output_indirect_call): Likewise.
10307         (pa_asm_output_mi_thunk): Likewise.
10309 2016-06-16  Bernhard Reutner-Fischer  <aldot@gcc.gnu.org>
10311         * doc/invoke.texi (x86 Options): Fix -mno-fp-ret-in-387 typo.
10313 2016-06-16  Martin Liska  <mliska@suse.cz>
10315         * predict.c (combine_predictions_for_insn): When we find a first
10316         match predictor, we should consider just predictors with
10317         PRED_FLAG_FIRST_MATCH.  Print either first match (if any) or
10318         DS theory predictor.
10319         (combine_predictions_for_bb): Likewise.
10321 2016-06-16  Jakub Jelinek  <jakub@redhat.com>
10323         * gimplify.c (gimplify_scan_omp_clauses): Handle COMPONENT_REFs
10324         with base of reference to struct.
10326 2016-06-16  Uros Bizjak  <ubizjak@gmail.com>
10328         * doc/invoke.texi (x86 Options): Document -m80387 and -mhard-float.
10330 2016-06-16  Senthil Kumar Selvaraj  <senthil_kumar.selvaraj@atmel.com>
10332         PR target/71151
10333         * config/avr/avr.c (avr_asm_init_sections): Remove setup of
10334         progmem_swtable_section.
10335         (progmem_swtable_section): Remove.
10336         (avr_asm_function_rodata_section): Remove.
10337         (TARGET_ASM_FUNCTION_RODATA_SECTION): Remove.
10338         * config/avr/avr.h (JUMP_TABLES_IN_TEXT_SECTION: Define to 1.
10340 2016-06-16  Jocelyn Mayer  <l_indien@magic.fr>
10342         * config/i386/driver-i386.c (host_detect_local_cpu): Set
10343         PROCESSOR_K8 for signature_CENTAUR_ebx with has_longmode.
10344         <case PROCESSOR_K8>: Pass nano-3000, nano, eden-x2 or k8 for
10345         signature_CENTAUR_ebx.
10346         * config/i386/i386.c (ix86_option_override_internal): Add
10347         definitions for VIA c7, samuel-2, nehemiah, esther, eden-x2, eden-x4,
10348         nano, nano-1000, nano-2000, nano-3000, nano-x2 and nano-x4.
10349         * doc/invoke.texi (x86 Options): Document new VIA -march entries.
10351 2016-06-16  Martin Liska  <mliska@suse.cz>
10353         * predict.def: Add fortran loop preheader predictor.
10354         * gimple-fold.c (gimple_fold_stmt_to_constant_1): Properly
10355         fold IFN_BUILTIN_EXPECT with a known constant argument.
10357 2016-06-16  Martin Liska  <mliska@suse.cz>
10359         * predict.def: Add 'Fortran' to display text of all
10360         PRED_FORTRAN_* predictors.
10362 2016-06-16  Uros Bizjak  <ubizjak@gmail.com>
10364         PR target/71242
10365         * config/ia64/ia64.c (enum ia64_builtins) [IA64_BUILTIN_NANQ]: New.
10366         [IA64_BUILTIN_NANSQ]: Ditto.
10367         (ia64_fold_builtin): New function.
10368         (TARGET_FOLD_BUILTIN): New define.
10369         (ia64_init_builtins) Declare const_string_type node.
10370         Add __builtin_nanq and __builtin_nansq builtin functions.
10371         (ia64_expand_builtin): Handle IA64_BUILTIN_NANQ and IA64_BUILTIN_NANSQ.
10373 2016-06-16  Nick Clifton  <nickc@redhat.com>
10375         * config/msp430/msp430-opts.h (msp430_hwmult_types): Add
10376         MSP430_HWMULT_ prefix to enum values.
10377         (msp430_regions): Add MSP430_REGION_ prefix to enum values.
10378         * config/msp430/msp430.c: Update use of enum values.
10379         * config/msp430/msp430.md: Likewise.
10380         * config/msp430/msp430.opt: Likewise.
10382 2016-06-16  Jan Hubicka  <hubicka@ucw.cz>
10384         * tree-ssa-loop-ivcanon.c (tree_estimate_loop_size): Fix estimation
10385         of comparsions in the last iteration.
10387 2016-06-16  Claudiu Zissulescu  <claziss@synopsys.com>
10388             Joern Rennecke  <joern.rennecke@embecosm.com>
10390         * config/arc/arc.c (arc_print_operand_address): Handle pc-relative
10391         addresses.
10392         (arc_needs_pcl_p): Add GOTOFFPC.
10393         (arc_legitimate_pic_addr_p): Likewise.
10394         (arc_output_pic_addr_const): Likewise.
10395         (arc_legitimize_pic_address): Generate a pc-relative address using
10396         GOTOFFPC.
10397         (arc_output_libcall): Use @pcl syntax.
10398         (arc_delegitimize_address_0): Delegitimize ARC_UNSPEC_GOTOFFPC.
10399         * config/arc/arc.md ("unspec"): Add ARC_UNSPEC_GOTOFFPC.
10400         (*movsi_insn): Use @pcl syntax.
10401         (doloop_begin_i): Likewise.
10403 2016-06-16  Martin Liska  <mliska@suse.cz>
10405         * predict.def: Define a new predictor.
10407 2016-06-16  Claudiu Zissulescu  <claziss@synopsys.com>
10409         * config/arc/arc.opt (mtp-regno): Update text.
10411 2016-06-16  Renlin Li  <renlin.li@arm.com>
10413         * config/aarch64/aarch64.c (aarch64_legitimize_address): Fix a typo.
10415 2016-06-16  Jakub Jelinek  <jakub@redhat.com>
10417         PR target/71554
10418         * config/i386/i386.md (setcc + movzbl peephole2): Use reg_set_p.
10419         (setcc + and peephole2): Likewise.
10421         PR rtl-optimization/71532
10422         * cse.c (cse_insn): For const/pure calls, invalidate argument passing
10423         memory slots.
10425 2016-06-15  Michael Meissner  <meissner@linux.vnet.ibm.com>
10427         * config/rs6000/vsx.md (VSINT_84): Add DImode to enable loading
10428         DImode constants with XXSPLTIB in vector registers.
10429         (vsx_extract_<mode>, V2DImode/V2DFmode): Combine both
10430         vsx_extract_<mode>_internal{1,2} into a single insn that handles
10431         direct move (both ISA 2.07 and ISA 3.0 versions), and optimizes
10432         extraction of the element at the top of the register as a scalar
10433         value.
10434         (vsx_extract_<mode>_internal1): Likewise.
10435         (vsx_extract_<mode>_internal2): Likewise.
10436         * config/rs6000/constraints.md (wi constraint): Remove a comment
10437         about DImode not being allowed in Altivec registers.
10438         (wB constraint): New constraint for constants that can be
10439         generated in Altivec registers with VSPLTISW/VUPKHSW.
10440         * config/rs6000/predicates.md (xxspltib_constant_split): Update
10441         comments.
10442         (xxspltib_constant_nosplit): Likewise.
10443         * config/rs6000/rs6000-cpus.def (ISA_2_6_MASKS_SERVER): Add
10444         support for -mupper-regs-di to enable DImode to go into Altivec
10445         registers.
10446         (POWERPC_MASKS): Likewise.
10447         (power7 cpu): Likewise.
10448         * config/rs6000/rs6000.opt (-mupper-regs-di): Likewise.
10449         * config/rs6000/rs6000.c (rs6000_hard_regno_mode_ok): Add support
10450         for DImode being allowed in Altivec registers.  Update wi/wj
10451         constraints.  Set scalar_in_vmx_p flag.
10452         (rs6000_option_override_internal): Add checks for -mupper-regs-di.
10453         (xxspltib_constant_p): Allow CONST_INT's with VOIDmode.  Don't
10454         return true if we could use VSPLTISW/VUPKHSW instead of XXSPLTIB.
10455         (rs6000_opt_masks): Add -mupper-regs-di.
10456         * config/rs6000/rs6000.md (lfiwax): Update clobbers that don't use
10457         direct move to use wi and not wj.
10458         (lfiwzx): Likewise.
10459         (floatsi<mode>2_lfiwax_mem): Combine alternatives into a single
10460         alternative.
10461         (floatunssi<mode>2_lfiwzx_mem): Likewise.
10462         (fix_trunc<mode>di2_fctidz): Change second alternative to allow
10463         any VSX register, instead of just Altivec registers, to allow
10464         either operand to be an Altivec register or both.
10465         (fixuns_trunc<mode>di2_fctiduz): Likewise.
10466         (movdi_internal32): Add support for -mupper-regs-di.  Add support
10467         to load constants via XXSPLTIB or VSPLTISW.  Add spacing to allow
10468         the alternatives and attributes to be lined up to be easier to
10469         read.
10470         (movdi_internal64): Likewise.
10471         (64-bit DImode splitters): Change predicates to only split loading
10472         up GPR registers.  Add splits for using XXSPLTIB or VSPLTISW to
10473         load constants in ISA 3.0 or ISA 2.07 respectively.
10474         * doc/invoke.texi (RS/6000 and PowerPC Options): Document
10475         -mupper-regs-di.  Update -mupper-regs-df and -mupper-regs-sf to
10476         mention -mcpu=power9 sets these options.
10477         * doc/md.texi (PowerPC and IBM RS6000 constraints): Document the
10478         wB constraint.
10480 2016-06-15  Pitchumani Sivanupandi  <pitchumani.s@atmel.com>
10482         PR target/67353
10483         * config/avr/avr.c (avr_set_current_function): Warn misspelled
10484         interrupt/ signal handler if -Wmisspelled-isr flag is enabled.
10485         * config/avr/avr.opt (Wmisspelled-isr): New warning flag. Enabled
10486         by default to warn misspelled interrupt/ signal handler.
10487         * doc/invoke.texi (AVR Options): Document it. Update description
10488         for -nodevicelib option.
10490 2016-06-15  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
10492         * config/aarch64/aarch64-simd.md (aarch64_<sur>shll_n<mode>): Clean
10493         up parentheses.  Use GET_MODE_UNIT_BITSIZE.
10494         (aarch64_<sur>shll2_n<mode>): Likewise.
10496 2016-06-15  Ilya Enkovich  <ilya.enkovich@intel.com>
10498         PR middle-end/71529
10499         * ipa-chkp.c (chkp_build_instrumented_fndecl): Fix
10500         DECL_CONTEXT for copied arguments.
10502 2016-06-15  Alan Hayward  <alan.hayward@arm.com>
10504         PR tree-optimization/71483
10505         * tree-vect-loop.c (vectorizable_live_operation): Pick correct index
10506         for slp
10508 2016-06-15  Martin Liska  <mliska@suse.cz>
10510         * predict.c (tree_predict_by_opcode): Call predict_edge_def
10511         instead of predict_edge w/o a probability.
10513 2016-06-15  Alan Hayward  <alan.hayward@arm.com>
10515         PR tree-optimization/71439
10516         * tree-vect-loop.c (vect_analyze_loop_operations): Additional check for
10517         live PHIs.
10519 2016-06-15  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
10521         * ifcvt.c (bb_ok_for_noce_multiple_sets): Allow simple lowpart
10522         register subregs in SET_SRC.
10524 2016-06-15  Richard Biener  <rguenther@suse.de>
10526         * tree-vect-stmts.c (vectorizable_store): Remove strided grouped
10527         store restrictions.
10529 2016-06-15  Richard Biener  <rguenther@suse.de>
10531         * tree-vect-data-refs.c (vect_analyze_data_ref_dependence): Do
10532         not consider dependences between accesses that belong to the
10533         same group.
10534         (vect_analyze_data_ref_dependences): Do not analyze read-read
10535         or self-dependences.
10537 2016-06-14  David Malcolm  <dmalcolm@redhat.com>
10539         * spellcheck-tree.c: Include spellcheck-tree.h rather than
10540         spellcheck.h.
10541         (find_closest_identifier): Reimplement in terms of
10542         best_match<tree,tree>.
10543         * spellcheck-tree.h: New file.
10544         * spellcheck.c (struct edit_distance_traits<const char *>): New
10545         struct.
10546         (find_closest_string): Reimplement in terms of
10547         best_match<const char *, const char *>.
10548         * spellcheck.h (levenshtein_distance): Move prototype of tree-based
10549         overload to spellcheck-tree.h.
10550         (find_closest_identifier): Likewise.
10551         (struct edit_distance_traits<T>): New template.
10552         (class best_match): New class.
10554 2016-06-14  David Malcolm  <dmalcolm@redhat.com>
10556         * selftest-run-tests.c (selftest::run_tests): Call
10557         selftest::spellcheck_tree_c_tests.
10558         * selftest.h (selftest::spellcheck_tree_c_tests): New decl.
10559         * spellcheck-tree.c: Include selftest.h and stringpool.h.
10560         (selftest::test_find_closest_identifier): New function.
10561         (selftest::spellcheck_tree_c_tests): New function.
10562         * spellcheck.c (selftest::test_find_closest_string): Verify that
10563         the order of the vec does not affect the results for this case.
10564         (selftest::test_data): New array.
10565         (selftest::test_metric_conditions): New function.
10566         (selftest::spellcheck_c_tests): Add a test of case-comparison.
10567         Call selftest::test_metric_conditions.
10569 2016-06-14  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
10571         * config/rs6000/rs6000-builtin.def (commentary): Typo.
10572         (BU_P9_MISC_1): Likewise.
10573         (BU_P9_64BIT_MISC_0): Likewise.
10574         (BU_P9_MISC_0): Likewise.
10576 2016-06-14  David Malcolm  <dmalcolm@redhat.com>
10578         * gcc-rich-location.c
10579         (gcc_rich_location::add_fixit_misspelled_id): New method.
10580         * gcc-rich-location.h
10581         (gcc_rich_location::add_fixit_misspelled_id): Add decl.
10583 2016-06-14  Andreas Tobler  <andreast@gcc.gnu.org>
10585         * config/arm/freebsd.h: Only enable unaligned access for armv6 on
10586         FreeBSD 11 and above.
10588 2016-06-14  Uros Bizjak  <ubizjak@gmail.com>
10590         * config/i386/i386.md (signbittf2): Emit sse_movmskps for TARGET_SSE.
10592 2016-06-14  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
10594         * expmed.h: Close parenthesis in "at your option" in copyright
10595         boilerplate.
10596         * lower-subreg.h: Likewise.
10598 2016-06-14  Richard Biener  <rguenther@suse.de>
10600         PR middle-end/71526
10601         * genmatch.c (expr::gen_transform): Use in_type for comparisons
10602         if available.
10604 2015-06-14  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
10606         * config/aarch64/aarch64.c (aarch64_mask_and_shift_for_ubfiz_p):
10607         New function.
10608         (aarch64_rtx_costs): Use it.  Rewrite CONST_INT_P (op1) case to handle
10609         mask+shift version.
10610         * config/aarch64/aarch64-protos.h (aarch64_mask_and_shift_for_ubfiz_p):
10611         New prototype.
10612         * config/aarch64/aarch64.md (*andim_ashift<mode>_bfiz): Replace
10613         matching condition with aarch64_mask_and_shift_for_ubfiz_p.
10615 2016-06-14  Richard Biener  <rguenther@suse.de>
10617         PR tree-optimization/71522
10618         * tree-ssa.c (non_rewritable_lvalue_p): Do not rewrite non-float
10619         copying into float copying.
10621 2016-06-14  Jakub Jelinek  <jakub@redhat.com>
10623         PR tree-optimization/71520
10624         * tree-ssa-tail-merge.c (find_duplicate): Handle labels.
10625         (replace_block_by): Move user labels from bb1 to bb2.
10627 2016-06-14  Richard Biener  <rguenther@suse.de>
10629         PR middle-end/71310
10630         PR bootstrap/71510
10631         * expr.h (get_bit_range): Declare.
10632         * expr.c (get_bit_range): Export.
10633         * fold-const.c (optimize_bit_field_compare): Use get_bit_range and
10634         word_mode again to constrain the bitfield access.
10636 2016-06-14  Richard Biener  <rguenther@suse.de>
10638         PR tree-optimization/71521
10639         * tree-vrp.c (extract_range_from_binary_expr_1): Guard
10640         division int_const_binop against zero divisor.
10642 2016-06-13  Uros Bizjak  <ubizjak@gmail.com>
10644         * config/i386/i386.md (signbittf2): New expander.
10645         * config/i386/sse.md (ptesttf2): New insn pattern.
10647 2016-06-13  David Malcolm  <dmalcolm@redhat.com>
10649         PR bootstrap/71481
10650         * input.c (selftest::test_reading_source_line): Avoid reading from
10651         __FILE__ by creating a tempfile with known content and reading
10652         from that instead.
10654 2016-06-13  David Malcolm  <dmalcolm@redhat.com>
10656         * pretty-print.c (assert_pp_format_colored): Skip the test if
10657         GCC_COLORS is set.
10658         (test_pp_format): Remove comment about GCC_COLORS.
10660 2016-06-13  David Malcolm  <dmalcolm@redhat.com>
10662         * input.c (test_reading_source_line): Use SELFTEST_LOCATION.
10663         * pretty-print.c (assert_pp_format_va): Add location param and use
10664         it with ASSERT_STREQ_AT.
10665         (assert_pp_format): Add location param and pass it to
10666         assert_pp_format_va.
10667         (assert_pp_format_colored): Likewise.
10668         (ASSERT_PP_FORMAT_1): New.
10669         (ASSERT_PP_FORMAT_2): New.
10670         (ASSERT_PP_FORMAT_3): New.
10671         (test_pp_format): Provide SELFTEST_LOCATION throughout, either
10672         explicitly, or implicitly via the above macros.
10673         * selftest.c (selftest::pass): Use a selftest::location rather
10674         than file and line.
10675         (selftest::fail): Likewise.  Print the function name.
10676         (selftest::fail_formatted): Likewise.
10677         (selftest::assert_streq): Use a selftest::location rather than
10678         file and line.
10679         * selftest.h (selftest::location): New struct.
10680         (SELFTEST_LOCATION): New macro.
10681         (selftest::pass): Accept a const location & rather than file
10682         and line.
10683         (selftest::fail): Likewise.
10684         (selftest::fail_formatted): Likewise.
10685         (selftest::assert_streq): Likewise.
10686         (ASSERT_TRUE): Update for above changes, using SELFTEST_LOCATION.
10687         (ASSERT_FALSE): Likewise.
10688         (ASSERT_EQ): Likewise.
10689         (ASSERT_NE): Likewise.
10690         (ASSERT_STREQ): Likewise.
10691         (ASSERT_PRED1): Likewise.
10692         (ASSERT_STREQ_AT): New macro.
10694 2016-06-13  David Malcolm  <dmalcolm@redhat.com>
10696         * selftest.c (selftest::fail_formatted): New function.
10697         (selftest::assert_streq): New function.
10698         * selftest.h (selftests::fail_formatted): New decl.
10699         (selftest::assert_streq): New decl.
10700         (ASSERT_STREQ): Reimplement in terms of selftest::assert_streq.
10702 2016-06-13  Jeff Law  <law@redhat.com>
10704         PR tree-optimization/71403
10705         * tree-ssa-threadbackward.c
10706         (convert_and_register_jump_thread_path): No longer accept reference
10707         to path.  Do not pop items off the path anymore.
10708         (fsm_find_control_statement_thread_paths): Do not allow threading
10709         to a deeper loop nest.  Pop the last item off the path here rather
10710         than in convert_and_register_jump_thread_path.
10712 2016-06-13  Evandro Menezes  <e.menezes@samsung.com>
10713             Wilco Dijkstra  <Wilco.Dijkstra@arm.com>
10715         [AArch64] Emit division using the Newton series
10717         * config/aarch64/aarch64-protos.h
10718         (cpu_approx_modes): Add new member "division".
10719         (aarch64_emit_approx_div): Declare new function.
10720         * config/aarch64/aarch64.c
10721         (generic_approx_modes): New member "division".
10722         (exynosm1_approx_modes): Likewise.
10723         (xgene1_approx_modes): Likewise.
10724         (aarch64_emit_approx_div): Define new function.
10725         * config/aarch64/aarch64.md ("div<mode>3"): New expansion.
10726         * config/aarch64/aarch64-simd.md ("div<mode>3"): Likewise.
10727         * config/aarch64/aarch64.opt (-mlow-precision-div): Add new option.
10728         * doc/invoke.texi (-mlow-precision-div): Describe new option.
10730 2016-06-13  Evandro Menezes  <e.menezes@samsung.com>
10731             Wilco Dijkstra  <wilco.dijkstra@arm.com>
10733         [AArch64] Emit square root using the Newton series
10735         * config/aarch64/aarch64-protos.h
10736         (aarch64_emit_approx_rsqrt): Replace with new function
10737         "aarch64_emit_approx_sqrt".
10738         (cpu_approx_modes): New member "sqrt".
10739         * config/aarch64/aarch64.c
10740         (generic_approx_modes): New member "sqrt".
10741         (exynosm1_approx_modes): Likewise.
10742         (xgene1_approx_modes): Likewise.
10743         (aarch64_emit_approx_rsqrt): Replace with new function
10744         "aarch64_emit_approx_sqrt".
10745         (aarch64_override_options_after_change_1): Handle new option.
10746         * config/aarch64/aarch64-simd.md
10747         (rsqrt<mode>2): Use new function instead.
10748         (sqrt<mode>2): New expansion and insn definitions.
10749         * config/aarch64/aarch64.md: Likewise.
10750         * config/aarch64/aarch64.opt
10751         (mlow-precision-sqrt): Add new option description.
10752         * doc/invoke.texi (mlow-precision-sqrt): Likewise.
10754 2016-06-13  Evandro Menezes  <e.menezes@samsung.com>
10756         [AArch64] Add more choices for the reciprocal square root approximation
10758         Allow a target to prefer such operation depending on the operation mode.
10760         * config/aarch64/aarch64-protos.h
10761         (AARCH64_APPROX_MODE): New macro.
10762         (AARCH64_APPROX_{NONE,ALL}): Likewise.
10763         (cpu_approx_modes): New structure.
10764         (tune_params): New member "approx_modes".
10765         * config/aarch64/aarch64-tuning-flags.def
10766         (AARCH64_EXTRA_TUNE_APPROX_RSQRT): Remove macro.
10767         * config/aarch64/aarch64.c
10768         (generic_approx_modes): New core "cpu_approx_modes" structure.
10769         (exynosm1_approx_modes): Likewise.
10770         (xgene1_approx_modes): Likewise.
10771         (generic_tunings): New member "approx_modes".
10772         (cortexa35_tunings): Likewise.
10773         (cortexa53_tunings): Likewise.
10774         (cortexa57_tunings): Likewise.
10775         (cortexa72_tunings): Likewise.
10776         (exynosm1_tunings): Likewise.
10777         (thunderx_tunings): Likewise.
10778         (xgene1_tunings): Likewise.
10779         (use_rsqrt_p): New argument for the mode and use new member from
10780         "tune_params".
10781         (aarch64_builtin_reciprocal): Devise mode from builtin.
10782         (aarch64_optab_supported_p): New argument for the mode.
10783         * doc/invoke.texi (-mlow-precision-recip-sqrt): Reword description.
10785 2016-06-13  Kelvin Nilsen  <kelvin@gcc.gnu.org>
10787         * config/rs6000/rs6000.h (RS6000_BTM_COMMON): Add the
10788         RS6000_BTM_MODULO flag into the set of flags that are considered
10789         to be part of the common configuration.
10791 2016-06-13  Kelvin Nilsen  <kelvin@gcc.gnu.org>
10793         * config/rs6000/altivec.h (vec_absd): New macro for vector absolute
10794         difference unsigned.
10795         (vec_absdb): New macro for vector absolute difference unsigned
10796         byte.
10797         (vec_absdh): New macro for vector absolute difference unsigned
10798         half-word.
10799         (vec_absdw): New macro for vector absolute difference unsigned word.
10800         * config/rs6000/altivec.md (UNSPEC_VADU): New value.
10801         (vadu<mode>3): New insn.
10802         (*p9_vadu<mode>3): New insn.
10803         * config/rs6000/rs6000-builtin.def (vadub): New built-in
10804         definition.
10805         (vaduh): New built-in definition.
10806         (vaduw): New built-in definition.
10807         (vadu): New overloaded built-in definition.
10808         (vadub): New overloaded built-in definition.
10809         (vaduh): New overloaded built-in definition.
10810         (vaduw): New overloaded built-in definition.
10811         * config/rs6000/rs6000-c.c (altivec_overloaded_builtins): Add
10812         overloaded vector absolute difference unsigned functions.
10813         * doc/extend.texi (PowerPC AltiVec Built-in Functions): Document
10814         the ISA 3.0 vector absolute difference unsigned built-in functions.
10816 2016-06-13  Eric Botcazou  <ebotcazou@adacore.com>
10818         * tree-ssa-sccvn.c (vn_reference_lookup_3): Use a uniform test and
10819         update shared_lookup_references only once after changing operands.
10821 2016-06-13  Thomas Schwinge  <thomas@codesourcery.com>
10823         PR middle-end/71373
10824         * tree-nested.c (convert_nonlocal_omp_clauses)
10825         (convert_local_omp_clauses): Document missing OMP_CLAUSE_*.
10827         * tree-cfg.c (edge_to_cases_cleanup): Fix CASE_CHAIN typo.
10828         * tree.def (CASE_LABEL_EXPR): Likewise.
10830 2016-06-13  Bernd Edlinger  <bernd.edlinger@hotmail.de>
10832         PR bootstrap/71481
10833         * input.c (test_builtins): Fix an assertion.
10835 2016-06-13  Uros Bizjak  <ubizjak@gmail.com>
10837         * config/i386/i386.md (paritydi2): Use ix86_expand_setcc.
10838         (paritysi2): Ditto.
10839         (isinfxf2): Ditto.
10840         (isinf<mode>2): Ditto.
10842 2016-06-13  Uros Bizjak  <ubizjak@gmail.com>
10844         * ggc-tests.c (test_finalization): Only test need_finalization_p
10845         for GCC_VERSION >= 4003.
10847 2016-06-13  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
10849         * config/s390/vecintrin.h: Fix file description in comment.
10851 2016-06-13  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
10853         * config/s390/s390-builtin-types.def: Change builtin type naming
10854         scheme to match builtin-types.def.
10856 2016-06-13  Marc Glisse  <marc.glisse@inria.fr>
10858         * fold-const.c (optimize_minmax_comparison): Remove.
10859         (fold_comparison): Remove call to the above.
10860         * match.pd (MIN (X, Y) == X, MIN (X, 5) == 0, MIN (X, C1) < C2):
10861         New transformations.
10863 2016-06-13  Alan Hayward  <alan.hayward@arm.com>
10865         PR tree-optimization/71416
10866         * tree-vect-loop.c (vectorizable_live_operation): Let worklist have
10867         multiple entries
10869 2016-06-13  Martin Liska  <mliska@suse.cz>
10871         * predict.c (enum predictor_reason): Prefix enum with REASON_.
10872         (combine_predictions_for_insn): Likewise.
10873         (prune_predictions_for_bb): Likewise.
10874         (combine_predictions_for_bb): Likewise.
10876 2016-06-13  Richard Biener  <rguenther@suse.de>
10878         PR tree-optimization/71505
10879         * tree-vect-data-refs.c (vect_analyze_data_ref_accesses): Make
10880         assert match comment.
10882 2016-06-13  Marek Polacek  <polacek@redhat.com>
10884         PR middle-end/71476
10885         * gimplify.c (maybe_warn_switch_unreachable): Factored out of
10886         gimplify_switch_expr.
10887         (warn_switch_unreachable_r): New function.
10889 2016-06-13  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
10891         PR target/71379
10892         * config/s390/s390.c (s390_expand_builtin): Increase MAX_ARGS by
10893         one.
10895 2016-06-13  Richard Biener  <rguenther@suse.de>
10897         PR middle-end/64516
10898         * fold-const.c (fold_unary_loc): Preserve alignment when
10899         folding a VIEW_CONVERT_EXPR into a MEM_REF.
10901 2016-06-13  Martin Liska  <mliska@suse.cz>
10903         PR sanitizer/71458
10904         * toplev.c (process_options): Do not enable -fcheck-pointer-bounds
10905         w/ -fsanitize=bounds.
10907 2016-06-12  Uros Bizjak  <ubizjak@gmail.com>
10909         * config/i386/i386.c (ix86_init_builtins): Calculate
10910         FLOAT128_FTYPE_CONST_STRING function type only once.
10911         * doc/extend.texi (x86 Built-in Functions): Update text, __float128
10912         built-in functions are available for x86-32 and x86-64 targets.
10914 2016-06-12  Uros Bizjak  <ubizjak@gmail.com>
10916         PR target/71241
10917         * config/i386/i386.i386-builtin-types.def (CONST_STRING):
10918         New primitive type.
10919         (FLOAT128_FTYPE_CONST_STRING): New function type.
10920         * config/i386/i386.c (enum ix86_builtins) [IX86_BUILTIN_NANQ]: New.
10921         [IX86_BUILTIN_NANSQ]: Ditto.
10922         (ix86_fold_builtin): Handle IX86_BUILTIN_NANQ and IX86_BUILTIN_NANSQ.
10923         (ix86_init_builtin_types): Declare const_string_type_node.
10924         (ix86_init_builtins): Add __builtin_nanq and __builtin_nansq
10925         builtin functions.
10926         (ix86_expand_builtin): Handle IX86_BUILTIN_NANQ and IX86_BUILTIN_NANSQ.
10927         * doc/extend.texi (x86 Built-in Functions): Document
10928         __builtin_nanq and __builtin_nansq.
10930 2016-06-11  Jiong Wang  <jiong.wang@arm.com>
10932         PR target/71061
10933         * config/arm/arm-protos.h (arm_attr_length_pop_multi): New declaration.
10934         * config/arm/arm.c (arm_attr_length_pop_multi): New function to return
10935         length for pop patterns.
10936         (arm_attr_length_push_multi): Update comments.
10937         * config/arm/arm.md (*load_multiple_with_writeback): Set "length"
10938         attribute.
10939         (*pop_multiple_with_writeback_and_return): Likewise.
10940         (*pop_multiple_with_return): Likewise.
10942 2016-06-11  Segher Boessenkool  <segher@kernel.crashing.org>
10944         PR middle-end/71310
10945         * fold-const.c (optimize_bit_field_compare): Don't try to use
10946         word_mode unconditionally for reading the bit field, look at
10947         DECL_BIT_FIELD_REPRESENTATIVE instead.
10949 2016-06-11  Kugan Vivekanandarajah  <kuganv@linaro.org>
10951         PR middle-end/71478
10952         * tree-ssa-reassoc.c (reassociate_bb): Remove (-1) from ops list for
10953         vector integer type.
10955 2016-06-10  Jakub Jelinek  <jakub@redhat.com>
10957         PR middle-end/71494
10958         * tree-nested.c (convert_nonlocal_reference_stmt): For GIMPLE_GOTO
10959         without LABEL_DECL, set *handled_ops_p to false instead of true.
10961 2016-06-10  Martin Sebor  <msebor@redhat.com>
10963         PR c/71392
10964         * builtin-attrs.def (ATTR_NOTHROW_NONNULL_LEAF_LIST): New macro.
10965         (ATTR_NOTHROW_NONNULL_TYPEGENERIC_LEAF): Same.
10966         * builtins.def (BUILT_IN_SADD_OVERFLOW, BUILT_IN_SADDL_OVERFLOW): Use
10967         them.
10968         (BUILT_IN_SADDLL_OVERFLOW, BUILT_IN_SSUB_OVERFLOW): Same.
10969         (BUILT_IN_SSUBL_OVERFLOW, BUILT_IN_SSUBLL_OVERFLOW): Same.
10970         (BUILT_IN_SMUL_OVERFLOW, BUILT_IN_SMULL_OVERFLOW): Same.
10971         (BUILT_IN_SMULLL_OVERFLOW, BUILT_IN_UADD_OVERFLOW): Same.
10972         (BUILT_IN_UADDL_OVERFLOW, BUILT_IN_UADDLL_OVERFLOW): Same.
10973         (BUILT_IN_USUB_OVERFLOW, BUILT_IN_USUBL_OVERFLOW): Same.
10974         (BUILT_IN_USUBLL_OVERFLOW, BUILT_IN_UMUL_OVERFLOW): Same.
10975         (BUILT_IN_UMULL_OVERFLOW, BUILT_IN_UMULLL_OVERFLOW): Same.
10977 2016-06-10  Bernd Edlinger  <bernd.edlinger@hotmail.de>
10979         * config/arm/arm.h (pool_vector_label,
10980         return_used_this_function): Remove.
10982 2016-06-10  Jeff Law  <law@redhat.com>
10984         PR tree-optimization/71335
10985         * tree-ssa-threadbackward.c (profitable_jump_thread_path): Filter out
10986         zero length paths here.
10987         (convert_and_register_jump_thread_path): Remove hacks related to
10988         duplicated blocks in the jump thread path.
10989         (fsm_find_control_statement_thread_paths): Avoid putting the same
10990         block on the thread path twice, but ensure the thread path is
10991         unchanged from the caller's point of view.
10993 2016-06-10  Jan Hubicka  <hubicka@ucw.cz>
10995         * predict.c (predict_loops): Remove PRED_LOOP_BRANCH.
10996         * predict.def (PRED_LOOP_BRANCH): Remove.
10998 2016-06-10  David Malcolm  <dmalcolm@redhat.com>
11000         * Makefile.in (OBJS): Add ggc-tests.o.
11001         (GTFILES): Add ggc-tests.c.
11002         * ggc-tests.c: New file.
11003         * selftest-run-tests.c (selftest::run_tests): Call
11004         selftest::ggc_tests_c_tests.
11005         * selftest.h (selftest::ggc_tests_c_tests): New prototype.
11007 2016-06-10  Alexander Monakov  <amonakov@ispras.ru>
11009         * match.pd (-1 / B < A): Use :c to avoid pattern duplication.
11011 2016-06-10  Maxim Ostapenko  <m.ostapenko@samsung.com>
11013         PR sanitizer/71480
11014         * varasm.c (place_block_symbol): Adjust alignment for asan protected
11015         STRING_CSTs even if TREE_CONSTANT_POOL_ADDRESS_P.
11017 2016-06-10  Jan Hubicka  <hubicka@ucw.cz>
11019         * profile.c: Include cfgloop.h.
11020         (branch_prob): Compute estimated number of iterations.
11021         * tree-ssa-loop-niter.c (estimate_numbers_of_iterations_loop): Do not
11022         recompute estimate number of iterations from profile.
11024 2016-06-10  Bernd Edlinger  <bernd.edlinger@hotmail.de>
11026         PR inline-asm/68843
11027         * reg-stack.c (check_asm_stack_operands): Explicit input arguments
11028         must be grouped on top of stack.  Don't force early clobber
11029         on ordinary reg outputs.
11031 2016-06-10  Richard Biener  <rguenther@suse.de>
11033         * targhooks.c (default_builtin_vectorization_cost): Adjust
11034         vec_construct cost.
11036 2016-06-10  Richard Biener  <rguenther@suse.de>
11038         * gimple-fold.c (gimple_fold_builtin_memory_op): Make sure
11039         to fold the RHS to a constant if possible.
11041 2016-06-10  Thomas Schwinge  <thomas@codesourcery.com>
11043         PR middle-end/71373
11044         * tree-nested.c (convert_nonlocal_omp_clauses)
11045         (convert_local_omp_clauses): Handle OMP_CLAUSE_ASYNC,
11046         OMP_CLAUSE_WAIT, OMP_CLAUSE_INDEPENDENT, OMP_CLAUSE_AUTO,
11047         OMP_CLAUSE__CACHE_, OMP_CLAUSE_TILE.
11049         * gimplify.c (gimplify_adjust_omp_clauses): Discard
11050         OMP_CLAUSE_TILE.
11051         * omp-low.c (scan_sharing_clauses): Don't expect OMP_CLAUSE_TILE.
11053         * omp-low.c (scan_sharing_clauses): Don't expect
11054         OMP_CLAUSE__CACHE_.
11056 2016-06-10  Alan Hayward  <alan.hayward@arm.com>
11058         PR tree-optimization/71407
11059         PR tree-optimization/71416
11060         * tree-vect-loop.c (vectorizable_live_operation): Use vectype for
11061         BIT_FIELD_REF type.
11063 2016-06-10  Richard Biener  <rguenther@suse.de>
11065         PR middle-end/71477
11066         * cfgloop.c (alloc_loop): Initialize nb_iterations_likely_upper_bound.
11068 2016-06-09  Eric Botcazou  <ebotcazou@adacore.com>
11070         * df-problems.c (df_note_bb_compute): Guard use of DF_INSN_INFO_GET.
11072 2016-06-09  Vladimir Makarov  <vmakarov@redhat.com>
11073             Jiong Wang  <jiong.wang@arm.com>
11075         PR rtl-optimization/70751
11076         * lra-constraints.c (process_alt_operands): Recognize Non-pseudo
11077         spilled into memory.
11079 2016-06-09  Jonathan Yong  <10walls@gmail.com>
11081         Revert:
11082         2015-09-21  Jonathan Yong  <10walls@gmail.com>
11084         * config/i386/cygwin.h (STARTFILE_SPEC): Explicitly search
11085         sysroot/usr/lib/32api for additional win32 libraries,
11086         fixes failing Cygwin bootstrapping.
11088 2016-06-09  Marcin Baczyński  <marbacz@gmail.com>
11090         * diagnostic.h (diagnostic_line_cutoff, diagnostic_flush_buffer):
11091         Delete.
11093 2016-06-09  David Malcolm  <dmalcolm@redhat.com>
11095         PR bootstrap/71471
11096         * pretty-print.c (pp_indent): Specify that %p is printed in a
11097         host-dependent manner.
11098         (test_pp_format): Remove the test for %p.
11100 2016-06-09  Maciej W. Rozycki  <macro@imgtec.com>
11102         * config/mips/mips.c (mips_output_jump): Fix formatting.
11104 2016-06-09  Richard Biener  <rguenther@suse.de>
11106         PR tree-optimization/71462
11107         * tree-ssa-loop-manip.c (find_uses_to_rename): Guard against
11108         removed blocks.
11110 2016-06-09  Martin Liska  <mliska@suse.cz>
11112         * predict.c (dump_prediction): Add new argument.
11113         (enum predictor_reason): New enum.
11114         (struct predictor_hash): New struct.
11115         (predictor_hash::hash): New function.
11116         (predictor_hash::equal): Likewise.
11117         (not_removed_prediction_p): New function.
11118         (prune_predictions_for_bb): Likewise.
11119         (combine_predictions_for_bb): Prune predictions.
11121 2016-06-09  Martin Liska  <mliska@suse.cz>
11123         * predict.c (filter_predictions): New function.
11124         (remove_predictions_associated_with_edge): Use the filter
11125         function.
11126         (equal_edge_p): New function.
11128 2016-06-09  Stefan Bruens  <stefan.bruens@rwth-aachen.de>
11130         * doc/invoke.texi (ARM Options): Use lexicographical ordering.
11131         Correct usage of @samp vs @option, add @samp where appropriate.
11132         Add -march={armv6k,armv6z,arm6zk}, remove -march=ep9312.
11133         Add armv6s-m and document it, as it is no official ARM name.
11135 2016-06-09  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
11137         * ifcvt.c (struct noce_if_info): Add transform_name field.
11138         (noce_try_move): Set if_info->transform_name to the function name.
11139         (noce_try_ifelse_collapse): Likewise.
11140         (noce_try_store_flag): Likewise.
11141         (noce_try_inverse_constants): Likewise.
11142         (noce_try_store_flag_constants): Likewise.
11143         (noce_try_addcc): Likewise.
11144         (noce_try_store_flag_mask): Likewise.
11145         (noce_try_cmove): Likewise.
11146         (noce_try_cmove_arith): Likewise.
11147         (noce_try_minmax): Likewise.
11148         (noce_try_abs): Likewise.
11149         (noce_try_sign_mask): Likewise.
11150         (noce_try_bitop): Likewise.
11151         (noce_convert_multiple_sets): Likewise.
11152         (noce_process_if_block): Print if_info->transform_name to
11153         dump_file if transformation succeeded.
11155 2016-06-09  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
11157         * config/arm/cortex-a57.md (cortex_a57_alu):
11158         Handle csel type.
11160 2016-06-08  Martin Sebor  <msebor@redhat.com>
11161             Jakub Jelinek  <jakub@redhat.com>
11163         PR c++/70507
11164         PR c/68120
11165         * builtins.def (BUILT_IN_ADD_OVERFLOW_P, BUILT_IN_SUB_OVERFLOW_P,
11166         BUILT_IN_MUL_OVERFLOW_P): New builtins.
11167         * builtins.c: Include gimple-fold.h.
11168         (fold_builtin_arith_overflow): Handle
11169         BUILT_IN_{ADD,SUB,MUL}_OVERFLOW_P.
11170         (fold_builtin_3): Likewise.
11171         * doc/extend.texi (Integer Overflow Builtins): Document
11172         __builtin_{add,sub,mul}_overflow_p.
11174 2016-06-08  Jose E. Marchesi  <jose.marchesi@oracle.com>
11176         * config/sparc/driver-sparc.c (cpu_names): Fix the entry for the
11177         SPARC-M7 and add an entry for SPARC-S7 cpus (Sonoma).
11179 2016-06-08  Alan Lawrence  <alan.lawrence@arm.com>
11181         * config/aarch64/aarch64.c (aarch64_function_arg_alignment):
11182         Rewrite, looking one level down for records and arrays.
11184 2016-06-08  David Malcolm  <dmalcolm@redhat.com>
11186         * pretty-print.c: Include "selftest.h".
11187         (pp_format): Fix comment.
11188         (identifier_to_locale): Likewise.
11189         (selftest::test_basic_printing): New function.
11190         (selftest::assert_pp_format): New function.
11191         (selftest::test_pp_format): New function.
11192         (selftest::pretty_print_c_tests): New function.
11193         * selftest-run-tests.c (selftest::run_tests): Call
11194         selftest::pretty_print_c_tests.
11195         * selftest.h (pretty_print_c_tests): New declaration.
11197 2016-06-07  Jan Hubicka  <hubicka@ucw.cz>
11199         * invoke.texi (max-loop-headers-insns): Document.
11200         * params.def (PARAM_MAX_LOOP_HEADER_INSNS): New.
11201         * tree-ssa-loop-ch.c (should_duplicate_loop_header_p): Update comment.
11202         (ch_base::copy_headers): Use PARAM_MAX_LOOP_HEADER_INSNS.
11204 2016-06-08  Richard Biener  <rguenther@suse.de>
11206         * tree-vect-stmts.c (vectorizable_load): Remove restrictions
11207         on strided SLP loads and fall back to scalar loads in case
11208         we can't chunk them.
11210 2016-06-08  Richard Biener  <rguenther@suse.de>
11212         PR tree-optimization/71452
11213         * tree-ssa.c (non_rewritable_lvalue_p): Make sure that the
11214         type used for the SSA rewrite has enough precision to cover
11215         the dynamic type of the location.
11217 2016-06-08  Jakub Jelinek  <jakub@redhat.com>
11218             Richard Biener  <rguenther@suse.de>
11220         PR c++/71448
11221         * fold-const.c (fold_comparison): Handle CONSTANT_CLASS_P (base0)
11222         the same as DECL_P (base0) for indirect_base0.  Use equality_code
11223         in one further place.
11225 2016-06-08  Richard Sandiford  <richard.sandiford@arm.com>
11227         * expmed.c (store_bit_field_1): Do not restrict a multiword op0
11228         to one word if the field is known to overlap other words.
11229         (extract_bit_field_1): Likewise.
11230         (store_split_bit_field): Remove compensating code.
11231         (extract_split_bit_field): Likewise.
11233 2016-06-08  Bernd Schmidt  <bschmidt@redhat.com>
11235         PR debug/71432
11236         PR ada/71413
11237         * tree-ssa-strlen.c (handle_builtin_memcmp): Ignore debug insns.
11239 2016-06-08  Jiong Wang  <jiong.wang@arm.com>
11241         * config/aarch64/aarch64-builtins.def (faddp): New builtins for modes in
11242         VDQF.
11243         * config/aarch64/aarch64-simd.md (aarch64_faddp<mode>): New.
11244         (arch64_addpv4sf): Delete.
11245         (reduc_plus_scal_v4sf): Use "gen_aarch64_faddpv4sf" instead of
11246         "gen_aarch64_addpv4sf".
11247         * config/aarch64/arm_neon.h (vpadd_f32): Remove inline assembly.  Use
11248         builtin.
11249         (vpadds_f32): Likewise.
11250         (vpaddq_f32): Likewise.
11251         (vpaddq_f64): Likewise.
11253 2016-06-08  Jiong Wang  <jiong.wang@arm.com>
11255         * config/aarch64/aarch64-builtins.def (fabd): New builtins for modes
11256         VALLF.
11257         * config/aarch64/aarch64-simd.md (fabd<mode>_3): Extend modes from VDQF
11258         to VALLF.  Rename to "fabd<mode>3".
11259         "*fabd_scalar<mode>3): Delete.
11260         * config/aarch64/arm_neon.h (vabds_f32): Remove inline assembly.
11261         Use builtin.
11262         (vabdd_f64): Likewise.
11263         (vabd_f32): Likewise.
11264         (vabd_f64): Likewise.
11265         (vabdq_f32): Likewise.
11266         (vabdq_f64): Likewise.
11268 2016-06-08  Jiong Wang  <jiong.wang@arm.com>
11270         * config/aarch64/aarch64-builtins.def (rsqrts): New builtins for modes
11271         VALLF.
11272         * config/aarch64/aarch64-simd.md (aarch64_rsqrts_<mode>3): Rename to
11273         "aarch64_rsqrts<mode>".
11274         * config/aarch64/aarch64.c (get_rsqrts_type): Update gen* name.
11275         * config/aarch64/arm_neon.h (vrsqrtss_f32): Remove inline assembly.  Use
11276         builtin.
11277         (vrsqrtsd_f64): Likewise.
11278         (vrsqrts_f32): Likewise.
11279         (vrsqrts_f64): Likewise.
11280         (vrsqrtsq_f32): Likewise.
11281         (vrsqrtsq_f64): Likewise.
11283 2016-06-08  Jiong Wang  <jiong.wang@arm.com>
11285         * config/aarch64/aarch64-builtins.def (rsqrte): New builtins for modes
11286         VALLF.
11287         * config/aarch64/aarch64-simd.md (aarch64_rsqrte_<mode>2): Rename to
11288         "aarch64_rsqrte<mode>".
11289         * config/aarch64/aarch64.c (get_rsqrte_type): Update gen* name.
11290         * config/aarch64/arm_neon.h (vrsqrts_f32): Remove inline assembly.  Use
11291         builtin.
11292         (vrsqrted_f64): Likewise.
11293         (vrsqrte_f32): Likewise.
11294         (vrsqrte_f64): Likewise.
11295         (vrsqrteq_f32): Likewise.
11296         (vrsqrteq_f64): Likewise.
11298 2016-06-08  Jiong Wang  <jiong.wang@arm.com>
11300         * config/aarch64/aarch64-builtins.def (scvtf): Register vector modes.
11301         (ucvtf): Likewise.
11302         (fcvtzs): Likewise.
11303         (fcvtzu): Likewise.
11304         * config/aarch64/aarch64-simd.md
11305         (<FCVT_F2FIXED:fcvt_fixed_insn><VDQF:mode>3): New.
11306         (<FCVT_FIXED2F:fcvt_fixed_insn><VDQ_SDI:mode>3): Likewise.
11307         * config/aarch64/arm_neon.h (vcvt_n_f32_s32): Remove inline assembly.
11308         Use builtin.
11309         (vcvt_n_f32_u32): Likewise.
11310         (vcvt_n_s32_f32): Likewise.
11311         (vcvt_n_u32_f32): Likewise.
11312         (vcvtq_n_f32_s32): Likewise.
11313         (vcvtq_n_f32_u32): Likewise.
11314         (vcvtq_n_f64_s64): Likewise.
11315         (vcvtq_n_f64_u64): Likewise.
11316         (vcvtq_n_s32_f32): Likewise.
11317         (vcvtq_n_s64_f64): Likewise.
11318         (vcvtq_n_u32_f32): Likewise.
11319         (vcvtq_n_u64_f64): Likewise.
11320         * config/aarch64/iterators.md (VDQ_SDI): New mode iterator.
11321         (VSDQ_SDI): Likewise.
11322         (fcvt_target): Support V4DI, V4SI and V2SI.
11323         (FCVT_TARGET): Likewise.
11325 2016-06-08  Jiong Wang  <jiong.wang@arm.com>
11327         * config/aarch64/aarch64-builtins.c (TYPES_BINOP_USS): New
11328         (TYPES_BINOP_SUS): Likewise.
11329         (aarch64_simd_builtin_data): Update include file name.
11330         (aarch64_builtins): Likewise.
11331         * config/aarch64/aarch64-simd-builtins.def (scvtf): New entries
11332         for conversion between scalar float-point and fixed-point.
11333         (ucvtf): Likewise.
11334         (fcvtzs): Likewise.
11335         (fcvtzu): Likewise.
11336         * config/aarch64/aarch64.md
11337         (<FCVT_F2FIXED:fcvt_fixed_insn><GPF:mode>3: New
11338         pattern for conversion between scalar float to fixed-pointer.
11339         (<FCVT_FIXED2F:fcvt_fixed_insn><GPI:mode>: Likewise.
11340         (UNSPEC_FCVTZS): New UNSPEC enumeration.
11341         (UNSPEC_FCVTZU): Likewise.
11342         (UNSPEC_SCVTF): Likewise.
11343         (UNSPEC_UCVTF): Likewise.
11344         * config/aarch64/arm_neon.h (vcvtd_n_f64_s64): Remove inline assembly.
11345         Use builtin.
11346         (vcvtd_n_f64_u64): Likewise.
11347         (vcvtd_n_s64_f64): Likewise.
11348         (vcvtd_n_u64_f64): Likewise.
11349         (vcvtd_n_f32_s32): Likewise.
11350         (vcvts_n_f32_u32): Likewise.
11351         (vcvtd_n_s32_f32): Likewise.
11352         (vcvts_n_u32_f32): Likewise.
11353         * config/aarch64/iterators.md (fcvt_target): Support integer to float
11354         mapping.
11355         (FCVT_TARGET): Likewise.
11356         (FCVT_FIXED2F): New iterator.
11357         (FCVT_F2FIXED): Likewise.
11358         (fcvt_fixed_insn): New define_int_attr.
11360 2016-06-07  Jan Hubicka  <hubicka@ucw.cz>
11362         * predict.c (pass_strip_predict_hints::execute): Cleanup CFG if
11363         some statements was removed.
11365 2016-06-08  Alan Hayward  <alan.hayward@arm.com>
11367         * tree-vect-data-refs.c (vect_analyze_data_refs): Remove debug newline.
11368         * tree-vect-loop-manip.c (slpeel_make_loop_iterate_ntimes): likewise.
11369         (vect_can_advance_ivs_p): likewise.
11370         (vect_update_ivs_after_vectorizer): likewise.
11371         * tree-vect-loop.c (vect_determine_vectorization_factor): likewise.
11372         (vect_analyze_scalar_cycles_1): likewise.
11373         (vect_analyze_loop_operations): likewise.
11374         (report_vect_op): likewise.
11375         (vect_is_slp_reduction): likewise.
11376         (vect_is_simple_reduction): likewise.
11377         (get_initial_def_for_induction): likewise.
11378         (vect_transform_loop): likewise.
11379         * tree-vect-patterns.c (vect_recog_dot_prod_pattern): likewise.
11380         (vect_recog_sad_pattern): likewise.
11381         (vect_recog_widen_sum_pattern): likewise.
11382         (vect_recog_widening_pattern): likewise.
11383         (vect_recog_divmod_pattern): likewise.
11384         * tree-vect-slp.c (vect-build-slp_tree_1): likewise.
11385         (vect_analyze_slp_instance): likewise.
11386         (vect_transform_slp_perm_load): likewise.
11387         (vect_schedule_slp_instance): likewise.
11389 2016-06-07  Jan Hubicka  <hubicka@ucw.cz>
11391         * predict.c (predict_iv_comparison): Mention that heuristics is broken.
11392         (return_prediction): PRED_CONST_RETURN predict return as not taken.
11393         * predict.def (PRED_CONTINUE): Change hitrate 50->67
11394         (PRED_LOOP_BRANCH): Document predictor as broken.
11395         (PRED_LOOP_EXIT): Change hitrate 91->92.
11396         (PRED_LOOP_EXTRA_EXIT): Change hitrate 91->83.
11397         (PRED_POINTER, PRED_TREE_POINTER): Change hitrate 85->70.
11398         (PRED_OPCODE_POSITIVE): Change hitrate 79->64.
11399         (PRED_OPCODE_NONEQUAL): Change hitrate 91->66.
11400         (PRED_TREE_OPCODE_POSITIVE): Change hitrate 73->64
11401         (PRED_TREE_OPCODE_NONEQUAL): Chnage hitrate 72->66
11402         (PRED_CALL): Chane hitrate 71->67.
11403         (PRED_TREE_EARLY_RETURN): Document issues, change hitrate 61->54.
11404         (PRED_GOTO): Document as unused right now.
11405         (PRED_CONST_RETURN): Change hitrate 67->69
11406         (PRED_NEGATIVE_RETURN): Change hitrate 96->98
11407         (PRED_NULL_RETURN): Change hitrate 91->90.
11408         (PRED_LOOP_IV_COMPARE_GUESS): Change hitrate to 98.
11409         (PRED_FORTRAN_FAIL_ALLOC): Change hitrate to 62; document issues.
11410         (PRED_FORTRAN_SIZE_ZERO): Change hitrate to 99.
11412 2016-06-07  Bill Seurer  <seurer@linux.vnet.ibm.com>
11414         * config/rs6000/altivec.h: Add __builtin_vec_mul.
11415         * config/rs6000/rs6000-builtin.def (vec_mul): Change vec_mul to a
11416         special case Altivec builtin.
11417         * config/rs6000/rs6000-c.c (altivec_overloaded_builtins): Remove
11418         VSX_BUILTIN_VEC_MUL (replaced with special case code).
11419         * config/rs6000/rs6000-c.c (altivec_resolve_overloaded_builtin): Add
11420         code for ALTIVEC_BUILTIN_VEC_MUL.
11421         * config/rs6000/rs6000.c (altivec_init_builtins): Add definition
11422         for __builtin_vec_mul.
11424 2016-06-07  Peter Bergner  <bergner@vnet.ibm.com>
11426         * doc/invoke.texi (RS/6000 and PowerPC Options): Document -mhtm and
11427         -mno-htm.
11429 2016-06-07  David Malcolm  <dmalcolm@redhat.com>
11431         * spellcheck.c (selftest::test_find_closest_string): New function.
11432         (spellcheck_c_tests): Call the above.
11434 2016-06-07  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
11436         * simplify-rtx.c (simplify_cond_clz_ctz): Delete 'mode' local variable.
11438 2016-06-07  Jakub Jelinek  <jakub@redhat.com>
11440         * config/i386/sse.md (avx_vec_concat<mode>): Add v=v,vm and
11441         Yv=Yv,C alternatives.
11443 2016-06-07  Richard Biener  <rguenther@suse.de>
11445         PR c/61564
11446         * common.opt (ffast-math): Make Optimization.
11448 2016-06-07  Simon Dardis  <simon.dardis@imgtec.com>
11449             Prachi Godbole  <prachi.godbole@imgtec.com>
11451         * config/mips/p5600.md (p5600_fpu_fadd): Remove checking for
11452         `fabs' and `fneg' type attributes.
11453         (p5600_fpu_fabs): Add `fmove' to the comment.
11455 2016-06-07  Jan Hubicka  <hubicka@ucw.cz>
11457         * gimple.c: Include builtins.h
11458         (gimple_inexpensive_call_p): New function.
11459         * gimple.h (gimple_inexpensive_call_p): Declare.
11460         * tree-ssa-loop-ch.c (should_duplicate_loop_header_p): Use it.
11461         * tree-ssa-loop-ivcanon.c (tree_estimate_loop_size): Likewise;
11462         fix formatting.
11464 2016-06-07  Paolo Carlini  <paolo.carlini@oracle.com>
11466         * diagnostic.c (diagnostic_impl, diagnostic_n_impl): New.
11467         (inform, inform_at_rich_loc, inform_n, warning, warning_at,
11468         warning_at_rich_loc, warning_n, pedwarn, permerror,
11469         permerror_at_rich_loc, error, error_n, error_at, error_at_rich_loc,
11470         sorry, fatal_error, internal_error, internal_error_no_backtrace):
11471         Use the above.
11473 2016-06-07  Richard Biener  <rguenther@suse.de>
11475         PR tree-optimization/71428
11476         * tree-ssa-math-opts.c (perform_symbolic_merge): Properly distinguish
11477         BIT_FIELD_REF op vs. load.
11479 2016-06-07  Richard Biener  <rguenther@suse.de>
11481         PR middle-end/71423
11482         * match.pd ((X | ~Y) -> Y <= X): Properly invert the comparison
11483         for signed ops.
11485 2016-06-06  John David Anglin  <danglin@gcc.gnu.org>
11487         * config/pa/pa.md (call): Generate indirect long calls to non-local
11488         functions on TARGET_64BIT.
11489         (call_value): Likewise.
11491 2016-06-06  John David Anglin  <danglin@gcc.gnu.org>
11493         * config/pa/pa.md (call_val_reg_64bit): Remove "reg: DI " clobber from
11494         pattern and subsequent splitters.
11495         (call_val_reg_64bit_post_reload): Likewise.
11497 2016-06-07  Kugan Vivekanandarajah  <kuganv@linaro.org>
11499         PR middle-end/71408
11500         * tree-ssa-reassoc.c (zero_one_operation): Fix NEGATE_EXPR operand for
11501         propagate_op_to_single_use.
11503 2016-06-07  Kugan Vivekanandarajah  <kuganv@linaro.org>
11505         PR middle-end/71281
11506         * tree-ssa-reassoc.c (reassociate_bb): Set uid for negate stmt.
11508 2016-06-07  Uros Bizjak  <ubizjak@gmail.com>
11510         * config/i386/i386.h (enum ix86_enitity): Add X86_DIRFLAG.
11511         (enum x86_dirflag_state): New enum.
11512         (NUM_MODES_FOR_MODE_SWITCHING): Add X86_DIRFLAG_ANY.
11513         (machine_function): Remove needs_cld.
11514         (ix86_current_function_needs_cld): Remove.
11515         * config/i386/i386.c (ix86_set_func_type): Set
11516         ix86_optimize_mode_switching[X86_DIRFLAG] to 1.
11517         (ix86_expand_prologue): Do not emit CLD here.
11518         (ix86_dirflag_mode_needed): New function.
11519         (ix86_dirflag_mode_entry): Ditto.
11520         (ix86_mode_needed): Handle X86_DIRFLAG entity.
11521         (ix86_mode_after): Ditto.
11522         (ix86_mode_entry): Ditto.
11523         (ix86_mode_exit): Ditto.
11524         (ix86_emit_mode_set): Ditto.
11525         * config/i386/i386.md (strmov_singleop): Set
11526         ix86_optimize_mode_switching[X86_DIRFLAG] to 1 for TARGET_CLD.
11527         Do not set ix86_current_function_needs_cld.
11528         (rep_mov): Ditto.
11529         (strset_singleop): Ditto.
11530         (rep_stos): Ditto.
11531         (cmpstrnqi_nz_1): Ditto.
11532         (cmpstrnqi_1): Ditto.
11533         (strlenqi_1): Ditto.
11535 2016-06-06  Jakub Jelinek  <jakub@redhat.com>
11537         PR tree-optimization/71259
11538         * tree-vect-slp.c (vect_get_constant_vectors): For
11539         VECTOR_BOOLEAN_TYPE_P, return all ones constant instead of
11540         one for constant op, and use COND_EXPR for non-constant.
11542 2016-06-06  David Malcolm  <dmalcolm@redhat.com>
11544         * Makefile.in (OBJS): Add function-tests.o,
11545         hash-map-tests.o, hash-set-tests.o, rtl-tests.o,
11546         selftest-run-tests.o.
11547         (OBJS-libcommon): Add selftest.o.
11548         (OBJS-libcommon-target): Add selftest.o.
11549         (all.internal): Add "selftest".
11550         (all.cross): Likewise.
11551         (selftest): New phony target.
11552         (s-selftest): New target.
11553         (selftest-gdb): New phony target.
11554         (COLLECT2_OBJS): Add selftest.o.
11555         * bitmap.c: Include "selftest.h".
11556         (selftest::test_gc_alloc): New function.
11557         (selftest::test_set_range): New function.
11558         (selftest::test_clear_bit_in_middle): New function.
11559         (selftest::test_copying): New function.
11560         (selftest::test_bitmap_single_bit_set_p): New function.
11561         (selftest::bitmap_c_tests): New function.
11562         * common.opt (fself-test): New.
11563         * diagnostic-show-locus.c: Include "selftest.h".
11564         (make_range): New function.
11565         (test_range_contains_point_for_single_point): New function.
11566         (test_range_contains_point_for_single_line): New function.
11567         (test_range_contains_point_for_multiple_lines): New function.
11568         (assert_eq): New function.
11569         (test_get_line_width_without_trailing_whitespace): New function.
11570         (selftest::diagnostic_show_locus_c_tests): New function.
11571         * et-forest.c: Include "selftest.h".
11572         (selftest::test_single_node): New function.
11573         (selftest::test_simple_tree): New function.
11574         (selftest::test_disconnected_nodes): New function.
11575         (selftest::et_forest_c_tests): New function.
11576         * fold-const.c: Include "selftest.h".
11577         (selftest::assert_binop_folds_to_const): New function.
11578         (selftest::assert_binop_folds_to_nonlvalue): New function.
11579         (selftest::test_arithmetic_folding): New function.
11580         (selftest::fold_const_c_tests): New function.
11581         * function-tests.c: New file.
11582         * gimple.c: Include "selftest.h".
11583         Include "gimple-pretty-print.h".
11584         (selftest::verify_gimple_pp): New function.
11585         (selftest::test_assign_single): New function.
11586         (selftest::test_assign_binop): New function.
11587         (selftest::test_nop_stmt): New function.
11588         (selftest::test_return_stmt): New function.
11589         (selftest::test_return_without_value): New function.
11590         (selftest::gimple_c_tests): New function.
11591         * hash-map-tests.c: New file.
11592         * hash-set-tests.c: New file.
11593         * input.c: Include "selftest.h".
11594         (selftest::assert_loceq): New function.
11595         (selftest::test_accessing_ordinary_linemaps): New function.
11596         (selftest::test_unknown_location): New function.
11597         (selftest::test_builtins): New function.
11598         (selftest::test_reading_source_line): New function.
11599         (selftest::input_c_tests): New function.
11600         * rtl-tests.c: New file.
11601         * selftest-run-tests.c: New file.
11602         * selftest.c: New file.
11603         * selftest.h: New file.
11604         * spellcheck.c: Include "selftest.h".
11605         (selftest::levenshtein_distance_unit_test_oneway): New function,
11606         adapted from testsuite/gcc.dg/plugin/levenshtein_plugin.c.
11607         (selftest::levenshtein_distance_unit_test): Likewise.
11608         (selftest::spellcheck_c_tests): Likewise.
11609         * toplev.c: Include selftest.h.
11610         (toplev::run_self_tests): New.
11611         (toplev::main): Handle -fself-test.
11612         * toplev.h (toplev::run_self_tests): New.
11613         * tree.c: Include "selftest.h".
11614         (selftest::test_integer_constants): New function.
11615         (selftest::test_identifiers): New function.
11616         (selftest::test_labels): New function.
11617         (selftest::tree_c_tests): New function.
11618         * tree-cfg.c: Include "selftest.h".
11619         (selftest::push_fndecl): New function.
11620         (selftest::test_linear_chain): New function.
11621         (selftest::test_diamond): New function.
11622         (selftest::test_fully_connected): New function.
11623         (selftest::tree_cfg_c_tests): New function.
11624         * vec.c: Include "selftest.h".
11625         (selftest::safe_push_range): New function.
11626         (selftest::test_quick_push): New function.
11627         (selftest::test_safe_push): New function.
11628         (selftest::test_truncate): New function.
11629         (selftest::test_safe_grow_cleared): New function.
11630         (selftest::test_pop): New function.
11631         (selftest::test_safe_insert): New function.
11632         (selftest::test_ordered_remove): New function.
11633         (selftest::test_unordered_remove): New function.
11634         (selftest::test_block_remove): New function.
11635         (selftest::reverse_cmp): New function.
11636         (selftest::test_qsort): New function.
11637         (selftest::vec_c_tests): New function.c.
11638         * wide-int.cc: Include selftest.h and wide-int-print.h.
11639         (selftest::from_int <wide_int>): New function.
11640         (selftest::from_int <offset_int>): New function.
11641         (selftest::from_int <widest_int>): New function.
11642         (selftest::assert_deceq): New function.
11643         (selftest::assert_hexeq): New function.
11644         (selftest::test_printing <VALUE_TYPE>): New function template.
11645         (selftest::test_ops <VALUE_TYPE>): New function template.
11646         (selftest::test_comparisons <VALUE_TYPE>): New function template.
11647         (selftest::run_all_wide_int_tests <VALUE_TYPE>): New function
11648         template.
11649         (selftest::wide_int_cc_tests): New function.
11651 2016-06-06  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
11653         PR middle-end/37780
11654         * ifcvt.c (noce_try_ifelse_collapse): New function.
11655         Declare prototype.
11656         (noce_process_if_block): Call noce_try_ifelse_collapse.
11657         * simplify-rtx.c (simplify_cond_clz_ctz): New function.
11658         (simplify_ternary_operation): Use the above to simplify
11659         conditional CLZ/CTZ expressions.
11661 2016-06-06  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
11663         PR middle-end/37780
11664         * config/aarch64/aarch64.md (ctz<mode>2): Convert to
11665         define_insn_and_split.
11667 2016-06-06  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
11669         PR middle-end/37780
11670         * config/arm/arm.md (ctzsi2): Convert to define_insn_and_split.
11672 2016-06-06  Bernd Edlinger  <bernd.edlinger@hotmail.de>
11674         PR c/24414
11675         * cfgexpand.c (expand_asm_loc): Remove handling for ADDR_EXPR.
11676         Implicitly clobber memory for basic asm with non-empty assembler
11677         string.  Use targetm.md_asm_adjust also here.
11678         * compare-elim.c (arithmetic_flags_clobber_p): Use asm_noperands here.
11679         * final.c (final_scan_insn): Handle basic asm in PARALLEL block.
11680         * gimple.c (gimple_asm_clobbers_memory_p): Handle basic asm with
11681         non-empty assembler string.
11682         * ira.c (compute_regs_asm_clobbered): Use asm_noperands here.
11683         * recog.c (asm_noperands): Handle basic asm in PARALLEL block.
11684         (decode_asm_operands): Handle basic asm in PARALLEL block.
11685         (extract_insn): Handle basic asm in PARALLEL block.
11686         * doc/extend.texi: Mention new behavior of basic asm.
11687         * config/ia64/ia64 (rtx_needs_barrier): Handle ASM_INPUT here.
11688         * config/pa/pa.c (branch_to_delay_slot_p, branch_needs_nop_p,
11689         branch_needs_nop_p): Use asm_noperands.
11691 2016-06-06  Jose E. Marchesi  <jose.marchesi@oracle.com>
11693         * config/sparc/sparc.md (cpu): Add niagara7 cpu type.
11694         Include the M7 SPARC DFA scheduler.
11695         New attribute v3pipe.
11696         Annotate insns with v3pipe where appropriate.
11697         Define cpu_feature vis4.
11698         Add lzd instruction type and set it on clzdi_sp64 and clzsi_sp64.
11699         Add (V8QI "8") to vbits.
11700         Add insns {add,sub}v8qi3
11701         Add insns ss{add,sub}v8qi3
11702         Add insns us{add,sub}{v8qi,v4hi}3
11703         Add insns {min,max}{v8qi,v4hi,v2si}3
11704         Add insns {minu,maxu}{v8qi,v4hi,v2si}3
11705         Add insns fpcmp{le,gt,ule,ug,ule,ugt}{8,16,32}_vis.
11706         * config/sparc/niagara4.md: Add a comment explaining the
11707         discrepancy between the documented latenty numbers and the
11708         implemented ones.
11709         * config/sparc/niagara7.md: New file.
11710         * configure.ac (HAVE_AS_SPARC5_VIS4): Define if the assembler
11711         supports SPARC5 and VIS 4.0 instructions.
11712         * configure: Regenerate.
11713         * config.in: Likewise.
11714         * config.gcc: niagara7 is a supported cpu in sparc*-*-* targets.
11715         * config/sparc/sol2.h (ASM_CPU32_DEFAUILT_SPEC): Set for
11716         TARGET_CPU_niagara7.
11717         (ASM_CPU64_DEFAULT_SPEC): Likewise.
11718         (CPP_CPU_SPEC): Handle niagara7.
11719         (ASM_CPU_SPEC): Likewise.
11720         * config/sparc/sparc-opts.h (processor_type): Add
11721         PROCESSOR_NIAGARA7.
11722         (mvis4): New option.
11723         * config/sparc/sparc.h (TARGET_CPU_niagara7): Define.
11724         (AS_NIAGARA7_FLAG): Define.
11725         (ASM_CPU64_DEFAULT_SPEC): Set for niagara7.
11726         (CPP_CPU64_DEFAULT_SPEC): Likewise.
11727         (CPP_CPU_SPEC): Handle niagara7.
11728         (ASM_CPU_SPEC): Likewise.
11729         * config/sparc/sparc.c (niagara7_costs): Define.
11730         (sparc_option_override): Handle niagara7 and adjust cache-related
11731         parameters with better values for niagara cpus.  Also support VIS4.
11732         (sparc32_initialize_trampoline): Likewise.
11733         (sparc_use_sched_lookahead): Likewise.
11734         (sparc_issue_rate): Likewise.
11735         (sparc_register_move_cost): Likewise.
11736         (dump_target_flag_bits): Support VIS4.
11737         (sparc_vis_init_builtins): Likewise.
11738         (sparc_builtins): Likewise.
11739         * config/sparc/sparc-c.c (sparc_target_macros): Define __VIS__ for
11740         VIS4 4.0.
11741         * config/sparc/driver-sparc.c (cpu_names): Add SPARC-M7 and
11742         UltraSparc M7.
11743         * config/sparc/sparc.opt (sparc_processor_type): New value
11744         niagara7.
11745         * config/sparc/visintrin.h (__attribute__): Prototypes for the
11746         VIS4 builtins.
11747         * doc/invoke.texi (SPARC Options): Document -mcpu=niagara7 and
11748         -mvis4.
11749         * doc/extend.texi (SPARC VIS Built-in Functions): Document the
11750         VIS4 builtins.
11752 2016-06-06  Jonathan Wakely  <jwakely@redhat.com>
11754         * doc/sourcebuild.texi (Directives): Remove extra closing braces.
11756 2016-06-06  Richard Biener  <rguenther@suse.de>
11758         PR tree-optimization/71398
11759         * tree-ssa-loop-ivcanon.c (unloop_loops): First unloop, then
11760         remove edges.
11762 2016-06-05  James Bowman  <james.bowman@ftdichip.com>
11764         * config/ft32/ft32.c (ft32_setup_incoming_varargs,
11765         ft32_expand_prolog, ft32_expand_epilogue):
11766         Handle pretend_args.
11767         * config/ft32/ft32.h: Remove OUTGOING_REG_PARM_STACK_SPACE.
11768         * config/ft32/ft32.md: Add pretend_returner.
11770 2016-06-06  Uros Bizjak  <ubizjak@gmail.com>
11772         PR target/71389
11773         * config/i386/i386.c (ix86_avx256_split_vector_move_misalign):
11774         Copy op1 RTX to avoid invalid sharing.
11775         (ix86_expand_vector_move_misalign): Ditto.
11777 2016-06-05  John David Anglin  <danglin@gcc.gnu.org>
11779         * expr.c (move_by_pieces_d::generate): Mark mode parameter with
11780         ATTRIBUTE_UNUSED.
11782 2016-06-05  Jan Hubicka  <hubicka@ucw.cz>
11784         * predict.c (predicted_by_loop_heuristics_p): New function.
11785         (predict_iv_comparison): Use it.
11786         (predict_loops): Walk from innermost loops; do not predict edges
11787         leaving multiple loops multiple times; implement
11788         PRED_LOOP_ITERATIONS_MAX heuristics.
11789         * predict.def (PRED_LOOP_ITERATIONS_MAX): New predictor.
11791 2016-06-05  Jan Hubicka  <hubicka@ucw.cz>
11793         * cfg.c (check_bb_profile): Do not report mismatched profiles when
11794         only edges out of BB are EH edges.
11796 2016-06-04  Martin Sebor  <msebor@redhat.com>
11797             Marcin Baczyński  <marbacz@gmail.com>
11799         PR c/48116
11800         * doc/invoke.texi (-Wreturn-type): Mention not warning on return with
11801         a void expression in a void function.
11803 2016-06-03  Jan Hubicka  <hubicka@ucw.cz>
11805         * tree-ssa-loop-ch.c (should_duplicate_loop_header_p): Do not check
11806         aux; dump reasons of decisions.
11807         (should_duplicate_loop_header_p): Likewise.
11808         (do_while_loop_p): Likewise.
11809         (ch_base::copy_headers): Dump asi num insns duplicated.
11811 2016-06-04  Jakub Jelinek  <jakub@redhat.com>
11813         PR tree-optimization/71405
11814         * tree-ssa.c (execute_update_addresses_taken): For clobber with
11815         incompatible type, build a new clobber with the right type instead
11816         of building a VIEW_CONVERT_EXPR around it.
11818 2016-06-04  Oleg Endo  <olegendo@gcc.gnu.org>
11820         PR tree-optimization/52171
11821         * config/sh/sh.c (sh_use_by_pieces_infrastructure_p): Use
11822         by_pieces_ninsns instead of move_by_pieces_ninsns.
11824 2016-06-04  Oleg Endo  <olegendo@gcc.gnu.org>
11826         * config/sh/sh.c (sh_print_operand_address): Don't use hardcoded 'r0'
11827         for reg+reg addressing mode.
11829 2016-06-03  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
11831         * rs6000-c.c (c/c-tree.h): Add #include.
11832         (altivec_resolve_overloaded_builtin): Handle ARRAY_TYPE arguments
11833         in C++ when found in the base position of vec_ld or vec_st.
11835 2016-06-03  Jan Hubicka  <hubicka@ucw.cz>
11837         * tree-ssa-loop-niter.c (estimate_numbers_of_iterations_loop): Avoid
11838         use of profile unless profile status is PROFILE_READ.
11839         * profile.c (compute_branch_probabilities): Set profile status
11840         only after reporting predictor hitrates.
11842 2016-06-03  Joseph Myers  <joseph@codesourcery.com>
11844         PR target/71276
11845         PR target/71277
11846         * common.opt (ffp-int-builtin-inexact): New option.
11847         * doc/invoke.texi (-fno-fp-int-builtin-inexact): Document.
11848         * doc/md.texi (floor@var{m}2, btrunc@var{m}2, round@var{m}2)
11849         (ceil@var{m}2): Document dependence on this option.
11850         * ipa-inline-transform.c (inline_call): Handle
11851         flag_fp_int_builtin_inexact.
11852         * ipa-inline.c (can_inline_edge_p): Likewise.
11853         * config/i386/i386.md (rintxf2): Do not test
11854         flag_unsafe_math_optimizations.
11855         (rint<mode>2_frndint): New define_insn.
11856         (rint<mode>2): Do not test flag_unsafe_math_optimizations for 387
11857         or !flag_trapping_math for SSE.  Just use gen_rint<mode>2_frndint
11858         for 387 instead of extending and truncating.
11859         (frndintxf2_<rounding>): Test flag_fp_int_builtin_inexact ||
11860         !flag_trapping_math instead of flag_unsafe_math_optimizations.
11861         Change to frndint<mode>2_<rounding>.
11862         (frndintxf2_<rounding>_i387): Likewise.  Change to
11863         frndint<mode>2_<rounding>_i387.
11864         (<rounding_insn>xf2): Likewise.
11865         (<rounding_insn><mode>2): Test flag_fp_int_builtin_inexact ||
11866         !flag_trapping_math instead of flag_unsafe_math_optimizations for
11867         x87.  Test TARGET_ROUND || !flag_trapping_math ||
11868         flag_fp_int_builtin_inexact instead of !flag_trapping_math for
11869         SSE.  Use ROUND_NO_EXC in constant operand of
11870         gen_sse4_1_round<mode>2.  Just use gen_frndint<mode>2_<rounding>
11871         for 387 instead of extending and truncating.
11873 2016-06-03  H.J. Lu  <hongjiu.lu@intel.com>
11874             Julia Koval  <julia.koval@intel.com>
11876         PR target/66960
11877         PR target/67630
11878         PR target/67634
11879         PR target/67841
11880         PR target/68037
11881         PR target/68618
11882         PR target/68661
11883         PR target/69575
11884         PR target/69596
11885         PR target/69734
11886         * config/i386/i386-protos.h (ix86_epilogue_uses): New prototype.
11887         * config/i386/i386.c (ix86_conditional_register_usage): Preserve
11888         all registers, except for function return registers if there are
11889         no caller-saved registers.
11890         (ix86_set_func_type): New function.
11891         (ix86_set_current_function): Call ix86_set_func_type to set
11892         no_caller_saved_registers and func_type.  Call reinit_regs if
11893         caller-saved registers are changed.  Don't allow MPX, SSE, MMX
11894         nor x87 instructions in interrupt handler nor function with
11895         no_caller_saved_registers attribute.
11896         (ix86_function_ok_for_sibcall): Return false if there are no
11897         caller-saved registers.
11898         (type_natural_mode): Don't warn ABI change for MMX in interrupt
11899         handler.
11900         (ix86_function_arg_advance): Skip for callee in interrupt handler.
11901         (ix86_function_arg): Return special arguments in interrupt handler.
11902         (ix86_promote_function_mode): Promote pointer to word_mode only
11903         for normal functions.
11904         (ix86_can_use_return_insn_p): Don't use `ret' instruction in
11905         interrupt handler.
11906         (ix86_epilogue_uses): New function.
11907         (ix86_hard_regno_scratch_ok): Likewise.
11908         (ix86_save_reg): Preserve all registers in interrupt handler
11909         after reload.  Preserve all registers, except for function return
11910         registers, if there are no caller-saved registers after reload.
11911         (find_drap_reg): Always use callee-saved register if there are
11912         no caller-saved registers.
11913         (ix86_minimum_incoming_stack_boundary): Return MIN_STACK_BOUNDARY
11914         for interrupt handler.
11915         (ix86_expand_prologue): Don't allow DRAP in interrupt handler.
11916         Emit cld instruction if stringops are used in interrupt handler
11917         or interrupt handler isn't a leaf function.
11918         (ix86_expand_epilogue): Generate interrupt return for interrupt
11919         handler and pop the 'ERROR_CODE' off the stack before interrupt
11920         return in exception handler.
11921         (ix86_expand_call): Disallow calling interrupt handler directly.
11922         If there are no caller-saved registers, mark all registers that
11923         are clobbered by the call which returns as clobbered.
11924         (ix86_handle_no_caller_saved_registers_attribute): New function.
11925         (ix86_handle_interrupt_attribute): Likewise.
11926         (ix86_attribute_table): Add interrupt and no_caller_saved_registers
11927         attributes.
11928         (TARGET_HARD_REGNO_SCRATCH_OK): Likewise.
11929         * config/i386/i386.h (ACCUMULATE_OUTGOING_ARGS): Use argument
11930         accumulation in interrupt function if stack may be realigned to
11931         avoid DRAP.
11932         (EPILOGUE_USES): New.
11933         (function_type): New enum.
11934         (machine_function): Add func_type and no_caller_saved_registers.
11935         * config/i386/i386.md (UNSPEC_INTERRUPT_RETURN): New.
11936         (interrupt_return): New pattern.
11937         * doc/extend.texi: Document x86 interrupt and
11938         no_caller_saved_registers attributes.
11940 2016-06-03  Bernd Schmidt  <bschmidt@redhat.com>
11942         PR tree-optimization/52171
11943         * builtins.c (expand_cmpstrn_or_cmpmem): Delete, moved elsewhere.
11944         (expand_builtin_memcmp): New arg RESULT_EQ.  All callers changed.
11945         Look for constant strings.  Move some code to emit_block_cmp_hints
11946         and use it.
11947         * builtins.def (BUILT_IN_MEMCMP_EQ): New.
11948         * defaults.h (COMPARE_MAX_PIECES): New macro.
11949         * expr.c (move_by_pieces_d, store_by_pieces_d): Remove old structs.
11950         (move_by_pieces_1, store_by_pieces_1, store_by_pieces_2): Remvoe.
11951         (clear_by_pieces_1): Don't declare.  Move definition before use.
11952         (can_do_by_pieces): New static function.
11953         (can_move_by_pieces): Use it.  Return bool.
11954         (by_pieces_ninsns): Renamed from move_by_pieces_ninsns.  New arg
11955         OP.  All callers changed.  Handle COMPARE_BY_PIECES.
11956         (class pieces_addr); New.
11957         (pieces_addr::pieces_addr, pieces_addr::decide_autoinc,
11958         pieces_addr::adjust, pieces_addr::increment_address,
11959         pieces_addr::maybe_predec, pieces_addr::maybe_postinc): New member
11960         functions for it.
11961         (class op_by_pieces_d): New.
11962         (op_by_pieces_d::op_by_pieces_d, op_by_pieces_d::run): New member
11963         functions for it.
11964         (class move_by_pieces_d, class compare_by_pieces_d,
11965         class store_by_pieces_d): New subclasses of op_by_pieces_d.
11966         (move_by_pieces_d::prepare_mode, move_by_pieces_d::generate,
11967         move_by_pieces_d::finish_endp, store_by_pieces_d::prepare_mode,
11968         store_by_pieces_d::generate, store_by_pieces_d::finish_endp,
11969         compare_by_pieces_d::generate, compare_by_pieces_d::prepare_mode,
11970         compare_by_pieces_d::finish_mode): New member functions.
11971         (compare_by_pieces, emit_block_cmp_via_cmpmem): New static
11972         functions.
11973         (expand_cmpstrn_or_cmpmem): Moved here from builtins.c.
11974         (emit_block_cmp_hints): New function.
11975         (move_by_pieces, store_by_pieces, clear_by_pieces): Rewrite to just
11976         use the newly defined classes.
11977         * expr.h (by_pieces_constfn): New typedef.
11978         (can_store_by_pieces, store_by_pieces): Use it in arg declarations.
11979         (emit_block_cmp_hints, expand_cmpstrn_or_cmpmem): Declare.
11980         (move_by_pieces_ninsns): Don't declare.
11981         (can_move_by_pieces): Change return value to bool.
11982         * target.def (TARGET_USE_BY_PIECES_INFRASTRUCTURE_P): Update docs.
11983         (compare_by_pieces_branch_ratio): New hook.
11984         * target.h (enum by_pieces_operation): Add COMPARE_BY_PIECES.
11985         (by_pieces_ninsns): Declare.
11986         * targethooks.c (default_use_by_pieces_infrastructure_p): Handle
11987         COMPARE_BY_PIECES.
11988         (default_compare_by_pieces_branch_ratio): New function.
11989         * targhooks.h (default_compare_by_pieces_branch_ratio): Declare.
11990         * doc/tm.texi.in (STORE_MAX_PIECES, COMPARE_MAX_PIECES): Document.
11991         * doc/tm.texi: Regenerate.
11992         * tree-ssa-strlen.c: Include "builtins.h".
11993         (handle_builtin_memcmp): New static function.
11994         (strlen_optimize_stmt): Call it for BUILT_IN_MEMCMP.
11995         * tree.c (build_common_builtin_nodes): Create __builtin_memcmp_eq.
11997 2016-06-03  Alan Hayward  <alan.hayward@arm.com>
11999         * tree-vect-stmts.c (vect_stmt_relevant_p): Do not vectorize non live
12000         relevant stmts which are simple and invariant.
12001         * tree-vect-loop.c (vectorizable_live_operation): Check relevance
12002         instead of simple and invariant
12004 2016-06-03  Alan Hayward  <alan.hayward@arm.com>
12006         * tree-vect-loop.c (vect_analyze_loop_operations): Allow live stmts.
12007         (vectorizable_reduction): Check for new relevant state.
12008         (vectorizable_live_operation): vectorize live stmts using
12009         BIT_FIELD_REF.  Remove special case for gimple assigns stmts.
12010         * tree-vect-stmts.c (is_simple_and_all_uses_invariant): New function.
12011         (vect_stmt_relevant_p): Check for stmts which are only used live.
12012         (process_use): Use of a stmt does not inherit it's live value.
12013         (vect_mark_stmts_to_be_vectorized): Simplify relevance inheritance.
12014         (vect_analyze_stmt): Check for new relevant state.
12015         * tree-vectorizer.h (vect_relevant): New entry for a stmt which is used
12016         outside the loop, but not inside it.
12018 2016-06-03  Alan Hayward  <alan.hayward@arm.com>
12020         * tree-vectorizer.h (vect_get_vec_def_for_operand_1): New.
12021         * tree-vect-stmts.c (vect_get_vec_def_for_operand_1): New.
12022         (vect_get_vec_def_for_operand): Split out code.
12024 2016-06-03  Segher Boessenkool  <segher@kernel.crashing.org>
12026         * config/rs6000/rs6000.md (define_peepholes for two mfcr's): Delete.
12028 2016-06-03  Alan Hayward  <alan.hayward@arm.com>
12030         * tree-vect-stmts.c (vectorizable_call) Remove GOMP_SIMD_LANE code.
12032 2016-06-03  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
12034         * config/arm/thumb1.md (*thumb1_mulsi3): Fix typos in comment.
12036 2016-06-03  Jakub Jelinek  <jakub@redhat.com>
12038         PR middle-end/71387
12039         * cgraph.c (cgraph_edge::redirect_call_stmt_to_callee): If redirecting
12040         to noreturn e->callee->decl that has void return type and void
12041         arguments, adjust gimple_call_fntype and remove lhs even if it had
12042         previously addressable type.
12044 2016-06-02  Jeff Law  <law@redhat.com>
12046         PR tree-optimization/71328
12047         * tree-ssa-threadupdate.c (duplicate_thread_path): Fix off-by-one
12048         error when checking for a jump back onto the copied path.
12050 2016-06-02  David Malcolm  <dmalcolm@redhat.com>
12052         * config/microblaze/microblaze.c (get_branch_target): Add return
12053         NULL_RTX for the non-CALL_P case.
12054         (insert_wic_for_ilb_runout): Remove unused local "wic_addr1".
12055         (insert_wic): Remove unused local "j".
12057 2016-06-02  Martin Liska  <mliska@suse.cz>
12059         * predict.def: Fix typo in PRED_FORTRAN_FAIL_IO display name.
12061 2016-06-02  H.J. Lu  <hongjiu.lu@intel.com>
12062             Julia Koval  <julia.koval@intel.com>
12064         * function.c (assign_parm_setup_stack): Force source into a
12065         register if needed.
12066         * target.def (function_incoming_arg): Update documentation to
12067         allow arbitrary address computation based on hard register.
12068         * doc/tm.texi: Regenerated.
12070 2016-06-02  Martin Liska  <mliska@suse.cz>
12072         * predict.c (combine_predictions_for_bb): Fix first match in
12073         cases where a first predictor contains more than one occurence
12074         in list of predictors.  Take the best value in such case.
12076 2016-06-02  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
12078         PR rtl-optimization/71295
12079         * rtlanal.c (subreg_get_info): If taking a subreg at the requested
12080         offset would go over the size of the inner mode reject it.
12082 2016-06-02  Jakub Jelinek  <jakub@redhat.com>
12084         * config/i386/sse.md (*vec_concatv4si): Use v=v,v instead of
12085         x=x,x and v=v,m instead of x=x,m.
12087         * config/i386/sse.md (*vec_concatv2si_sse4_1): Add avx512dq v=Yv,rm
12088         alternative.  Change x=x,x alternative to v=Yv,Yv and x=rm,C
12089         alternative to v=rm,C.
12091         * config/i386/sse.md (*vec_concatv2di): Add x86_avx512dq v=Yv,rm
12092         alternative.  Change x=xm,C alternative to v=vm,C, x=x,x alternative
12093         to v=Yv,Yv and x=x,m to v=v,m.  Use maybe_evex prefix attribute
12094         instead of vex for the last two above mentioned alternatives.
12096 2016-06-02  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
12098         PR target/70830
12099         * config/arm/arm.c (arm_output_multireg_pop): Guard "pop" on update.
12101 2016-06-02  Segher Boessenkool  <segher@kernel.crashing.org>
12103         * config/rs6000/dfp.md (trunctddd2): Correct the "length" attribute.
12105 2016-06-01  David Malcolm  <dmalcolm@redhat.com>
12107         * config/rl78/rl78.c (rl78_expand_prologue): Convert local
12108         from int to unsigned.
12110 2016-05-31  Michael Meissner  <meissner@linux.vnet.ibm.com>
12112         * config/rs6000/vsx.md (vsx_splat_<mode>, V2DI/V2DF): Simplify
12113         alternatives, eliminating preferred register class.  Add support
12114         for the MTVSRDD instruction in ISA 3.0.
12115         (vsx_splat_v4si_internal): Use splat_input_operand instead of
12116         reg_or_indexed_operand.
12117         (vsx_splat_v4sf_internal): Likewise.
12119 2016-05-31  Michael Meissner  <meissner@linux.vnet.ibm.com>
12121         PR target/71186
12122         * config/rs6000/vsx.md (xxspltib_<mode>_nosplit): Add alternatives
12123         for loading up all 0's or all 1's.
12125 2016-06-01  Thomas Preud'homme  <thomas.preudhomme@arm.com>
12127         * doc/sourcebuild.texi (arm_acq_rel): Document new effective target.
12129 2016-06-01  Eduard Sanou  <dhole@openmailbox.org>
12131         * doc/cppenv.texi: Note that the `%s` in `date` is a non-standard
12132         extension.
12133         * gcc.c (driver_handle_option): Call set_source_date_epoch_envvar.
12134         * gcc.c (set_source_date_epoch_envvar): New function, sets
12135         the SOURCE_DATE_EPOCH environment variable to the current time.
12137 2016-06-01  Eric Botcazou  <ebotcazou@adacore.com>
12139         * tree-vect-loop.c (vect_determine_vectorization_factor): Also compute
12140         the factor for live Phi nodes.
12142 2016-06-01  Jan Hubicka  <hubicka@ucw.cz>
12144         * loop-dolop.c (doloop_optimize): Us likely max iteration bound.
12145         * tree-parloops.c (parallelize_loops): likewise.
12146         * tree-ssa-loop-unswitch.c (tree_unswitch_single_loop,
12147         tree_unswitch_outer_loop): likewise.
12149 2016-06-01  Jakub Jelinek  <jakub@redhat.com>
12151         PR middle-end/71371
12152         * gimplify.c (gimplify_omp_for): Temporarily clear gimplify_omp_ctxp
12153         around creation of the temporary.
12155 2016-06-01  Richard Biener  <rguenther@suse.de>
12157         PR tree-optimization/71366
12158         * tree-ssa-loop-ivcanon.c (edges_to_remove): New global.
12159         (unloop_loops): Move removing edges here ...
12160         (try_unroll_loop_completely): ... from here.
12161         (try_peel_loop): ... and here.
12162         (tree_unroll_loops_completely_1): Track parent loops via
12163         bitmap of header BBs.
12164         (tree_unroll_loops_completely): Adjust for that.
12166 2016-06-01  Kelvin Nilsen  <kelvin@gcc.gnu.org>
12168         * config/rs6000/altivec.h (vec_slv): New macro.
12169         (vec_srv): New macro.
12170         * config/rs6000/altivec.md (UNSPEC_VSLV): New value.
12171         (UNSPEC_VSRV): New value.
12172         (vslv): New insn.
12173         (vsrv): New insn.
12174         * config/rs6000/rs6000-builtin.def (vslv): New builtin definition.
12175         (vsrv): New builtin definition.
12176         * config/rs6000/rs6000-c.c (P9V_BUILTIN_VSLV): Macro expansion to
12177         define argument types for new builtin.
12178         (P9V_BUILTIN_VSRV): Macro expansion to define argument types for
12179         new builtin.
12180         * doc/extend.texi: Document the new vec_vslv and vec_srv built-in
12181         functions.
12183 2016-06-01  Uros Bizjak  <ubizjak@gmail.com>
12184             Jocelyn Mayer  <l_indien@magic.fr>
12186         PR target/67310
12187         * config/i386/driver-i386.c (host_detect_local_cpu): Correctly
12188         detect processor family for signature_CENTAUR_ebx.
12189         <case PROCESSOR_I486>: Pass c3, winchip2 or winchip-c6 for
12190         signature_CENTAUR_ebx.
12191         <case PROCESSOR _PENTIUMPRO>: Pass c3-2 for signature_CENTAUR_ebx.
12192         <default>: Pass x86-64 for has_longmode.
12194 2016-06-01  Nathan Sidwell  <nathan@acm.org>
12196         * config/nvptx/nvptx.c (nvptx_assemble_undefined_decl): Reject
12197         undefined weak.
12199 2016-06-01  Richard Biener  <rguenther@suse.de>
12201         PR tree-optimization/71261
12202         * tree-vect-patterns.c (check_bool_pattern): Gather a hash-set
12203         of stmts successfully put in the bool pattern.  Remove
12204         single-use restriction.
12205         (adjust_bool_pattern_cast): Add cast at the use site via the
12206         pattern def sequence.
12207         (adjust_bool_pattern): Remove recursion, maintain a hash-map
12208         of patterned defs.  Use the pattern def seqence instead of
12209         multiple independent patterns.
12210         (sort_after_uid): New qsort compare function.
12211         (adjust_bool_stmts): New function to process stmts in the bool
12212         pattern in IL order.
12213         (vect_recog_bool_pattern): Adjust.
12214         * tree-if-conv.c (ifcvt_split_def_stmt): Remove.
12215         (ifcvt_walk_pattern_tree): Likewise.
12216         (stmt_is_root_of_bool_pattern): Likewise.
12217         (ifcvt_repair_bool_pattern): Likewise.
12218         (tree_if_conversion): Do not call ifcvt_repair_bool_pattern.
12220 2016-06-01  Jan Hubicka  <hubicka@ucw.cz>
12222         * loop-unroll.c (decide_unroll_constant_iterations,
12223         decide_unroll_runtime_iterations, decide_unroll_stupid): Use
12224         likely upper bounds.
12225         * loop-iv.c (find_simple_exit): Dump likely upper bounds.
12227 2016-06-01  Thomas Schwinge  <thomas@codesourcery.com>
12229         * tree-core.h (enum omp_clause_code): Remove
12230         OMP_CLAUSE_DEVICE_RESIDENT.  Adjust all users.
12232 2016-06-01  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
12234         * config/arm/sync.md (arm_store_exclusive<mode>):
12235         Use 'H' output modifier on operands[2] rather than creating a new
12236         entry in out-of-bounds memory of the operands array.
12237         (arm_store_release_exclusivedi): Likewise.
12239 2016-06-01  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
12241         * config/arm/arm.c (arm_fusion_enabled_p): New function.
12242         * config/arm/arm-protos.h (arm_fusion_enabled_p): Declare prototype.
12243         * config/arm/crypto.md (crypto_<crypto_pattern>, CRYPTO_UNARY):
12244         Add "=w,0" alternative.  Enable it when AES/AESMC fusion is enabled.
12246 2016-06-01  Eric Botcazou  <ebotcazou@adacore.com>
12248         * tree-vect-loop.c (vect_determine_vectorization_factor): Also take
12249         into account live statements for mask producers.
12251 2016-06-01  Richard Biener  <rguenther@suse.de>
12253         PR tree-optimization/71311
12254         * match.pd (@0 < @1 && @0 < @2 -> @0 < min(@1,@2)): Add :c and
12255         restrict to non-INTEGER_CST @0.
12257 2016-06-01  Richard Biener  <rguenther@suse.de>
12259         * match.pd ((A & B) - (A & ~B) -> B - (A ^ B)): Add missing :c.
12260         (relational patterns): Use :c to avoid pattern duplications.
12262 2016-06-01  Richard Biener  <rguenther@suse.de>
12264         * genmatch.c (comparison_code_p): New predicate.
12265         (swap_tree_comparison): New function.
12266         (commutate): Add for_vec parameter to append new for entries.
12267         Support commutating relational operators by swapping it alongside
12268         operands.
12269         (lower_commutative): Adjust.
12270         (dt_simplify::gen): Do not pass artificial operators to gen
12271         functions.
12272         (decision_tree::gen): Do not add artificial operators as parameters.
12273         (parser::parse_expr): Verify operator commutativity when :c is
12274         applied.  Allow :C to override this.
12275         * match.pd: Adjust patterns to use :C instead of :c where required.
12277 2016-06-01  Patrick Palka  <ppalka@gcc.gnu.org>
12279         PR tree-optimization/71077
12280         * tree-ssa-threadedge.c (simplify_control_stmt_condition_1): In
12281         the combining step, use boolean_false_node and boolean_true_node
12282         as the designated false/true return values.
12284 2016-05-31  Jan Hubicka  <hubicka@ucw.cz>
12286         * predict.def (PRED_LOOP_EXTRA_EXIT): Define.
12287         * predict.c (predict_iv_comparison): Also check PRED_LOOP_EXTRA_EXIT.
12288         (predict_extra_loop_exits): Use PRED_LOOP_EXTRA_EXIT instead of
12289         PRED_LOOP_EXIT.
12291 2016-05-31  Jan Hubicka  <hubicka@ucw.cz>
12293         * doc/invoke.texi (-frename-registers): Drop -fpeel-loops from list
12294         of flags impliying the register renaming.
12295         * toplev.c (process_options): Do not imply flag_rename_registers with
12296         loop peeling.
12298 2016-05-31  Oleg Endo  <olegendo@gcc.gnu.org>
12300         * config/sh/sh.h (ASM_OUTPUT_SYMBOL_REF): Remove macro and use the
12301         default implementation.
12303 2016-05-31  Nathan Sidwell  <nathan@acm.org>
12305         * dwarf2out.c (cur_line_info_table): Add GTY marker.
12307 2016-05-31  Oleg Endo  <olegendo@gcc.gnu.org>
12309         * config/sh/constraints.md (b): Remove constraint.
12310         * config/sh/predicates.md (arith_reg_operand): Remove
12311         TARGET_REGISTER_P.
12312         * config/sh/sh-modes.def (PDI): Remove.
12313         * config/sh/sh.c (sh_target_reg_class,
12314         sh_optimize_target_register_callee_saved): Remove functions.
12315         (sh_option_override): Don't set MASK_SAVE_ALL_TARGET_REGS.
12316         (sh_expand_epilogue): Update comment.
12317         (sh_hard_regno_mode_ok, sh_register_move_cost, calc_live_regs,
12318         sh_secondary_reload): Remove TARGET_REGS related code.
12319         * config/sh/sh.h (FIRST_TARGET_REG, LAST_TARGET_REG,
12320         TARGET_REGISTER_P): Remove macros.
12321         (SH_DBX_REGISTER_NUMBER, REG_ALLOC_ORDER): Remove target regs.
12322         * config/sh/sh.md (PR_MEDIA_REG, T_MEDIA_REG, FR23_REG, TR0_REG,
12323         TR1_REG, TR2_REG): Remove constants.
12324         * config/sh/sh.opt (SAVE_ALL_TARGET_REGS): Remove.
12326 2016-05-31  Oleg Endo  <olegendo@gcc.gnu.org>
12328         * config/sh/sh.md (adddi3, subdi3, negdi2, abs<mode>2): Remove
12329         define_expand patterns.
12330         (adddi3_compact): Rename to adddi3.
12331         (subdi3_compact): Rename to subdi3.
12332         (*negdi2): Rename to negdi2.
12333         (*abs<mode>2): Rename to abs<mode>2.
12335 2016-05-31  Oleg Endo  <olegendo@gcc.gnu.org>
12337         * config/rx/rx.md (FETCHOP_NO_MINUS): New code iterator.
12338         (atomic_<fetchop_name>_fetchsi): Extract minus operator into ...
12339         (atomic_sub_fetchsi): ... this new pattern.
12340         (mvtc): Add CC_REG clobber.
12342 2016-05-31  Marek Polacek  <polacek@redhat.com>
12344         * gimplify.c (gimplify_switch_expr): Also handle GIMPLE_TRY.
12346 2016-05-31  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
12348         * config/aarch64/aarch64.c (aarch_macro_fusion_pair_p): Use
12349         aarch64_fusion_enabled_p to check for fusion capabilities.
12351 2016-05-31  Richard Biener  <rguenther@suse.de>
12353         PR tree-optimization/71352
12354         * tree-ssa-reassoc.c (zero_one_operation): Handle op equal to
12355         minus one and a negate.
12357 2016-05-31  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
12359         * config/aarch64/aarch64.c (aarch64_simd_attr_length_move): Delete.
12360         * config/aarch64/aarch64-protos.h (aarch64_simd_attr_length_move):
12361         Delete prototype.
12362         * config/aarch64/iterators.md (insn_count): Add descriptive comment.
12363         * config/aarch64/aarch64-simd.md (*aarch64_mov<mode>, VSTRUCT modes):
12364         Remove use of aarch64_simd_attr_length_move, set length attribute
12365         directly.
12366         (*aarch64_be_movoi): Likewise.
12367         (*aarch64_be_movci): Likewise.
12368         (*aarch64_be_movxi): Likewise.
12370 2016-05-31  Jan Hubicka  <hubicka@ucw.cz>
12372         * loop-init.c (gate): Do not enale RTL loop unroller with -fpeel-loops.
12373         It no longer does that.
12374         * toplev.c (process_options): Do not enable flag_web with -fpeel-loops.
12376 2016-05-31  Wladimir J. van der Laan  <laanwj@gmail.com>
12378         * config/aarch64/arm_neon.h (vdupb_laneq_s8): Remove spurious
12379         attribute __unused__.
12381 2016-05-31  Thomas Preud'homme  <thomas.preudhomme@arm.com>
12383         * config/arm/arm-protos.h (arm_arch_thumb1): Declare.
12384         * config/arm/arm.c (arm_arch_thumb1): Define.
12385         (arm_option_override): Initialize arm_arch_thumb1.
12386         * config/arm/arm.h (arm_arch_thumb1): Declare.
12387         (TARGET_ARM_ARCH_ISA_THUMB): Use arm_arch_thumb to determine if target
12388         support Thumb-1 ISA.
12390 2016-05-31  Kirill Yukhin  <kirill.yukhin@intel.com>
12392         PR target/71346
12393         * config/i386/sse.md (define_insn_and_split "*vec_extractv4sf_0"): Use
12394         `Yv' for scalar operand.
12396 2016-05-31  Tom de Vries  <tom@codesourcery.com>
12398         PR tree-optimization/69068
12399         * graphite-isl-ast-to-gimple.c (copy_bb_and_scalar_dependences): Handle
12400         phis with more than two args.
12402 2016-05-30  Andreas Tobler  <andreast@gcc.gnu.org>
12404         * config.gcc: Move hard float support for arm*hf*-*-freebsd* into
12405         armv6*-*-freebsd* for FreeBSD 11. Eliminate the arm*hf*-*-freebsd*
12406         target.
12408 2016-05-30  Jose E. Marchesi  <jose.marchesi@oracle.com>
12410         * config.gcc (sparc*-*-*): Support cpu_32, cpu_64, tune_32 and
12411         tune_64.
12412         * doc/install.texi (--with-cpu-32, --with-cpu-64): Document
12413         support on SPARC.
12414         * config/sparc/linux64.h (OPTION_DEFAULT_SPECS): Add entries for
12415         cpu_32, cpu_64, tune_32 and tune_64.
12416         * config/sparc/sol2.h (OPTION_DEFAULT_SPECS): Likewise.
12418 2016-05-30  Uros Bizjak  <ubizjak@gmail.com>
12420         * config/i386/sync.md (mfence_nosse): Use "lock orl $0, -4(%esp)".
12422 2016-05-30  Andi Kleen  <ak@linux.intel.com>
12424         * auto-profile.c (read_profile): Replace asserts with errors
12425         when file does not exist.
12426         * gcov-io.c (gcov_read_words): Dito.
12428 2016-05-30  Jan Hubicka  <hubicka@ucw.cz>
12430         * tree-cfg.c (print_loop): Print likely upper bounds.
12432 2016-05-30  Jan Hubicka  <hubicka@ucw.cz>
12434         * doc/invoke.texi (-fpeel-loops,-O3): Update documentation.
12435         * opts.c (default_options): Enable peel loops at -O3.
12436         * tree-ssa-loop-ivcanon.c (peeled_loops): New static var.
12437         (try_peel_loop): Do not re-peel already peeled loops;
12438         use likely upper bounds; fix profile updating.
12439         (pass_complete_unroll::execute): Initialize peeled_loops.
12441 2016-05-30  Martin Liska  <mliska@suse.cz>
12443         * tree-ssa-loop-ivopts.c (get_computation_cost_at): Scale
12444         computed costs by frequency of BB they belong to.
12445         (get_scaled_computation_cost_at): New function.
12447 2016-05-30  Alexander Monakov  <amonakov@ispras.ru>
12448             Marc Glisse  <marc.glisse@inria.fr>
12450         PR tree-optimization/71289
12451         * match.pd (-1 / B < A, A > -1 / B): New transformations.
12453 2016-05-30  Jan Hubicka  <hubicka@ucw.cz>
12455         * tree-vect-loop.c (vect_transform_loop): Update likely bounds.
12457 2016-05-30  Jan Hubicka  <hubicka@ucw.cz>
12459         * tree-ssa-loop-ivcanon.c (try_peel_loop): Correctly set wont_exit
12460         for peeled copies; avoid underflow when updating estimates; correctly
12461         scale loop profile.
12463 2016-05-30  Kugan Vivekanandarajah  <kuganv@linaro.org>
12465         * tree-ssa-reassoc.ci (swap_ops_for_binary_stmt): Fix typo from commit
12466         r236875. Corrected oe3 to oe2 as obvious.
12468 2016-05-30  Kugan Vivekanandarajah  <kuganv@linaro.org>
12470         PR middle-end/71269
12471         PR middle-end/71252
12472         * tree-ssa-reassoc.c (insert_stmt_before_use): Use find_insert_point so
12473         that inserted stmt will not dominate stmts that defines its operand.
12474         (rewrite_expr_tree): Add stmt_to_insert before adding the use stmt.
12475         (rewrite_expr_tree_parallel): Likewise.
12477 2016-05-30  Kugan Vivekanandarajah  <kuganv@linaro.org>
12479         PR middle-end/71252
12480         * tree-ssa-reassoc.c (swap_ops_for_binary_stmt): Fix swap such that
12481         all fields including stmt_to_insert are swapped.
12483 2016-05-30  Jan Hubicka  <hubicka@ucw.cz>
12485         * predict.h (force_edge_cold): Declare.
12486         * predict.c (force_edge_cold): New function.
12487         * tree-ssa-loop-ivcanon.c (try_unroll_loop_completely): Fix profile
12488         updating.
12489         (canonicalize_loop_induction_variables): Fix formating.
12491 2016-05-30  Eric Botcazou  <ebotcazou@adacore.com>
12493         * config/visium/visium.c (visium_split_double_add): Minor tweaks.
12494         (visium_expand_copysign): Use gen_int_mode directly.
12495         (visium_compute_frame_size): Minor tweaks.
12497 2016-05-30  Jan Hubicka  <hubicka@ucw.cz>
12499         * tree-vect-loop.c (vect_analyze_loop_2): Use
12500         likely_max_stmt_executions_int.
12502 2016-05-30  Tom de Vries  <tom@codesourcery.com>
12504         PR tree-optimization/69067
12505         * graphite-isl-ast-to-gimple.c (get_def_bb_for_const): Remove assert.
12507 2016-05-29  Uros Bizjak  <ubizjak@gmail.com>
12509         PR target/71245
12510         * config/i386/sync.md (define_peephole2 atomic_storedi_fpu):
12511         New peepholes to remove unneeded fild/fistp pairs.
12512         (define_peephole2 atomic_loaddi_fpu): Ditto.
12514 2016-05-27  Jan Hubicka  <hubicka@ucw.cz>
12516         * predict.c (maybe_hot_frequency_p): Avoid division.
12518 2016-05-28  Gerald Pfeifer  <gerald@pfeifer.com>
12520         * doc/install.texi: Use https for shop.fsf.org.
12522 2016-05-27  Jan Hubicka  <hubicka@ucw.cz>
12524         * tree-ssa-loop-ivopts.c (estimated_stmt_executions_int): Use
12525         likely_max_stmt_executions_int.
12527 2016-05-27  Jan Hubicka  <hubicka@ucw.cz>
12529         * tree-ssa-loop-prefetch.c (loop_prefetch_arrays): Use
12530         likely_max_stmt_executions_int.
12532 2016-05-27  Jan Hubicka  <hubicka@ucw.cz>
12534         * profile.c (compute_branch_probabilities): Do not report hitrates
12535         here.
12536         (branch_prob): Report hitrates here.
12537         * predict.c (gimple_predict_edge): Do not assert profile status;
12538         fix formatting issues.
12540 2016-05-27  Jan Hubicka  <hubicka@ucw.cz>
12542         * predict.c (edge_predicted_by_p): New function.
12543         (predict_paths_for_bb): Do not put multiple predictions of the same type
12544         on one edge.
12546 2016-05-27  Jan Hubicka  <hubicka@ucw.cz>
12548         * tree-ssa-loop-niter.c (number_of_iterations_exit): Revert accidental
12549         commit.
12551 2016-05-28  Alan Modra  <amodra@gmail.com>
12553         * dominance.c (verify_dominators): Don't segfault on NULL imm_bb.
12555 2016-05-28  Alan Modra  <amodra@gmail.com>
12557         PR rtl-optimization/71275
12558         * ira.c (ira): Free dominance info.
12560 2016-05-27  Gerald Pfeifer  <gerald@pfeifer.com>
12562         * doc/sourcebuild.texi: New address for upstream Go repository.
12564 2016-05-27  Thomas Preud'homme  <thomas.preudhomme@arm.com>
12566         * config/arm/arm.h (TARGET_ARM_V6M): Remove.
12567         (TARGET_ARM_V7M): Likewise.
12569 2016-05-26  Jeff Law  <law@redhat.com>
12571         * tree-ssa-threadedge.c: Remove include of tree-ssa-threadbackward.h.
12572         (thread_across_edge): Remove calls to find_jump_threads_backwards.
12573         * passes.def: Add jump threading passes before DOM/VRP.
12574         * tree-ssa-threadbackward.c (find_jump_threads_backwards): Change
12575         argument to a basic block from an edge.  Remove tests which are
12576         handled elsewhere.
12577         (pass_data_thread_jumps, class pass_thread_jumps): New.
12578         (pass_thread_jumps::gate, pass_thread_jumps::execute): New.
12579         (make_pass_thread_jumps): Likewise.
12580         * tree-pass.h (make_pass_thread_jumps): Declare.
12582 2016-05-27  Eric Botcazou  <ebotcazou@adacore.com>
12584         * config/visium/visium-protos.h (split_double_move): Rename into...
12585         (visium_split_double_move): ...this.
12586         (visium_split_double_add): Declare.
12587         * config/visium/visium.c (split_double_move): Rename into...
12588         (visium_split_double_move): ...this.
12589         (visium_split_double_add): New function.
12590         (visium_expand_copysign): Renumber operands for consistency.
12591         * config/visium/visium.md (DImode move splitter): Adjust to renaming.
12592         (DFmode move splitter): Likewise.
12593         (*addi3_insn): Split by means of visium_split_double_add.
12594         (*adddi3_insn_flags): Delete.
12595         (*plus_plus_sltu<subst_arith>): New insn.
12596         (*subdi3_insn): Split by means of visium_split_double_add.
12597         (subdi3_insn_flags): Delete.
12598         (*minus_minus_sltu<subst_arith>): New insn.
12599         (*negdi2_insn): Split by means of visium_split_double_add.
12600         (*negdi2_insn_flags): Delete.
12602 2016-05-27  Ulrich Weigand  <uweigand@de.ibm.com>
12604         * configure.ac: Treat a --with-headers option without argument
12605         the same as the default (i.e. consult sys-include directory).
12606         * configure: Regenerate.
12608 2016-05-27  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
12610         * config/aarch64/aarch64.c (aarch64_fusion_enabled_p): New function.
12611         * config/aarch64/aarch64-protos.h (aarch64_fusion_enabled_p): Declare
12612         prototype.
12613         * config/aarch64/aarch64-simd.md (aarch64_crypto_aes<aesmc_op>v16qi):
12614         Add "=w,0" alternative.  Enable it when AES/AESMC fusion is enabled.
12616 2016-05-27  Jiong Wang  <jiong.wang@arm.com>
12618         PR target/63596
12619         * config/aarch64/aarch64.c (aarch64_expand_builtin_va_start): Honor
12620         tree-stdarg analysis results.
12621         (aarch64_setup_incoming_varargs): Likewise.
12623 2016-05-27  Jiong Wang  <jiong.wang@arm.com>
12625         * config/aarch64/aarch64.c (aarch64_build_builtin_va_list): Initialize
12626         va_list_gpr_counter_field and va_list_fpr_counter_field.
12628 2016-05-27  Wilco Dijkstra  <wdijkstr@arm.com>
12630         PR67609
12631         * config/aarch64/aarch64.h (CANNOT_CHANGE_MODE_CLASS): Remove.
12632         * config/aarch64/aarch64.c
12633         (aarch64_cannot_change_mode_class): Remove function.
12634         * config/aarch64/aarch64-protos.h
12635         (aarch64_cannot_change_mode_class): Remove.
12637 2016-05-27  Jan Hubicka  <hubicka@ucw.cz>
12639         * cfgloop.c (record_niter_bound): Record likely upper bounds.
12640         (likely_max_stmt_executions_int, get_likely_max_loop_iterations,
12641         get_likely_max_loop_iterations_int): New.
12642         * cfgloop.h (struct loop): Add nb_iterations_likely_upper_bound,
12643         any_likely_upper_bound.
12644         (get_likely_max_loop_iterations_int, get_likely_max_loop_iterations):
12645         Declare.
12646         * cfgloopmanip.c (copy_loop_info): Copy likely upper bounds.
12647         * loop-unroll.c (unroll_loop_constant_iterations): Update likely
12648         upper bound.
12649         (unroll_loop_constant_iterations): Likewise.
12650         (unroll_loop_runtime_iterations): Likewise.
12651         * lto-streamer-in.c (input_cfg): Stream likely upper bounds.
12652         * lto-streamer-out.c (output_cfg): Likewise.
12653         * tree-ssa-loop-ivcanon.c (try_peel_loop): Update likely upper
12654         bounds.
12655         (canonicalize_loop_induction_variables): Dump likely upper bounds.
12656         * tree-ssa-loop-niter.c (record_estimate): Record likely upper bounds.
12657         (likely_max_loop_iterations): New.
12658         (likely_max_loop_iterations_int): New.
12659         (likely_max_stmt_executions): New.
12660         * tree-ssa-loop-niter.h (likely_max_loop_iterations,
12661         likely_max_loop_iterations_int, likely_max_stmt_executions_int,
12662         likely_max_stmt_executions): Declare.
12664 2016-05-27  Marek Polacek  <polacek@redhat.com>
12666         PR middle-end/71308
12667         * gimple-fold.c (gimple_fold_call): Check that LHS is not null.
12669 2016-05-27  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
12671         * config/s390/s390.md (2x risbg splitters): Use
12672         reg_overlap_mentioned_p instead of rtx_equal_p.
12674 2016-05-27  Dominik Vogt  <vogt@linux.vnet.ibm.com>
12676         * combine.c (make_compound_operation): Take known zero bits into
12677         account when checking for possible zero_extend.
12679 2016-05-27  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
12681         * config/aarch64/aarch64.md (ashl<mode>3, SHORT modes):
12682         Use const_int_operand for operand 2 predicate.  Simplify expand code
12683         as a result.
12685 2016-05-27  Ilya Enkovich  <ilya.enkovich@intel.com>
12687         PR middle-end/71279
12688         * fold-const.c (fold_ternary_loc): Don't fold VEC_COND_EXPR
12689         into comparison.
12691 2016-05-27  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
12693         * config/aarch64/aarch64-modes.def (CC_ZESWP, CC_SESWP): Delete.
12694         * config/aarch64/aarch64.c (aarch64_select_cc_mode): Remove condition
12695         that returns CC_SESWPmode and CC_ZESWPmode.
12696         (aarch64_get_condition_code_1): Remove handling of CC_SESWPmode
12697         and CC_SESWPmode.
12698         (aarch64_rtx_costs): Likewise.
12700 2016-05-26  Michael Meissner  <meissner@linux.vnet.ibm.com>
12702         * config/rs6000/rs6000.c (rs6000_emit_p9_fp_minmax): New function
12703         for ISA 3.0 min/max support.
12704         (rs6000_emit_p9_fp_cmove): New function for ISA 3.0 floating point
12705         conditional move support.
12706         (rs6000_emit_cmove): Call rs6000_emit_p9_fp_minmax and
12707         rs6000_emit_p9_fp_cmove if the ISA 3.0 instructions are
12708         available.
12709         * config/rs6000/rs6000.md (SFDF2): New iterator to allow doing
12710         conditional moves where the comparison type is different from move
12711         type.
12712         (fp_minmax): New code iterator for smin/smax.
12713         (minmax): New code attributes for min/max.
12714         (SMINMAX): Likewise.
12715         (smax<mode>3): Combine min, max insns into one insn using the
12716         fp_minmax code iterator.  Add support for ISA 3.0 min/max
12717         instructions that don't need -ffast-math.
12718         (s<minmax><mode>3): Likewise.
12719         (smax<mode>3_vsx): Likewise.
12720         (smin<mode>3): Likewise.
12721         (s<minmax><mode>3_vsx): Likewise.
12722         (smin<mode>3_vsx): Likewise.
12723         (pre-VSX min/max splitters): Likewise.
12724         (s<minmax><mode>3_fpr): Likewise.
12725         (movsfcc): Rewrite floating point conditional moves to combine
12726         SFmode/DFmode into a single insn.
12727         (mov<mode>cc): Likewise.
12728         (movdfcc): Likewise.
12729         (fselsfsf4): Combine FSEL cases into a single insn, using SFDF and
12730         SFDF2 iterators to handle all combinations.
12731         (fseldfsf4): Likewise.
12732         (fsel<SFDF:mode><SFDF2:mode>4): Likewise.
12733         (fseldfdf4): Likewise.
12734         (fselsfdf4): Likewise.
12735         (mov<SFDF:mode><SFDF2:mode>cc_p9): Add support for the ISA 3.0
12736         comparison instructions that set a 0/-1 mask, and use it for
12737         floating point conditional move via XXSEL.
12738         (fpmask<mode>): Likewise.
12739         (xxsel<mode>): Likewise.
12740         * config/rs6000/predicates.md (min_max_operator): Delete, no
12741         longer used.
12742         (fpmask_comparison_operaton): New insn for ISA 3.0 comparison
12743         instructions that generate a 0/-1 mask for use with XXSEL.
12744         * config/rs6000/rs6000.h (TARGET_MINMAX_SF): New helper macros to
12745         say whether floating point min/max is available, either through
12746         FSEL, ISA 2.06 min/max, and ISA 3.0 min/max instrucitons.
12747         (TARGET_MINMAX_DF): Likewise.
12749 2016-05-27  Alan Modra  <amodra@gmail.com>
12751         PR rtl-optimization/71275
12752         * ira.c (ira): Call loop_optimizer_init to set up bb_loop_depth
12753         for update_equiv_regs and combine_and_move_insns.
12755 2016-05-26  Uros Bizjak  <ubizjak@gmail.com>
12757         * config/i386/i386.md (*movqi_internal) <attr "isa">: Use
12758         if_then_else or cond RTXes to calculate attribute value.
12759         * config/i386/mmx.md (*vec_extractv2sf_1) <attr "prefix_rep">: Ditto.
12760         <attr "length_immediate>: Ditto.
12761         (*vec_extractv2sf_1) <attr "length_immediate">: Ditto.
12762         * config/i386/sse.md (sse_loadlps) <attr "length_immediate">: Ditto.
12763         (*vec_concatv2sf_sse4_1) <attr "isa">: Ditto.
12764         <attr "type">: Ditto.
12765         <attr "prefix_data16">: Ditto.
12766         <attr "prefix_extra">: Ditto.
12767         <attr "length_immediate">: Ditto.
12768         <attr "prefix">: Ditto.
12769         (vec_set<mode>_0) <attr "isa">: Ditto.
12770         <attr "prefix_extra">: Ditto.
12771         <attr "length_immediate">: Ditto.
12772         <attr "prefix">: Ditto.
12773         (*vec_interleave_highv2df) <attr "prefix_data16">: Ditto.
12774         (*vec_interleave_lowv2df) <attr "prefix_data16">: Ditto.
12775         (sse2_storelpd) <attr "prefix_data16">: Ditto.
12776         (sse2_loadhpd) <attr "prefix_data16">: Ditto.
12777         (sse2_loadlpd) <attr "prefix_data16">: Ditto.
12778         <attr "length_immediate">: Ditto.
12779         <attr "prefix">: Ditto.
12780         (sse2_movsd) <attr "length_immediate">: Ditto.
12781         <attr "prefix">: Ditto.
12782         (vec_concatv2df)  <attr "isa">: Ditto.
12783         <attr "prefix">: Ditto.
12784         (*vec_extractv4si) <attr "prefix_extra">: Ditto.
12785         (*vec_extractv2di_1) <attr "isa">: Ditto.
12786         <attr "type">: Ditto.
12787         <attr "length_immediate">: Ditto.
12788         <attr "prefix_rex">: Ditto.
12789         <attr "prefix_extra">: Ditto.
12790         (*vec_concatv2si_sse4_1) <attr "type">: Ditto.
12791         <attr "prefix_extra">: Ditto.
12792         <attr "length_immediate">: Ditto.
12793         (vec_concatv2di) <attr "isa">: Ditto.
12794         <attr "prefix_extra">: Ditto.
12795         <attr "length_immediate">: Ditto.
12796         <attr "prefix">: Ditto.
12798 2016-05-26  Martin Liska  <mliska@suse.cz>
12800         * tree-ssa-loop-ivopts.c (comp_cost::infinite_cost_p): New
12801         function.
12802         (operator+): Likewise.
12803         (operator-): Likewise.
12804         (comp_cost::operator+=): Likewise.
12805         (comp_cost::operator-=): Likewise.
12806         (comp_cost::operator/=): Likewise.
12807         (comp_cost::operator*=): Likewise.
12808         (operator<): Likewise.
12809         (operator==): Likewise.
12810         (operator<=): Likewise.
12811         (new_cost): Remove.
12812         (infinite_cost_p): Likewise.
12813         (add_costs): Likewise.
12814         (sub_costs): Likewise.
12815         (compare_costs): Likewise.
12816         (set_group_iv_cost): Use the newly introduced functions.
12817         (get_address_cost): Likewise.
12818         (get_shiftadd_cost): Likewise.
12819         (force_expr_to_var_cost): Likewise.
12820         (split_address_cost): Likewise.
12821         (ptr_difference_cost): Likewise.
12822         (difference_cost): Likewise.
12823         (get_computation_cost_at): Likewise.
12824         (determine_group_iv_cost_generic): Likewise.
12825         (determine_group_iv_cost_address): Likewise.
12826         (determine_group_iv_cost_cond): Likewise.
12827         (autoinc_possible_for_pair): Likewise.
12828         (determine_group_iv_costs): Likewise.
12829         (cheaper_cost_pair): Likewise.
12830         (iv_ca_recount_cost): Likewise.
12831         (iv_ca_set_no_cp): Likewise.
12832         (iv_ca_set_cp): Likewise.
12833         (iv_ca_cost): Likewise.
12834         (iv_ca_new): Likewise.
12835         (iv_ca_dump): Likewise.
12836         (iv_ca_narrow): Likewise.
12837         (iv_ca_prune): Likewise.
12838         (iv_ca_replace): Likewise.
12839         (try_add_cand_for): Likewise.
12840         (try_improve_iv_set): Likewise.
12841         (find_optimal_iv_set): Likewise.
12843 2016-05-26  Richard Sandiford  <richard.sandiford@arm.com>
12845         * tree-ssa-loop-ivopts.c (loop_body_includes_call): Don't assume
12846         that internal functions will clobber all caller-saved registers.
12848 2016-05-26  Wilco Dijkstra  <wdijkstr@arm.com>
12850         * config/aarch64/aarch64.c (aarch64_case_values_threshold):
12851         Return a better case_values_threshold when optimizing.
12853 2016-05-26  Wilco Dijkstra  <wdijkstr@arm.com>
12855         * config/aarch64/aarch64-simd.md (aarch64_combinez):
12856         Add ? to integer variant.
12857         (aarch64_combinez_be): Likewise.
12859 2016-05-26  Jakub Jelinek  <jakub@redhat.com>
12861         * config/i386/sse.md (*vcvtps2ph_store<mask_name>): Use v constraint
12862         instead of x constraint.
12863         (vcvtps2ph256<mask_name>): Likewise.
12865         * config/i386/sse.md (*ssse3_palignr<mode>_perm): Add avx512bw
12866         alternative.  Formatting fix.
12868         * config/i386/sse.md
12869         (<mask_codefor>avx512vl_shuf_<shuffletype>32x4_1<mask_name>): Rename
12870         to ...
12871         (avx512vl_shuf_<shuffletype>32x4_1<mask_name>): ... this.
12872         (*avx_vperm_broadcast_v4sf): Use v constraint instead of x.  Use
12873         maybe_evex prefix instead of vex.
12874         (*avx_vperm_broadcast_<mode>): Use v constraint instead of x.  Handle
12875         EXT_REX_SSE_REG_P (op0) case in the splitter.
12877 2016-05-25  Jeff Law  <law@redhat.com>
12879         PR tree-optimization/71272
12880         * tree-ssa-threadbackward.c (convert_and_register_jump_thread_path):
12881         Update comments.  Add test for empty path.
12883 2016-05-25  Bill Seurer  <seurer@linux.vnet.ibm.com>
12885         * config/rs6000/altivec.h (vec_cmpne): Add #define for vec_cmpne.
12886         * config/rs6000/rs6000-builtin.def (vec_cmpne): Add vec_cmpne as a
12887         special case builtin.
12888         * config/rs6000/rs6000-c.c (altivec_resolve_overloaded_builtin): Add
12889         code for ALTIVEC_BUILTIN_VEC_CMPNE.
12890         * config/rs6000/rs6000.c (altivec_init_builtins): Add definition
12891         for __builtin_vec_cmpne.
12893 2016-05-25  Eric Botcazou  <ebotcazou@adacore.com>
12895         * tree-ssa-phiopt.c (factor_out_conditional_conversion): Remove
12896         redundant test and bail out if the type of the new operand is not
12897         a GIMPLE register type after stripping a VIEW_CONVERT_EXPR.
12899 2016-05-25  Uros Bizjak  <ubizjak@gmail.com>
12901         * config/i386/i386.opt (ix86_target_flags_explicit): Remove.
12902         (x_ix86_target_flags_explicit): Remove.
12903         * config/i386/i386.c (ix86_function_specific_save): Do not copy
12904         x_ix86_target_flags_explicit.
12905         (ix86_function_specific_restore): Ditto.
12907 2016-05-25  Uros Bizjak  <ubizjak@gmail.com>
12908             H.J. Lu  <hongjiu.lu@intel.com>
12910         PR target/70738
12911         * common/config/i386/i386-common.c
12912         (OPTION_MASK_ISA_GENERAL_REGS_ONLY_UNSET): New.
12913         (ix86_handle_option) <case OPT_mgeneral_regs_only>: Disable
12914         MPX, MMX, SSE and x87 instructions for -mgeneral-regs-only.
12915         * config/i386/i386.opt (ix86_target_flags): Add new Variable.
12916         (-mgeneral-regs-only): Add new option.
12917         * config/i386/i386.c (ix86_option_override_internal): Don't enable
12918         x87 instructions if only general registers are allowed.
12919         (ix86_target_string): Add ix86_flags argument. Handle additional
12920         flags options through ix86_flags argument.  Update all callers.
12921         * doc/invoke.texi (x86 Options): Document -mgeneral-regs-only.
12923 2016-05-25  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
12925         PR rtl-optimization/66940
12926         * ifcvt.c (noce_get_alt_condition): Check that incrementing or
12927         decrementing desired_val will not overflow before performing these
12928         operations.
12930 2016-05-25  Ilya Verbin  <ilya.verbin@intel.com>
12932         * config/i386/i386-builtin-types.def: Add V16SI_FTYPE_V16SF,
12933         V8DF_FTYPE_V8DF_ROUND, V16SF_FTYPE_V16SF_ROUND, V16SI_FTYPE_V16SF_ROUND.
12934         * config/i386/i386.c (enum ix86_builtins): Add
12935         IX86_BUILTIN_CVTPS2DQ512_MASK, IX86_BUILTIN_FLOORPS512,
12936         IX86_BUILTIN_FLOORPD512, IX86_BUILTIN_CEILPS512, IX86_BUILTIN_CEILPD512,
12937         IX86_BUILTIN_TRUNCPS512, IX86_BUILTIN_TRUNCPD512,
12938         IX86_BUILTIN_CVTPS2DQ512, IX86_BUILTIN_VEC_PACK_SFIX512,
12939         IX86_BUILTIN_FLOORPS_SFIX512, IX86_BUILTIN_CEILPS_SFIX512,
12940         IX86_BUILTIN_ROUNDPS_AZ_SFIX512.
12941         (builtin_description bdesc_args): Add __builtin_ia32_floorps512,
12942         __builtin_ia32_ceilps512, __builtin_ia32_truncps512,
12943         __builtin_ia32_floorpd512, __builtin_ia32_ceilpd512,
12944         __builtin_ia32_truncpd512, __builtin_ia32_cvtps2dq512,
12945         __builtin_ia32_vec_pack_sfix512, __builtin_ia32_roundps_az_sfix512,
12946         __builtin_ia32_floorps_sfix512, __builtin_ia32_ceilps_sfix512.
12947         Change IX86_BUILTIN_CVTPS2DQ512 to IX86_BUILTIN_CVTPS2DQ512_MASK for
12948         __builtin_ia32_cvtps2dq512_mask.
12949         (ix86_expand_args_builtin): Handle V8DF_FTYPE_V8DF_ROUND,
12950         V16SF_FTYPE_V16SF_ROUND, V16SI_FTYPE_V16SF_ROUND, V16SI_FTYPE_V16SF.
12951         (ix86_builtin_vectorized_function): Handle builtins mentioned above.
12952         * config/i386/sse.md
12953         (<mask_codefor>avx512f_fix_notruncv16sfv16si<mask_name><round_name>):
12954         Rename to ...
12955         (avx512f_fix_notruncv16sfv16si<mask_name><round_name>): ... this.
12956         (<mask_codefor>avx512f_cvtpd2dq512<mask_name><round_name>): Rename
12957         to ...
12958         (avx512f_cvtpd2dq512<mask_name><round_name>): ... this.
12959         (avx512f_vec_pack_sfix_v8df): New define_expand.
12960         (avx512f_roundpd512): Rename to ...
12961         (avx512f_round<castmode>512): ... this.  Change iterator.
12962         (avx512f_roundps512_sfix): New define_expand.
12963         (round<mode>2_sfix): Change iterator.
12965 2016-05-25  Nick Clifton  <nickc@redhat.com>
12967         * config/msp430/msp430.c (msp430_attr): Produce an error if a
12968         static interrupt handler is detected.
12969         * config/msp430/msp430.h (LIB_SPEC): Do not use msp430.ld as the
12970         default linker script.
12971         * config/msp430/msp430.md (movpsihi2_lo): New pattern for loading
12972         the low part of a symbolic pointer.
12974 2016-05-25  Richard Biener  <rguenther@suse.de>
12976         PR tree-optimization/71261
12977         * tree-if-conv.c (ifcvt_split_def_stmt): Walk uses on the
12978         interesting stmt instead of immediate uses when looking
12979         for the use operand to replace.
12981 2016-05-25  Martin Liska  <mliska@suse.cz>
12983         * ipa-inline.c (edge_badness): Use 'w/' instead of 'w'.
12985 2016-05-25  Richard Biener  <rguenther@suse.de>
12987         PR tree-optimization/71264
12988         * tree-vect-stmts.c (vect_init_vector): Properly deal with
12989         vector type val.
12991 2016-05-25  Martin Liska  <mliska@suse.cz>
12993         PR tree-optimization/71239
12994         * tree.c (array_at_struct_end_p): Do not call operand_equal_p
12995         if DECL_SIZE is NULL.
12997 2016-05-25  Richard Biener  <rguenther@suse.de>
12999         * timevar.def (TV_TREE_LOOP_IFCVT): Add.
13000         * tree-if-conv.c (pass_data_if_conversion): Use it.
13002 2016-05-25  Bernd Edlinger  <bernd.edlinger@hotmail.de>
13004         * cgraph.c (cgraph_node::get_availability): Fix typo in comment.
13005         * symtab.c (symtab_node::binds_to_current_def_p): Likewise.
13006         * varpool.c (varpool_node::get_availability): Likewise.
13008 2016-05-24  Michael Meissner  <meissner@linux.vnet.ibm.com>
13010         * config/rs6000/altivec.md (VNEG iterator): New iterator for
13011         VNEGW/VNEGD instructions.
13012         (p9_neg<mode>2): New insns for ISA 3.0 VNEGW/VNEGD.
13013         (neg<mode>2): Add expander for V2DImode added in ISA 2.07, and
13014         support for ISA 3.0 VNEGW/VNEGD instructions.
13016 2016-05-24  Cesar Philippidis  <cesar@codesourcery.com>
13018         * gimplify.c (omp_notice_variable): Use zero-length arrays for data
13019         pointers inside OACC_DATA regions.
13020         (gimplify_scan_omp_clauses): Prune firstprivate clause associated
13021         with OACC_DATA, OACC_ENTER_DATA and OACC_EXIT data regions.
13022         (gimplify_adjust_omp_clauses): Fix typo in comment.
13024 2016-05-24  Michael Meissner  <meissner@linux.vnet.ibm.com>
13026         * config/rs6000/altivec.md (VParity): New mode iterator for vector
13027         parity built-in functions.
13028         (p9v_ctz<mode>2): Add support for ISA 3.0 vector count trailing
13029         zeros.
13030         (p9v_parity<mode>2): Likewise.
13031         * config/rs6000/vector.md (VEC_IP): New mode iterator for vector
13032         parity.
13033         (ctz<mode>2): ISA 3.0 expander for vector count trailing zeros.
13034         (parity<mode>2): ISA 3.0 expander for vector parity.
13035         * config/rs6000/rs6000-builtin.def (BU_P9_MISC_1): New macros for
13036         power9 built-ins.
13037         (BU_P9_64BIT_MISC_0): Likewise.
13038         (BU_P9_MISC_0): Likewise.
13039         (BU_P9V_AV_1): Likewise.
13040         (BU_P9V_AV_2): Likewise.
13041         (BU_P9V_AV_3): Likewise.
13042         (BU_P9V_AV_P): Likewise.
13043         (BU_P9V_VSX_1): Likewise.
13044         (BU_P9V_OVERLOAD_1): Likewise.
13045         (BU_P9V_OVERLOAD_2): Likewise.
13046         (BU_P9V_OVERLOAD_3): Likewise.
13047         (VCTZB): Add vector count trailing zeros support.
13048         (VCTZH): Likewise.
13049         (VCTZW): Likewise.
13050         (VCTZD): Likewise.
13051         (VPRTYBD): Add vector parity support.
13052         (VPRTYBQ): Likewise.
13053         (VPRTYBW): Likewise.
13054         (VCTZ): Add overloaded vector count trailing zeros support.
13055         (VPRTYB): Add overloaded vector parity support.
13056         * config/rs6000/rs6000-c.c (altivec_overloaded_builtins): Add
13057         overloaded vector count trailing zeros and parity instructions.
13058         * config/rs6000/rs6000.md (wd mode attribute): Add V1TI and TI for
13059         vector parity support.
13060         * config/rs6000/altivec.h (vec_vctz): Add ISA 3.0 vector count
13061         trailing zeros support.
13062         (vec_cntlz): Likewise.
13063         (vec_vctzb): Likewise.
13064         (vec_vctzd): Likewise.
13065         (vec_vctzh): Likewise.
13066         (vec_vctzw): Likewise.
13067         (vec_vprtyb): Add ISA 3.0 vector parity support.
13068         (vec_vprtybd): Likewise.
13069         (vec_vprtybw): Likewise.
13070         (vec_vprtybq): Likewise.
13071         * doc/extend.texi (PowerPC AltiVec Built-in Functions): Document
13072         the ISA 3.0 vector count trailing zeros and vector parity built-in
13073         functions.
13075 2016-05-24  Kugan Vivekanandarajah  <kuganv@linaro.org>
13077         * tree-ssa-reassoc.c (sort_by_operand_rank): Skip checking gimple_bb
13078         when there is stmt_to_insert.
13080 2016-05-24  Martin Sebor  <msebor@redhat.com>
13082         PR c++/71147
13083         * tree.h (complete_or_array_type_p): New inline function.
13085 2016-05-24  Jakub Jelinek  <jakub@redhat.com>
13087         * config/i386/i386.h (TARGET_AVOID_4BYTE_PREFIXES): Define.
13088         * config/i386/constraints.md (Yr): Test TARGET_AVOID_4BYTE_PREFIXES
13089         rather than X86_TUNE_AVOID_4BYTE_PREFIXES.
13091         * config/i386/sse.md (<sse4_1>_round<ssemodesuffix><avxsizesuffix>):
13092         Limit 1st alternative to noavx isa, split 2nd alternative into one
13093         noavx and one avx alternative, use *x and Bm in the former and
13094         x and m in the latter.
13096         * config/i386/sse.md (vec_set<mode>_0): Use sse4_noavx isa instead
13097         of sse4 for the first alternative, drop %v from the template
13098         and d operand modifier.  Split second alternative into one sse4_noavx
13099         and one avx alternative, use *x instead of *v in the former and v
13100         instead of *v in the latter.
13101         (*sse4_1_extractps): Use noavx isa instead of * for the first
13102         alternative, drop %v from the template.  Split second alternative into
13103         one noavx and one avx alternative, use *x instead of *v in the
13104         former and v instead of *v in the latter.
13105         (<vi8_sse4_1_avx2_avx512>_movntdqa): Guard the first 2 alternatives
13106         with noavx and the last one with avx.
13107         (sse4_1_phminposuw): Guard first alternative with noavx isa,
13108         split the second one into one noavx and one avx alternative,
13109         use *x and Bm in the former and x and m in the latter one.
13110         (<sse4_1>_ptest<mode>): Use noavx instead of * for the first two
13111         alternatives.
13113         * config/i386/sse.md (sse4_1_<code>v8qiv8hi2<mask_name>): Limit
13114         first two alternatives to noavx, use *x instead of *v in the second
13115         one, add avx alternative without *.
13116         (sse4_1_<code>v4qiv4si2<mask_name>, sse4_1_<code>v4hiv4si2<mask_name>,
13117         sse4_1_<code>v2qiv2di2<mask_name>, sse4_1_<code>v2hiv2di2<mask_name>,
13118         sse4_1_<code>v2siv2di2<mask_name>): Likewise.
13120 2016-05-24  Jeff Law  <law@redhat.com>
13122         * tree-ssa-threadbackwards.c (convert_and_register_jump_thread_path):
13123         New function, extracted from...
13124         (fsm_find_control_statement_thread_paths): Here.  Use the new function.
13125         Allow simple copies and constant initializations in the SSA chain.
13127 2016-05-24  Marek Polacek  <polacek@redhat.com>
13129         PR c/71249
13130         * gimplify.c (gimplify_switch_expr): Look into the innermost lexical
13131         scope.
13133 2016-05-24  Jakub Jelinek  <jakub@redhat.com>
13135         PR c++/71257
13136         * tree-vect-stmts.c (vectorizable_simd_clone_call): Handle
13137         SIMD_CLONE_ARG_TYPE_LINEAR_REF_CONSTANT_STEP like
13138         SIMD_CLONE_ARG_TYPE_LINEAR_CONSTANT_STEP.  Add
13139         SIMD_CLONE_ARG_TYPE_LINEAR_VAL_CONSTANT_STEP and
13140         SIMD_CLONE_ARG_TYPE_LINEAR_UVAL_CONSTANT_STEP cases explicitly.
13142 2016-05-24  Richard Biener  <rguenther@suse.de>
13144         PR tree-optimization/71240
13145         * tree-ssa-math-opts.c (init_symbolic_number): Verify the source
13146         has integral type.
13148 2016-05-24  Richard Biener  <rguenther@suse.de>
13150         PR tree-optimization/71230
13151         * tree-ssa-reassoc.c (zero_one_operation): Handle negate special ops.
13153 2016-05-24  Richard Sandiford  <richard.sandiford@arm.com>
13155         * tree-vectorizer.h (vectorizable_comparison): Delete.
13156         * tree-vect-loop.c (vectorizable_reduction): Remove redundant
13157         PURE_SLP_STMT check.
13158         * tree-vect-stmts.c (vectorizable_call): Likewise.
13159         (vectorizable_simd_clone_call): Likewise.
13160         (vectorizable_conversion): Likewise.
13161         (vectorizable_assignment): Likewise.
13162         (vectorizable_shift): Likewise.
13163         (vectorizable_operation): Likewise.
13164         (vectorizable_load): Likewise.
13165         (vectorizable_condition): Likewise.
13166         (vectorizable_store): Likewise.  Assert that we don't have
13167         hybrid SLP.
13168         (vectorizable_comparison): Make static.  Remove redundant
13169         PURE_SLP_STMT check.
13170         (vect_transform_stmt): Assert that we always have an slp_node
13171         if PURE_SLP_STMT.
13173 2016-05-24  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
13175         * config/arm/neon.md (ashldi3_neon):  Replace comparison of INTVAL of
13176         operands[2] against 1 with comparison against CONST1_RTX.
13177         (<shift>di3_neon): Likewise.
13178         * config/arm/predicates.md (const0_operand): Replace with comparison
13179         against CONST0_RTX.
13181 2016-05-24  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
13183         * config/arm/arm.md (ashldi3): Replace comparison of INTVAL of
13184         operands[2] against 1 with comparison against CONST1_RTX.
13185         (ashrdi3): Likewise.
13186         (lshrdi3): Likewise.
13187         (ashlsi3): Replace cast of INTVAL to unsigned HOST_WIDE_INT with
13188         UINTVAL.
13189         (ashrsi3): Likewise.
13190         (lshrsi3): Likewise.
13191         (rotrsi3): Likewise.
13192         (define_split above *compareqi_eq0): Likewise.
13193         (define_split above "prologue"): Likewise.
13194         * config/arm/arm.c (thumb1_size_rtx_costs): Likewise.
13195         * config/arm/predicates.md (shift_operator): Likewise.
13196         (shift_nomul_operator): Likewise.
13197         (sat_shift_operator): Likewise.
13198         (thumb1_cmp_operand): Likewise.
13199         (const_neon_scalar_shift_amount_operand): Replace manual range
13200         check with IN_RANGE.
13201         * config/arm/thumb1.md (define_peephole2 above *thumb_subdi3):
13202         Replace cast of INTVAL to unsigned HOST_WIDE_INT with UINTVAL.
13204 2016-05-24  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
13206         * config/arm/arm.md (andsi3): Replace cast of 1 to HOST_WIDE_INT
13207         with HOST_WIDE_INT_1.
13208         (insv): Likewise.
13209         * config/arm/arm.c (optimal_immediate_sequence): Replace cast of
13210         1 to unsigned HOST_WIDE_INT with HOST_WIDE_INT_1U.
13211         (arm_canonicalize_comparison): Likewise.
13212         (thumb1_rtx_costs): Replace cast of 1 to HOST_WIDE_INT with
13213         HOST_WIDE_INT_1.
13214         (thumb1_size_rtx_costs): Likewise.
13215         (vfp_const_double_index): Replace cast of 1 to unsigned
13216         HOST_WIDE_INT with HOST_WIDE_INT_1U.
13217         (get_jump_table_size): Replace cast of 1 to HOST_WIDE_INT with
13218         HOST_WIDE_INT_1.
13219         (arm_asan_shadow_offset): Replace cast of 1 to unsigned
13220         HOST_WIDE_INT with HOST_WIDE_INT_1U.
13221         * config/arm/neon.md (vec_set<mode>): Replace cast of 1 to
13222         HOST_WIDE_INT with HOST_WIDE_INT_1.
13224 2016-05-24  Marek Polacek  <polacek@redhat.com>
13226         * tree-cfg.h (should_remove_lhs_p): New predicate.
13227         * cgraph.c (cgraph_edge::redirect_call_stmt_to_callee): Use it.
13228         * gimplify.c (gimplify_modify_expr): Likewise.
13229         * tree-cfg.c (verify_gimple_call): Likewise.
13230         * tree-cfgcleanup.c (fixup_noreturn_call): Likewise.
13231         * gimple-fold.c: Include "tree-cfg.h".
13232         (gimple_fold_call): Use should_remove_lhs_p.
13234 2016-05-24  Richard Biener  <rguenther@suse.de>
13236         PR tree-optimization/71253
13237         * cfganal.h (control_dependences): Make robust against edge
13238         and BB removal.
13239         (control_dependences::control_dependences): Remove edge_list argument.
13240         (control_dependences::get_edge): Remove.
13241         (control_dependences::get_edge_src): Add.
13242         (control_dependences::get_edge_dest): Likewise.
13243         (control_dependences::m_el): Make a vector of edge src/dest index.
13244         * cfganal.c (control_dependences::find_control_dependence): Adjust.
13245         (control_dependences::control_dependences): Likewise.
13246         (control_dependences::~control_dependence): Likewise.
13247         (control_dependences::get_edge): Remove.
13248         (control_dependences::get_edge_src): Add.
13249         (control_dependences::get_edge_dest): Likewise.
13250         * tree-ssa-dce.c (mark_control_dependent_edges_necessary): Use
13251         get_edge_src.
13252         (perform_tree_ssa_dce): Adjust.
13253         * tree-loop-distribution.c (create_edge_for_control_dependence): Use
13254         get_edge_src.
13255         (pass_loop_distribution::execute): Adjust.  Do loop destroying
13256         conditional on changed.
13258 2016-05-24  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
13260         PR target/69857
13261         * config/arm/arm.c (gen_operands_ldrd_strd): Remove bogus early
13262         return.  Reindent transformation comment and mention the ARM state
13263         behavior.
13265 2016-05-24  Kugan Vivekanandarajah  <kuganv@linaro.org>
13267         PR middle-end/71252
13268         * tree-ssa-reassoc.c (rewrite_expr_tree_parallel): Add stmt_to_insert
13269         after build_and_add_sum creates new use stmt.
13271 2016-05-24  Richard Sandiford  <richard.sandiford@arm.com>
13273         * tree-vect-stmts.c (vectorizable_load): Reorder checks so that
13274         load_lanes/grouped_load classification comes first.  Don't check
13275         whether the vectorization factor is a multiple of the group size
13276         for load_lanes.
13278 2016-05-24  Richard Sandiford  <richard.sandiford@arm.com>
13280         * tree-vect-data-refs.c (vect_analyze_group_access_1): Set
13281         GROUP_GAP for single-element interleaving.
13282         * tree-vect-stmts.c (vectorizable_load): Remove force_peeling
13283         variable.
13285 2016-05-24  Richard Biener  <rguenther@suse.de>
13287         PR middle-end/70434
13288         PR c/69504
13289         * tree-ssa.c (non_rewritable_mem_ref_base): Make sure to mark
13290         bases which are accessed with non-invariant indices.
13291         * gimple-fold.c (maybe_canonicalize_mem_ref_addr): Re-write
13292         constant index ARRAY_REFs of vectors into BIT_FIELD_REFs.
13294 2016-05-24  Kugan Vivekanandarajah  <kuganv@linaro.org>
13296         PR middle-end/71170
13297         * tree-ssa-reassoc.c (struct operand_entry): Add field stmt_to_insert.
13298         (add_to_ops_vec): Add stmt_to_insert.
13299         (add_repeat_to_ops_vec): Init stmt_to_insert.
13300         (insert_stmt_before_use): New.
13301         (transform_add_to_multiply): Remove mult_stmt insertion and add it
13302         to ops vector.
13303         (get_ops): Init stmt_to_insert.
13304         (maybe_optimize_range_tests): Likewise.
13305         (rewrite_expr_tree): Insert stmt_to_insert before use stmt.
13306         (rewrite_expr_tree_parallel): Likewise.
13307         (reassociate_bb): Likewise.
13309 2016-05-23  Michael Meissner  <meissner@linux.vnet.ibm.com>
13311         PR target/71201
13312         * config/rs6000/altivec.md (altivec_vperm_<mode>_internal): Drop
13313         ISA 3.0 xxperm fusion alternative.
13314         (altivec_vperm_v8hiv16qi): Likewise.
13315         (altivec_vperm_<mode>_uns_internal): Likewise.
13316         (vperm_v8hiv4si): Likewise.
13317         (vperm_v16qiv8hi): Likewise.
13319 2016-05-23  Michael Meissner  <meissner@linux.vnet.ibm.com>
13320             Kelvin Nilsen  <kelvin@gcc.gnu.org>
13322         * config/rs6000/rs6000.c (rs6000_expand_vector_set): Generate
13323         vpermr/xxpermr on ISA 3.0.
13324         (altivec_expand_vec_perm_le): Likewise.
13325         * config/rs6000/altivec.md (UNSPEC_VPERMR): New unspec.
13326         (altivec_vpermr_<mode>_internal): Add VPERMR/XXPERMR support for
13327         ISA 3.0.
13329 2016-05-23  Uros Bizjak  <ubizjak@gmail.com>
13331         * config/i386/i386.h (IS_STACK_MODE): Enable for
13332         TARGET_MIX_SSE_I387.  Rewrite using X87_FLOAT_MODE_P and
13333         SSE_FLOAT_MODE_P macros.
13334         * config/i386/i386.c (ix86_preferred_reload_class): Use
13335         IS_STACK_MODE, INTEGER_CLASS_P, FLOAT_CLASS_P and Q_CLASS_P macros.
13336         Cleanup regclass processing for CONST_DOUBLE_P.
13337         (ix86_preferred_output_reload_class): Use IS_STACK_MODE macro.
13338         (ix86_rtx_costs): Remove redundant TARGET_80387 check
13339         with IS_STACK_MODE macro.
13340         * config/i386/i386.md: Replace SSE_FLOAT_MODE_P (DFmode)
13341         with TARGET_SSE2.
13342         (*movdf_internal): Use IS_STACK_MODE macro.
13343         (*movsf_internal): Ditto.
13345 2016-05-23  Marc Glisse  <marc.glisse@inria.fr>
13347         * match.pd (a * (1 << b), ~x & ~y, ~X ^ ~Y, (X ^ Y) ^ Y, ~ (-A),
13348         ~ (A - 1), ~(~X >> Y), ~(~X >>r Y)): Relax constraints.
13350 2016-05-23  Jeff Law  <law@redhat.com>
13352         * tree-ssa-threadbackward.c (profitable_jump_thread_path): New function
13353         extracted from ...
13354         (fsm_find_control_statement_thread_paths): Call it.
13356 2016-05-23  Martin Jambor  <mjambor@suse.cz>
13358         PR ipa/71234
13359         * ipa-cp.c (ipa_get_indirect_edge_target_1): Only check value of
13360         from_global_constant if t is not NULL.
13362 2016-05-23  Marek Polacek  <polacek@redhat.com>
13364         PR c/49859
13365         * common.opt (Wswitch-unreachable): New option.
13366         * doc/invoke.texi: Document -Wswitch-unreachable.
13367         * gimplify.c (gimplify_switch_expr): Implement the -Wswitch-unreachable
13368         warning.
13370 2016-05-23  Bin Cheng  <bin.cheng@arm.com>
13372         * tree-ssa-address.c (copy_ref_info): Check NULL TMR_STEP when
13373         TMR_INDEX is non-NULL.
13375 2016-05-23  Richard Biener  <rguenther@suse.de>
13377         PR tree-optimization/71230
13378         * tree-ssa-reassoc.c (acceptable_pow_call): Move initial condition...
13379         (try_special_add_to_ops): ... here.  Always test for single-use.
13381 2016-05-23  Martin Jambor  <mjambor@suse.cz>
13383         * hsa-gen.c (gen_hsa_insns_for_switch_stmt): Create an empty
13384         default block if a PHI node in the original one would be resized.
13386 2016-05-23  Venkataramanan Kumar  <venkataramanan.kumar@amd.com>
13388         PR tree-optimization/58135
13389         * tree-vect-slp.c: When group size is not multiple
13390         of vector size, allow splitting of store group at
13391         vector boundary.
13393 2016-05-23  Christophe Lyon  <christophe.lyon@linaro.org>
13395         * config/arm/arm_neon.h (vtst_p16, vtstq_p16): New.
13397 2016-05-22  Jakub Jelinek  <jakub@redhat.com>
13399         * config/i386/sse.md (vec_set_lo_<mode><mask_name>,
13400         vec_set_hi_<mode><mask_name>): Add && <mask_avx512dq_condition>
13401         condition.  For !TARGET_AVX512DQ, emit 32x4 instruction instead
13402         of 64x2.
13404         * config/i386/sse.md (vec_set_lo_v16hi, vec_set_hi_v16hi,
13405         vec_set_lo_v32qi, vec_set_hi_v32qi): Add alternative with
13406         v constraint instead of x and vinserti32x4 insn.
13408         * config/i386/sse.md (i128vldq): New mode iterator.
13409         (avx2_vbroadcasti128_<mode>, avx_vbroadcastf128_<mode>): Add
13410         avx512dq and avx512vl alternatives.
13412         * config/i386/sse.md (avx2_vec_dupv4df): Use v instead of x
13413         constraint, use maybe_evex prefix instead of vex.
13414         (vec_dupv4sf): Use v constraint instead of x for output
13415         operand except for noavx alternative, use Yv constraint
13416         instead of x for input.  Use maybe_evex prefix instead of vex.
13417         (*vec_dupv4si): Likewise.
13418         (*vec_dupv2di): Likewise.
13420 2016-05-22  Kugan Vivekanandarajah  <kuganv@linaro.org>
13422         PR middle-end/40921
13423         * tree-ssa-reassoc.c (try_special_add_to_ops): New.
13424         (linearize_expr_tree): Call try_special_add_to_ops.
13425         (reassociate_bb): Convert MULT_EXPR by (-1) to NEGATE_EXPR.
13427 2016-05-21  Senthil Kumar Selvaraj  <senthil_kumar.selvaraj@atmel.com>
13429         * config/avr/avr.c (avr_expand_prologue): Add INCOMING_FRAME_SP_OFFSET
13430         to computed stack_usage.
13432 2016-05-21  Pitchumani Sivanupandi  <pitchumani.s@atmel.com>
13434         PR target/71103
13435         * config/avr/avr.md (define_expand "mov<mode>"): If the source
13436         operand is subreg (symbol_ref) then move the symbol ref to register.
13438 2016-05-21  Jan Hubicka  <hubicka@ucw.cz>
13440         * tree.c (array_at_struct_end_p): Look through MEM_REF.
13442 2016-05-21  Kugan Vivekanandarajah  <kuganv@linaro.org>
13444         PR middle-end/71179
13445         * tree-ssa-reassoc.c (transform_add_to_multiply): Disallow float
13446         VECTOR type.
13448 2016-05-20  Eric Botcazou  <ebotcazou@adacore.com>
13450         * tree-vrp.c (compare_values_warnv): Simplify handling of symbolic
13451         ranges by calling get_single_symbol and tidy up.  Look more closely
13452         into NAME + CST1 vs CST2 comparisons if type overflow is undefined.
13454 2016-05-20  Jeff Law  <law@redhat.com>
13456         * bitmap.c (bitmap_find_bit): Remove useless test.
13458 2016-05-20  Segher Boessenkool  <segher@kernel.crashing.org>
13460         * function.c (thread_prologue_and_epilogue_insns): Commit the
13461         insertion of the epilogue.
13463 2016-05-20  Martin Jambor  <mjambor@suse.cz>
13465         PR tree-optimization/70884
13466         * tree-sra.c (initialize_constant_pool_replacements): Do not check
13467         should_scalarize_away_bitmap and cannot_scalarize_away_bitmap bits.
13468         (sort_and_splice_var_accesses): Do not consider multiple scalar reads
13469         of constant pool data as a reason for scalarization.
13471 2016-05-20  Eric Botcazou  <ebotcazou@adacore.com>
13473         * config/arm/arm.c (arm_expand_prologue): Set the stack usage to 0
13474         for naked functions.
13475         (thumb1_expand_prologue): Likewise.
13477 2016-05-20  Nathan Sidwell  <nathan@acm.org>
13479         * config/nvptx/nptx.c (nvptx_option_override): Only set
13480         flag_toplevel_reorder, if not explicitly specified.  Set
13481         flag_no_common, unless explicitly specified.
13483 2016-05-20  David Malcolm  <dmalcolm@redhat.com>
13485         * calls.c (can_implement_as_sibling_call_p): Mark param
13486         reg_parm_stack_space with ATTRIBUTE_UNUSED.
13488 2016-05-20  Uros Bizjak  <ubizjak@gmail.com>
13490         * config/i386/i386.c (ix86_rtx_costs) <case CONST_DOUBLE>:
13491         Use IS_STACK_MODE when calculating cost of standard 80387 constants.
13492         Fallthru to CONST_VECTOR case to calculate cost of standard SSE
13493         constants.
13494         <case CONST_WIDE_INT>: Calculate cost of (MEM (SYMBOL_REF)).
13495         (ix86_legitimate_constant_p): Use CASE_CONST_SCALAR_INT
13496         and CASE_CONST_ANY.
13498 2016-05-20  Cesar Philippidis  <cesar@codesourcery.com>
13500         * config/nvptx/nvptx.md (sincossf3): New pattern.
13502 2016-05-20  David Malcolm  <dmalcolm@redhat.com>
13504         * calls.c (maybe_complain_about_tail_call): New function.
13505         (initialize_argument_information): Call
13506         maybe_complain_about_tail_call when clearing *may_tailcall.
13507         (can_implement_as_sibling_call_p): Call
13508         maybe_complain_about_tail_call when returning false.
13509         (expand_call): Read CALL_EXPR_MUST_TAIL_CALL and, if set,
13510         ensure try_tail_call is set.  Call maybe_complain_about_tail_call
13511         if tail-call optimization fails.
13512         * cfgexpand.c (expand_call_stmt): Initialize
13513         CALL_EXPR_MUST_TAIL_CALL from gimple_call_must_tail_p.
13514         * gimple-pretty-print.c (dump_gimple_call): Dump
13515         gimple_call_must_tail_p.
13516         * gimple.c (gimple_build_call_from_tree): Call
13517         gimple_call_set_must_tail with the value of
13518         CALL_EXPR_MUST_TAIL_CALL.
13519         * gimple.h (enum gf_mask): Add GF_CALL_MUST_TAIL_CALL.
13520         (gimple_call_set_must_tail): New function.
13521         (gimple_call_must_tail_p): New function.
13522         * print-tree.c (print_node): Update printing of TREE_STATIC
13523         to reflect its use for CALL_EXPR_MUST_TAIL_CALL.
13524         * tree-core.h (struct tree_base): Add MUST_TAIL_CALL to the
13525         trailing comment listing applicable flags.
13526         * tree.h (CALL_EXPR_MUST_TAIL_CALL): New macro.
13528 2016-05-20  David Malcolm  <dmalcolm@redhat.com>
13530         * calls.c (expand_call): Move "Rest of purposes for tail call
13531         optimizations to fail" to...
13532         (can_implement_as_sibling_call_p): ...this new function, and
13533         split into multiple "if" statements.
13535 2016-05-20  Jan Hubicka  <hubicka@ucw.cz>
13537         * cfgloop.h (expected_loop_iterations_unbounded,
13538         expected_loop_iterations): Unconstify.
13539         * cfgloopanal.c (expected_loop_iterations_unbounded): Sanity check the
13540         profile with known upper bound; return 3 when profile is absent.
13541         (expected_loop_iterations): Update.
13543 2016-05-20  Jan Hubicka  <hubicka@ucw.cz>
13545         * loop-doloop.c (doloop_optimize): Use get_estimated_loop_iterations_int
13546         and get_max_loop_iterations_int.
13548 2016-05-20  Jan Hubicka  <hubicka@ucw.cz>
13550         * tree-ssa-loop-niter.c (idx_infer_loop_bounds): We can not produce
13551         realistic upper bounds here.
13553 2016-05-20  Jakub Jelinek  <jakub@redhat.com>
13555         PR c++/71210
13556         * gimple-fold.c (gimple_fold_call): Do not remove lhs of noreturn
13557         calls if the LHS is variable length or has addressable type.
13558         If targets[0]->decl is a noreturn call with void return type and
13559         zero arguments, adjust fntype and remove lhs in that case.
13561 2016-05-20  Marc Glisse  <marc.glisse@inria.fr>
13563         PR tree-optimization/71079
13564         PR tree-optimization/71206
13565         * match.pd ((X ^ Y) ^ (X ^ Z)): Convert the arguments.
13567 2016-05-20  Prathamesh Kulkarni  <prathamesh.kulkarni@linaro.org>
13569         * tree-vectorizer.c (get_vec_alignment_for_decl): New static function.
13570         (get_vec_alignment_for_array_decl): Likewise.
13571         (get_vec_alignment_for_record_decl): Likewise.
13572         (increase_alignment::execute): Move code to find alignment to
13573         get_vec_alignment_for_array_decl and call get_vec_alignment_for_decl.
13574         (type_align_map): New hash_map.
13576 2016-05-20  Richard Guenther  <rguenther@suse.de>
13578         PR tree-optimization/29756
13579         * tree.def (BIT_INSERT_EXPR): New tcc_expression tree code.
13580         * expr.c (expand_expr_real_2): Handle BIT_INSERT_EXPR.
13581         * fold-const.c (operand_equal_p): Likewise.
13582         (fold_ternary_loc): Add constant folding of BIT_INSERT_EXPR.
13583         * gimplify.c (gimplify_expr): Handle BIT_INSERT_EXPR.
13584         * tree-inline.c (estimate_operator_cost): Likewise.
13585         * tree-pretty-print.c (dump_generic_node): Likewise.
13586         * tree-ssa-operands.c (get_expr_operands): Likewise.
13587         * cfgexpand.c (expand_debug_expr): Likewise.
13588         * gimple-pretty-print.c (dump_ternary_rhs): Likewise.
13589         * gimple.c (get_gimple_rhs_num_ops): Handle BIT_INSERT_EXPR.
13590         * tree-cfg.c (verify_gimple_assign_ternary): Verify BIT_INSERT_EXPR.
13591         * tree-ssa.c (non_rewritable_lvalue_p): We can rewrite
13592         vector inserts using BIT_FIELD_REF or MEM_REF on the lhs.
13593         (execute_update_addresses_taken): Do it.
13595 2016-05-20  Richard Biener  <rguenther@suse.de>
13597         PR tree-optimization/71185
13598         * tree-ssa-loop-prefetch.c (gather_memory_references): Drop
13599         register operations.
13601 2016-05-20  Richard Biener  <rguenther@suse.de>
13603         * tree-if-conv.c (add_bb_predicate_gimplified_stmts): Use
13604         gimple_seq_add_seq_without_update.
13605         (release_bb_predicate): Assert we have no operands to free.
13606         (if_convertible_loop_p_1): Calculate post dominators later.
13607         Do not free BB predicates here.
13608         (combine_blocks): Do not recompute BB predicates.
13609         (version_loop_for_if_conversion): Save BB predicates around
13610         loop versioning.
13612 2016-05-19  Segher Boessenkool  <segher@kernel.crashing.org>
13614         * function.c (make_epilogue_seq): Remove epilogue_end parameter.
13615         (thread_prologue_and_epilogue_insns): Remove bb_flags.  Restructure
13616         code.  Ignore sibcalls on EDGE_IGNORE edges.
13617         * shrink-wrap.c (handle_simple_exit): New function.  Set EDGE_IGNORE
13618         on edges for sibcalls that run without prologue.  The rest of the
13619         function is combined from...
13620         (fix_fake_fallthrough_edge): ... this, and ...
13621         (try_shrink_wrapping): ... a part of this.  Remove the bb_with
13622         function argument, make it a local variable.
13624 2016-05-19  Sandra Loosemore  <sandra@codesourcery.com>
13626         * config/i386/cygming.h (DWARF2_UNWIND_INFO): Allow
13627         --disable-sjlj-exceptions for TARGET_BI_ARCH to select DWARF-2 EH
13628         for 32-bit mode and SEH for 64-bit.
13629         * config/i386/mingw32.h (SHARED_LIBGCC_UNDEFS_SPEC): Handle
13630         TARGET_64BIT_DEFAULT.
13632 2016-05-19  Ryan Burn  <contact@rnburn.com>
13634         * Makefile.in (GTFILES): Add cilk.h and cilk-common.c.
13635         * gengtype.c (open_base_files): Add cilk.h to ifiles.
13637 2016-05-19  Uros Bizjak  <ubizjak@gmail.com>
13639         * sched-deps.c (sched_analyze_2) <case TRAP_IF>: Also
13640         force pending loads from memory.
13642 2016-05-19  Kelvin Nilsen  <kelvin@gcc.gnu.org>
13644         * config/rs6000/altivec.md (UNSPEC_DARN): New unspec constant.
13645         (UNSPEC_DARN_32): New unspec constant.
13646         (UNSPEC_DARN_RAW): New unspec constant.
13647         (darn_32): New instruction.
13648         (darn_raw): New instruction.
13649         (darn): New instruction.
13650         * config/rs6000/rs6000-builtin.def (RS6000_BUILTIN_0): Add
13651         support and documentation for this macro.
13652         (BU_P9_MISC_1): New macro definition.
13653         (BU_P9_64BIT_MISC_0): New macro definition.
13654         (BU_P9_MISC_0): New macro definition.
13655         (darn_32): New builtin definition.
13656         (darn_raw): New builtin definition.
13657         (darn): New builtin definition.
13658         * config/rs6000/rs6000.c: Add #define RS6000_BUILTIN_0 and #undef
13659         RS6000_BUILTIN_0 directives to surround each occurrence of
13660         #include "rs6000-builtin.def".
13661         (rs6000_builtin_mask_calculate): Add in the RS6000_BTM_MODULO and
13662         RS6000_BTM_64BIT flags to the returned mask, depending on
13663         configuration.
13664         (def_builtin): Correct an error in the assignments made to the
13665         debugging variable attr_string.
13666         (rs6000_expand_builtin): Add support for no-operand built-in
13667         functions.
13668         (builtin_function_type): Remove fatal_error assertion that is no
13669         longer valid.
13670         (rs6000_common_init_builtins): Add support for no-operand built-in
13671         functions.
13672         * config/rs6000/rs6000.h (RS6000_BTM_MODULO): New macro
13673         definition.
13674         (RS6000_BTM_PURE): Enhance comment to clarify intent of this flag
13675         definition.
13676         (RS6000_BTM_64BIT): New macro definition.
13677         * doc/extend.texi: Document __builtin_darn (void),
13678         __builtin_darn_raw (void), and __builtin_darn_32 (void) built-in
13679         functions.
13681 2016-05-19  Jan Hubicka  <hubicka@ucw.cz>
13683         * tree-vect-loop.c (vect_analyze_loop_2): Use also
13684         max_loop_iterations_int.
13686 2016-05-19  Marek Polacek  <polacek@redhat.com>
13688         PR tree-optimization/71031
13689         * tree-vrp.c (extract_range_from_binary_expr_1): Turn assert into a
13690         condition and adjust the code a bit.
13692 2016-05-19  Martin Liska  <mliska@suse.cz>
13694         * tree-vect-stmts.c (vectorizable_simd_clone_call): Utilize
13695         auto_vec instead of vec.
13697 2016-05-19  Martin Liska  <mliska@suse.cz>
13699         * tree-parloops.c (oacc_entry_exit_ok): Release a vector.
13701 2016-05-19  Martin Liska  <mliska@suse.cz>
13703         * tree-if-conv.c (ifcvt_repair_bool_pattern): Utilize auto_vecs.
13705 2016-05-19  Martin Liska  <mliska@suse.cz>
13707         * ipa-pure-const.c (set_function_state): Remove an existing
13708         funct_state.
13709         (remove_node_data): Do not free it as it's released
13710         in set_function_state.
13712 2016-05-19  Martin Liska  <mliska@suse.cz>
13714         * tree-vect-slp.c (vect_attempt_slp_rearrange_stmts): Release
13715         bitmap.
13717 2016-05-19  Martin Liska  <mliska@suse.cz>
13719         * omp-simd-clone.c (simd_clone_adjust): Release vector.
13721 2016-05-19  Martin Liska  <mliska@suse.cz>
13723         * tree-ssa-reassoc.c (eliminate_duplicate_pair): Truncate
13724         an auto_vec instead of re-creating it.
13726 2016-05-19  Martin Liska  <mliska@suse.cz>
13728         * tree-ssa-loop-prefetch.c (determine_loop_nest_reuse): Use
13729         auto_vec instead of vec.
13731 2016-05-19  Martin Liska  <mliska@suse.cz>
13733         * lto-section-in.c (lto_get_section_data): Call
13734         lto_check_version with additional argument.
13735         * lto-streamer.c (lto_check_version): Add new argument.
13736         * lto-streamer.h (lto_check_version): Likewise.
13738 2016-05-19  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
13740         * config/arm/arm.c (arm_new_rtx_costs, SIGN_EXTEND case):
13741         Don't add cost of inner memory when handling sign-extended loads.
13743 2016-05-19  Ilya Enkovich  <ilya.enkovich@intel.com>
13745         PR rtl-optimization/71148
13746         * cse.c (cse_main): Free dominance info.
13747         (rest_of_handle_cse): Don't free dominance info.
13748         (rest_of_handle_cse2): Likewise.
13749         (rest_of_handle_cse_after_global_opts): Likewise.
13751 2016-05-19  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
13753         PR target/71056
13754         * config/arm/arm-builtins.c (arm_builtin_vectorized_function): Return
13755         NULL_TREE early if NEON is not available.  Remove now redundant check
13756         in ARM_CHECK_BUILTIN_MODE.
13758 2016-05-19  Maxim Ostapenko  <m.ostapenko@samsung.com>
13760         PR sanitizer/64354
13761         * cppbuiltin.c (define_builtin_macros_for_compilation_flags): Add new
13762         builtin __SANITIZE_THREAD__ macros for fsanitize=thread switch.
13763         * doc/cpp.texi: Document new macros.
13765 2016-05-19  Bin Cheng  <bin.cheng@arm.com>
13767         PR tree-optimization/69848
13768         * tree-vect-loop.c (vectorizable_reduction): Don't factor
13769         comparison expr out of VEC_COND_EXPR for COND_REDUCTION.
13771 2016-05-19  Segher Boessenkool  <segher@kernel.crashing.org>
13773         * function.c (thread_prologue_and_epilogue_insn): Move the
13774         "goto epilogue_done" one block later.
13776 2016-05-19  Richard Biener  <rguenther@suse.de>
13778         PR tree-optimization/70729
13779         * passes.def: Move LIM pass before PRE.  Remove no longer
13780         required copyprop and move first DCE out of the loop pipeline.
13782 2016-05-18  David Malcolm  <dmalcolm@redhat.com>
13784         PR driver/69265
13785         * Makefile.in (GCC_OBJS): Move spellcheck.o to...
13786         (OBJS-libcommon-target): ...here.
13787         * opts-common.c: Include spellcheck.h.
13788         (cmdline_handle_error): Build a vec of valid options and use it
13789         to suggest provide hints for misspelled arguments.
13791 2016-05-18  Jakub Jelinek  <jakub@redhat.com>
13793         PR c++/71100
13794         * cgraph.c (cgraph_edge::redirect_call_stmt_to_callee): Don't drop
13795         lhs if it has TREE_ADDRESSABLE type.
13797 2016-05-18  Uros Bizjak  <ubizjak@gmail.com>
13799         PR target/71145
13800         * config/alpha/alpha.md (trap): Add (use (reg:DI 29)).
13801         (*exception_receiver_1): Return "#" for TARGET_EXPLICIT_RELOCS.
13803 2016-05-18  Martin Jambor  <mjambor@suse.cz>
13805         PR ipa/69708
13806         * ipa-cp.c (ipa_get_jf_pass_through_result): Allow non-ip constant
13807         input for NOP_EXPR pass-through functions.
13808         * ipa-prop.c (ipa_compute_jump_functions_for_edge): Allow
13809         aggregate global constant VAR_DECLs in constant jump functions.
13811 2016-05-18  Martin Jambor  <mjambor@suse.cz>
13813         PR ipa/69708
13814         * ipa-prop.c (parm_preserved_before_stmt_p): Return true for loads
13815         from TREE_READONLY parameters.
13817 2016-05-18  Martin Jambor  <mjambor@suse.cz>
13819         PR ipa/69708
13820         * cgraph.h (cgraph_indirect_call_info): New field
13821         guaranteed_unmodified.
13822         * ipa-cp.c (ipa_get_indirect_edge_target_1): Also pass parameter value
13823         to ipa_find_agg_cst_for_param, check guaranteed_unmodified when
13824         appropriate.
13825         * ipa-inline-analysis.c (evaluate_conditions_for_known_args): Also
13826         pass the parameter value to ipa_find_agg_cst_for_param.
13827         * ipa-prop.c (ipa_load_from_parm_agg): New parameter
13828         guaranteed_unmodified, store AA results there instead of bailing out
13829         if present.
13830         (ipa_note_param_call): Also initialize guaranteed_unmodified flag.
13831         (ipa_analyze_indirect_call_uses): Also set guaranteed_unmodified flag.
13832         (find_constructor_constant_at_offset): New function.
13833         (ipa_find_agg_cst_from_init): Likewise.
13834         (ipa_find_agg_cst_for_param): Also seearch for aggregate values in
13835         static initializers of contants, report back through a new paameter
13836         from_global_constant if that was the case.
13837         (try_make_edge_direct_simple_call): Also pass parameter value to
13838         ipa_find_agg_cst_for_param, check guaranteed_unmodified when
13839         appropriate.
13840         (ipa_write_indirect_edge_info): Stream new flag guaranteed_unmodified.
13841         (ipa_read_indirect_edge_info): Likewise.
13842         * ipa-prop.h (ipa_find_agg_cst_for_param): Update declaration.
13843         (ipa_load_from_parm_agg): Likewise.
13845 2016-05-18  Jiong Wang  <jiong.wang@arm.com>
13847         PR rtl-optimization/71150
13848         * lra-constraint (process_addr_reg): Guard "in_class_p" with REG_P
13849         check.
13851 2016-05-18  Michael Meissner  <meissner@linux.vnet.ibm.com>
13853         PR target/70915
13854         * config/rs6000/constraints.md (wE constraint): New constraint
13855         for a vector constant that can be loaded with XXSPLTIB.
13856         (wM constraint): New constraint for a vector constant of a 1's.
13857         (wS constraint): New constraint for a vector constant that can be
13858         loaded with XXSPLTIB and a vector sign extend instruction.
13859         * config/rs6000/predicates.md (xxspltib_constant_split): New
13860         predicates for wE/wS constraints.
13861         (xxspltib_constant_nosplit): Likewise.
13862         (easy_vector_constant): Add support for constants that can be
13863         loaded via XXSPLTIB.
13864         (all_ones_constant): New predicate for vector constant with all
13865         1's set.
13866         (splat_input_operand): Add support for ISA 3.0 word splat operations.
13867         * config/rs6000/rs6000.c (xxspltib_constant_p): New function to
13868         return if a constant can be loaded with the ISA 3.0 XXSPLTIB
13869         instruction and possibly with a sign extension.
13870         (output_vec_const_move): Add support for XXSPLTIB. If we are
13871         loading up 0/-1 into Altivec registers, prefer using VSPLTISW
13872         instead of XXLXOR/XXLORC.
13873         (rs6000_expand_vector_init): Add support for ISA 3.0 word splat
13874         operations.
13875         (rs6000_legitimize_reload_address): Likewise.
13876         (rs6000_output_move_128bit): Use output_vec_const_move to emit
13877         constants.
13878         * config/rs6000/vsx.md (VSX_M): Add TImode (if -mvsx-timode) and
13879         combine VSX_M and VSX_M2 into one iterator.
13880         (VSX_M2): Likewise.
13881         (VSINT_84): New iterators for loading constants with XXSPLTIB.
13882         (VSINT_842): Likewise.
13883         (UNSPEC_VSX_SIGN_EXTEND): New UNSPEC.
13884         (xxspltib_v16qi): New insns to load up constants with the ISA 3.0
13885         XXSPLTIB instruction.
13886         (xxspltib_<mode>_nosplit): Likewise.
13887         (xxspltib_<mode>_split): New insn to load up constants with
13888         XXSPLTIB and a sign extend instruction.
13889         (vsx_mov<mode>): Replace single move that handled all vector types
13890         with separate 32-bit and 64-bit moves.  Combine the movti_<bit>
13891         moves (when -mvsx-timode is in effect) into the main vector
13892         moves.  Eliminate separate moves for <VSr> <VSa>, where the
13893         preferred register class (<VSr>) is listed first, and the
13894         secondary register class (<VSa>) is listed second with a '?' to
13895         discourage use.  Prefer loading 0/-1 in any VSX register for ISA
13896         3.0, and Altivec registers for ISA 2.06/2.07 (PR target/70915) so
13897         that if the register was involved in a slow operation, the
13898         clear/set operation does not wait for the slow operation to
13899         finish.  Adjust the length attributes for 32-bit mode.  Use
13900         rs6000_output_move_128bit and drop the use of the string
13901         instructions for 32-bit movti when -mvsx-timode is in effect.  Use
13902         spacing so that the alternatives and attributes don't generate
13903         long lines, and put things in columns, so that it is easier to
13904         match up the operands and attributes with the insn alternatives.
13905         (vsx_mov<mode>_64bit): Likewise.
13906         (vsx_mov<mode>_32bit): Likewise.
13907         (vsx_movti_64bit): Fold movti into normal vector moves.
13908         (vsx_movti_32bit): Likewise.
13909         (vsx_splat_<mode>, V4SI/V4SF modes): Add support for ISA 3.0 word
13910         splat instructions.
13911         (vsx_splat_v4si_internal): Likewise.
13912         (vsx_splat_v4sf_internal): Likewise.
13913         (vector fusion peepholes): Use VSX_M instead of VSX_M2.
13914         (vsx_sign_extend_qi_<mode>): New ISA 3.0 instructions to sign
13915         extend vector elements.
13916         (vsx_sign_extend_hi_<mode>): Likewise.
13917         (vsx_sign_extend_si_v2di): Likewise.
13918         * config/rs6000/rs6000-protos.h (xxspltib_constant_p): Add
13919         declaration.
13920         * doc/md.texi (PowerPC constraints): Document the wE, wM, and wS
13921         constraints.  Add trailing period to wL documentation.
13923 2016-05-18  Richard Sandiford  <richard.sandiford@arm.com>
13925         PR middle-end/71020
13926         * tree-dfa.h (replace_abnormal_ssa_names): Declare.
13927         * tree-dfa.c (replace_abnormal_ssa_names): New function.
13928         * tree-call-cdce.c: Include tree-dfa.h.
13929         (can_guard_call_p): New function, extracted from...
13930         (can_use_internal_fn): ...here.
13931         (shrink_wrap_one_built_in_call_with_conds): Remove failure path
13932         and return void.
13933         (shrink_wrap_one_built_in_call): Likewise.
13934         (use_internal_fn): Likewise.
13935         (shrink_wrap_conditional_dead_built_in_calls): Update accordingly
13936         and return void.  Call replace_abnormal_ssa_names.
13937         (pass_call_cdce::execute): Check can_guard_call_p during the
13938         initial walk.  Assume shrink_wrap_conditional_dead_built_in_calls
13939         will always change something.
13941 2016-05-18  Martin Jambor  <mjambor@suse.cz>
13943         PR ipa/70646
13944         * ipa-prop.c (determine_locally_known_aggregate_parts): Bail out early
13945         if parameter PARAM_IPA_MAX_AGG_ITEMS is zero.
13947 2016-05-18  Martin Jambor  <mjambor@suse.cz>
13949         PR ipa/70646
13950         * ipa-inline.h (condition): New field size.
13951         * ipa-inline-analysis.c (add_condition): New parameter SIZE, use it
13952         for comaprison and store it into the new condition.
13953         (evaluate_conditions_for_known_args): Use condition size to check
13954         access sizes for all but CHANGED conditions.
13955         (unmodified_parm_1): New parameter size_p, store access size into it.
13956         (unmodified_parm): Likewise.
13957         (unmodified_parm_or_parm_agg_item): Likewise.
13958         (eliminated_by_inlining_prob): Pass NULL to unmodified_parm as size_p.
13959         (set_cond_stmt_execution_predicate): Extract access sizes and store
13960         them to conditions.
13961         (set_switch_stmt_execution_predicate): Likewise.
13962         (will_be_nonconstant_expr_predicate): Likewise.
13963         (will_be_nonconstant_predicate): Likewise.
13964         (inline_read_section): Stream condition size.
13965         (inline_write_summary): Likewise.
13967 2016-05-18  Richard Biener  <rguenther@suse.de>
13969         * tree-ssa-loop-im.c (determine_max_movement): Properly add
13970         condition cost to PHI cost instead of total_cost.
13972 2016-05-18  Martin Liska  <mliska@suse.cz>
13974         PR fortran/70856
13975         * ipa-icf.c (sem_variable::merge): Set DECL_PT_UID for
13976         merged variables.
13978 2016-05-18  Richard Biener  <rguenther@suse.de>
13980         * lto-streamer.h (LTO_major_version): Bump to 6.
13982 2016-05-18  Segher Boessenkool  <segher@kernel.crashing.org>
13984         * function.c (make_split_prologue_seq, make_prologue_seq,
13985         make_epilogue_seq): New functions, factored out from...
13986         (thread_prologue_and_epilogue_insns): Here.
13988 2016-05-18  Segher Boessenkool  <segher@kernel.crashing.org>
13990         * function.c (rest_of_handle_thread_prologue_and_epilogue): Call
13991         cleanup_cfg with CLEANUP_EXPENSIVE after shrink-wrapping instead
13992         of before.  Add a comment.
13994 2016-05-18  Bin Cheng  <bin.cheng@arm.com>
13996         * tree-ssa-loop-ivopts.c (get_computation_cost_at): Check invariant
13997         expression pointer, not pointer to the pointer.
13999 2016-05-18  Jakub Jelinek  <jakub@redhat.com>
14001         * config/i386/sse.md (pbroadcast_evex_isa): New mode attr.
14002         (avx2_pbroadcast<mode>): Add another alternative with v instead
14003         of x constraints in it, using <pbroadcast_evex_isa> isa.
14004         (avx2_pbroadcast<mode>_1): Similarly, add two such alternatives.
14006         * config/i386/sse.md (<ssse3_avx2>_palignr<mode>): Use
14007         constraint x instead of v in second alternative, add avx512bw
14008         alternative.
14010         * config/i386/sse.md (<ssse3_avx2>_pshufb<mode>3<mask_name>): Use
14011         constraint x instead of v in second alternative, add avx512bw
14012         alternative.
14014         * config/i386/sse.md (*<ssse3_avx2>_pmulhrsw<mode>3<mask_name>): Use
14015         constraint x instead of v in second alternative, add avx512bw
14016         alternative.
14018         * config/i386/sse.md (avx2_pmaddubsw256, ssse3_pmaddubsw128): Add
14019         avx512bw alternative.
14021 2016-05-18  Kirill Yukhin  <kirill.yukhin@intel.com>
14023         * config/i386/sse.md (define_insn "*andnot<mode>3"): Extend static
14024         array to 128 chars.
14025         (define_insn "*andnottf3"): Ditto.
14026         (define_insn "*<code><mode>3"/any_logic): Ditto.
14027         (define_insn "*<code>tf3"/any_logic): Ditto.
14028         (define_insn "sse2_storehpd"): Use Yv constraint for scalar
14029         operand to block AVX-512VL insn variant emit when it is not enabled.
14031 2016-05-18  Kirill Yukhin  <kirill.yukhin@intel.com>
14033         * config/i386/sse.md (define_insn "*vec_concatv2sf_sse4_1"): Use 'Yv'
14034         constraint fot SF mode.
14036 2016-05-18  Petr Murzin  <petr.murzin@intel.com>
14037             Kirill Yukhin  <kirill.yukhin@intel.com>
14039         * config/i386/sse.md (define_insn "srcp14<mode>"): Use proper operand
14040         modifiers.
14041         (define_insn "rsqrt14<mode>"): Ditto.
14042         (define_insn "<mask_codefor>avx512dq_cvtps2qqv2di<mask_name>"): Ditto.
14043         (define_insn "<fixsuffix>fix_truncv2sfv2di2<mask_name>"): Ditto.
14044         (define_insn "avx512f_<code>v8div16qi2_mask_store"): Ditto.
14045         (define_insn "vec_set_hi_<mode><mask_name>"): Ditto.
14046         (define_insn "<mask_codefor>avx512dq_broadcast<mode><mask_name>"):
14047         Ditto.
14048         (define_insn "*avx512f_gatherdi<mode>"): Ditto.
14049         (define_insn "*avx512f_scatterdi<mode>"): Ditto.
14050         * config/i386/i386.c (ix86_print_operand): Expand check for size
14051         override codes for Intel syntax.
14053 2016-05-18  Richard Biener  <rguenther@suse.de>
14055         PR tree-optimization/71168
14056         * tree-loop-distribution.c (distribute_loop): Move *destroy_p
14057         initialization earlier.
14059 2016-05-18  James Greenhalgh  <james.greenhalgh@arm.com>
14061         * config/aarch64/aarch64-simd.md
14062         (aarch64_reduc_plus_internal<mode>): Rename to...
14063         (reduc_plus_scal): ...This, and remove previous implementation.
14065 2016-05-18  Richard Biener  <rguenther@suse.de>
14067         * passes.def: Put late dse and cd_dce in canonical order.
14069 2016-05-17  Jan Hubicka  <hubicka@ucw.cz>
14071         * ipa-inline-transform.c (preserve_function_body_p): Look for
14072         first non-thunk clone.
14073         (save_function_body): Save into first non-thunk.
14074         * lto-cgraph.c (lto_output_edge): When streaming thunk do not look
14075         up call stmt id.
14076         (lto_output_node): Inline thunks don't need body in every
14077         partition.
14078         * lto-streamer-in.c: Do not fixup thunk clones.
14079         * cgraphclones.c (cgraph_node::create_edge_including_clone): Skip
14080         thunks.
14081         * tree-inline.c (copy_bb): Be prepared for target node to be new after
14082         folding suceeds.
14084 2016-05-17  Kugan Vivekanandarajah  <kuganv@linaro.org>
14086         PR middle-end/63586
14087         * tree-ssa-reassoc.c (transform_add_to_multiply): New.
14088         (reassociate_bb): Call transform_add_to_multiply.
14090 2016-05-17  Kugan Vivekanandarajah  <kuganv@linaro.org>
14092         * config/aarch64/aarch64.c (all_extensions): Removed unused
14093         static variable.
14095 2016-05-17  Nathan Sidwell  <nathan@acm.org>
14097         * config/nvptx/nvptx.c (nvptx_function_arg_boundary): New.
14098         (TARGET_FUNCTION_ARG_BOUNDARY): Override.
14100 2016-05-17  Mikhail Maltsev  <maltsevm@gmail.com>
14102         PR tree-optimization/54579
14103         PR middle-end/55299
14104         * match.pd (~(~X >> Y), ~(~X >>r Y), ~(~X <<r Y)): New patterns.
14106 2016-05-17  Marek Polacek  <polacek@redhat.com>
14108         PR ipa/71146
14109         * tree-inline.c (expand_call_inline): Call
14110         maybe_remove_unused_call_args.
14112 2016-05-17  Jim Wilson  <jim.wilson@linaro.org>
14114         * doc/cpp.texi (__GNUC__): Major version changes are no longer rare.
14115         * doc/invoke.texi (-mnan=2008): Change signalling to signaling.
14116         * doc/md.texi (fmin@var{m}3): Likewise.
14118 2016-05-17  Marc Glisse  <marc.glisse@inria.fr>
14120         * match.pd (X & C): New transformation.
14122 2016-05-17  Marc Glisse  <marc.glisse@inria.fr>
14124         * match.pd (~X & Y): New transformation.
14126 2016-05-17  Marc Glisse  <marc.glisse@inria.fr>
14128         * tree-vrp.c (simplify_truth_ops_using_ranges): Set range
14129         information for new SSA_NAME.
14130         (simplify_conversion_using_ranges): Get range through get_range_info
14131         instead of get_value_range.
14133 2016-05-17  Jiong Wang  <jiong.wang@arm.com>
14135         * config/aarch64/arm_neon.h (vmvn_s8): Reimplement using C operator.
14136         Remove inline assembly.
14137         (vmvn_s16): Likewise.
14138         (vmvn_s32): Likewise.
14139         (vmvn_u8): Likewise.
14140         (vmvn_u16): Likewise.
14141         (vmvn_u32): Likewise.
14142         (vmvnq_s8): Likewise.
14143         (vmvnq_s16): Likewise.
14144         (vmvnq_s32): Likewise.
14145         (vmvnq_u8): Likewise.
14146         (vmvnq_u16): Likewise.
14147         (vmvnq_u32): Likewise.
14148         (vmvn_p8): Likewise.
14149         (vmvnq_p16): Likewise.
14151 2016-05-17  Jiong Wang  <jiong.wang@arm.com>
14153         * config/aarch64/aarch64-simd.md (vmul_n_f32): Remove inline assembly.
14154         Use builtin.
14155         (vmul_n_s16): Likewise.
14156         (vmul_n_s32): Likewise.
14157         (vmul_n_u16): Likewise.
14158         (vmul_n_u32): Likewise.
14159         (vmulq_n_f32): Likewise.
14160         (vmulq_n_f64): Likewise.
14161         (vmulq_n_s16): Likewise.
14162         (vmulq_n_s32): Likewise.
14163         (vmulq_n_u16): Likewise.
14164         (vmulq_n_u32): Likewise.
14166 2016-05-17  Jiong Wang  <jiong.wang@arm.com>
14168         * config/aarch64/aarch64-simd.md (*aarch64_mul3_elt_to_128df): Extend
14169         to all supported modes.  Rename to "*aarch64_mul3_elt_from_dup".
14171 2016-05-17  Jiong Wang  <jiong.wang@arm.com>
14173         * config/aarch64/aarch64-simd.md (*aarch64_fma4_elt_to_128df): Rename
14174         to *aarch64_fma4_elt_from_dup<mode>.
14175         (*aarch64_fnma4_elt_to_128df): Rename to
14176         *aarch64_fnma4_elt_from_dup<mode>.
14177         * config/aarch64/arm_neon.h (vfma_n_f64): New.
14178         (vfms_n_f32): Likewise.
14179         (vfms_n_f64): Likewise.
14180         (vfmsq_n_f32): Likewise.
14181         (vfmsq_n_f64): Likewise.
14183 2016-05-17  Gerald Pfeifer  <gerald@pfeifer.com>
14185         * wide-int.h: Change fixed_wide_int_storage from class to struct.
14187 2016-05-17  Richard Biener  <rguenther@suse.de>
14189         PR tree-optimization/71132
14190         * tree-loop-distribution.c (create_rdg_cd_edges): Pass in loop.
14191         Only add control dependences for blocks in the loop.
14192         (build_rdg): Adjust.
14193         (generate_code_for_partition): Return whether loop should
14194         be destroyed and delay that.
14195         (distribute_loop): Likewise.
14196         (pass_loop_distribution::execute): Record loops to be destroyed
14197         and perform delayed destroying of loops.
14199 2016-05-17  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
14201         PR target/70809
14202         * config/aarch64/aarch64-simd.md (aarch64_vmls<mode>): Delete.
14204 2016-05-17  James Greenhalgh  <james.greenhalgh@arm.com>
14206         * config/aarch64/aarch64-elf.h (ASM_OUTPUT_DEF): Delete.
14208 2016-05-17  Ilya Enkovich  <ilya.enkovich@intel.com>
14210         PR target/71114
14211         * config/i386/i386.c (dimode_scalar_chain::convert_op): Fix
14212         insertion point for instructions generated by validize_mem.
14214 2016-05-17  James Greenhalgh  <james.greenhalgh@arm.com>
14216         * config/aarch64/aarch64.c (SHIFT_COUNT_TRUNCATED): Wrap definition
14217         in brackets.
14219 2016-05-17  James Greenhalgh  <james.greenhalgh@arm.com>
14221         * config/aarch64/aarch64.c
14222         (aarch64_output_simd_mov_immediate): Make "buf_size" a variable
14223         rather than a macro.
14225 2016-05-16  Wilco Dijkstra  <wdijkstr@arm.com>
14227         * doc/invoke.texi (AArch64 Options): Various updates.
14229 2016-05-16  Jan Hubicka  <hubicka@ucw.cz>
14231         * ipa-inline-analysis.c (compute_inline_parameters): Disable inlinig
14232         into instrumentation thunks.
14233         * cif-code.def (CIF_CHKP): New.
14235 2016-05-16  Uros Bizjak  <ubizjak@gmail.com>
14237         * config/i386/xopintrin.h: Correct "unsinged" typo in the comments.
14239 2016-05-16  Martin Jambor  <mjambor@suse.cz>
14241         * hsa-gen.c (fillup_for_decl): Increase alignment to natural one.
14242         (get_symbol_for_decl): Sorry if a global symbol in under-aligned.
14244 2016-05-16  Marek Polacek  <polacek@redhat.com>
14246         * gimple.c (maybe_remove_unused_call_args): Fix typos in the
14247         commentary.
14249 2016-05-16  Martin Jambor  <mjambor@suse.cz>
14251         PR hsa/70857
14252         * omp-low.c (grid_expand_target_grid_body): Copy RESULT_DECL of
14253         the outlined kernel function.
14255 2016-05-16  Robert Suchanek  <robert.suchanek@imgtec.com>
14257         * config/mips/mips.h (ISA_HAS_LSA): Enable for -mmsa.
14258         (ISA_HAS_DLSA): Ditto.
14260 2016-05-16  Matthew Fortune  <matthew.fortune@imgtec.com>
14262         * config/mips/m5100.md (m51_int_load): Update the latency to 2.
14264 2016-05-16  Nathan Sidwell  <nathan@acm.org>
14266         * config/nvptx/nvptx.c (nvptx_mangle_decl_assembler_name): Revert.
14267         (nvptx_name_replacement): Restore.  Add comment.
14268         (write_fn_proto, write_fn_proto_from_insn,
14269         nvptx_output_call_insn): Restore
14270         (TARGET_MANGLE_DECL_ASSEMBLER_NAME): Delete.
14272 2016-05-16  Wilco Dijkstra  <wdijkstr@arm.com>
14274         * config/aarch64/aarch64.md
14275         (add<mode>3_compareC_cconly_imm): Remove use of %w.
14276         (add<mode>3_compareC_imm): Likewise.
14277         (<optab>si3_uxtw): Split into register and immediate variants.
14278         (andsi3_compare0_uxtw): Likewise.
14279         (and<mode>3_compare0): Likewise.
14280         (and<mode>3nr_compare0): Likewise.
14281         (stack_protect_test_<mode>): Don't use %x for memory operands.
14283 2016-05-16  Matthew Fortune  <matthew.fortune@imgtec.com>
14285         * config/mips/mips-cpus.def (p5600): Add multi-line brackets.
14287 2016-05-16  Wilco Dijkstra  <wdijkstr@arm.com>
14289         * config/aarch64/aarch64.md (aarch64_ashl_sisd_or_int_<mode>3):
14290         Split integer shifts into shift_reg and bfm.
14291         (aarch64_lshr_sisd_or_int_<mode>3): Likewise.
14292         (aarch64_ashr_sisd_or_int_<mode>3): Likewise.
14293         (ror<mode>3_insn): Likewise.
14294         (<optab>si3_insn_uxtw): Likewise.
14295         (<optab><mode>3_insn): Change to rotate_imm.
14296         (extr<mode>5_insn_alt): Likewise.
14297         (extrsi5_insn_uxtw): Likewise.
14298         (extrsi5_insn_uxtw_alt): Likewise.
14300 2016-05-16  Matthew Wahab  <matthew.wahab@arm.com>
14302         * doc/tm.texi: Regenerate.
14303         * doc/tm.texi.in (TARGET_INVALID_PARAMETER_TYPE): Remove.
14304         (TARGET_INVALID_RETURN_TYPE): Remove.
14305         * system.h: Poison TARGET_INVALID_PARAMETER_TYPE and
14306         TARGET_INVALID_RETURN_TYPE.
14307         * target.def (invalid_parameter_type): Remove.
14308         (invalid_return_type): Remove.
14310 2016-05-16  Jan Hubicka  <hubicka@ucw.cz>
14312         * ipa-inline-analysis.c (compute_inline_parameters): Be more reailistic
14313         on estimating thunk bodies; do not set inline_failed to CIF_THUNK for
14314         calls from thunk.
14315         * ipa-inline-transform.c (inline_call): When inlining into thunk produce
14316         gimple body.
14317         (preserve_function_body_p): No need to preserve function body
14318         * cif-codes.def (CIF_THUNK): Remove.
14319         * cgraphclones.c (duplicate_thunk_for_node): Thunks calls are inlinable.
14321 2016-05-16  Jan Hubicka  <hubicka@ucw.cz>
14323         * tree-inline.c (expand_call_inline): recurse after inlining thunk.
14325 2016-05-16  Jan Hubicka  <hubicka@ucw.cz>
14327         * tree.c (free_lang_data_in_decl): Also set target/optimization flags
14328         for thunks.
14330 2016-05-16  Jan Hubicka  <hubicka@ucw.cz>
14332         * ipa-inline.c (report_inline_failed_reason): Look into thunks, too
14333         (inline_small_functions): Do not look for function symbol when
14334         resetting caches.
14336 2016-05-16  Jan Hubicka  <hubicka@ucw.cz>
14338         * lto-cgraph.c (compute_ltrans_boundary, output_symtab): Fix handling
14339         of inline thunks
14341 2016-05-16  Matthew Wahab  <matthew.wahab@arm.com>
14342             Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>
14343             Jiong Wang  <jiong.wang@arm.com>
14345         * config/arm/arm-c.c (arm_cpu_builtins): Use def_or_undef_macro
14346         for __ARM_FP16_FORMAT_IEEE and __ARM_FP16_FORMAT_ALTERNATIVE.
14347         Define __ARM_FP16_ARGS when appropriate.
14348         * config/arm/arm.c (arm_invalid_parameter_type): Remove
14349         declaration.
14350         (arm_invalid_return_type): Likewise.
14351         (TARGET_INVALID_PARAMETER_TYPE): Remove.
14352         (TARGET_INVALID_RETURN_TYPE): Remove.
14353         (aapcs_vfp_sub_candidate): Allow HFmode.
14354         (aapcs_vfp_allocate): Add comment.  Support HFmode.
14355         (aapcs_vfp_allocate_return_reg): Likewise.
14356         (struct aapcs_cp_arg_layout): Slightly reword comments for
14357         is_return_candidate and allocate_return_reg.
14358         (output_mov_vfp): Update assert.
14359         (arm_hard_regno_mode_ok): Remove comment, update HF-mode
14360         condition.
14361         (arm_invalid_parameter_type): Remove.
14362         (amr_invalid_return_type): Remove.
14363         * config/arm/arm.h (TARGET_NEON_FP16): Fix definition.
14364         * config/arm/arm.md (*arm32_movhf): Disable for TARGET_VFP.
14365         * config/arm/vfp.md (*movhf_vfp): Enable for TARGET_VFP.
14367 2016-05-16  Matthew Wahab  <matthew.wahab@arm.com>
14369         * config/aarch64/aarch64.h (LEGITIMIZE_RELOAD_ADDRESS): Remove.
14370         * config/aarch64/arch64-protos.h
14371         (aarch64_legitimize_reload_address): Remove.
14372         * config/aarch64/aarch64.c (aarch64_legitimize_reload_address):
14373         Remove.
14375 2016-05-16  Eric Botcazou  <ebotcazou@adacore.com>
14377         * configure.ac: Add ACX_NONCANONICAL_HOST.
14378         * configure: Regenerate.
14379         * Makefile.in: Set host_noncanonical.
14381 2016-05-14  Uros Bizjak  <ubizjak@gmail.com>
14383         PR target/71097
14384         * config/i386/i386.md (*movtf_internal): Before register allocation,
14385         do not allow FP constants for CM_MEDIUM memory model, allow only
14386         standard FP constants for CM_LARGE and CM_LARGE_PIC models.
14387         (*movxf_internal): Ditto.
14388         (*movdf_internal): Ditto.
14389         (*movsf_internal): Ditto.
14391 2016-05-13  Segher Boessenkool  <segher@kernel.crashing.org>
14393         PR rtl-optimization/67483
14394         * combine.c (make_compound_operation): Don't call extract_left_shift
14395         with negative shift amounts.
14397 2016-05-13  Jakub Jelinek  <jakub@redhat.com>
14399         PR bootstrap/71071
14400         * fold-const.c (fold_checksum_tree): Allow modification
14401         of TYPE_ALIAS_SET during folding.
14403         * config/i386/i386.c (ix86_compute_frame_layout, ix86_expand_prologue,
14404         ix86_expand_split_stack_prologue): Use HOST_WIDE_INT_C macro.
14405         (ix86_split_to_parts): Likewise.  Fix up formatting.
14407 2016-05-13  H.J. Lu  <hongjiu.lu@intel.com>
14409         * tree-ssa-loop-ivopts.c (create_new_ivs): Cast to
14410         unsigned HOST_WIDE_INT with HOST_WIDE_INT_PRINT_UNSIGNED in
14411         printf format.
14413 2016-05-13  Nathan Sidwell  <nathan@acm.org>
14415         * config/nvptx/nvptx.c (nvptx_mangle_decl_assembler_name): New.
14416         (nvptx_name_replacement): Delete.
14417         (write_fn_proto, write_fn_proto_from_insn,
14418         nvptx_output_call_insn): Remove nvptx_name_replacement call.
14419         (TARGET_MANGLE_DECL_ASSEMBLER_NAME): Override.
14420         * langhooks.c (add_builtin_funcction_common): Call
14421         targetm.mangle_decl_assembler_name.
14423         * config/nvptx/nvptx.c (write_fn_proto): Handle
14424         BUILT_IN_ATOMIC_COMPARE_EXCHANGE_n oddity.
14426 2016-05-13  Martin Liska  <mliska@suse.cz>
14428         * tree-ssa-loop-ivopts.c (create_new_ivs): Use HOST_WIDE_INT_PRINT_DEC
14429         and PRIu64 in printf format.
14431 2016-05-13  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
14433         * tree-ssa-loop-ivanon.c (try_unroll_loop_completely): Typo fix in
14434         comment.
14436 2016-05-13  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
14438         * tree-ssa-loop-ivcanon.c (try_unroll_loop_completely):
14439         Change --param max-completely-peeled-times to
14440         --param max-completely-peel-times in dump file printing.
14442 2016-05-13  Richard Biener  <rguenther@suse.de>
14444         PR tree-optimization/42587
14445         * tree-ssa-math-opts.c (perform_symbolic_merge): Handle BIT_FIELD_REF.
14446         (find_bswap_or_nop_1): Likewise.
14447         (bswap_replace): Likewise.
14449 2016-05-13  Martin Liska  <mliska@suse.cz>
14451         * tree-vect-patterns.c (vect_recog_mask_conversion_pattern):
14452         Initialize a variable with default value.
14454 2016-05-13  Martin Liska  <mliska@suse.cz>
14456         * doc/invoke.texi: Enhance explanation of error recovery
14457         of sanitizers.
14459 2016-05-13  Martin Liska  <mliska@suse.cz>
14461         * tree-ssa-loop-ivopts.c (avg_loop_niter): Fix coding style.
14462         (struct cost_pair): Change inv_expr_id (int) to inv_expr
14463         (iv_inv_expr_ent *).
14464         (struct iv_inv_expr_ent): Comment struct fields.
14465         (sort_iv_inv_expr_ent): New function.
14466         (struct ivopts_data): Rename inv_expr_id to max_inv_expr_id.
14467         (struct iv_ca): Replace used_inv_expr and num_used_inv_expr with
14468         a hash_map between iv_inv_expr_ent and number of usages.
14469         (niter_for_exit): Fix coding style.
14470         (tree_ssa_iv_optimize_init): Use renamed variable.
14471         (determine_base_object): Fix coding style.
14472         (alloc_iv): Likewise.
14473         (find_interesting_uses_outside): Likewise.
14474         (add_candidate_1): Likewise.
14475         (add_standard_iv_candidates): Likewise.
14476         (set_group_iv_cost): Replace inv_expr_id with inv_expr.
14477         (prepare_decl_rtl): Fix coding style.
14478         (get_address_cost): Likewise.
14479         (get_shiftadd_cost): Likewise.
14480         (force_expr_to_var_cost): Likewise.
14481         (compare_aff_trees): Likewise.
14482         (get_expr_id): Restructure the function.
14483         (get_loop_invariant_expr_id): Renamed to
14484         get_loop_invariant_expr.
14485         (get_computation_cost_at): Replace usage of inv_expr_id with
14486         inv_expr.
14487         (get_computation_cost): Likewise.
14488         (determine_group_iv_cost_generic): Likewise.
14489         (determine_group_iv_cost_address): Likewise.
14490         (iv_period): Fix coding style.
14491         (iv_elimination_compare_lt): Likewise.
14492         (may_eliminate_iv): Likewise.
14493         (determine_group_iv_cost_cond):  Replace usage of inv_expr_id with
14494         inv_expr.
14495         (determine_group_iv_costs): Dump invariant expressions.
14496         (iv_ca_recount_cost): Use the newly added hash_map.
14497         (iv_ca_set_remove_invariants): Fix coding style.
14498         (iv_ca_set_add_invariants): Fix coding style.
14499         (iv_ca_set_no_cp): Utilize the newly added hash_map for used
14500         invariants.
14501         (iv_ca_set_cp): Likewise.
14502         (iv_ca_new): Initialize the newly added hash_map and remove
14503         initialization of fields.
14504         (iv_ca_free): Delete the hash_map.
14505         (iv_ca_dump): Dump invariant expressions.
14506         (iv_ca_extend): Fix coding style.
14507         (try_add_cand_for): Likewise.
14508         (create_new_ivs): Dump information about # of avg iterations and
14509         # of used invariant expressions.
14510         (rewrite_use_compare): Fix coding style.
14511         (free_loop_data): Set default value for max_inv_expr_id.
14513 2016-05-13  Ilya Enkovich  <ilya.enkovich@intel.com>
14515         * cse.c (rest_of_handle_cse): Use cleanup_cfg
14516         returned value cse_cfg_altered computation.
14517         (rest_of_handle_cse2): Likewise.
14518         (rest_of_handle_cse_after_global_opts): Likewise.
14520 2016-05-13  Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>
14522         PR target/53440
14523         * config/arm/arm.c (arm32_output_mi_thunk): New.
14524         (arm_output_mi_thunk): Rename to arm_thumb1_mi_thunk. Rework
14525         to split Thumb1 vs TARGET_32BIT functionality.
14526         (arm_thumb1_mi_thunk): New.
14528 2016-05-13  Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>
14530         * config/aarch64/aarch64.c (TARGET_OMIT_STRUCT_RETURN_REG): Set
14531         to true.
14533 2016-05-13  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
14535         PR target/71080
14536         * config/i386/i386.c (ix86_in_large_data_p): Guard against NULL exp.
14538 2016-05-13  Eric Botcazou  <ebotcazou@adacore.com>
14540         * builtins.c (expand_builtin_memcmp): Do not emit the call here.
14541         (expand_builtin_trap): Emit a regular call.
14542         (set_builtin_user_assembler_name): Remove obsolete cases.
14543         * dse.c (scan_insn): Adjust.
14544         * except.c: Include calls.h.
14545         (sjlj_emit_function_enter): If DONT_USE_BUILTIN_SETJMP is defined,
14546         emit a regular call to setjmp.
14547         * expr.c (emit_block_move_hints): Call emit_block_copy_via_libcall.
14548         (block_move_libcall_safe_for_call_parm): Use memcpy builtin.
14549         (emit_block_move_via_libcall): Delete.
14550         (block_move_fn): Delete.
14551         (init_block_move_fn): Likewise.
14552         (emit_block_move_libcall_fn): Likewise.
14553         (emit_block_op_via_libcall): New function.
14554         (set_storage_via_libcall): Tidy up and use memset builtin.
14555         (block_clear_fn): Delete.
14556         (init_block_clear_fn): Likewise.
14557         (clear_storage_libcall_fn): Likewise.
14558         (expand_assignment): Call emit_block_move_via_libcall.
14559         Do not include gt-expr.h.
14560         * expr.h (emit_block_op_via_libcall): Declare.
14561         (emit_block_copy_via_libcall): New inline function.
14562         (emit_block_move_via_libcall): Likewise.
14563         (emit_block_comp_via_libcall): Likewise.
14564         (block_clear_fn): Delete.
14565         (init_block_move_fn): Likewise.
14566         (init_block_clear_fn): Likewise.
14567         (emit_block_move_via_libcall): Likewise.
14568         (set_storage_via_libcall): Add default parameter value.
14569         * libfuncs.h (enum libfunc_index): Remove obsolete values.
14570         (abort_libfunc): Delete.
14571         (memcpy_libfunc): Likewise.
14572         (memmove_libfunc): Likewise.
14573         (memcmp_libfunc): Likewise.
14574         (memset_libfunc): Likewise.
14575         (setbits_libfunc): Likewise.
14576         (setjmp_libfunc): Likewise.
14577         (longjmp_libfunc): Likewise.
14578         (profile_function_entry_libfunc): Likewise.
14579         (profile_function_exit_libfunc): Likewise.
14580         (gcov_flush_libfunc): Likewise.
14581         * optabs-libfuncs.c (build_libfunc_function): Set DECL_ARTIFICIAL
14582         and DECL_VISIBILITY on the declaration.
14583         (init_optabs): Do not initialize obsolete libfuncs.
14584         * optabs.c (prepare_cmp_insn): Call emit_block_comp_via_libcall.
14585         * tree-core.h (ECF_RET1): Define.
14586         (ECF_TM_PURE): Adjust.
14587         (ECF_TM_BUILTIN): Likewise.
14588         * tree.c (set_call_expr_flags): Deal with ECF_RET1.
14589         (build_common_builtin_nodes): Initialize abort builtin.
14590         Add ECF_RET1 on memcpy, memmove and memset builtins.
14591         Pass final flags for alloca and alloca_with_align builtins.
14592         * config/alpha/alpha.c (alpha_init_libfuncs): Do not initialize
14593         obsolete builtins.
14594         * config/ia64/ia64.c (ia64_vms_init_libfuncs): Likewise.
14595         * config/i386/i386.c (ix86_expand_set_or_movmem): Adjust call to
14596         set_storage_via_libcall and call emit_block_copy_via_libcall.
14598 2016-05-12  Uros Bizjak  <ubizjak@gmail.com>
14600         * config/i386/i386.md (*call_got_x32): Change operand 0 to
14601         DImode before it is passed to ix86_output_call_operand.
14602         (*call_value_got_x32): Ditto for operand 1.
14604 2016-05-12  Jiong Wang  <jiong.wang@arm.com>
14606         PR rtl-optimization/70904
14607         * lra-constraint.c (process_addr_reg): Relax the restriction on subreg
14608         reload for wide mode.
14610 2016-05-12  Marek Polacek  <polacek@redhat.com>
14612         PR c/70756
14613         * langhooks-def.h (lhd_incomplete_type_error): Adjust declaration.
14614         * langhooks.c (lhd_incomplete_type_error): Add location parameter.
14615         * langhooks.h (incomplete_type_error): Likewise.
14616         * tree.c (size_in_bytes_loc): Renamed from size_in_bytes.  Add location
14617         parameter, pass it down to incomplete_type_error.
14618         * tree.h (size_in_bytes): New inline overload.
14619         (size_in_bytes_loc): Renamed from size_in_bytes.
14621 2016-05-12  Richard Biener  <rguenther@suse.de>
14623         PR tree-optimization/71059
14624         * tree-ssa-pre.c (phi_translate_1): Fully fold translated
14625         nary before looking up or entering the expression into the VN
14626         hashes.
14627         * tree-ssa-sccvn.c (vn_nary_build_or_lookup): Fix comment typo.
14628         Make sure to re-use NARYs without result as inserted by
14629         phi-translation.
14631 2016-05-12  Richard Biener  <rguenther@suse.de>
14633         PR tree-optimization/71062
14634         * tree-ssa-alias.h (struct pt_solution): Add vars_contains_restrict
14635         field.
14636         * tree-ssa-structalias.c (set_uids_in_ptset): Set
14637         vars_contains_restrict if the var is a restrict tag.
14638         * tree-ssa-alias.c (ptrs_compare_unequal): If vars_contains_restrict
14639         do not disambiguate pointers against it.
14640         (dump_points_to_solution): Re-structure and adjust for new
14641         vars_contains_restrict flag.
14642         * gimple-pretty-print.c (pp_points_to_solution): Likewise.
14644 2016-05-12  Martin Liska  <mliska@suse.cz>
14646         * doc/invoke.texi: Explain connection between
14647         -fsanitize-recover=address and ASAN_OPTIONS="halt_on_error=1".
14649 2016-05-12  Ilya Enkovich  <ilya.enkovich@intel.com>
14651         PR tree-optimization/71006
14652         * tree-vect-loop.c (vect_determine_vectorization_factor): Don't
14653         consider COND_EXPR as a mask producer.
14655 2016-05-12  Marek Polacek  <polacek@redhat.com>
14657         PR driver/71063
14658         * opts.c (common_handle_option): Detect missing argument for --help^.
14660 2016-05-12  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
14662         PR target/70830
14663         * config/arm/arm.c (arm_output_multireg_pop): Avoid POP instruction
14664         when popping the PC and within an interrupt handler routine.
14665         Add missing tab to output of "ldmfd".
14666         (output_return_instruction): Output LDMFD with SP update rather
14667         than POP when returning from interrupt handler.
14669 2016-05-12  Jakub Jelinek  <jakub@redhat.com>
14671         * config/i386/i386.md (isa): Add x64_avx512dq, enable if
14672         TARGET_64BIT && TARGET_AVX512DQ.
14673         * config/i386/sse.md (*vec_extract<mode>): Add avx512bw alternatives.
14674         (*vec_extract<PEXTR_MODE12:mode>_zext): Add avx512bw alternative.
14675         (*vec_extract<ssevecmodelower>_0, *vec_extractv4si_0_zext,
14676         *vec_extractv2di_0_sse): Use v constraint instead of x constraint.
14677         (*vec_extractv4si): Add avx512dq and avx512bw alternatives.
14678         (*vec_extractv4si_zext): Add avx512dq alternative.
14679         (*vec_extractv2di_1): Add x64_avx512dq and avx512bw alternatives,
14680         use v instead of x constraint in other alternatives where possible.
14682         * config/i386/sse.md (sse2_loadld): Use v instead of x
14683         constraint in alternatives 0,1,4.
14685         * config/i386/sse.md (pinsr_evex_isa): New mode attr.
14686         (<sse2p4_1>_pinsr<ssemodesuffix>): Add 2 alternatives with
14687         v constraints instead of x and <pinsr_evex_isa> isa attribute.
14689         PR target/71019
14690         * config/i386/sse.md (<sse2_avx2>_packssdw<mask_name>,
14691         <sse4_1_avx2>_packusdw<mask_name>): Make sure EVEX encoded insn
14692         is not emitted unless TARGET_AVX512BW.
14693         (<sse2_avx2>_packuswb<mask_name>, <sse2_avx2>_packsswb<mask_name>):
14694         Likewise.  For TARGET_AVX512BW, use "=v" constraint instead of "=x"
14695         for the result operand.
14697         * config/i386/sse.md (*vec_setv4sf_sse4_1, sse4_1_insertps): Use v
14698         constraint instead of x in avx alternatives.  Use maybe_evex instead
14699         of vex prefix.
14701         * config/i386/constraints.md (Yv): New constraint.
14702         * config/i386/i386.h (VALID_AVX512VL_128_REG_MODE): Allow
14703         TFmode and V1TImode in xmm16+ registers for TARGET_AVX512VL.
14704         * config/i386/i386.md (avx512fvecmode): New mode attr.
14705         (*pushtf): Use v constraint instead of x.
14706         (*movtf_internal): Likewise.  For TARGET_AVX512VL and
14707         xmm16+ registers, use vmovdqu64 or vmovdqa64 instructions.
14708         (*absneg<mode>2): Use Yv constraint instead of x constraint.
14709         (*absnegtf2_sse): Likewise.
14710         (copysign<mode>3_const, copysign<mode>3_var): Likewise.
14711         * config/i386/sse.md (*andnot<mode>3): Add avx512vl and
14712         avx512f alternatives.
14713         (*andnottf3, *<code><mode>3, *<code>tf3): Likewise.
14715 2016-05-12  Richard Biener  <rguenther@suse.de>
14717         PR tree-optimization/71060
14718         * tree-data-ref.c (initialize_data_dependence_relation): Do not
14719         require exact match of DR_BASE_OBJECT but only matching address and
14720         type.
14722 2016-05-12  Richard Biener  <rguenther@suse.de>
14724         PR tree-optimization/70986
14725         * cfganal.c: Include cfgloop.h.
14726         (dfs_find_deadend): Prefer to take edges exiting loops.
14728 2016-05-11  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
14730         * gcc.target/powerpc/pr70963.c: Require at least power8 at both
14731         compile and run time.
14733 2016-05-11  Mikhail Maltsev  <maltsevm@gmail.com>
14735         PR c/43651
14736         * doc/invoke.texi (Wduplicate-decl-specifier): Document new option.
14738 2016-05-11  Uros Bizjak  <ubizjak@gmail.com>
14740         * config/i386/i386.c (legitimize_pic_address): Use
14741         copy_to_suggested_reg instead of gen_movsi.
14743 2016-05-11  Michael Meissner  <meissner@linux.vnet.ibm.com>
14745         * config/rs6000/predicates.md (quad_memory_operand): Move most of
14746         the code into quad_address_p and call it to share code with
14747         vsx_quad_dform_memory_operand.
14748         (vsx_quad_dform_memory_operand): New predicate for ISA 3.0 vector
14749         d-form support.
14750         * config/rs6000/rs6000.opt (-mlra): Switch to being an option mask
14751         bit instead of being a separate word.  Split -mpower9-dform into
14752         two switches, -mpower9-dform-scalar and -mpower9-dform-vector.
14753         * config/rs6000/rs6000.c (RELOAD_REG_QUAD_OFFSET): New addr_mask
14754         for the register class supporting 128-bit quad word memory offsets.
14755         (mode_supports_vsx_dform_quad): Helper function to return if the
14756         register class uses quad word memory offsets.
14757         (rs6000_debug_addr_mask): Add support for quad word memory offsets.
14758         (rs6000_debug_reg_global): Always print if we are using LRA or not.
14759         (rs6000_setup_reg_addr_masks): If ISA 3.0 vector d-form
14760         instructions are enabled, set up the appropriate addr_masks for
14761         128-bit types.
14762         (rs6000_init_hard_regno_mode_ok): wb constraint is now based on
14763         -mpower9-dform-scalar, instead of -mpower9-dform.
14764         (rs6000_option_override_internal): Split -mpower9-dform into two
14765         switches, -mpower9-dform-scalar and -mpower9-dform-vector.  The
14766         -mpower9-dform switch sets or clears both.  If we are not using
14767         the LRA register allocator, do not enable -mpower9-dform-vector by
14768         default.  If we are using LRA, enable -mpower9-dform-vector and
14769         -mvsx-timode if it is appropriate.  Issue a warning if either
14770         -mpower9-dform-vector or -mvsx-timode are explicitly used without
14771         enabling LRA.
14772         (quad_address_offset_p): New helper function to return if the
14773         offset is legal for quad word memory instructions.
14774         (quad_address_p): New function to determin if GPR or vector
14775         register quad word memory addresses are legal.
14776         (mem_operand_gpr): Validate quad word address offsets.
14777         (reg_offset_addressing_ok_p): Add support for ISA 3.0 vector
14778         d-form (register + offset) instructions.
14779         (offsettable_ok_by_alignment): Likewise.
14780         (rs6000_legitimate_offset_address_p): Likewise.
14781         (legitimate_lo_sum_address_p): Likewise.
14782         (rs6000_legitimize_address): Likewise.
14783         (rs6000_legitimize_reload_address): Add more debug statements for
14784         -mdebug=addr.
14785         (rs6000_legitimate_address_p): Add support for ISA 3.0 vector
14786         d-form instructions.
14787         (rs6000_secondary_reload_memory): Add support for ISA 3.0 vector
14788         d-form instructions.  Distinguish different cases in debug
14789         output. (rs6000_secondary_reload_inner): Add support for ISA 3.0 vector
14790         d-form instructions.
14791         (rs6000_preferred_reload_class): Likewise.
14792         (rs6000_output_move_128bit): Add support for ISA 3.0 d-form
14793         instructions.  If ISA 3.0 is available, generate lxvx/stxvx instead
14794         of the ISA 2.06 indexed memory instructions.
14795         (rs6000_emit_prologue): If we have ISA 3.0 d-form instructions,
14796         use them to save/restore the saved vector registers instead of
14797         using Altivec instructions.
14798         (rs6000_emit_epilogue): Likewise.
14799         (rs6000_lra_p): Use TARGET_LRA instead of the old option word.
14800         (rs6000_opt_masks): Split -mpower9-dform into
14801         -mpower9-dform-scalar and -mpower9-dform-vector.
14802         (rs6000_print_options_internal): Print -mno-<switch> if <switch>
14803         was not selected.
14804         * config/rs6000/vsx.md (p9_vecload_<mode>): Delete hack to emit
14805         ISA 3.0 vector indexed memory instructions, and fold the code into
14806         the normal mov<mode> patterns.
14807         (p9_vecstore_<mode>): Likewise.
14808         (vsx_mov<mode>): Add support for ISA 3.0 vector d-form
14809         instructions.
14810         (vsx_movti_64bit): Likewise.
14811         (vsx_movti_32bit): Likewise.
14812         * config/rs6000/constraints.md (wO constraint): New constraint for
14813         ISA 3.0 vector d-form support.
14814         * config/rs6000/rs6000-cpus.def (ISA_3_0_MASKS_SERVER): Use
14815         -mpower9-dform-scalar instead of -mpower9-dform.  Add note not to
14816         include -mpower9-dform-vector until we switch over to LRA.
14817         (POWERPC_MASKS): Add -mlra. Split -mpower9-dform into two.
14818         switches, -mpower9-dform-scalar and -mpower9-dform-vector.
14819         * config/rs6000/rs6000-protos.h (quad_address_p): Add declaration.
14820         * doc/invoke.texi (RS/6000 and PowerPC Options): Add documentation
14821         for -mpower9-dform and -mlra.
14822         * doc/md.texi (wO constraint): Document wO constraint.
14824 2016-05-11  Alexander Monakov  <amonakov@ispras.ru>
14826         * genattr.c (main): Change 'rtx' to 'rtx_insn *' in prototypes of
14827         'insn_latency', 'maximal_insn_latency', 'min_insn_conflict_delay'.
14828         * genautomata.c (output_internal_insn_code_evaluation): Simplify.
14829         Move handling of non-insn arguments inline into the sole user:
14830         (output_trans_func): ...here.
14831         (output_min_insn_conflict_delay_func): Change 'rtx' to 'rtx_insn *'
14832         in emitted function prototype.
14833         (output_internal_insn_latency_func): Ditto.  Simplify.
14834         (output_internal_maximal_insn_latency_func): Ditto.  Delete
14835         always-unused argument.
14836         (output_insn_latency_func): Ditto.
14837         (output_maximal_insn_latency_func): Ditto.
14839 2016-05-11  Richard Biener  <rguenther@suse.de>
14841         PR tree-optimization/71055
14842         * tree-ssa-sccvn.c (vn_reference_lookup_3): When native-interpreting
14843         sth with precision not equal to access size verify we don't chop
14844         off bits.
14846 2016-05-11  Richard Biener  <rguenther@suse.de>
14848         PR debug/71057
14849         * dwarf2out.c (retry_incomplete_types): Set early_dwarf.
14850         (dwarf2out_finish): Move retry_incomplete_types call ...
14851         (dwarf2out_early_finish): ... here.
14853 2016-05-11  Richard Biener  <rguenther@suse.de>
14855         PR middle-end/71002
14856         * alias.c (reference_alias_ptr_type): Preserve alias-set zero
14857         if the langhook insists on it.
14858         * fold-const.c (make_bit_field_ref): Add arg for the original
14859         reference and preserve its alias-set.
14860         (decode_field_reference): Take exp by reference and adjust it
14861         to the original memory reference.
14862         (optimize_bit_field_compare): Adjust callers.
14863         (fold_truth_andor_1): Likewise.
14864         * gimplify.c (gimplify_expr): Adjust in-SSA form test.
14866 2016-05-11  Ilya Enkovich  <ilya.enkovich@intel.com>
14868         PR middle-end/70807
14869         * cfgrtl.h (delete_insn_and_edges): Now return bool.
14870         * cfgrtl.c (delete_insn_and_edges): Likewise.
14871         * config/i386/i386.c (convert_scalars_to_vector): Remove
14872         redundant code.
14873         * cse.c (cse_insn): Compute cse_cfg_altered.
14874         (delete_trivially_dead_insns): Likewise.
14875         (cse_cc_succs): Likewise.
14876         (rest_of_handle_cse): Free dominance info if required.
14877         (rest_of_handle_cse2): Likewise.
14878         (rest_of_handle_cse_after_global_opts): Likewise.
14880 2016-05-11  Alan Modra  <amodra@gmail.com>
14882         * config/rs6000/rs6000.c (is_complex_IBM_long_double,
14883         abi_v4_pass_in_fpr): New functions.
14884         (rs6000_function_arg_boundary): Exclude complex IBM long double
14885         from 64-bit alignment when ABI_V4.
14886         (rs6000_function_arg, rs6000_function_arg_advance_1,
14887         rs6000_gimplify_va_arg): Use abi_v4_pass_in_fpr.
14889 2016-05-10  Segher Boessenkool  <segher@kernel.crashing.org>
14891         PR rtl-optimization/71028
14892         * cfgcleanup.c (try_optimize_cfg): Do not flip a conditional
14893         jump with just a return in the fallthrough block if the branch
14894         block contains just a return as well.
14896 2016-05-10  Marc Glisse  <marc.glisse@inria.fr>
14898         * fold-const.c (fold_binary_loc) [(X ^ Y) & Y]: Remove and merge with...
14899         * match.pd ((X & Y) ^ Y): ... this.
14900         ((X & Y) & Y, (X | Y) | Y, (X ^ Y) ^ Y, (X & Y) & (X & Z), (X | Y)
14901         | (X | Z), (X ^ Y) ^ (X ^ Z)): New transformations.
14903 2016-05-10  David Malcolm  <dmalcolm@redhat.com>
14905         * read-md.c (require_char_ws): New function.
14906         (read_string): Simplify using require_char_ws.
14907         (handle_constants): Likewise.
14908         (handle_enum): Likewise.
14909         (handle_file): Likewise.
14910         * read-md.h (require_char_ws): New declaration.
14911         * read-rtl.c (read_conditions): Simplify using require_char_ws.
14912         (read_mapping): Likewise.
14913         (read_rtx_code): Likewise.
14914         (read_nested_rtx): Likewise.
14916 2016-05-10  James Norris  <jnorris@codesourcery.com>
14918         * config/rs6000/sysv4.h (CRTOFFLOADBEGIN): Define. Add crtoffloadbegin.o
14919         if offloading is enabled and -fopenacc or -fopenmp is specified.
14920         (CRTOFFLOADEND): Likewise.
14921         (STARTFILE_LINUX_SPEC): Add CRTOFFLOADBEGIN.
14922         (ENDFILE_LINUX_SPEC): Add CRTOFFLOADEND.
14924 2016-05-10  Uros Bizjak  <ubizjak@gmail.com>
14926         * config/i386/i386.c (legitimize_pic_address): Merge 64-bit and 32-bit
14927         gotoff_operand code paths.  Use copy_to_suggested_regs and
14928         expand_simple_binop where appropriate.  Cleanup.
14930 2016-05-10  Ilya Enkovich  <ilya.enkovich@intel.com>
14932         PR target/70799
14933         * config/i386/i386.c (dimode_scalar_to_vector_candidate_p): Allow
14934         integer constants.
14935         (dimode_scalar_chain::vector_const_cost): New.
14936         (dimode_scalar_chain::compute_convert_gain): Handle constants.
14937         (dimode_scalar_chain::convert_op): Likewise.
14938         (dimode_scalar_chain::convert_insn): Likewise.
14940 2016-05-10  Pierre-Marie de Rodat  <derodat@adacore.com>
14942         * dwarf2out.c (resolve_args_picking_1): Consider DW_OP_neg as an
14943         unary operation, not a binary one.
14945 2016-05-10  Ilya Enkovich  <ilya.enkovich@intel.com>
14947         PR middle-end/70877
14948         * tree-chkp.c (chkp_add_bounds_to_call_stmt): Handle
14949         calls with type casted fndecl.
14951 2016-05-10  Ilya Enkovich  <ilya.enkovich@intel.com>
14953         PR tree-optimization/70786
14954         * tree-chkp.c (chkp_find_bounds_1): Support WITH_SIZE_EXPR.
14955         * calls.c (initialize_argument_information): Bind bounds
14956         with corresponding args passed by reference.
14958 2016-05-10  Jakub Jelinek  <jakub@redhat.com>
14960         PR target/70927
14961         * config/i386/sse.md (<sse>_andnot<mode>3<mask_name>),
14962         *<code><mode>3<mask_name>): For !TARGET_AVX512DQ and EVEX encoding,
14963         use vp*[dq] instead of v*p[sd] instructions and adjust mode attribute
14964         accordingly.
14966 2016-05-10  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
14968         PR target/70963
14969         * config/rs6000/vsx.md (vsx_xvcvdpsxds_scale): Generate correct
14970         code for a zero scale factor.
14971         (vsx_xvcvdpuxds_scale): Likewise.
14973 2016-05-10  David Malcolm  <dmalcolm@redhat.com>
14975         * diagnostic-show-locus.c (layout::layout): Call show_ruler
14976         if show_ruler_p was set on the context.
14977         (layout::show_ruler): New method.
14978         * diagnostic.h (struct diagnostic_context): Add field
14979         "show_ruler_p".
14981 2016-05-10  Richard Biener  <rguenther@suse.de>
14983         PR tree-optimization/71039
14984         * tree-ssa-phiprop.c: Include tree-ssa-loop.h.
14985         (chk_uses): New function.
14986         (propagate_with_phi): Verify we can safely replicate the lhs of an
14987         aggregate assignment on all incoming edges.
14989 2016-05-10  Oleg Endo  <olegendo@gcc.gnu.org>
14991         * config/rx/rx-protos.h (is_interrupt_func, is_fast_interrupt_func):
14992         Forward declare.
14993         (rx_atomic_sequence): New class.
14994         * config/rx/rx.c (rx_print_operand): Use symbolic names for PSW bits.
14995         (is_interrupt_func, is_fast_interrupt_func): Make non-static and
14996         non-inline.
14997         (rx_atomic_sequence::rx_atomic_sequence,
14998         rx_atomic_sequence::~rx_atomic_sequence): New functions.
14999         * config/rx/rx.md (CTRLREG_PSW, CTRLREG_USP, CTRLREG_FPSW, CTRLREG_CPEN,
15000         CTRLREG_BPSW, CTRLREG_BPC, CTRLREG_ISP, CTRLREG_FINTV,
15001         CTRLREG_INTB): New constants.
15002         (FETCHOP): New code iterator.
15003         (fethcop_name, fetchop_name2): New iterator code attributes.
15004         (QIHI): New mode iterator.
15005         (atomic_exchange<mode>, atomic_exchangesi, xchg_mem<mode>,
15006         atomic_fetch_<fetchop_name>si, atomic_fetch_nandsi,
15007         atomic_<fetchop_name>_fetchsi, atomic_nand_fetchsi): New patterns.
15009 2016-05-10  Martin Liska  <mliska@suse.cz>
15011         * tree-inline.c (remap_dependence_clique): Do not remap
15012         debugging statements.
15014 2016-05-10  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
15016         * config/s390/s390.md ("*vec_cmp<insn_cmp>df_cconly")
15017         ("*fixuns_truncdfdi2_z13")
15018         ("*fixuns_trunc<FP:mode><GPR:mode>2_z196")
15019         ("*fix_truncdfdi2_bfp_z13", "*floatunsdidf2_z13")
15020         ("*extendsfdf2_z13"): Replace TARGET_Z13 with TARGET_VX.
15022 2016-05-10  Richard Biener  <rguenther@suse.de>
15024         PR tree-optimization/70497
15025         PR tree-optimization/28367
15026         * tree-ssa-sccvn.c (vn_nary_build_or_lookup): New function
15027         split out from ...
15028         (visit_reference_op_load): ... here.
15029         (vn_reference_lookup_3): Use it to handle subreg-like accesses
15030         with simplified BIT_FIELD_REFs.
15031         * tree-ssa-pre.c (eliminate_insert): Handle inserting BIT_FIELD_REFs.
15032         * tree-complex.c (extract_component): Handle BIT_FIELD_REFs
15033         correctly.
15035 2016-05-10  Pierre-Marie de Rodat  <derodat@adacore.com>
15037         * dwarf2out.c (add_abstract_origin_attribute): Adjust
15038         documentation comment.  For BLOCK nodes, add a
15039         DW_AT_abstract_origin attribute that points to the DIE generated
15040         for the origin BLOCK.
15041         (gen_lexical_block_die): Call add_abstract_origin_attribute for
15042         blocks from inlined functions.
15044 2016-05-10  Alan Modra  <amodra@gmail.com>
15046         PR target/70947
15047         * config/rs6000/rs6000.c (rs6000_expand_split_stack_prologue): Stop
15048         regrename modifying insns saving lr before __morestack call.
15049         * config/rs6000/rs6000.md (split_stack_return): Similarly for
15050         insns restoring lr after __morestack call.
15052 2016-05-09  Jakub Jelinek  <jakub@redhat.com>
15054         * config/i386/i386.md (set_got, set_got_labelled, lwp_llwpcb,
15055         lwp_lwpval<mode>3, lwp_lwpins<mode>3): Remove constraints from
15056         expanders.
15057         * config/i386/sse.md (vec_interleave_high<mode>,
15058         vec_interleave_low<mode>, <avx512>_vpermi2var<mode>3_maskz,
15059         <avx512>_vpermt2var<mode>3_maskz): Likewise.
15061 2016-05-04  Aaron Sawdey  <acsawdey@linux.vnet.ibm.com>
15063         * config/rs6000/rs6000.c (rs6000_reassociation_width): Add
15064         function for TARGET_SCHED_REASSOCIATION_WIDTH to enable
15065         parallel reassociation for power8 and forward.
15067 2016-05-09  Uros Bizjak  <ubizjak@gmail.com>
15069         * config/i386/i386.md (absneg splitters with general regs): Use
15070         general_reg_operand predicate.
15071         (btsq peephole2): Use x86_64_immediate_operand to check if new
15072         value is suitable for immediate operand.  Generate emitted insn
15073         using RTL expressions.
15074         (btcq peephole2): Ditto.
15075         (btrq peephole2): Ditto.  Generate correct immediate operand
15076         for AND masking.
15078 2016-05-09  Richard Sandiford  <richard.sandiford@arm.com>
15080         * cfgexpand.c (expand_debug_expr): Fix address offset for negative
15081         bitpos.
15083 2016-05-09  Richard Sandiford  <richard.sandiford@arm.com>
15085         * tree-affine.c (wide_int_constant_multiple_p): Add missing
15086         pointer dereference.
15088 2016-05-09  Richard Biener  <rguenther@suse.de>
15090         PR tree-optimization/70985
15091         * match.pd (BIT_FIELD_REF -> (type)): Disable on GIMPLE when
15092         op0 isn't a gimple register.
15094 2016-05-09  Prachi Godbole  <prachi.godbole@imgtec.com>
15096         * config/mips/i6400.md (i6400_fpu_intadd, i6400_fpu_logic)
15097         (i6400_fpu_div, i6400_fpu_cmp, i6400_fpu_float, i6400_fpu_store)
15098         (i6400_fpu_long_pipe, i6400_fpu_logic_l, i6400_fpu_float_l)
15099         (i6400_fpu_mult): New cpu units.
15100         (i6400_msa_add_d, i6400_msa_int_add, i6400_msa_short_logic3)
15101         (i6400_msa_short_logic2, i6400_msa_short_logic, i6400_msa_move)
15102         (i6400_msa_cmp, i6400_msa_short_float2, i6400_msa_div_d)
15103         (i6400_msa_div_w, i6400_msa_div_h, i6400_msa_div_b)
15104         (i6400_msa_copy, i6400_msa_branch, i6400_fpu_msa_store)
15105         (i6400_fpu_msa_load, i6400_fpu_msa_move, i6400_msa_long_logic1)
15106         (i6400_msa_long_logic2, i6400_msa_mult, i6400_msa_long_float2)
15107         (i6400_msa_long_float4, i6400_msa_long_float5)
15108         (i6400_msa_long_float8, i6400_msa_fdiv_df)
15109         (i6400_msa_fdiv_sf): New reservations.
15110         * config/mips/p5600.md (p5600_fpu_intadd, p5600_fpu_cmp)
15111         (p5600_fpu_float, p5600_fpu_logic_a, p5600_fpu_logic_b)
15112         (p5600_fpu_div, p5600_fpu_logic, p5600_fpu_float_a)
15113         (p5600_fpu_float_b, p5600_fpu_float_c, p5600_fpu_float_d)
15114         (p5600_fpu_mult, p5600_fpu_fdiv, p5600_fpu_load): New cpu units.
15115         (msa_short_int_add, msa_short_logic, msa_short_logic_move_v)
15116         (msa_short_cmp, msa_short_float2, msa_short_logic3)
15117         (msa_short_store4, msa_long_load, msa_short_store)
15118         (msa_long_logic, msa_long_float2, msa_long_float4)
15119         (msa_long_float5, msa_long_float8, msa_long_mult)
15120         (msa_long_fdiv, msa_long_div): New reservations.
15122 2016-05-09  Robert Suchanek  <robert.suchanek@imgtec.com>
15123             Sameera Deshpande  <sameera.deshpande@imgtec.com>
15124             Matthew Fortune  <matthew.fortune@imgtec.com>
15125             Graham Stott  <graham.stott@imgtec.com>
15126             Chao-ying Fu  <chao-ying.fu@imgtec.com>
15128         * config.gcc: Add MSA header file for mips*-*-* target.
15129         * config/mips/constraints.md (YI, YC, YZ, Unv5, Uuv5, Usv5, Uuv6)
15130         (Ubv8i, Urv8):  New constraints.
15131         * config/mips/mips-ftypes.def: Add function types for MSA
15132         builtins.
15133         * config/mips/mips-modes.def (V16QI, V8HI, V4SI, V2DI, V4SF)
15134         (V2DF, V32QI, V16HI, V8SI, V4DI, V8SF, V4DF): New modes.
15135         * config/mips/mips-msa.md: New file.
15136         * config/mips/mips-protos.h
15137         (mips_split_128bit_const_insns): New prototype.
15138         (mips_msa_idiv_insns): Likewise.
15139         (mips_split_128bit_move): Likewise.
15140         (mips_split_128bit_move_p): Likewise.
15141         (mips_split_msa_copy_d): Likewise.
15142         (mips_split_msa_insert_d): Likewise.
15143         (mips_split_msa_fill_d): Likewise.
15144         (mips_expand_msa_branch): Likewise.
15145         (mips_const_vector_same_val_p): Likewise.
15146         (mips_const_vector_same_bytes_p): Likewise.
15147         (mips_const_vector_same_int_p): Likewise.
15148         (mips_const_vector_shuffle_set_p): Likewise.
15149         (mips_const_vector_bitimm_set_p): Likewise.
15150         (mips_const_vector_bitimm_clr_p): Likewise.
15151         (mips_msa_vec_parallel_const_half): Likewise.
15152         (mips_msa_output_division): Likewise.
15153         (mips_ldst_scaled_shift): Likewise.
15154         (mips_expand_vec_cond_expr): Likewise.
15155         * config/mips/mips.c (enum mips_builtin_type): Add
15156         MIPS_BUILTIN_MSA_TEST_BRANCH.
15157         (mips_gen_const_int_vector_shuffle): New prototype.
15158         (mips_const_vector_bitimm_set_p): New function.
15159         (mips_const_vector_bitimm_clr_p): Likewise.
15160         (mips_const_vector_same_val_p): Likewise.
15161         (mips_const_vector_same_bytes_p): Likewise.
15162         (mips_const_vector_same_int_p): Likewise.
15163         (mips_const_vector_shuffle_set_p): Likewise.
15164         (mips_symbol_insns): Forbid loading symbols via immediate for
15165         MSA.
15166         (mips_valid_offset_p): Limit offset to 10-bit for MSA loads and
15167         stores.
15168         (mips_valid_lo_sum_p): Forbid loadings symbols via %lo(base) for
15169         MSA.
15170         (mips_lx_address_p): Add support load indexed address for MSA.
15171         (mips_address_insns): Add calculation of instructions needed for
15172         stores and loads for MSA.
15173         (mips_const_insns): Move CONST_DOUBLE below CONST_VECTOR.  Handle
15174         CONST_VECTOR for MSA and let it fall through.
15175         (mips_ldst_scaled_shift): New function.
15176         (mips_subword_at_byte): Likewise.
15177         (mips_msa_idiv_insns): Likewise.
15178         (mips_legitimize_move): Validate MSA moves.
15179         (mips_rtx_costs): Add UNGE, UNGT, UNLE, UNLT cases.  Add
15180         calculation of costs for MSA division.
15181         (mips_split_move_p): Check if MSA moves need splitting.
15182         (mips_split_move): Split MSA moves if necessary.
15183         (mips_split_128bit_move_p): New function.
15184         (mips_split_128bit_move): Likewise.
15185         (mips_split_msa_copy_d): Likewise.
15186         (mips_split_msa_insert_d): Likewise.
15187         (mips_split_msa_fill_d): Likewise.
15188         (mips_output_move): Handle MSA moves.
15189         (mips_expand_msa_branch): New function.
15190         (mips_print_operand): Add 'E', 'B', 'w', 'v' and 'V' modifiers.
15191         Reinstate 'y' modifier.
15192         (mips_file_start): Add MSA .gnu_attribute.
15193         (mips_hard_regno_mode_ok_p): Allow TImode and 128-bit vectors in
15194         FPRs.
15195         (mips_hard_regno_nregs): Always return 1 for MSA supported mode.
15196         (mips_class_max_nregs): Add register size for MSA supported mode.
15197         (mips_cannot_change_mode_class): Allow conversion between MSA
15198         vector modes and TImode.
15199         (mips_mode_ok_for_mov_fmt_p): Allow MSA to use move.v
15200         instruction.
15201         (mips_secondary_reload_class): Force MSA loads/stores via memory.
15202         (mips_preferred_simd_mode): Add preffered modes for MSA.
15203         (mips_vector_mode_supported_p): Add MSA supported modes.
15204         (mips_autovectorize_vector_sizes): New function.
15205         (mips_msa_output_division): Likewise.
15206         (MSA_BUILTIN, MIPS_BUILTIN_DIRECT_NO_TARGET)
15207         (MSA_NO_TARGET_BUILTIN, MSA_BUILTIN_TEST_BRANCH): New macros.
15208         (CODE_FOR_msa_adds_s_b, CODE_FOR_msa_adds_s_h)
15209         (CODE_FOR_msa_adds_s_w, CODE_FOR_msa_adds_s_d)
15210         (CODE_FOR_msa_adds_u_b, CODE_FOR_msa_adds_u_h)
15211         (CODE_FOR_msa_adds_u_w, CODE_FOR_msa_adds_u_du
15212         (CODE_FOR_msa_addv_b, CODE_FOR_msa_addv_h, CODE_FOR_msa_addv_w)
15213         (CODE_FOR_msa_addv_d, CODE_FOR_msa_and_v, CODE_FOR_msa_bmnz_v)
15214         (CODE_FOR_msa_bmnzi_b, CODE_FOR_msa_bmz_v, CODE_FOR_msa_bmzi_b)
15215         (CODE_FOR_msa_bnz_v, CODE_FOR_msa_bz_v, CODE_FOR_msa_bsel_v)
15216         (CODE_FOR_msa_bseli_b, CODE_FOR_msa_ceqi_h, CODE_FOR_msa_ceqi_w)
15217         (CODE_FOR_msa_ceqi_d, CODE_FOR_msa_clti_s_b)
15218         (CODE_FOR_msa_clti_s_h, CODE_FOR_msa_clti_s_w)
15219         (CODE_FOR_msa_clti_s_d, CODE_FOR_msa_clti_u_b)
15220         (CODE_FOR_msa_clti_u_h, CODE_FOR_msa_clti_u_w)
15221         (CODE_FOR_msa_clti_u_d, CODE_FOR_msa_clei_s_b)
15222         (CODE_FOR_msa_clei_s_h, CODE_FOR_msa_clei_s_w)
15223         (CODE_FOR_msa_clei_s_d, CODE_FOR_msa_clei_u_b)
15224         (CODE_FOR_msa_clei_u_h, CODE_FOR_msa_clei_u_w)
15225         (CODE_FOR_msa_clei_u_d, CODE_FOR_msa_div_s_b)
15226         (CODE_FOR_msa_div_s_h, CODE_FOR_msa_div_s_w)
15227         (CODE_FOR_msa_div_s_d, CODE_FOR_msa_div_u_b)
15228         (CODE_FOR_msa_div_u_h, CODE_FOR_msa_div_u_w)
15229         (CODE_FOR_msa_div_u_d, CODE_FOR_msa_fadd_w, CODE_FOR_msa_fadd_d)
15230         (CODE_FOR_msa_fexdo_w, CODE_FOR_msa_ftrunc_s_w)
15231         (CODE_FOR_msa_ftrunc_s_d, CODE_FOR_msa_ftrunc_u_w)
15232         (CODE_FOR_msa_ftrunc_u_d, CODE_FOR_msa_ffint_s_w)
15233         (CODE_FOR_msa_ffint_s_d, CODE_FOR_msa_ffint_u_w)
15234         (CODE_FOR_msa_ffint_u_d, CODE_FOR_msa_fsub_w)
15235         (CODE_FOR_msa_fsub_d, CODE_FOR_msa_fmsub_d, CODE_FOR_msa_fmadd_w)
15236         (CODE_FOR_msa_fmadd_d, CODE_FOR_msa_fmsub_w, CODE_FOR_msa_fmul_w)
15237         (CODE_FOR_msa_fmul_d, CODE_FOR_msa_fdiv_w, CODE_FOR_msa_fdiv_d)
15238         (CODE_FOR_msa_fmax_w, CODE_FOR_msa_fmax_d, CODE_FOR_msa_fmax_a_w)
15239         (CODE_FOR_msa_fmax_a_d, CODE_FOR_msa_fmin_w, CODE_FOR_msa_fmin_d)
15240         (CODE_FOR_msa_fmin_a_w, CODE_FOR_msa_fmin_a_d)
15241         (CODE_FOR_msa_fsqrt_w, CODE_FOR_msa_fsqrt_d)
15242         (CODE_FOR_msa_max_s_b, CODE_FOR_msa_max_s_h)
15243         (CODE_FOR_msa_max_s_w, CODE_FOR_msa_max_s_d)
15244         (CODE_FOR_msa_max_u_b, CODE_FOR_msa_max_u_h)
15245         (CODE_FOR_msa_max_u_w, CODE_FOR_msa_max_u_d)
15246         (CODE_FOR_msa_min_s_b, CODE_FOR_msa_min_s_h)
15247         (CODE_FOR_msa_min_s_w, CODE_FOR_msa_min_s_d)
15248         (CODE_FOR_msa_min_u_b, CODE_FOR_msa_min_u_h)
15249         (CODE_FOR_msa_min_u_w, CODE_FOR_msa_min_u_d)
15250         (CODE_FOR_msa_mod_s_b, CODE_FOR_msa_mod_s_h)
15251         (CODE_FOR_msa_mod_s_w, CODE_FOR_msa_mod_s_d)
15252         (CODE_FOR_msa_mod_u_b, CODE_FOR_msa_mod_u_h)
15253         (CODE_FOR_msa_mod_u_w, CODE_FOR_msa_mod_u_d)
15254         (CODE_FOR_msa_mod_s_b, CODE_FOR_msa_mod_s_h)
15255         (CODE_FOR_msa_mod_s_w, CODE_FOR_msa_mod_s_d)
15256         (CODE_FOR_msa_mod_u_b, CODE_FOR_msa_mod_u_h)
15257         (CODE_FOR_msa_mod_u_w, CODE_FOR_msa_mod_u_d)
15258         (CODE_FOR_msa_mulv_b, CODE_FOR_msa_mulv_h, CODE_FOR_msa_mulv_w)
15259         (CODE_FOR_msa_mulv_d, CODE_FOR_msa_nlzc_b, CODE_FOR_msa_nlzc_h)
15260         (CODE_FOR_msa_nlzc_w, CODE_FOR_msa_nlzc_d, CODE_FOR_msa_nor_v)
15261         (CODE_FOR_msa_or_v, CODE_FOR_msa_ori_b, CODE_FOR_msa_nori_b)
15262         (CODE_FOR_msa_pcnt_b, CODE_FOR_msa_pcnt_h, CODE_FOR_msa_pcnt_w)
15263         (CODE_FOR_msa_pcnt_d, CODE_FOR_msa_xor_v, CODE_FOR_msa_xori_b)
15264         (CODE_FOR_msa_sll_b, CODE_FOR_msa_sll_h, CODE_FOR_msa_sll_w)
15265         (CODE_FOR_msa_sll_d, CODE_FOR_msa_slli_b, CODE_FOR_msa_slli_h)
15266         (CODE_FOR_msa_slli_w, CODE_FOR_msa_slli_d, CODE_FOR_msa_sra_b)
15267         (CODE_FOR_msa_sra_h, CODE_FOR_msa_sra_w, CODE_FOR_msa_sra_d)
15268         (CODE_FOR_msa_srai_b, CODE_FOR_msa_srai_h, CODE_FOR_msa_srai_w)
15269         (CODE_FOR_msa_srai_d, CODE_FOR_msa_srl_b, CODE_FOR_msa_srl_h)
15270         (CODE_FOR_msa_srl_w, CODE_FOR_msa_srl_d, CODE_FOR_msa_srli_b)
15271         (CODE_FOR_msa_srli_h, CODE_FOR_msa_srli_w, CODE_FOR_msa_srli_d)
15272         (CODE_FOR_msa_subv_b, CODE_FOR_msa_subv_h, CODE_FOR_msa_subv_w)
15273         (CODE_FOR_msa_subv_d, CODE_FOR_msa_subvi_b, CODE_FOR_msa_subvi_h)
15274         (CODE_FOR_msa_subvi_w, CODE_FOR_msa_subvi_d, CODE_FOR_msa_move_v)
15275         (CODE_FOR_msa_vshf_b, CODE_FOR_msa_vshf_h, CODE_FOR_msa_vshf_w)
15276         (CODE_FOR_msa_vshf_d, CODE_FOR_msa_ilvod_d, CODE_FOR_msa_ilvev_d)
15277         (CODE_FOR_msa_pckod_d, CODE_FOR_msa_pckdev_d, CODE_FOR_msa_ldi_b)
15278         (CODE_FOR_msa_ldi_hi, CODE_FOR_msa_ldi_w)
15279         (CODE_FOR_msa_ldi_d): New code_aliasing macros.
15280         (mips_builtins): Add MSA sll_b, sll_h, sll_w, sll_d, slli_b,
15281         slli_h, slli_w, slli_d, sra_b, sra_h, sra_w, sra_d, srai_b,
15282         srai_h, srai_w, srai_d, srar_b, srar_h, srar_w, srar_d, srari_b,
15283         srari_h, srari_w, srari_d, srl_b, srl_h, srl_w, srl_d, srli_b,
15284         srli_h, srli_w, srli_d, srlr_b, srlr_h, srlr_w, srlr_d, srlri_b,
15285         srlri_h, srlri_w, srlri_d, bclr_b, bclr_h, bclr_w, bclr_d,
15286         bclri_b, bclri_h, bclri_w, bclri_d, bset_b, bset_h, bset_w,
15287         bset_d, bseti_b, bseti_h, bseti_w, bseti_d, bneg_b, bneg_h,
15288         bneg_w, bneg_d, bnegi_b, bnegi_h, bnegi_w, bnegi_d, binsl_b,
15289         binsl_h, binsl_w, binsl_d, binsli_b, binsli_h, binsli_w,
15290         binsli_d, binsr_b, binsr_h, binsr_w, binsr_d, binsri_b, binsri_h,
15291         binsri_w, binsri_d, addv_b, addv_h, addv_w, addv_d, addvi_b,
15292         addvi_h, addvi_w, addvi_d, subv_b, subv_h, subv_w, subv_d,
15293         subvi_b, subvi_h, subvi_w, subvi_d, max_s_b, max_s_h, max_s_w,
15294         max_s_d, maxi_s_b, maxi_s_h, maxi_s_w, maxi_s_d, max_u_b,
15295         max_u_h, max_u_w, max_u_d, maxi_u_b, maxi_u_h, maxi_u_w,
15296         maxi_u_d, min_s_b, min_s_h, min_s_w, min_s_d, mini_s_b, mini_s_h,
15297         mini_s_w, mini_s_d, min_u_b, min_u_h, min_u_w, min_u_d, mini_u_b,
15298         mini_u_h, mini_u_w, mini_u_d, max_a_b, max_a_h, max_a_w, max_a_d,
15299         min_a_b, min_a_h, min_a_w, min_a_d, ceq_b, ceq_h, ceq_w, ceq_d,
15300         ceqi_b, ceqi_h, ceqi_w, ceqi_d, clt_s_b, clt_s_h, clt_s_w,
15301         clt_s_d, clti_s_b, clti_s_h, clti_s_w, clti_s_d, clt_u_b,
15302         clt_u_h, clt_u_w, clt_u_d, clti_u_b, clti_u_h, clti_u_w,
15303         clti_u_d, cle_s_b, cle_s_h, cle_s_w, cle_s_d, clei_s_b, clei_s_h,
15304         clei_s_w, clei_s_d, cle_u_b, cle_u_h, cle_u_w, cle_u_d, clei_u_b,
15305         clei_u_h, clei_u_w, clei_u_d, ld_b, ld_h, ld_w, ld_d, st_b, st_h,
15306         st_w, st_d, sat_s_b, sat_s_h, sat_s_w, sat_s_d, sat_u_b, sat_u_h,
15307         sat_u_w, sat_u_d, add_a_b, add_a_h, add_a_w, add_a_d, adds_a_b,
15308         adds_a_h, adds_a_w, adds_a_d, adds_s_b, adds_s_h, adds_s_w,
15309         adds_s_d, adds_u_b, adds_u_h, adds_u_w, adds_u_d, ave_s_b,
15310         ave_s_h, ave_s_w, ave_s_d, ave_u_b, ave_u_h, ave_u_w, ave_u_d,
15311         aver_s_b, aver_s_h, aver_s_w, aver_s_d, aver_u_b, aver_u_h,
15312         aver_u_w, aver_u_d, subs_s_b, subs_s_h, subs_s_w, subs_s_d,
15313         subs_u_b, subs_u_h, subs_u_w, subs_u_d, subsuu_s_b, subsuu_s_h,
15314         subsuu_s_w, subsuu_s_d, subsus_u_b, subsus_u_h, subsus_u_w,
15315         subsus_u_d, asub_s_b, asub_s_h, asub_s_w, asub_s_d, asub_u_b,
15316         asub_u_h, asub_u_w, asub_u_d, mulv_b, mulv_h, mulv_w, mulv_d,
15317         maddv_b, maddv_h, maddv_w, maddv_d, msubv_b, msubv_h, msubv_w,
15318         msubv_d, div_s_b, div_s_h, div_s_w, div_s_d, div_u_b, div_u_h,
15319         div_u_w, div_u_d, hadd_s_h, hadd_s_w, hadd_s_d, hadd_u_h,
15320         hadd_u_w, hadd_u_d, hsub_s_h, hsub_s_w, hsub_s_d, hsub_u_h,
15321         hsub_u_w, hsub_u_d, mod_s_b, mod_s_h, mod_s_w, mod_s_d, mod_u_b,
15322         mod_u_h, mod_u_w, mod_u_d, dotp_s_h, dotp_s_w, dotp_s_d,
15323         dotp_u_h, dotp_u_w, dotp_u_d, dpadd_s_h, dpadd_s_w, dpadd_s_d,
15324         dpadd_u_h, dpadd_u_w, dpadd_u_d, dpsub_s_h, dpsub_s_w, dpsub_s_d,
15325         dpsub_u_h, dpsub_u_w, dpsub_u_d, sld_b, sld_h, sld_w, sld_d,
15326         sldi_b, sldi_h, sldi_w, sldi_d, splat_b, splat_h, splat_w,
15327         splat_d, splati_b, splati_h, splati_w, splati_d, pckev_b,
15328         pckev_h, pckev_w, pckev_d, pckod_b, pckod_h, pckod_w, pckod_d,
15329         ilvl_b, ilvl_h, ilvl_w, ilvl_d, ilvr_b, ilvr_h, ilvr_w, ilvr_d,
15330         ilvev_b, ilvev_h, ilvev_w, ilvev_d, ilvod_b, ilvod_h, ilvod_w,
15331         ilvod_d, vshf_b, vshf_h, vshf_w, vshf_d, and_v, andi_b, or_v,
15332         ori_b, nor_v, nori_b, xor_v, xori_b, bmnz_v, bmnzi_b, bmz_v,
15333         bmzi_b, bsel_v, bseli_b, shf_b, shf_h, shf_w, bnz_v, bz_v,
15334         fill_b, fill_h, fill_w, fill_d, pcnt_b, pcnt_h, pcnt_w,
15335         pcnt_d, nloc_b, nloc_h, nloc_w, nloc_d, nlzc_b, nlzc_h, nlzc_w,
15336         nlzc_d, copy_s_b, copy_s_h, copy_s_w, copy_s_d, copy_u_b,
15337         copy_u_h, copy_u_w, copy_u_d, insert_b, insert_h, insert_w,
15338         insert_d, insve_b, insve_h, insve_w, insve_d, bnz_b, bnz_h,
15339         bnz_w, bnz_d, bz_b, bz_h, bz_w, bz_d, ldi_b, ldi_h, ldi_w, ldi_d,
15340         fcaf_w, fcaf_d, fcor_w, fcor_d, fcun_w, fcun_d, fcune_w, fcune_d,
15341         fcueq_w, fcueq_d, fceq_w, fceq_d, fcne_w, fcne_d, fclt_w, fclt_d,
15342         fcult_w, fcult_d, fcle_w, fcle_d, fcule_w, fcule_d, fsaf_w,
15343         fsaf_d, fsor_w, fsor_d, fsun_w, fsun_d, fsune_w, fsune_d,
15344         fsueq_w, fsueq_d, fseq_w, fseq_d, fsne_w, fsne_d, fslt_w,
15345         fslt_d, fsult_w, fsult_d, fsle_w, fsle_d, fsule_w, fsule_d,
15346         fadd_w, fadd_d, fsub_w, fsub_d, fmul_w, fmul_d, fdiv_w, fdiv_d,
15347         fmadd_w, fmadd_d, fmsub_w, fmsub_d, fexp2_w, fexp2_d, fexdo_h,
15348         fexdo_w, ftq_h, ftq_w, fmin_w, fmin_d, fmin_a_w, fmin_a_d,
15349         fmax_w, fmax_d, fmax_a_w, fmax_a_d, mul_q_h, mul_q_w, mulr_q_h,
15350         mulr_q_w, madd_q_h, madd_q_w, maddr_q_h, maddr_q_w, msub_q_h,
15351         msub_q_w, msubr_q_h, msubr_q_w, fclass_w, fclass_d, fsqrt_w,
15352         fsqrt_d, frcp_w, frcp_d, frint_w, frint_d, frsqrt_w, frsqrt_d,
15353         flog2_w, flog2_d, fexupl_w, fexupl_d, fexupr_w, fexupr_d, ffql_w,
15354         ffql_d, ffqr_w, ffqr_d, ftint_s_w, ftint_s_d, ftint_u_w,
15355         ftint_u_d, ftrunc_s_w, ftrunc_s_d, ftrunc_u_w, ftrunc_u_d,
15356         ffint_s_w, ffint_s_d, ffint_u_w, ffint_u_d, ctcmsa, cfcmsa,
15357         move_v builtins.
15358         (mips_get_builtin_decl_index): New array.
15359         (MIPS_ATYPE_QI, MIPS_ATYPE_HI, MIPS_ATYPE_V2DI, MIPS_ATYPE_V4SI)
15360         (MIPS_ATYPE_V8HI, MIPS_ATYPE_V16QI, MIPS_ATYPE_V2DF)
15361         (MIPS_ATYPE_V4SF, MIPS_ATYPE_UV2DI, MIPS_ATYPE_UV4SI)
15362         (MIPS_ATYPE_UV8HI, MIPS_ATYPE_UV16QI): New.
15363         (mips_init_builtins): Initialize mips_get_builtin_decl_index
15364         array.
15365         (TARGET_VECTORIZE_BUILTIN_VECTORIZED_FUNCTION): Define target
15366         hook.
15367         (mips_expand_builtin_insn): Prepare operands for
15368         CODE_FOR_msa_addvi_b, CODE_FOR_msa_addvi_h, CODE_FOR_msa_addvi_w,
15369         CODE_FOR_msa_addvi_d, CODE_FOR_msa_clti_u_b,
15370         CODE_FOR_msa_clti_u_h, CODE_FOR_msa_clti_u_w,
15371         CODE_FOR_msa_clti_u_d, CODE_FOR_msa_clei_u_b,
15372         CODE_FOR_msa_clei_u_h, CODE_FOR_msa_clei_u_w,
15373         CODE_FOR_msa_clei_u_d, CODE_FOR_msa_maxi_u_b,
15374         CODE_FOR_msa_maxi_u_h, CODE_FOR_msa_maxi_u_w,
15375         CODE_FOR_msa_maxi_u_d, CODE_FOR_msa_mini_u_b,
15376         CODE_FOR_msa_mini_u_h, CODE_FOR_msa_mini_u_w,
15377         CODE_FOR_msa_mini_u_d, CODE_FOR_msa_subvi_b,
15378         CODE_FOR_msa_subvi_h, CODE_FOR_msa_subvi_w, CODE_FOR_msa_subvi_d,
15379         CODE_FOR_msa_ceqi_b, CODE_FOR_msa_ceqi_h, CODE_FOR_msa_ceqi_w,
15380         CODE_FOR_msa_ceqi_d, CODE_FOR_msa_clti_s_b,
15381         CODE_FOR_msa_clti_s_h, CODE_FOR_msa_clti_s_w,
15382         CODE_FOR_msa_clti_s_d, CODE_FOR_msa_clei_s_b,
15383         CODE_FOR_msa_clei_s_h, CODE_FOR_msa_clei_s_w,
15384         CODE_FOR_msa_clei_s_d, CODE_FOR_msa_maxi_s_b,
15385         CODE_FOR_msa_maxi_s_h, CODE_FOR_msa_maxi_s_w,
15386         CODE_FOR_msa_maxi_s_d, CODE_FOR_msa_mini_s_b,
15387         CODE_FOR_msa_mini_s_h, CODE_FOR_msa_mini_s_w,
15388         CODE_FOR_msa_mini_s_d, CODE_FOR_msa_andi_b, CODE_FOR_msa_ori_b,
15389         CODE_FOR_msa_nori_b, CODE_FOR_msa_xori_b, CODE_FOR_msa_bmzi_b,
15390         CODE_FOR_msa_bmnzi_b, CODE_FOR_msa_bseli_b, CODE_FOR_msa_fill_b,
15391         CODE_FOR_msa_fill_h, CODE_FOR_msa_fill_w, CODE_FOR_msa_fill_d,
15392         CODE_FOR_msa_ilvl_b, CODE_FOR_msa_ilvl_h, CODE_FOR_msa_ilvl_w,
15393         CODE_FOR_msa_ilvl_d, CODE_FOR_msa_ilvr_b, CODE_FOR_msa_ilvr_h,
15394         CODE_FOR_msa_ilvr_w, CODE_FOR_msa_ilvr_d, CODE_FOR_msa_ilvev_b,
15395         CODE_FOR_msa_ilvev_h, CODE_FOR_msa_ilvev_w, CODE_FOR_msa_ilvod_b,
15396         CODE_FOR_msa_ilvod_h, CODE_FOR_msa_ilvod_w, CODE_FOR_msa_pckev_b,
15397         CODE_FOR_msa_pckev_h, CODE_FOR_msa_pckev_w, CODE_FOR_msa_pckod_b,
15398         CODE_FOR_msa_pckod_h, CODE_FOR_msa_pckod_w, CODE_FOR_msa_slli_b,
15399         CODE_FOR_msa_slli_h, CODE_FOR_msa_slli_w, CODE_FOR_msa_slli_d,
15400         CODE_FOR_msa_srai_b, CODE_FOR_msa_srai_h, CODE_FOR_msa_srai_w,
15401         CODE_FOR_msa_srai_d, CODE_FOR_msa_srli_b, CODE_FOR_msa_srli_h,
15402         CODE_FOR_msa_srli_w, CODE_FOR_msa_srli_d, CODE_FOR_msa_insert_b,
15403         CODE_FOR_msa_insert_h, CODE_FOR_msa_insert_w,
15404         CODE_FOR_msa_insert_d, CODE_FOR_msa_insve_b,
15405         CODE_FOR_msa_insve_h, CODE_FOR_msa_insve_w, CODE_FOR_msa_insve_d,
15406         CODE_FOR_msa_shf_b, CODE_FOR_msa_shf_h, CODE_FOR_msa_shf_w,
15407         CODE_FOR_msa_shf_w_f, CODE_FOR_msa_vshf_b, CODE_FOR_msa_vshf_h,
15408         CODE_FOR_msa_vshf_w, CODE_FOR_msa_vshf_d.
15409         (mips_expand_builtin): Add case for MIPS_BULTIN_MSA_TEST_BRANCH.
15410         (mips_set_compression_mode): Disallow MSA with MIPS16 code.
15411         (mips_option_override): -mmsa requires -mfp64 and -mhard-float.
15412         These are set implicitly and an error is reported if overridden.
15413         (mips_expand_builtin_msa_test_branch): New function.
15414         (mips_expand_msa_shuffle): Likewise.
15415         (MAX_VECT_LEN): Increase maximum length of a vector to 16 bytes.
15416         (TARGET_SCHED_REASSOCIATION_WIDTH): Define target hook.
15417         (TARGET_VECTORIZE_AUTOVECTORIZE_VECTOR_SIZES): Likewise.
15418         (mips_expand_vec_unpack): Add support for MSA.
15419         (mips_expand_vector_init): Likewise.
15420         (mips_expand_vi_constant): Use CONST0_RTX (element_mode)
15421         instead of const0_rtx.
15422         (mips_msa_vec_parallel_const_half): New function.
15423         (mips_gen_const_int_vector): Likewise.
15424         (mips_gen_const_int_vector_shuffle): Likewise.
15425         (mips_expand_msa_cmp): Likewise.
15426         (mips_expand_vec_cond_expr): Likewise.
15427         * config/mips/mips.h
15428         (TARGET_CPU_CPP_BUILTINS): Add __mips_msa and __mips_msa_width.
15429         (OPTION_DEFAULT_SPECS): Ignore --with-fp-32 if -mmsa is
15430         specified.
15431         (ASM_SPEC): Pass mmsa and mno-msa to the assembler.
15432         (ISA_HAS_MSA): New macro.
15433         (UNITS_PER_MSA_REG): Likewise.
15434         (BITS_PER_MSA_REG): Likewise.
15435         (BIGGEST_ALIGNMENT): Redefine using ISA_HAS_MSA.
15436         (MSA_REG_FIRST): New macro.
15437         (MSA_REG_LAST): Likewise.
15438         (MSA_REG_NUM): Likewise.
15439         (MSA_REG_P): Likewise.
15440         (MSA_REG_RTX_P): Likewise.
15441         (MSA_SUPPORTED_MODE_P): Likewise.
15442         (HARD_REGNO_CALL_PART_CLOBBERED): Redefine using TARGET_MSA.
15443         (ADDITIONAL_REGISTER_NAMES): Add named registers $w0-$w31.
15444         * config/mips/mips.md: Include mips-msa.md.
15445         (alu_type): Add simd_add.
15446         (mode): Add V2DI, V4SI, V8HI, V16QI, V2DF, V4SF.
15447         (type): Add simd_div, simd_fclass, simd_flog2, simd_fadd,
15448         simd_fcvt, simd_fmul, simd_fmadd, simd_fdiv, simd_bitins,
15449         simd_bitmov, simd_insert, simd_sld, simd_mul, simd_fcmp,
15450         simd_fexp2, simd_int_arith, simd_bit, simd_shift, simd_splat,
15451         simd_fill, simd_permute, simd_shf, simd_sat, simd_pcnt,
15452         simd_copy, simd_branch, simd_cmsa, simd_fminmax, simd_logic,
15453         simd_move, simd_load, simd_store.  Choose "multi" for moves
15454         for "qword_mode".
15455         (qword_mode): New attribute.
15456         (insn_count): Add instruction count for quad moves.
15457         Increase the count for MIPS SIMD division.
15458         (UNITMODE): Add UNITMODEs for vector types.
15459         (addsub): New code iterator.
15460         * config/mips/mips.opt (mmsa): New option.
15461         * config/mips/msa.h: New file.
15462         * config/mips/mti-elf.h: Don't infer -mfpxx if -mmsa is
15463         specified.
15464         * config/mips/mti-linux.h: Likewise.
15465         * config/mips/predicates.md
15466         (const_msa_branch_operand): New constraint.
15467         (const_uimm3_operand): Likewise.
15468         (const_uimm4_operand): Likewise.
15469         (const_uimm5_operand): Likewise.
15470         (const_uimm8_operand): Likewise.
15471         (const_imm5_operand): Likewise.
15472         (aq10b_operand): Likewise.
15473         (aq10h_operand): Likewise.
15474         (aq10w_operand): Likewise.
15475         (aq10d_operand): Likewise.
15476         (const_m1_operand): Likewise.
15477         (reg_or_m1_operand): Likewise.
15478         (const_exp_2_operand): Likewise.
15479         (const_exp_4_operand): Likewise.
15480         (const_exp_8_operand): Likewise.
15481         (const_exp_16_operand): Likewise.
15482         (const_vector_same_val_operand): Likewise.
15483         (const_vector_same_simm5_operand): Likewise.
15484         (const_vector_same_uimm5_operand): Likewise.
15485         (const_vector_same_uimm6_operand): Likewise.
15486         (const_vector_same_uimm8_operand): Likewise.
15487         (par_const_vector_shf_set_operand): Likewise.
15488         (reg_or_vector_same_val_operand): Likewise.
15489         (reg_or_vector_same_simm5_operand): Likewise.
15490         (reg_or_vector_same_uimm6_operand): Likewise.
15491         * doc/extend.texi (MIPS SIMD Architecture Functions): New
15492         section.
15493         * doc/invoke.texi (-mmsa): Document new option.
15495 2016-05-09  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
15497         * configure.ac (enable_vtable_verify): Handle --enable-vtable-verify.
15498         * configure: Regenerate.
15499         * config.in: Regenerate.
15500         * gcc.c (VTABLE_VERIFICATION_SPEC) [!ENABLE_VTABLE_VERIFY]: Error
15501         on -fvtable-verify.
15502         * config/sol2.h [!ENABLE_VTABLE_VERIFY] (STARTFILE_VTV_SPEC): Define.
15503         (ENDFILE_VTV_SPEC): Define.
15505 2016-05-09  Kaushik Phatak  <kaushik.phatak@kpit.com>
15507         * config/rl78/rl78.c (rl78_expand_prologue): Save the MDUC related
15508         registers in all interrupt handlers if necessary.
15509         (rl78_option_override): Add warning.
15510         (MUST_SAVE_MDUC_REGISTERS): New macro.
15511         (rl78_expand_epilogue): Restore the MDUC registers if necessary.
15512         * config/rl78/rl78.c (check_mduc_usage): New function.
15513         (mduc_regs): New structure to hold MDUC register data.
15514         * config/rl78/rl78.md (is_g13_muldiv_insn): New attribute.
15515         (mulsi3_g13): Add is_g13_muldiv_insn attribute.
15516         (udivmodsi4_g13): Add is_g13_muldiv_insn attribute.
15517         (mulhi3_g13): Add is_g13_muldiv_insn attribute.
15518         * config/rl78/rl78.opt (msave-mduc-in-interrupts): New option.
15519         * doc/invoke.texi (RL78 Options): Add -msave-mduc-in-interrupts.
15521 2016-05-09  Bin Cheng  <bin.cheng@arm.com>
15523         * tree-if-conv.c (tree-ssa-loop.h): Include header file.
15524         (tree-ssa-loop-niter.h): Ditto.
15525         (idx_within_array_bound, ref_within_array_bound): New functions.
15526         (ifcvt_memrefs_wont_trap): Check if array ref is within bound.
15527         Factor out check on writable base object to ...
15528         (base_object_writable): ... here.
15530 2016-05-09  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
15532         * config/arm/arm.md (probe_stack): Add modes to set source
15533         and destination.
15535 2016-05-09  Bernd Schmidt  <bschmidt@redhat.com>
15537         * regrename.c (base_reg_class_for_rename): New static function.
15538         (scan_rtx_address, scan_rtx): Use it instead of base_reg_class.
15540 2016-05-08  Jan Hubicka  <hubicka@ucw.cz>
15542         * cgraph.c (thunk_adjust): Export.
15543         * cgraphclones.c (cgraph_node::create_clone): Clone thunk info.
15544         * cgraphunit.c (thunk_adjust): Export.
15545         (cgraph_node::assemble_thunks_and_aliases): Do not assemble inlined
15546         thunks.
15547         * ipa-inline-analyssi.c (compute_inline_parameters): Thunks are
15548         inlinable.
15549         * tree-inline.c (expand_call_inline): Expand thunks inline.
15551 2016-05-08  Uros Bizjak  <ubizjak@gmail.com>
15553         PR target/70998
15554         * config/i386/sse.md (*sse2_vd_cvtsd2ss): New insn pattern.
15555         (*sse2_vd_cvtss2sd): Ditto.
15556         * config/i386/i386.md
15557         (TARGET_SSE_PARTIAL_REG_DEPENDENCY float_truncate df->sf splitter):
15558         Generate *sse2_vd_cvtsd2ss pattern.
15559         (TARGET_SSE_PARTIAL_REG_DEPENDENCY float_extend sf->df splitter):
15560         Generate *sse2_vd_cvtss2sd pattern.
15562 2016-05-08  Oleg Endo  <olegendo@gcc.gnu.org>
15564         * config/sh/sh.h (GET_SH_ARG_CLASS): Convert macro into ...
15565         * config/sh/sh.c (get_sh_arg_class): ... this new function.  Update its
15566         users.
15568 2016-05-08  Oleg Endo  <olegendo@gcc.gnu.org>
15570         * config/sh/sh-protos.h (sh_media_register_for_return): Remove.
15571         * config/sh/sh.c: Define and declare variables on first use throughout
15572         the file.
15573         (current_function_interrupt): Change to bool type.
15574         (frame_insn): Rename to emit_frame_insn and update users.
15575         (push_regs): Use bool for 'interrupt_handler' argument.
15576         (save_schedule_s): Remove.
15577         (TARGET_ASM_UNALIGNED_DI_OP, TARGET_ASM_ALIGNED_DI_OP): Remove.
15578         (sh_option_override): Don't nullify targetm.asm_out.aligned_op.di and
15579         targetm.asm_out.unaligned_op.di.
15580         (gen_far_branch): Remove redundant forward declaration.
15581         (sh_media_register_for_return, MAX_SAVED_REGS, save_entry_s, save_entry,
15582         MAX_TEMPS, save_schedule_ssave_schedule): Remove.
15583         (sh_set_return_address, sh_function_ok_for_sibcall,
15584         scavenge_reg): Update comments.
15585         (sh_builtin_saveregs): Use TRAGET_FPU_ANY condition.
15586         (sh2a_get_function_vector_number, sh2a_function_vector_p): Use for loop.
15587         (sh_attr_renesas_p): Remove unnecessary parentheses.
15588         (branch_dest): Simplify.
15589         * config/sh/sh.h (sh_args): Remove byref, byref_regs, stack_regs fields.
15590         Change force_mem, prototype_p, outgoing, renesas_abi fields to bool.
15591         (CUMULATIVE_ARGS): Change macro to typedef.
15592         (current_function_interrupt): Change to bool type.
15593         (sh_arg_class, sh_args, CUMULATIVE_ARGS, current_function_interrupt):
15594         Surround with __cplusplus ifdef.
15595         (sh_compare_op0, sh_compare_op1): Remove.
15596         (EPILOGUE_USES): Use TARGET_FPU_ANY condition.
15598 2016-05-07  Jim Wilson  <jim.wilson@linaro.org>
15600         * config/arm/arm.md: (arch): Add neon.
15601         (arch_enabled): Return yes for arch neon when TARGET_NEON.
15602         * config/arm/vfp.md (movdf_vfp): Add w/G as alternative 3.  Add
15603         neon_move as type for alt 3.  Add arch attr enabling alt 3 for neon.
15604         Emit vmov.i64 for alt 3.  Renumber alternatives 3 to 8.  Adjust
15605         attributes for alt renumbering.  Mark alt 3 as non-predicable.
15606         (thumb2_movdf_vfp): Likewise.
15608 2016-05-07  Uros Bizjak  <ubizjak@gmail.com>
15610         * config/i386/i386.md (*addqi_1): Add preferred_for_speed attribute
15611         to disparage alternatives 3 and 4 for TARGET_PARTIAL_REG_STALL targets.
15612         (*andqi_1): Add preferred_for_speed attribute to disparage
15613         alternative 2 for TARGET_PARTIAL_REG_STALL targets.
15614         (*<code>qi_1): Ditto.
15615         (*one_cmplqi2_1): Add preferred_for_speed attribute to disparage
15616         alternative 1 for TARGET_PARTIAL_REG_STALL targets.
15617         (*ashlqi3_1): Ditto.
15618         (*swap<mode>): Merge from *swap<mode>_1 and *swap<mode>_2 patterns.
15619         Add preferred_for_size attribute to disparage alternative 0 and
15620         preferred_for_speed attribute to disparage alternative 1 for
15621         TARGET_PARTIAL_REG_STALL targets.
15623 2016-05-07  Tom de Vries  <tom@codesourcery.com>
15625         PR tree-optimization/70956
15626         * graphite-scop-detection.c (build_cross_bb_scalars_def): Handle NULL
15627         def.
15629 2016-05-07  Oleg Endo  <olegendo@gcc.gnu.org>
15631         * config/sh/sh-protos.h (sh_cbranch_distance): Declare new function.
15632         * config/sh/sh.c (sh_cbranch_distance): Implement it.
15633         * config/sh/sh.md (branch_zero): Remove define_attr.
15634         (define_delay): Disable delay slot if branch distance is one insn.
15636 2016-05-06  Uros Bizjak  <ubizjak@gmail.com>
15638         * config/i386/i386.md (LEAMODE): New mode attribute.
15639         (plus to LEA splitter): Rewrite splitter using LEAMODE mode attribute.
15640         (ashift to LEA splitter): Rewrte splitter using SWI mode iterator
15641         and LEAMODE mode attribute.  Use VOIDmode const_0_to_3_operand as
15642         operand 2 predicate.
15643         (*lea<mode>_general_2): Use VOIDmode for const248_operand.
15644         (*lea<mode>_general_3): Ditto.
15645         (*lea<mode>_general_4): Use VOIDmode for const_0_to_3_operand.
15647 2016-05-06  Jakub Jelinek  <jakub@redhat.com>
15649         * genmddump.c (main): Convert argv from char ** to const char **.
15651 2016-05-06  David Malcolm  <dmalcolm@redhat.com>
15653         * coretypes.h (OVERRIDE): New macro.
15654         (FINAL): New macro.
15656 2016-05-06  Eric Botcazou  <ebotcazou@adacore.com>
15658         * tree-ssa-coalesce.c (gimple_can_coalesce_p): In the optimized case,
15659         allow coalescing if the types are compatible.
15661 2016-05-06  David Malcolm  <dmalcolm@redhat.com>
15663         * pass_manager.h (pass_manager::register_pass_name): New method.
15664         (pass_manager::get_pass_by_name): New method.
15665         (pass_manager::create_pass_tab): New method.
15666         (pass_manager::m_name_to_pass_map): New field.
15667         * passes.c (name_to_pass_map): Delete global in favor of field
15668         "m_name_to_pass_map" of pass_manager.
15669         (register_pass_name): Rename from a function to...
15670         (pass_manager::register_pass_name): ...this method, updating
15671         for renaming of global "name_to_pass_map" to field
15672         "m_name_to_pass_map".
15673         (create_pass_tab): Rename from a function to...
15674         (pass_manager::create_pass_tab): ...this method, updating
15675         for renaming of global "name_to_pass_map" to field.
15676         (get_pass_by_name): Rename from a function to...
15677         (pass_manager::get_pass_by_name): ...this method.
15678         (enable_disable_pass): Convert use of get_pass_by_name to
15679         a method call, locating the pass_manager singleton.
15681 2016-05-06  David Malcolm  <dmalcolm@redhat.com>
15683         * genattr-common.c (main): Convert argv from char ** to const char **.
15684         * genattr.c (main): Likewise.
15685         * genattrtab.c (main): Likewise.
15686         * genautomata.c (initiate_automaton_gen): Likewise.
15687         (main): Likewise.
15688         * gencodes.c (main): Likewise.
15689         * genconditions.c (main): Likewise.
15690         * genconfig.c (main): Likewise.
15691         * genconstants.c (main): Likewise.
15692         * genemit.c (main): Likewise.
15693         * genenums.c (main): Likewise.
15694         * genextract.c (main): Likewise.
15695         * genflags.c (main): Likewise.
15696         * genmddeps.c (main): Likewise.
15697         * genopinit.c (main): Likewise.
15698         * genoutput.c (main): Likewise.
15699         * genpeep.c (main): Likewise.
15700         * genpreds.c (main): Likewise.
15701         * genrecog.c (main): Likewise.
15702         * gensupport.c (init_rtx_reader_args_cb): Likewise.
15703         (init_rtx_reader_args): Likewise.
15704         * gensupport.h (init_rtx_reader_args_cb): Likewise.
15705         (init_rtx_reader_args): Likewise.
15706         * gentarget-def.c (main): Likewise.
15707         * read-md.c (read_md_files): Likewise.
15708         * read-md.h (read_md_files): Likewise.
15710 2016-05-06  Uros Bizjak  <ubizjak@gmail.com>
15712         * config/i386/i386.md (int cmove peephole2s): Use general_reg_operand
15713         instead of register_and_not_any_fp_reg_operand as operand 0 predicate.
15714         * config/i386/predicates.md (register_and_not_any_fp_reg_operand):
15715         Remove unused predicate.
15716         (register_and_not_fp_reg_operand): Ditto.
15718 2016-05-06  Martin Liska  <mliska@suse.cz>
15720         * tree-if-conv.c (ifcvt_split_critical_edges): Use auto_vec
15721         instead of vec as the vector is local to the function.
15723 2016-05-06  Jakub Jelinek  <jakub@redhat.com>
15725         * config/i386/sse.md (*<code>v8hi3, *<code>v16qi3): Add
15726         avx512bw alternative.
15728         * config/i386/sse.md (<mask_codefor>ashr<mode>3<mask_name>): Move
15729         before the ashr<mode>3 pattern.
15731         * config/i386/sse.md (*avx2_pmaddwd, *sse2_pmaddwd): Use
15732         v instead of x in vex or maybe_vex alternatives, use
15733         maybe_evex instead of vex in prefix.
15735         * config/i386/sse.md (*vec_extractv4sf_0, *sse4_1_extractps,
15736         *vec_extractv4sf_mem, vec_extract_lo_v16hi, vec_extract_hi_v16hi,
15737         vec_extract_lo_v32qi, vec_extract_hi_v32qi): Use v instead of x
15738         in vex or maybe_vex alternatives, use maybe_evex instead of vex
15739         in prefix.
15741         * config/i386/sse.md (*vec_concatv2sf_sse4_1, *vec_concatv4sf): Use
15742         v instead of x in vex or maybe_vex alternatives, use
15743         maybe_evex instead of vex in prefix.
15745         * config/i386/sse.md (sse_shufps_<mode>, sse_storehps, sse_loadhps,
15746         sse_storelps, sse_movss, avx2_vec_dup<mode>, avx2_vec_dupv8sf_1,
15747         sse2_shufpd_<mode>, sse2_storehpd, sse2_storelpd, sse2_loadhpd,
15748         sse2_loadlpd, sse2_movsd): Use v instead of x in vex or maybe_vex
15749         alternatives, use maybe_evex instead of vex in prefix.
15751         * config/i386/sse.md (vec_interleave_lowv4sf,
15752         *vec_interleave_highv2df, *vec_interleave_lowv2df): Use
15753         v instead of x in vex or maybe_vex alternatives, use
15754         maybe_evex instead of vex in prefix.
15756         * config/i386/sse.md (sse_movhlps, sse_movlhps): Use
15757         v instead of x in vex or maybe_vex alternatives, use
15758         maybe_evex instead of vex in prefix.
15760         * config/i386/sse.md (*avx_cvtpd2dq256_2, *avx_cvtps2pd256_2): Use
15761         v constraint instead of x.
15763 2016-05-06  Nathan Sidwell  <nathan@codesourcery.com>
15765         * gimple.c (gimple_call_same_target_p): Unique functions are eq.
15766         * tree-ssa-tail-merge.c (same_succ::equal): Check pointer eq
15767         equality first.
15769 2016-05-06  Richard Biener  <rguenther@suse.de>
15771         PR tree-optimization/70948
15772         * tree-ssa-structalias.c (find_func_aliases_for_builtin_call):
15773         Properly clobber all fields of va_list for __builtin_va_start.
15775 2016-05-06  Yuri Rumyantsev  <ysrumyan@gmail.com>
15777         PR debug/70935
15778         * tree-ssa-loop-unswitch.c (find_loop_guard): Reject guard edge with
15779         loop latch destination.
15781 2016-05-06  Martin Liska  <mliska@suse.cz>
15783         * tree-ssa-uninit.c: Apply manual changes
15784         to the GNU coding style.
15785         (prune_uninit_phi_opnds): Rename from
15786         prune_uninit_phi_opnds_in_unrealizable_paths.
15788 2016-05-06  Oleg Endo  <olegendo@gcc.gnu.org>
15790         * config/sh/sh.opt (madjust-unroll, minvalid-symbols, msoft-atomic,
15791         mspace): Remove deprecated options.
15792         * doc/invoke.texi (SH options): Remove -mspace.
15794 2016-05-06  Oleg Endo  <olegendo@gcc.gnu.org>
15796         * config/sh/sh.md (ic_invalidate_line_sh4a): Fix insn length.
15798 2016-05-06  Oleg Endo  <olegendo@gcc.gnu.org>
15800         * config/sh/sh.md (*cmpeqsi_t): Remove combine insn pattern and similar
15801         corresponding combine split pattern.
15803 2016-05-06  Oleg Endo  <olegendo@gcc.gnu.org>
15805         PR target/58219
15806         * config/sh/predicates.md (long_displacement_mem_operand): New.
15807         * config/sh/sh.md (movsi_i): Allow for SH2A, disallow for any FPU.
15808         Add movi20, movi20s alternatives.  Adjust length attribute for
15809         alternatives.
15810         (movsi_ie): Allow for any FPU.  Adjust length attribute for
15811         alternatives.
15812         (movsi_i_lowpart): Add movi20, movi20s alternatives.  Adjust length
15813         attribute for alternatives.
15814         (*mov<mode>): Use long_displacement_mem_operand for length attribute.
15815         (*movdi_i, movdf_k, movdf_i4, movsf_i, movsf_ie, movsf_ie_ra): Adjust
15816         length attribute for alternatives.
15818 2016-05-06  Richard Biener  <rguenther@suse.de>
15820         PR tree-optimization/70960
15821         * tree-if-conv.c (ifcvt_walk_pattern_tree): Handle non-SSA ops.
15823 2016-05-06  Oleg Endo  <olegendo@gcc.gnu.org>
15825         PR target/52933
15826         * config/sh/sh.md (*cmp_div0s_7, *cmp_div0s_8): Add div0s variants.
15827         * config/sh/sh.c (sh_rtx_costs): Add another div0s case.
15829 2016-05-06  Marek Polacek  <polacek@redhat.com>
15831         PR sanitizer/70875
15832         * ubsan.c (get_ubsan_type_info_for_type): Remove assert.
15834 2016-05-06  Oleg Endo  <olegendo@gcc.gnu.org>
15836         PR target/54089
15837         * config/sh/sh.md (*rotcr): Add another variant.
15839 2016-05-06  Richard Biener  <rguenther@suse.de>
15841         PR middle-end/70931
15842         * dwarf2out.c (native_encode_initializer): Skip zero-sized fields.
15844 2016-05-06  Richard Biener  <rguenther@suse.de>
15846         PR middle-end/70941
15847         * fold-const.c (split_tree): Always convert to the original type
15848         before negating.
15850 2016-05-06  Richard Biener  <rguenther@suse.de>
15852         * fwprop.c (fwprop): Remove duplicate cleanup_cfg call.
15853         (fwprop_addr): Likewise.
15855 2016-05-06  Uros Bizjak  <ubizjak@gmail.com>
15857         PR target/70873
15858         * config/i386/i386-protos.h (ix86_standard_x87sse_constant_load_p):
15859         New prototype.
15860         * config/i386/i386.c (ix86_standard_x87sse_constant_load_p): New.
15861         * config/i386/i386.md (push mem splitter): Use find_constant_src in
15862         the splitter condition.
15863         (FP load splitter): Use ix86_standard_x87sse_constant_load_p in
15864         the splitter condition.
15865         (FP float_extend load splitter): Ditto.
15867 2016-05-05  Uros Bizjak  <ubizjak@gmail.com>
15869         * config/i386/i386.md (peehole2 patterns): Change true_regnum
15870         to REGNO in all peephole2 patterns.
15871         (post-reload splitters): Change true_regnum to REGNO in
15872         post-reload splitters.
15873         (zero_extend splitters): Use general_reg_operand and
15874         nonimmediate_gr_operand predicates.
15876 2016-05-05  Jakub Jelinek  <jakub@redhat.com>
15878         * config/i386/sse.md (<avx512>_fmadd_<mode>_mask3<round_name>): Use
15879         v constraint instead of x.
15881 2016-05-05  Alan Modra  <amodra@gmail.com>
15883         PR target/68662
15884         * config/rs6000/sysv4.h (SUBTARGET_OVERRIDE_OPTIONS): Don't
15885         set OPTION_MASK_RELOCATABLE when flag_pic == 2.  Set
15886         TARGET_NO_FP_IN_TOC for -mrelocatable.
15887         (MINIMAL_TOC_SECTION_ASM_OP): Remove redundant
15888         TARGET_RELOCATABLE test.
15889         (ASM_OUTPUT_SPECIAL_POOL_ENTRY_P): Likewise.
15890         (ASM_PREFERRED_EH_DATA_FORMAT): Likewise.
15891         * config/rs6000/linux64.h (MINIMAL_TOC_SECTION_ASM_OP): Likewise.
15892         (ASM_OUTPUT_SPECIAL_POOL_ENTRY_P): Likewise.
15893         (ASM_PREFERRED_EH_DATA_FORMAT): Likewise.
15894         * config/rs6000/freebsd64.h (MINIMAL_TOC_SECTION_ASM_OP): Likewise.
15895         (ASM_OUTPUT_SPECIAL_POOL_ENTRY_P): Likewise.
15896         (ASM_PREFERRED_EH_DATA_FORMAT): Likewise.
15897         * config/rs6000/predicates.md (easy_fp_constant): Likewise.
15898         * config/rs6000/rs6000.c (rs6000_elf_output_toc_section_asm_op):
15899         Likewise.
15900         (rs6000_assemble_integer): Update TARGET_RELOCATABLE test.
15901         (rs6000_stack_info): Likewise.
15902         (rs6000_elf_asm_out_constructor): Likewise.
15903         (rs6000_elf_asm_out_destructor): Likewise.
15904         (rs6000_elf_declare_function_name): Likewise.
15905         * config/rs6000/rs6000.md (load_toc_aix_di): Likewise.
15906         * config/rs6000/rs6000.h (MASK_RELOCATABLE, MASK_MINIMAL_TOC):
15907         Don't define.
15909 2016-05-05  Alan Modra  <amodra@gmail.com>
15911         * config/rs6000/rs6000.c (rs6000_frame_related): Rewrite.
15913 2016-05-05  Alan Modra  <amodra@gmail.com>
15915         * config/rs6000/rs6000.c (rs6000_savres_strategy): Don't use
15916         out-of-line gpr restore for one or two regs if that would add
15917         a save of lr.
15919 2016-05-04  Uros Bizjak  <ubizjak@gmail.com>
15921         PR target/70873
15922         * config/i386/i386.md
15923         (TARGET_SSE_PARTIAL_REG_DEPENDENCY float_extend sf->df peephole2):
15924         Change to post-epilogue_completed late splitter.  Use sse_reg_operand
15925         as operand 0 predicate.
15926         (TARGET_SSE_PARTIAL_REG_DEPENDENCY float_truncate df->sf peephole2):
15927         Ditto.
15928         (TARGET_SSE_PARTIAL_REG_DEPENDENCY float {si,di}->{sf,df} peephole2):
15929         Ditto.  Emit the pattern using RTX.
15931         (TARGET_USE_VECTOR_FP_CONVERTS float_extend sf->df splitter):
15932         Use sse_reg_opreand as operand 0 predicate.  Do not use true_regnum in
15933         the post-reload splitter.  Use lowpart_subreg instead of gen_rtx_REG.
15934         (TARGET_USE_VECTOR_FP_CONVERTS float_truncate df->sf splitter):
15935         Ditto.
15936         (TARGET_USE_VECTOR_CONVERTS float si->{sf,df} splitter): Use
15937         sse_reg_operand as operand 0 predicate.
15939         (TARGET_SPLIT_MEM_OPND_FOR_FP_CONVERTS float_extend sf->df peephole2):
15940         Use sse_reg_opreand as operand 0 predicate.  Use lowpart_subreg
15941         instead of gen_rtx_REG.
15942         (TARGET_SPLIT_MEM_OPND_FOR_FP_CONVERTS float_truncate sf->df peephole2):
15943         Ditto.
15945 2016-05-04  Segher Boessenkool  <segher@kernel.crashing.org>
15947         * function.c (emit_use_return_register_into_block): Delete.
15948         (gen_return_pattern): Delete.
15949         (emit_return_into_block): Delete.
15950         (active_insn_between): Delete.
15951         (convert_jumps_to_returns): Delete.
15952         (emit_return_for_exit): Delete.
15953         (thread_prologue_and_epilogue_insns): Delete all code dealing with
15954         simple_return for shrink-wrapped blocks.
15955         * shrink-wrap.c (try_shrink_wrapping): Insert simple_return at the
15956         end of blocks that need one.
15957         (get_unconverted_simple_return): Delete.
15958         (convert_to_simple_return): Delete.
15959         * shrink-wrap.c (get_unconverted_simple_return): Delete declaration.
15960         (convert_to_simple_return): Ditto.
15962 2016-05-04  Segher Boessenkool  <segher@kernel.crashing.org>
15964         * cfgcleanup.c (bb_is_just_return): New function.
15965         (try_optimize_cfg): Simplify jumps to return, branches to return,
15966         and branches around return.
15968 2016-05-04  Segher Boessenkool  <segher@kernel.crashing.org>
15970         * cfgcleanup.c (try_simplify_condjump): Don't try to simplify a
15971         branch to a return.
15973 2016-05-04  Jakub Jelinek  <jakub@redhat.com>
15975         PR c++/70906
15976         PR c++/70933
15977         * tree-core.h (enum operand_equal_flag): Add OEP_HASH_CHECK.
15978         * tree.c (inchash::add_expr): If !IS_EXPR_CODE_CLASS (tclass),
15979         assert flags & OEP_HASH_CHECK, instead of asserting it
15980         never happens.  Handle TARGET_EXPR.
15981         * fold-const.c (operand_equal_p): For hash verification,
15982         or in OEP_HASH_CHECK into flags.
15984 2016-05-04  Eric Botcazou  <ebotcazou@adacore.com>
15986         * tree-ssa-coalesce.c (gimple_can_coalesce_p): Fix reference in head
15987         comment.
15988         (compute_samebase_partition_bases): Fix typo.
15990 2016-05-04  Jakub Jelinek  <jakub@redhat.com>
15992         * config/i386/sse.md (vec_interleave_highv8sf,
15993         vec_interleave_lowv8sf, vec_interleave_highv4df,
15994         vec_interleave_lowv4df): Remove constraints from expanders.
15996         * config/i386/sse.md (sse2_movq128): Use v constraint instead of x.
15998 2016-05-04  Jan Hubicka  <hubicka@ucw.cz>
16000         * tree-inline.c (expand_call_inline): Fix path dealing with
16001         making lhs of call statement undefined.
16003 2016-05-04  Jan Hubicka  <hubicka@ucw.cz>
16005         * cgraph.c (cgraph_node::call_for_symbol_thunks_and_aliases):
16006         Check availability on NODE, too.
16007         * cgraph.h (symtab_node::call_for_symbol_and_aliases): Likewise.
16008         (cgraph_node::call_for_symbol_and_aliases): Likewise.
16009         (varpool_node::call_for_symbol_and_aliase): Likewise.
16010         * ipa-pure-const.c (add_new_function): Analyze all bodies.
16011         (propagate_pure_const): Propagate across interposable functions, too.
16012         (skip_function_for_local_pure_const): Do not skip interposable bodies
16013         with aliases.
16014         (pass_local_pure_const::execute): Update.
16016 2016-05-04  Marek Polacek  <polacek@redhat.com>
16018         * doc/invoke.texi: Document -Wdangling-else.
16020 2016-05-04  Thomas Preud'homme  <thomas.preudhomme@arm.com>
16022         * config.gcc: Error out when conflicting multilib is detected.  Do not
16023         loop over multilibs since no combination is legal.
16025 2016-05-04  Alan Modra  <amodra@gmail.com>
16027         * config/rs6000/rs6000.h (PIC_OFFSET_TABLE_REGNUM): Correct.
16028         * config/rs6000/sysv4.h (TARGET_TOC): Simplify.
16029         * config/rs6000/rs6000.c (rs6000_elf_output_toc_section_asm_op):
16030         Align .toc.
16032 2016-05-04  Matthew Fortune  <matthew.fortune@imgtec.com>
16034         * config/mips/mips-cpus.def (p5600): Avoid IMADD by default.
16035         Clean up p5600 comments.
16037 2016-05-04  Richard Biener  <rguenther@suse.de>
16039         * match.pd: Add BIT_FIELD_REF canonicalizations and vector
16040         constructor simplifications.
16041         * fold-const.c (fold_ternary_loc): Remove duplicate functionality here.
16043 2016-05-04  Oleg Endo  <olegendo@gcc.gnu.org>
16045         * config/sh/predicates (post_inc_mem, pre_dec_mem): New predicates.
16046         * config/sh/sh-protos.h (sh_find_set_of_reg): Return null result if
16047         result.set_rtx is null instead of aborting.
16048         * config/sh/sh.h (USE_LOAD_POST_INCREMENT, USE_STORE_PRE_DECREMENT):
16049         Always enable.
16050         (USE_LOAD_PRE_DECREMENT, USE_STORE_POST_INCREMENT): Enable for SH2A.
16051         * config/sh/sh.md (*extend<mode>si2_predec, *mov<mode>_load_predec,
16052         *mov<mode>_store_postinc): New patterns.
16054 2016-05-04  Marc Glisse  <marc.glisse@inria.fr>
16056         * match.pd ((A | B) & (A | C)): Generalize to BIT_XOR_EXPR.  Mark
16057         as commutative.  Check both conversions are NOP.
16058         ((A & B) OP (C & B)): Remove.
16060 2016-05-04  Alan Modra  <amodra@gmail.com>
16062         * combine.c (simplify_set): Correct WORD_REGISTER_OPERATIONS test.
16064 2016-05-04  Alan Modra  <amodra@gmail.com>
16066         PR target/70866
16067         * config/rs6000/rs6000.c (rs6000_stack_info): Don't set cr_save_p
16068         when cr2,3,4 are all fixed regs.
16070 2016-05-04  Bernd Schmidt  <bschmidt@redhat.com>
16072         PR rtl-optimization/57193
16073         * opts.c (default_options_table): Revert OPT_frename_registers change.
16074         * doc/invoke.texi (-frename-registers, -O2): Likewise.
16076 2016-05-03  Martin Sebor  <msebor@redhat.com>
16078         PR c++/66561
16079         * builtins.c (fold_builtin_FILE): New function.
16080         (fold_builtin_FUNCTION, fold_builtin_LINE): New functions.
16081         (fold_builtin_0): Call them.
16082         * gimplify.c (gimplify_call_expr): Remove the handling of
16083         BUILT_IN_FILE, BUILT_IN_FUNCTION, and BUILT_IN_LINE.
16085         PR c++/66561
16086         * doc/extend.texi (Other Builtins): Update __builtin_FILE,
16087         __builtin_FUNCTION, and __builtin_LINE to reflect they yield
16088         constants.
16090         PR c++/66639
16091         * doc/extend.texi (Function Names as Strings): Update __func__,
16092         __FUNCTION__, __PRETTY_FUNCTION__ to reflect they evaluate to
16093         constants.
16095 2016-05-03  Jakub Jelinek  <jakub@redhat.com>
16096             Richard Biener  <rguenther@suse.de>
16098         PR tree-optimization/70916
16099         * tree-if-conv.c: Include cfganal.h.
16100         (pass_if_conversion::execute): Call connect_infinite_loops_to_exit
16101         and remove_fake_exit_edges around the optimization pass.
16103 2016-05-03  Jan Hubicka  <hubicka@ucw.cz>
16105         * cgraph.c (symbol_table::create_edge): Set inline_failed.
16106         (cgraph_edge::make_direct): Likewise.
16107         (cgraph_edge::dump_edge_flags): Dump call_stmt_cannot_inline_p.
16108         * cgraphclones.c (duplicate_thunk_for_node): Set inline_failed.
16109         * cif-code.def (CIF_LTO_MISMATCHED_DECLARATIONS): New code
16110         (CIF_THUNK): New code.
16111         * ipa-inline-analysis.c (initialize_inline_failed): Preserve
16112         CIF_FINAL_ERROR codes; do not deal with call_stmt_cannot_inline_p.
16113         (compute_inline_parameters): Set inline_failed for thunks.
16114         (inline_analyze_function): Cleanup.
16115         * ipa-inline.c (can_inline_edge_p): Do not deal with
16116         call_stmt_cannot_inline_p.
16117         (can_early_inline_edge_p): Likewise.
16118         (early_inliner): Initialize inline_failed.
16119         * lto-cgraph.c (lto_output_edge): Sanity check inline_failed.
16121 2016-05-03  Uros Bizjak  <ubizjak@gmail.com>
16123         * config/i386/predicates.md (x87nonimm_ssenomem_operand): Rename
16124         from nonimm_ssenomem_operand.
16125         (nonimm_ssenomem_operand): New predicate.
16126         * config/i386/i386.md (extendsfdf2): Use nonimm_ssenomem_operand
16127         as operand 0 predicate.
16128         (*extendsfdf2): Merge from *extendsfdf2_mixed and *extendsfdf2_i387.
16129         Disable unsupported alternatives using "enabled" attribute.
16130         Use register_ssemem_operand as operand 0 predicate.
16131         (*fop_<mode>_1): Use x87nonimm_ssenomem_operand as operand 1 predicate.
16133 2016-05-03  Marek Polacek  <polacek@redhat.com>
16135         PR c/70859
16136         * input.c (expansion_point_location): New function.
16137         * input.h (expansion_point_location): Declare.
16139 2016-05-03  Pierre-Marie de Rodat  <derodat@adacore.com>
16141         * dwarf2out.c (resolve_args_picking_1): Replace the frame_offset
16142         occurence with frame_offset_ ones.
16144 2016-05-03  Alan Modra  <amodra@gmail.com>
16146         PR rtl-optimization/70890
16147         * ira.c (combine_and_move_insns): When moving def_insn, remove
16148         equivs on use_insn.
16150 2016-05-03  Dominik Vogt  <vogt@linux.vnet.ibm.com>
16152         * config/s390/s390.md ("*r<noxa>sbg_<mode>_sll")
16153         ("*r<noxa>sbg_<mode>_srl"): New define_insns.
16154         ("*r<noxa>sbg_<mode>_srl_bitmask"): Rename by adding "_bitmask".
16155         ("*r<noxa>sbg_<mode>_sll_bitmask"): Likewise.
16157 2016-05-03  Alan Modra  <amodra@gmail.com>
16159         * config/rs6000/rs6000.c (rs6000_savres_strategy): Correct condition
16160         for SAVE_MULTIPLE/STORE_MULTIPLE.
16162 2016-05-03  Jakub Jelinek  <jakub@redhat.com>
16164         * config/i386/i386.md (*truncdfsf_mixed, *truncdfsf_i387,
16165         *truncxfsf2_mixed, *truncxfdf2_mixed): Use v constraint instead of x.
16167 2016-05-03  Richard Biener  <rguenther@suse.de>
16169         * gimplify.h (get_initialized_tmp_var): Add allow_ssa parameter
16170         default true.
16171         (gimplify_arg): Likewise.
16172         * gimplify.c (gimplify_expr): Add overload with allow_ssa parameter,
16173         re-writing the result to a decl if required.
16174         (internal_get_tmp_var): Add allow_ssa parameter
16175         and override into_ssa with it.
16176         (get_formal_tmp_var): Adjust.
16177         (get_initialized_tmp_var): Add allow_ssa parameter.
16178         (gimplify_arg): Add allow_ssa parameter and avoid generating
16179         SSA names for the result false.
16180         (gimplify_call_expr): If the call may return twice do not
16181         gimplify parameters into SSA.
16182         (prepare_gimple_addressable): Do not allow an SSA name as temporary.
16183         (gimplify_modify_expr): Adjust assert.  For noreturn calls
16184         with a SSA name LHS adjust its def.
16185         (gimplify_save_expr): Do not allow an SSA name as save-expr result.
16186         (gimplify_one_sizepos): Do not allow an SSA name as a sizepos.
16187         (gimplify_body): Init GIMPLE SSA data structures and gimplify into-SSA.
16188         (gimplify_scan_omp_clauses): Make sure OMP_CLAUSE_SIZE is not
16189         an SSA name.  Likewise for OMP_CLAUSE_REDUCTION operands.
16190         (gimplify_omp_for): Likewise for OMP_CLAUSE_DECL.  Likewise
16191         for OMP_FOR_COND,  OMP_FOR_INCR and OMP_CLAUSE_LINEAR_STEP.
16192         (optimize_target_teams): Do not allow SSA names for clause operands.
16193         (gimplify_expr): Likewise for where we mark the result addressable.
16194         * passes.def (pass_init_datastructures): Remove.
16195         * tree-into-ssa.c (mark_def_sites): Ignore existing SSA names.
16196         (rewrite_stmt): Likewise.
16197         * tree-inline.c (initialize_cfun): Properly transfer SSA state.
16198         (replace_locals_op): Replace SSA names.
16199         (copy_gimple_seq_and_replace_locals): Init src_cfun.
16200         * gimple-low.c (lower_builtin_setjmp): Deal with SSA.
16201         * cgraph.c (release_function_body): Free CFG annotations only
16202         when we have a CFG.  Simplify.
16203         * gimple-fold.c (gimplify_and_update_call_from_tree): Use
16204         force_gimple_operand instead of get_initialized_tmp_var.
16205         * tree-pass.h (make_pass_init_datastructures): Remove.
16206         * tree-ssa.c (execute_init_datastructures): Remove.
16207         (pass_data_init_datastructures): Likewise.
16208         (class pass_init_datastructures): Likewise.
16209         (make_pass_init_datastructures): Likewise.
16210         * omp-low.c (create_omp_child_function): Init SSA data structures.
16211         (grid_expand_target_grid_body): Likewise.
16212         * tree-cfg.c (move_block_to_fn): Double-check the DEF is an SSA
16213         name before adding it to names_to_release.
16214         (remove_bb): Always release SSA defs.
16215         * tree-ssa-ccp.c (get_default_value): Check SSA_NAME_VAR
16216         before dereferencing it.
16217         * cgraphunit.c (init_lowered_empty_function): Always
16218         int SSA data structures.
16219         * tree-ssanames.c (release_defs): Remove assert that we are in
16220         SSA form.
16221         * trans-mem.c (diagnose_tm_1): Handle SSA name function.
16223 2016-05-03  Jakub Jelinek  <jakub@redhat.com>
16224             Uros Bizjak  <ubizjak@gmail.com>
16226         PR rtl-optimization/70467
16227         * config/i386/predicates.md (x86_64_hilo_int_operand,
16228         x86_64_hilo_general_operand): New predicates.
16229         * config/i386/constraints.md (Wd): New constraint.
16230         * config/i386/i386.md (mode attr di): Use Wd instead of e.
16231         (general_hilo_operand): New mode attr.
16232         (add<mode>3, sub<mode>3): Use <general_hilo_operand>
16233         instead of <general_operand>.
16234         (*add<dwi>3_doubleword, *sub<dwi>3_doubleword): Use
16235         x86_64_hilo_general_operand instead of <general_operand>.
16237 2016-05-03  Jakub Jelinek  <jakub@redhat.com>
16239         PR tree-optimization/70916
16240         * tree-if-conv.c (constant_or_ssa_name): Removed.
16241         (fold_build_cond_expr): Use is_gimple_val instead of
16242         constant_or_ssa_name.
16244         PR tree-optimization/70916
16245         * tree-vect-patterns.c (vect_recog_mask_conversion_pattern): Give up
16246         if COND_EXPR rhs1 is neither SSA_NAME nor COMPARISON_CLASS_P.
16248         PR target/49244
16249         * tree-ssa-ccp.c: Include stor-layout.h and optabs-query.h.
16250         (optimize_atomic_bit_test_and): New function.
16251         (pass_fold_builtins::execute): Use it.
16252         * optabs.def (atomic_bit_test_and_set_optab,
16253         atomic_bit_test_and_complement_optab,
16254         atomic_bit_test_and_reset_optab): New optabs.
16255         * internal-fn.def (ATOMIC_BIT_TEST_AND_SET,
16256         ATOMIC_BIT_TEST_AND_COMPLEMENT, ATOMIC_BIT_TEST_AND_RESET): New ifns.
16257         * builtins.h (expand_ifn_atomic_bit_test_and): New prototype.
16258         * builtins.c (expand_ifn_atomic_bit_test_and): New function.
16259         * internal-fn.c (expand_ATOMIC_BIT_TEST_AND_SET,
16260         expand_ATOMIC_BIT_TEST_AND_COMPLEMENT,
16261         expand_ATOMIC_BIT_TEST_AND_RESET): New functions.
16262         * doc/md.texi (atomic_bit_test_and_set@var{mode},
16263         atomic_bit_test_and_complement@var{mode},
16264         atomic_bit_test_and_reset@var{mode}): Document.
16265         * config/i386/sync.md (atomic_bit_test_and_set<mode>,
16266         atomic_bit_test_and_complement<mode>,
16267         atomic_bit_test_and_reset<mode>): New expanders.
16268         (atomic_bit_test_and_set<mode>_1,
16269         atomic_bit_test_and_complement<mode>_1,
16270         atomic_bit_test_and_reset<mode>_1): New insns.
16272 2016-05-03  Richard Sandiford  <richard.sandiford@arm.com>
16274         PR rtl-optimization/70687
16275         * combine.c (change_zero_ext): Check for scalar modes.  Use wide_int
16276         instead of unsigned HOST_WIDE_INT.
16278 2016-05-03  Bernd Schmidt  <bschmidt@redhat.com>
16280         PR rtl-optimization/44281
16281         * hard-reg-set.h (struct target_hard_regs): New field
16282         x_fixed_nonglobal_reg_set.
16283         (fixed_nonglobal_reg_set): New macro.
16284         * reginfo.c (init_reg_sets_1): Initialize it.
16285         * ira.c (setup_alloc_regs): Use fixed_nonglobal_reg_set instead
16286         of fixed_reg_set.
16287         * df-scan.c (df_insn_refs_collect): Asms may reference global regs.
16289 2016-05-03  Bin Cheng  <bin.cheng@arm.com>
16291         PR tree-optimization/56541
16292         * doc/invoke.texi (@item max-tree-if-conversion-phi-args): New item.
16293         * params.def (PARAM_MAX_TREE_IF_CONVERSION_PHI_ARGS): new param.
16294         * tree-if-conv.c (MAX_PHI_ARG_NUM): new macro.
16295         (any_complicated_phi): new static variable.
16296         (aggressive_if_conv): delete.
16297         (if_convertible_phi_p): support phis with more than two arguments.
16298         (if_convertible_bb_p): remvoe check on aggressive_if_conv and
16299         critical pred edges.
16300         (ifcvt_split_critical_edges): support phis with more than two
16301         arguments by checking new parameter.  only split critical edges
16302         if needed.
16303         (tree_if_conversion): handle simd pragma marked loop using new
16304         local variable aggressive_if_conv.  check any_complicated_phi.
16306 2016-05-03  Bin Cheng  <bin.cheng@arm.com>
16308         * tree-ssa-loop-ivopts.c (get_computation_cost_at): Check depends_on
16309         before using it.
16311 2016-05-03  Bin Cheng  <bin.cheng@arm.com>
16313         * tree-ssa-loop-ivopts.c (get_computation_cost_at): Don't clobber
16314         cbase.
16316 2016-05-03  Oleg Endo  <olegendo@gcc.gnu.org>
16318         * config/sh/sh.md (udivsi3, divsi3, mulsi3): Simplify.
16319         (mulhisi3, umulhisi3, (smulsi3_highpart, umulsi3_highpart): Convert to
16320         define_insn_and_split.
16321         (mulsi3_i): New define_insn_and_split.
16322         (mulsi3_call): Convert to define_insn.
16323         (mulsidi3, mulsidi3_compact, umulsidi3, umulsidi3_compact):
16324         Remove constraints.
16326 2016-05-02  Michael Meissner  <meissner@linux.vnet.ibm.com>
16328         * machmode.h (mode_complex): Add support to give the complex mode
16329         for a given mode.
16330         (GET_MODE_COMPLEX_MODE): Likewise.
16331         * stor-layout.c (layout_type): For COMPLEX_TYPE, use the mode
16332         stored by build_complex_type and gfc_build_complex_type instead of
16333         trying to figure out the appropriate mode based on the size. Raise
16334         an assertion error, if the type was not set.
16335         * genmodes.c (struct mode_data): Add field for the complex type of
16336         the given type.
16337         (blank_mode): Likewise.
16338         (make_complex_modes): Remember the complex mode created in the
16339         base type.
16340         (emit_mode_complex): Write out the mode_complex array to map a
16341         type mode to the complex version.
16342         (emit_insn_modes_c): Likewise.
16343         * tree.c (build_complex_type): Set the complex type to use before
16344         calling layout_type.
16345         * config/rs6000/rs6000.c (rs6000_hard_regno_nregs_internal): Add
16346         support for __float128 complex datatypes.
16347         (rs6000_hard_regno_mode_ok): Likewise.
16348         (rs6000_setup_reg_addr_masks): Likewise.
16349         (rs6000_complex_function_value): Likewise.
16350         * config/rs6000/rs6000.h (FLOAT128_IEEE_P): Likewise.
16351         __float128 and __ibm128 complex.
16352         (FLOAT128_IBM_P): Likewise.
16353         (ALTIVEC_ARG_MAX_RETURN): Likewise.
16354         * doc/extend.texi (Additional Floating Types): Document that
16355         -mfloat128 must be used to enable __float128.  Document complex
16356         __float128 and __ibm128 support.
16358 2016-05-02  Jakub Jelinek  <jakub@redhat.com>
16360         PR target/49244
16361         * gimple.c (gimple_builtin_call_types_compatible_p): Allow
16362         char/short arguments promoted to int because of promote_prototypes.
16364 2016-05-02  Uros Bizjak  <ubizjak@gmail.com>
16366         * config/i386/predicates.md (register_ssemem_operand): New predicate.
16367         * config/i386/i386.md (*cmpi<FPCMP:unord><MODEF:mode>): Merge from
16368         *cmpi<FPCMP:unord><MODEF:mode>_mixed and
16369         *cmpi<FPCMP:unord><X87MODEF:mode>_i387.  Disable unsupported
16370         alternatives using "enabled" attribute.  Use register_ssemem_operand
16371         as operand 1 predicate.
16372         (*cmpi<unord>xf_i387): Split XFmode pattern from
16373         *cmpi<FPCMP:unord><X87MODEF:mode>_i387.
16374         (*absneg<mode>2): Merge from *absneg<mode>2_mixed and
16375         *absneg<mode>2_i387.  Disable unsupported alternatives using
16376         "enabled" attribute.
16377         (*absnegxf2_i387): Split XFmode pattern from *absneg<mode>2_i387.
16379 2016-05-02  Nathan Sidwell  <nathan@codesourcery.com>
16381         * omp-low.c (lower_oacc_head_tail): Assert there is at least one
16382         marker.
16383         (oacc_loop_process): Check mask for loop termination.
16385 2016-05-02  Jan Hubicka  <hubicka@ucw.cz>
16387         * cif-code.def (CIF_THUNK): Add.
16388         * ipa-inline-analsysis.c (evaluate_conditions_for_known_args): Revert
16389         accidental change.
16391 2016-05-02  Jan Hubicka  <hubicka@ucw.cz>
16393         * ipa-inline-analysis.c (reset_inline_summary): Clear fp_expressions
16394         (dump_inline_summary): Dump it.
16395         (fp_expression_p): New predicate.
16396         (estimate_function_body_sizes): Use it.
16397         (inline_merge_summary): Merge fp_expressions.
16398         (inline_read_section): Read fp_expressions.
16399         (inline_write_summary): Write fp_expressions.
16400         * ipa-inline.c (can_inline_edge_p): Permit inlining across fp math
16401         codegen boundary if either caller or callee is !fp_expressions.
16402         * ipa-inline.h (inline_summary): Add fp_expressions.
16403         * ipa-inline-transform.c (inline_call): When inlining !fp_expressions
16404         to fp_expressions be sure the fp generation flags are updated.
16406 2016-05-02  Jakub Jelinek  <jakub@redhat.com>
16408         PR rtl-optimization/70467
16409         * cse.c (cse_insn): Handle no-op MEM moves after folding.
16411         PR rtl-optimization/70467
16412         * ipa-pure-const.c (check_call): Handle internal calls even in
16413         ipa mode like in local mode.
16415 2016-05-02  Bernd Edlinger  <bernd.edlinger@hotmail.de>
16417         * doc/install.texi: Document supported in-tree gmp/mpfr/mpc versions.
16419 2016-05-02  Marc Glisse  <marc.glisse@inria.fr>
16421         * match.pd (X u< X, X u> X): New transformations.
16423 2016-05-02  Marc Glisse  <marc.glisse@inria.fr>
16425         * flag-types.h (enum warn_strict_overflow_code): Move ...
16426         * coretypes.h: ... here.
16427         * fold-const.h (fold_overflow_warning): Declare.
16428         * fold-const.c (fold_overflow_warning): Make non-static.
16429         (fold_comparison): Move the transformation of X +- C1 CMP C2
16430         into X CMP C2 -+ C1 ...
16431         * match.pd: ... here.
16432         * gimple-fold.c (fold_stmt_1): Protect with
16433         fold_defer_overflow_warnings.
16435 2016-05-02  Nathan Sidwell  <nathan@codesourcery.com>
16437         * omp-low.c (struct oacc_loop): Add 'inner' field.
16438         (new_oacc_loop_raw): Initialize it to zero.
16439         (oacc_loop_fixed_partitions): Initialize it.
16440         (oacc_loop_auto_partitions): Partition outermost loop to outermost
16441         available partitioning.
16443 2016-05-02  Claudiu Zissulescu  <claziss@synopsys.com>
16445         * config/arc/arc.md (mulsidi3): Change operand 0 predicate to
16446         register_operand.
16447         (umulsidi3): Likewise.
16448         (indirect_jump): Fix jump instruction assembly patterns.
16450 2016-05-02  Thomas Schwinge  <thomas@codesourcery.com>
16452         PR target/70860
16453         * config/nvptx/nvptx.c (nvptx_libcall_value): Handle NULL cfun.
16454         (nvptx_function_value): Assert non-NULL cfun.
16456 2016-05-02  Eric Botcazou  <ebotcazou@adacore.com>
16458         PR rtl-optimization/70886
16459         * sched-deps.c (estimate_dep_weak): Canonicalize cselib values.
16461         * cselib.h (rtx_equal_for_cselib_1): Declare.
16462         (rtx_equal_for_cselib_p: New inline function.
16463         * cselib.c (rtx_equal_for_cselib_p): Delete.
16464         (rtx_equal_for_cselib_1): Make public.
16466 2016-05-02  Uros Bizjak  <ubizjak@gmail.com>
16468         * config/i386/predicates.md (nonimm_ssenomem_operand): New predicate.
16469         (register_mixssei387nonimm_operand): Remove predicate.
16470         * config/i386/i386.md (*fop_<mode>_comm): Merge from
16471         *fop_<mode>_comm_mixed and *fop_<mode>_comm_i387.  Disable unsupported
16472         alternatives using "enabled" attribute.  Also check X87_ENABLE_ARITH
16473         for TARGET_MIX_SSE_I387 alternatives.
16474         (*fop_<mode>_1): Merge from *fop_<mode>_1_mixed and *fop_<mode>_1_i387.
16475         Disable unsupported alternatives using "enabled" attribute.  Use
16476         nonimm_ssenomem_operand as operand 1 predicate.  Also check
16477         X87_ENABLE_ARITH for TARGET_MIX_SSE_I387 alternatives.
16479 2016-05-02  Richard Sandiford  <richard.sandiford@arm.com>
16481         * tree.c (cst_and_fits_in_hwi): Simplify.
16483 2016-05-02  Richard Sandiford  <richard.sandiford@arm.com>
16485         * tree.h (wi::to_wide): New function.
16486         * expr.c (expand_expr_real_1): Use wi::to_wide.
16487         * fold-const.c (int_const_binop_1): Likewise.
16488         (extract_muldiv_1): Likewise.
16490 2016-05-02  Richard Sandiford  <richard.sandiford@arm.com>
16492         * wide-int.h: Update offset_int and widest_int documentation.
16493         (WI_SIGNED_SHIFT_RESULT): New macro.
16494         (wi::binary_shift): Define signed_shift_result_type for
16495         shifts on offset_int- and widest_int-like types.
16496         (generic_wide_int): Support <<= and >>= if << and >> are supported.
16497         * tree.h (int_bit_position): Use shift operators instead of wi::
16498          shifts.
16499         * alias.c (adjust_offset_for_component_ref): Likewise.
16500         * expr.c (get_inner_reference): Likewise.
16501         * fold-const.c (fold_comparison): Likewise.
16502         * gimple-fold.c (fold_nonarray_ctor_reference): Likewise.
16503         * gimple-ssa-strength-reduction.c (restructure_reference): Likewise.
16504         * tree-dfa.c (get_ref_base_and_extent): Likewise.
16505         * tree-ssa-alias.c (indirect_ref_may_alias_decl_p): Likewise.
16506         (stmt_kills_ref_p): Likewise.
16507         * tree-ssa-ccp.c (bit_value_binop_1): Likewise.
16508         * tree-ssa-math-opts.c (find_bswap_or_nop_load): Likewise.
16509         * tree-ssa-sccvn.c (copy_reference_ops_from_ref): Likewise.
16510         (ao_ref_init_from_vn_reference): Likewise.
16512 2016-05-02  Richard Sandiford  <richard.sandiford@arm.com>
16514         * wide-int.h: Update offset_int and widest_int documentation.
16515         (WI_SIGNED_BINARY_PREDICATE_RESULT): New macro.
16516         (wi::binary_traits): Allow ordered comparisons between offset_int and
16517         offset_int, between widest_int and widest_int, and between either
16518         of these types and basic C types.
16519         (operator <, <=, >, >=): Define for the same combinations.
16520         * tree.h (tree_int_cst_lt): Use comparison operators instead
16521         of wi:: comparisons.
16522         (tree_int_cst_le): Likewise.
16523         * gimple-fold.c (fold_array_ctor_reference): Likewise.
16524         (fold_nonarray_ctor_reference): Likewise.
16525         * gimple-ssa-strength-reduction.c (record_increment): Likewise.
16526         * tree-affine.c (aff_comb_cannot_overlap_p): Likewise.
16527         * tree-parloops.c (try_transform_to_exit_first_loop_alt): Likewise.
16528         * tree-sra.c (completely_scalarize): Likewise.
16529         * tree-ssa-alias.c (stmt_kills_ref_p): Likewise.
16530         * tree-ssa-reassoc.c (extract_bit_test_mask): Likewise.
16531         * tree-vrp.c (extract_range_from_binary_expr_1): Likewise.
16532         (check_for_binary_op_overflow): Likewise.
16533         (search_for_addr_array): Likewise.
16534         * ubsan.c (ubsan_expand_objsize_ifn): Likewise.
16536 2016-05-02  Claudiu Zissulescu  <claziss@synopsys.com>
16538         * config/arc/arc.c (arc_preferred_simd_mode): Remove enum keyword.
16539         (arc_save_restore): Likewise.
16540         (arc_dwarf_register_span): Likewise.
16541         (arc_output_pic_addr_const): Initialize suffix variable.
16543 2016-05-02  Martin Liska  <mliska@suse.cz>
16545         * symbol-summary.h (function_summary::function_summary):
16546         Remove checking assert for all cgraph nodes.
16547         (function_summary::get): Check summary_uid.
16548         (symtab_insertion): Check summary_uid.
16550 2016-05-02  Claudiu Zissulescu  <claziss@synopsys.com>
16552         * config/arc/arc-protos.h (compact_memory_operand_p): Declare.
16553         * config/arc/arc.c (arc_output_commutative_cond_exec): Consider
16554         bmaskn instruction.
16555         (arc_dwarf_register_span): Remove enum keyword.
16556         (compact_memory_operand_p): New function.
16557         * config/arc/arc.h (reg_class): Add code density register classes.
16558         (REG_CLASS_NAMES): Likewise.
16559         (REG_CLASS_CONTENTS): Likewise.
16560         * config/arc/arc.md (*movqi_insn): Add code density instructions.
16561         (*movhi_insn, *movsi_insn, *movsf_insn): Likewise.
16562         (*extendhisi2_i, andsi3_i, cmpsi_cc_insn_mixed): Likewise.
16563         (*cmpsi_cc_c_insn, *movsi_ne): Likewise.
16564         * config/arc/constraints.md (C2p, Uts, Cm1, Cm3, Ucd): New
16565         constraints.
16566         (h, Rcd, Rsd, Rzd): New register constraints.
16567         (T): Use compact_memory_operand_p function.
16568         * config/arc/predicates.md (compact_load_memory_operand): Remove.
16570 2016-05-02  Oleg Endo  <olegendo@gcc.gnu.org>
16572         * config/sh/sh.md (*negnegt, *movtt): Remove.
16574 2016-05-02  Marek Polacek  <polacek@redhat.com>
16575             Tom de Vries  <tom@codesourcery.com>
16577         PR tree-optimization/70700
16578         * tree-ssa-structalias.c (dump_pred_graph): Fix getting varinfo for ids
16579         bigger than FIRST_REF_NODE.
16581 2016-05-02  Oleg Endo  <olegendo@gcc.gnu.org>
16583         PR target/52898
16584         * config/sh/sh.c (sh_option_override): Remove TARGET_CBRANCHDI4,
16585         TARGET_CMPEQDI_T.
16586         (prepare_cbranch_operands): Don't use scratch register.  Assume that
16587         function is used when pseudos can be created.
16588         (expand_cbranchdi4): Likewise.  Remove unused TARGET_CMPEQDI_T paths.
16589         * config/sh/sh.md (cbranchsi4): Allow only when pseudos can be created.
16590         (cbranchdi4, cbranchdi4_i): Simplify to single cbranchdi4
16591         define_expand.  Allow it only when pseudos can be created.
16592         * config/sh/sh.opt (mcbranchdi, mcmpeqdi): Delete.
16594 2016-05-01  Uros Bizjak  <ubizjak@gmail.com>
16596         * config/i386/constraints.md (BC): Only allow -1 operands.
16597         * config/i386/sse.md (mov<mode>_internal): Add (v,C) alternative.
16598         Add "enabled" attribute.  Update XI mode attribute calculation.
16599         * config/i386/i386.md (*movxi_internal_avx512f): Add (v,C) alternative.
16600         (*movoi_internal_avx): Update XI mode attribute calculation.
16601         (*movti_internal): Ditto.
16603 2016-05-01  Oleg Endo  <olegendo@gcc.gnu.org>
16605         * config/sh/sh.md (push, pop, ic_invalidate_line, cstoresi4, cstoredi4,
16606         cstoresf4, cstoredf4, fix_truncsfsi2): Remove constraints.
16608 2016-05-01  Eric Botcazou  <ebotcazou@adacore.com>
16610         * config/rs6000/rs6000.c (altivec_expand_lv_builtin): Do not use switch
16611         statement on instruction code.  Remove trailing spaces.
16612         (altivec_expand_stv_builtin): Likewise.
16614 2016-05-01  Oleg Endo  <olegendo@gcc.gnu.org>
16616         * config/sh/sh.h (TARGET_SH4): Remove and use default implementation.
16617         (TARGET_FPU_DOUBLE): Simplify.
16618         (BASE_ARG_REG, DOUBLE_TYPE_SIZE, OPTIMIZE_MODE_SWITCHING): Replace
16619         'TARGET_SH4 || TARGET_SH2A_DOUBLE' conditions with 'TARGET_FPU_DOUBLE'.
16620         * config/sh/sh.c: Replace 'TARGET_SH4 || TARGET_SH2A_DOUBLE' conditions
16621         with 'TARGET_FPU_DOUBLE'.
16622         * config/sh/sh.md: Likewise.
16624 2016-05-01  Yoshinori Sato  <ysato@users.sourceforge.jp>
16626         * config/sh/linux.h (SH_DIV_STRATEGY_DEFAULT,
16627         SH_DIV_STR_FOR_SIZE): Remove.
16628         * config/sh/netbsd-elf.h (SH_DIV_STRATEGY_DEFAULT,
16629         SH_DIV_STR_FOR_SIZE): Remove.
16631 2016-05-01  Oleg Endo  <olegendo@gcc.gnu.org>
16633         * config/sh/predicates.md (any_register_operand, zero_extend_operand,
16634         logical_reg_operand): Delete.
16635         (arith_operand, arith_reg_dest, arith_or_int_operand, cmpsi_operand,
16636         arith_reg_or_0_operand, arith_reg_or_0_or_1_operand, logical_operand,
16637         logical_and_operand, movsrc_no_disp_mem_operand): Rewrite using
16638         match_operand and match_test.
16639         (sh_const_vec, sh_1el_vec): Remove redundant checks.  Declare local
16640         variables on their first use.  Return bool values.
16641         * config/sh/sh.h (LOAD_EXTEND_OP): Update comment.
16642         * config/sh/sh.md (andsi3, iorsi3): Use arith_reg_dest for result and
16643         arith_reg_operand for input operand.  Remove empty constraints.
16644         (xorsi3): Delete.
16645         (*xorsi3_compact): Rename to xorsi3.
16646         (zero_extend<mode>si2): Use arith_reg_operand for input operand.
16647         (*zero_extend<mode>si2_disp_mem): Update comment.
16648         (mov_nop): Delete.
16650 2016-04-30  Oleg Endo  <olegendo@gcc.gnu.org>
16652         * config/sh/t-sh: Remove SH5 support.
16653         * config.gcc: Likewise.
16654         * configure: Likewise.
16656 2016-04-30  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
16658         * config/darwin.h (LINK_COMMAND_SPEC_A): Handle -fcilkplus.
16660 2016-04-30  Oleg Endo  <olegendo@gcc.gnu.org>
16662         * config/sh/sh.c (register_sh_passes, sh_option_override,
16663         sh_print_operand, prepare_move_operands,
16664         sh_can_follow_jump): Remove TARGET_SH1 checks.
16665         * config/sh/sh.h (TARGET_VARARGS_PRETEND_ARGS, VALID_REGISTER_P,
16666         PROMOTE_MODE): Likewise.
16667         * config/sh/sh.md (adddi3, addsi3, subdi3, subsi3, andsi3,
16668         movdi): Likewise.
16670 2016-04-30  Alan Modra  <amodra@gmail.com>
16672         * config/rs6000/rs6000.c (rs6000_savres_strategy): Force inline
16673         restoring when fixed_reg_p, but allow out-of-line or stmw save.
16674         Check for user regs later to avoid unnecessary looping over regs.
16675         Merge user reg check with non-saved reg check.  Don't force
16676         inline VR restore when static chain used.
16677         (rs6000_frame_related): Omit eh_frame info for user regs when
16678         saving.
16679         (fixed_regs_p): Delete.
16681 2016-04-30  Alan Modra  <amodra@gmail.com>
16683         * config/rs6000/rs6000.c (SAVRES_MULTIPLE): Replace with..
16684         (SAVE_STRATEGY, REST_STRATEGY): ..this.  Renumber and sort enum.
16685         Update all uses.
16687 2016-04-30  Alan Modra  <amodra@gmail.com>
16689         PR target/69645
16690         * config/rs6000/rs6000.c (fixed_reg_p): New function.
16691         (fixed_regs_p): Rename from global_regs_p.  Call fixed_reg_p.
16692         Update all uses.
16694 2016-04-30  Alan Modra  <amodra@gmail.com>
16696         * config/rs6000/rs6000.c (rs6000_conditional_register_usage):
16697         Remove redundant PIC_OFFSET_TABLE_REGNUM test.  Replace with
16698         flag_pic test for Darwin.
16700 2016-04-30  Alan Modra  <amodra@gmail.com>
16702         * regs.h (struct reg_info_t): Delete freq_calls_crossed and
16703         throw_calls_crossed.
16704         (REG_FREQ_CALLS_CROSSED): Delete.
16705         (REG_N_THROWING_CALLS_CROSSED): Delete.
16706         * regstat.c (regstat_bb_compute_ri): Don't calculate
16707         REG_FREQ_CALLS_CROSSED and REG_N_THROWING_CALLS_CROSSED.
16708         (dump_reg_info): Don't print call cross frequency.
16709         * ira.c (combine_and_move_insns): Don't set REG_FREQ_CALLS_CROSSED
16710         and REG_N_THROWING_CALLS_CROSSED.
16712 2016-04-30  Alan Modra  <amodra@gmail.com>
16714         * regs.h (struct reg_info_t): Delete live_length.
16715         (REG_LIVE_LENGTH): Delete macro.
16716         * regstat.c (regstat_bb_compute_ri): Delete artificial_uses,
16717         local_live, local_processed and local_live_last_luid params.
16718         Replace bb_index param with bb.  Don't set REG_LIVE_LENGTH.
16719         Formatting fixes.
16720         (regstat_compute_ri): Adjust for above.  Don't set
16721         REG_LIVE_LENGTH.
16722         (dump_reg_info): Don't print live length.
16723         * ira.c (update_equiv_regs): Replace test of REG_LIVE_LENGTH
16724         with test of setjmp_crosses.  Don't set REG_LIVE_LENGTH.
16725         Localize loop_depth var.
16727 2016-04-30  Alan Modra  <amodra@gmail.com>
16729         * ira.c (enum valid_equiv): New.
16730         (validate_equiv_mem): Return enum.
16731         (update_equiv_mem): Create replacement in more cases.
16732         (add_store_equivs): Update validate_equiv_mem call.
16734 2016-04-30  Alan Modra  <amodra@gmail.com>
16736         * ira.c (combine_and_move_insns): Rather than scanning insns,
16737         use DF infrastucture to find use and def insns.
16739 2016-04-30  Alan Modra  <amodra@gmail.com>
16741         ira.c (combine_and_move_insns): Move invariant conditions..
16742         (ira.c): ..to here.  Call combine_and_move_insns before
16743         add_store_equivs.  Call grow_reg_equivs later.  Allocate
16744         req_equiv later using max_reg_num() rather than global max_regno.
16745         (contains_replace_regs): Delete.
16746         (add_store_equivs): Remove contains_replace_regs test.
16748 2016-04-30  Alan Modra  <amodra@gmail.com>
16750         * ira.c (struct equiv_mem_data): New.
16751         (equiv_mem, equiv_mem_modified): Delete static vars.
16752         (validate_equiv_mem_from_store): Use "data" param to communicate..
16753         (validate_equiv_mem): ..from here.
16755 2016-04-30  Alan Modra  <amodra@gmail.com>
16757         * ira.c (add_store_equivs, combine_and_move_insns): New functions,
16758         split out from..
16759         (update_reg_equivs): ..here.  Move allocation and freeing of
16760         reg_equiv, and calls to grow_reg_equivs, init_alias_analysis,
16761         end_alias_analysis to..
16762         (ira): ..here.
16764 2016-04-30  Alan Modra  <amodra@gmail.com>
16766         * ira.c (pdx_subregs): Delete.
16767         (struct equivalence): Add pdx_subregs field.
16768         (set_paradoxical_subreg): Remove pdx_subregs param.  Update
16769         pdx_subregs access.
16770         (update_equiv_regs): Don't create or free pdx_subregs.  Update
16771         pdx_subregs access.
16773 2016-04-29  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
16775         * config/rs6000/altivec.h: Change definitions of vec_xl and
16776         vec_xst.
16777         * config/rs6000/rs6000-builtin.def (LD_ELEMREV_V2DF): New.
16778         (LD_ELEMREV_V2DI): New.
16779         (LD_ELEMREV_V4SF): New.
16780         (LD_ELEMREV_V4SI): New.
16781         (LD_ELEMREV_V8HI): New.
16782         (LD_ELEMREV_V16QI): New.
16783         (ST_ELEMREV_V2DF): New.
16784         (ST_ELEMREV_V2DI): New.
16785         (ST_ELEMREV_V4SF): New.
16786         (ST_ELEMREV_V4SI): New.
16787         (ST_ELEMREV_V8HI): New.
16788         (ST_ELEMREV_V16QI): New.
16789         (XL): New.
16790         (XST): New.
16791         * config/rs6000/rs6000-c.c (altivec_overloaded_builtins): Add
16792         descriptions for VSX_BUILTIN_VEC_XL and VSX_BUILTIN_VEC_XST.
16793         * config/rs6000/rs6000.c (rs6000_builtin_mask_calculate): Map from
16794         TARGET_P9_VECTOR to RS6000_BTM_P9_VECTOR.
16795         (altivec_expand_builtin): Add handling for
16796         VSX_BUILTIN_ST_ELEMREV_<MODE> and VSX_BUILTIN_LD_ELEMREV_<MODE>.
16797         (rs6000_invalid_builtin): Add error-checking for
16798         RS6000_BTM_P9_VECTOR.
16799         (altivec_init_builtins): Define builtins used to implement vec_xl
16800         and vec_xst.
16801         (rs6000_builtin_mask_names): Define power9-vector.
16802         * config/rs6000/rs6000.h (MASK_P9_VECTOR): Define.
16803         (RS6000_BTM_P9_VECTOR): Define.
16804         (RS6000_BTM_COMMON): Include RS6000_BTM_P9_VECTOR.
16805         * config/rs6000/vsx.md (vsx_ld_elemrev_v2di): New define_insn.
16806         (vsx_ld_elemrev_v2df): Likewise.
16807         (vsx_ld_elemrev_v4sf): Likewise.
16808         (vsx_ld_elemrev_v4si): Likewise.
16809         (vsx_ld_elemrev_v8hi): Likewise.
16810         (vsx_ld_elemrev_v16qi): Likewise.
16811         (vsx_st_elemrev_v2df): Likewise.
16812         (vsx_st_elemrev_v2di): Likewise.
16813         (vsx_st_elemrev_v4sf): Likewise.
16814         (vsx_st_elemrev_v4si): Likewise.
16815         (vsx_st_elemrev_v8hi): Likewise.
16816         (vsx_st_elemrev_v16qi): Likewise.
16817         * doc/extend.texi: Add prototypes for vec_xl and vec_xst.  Correct
16818         grammar.
16820 2016-04-29  Patrick Palka  <ppalka@gcc.gnu.org>
16822         * tree-ssa-threadedge.c (simplify_control_stmt_condition): Split
16823         out into ...
16824         (simplify_control_stmt_condition_1): ... here.  Recurse into
16825         BIT_AND_EXPRs and BIT_IOR_EXPRs.
16827 2016-04-29  David Edelsohn  <dje.gcc@gmail.com>
16829         PR target/69810
16830         * config/rs6000/rs6000.md (EXTQI): Don't allow extension to HImode.
16831         (zero_extendqi<mode>2_dot): Revert earlier conversion from
16832         define_insn_and_split to define_insn.
16833         (zero_extendqi<mode>2_dot2): Same.
16834         (extendqi<mode>2_dot): Same.
16835         (extendqi<mode>2_dot2): Same.
16837 2016-04-29  Uros Bizjak  <ubizjak@gmail.com>
16839         * config/i386/i386.md (unspec): Add UNSPEC_PROBE_STACK.
16840         (probe_stack): New expander.
16841         (probe_stack_<mode>): New insn pattern.
16843 2016-04-29  Uros Bizjak  <ubizjak@gmail.com>
16845         * config/i386/i386.md
16846         (operations with memory inputs setting flags peephole2):
16847         Remove uneeded REG_P checks.  Cleanup pattern generation.
16849 2016-04-29  Ilya Enkovich  <ilya.enkovich@intel.com>
16851         * tree-vect-loop.c (vect_transform_loop): Fix
16852         nb_iterations_upper_bound computation for vectorized loop.
16854 2016-04-29  Marek Polacek  <polacek@redhat.com>
16855             Jakub Jelinek  <jakub@redhat.com>
16857         PR sanitizer/70342
16858         * fold-const.c (tree_single_nonzero_warnv_p): For TARGET_EXPR, use
16859         TARGET_EXPR_SLOT as a base.
16861 2016-04-29  Andrew Burgess  <andrew.burgess@embecosm.com>
16863         * config/arc/arc.md (*loadqi_update): Replace use of 'rI' constraint
16864         with 'rCm2' constraints to limit possible immediate size.
16865         (*load_zeroextendqisi_update): Likewise.
16866         (*load_signextendqisi_update): Likewise.
16867         (*loadhi_update): Likewise.
16868         (*load_zeroextendhisi_update): Likewise.
16869         (*load_signextendhisi_update): Likewise.
16870         (*loadsi_update): Likewise.
16871         (*loadsf_update): Likewise.
16873 2016-04-29  Uros Bizjak  <ubizjak@gmail.com>
16875         * config/i386/predicates.md (constm1_operand): Fix comparison.
16877 2016-04-29  Claudiu Zissulescu  <claziss@synopsys.com>
16879         * testsuite/gcc.target/arc/ieee_eq.c: New test.
16881 2016-04-29  Oleg Endo  <olegendo@gcc.gnu.org>
16883         * common/config/sh/sh-common.c (sh_option_optimization_table): Remove
16884         remaining SH5 related settings.
16885         * config/sh/sh-protos.h (shmedia_cleanup_truncate,
16886         shmedia_prepare_call_address): Delete.
16887         * config/sh/sh.c (sh_print_operand, output_stack_adjust,
16888         DWARF_CIE_DATA_ALIGNMENT, LOCAL_ALIGNMENT): Update comments.
16889         * config/sh/sh.h (SUBTARGET_ASM_RELAX_SPEC,
16890         UNSUPPORTED_SH2A): Remove m5 checks.
16891         (sh_divide_strategy_e): Remove SH5 division strategies.
16892         (TARGET_PTRMEMFUNC_VBIT_LOCATION): Remove and use default.
16893         * config/sh/sh.md (divsf3): Reinstate define_expand pattern.
16895 2016-04-29  Dominik Vogt  <vogt@linux.vnet.ibm.com>
16897         * config/s390/s390.c (s390_rtx_costs): Update documentation.
16899 2016-04-29  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
16901         * config/s390/2964.md ("z13_unit_fxu", "z13_0"): Remove lder.
16902         * config/s390/s390.md ("movsi_larl", "*movsi_esa", "mov<mode>"):
16903         Change lder to ldr.
16904         * config/s390/vector.md ("mov<mode>"): Likewise.
16906 2016-04-29  Ulrich Weigand  <uweigand@de.ibm.com>
16908         * config/s390/constraints.md ("U", "W"): Invoke
16909         s390_mem_constraint with "ZR" and "ZT".
16910         * config/s390/s390.c (s390_check_qrst_address): Reject invalid
16911         addresses when using LRA.  Accept also short displacements for S
16912         and T constraints.  Do not check for long displacement target for
16913         S and T constraints.
16914         (s390_mem_constraint): Remove handling of U and W constraints.
16915         * config/s390/s390.md (various patterns): Remove the short
16916         displacement constraints (Q and R) if a long displacement
16917         constraint is present.  Add longdisp as required CPU capability.
16918         * config/s390/vector.md: Likewise.
16919         * config/s390/vx-builtins.md: Likewise.
16921 2016-04-29  Senthil Kumar Selvaraj  <senthil_kumar.selvaraj@atmel.com>
16923         PR target/60040
16924         * reload1.c (reload): Call finish_spills before
16925         restarting reload loop. Skip select_reload_regs
16926         if update_eliminables_and_spill returns true.
16928 2016-04-29  Claudiu Zissulescu  <claziss@synopsys.com>
16930         * config/arc/arc.h (UNSIGNED_INT12, UNSIGNED_INT16): Define.
16931         * config/arc/arc.md (umulhisi3): Use arc_short_operand predicate.
16932         (umulhisi3_imm): Update predicates and constraint letters.
16933         (umulhisi3_reg): Declare instruction as commutative.
16934         * config/arc/constraints.md (J12, J16): New constraints.
16935         * config/arc/predicates.md (short_unsigned_const_operand): New
16936         predicate.
16937         (arc_short_operand): Likewise.
16938         * testsuite/gcc.target/arc/umulsihi3_z.c: New file.
16940 2016-04-29  Richard Biener  <rguenther@suse.de>
16942         PR tree-optimization/13962
16943         PR tree-optimization/65686
16944         * tree-ssa-alias.h (ptrs_compare_unequal): Declare.
16945         * tree-ssa-alias.c (ptrs_compare_unequal): New function
16946         using PTA to compare pointers.
16947         * match.pd: Add pattern for pointer equality compare simplification
16948         using ptrs_compare_unequal.
16950 2016-04-29  Richard Biener  <rguenther@suse.de>
16952         * stor-layout.c (layout_type): Do not build a pointer-to-element
16953         type for arrays.
16955 2016-04-29  Uros Bizjak  <ubizjak@gmail.com>
16957         * config/i386/i386.md (Load+RegOp to Mov+MemOp peephole2):
16958         Use SWI mode iterator.  Use general_reg_operand predicate.
16959         (Load+RegOp to Mov+MemOp peephole2 with vector regs): Split
16960         peephole to MMX and SSE part.  Use mmx_reg_operand and sse_reg_operand
16961         predicates.
16963 2016-04-29  Jakub Jelinek  <jakub@redhat.com>
16965         PR middle-end/70843
16966         * fold-const.c (operand_equal_p): Don't verify hash value equality
16967         if arg0 == arg1.
16968         * tree.c (inchash::add_expr): Handle STATEMENT_LIST.  Ignore BLOCK
16969         and OMP_CLAUSE.
16971 2016-04-28  Jakub Jelinek  <jakub@redhat.com>
16973         PR target/70858
16974         * config/i386/i386.c (bdesc_special_args): Add | OPTION_MASK_ISA_64BIT
16975         to __builtin_ia32_lwpval64 and __builtin_ia32_lwpins64.
16976         (bdesc_args): Add | OPTION_MASK_ISA_64BIT to __builtin_ia32_bextr_u64,
16977         __builtin_ia32_bextri_u64, __builtin_ia32_bzhi_di,
16978         __builtin_ia32_pdep_di and __builtin_ia32_pext_di.
16980 2016-04-28  Segher Boessenkool  <segher@kernel.crashing.org>
16982         * config/rs6000/rs6000.c (compute_save_world_info): Rename info_ptr
16983         to info.  Don't initialize separate fields to 0.  Clean up
16984         formatting a bit.
16986 2016-04-28  Uros Bizjak  <ubizjak@gmail.com>
16988         * config/i386/i386.md (peephole2s for operations with memory inputs):
16989         Use SWI mode iterator.
16990         (peephole2s for operations with memory outputs): Ditto.
16991         Do not check for stack checking probe.
16993         (probe_stack): Remove expander.
16995 2016-04-28  Joern Rennecke  <joern.rennecke@embecosm.com>
16996             Andrew Burgess  <andrew.burgess@embecosm.com>
16998         * config/arc/arc.c (arc_print_operand): Print integer 'H' / 'L'
16999         operands as 32-bits.
17001 2016-04-28  Jason Merrill  <jason@redhat.com>
17003         * gdbinit.in: Skip line-map.h.
17005 2016-04-28  Joern Rennecke  <joern.rennecke@embecosm.com>
17006             Andrew Burgess  <andrew.burgess@embecosm.com>
17008         * config/arc/arc.c (arc_conditional_register_usage): Take
17009         TARGET_RRQ_CLASS into account.
17010         (arc_print_operand): Support printing 'p' and 's' operands.
17011         * config/arc/arc.h (TARGET_NPS_BITOPS_DEFAULT): Provide default
17012         as 0.
17013         (TARGET_RRQ_CLASS): Define.
17014         (IS_POWEROF2_OR_0_P): Define.
17015         * config/arc/arc.md (*movsi_insn): Add w/Clo, w/Chi, and w/Cbi
17016         alternatives.
17017         (*tst_movb): New define_insn.
17018         (*tst): Avoid recognition if it could prevent '*tst_movb'
17019         combination; replace c/CnL with c/Chs alternative.
17020         (*tst_bitfield_tst): New define_insn.
17021         (*tst_bitfield_asr): New define_insn.
17022         (*tst_bitfield): New define_insn.
17023         (andsi3_i): Add Rrq variant.
17024         (extzv): New define_expand.
17025         (insv): New define_expand.
17026         (*insv_i): New define_insn.
17027         (*movb): New define_insn.
17028         (*movb_signed): New define_insn.
17029         (*movb_high): New define_insn.
17030         (*movb_high_signed): New define_insn.
17031         (*movb_high_signed + 1): New define_split pattern.
17032         (*mrgb): New define_insn.
17033         (*mrgb + 1): New define_peephole2 pattern.
17034         (*mrgb + 2): New define_peephole2 pattern.
17035         * config/arc/arc.opt (mbitops): New option for nps400, uses
17036         TARGET_NPS_BITOPS_DEFAULT.
17037         * config/arc/constraints.md (q): Make register class conditional.
17038         (Rrq): New register constraint.
17039         (Chs): New constraint.
17040         (Clo): New constraint.
17041         (Chi): New constraint.
17042         (Cbf): New constraint.
17043         (Cbn): New constraint.
17044         (C18): New constraint.
17045         (Cbi): New constraint.
17047 2016-04-28  Segher Boessenkool  <segher@kernel.crashing.org>
17049         * cfganal.c (bitmap_intersection_of_succs): Delete assert checking
17050         dst->popcount.
17051         (bitmap_intersection_of_preds): Ditto.
17052         (bitmap_union_of_succs): Ditto.
17053         (bitmap_union_of_preds): Ditto.
17054         * sbitmap.c (do_popcount): Delete.
17055         (BITMAP_DEBUGGING): Delete.
17056         (sbitmap_verify_popcount): Delete.
17057         (sbitmap_alloc): Don't initialize the popcount field.
17058         (sbitmap_alloc_with_popcount): Delete.
17059         (sbitmap_resize): Don't resize the popcount array.
17060         (sbitmap_vector_alloc): Don't initialize the popcount field.
17061         (bitmap_copy): Don't copy the popcount array.
17062         (bitmap_clear): Don't clear the popcount array.
17063         (bitmap_clear): Delete the popcount array handling.
17064         (bitmap_ior_and_compl): Delete the popcount assert.
17065         (bitmap_not): Ditto.
17066         (bitmap_and_compl): Ditto.
17067         (bitmap_and): Delete the popcount array handling.
17068         (bitmap_xor): Ditto.
17069         (bitmap_ior): Ditto.
17070         (bitmap_or_and): Delete the popcount assert.
17071         (bitmap_and_or): Ditto.
17072         (popcount_table): Delete.
17073         (sbitmap_elt_popcount): Delete.
17074         * sbitmap.h (simple_bitmap_def): Delete the popcount field.
17075         (bitmap_set_bit): Delete the popcount assert.
17076         (bitmap_clear_bit): Ditto.
17077         (sbitmap_free): Don't free the popcount array.
17078         (sbitmap_alloc_with_popcount): Delete declaration.
17079         (sbitmap_popcount): Ditto.
17081 2016-04-28  Joern Rennecke  <joern.rennecke@embecosm.com>
17082             Andrew Burgess  <andrew.burgess@embecosm.com>
17084         * config/arc/arc.h (SYMBOL_FLAG_CMEM): Define.
17085         (TARGET_NPS_CMEM_DEFAULT): Provide default definition.
17086         * config/arc/arc.c (arc_address_cost): Return 0 for cmem_address.
17087         (arc_encode_section_info): Set SYMBOL_FLAG_CMEM where indicated.
17088         * config/arc/arc.opt (mcmem): New option.
17089         * config/arc/arc.md (*extendqihi2_i): Add r/Uex alternative,
17090         supply length for r/m alternative.
17091         (*extendqisi2_ac): Likewise.
17092         (*extendhisi2_i): Add r/Uex alternative, supply length for r/m and
17093         r/Uex alternative.
17094         (movqi_insn): Add r/Ucm and Ucm/?Rac alternatives.
17095         (movhi_insn): Likewise.
17096         (movsi_insn): Add r/Ucm,Ucm/w alternatives.
17097         (*zero_extendqihi2_i): Add r/Ucm alternative.
17098         (*zero_extendqisi2_ac): Likewise.
17099         (*zero_extendhisi2_i): Likewise.
17100         * config/arc/constraints.md (Uex): New memory constraint.
17101         (Ucm): New define_constraint.
17102         * config/arc/predicates.md (long_immediate_loadstore_operand):
17103         Return 0 for MEM with cmem_address address.
17104         (cmem_address_0): New predicates.
17105         (cmem_address_1): Likewise.
17106         (cmem_address_2): Likewise.
17107         (cmem_address): Likewise.
17109 2016-04-28  Segher Boessenkool  <segher@kernel.crashing.org>
17111         * config/rs6000/rs6000.c (machine_function): Rename
17112         insn_chain_scanned_p to spe_insn_chain_scanned_p.
17113         (rs6000_stack_info): Adjust.
17115 2016-04-28  Joern Rennecke  <joern.rennecke@embecosm.com>
17116             Andrew Burgess  <andrew.burgess@embecosm.com>
17118         * config/arc/constraints.md (Usd): Convert to define_constraint.
17119         (Us<): Likewise.
17120         (Us>): Likewise.
17122 2016-04-28  Jakub Jelinek  <jakub@redhat.com>
17124         PR target/70821
17125         * config/i386/sync.md (define_peephole2 *atomic_fetch_add_cmp<mode>):
17126         Add new peephole2 where the first insn is *mov<mode>_or instead of
17127         *mov<mode>_internal.
17129 2016-04-28  Segher Boesssenkool  <segher@kernel.crashing.org>
17131         * tracer.c (bb_seen): Make static.
17133 2016-04-28  Andrew Burgess  <andrew.burgess@embecosm.com>
17135         * common/config/arc/arc-common.c (arc_handle_option): Add NPS400
17136         support, setup defaults.
17137         * config/arc/arc-opts.h (enum processor_type): Add NPS400.
17138         * config/arc/arc.c (arc_init): Add NPS400 support.
17139         * config/arc/arc.h (CPP_SPEC): Add NPS400 defines.
17140         (TARGET_ARC700): NPS400 is also an ARC700.
17141         * config/arc/arc.opt: Add NPS400 options to -mcpu=.
17143 2016-04-28  Segher Boessenkool  <segher@kernel.crashing.org>
17145         PR target/70668
17146         * config/nds32/nds32.md (casesi): Don't access the operands array
17147         out of bounds.
17149 2016-04-28  Uros Bizjak  <ubizjak@gmail.com>
17151         * config/i386/i386.md (zeroing peephole2): Use general_reg_operand.
17152         (or $-1,reg peephole2): Ditto.
17153         (strict_low_part zeroing peephole2): Use SWI12 mode iterator.
17155 2016-04-28  Markus Trippelsdorf  <markus@trippelsdorf.de>
17157         * doc/extend.texi (Common Function Attributes) [optimize]:
17158         Discourage use of the optimize attribute.
17160 2016-04-28  Bill Seurer  <seurer@linux.vnet.ibm.com>
17162         * config/rs6000/rs6000-builtin.def (vec_adde): Change vec_adde to a
17163         special case builtin.
17164         * config/rs6000/rs6000-c.c (altivec_overloaded_builtins): Remove
17165         ALTIVEC_BUILTIN_VEC_ADDE.
17166         * config/rs6000/rs6000-c.c (altivec_resolve_overloaded_builtin): Add
17167         support for ALTIVEC_BUILTIN_VEC_ADDE.
17168         * config/rs6000/rs6000.c (altivec_init_builtins): Add definition
17169         for __builtin_vec_adde.
17171 2016-04-28  Jakub Jelinek  <jakub@redhat.com>
17173         * config/i386/i386.md (sse4_1_round<mode>2): Add avx512f alternative.
17174         * config/i386/sse.md (sse4_1_round<ssescalarmodesuffix>): Likewise.
17176 2016-04-28  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
17178         PR testsuite/70595
17179         * doc/sourcebuild.texi (Effective-Target Keywords, Other
17180         attributes): Document cilkplus_runtime.
17182 2016-04-28  Martin Jambor  <mjambor@suse.cz>
17184         * tree-cfg.c (verify_expr): Verify that local declarations belong to
17185         this function.  Call verify_expr on MEM_REFs and bases of other
17186         handled_components.
17188 2016-04-28  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
17190         * internal-fn.c (expand_arith_overflow): Convert preprocessor check
17191         for WORD_REGISTER_OPERATIONS to runtime check.
17193 2016-04-28  Claudiu Zissulescu  <claziss@synopsys.com>
17195         * config/arc/arc.h (ASM_SPEC): Pass mfpuda to assembler.
17197 2016-04-28  Claudiu Zissulescu  <claziss@synopsys.com>
17199         * config/arc/arc.c (arc_process_double_reg_moves): Fix for
17200         big-endian compilation.
17201         * config/arc/arc.md (addf3): Likewise.
17202         (subdf3): Likewise.
17203         (muldf3): Likewise.
17205 2016-04-28  Richard Biener  <rguenther@suse.de>
17207         PR tree-optimization/70840
17208         * match.pd: powi(-x, y) and powi(|x|,y) -> powi(x,y) if y is even;
17209         Fix pow(copysign(x, y), z) -> pow(x, z) and add powi variant;
17210         Mark x * pow(x,c) -> pow(x,c+1) commutative.
17211         Add powi(x,y) * powi(z,y) -> powi(x*z,y).
17213 2015-04-28  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
17215         * config/aarch64/aarch64.h (WORD_REGISTER_OPERATIONS): Define to 0
17216         and explain why in a comment.
17218 2016-04-28  Claudiu Zissulescu  <claziss@synopsys.com>
17220         * config/arc/arc.md (cpu_facility): Add fpx variant.
17221         (subdf3): Prohibit use reverse sub when assist operations option
17222         is enabled.
17223         * config/arc/fpx.md (subdf3_insn, *dsubh_peep2_insn): Allow drsub
17224         instructions only when FPX is enabled.
17225         * testsuite/gcc.target/arc/trsub.c: New test.
17227 2016-04-28  Uros Bizjak  <ubizjak@gmail.com>
17229         * config/i386/i386.md (*fop_<mode>_1_mixed): Do not check for
17230         mult_operator when calculating "type" attribute.
17231         (*fop_<mode>_1_i387): Ditto.
17232         (*fop_xf_1_i387): Ditto.
17233         (x87 stack loads peephole2): Add "reg = op (mem, reg)" peephole2.
17234         Use std::swap to swap operands.  Use RTL expressions to generate
17235         converted pattern.
17237 2016-04-28  Claudiu Zissulescu  <claziss@synopsys.com>
17238             Joern Rennecke  <joern.rennecke@embecosm.com>
17240         * config/arc/arc-protos.h (arc_legitimize_pic_address): Remove
17241         declaration.
17242         (emit_pic_move): Remove.
17243         (arc_eh_uses, insn_is_tls_gd_dispatch): Declare.
17244         * config/arc/arc.c (emit_pic_move): Removed.
17245         (TARGET_HAVE_TLS): Define.
17246         (arc_conditional_register_usage): Test for arc_tp_regno.
17247         (arc_print_operand, arc_print_operand_address): Handle TLS
17248         unspecs.
17249         (arc_needs_pcl_p): New function.
17250         (arc_legitimate_pc_offset_p): Use arc_needs_pcl_p.
17251         (arc_legitimate_pic_addr_p): Handle TLS unspecs.
17252         (arc_raw_symbolic_reference_mentioned_p): Likewise.
17253         (arc_get_tp, arc_emit_call_tls_get_addr): New function.
17254         (arc_legitimize_tls_address): Likewise.
17255         (DTPOFF_ZERO_SYM): Define.
17256         (arc_legitimize_pic_address): Make it static, handle TLS cases.
17257         (arc_output_pic_addr_const): Print TLS unspecs.
17258         (prepare_pic_move): New function, replaces emit_pic_move.
17259         (arc_legitimate_constant_p): Handle TLS unspecs.
17260         (arc_legitimate_address_p): Likewise.
17261         (arc_rewrite_small_data_p): Use assert for TLS constants.
17262         (prepare_move_operands): Use prepare_pic_move.
17263         (arc_legitimize_address): Legitimize tls addresses.
17264         (arc_epilogue_uses): Check for arc_tp_regno.
17265         (arc_eh_uses, insn_is_tls_gd_dispatch): New function.
17266         * config/arc/arc.h [DEFAULT_LIBC != LIBC_UCLIBC] (EXTRA_SPECS):
17267         Define.
17268         [DEFAULT_LIBC != LIBC_UCLIBC] (ARC_TLS_EXTRA_START_SPEC):
17269         Likewise.
17270         [DEFAULT_LIBC != LIBC_UCLIBC] (STARTFILE_SPEC): Add
17271         %(arc_tls_extra_start_spec).
17272         (TARGET_CPU_CPP_BUILTINS): Define __ARC_TLS_REGNO__.
17273         (REGNO_OK_FOR_BASE_P): Check for arc_tp_regno.
17274         (EH_USES): Define.
17275         (INSN_REFERENCES_ARE_DELAYED): Use insn_is_tls_gd_dispatch.
17276         * config/arc/arc.md (UNSPEC_TLS_GD, UNSPEC_TLS_LD, UNSPEC_TLS_IE)
17277         (UNSPEC_TLS_OFF): Add.
17278         (R10_REG): Define.
17279         (tls_load_tp_soft, tls_gd_load, tls_gd_get_addr, tls_gd_dispatch)
17280         (get_thread_pointersi): New patterns.
17281         * config/arc/arc.opt (mtp-regno): New option.
17282         * config/arc/predicates.md (move_src_operand): Handle TLS symbols.
17283         (move_dest_operand): Likewise.
17284         * configure: Regenerate.
17285         * configure.ac: Add arc*-*-* case to test for tls.
17286         * doc/invoke.texi (ARC options): Document mtp-regno.
17288 2016-04-28  Claudiu Zissulescu  <claziss@synopsys.com>
17290         * config/arc/arc.c (arc_vector_mode_supported_p): Add support for
17291         the new ARC HS SIMD instructions.
17292         (arc_preferred_simd_mode): New function.
17293         (arc_autovectorize_vector_sizes): Likewise.
17294         (TARGET_VECTORIZE_PREFERRED_SIMD_MODE)
17295         (TARGET_VECTORIZE_AUTOVECTORIZE_VECTOR_SIZES): Define.
17296         (arc_init_reg_tables): Accept new ARC HS SIMD modes.
17297         (arc_init_builtins): Add new SIMD builtin types.
17298         (arc_split_move): Handle 64 bit vector moves.
17299         * config/arc/arc.h (TARGET_PLUS_DMPY, TARGET_PLUS_MACD)
17300         (TARGET_PLUS_QMACW): Define.
17301         * config/arc/builtins.def (QMACH, QMACHU, QMPYH, QMPYHU, DMACH)
17302         (DMACHU, DMPYH, DMPYHU, DMACWH, DMACWHU, VMAC2H, VMAC2HU, VMPY2H)
17303         (VMPY2HU, VADDSUB2H, VSUBADD2H, VADDSUB, VSUBADD, VADDSUB4H)
17304         (VSUBADD4H): New builtins.
17305         * config/arc/simdext.md: Add new ARC HS SIMD instructions.
17306         * testsuite/gcc.target/arc/builtin_simdarc.c: New file.
17308 2016-04-28  Eduard Sanou  <dhole@openmailbox.org>
17309             Matthias Klose  <doko@debian.org>
17311         * doc/cppenv.texi: Document SOURCE_DATE_EPOCH environment variable.
17313 2016-04-28  Richard Biener  <rguenther@suse.de>
17315         PR middle-end/70777
17316         * fold-const.c (fold_binary_loc): Remove x*x to pow(x,2.0)
17317         canonicalization.
17319 2016-04-28  Oleg Endo  <olegendo@gcc.gnu.org>
17321         * common/config/sh/sh-common.c: Remove SH5 support.
17322         * config/sh/constraints.md: Likewise.
17323         * config/sh/config/sh/elf.h: Likewise.
17324         * config/sh/linux.h: Likewise.
17325         * config/sh/netbsd-elf.h: Likewise.
17326         * config/sh/predicates.md: Likewise.
17327         * config/sh/sh-c.c: Likewise.
17328         * config/sh/sh-protos.h: Likewise.
17329         * config/sh/sh.c: Likewise.
17330         * config/sh/sh.h: Likewise.
17331         * config/sh/sh.md: Likewise.
17332         * config/sh/sh.opt: Likewise.
17333         * config/sh/sync.md: Likewise.
17334         * config/sh/sh64.h: Delete.
17335         * config/sh/shmedia.h: Likewise.
17336         * config/sh/shmedia.md: Likewise.
17337         * config/sh/sshmedia.h: Likewise.
17338         * config/sh/t-netbsd-sh5-64: Likewise.
17339         * config/sh/t-sh64: Likewise.
17340         * config/sh/ushmedia.h: Likewise.
17342 2016-04-28  Uros Bizjak  <ubizjak@gmail.com>
17344         * config/i386/i386.md (sign_extend to memory peephole2s): Use
17345         general_reg_operand instead of register_operand predicate.
17347 2016-04-27  Prathamesh Kulkarni  <prathamesh.kulkarni@linaro.org>
17349         * params.def (MIN_PARTITION_SIZE): Set default value to 10000.
17351 2016-04-27  Marc Glisse  <marc.glisse@inria.fr>
17353         * match.pd (A - B > A, A + B < A): New transformations.
17355 2016-04-27  Patrick Palka  <ppalka@gcc.gnu.org>
17357         * genattrtab.c (write_test_expr): New parameter EMIT_PARENS
17358         which defaults to true.  Emit an outer pair of parentheses only if
17359         EMIT_PARENS.  When continuing a chain of && or || (or & or |),
17360         don't emit parentheses for the right-hand operand.
17362 2016-04-27  Jeff Law  <law@redhat.com>
17364         * tree-ssa-dom.c (record_temporary_equivalences): Fix typo in comment.
17366 2016-04-27  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
17368         * config/rs6000/altivec.md (altivec_lvx_<mode>): Remove.
17369         (altivec_lvx_<mode>_internal): Document.
17370         (altivec_lvx_<mode>_2op): New define_insn.
17371         (altivec_lvx_<mode>_1op): Likewise.
17372         (altivec_lvx_<mode>_2op_si): Likewise.
17373         (altivec_lvx_<mode>_1op_si): Likewise.
17374         (altivec_stvx_<mode>): Remove.
17375         (altivec_stvx_<mode>_internal): Document.
17376         (altivec_stvx_<mode>_2op): New define_insn.
17377         (altivec_stvx_<mode>_1op): Likewise.
17378         (altivec_stvx_<mode>_2op_si): Likewise.
17379         (altivec_stvx_<mode>_1op_si): Likewise.
17380         * config/rs6000/rs6000-c.c (altivec_resolve_overloaded_builtin):
17381         Expand vec_ld and vec_st during parsing.
17382         * config/rs6000/rs6000.c (altivec_expand_lvx_be): Commentary
17383         changes.
17384         (altivec_expand_stvx_be): Likewise.
17385         (altivec_expand_lv_builtin): Expand lvx built-ins to expose the
17386         address-masking behavior in RTL.
17387         (altivec_expand_stv_builtin): Expand stvx built-ins to expose the
17388         address-masking behavior in RTL.
17389         (altivec_expand_builtin): Change builtin code arguments for calls
17390         to altivec_expand_stv_builtin and altivec_expand_lv_builtin.
17391         (insn_is_swappable_p): Avoid incorrect swap optimization in the
17392         presence of lvx/stvx patterns.
17393         (alignment_with_canonical_addr): New function.
17394         (alignment_mask): Likewise.
17395         (find_alignment_op): Likewise.
17396         (recombine_lvx_pattern): Likewise.
17397         (recombine_stvx_pattern): Likewise.
17398         (recombine_lvx_stvx_patterns): Likewise.
17399         (rs6000_analyze_swaps): Perform a pre-pass to recognize lvx and
17400         stvx patterns from expand.
17401         * config/rs6000/vector.md (vector_altivec_load_<mode>): Use new
17402         expansions.
17403         (vector_altivec_store_<mode>): Likewise.
17405 2016-04-26  Evandro Menezes  <e.menezes@samsung.com>
17407         * config/aarch64/aarch64.md
17408         (*movhf_aarch64): Add "movi %0, #0" to zero up register and
17409         remove the "fp" attributes.
17410         (*movsf_aarch64): Add "movi %0, #0" to zero up register and
17411         add the "simd" attributes.
17412         (*movdf_aarch64): Likewise.
17413         (*movtf_aarch64): Remove the "fp" attributes.
17414         * testsuite/gcc.target/aarch64/fmovf-zero-reg.c: Update accordingly.
17415         * testsuite/gcc.target/aarch64/fmovd-zero-reg.c: Likewise.
17417 2016-04-27  David Malcolm  <dmalcolm@redhat.com>
17419         * emit-rtl.c (maybe_set_first_label_num): Strengthen param from
17420         rtx to rtx_code_label *.
17421         * rtl.h (maybe_set_first_label_num): Likewise.
17423 2016-04-27  David Malcolm  <dmalcolm@redhat.com>
17425         * df-core.c (df_add_problem): Make the problem param be const.
17426         (df_remove_problem): Make local "problem" be const.
17427         * df-problems.c (problem_RD): Make const.
17428         (problem_LR): Likewise.
17429         (problem_LIVE): Likewise.
17430         (problem_MIR): Likewise.
17431         (problem_CHAIN): Likewise.
17432         (problem_WORD_LR): Likewise.
17433         (problem_NOTE): Likewise.
17434         (problem_MD): Likewise.
17435         * df-scan.c (problem_SCAN): Likewise.
17436         * df.h (struct df_problem): Make field "dependent_problem" be
17437         const.
17438         (struct dataflow): Likewise for field "problem".
17439         (df_add_problem): Make param const.
17441 2016-04-27  Uros Bizjak  <ubizjak@gmail.com>
17443         * config/i386/i386.c (ix86_spill_class): Enable for TARGET_SSE2 when
17444         inter-unit moves to/from vector registers are enabled.  Do not disable
17445         for TARGET_MMX.
17447 2016-04-27  David Malcolm  <dmalcolm@redhat.com>
17449         * df.h (DF_SCAN, DF_LR, DF_LIVE, DF_RD, DF_CHAIN, DF_WORD_LR,
17450         DF_NOTE, DF_MD, DF_MIR, DF_LAST_PROBLEM_PLUS1): Convert from
17451         #define to...
17452         (enum df_problem_id): ...this new enum.
17453         (struct df_problem): Convert field "id" from "int" to
17454         enum df_problem_id.
17456 2016-04-27  David Malcolm  <dmalcolm@redhat.com>
17458         * rtl.def: Update comment for "things in the instruction chain" to
17459         reflect the removal of the leading "i" field for INSN_UID in
17460         r210360.  Fix bogus apostrophe.
17462 2016-04-27  Uros Bizjak  <ubizjak@gmail.com>
17464         * config/i386/i386.md
17465         (lea arith with mem operand + setcc peephole2): Set operator mode.
17467 2016-04-27  H.J. Lu  <hongjiu.lu@intel.com>
17469         PR target/70155
17470         * config/i386/i386.c (scalar_to_vector_candidate_p): Renamed to ...
17471         (dimode_scalar_to_vector_candidate_p): This.
17472         (timode_scalar_to_vector_candidate_p): New function.
17473         (scalar_to_vector_candidate_p): Likewise.
17474         (timode_check_non_convertible_regs): Likewise.
17475         (timode_remove_non_convertible_regs): Likewise.
17476         (remove_non_convertible_regs): Likewise.
17477         (remove_non_convertible_regs): Renamed to ...
17478         (dimode_remove_non_convertible_regs): This.
17479         (scalar_chain::~scalar_chain): Make it virtual.
17480         (scalar_chain::compute_convert_gain): Make it pure virtual.
17481         (scalar_chain::mark_dual_mode_def): Likewise.
17482         (scalar_chain::convert_insn): Likewise.
17483         (scalar_chain::convert_registers): Likewise.
17484         (scalar_chain::add_to_queue): Make it protected.
17485         (scalar_chain::emit_conversion_insns): Likewise.
17486         (scalar_chain::replace_with_subreg): Likewise.
17487         (scalar_chain::replace_with_subreg_in_insn): Likewise.
17488         (scalar_chain::convert_op): Likewise.
17489         (scalar_chain::convert_reg): Likewise.
17490         (scalar_chain::make_vector_copies): Likewise.
17491         (scalar_chain::convert_registers): New pure virtual function.
17492         (class dimode_scalar_chain): New class.
17493         (class timode_scalar_chain): Likewise.
17494         (scalar_chain::mark_dual_mode_def): Renamed to ...
17495         (dimode_scalar_chain::mark_dual_mode_def): This.
17496         (timode_scalar_chain::mark_dual_mode_def): New function.
17497         (timode_scalar_chain::convert_insn): Likewise.
17498         (dimode_scalar_chain::convert_registers): Likewise.
17499         (scalar_chain::compute_convert_gain): Renamed to ...
17500         (dimode_scalar_chain::compute_convert_gain): This.
17501         (scalar_chain::replace_with_subreg): Renamed to ...
17502         (dimode_scalar_chain::replace_with_subreg): This.
17503         (scalar_chain::replace_with_subreg_in_insn): Renamed to ...
17504         (dimode_scalar_chain::replace_with_subreg_in_insn): This.
17505         (scalar_chain::make_vector_copies): Renamed to ...
17506         (dimode_scalar_chain::make_vector_copies): This.
17507         (scalar_chain::convert_reg): Renamed to ...
17508         (dimode_scalar_chain::convert_reg ): This.
17509         (scalar_chain::convert_op): Renamed to ...
17510         (dimode_scalar_chain::convert_op): This.
17511         (scalar_chain::convert_insn): Renamed to ...
17512         (dimode_scalar_chain::convert_insn): This.
17513         (scalar_chain::convert): Call convert_registers.
17514         (convert_scalars_to_vector): Change to scalar_chain pointer to
17515         use timode_scalar_chain in 64-bit mode and dimode_scalar_chain
17516         in 32-bit mode.  Delete scalar_chain pointer.  Call
17517         free_dominance_info in 64-bit mode.
17518         (pass_stv::gate): Remove TARGET_64BIT check.
17519         (ix86_option_override): Put the 64-bit STV pass before the CSE
17520         pass.
17522 2016-04-27  Pierre-Marie de Rodat  <derodat@adacore.com>
17524         * dwarf2out.h (struct dw_loc_descr_node): Remove the
17525         dw_loc_frame_offset field.
17526         * dwarf2out.c (new_loc_descr): Likewise.
17527         (resolve_args_picking_1): Turn the VISITED hash set into a
17528         FRAME_OFFSET hash map. Use it to associate a frame offset to
17529         visited nodes. Remove uses of the CHECKING_P macro.
17530         (resolve_args_picking): Update call to resolve_args_picking_1.
17532 2016-04-27  Martin Liska  <mliska@suse.cz>
17534         * tree-ssa-loop-ivopts.c (iv_ca_dump): Fix level of indentation.
17535         (free_loop_data): Release vuses of groups.
17537 2016-04-27  Bin Cheng  <bin.cheng@arm.com>
17539         * tree-ssa-loop-ivopts.c (struct iv): Use pointer to struct iv_use
17540         instead of redundant use_id and boolean have_use_for.
17541         (struct iv_use): Change sub_id into group_id.  Remove field next.
17542         Move fields: related_cands, n_map_members, cost_map and selected
17543         to ...
17544         (struct iv_group): ... here.  New structure.
17545         (struct iv_common_cand): Use structure declaration directly.
17546         (struct ivopts_data, iv_ca, iv_ca_delta): Rename fields.
17547         (MAX_CONSIDERED_USES): Rename macro to ...
17548         (MAX_CONSIDERED_GROUPS): ... here.
17549         (n_iv_uses, iv_use, n_iv_cands, iv_cand): Delete.
17550         (dump_iv, dump_use, dump_cand): Refactor format of dump information.
17551         (dump_uses): Rename to ...
17552         (dump_groups): ... here.  Update all uses.
17553         (tree_ssa_iv_optimize_init, alloc_iv): Update all uses.
17554         (find_induction_variables): Refactor format of dump information.
17555         (record_sub_use): Delete.
17556         (record_use): Update all uses.
17557         (record_group): New function.
17558         (record_group_use, find_interesting_uses_op): Call above functions.
17559         Update all uses.
17560         (find_interesting_uses_cond): Ditto.
17561         (group_compare_offset): New function.
17562         (split_all_small_groups): Rename to ...
17563         (split_small_address_groups_p): ... here.  Update all uses.
17564         (split_address_groups):  Update all uses.
17565         (find_interesting_uses): Refactor format of dump information.
17566         (add_candidate_1): Update all uses.  Remove redundant check on iv,
17567         base and step.
17568         (add_candidate, record_common_cand): Remove redundant assert.
17569         (add_iv_candidate_for_biv): Update use.
17570         (add_iv_candidate_derived_from_uses): Update all uses.
17571         (add_iv_candidate_for_groups, record_important_candidates): Ditto.
17572         (alloc_use_cost_map): Ditto.
17573         (set_use_iv_cost, get_use_iv_cost): Rename to ...
17574         (set_group_iv_cost, get_group_iv_cost): ... here.  Update all uses.
17575         (determine_use_iv_cost_generic): Ditto.
17576         (determine_group_iv_cost_generic): Ditto.
17577         (determine_use_iv_cost_address): Ditto.
17578         (determine_group_iv_cost_address): Ditto.
17579         (determine_use_iv_cost_condition): Ditto.
17580         (determine_group_iv_cost_cond): Ditto.
17581         (determine_use_iv_cost): Ditto.
17582         (determine_group_iv_cost): Ditto.
17583         (set_autoinc_for_original_candidates): Update all uses.
17584         (find_iv_candidates): Update all uses.  Refactor dump information.
17585         (determine_use_iv_costs): Ditto.
17586         (determine_iv_costs): Ditto.
17587         (iv_ca_cand_for_use): Rename to ...
17588         (iv_ca_cand_for_group): ... here.  Update all uses.
17589         (iv_ca_add_use, iv_ca_add_group): Ditto.
17590         (iv_ca_set_cp, iv_ca_cost, iv_ca_delta_add): Update all uses.
17591         (iv_ca_delta_join, iv_ca_delta_reverse, iv_ca_delta_free): Ditto.
17592         (iv_ca_new, iv_ca_dump, iv_ca_extend, iv_ca_narrow): Ditto.
17593         (iv_ca_prune, cheaper_cost_with_cand, iv_ca_replace): Ditto.
17594         (try_add_cand_for, try_improve_iv_set, find_optimal_iv_set): Ditto.
17595         (create_new_iv, adjust_iv_update_pos): Ditto.
17596         (rewrite_use_address): Delete.
17597         (rewrite_use_address_1): Rename to ...
17598         (rewrite_use_address): ... here.
17599         (rewrite_use_compare): Update all uses.
17600         (rewrite_use): Delete.
17601         (rewrite_uses): Rename to ...
17602         (rewrite_groups): ... here.  Update all uses.
17603         (remove_unused_ivs, free_loop_data): Update all uses.
17604         (tree_ssa_iv_optimize_finalize, tree_ssa_iv_optimize_loop): Ditto.
17606 2016-04-27  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
17608         * rtlanal.c (nonzero_bits1): Convert preprocessor check
17609         for WORD_REGISTER_OPERATIONS to runtime check.
17611 2016-04-27  Richard Biener  <rguenther@suse.de>
17613         PR ipa/70760
17614         * tree-ssa-structalias.c (find_func_aliases_for_call): Use
17615         aggregate_value_p to determine if a function result is
17616         returned by reference.
17617         (ipa_pta_execute): Functions having their address taken are
17618         not automatically nonlocal.
17620 2016-04-27  Jakub Jelinek  <jakub@redhat.com>
17622         PR sanitizer/70683
17623         * tree-core.h (enum operand_equal_flag): Add OEP_NO_HASH_CHECK.
17624         * fold-const.c (operand_equal_p): If flag_checking and
17625         OEP_NO_HASH_CHECK is not set in flag, recurse with OEP_NO_HASH_CHECK
17626         and if it returns non-zero, assert iterative_hash_expr on both
17627         args is the same.
17629 2016-04-27  Bernd Schmidt  <bschmidt@redhat.com>
17631         * doc/invoke.texi (-frename-registers): Also enabled at -Os.
17633 2016-04-27  Nick Clifton  <nickc@redhat.com>
17635         PR middle-end/49889
17636         * varasm.c (merge_weak): Generate an error if an attempt is made
17637         to convert a non-weak static function into a weak, public function.
17639 2016-04-27  Prathamesh Kulkarni  <prathamesh.kulkarni@linaro.org>
17641         * params.def (MAX_PARTITION_SIZE): New param.
17642         * doc/invoke.texi: Document lto-max-partition.
17644 2016-04-27  Richard Biener  <rguenther@suse.de>
17646         PR ipa/70785
17647         * tree-ssa-structalias.c (refered_from_nonlocal_fn): New
17648         function cummulating used_from_other_partition, externally_visible
17649         and force_output from aliases.
17650         (refered_from_nonlocal_var): Likewise.
17651         (ipa_pta_execute): Use call_for_symbol_and_aliases to cummulate
17652         node flags properly.
17654 2016-04-27  Bernd Schmidt  <bschmidt@redhat.com>
17656         * doc/invoke.texi (Warning Options): Add -Wmemset-elt-size.
17657         (-Wmemset-elt-size): New item.
17659 2016-04-27  Eric Botcazou  <ebotcazou@adacore.com>
17661         PR ada/70759
17662         * stor-layout.h (internal_reference_types): Delete.
17663         * stor-layout.c (reference_types_internal): Likewise.
17664         (internal_reference_types): Likewise.
17665         (layout_type) <REFERENCE_TYPE>: Adjust.
17667 2016-04-27  Jakub Jelinek  <jakub@redhat.com>
17669         PR sanitizer/70683
17670         * tree.h (inchash::add_expr): Add FLAGS argument.
17671         * tree.c (inchash::add_expr): Likewise.  If not OEP_ADDRESS_OF,
17672         use STRIP_NOPS first.  For INTEGER_CST assert not OEP_ADDRESS_OF.
17673         For REAL_CST and !HONOR_SIGNED_ZEROS (t) hash +/- 0 the same.
17674         Formatting fix.  Adjust recursive calls.  For tcc_comparison,
17675         if swap_tree_comparison (code) is smaller than code, hash that
17676         and arguments in the other order.  Hash CONVERT_EXPR the same
17677         as NOP_EXPR.  For OEP_ADDRESS_OF hash MEM_REF with 0 offset
17678         of ADDR_EXPR of decl as the decl itself.  Add or remove
17679         OEP_ADDRESS_OF from recursive flags as needed.  For
17680         FMA_EXPR, WIDEN_MULT_{PLUS,MINUS}_EXPR hash the first two
17681         operands commutatively and only the third one normally.
17682         For internal CALL_EXPR hash in CALL_EXPR_IFN.
17684 2016-04-27  Sebastian Huber  <sebastian.huber@embedded-brains.de>
17686         * config/rtems.h (LIB_SPEC): Add -latomic.
17688 2016-04-27  Joel Sherrill  <joel@rtems.org>
17690         * config/microblaze/rtems.h: Redefine LINK_SPEC to avoid
17691         xilink.ld and flags not relevant to RTEMS.
17693 2016-04-26  Zhouyi Zhou  <yizhouzhou@ict.ac.cn>
17695         * toplev.c (backend_init_target): Avoid calling init_reload when using
17696         LRA.
17698 2016-04-26  Jakub Jelinek  <jakub@redhat.com>
17700         * reorg.c (try_merge_delay_insns): Declare i and j inside the
17701         for loops rather than one for the whole function.
17703 2016-04-26  Marc Glisse  <marc.glisse@inria.fr>
17705         * match.pd (X + CST CMP X): New transformation.
17707 2016-04-26  Marc Glisse  <marc.glisse@inria.fr>
17709         * genmatch.c (write_predicate): Add ATTRIBUTE_UNUSED.
17710         * fold-const.c (fold_binary_loc): Remove 2 transformations
17711         superseded by match.pd.
17712         * match.pd (x+x -> x*2): Generalize to integers.
17714 2016-04-26  Bernd Schmidt  <bschmidt@redhat.com>
17716         * config/i386/i386.md (operation on memory peephole): Duplicate an
17717         existing peephole and adapt it to match lea rather than an operation
17718         that clobbers CC.
17720         PR rtl-optimization/57193
17721         * opts.c (default_options_table): Add OPT_frename_registers at -O2
17722         and above.
17723         * doc/invoke.texi (-frename-registers, -O2): Update documentation.
17725 2016-04-26  Bin Cheng  <bin.cheng@arm.com>
17727         * tree-if-conv.c (any_pred_load_store): New static variable.
17728         (if_convertible_gimple_assign_stmt_p): Remove parameter.  Use
17729         any_pred_load_store instead of and_mask_load_store.
17730         (if_convertible_stmt_p, if_convertible_loop_p_1): Ditto.
17731         (if_convertible_loop_p, insert_gimplified_predicates): Ditto.
17732         (combine_blocks, tree_if_conversion): Ditto.
17734 2016-04-26  Bin Cheng  <bin.cheng@arm.com>
17736         PR tree-optimization/70771
17737         PR tree-optimization/70775
17738         * tree-if-conv.c (if_convertible_phi_p): Remove check on special
17739         virtual PHI nodes.  Delete parameter.
17740         (if_convertible_loop_p_1): Delete argument to above function.
17741         (predicate_all_scalar_phis): Delete code handling single-argument
17742         PHIs.
17743         (tree_if_conversion): Mark and update virtual SSA.
17745 2016-04-26  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
17747         PR target/61821
17748         * config/i386/i386.c (LARGECOMM_SECTION_ASM_OP): Define default.
17749         (x86_elf_aligned_common): Rename to ...
17750         (x86_elf_aligned_decl_common): ... this.
17751         Add decl arg.  Switch to .lbss for largecomm object.  Use
17752         LARGECOMM_SECTION_ASM_OP.
17753         * config/i386/i386-protos.h (x86_elf_aligned_common): Reflect
17754         renaming.
17755         * config/i386/x86-64.h (ASM_OUTPUT_ALIGNED_COMMON): Rename to ...
17756         (ASM_OUTPUT_ALIGNED_DECL_COMMON): ... this.
17757         Pass new decl arg.
17758         * config/i386/sol2.h (ASM_OUTPUT_ALIGNED_COMMON): Likewise.
17759         [!USE_GAS] (LARGECOMM_SECTION_ASM_OP): Define.
17761 2016-04-26  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
17763         PR target/59407
17764         * config/i386/i386.c (SECTION_LARGE): Define.
17765         (x86_64_elf_select_section): Set it for large data/bss sections.
17766         Only clear SECTION_WRITE for .lrodata.
17767         (x86_64_elf_section_type_flags): Set SECTION_LARGE for large
17768         data/bss sections.
17769         * config/i386/sol2.h (MACH_DEP_SECTION_ASM_FLAG): Define.
17770         * varasm.c (default_elf_asm_named_section): Grow flagchars.
17771         [MACH_DEP_SECTION_ASM_FLAG] Emit MACH_DEP_SECTION_ASM_FLAG for
17772         SECTION_MACH_DEP.
17773         * doc/tm.texi.in (Sections, MACH_DEP_SECTION_ASM_FLAG): Describe.
17774         * doc/tm.texi: Regenerate.
17776 2016-04-26  Jakub Jelinek  <jakub@redhat.com>
17778         PR bootstrap/70704
17779         * configure.ac (--enable-checking): Document extra flag, for
17780         non-release builds default to --enable-checking=yes,extra.
17781         If misc checking and extra checking, define CHECKING_P to 2 instead
17782         of 1.
17783         * common.opt (fchecking=): Add.
17784         * doc/invoke.texi (-fchecking=): Document.
17785         * doc/install.texi: Document --enable-checking changes.
17786         * configure: Regenerated.
17787         * config.in: Regenerated.
17789 2016-04-25  Uros Bizjak  <ubizjak@gmail.com>
17791         * config/i386/i386.md (*movxi_internal_avx512f): Use insn type
17792         attribute instead of which_alternative.
17793         * config/i386/sse.md (*mov<mode>_internal): Ditto.
17794         Use EXT_REX_SSE_REG_P where appropriate.
17796 2016-04-25  Uros Bizjak  <ubizjak@gmail.com>
17798         * config/i386/predicates.md (const0_operand): Do not match
17799         const_wide_int code.
17800         (const1_operand): Ditto.
17802 2016-04-25  Uros Bizjak  <ubizjak@gmail.com>
17804         * config/i386/i386.md (*movoi_internal_avx): Set mode attribute to XI
17805         for SSE constm1 operands and TARGET_AVX512VL.
17806         (*movti_internal): Ditto.
17807         (*mov<mode>_or): Use constm1_operand predicate.
17808         * config/i386/sse.md (*mov<mode>_internal): Set mode attribute to XI
17809         for SSE vector_all_ones operands and TARGET_AVX512VL.
17810         * config/i386/predicates.md (constm1_operand): New predicate.
17811         * config/i386/i386.c (standard_sse_constant_opcode): Simplify
17812         emission of constant -1 load.
17814 2016-04-25  Jason Merrill  <jason@redhat.com>
17816         * gdbinit.in: Skip is-a.h.
17818         * attribs.c (register_scoped_attributes): Fix logic.
17819         * attribs.h: Declare register_scoped_attributes.
17821 2016-04-25  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
17823         * config/rs6000/rs6000-builtin.def: Correct pasto error for
17824         stxvd2x and stxvw4x built-in functions.
17826 2016-04-25  DJ Delorie  <dj@redhat.com>
17828         * config/msp430/msp430.md (ashlhi3): Optimize one bit shifts.
17829         (ashrhi3): Likewise.
17830         (lshrhi3): Likewise.
17832 2016-04-25  Richard Biener  <rguenther@suse.de>
17834         PR tree-optimization/70780
17835         * tree-ssa-pre.c (compute_antic_aux): Also return true if the block
17836         wasn't visited yet.
17837         (compute_antic): Mark blocks with abnormal preds as visited as
17838         they have a final empty antic-in solution already.
17840 2016-04-25  Michael Collison  <michael.collison@linaro.org>
17842         * ChangeLog(2016-04-25): Fix ChangeLog formatting.
17844 2016-04-25  Michael Collison  <michael.collison@linaro.org>
17846         * config/arm/neon.md (widen_<us>sum<mode>): New patterns where
17847         mode is VQI to improve mixed mode vectorization.
17848         * config/arm/neon.md (vec_sel_widen_ssum_lo<VQI:mode><VW:mode>3): New
17849         define_insn to match low half of signed vaddw.
17850         * config/arm/neon.md (vec_sel_widen_ssum_hi<VQI:mode><VW:mode>3): New
17851         define_insn to match high half of signed vaddw.
17852         * config/arm/neon.md (vec_sel_widen_usum_lo<VQI:mode><VW:mode>3): New
17853         define_insn to match low half of unsigned vaddw.
17854         * config/arm/neon.md (vec_sel_widen_usum_hi<VQI:mode><VW:mode>3): New
17855         define_insn to match high half of unsigned vaddw.
17856         * config/arm/arm.c (arm_simd_vect_par_cnst_half): New function.
17857         (arm_simd_check_vect_par_cnst_half_p): Likewise.
17858         * config/arm/arm-protos.h (arm_simd_vect_par_cnst_half): Prototype
17859         for new function.
17860         (arm_simd_check_vect_par_cnst_half_p): Likewise.
17861         * config/arm/predicates.md (vect_par_constant_high): Support
17862         big endian and simplify by calling
17863         arm_simd_check_vect_par_cnst_half
17864         (vect_par_constant_low): Likewise.
17866 2016-04-25  Uros Bizjak  <ubizjak@gmail.com>
17868         * config/i386/i386.md (*lea<mode>_general_4): Use const_0_to_3_operand
17869         predicate for operand 2.
17871 2016-04-24  Uros Bizjak  <ubizjak@gmail.com>
17872             H.J. Lu  <hongjiu.lu@intel.com>
17874         * config/i386/i386-protos.h (standard_sse_constant_p): Add
17875         machine_mode argument.
17876         * config/i386/i386.c (standard_sse_constant_p): Return 2 for
17877         constm1_rtx operands.  For VOIDmode constants, get mode from
17878         pred_mode.  Check mode size if the mode is supported by ABI.
17879         (standard_sse_constant_opcode): Do not use standard_constant_p.
17880         Strictly check ABI support for all-ones operands.
17881         (ix86_legitimate_constant_p): Handle TImode, OImode and XImode
17882         immediates. Update calls to standard_sse_constant_p.
17883         (ix86_expand_vector_move): Update calls to standard_sse_constant_p.
17884         (ix86_rtx_costs): Ditto.
17885         * config/i386/i386.md (*movxi_internal_avx512f): Use
17886         nonimmediate_or_sse_const_operand instead of vector_move_operand.
17887         Use (v,BC) alternative instead of (v,C). Use register_operand
17888         checks instead of MEM_P.
17889         (*movoi_internal_avx): Use nonimmediate_or_sse_const_operand instead
17890         of vector_move_operand.  Add (v,BC) alternative and corresponding avx2
17891         isa attribute.  Use register_operand checks instead of MEM_P.
17892         (*movti_internal): Use nonimmediate_or_sse_const_operand for
17893         TARGET_SSE.  Improve TARGET_SSE insn constraint.  Add (v,BC)
17894         alternative and corresponding sse2 isa attribute.
17895         (*movtf_internal, *movdf_internal, *movsf_interal): Update calls
17896         to standard_sse_constant_p.
17897         (FP constant splitters): Ditto.
17898         * config/i386/constraints.md (BC): Do not use standard_sse_constant_p.
17899         (C): Ditto.
17900         * config/i386/predicates.md (constm1_operand): Remove.
17901         (nonimmediate_or_sse_const_operand): Rewrite using RTX.
17902         * config/i386/sse.md (*<avx512>_cvtmask2<ssemodesuffix><mode>): Use
17903         vector_all_ones_operand instead of constm1_operand.
17905 2016-04-24  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
17907         * print-rtl.c (print_rtx_insn_vec): New function.
17908         * print-rtl.h: New prototype.
17909         * store-motion.c (struct st_expr): Make avail_stores a vector.
17910         (st_expr_entry): Adjust.
17911         (free_st_expr_entry): Likewise.
17912         (print_store_motion_mems): Likewise.
17913         (find_moveable_store): Likewise.
17914         (compute_store_table): Likewise.
17915         (delete_store): Likewise.
17916         (build_store_vectors): Likewise.
17918 2016-04-24  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
17920         * reorg.c (try_merge_delay_insns): Make merged_insns a vector.
17922 2016-04-24  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
17924         * vec.h (vec_safe_contains): New function.
17925         (vec::contains): Likewise.
17926         (vec::begin): Likewise.
17927         (vec::end): Likewise.
17929 2016-04-23  Jakub Jelinek  <jakub@redhat.com>
17931         PR sanitizer/70712
17932         * cfgexpand.c (expand_stack_vars): Fix typo.
17934 2016-04-22  Szabolcs Nagy  <szabolcs.nagy@arm.com>
17936         * system.h (list, map, set, vector): Include conditionally.
17937         * auto-profile.c (INCLUDE_MAP, INCLUDE_SET): Define.
17938         * graphite-isl-ast-to-gimple.c (INCLUDE_MAP): Define.
17939         * ipa-icf.c (INCLUDE_LIST): Define.
17940         * config/aarch64/cortex-a57-fma-steering.c (INCLUDE_LIST): Define.
17941         * config/sh/sh.c (INCLUDE_VECTOR): Define.
17942         * config/sh/sh_treg_combine.cc (INCLUDE_ALGORITHM): Define.
17943         (INCLUDE_LIST, INCLUDE_VECTOR): Define.
17944         * cp/logic.cc (INCLUDE_LIST): Define.
17945         * fortran/trans-common.c (INCLUDE_MAP): Define.
17947 2016-04-22  Szabolcs Nagy  <szabolcs.nagy@arm.com>
17949         * auto-profile.c: Remove <string.h> include.
17950         * ipa-icf-gimple.c: Remove <list> include.
17951         * diagnostic.c: Remove <new> include.
17952         * genmatch.c: Likewise.
17953         * pretty-print.c: Likewise.
17954         * toplev.c: Likewise
17955         * c/c-objc-common.c: Likewise.
17956         * cp/error.c: Likewise.
17957         * fortran/error.c: Likewise.
17959 2016-04-22  Richard Biener  <rguenther@suse.de>
17961         * lto-streamer-in.c (input_ssa_names): Do not allocate
17962         GIMPLE_NOP for all SSA names.
17963         * lto-streamer-out.c (output_ssa_names): Do not output
17964         SSA names that should have been released.
17966 2016-04-22  Richard Biener  <rguenther@suse.de>
17968         PR tree-optimization/70740
17969         * tree-ssa-phiprop.c (propagate_with_phi): Handle inserted
17970         VDEF.
17972 2016-04-21  H.J. Lu  <hongjiu.lu@intel.com>
17974         PR target/70750
17975         * config/i386/predicates.md (call_insn_operand): Replace
17976         sibcall_memory_operand with memory_operand.
17978 2016-04-21  Patrick Palka  <ppalka@gcc.gnu.org>
17980         * tree-vrp.c (register_edge_assert_for_2): Remove redundant
17981         has_single_use() tests.
17982         (register_edge_assert_for_1): Likewise.
17983         (find_assert_locations_1): Check the liveness bitmap instead of
17984         checking has_single_use().
17986 2016-04-21  Kirill Yukhin  <kirill.yukhin@intel.com>
17988         PR target/70728
17989         * config/i386/sse.md (define_insn "<shift_insn><mode>3<mask_name>"):
17990         Extract AVX-512BW constraint from AVX.
17992 2016-04-21  Richard Biener  <rguenther@suse.de>
17994         PR tree-optimization/70725
17995         * tree-if-conv.c (if_convertible_phi_p): Adjust guard
17996         for phi_convertible_by_degenerating_args.
17997         (predicate_all_scalar_phis): Handle single-argument PHIs.
17999 2016-04-21  Richard Biener  <rguenther@suse.de>
18001         PR middle-end/70747
18002         * fold-const.c (fold_comparison): Return properly typed
18003         constant boolean.
18005 2016-04-21  Bin Cheng  <bin.cheng@arm.com>
18007         PR tree-optimization/70715
18008         * tree-ssa-loop-niter.c (loop_exits_before_overflow): Check equality
18009         after expanding BASE using expand_simple_operations.
18011 2016-04-21  Marc Glisse  <marc.glisse@inria.fr>
18013         * match.pd (min(-x, -y), max(-x, -y), min(~x, ~y), max(~x, ~y)):
18014         New transformations.
18016 2016-04-21  Marc Glisse  <marc.glisse@inria.fr>
18018         * match.pd (min(int_max, x), max(int_min, x)): New transformations.
18020 2016-04-20  Jan Hubicka  <jh@suse.cz>
18022         * ipa-inline.c (can_inline_edge_p): Pass caller info to
18023         ultiimate_alias_target.
18024         (update_callee_keys): Likewise.
18025         (lookup_recursive_calls): Likewise.
18026         (speculation_useful_p): Likewise.
18028 2016-04-20  Jan Hubicka  <jh@suse.cz>
18030         PR ipa/70018
18031         * cgraph.c (cgraph_set_nothrow_flag_1): Rename to ...
18032         (set_nothrow_flag_1): ... this; handle interposition correctly;
18033         recurse on aliases and thunks.
18034         (cgraph_node::set_nothrow_flag): New.
18035         * ipa-pure-const.c (ignore_edge_for_nothrow): Ignore calls to
18036         functions compiled with non-call exceptions that binds to current
18037         def.
18038         (propagate_nothrow): Be safe WRT interposition.
18039         * cgraph.h (set_nothrow_flag): Update prototype.
18041 2016-04-18  Jan Hubicka  <jh@suse.cz>
18043         * tree-ssa-loop-unswitch.c (tree_unswitch_single_loop): Use also
18044         max_loop_iterations_int.
18045         (tree_unswitch_outer_loop): Likewise.
18047 2016-04-20  Bin Cheng  <bin.cheng@arm.com>
18049         PR tree-optimization/69489
18050         * tree-if-conv.c (phi_convertible_by_degenerating_args): New.
18051         (if_convertible_phi_p): Call phi_convertible_by_degenerating_args.
18052         Revise dump message.
18053         (if_convertible_bb_p): Remove check on edge count of basic block's
18054         predecessors.
18056 2016-04-20  Bin Cheng  <bin.cheng@arm.com>
18058         PR tree-optimization/56625
18059         PR tree-optimization/69489
18060         * tree-data-ref.h (DR_INNERMOST): New macro.
18061         * tree-if-conv.c (innermost_loop_behavior_hash): New class for
18062         hashing struct innermost_loop_behavior.
18063         (ref_DR_map): Remove.
18064         (innermost_DR_map): New map.
18065         (baseref_DR_map): Revise comment.
18066         (hash_memrefs_baserefs_and_store_DRs_read_written_info): Store DR
18067         to innermost_DR_map accroding to its innermost loop behavior.
18068         (ifcvt_memrefs_wont_trap): Get DR from innermost_DR_map according
18069         to its innermost loop behavior.
18070         (if_convertible_loop_p_1): Remove intialization for ref_DR_map.
18071         Add initialization for innermost_DR_map.  Record memory reference
18072         in DR_BASE_ADDRESS if the reference is compound one or it doesn't
18073         have innermost loop behavior.
18074         (if_convertible_loop_p): Remove release for ref_DR_map.  Release
18075         innermost_DR_map.
18077 2016-04-20  Uros Bizjak  <ubizjak@gmail.com>
18079         * config/i386/i386.md (*lea<mode>_general_1): Rename from
18080         *lea_general_1.  Use explicit SWI12 mode interator.
18081         (*lea<mode>_general_2): Rename from *lea_general_2.
18082         Use explicit SWI12 mode interator.
18083         (*lea<mode>_general_3): Rename from *lea_general_3.
18084         Use explicit SWI12 mode interator.
18085         (*lea<SWI12:mode>_general_4): Split from *lea_general_4.
18086         Use explicit SWI12 mode interator.
18087         (*lea<SWI48:mode>_general_4): Split from *lea_general_4.
18088         Use explicit SWI48 mode interator.
18090 2016-04-20  H.J. Lu  <hongjiu.lu@intel.com>
18092         * config/i386/i386.c (ix86_avx256_split_vector_move_misalign):
18093         Short-cut unaligned load and store cases.  Handle all integer
18094         vector modes.
18095         (ix86_expand_vector_move_misalign): Short-cut unaligned load
18096         and store cases.  Call ix86_avx256_split_vector_move_misalign
18097         directly without checking mode class.
18099 2016-04-20  Andrew Pinski  <apinski@cavium.com>
18100             Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
18102         PR target/64971
18103         * config/aarch64/aarch64.md (sibcall): Force call
18104         address to be DImode for ILP32.
18105         (sibcall_value): Likewise.
18107 2016-04-20  H.J. Lu  <hongjiu.lu@intel.com>
18109         * doc/invoke.texi: Replace -skip-rax-setup with -mskip-rax-setup.
18111 2016-04-20  Richard Biener  <rguenther@suse.de>
18113         * gimple-match.h (maybe_build_generic_op): Adjust prototype.
18114         * gimple-match-head.c (maybe_build_generic_op): Pass all ops
18115         by reference, clear op1 and op2 when GENERICizing BIT_FIELD_REF.
18116         (maybe_push_res_to_seq): Adjust.
18117         * gimple-fold.c (maybe_build_generic_op): Likewise.
18119 2016-04-20  Marek Polacek  <polacek@redhat.com>
18121         * tree-if-conv.c (is_false_predicate): For NULL_TREE return false
18122         rather than true.
18124 2016-04-20  Ilya Enkovich  <ilya.enkovich@intel.com>
18126         * config/i386/sse.md (vec_unpacks_lo_hi): Always
18127         use kmovw to support AVX512F target.
18129 2016-04-20  Bin Cheng  <bin.cheng@arm.com>
18131         * tree-scalar-evolution.c (interpret_rhs_expr): Handle BIT_AND_EXPR.
18133 2016-04-20  Marek Polacek  <polacek@redhat.com>
18135         PR tree-optimization/70725
18136         * tree-if-conv.c (is_false_predicate): New function.
18137         (predicate_mem_writes): Use it.
18139 2016-04-20  Richard Biener  <rguenther@suse.de>
18141         PR tree-optimization/70726
18142         * tree-vect-stmts.c (vectorizable_shift): Do not use scalar
18143         shift amounts from a pattern stmt operand.
18145 2016-04-20  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
18147         PR target/70674
18148         * config/s390/s390.c (s390_restore_gprs_from_fprs): Pick the new
18149         stack_restore_from_fpr pattern when restoring r15.
18150         (s390_optimize_prologue): Strip away the memory barrier in the
18151         parallel when trying to get rid of restore insns.
18152         * config/s390/s390.md ("stack_restore_from_fpr"): New insn
18153         definition for loading the stack pointer from an FPR.  Compared to
18154         the normal move insn this pattern includes a full memory barrier.
18156 2016-04-19  Jakub Jelinek  <jakub@redhat.com>
18158         PR middle-end/70680
18159         * gimplify.c (gimplify_omp_for): Call omp_notice_variable for
18160         implicitly linear or lastprivate iterator on the outer context.
18162 2016-04-19  H.J. Lu  <hongjiu.lu@intel.com>
18164         * config/i386/i386.c (ix86_legitimate_combined_insn): Remove
18165         alignment check.
18166         * config/i386/i386.md (ssememalign): Removed.
18167         * config/i386/sse.md: Remove ssememalign attribute from patterns.
18169 2016-04-19  H.J. Lu  <hongjiu.lu@intel.com>
18171         PR target/69201
18172         * config/i386/avx512bwintrin.h (_mm512_mask_loadu_epi16): Pass
18173         const short * to __builtin_ia32_loaddquhi512_mask.
18174         (_mm512_maskz_loadu_epi16): Likewise.
18175         (_mm512_mask_storeu_epi16): Pass short * to
18176         __builtin_ia32_storedquhi512_mask.
18177         (_mm512_mask_loadu_epi8): Pass const char * to
18178         __builtin_ia32_loaddquqi512_mask.
18179         (_mm512_maskz_loadu_epi8): Likewise.
18180         (_mm512_mask_storeu_epi8): Pass char * to
18181         __builtin_ia32_storedquqi512_mask.
18182         * config/i386/avx512fintrin.h (_mm512_loadu_pd): Pass
18183         const double * to __builtin_ia32_loadupd512_mask.
18184         (_mm512_mask_loadu_pd): Likewise.
18185         (_mm512_maskz_loadu_pd): Likewise.
18186         (_mm512_storeu_pd): Pass double * to
18187         __builtin_ia32_storeupd512_mask.
18188         (_mm512_mask_storeu_pd): Likewise.
18189         (_mm512_loadu_ps): Pass const float * to
18190         __builtin_ia32_loadups512_mask.
18191         (_mm512_mask_loadu_ps): Likewise.
18192         (_mm512_maskz_loadu_ps): Likewise.
18193         (_mm512_storeu_ps): Pass float * to
18194         __builtin_ia32_storeups512_mask.
18195         (_mm512_mask_storeu_ps): Likewise.
18196         (_mm512_mask_loadu_epi64): Pass const long long * to
18197         __builtin_ia32_loaddqudi512_mask.
18198         (_mm512_maskz_loadu_epi64): Likewise.
18199         (_mm512_mask_storeu_epi64): Pass long long *
18200         to __builtin_ia32_storedqudi512_mask.
18201         (_mm512_loadu_si512): Pass const int * to
18202         __builtin_ia32_loaddqusi512_mask.
18203         (_mm512_mask_loadu_epi32): Likewise.
18204         (_mm512_maskz_loadu_epi32): Likewise.
18205         (_mm512_storeu_si512): Pass int * to
18206         __builtin_ia32_storedqusi512_mask.
18207         (_mm512_mask_storeu_epi32): Likewise.
18208         * config/i386/avx512vlbwintrin.h (_mm256_mask_storeu_epi8): Pass
18209         char * to __builtin_ia32_storedquqi256_mask.
18210         (_mm_mask_storeu_epi8): Likewise.
18211         (_mm256_mask_loadu_epi16): Pass const short * to
18212         __builtin_ia32_loaddquhi256_mask.
18213         (_mm256_maskz_loadu_epi16): Likewise.
18214         (_mm_mask_loadu_epi16): Pass const short * to
18215         __builtin_ia32_loaddquhi128_mask.
18216         (_mm_maskz_loadu_epi16): Likewise.
18217         (_mm256_mask_loadu_epi8): Pass const char * to
18218         __builtin_ia32_loaddquqi256_mask.
18219         (_mm256_maskz_loadu_epi8): Likewise.
18220         (_mm_mask_loadu_epi8): Pass const char * to
18221         __builtin_ia32_loaddquqi128_mask.
18222         (_mm_maskz_loadu_epi8): Likewise.
18223         (_mm256_mask_storeu_epi16): Pass short * to.
18224         __builtin_ia32_storedquhi256_mask.
18225         (_mm_mask_storeu_epi16): Pass short * to.
18226         __builtin_ia32_storedquhi128_mask.
18227         * config/i386/avx512vlintrin.h (_mm256_mask_loadu_pd): Pass
18228         const double * to __builtin_ia32_loadupd256_mask.
18229         (_mm256_maskz_loadu_pd): Likewise.
18230         (_mm_mask_loadu_pd): Pass onst double * to
18231         __builtin_ia32_loadupd128_mask.
18232         (_mm_maskz_loadu_pd): Likewise.
18233         (_mm256_mask_storeu_pd): Pass double * to
18234         __builtin_ia32_storeupd256_mask.
18235         (_mm_mask_storeu_pd): Pass double * to
18236         __builtin_ia32_storeupd128_mask.
18237         (_mm256_mask_loadu_ps): Pass const float * to
18238         __builtin_ia32_loadups256_mask.
18239         (_mm256_maskz_loadu_ps): Likewise.
18240         (_mm_mask_loadu_ps): Pass const float * to
18241         __builtin_ia32_loadups128_mask.
18242         (_mm_maskz_loadu_ps): Likewise.
18243         (_mm256_mask_storeu_ps): Pass float * to
18244         __builtin_ia32_storeups256_mask.
18245         (_mm_mask_storeu_ps): ass float * to
18246         __builtin_ia32_storeups128_mask.
18247         (_mm256_mask_loadu_epi64): Pass const long long * to
18248         __builtin_ia32_loaddqudi256_mask.
18249         (_mm256_maskz_loadu_epi64): Likewise.
18250         (_mm_mask_loadu_epi64): Pass const long long * to
18251         __builtin_ia32_loaddqudi128_mask.
18252         (_mm_maskz_loadu_epi64): Likewise.
18253         (_mm256_mask_storeu_epi64): Pass long long * to
18254         __builtin_ia32_storedqudi256_mask.
18255         (_mm_mask_storeu_epi64): Pass long long * to
18256         __builtin_ia32_storedqudi128_mask.
18257         (_mm256_mask_loadu_epi32): Pass const int * to
18258         __builtin_ia32_loaddqusi256_mask.
18259         (_mm256_maskz_loadu_epi32): Likewise.
18260         (_mm_mask_loadu_epi32): Pass const int * to
18261         __builtin_ia32_loaddqusi128_mask.
18262         (_mm_maskz_loadu_epi32): Likewise.
18263         (_mm256_mask_storeu_epi32): Pass int * to
18264         __builtin_ia32_storedqusi256_mask.
18265         (_mm_mask_storeu_epi32): Pass int * to
18266         __builtin_ia32_storedqusi128_mask.
18267         * config/i386/i386-builtin-types.def (PCSHORT): New.
18268         (PINT64): Likewise.
18269         (V64QI_FTYPE_PCCHAR_V64QI_UDI): Likewise.
18270         (V32HI_FTYPE_PCSHORT_V32HI_USI): Likewise.
18271         (V32QI_FTYPE_PCCHAR_V32QI_USI): Likewise.
18272         (V16SF_FTYPE_PCFLOAT_V16SF_UHI): Likewise.
18273         (V8DF_FTYPE_PCDOUBLE_V8DF_UQI): Likewise.
18274         (V16SI_FTYPE_PCINT_V16SI_UHI): Likewise.
18275         (V16HI_FTYPE_PCSHORT_V16HI_UHI): Likewise.
18276         (V16QI_FTYPE_PCCHAR_V16QI_UHI): Likewise.
18277         (V8SF_FTYPE_PCFLOAT_V8SF_UQI): Likewise.
18278         (V8DI_FTYPE_PCINT64_V8DI_UQI): Likewise.
18279         (V8SI_FTYPE_PCINT_V8SI_UQI): Likewise.
18280         (V8HI_FTYPE_PCSHORT_V8HI_UQI): Likewise.
18281         (V4DF_FTYPE_PCDOUBLE_V4DF_UQI): Likewise.
18282         (V4SF_FTYPE_PCFLOAT_V4SF_UQI): Likewise.
18283         (V4DI_FTYPE_PCINT64_V4DI_UQI): Likewise.
18284         (V4SI_FTYPE_PCINT_V4SI_UQI): Likewise.
18285         (V2DF_FTYPE_PCDOUBLE_V2DF_UQI): Likewise.
18286         (V2DI_FTYPE_PCINT64_V2DI_UQI): Likewise.
18287         (VOID_FTYPE_PDOUBLE_V8DF_UQI): Likewise.
18288         (VOID_FTYPE_PDOUBLE_V4DF_UQI): Likewise.
18289         (VOID_FTYPE_PDOUBLE_V2DF_UQI): Likewise.
18290         (VOID_FTYPE_PFLOAT_V16SF_UHI): Likewise.
18291         (VOID_FTYPE_PFLOAT_V8SF_UQI): Likewise.
18292         (VOID_FTYPE_PFLOAT_V4SF_UQI): Likewise.
18293         (VOID_FTYPE_PINT64_V8DI_UQI): Likewise.
18294         (VOID_FTYPE_PINT64_V4DI_UQI): Likewise.
18295         (VOID_FTYPE_PINT64_V2DI_UQI): Likewise.
18296         (VOID_FTYPE_PINT_V16SI_UHI): Likewise.
18297         (VOID_FTYPE_PINT_V8SI_UHI): Likewise.
18298         (VOID_FTYPE_PINT_V4SI_UHI): Likewise.
18299         (VOID_FTYPE_PSHORT_V32HI_USI): Likewise.
18300         (VOID_FTYPE_PSHORT_V16HI_UHI): Likewise.
18301         (VOID_FTYPE_PSHORT_V8HI_UQI): Likewise.
18302         (VOID_FTYPE_PCHAR_V64QI_UDI): Likewise.
18303         (VOID_FTYPE_PCHAR_V32QI_USI): Likewise.
18304         (VOID_FTYPE_PCHAR_V16QI_UHI): Likewise.
18305         (V64QI_FTYPE_PCV64QI_V64QI_UDI): Removed.
18306         (V32HI_FTYPE_PCV32HI_V32HI_USI): Likewise.
18307         (V32QI_FTYPE_PCV32QI_V32QI_USI): Likewise.
18308         (V16HI_FTYPE_PCV16HI_V16HI_UHI): Likewise.
18309         (V16QI_FTYPE_PCV16QI_V16QI_UHI): Likewise.
18310         (V8HI_FTYPE_PCV8HI_V8HI_UQI): Likewise.
18311         (VOID_FTYPE_PV32HI_V32HI_USI): Likewise.
18312         (VOID_FTYPE_PV16HI_V16HI_UHI): Likewise.
18313         (VOID_FTYPE_PV8HI_V8HI_UQI): Likewise.
18314         (VOID_FTYPE_PV64QI_V64QI_UDI): Likewise.
18315         (VOID_FTYPE_PV32QI_V32QI_USI): Likewise.
18316         (VOID_FTYPE_PV16QI_V16QI_UHI): Likewise.
18317         * config/i386/i386.c (ix86_emit_save_reg_using_mov): Don't
18318         use UNSPEC_STOREU.
18319         (ix86_emit_restore_sse_regs_using_mov): Don't use UNSPEC_LOADU.
18320         (ix86_avx256_split_vector_move_misalign): Don't use unaligned
18321         load nor store.
18322         (ix86_expand_vector_move_misalign): Likewise.
18323         (bdesc_special_args): Use CODE_FOR_movvNXY_internal and pointer
18324         to scalar function prototype for unaligned load/store builtins.
18325         (ix86_expand_special_args_builtin): Updated.
18326         * config/i386/sse.md (UNSPEC_LOADU): Removed.
18327         (UNSPEC_STOREU): Likewise.
18328         (VI_ULOADSTORE_BW_AVX512VL): Likewise.
18329         (VI_ULOADSTORE_F_AVX512VL): Likewise.
18330         (ssescalarsize): Handle V4TI, V2TI and V1TI.
18331         (<sse>_loadu<ssemodesuffix><avxsizesuffix><mask_name>): Likewise.
18332         (*<sse>_loadu<ssemodesuffix><avxsizesuffix><mask_name>): Likewise.
18333         (<sse>_storeu<ssemodesuffix><avxsizesuffix>): Likewise.
18334         (<avx512>_storeu<ssemodesuffix><avxsizesuffix>_mask): Likewise.
18335         (<sse2_avx_avx512f>_loaddqu<mode><mask_name>): Likewise.
18336         (*<sse2_avx_avx512f>_loaddqu<mode><mask_name>"): Likewise.
18337         (sse2_avx_avx512f>_storedqu<mode>): Likewise.
18338         (<avx512>_storedqu<mode>_mask): Likewise.
18339         (*sse4_2_pcmpestr_unaligned): Likewise.
18340         (*sse4_2_pcmpistr_unaligned): Likewise.
18341         (*mov<mode>_internal): Renamed to ...
18342         (mov<mode>_internal): This.  Remove check of AVX and IAMCU on
18343         misaligned operand.  Replace vmovdqu64 with vmovdqu<ssescalarsize>.
18344         (movsd/movhpd to movupd peephole): Don't use UNSPEC_LOADU.
18345         (movlpd/movhpd to movupd peephole): Don't use UNSPEC_STOREU.
18347 2016-04-19  Richard Biener  <rguenther@suse.de>
18349         PR tree-optimization/70171
18350         * tree-ssa-phiprop.c: Include stor-layout.h.
18351         (phiprop_insert_phi): Handle the aggregate copy case.
18352         (propagate_with_phi): Likewise.
18354 2016-04-19  Uros Bizjak  <ubizjak@gmail.com>
18356         * config/i386/i386.c (ix86_decompose_address): Use lowpart_subreg
18357         instead of simplify_gen_subreg (... , 0).
18358         (ix86_delegitimize_address): Ditto.
18359         (ix86_split_divmod): Ditto.
18360         (ix86_split_copysign_const): Ditto.
18361         (ix86_split_copysign_var): Ditto.
18362         (ix86_expand_args_builtin): Ditto.
18363         (ix86_expand_round_builtin): Ditto.
18364         (ix86_expand_special_args_builtin): Ditto.
18365         * config/i386/i386.md (TARGET_USE_VECTOR_FP_CONVERTS splitters): Ditto.
18366         (TARGET_SSE_PARTIAL_REG_DEPENDENCY splitters and peephole2s): Ditto.
18367         (udivmodqi4): Ditto.
18368         (absneg splitters): Ditto.
18369         (*jcc_bt<mode>_1): Ditto.
18371 2016-04-19  Richard Biener  <rguenther@suse.de>
18373         PR tree-optimization/70724
18374         * tree-ssa-sccvn.c (scc_vn_restore_ssa_info): Split SSA info
18375         restoring out from ...
18376         (free_scc_vn): ... here.
18377         * tree-ssa-sccvn.h (scc_vn_restore_ssa_info): Declare.
18378         * tres-ssa-pre.c (pass_pre::execute): Restore SSA info before
18379         tail merging.
18380         (pass_fre::execute): Restore SSA info.
18382 2016-04-19  Richard Biener  <rguenther@suse.de>
18384         * gimple-walk.h (struct walk_stmt_info): Add stmt member.
18385         * gimple-walk.c (walk_gimple_op): Initialize it.
18386         (walk_gimple_asm): Set wi->is_lhs before each callback invocation.
18387         * tree-inline.c (remap_gimple_op_r): Set SSA_NAME_DEF_STMT when
18388         remapping SSA names of defs.
18389         (copy_bb): Remove walk over all SSA defs and SSA_NAME_DEF_STMT
18390         adjustment.
18392 2016-04-18  Vladimir Makarov  <vmakarov@redhat.com>
18394         PR middle-end/70689
18395         * lra-constraints.c (equiv_substition_p): New.
18396         (process_alt_operands): Use it.
18397         (swap_operands): Swap it.
18398         (curr_insn_transform): Update it.
18400 2016-04-18  Michael Matz  <matz@suse.de>
18402         * tree.h (TYPE_ALIGN, DECL_ALIGN): Return shifted amount.
18403         (SET_TYPE_ALIGN, SET_DECL_ALIGN): New.
18404         * tree-core.h (tree_type_common.align): Use bit-field.
18405         (tree_type_common.spare): New.
18406         (tree_decl_common.off_align): Make smaller.
18407         (tree_decl_common.align): Use bit-field.
18409         * expr.c (expand_expr_addr_expr_1): Use SET_TYPE_ALIGN.
18410         * omp-low.c (install_var_field): Use SET_DECL_ALIGN.
18411         (scan_sharing_clauses): Ditto.
18412         (finish_taskreg_scan): Use SET_DECL_ALIGN and SET_TYPE_ALIGN.
18413         (omp_finish_file): Ditto.
18414         * stor-layout.c (do_type_align): Use SET_DECL_ALIGN.
18415         (layout_decl): Ditto.
18416         (relayout_decl): Ditto.
18417         (finalize_record_size): Use SET_TYPE_ALIGN.
18418         (finalize_type_size): Ditto.
18419         (finish_builtin_struct): Ditto.
18420         (layout_type): Ditto.
18421         (initialize_sizetypes): Ditto.
18422         * targhooks.c (std_gimplify_va_arg_expr): Use SET_TYPE_ALIGN.
18423         * tree-nested.c (insert_field_into_struct): Use SET_TYPE_ALIGN.
18424         (lookup_field_for_decl): Use SET_DECL_ALIGN.
18425         (get_chain_field): Ditto.
18426         (get_trampoline_type): Ditto.
18427         (get_nl_goto_field): Ditto.
18428         * tree-streamer-in.c (unpack_ts_decl_common_value_fields): Use
18429         SET_DECL_ALIGN.
18430         (unpack_ts_type_common_value_fields): Use SET_TYPE_ALIGN.
18431         * gimple-expr.c (copy_var_decl): Use SET_DECL_ALIGN.
18432         * tree.c (make_node_stat): Use SET_DECL_ALIGN and SET_TYPE_ALIGN.
18433         (build_qualified_type): Use SET_TYPE_ALIGN.
18434         (build_aligned_type, build_range_type_1): Ditto.
18435         (build_atomic_base): Ditto.
18436         (build_common_tree_nodes): Ditto.
18437         * cfgexpand.c (align_local_variable): Use SET_DECL_ALIGN.
18438         (expand_one_stack_var_at): Ditto.
18439         * coverage.c (build_var): Use SET_DECL_ALIGN.
18440         * except.c (init_eh): Ditto.
18441         * function.c (assign_parm_setup_block): Ditto.
18442         * symtab.c (increase_alignment_1): Ditto.
18443         * tree-ssa-ccp.c (fold_builtin_alloca_with_align): Ditto.
18444         * tree-vect-stmts.c (ensure_base_align): Ditto.
18445         * varasm.c (align_variable): Ditto.
18446         (assemble_variable): Ditto.
18447         (build_constant_desc): Ditto.
18448         (output_constant_def_contents): Ditto.
18450         * config/arm/arm.c (arm_relayout_function): Use SET_DECL_ALIGN.
18451         * config/avr/avr.c (avr_adjust_type_node): Use SET_TYPE_ALIGN.
18452         * config/mips/mips.c (mips_std_gimplify_va_arg_expr): Ditto.
18453         * config/msp430/msp430.c (msp430_gimplify_va_arg_expr): Ditto.
18454         * config/spu/spu.c (spu_build_builtin_va_list): Use SET_DECL_ALIGN.
18456 2016-04-18  H.J. Lu  <hongjiu.lu@intel.com>
18458         PR target/70708
18459         * config/i386/sse.md (sse2_loadlpd): Accept load from "xm" and
18460         replace %vmovsd with "%vmovq".
18461         (vec_concatv2df): Likewise.
18463 2016-04-18  Uros Bizjak  <ubizjak@gmail.com>
18465         * config/i386/mmx.md (*vec_extractv2sf_0): Use gen_lowpart.
18466         (*vec_extractv2si_0): Ditto.
18467         * config/i386/sse.md (*vec_extractv4sf_0): Ditto.
18468         (zero_extended_scalar_load_operand splitters): Ditto.
18469         (vec_extract splitters): Ditto.
18470         (*vec_extractv4si_0_zext): Ditto.
18471         (avx_<castmode><avxsizesuffix>_<castmode>): Use gen_lowpart
18472         and lowpart_subreg.
18473         (avx512f_<castmode><avxsizesuffix>_<castmode>): Ditto.
18474         (avx512f_<castmode><avxsizesuffix>_256<castmode>): Ditto.
18475         (*sse4_1_extractps): Use lowpart_subreg.
18476         * config/i386/i386.md (x87 floatsplitter): Use gen_lowpart.
18478 2016-04-18  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
18480         * doc/install.texi (Specific, i?86-*-solaris2.10): Update gas and
18481         gld requirements.
18482         (Specific, *-*-solaris2*): Update Solaris 11 bundled gcc versions.
18483         Mention Solaris 11 packaging changes.
18484         Update gas and gld requirements.
18485         Remove reference to pre-Solaris 10 bug.
18486         (Specific, sparc-sun-solaris2*): Remove reference to pre-Solaris 10
18487         systems and bugs.
18488         (Specific, sparc64-*-solaris2*): Remove reference to bootstrap
18489         with cc.
18491 2016-04-17  Jan Hubicka  <jh@suse.cz>
18493         * tree-ssa-loop-ivopts.c (avg_loop_niter): Use also
18494         max_loop_iterations_int.
18496 2016-04-18  Richard Biener  <rguenther@suse.de>
18498         PR tree-optimization/43434
18499         * tree-ssa-structalias.c (struct vls_data): New.
18500         (visit_loadstore): Handle all pointer-based accesses.
18501         (compute_dependence_clique): Compute a bitmap of restrict tags
18502         assigned bases and pass it to visit_loadstore.
18504 2016-04-18  Matthew Wahab  <matthew.wahab@arm.com>
18506         PR target/70711
18507         * config/arm/bpabi.h (BE8_LINK_SPEC): Add entries for armv8+crc,
18508         armv8.1-a and armv8.1-a+crc.
18510 2016-04-18  Richard Biener  <rguenther@suse.de>
18512         PR tree-optimization/70701
18513         * tree-ssa-sccvn.c (vn_reference_lookup_3): Resolve fully constant
18514         references after translating through a memcpy.
18516 2016-04-18  Richard Biener  <rguenther@suse.de>
18518         * tree-ssa-pre.c (postorder, postorder_num): Make locals ...
18519         (compute_antic): ... here.  For partial antic use regular
18520         postorder and scrap iteration.
18521         (compute_partial_antic_aux): Remove unused return value.
18522         (init_pre): Do not allocate postorder.
18523         (fini_pre): Do not free postorder.
18525 2016-04-18  Richard Biener  <rguenther@suse.de>
18527         PR middle-end/37870
18528         * expmed.c (extract_bit_field_1): Remove broken case
18529         using a wider MODE_INT mode.
18531 2016-04-18  Segher Boessenkool  <segher@kernel.crashing.org>
18533         * has-brig.c (lendian16): Don't try to use __builtin_bswap16
18534         unless compiling with at least GCC-4.8.
18536 2016-04-17  Jan Hubicka  <jh@suse.cz>
18538         PR bootstrap/70706
18539         * graphite.c (graphite_finalize): Update call to
18540         tree_estimate_probability.
18541         * predict.h (tree_estimate_probability): Update prototype.
18543 2016-04-17  Jan Hubicka  <jh@suse.cz>
18545         * predict.c (combine_predictions_for_bb): Add dry_run parmaeter.
18546         (tree_estimate_probability): Likewise.
18547         (pass_profile::execute): Update.
18548         (report_predictor_hitrates): New function.
18549         * profile.c (compute_branch_probabilities): Use it.
18550         * predict.h (report_predictor_hitrates): Declare.
18552 2016-04-17  Jan Hubicka  <jh@suse.cz>
18554         PR ipa/70018
18555         * cgraph.h (cgraph_node::set_const_flag,
18556         cgraph_node::set_pure_flag): Update prototype to return bool;
18557         update comment.
18558         * cgraph.c (cgraph_node::call_for_symbol_thunks_and_aliases): Thunks
18559         of interposable symbol are interposable, too.
18560         (cgraph_set_const_flag_1): Rename to ...
18561         (set_const_flag_1): ... this one; change to self recursive function
18562         instead of call_for_symbol_thunks_and_aliases. Handle correctly
18563         clearnig the flag in all variants and also virtual thunks of const
18564         functions are pure; track if any change was done.
18565         (cgraph_node::set_const_flag): Update.
18566         (struct set_pure_flag_info): New struct.
18567         (cgraph_set_pure_flag_1): Rename to ...
18568         (set_pure_flag_1): ... this one; take set_pure_flag_info parameter
18569         rather than pointer encoded flags; track if any changes was done;
18570         handle correctly clearning flag and setting flag of aliases already
18571         declared const.
18572         (cgraph_node::set_pure_flag): Update.
18573         (cgraph_node::set_nothrow_flag): Handle correctly clearning the flag.
18575 2016-04-17  Tom de Vries  <tom@codesourcery.com>
18577         PR other/70433
18578         * pretty-print.c (pp_write_text_as_dot_label_to_stream): Escape
18579         backslash in label.
18581 2016-04-17  Tom de Vries  <tom@codesourcery.com>
18583         * pretty-print.c (pp_write_text_as_dot_label_to_stream): Classify chars
18584         '{}<> ' as escape-for-record.
18586 2016-04-17  Tom de Vries  <tom@codesourcery.com>
18588         * pretty-print.c (pp_write_text_as_dot_label_to_stream): Simplify loop
18589         structure.
18591 2016-04-17  Tom de Vries  <tom@codesourcery.com>
18593         PR other/70185
18594         * tree-pass.h (class opt_pass): Remove graph_dump_initialized member.
18595         * dumpfile.h (struct dump_file_info): Add graph_dump_initialized field.
18596         * dumpfile.c (dump_files): Initialize graph_dump_initialized field.
18597         * passes.c (finish_optimization_passes): Only call
18598         finish_graph_dump_file if dfi->graph_dump_initialized.
18599         (execute_function_dump, pass_init_dump_file): Use
18600         dfi->graph_dump_initialized instead of pass->graph_dump_initialized.
18602 2016-04-17  Tom de Vries  <tom@codesourcery.com>
18604         PR tree-optimization/70256
18605         * tree-ssa-structalias.c (dump_varinfo, debug_varinfo, dump_varmap)
18606         (debug_varmap): New function.
18608 2016-04-17  Tom de Vries  <tom@codesourcery.com>
18610         PR other/70183
18611         * passes.c (pass_manager::register_pass): Propagate pflags.
18613 2016-04-17  Tom de Vries  <tom@codesourcery.com>
18615         PR other/68875
18616         * pass_manager.h (TERMINATE_PASS_LIST): Add pass argument.
18617         * passes.c (pass_manager::pass_manager): Declare and init p_start in
18618         INSERT_PASSES_AFTER.  Add pass parameter to TERMINATE_PASS_LIST, and
18619         check if it's equal to p_start.
18620         * passes.def: Add arguments to TERMINATE_PASS_LISTs.
18622 2016-04-15  Jan Hubicka  <jh@suse.cz>
18624         PR ipa/70018
18625         * cgraph.c (cgraph_set_const_flag_1): Only set as pure if
18626         function does not bind to current def.
18627         * ipa-pure-const.c (worse_state): Add FROM and TO parameters;
18628         handle conservatively calls to functions that does not need to bind
18629         to current def.
18630         (check_call): Update call of worse_state.
18631         (ignore_edge_for_nothrow): Update.
18632         (ignore_edge_for_pure_const): Likewise.
18633         (propagate_pure_const): Update calls to worse_state.
18634         (skip_function_for_local_pure_const): Reformat comments.
18636 2016-04-15  Jan Hubicka  <jh@suse.cz>
18638         PR ipa/70018
18639         * cgraph.c (cgraph_node::get_availability): Add REF parameter.
18640         (cgraph_node::function_symbol): Likewise.
18641         (cgraph_node::function_or_virtual_thunk_symbol): Likewise.
18642         * cgraph.h (symtab_node::get_availabbility): Add REF parameter.
18643         (symtab_node::ultimate_alias_target): Add REF parameter.
18644         (symtab_node::binds_to_current_def_p): Declare.
18645         (symtab_node;:ultimate_alias_target_1): Add REF parameter.
18646         (cgraph_node::function_symbol): Likewise.
18647         (cgraph_node::function_or_virtual_thunk_symbol): Likewise.
18648         (cgraph_node::get_availability): Likewise.
18649         (cgraph_edge::binds_to_current_def_p): New inline function.
18650         (varpool_node::get_availability): Add REF parameter.
18651         (varpool_node::ultimate_alias_target): Likewise.
18652         * symtab.c (symtab_node::ultimate_alias_target_1): Likewise.
18653         (symtab_node::binds_to_current_def_p): Likewise.
18654         * varpool.c (varpool_node::get_availability): Likewise.
18656 2016-04-15  Kirill Yukhin  <kirill.yukhin@intel.com>
18658         PR target/70662
18659         * config/i386/sse.md(define_insn "<avx512>_vec_dup<mode><mask_name>"):
18660         Fix mode size check.
18662 2016-04-15  Jakub Jelinek  <jakub@redhat.com>
18664         * BASE-VER: Set to 7.0.0.
18666 2016-04-15  Alexander Monakov  <amonakov@ispras.ru>
18668         * config/nvptx/nvptx.opt (moptimize): Add a period at end of help text.
18670 2016-04-15  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
18672         * doc/invoke.texi (ARM Options): Add note on deprecation of pre-ARMv4T
18673         architecture revisions.
18675 2016-04-15  Bernd Schmidt  <bschmidt@redhat.com>
18677         * config/i386/i386-protos.h (ix86_using_red_zone): Declare.
18678         * config/i386/i386.c (ix86_using_red_zone): No longer static.
18679         * config/i386/i386.md (stack decrement to push peepholes): Guard
18680         with !x86_using_red_zone ().
18682 2016-04-15  Jakub Jelinek  <jakub@redhat.com>
18684         PR c++/70675
18685         * tree-pretty-print.c (do_niy): Add FLAGS argument, pass it down
18686         to dump_generic_node.
18687         (NIY): Pass also flags to do_niy.
18689 2016-04-15  Thomas Schwinge  <thomas@codesourcery.com>
18691         * omp-low.c (simd_clone_struct_alloc, simd_clone_struct_copy)
18692         (simd_clone_vector_of_formal_parm_types)
18693         (simd_clone_clauses_extract, simd_clone_compute_base_data_type)
18694         (simd_clone_mangle, simd_clone_create)
18695         (simd_clone_adjust_return_type, create_tmp_simd_array)
18696         (simd_clone_adjust_argument_types, simd_clone_init_simd_arrays)
18697         (struct modify_stmt_info, ipa_simd_modify_stmt_ops)
18698         (ipa_simd_modify_function_body, simd_clone_linear_addend)
18699         (simd_clone_adjust, expand_simd_clones, ipa_omp_simd_clone)
18700         (pass_data_omp_simd_clone, class pass_omp_simd_clone)
18701         (pass_omp_simd_clone::gate, make_pass_omp_simd_clone): Move into...
18702         * omp-simd-clone.c: ... this new file.
18703         (simd_clone_vector_of_formal_parm_types): Make it static.
18704         * Makefile.in (OBJS): Add omp-simd-clone.o.
18706 2016-04-15  Kirill Yukhin  <kirill.yukhin@intel.com>
18708         PR target/70662
18709         * config/i386/sse.md: Use proper memory operand modifiers.
18712 2016-04-15  Richard Biener  <rguenther@suse.de>
18713         Alan Modra  <amodra@gmail.com>
18715         PR tree-optimization/70130
18716         * tree-vect-data-refs.c (vect_supportable_dr_alignment): Detect
18717         when alignment stays not the same and no not use the realign
18718         scheme then.
18720 2016-04-14  Michael Meissner  <meissner@linux.vnet.ibm.com>
18722         PR target/70669
18723         * config/rs6000/rs6000.c (rs6000_init_hard_regno_mode_ok): Add
18724         direct move handlers for KFmode. Change TFmode handlers test from
18725         FLOAT128_IEEE_P to FLOAT128_VECTOR_P.
18727 2016-04-14  Jakub Jelinek  <jakub@redhat.com>
18729         PR c++/70594
18730         * ipa-utils.h (polymorphic_ctor_dtor_p): New prototype.
18731         * ipa-polymorphic-call.c (polymorphic_ctor_dtor_p): New function.
18732         (inlined_polymorphic_ctor_dtor_block_p): Use it.
18733         * tree-ssa-live.c (remove_unused_scope_block_p): When
18734         in_ctor_dtor_block, avoid discarding not just BLOCKs with
18735         BLOCK_ABSTRACT_ORIGIN being FUNCTION_DECL, but even when
18736         block_ultimate_origin is FUNCTION_DECL.
18737         (remove_unused_locals): If current_function_decl is
18738         polymorphic_ctor_dtor_p, pass initial true to
18739         remove_unused_scope_block_p' is_ctor_dtor_block.
18741 2016-04-14  Martin Sebor  <msebor@redhat.com>
18743         PR c++/69517
18744         PR c++/70019
18745         PR c++/70588
18746         * doc/extend.texi (Variable Length): Revert.
18748 2016-04-14  Marek Polacek  <polacek@redhat.com>
18749             Jan Hubicka  <hubicka@ucw.cz>
18751         PR c++/70029
18752         * tree.c (verify_type): Disable the canonical type of main variant
18753         check.
18755 2016-04-14  Jason Merrill  <jason@redhat.com>
18757         * cfgexpand.c, expr.c: Revert previous change.
18759 2016-04-14  Cesar Philippidis  <cesar@codesourcery.com>
18761         PR middle-end/70643
18762         * omp-low.c (lower_oacc_reductions): Check for TREE_CONSTANT
18763         when building a mem ref for the incoming reduction variable.
18765 2016-04-14  Richard Biener  <rguenther@suse.de>
18767         PR tree-optimization/70614
18768         * tree-scalar-evolution.c (analyze_evolution_in_loop): Terminate
18769         loop if the evolution dropped to chrec_dont_know.
18770         (interpret_condition_phi): Likewise.
18772 2016-04-14  Richard Biener  <rguenther@suse.de>
18774         PR tree-optimization/70623
18775         * tree-ssa-pre.c (changed_blocks): Make global ...
18776         (compute_antic): ... local here.  Move and fix worklist
18777         handling here.  Do not clear EDGE_DFS_BACK or call mark_dfs_back_edges.
18778         (compute_antic_aux): Add dumping for MAX assumed succs.  Remove
18779         worklist handling, dump when ANTIC_IN changed.
18780         (compute_partial_antic_aux): Remove worklist handling.
18781         (init_pre): Do not compute post dominators.  Add a comment about
18782         the CFG order chosen.
18783         (fini_pre): Do not free post dominators.
18785 2016-04-13  Martin Sebor  <msebor@redhat.com>
18787         PR c++/69517
18788         PR c++/70019
18789         PR c++/70588
18790         * doc/extend.texi (Variable Length): Document C++ specifics.
18792 2016-04-13  Jakub Jelinek  <jakub@redhat.com>
18794         PR c++/70641
18795         * ipa-pure-const.c (pass_nothrow::execute): Call maybe_clean_eh_stmt
18796         on all recursive call stmts.  Return TODO_cleanup_cfg if any dead
18797         eh edges have been purged.
18799         PR c++/70594
18800         * tree-sra.c (create_access_replacement,
18801         get_replaced_param_substitute): Set DECL_NAMELESS on repl if it
18802         gets fancy name.
18803         * tree-pretty-print.c (dump_fancy_name): New function.
18804         (dump_decl_name, dump_generic_node): Use it.
18806 2016-04-13  Jason Merrill  <jason@redhat.com>
18808         * cfgexpand.c (pass_expand::execute): Handle attribute "abi warning".
18809         * expr.c (expand_expr_real_1): Likewise.
18811 2016-04-13  Ilya Enkovich  <ilya.enkovich@intel.com>
18813         * config/i386/i386.md (kunpckhi): Swap operands.
18814         (kunpcksi): Likewise.
18815         (kunpckdi): Likewise.
18816         * config/i386/sse.md (vec_pack_trunc_qi): Likewise.
18817         (vec_pack_trunc_<mode>): Likewise.
18819 2016-04-13  Jakub Jelinek  <jakub@redhat.com>
18821         PR debug/70628
18822         * explow.c (convert_memory_address_addr_space_1): Formatting fix.
18824         PR middle-end/70633
18825         * gimplify.c (gimplify_init_constructor): Clear TREE_STATIC if
18826         gimplification turns some element into non-constant.
18828         PR debug/70628
18829         * rtl.h (convert_memory_address_addr_space_1): New prototype.
18830         * explow.c (convert_memory_address_addr_space_1): No longer static,
18831         add NO_EMIT argument and don't call convert_modes if true, pass
18832         it down recursively, remove break after return.
18833         (convert_memory_address_addr_space): Adjust caller.
18834         * simplify-rtx.c (simplify_unary_operation_1): Call
18835         convert_memory_address_addr_space_1 instead of convert_memory_address,
18836         if it returns NULL, don't simplify.
18838 2016-04-12  Eric Botcazou  <ebotcazou@adacore.com>
18840         PR target/70630
18841         * config/sparc/sparc.c (sparc_compute_frame_size): Add parentheses.
18843 2016-04-12  Jakub Jelinek  <jakub@redhat.com>
18845         * config/i386/i386.c (ix86_simd_clone_compute_vecsize_and_simdlen):
18846         Bump the upper SIMDLEN limits, so that if the return type or
18847         characteristic type if the return type is void can be passed in
18848         all available SSE2/AVX/AVX2/AVX512-F registers, the SIMDLEN is
18849         allowed.
18851 2016-04-12  Michael Meissner  <meissner@linux.vnet.ibm.com>
18853         PR target/70640
18854         * config/rs6000/rs6000.md (ieee_128bit_vsx_neg<mode>2_internal):
18855         Do not use "=" constraint on an input constraint.
18856         (ieee_128bit_vsx_abs<mode>2_internal): Likewise.
18857         (ieee_128bit_vsx_nabs<mode>2_internal): Likewise.
18858         (ieee_128bit_vsx_nabs<mode>2): Correct splitter so that it
18859         generates (neg (abs ...)) instead of (abs ...).
18861 2016-04-12  Jakub Jelinek  <jakub@redhat.com>
18863         PR rtl-optimization/70596
18864         * lra-spills.c (spill_pseudos): Don't delete debug insns, instead
18865         just invalidate LRA data and reset them.  Adjust dump wording.
18867 2016-04-12  Martin Liska  <mliska@suse.cz>
18869         Revert
18870         2016-03-30  Jan Hubicka  <hubicka@ucw.cz>
18872         * tree-ssa-loop-niter.c (idx_infer_loop_bounds): We can't get realistic
18873         estimates here.
18874         * tree-ssa-loop-unswitch.c (tree_unswitch_single_loop): Use also
18875         max_loop_iterations_int.
18876         (tree_unswitch_outer_loop): Likewise.
18877         * tree-ssa-loop-ivopts.c (avg_loop_niter): Likewise.
18878         * tree-vect-loop.c (vect_analyze_loop_2): Likewise.
18880 2016-04-12  Tom de Vries  <tom@codesourcery.com>
18882         PR tree-optimization/68756
18883         * graphite-isl-ast-to-gimple.c (copy_cond_phi_args): Use new_expr
18884         instead of new_name.
18886 2016-04-12  Jakub Jelinek  <jakub@redhat.com>
18888         PR tree-optimization/70602
18889         * tree-sra.c (generate_subtree_copies): Don't write anything into
18890         constant pool decls.
18892         * omp-low.c (lower_omp_target): Use GOMP_MAP_FIRSTPRIVATE_INT
18893         regardless whether there are depend clauses or not.
18895 2016-04-11  Michael Meissner  <meissner@linux.vnet.ibm.com>
18897         PR target/70381
18898         * config/rs6000/rs6000.c (rs6000_opt_masks): Disable using the
18899         target attribute and pragma from changing the -mfloat128
18900         and -mfloat128-hardware options.
18902         * doc/extend.texi (Additional Floating Types): Document PowerPC
18903         __float128 restrictions.
18905 2016-04-11  James Greenhalgh  <james.greenhalgh@arm.com>
18907         PR target/70133
18908         * config/aarch64/driver-aarch64.c
18909         (aarch64_get_extension_string_for_isa_flags): New.
18910         (arch_extension): Rename to...
18911         (aarch64_arch_extension): ...This.
18912         (ext_to_feat_string): Rename to...
18913         (aarch64_extensions): ...This.
18914         (aarch64_core_data): Keep track of architecture extension flags.
18915         (cpu_data): Rename to...
18916         (aarch64_cpu_data): ...This.
18917         (aarch64_arch_driver_info): Keep track of architecture extension
18918         flags.
18919         (get_arch_name_from_id): Rename to...
18920         (get_arch_from_id): ...This, change return type.
18921         (host_detect_local_cpu): Update and reformat for renames, handle
18922         extensions through common infrastructure.
18924 2016-04-11  James Greenhalgh  <james.greenhalgh@arm.com>
18926         PR target/70133
18927         * config/aarch64/aarch64-common.c (aarch64_option_extension): Keep
18928         track of a canonical flag name.
18929         (all_extensions): Likewise.
18930         (arch_to_arch_name): Also track extension flags enabled by the arch.
18931         (all_architectures): Likewise.
18932         (aarch64_parse_extension): Move to here.
18933         (aarch64_get_extension_string_for_isa_flags): Take a new argument,
18934         rework.
18935         (aarch64_rewrite_selected_cpu): Update for above change.
18936         * config/aarch64/aarch64-option-extensions.def: Rework the way flags
18937         are handled, such that the single explicit value enabled by an
18938         extension is kept seperate from the implicit values it also enables.
18939         * config/aarch64/aarch64-protos.h (aarch64_parse_opt_result): Move
18940         to here.
18941         (aarch64_parse_extension): New.
18942         * config/aarch64/aarch64.c (aarch64_parse_opt_result): Move from
18943         here to config/aarch64/aarch64-protos.h.
18944         (aarch64_parse_extension): Move from here to
18945         common/config/aarch64/aarch64-common.c.
18946         (aarch64_option_print): Update.
18947         (aarch64_declare_function_name): Likewise.
18948         (aarch64_start_file): Likewise.
18949         * config/aarch64/driver-aarch64.c (arch_extension): Keep track of
18950         the canonical flag for extensions.
18951         * config.gcc (aarch64*-*-*): Extend regex for capturing extension
18952         flags.
18954 2016-04-11  James Greenhalgh  <james.greenhalgh@arm.com>
18956         * config/aarch64/aarch64.h (AARCH64_FL_FOR_ARCH8_1): Also add
18957         AARCH64_FL_CRC.
18959 2016-04-09  Tom de Vries  <tom@codesourcery.com>
18961         PR tree-optimization/68953
18962         * graphite-sese-to-poly.c (pdr_add_memory_accesses): Order accesses from
18963         first to last subscript.
18965 2016-04-09  Jakub Jelinek  <jakub@redhat.com>
18967         PR tree-optimization/70586
18968         * tree-ssa-ifcombine.c (bb_no_side_effects_p): Return false
18969         for any calls.
18971 2016-04-08  Cesar Philippidis  <cesar@codesourcery.com>
18973         PR lto/70289
18974         PR ipa/70348
18975         PR tree-optimization/70373
18976         PR middle-end/70533
18977         PR middle-end/70534
18978         PR middle-end/70535
18979         * gimplify.c (gimplify_adjust_omp_clauses): Add or adjust data
18980         clauses for acc parallel reductions as necessary.  Error on those
18981         that are private.
18982         * omp-low.c (scan_sharing_clauses): Don't install variables which
18983         are used in acc parallel reductions.
18984         (lower_rec_input_clauses): Remove dead code.
18985         (lower_oacc_reductions): Add support for reference reductions.
18986         (lower_reduction_clauses): Remove dead code.
18987         (lower_omp_target): Don't remap variables appearing in acc parallel
18988         reductions.
18989         * tree.h (OMP_CLAUSE_MAP_IN_REDUCTION): New macro.
18991 2016-04-08  Jakub Jelinek  <jakub@redhat.com>
18993         PR middle-end/70593
18994         * tree-ssa-coalesce.c (build_ssa_conflict_graph): For stmt
18995         with multiple SSA_NAME defs, force the outputs other than first
18996         to be live before calling live_track_process_def on each output.
18998         PR rtl-optimization/70574
18999         * fwprop.c (forward_propagate_and_simplify): Don't add
19000         REG_EQUAL note if DF_REF_REG (use) is a paradoxical subreg.
19001         (try_fwprop_subst): Don't add REG_EQUAL note if there are any
19002         paradoxical subregs within *loc.
19004 2016-04-08  Thomas Schwinge  <thomas@codesourcery.com>
19006         * config/arc/arc.h (LINK_COMMAND_SPEC): Use gt to ignore
19007         -ftree-parallelize-loops={0,1}.
19008         * config/darwin.h (LINK_COMMAND_SPEC_A): Likewise.
19009         * config/i386/mingw32.h (GOMP_SELF_SPECS): Likewise.
19010         * config/ia64/hpux.h (LIB_SPEC): Likewise.
19011         * config/pa/pa-hpux11.h (LIB_SPEC): Likewise.
19012         * config/pa/pa64-hpux.h (LIB_SPEC): Likewise.
19014 2016-04-08  Maxim Ostapenko  <m.ostapenko@samsung.com>
19016         PR sanitizer/70541
19017         * asan.c (instrument_derefs): If we get unknown location, extract it
19018         with EXPR_LOCATION.
19019         (maybe_instrument_call): Instrument gimple_call's arguments if needed.
19021 2016-04-08  Tom de Vries  <tom@codesourcery.com>
19023         * omp-low.c (lower_omp_target): Set TREE_NO_WARNING for oacc
19024         implicit firstprivate clause.
19026 2016-04-08  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
19028         PR target/70566
19029         * config/arm/thumb2.md (tst + branch-> lsls + branch
19030         peephole below *orsi_not_shiftsi_si): Require that condition
19031         register is dead after the peephole.
19032         (second peephole after the above): Likewise.
19034 2016-04-08  Alan Modra  <amodra@gmail.com>
19036         PR target/70117
19037         * builtins.c (fold_builtin_classify): For IBM extended precision,
19038         look at just the high-order double to test for NaN.
19039         (fold_builtin_interclass_mathfn): Similarly for Inf.  For isnormal
19040         test just the high double for Inf but both doubles for subnormal
19041         limit.
19043 2016-04-07  Jakub Jelinek  <jakub@redhat.com>
19045         * cgraph.h (struct cgraph_simd_clone): Add mask_mode field.
19046         * omp-low.c (simd_clone_init_simd_arrays, simd_clone_adjust): Handle
19047         node->simdclone->mask_mode != VOIDmode masks.
19048         (simd_clone_adjust_argument_types): Likewise.  Move sc var definition
19049         earlier, use it instead of node->simdclone.
19050         * config/i386/i386.c (ix86_simd_clone_compute_vecsize_and_simdlen):
19051         Set clonei->mask_mode.
19053 2016-04-06  Patrick Palka  <ppalka@gcc.gnu.org>
19055         PR c/70436
19056         * parser.c (cp_parser_iteration_statement): New parameter IF_P.
19057         Pass it through to cp_parser_already_scoped_statement.
19058         (cp_parser_already_scoped_statement): New parameter IF_P.  Pass
19059         it through to cp_parser_statement.
19060         (cp_parser_statement): Pass IF_P through to
19061         cp_parser_iteration_statement.
19062         (cp_parser_pragma): Adjust call to
19063         cp_parser_iteration_statement.
19065 2016-04-06  Patrick Palka  <ppalka@gcc.gnu.org>
19067         PR c/70436
19068         * gimplify.c (gimplify_omp_ordered): Add explicit braces to
19069         resolve a future -Wparentheses warning.
19070         * omp-low.c (scan_sharing_clauses): Likewise.
19071         * tree-parloops.c (eliminate_local_variables): Likewise.
19073 2016-04-06  Vladimir Makarov  <vmakarov@redhat.com>
19075         PR rtl-optimization/70398
19076         * lra-constraints.c (process_address_1): Check zero scale and code
19077         for reloading with zero scale.
19079 2016-04-06  Uros Bizjak  <ubizjak@gmail.com>
19081         * config/i386/sse.md (shuffletype): Add V32HI and V4TI modes.
19082         (ssescalarsize): Add V8SF, V4SF, V4DF and V2DF modes.
19084 2016-04-06  Jakub Jelinek  <jakub@redhat.com>
19086         * config/i386/i386.c (ix86_simd_clone_compute_vecsize_and_simdlen):
19087         Add support for AVX512F clones, include them by default for
19088         exported OpenMP declare simd functions.  For AVX2 allow simdlen 32
19089         and use it if charasteric type is 8-bit, for AVX512F allow simdlen
19090         up to 128.
19092         PR middle-end/70550
19093         * tree.h (OMP_CLAUSE_FIRSTPRIVATE_IMPLICIT): Define.
19094         * gimplify.c (gimplify_adjust_omp_clauses_1): Set it for implicit
19095         firstprivate clauses.
19096         * omp-low.c (lower_send_clauses): Set TREE_NO_WARNING for
19097         OMP_CLAUSE_FIRSTPRIVATE_IMPLICIT !by_ref vars in task contexts.
19098         (lower_omp_target): Set TREE_NO_WARNING for
19099         non-addressable possibly uninitialized vars which are copied into
19100         addressable temporaries or copied for GOMP_MAP_FIRSTPRIVATE_INT.
19102 2016-04-05  John David Anglin  <danglin@gcc.gnu.org>
19104         * config/pa/predicates.md (integer_store_memory_operand): Accept
19105         REG+D operands with a large offset when reload_in_progress is true.
19106         (floating_point_store_memory_operand): Likewise.
19108 2016-04-05  Jakub Jelinek  <jakub@redhat.com>
19110         PR c++/70336
19111         * match.pd (nested int casts): Limit to GIMPLE.
19113 2016-04-05  Jan Hubicka  <hubicka@ucw.cz>
19115         PR ipa/66223
19116         * ipa-devirt.c (maybe_record_node): Fix comment; use
19117         SANITIZE_UNREACHABLE instead of SANITIZE_UNDEFINED.
19119 2016-04-05  Jakub Jelinek  <jakub@redhat.com>
19121         PR rtl-optimization/70542
19122         * ree.c (add_removable_extension): For VECTOR_MODE_P punt
19123         if there are any uses other than insn or debug insns.
19125 2016-04-05  Marc Glisse  <marc.glisse@inria.fr>
19126             Jakub Jelinek  <jakub@redhat.com>
19128         PR tree-optimization/70509
19129         * simplify-rtx.c (simplify_binary_operation_1) <case VEC_SELECT>:
19130         Shift HOST_WIDE_INT_1U instead of 1.
19132 2016-04-05  Zdenek Sojka  <zsojka@seznam.cz>
19134         PR tree-optimization/70509
19135         * tree-ssa-forwprop.c (simplify_bitfield_ref): Use bitsize_int instead
19136         of the vector base type for index.
19138 2016-04-05  Uros Bizjak  <ubizjak@gmail.com>
19140         PR target/70510
19141         * config/i386/sse.md (iptr): Add V64QI, V32HI, V16SI and V8DI modes.
19143 2016-04-05  Richard Biener  <rguenther@suse.de>
19145         PR tree-optimization/70526
19146         * tree-sra.c (build_ref_for_offset): Use prev_base to
19147         extract the alias pointer type.
19149 2016-04-05  Richard Biener  <rguenther@suse.de>
19151         * dse.c (struct store_info): Remove alias_set member.
19152         (struct read_info_type): Likewise.
19153         (clear_alias_group, clear_alias_mode_table, clear_alias_mode_holder,
19154         spill_deleted, clear_alias_set_lookup): Remove.
19155         (get_group_info): Remove dead base == NULL_RTX case.
19156         (dse_step0): Remove initialization of removed variables.
19157         (delete_dead_store_insn): Reomve alias set dumping.
19158         (free_read_records): Remove alias_set handling.
19159         (canon_address): Remove alias_set_out parameter.
19160         (record_store): Remove spill_alias_set, it's always zero.
19161         (check_mem_read_rtx): Likewise.
19162         (dse_step2): Rename from ...
19163         (dse_step2_nospill): ... this.  Adjust.
19164         (scan_stores): Rename from ...
19165         (scan_stores_nospill): ... this.
19166         (scan_reads): Rename from ...
19167         (scan_reads_nospill): ... this.
19168         (scan_stores_spill, scan_reads_spill): Remove.
19169         (dse_step3_scan): Remove for_spills argument which is always false.
19170         (dse_step3): Likewise.
19171         (dse_step5): Rename from ...
19172         (dse_step5_nospill): ... this.  Remove alias_set handling.
19173         (rest_of_handle_dse): Adjust.
19175 2016-04-05  Jakub Jelinek  <jakub@redhat.com>
19177         PR target/70525
19178         * config/i386/sse.md (*andnot<mode>3): Simplify assertions.
19179         Use vpandn<ssemodesuffix> for V16SI/V8DImode, vpandnq for
19180         V32HI/V64QImode, don't use <mask_operand3_1>, fix up formatting.
19181         (*andnot<mode>3_mask): Remove insn with VI12_AVX512VL iterator.
19183 2016-04-05  Richard Biener  <rguenther@suse.de>
19185         PR middle-end/70499
19186         * gimplify-me.c (gimple_regimplify_operands): Do not rewrite
19187         non-register type temporaries into SSA.
19189 2016-04-04  Jan Hubicka  <hubicka@ucw.cz>
19191         PR ipa/66223
19192         * ipa-devirt.c (maybe_record_node): Do not optimize cxa_pure_virtual
19193         calls when sanitizing.
19194         (possible_polymorphic_call_target_p): Fix formatting.
19196 2016-04-04  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
19197             Jakub Jelinek  <jakub@redhat.com>
19199         PR middle-end/70457
19200         * tree-inline.c (estimate_num_insn): Use gimple_call_builtin_p
19201         to ensure a call statement is compatible with a built-in's
19202         prototype.
19203         * tree-ssa-math-opts.c (pass_optimize_windening_mul::execute):
19204         Likewise.
19206 2016-04-04  Richard Biener  <rguenther@suse.de>
19208         PR rtl-optimization/70484
19209         * rtl.h (canon_output_dependence): Declare.
19210         * alias.c (canon_output_dependence): New function.
19211         * dse.c (record_store): Use canon_output_dependence rather
19212         than canon_true_dependence.
19214 2016-03-30  Jan Hubicka  <hubicka@ucw.cz>
19216         PR ipa/68881
19217         * cgraph.h (symtab_node::copy_visibility_from): New function.
19218         * symtab.c (symtab_node::copy_visibility_from): New function.
19219         * ipa-visibility.c (optimize_weakref): New function.
19220         (function_and_variable_visibility): Use it.
19222 2016-04-04  Martin Liska  <mliska@suse.cz>
19224         PR hsa/70402
19225         * hsa-gen.c (gen_hsa_insns_for_switch_stmt): Guard index
19226         value that is really in range handled by SBR instruction.
19227         * hsa-brig.c (emit_switch_insn): Do not emit unconditional jump.
19228         * hsa-dump.c (dump_hsa_insn_1): Do not dump default BB.
19229         * hsa.h (hsa_insn_sbr::m_default_bb): Remove field.
19231 2016-04-03  Oleg Endo  <olegendo@gcc.gnu.org>
19233         PR target/70416
19234         PR target/67391
19235         * config/sh/sh.md (*addsi3): Allow pattern when reload_in_progress is
19236         set, but not for SP_REG operands.
19238 2016-04-02  Martin Sebor  <msebor@redhat.com>
19240         PR c++/67376
19241         * fold-const.c (maybe_nonzero_address): New function.
19242         (fold_comparison): Call it.  Fold equality and relational
19243         expressions involving null pointers.
19244         (tree_single_nonzero_warnv_p): Call maybe_nonzero_address.
19246 2016-03-31  Evandro Menezes  <e.menezes@samsung.com>
19248         Fix the predicate "aarch64_simd_reg_or_zero" to correctly validate
19249         the "Y" constraint (scalar FP 0.0 immediate).
19251         * config/aarch64/predicates.md (aarch64_simd_reg_or_zero):
19252         Add the "const_double" to the list of operand constraints.
19254 2016-04-01  Jakub Jelinek  <jakub@redhat.com>
19256         PR rtl-optimization/70467
19257         * config/i386/i386.md (*add<dwi>3_doubleword, *sub<dwi>3_doubleword):
19258         If low word of the last operand is 0, just emit addition/subtraction
19259         for the high word.
19261 2016-04-01  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
19263         PR target/70404
19264         * config/s390/s390.c (s390_expand_insv): Check for everything
19265         constant instead of just VOIDmode stuff.
19267 2016-04-01  Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>
19269         PR target/70496
19270         * config/arm/arm.h (ASM_APP_OFF): Handle TARGET_ARM and TARGET_THUMB.
19272 2016-04-01  Nathan Sidwell  <nathan@acm.org>
19274         * tree.def (TRY_CATCH_EXPR): Correct documentation.
19276 2016-03-31  Vladimir Makarov  <vmakarov@redhat.com>
19278         PR rtl-optimization/70461
19279         * ira-color.c (allocno_copy_cost_saving): Use allocno class if it
19280         is necessary.
19282 2016-03-31  Martin Liska  <mliska@suse.cz>
19284         PR hsa/70399
19285         * hsa-brig.c (hsa_op_immed::emit_to_buffer): Emit either
19286         a tree value or an immediate integer value to a buffer
19287         that is eventually copied to a BRIG section.
19288         (emit_immediate_operand): Call the function here.
19289         * hsa-dump.c (dump_hsa_immed): Remove checking assert.
19290         * hsa-gen.c (hsa_op_immed::hsa_op_immed): Remove initialization
19291         of class' fields that are removed.
19292         (hsa_op_immed::~hsa_op_immed): Remove deinitialization.
19293         * hsa.h (class hsa_op_immed): Remove m_brig_repr and
19294         m_brig_repr_size fields.
19296 2016-03-31  Martin Liska  <mliska@suse.cz>
19298         PR hsa/70391
19299         * hsa-gen.c (hsa_function_representation::update_dominance): New
19300         function.
19301         (convert_addr_to_flat_segment): Likewise.
19302         (gen_hsa_memory_set): New alignment argument.
19303         (gen_hsa_ctor_assignment): Likewise.
19304         (gen_hsa_insns_for_single_assignment): Provide alignment
19305         to gen_hsa_ctor_assignment.
19306         (gen_hsa_insns_for_direct_call): Add new argument.
19307         (expand_lhs_of_string_op): New function.
19308         (expand_string_operation_builtin): Likewise.
19309         (expand_memory_copy): New function.
19310         (expand_memory_set): New function.
19311         (gen_hsa_insns_for_call): Use HOST_WIDE_INT.
19312         (convert_switch_statements): Change signature.
19313         (generate_hsa): Use a return value of the function.
19314         (pass_gen_hsail::execute): Do not call
19315         convert_switch_statements here.
19316         * hsa-regalloc.c (hsa_regalloc): Call update_dominance.
19317         * hsa.h (hsa_function_representation::m_modified_cfg): New flag.
19318         (hsa_function_representation::update_dominance): New function.
19320 2016-03-31  Martin Liska  <mliska@suse.cz>
19322         PR hsa/70391
19323         * hsa-brig.c (emit_directive_variable): Emit alignment
19324         according to hsa_symbol::m_align.
19325         * hsa-dump.c (hsa_byte_alignment): Move the function to another file.
19326         (dump_hsa_symbol): Dump alignment of HSA symbols.
19327         * hsa-gen.c (get_symbol_for_decl): Set-up alignment of a symbol.
19328         (gen_hsa_addr_with_align): New function.
19329         (hsa_bitmemref_alignment): Use newly added function.
19330         (gen_hsa_insns_for_load): Likewise.
19331         (gen_hsa_insns_for_store): Likewise.
19332         (gen_hsa_memory_copy): New argument added.
19333         (gen_hsa_insns_for_single_assignment): Respect
19334         alignment for assignments processed via gen_hsa_memory_copy.
19335         (gen_hsa_insns_for_direct_call): Likewise.
19336         (gen_hsa_insns_for_return): Likewise.
19337         (gen_function_def_parameters): Set default alignment.
19338         * hsa.c (hsa_object_alignment): New function.
19339         (hsa_byte_alignment): Pasted function.
19340         * hsa.h (hsa_symbol::m_align): New field.
19342 2016-03-31  Bin Cheng  <bin.cheng@arm.com>
19344         * tree-ssa-loop-ivopts.c (get_computation_cost_at): Initialize
19345         scratch field for goto case.
19347 2016-03-31  James Greenhalgh  <james.greenhalgh@arm.com>
19349         * config/arm/linux-elf.h (ASM_OUTPUT_DEF): Delete.
19351 2016-03-31  Ilya Enkovich  <enkovich.gnu@gmail.com>
19353         PR target/70442
19354         * config/i386/i386.c (scalar_chain::convert_op): Fix description.
19355         (scalar_chain::convert_insn): Call convert_op for reg
19356         moves to handle undefined registers.
19358 2016-03-31  Nathan Sidwell  <nathan@acm.org>
19360         PR c++/70393
19361         * varasm.c (output_constructor_regular_field): Flush bitfield earlier.
19362         Assert we don't want to move backwards.
19364 2016-03-31  Kirill Yukhin  <kirill.yukhin@intel.com>
19366         PR target/70453
19367         * config/i386/sse.md (define_mode_attr shuffletype): Fix typo.
19369 2016-03-31  Jakub Jelinek  <jakub@redhat.com>
19371         PR rtl-optimization/70460
19372         * ira.c (indirect_jump_optimize): Don't substitute LABEL_REF
19373         with operand from REG_LABEL_OPERAND, instead substitute
19374         SET_SRC or REG_EQUAL note content if it is a LABEL_REF.
19375         Don't do anything for REG_NON_LOCAL_GOTO jumps.
19377 2016-03-31  Martin Liska  <mliska@suse.cz>
19379         * passes.c (execute_one_pass): Do not call
19380         todo_after for a discarded function.
19382 2016-03-31  Bin Cheng  <bin.cheng@arm.com>
19384         * tree-ssa-loop-ivopts.c (struct comp_cost): New scrach field.
19385         (no_cost, infinite_cost): Initialize the new field.
19386         (get_computation_cost_at): Record setup cost.
19387         (determine_use_iv_cost_address): Skip cost computation for sub
19388         uses if we can estimate it without losing accuracy.
19390 2016-03-30  Jan Hubicka  <hubicka@ucw.cz>
19392         * tree-ssa-loop-niter.c (idx_infer_loop_bounds): We can't get realistic
19393         estimates here.
19394         * tree-ssa-loop-unswitch.c (tree_unswitch_single_loop): Use also
19395         max_loop_iterations_int.
19396         (tree_unswitch_outer_loop): Likewise.
19397         * tree-ssa-loop-ivopts.c (avg_loop_niter): Likewise.
19398         * tree-vect-loop.c (vect_analyze_loop_2): Likewise.
19400 2016-03-30  Richard Biener  <rguenther@suse.de>
19402         PR middle-end/70450
19403         * fold-const.c (extract_muldiv_1): Fix thinko in wide_int::from usage.
19405 2016-03-30  Jakub Jelinek  <jakub@redhat.com>
19407         PR target/70421
19408         * config/i386/i386.c (ix86_expand_vector_set): Fix up argument order
19409         in gen_blendm expander.
19411 2016-03-30  Nick Clifton  <nickc@redhat.com>
19413         PR target/62254
19414         * config/arm/arm.c (arm_reload_out_hi): Add code to handle the
19415         case where we are already provided with an SImode SUBREG.
19417 2016-03-30  H.J. Lu  <hongjiu.lu@intel.com>
19419         PR target/70439
19420         * config/i386/i386.c (ix86_expand_epilogue): Properly check
19421         conflict between DRAP register and __builtin_eh_return.
19423 2016-03-30  Michael Matz  <matz@suse.de>
19424             Richard Biener  <rguenther@suse.de>
19426         PR ipa/12392
19427         * ipa-polymorphic-call.c (struct type_change_info): Change
19428         speculative to an unsigned allowing to limit the work we do.
19429         (csftc_abort_walking_p): New inline function..
19430         (check_stmt_for_type_change): Limit the number of may-defs
19431         skipped for speculative devirtualization to
19432         max-speculative-devirt-maydefs.
19433         * params.def (max-speculative-devirt-maydefs): New param.
19434         * doc/invoke.texi (--param max-speculative-devirt-maydefs): Document.
19436 2016-03-30  Mike Stump  <mrs@gcc.gnu.org>
19438         PR target/63890
19439         * config/i386/i386.h (ACCUMULATE_OUTGOING_ARGS): Use when profiling
19440         and TARGET_MACHO.
19442 2016-03-30  Patrick Palka  <ppalka@gcc.gnu.org>
19444         PR tree-optimization/59124
19445         * tree-vrp.c (register_edge_assert_for_2): For NAME != CST1
19446         where NAME = A +- CST2 add the assertion A != (CST1 -+ CST2).
19448 2016-03-29  Jeff Law  <law@redhat.com>
19450         * tree-ssa-coalesce.c (struct ssa_conflicts): Fix typo in comment.
19452 2016-03-10  Jan Hubicka  <hubicka@ucw.cz>
19454         * tree-ssa-loop-ivcanon.c (try_peel_loop): Change type of peel
19455         to HOST_WIDE_INT.
19457 2016-03-29  Thomas Schwinge  <thomas@codesourcery.com>
19459         * config/gnu.h (CPP_SPEC, LIB_SPEC): Don't override.
19460         * config/i386/gnu.h (STARTFILE_SPEC): Use gcrt1.o instead of
19461         gcrt0.o if linking dynamically.
19463 2016-03-10  Jan Hubicka  <hubicka@ucw.cz>
19465         PR ipa/70283
19466         * ipa-devirt.c (methods_equal_p): New function.
19467         (compare_virtual_tables): Use it.
19468         * cgraph.h (symbol_table::symbol_suffix_separator): Declare.
19469         * cgraphclones.c (clone_function_name_1): Use
19470         symbol_table::symbol_suffix_separator.
19471         * coverage.c (build_var): Likewise.
19472         * symtab.c (symbol_table::symbol_suffix_separator): New.
19474 2016-03-29  Jakub Jelinek  <jakub@redhat.com>
19476         PR rtl-optimization/70429
19477         * combine.c (simplify_shift_const_1): For ASHIFTRT don't optimize
19478         (cst1 >> count) >> cst2 into (cst1 >> cst2) >> count if
19479         mode != result_mode.
19481         PR c++/70353
19482         * tree-inline.c (remap_decls): Don't add_local_decl if cfun is null.
19484         PR tree-optimization/70405
19485         * ssa-iterators.h (num_imm_uses): Add missing braces.
19487 2016-03-29  Vladimir Makarov  <vmakarov@redhat.com>
19489         PR rtl-optimization/68695
19490         * ira-color.c (allocno_copy_cost_saving): New.
19491         (improve_allocation): Use it.
19493 2016-03-29  Richard Henderson  <rth@redhat.com>
19495         PR middle-end/70355
19496         * lower-subreg.c (simplify_subreg_concatn): Reject paradoxical subregs.
19498 2016-03-29  Richard Biener  <rguenther@suse.de>
19500         PR middle-end/70424
19501         * ipa-prop.c (ipa_compute_jump_functions_for_edge): Always
19502         use alignment returned by get_pointer_alignment_1 if it is
19503         bigger than BITS_PER_UNIT.
19504         * builtins.c (get_pointer_alignment_1): Do not return true
19505         for alignment extracted from SSA info.
19507 2016-03-28  James Bowman  <james.bowman@ftdichip.com>
19509         * config/ft32/ft32.opt (mnodiv): New.
19510         * config/ft32/ft32.md (*divsi3, *modsi3): Qualify with TARGET_NODIV.
19511         * doc/invoke.texi (FT32 Options -mnodiv): New.
19513 2016-03-28  Kirill Yukhin  <kirill.yukhin@intel.com>
19515         PR target/70406
19516         * config/i386/i386.md (define_split, andn): Fix modes.
19518 2016-03-26  Richard Biener  <rguenther@suse.de>
19519             Prathamesh Kulkarni  <prathamesh.kulkarni@linaro.org>
19521         PR ipa/70366
19522         * ipa-inline-transform.c (inline_call): Pass opts_for_fn (to->decl)
19523         instead of
19524         TREE_OPTIMIZATION (DECL_FUNCTION_SPECIFIC_OPTIMIZATION (to->decl))
19525         as 2nd argument to cl_optimization_restore().
19527 2016-03-25  Richard Henderson  <rth@redhat.com>
19529         PR target/70120
19530         * config/aarch64/aarch64.c (aarch64_asm_output_pool_epilogue): New.
19531         * config/aarch64/aarch64-protos.h: Declare it.
19532         * config/aarch64/aarch64.h (ASM_OUTPUT_POOL_EPILOGUE): New.
19534 2016-03-25  Alan Modra  <amodra@gmail.com>
19536         PR target/70052
19537         * config/rs6000/constraints.md (j): Simplify.
19538         * config/rs6000/predicates.md (easy_fp_constant): Exclude
19539         decimal float 0.D.
19540         * config/rs6000/rs6000.md (zero_fp): New mode_attr.
19541         (mov<mode>_hardfloat, mov<mode>_hardfloat32, mov<mode>_hardfloat64,
19542          mov<mode>_64bit_dm, mov<mode>_32bit): Use zero_fp in place of j
19543         in all constraint alternatives.
19544         (movtd_64bit_nodm): Delete "j" constraint alternative.
19546 2016-03-24  Aldy Hernandez  <aldyh@redhat.com>
19548         * tree-ssa-propagate.c: Enhance docs for
19549         SSA_PROP_NOT_INTERESTING.
19551 2016-03-24  Aldy Hernandez  <aldyh@redhat.com>
19553         * doc/extend.texi: Fix typo in documentation to pure attribute.
19555 2016-03-24  John David Anglin  <danglin@gcc.gnu.org>
19557         PR target/70319
19558         * config/pa/pa.md (bswapdi2): Use a scratch register.
19560 2016-03-24  Richard Henderson  <rth@redhat.com>
19562         PR middle-end/69845
19563         * fold-const.c (extract_muldiv_1): Correct test for multiplication
19564         overflow.
19566 2016-03-24  Uros Bizjak  <ubizjak@gmail.com>
19568         * config/i386/i386.md (*anddi3_doubleword): Generate AND insn
19569         using ix86_expand_binary_operator instead of gen_andsi3.
19571 2016-03-24  Richard Biener  <rguenther@suse.de>
19573         PR tree-optimization/70396
19574         * tree-vect-stmts.c (vectorizable_comparison): Use
19575         get_vectype_for_scalar_type.
19577 2016-03-24  Richard Biener  <rguenther@suse.de>
19579         PR middle-end/70370
19580         * gimplify.c (gimplify_asm_expr): Handle !allows_mem outputs
19581         with register bases.
19583 2016-03-24  Richard Biener  <rguenther@suse.de>
19585         PR tree-optimization/70372
19586         * tree-ssa-reassoc.c (eliminate_plus_minus_pair): Use
19587         build_all_ones_cst to also handle vector types correctly.
19589 2016-03-23  Michael Meissner  <meissner@linux.vnet.ibm.com>
19591         PR target/70381
19592         * config/rs6000/rs6000-cpus.def (ISA_2_6_MASKS_SERVER): Do not set
19593         -mfloat128 here.
19595 2016-03-23  Marek Polacek  <polacek@redhat.com>
19597         PR c++/69884
19598         * doc/invoke.texi: Document -Wignored-attributes.
19600 2016-03-23  Bin Cheng  <bin.cheng@arm.com>
19602         PR tree-optimization/69042
19603         * params.def (PARAM_IV_CONSIDER_ALL_CANDIDATES_BOUND): Increase the
19604         parameter from 30 to 40.
19606 2016-03-23  Bin Cheng  <bin.cheng@arm.com>
19608         PR tree-optimization/69042
19609         * tree-ssa-loop-ivopts.c (add_iv_candidate_for_use): Add IV cand
19610         for use with constant offset stripped in base.
19612 2016-03-23  Richard Biener  <rguenther@suse.de>
19614         PR middle-end/70251
19615         * match.pd (A + (B vcmp C ? 1 : 0) -> A - (B vcmp C)): Adjust
19616         mode compatibility check.
19617         (A - (B vcmp C ? 1 : 0) -> A + (B vcmp C)): Likewise.
19619 2016-03-23  Jeff Law  <law@redhat.com>
19621         PR tree-optimization/64058
19622         * tree-ssa-coalesce.c (struct coalesce_pair): Add new field
19623         CONFLICT_COUNT.
19624         (struct ssa_conflicts): Move up earlier in the file.
19625         (conflicts_, var_map_): New static variables.
19626         (initialize_conflict_count): New function to initialize the
19627         CONFLICT_COUNT field for each conflict pair.
19628         (compare_pairs): Lazily initialize the conflict count and use it
19629         as the first tie-breaker.
19630         (sort_coalesce_list): Add new arguments conflicts, map.  Initialize
19631         and wipe conflicts_ and map_ around the call to qsort.  Remove
19632         special case for 2 coalesce pairs.
19633         * bitmap.c (bitmap_count_unique_bits): New function.
19634         (bitmap_count_bits_in_word): New function, extracted from
19635         bitmap_count_bits.
19636         (bitmap_count_bits): Use bitmap_count_bits_in_word.
19637         * bitmap.h (bitmap_count_unique_bits): Declare it.
19639 2016-03-23  Ilya Enkovich  <enkovich.gnu@gmail.com>
19641         PR target/69917
19642         * config/i386/sol2.h (ASM_OUTPUT_DEF_FROM_DECLS): Follow
19643         transparent alias chain for decl assembler name.
19644         * config/sol2.c (solaris_assemble_visibility): Likewise.
19646 2016-03-23  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
19648         * config/arm/arm1020e.md (1020call_op): Reduce reservation
19649         duration.
19650         (v10_fdivs): Likewise.
19651         (v10_fdivd): Likewise.
19653 2016-03-23  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
19655         PR driver/70132
19656         * config/arm/driver-arm.c (host_detect_local_cpu): Reorder exit logic
19657         to not call fclose twice on file.
19659 2016-03-23  Jakub Jelinek  <jakub@redhat.com>
19661         PR tree-optimization/70354
19662         * tree-vect-patterns.c (vect_recog_vector_vector_shift_pattern): If
19663         oprnd0 is wider than oprnd1 and there is a cast from the wider
19664         type to oprnd1, mask it with the mask of the narrower type.
19666         PR target/70321
19667         * config/i386/i386.md (*anddi3_doubleword, *<code>di3_doubleword):
19668         Optimize TARGET_STV splitters, if high or low word of last argument
19669         is 0 or -1.
19671 2016-03-22  Jeff Law  <law@redhat.com>
19673         PR target/70232
19674         tree-ssa-threadbackward.c
19675         (fsm_find_control_statement_thread_paths): Correctly distinguish
19676         between old style jump threads vs FSM jump threads.
19678 2016-03-22  Ilya Enkovich  <enkovich.gnu@gmail.com>
19680         PR target/70302
19681         * config/i386/i386.c (scalar_chain::convert_op): Support
19682         uninitialized register usage case.
19684 2016-03-22  Richard Biener  <rguenther@suse.de>
19686         PR middle-end/70251
19687         * genmatch.c (gen_transform): Adjust last parameter to a three-state
19688         int...
19689         (capture::gen_transform): ... to change behavior when substituting
19690         a condition into cond or not-cond expr context.
19691         (dt_simplify::gen_1): Adjust.
19692         * gimple-match-head.c: Include gimplify.h for unshare_expr.
19693         * match.pd (A + (B vcmp C ? 1 : 0) -> A - (B vcmp C)): Revert
19694         last change and instead change to
19695         A + (B vcmp C ? 1 : 0) -> A - (B vcmp C ? -1 : 0).
19696         (A - (B vcmp C ? 1 : 0) -> A + (B vcmp C)): Likewise.
19698 2016-03-22  Anthony Green  <green@moxielogic.com>
19700         * config/moxie/moxiebox.h (CC1_SPEC): Define.  Fix endianness
19701         issue for moxiebox targets.
19702         (CC1PLUS_SPEC): Ditto.
19704 2016-03-22  Richard Biener  <rguenther@suse.de>
19706         PR middle-end/70333
19707         * fold-const.c (extract_muldiv_1): Properly perform multiplication
19708         in the wide type.
19710 2016-03-22  Kirill Yukhin  <kirill.yukhin@intel.com>
19712         * config/i386/i386.c (def_builtin): Remove duplicated functionality.
19714 2016-03-22  Kirill Yukhin  <kirill.yukhin@intel.com>
19716         PR target/70325
19717         * config/i386/i386.c (def_builtin): Handle
19718         OPTION_MASK_ISA_AVX512VL to be and-ed with other
19719         bits.
19720         (const struct builtin_description bdesc_special_args[]):
19721         Remove duplicate ISA bits.
19723 2016-03-22  Jakub Jelinek  <jakub@redhat.com>
19725         PR target/70329
19726         * config/i386/i386.c (ix86_expand_vecop_qihi): Don't bother computing
19727         d.perm[i] for i >= d.nelt.  If not full_interleave, compute d.perm[i]
19728         in a way that works also for AVX512BW.
19730         PR target/70300
19731         * config/i386/i386.md (cvtsd2ss splitter): Unpack in destination
19732         instead of source if operands[1] is xmm16 and above and
19733         !TARGET_AVX512VL.  Use avx512f_vec_dupv16sf_1 instead of
19734         vec_interleave_lowv4sf if we need to unpack xmm16 and above.
19736         PR c++/70295
19737         * gimplify.c (gimplify_modify_expr): Call gimple_set_no_warning
19738         on assign if (*from_p) is a comparison, set it to
19739         TREE_NO_WARNING (*from_p).
19741 2016-03-21  Jakub Jelinek  <jakub@redhat.com>
19743         PR middle-end/70326
19744         * lra.c (restore_scratches): Ignore deleted insns.
19746 2016-03-21  Marc Glisse  <marc.glisse@inria.fr>
19747             Jakub Jelinek  <jakub@redhat.com>
19749         PR tree-optimization/70317
19750         * match.pd (cmp @0 @0): Pass @0 instead of TYPE_MODE (TREE_TYPE (@0))
19751         to HONOR_NANS.
19753 2016-03-21  Uros Bizjak  <ubizjak@gmail.com>
19755         PR target/70327
19756         * config/i386/i386.md (movxi): Use ix86_expand_vector_move instead
19757         of ix86_expand_move.
19758         (movoi): Ditto.
19759         (movti): Use general_operand for operand 1 predicate.
19761 2016-03-21  Martin Liska  <mliska@suse.cz>
19763         * hsa-dump.c (dump_hsa_insn_1): dump default branch of SBR
19764         insns.
19765         (dump_hsa_symbol): Dump BRIG offset of hsa_symbols.
19767 2016-03-21  Martin Liska  <mliska@suse.cz>
19769         PR ipa/70306
19770         * ipa-icf.c (sem_function::parse): Skip static
19771         constructors and destructors.
19773 2016-03-21  Jakub Jelinek  <jakub@redhat.com>
19775         PR target/70296
19776         * config/rs6000/rs6000-c.c (rs6000_macro_to_expand): If IDENT is
19777         function-like macro, peek following token(s) if it is followed
19778         by CPP_OPEN_PAREN token with optional padding in between, and
19779         if not, don't treat it like a macro.
19781 2016-03-21  Thomas Schwinge  <thomas@codesourcery.com>
19782             Alexander Monakov  <amonakov@ispras.ru>
19784         * config/nvptx/nvptx.c (nvptx_option_override): Don't emit sorry
19785         for the stabs debug format.
19787 2016-03-21  Richard Biener  <rguenther@suse.de>
19789         PR tree-optimization/70310
19790         * tree-vect-generic.c (expand_vector_condition): Fold the built
19791         condition.
19793 2016-03-21  Kirill Yukhin  <kirill.yukhin@intel.com>
19795         PR target/70293
19796         * config/i386/sse.md: (define_insn "*vec_dup<mode>"/AVX2):
19797         Block third alternative for AVX-512VL target,
19799 2016-03-21  Martin Liska  <mliska@suse.cz>
19801         PR hsa/70234
19802         * hsa-brig.c (emit_function_directives): Mark unemitted
19803         global variables for emission.
19804         * hsa-gen.c (hsa_symbol::hsa_symbol): Initialize a new flag.
19805         (get_symbol_for_decl): Likewise.
19806         * hsa.h (struct hsa_symbol): New flag.
19808 2016-03-21  Richard Biener  <rguenther@suse.de>
19810         PR tree-optimization/70288
19811         * tree-ssa-loop-ivcanon.c (tree_estimate_loop_size): Make sure
19812         we do not estimate unsimplified all-constant conditionals or
19813         switches as optimized away.
19815 2016-03-21  Andrey Belevantsev  <abel@ispras.ru>
19817         PR rtl-optimization/69102
19818         * sched-deps.c (sched_analyze_insn): Do not set last_args_size field
19819         when we have a readonly dependency context.
19821 2016-03-18  Jeff Law  <law@redhat.com>
19823         PR rtl-optimization/70263
19824         * ira.c (memref_used_between_p): Assert we found END in the insn chain.
19825         (update_equiv_regs): When trying to move a store to after the insn
19826         that sets the source of the store, make sure the store occurs after
19827         the insn that sets the source of the store.  When successful note
19828         the REG_EQUIV note created in the dump file.
19830 2016-03-16  David Wohlferd  <dw@LimeGreenSocks.com>
19831             Bernd Schmidt  <bschmidt@redhat.com>
19833         * doc/extend.texi: Document more potential problems with basic asms.
19835 2016-03-18  Bernd Schmidt  <bschmidt@redhat.com>
19837         PR rtl-optimization/70278
19838         * lra-constraints.c (split_reg): Handle the case where biggest_mode is
19839         VOIDmode.
19841 2016-03-18  Jason Merrill  <jason@redhat.com>
19843         * calls.c (load_register_parameters): Fix zero size sibcall logic.
19845 2016-03-18  Kirill Yukhin  <kirill.yukhin@intel.com>
19847         * config/i386/sse.md: Use vpbroadcastq for broadcasting DF
19848         values to 128b regs.
19850 2016-03-18  Ilya Enkovich  <enkovich.gnu@gmail.com>
19852         PR tree-optimization/70252
19853         * tree-vect-stmts.c (supportable_widening_operation): Check resulting
19854         boolean vector has a proper number of elements.
19855         (supportable_narrowing_operation): Likewise.
19857 2016-03-18  Tom de Vries  <tom@codesourcery.com>
19859         PR ipa/70269
19860         * cgraph.c (cgraph_node::get_body): Set dump_file to NULL after save.
19862 2016-03-18  Jakub Jelinek  <jakub@redhat.com>
19864         * reload1.c (emit_input_reload_insns): Use simplify_replace_rtx
19865         instead of replace_rtx for DEBUG_INSNs.
19867 2016-03-18  Venkataramanan Kumar  <venkataramanan.kumar@amd.com>
19869         * config/i386/znver1.md : Fix latencies of FP/SSE/AVX
19870         load type reservations.
19872 2016-03-17  John David Anglin  <danglin@gcc.gnu.org>
19874         PR target/70188
19875         * config/pa/constraints.md: Revert 2015-02-13 change.  Use
19876         define_constraint for "Q" and "T" constraints.
19878 2016-03-17  Evandro Menezes  <e.menezes@samsung.com>
19880         Tweak the pipeline model for Exynos M1
19882         * config/aarch64/aarch64.c (exynosm1_tunings):  Enable weak prefetching
19883         model.
19885 2016-03-17  David Malcolm  <dmalcolm@redhat.com>
19887         PR c/70264
19888         * diagnostic-show-locus.c (compatible_locations_p): Handle the case
19889         where one or both locations aren't within a line_map.
19891 2016-03-17  H.J. Lu  <hongjiu.lu@intel.com>
19893         PR driver/70192
19894         * opts.c (finish_options): Don't set flag_pie to the default if
19895         -fpic, -fPIC, -fno-pic or -fno-PIC is used.  Set flag_pic to 0
19896         if it is -1.
19898 2016-03-17  Joern Rennecke  <joern.rennecke@embecosm.com>
19900         * config/i386/i386.md (*movv4qicc_insn+1..36): Pass
19901         true as ALL_REGS argument to replace_rtx.
19903 2016-03-17  Richard Biener  <rguenther@suse.de>
19905         PR debug/70271
19906         * dwarf2out.c (dwarf2out_early_finish): Process deferred_asm_name
19907         last.
19909 2016-03-17  Jakub Jelinek  <jakub@redhat.com>
19911         PR target/70245
19912         * rtl.h (replace_rtx): Add ALL_REGS argument.
19913         * rtlanal.c (replace_rtx): Likewise.  If true, use REGNO
19914         equality and assert mode is the same, instead of just rtx pointer
19915         equality.
19916         * config/i386/i386.md (mov + arithmetics with load peephole): Pass
19917         true as ALL_REGS argument to replace_rtx.
19919 2016-03-17  Ilya Enkovich  <enkovich.gnu@gmail.com>
19921         * match.pd (A + (B vcmp C ? 1 : 0) -> A - (B vcmp C)): Apply
19922         for boolean vector with vector mode only.
19923         (A - (B vcmp C ? 1 : 0) -> A + (B vcmp C)): Likewise.
19925 2016-03-17  Nick Clifton  <nickc@redhat.com>
19927         PR target/70162
19928         * config/rx/rx.c (rx_print_integer): Print negative constants in
19929         decimal.
19931 2016-03-17  Jakub Jelinek  <jakub@redhat.com>
19933         PR target/70261
19934         * rtlanal.c (replace_rtx): Revert 2016-03-16 change.
19936 2016-03-16  Richard Henderson  <rth@redhat.com>
19937             Richard Biener  <rguenth@suse.de>
19939         PR middle-end/70240
19940         PR middle-end/68215
19941         PR tree-opt/68714
19942         * gimplify.c (gimplify_expr) [VEC_COND_EXPR]: Gimplify the
19943         first operand as is_gimple_condexpr.
19945         PR middle-end/70240
19946         PR middle-end/68215
19947         Revert r231575
19948         2015-12-11  Eric Botcazou  <ebotcazou@adacore.com>
19949         * tree-vect-generic.c (tree_vec_extract): Remove GSI parameter.
19950         Do not gimplify the result.
19951         (do_unop): Adjust call to tree_vec_extract.
19952         (do_binop): Likewise.
19953         (do_compare): Likewise.
19954         (do_plus_minus): Likewise.
19955         (do_negate): Likewise.
19956         (expand_vector_condition): Likewise.
19957         (do_cond): Likewise.
19959 2016-03-16  Richard Henderson  <rth@redhat.com>
19961         PR target/70048
19962         * config/aarch64/aarch64.c (virt_or_elim_regno_p): New.
19963         (aarch64_classify_address): Use it.
19964         (aarch64_legitimize_address): Force all subexpressions of PLUS
19965         into registers.  Simplify as (sfp+const)+reg or (reg+reg)+const.
19967 2016-03-16  Jakub Jelinek  <jakub@redhat.com>
19968             Richard Biener  <rguenth@suse.de>
19970         PR target/70245
19971         * rtlanal.c (replace_rtx): For REG, if from is a REG,
19972         return to even if only REGNO is equal, and assert
19973         mode is the same.
19975 2016-03-11  Jeff Law  <law@redhat.com>
19977         PR rtl-optimization/70224
19978         * reorg.c (relax_delay_slots): Pass right argument to CROSSING_JUMP_P.
19980 2016-03-16  Richard Henderson  <rth@redhat.com>
19982         PR middle-end/70199
19983         * function.h (struct function): Add has_forced_label_in_static.
19984         * gimplify.c (force_labels_r): Set it.
19985         * lto-streamer-in.c (input_struct_function_base): Read it.
19986         * lto-streamer-out.c (output_struct_function_base): Write it.
19987         * tree-inline.c (has_label_address_in_static_1): Remove.
19988         (copy_forbidden): Remove fndecl parameter; test
19989         has_forced_label_in_static.
19990         (inline_forbidden_p): Update call to copy_forbidden.
19991         (tree_versionable_function_p): Likewise.
19992         * ipa-chkp.c (chkp_instrumentable_p): Likewise.
19993         (chkp_versioning): Likewise.
19994         * tree-inline.h (copy_forbidden): Update decl.
19996 2016-03-16  Marek Polacek  <polacek@redhat.com>
19998         PR c/70093
19999         * cgraphunit.c (cgraph_node::expand_thunk): Also build call to the
20000         function being thunked if the result type doesn't have fixed size.
20001         * gimplify.c (gimplify_modify_expr): Also set LHS if the result type
20002         doesn't have fixed size.
20004 2016-03-16  Bin Cheng  <bin.cheng@arm.com>
20006         * tree-vect-loop.c (vect_analyze_loop_2): Fix wrong dump info by
20007         reporting malformed loop nest.
20009 2016-03-16  Tom de Vries  <tom@codesourcery.com>
20011         PR lto/70187
20012         * ipa-devirt.c (possible_polymorphic_call_targets): Move
20013         nodes.length () == 1 test to before first nodes[0] access.
20015 2016-03-16  Tom de Vries  <tom@codesourcery.com>
20017         PR tree-optimization/68715
20018         * graphite-scop-detection.c (scop_detection::merge_sese): Add missing
20019         single_pred_p test.
20021 2016-03-16  Tom de Vries  <tom@codesourcery.com>
20023         PR tree-optimization/68809
20024         * graphite-scop-detection.c (same_close_phi_node): Test if result types
20025         are the same.
20027 2016-03-16  Carlos O'Donell  <carlos@redhat.com>
20028             Sandra Loosemore  <sandra@codesourcery.com>
20030         * doc/extend.texi (Common Function Attributes): Describe ifunc impact
20031         on leaf attribute. Mention ELF interposition problems.
20033 2016-03-16  Alan Modra  <amodra@gmail.com>
20035         PR rtl-optimization/69195
20036         PR rtl-optimization/47992
20037         * ira.c (indirect_jump_optimize): Ignore artificial defs.
20038         Add comments.
20040 2016-03-15  Eric Botcazou  <ebotcazou@adacore.com>
20042         PR bootstrap/69513
20043         * dwarf2out.c (flush_limbo_die_list): Really flush the limbo list.
20045 2016-03-15  Senthil Kumar Selvaraj  <senthil_kumar.selvaraj@atmel.com>
20047         * config/avr/avr.md (rotl<mode>3): Set mode for operand 2.
20049 2016-03-15  Jakub Jelinek  <jakub@redhat.com>
20051         PR rtl-optimization/70222
20052         * combine.c (simplify_shift_const_1): For A >> B >> C LSHIFTRT
20053         optimization if mode is different from result_mode, queue up masking
20054         of the result in outer_op.  Formatting fix.
20056         PR middle-end/70239
20057         * tree-ssa-sccvn.c (VN_INFO_GET): Use safe_grow_cleared instead
20058         of safe_grow.
20060 2016-03-15  Andrey Belevantsev  <abel@ispras.ru>
20062         PR rtl-optimization/69032
20063         * sel-sched-ir.c (get_seqno_by_preds): Include both insn and head when
20064         looping backwards over basic block insns.
20066 2016-03-15  Andrey Belevantsev  <abel@ispras.ru>
20068         PR target/66660
20069         * sel-sched-ir.c (merge_expr): Avoid changing the speculative pattern
20070         to non-speculative when propagating trap bits.
20072 2016-03-15  Andrey Belevantsev  <abel@ispras.ru>
20074         PR rtl-optimization/63384
20075         * sel-sched.c (invoke_aftermath_hooks): Do not decrease issue_more on
20076         DEBUG_INSN_P insns.
20078 2016-03-15  Andrey Belevantsev  <abel@ispras.ru>
20080         PR target/64411
20081         * sched-deps.c (get_implicit_reg_pending_clobbers): New function,
20082         factored out from ...
20083         (sched_analyze_insn): ... here.
20084         * sched-int.h (get_implicit_reg_pending_clobbers): Declare it.
20085         * sel-sched-ir.c (setup_id_implicit_regs): New function, use
20086         get_implicit_reg_pending_clobbers in it.
20087         (setup_id_reg_sets): Use setup_id_implicit_regs.
20088         (deps_init_id): Ditto.
20090 2016-03-15  Tom de Vries  <tom@codesourcery.com>
20092         PR ipa/70161
20093         * cgraph.c (cgraph_node::get_body): Save, reset and restore
20094         dump_file_name.
20095         * passes.c (execute_one_ipa_transform_pass): Add missing argument to
20096         execute_function_dump.
20097         (execute_one_pass): Don't dump function if it will be dumped after ipa
20098         transform.
20100 2016-03-15  Segher Boessenkool  <segher@kernel.crashing.org>
20102         * genrecog.c (match_pattern_2): If pred is NULL don't call
20103         safe_predicate_mode on it.
20105 2016-03-14  Jakub Jelinek  <jakub@redhat.com>
20107         PR middle-end/70219
20108         * lra-constraints.c (delete_move_and_clobber): Change assertion
20109         to also allow dregno == 0.
20111 2016-03-14  Richard Henderson  <rth@redhat.com>
20113         PR tree-opt/68714
20114         * tree-ssa-reassoc.c (ovce_extract_ops, optimize_vec_cond_expr): New.
20115         (can_reassociate_p): Allow ANY_INTEGRAL_TYPE_P.
20116         (reassociate_bb): Use optimize_vec_cond_expr; avoid
20117         optimize_range_tests, attempt_builtin_copysign and attempt_builtin_powi
20118         on vectors.
20120 2016-03-14  Bernd Schmidt  <bschmidt@redhat.com>
20122         PR target/70083
20123         * lra-lives.c (process_bb_lives): Also update biggest mode for hard
20124         regs.
20125         (lra_create_live_ranges_1): initialize hard register biggest_mode to
20126         VOIDmode.
20127         * lra-constraints.c (split_reg): For hard regs, try to find the
20128         biggest single-register mode used in the function.
20130 2016-03-14  Richard Biener  <rguenther@suse.de>
20132         PR tree-optimization/56365
20133         * tree-ssa-phiopt.c (minmax_replacement): Handle alternate
20134         constants to compare against.
20136 2016-03-14  Segher Boessenkool  <segher@kernel.crashing.org>
20138         PR target/70098
20139         * config/rs6000/rs6000.md (*ctr<mode>_internal1, *ctr<mode>_internal2,
20140         *ctr<mode>_internal5, *ctr<mode>_internal6): Also allow "d" as output.
20141         (define_split for the GPR case): Use int_reg_operand instead of
20142         gpc_reg_operand for the output.
20144 2016-03-14  Tom de Vries  <tom@codesourcery.com>
20146         PR tree-optimization/70045
20147         * graphite-isl-ast-to-gimple.c (graphite_create_new_loop_guard): Unshare
20148         create_empty_if_region_on_edge argument.
20150 2016-03-13  Eric Botcazou  <ebotcazou@adacore.com>
20152         * config/arm/vxworks.h (STACK_CHECK_STATIC_BUILTIN): Define.
20153         (STACK_CHECK_PROTECT): Likewise.
20154         * config/i386/vxworks.h (STACK_CHECK_STATIC_BUILTIN): Likewise
20155         (STACK_CHECK_PROTECT): Likewise.
20156         * config/rs6000/vxworks.h (STACK_CHECK_STATIC_BUILTIN): Likewise
20157         (STACK_CHECK_PROTECT): Likewise.
20158         * config/rs6000/vxworksae.h (STACK_CHECK_PROTECT): Likewise.
20159         * config/sparc/vxworks.h (STACK_CHECK_STATIC_BUILTIN): Likewise.
20160         (STACK_CHECK_PROTECT): Likewise.
20162 2016-03-12  Andrey Belevantsev  <abel@ispras.ru>
20164         PR rtl-optimization/69307
20165         * sel-sched.c (choose_best_pseudo_reg): Properly check for hard
20166         registers in modes that span more than one register.
20168 2016-03-12  Vladimir Makarov  <vmakarov@redhat.com>
20170         PR target/69614
20171         * lra-constraints.c (delete_move_and_clobber): New.
20172         (remove_inheritance_pseudos): Use it.
20174 2016-03-12  Eric Botcazou  <ebotcazou@adacore.com>
20176         PR ada/70017
20177         * calls.c (emit_library_call_value_1): Clear the ECF_NOTHROW flag if
20178         the libcall is LCT_THROW.
20179         * explow.c (probe_stack_range): Pass LCT_THROW to emit_library_call
20180         for the checking routine.
20182 2016-03-11  Michael Meissner  <meissner@linux.vnet.ibm.com>
20184         PR target/70131
20185         * config/rs6000/rs6000.md (round32<mode>2_fprs): Do not do the
20186         optimization if we have direct move.
20187         (roundu32<mode>2_fprs): Likewise.
20189 2016-03-11  Bernd Schmidt  <bschmidt@redhat.com>
20191         PR target/70123
20192         * lra-remat.c (operand_to_remat): Disallow hard regs in the value t
20193         be rematerialized.
20194         (reg_overlap_for_remat_p): Renamed from input_regno_present_p.
20195         Arguments swapped.  All callers changed.  Take reg_renumber into
20196         account, and Calculate and compare register ranges for hard regs.
20198 2016-03-11  Jeff Law  <law@redhat.com>
20200         PR tree-optimization/70190
20201         * tree-ssa-threadbackward.c (fsm_find_control_statement_thread_paths):
20202         Handle cases where we can not extract the taken edge, even though we
20203         found a constant value.
20205         PR tree-optimization/64058
20206         * tree-ssa-coalesce.c (struct coalesce_pair): Add new field INDEX.
20207         (num_coalesce_pairs): Move up earlier in file.
20208         (find_coalesce_pair): Initialize the INDEX field for each pair
20209         discovered.
20210         (compare_pairs): No longer sort on the elements in each pair.
20211         Instead break ties with the index of the coalesce pair.
20213 2016-03-11  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
20215         PR target/70002
20216         * config/aarch64/aarch64-protos.h
20217         (aarch64_save_restore_target_globals): New prototype.
20218         * config/aarch64/aarch64-c.c (aarch64_pragma_target_parse):
20219         Call the above when popping pragma.
20220         * config/aarch64/aarch64.c (aarch64_save_restore_target_globals):
20221         New function.
20222         (aarch64_set_current_function): Rewrite using the above.
20224 2016-03-11  Jakub Jelinek  <jakub@redhat.com>
20226         PR tree-optimization/70177
20227         * gimple-expr.h (extract_ops_from_tree_1): Renamed to ...
20228         (extract_ops_from_tree): ... this.  In the 2 argument
20229         overload remove _1 suffix.
20230         * gimple-expr.c (extract_ops_from_tree_1): Renamed to ...
20231         (extract_ops_from_tree): ... this.
20232         * gimple.c (gimple_build_assign, gimple_assign_set_rhs_from_tree):
20233         Adjust callers.
20234         * tree-ssa-loop-niter.c (derive_constant_upper_bound): Likewise.
20235         * tree-ssa-forwprop.c (defcodefor_name): Call 3 operand
20236         extract_ops_from_tree instead of 2 operand one.
20238 2016-03-11  Alan Lawrence  <alan.lawrence@arm.com>
20240         PR tree-optimization/70013
20241         * tree-sra.c (analyze_access_subtree): Also set grp_unscalarized_data
20242         for constant-pool entries.
20244 2016-03-11  Jakub Jelinek  <jakub@redhat.com>
20246         PR rtl-optimization/70174
20247         * expmed.c (store_bit_field_using_insv): Use gen_lowpart_if_possible
20248         followed by gen_lowpart on force_reg instead of just gen_lowpart.
20250         PR tree-optimization/70169
20251         * tree-ssa-loop.c (gen_lsm_tmp_name): Handle FUNCTION_DECL and
20252         LABEL_DECL like VAR_DECL.  Emit nothing instead of gcc_unreachable
20253         for unknown codes.
20255 2016-03-11  Ilya Enkovich  <enkovich.gnu@gmail.com>
20256             Jakub Jelinek  <jakub@redhat.com>
20258         PR target/70160
20259         * config/i386/i386.c (scalar_chain::convert_reg): Skip uses
20260         of uninitialized values.
20262 2016-03-11  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
20264         * config/s390/s390.md ("trunctddd2"): Turn former define_insn into
20265         define_expand.
20266         ("*trunctddd2"): New pattern definition.
20267         ("trunctdsd2"): Set prep_for_short_prec rounding mode for the
20268         TD->DD truncation.
20270 2016-03-11  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
20272         * config/s390/s390.md (BFP_RND_*, DFP_RND_*): Add new constant
20273         definitions for BFP and DFP rounding modes.
20274         ("fixuns_truncdddi2", "fixuns_trunctddi2")
20275         ("fixuns_trunc<BFP:mode><GPR:mode>2", "fixuns_trunc<mode>si2")
20276         ("fix_trunc<DSF:mode><GPR:mode>2", "fix_trunc<mode>di2")
20277         ("fix_trunctf<mode>2"): Use the new constants instead of magic
20278         numbers.
20280 2016-03-11  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
20282         * config/s390/constraints.md: Adjust comment.
20283         ("Y"): Adjust comment.  Rename s390_decompose_shift_count to
20284         s390_decompose_addrstyle_without_index.
20285         * config/s390/predicates.md (shift_count_or_setmem_operand):
20286         Rename to setmem_operand.
20287         * config/s390/s390-protos.h
20288         (s390_decompose_shift_count): Rename to
20289         s390_decompose_addrstyle_without_index.
20290         * config/s390/s390.c (s390_decompose_shift_count)
20291         (s390_mem_constraint, print_shift_count_operand)
20292         (print_operand_address, print_operand): Rename
20293         s390_decompose_shift_count to
20294         s390_decompose_addrstyle_without_index and rename
20295         print_shift_count_operand to print_addrstyle_operand troughout the
20296         file.
20297         * config/s390/s390.md ("setmem_long_<P:mode>", "*setmem_long")
20298         ("*setmem_long_and", "*setmem_long_31z", "*setmem_long_and_31z"):
20299         Rename shift_count_or_setmem_operand to setmem_operand.
20300         * config/s390/vx-builtins.md ("vec_insert<mode>")
20301         ("vec_promote<mode>"): Replace shift_count_or_setmem_operand with
20302         nonmemory_operand.
20304 2016-03-10  Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>
20306         PR target/70168
20307         * config/rs6000/rs6000.c (rs6000_expand_atomic_compare_and_swap):
20308         Handle overlapping retval and newval.
20310 2016-03-10  Nick Clifton  <nickc@redhat.com>
20312         PR target/7044
20313         * config/aarch64/aarch64.c
20314         (aarch64_override_options_after_change_1): When forcing
20315         flag_omit_frame_pointer to be true, use a special value that can
20316         be detected if this function is called again, thus preventing
20317         flag_omit_leaf_frame_pointer from being forced to be false.
20319 2016-03-10  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
20321         * common/config/aarch64/aarch64-common.c (aarch64_handle_option):
20322         Set x_flag_omit_leaf_frame_pointer when handling
20323         -momit-leaf-frame-pointer.
20325 2016-03-10  Jan Hubicka  <hubicka@ucw.cz>
20327         PR lto/69589
20328         * cgraph.c (cgraph_node::dump): Dump split_part and
20329         indirect_call_target.
20330         * cgraph.h (cgraph_node): Add indirect_call_target flag.
20331         * ipa.c (has_addr_references_p): Cleanup.
20332         (is_indirect_call_target_p): New.
20333         (walk_polymorphic_call_targets): Do not mark virtuals that may be
20334         called indirectly as local.
20335         (symbol_table::remove_unreachable_nodes): Compute indirect_call_target.
20337 2016-03-10  Jan Hubicka  <hubicka@ucw.cz>
20339         PR ipa/69630
20340         * ipa-devirt.c (possible_polymorphic_call_targets): Do not ICE
20341         on cxa_pure_virtual.
20343 2016-03-10  Jan Hubicka  <hubicka@ucw.cz>
20345         PR lto/69589
20346         * tree.c (free_lang_data_in_decl): Clear visibility of TYPE_DECL.
20348 2016-03-10  Jan Hubicka  <hubicka@ucw.cz>
20350         PR lto/69589
20351         * tree.c (need_assembler_name_p): Only record main variant type names.
20353 2016-03-10  Christophe Lyon  <christophe.lyon@linaro.org>
20355         PR target/70113.
20356         * config/aarch64/aarch64.h (TARGET_FIX_ERR_A53_843419_DEFAULT):
20357         Always define to 0 or 1.
20358         (TARGET_FIX_ERR_A53_843419): New macro.
20359         * config/aarch64/aarch64-elf-raw.h
20360         (TARGET_FIX_ERR_A53_843419_DEFAULT): Update for above changes.
20361         * config/aarch64/aarch64-linux.h: Likewise.
20362         * config/aarch64/aarch64.c
20363         (aarch64_override_options_after_change_1): Do not default
20364         aarch64_nopcrelative_literal_loads to true if Cortex-A53 erratum
20365         843419 is on.
20366         (aarch64_attributes): Handle fix-cortex-a53-843419.
20367         (aarch64_can_inline_p): Likewise.
20368         * config/aarch64/aarch64.opt (aarch64_fix_a53_err843419): Save.
20370 2016-03-10  Alan Lawrence  <alan.lawrence@arm.com>
20371             Jakub Jelinek  <jakub@redhat.com>
20373         * common.opt (funconstrained-commons, flag_unconstrained_commons): New.
20374         * tree.c (array_at_struct_end_p): Do not limit to size of decl for
20375         DECL_COMMONS if flag_unconstrained_commons is set.
20376         * tree-dfa.c (get_ref_base_and_extent): Likewise.
20377         * doc/invoke.texi (Optimize Options): Add -funconstrained-commons.
20378         (funconstrained-commons): Document.
20380 2016-03-10  Christophe Lyon  <christophe.lyon@linaro.org>
20382         * config/aarch64/t-aarch64 (OPTIONS_H_EXTRA): Add
20383         aarch64-fusion-pairs.def and aarch64-tuning-flags.def
20385 2016-03-10  Ilya Enkovich  <enkovich.gnu@gmail.com>
20387         * tree-vect-stmts.c (vectorizable_mask_load_store): Check mask
20388         has a proper number of elements.
20390 2016-03-10  Alan Modra  <amodra@gmail.com>
20392         PR rtl-optimization/69195
20393         PR rtl-optimization/47992
20394         * ira.c (recorded_label_ref): Delete.
20395         (update_equiv_regs): Return void.
20396         (indirect_jump_optimize): New function.
20397         (ira): Call indirect_jump_optimize and delete_trivially_dead_insns
20398         before regstat_compute_ri.  Don't rebuild_jump_labels here.
20399         Delete update_regstat.
20401 2016-03-10  Richard Biener  <rguenther@suse.de>
20403         PR tree-optimization/70128
20404         * tree-ssa-structalias.c (set_uids_in_ptset): Set
20405         vars_contains_nonlocal for any FUNCTION_DECL or LABEL_DECL.
20407 2016-03-09  Jakub Jelinek  <jakub@redhat.com>
20409         PR tree-optimization/70152
20410         * tree-sra.c (replace_removed_params_ssa_names): Copy over
20411         SSA_NAME_OCCURS_IN_ABNORMAL_PHI from old_name to new_name.
20413         PR target/70086
20414         * config/i386/i386.md (truncdfsf2 splitter): Use gen_vec_concatv2df
20415         instead of gen_sse2_loadlpd.
20416         * config/i386/sse.md (*vec_concatv2df): Rename to...
20417         (vec_concatv2df): ... this.
20419         PR tree-optimization/70127
20420         * fold-const.c (operand_equal_p): Revert the 2015-10-28 change.
20422 2016-03-09  David Malcolm  <dmalcolm@redhat.com>
20424         PR c/68473
20425         PR c++/70105
20426         * diagnostic-show-locus.c (compatible_locations_p): New function.
20427         (layout::layout): Sanitize ranges using compatible_locations_p.
20429 2016-03-09  David Malcolm  <dmalcolm@redhat.com>
20431         PR c/68473
20432         PR c++/70105
20433         * diagnostic-show-locus.c (layout_range::layout_range): Replace
20434         location_range param with three const expanded_locations * and a
20435         bool.
20436         (layout::layout): Replace call to
20437         rich_location::lazily_expand_location with get_expanded_location.
20438         Extract the range and perform location expansion here, passing
20439         the results to the layout_range ctor.
20440         * diagnostic.c (source_range::debug): Delete.
20441         * diagnostic.h (diagnostic_expand_location): Reimplement in terms
20442         of rich_location::get_expanded_location.
20443         * gcc-rich-location.c (get_range_for_expr): Delete.
20444         (gcc_rich_location::add_expr): Reimplement to avoid the
20445         rich_location::add_range overload that took a location_range,
20446         passing a location_t instead.
20448 2016-03-09  Richard Biener  <rguenther@suse.de>
20449         Jakub Jelinek  <jakub@redhat.com>
20451         PR tree-optimization/70138
20452         * tree-vect-loop-manip.c (vect_update_ivs_after_vectorizer):
20453         Also skip vect_double_reduction_def.
20455 2016-03-09  Jakub Jelinek  <jakub@redhat.com>
20457         PR target/70049
20458         * config/i386/sse.md (*vec_extract<mode>): Use %0 instead of %k0
20459         if the operand is "m".
20461 2016-03-09  Nathan Sidwell  <nathan@acm.org>
20463         * config/nvptx/nvptx.c (nvptx_option_override): Don't kill debug level.
20465 2016-03-09  Venkataramanan Kumar  <venkataramanan.kumar@amd.com>
20467         * config/i386/i386.c (processor_target_table): Fix cost table
20468         intialization order for znver1.
20470 2016-03-08  Jakub Jelinek  <jakub@redhat.com>
20472         * ipa-polymorphic-call.c (walk_ssa_copies): Fix spelling
20473         - becuase -> because.
20474         * ipa-reference.c (ignore_module_statics): Likewise.
20475         * cgraph.c (cgraph_node::get_body): Likewise.
20476         * ipa-inline.c (early_inliner): Likewise.
20477         * ipa-devirt.c (types_same_for_odr): Likewise.
20478         * tree-streamer-out.c (pack_ts_type_common_value_fields): Likewise.
20479         * config/i386/i386.h (ACCUMULATE_OUTGOING_ARGS): Likewise.
20481 2016-03-08  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
20483         * tree-ssa-math-opts.c: Fix typo in comment.
20485 2016-03-08  Jakub Jelinek  <jakub@redhat.com>
20487         PR target/70110
20488         * config/i386/i386.c (scalar_chain::make_vector_copies,
20489         scalar_chain::convert_reg): Call end_sequence in between
20490         get_insns and emit_conversion_insns rather than after both
20491         calls.
20493 2016-03-07  Uros Bizjak  <ubizjak@gmail.com>
20495         PR target/70064
20496         * config/i386/i386.h (machine_function): Add
20497         pc_thunk_call_expanded flag.
20498         (ix86_pc_thunk_call_expanded): New define.
20499         * config/i386/i386.md (set_got, set_got_labelled): New expanders.
20500         (*set_got): Rename insn pattern from set_got.
20501         (*set_got_labelled): Rename inst pattern from set_got_labelled.
20502         * config/i386/i386.c (ix86_compute_frame_layout): Use
20503         ix86_pc_thunk_call_expanded to prevent red-zone.
20505 2016-03-07  Martin Jambor  <mjambor@suse.cz>
20507         * hsa.h (hsa_get_ctor_statements): Declare.
20508         (hsa_get_dtor_statements): Likewise.
20509         (hsa_get_kernel_dispatch_type): Likewise.
20510         * hsa.c (hsa_get_ctor_statements): New function.
20511         (hsa_get_dtor_statements): Likewise.
20512         (hsa_get_kernel_dispatch_type): Likewise.
20513         * hsa-brig.c (hsa_cdtor_statements): Removed.
20514         (hsa_output_libgomp_mapping): Use hsa_get_ctor_statements and
20515         hsa_get_dtor_statements.
20516         * hsa-gen.c (hsa_kernel_dispatch_type): Removed.
20517         (get_hsa_kernel_dispatch_offset): Use hsa_get_kernel_dispatch_type.
20519 2016-03-07  Andre Vieira  <andre.simoesdiasvieira@arm.com>
20521         * config/arm/arm-cores.def (cortex-r8): New.
20522         * config/arm/arm-tables.opt (cortex-r8): Regenerate.
20523         * config/arm/arm-tune.md: Likewise.
20524         * doc/invoke.texi: Add cortex-r8 to list of cpu values.
20526 2016-03-07  Martin Sebor  <msebor@redhat.com>
20528         PR rtl-optimization/19705
20529         * doc/invoke.texi (Options That Control Optimization): Clarify
20530         -fno-branch-count-reg.
20532 2016-02-26  Richard Biener  <rguenther@suse.de>
20533             Jeff Law  <law@redhat.com>
20535         PR tree-optimization/69740
20536         * cfghooks.c (remove_edge): Request loop fixups if we delete
20537         an edge that might turn an irreducible loop into a natural
20538         loop.
20539         * cfgloop.h (check_verify_loop_structure): Clear LOOPS_NEED_FIXUP.
20540         Move after definition of loops_state_clear.
20542 2016-03-07  Bin Cheng  <bin.cheng@arm.com>
20544         PR rtl-optimization/69052
20545         * rtlanal.c (commutative_operand_precedence): Set higher precedence
20546         to CONST_WIDE_INT.
20548 2016-03-07  Tom de Vries  <tom@codesourcery.com>
20550         PR tree-optimization/70116
20551         * tree-ssa-tail-merge.c (merge_stmts_p): New function, handling
20552         is_tm_ending stmts and ubsan/asan internal functions.
20553         (find_duplicate): Use it.  Don't test is_tm_ending here.
20555 2016-03-07  Richard Biener  <rguenther@suse.de>
20557         PR tree-optimization/70115
20558         * tree-ssa-loop-ivcanon.c (propagate_into_all_uses): Remove.
20559         (propagate_constants_for_unrolling): Use replace_uses_by.
20561 2016-03-07  Nathan Sidwell  <nathan@codesourcery.com>
20563         PR middle-end/69916
20564         * omp-low.c (struct oacc_loop): Add ifns.
20565         (new_oacc_loop_raw): Initialize it.
20566         (finish_oacc_loop): Clear mask & flags if no ifns.
20567         (oacc_loop_discover_walk): Count IFN_GOACC_LOOP calls.
20568         (oacc_loop_xform_loop): Add ifns arg & adjust.
20569         (oacc_loop_process): Adjust oacc_loop_xform_loop call.
20571 2016-03-07  Richard Henderson  <rth@redhat.com>
20573         PR rtl-opt/70061
20574         * tree-outofssa.c (emit_partition_copy): Flush pending stack adjust.
20575         (insert_value_copy_on_edge): Likewise.
20577 2016-03-07  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
20579         * config/arm/arm_neon.h: Show error if using with soft-float ABI.
20581 2016-03-07  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
20583         PR target/62281
20584         * config/i386/sol2.h (STACK_REALIGN_DEFAULT): Define.
20586 2016-03-05  Venkataramanan Kumar  <Venkataramanan.kumar@amd.com>
20588         * config/i386/i386.c (znver1_cost): Fix Multiply cost.
20590 2016-03-05  Venkataramanan Kumar  <Venkataramanan.kumar@amd.com>
20592         Fix sseimul type attribute.
20593         * config/i386/znver1.md
20594         (znver1_sseimul, znver1_sseimul_avx256, znver1_sseimul_load,
20595         znver1_sseimul_avx256_load) : Fix the type attribute.
20596         (znver1_sseimul_di, znver1_sseimul_load_di): Fix type attribute,
20597         pipe usage and latency.
20599 2016-03-05  Jakub Jelinek  <jakub@redhat.com>
20601         PR c++/70084
20602         * tree-inline.c (copy_tree_body_r): When cancelling ADDR_EXPR
20603         of INDIRECT_REF and ADDR_EXPR changed type, fold_convert it
20604         to the right type.
20606 2016-03-04  Bernd Schmidt  <bschmidt@redhat.com>
20608         PR c/69973
20609         * targhooks.c (default_vector_alignment): Limit to MAX_OFILE_ALIGNMENT.
20611         PR rtl-optimization/69941
20612         * postreload.c (reload_combine_recognize_pattern): Ensure all uses of
20613         the reg share its mode.
20615 2016-03-04  Jeff Law  <law@redhat.com>
20617         PR tree-optimization/69196
20618         * tree-ssa-threadbackward.c (fsm_find_control_statement_thread_paths):
20619         If the both SSA_NAMEs are anonymous, then consider them unassociated
20620         and include the PHI in the statement count.
20622 2016-03-05  Tom de Vries  <tom@codesourcery.com>
20624         * omp-low.c (check_omp_nesting_restrictions): Check for non-oacc
20625         construct in oacc routine.  Check for oacc region in oacc routine.
20627 2016-03-04  Jakub Jelinek  <jakub@redhat.com>
20629         PR target/70062
20630         * config/i386/i386.c (decide_alg): Add RECUR argument.  Revert
20631         2016-02-22 changes, instead don't recurse if RECUR is already true.
20632         Don't change *dynamic_check if RECUR.  Adjust recursive caller
20633         to pass true to the new argument.
20634         (ix86_expand_set_or_movmem): Adjust decide_alg caller.
20636         PR target/70059
20637         * config/i386/sse.md (vec_set_lo_<mode><mask_name>,
20638         <extract_type_2>_vinsert<shuffletype><extract_suf_2>_mask): Formatting
20639         fixes.
20640         (vec_set_hi_<mode><mask_name>): Likewise.  Swap VEC_CONCAT operands.
20642 2016-03-04  Bernd Schmidt  <bschmidt@redhat.com>
20644         PR rtl-optimization/57676
20645         * lra-assigns.c (lra_assign): Guard test for maximum iterations
20646         with flag_checking.
20648 2016-03-04  Ilya Enkovich  <enkovich.gnu@gmail.com>
20650         * tree-vect-patterns.c (search_type_for_mask): Handle
20651         comparison of booleans.
20653 2016-03-04  Jakub Jelinek  <jakub@redhat.com>
20655         * doc/extend.texi (__builtin_alloca, __builtin_alloca_with_align):
20656         Fix @xref usage.
20658         PR debug/69947
20659         * dwarf2out.c (prune_unused_types_walk_loc_descr): Handle
20660         all other ops that have dw_val_class_die_ref operands,
20661         and DW_OP_GNU_entry_value.
20663 2016-03-03  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
20665         PR rtl-optimization/69904
20666         * config/arm/arm.c (arm_cannot_copy_insn_p):
20667         Return true for load-exclusive instructions.
20669 2016-03-03  Jakub Jelinek  <jakub@redhat.com>
20671         PR target/70021
20672         * tree-vect-stmts.c (vect_mark_relevant): Remove USED_IN_PATTERN
20673         argument, if STMT_VINFO_IN_PATTERN_P (stmt_info), always mark
20674         the pattern no matter if it is used just by non-pattern, pattern
20675         or mix thereof.
20676         (process_use, vect_mark_stmts_to_be_vectorized): Adjust callers.
20677         * tree-vect-patterns.c (vect_recog_vector_vector_shift_pattern): If
20678         oprnd1 def_stmt is in pattern, don't look through it.
20680 2016-03-03  Marek Polacek  <polacek@redhat.com>
20682         PR middle-end/70050
20683         * match.pd (X % -Y): Add INTEGRAL_TYPE_P check.
20685 2016-03-03  Martin Liska  <mliska@suse.cz>
20687         PR tree-optimization/70043
20688         * tree-vect-loop.c (optimize_mask_stores): Move iterator to
20689         previous statement if we see a debug statement.
20691 2016-03-03  Richard Biener  <rguenther@suse.de>
20693         PR tree-optimization/55936
20694         * tree-vrp.c (compare_name_with_value): Add use_equiv_p
20695         parameter and guard unsafe equivalence use.
20696         (vrp_evaluate_conditional_warnv_with_ops): Always use
20697         safe equivalences but not via the quadratic compare_names
20698         helper.
20700 2016-03-03  Michael Collison  <michael.collison@linaro.org>
20702         PR target/70014
20703         * config/arm/arm.md (*subsi3_carryin_const): Change predicate
20704         for operand 1 to s_register_operand. Change predicate for operand
20705         2 to arm_not_immediate_operand.
20707 2016-03-02  H.J. Lu  <hongjiu.lu@intel.com>
20709         * doc/tm.texi: Regenerated.
20711 2016-03-02  Richard Henderson  <rth@redhat.com>
20713         PR rtl-opt/67145
20714         * simplify-rtx.c (simplify_plus_minus): Allow reassoc without
20715         simplification when all args are positive non-fixed registers.
20717 2016-03-02  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
20719         * target.def (lra_p): Specify that new ports should use LRA.
20721 2016-03-02  Jakub Jelinek  <jakub@redhat.com>
20723         PR libgomp/69555
20724         * gimplify.c (gimplify_decl_expr): For decls with REFERENCE_TYPE, also
20725         gimplify_type_sizes the type they refer to.
20726         (omp_notice_variable): Handle reference vars to VLAs.
20727         * omp-low.c (lower_omp_target): Emit setup of OMP_CLAUSE_PRIVATE
20728         reference to VLA decls in the second pass instead of first pass.
20730 2016-03-02  Tom de Vries  <tom@codesourcery.com>
20732         PR tree-optimization/68659
20733         * graphite-isl-ast-to-gimple.c (collect_all_ssa_names): Handle
20734         new_expr == NULL_TREE.
20735         (get_new_name): Handle ADDR_EXPR.
20737 2016-03-02  Bin Cheng  <bin.cheng@arm.com>
20739         PR rtl-optimization/69052
20740         * loop-invariant.c (canonicalize_address): New function.
20741         (inv_can_prop_to_addr_use): Check validity of address expression
20742         which is canonicalized by above function.
20744 2016-03-02  Alan Modra  <amodra@gmail.com>
20746         PR ipa/69990
20747         * ipa-icf.c (sem_variable::merge): Do not merge an alias with
20748         larger alignment.
20750 2016-03-02  Jakub Jelinek  <jakub@redhat.com>
20752         PR target/70028
20753         * config/i386/i386.md (kmovw): Move m constraint to 2nd alternative.
20754         (*movhi_internal): Put mask moves from and to memory separately
20755         from moves from/to GPRs.
20757 2016-03-02  Richard Biener  <rguenther@suse.de>
20759         * genmatch.c (dt_node::gen_kids): Fix match code-gen for embedded
20760         GENERIC expressions in GIMPLE.
20762 2016-03-02  Richard Biener  <rguenther@suse.de>
20764         * config/i386/i386.c (type_natural_mode): Fix typo.
20766 2016-03-02  Nick Clifton  <nickc@redhat.com>
20768         * config.gcc (mep-*-elf): Add newlib-stdint.h to tm_file.
20770 2016-03-02  Richard Biener  <rguenther@suse.de>
20771             Uros Bizjak  <ubizjak@gmail.com>
20773         PR target/67278
20774         * config/i386/i386.c (type_natural_mode): Handle XFmode vectors.
20776 2016-03-02  Richard Biener  <rguenther@suse.de>
20778         PR middle-end/67278
20779         * tree-cfg.c (verify_expr): Adjust BIT_FIELD_REF case.
20781 2016-03-02  Marek Polacek  <polacek@redhat.com>
20783         PR c/67854
20784         * gimplify.c (gimplify_va_arg_expr): Use expanded location for the
20785         "is promoted to" warning.
20787 2016-03-01  DJ Delorie  <dj@redhat.com>
20789         * config.gcc: Deprecate mep-*.
20791 2016-03-01  Vladimir Makarov  <vmakarov@redhat.com>
20793         PR middle-end/70025
20794         * lra-constraints.c (regno_val_use_in): New.
20795         (match_reload): Use it instead of regno_use_in.
20797 2016-03-01  Eric Botcazou  <ebotcazou@adacore.com>
20799         PR rtl-optimization/70007
20800         * gcse.c (compute_ld_motion_mems): Tidy up and also invalidate memory
20801         references present in REG_EQUAL notes attached to non-SET patterns.
20803 2016-03-01  Jeff Law  <law@redhat.com>
20805         PR tree-optimization/69196
20806         * tree-ssa-threadbackward.c (fsm_find_control_statement_thread_paths):
20807         Appropriately clamp the number of statements to copy when the
20808         thread path does not traverse a loop backedge.
20810         PR tree-optimization/69196
20811         * tree-ssa-threadbackward.c (fsm_find_control_statement_thread_paths):
20812         Do count some PHIs in the thread path against the insn count.  Decrease
20813         final statement count by one as the control statement in the last
20814         block will get removed.  Remove special cased code for handling PHIs
20815         in the last block.
20817 2016-03-01  Uros Bizjak  <ubizjak@gmail.com>
20819         PR target/70027
20820         * config/i386/i386.c (ix86_output_call_insn): Add -masm=intel
20821         asm dialect alternatives to explicit GOTPCREL calls.
20823 2016-03-01  Eric Botcazou  <ebotcazou@adacore.com>
20825         PR ada/70017
20826         * ira.c (do_reload): Issue warning for generic stack checking here...
20827         * reload1.c (reload): ...instead of here and streamline it.
20829 2016-03-01  Nick Clifton  <nickc@redhat.com>
20831         * config.gcc (cr16-*-elf): Add newlib-stdint.h to tm_file.
20833 2016-03-01  Richard Biener  <rguenther@suse.de>
20835         PR tree-optimization/69983
20836         * tree-chrec.c (eq_evolutions_p): Handle conversions, compare
20837         types and fall back to operand_equal_p.
20839 2016-03-01  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
20841         Revert
20842         2016-03-01  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
20844         * config/s390/constraints.md ("jm8"): New constraint.
20845         * config/s390/predicates.md ("const_int_8bitset_operand"): New
20846         predicate.
20847         * config/s390/s390.md ("*setmem_long", "*setmem_long_and"): Merge
20848         into ...
20849         ("*setmem_long<setmem_and>"): New pattern.
20850         ("*setmem_long_31z", "*setmem_long_and_31z"): Merge
20851         into ...
20852         ("*setmem_long_31z<setmem_and>"): New pattern.
20853         * config/s390/subst.md ("setmem_31z_subst", "setmem_and_subst"):
20854         New substitution rules with the required attributes.
20857 2016-03-01  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
20859         Revert
20860         2016-03-01  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
20862         * gensupport.c (process_substs_on_one_elem): Split loop to
20863         complete mark_operands_used_in_match_dup on all expressions in the
20864         vector first.
20865         (adjust_operands_numbers): Inline into process_substs_on_one_elem
20866         and remove function.
20868 2016-03-01  Richard Biener  <rguenther@suse.de>
20870         PR middle-end/70022
20871         * fold-const.c (fold_indirect_ref_1): Fix range checking for
20872         vector BIT_FIELD_REF extract.
20874 2016-03-01  Richard Biener  <rguenther@suse.de>
20876         PR tree-optimization/69994
20877         * tree-ssa-reassoc.c (ops_equal_values_p): Handle missing case.
20879 2016-03-01  Ilya Enkovich  <enkovich.gnu@gmail.com>
20881         PR tree-optimization/69956
20882         * tree-vect-stmts.c (supportable_widening_operation): Support
20883         multi-step conversion of boolean vectors.
20884         (supportable_narrowing_operation): Likewise.
20886 2016-03-01  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
20888         * config/s390/s390.c (s390_decompose_address): Don't accept SImode
20889         anymore.
20891 2016-03-01  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
20893         * config/s390/subst.md (DSI_VI): New mode iterator.
20894         ("addr_style_op_subst"): Use DSI_VI instead of DSI.
20895         * config/s390/vector.md ("vec_set<mode>"): Move expander before
20896         the insn definition.
20897         ("*vec_set<mode>"): Change predicate and add alternative to
20898         support only either register or const_int operands as element
20899         selector.
20900         ("*vec_set<mode>_plus"): New pattern to support reg + const_int
20901         operands.
20902         ("vec_extract<mode>"): New expander.
20903         ("*vec_extract<mode>"): New insn definition supporting reg and
20904         const_int element selectors.
20905         ("*vec_extract<mode>_plus"): New insn definition supporting
20906         reg+const_int element selectors.
20907         ("rotl<mode>3", "ashl<mode>3", "ashr<mode>3"): Merge into the
20908         following expander+insn definition.
20909         ("<vec_shifts_name><mode>3"): New expander.
20910         ("*<vec_shifts_name><mode>3<addr_style_op>"): New insn definition.
20912 2016-03-01  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
20914         * config/s390/s390.md ("*tabort_1"): Change predicate to
20915         nonmemory_operand.  Add a second alternative to cover
20916         register as well as const int operands.
20917         ("*tabort_1_plus"): New pattern definition.
20919 2016-03-01  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
20921         * config/s390/s390.md ("*ashrdi3_cc_31")
20922         ("*ashrdi3_cconly_31""*ashrdi3_cc_31_and")
20923         ("*ashrdi3_cconly_31_and", "*ashrdi3_31_and", "*ashrdi3_31"):
20924         Merge insn definitions into ...
20925         ("*ashrdi3_31<addr_style_op_cc><masked_op_cc><setcc><cconly>"):
20926         New pattern definition.
20927         ("*ashr<mode>3_cc", "*ashr<mode>3_cconly", "ashr<mode>3", )
20928         ("*ashr<mode>3_cc_and", "*ashr<mode>3_cconly_and")
20929         ("*ashr<mode>3_and"): Merge insn definitions into ...
20930         ("*ashr<mode>3<addr_style_op_cc><masked_op_cc><setcc><cconly>"):
20931         New pattern definition.
20932         * config/s390/subst.md ("addr_style_op_cc_subst")
20933         ("masked_op_cc_subst", "setcc_subst", "cconly_subst"): New
20934         substitutions patterns plus attributes.
20935         Add ashiftrt to SUBST iterator.
20937 2016-03-01  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
20939         * config/s390/s390.md ("<shift><mode>3"): Change predicate of
20940         op2 to nonmemory_operand.
20941         ("*<shift>di3_31", "*<shift>di3_31_and"):
20942         Merge into single pattern definition ...
20943         ("*<shift>di3_31<addr_style_op><masked_op>"): New pattern.
20944         ("*<shift><mode>3", "*<shift><mode>3_and"): Merge into single
20945         pattern definition ...
20946         ("*<shift><mode>3<addr_style_op><masked_op>"): New pattern.
20947         * config/s390/subst.md: Add ashift and lshiftrt to SUBST
20948         iterator.
20950 2016-03-01  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
20952         * config/s390/predicates.md (const_int_6bitset_operand): New
20953         predicate.
20954         * config/s390/s390.md: Include subst.md.
20955         ("rotl<mode>3"): New expander.
20956         ("rotl<mode>3", "*rotl<mode>3_and"): Merge insn definitions into
20957         ...
20958         ("*rotl<mode>3<addr_style_op><masked_op>"): New insn definition.
20959         * config/s390/subst.md: New file.
20961 2016-03-01  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
20963         * config/s390/s390.md ("op_type", "atype", "length" attributes):
20964         Remove RRR type.  It doesn't really exist.
20965         ("RRer", "f0", "v0", "vf", "vd", "op1", "Rf"): Remove mode
20966         attributes.
20967         ("BFP", "DFP", "nDSF", "nDFDI"): Add mode attributes.
20968         ("*cmp<mode>_ccs", "floatdi<mode>2", "add<mode>3")
20969         ("*add<mode>3_cc", "*add<mode>3_cconly", "sub<mode>3")
20970         ("*sub<mode>3_cc", "*sub<mode>3_cconly", "mul<mode>3")
20971         ("fma<mode>4", "fms<mode>4", "div<mode>3", "*neg<mode>2")
20972         ("*abs<mode>2", "*negabs<mode>2", "sqrt<mode>2"): Override
20973         `enabled' attribute.
20975 2016-03-01  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
20977         * gensupport.c (process_substs_on_one_elem): Split loop to
20978         complete mark_operands_used_in_match_dup on all expressions in the
20979         vector first.
20980         (adjust_operands_numbers): Inline into process_substs_on_one_elem
20981         and remove function.
20983 2016-02-29  Eric Botcazou  <ebotcazou@adacore.com>
20985         PR target/69706
20986         * config/sparc/sparc.c (NWORDS_UP): Rename to...
20987         (CEIL_NWORDS): ...this.  Use CEIL macro.
20988         (compute_fp_layout): Adjust to above renaming.
20989         (function_arg_union_value): Likewise.
20990         (sparc_arg_partial_bytes): Likewise.
20991         (sparc_function_arg_advance): Likewise.
20993 2016-02-29  Jeff Law  <law@redhat.com>
20995         PR tree-optimization/70005
20996         * tree-ssa-uncprop.c (associate_equivalences_with_edges): Handle case
20997         where an object with a boolean range is compared against a value
20998         outside [0..1].
21000         PR tree-optimization/69999
21001         * gimple-ssa-split-paths.c (split_paths): When duplicating a block
21002         with an outgoing edge marked with EDGE_IRREDUCIBLE_LOOP, schedule
21003         loop cleanups.
21005 2016-02-29  Richard Biener  <rguenther@suse.de>
21007         PR tree-optimization/69994
21008         * tree-ssa-reassoc.c (gimple_nop_conversion_p): New function.
21009         (get_unary_op): Look through nop conversions.
21010         (ops_equal_values_p): New function, look for equality diregarding
21011         nop conversions.
21012         (eliminate_plus_minus_pair): Use ops_equal_values_p
21013         (repropagate_negates): Do not use get_unary_op here.
21015 2016-02-29  Martin Liska  <mliska@suse.cz>
21017         * system.h: Poison ENABLE_CHECKING macro.
21019 2016-02-29  Martin Liska  <mliska@suse.cz>
21021         * hsa-gen.c (gen_body_from_gimple): Dump only if TDF_DETAILS
21022         is presented in dump flags.
21023         * hsa-regalloc.c (linear_scan_regalloc): Likewise.
21024         (hsa_regalloc): Likewise.
21026 2016-02-19  Richard Biener  <rguenther@suse.de>
21028         PR tree-optimization/69980
21029         * tree-vect-slp.c (vect_attempt_slp_rearrange_stmts): Update
21030         permutation of those we need to keep.
21032 2016-02-29  Eric Botcazou  <ebotcazou@adacore.com>
21034         PR target/69706
21035         * config/sparc/sparc.c (ROUND_ADVANCE): Rename to...
21036         (NWORDS_UP): ...this
21037         (init_cumulative_args): Minor tweaks.
21038         (sparc_promote_function_mode): Likewise.
21039         (scan_record_type): Delete.
21040         (traverse_record_type): New function template.
21041         (classify_data_t): New structure type.
21042         (classify_registers): New inline function.
21043         (function_arg_slotno): In 64-bit mode, bail out early if FP slots are
21044         exhausted.  Instantiate traverse_record_type on classify_registers and
21045         deal with the case of a structure passed in slot #15 with no FP field
21046         in the first word.
21047         (assign_data_t): New structure type.
21048         (compute_int_layout): New static function.
21049         (compute_fp_layout): Likewise.
21050         (count_registers): New inline function.
21051         (assign_int_registers): New static function.
21052         (assign_fp_registers): Likewise.
21053         (assign_registers): New inline function.
21054         (function_arg_record_value_1): Delete.
21055         (function_arg_record_value_2): Likewise.
21056         (function_arg_record_value_3): Likewise.
21057         (function_arg_record_value): Adjust to above changes.  Instantiate
21058         traverse_record_type on count_registers to first count the number of
21059         registers to be used and then on assign_registers to assign them.
21060         (function_arg_union_value): Adjust to above renaming.
21061         (sparc_function_arg_1); Minor tweaks.  Remove commented out code.
21062         (sparc_arg_partial_bytes): Adjust to above renaming.  Deal with the
21063         case of a structure passed in slot #15
21064         (sparc_function_arg_advance): Likewise.
21065         (function_arg_padding): Minor tweak.
21067 2016-02-29  Richard Biener  <rguenther@suse.de>
21069         PR tree-optimization/69720
21070         * tree-vect-loop.c (get_initial_def_for_reduction): Avoid
21071         the adjustment_def path for possibly vectorized defs.
21072         (vect_create_epilog_for_reduction): Handle vectorized initial
21073         defs properly.
21075 2016-02-28  Eric Botcazou  <ebotcazou@adacore.com>
21077         * config/i386/cygming.h (STACK_REALIGN_DEFAULT): Define.
21079 2016-02-27  Jeff Law  <law@redhat.com>
21081         Revert
21082         2016-02-26  Richard Biener  <rguenther@suse.de>
21083                     Jeff Law  <law@redhat.com>
21085         PR tree-optimization/69740
21086         * cfghooks.c (remove_edge): Request loop fixups if we delete
21087         an edge that might turn an irreducible loop into a natural
21088         loop.
21090 2016-02-27  Jakub Jelinek  <jakub@redhat.com>
21092         PR rtl-optimization/69896
21093         * tree-vect-generic.c (get_compute_type): Avoid single element
21094         vector types.
21096 2016-02-26  Evandro Menezes  <e.menezes@samsung.com>
21098         Rename the AArch64 tuning option and related functions to enable the
21099         Newton series for the reciprocal square root to reflect its
21100         approximative characteristic.
21102         * config/aarch64/aarch64-protos.h (aarch64_emit_swrsqrt): Rename
21103         function to "aarch64_emit_approx_rsqrt".
21104         * config/aarch64/aarch64-tuning-flags.def: Rename tuning flag to
21105         AARCH64_EXTRA_TUNE_APPROX_RSQRT.
21106         * config/aarch64/aarch64.c (exynosm1_tunigs): Use new flag name.
21107         (xgene1_tunings): Likewise.
21108         (use_rsqrt_p): Likewise.
21109         (aarch64_emit_swrsqrt): Use new function name.
21110         * config/aarch64/aarch64-simd.md (aarch64_rsqrts_*): Likewise.
21111         * config/aarch64/aarch64.opt (mlow-precision-recip-sqrt): Reword the
21112         text explaining this option.
21113         * doc/invoke.texi (-mlow-precision-recip-sqrt): Likewise.
21115 2016-02-26  Jakub Jelinek  <jakub@redhat.com>
21117         PR target/69969
21118         * config/rs6000/rs6000.c (rs6000_option_override_internal): Don't
21119         complain about -mallow-movmisalign without -mvsx if
21120         TARGET_ALLOW_MOVMISALIGN was not set explicitly.
21122 2016-02-26  Joel Sherrill  <joel@rtems.org>
21124         * config.gcc: Add x86_64-*-rtems*.
21125         * config/i386/rtems-64.h: New file.
21127 2016-02-26  Joel Sherrill  <joel@rtems.org>
21129         * config.gcc: Add aarch64-*-rtems*.
21130         * config/aarch64/rtems.h: New file.
21132 2016-02-26  Segher Boessenkool  <segher@kernel.crashing.org>
21134         PR target/69946
21135         * config/rs6000/rs6000.c (rs6000_insn_for_shift_mask): Print rlwinm
21136         shift amount using %h.  Add comment.
21138 2016-02-26  Richard Biener  <rguenther@suse.de>
21139             Jeff Law  <law@redhat.com>
21141         PR tree-optimization/69740
21142         * cfghooks.c (remove_edge): Request loop fixups if we delete
21143         an edge that might turn an irreducible loop into a natural
21144         loop.
21146 2016-02-26  Martin Jambor  <mjambor@suse.cz>
21148         PR middle-end/69920
21149         * tree-sra.c (sra_modify_assign): Do not remove loads of
21150         uninitialized aggregates to SSA_NAMEs.
21152 2016-02-26  Richard Henderson  <rth@redhat.com>
21154         PR target/69709
21155         * config/s390/s390.md (risbg and risbgn splitters): Allocate new
21156         pseudo in case the target rtx matches the source of the left
21157         shift.
21159 2016-02-26  Martin Jambor  <mjambor@suse.cz>
21161         PR hsa/69568
21162         * hsa.h (hsa_type_packed_p): Declare.
21163         * hsa.c (hsa_type_packed_p): New function.
21164         * hsa-gen.c (mem_type_for_type): Use unsigned type for packed
21165         loads.
21166         (gen_hsa_insns_for_store): Use hsa_type_packed_p.
21167         * hsa-brig.c (emit_basic_insn): Likewise.
21169 2016-02-26  Martin Jambor  <mjambor@suse.cz>
21171         pr hsa/69674
21172         * hsa-gen.c (gen_hsa_phi_from_gimple_phi): Use proper hsa type for
21173         pointers.
21174         (gen_hsa_addr): Allow integer constants in TMR_INDEX2.
21176 2016-02-26  Martin Jambor  <mjambor@suse.cz>
21178         * hsa.h (is_a_helper): New overload for hsa_op_immed for
21179         hsa_op_with_type operands.
21180         (hsa_unsigned_type_for_type): Declare.
21181         * hsa.c (hsa_unsigned_type_for_type): New function.
21182         * hsa-gen.c (gen_hsa_binary_operation): Use hsa_unsigned_type_for_type.
21183         (gen_hsa_insns_for_operation_assignment): Satisfy constrains of
21184         the finalizer.  Do not emit extra move.
21186 2016-02-26  Martin Jambor  <mjambor@suse.cz>
21188         * hsa-gen.c (gen_hsa_ternary_atomic_for_builtin): Fail in presence of
21189         atomic operations in private segment.
21191 2016-02-26  Martin Jambor  <mjambor@suse.cz>
21193         * omp-low.c (grid_find_ungridifiable_statement): Store problematic
21194         statements to wi->info.  Also disallow omp simd constructs.
21195         (grid_target_follows_gridifiable_pattern): Use wi.info to dump reason
21196         for not gridifying.  Dump special string for omp_for.
21198 2016-02-26  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
21200         PR target/69245
21201         * config/aarch64/aarch64.c (aarch64_set_current_function):
21202         Save/restore target globals when switching to
21203         target_option_default_node.
21205 2016-02-26  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
21207         PR target/69613
21208         * config/aarch64/aarch64.c (aarch64_shift_truncation_mask):
21209         Return 0 if !SHIFT_COUNT_TRUNCATED.
21211 2016-02-26  Jakub Jelinek  <jakub@redhat.com>
21212             Eric Botcazou  <ebotcazou@adacore.com>
21214         PR rtl-optimization/69891
21215         * dse.c (scan_insn): If we can't figure out memset arguments
21216         or they are non-constant, call clear_rhs_from_active_local_stores.
21218 2016-02-26  Martin Liska  <mliska@suse.cz>
21220         * doc/extend.texi: Mention clog10, clog10f an clog10l
21221         in Builtins section.
21223 2016-02-26  Martin Liska  <mliska@suse.cz>
21225         * dwarf2out.c (new_loc_descr): Replace ENABLE_CHECKING with
21226         CHECKING_P.
21227         (resolve_args_picking_1): Likewise.
21228         * dwarf2out.h (struct GTY): Likewise.
21230 2016-02-26  Martin Liska  <mliska@suse.cz>
21232         * hsa-gen.c (generate_hsa): Replace ENABLE_CHECKING macro
21233         with flag_checking.
21234         * hsa-regalloc.c (linear_scan_regalloc): Likewise.
21236 2016-02-26  Markus Trippelsdorf  <markus@trippelsdorf.de>
21237             Martin Liska  <mliska@suse.cz>
21239         * doc/install.texi: Mention --enable-valgrind-annotations.
21241 2016-02-26  Richard Biener  <rguenther@suse.de>
21243         PR tree-optimization/69551
21244         * tree-ssa-structalias.c (get_constraint_for_ssa_var): When
21245         looking through aliases adjust DECL_PT_UID to refer to the
21246         ultimate alias target.
21248 2016-02-25  Martin Liska  <mliska@suse.cz>
21250         PR middle-end/69919
21251         * alloc-pool.c (after_memory_report): New variable.
21252         * alloc-pool.h (base_pool_allocator ::release): Do not use
21253         the infrastructure if after_memory_report.
21254         * toplev.c (toplev::main): Mark after memory report.
21256 2016-02-25  Richard Biener  <rguenther@suse.de>
21258         PR tree-optimization/48795
21259         * tree-vrp.c (check_array_ref): Use array_at_struct_end_p.
21261 2016-02-25  Ilya Verbin  <ilya.verbin@intel.com>
21263         PR driver/68463
21264         * config/gnu-user.h (CRTOFFLOADBEGIN): Define.  Add crtoffloadbegin.o if
21265         offloading is enabled and -fopenacc or -fopenmp is specified.
21266         (CRTOFFLOADEND): Likewise.
21267         (GNU_USER_TARGET_STARTFILE_SPEC): Add CRTOFFLOADBEGIN.
21268         (GNU_USER_TARGET_ENDFILE_SPEC): Add CRTOFFLOADEND.
21269         * lto-wrapper.c (offloadbegin, offloadend): Remove static vars.
21270         (offload_objects_file_name): New static var.
21271         (tool_cleanup): Remove offload_objects_file_name file.
21272         (find_offloadbeginend): Replace with ...
21273         (find_crtoffloadtable): ... this.
21274         (run_gcc): Remove offload_argc and offload_argv.
21275         Get offload_objects_file_name from -foffload-objects=... option.
21276         Read names of object files with offload from this file, pass them to
21277         compile_images_for_offload_targets.  Don't call find_offloadbeginend and
21278         don't pass offloadbegin and offloadend to the linker.  Don't pass
21279         offload non-LTO files to the linker, because now they're not claimed.
21281 2016-02-25  Jan Hubicka  <hubicka@ucw.cz>
21283         PR ipa/69630
21284         * ipa-devirt.c (possible_polymorphic_call_targets): Do not ICE
21285         on builtin_unreachable.
21287 2016-02-25  Jakub Jelinek  <jakub@redhat.com>
21289         PR rtl-optimization/69896
21290         * regcprop.c: Include cfgrtl.h.
21291         (copyprop_hardreg_forward_1): If noop_p insn uses narrower
21292         than remembered mode, either delete it (if noop_move_p), or
21293         treat like copy_p but not noop_p instruction.
21295 2016-02-24  Jakub Jelinek  <jakub@redhat.com>
21297         PR debug/69705
21298         * dwarf2out.c (gen_variable_die): Work around buggy LTO
21299         - allow NULL decl for Fortran DW_TAG_common_block variables.
21301 2016-02-24  Jason Merrill  <jason@redhat.com>
21303         * common.opt (flifetime-dse): Add -flifetime-dse=1.
21305 2016-02-24  Richard Biener  <rguenther@suse.de>
21306             Jakub Jelinek  <jakub@redhat.com>
21308         PR middle-end/69760
21309         * tree-scalar-evolution.c (interpret_rhs_expr): Re-write
21310         conditionally executed ops to well-defined overflow behavior.
21312 2016-02-24  Jakub Jelinek  <jakub@redhat.com>
21314         PR middle-end/69915
21315         * tree.c (build_vector_from_ctor): Fix handling of VECTOR_CST
21316         elements.
21318 2016-02-24  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
21320         PR rtl-optimization/69886
21321         * gcse.c (can_assign_to_reg_without_clobbers_p): Accept mode
21322         argument.  Use it when checking validity of set instructions.
21323         (want_to_gcse_p): Pass mode to can_assign_to_reg_without_clobbers_p.
21324         (compute_ld_motion_mems): Update can_assign_to_reg_without_clobbers_p
21325         callsite.
21326         * rtl.h (can_assign_to_reg_without_clobbers_p): Update prototype.
21327         * store-motion.c (find_moveable_store): Update
21328         can_assign_to_reg_without_clobbers_p callsite.
21330 2016-02-24  Richard Biener  <rguenther@suse.de>
21332         PR middle-end/68963
21333         * tree-ssa-loop-niter.c (derive_constant_upper_bound_ops): Fix
21334         bogus check.
21335         (record_nonwrapping_iv): Do not fall back to the low/high bound
21336         for non-constant IV bases if the stmt is not always executed.
21338 2016-02-24  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
21340         * config/arm/arm-cores.def (cortex-a32): New entry.
21341         * config/arm/arm-tables.opt: Regenerate.
21342         * config/arm/arm-tune.md: Regenerate.
21343         * config/arm/bpabi.h (BE8_LINK_SPEC): Add mcpu=cortex-a32.
21344         * config/arm/t-aprofile: Handle mcpu=cortex-a32.
21345         * doc/invoke.texi (ARM Options): Document cortex-a32 as value
21346         for -mcpu and -mtune.
21348 2016-02-24  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
21350         PR target/69875
21351         * config/arm/arm.h (TARGET_HAVE_LPAE): Define.
21352         * config/arm/unspecs.md (VUNSPEC_LDRD_ATOMIC): New value.
21353         * config/arm/sync.md (arm_atomic_loaddi2_ldrd): New pattern.
21354         (atomic_loaddi_1): Delete.
21355         (atomic_loaddi): Rewrite expander using the above changes.
21357 2016-02-24  Jakub Jelinek  <jakub@redhat.com>
21359         PR c/69918
21360         * params.def (PARAM_MAX_SSA_NAME_QUERY_DEPTH): Bump default from
21361         2 to 3.
21363 2016-02-24  Jakub Jelinek  <jakub@redhat.com>
21364             Richard Biener  <rguenth@suse.de>
21366         PR middle-end/69909
21367         * expr.c (expand_expr_real_1) <normal_inner_ref>: Avoid
21368         set_mem_attributes if tem is SSA_NAME which got expanded
21369         as a MEM.
21371 2016-02-24  Richard Biener  <rguenther@suse.de>
21373         PR tree-optimization/69907
21374         * tree-vect-stmts.c (vectorizable_load): Check for gaps at the
21375         end of permutations for BB vectorization.
21377 2016-02-24  Christian Bruel  <christian.bruel@st.com>
21379         * config/arm/arm-c.c (arm_option_override): Initialize
21380         target_option_current_node.
21381         * config/arm/arm.c (arm_pragma_target_parse): Replace
21382         build_target_option_node call by target_option_current_node.
21383         Set target_option_current_node.
21384         Fix comments.
21386 2016-02-23  David Edelsohn  <dje.gcc@gmail.com>
21388         PR target/69810
21389         * config/rs6000/rs6000.md (zero_extendqi<mode>2_dot): Convert from
21390         define_insn_and_split to define_insn.
21391         (zero_extendqi<mode>2_dot2): Same.
21392         (extendqi<mode>2_dot): Same.
21393         (extendqi<mode>2_dot2): Same.
21395 2016-02-23  Evandro Menezes  <e.menezes@samsung.com>
21397         * config/arm/exynos-m1.md: Change cost of STP, fix bypass for stores
21398         and add bypass for AES{D,E} and AESMC pairs.
21399         * config/aarch64/aarch64.c (exynosm1_tunings): Enable fusion of AES{D,E}
21400         and AESMC pairs.
21402 2016-02-23  Evandro Menezes  <e.menezes@samsung.com>
21404         * config/aarch64/aarch64.c (exynosm1_tunings): Enable the Newton
21405         series for reciprocal square root in Exynos M1.
21407 2016-02-23  Martin Sebor  <msebor@redhat.com>
21409         PR c/69759
21410         * doc/extend.texi (Other Builtins): Document __builtin_alloca and
21411         __builtin_alloca_with_align.
21413 2016-02-23  Richard Henderson  <rth@redhat.com>
21415         * config/i386/i386-c.c (ix86_target_macros): Remove __SEG_TLS.
21416         (ix86_register_pragmas): Remove __seg_tls.
21417         * config/i386/i386-protos.h (ADDR_SPACE_SEG_TLS): Remove.
21418         * config/i386/i386.c (ix86_print_operand_address_as): Don't handle it.
21419         (ix86_addr_space_subset_p, TARGET_ADDR_SPACE_SUBSET_P): Remove.
21420         (ix86_addr_space_convert, TARGET_ADDR_SPACE_CONVERT): Remove.
21421         (ix86_addr_space_debug, TARGET_ADDR_SPACE_DEBUG): Remove.
21422         * doc/extend.texi (__seg_tls): Remove item.
21424 2016-02-23  Richard Biener  <rguenther@suse.de>
21426         * alloc-pool.h (struct allocation_object): Make id member
21427         conditional on CHECKING_P again.
21428         (get_instance): Adjust.
21429         (base_pool_allocator): Likewise.
21431 2016-02-23  Thomas Schwinge  <thomas@codesourcery.com>
21433         * tree-parloops.c (create_parallel_loop, gen_parallel_loop)
21434         (parallelize_loops): In OpenACC kernels mode, set n_threads to
21435         zero.
21436         (pass_parallelize_loops::gate): In OpenACC kernels mode, gate on
21437         flag_openacc.
21438         * tree-ssa-loop.c (gate_oacc_kernels): Likewise.
21440 2016-02-23  Richard Biener  <rguenther@suse.de>
21442         * mem-stats.h (struct mem_usage): Use PRIu64 for printing size_t.
21443         * bitmap.h (struct bitmap_usage): Likewise.
21444         (bitmap_move): Declare.
21445         * bitmap.c (register_overhead): Take size_t argument.
21446         (bitmap_move): New function.
21447         * df-problems.c (df_rd_transfer_function): Use bitmap_move
21448         to properly account overhead.
21449         * tree.c (free_node): Use tree_size.
21451 2016-02-23  Jakub Jelinek  <jakub@redhat.com>
21453         PR c++/69902
21454         * fold-const.c (fold_truth_not_expr): Propagate TREE_NO_WARNING
21455         when inverting comparison.
21457         PR c/69900
21458         * common.opt (Wunreachable-code): Add Warning flag.
21460 2016-02-23  Mark Wielaard  <mjw@redhat.com>
21461             Jakub Jelinek  <jakub@redhat.com>
21463         PR c/69911
21464         * cgraphunit.c (check_global_declaration): Check main_input_filename
21465         and DECL_SOURCE_FILE are not NULL.
21467 2016-02-23  Martin Jambor  <mjambor@suse.cz>
21469         PR tree-optimization/69666
21470         * tree-sra.c (sra_modify_assign): Do not attempt to create
21471         default_def replacements for unscalarizable regions.
21473 2016-02-20  Mark Wielaard  <mjw@redhat.com>
21475         PR c/28901
21476         * cgraphunit.c (check_global_declaration): Check level of
21477         warn_unused_const_variable and main_input_filename.
21478         * doc/invoke.texi (Warning Options): Add -Wunused-const-variable=.
21479         (-Wunused-variable): For C implies -Wunused-const-variable=1.
21480         (-Wunused-const-variable): Explain levels 1 and 2.
21482 2016-02-22  Jakub Jelinek  <jakub@redhat.com>
21484         PR target/69888
21485         * config/i386/i386.c (decide_alg): Ensure we don't recurse with
21486         identical arguments.  Formatting and spelling fixes.
21488         PR target/69885
21489         * doc/md.texi (ashl@var{m}3): Document that mode of operand 2 must
21490         be specified.
21492         PR target/69894
21493         PR target/69895
21494         * config/m68k/t-opts (OPTIONS_H_EXTRA): Add m68k-microarchs.def
21495         and m68k-devices.def.
21496         * config/c6x/t-c6x (OPTIONS_H_EXTRA): Add c6x-isas.def.
21497         * config/aarch64/t-aarch64 (OPTIONS_H_EXTRA): Add aarch64-arches.def.
21499 2016-02-22  Cesar Philippidis  <cesar@codesourcery.com>
21501         * config/nvptx/nvptx.c (nvptx_gen_shuffle): Add support for QImode
21502         and HImode registers.
21504 2016-02-22  Richard Biener  <rguenther@suse.de>
21506         PR tree-optimization/69882
21507         * tree-vect-slp.c (vect_attempt_slp_rearrange_stmts): Properly
21508         preserve permutations present because of gaps.
21509         (vect_supported_load_permutation_p): Always continue checking
21510         permutations after vect_attempt_slp_rearrange_stmts.
21512 2016-02-22  Bin Cheng  <bin.cheng@arm.com>
21514         * tree-vect-loop.c (vect_estimate_min_profitable_iters): Dump
21515         min_profitable_estimate, rather than min_profitable_iters.
21517 2016-02-22  Jakub Jelinek  <jakub@redhat.com>
21519         PR target/69885
21520         * config/m68k/m68k.md (ashldi3, ashrdi3, lshrdi3): Use
21521         SImode for last match_operand.
21523 2016-02-22  Martin Liska  <mliska@suse.cz>
21525         * hsa-gen.c (gen_hsa_clrsb): In case of zero value,
21526         return bitsize - 1 as the return value.
21528 2016-02-22  Oleg Endo  <olegendo@gcc.gnu.org>
21530         PR target/69806
21531         PR target/54089
21532         * config/sh/sh.c (sh_lshrsi_clobbers_t_reg_p, sh_dynamicalize_shift_p):
21533         Handle negative shift counts.
21534         * config/sh/sh.md (ashlsi3, lshrsi3_n, lshrsi3_n_clobbers_t): Don't use
21535         force_reg on the shift constant.
21536         (lshrsi3): Likewise.  Expand into lshrsi3_n* instead of lshrsi3_d.
21537         (lshrsi3_d): Handle negative shift counts.
21539 2016-02-22  Richard Biener  <rguenther@suse.de>
21540             Tom de Vries  <tom@codesourcery.com>
21542         * graph.c: Include dumpfile.h.
21543         (print_graph_cfg): Split into three overloads.
21544         * gdbhooks.py (class DotFn): Add and instantiate, adding command dot-fn.
21546 2016-02-22  Tom de Vries  <tom@codesourcery.com>
21548         * gdbhooks.py (class DumpFn): Add and instantiate, adding command
21549         dump-fn.
21551 2016-02-22  Richard Biener  <rguenther@suse.de>
21553         PR ipa/37448
21554         * ipa-inline-transform.c (inline_call): When not updating
21555         overall summaries adjust self size by the growth estimate.
21556         * ipa-inline.c (inline_to_all_callers_1): Add to the callers
21557         hash-set, do not update overall summaries here.  Renamed from ...
21558         (inline_to_all_callers): ... this which is now wrapping the
21559         above and performing delayed overall summary update.
21560         (early_inline_small_functions): Delay updating of the overall
21561         summary.
21563 2016-02-21  Markus Trippelsdorf  <markus@trippelsdorf.de>
21565         * tree-chkp.c (chkp_mark_invalid_bounds_walker): Initialize
21566         variable.
21568 2016-02-19  Jakub Jelinek  <jakub@redhat.com>
21570         PR driver/69805
21571         * gcc.c (LINK_COMMAND_SPEC, GOMP_SELF_SPECS): Use
21572         :%* in %:gt() argument.
21573         (greater_than_spec_func): Adjust for expecting only numbers,
21574         if there are more than two numbers, compare the last two.
21576 2016-02-19  Jonathan Wakely  <jwakely@redhat.com>
21578         * doc/invoke.texi (C++ Dialect Options): Clarify interaction of
21579         -Wnarrowing with -std.
21581 2016-02-19  Jakub Jelinek  <jakub@redhat.com>
21583         PR c++/69851
21584         * expr.c (store_field): Don't use bit-field path if exp is
21585         COMPONENT_REF with TREE_ADDRESSABLE type, where TYPE_SIZE is
21586         different from bitsize, but DECL_SIZE of FIELD_DECL is bitsize
21587         and the assignment can be performed by bitwise copy.  Formatting
21588         fix.
21590         PR middle-end/69838
21591         * lra.c (lra_process_new_insns): If non-call exceptions are enabled,
21592         call copy_reg_eh_region_note_forward on before and/or after sequences
21593         and remove note from insn if it no longer can throw.
21595         PR target/69820
21596         * config/i386/sse.md (VI_512): Only include V64QImode and V32HImode
21597         if TARGET_AVX512BW.
21599 2016-02-19  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
21601         * config/s390/vector.md: Add missing commutative operand markers
21602         to the patterns which qualify for one.
21603         * config/s390/vx-builtins.md: Likewise.
21605 2016-02-19  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
21607         * config/s390/vector.md (VI, VI_QHS): Add single element vector
21608         types to mode iterators.
21609         (vec_double): ... and mode attribute.
21610         * config/s390/vx-builtins.md (non_vec_int): Likewise.
21612 2016-02-19  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
21614         * config/s390/vector.md ("<ti*>add<mode>3", "<ti*>sub<mode>3"):
21615         Change the predicate of op2 from nonimmediate to general and let
21616         reload fix it if necessary.
21618 2016-02-19  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
21620         * config/s390/vecintrin.h (vec_sub_u128): Define missing macro.
21622 2016-02-19  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
21624         * config/s390/s390.c (s390_expand_vcond): Use the compare operand
21625         mode.
21627 2016-02-19  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
21629         * config/s390/s390-protos.h: Add s390_expand_vec_movstr prototype.
21630         * config/s390/s390.c (s390_expand_vec_movstr): New function.
21631         * config/s390/s390.md ("movstr<P:mode>"): Call
21632         s390_expand_vec_movstr.
21634 2016-02-19  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
21636         * config/s390/s390.md: Add missing output modifier for operand 1
21637         to print it as address properly.
21639 2016-02-19  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
21641         * config/s390/2827.md: Rename ooo_* insn attributes to zEC12_*.
21642         * config/s390/2964.md: New file.
21643         * config/s390/s390.c (s390_get_sched_attrmask): Use the right set
21644         of insn grouping attributes depending on the CPU level.
21645         (s390_get_unit_mask): New function.
21646         (s390_sched_score): Remove the OOO from the scheduling macros.
21647         Add loop to calculate a score for the instruction mix.
21648         (s390_sched_reorder): Likewise plus improve debug output.
21649         (s390_sched_variable_issue): Rename macros as above.  Calculate
21650         the unit distances after actually scheduling an insn.  Improve
21651         debug output.
21652         (s390_sched_init): Clear last_scheduled_unit_distance array.
21653         * config/s390/s390.md: Include 2964.md.
21655 2016-02-18  Jakub Jelinek  <jakub@redhat.com>
21657         PR target/69671
21658         * config/i386/sse.md (*<floatsuffix>floatv2div2sf2_mask_1,
21659         *avx512vl_<code>v2div2qi2_mask_1, *avx512vl_<code><mode>v4qi2_mask_1,
21660         *avx512vl_<code><mode>v8qi2_mask_1, *avx512vl_<code><mode>v4hi2_mask_1,
21661         *avx512vl_<code>v2div2hi2_mask_1, *avx512vl_<code>v2div2si2_mask_1,
21662         *avx512f_<code>v8div16qi2_mask_1): New insns.
21664 2016-02-18  Michael Meissner  <meissner@linux.vnet.ibm.com>
21666         PR target/68404
21667         * config/rs6000/predicates.md (fusion_gpr_addis): Revert
21668         2016-02-09 change.
21670         * config/rs6000/rs6000.md (fusion_gpr_load_<mode>): Remove
21671         earlyclobber from target.  Use wF constraint for fused memory
21672         address.
21673         (fusion_gpr_<P:mode>_<GPR_FUSION:mode>_load): Likewise.
21675 2016-02-18  Jakub Jelinek  <jakub@redhat.com>
21676             Martin Liska  <mliska@suse.cz>
21678         PR sanitizer/69863
21679         * cfgexpand.c (asan_sanitize_stack_p): New function.
21680         (partition_stack_vars): Use the function.
21681         (expand_stack_vars): Likewise.
21682         (defer_stack_allocation): Likewise.
21683         (expand_used_vars): Likewise.
21685 2016-02-18  Richard Biener  <rguenther@suse.de>
21687         PR middle-end/69553
21688         * fold-const.c (operand_equal_p): Properly compare offsets for
21689         IMAGPART_EXPR and ARRAY_REF.
21691 2016-02-18  Nick Clifton  <nickc@redhat.com>
21693         PR target/62254
21694         PR target/69610
21695         * config/arm/arm.c (arm_option_override_internal): Disable
21696         interworking if the target does not support thumb instructions.
21697         (arm_reload_in_hi): Handle the case where a register to register
21698         move needs reloading because there is no simple pattern to handle
21699         it.
21700         (arm_reload_out_hi): Likewise.
21702 2016-02-18  Richard Biener  <rguenther@suse.de>
21704         PR middle-end/69854
21705         * match.pd: Don't use fold_binary or fold_unary for folding
21706         constants.
21708 2016-02-17  Jakub Jelinek  <jakub@redhat.com>
21710         PR c++/69850
21711         * gimplify.c (gimplify_cond_expr): Call gimple_set_no_warning
21712         on the cond_stmt from TREE_NO_WARNING on COND_EXPR_COND.
21713         * gimple-ssa-nonnull-compare.c (do_warn_nonnull_compare): Don't
21714         warn on gimple_no_warning_p statements.
21716 2016-02-17  Jonathan Wakely  <jwakely@redhat.com>
21718         * doc/extend.texi (C++ Attributes): Correct description of
21719         warn_unused type attribute.
21721 2016-02-17  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
21723         * config/rs6000/altivec.md (*altivec_lvxl_<mode>_internal): Output
21724         correct instruction.
21726 2016-02-17  Richard Biener  <rguenther@suse.de>
21728         PR rtl-optimization/69609
21729         * bb-reorder.c (struct bbro_basic_block_data): Add priority member.
21730         (find_traces_1_round): When ending a trace update cached priority
21731         of successors.
21732         (bb_to_key): Use cached priority when available.
21733         (copy_bb): Initialize cached priority.
21734         (reorder_basic_blocks_software_trace_cache): Likewise.
21736 2016-02-17  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
21738         PR target/69161
21739         * config/aarch64/predicates.md (aarch64_comparison_operator_mode):
21740         New predicate.
21741         (aarch64_comparison_operator): Break overly long line into two.
21742         (aarch64_comparison_operation): Likewise.
21743         * config/aarch64/aarch64.md (cstorecc4): Use
21744         aarch64_comparison_operator_mode instead of
21745         aarch64_comparison_operator.
21746         (cstore<mode>4): Likewise.
21747         (aarch64_cstore<mode>): Likewise.
21748         (*cstoresi_insn_uxtw): Likewise.
21749         (cstore<mode>_neg): Likewise.
21750         (*cstoresi_neg_uxtw): Likewise.
21752 2016-02-17  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
21754         PR target/69161
21755         * config/arm/predicates.md (arm_comparison_operator_mode):
21756         New predicate.
21757         * config/arm/arm.md (*mov_scc): Use arm_comparison_operator_mode
21758         instead of arm_comparison_operator.
21759         (*mov_negscc): Likewise.
21760         (*mov_notscc): Likewise.
21761         * config/arm/thumb2.md (*thumb2_mov_scc): Likewise.
21762         (*thumb2_mov_negscc): Likewise.
21763         (*thumb2_mov_negscc_strict_it): Likewise.
21764         (*thumb2_mov_notscc): Likewise.
21765         (*thumb2_mov_notscc_strict_it): Likewise.
21767 2016-02-17  Wilco Dijkstra  <wdijkstr@arm.com>
21769         * config/aarch64/aarch64.c (aarch64_internal_mov_immediate):
21770         Add missing return.
21772 2016-02-17  Eric Botcazou  <ebotcazou@adacore.com>
21774         * config/visium/visium.c (machine_libfunc_index): New enum.
21775         (machine_libfuncs): New structure.
21776         (visium_libfuncs): New static variable.
21777         (TARGET_INIT_LIBFUNCS): Define to...
21778         (visium_init_libfuncs): ...this.  New function.
21779         (expand_block_move_4): Use the appropriate libfunc.
21780         (expand_block_move_2): Likewise.
21781         (expand_block_move_1): Likewise.
21782         (expand_block_set_4): Likewise.
21783         (expand_block_set_2): Likewise.
21784         (expand_block_set_1): Likewise.
21785         (visium_trampoline_init): Likewise.
21787 2016-02-17  Nick Clifton  <nickc@redhat.com>
21789         * config/msp430/msp430.c (msp430_mcu_data): Sync with data from
21790         TI's devices.csv file as of March 2016.
21792 2016-02-16  Kelvin Nilsen  <kelvin@gcc.gnu.org>
21794         PR Target/48344
21795         * opts-global.c (handle_common_deferred_options): Introduce and
21796         initialize two global variables to remember command-line options
21797         specifying a stack-limiting register.
21798         * opts.h: Add extern declarations of the two new global variables.
21799         * emit-rtl.c (init_emit_once): Initialize the stack_limit_rtx
21800         variable based on the values of the two new global variables.
21802 2016-02-16  Jakub Jelinek  <jakub@redhat.com>
21804         PR c/69835
21805         * common.opt (Wnonnull-compare): New warning.
21806         * doc/invoke.texi (-Wnonnull): Remove text about comparison
21807         of arguments against NULL.
21808         (-Wnonnull-compare): Document.
21809         * Makefile.in (OBJS): Add gimple-ssa-nonnull-compare.o.
21810         * tree-pass.h (make_pass_warn_nonnull_compare): Declare.
21811         * passes.def (pass_warn_nonnull_compare): Add.
21812         * gimple-ssa-nonnull-compare.c: New file.
21814 2016-02-16  James Greenhalgh  <james.greenhalgh@arm.com>
21816         * config/aarch64/aarch64.c (cortexa57_tunings): Remove
21817         AARCH64_EXTRA_TUNE_RECIP_SQRT.
21819 2016-02-16  James Greenhalgh  <james.greenhalgh@arm.com>
21821         * config/aarch64/aarch64.c (use_rsqrt_p): Always use software
21822         reciprocal sqrt for -mlow-precision-recip-sqrt.
21824 2016-02-16  James Greenhalgh  <james.greenhalgh@arm.com>
21825             Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>
21827         * config/aarch64/aarch64.c (aarch64_expand_vector_init): Refactor,
21828         always use lane loads to construct non-constant vectors.
21830 2016-02-16  James Greenhalgh  <james.greenhalgh@arm.com>
21832         * config/aarch64/aarch64.md
21833         (arch64_sqrdml<SQRDMLH_AS:rdma_as>h_lane<mode>): Fix register
21834         constraints for operand 3.
21835         (aarch64_sqrdml<SQRDMLH_AS:rdma_as>h_laneq<mode>): Likewise.
21837 2016-02-16  Jakub Jelinek  <jakub@redhat.com>
21838             Richard Biener  <rguenther@suse.de>
21840         PR tree-optimization/69820
21841         * tree-vect-patterns.c (type_conversion_p): Return false if
21842         *orig_type is unsigned single precision or boolean.
21843         (vect_recog_dot_prod_pattern, vect_recog_widen_mult_pattern):
21844         Formatting fix.
21846 2016-02-16  Jakub Jelinek  <jakub@redhat.com>
21848         PR rtl-optimization/69764
21849         PR rtl-optimization/69771
21850         * optabs.c (expand_binop): Ensure for shift optabs invalid CONST_INT
21851         op1 is valid for GET_MODE_INNER (mode) and force it into a reg.
21853 2016-02-16  Richard Biener  <rguenther@suse.de>
21855         PR tree-optimization/69776
21856         * tree-ssa-alias.c (indirect_ref_may_alias_decl_p): Get alias
21857         sets from caller.
21858         (indirect_refs_may_alias_p): Likewise.
21859         (refs_may_alias_p_1): Pass alias sets as from ao_ref.
21860         * tree-ssa-sccvn.c (vn_reference_lookup): Also adjust vr alias-set
21861         according to tbaa_p.
21862         * tree-ssa-dom.c (lookup_avail_expr): Add tbaa_p flag.
21863         (optimize_stmt): For redundant store discovery do not allow tbaa.
21865 2016-02-16  Bernd Schmidt  <bschmidt@redhat.com>
21867         PR tree-optimization/69714
21868         * tree-ssa-math-opts.c (find_bswap_or_nop): Revert previous change.
21869         Return NULL if we have irrelevant high bytes on BIG_ENDIAN.
21871 2016-02-16  Claudiu Zissulescu  <claziss@synopsys.com>
21873         * config/arc/arc-modes.def (CC_FPU, CC_FPU_UNEQ): New modes.
21874         * config/arc/arc-opts.h (FPU_SP, FPU_SF, FPU_SC, FPU_SD, FPU_DP)
21875         (FPU_DF, FPU_DC, FPU_DD, FXP_DP): Define.
21876         * config/arc/arc.c (arc_init): Check FPU options.
21877         (get_arc_condition_code): Handle new CC_FPU* modes.
21878         (arc_select_cc_mode): Likewise.
21879         (arc_conditional_register_usage): Allow 64 bit datum into even-odd
21880         register pair only. Allow access for ARCv2 accumulator.
21881         (gen_compare_reg): Whenever we have FPU support use FPU compare
21882         instructions.
21883         (arc_reorg): Don't generate brcc insns when FPU compare
21884         instructions are involved.
21885         * config/arc/arc.h (TARGET_DPFP): Add TARGET_FP_DPAX condition.
21886         (TARGET_OPTFPE): Add condition when ARC EM can use optimized
21887         floating point emulation.
21888         (ACC_REG_FIRST, ACC_REG_LAST, ACCL_REGNO, ACCH_REGNO): Define.
21889         (REVERSE_CONDITION): Add new CC_FPU* modes.
21890         (TARGET_FP_SP_BASE): Define.
21891         (TARGET_FP_DP_BASE): Likewise.
21892         (TARGET_FP_SP_FUSED): Likewise.
21893         (TARGET_FP_DP_FUSED): Likewise.
21894         (TARGET_FP_SP_CONV): Likewise.
21895         (TARGET_FP_DP_CONV): Likewise.
21896         (TARGET_FP_SP_SQRT): Likewise.
21897         (TARGET_FP_DP_SQRT): Likewise.
21898         (TARGET_FP_DP_AX): Likewise.
21899         * config/arc/arc.md (ARCV2_ACC): New constant.
21900         (type): New fpu type attribute.
21901         (SDF): Conditional iterator.
21902         (cstore<mode>, cbranch<mode>): Change expand condition.
21903         (addsf3, subsf3, mulsf3, adddf3, subdf3, muldf3): New expands,
21904         handles FPU/FPX cases as well.
21905         * config/arc/arc.opt (mfpu): New option.
21906         * config/arc/fpx.md (addsf3_fpx, subsf3_fpx, mulsf3_fpx):
21907         Renamed.
21908         (adddf3, muldf3, subdf3): Removed.
21909         * config/arc/predicates.md (proper_comparison_operator): Recognize
21910         CC_FPU* modes.
21911         * config/arc/fpu.md: New file.
21912         * doc/invoke.texi (ARC Options): Document mfpu option.
21914 2016-02-16  Richard Biener  <rguenther@suse.de>
21916         PR rtl-optimization/69291
21917         * ifcvt.c (noce_try_store_flag_constants): Re-instantiate
21918         noce_operand_ok check.
21920 2016-02-16  Tom de Vries  <tom@codesourcery.com>
21922         PR lto/67709
21923         * omp-low.c (simd_clone_create): Remove call to
21924         symtab->call_cgraph_insertion_hooks.
21926 2016-02-16  Jakub Jelinek  <jakub@redhat.com>
21928         PR tree-optimization/69802
21929         * tree-ssa-reassoc.c (update_range_test): If op is
21930         SSA_NAME_IS_DEFAULT_DEF, give up unless tem is a positive
21931         op == 1 test of precision 1 integral op, otherwise handle
21932         that case as op itself.  Fix up formatting.
21933         (optimize_range_tests_to_bit_test, optimize_range_tests): Fix
21934         up formatting.
21936 2016-02-16  Richard Biener  <rguenther@suse.de>
21938         PR tree-optimization/69586
21939         * tree-vrp.c (register_edge_assert_for_2): Handle all integral
21940         types for conversion sources.
21942 2016-02-16  Richard Biener  <rguenther@suse.de>
21944         PR middle-end/69801
21945         * fold-const.c (operand_equal_p): For COND_EXPR zero operand
21946         mask OEP_ADDRESS_OF.
21948 2016-02-16  Alan Modra  <amodra@gmail.com>
21950         PR target/68973
21951         * config/rs6000/rs6000.md (reload_vsx_from_gprsf): Rewrite splitter.
21952         (p8_mtvsrd_df, p8_mtvsrd_sf): New.
21953         (p8_mtvsrd_1, p8_mtvsrd_2): Delete.
21954         (p8_mtvsrwz): New.
21955         (p8_mtvsrwz_1, p8_mtvsrwz_2): Delete.
21956         (p8_xxpermdi_<mode>): Take two DF inputs rather than one TF.
21957         (p8_fmrgow_<mode>): Likewise.
21958         (reload_vsx_from_gpr<mode>): Make clobber IF.  Adjust for above
21959         changes.
21960         (reload_fpr_from_gpr<mode>): Similarly. Use "d" for op0 constraint.
21961         (reload_vsx_from_gprsf): Use p8_mtvsrd_sf rather than attempting
21962         to use movdi_internal64.  Remove op0_di.
21963         * config/rs6000/vsx.md (vsx_xscvspdpn_directmove): Make op1 SFmode.
21965 2016-02-15  Evandro Menezes  <e.menezes@samsung.com>
21967         Add support for the FCCMP insn types
21969         * config/aarch64/aarch64.md (fccmp): Change insn type.
21970         (fccmpe): Likewise.
21971         * config/aarch64/thunderx.md (thunderx_fcmp): Add "fccmp{s,d}" types.
21972         * config/arm/cortex-a53.md (cortex_a53_fpalu): Likewise.
21973         * config/arm/cortex-a57.md (cortex_a57_fp_cmp): Likewise.
21974         * config/arm/xgene1.md (xgene1_fcmp): Likewise.
21975         * config/arm/exynos-m1.md (exynos_m1_fp_ccmp): New insn reservation.
21976         * config/arm/types.md (fccmps): Add new insn type.
21977         (fccmpd): Likewise.
21979 2016-02-15  Bernd Edlinger  <bernd.edlinger@hotmail.de>
21981         * alias.c (get_alias_set): Fix a typo in comment.
21983 2016-02-15  Richard Biener  <rguenther@suse.de>
21985         PR tree-optimization/69595
21986         * match.pd: Complete range test simplification to true.
21988 2016-02-15  Bernd Schmidt  <bschmidt@redhat.com>
21990         PR rtl-optimization/69648
21991         * lra-constraints.c (update_ebb_live_info): Don't remove sets of
21992         pic_offset_table_rtx.
21994         PR rtl-optimization/69752
21995         * ira.c (update_equiv_regs): When looking for more than a single SET,
21996         also take other side effects into account.
21998 2016-02-15  Marcin Kościelnicki  <koriakin@0x04.net>
22000         * config/s390/s390.c (s390_function_profiler): Add a new sequence
22001         for z900+ CPUs in 31-bit mode.
22003 2016-02-15  Marcin Kościelnicki  <koriakin@0x04.net>
22005         * common/config/s390/s390-common.c (s390_supports_split_stack):
22006         New function.
22007         (TARGET_SUPPORTS_SPLIT_STACK): New macro.
22008         * config/s390/s390-protos.h: Add s390_expand_split_stack_prologue.
22009         * config/s390/s390.c (struct machine_function): New field
22010         split_stack_varargs_pointer.
22011         (s390_register_info): Mark r12 as clobbered if it'll be used as temp
22012         in s390_emit_prologue.
22013         (s390_emit_prologue): Use r12 as temp if r1 is taken by split-stack
22014         vararg pointer.
22015         (morestack_ref): New global.
22016         (SPLIT_STACK_AVAILABLE): New macro.
22017         (s390_expand_split_stack_prologue): New function.
22018         (s390_live_on_entry): New function.
22019         (s390_va_start): Use split-stack vararg pointer if appropriate.
22020         (s390_asm_file_end): Emit the split-stack note sections.
22021         (TARGET_EXTRA_LIVE_ON_ENTRY): New macro.
22022         * config/s390/s390.md (UNSPEC_STACK_CHECK): New unspec.
22023         (UNSPECV_SPLIT_STACK_CALL): New unspec.
22024         (UNSPECV_SPLIT_STACK_DATA): New unspec.
22025         (split_stack_prologue): New expand.
22026         (split_stack_space_check): New expand.
22027         (split_stack_data): New insn.
22028         (split_stack_call): New expand.
22029         (split_stack_call_*): New insn.
22030         (split_stack_cond_call): New expand.
22031         (split_stack_cond_call_*): New insn.
22033 2016-02-15  Richard Biener  <rguenther@suse.de>
22035         PR tree-optimization/69783
22036         * tree-vect-data-refs.c (vect_prune_runtime_alias_test_list):
22037         Add trivially correct cases.
22039 2016-02-15  Tom de Vries  <tom@codesourcery.com>
22041         PR lto/69655
22042         * lto-cgraph.c (input_offload_tables): Add and handle bool parameter
22043         do_force_output.
22044         * lto-streamer.h (input_offload_tables): Add and handle bool parameter.
22046 2016-02-15  Richard Biener  <rguenther@suse.de>
22048         PR tree-optimization/69776
22049         * tree-ssa-sccvn.h (vn_reference_lookup): Adjust prototype.
22050         * tree-ssa-sccvn.c (vn_reference_lookup): Add parameter to
22051         indicate whether we can use TBAA to disambiguate against stores.
22052         Use alias-set zero if not.
22053         (visit_reference_op_store): Do not use TBAA when looking up
22054         redundant stores.
22055         * tree-ssa-pre.c (compute_avail): Use TBAA here.
22056         (eliminate_dom_walker::before_dom_children): But not when looking
22057         up redundant stores.
22059 2016-02-14  John David Anglin  <danglin@gcc.gnu.org>
22061         * config/pa/pa.md (absqi2, absghi2, bswaphi2, bswapsi2, bswapdi2): New.
22063 2016-02-14  Venkataramanan Kumar  <venkataramanan.kumar@amd.com>
22065         *  config/i386/znver1.md
22066         (znver1_pop, znver1_pop_mem,
22067         znver1_load_imov_double_store,
22068         znver1_load_imov_direct_store,
22069         znver1_load_imov_direct_load,
22070         znver1_load_imov_double_load): Add new.
22071         (znver1_insn, znver1_insn_load): Add icmov type.
22072         (znver1_sseavx_fma,
22073         znver1_sseavx_fma_load,
22074         znver1_avx256_fma,
22075         znver1_avx256_fma_load): Fix pipe usage.
22077 2016-02-14  Alan Modra  <amodra@gmail.com>
22079         PR target/68973
22080         * reload.c (find_reloads_address_1): For pre/post-inc/dec
22081         with an invalid hard reg, reload just the reg not the entire
22082         pre/post-inc/dec address expression.
22084 2016-02-13  Oleg Endo  <olegendo@gcc.gnu.org>
22086         PR target/67260
22087         * config/sh/sh.md (sibcall_value_pcrel): Replace =&k scratch reg with
22088         fixed R1_REG scratch reg.
22089         (sibcall_value_pcrel_fdpic): Likewise.
22091 2016-02-13  Oleg Endo  <olegendo@gcc.gnu.org>
22093         PR target/67636
22094         PR target/64345
22095         * config/sh/sh.md (*zero_extract_3): New insn_and_split pattern.
22097 2016-02-12  Walter Lee  <walt@tilera.com>
22099         * config/tilepro/t-tilepro: Replace CC_FOR_BUILD with CXX_FOR_BUILD.
22100         * config/tilegx/t-tilegx: Likewise.
22102 2016-02-12  David Malcolm  <dmalcolm@redhat.com>
22104         PR other/69554
22105         * diagnostic-show-locus.c (struct line_span): New struct.
22106         (layout::get_first_line): Delete.
22107         (layout::get_last_line): Delete.
22108         (layout::get_num_line_spans): New member function.
22109         (layout::get_line_span): Likewise.
22110         (layout::print_heading_for_line_span_index_p): Likewise.
22111         (layout::get_expanded_location): Likewise.
22112         (layout::calculate_line_spans): Likewise.
22113         (layout::m_first_line): Delete.
22114         (layout::m_last_line): Delete.
22115         (layout::m_line_spans): New field.
22116         (layout::layout): Update comment.  Replace m_first_line and
22117         m_last_line with m_line_spans, replacing their initialization
22118         with a call to calculate_line_spans.
22119         (diagnostic_show_locus): When printing source lines and
22120         annotations, rather than looping over a single span
22121         of lines, instead loop over each line_span within
22122         the layout, with an inner loop over the lines within them.
22123         Call the context's start_span callback when changing line spans.
22124         * diagnostic.c (diagnostic_initialize): Initialize start_span.
22125         (diagnostic_build_prefix): Break out the building of the location
22126         part of the string into...
22127         (diagnostic_get_location_text): ...this new function, rewriting
22128         it from nested ternary expressions to a sequence of "if"
22129         statements.
22130         (default_diagnostic_start_span_fn): New function.
22131         * diagnostic.h (diagnostic_start_span_fn): New typedef.
22132         (diagnostic_context::start_span): New field.
22133         (default_diagnostic_start_span_fn): New prototype.
22135 2016-02-12  David Malcolm  <dmalcolm@redhat.com>
22137         PR driver/69779
22138         * gcc.c (driver::finalize): Fix cleanup of "specs".
22140 2016-02-12  David Malcolm  <dmalcolm@redhat.com>
22142         PR driver/69265
22143         PR driver/69453
22144         * gcc.c (driver::driver): Initialize m_option_suggestions.
22145         (driver::~driver): Clean up m_option_suggestions.
22146         (suggest_option): Convert to...
22147         (driver::suggest_option): ...this, and split out into
22148         driver::build_option_suggestions and find_closest_string.
22149         (driver::build_option_suggestions): New function, from
22150         first half of suggest_option.  Special-case
22151         OPT_fsanitize_ and OPT_fsanitize_recover_, making use of
22152         the sanitizer_opts array.  For options of enum types, add the
22153         various enum values to the candidate strings.
22154         (driver::handle_unrecognized_options): Remove "const".
22155         * gcc.h (driver::handle_unrecognized_options): Likewise.
22156         (driver::build_option_suggestions): New decl.
22157         (driver::suggest_option): New decl.
22158         (driver::m_option_suggestions): New field.
22159         * opts-common.c (add_misspelling_candidates): New function.
22160         * opts.c (sanitizer_opts): Remove decl of struct sanitizer_opts_s
22161         and make non-static.
22162         * opts.h (sanitizer_opts): New array decl.
22163         (add_misspelling_candidates): New function decl.
22164         * spellcheck.c (find_closest_string): New function.
22165         * spellcheck.h (find_closest_string): New function decl.
22167 2016-02-12  Jakub Jelinek  <jakub@redhat.com>
22169         PR rtl-optimization/69764
22170         PR rtl-optimization/69771
22171         * optabs.c (expand_binop_directly): For shift_optab_p, force
22172         convert_modes with VOIDmode if xop1 has VOIDmode.
22174 2016-02-12  Ilya Enkovich  <enkovich.gnu@gmail.com>
22176         PR target/69729
22177         * lto-streamer-out.c (lto_output): Use thunk.add_pointer_bounds_args
22178         to correctly determine instrumentation thunks.
22180 2016-02-12  Jakub Jelinek  <jakub@redhat.com>
22182         PR ipa/69241
22183         * ipa-split.c (split_function): If split part returns TREE_ADDRESSABLE
22184         type by reference, force lhs on the call.
22186         PR ipa/68672
22187         * ipa-split.c (split_function): Don't compute/use main_part_return_p.
22188         Compute retval and retbnd early in all cases if split_part_return_p
22189         and return_bb is not EXIT.  Remove all clobber stmts and reset
22190         all debug stmts that refer to SSA_NAMEs defined in split part,
22191         except if it is retval, in that case replace the old retval with the
22192         lhs of the call to the split part.
22194 2016-02-12  Kugan Vivekanandarajah  <kuganv@linaro.org>
22196         revert:
22197         2016-02-12  Kugan Vivekanandarajah  <kuganv@linaro.org>
22199         PR middle-end/66726
22200         * tree-ssa-reassoc.c (optimize_range_tests): Handle tcc_compare stmt
22201         whose result is used in PHI.
22202         (maybe_optimize_range_tests): Likewise.
22203         (final_range_test_p): Likweise.
22205 2016-02-12  Kugan Vivekanandarajah  <kuganv@linaro.org>
22207         PR middle-end/66726
22208         * tree-ssa-reassoc.c (optimize_range_tests): Handle tcc_compare stmt
22209         whose result is used in PHI.
22210         (maybe_optimize_range_tests): Likewise.
22211         (final_range_test_p): Likweise.
22213 2016-02-12  Jakub Jelinek  <jakub@redhat.com>
22215         * cgraph.c: Spelling fixes - behaviour -> behavior and
22216         neighbour -> neighbor.
22217         * target.def: Likewise.
22218         * sel-sched.c: Likewise.
22219         * config/mips/mips.c: Likewise.
22220         * config/arc/arc.md: Likewise.
22221         * config/arm/cortex-a57.md: Likewise.
22222         * config/arm/arm.c: Likewise.
22223         * config/arm/neon.md: Likewise.
22224         * config/arm/arm-c.c: Likewise.
22225         * config/vms/vms-c.c: Likewise.
22226         * config/s390/s390.c: Likewise.
22227         * config/i386/znver1.md: Likewise.
22228         * config/i386/i386.c: Likewise.
22229         * config/ia64/hpux-unix2003.h: Likewise.
22230         * config/msp430/msp430.md: Likewise.
22231         * config/rx/rx.c: Likewise.
22232         * config/rx/rx.md: Likewise.
22233         * config/aarch64/aarch64-simd.md: Likewise.
22234         * config/aarch64/aarch64.c: Likewise.
22235         * config/nvptx/nvptx.c: Likewise.
22236         * config/bfin/bfin.c: Likewise.
22237         * config/cris/cris.opt: Likewise.
22238         * config/rs6000/rs6000.c: Likewise.
22239         * target.h: Likewise.
22240         * spellcheck.c: Likewise.
22241         * ira-build.c: Likewise.
22242         * tree-inline.c: Likewise.
22243         * builtins.c: Likewise.
22244         * lra-constraints.c: Likewise.
22245         * explow.c: Likewise.
22246         * hwint.h: Likewise.
22247         * targhooks.c: Likewise.
22248         * tree-vect-data-refs.c: Likewise.
22249         * expr.c: Likewise.
22250         * doc/tm.texi: Likewise.
22251         * doc/extend.texi: Likewise.
22252         * doc/install.texi: Likewise.
22253         * doc/md.texi: Likewise.
22254         * tree-ssa-tail-merge.c: Likewise.
22255         * sched-int.h: Likewise.
22256         * match.pd: Likewise.
22257         * sched-ebb.c: Likewise.
22258         * target.def (omit_struct_return_reg): Likewise.
22259         * gimple-ssa-isolate-paths.c: Likewise.
22260         (find_implicit_erroneous_behaviour): Renamed to...
22261         (find_implicit_erroneous_behavior): ... this.
22262         (find_explicit_erroneous_behaviour): Renamed to...
22263         (find_explicit_erroneous_behavior): ... this.
22264         (gimple_ssa_isolate_erroneous_paths): Adjust caller.
22266 2016-02-11  Segher Boessenkool  <segher@kernel.crashing.org>
22268         PR rtl-optimization/64682
22269         PR rtl-optimization/69567
22270         PR rtl-optimization/69737
22271         * combine.c (distribute_notes) <REG_DEAD>: If the register is set
22272         in I2 as well, just lose it.
22274 2016-02-11  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
22276         * config/aarch64/aarch64.c (aarch64_last_printed_arch_string):
22277         New variable.
22278         (aarch64_last_printed_tune_string): Likewise.
22279         (aarch64_declare_function_name): Only output .arch assembler
22280         directive if it will be different from the previously output
22281         directive.  Same for .tune comment but only if -dA is set.
22282         (aarch64_start_file): New function.
22283         (TARGET_ASM_FILE_START): Define.
22285 2016-02-11  David Malcolm  <dmalcolm@redhat.com>
22287         PR plugins/69758
22288         * Makefile.in (PLUGIN_HEADERS): Add params.list.
22290 2016-02-11  Jakub Jelinek  <jakub@redhat.com>
22292         PR target/65313
22293         * tree-vect-slp.c (vect_schedule_slp_instance): Avoid
22294         -Wmaybe-uninitialized warning.
22296 2016-02-11  Oleg Endo  <olegendo@gcc.gnu.org>
22298         PR target/69713
22299         * config/sh/sh.md (casesi_worker_0): Add T_REG use.
22301 2016-02-11  Richard Biener  <rguenther@suse.de>
22303         PR rtl-optimization/69291
22304         * ifcvt.c (noce_try_store_flag_constants): Do not allow
22305         subexpressions affected by changing the result.
22307 2016-02-10  Vladimir Makarov  <vmakarov@redhat.com>
22309         PR target/69148
22310         * lra-constraints.c (curr_insn_transform): Find in/out operands
22311         for secondary memory moves.  Update dups.
22313 2016-02-10  Yuri Rumyantsev  <ysrumyan@gmail.com>
22315         PR tree-optimization/69652
22316         * tree-vect-loop.c (optimize_mask_stores): Move declaration of STMT1
22317         to nested loop, did source re-formatting, skip debug statements,
22318         add check on statement with volatile operand, remove dead scalar
22319         statements.
22321 2016-02-10  Jakub Jelinek  <jakub@redhat.com>
22322             Patrick Palka  <ppalka@gcc.gnu.org>
22324         PR ipa/69241
22325         PR c++/69649
22326         * gimplify.c (gimplify_modify_expr): Set lhs even for noreturn
22327         calls if the return type is TREE_ADDRESSABLE.
22328         * cgraphunit.c (cgraph_node::expand_thunk): Likewise.
22329         * ipa-split.c (split_function): Fix doubled "we" in comment.
22330         Use void return type for the split part even if
22331         !split_point->split_part_set_retval.
22333 2016-02-10  Bin Cheng  <bin.cheng@arm.com>
22335         PR tree-optimization/68021
22336         * tree-ssa-loop-ivopts.c (get_computation_aff): Set ratio to 1 if
22337         when computing the value of biv cand by itself.
22339 2016-02-10  Wilco Dijkstra  <wdijkstr@arm.com>
22341         * config/aarch64/aarch64.c (cortexa53_tunings): Enable AES fusion.
22342         (cortexa57_tunings): Likewise.
22343         (cortexa72_tunings): Likewise.
22344         (arch_macro_fusion_pair_p): Add support for AES fusion.
22345         * config/aarch64/aarch64-fusion-pairs.def: Add AES_AESMC entry.
22346         * config/arm/aarch-common.c (aarch_crypto_can_dual_issue):
22347         Allow virtual registers before reload so early scheduling works.
22348         * config/arm/cortex-a57.md (cortex_a57_crypto_simple): Use
22349         correct latency and pipeline.
22350         (cortex_a57_crypto_complex): Likewise.
22351         (cortex_a57_crypto_xor): Likewise.
22352         (define_bypass): Add AES bypass.
22354 2016-02-10  Richard Biener  <rguenther@suse.de>
22356         PR tree-optimization/69726
22357         * passes.def: Add DCE pass before late uninit.
22358         * match.pd: Add A ? B : (!A ? C : X) -> A ? B : C patterns to
22359         really fixup if-conversions job.
22361 2016-02-10  Wilco Dijkstra  <wdijkstr@arm.com>
22363         * config/arm/arm.c (arm_cortex_a53_tune): Enable AES fusion.
22364         (arm_cortex_a57_tune): Likewise.
22365         (aarch_macro_fusion_pair_p): Add support for AES fusion.
22366         * config/arm/arm-protos.h (fuse_ops): Add FUSE_AES_AESMC.
22368 2016-02-10  Eric Botcazou  <ebotcazou@adacore.com>
22370         * timevar.def (TV_PHASE_DBGINFO): Delete.
22371         (TV_PHASE_CHECK_DBGINFO): Likewise.
22372         * varpool.c (varpool_node::assemble_decl): Do not change timevar.
22374 2016-02-10  Richard Biener  <rguenther@suse.de>
22376         PR tree-optimization/69719
22377         * tree-vect-data-refs.c (vect_prune_runtime_alias_test_list):
22378         Adjust previous fix by ensuring that dr_a1 is left of dr_a2.
22380 2016-02-09  Andrew Pinski  <apinski@cavium.com>
22382         PR tree-opt/69282
22383         * optabs-tree.c (expand_vec_cond_expr_p): Don't early return if
22384         get_vcond_mask_icode returns false.
22386 2016-02-09  Michael Meissner  <meissner@linux.vnet.ibm.com>
22388         PR target/68404
22389         * config/rs6000/predicates.md (fusion_gpr_addis): Prevent fusing
22390         an ADDIS that adds a pointer to a large constant that sets the
22391         upper16 bits with a load operation.
22393 2016-02-09  Charles Baylis  <charles.baylis@linaro.org>
22395         PR target/68532
22396         * config/arm/arm.c (arm_evpc_neon_vzip): Allow for big endian lane
22397         order.
22398         * config/arm/arm_neon.h (vzipq_s8): Adjust shuffle patterns for big
22399         endian.
22400         (vzipq_s16): Likewise.
22401         (vzipq_s32): Likewise.
22402         (vzipq_f32): Likewise.
22403         (vzipq_u8): Likewise.
22404         (vzipq_u16): Likewise.
22405         (vzipq_u32): Likewise.
22406         (vzipq_p8): Likewise.
22407         (vzipq_p16): Likewise.
22409 2016-02-09  Charles Baylis  <charles.baylis@linaro.org>
22411         PR target/68532
22412         * config/arm/arm.c (neon_endian_lane_map): New function.
22413         (neon_vector_pair_endian_lane_map): New function.
22414         (arm_evpc_neon_vuzp): Allow for big endian lane order.
22415         * config/arm/arm_neon.h (vuzpq_s8): Adjust shuffle patterns for big
22416         endian.
22417         (vuzpq_s16): Likewise.
22418         (vuzpq_s32): Likewise.
22419         (vuzpq_f32): Likewise.
22420         (vuzpq_u8): Likewise.
22421         (vuzpq_u16): Likewise.
22422         (vuzpq_u32): Likewise.
22423         (vuzpq_p8): Likewise.
22424         (vuzpq_p16): Likewise.
22426 2016-02-11  Alexandre Oliva  <aoliva@redhat.com>
22428         PR target/69634
22429         * regstat.c (regstat_bb_compute_calls_crossed): Disregard
22430         debug insns.
22432 2016-02-09  Uros Bizjak  <ubizjak@gmail.com>
22434         * config/i386/i386.md (insv<mode>_1): Use gen_int_mode to
22435         truncate const_int operand 1 to QImode.
22437 2016-02-09  Eric Botcazou  <ebotcazou@adacore.com>
22439         * gimple-ssa-backprop.c (optimize_phi): Do not replace an argument
22440         corresponding to an abnormal edge.
22442 2016-02-09  Tom de Vries  <tom@codesourcery.com>
22444         PR tree-optimization/69599
22445         * tree-ssa-structalias.c (fndecl_maybe_in_other_partition): New
22446         function.
22447         (find_func_aliases_for_builtin_call, find_func_clobbers)
22448         (ipa_pta_execute):  Handle case that foo and foo._0 are not in same lto
22449         partition.
22451 2016-02-09  Richard Biener  <rguenther@suse.de>
22453         PR tree-optimization/69715
22454         * tree-ssa.c (execute_update_addresses_taken): Mark non-decl
22455         LHS on calls as non-rewritable.
22457 2016-02-09  Tom de Vries  <tom@codesourcery.com>
22459         PR lto/69707
22460         * lto-wrapper.c (append_diag_options): New function.
22461         (compile_offload_image): Call append_diag_options.
22463 2016-02-08  Sandra Loosemore  <sandra@codesourcery.com>
22465         PR other/69722
22466         * doc/extend.texi (Flag Output Operands): Correct sectioning.
22467         Minor copy-edit to fix verb tenses.
22469 2016-02-08  Jakub Jelinek  <jakub@redhat.com>
22471         PR tree-optimization/69209
22472         * ipa-split.c (split_function): If split part is not
22473         returning retval, retval has gimple type but is not
22474         gimple value, force it into a SSA_NAME first.
22476 2016-02-08  Nicklas Bo Jensen  <nbjensen@gmail.com>
22478         * doc/tree-ssa.texi (Preserving the virtual SSA form): Remove
22479         outdated section.
22481 2016-02-08  Jason Merrill  <jason@redhat.com>
22483         PR c++/69631
22484         * convert.c (convert_to_integer_1): Check dofold on truncation
22485         distribution.
22486         (convert_to_pointer_maybe_fold, convert_to_real_maybe_fold)
22487         (convert_to_integer_maybe_fold, convert_to_complex_maybe_fold):
22488         Rename from *_nofold.
22489         * convert.h (convert_to_pointer_nofold, convert_to_integer_nofold)
22490         (convert_to_real_nofold, convert_to_complex_nofold): New inlines.
22492 2016-02-08  Bernd Schmidt  <bschmidt@redhat.com>
22494         PR target/60410
22495         * tree.c (build_common_tree_nodes): Remove short_double argument.
22496         All callers changed.
22497         * tree.h (build_common_tree_nodes): Adjust declaration.
22498         * doc/invoke.texi (-fshort-double): Remove documentation.
22499         * config/mips/t-img-elf (MULTILIB_OPTIONS, MULTILIB_DIRNAMES,
22500         MULTILIB_EXCEPTIONS): Remove -fshort-double variant.
22501         * lto-wrapper.c (merge_and_complain, append_compiler_options)
22502         (append_linker_options): Don't handle OPT_fshort_double.
22504         PR rtl-optimization/68730
22505         * lra-remat.c (insn_to_cand_activation): New static variable.
22506         (lra_remat): Allocate and free it.
22507         (create_cand): New arg activation. Initialize a field in
22508         insn_to_cand_activation if it is nonnull.
22509         (create_cands): Pass the activation insn to create_cand when making
22510         a candidate involving an output reload.  Reorganize code a little.
22511         (do_remat): Keep track of active status of candidates in a separate
22512         bitmap.
22514 2016-02-08  Richard Biener  <rguenther@suse.de>
22516         PR tree-optimization/69719
22517         * tree-vect-data-refs.c (vect_prune_runtime_alias_test_list):
22518         Properly use absolute of the difference of the two offsets to
22519         compare or adjust the segment length.
22521 2016-02-08  Richard Biener  <rguenther@suse.de>
22522             Jeff Law  <law@redhat.com>
22524         PR target/68273
22525         * tree-ssanames.c (make_ssa_name_fn): Always use unqualified
22526         types for anonymous SSA names.
22528 2016-02-08   Richard Biener  <rguenther@suse.de>
22530         PR rtl-optimization/69274
22531         * ira.c (ira_setup_alts): Do not change recog_data.operand order.
22533 2016-02-08  Jeff Law  <law@redhat.com>
22535         PR tree-optimization/65917
22536         * tree-ssa-dom.c (record_temporary_equivalences): Record both
22537         equivalences from if (x == y) style conditionals.
22538         (loop_depth_of_name): Remove.
22539         (record_equality): Remove loop depth check.
22540         * tree-ssa-scopedtables.h (const_and_copies): Refine comments.
22541         (const_and_copies::record_const_or_copy_raw): New member function.
22542         * tree-ssa-scopedtables.c
22543         (const_and_copies::record_const_or_copy_raw): New, factored out of
22544         (const_and_copies::record_const_or_copy): Call new member function.
22546 2016-02-05  Jeff Law  <law@redhat.com>
22548         PR tree-optimization/68541
22549         * gimple-ssa-split-paths.c: Include tree-cfg.h and params.h.
22550         (count_stmts_in_block): New function.
22551         (poor_ifcvt_candidate_code): Likewise.
22552         (is_feasible_trace): Add some heuristics to determine when path
22553         splitting is profitable.
22554         (find_block_to_duplicate_for_splitting_paths): Make sure the graph
22555         is a diamond with a single exit.
22557 2016-02-05  Martin Sebor  <msebor@redhat.com>
22559         PR c++/69662
22560         * doc/invoke.texi: Update -Wplacement-new to take an optional
22561         argument.
22563 2016-02-06  Richard Henderson  <rth@redhat.com>
22565         PR c/69643
22566         * tree.c (tree_nop_conversion_p): Do not strip casts into or
22567         out of non-standard address spaces.
22569 2016-02-05  Jakub Jelinek  <jakub@redhat.com>
22571         PR rtl-optimization/69691
22572         * lra-eliminations.c (move_plus_up): Don't add the addend twice.
22574 2016-02-05  Pat Haugen  <pthaugen@us.ibm.com>
22576         * config/rs6000/crypto.md (crypto_vpermxor_<mode>): Correct insn type.
22577         * config/rs6000/rs6000.md (mov<mode>_hardfloat): Likewise.
22578         (*ieee128_mfvsrd_64bit): Likewise.
22579         (*ieee128_mfvsrd_32bit): Likewise.
22581 2016-02-05  Ilya Enkovich  <enkovich.gnu@gmail.com>
22583         PR target/69369
22584         Revert r232560:
22585         2016-01-19  Jan Hubicka  <hubicka@ucw.cz>
22587         * cgraphunit.c (cgraph_node::reset): Clear thunk info and
22588         instrumented_version.
22590 2016-01-05  Jeremy Bennett  <jeremy.bennett@embecosm.com>
22592         * doc/invoke.texi (Optimize Options): In table of --param options
22593         rename second occurrence of tracer-min-branch-ratio to
22594         tracer-min-branch-probability, rename
22595         tracer-min-branch-ratio-feedback to
22596         tracer-min-branch-probability-feedback and clarify description,
22597         rename sched-spec-state-edge-prob-cutoff to
22598         sched-state-edge-prob-cutoff, rename selsched-max-insns-to-rename
22599         to selsched-insns-to-rename, rename lto-minpartition to
22600         lto-min-partition, delete reorder-blocks-duplicate and
22601         reorder-blocks-duplicate-feedback.
22603 2016-02-05  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
22605         * config/s390/s390.c (s390_register_info_set_ranges): Remove
22606         superfluous loops.
22608 2016-02-05  Dominik Vogt  <vogt@linux.vnet.ibm.com>
22610         * doc/extend.texi: S/390: Correct some typos.
22612 2016-02-05  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
22614         * config/s390/s390.c (s390_emit_call): Add missing 64 bit check.
22616 2016-02-05  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
22618         PR target/69625
22619         * config/s390/s390.c (SAVE_SLOT_NONE, SAVE_SLOT_STACK): New defines.
22620         (s390_register_info_gprtofpr): Use new macros above.
22621         (s390_register_info_stdarg_fpr): Adjust max_fpr to better match
22622         its name.
22623         (s390_register_info_stdarg_gpr): Adjust max_gpr to better match
22624         its name.  Adjust restore and save gpr ranges.
22625         (s390_register_info_set_ranges): New function.
22626         (s390_register_info): Use new macros above.  Call
22627         s390_register_info_set_ranges.
22628         (s390_optimize_register_info): Likewise.
22629         (s390_hard_regno_rename_ok): Use new macros.
22630         (s390_hard_regno_scratch_ok): Likewise.
22631         (s390_emit_epilogue): Likewise.
22632         (s390_can_use_return_insn): Likewise.
22633         (s390_optimize_prologue): Likewise.
22634         * config/s390/s390.md (GPR2_REGNUM, GPR6_REGNUM): New constants.
22636 2016-02-05  Jakub Jelinek  <jakub@redhat.com>
22638         PR bootstrap/69677
22639         * config/i386/i386.c (convert_scalars_to_vector): Readd stack
22640         alignment fixes.
22641         (ix86_option_override_internal): Disable TARGET_STV even for
22642         -m{incoming,preferred}-stack-boundary=3.
22644 2016-02-03  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
22646         * config.gcc: Mark deprecated rtems targets as obsolete.
22648 2016-02-04  Segher Boessenkool  <segher@kernel.crashing.org>
22650         PR rtl-optimization/64682
22651         PR rtl-optimization/69567
22652         * combine.c (distribute_notes) <REG_DEAD>: Place the death note
22653         before I2 only if the register is both used and set in I2.
22655 2016-02-04  DJ Delorie  <dj@redhat.com>
22657         * config/msp430/msp430.c (msp430_start_function): Add function type.
22659 2016-02-04  Jakub Jelinek  <jakub@redhat.com>
22661         PR fortran/69368
22662         * tree-dfa.c (get_ref_base_and_extent): Remove unreachable code.
22664 2016-02-04  Uros Bizjak  <ubizjak@gmail.com>
22666         PR rtl-optimization/69577
22667         Revert:
22668         2015-10-29  Richard Henderson  <rth@redhat.com>
22670         PR target/68124
22671         PR rtl-opt/67609
22672         * config/i386/i386.c (ix86_cannot_change_mode_class): Tighten
22673         sse check to the exact conditions of PR 67609.
22675 2016-02-04  Michael Meissner  <meissner@linux.vnet.ibm.com>
22677         PR target/69667
22678         * config/rs6000/rs6000.md (mov<mode>_64bit_dm): Use 'd' constraint
22679         instead of 'ws', and 'wh' instead of 'wm' since TFmode/IFmode are
22680         not allowed into the traditional Altivec registers.
22681         (movtd_64bit_nodm): Likewise.
22682         (mov<mode>_32bit, FMOVE128_FPR iterator): Likewise.
22684 2016-02-04  David Malcolm  <dmalcolm@redhat.com>
22686         * config/aarch64/cortex-a57-fma-steering.c
22687         (aarch64_register_fma_steering): Remove "static" from arguments
22688         to register_pass.
22690 2016-02-04  Wilco Dijkstra  <wdijkstr@arm.com>
22692         PR target/69619
22693         * ccmp.c (expand_ccmp_expr_1): Avoid evaluating gs0/gs1
22694         twice when complex.
22696 2016-02-04  Mike Frysinger  <vapier@gentoo.org>
22698         * doc/invoke.texi: Delete -mno-fma4.
22700 2016-02-04  Richard Sandiford  <richard.sandiford@arm.com>
22702         PR rtl-optimization/69577
22703         * reginfo.c (record_subregs_of_mode): Add a partial_def parameter.
22704         (find_subregs_of_mode): Update accordingly.  Iterate over partial
22705         definitions.
22707 2016-02-04  Alan Lawrence  <alan.lawrence@arm.com>
22709         * config/arm/arm-protos.h (neon_reinterpret): Remove.
22710         * config/arm/arm.c (neon_reinterpret): Remove.
22711         * config/arm/arm_neon_builtins.def (vreinterpretv8qi, vreinterpretv4hi,
22712         vreinterpretv2si, vreinterpretv2sf, vreinterpretdi, vreinterpretv16qi,
22713         vreinterpretv8hi, vreinterpretv4si, vreinterpretv4sf, vreinterpretv2di,
22714         vreinterpretti): Remove.
22715         * config/arm/neon.md (neon_vreinterpretv8qi<mode>,
22716         neon_vreinterpretv4hi<mode>, neon_vreinterpretv2si<mode>,
22717         neon_vreinterpretv2sf<mode>, neon_vreinterpretdi<mode>,
22718         neon_vreinterpretti<mode>, neon_vreinterpretv16qi<mode>,
22719         neon_vreinterpretv8hi<mode>, neon_vreinterpretv4si<mode>,
22720         neon_vreinterpretv4sf<mode>, neon_vreinterpretv2di<mode>): Remove.
22721         * config/arm/arm_neon.h (vreinterpret_p8_p16, vreinterpret_p8_f32,
22722         vreinterpret_p8_p64, vreinterpret_p8_s64, vreinterpret_p8_u64,
22723         vreinterpret_p8_s8, vreinterpret_p8_s16, vreinterpret_p8_s32,
22724         vreinterpret_p8_u8, vreinterpret_p8_u16, vreinterpret_p8_u32,
22725         vreinterpret_p16_p8, vreinterpret_p16_f32, vreinterpret_p16_p64,
22726         vreinterpret_p16_s64, vreinterpret_p16_u64, vreinterpret_p16_s8,
22727         vreinterpret_p16_s16, vreinterpret_p16_s32, vreinterpret_p16_u8,
22728         vreinterpret_p16_u16, vreinterpret_p16_u32, vreinterpret_f32_p8,
22729         vreinterpret_f32_p16, vreinterpret_f32_p64, vreinterpret_f32_s64,
22730         vreinterpret_f32_u64, vreinterpret_f32_s8, vreinterpret_f32_s16,
22731         vreinterpret_f32_s32, vreinterpret_f32_u8, vreinterpret_f32_u16,
22732         vreinterpret_f32_u32, vreinterpret_p64_p8, vreinterpret_p64_p16,
22733         vreinterpret_p64_f32, vreinterpret_p64_s64, vreinterpret_p64_u64,
22734         vreinterpret_p64_s8, vreinterpret_p64_s16, vreinterpret_p64_s32,
22735         vreinterpret_p64_u8, vreinterpret_p64_u16, vreinterpret_p64_u32,
22736         vreinterpret_s64_p8, vreinterpret_s64_p16, vreinterpret_s64_f32,
22737         vreinterpret_s64_p64, vreinterpret_s64_u64, vreinterpret_s64_s8,
22738         vreinterpret_s64_s16, vreinterpret_s64_s32, vreinterpret_s64_u8,
22739         vreinterpret_s64_u16, vreinterpret_s64_u32, vreinterpret_u64_p8,
22740         vreinterpret_u64_p16, vreinterpret_u64_f32, vreinterpret_u64_p64,
22741         vreinterpret_u64_s64, vreinterpret_u64_s8, vreinterpret_u64_s16,
22742         vreinterpret_u64_s32, vreinterpret_u64_u8, vreinterpret_u64_u16,
22743         vreinterpret_u64_u32, vreinterpret_s8_p8, vreinterpret_s8_p16,
22744         vreinterpret_s8_f32, vreinterpret_s8_p64, vreinterpret_s8_s64,
22745         vreinterpret_s8_u64, vreinterpret_s8_s16, vreinterpret_s8_s32,
22746         vreinterpret_s8_u8, vreinterpret_s8_u16, vreinterpret_s8_u32,
22747         vreinterpret_s16_p8, vreinterpret_s16_p16, vreinterpret_s16_f32,
22748         vreinterpret_s16_p64, vreinterpret_s16_s64, vreinterpret_s16_u64,
22749         vreinterpret_s16_s8, vreinterpret_s16_s32, vreinterpret_s16_u8,
22750         vreinterpret_s16_u16, vreinterpret_s16_u32, vreinterpret_s32_p8,
22751         vreinterpret_s32_p16, vreinterpret_s32_f32, vreinterpret_s32_p64,
22752         vreinterpret_s32_s64, vreinterpret_s32_u64, vreinterpret_s32_s8,
22753         vreinterpret_s32_s16, vreinterpret_s32_u8, vreinterpret_s32_u16,
22754         vreinterpret_s32_u32, vreinterpret_u8_p8, vreinterpret_u8_p16,
22755         vreinterpret_u8_f32, vreinterpret_u8_p64, vreinterpret_u8_s64,
22756         vreinterpret_u8_u64, vreinterpret_u8_s8, vreinterpret_u8_s16,
22757         vreinterpret_u8_s32, vreinterpret_u8_u16, vreinterpret_u8_u32,
22758         vreinterpret_u16_p8, vreinterpret_u16_p16, vreinterpret_u16_f32,
22759         vreinterpret_u16_p64, vreinterpret_u16_s64, vreinterpret_u16_u64,
22760         vreinterpret_u16_s8, vreinterpret_u16_s16, vreinterpret_u16_s32,
22761         vreinterpret_u16_u8, vreinterpret_u16_u32, vreinterpret_u32_p8,
22762         vreinterpret_u32_p16, vreinterpret_u32_f32, vreinterpret_u32_p64,
22763         vreinterpret_u32_s64, vreinterpret_u32_u64, vreinterpret_u32_s8,
22764         vreinterpret_u32_s16, vreinterpret_u32_s32, vreinterpret_u32_u8,
22765         vreinterpret_u32_u16, vreinterpretq_p8_p16, vreinterpretq_p8_f32,
22766         vreinterpretq_p8_p64, vreinterpretq_p8_p128, vreinterpretq_p8_s64,
22767         vreinterpretq_p8_u64, vreinterpretq_p8_s8, vreinterpretq_p8_s16,
22768         vreinterpretq_p8_s32, vreinterpretq_p8_u8, vreinterpretq_p8_u16,
22769         vreinterpretq_p8_u32, vreinterpretq_p16_p8, vreinterpretq_p16_f32,
22770         vreinterpretq_p16_p64, vreinterpretq_p16_p128, vreinterpretq_p16_s64,
22771         vreinterpretq_p16_u64, vreinterpretq_p16_s8, vreinterpretq_p16_s16,
22772         vreinterpretq_p16_s32, vreinterpretq_p16_u8, vreinterpretq_p16_u16,
22773         vreinterpretq_p16_u32, vreinterpretq_f32_p8, vreinterpretq_f32_p16,
22774         vreinterpretq_f32_p64, vreinterpretq_f32_p128, vreinterpretq_f32_s64,
22775         vreinterpretq_f32_u64, vreinterpretq_f32_s8, vreinterpretq_f32_s16,
22776         vreinterpretq_f32_s32, vreinterpretq_f32_u8, vreinterpretq_f32_u16,
22777         vreinterpretq_f32_u32, vreinterpretq_p64_p8, vreinterpretq_p64_p16,
22778         vreinterpretq_p64_f32, vreinterpretq_p64_p128, vreinterpretq_p64_s64,
22779         vreinterpretq_p64_u64, vreinterpretq_p64_s8, vreinterpretq_p64_s16,
22780         vreinterpretq_p64_s32, vreinterpretq_p64_u8, vreinterpretq_p64_u16,
22781         vreinterpretq_p64_u32, vreinterpretq_p128_p8, vreinterpretq_p128_p16,
22782         vreinterpretq_p128_f32, vreinterpretq_p128_p64, vreinterpretq_p128_s64,
22783         vreinterpretq_p128_u64, vreinterpretq_p128_s8, vreinterpretq_p128_s16,
22784         vreinterpretq_p128_s32, vreinterpretq_p128_u8, vreinterpretq_p128_u16,
22785         vreinterpretq_p128_u32, vreinterpretq_s64_p8, vreinterpretq_s64_p16,
22786         vreinterpretq_s64_f32, vreinterpretq_s64_p64, vreinterpretq_s64_p128,
22787         vreinterpretq_s64_u64, vreinterpretq_s64_s8, vreinterpretq_s64_s16,
22788         vreinterpretq_s64_s32, vreinterpretq_s64_u8, vreinterpretq_s64_u16,
22789         vreinterpretq_s64_u32, vreinterpretq_u64_p8, vreinterpretq_u64_p16,
22790         vreinterpretq_u64_f32, vreinterpretq_u64_p64, vreinterpretq_u64_p128,
22791         vreinterpretq_u64_s64, vreinterpretq_u64_s8, vreinterpretq_u64_s16,
22792         vreinterpretq_u64_s32, vreinterpretq_u64_u8, vreinterpretq_u64_u16,
22793         vreinterpretq_u64_u32, vreinterpretq_s8_p8, vreinterpretq_s8_p16,
22794         vreinterpretq_s8_f32, vreinterpretq_s8_p64, vreinterpretq_s8_p128,
22795         vreinterpretq_s8_s64, vreinterpretq_s8_u64, vreinterpretq_s8_s16,
22796         vreinterpretq_s8_s32, vreinterpretq_s8_u8, vreinterpretq_s8_u16,
22797         vreinterpretq_s8_u32, vreinterpretq_s16_p8, vreinterpretq_s16_p16,
22798         vreinterpretq_s16_f32, vreinterpretq_s16_p64, vreinterpretq_s16_p128,
22799         vreinterpretq_s16_s64, vreinterpretq_s16_u64, vreinterpretq_s16_s8,
22800         vreinterpretq_s16_s32, vreinterpretq_s16_u8, vreinterpretq_s16_u16,
22801         vreinterpretq_s16_u32, vreinterpretq_s32_p8, vreinterpretq_s32_p16,
22802         vreinterpretq_s32_f16, vreinterpretq_s32_f32, vreinterpretq_s32_p64,
22803         vreinterpretq_s32_p128, vreinterpretq_s32_s64, vreinterpretq_s32_u64,
22804         vreinterpretq_s32_s8, vreinterpretq_s32_s16, vreinterpretq_s32_u8,
22805         vreinterpretq_s32_u16, vreinterpretq_s32_u32, vreinterpretq_u8_p8,
22806         vreinterpretq_u8_p16, vreinterpretq_u8_f32, vreinterpretq_u8_p64,
22807         vreinterpretq_u8_p128, vreinterpretq_u8_s64, vreinterpretq_u8_u64,
22808         vreinterpretq_u8_s8, vreinterpretq_u8_s16, vreinterpretq_u8_s32,
22809         vreinterpretq_u8_u16, vreinterpretq_u8_u32, vreinterpretq_u16_p8,
22810         vreinterpretq_u16_p16, vreinterpretq_u16_f32, vreinterpretq_u16_p64,
22811         vreinterpretq_u16_p128, vreinterpretq_u16_s64, vreinterpretq_u16_u64,
22812         vreinterpretq_u16_s8, vreinterpretq_u16_s16, vreinterpretq_u16_s32,
22813         vreinterpretq_u16_u8, vreinterpretq_u16_u32, vreinterpretq_u32_p8,
22814         vreinterpretq_u32_p16, vreinterpretq_u32_f32, vreinterpretq_u32_p64,
22815         vreinterpretq_u32_p128, vreinterpretq_u32_s64, vreinterpretq_u32_u64,
22816         vreinterpretq_u32_s8, vreinterpretq_u32_s16, vreinterpretq_u32_s32,
22817         vreinterpretq_u32_u8, vreinterpretq_u32_u16): Rewrite using casts.
22819 2016-02-04  Martin Liska  <mliska@suse.cz>
22821         PR sanitizer/69276
22822         * asan.c (has_stmt_been_instrumented_p): Instrument gimple calls
22823         that are gimple_store_p.
22824         (maybe_instrument_call): Likewise.
22826 2016-02-04  Bin Cheng  <bin.cheng@arm.com>
22828         * config/aarch64/aarch64.c (aarch64_legitimize_address): Force
22829         register scaling out of memory reference and comment why.
22831 2016-02-04  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
22833         PR target/65932
22834         PR target/67714
22835         * cse.c (cse_insn): Pass NULL to fold_rtx when initially
22836         folding the source of a SET.
22838 2016-02-04  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
22840         PR target/65932
22841         PR target/67714
22842         * config/arm/arm.c (arm_new_rtx_costs, MULT case): Properly extract
22843         the operands of the SIGN_EXTENDs from a SMUL[TB][TB] rtx.
22845 2016-02-04  Jim Wilson  <jim.wilson@linaro.org>
22847         PR target/65932
22848         PR target/67714
22849         * config/arm/arm.h (PROMOTE_MODE): Don't set UNSIGNEDP for QImode and
22850         HImode.
22852 2016-02-04  Christian Bruel  <christian.bruel@st.com>
22854         * config/arm/arm-c.c (arm_reset_previous_fndecl): Style fix and typo.
22855         * config/arm/arm.c (arm_set_current_function): Likewise.
22857 2016-02-04  Jakub Jelinek  <jakub@redhat.com>
22858             Ilya Enkovich  <enkovich.gnu@gmail.com>
22859             H.J. Lu  <hongjiu.lu@intel.com>
22861         PR target/69454
22862         * config/i386/i386.c (convert_scalars_to_vector): Remove
22863         stack alignment fixes.
22864         (ix86_option_override_internal): Disable TARGET_STV if stack
22865         might not be aligned enough.
22866         (ix86_minimum_alignment): Assert that TARGET_STV is false.
22868 2016-02-04  Victoria Stepanyan  <victoria.stepanyan@amd.com>
22870         * config/i386/x86-tune.def: Disable default prefetching
22871         for -march=znver1.
22873 2016-02-03  Michael Meissner  <meissner@linux.vnet.ibm.com>
22874             Vladimir Makarov  <vmakarov@redhat.com>
22876         PR target/69461
22877         * config/rs6000/rs6000.c (rs6000_legitimate_address_p): Fix thinko
22878         in validating fused toc addresses.
22880 2016-02-03  Jakub Jelinek  <jakub@redhat.com>
22882         PR c/69627
22883         * diagnostic-show-locus.c (layout::get_state_at_point): Don't read
22884         range->m_caret fields if range->m_show_caret_p is false.
22886         PR target/69644
22887         * config/rs6000/rs6000.c (rs6000_expand_atomic_compare_and_swap):
22888         Force oldval into register if it does not satisfy reg_or_short_operand
22889         predicate.  Fix up formatting.
22891 2016-02-03  Vladimir Makarov  <vmakarov@redhat.com>
22892             Alexandre Oliva  <aoliva@redhat.com>
22894         PR target/69461
22895         * lra-constraints.c (simplify_operand_subreg): Check additionally
22896         address validity after potential reloading.
22897         (process_address_1): Check insns validity.  In case of failure do
22898         nothing.
22900 2016-02-03  Kirill Yukhin  <kirill.yukhin@intel.com>
22902         PR target/69118
22903         * config/i386/sse.md (define_insn "avx512f_maskcmp<mode>3"):
22904         Fix target.
22906 2016-02-02  Jakub Jelinek  <jakub@redhat.com>
22908         * wide-int.cc (canonize_uhwi): New function.
22909         (wi::divmod_internal): Use it.
22911 2016-02-02  James Norris  <jnorris@codesourcery.com>
22913         * gimplify.c (omp_notice_variable): Add usage check.
22915 2016-02-02  Alexander Monakov  <amonakov@ispras.ru>
22917         * config/nvptx/nvptx.c (nvptx_print_operand): Treat LEU, GEU, LTU, GTU
22918         like LE, GE, LT, GT when emitting relational operator.
22920 2016-02-02  Wilco Dijkstra  <wdijkstr@arm.com>
22922         * ira-costs.c (find_costs_and_classes): Add extra argument.
22923         * target.def (ira_change_pseudo_allocno_class): Add parameter.
22924         * targhooks.h (ira_change_pseudo_allocno_class): Likewise.
22925         * targhooks.c (ira_change_pseudo_allocno_class): Likewise.
22926         * config/aarch64/aarch64.c (aarch64_ira_change_pseudo_allocno_class)
22927         Add best_class parameter, and return it if not ALL_REGS.
22928         * config/mips/mips.c (mips_ira_change_pseudo_allocno_class):
22929         Add parameter.
22930         * doc/tm.texi (TARGET_IRA_CHANGE_PSEUDO_ALLOCNO_CLASS):
22931         Update target hook.
22933 2016-02-02  Wilco Dijkstra  <wdijkstr@arm.com>
22935         * config/aarch64/aarch64.c
22936         (TARGET_IRA_CHANGE_PSEUDO_ALLOCNO_CLASS): New define.
22937         (aarch64_ira_change_pseudo_allocno_class): New function.
22939 2016-02-02  Uros Bizjak  <ubizjak@gmail.com>
22941         PR target/67032
22942         * config/i386/i386.c (geode_cost): Increase cost of MMX and SSE moves.
22944 2016-02-02  Senthil Kumar Selvaraj  <senthil_kumar.selvaraj@atmel.com>
22946         * config/avr/avr.c (avr_option_override): Set
22947         PARAM_ALLOW_STORE_DATA_RACES to 1.
22949 2016-02-02  Richard Biener  <rguenther@suse.de>
22951         PR tree-optimization/69595
22952         * match.pd: Add range test simplifications to true/false.
22954 2016-02-02  Thomas Schwinge  <thomas@codesourcery.com>
22956         * omp-builtins.def (BUILT_IN_GOACC_HOST_DATA): Remove.
22957         * omp-low.c (expand_omp_target): Use BUILT_IN_GOACC_DATA_START
22958         instead.
22960 2016-02-02  Richard Biener  <rguenther@suse.de>
22962         PR tree-optimization/69606
22963         * tree-ssa-math-opts.c (bswap_replace): Clear flow sensitive
22964         info on the result before moving a stmt.
22966 2016-02-02  Yuri Rumyantsev  <ysrumyan@gmail.com>
22968         PR middle-end/68542
22969         * config/i386/i386.c (ix86_expand_branch): Add support for conditional
22970         branch with vector comparison.
22971         * config/i386/sse.md (VI48_AVX): New mode iterator.
22972         (define_expand "cbranch<mode>4): Add support for conditional branch
22973         with vector comparison.
22974         * tree-vect-loop.c (optimize_mask_stores): New function.
22975         * tree-vect-stmts.c (vectorizable_mask_load_store): Initialize
22976         has_mask_store field of vect_info.
22977         * tree-vectorizer.c (vectorize_loops): Invoke optimaze_mask_stores for
22978         vectorized loops having masked stores after vec_info destroy.
22979         * tree-vectorizer.h (loop_vec_info): Add new has_mask_store field and
22980         correspondent macros.
22981         (optimize_mask_stores): Add prototype.
22983 2016-02-02  Alan Modra  <amodra@gmail.com>
22985         PR target/69548
22986         * config/rs6000/predicates.md (quad_int_reg_operand): Don't
22987         allow subregs.
22989 2016-02-02  Alan Modra  <amodra@gmail.com>
22991         PR target/68662
22992         * config/rs6000/rs6000.c (need_toc_init): New var, set it
22993         whenever toc_label_name used.
22994         (rs6000_file_start): Don't set up toc section here,
22995         (rs6000_output_function_epilogue): do so here instead,
22996         (rs6000_xcoff_file_start): and here.
22997         * config/rs6000/rs6000.md (load_toc_aix_si): Set need_toc_init.
22998         (load_toc_aix_di): Likewise.
23000 2016-02-01  Jakub Jelinek  <jakub@redhat.com>
23002         PR rtl-optimization/69592
23003         * rtlanal.c (nonzero_bits_binary_arith_p): New inline function.
23004         (cached_nonzero_bits): Use it instead of ARITHMETIC_P.
23005         (num_sign_bit_copies_binary_arith_p): New inline function.
23006         (cached_num_sign_bit_copies): Use it instead of ARITHMETIC_P.
23008 2016-02-01  Jeff Law  <law@redhat.com>
23010         PR tree-optimization/69580
23011         * params.def (FSM_MAXIMUM_PHI_ARGUMENTS): New param.
23012         * tree-ssa-threadbackward.c
23013         (fsm_find_control_statement_thread_paths): Do not try to walk
23014         through large PHI nodes.
23016 2016-02-01  Jakub Jelinek  <jakub@redhat.com>
23018         * ifcvt.c (bb_ok_for_noce_convert_multiple_sets): Return false
23019         when count is incremented above limit, don't analyze further
23020         insns afterwards.
23022         * omp-low.c (oacc_parse_default_dims): Avoid
23023         -Wsign-compare warning, make sure value fits into int
23024         rather than just unsigned int.
23026 2016-02-01  Bin Cheng  <bin.cheng@arm.com>
23028         PR tree-optimization/67921
23029         * fold-const.c (split_tree): New parameters.  Convert pointer
23030         type variable part to proper type before negating.
23031         (fold_binary_loc): Pass new arguments to split_tree.
23033 2016-02-01  Nathan Sidwell  <nathan@codesourcery.com>
23035         * config/nvptx/nvptx.c (PTX_GANG_DEFAULT): New.
23036         (nvptx_goacc_validate_dims): Extend to handle global defaults.
23037         * target.def (OACC_VALIDATE_DIMS): Extend documentation.
23038         * doc/tm.texti: Rebuilt.
23039         * doc/invoke.texi (fopenacc-dim): Document.
23040         * lto-wrapper.c (merge_and_complain): Add OPT_fopenacc_dim_ case.
23041         (append_compiler_options): Likewise.
23042         * omp-low.c (oacc_default_dims, oacc_min_dims): New.
23043         (oacc_parse_default_dims): New.
23044         (oacc_validate_dims): Add USED arg.  Select non-unity default when
23045         possible.
23046         (oacc_loop_fixed_partitions): Return mask of used partitions.
23047         (oacc_loop_auto_partitions): Emit dump info.
23048         (oacc_loop_partition): Return mask of used partitions.
23049         (execute_oacc_device_lower): Parse default dimension arg.  Adjust
23050         loop partitioning and validation calls.
23052 2016-02-01  Richard Biener  <rguenther@suse.de>
23054         PR middle-end/69556
23055         * match.pd: Guard (C1/X)*C2 -> (C1*C2)/X with single_use.
23057 2016-02-01  Richard Biener  <rguenther@suse.de>
23059         PR tree-optimization/69574
23060         * tree-chrec.c (hide_evolution_in_other_loops_than_loop): Instead
23061         of asserting return chrec_dont_know.
23063 2016-02-01  Martin Liska  <mliska@suse.cz>
23065         * mem-stats-traits.h: Add copyright header.
23066         * mem-stats.h: Likewise.
23068 2016-02-01  Richard Biener  <rguenther@suse.de>
23070         PR tree-optimization/69579
23071         * tree-ssa-loop-ivcanon.c (propagate_constants_for_unrolling):
23072         Do not propagate through abnormal PHI results.
23074 2016-02-01  Eric Botcazou  <ebotcazou@adacore.com>
23076         * postreload.c (reload_cse_simplify): Remove dead code.
23078 2016-02-01  Jakub Jelinek  <jakub@redhat.com>
23080         PR rtl-optimization/69570
23081         * ifcvt.c (bb_ok_for_noce_convert_multiple_sets): Return true only
23082         if there is more than one set, not if there is a single set.
23084 2016-02-01  Richard Henderson  <rth@redhat.com>
23086         PR rtl-opt/69535
23087         * combine.c (make_compound_operation): When looking through a
23088         subreg, make sure to re-extend to the width of the outer mode.
23090 2016-01-30  Jakub Jelinek  <jakub@redhat.com>
23092         PR tree-optimization/69546
23093         * wide-int.cc (wi::divmod_internal): For unsigned division
23094         where both operands fit into uhwi, if o1 is 1 and o0 has
23095         msb set, if divident_prec is larger than bits per hwi,
23096         clear another quotient word and return 2 instead of 1.
23097         Similarly for remainder with msb in HWI set, if dividend_prec
23098         is larger than bits per hwi.
23100 2016-01-29  Martin Jambor  <mjambor@suse.cz>
23102         * hsa-gen.c (get_memory_order_name): Mask with MEMMODEL_BASE_MASK.
23103         Use short lowercase names.
23104         (get_memory_order): Mask with MEMMODEL_BASE_MASK.  Support
23105         MEMMODEL_CONSUME with acquire semantics and MEMMODEL_SEQ_CST with
23106         acq_rel one.  Protect warning agains segfaults if
23107         get_memory_order_name returns NULL.
23108         (gen_hsa_ternary_atomic_for_builtin): Support with MEMMODEL_SEQ_CST
23109         with release semantics.  Do not warn if get_memory_order already did.
23110         (gen_hsa_insns_for_call): Support with MEMMODEL_SEQ_CST with acquire
23111         semantics.  Fix check for relaxed or acquire semantics.  Do not warn
23112         if get_memory_order already did.
23114 2016-01-29  Sebastian Pop  <s.pop@samsung.com>
23116         * doc/install.texi: Document that isl-0.16 is supported.
23118 2016-01-29  Vladimir Makarov  <vmakarov@redhat.com>
23120         PR target/69299
23121         * config/i386/constraints.md (Bm): Describe as special memory
23122         constraint.
23123         * doc/md.texi (DEFINE_SPECIAL_MEMORY_CONSTRAINT): Describe it.
23124         * genoutput.c (main): Process DEFINE_SPECIAL_MEMORY_CONSTRAINT.
23125         * genpreds.c (struct constraint_data): Add is_special_memory.
23126         (have_special_memory_constraints, special_memory_start): New
23127         static vars.
23128         (special_memory_end): Ditto.
23129         (add_constraint): Add new arg is_special_memory.  Add code to
23130         process its true value.  Update have_special_memory_constraints.
23131         (process_define_constraint): Pass the new arg.
23132         (process_define_register_constraint): Ditto.
23133         (choose_enum_order): Process special memory.
23134         (write_tm_preds_h): Generate enum const CT_SPECIAL_MEMORY and
23135         function insn_extra_special_memory_constraint.
23136         (main): Process DEFINE_SPECIAL_MEMORY_CONSTRAINT.
23137         * gensupport.c (process_rtx): Process
23138         DEFINE_SPECIAL_MEMORY_CONSTRAINT.
23139         * ira-costs.c (record_reg_classes): Process CT_SPECIAL_MEMORY.
23140         * ira-lives.c (single_reg_class): Use
23141         insn_extra_special_memory_constraint.
23142         * ira.c (ira_setup_alts): Process CT_SPECIAL_MEMORY.
23143         * lra-constraints.c (process_alt_operands): Ditto.
23144         (curr_insn_transform): Use insn_extra_special_memory_constraint.
23145         * recog.c (asm_operand_ok, preprocess_constraints): Process
23146         CT_SPECIAL_MEMORY.
23147         * reload.c (find_reloads): Ditto.
23148         * rtl.def (DEFINE_SPECIFAL_MEMORY_CONSTRAINT): New.
23149         * stmt.c (parse_input_constraint): Use
23150         insn_extra_special_memory_constraint.
23152 2016-01-29  H.J. Lu  <hongjiu.lu@intel.com>
23154         PR target/69530
23155         * lra-splill.c (lra_final_code_change): Revert r229087 by
23156         removing all sub-registers.
23158 2016-01-29  Steve Ellcey  <sellcey@imgtec.com>
23160         PR target/65604
23161         * config/mips/mips.c (mips_output_division): Check flag_delayed_branch.
23163 2016-01-29  Jakub Jelinek  <jakub@redhat.com>
23165         PR target/69551
23166         * config/i386/i386.c (ix86_expand_vector_set) <case V4SImode>: For
23167         SSE1, copy target into the temporary reg first before recursing
23168         on it.
23170 2016-01-29  H.J. Lu  <hongjiu.lu@intel.com>
23172         * config/i386/sse.md (sse2_cvtps2pd<mask_name>): Replace vBm
23173         with vm.
23175 2016-01-29  Jonathan Wakely  <jwakely@redhat.com>
23177         * ginclude/stdarg.h: Test __cplusplus instead of
23178         __GXX_EXPERIMENTAL_CXX0X__.
23180 2016-01-29  Richard Biener  <rguenther@suse.de>
23182         PR tree-optimization/69547
23183         * tree-ssa-dce.c (mark_aliased_reaching_defs_necessary_1):
23184         Do not mark clobbers necessary.
23185         (mark_all_reaching_defs_necessary_1): Likewise.
23187 2016-01-29  Dominik Vogt  <vogt@linux.vnet.ibm.com>
23189         * config/s390/s390-c.c (s390_resolve_overloaded_builtin): Format
23190         declaration name with %qs and print it in both error messages.
23191         Also fix indentation.
23193 2016-01-29  Dominik Vogt  <vogt@linux.vnet.ibm.com>
23195         PR other/69006
23196         * config/s390/s390-c.c (s390_resolve_overloaded_builtin): Remove
23197         trailing blank line from error message.
23199 2016-01-29  Jonathan Wakely  <jwakely@redhat.com>
23201         PR c++/69462
23202         * ginclude/float.h: Also provide FLT_EVAL_METHOD and DECIMAL_DIG
23203         for C++-11.
23205 2016-01-29  Richard Biener  <rguenther@suse.de>
23207         PR middle-end/69537
23208         * match.pd: Allow all integral types when simplifying a
23209         widening or sign-changing conversion.
23211 2016-01-28  Sebastian Pop  <s.pop@samsung.com>
23213         * graphite-isl-ast-to-gimple.c (get_rename_from_scev): Revert assert
23214         back to setting codegen_error to fail codegen.
23216 2016-01-28  Uros Bizjak  <ubizjak@gmail.com>
23218         PR target/69459
23219         * config/i386/constraints.md (C): Only accept constant zero operand.
23220         (BC): New constraint.
23221         * config/i386/sse.md (*mov<mode>_internal): Use BC constraint
23222         instead of C constraint.
23223         * doc/md.texi (Machine Constraints): Update description
23224         of C constraint.
23226 2016-01-28  Steve Ellcey  <sellcey@imgtec.com>
23228         PR target/68400
23229         * config/mips/mips.c (and_operands_ok): Add MIPS16 check.
23231 2016-01-28  Jakub Jelinek  <jakub@redhat.com>
23233         PR middle-end/69542
23234         * lra-remat.c (calculate_local_reg_remat_bb_data): Only consider
23235         non-debug insns.
23237 2016-01-28  Pat Haugen  <pthaugen@us.ibm.com>
23239         * config/rs6000/rs6000.c (output_cbranch): Don't statically predict
23240         branches if using guessed profile.
23242 2016-01-28  H.J. Lu  <hongjiu.lu@intel.com>
23244         * graphite-optimize-isl.c (optimize_isl): Fix dump.
23246 2016-01-28  Richard Henderson  <rth@redhat.com>
23248         PR target/69305
23249         * config/aarch64/aarch64-modes.def (CC_Cmode): New
23250         * config/aarch64/aarch64-protos.h: Update.
23251         * config/aarch64/aarch64.c (aarch64_zero_extend_const_eq): New.
23252         (aarch64_select_cc_mode): Add check for use of CC_Cmode.
23253         (aarch64_get_condition_code_1): Handle CC_Cmode.
23254         * config/aarch64/aarch64.md (addti3): Use adddi3_compareC.
23255         (*add<mode>3_compareC_cconly_imm): New.
23256         (*add<mode>3_compareC_cconly): New.
23257         (*add<mode>3_compareC_imm): New.
23258         (add<mode>3_compareC): New.
23259         (add<mode>3_carryin, *addsi3_carryin_uxtw): Sort compare operand
23260         to be first.  Use aarch64_carry_operation.
23261         (*add<mode>3_carryin_alt1, *addsi3_carryin_alt1_uxtw): Remove.
23262         (*add<mode>3_carryin_alt2, *addsi3_carryin_alt2_uxtw): Remove.
23263         (*add<mode>3_carryin_alt3, *addsi3_carryin_alt3_uxtw): Remove.
23264         (subti3): Use subdi3_compare1.
23265         (*sub<mode>3_compare0): Rename from sub<mode>3_compare0.
23266         (sub<mode>3_compare1): New.
23267         (*sub<mode>3_carryin0, *subsi3_carryin_uxtw): New.
23268         (*sub<mode>3_carryin): Use aarch64_borrow_operation.
23269         (*subsi3_carryin_uxtw): Likewise.
23270         (*ngc<mode>, *ngcsi_uxtw): Likewise.
23271         (*sub<mode>3_carryin_alt, *subsi3_carryin_alt_uxtw): New.
23272         * config/aarch64/iterators.md (DWI): New.
23273         * config/aarch64/predicates.md (aarch64_carry_operation): New.
23274         (aarch64_borrow_operation): New.
23276 2016-01-28  Abderrazek Zaafrani  <a.zaafrani@samsung.com>
23278         * graphite-optimize-isl.c (optimize_isl): Print a different debug
23279         message when isl does not return a valid schedule.
23281 2016-01-28  Sebastian Pop  <s.pop@samsung.com>
23283         * graphite-isl-ast-to-gimple.c (class translate_isl_ast_to_gimple):
23284         Remove comments from class declarations: they are already in the code
23285         close by the defs.
23287 2016-01-28  Sebastian Pop  <s.pop@samsung.com>
23289         * graphite-isl-ast-to-gimple.c (binary_op_to_tree): Call
23290         codegen_error_p.
23291         (ternary_op_to_tree): Same.
23292         (unary_op_to_tree): Same.
23293         (nary_op_to_tree): Same.
23294         (gcc_expression_from_isl_expr_op): Same.
23295         (gcc_expression_from_isl_expression): Same.
23296         (graphite_create_new_loop): Same.
23297         (graphite_create_new_loop_guard): Same.
23298         (build_iv_mapping): Same.
23299         (graphite_create_new_guard): Same.
23300         (translate_isl_ast_to_gimple::copy_loop_phi_nodes): Same.
23301         (translate_isl_ast_to_gimple::translate_pending_phi_nodes): Same.
23303 2016-01-28  Sebastian Pop  <s.pop@samsung.com>
23305         * graphite-isl-ast-to-gimple.c (get_rename_from_scev): Assert
23306         instead of setting codegen_error to fail codegen.
23308 2016-01-28  Jason Merrill  <jason@redhat.com>
23310         * tree.h (BINFO_FLAG_0): Rename from BINFO_MARKED.
23312 2016-01-28  Wilco Dijkstra  <wdijkstr@arm.com>
23314         * config/aarch64/aarch64.c (aarch64_if_then_else_costs):
23315         Remove CONST_INT_P check in CCMP cost calculation.
23317 2016-01-28  Wilco Dijkstra  <wdijkstr@arm.com>
23319         * config/aarch64/aarch64.c (generic_vector_cost):
23320         Set vec_permute_cost.
23321         (cortexa57_vector_cost): Likewise.
23322         (exynosm1_vector_cost): Likewise.
23323         (xgene1_vector_cost): Likewise.
23324         (aarch64_builtin_vectorization_cost): Use vec_permute_cost.
23325         * config/aarch64/aarch64-protos.h (cpu_vector_cost):
23326         Add vec_permute_cost entry.
23328 2016-01-28  Wilco Dijkstra  <wdijkstr@arm.com>
23330         * config/aarch64/aarch64.md (ccmp<mode>): Disassemble
23331         immediate as %1.
23332         (add<mode>3_compare0): Likewise.
23333         (addsi3_compare0_uxtw): Likewise.
23334         (add<mode>3nr_compare0): Likewise.
23335         (compare_neg<mode>): Likewise.
23336         (<optab><mode>3): Likewise.
23338 2016-01-28  Ilya Enkovich  <enkovich.gnu@gmail.com>
23340         * tree-vect-stmts.c (vectorizable_comparison): Add
23341         NULL check for vectype.
23343 2016-01-28  Richard Biener  <rguenther@suse.de>
23345         PR tree-optimization/69466
23346         * tree-vect-loop-manip.c (slpeel_duplicate_current_defs_from_edges):
23347         Account for PHIs we couldn't duplicate.
23349 2016-01-28  Martin Liska  <mliska@suse.cz>
23351         PR pch/68758
23352         * ggc-common.c (gt_pch_save): Use ENABLE_VALGRIND_ANNOTATIONS macro
23353         instead of ENABLE_VALGRIND_CHECKING.
23355 2016-01-27  Richard Henderson  <rth@redhat.com>
23357         PR rtl-opt/69447
23358         * lra-remat.c (subreg_regs): New.
23359         (dump_candidates_and_remat_bb_data): Dump it.
23360         (operand_to_remat): Reject if operand in subreg_regs.
23361         (set_bb_regs): Collect subreg_regs.
23362         (lra_remat): Init and free subreg_regs.  Compute
23363         calculate_local_reg_remat_bb_data before create_cands.
23365 2016-01-27  H.J. Lu  <hongjiu.lu@intel.com>
23367         PR target/68986
23368         * config/i386/i386.c (ix86_update_stack_boundary): Don't
23369         change stack_alignment_needed for __tls_get_addr call.
23371 2016-01-27  Segher Boessenkool  <segher@kernel.crashing.org>
23373         * config/rs6000/rs6000.c (print_operand): Rollback 's' removal.
23375 2016-01-27  Jeff Law  <law@redhat.com>
23377         PR tree-optimization/68398
23378         PR tree-optimization/69196
23379         * params.def (PARAM_FSM_SCALE_PATH_STMTS): New parameter.
23380         (PARAM_FSM_SCALE_PATH_BLOCKS): Likewise.
23381         * tree-ssa-threadbackward.c (fsm_find_control_statement_thread_paths):
23382         Only count PHIs in the last block in the path.  The others will
23383         const/copy propagate away.  Add heuristic to allow more irreducible
23384         subloops to be created when it is likely profitable to do so.
23386         * tree-ssa-threadbackward.c (fsm_find_control_statement_thread_paths):
23387         Fix typo in comment.  Use gsi_after_labels and remove the GIMPLE_LABEL
23388         check from within the loop.  Use gsi_next_nondebug rather than gsi_next.
23390 2016-01-27  Jakub Jelinek  <jakub@redhat.com>
23392         PR lto/69254
23393         * sanitizer.def: Add BEGIN_SANITIZER_BUILTINS and
23394         END_SANITIZER_BUILTINS markers using DEF_BUILTIN_STUB.
23395         * asan.c (DEF_BUILTIN_STUB): Temporarily define.
23396         * tree-streamer-in.c: Include asan.h.
23397         (streamer_get_builtin_tree): For builtins in sanitizer
23398         range call initialize_sanitizer_builtins and retry.
23400 2016-01-27  Ian Lance Taylor  <iant@google.com>
23402         * common.opt (fkeep-gc-roots-live): New undocumented option.
23403         * tree-ssa-loop-ivopts.c (add_candidate_1): If
23404         -fkeep-gc-roots-live, skip pointers.
23405         (add_iv_candidate_for_biv): Handle add_candidate_1 returning
23406         NULL.
23408 2016-01-27  Uros Bizjak  <ubizjak@gmail.com>
23410         PR target/69512
23411         * config/i386/i386.md (*zext<mode>_doubleword_and): New pattern.
23412         (*zext<mode>_doubleword): Disable for TARGET_ZERO_EXTEND_WITH_AND.
23414 2016-01-27  Thomas Klausner  <wiz@NetBSD.org>
23416         PR target/68380
23417         * configure.ac: NetBSD provides SSP in its C library.
23418         * configure: Updated.
23420 2016-01-27  Richard Biener  <rguenther@suse.de>
23422         PR tree-optimization/69166
23423         * tree-vect-loop.c (vect_is_simple_reduction): Always check
23424         reduction code for commutativity / associativity.
23426 2016-01-27  Martin Jambor  <mjambor@suse.cz>
23428         PR tree-optimization/69355
23429         * tree-sra.c (analyze_access_subtree): Correct hole detection when
23430         total_scalarization fails.
23432 2016-01-27  David Edelsohn  <dje.gcc@gmail.com>
23434         * config/rs6000/driver-rs6000.c (detect_processor_aix): Add
23435         power9.
23437 2016-01-27  Christian Bruel  <christian.bruel@st.com>
23439         PR target/69245
23440         * config/arm/arm-c.c (arm_pragma_target_parse): Add comments.
23441         Move arm_reset_previous_fndecl and set_target_option_current_node in
23442         the conditional part.  Call save_restore_target_globals.
23443         * config/arm/arm.c (arm_set_current_function):
23444         Refactor to better support #pragma target and attribute mix.
23445         Call save_restore_target_globals.
23446         * config/arm/arm-protos.h (save_restore_target_globals): New function.
23448 2016-01-27  Martin Liska  <mliska@suse.cz>
23450         * hsa.c (hsa_summary_t::link_functions): Create IPA_REF_ADDR
23451         reference for an HSA kernel and its host function.
23453 2016-01-27  Jakub Jelinek  <jakub@redhat.com>
23455         PR tree-optimization/69399
23456         * wide-int.h (wi::lrshift): For larger precisions, only
23457         use fast path if shift is known to be < HOST_BITS_PER_WIDE_INT.
23459 2016-01-27  Claudiu Zissulescu  <claziss@synopsys.com>
23461         * config/arc/predicates.md (proper_comparison_operator): Reject
23462         constant-constant comparison.
23464 2016-01-26  Tom de Vries  <tom@codesourcery.com>
23466         PR tree-optimization/69110
23467         * tree-data-ref.c (initialize_data_dependence_relation): Handle
23468         DR_NUM_DIMENSIONS == 0.
23470 2016-01-26  Abderrazek Zaafrani  <a.zaafrani@samsung.com>
23471             Sebastian Pop  <s.pop@samsung.com>
23473         * graphite-isl-ast-to-gimple.c (ternary_op_to_tree): Handle
23474         isl_ast_op_cond and isl_ast_op_select.
23475         (gcc_expression_from_isl_expr_op): Same.
23477 2016-01-26  Jason Merrill  <jason@redhat.com>
23479         PR c++/68782
23480         * tree.c (recompute_constructor_flags): Split out from
23481         build_constructor.
23482         (verify_constructor_flags): New.
23483         * tree.h: Declare them.
23485 2016-01-26  Iain Buclaw  <ibuclaw@gdcproject.org>
23487         PR rtl-optimization/69217
23488         * var-tracking.c (tracked_record_parameter_p): Don't segfault if there
23489         are no TYPE_FIELDS set for the record type.
23491 2016-01-26  Jakub Jelinek  <jakub@redhat.com>
23493         PR target/68662
23494         * config/rs6000/rs6000.c (rs6000_option_override_internal): Initialize
23495         toc_label_name unconditionally.
23496         (rs6000_emit_load_toc_table): Call ggc_strdup on toc_label_name for
23497         SYMBOL_REF string.  Use toc_label_name instead of constructing
23498         LCTOC1.
23499         (rs6000_elf_declare_function_name): Use toc_label_name instead of
23500         constructing LCTOC1.
23502 2016-01-26  Martin Sebor  <msebor@redhat.com>
23504         PR other/69477
23505         * doc/extend.texi (Common Type Attributes): Move text that talks about
23506         attribute packed from attribute aligned to the section discussing
23507         the former attribute for clarity.
23509 2016-01-26  Richard Henderson  <rth@redhat.com>
23511         PR middle-end/60908
23512         * trans-mem.c (tm_region_init): Mark entry block as visited.
23514 2016-01-26  David Malcolm  <dmalcolm@redhat.com>
23516         PR other/69006
23517         * diagnostic-show-locus.c (layout::print_source_line): Replace
23518         call to pp_newline with call to layout::print_newline.
23519         (layout::print_annotation_line): Likewise.
23520         (layout::move_to_column): Likewise.
23521         (layout::print_any_fixits): After printing any fixits, print a
23522         trailing newline, if necessary.
23523         (layout::print_newline): New method, resetting any colorization
23524         before a newline.
23525         (diagnostic_show_locus): Move the pp_newline to before the
23526         early bailout.  Remove dummy block enclosing the layout instance.
23527         * diagnostic.c (default_diagnostic_finalizer): Replace invocation
23528         of pp_newline_and_flush with pp_flush.
23529         (diagnostic_append_note): Delete use of pp_newline.
23530         (diagnostic_append_note_at_rich_loc): Delete.
23531         * diagnostic.h (diagnostic_append_note_at_rich_loc): Delete.
23532         * pretty-print.h (output_buffer_append_r): Reset buff->line_length
23533         when newline characters are added to the buffer.
23535 2016-01-26  Michael Matz  <matz@suse.de>
23537         * configure.ac (ac_cv_std_swap_in_utility): New test.
23538         * system.h (<algorithm>): Check HAVE_SWAP_IN_UTILITY as well.
23539         * configure: Regenerate.
23540         * config.in: Regenerate.
23542 2016-01-26  Claudiu Zissulescu  <claziss@synopsys.com>
23544         * config/arc/arc.md (cstoresi4): Force operand into register.
23545         (arcset<code>): Fix predicate.
23546         (arcsetltu): Likewise.
23547         (arcsetgeu): Likewise.
23548         (arcsethi): Likewise.
23549         (arcsetls): Likewise.
23551 2016-01-26  Jakub Jelinek  <jakub@redhat.com>
23553         PR tree-optimization/69483
23554         * gimple-fold.c (canonicalize_constructor_val): Return NULL
23555         if base has error_mark_node type.
23557 2016-01-26  Christophe Lyon  <christophe.lyon@linaro.org>
23559         PR target/68620
23560         * config/arm/arm.c (neon_valid_immediate): Handle FP16 vectors.
23561         * config/arm/arm_neon.h (__ARM_NUM_LANES, __arm_lane, arm_lanq):
23562         New helper macros.
23563         (vget_lane_f16): Handle big-endian.
23564         (vgetq_lane_f16): Likewise.
23565         (vset_lane_f16): Likewise.
23566         (vsetq_lane_f16): Likewise.
23567         * config/arm/iterators.md (VQXMOV): Add V8HF.
23568         (VDQ): Add V4HF and V8HF.
23569         (V_reg): Handle V4HF and V8HF.
23570         (Is_float_mode): Likewise.
23571         * config/arm/neon.md (movv4hf, movv8hf, neon_vdup_nv4hf,
23572         neon_vdup_nv8hf): New patterns.
23573         (vec_set<mode>_internal, vec_extract<mode>, neon_vld1_dup<mode>):
23574         Use VD_LANE iterator.
23575         (neon_vld1_dup<mode>): Use VQ2 iterator.
23577 2016-01-26  Nathan Sidwell  <nathan@acm.org>
23579         * omp-low.h (oacc_fn_attrib_kernels_p): Declare.
23580         (set_oacc_fn_attrib): Add IS_KERNEL arg.
23581         * omp-low.c (set_oacc_fn_attrib): Add IS_KERNEL arg.
23582         (oacc_fn_attrib_kernels_p, oacc_fn_attrib_level): New.
23583         (expand_omp_target): Pass is_kernel to set_oacc_fn_attrib.
23584         (oacc_validate_dims): Add LEVEL arg, don't return level.
23585         (new_oacc_loop_routine): Use oacc_fn_attrib_level, not
23586         oacc_validate_dims.
23587         (execute_oacc_device_lower): Adjust, add more dump output.
23588         * tree-ssa-loop.c (gate_oacc_kernels): Use
23589         oacc_fn_attrib_kernels_p.
23590         * tree-parloops.c (create_parallel_loop): Adjust
23591         set_oacc_fn_attrib call.
23593 2016-01-26  Jakub Jelinek  <jakub@redhat.com>
23595         PR lto/69254
23596         * lto-wrapper.c (merge_and_complain): Handle -fcilkplus.
23597         (append_compiler_options): Handle -fcilkplus.
23598         (append_linker_options): Ignore -fno-{openmp,openacc,cilkplus}.
23600 2016-01-26  Nick Clifton  <nickc@redhat.com>
23602         PR target/66655
23603         * config/i386/winnt.c (i386_pe_binds_local_p): If a function has
23604         been marked as DECL_ONE_ONLY but we do not the means to make it
23605         so, then do not allow it to bind locally.
23607 2016-01-26  Jakub Jelinek  <jakub@redhat.com>
23609         PR lto/69254
23610         * opts.h (parse_sanitizer_options): New prototype.
23611         * opts.c (sanitizer_opts): New array.
23612         (parse_sanitizer_options): New function.
23613         (common_handle_option): Use parse_sanitizer_options.
23615 2016-01-26  H.J. Lu  <hongjiu.lu@intel.com>
23617         PR target/68986
23618         * config/i386/i386.c (ix86_compute_frame_layout): Move stack
23619         alignment adjustment to ...
23620         (ix86_update_stack_boundary): Here.  Don't over-align stack for
23621         __tls_get_addr.
23622         (ix86_finalize_stack_realign_flags): Use stack_alignment_needed
23623         if __tls_get_addr is called.
23625 2016-01-26  Christian Bruel  <christian.bruel@st.com>
23627         * doc/sourcebuild.texi (arm_crypto_pragma_ok): Remove.
23629 2016-01-26  Eric Botcazou  <ebotcazou@adacore.com>
23631         * config/ia64/ia64.c (ia64_expand_vecint_compare): Use gen_int_mode.
23633 2016-01-26  Richard Biener  <rguenther@suse.de>
23635         PR middle-end/69467
23636         * match.pd: Guard X * CST CMP 0 pattern with single_use.
23638 2016-01-26  Richard Biener  <rguenther@suse.de>
23640         PR tree-optimization/69452
23641         * tree-ssa-loop-im.c (move_computations_dom_walker): Remove.
23642         (move_computations_dom_walker::before_dom_children): Rename
23643         to ...
23644         (move_computations_worker): This.
23645         (move_computations): Perform an RPO rather than a DOM walk.
23647 2016-01-26  Jakub Jelinek  <jakub@redhat.com>
23649         PR target/69442
23650         * combine.c (combine_instructions): For REG_EQUAL note with
23651         SET_DEST being ZERO_EXTRACT, also temporarily set SET_DEST
23652         to the underlying register.
23653         * doc/rtl.texi (REG_EQUAL): Document the behavior of
23654         REG_EQUAL/REG_EQUIV notes if SET_DEST is ZERO_EXTRACT.
23656 2016-01-26  Roger Ferrer Ibáñez  <rofirrim@gmail.com>
23658         PR target/67896
23659         * config/aarch64/aarch64-builtins.c
23660         (aarch64_init_simd_builtin_types): Do not set structural
23661         equality to __Poly{8,16,64,128}_t types.
23663 2016-01-26  Richard Sandiford  <richard.sandiford@arm.com>
23665         PR tree-optimization/69400
23666         * wide-int.cc (wi_pack): Take the precision as argument and
23667         perform canonicalization here rather than in the callers.
23668         Use the main loop to handle all full-width HWIs.  Add a
23669         zero HWI if in_len isn't a full result.
23670         (wi::divmod_internal): Update accordingly.
23671         (wi::mul_internal): Likewise.  Simplify.
23673 2016-01-25  Aditya Kumar  <aditya.k7@samsung.com>
23674             Sebastian Pop  <s.pop@samsung.com>
23676         * graphite-poly.c (apply_poly_transforms): Simplify.
23677         (print_isl_set): Use more readable format: ISL_YAML_STYLE_BLOCK.
23678         (print_isl_map): Same.
23679         (print_isl_union_map): Same.
23680         (print_isl_schedule): New.
23681         (debug_isl_schedule): New.
23682         * graphite-dependences.c (scop_get_reads): Do not call
23683         isl_union_map_add_map that is undocumented isl functionality.
23684         (scop_get_must_writes): Same.
23685         (scop_get_may_writes): Same.
23686         (scop_get_original_schedule): Remove.
23687         (scop_get_dependences): Do not call isl_union_map_compute_flow that
23688         is deprecated in isl 0.15.  Instead, use isl_union_access_* interface.
23689         (compute_deps): Remove.
23690         * graphite-isl-ast-to-gimple.c (print_schedule_ast): New.
23691         (debug_schedule_ast): New.
23692         (translate_isl_ast_to_gimple::scop_to_isl_ast): Call
23693         set_separate_option.
23694         (graphite_regenerate_ast_isl): Add dump.
23695         (translate_isl_ast_to_gimple::scop_to_isl_ast): Generate code
23696         from scop->transformed_schedule.
23697         (graphite_regenerate_ast_isl): Add more dump.
23698         * graphite-optimize-isl.c (optimize_isl): Set
23699         scop->transformed_schedule.  Check whether schedules are equal.
23700         (apply_poly_transforms): Move here.
23701         * graphite-poly.c (apply_poly_transforms): ... from here.
23702         (free_poly_bb): Static.
23703         (free_scop): Static.
23704         (pbb_number_of_iterations_at_time): Remove.
23705         (print_isl_ast): New.
23706         (debug_isl_ast): New.
23707         (debug_scop_pbb): New.
23708         * graphite-scop-detection.c (print_edge): Move.
23709         (print_sese): Move.
23710         * graphite-sese-to-poly.c (build_pbb_scattering_polyhedrons): Remove.
23711         (build_scop_scattering): Remove.
23712         (create_pw_aff_from_tree): Assert instead of bailing out.
23713         (add_condition_to_pbb): Remove unused code, do not fail.
23714         (add_conditions_to_domain): Same.
23715         (add_conditions_to_constraints): Remove.
23716         (build_scop_context): New.
23717         (add_iter_domain_dimension): New.
23718         (build_iteration_domains): Initialize pbb->iterators.
23719         Call add_conditions_to_domain.
23720         (nested_in): New.
23721         (loop_at): New.
23722         (index_outermost_in_loop): New.
23723         (index_pbb_in_loop): New.
23724         (outermost_pbb_in): New.
23725         (add_in_sequence): New.
23726         (add_outer_projection): New.
23727         (outer_projection_mupa): New.
23728         (add_loop_schedule): New.
23729         (build_schedule_pbb): New.
23730         (build_schedule_loop): New.
23731         (embed_in_surrounding_loops): New.
23732         (build_schedule_loop_nest): New.
23733         (build_original_schedule): New.
23734         (build_poly_scop): Call build_original_schedule.
23735         * graphite.h: Declare print_isl_schedule and debug_isl_schedule.
23736         (free_poly_dr): Remove.
23737         (struct poly_bb): Add iterators.  Remove schedule, transformed, saved.
23738         (free_poly_bb): Remove.
23739         (debug_loop_vec): Remove.
23740         (print_isl_ast): Declare.
23741         (debug_isl_ast): Declare.
23742         (scop_do_interchange): Remove.
23743         (scop_do_strip_mine): Remove.
23744         (scop_do_block): Remove.
23745         (flatten_all_loops): Remove.
23746         (optimize_isl): Remove.
23747         (pbb_number_of_iterations_at_time): Remove.
23748         (debug_scop_pbb): Declare.
23749         (print_schedule_ast): Declare.
23750         (debug_schedule_ast): Declare.
23751         (struct scop): Remove schedule.  Add original_schedule,
23752         transformed_schedule.
23753         (free_gimple_poly_bb): Remove.
23754         (print_generated_program): Remove.
23755         (debug_generated_program): Remove.
23756         (unify_scattering_dimensions): Remove.
23757         * sese.c (print_edge): ... here.
23758         (print_sese): ... here.
23759         (debug_edge): ... here.
23760         (debug_sese): ... here.
23761         * sese.h (print_edge): Declare.
23762         (print_sese): Declare.
23763         (dump_edge): Declare.
23764         (dump_sese): Declare.
23766 2016-01-25  Aditya Kumar  <aditya.k7@samsung.com>
23767             Sebastian Pop  <s.pop@samsung.com>
23769         * Makefile.in: Set ISLVER in site.exp.
23771 2016-01-25  Jakub Jelinek  <jakub@redhat.com>
23773         * omp-low.c (lower_omp_target) <case USE_DEVICE_PTR>: Set
23774         DECL_VALUE_EXPR of new_var even for the non-array case.  Look
23775         through DECL_VALUE_EXPR for expansion.
23777 2016-01-25  Bernd Edlinger  <bernd.edlinger@hotmail.de>
23779         * config/mips/mips.c (mips_compute_frame_info): Skip re-computing
23780         the frame info after reload completed.
23782 2016-01-25  Jeff Law  <law@redhat.com>
23784         PR tree-optimization/69196
23785         PR tree-optimization/68398
23786         * tree-ssa-threadupdate.h (enum bb_dom_status): Moved here from
23787         tree-ssa-threadupdate.c.
23788         (determine_bb_domination_status): Prototype
23789         * tree-ssa-threadupdate.c (enum bb_dom_status): Remove
23790         (determine_bb_domination_status): No longer static.
23791         (valid_jump_thread_path): Remove code to detect characteristics
23792         of the jump thread path not associated with correctness.
23793         * tree-ssa-threadbackward.c (fsm_find_control_statment_thread_paths):
23794         Correct test for thread path length.  Count PHIs for real operands as
23795         statements that need to be copied.  Do not count ASSERT_EXPRs.
23796         Look at all the blocks in the thread path.  Compute and selectively
23797         filter thread paths based on threading through the latch, threading
23798         a multiway branch or crossing a multiway branch.
23800 2016-01-25  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
23802         * config/rs6000/rs6000.c (rs6000_keep_leaf_when_profiled):  Add
23803         decl with __attribute__ ((unused)) annotation.
23805 2016-01-25  Ilya Enkovich  <enkovich.gnu@gmail.com>
23807         PR target/69421
23808         * tree-vect-stmts.c (vectorizable_condition): Check vectype
23809         of operands is compatible with a statement vectype.
23811 2016-01-25  Eric Botcazou  <ebotcazou@adacore.com>
23813         * doc/extend.texi (scalar_storage_order type attribute): Fix typo and
23814         improve wording for mixed storage order support.
23816 2016-01-25  Bilyan Borisov  <bilyan.borisov@arm.com>
23818         * config/aarch64/arm_neon.h (vcvt_s64_f64): New intrinsic.
23819         (vcvt_u64_f64): Likewise.
23820         (vcvta_s64_f64): Likewise.
23821         (vcvta_u64_f64): Likewise.
23822         (vcvtm_s64_f64): Likewise.
23823         (vcvtm_u64_f64): Likewise.
23824         (vcvtn_s64_f64): Likewise.
23825         (vcvtn_u64_f64): Likewise.
23826         (vcvtp_s64_f64): Likewise.
23827         (vcvtp_u64_f64): Likewise.
23829 2016-01-25  Claudiu Zissulescu  <claziss@synopsys.com>
23831         * config/arc/arc.c (TARGET_DWARF_REGISTER_SPAN): Define.
23832         (arc_init): Check validity mll64 option.
23833         (arc_save_restore): Use double load/store instruction.
23834         (arc_expand_movmem): Likewise.
23835         (arc_split_move): Don't split if we have double load/store
23836         instructions. Returns a boolean.
23837         (arc_process_double_reg_moves): Change function to return boolean
23838         instead of a sequence of instructions.
23839         (arc_dwarf_register_span): New function.
23840         * config/arc/arc-protos.h (arc_split_move): Change prototype.
23841         * config/arc/arc.h (TARGET_CPU_CPP_BUILTINS): Define __ARC_LL64__.
23842         * config/arc/arc.md (*movdi_insn): Emit ldd/std instructions.
23843         (*movdf_insn): Likewise.
23844         * config/arc/arc.opt (mll64): New option.
23845         * config/arc/predicates.md (even_register_operand): New predicate.
23846         * doc/invoke.texi (ARC Options): Add mll64 documentation.
23848 2016-01-25  Richard Biener  <rguenther@suse.de>
23850         PR lto/69393
23851         * dwarf2out.c (is_naming_typedef_decl): Not when DECL_NAMELESS.
23852         * tree-streamer-out.c (pack_ts_base_value_fields): Stream
23853         DECL_NAMELESS.
23854         * tree-streamer-in.c (unpack_ts_base_value_fields): Likewise.
23856 2016-01-25  Richard Biener  <rguenther@suse.de>
23858         PR tree-optimization/69376
23859         * tree-ssa-sccvn.h (struct vn_ssa_aux): Add range_info_anti_range_p
23860         flag.
23861         (VN_INFO_ANTI_RANGE_P): New inline.
23862         (VN_INFO_RANGE_TYPE): Likewise.
23863         * tree-ssa-sccvn.c (set_ssa_val_to): Also record and copy
23864         SSA_NAME_ANTI_RANGE_P.
23865         (free_scc_vn): Restore SSA_NAME_ANTI_RANGE_P.
23866         * tree-ssa-pre.c (eliminate_dom_walker::before_dom_children):
23867         Properly query VN_INFO_RANGE_TYPE.
23869 2016-01-25  Nick Clifton  <nickc@redhat.com>
23871         PR target/66655
23872         * config/i386/cygming.h (MAKE_DECL_ONE_ONLY): Remove definition.
23874 2016-01-23  Tom de Vries  <tom@codesourcery.com>
23876         PR tree-optimization/69426
23877         * tree-parloops.c (eliminate_local_variables_stmt): Handle vdef of
23878         removed clobber.
23880 2016-01-23  Jakub Jelinek  <jakub@redhat.com>
23882         * tree-ssanames.c (release_free_names_and_compact_live_names): Replace
23883         "the the" with "the" in the comments.
23884         * ipa-devirt.c (build_type_inheritance_graph,
23885         update_type_inheritance_graph): Likewise.
23886         * tree.c (build_function_type_list_1): Likewise.
23887         * cfgloopmanip.c (scale_loop_profile): Likewise.
23888         * tree-ssa-loop-ivopts.c (get_shiftadd_cost): Likewise.
23889         * gimple-ssa-split-paths.c
23890         (find_block_to_duplicate_for_splitting_paths): Likewise.
23891         * tree-sra.c (init_subtree_with_zero, clobber_subtree): Likewise.
23892         * expr.c (convert_move): Likewise.
23893         * var-tracking.c (vt_stack_adjustments): Likewise.
23894         * tree-vect-data-refs.c (vect_enhance_data_refs_alignment): Likewise.
23895         * tree-vrp.c (test_for_singularity): Likewise.
23897         * tree-vect-stmts.c (vectorizable_condition): Build a VEC_COND_EXPR
23898         directly instead of building a temporary tree.
23900         PR bootstrap/69434
23901         * genrecog.c: Define INCLUDE_ALGORITHM before including system.h,
23902         remove <algorithm> include.
23904 2016-01-22  Jakub Jelinek  <jakub@redhat.com>
23906         PR target/69432
23907         * config/i386/i386.c: Include dojump.h.
23908         (expand_small_movmem_or_setmem,
23909         expand_set_or_movmem_prologue_epilogue_by_misaligned_moves): Spelling
23910         fixes.
23911         (ix86_expand_set_or_movmem): Call do_pending_stack_adjust () early
23912         if dynamic_check != -1.
23914 2016-01-21  Jeff Law  <law@redhat.com>
23916         PR middle-end/69347
23917         * tree-ssa-dom.c (back_propagate_equivalences): Factored out of
23918         record_temporary_equivalences.  Rewritten to avoid unnecessary calls
23919         into dominated_by_p.
23920         (cprop_into_successor_phis): Avoid unnecessary tests.
23922 2016-01-22  Richard Henderson  <rth@redhat.com>
23924         PR target/69416
23925         * config/aarch64/aarch64.md (UNSPEC_NZCV): New.
23926         (ccmp<mode>, fccmp<mode>, fccmpe<mode>): Use it.
23928 2016-01-22  Michael Matz  <matz@suse.de>
23930         * system.h (string, algorithm): Include only conditionally.
23931         (new): Include always under C++.
23932         * bb-reorder.c (toplevel): Define INCLUDE_ALGORITHM.
23933         * final.c (toplevel): Ditto.
23934         * ipa-chkp.c (toplevel): Define INCLUDE_STRING.
23935         * genconditions.c (write_header): Make gencondmd.c define
23936         INCLUDE_STRING.
23937         * mem-stats.h (mem_usage::print_dash_line): Don't use std::string.
23939         * config/aarch64/aarch64.c (toplevel): Define INCLUDE_STRING.
23940         * common/config/aarch64/aarch64-common.c (toplevel): Ditto.
23942 2016-01-22  Christian Bruel  <christian.bruel@st.com>
23944         PR target/68674
23945         * expr.c (expand_expr_real_1): Reset DECL_MODE if VECTOR_TYPE_P changed.
23947 2016-01-22  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
23949         PR target/69403
23950         * config/arm/thumb2.md (*thumb2_ior_scc_strict_it): Convert to
23951         define_insn_and_split.  Ensure operands[1] and operands[0] do not
23952         get assigned the same register.
23954 2016-01-22  Kugan Vivekanandarajah  <kuganv@linaro.org>
23956         * ipa-prop.c (ipa_set_jf_constant): Remove redundant unshare_expr.
23958 2016-01-22  Christian Bruel  <christian.bruel@st.com>
23960         * config/arm/arm-c.c (arm_pragma_target_parse):
23961         Remove warn_builtin_macro_redefined overwrite.
23963 2016-01-22  Eric Botcazou  <ebotcazou@adacore.com>
23965         * ipa-inline.c (can_inline_edge_p): Back out overzealous check on
23966         flag_non_call_exceptions compatibility.
23968 2016-01-22  Jakub Jelinek  <jakub@redhat.com>
23970         PR debug/66668
23971         * dwarf2out.c (add_child_die_after): New function.
23972         (dwarf_qual_info_t): New type.
23973         (dwarf_qual_info): New variable.
23974         (qualified_die_p): New function.
23975         (modified_type_die): For -fdebug-types-section, ensure
23976         canonical order of qualifiers.  Put qualified DIEs adjacent
23977         to the corresponding non-qualified type DIE and search there
23978         for existing qualified DIEs.
23980 2016-01-22  Eric Botcazou  <ebotcazou@adacore.com>
23982         * doc/extend.texi (scalar_storage_order type attribute): Document
23983         restriction on type punning and aliasing, and remove future tense.
23985 2016-01-21  Roman Zhuykov  <zhroma@ispras.ru>
23987         PR target/69252
23988         * modulo-sched.c (optimize_sc): Allow branch-scheduling to add a new
23989         first stage.
23991 2016-01-21  Jeff Law  <law@redhat.com>
23993         PR middle-end/69347
23994         * tree-ssa-dom.c (dom_opt_dom_walker::thread_across_edge): Avoid
23995         useless call to record_temporary_equivalences.
23996         * tree-ssa-threadbackward.c (find_jump_threads_backwards): Just
23997         allocate 10 slots in the bb_path vector and let it grow as needed.
23998         (fsm_find_control_statement_thread_paths): Similarly for the next_path
23999         vector.
24001 2016-01-21  David Edelsohn  <dje.gcc@gmail.com>
24003         * configure.ac (gcc_cv_as_powerpc_mfcrf, gcc_cv_as_machine_directive):
24004         Detangle.
24005         * configure: Regenerate.
24007 2016-01-21  Pat Haugen  <pthaugen@us.ibm.com>
24009         * config/rs6000/aix71.h (ASM_CPU_SPEC): Add entry for Power9.
24010         * config/rs6000/driver-rs6000.c (struct asm_names): Likewise.
24012 2016-01-21  Bernd Schmidt  <bschmidt@redhat.com>
24014         PR middle-end/66178
24015         * expr.c (expand_expr_real_2) [PLUS_EXPR, MINUS_EXPR]: Don't
24016         drop EXPAND_INITIALIZER.
24017         * rtl.h (contains_symbolic_reference_p): Declare.
24018         * rtlanal.c (contains_symbolic_reference_p): New function.
24019         * simplify-rtx.c (simplify_binary_operation_1): Don't turn
24020         a subtraction into a NOT if symbolic constants are involved.
24022 2016-01-21  Anton Blanchard  <anton@samba.org>
24023             Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
24025         PR target/63354
24026         * config/rs6000/linux64.h (TARGET_KEEP_LEAF_WHEN_PROFILED): New
24027         #define.
24028         * config/rs6000/rs6000.c (rs6000_keep_leaf_when_profiled): New
24029         function.
24031 2016-01-21  Ajit Agarwal  <ajitkum@xilinx.com>
24033         * config/microblaze/microblaze.c
24034         (get_branch_target): New.
24035         (insert_wic_for_ilb_runout): New.
24036         (insert_wic): New.
24037         (microblaze_machine_dependent_reorg): New.
24038         (TARGET_MACHINE_DEPENDENT_REORG): Define macro.
24039         * config/microblaze/microblaze.md
24040         (UNSPEC_IPREFETCH): Define.
24041         (iprefetch): New pattern
24042         * config/microblaze/microblaze.opt
24043         (mxl-prefetch): New flag.
24045 2016-01-21  Ajit Agarwal  <ajitkum@xilinx.com>
24047         * config/microblaze/microblaze.h
24048         (FIXED_REGISTERS): Update in macro.
24049         (CALL_USED_REGISTERS): Update in macro.
24051 2016-01-21  Yuri Rumyantsev  <ysrumyan@gmail.com>
24053         PR rtl-optimization/68920
24054         * ifcvt.c (cond_move_process_if_block): Limit number of conditional
24055         moves.
24057 2016-01-21  Vladimir Makarov  <vmakarov@redhat.com>
24059         PR rtl-optimization/68990
24060         * lra-coalesce.c (lra_coalesce): Invalidate value for the result
24061         pseudo instead of inheritance ones.
24063 2016-01-21  Bernd Edlinger  <bernd.edlinger@hotmail.de>
24064             Nick Clifton  <nickc@redhat.com>
24066         PR target/69129
24067         PR target/69012
24068         * config/mips/mips.c (mips_compute_frame_info): Initialise
24069         args_size and hard_frame_pointer_offset fields of the frame
24070         structure before calling mips_global_pointer.
24072 2016-01-21  David Edelsohn  <dje.gcc@gmail.com>
24074         * configure.ac (gcc_cv_as_dwloc): Test support for debug frame section
24075         label reference.
24076         * configure: Regenerate.
24078 2016-01-21  Richard Biener  <rguenther@suse.de>
24080         * graphite-optimize-isl.c (get_schedule_map): Fix typo.
24082 2016-01-21  Marcin Kościelnicki  <koriakin@0x04.net>
24084         * config/s390/s390.c (s390_asm_declare_function_size): Add code
24085         to actually emit the .size directive.
24087 2016-01-21   Stefan Sørensen  <stefan.sorensen@spectralink.com>
24088              Jakub Jelinek  <jakub@redhat.com>
24090         PR target/69187
24091         PR target/65624
24092         * config/arm/arm-builtins.c (arm_expand_neon_builtin): Increase
24093         args array size by one to avoid buffer overflow.
24095 2016-01-21  Marcin Kościelnicki  <koriakin@0x04.net>
24097         * config/s390/s390.md (pool_section_start): Use switch_to_section
24098         to select proper read-only data section instead of hardcoding
24099         .rodata.
24100         (pool_section_end): Use switch_to_section to match the above.
24102 2016-01-21  Richard Biener  <rguenther@suse.de>
24104         PR tree-optimization/69378
24105         * tree-ssa-sccvn.c (dominated_by_p_w_unex): New function.
24106         (set_ssa_val_to): Use it for dominance checks taking into
24107         account not executable edges.
24109 2016-01-21  Jakub Jelinek  <jakub@redhat.com>
24111         PR c++/69355
24112         * tree-dfa.c (get_ref_base_and_extent): Use GET_MODE_BITSIZE (mode)
24113         for bitsize instead of GET_MODE_PRECISION (mode).
24115 2016-01-20  Martin Sebor  <msebor@redhat.com>
24117         PR c/52291
24118         * extend.texi (__sync Builtins): Clarify the semantics of
24119         __sync_fetch_and_OP built-ins on pointers.
24120         (__atomic Builtins): Same.
24122 2016-01-21  Aditya Kumar  <aditya.k7@samsung.com>
24123             Sebastian Pop  <s.pop@samsung.com>
24125         * graphite-isl-ast-to-gimple.c (enum phi_node_kind): New.
24126         (class translate_isl_ast_to_gimple): Use phi_node_kind instead of bool.
24127         (is_valid_rename): Same.
24128         (translate_isl_ast_to_gimple::get_rename): Same.
24129         (translate_isl_ast_to_gimple::rename_all_uses): Same.
24130         (translate_isl_ast_to_gimple::rename_uses): Same.
24131         (get_new_name): Check for close_phi nodes.
24132         (copy_loop_phi_args): Use phi_node_kind.
24133         (translate_isl_ast_to_gimple::copy_loop_close_phi_args): Same.
24134         (translate_isl_ast_to_gimple::copy_cond_phi_args): Same.
24136 2016-01-21  Aditya Kumar  <aditya.k7@samsung.com>
24137             Sebastian Pop  <s.pop@samsung.com>
24139         Revert commit r229783.
24140         * graphite-isl-ast-to-gimple.c (gcc_expression_from_isl_ast_expr_id):
24141         Remove use of parameter_rename_map.
24142         (copy_def): Remove.
24143         (copy_internal_parameters): Remove.
24144         (graphite_regenerate_ast_isl): Remove call to copy_internal_parameters.
24145         * sese.c (new_sese_info): Do not initialize parameter_rename_map.
24146         (free_sese_info): Do not free parameter_rename_map.
24147         (set_rename): Do not use parameter_rename_map.
24148         (rename_uses): Update call to set_rename.
24149         (graphite_copy_stmts_from_block): Do not use parameter_rename_map.
24150         * sese.h (parameter_rename_map_t): Remove.
24151         (struct sese_info_t): Remove field parameter_rename_map.
24153 2016-01-21  Aditya Kumar  <aditya.k7@samsung.com>
24154             Sebastian Pop  <s.pop@samsung.com>
24156         * graphite-isl-ast-to-gimple.c: Fix comment.
24157         * graphite-scop-detection.c (defined_in_loop_p): New.
24158         (canonicalize_loop_closed_ssa): Do not add close phi nodes for SSA
24159         names defined in loop.
24161 2016-01-21  Aditya Kumar  <aditya.k7@samsung.com>
24162             Sebastian Pop  <s.pop@samsung.com>
24164         * graphite-scop-detection.c (scop_detection::harmful_loop_in_region):
24165         Discard unstructured if-then-else regions.
24167 2016-01-21  Aditya Kumar  <aditya.k7@samsung.com>
24168             Sebastian Pop  <s.pop@samsung.com>
24170         * graphite-sese-to-poly.c (set_scop_parameter_dim): Remove.
24171         (cleanup_loop_iter_dom): Remove.
24172         (build_loop_iteration_domains): Remove.
24173         (build_scop_context): Remove.
24174         (build_scop_iteration_domain): Remove.
24175         (add_loop_constraints): New.
24176         (build_iteration_domains): New.
24177         (build_poly_scop): Call build_iteration_domains.
24179 2016-01-21  Aditya Kumar  <aditya.k7@samsung.com>
24180             Sebastian Pop  <s.pop@samsung.com>
24182         * graphite-scop-detection.c
24183         (scop_detection::harmful_loop_in_region): Free dom and loops.
24184         (scop_detection::loop_body_is_valid_scop): Free bbs.
24186 2016-01-21  Aditya Kumar  <aditya.k7@samsung.com>
24187             Sebastian Pop  <s.pop@samsung.com>
24189         * graphite-scop-detection.c (record_loop_in_sese): New.
24190         (gather_bbs::before_dom_children): Call record_loop_in_sese.
24191         (build_scops): Remove call to build_sese_loop_nests.
24192         * sese.c (sese_record_loop): Remove.
24193         (build_sese_loop_nests): Remove.
24194         (new_sese_info): Remove region->loops.
24195         (free_sese_info): Same.
24196         * sese.h (sese_contains_loop): Same.
24197         (build_sese_loop_nests): Remove.
24198         (sese_contains_loop): Remove.
24200 2016-01-21  Aditya Kumar  <aditya.k7@samsung.com>
24201             Sebastian Pop  <s.pop@samsung.com>
24203         * graphite-scop-detection.c (loop_is_valid_scop): Renamed
24204         loop_is_valid_in_scop.
24205         (scop_detection::harmful_stmt_in_region): Renamed
24206         harmful_loop_in_region.
24207         Call loop_is_valid_in_scop.
24209 2016-01-21  Aditya Kumar  <aditya.k7@samsung.com>
24210             Sebastian Pop  <s.pop@samsung.com>
24212         * graphite-isl-ast-to-gimple.c (translate_isl_ast): Also handle
24213         isl_ast_node_mark.
24215 2016-01-21  Aditya Kumar  <aditya.k7@samsung.com>
24216             Sebastian Pop  <s.pop@samsung.com>
24218         * graphite-poly.c (new_poly_bb): Remove use of PBB_IS_REDUCTION.
24219         * graphite.h (struct poly_bb): Remove field is_reduction.
24220         (PBB_IS_REDUCTION): Remove.
24222 2016-01-21  Aditya Kumar  <aditya.k7@samsung.com>
24223             Sebastian Pop  <s.pop@samsung.com>
24225         * graphite-dependences.c (constrain_domain): Add call to isl_*_coalesce.
24226         (add_pdr_constraints): Same.
24227         (scop_get_reads): Same.
24228         (scop_get_must_writes): Same.
24229         (scop_get_may_writes): Same.
24230         (scop_get_original_schedule): Same.
24231         (extend_schedule): Same.
24232         (apply_schedule_on_deps): Same.
24233         (carries_deps): Same.
24234         (compute_deps): Same.
24235         (scop_get_dependences): Same.
24236         * graphite-isl-ast-to-gimple.c
24237         (translate_isl_ast_to_gimple::generate_isl_schedule): Same.
24238         * graphite-optimize-isl.c (get_schedule_for_band): Same.
24239         (get_schedule_for_band_list): Same.
24240         (get_schedule_map): Same.
24241         (apply_schedule_map_to_scop): Same.
24242         * graphite-sese-to-poly.c (build_pbb_scattering_polyhedrons): Same.
24243         (build_loop_iteration_domains): Same.
24244         (add_condition_to_pbb): Same.
24245         (add_param_constraints): Same.
24246         (pdr_add_memory_accesses): Same.
24247         (pdr_add_data_dimensions): Same.
24249 2016-01-20  Sandra Loosemore  <sandra@codesourcery.com>
24251         * doc/invoke.texi (Instrumentation Options): Clarify -mmpx linking
24252         requirements.
24254 2016-01-20  Sandra Loosemore  <sandra@codesourcery.com>
24256         * common.opt (feliminate-dwarf2-dups): Replace references to
24257         "DWARF 2" with just "DWARF".
24258         * config/ia64/ia64.opt (mdwarf2-asm): Likewise.
24259         * doc/extend.texi: Likewise.
24260         * doc/cpp.texi: Likewise.
24261         * doc/invoke.texi: Likewise.
24262         (Option Summary): Add -gdwarf to list of Debugging Options.
24263         (Debugging Options): Document -gdwarf.
24264         * doc/contrib.texi: Spell "DWARF" like that.
24266 2016-01-21  Jakub Jelinek  <jakub@redhat.com>
24268         * omp-low.c (expand_omp_target): Avoid -Wmaybe-uninitialized
24269         warning.  Fix up formatting.
24271         PR middle-end/67653
24272         * gimplify.c (gimplify_asm_expr): Warn if it is too late to
24273         attempt to mark memory input operand addressable and
24274         call prepare_gimple_addressable in that case.  Don't adjust
24275         input_location for diagnostics, use error_at instead.
24277 2016-01-20  Peter Bergner  <bergner@vnet.ibm.com>
24279         * config/rs6000/ppc-auxv.h: New file.
24280         * config/rs6000/rs6000-builtin.def (cpu_init): Add new builtin.
24281         (cpu_is): Likewise.
24282         (cpu_supports): Likewise.
24283         * config/rs6000/rs6000.c: include "ppc-auxv.h".
24284         (cpu_is_info): New variable.
24285         (cpu_supports_info): Likewise.
24286         (tcb_verification_symbol): Likewise.
24287         (cpu_builtin_p): Likewise.
24288         (cpu_expand_builtin): New function.
24289         (rs6000_expand_ternop_builtin): Add support for CPU builtin functions.
24290         (rs6000_init_builtins): Likewise.
24291         (rs6000_elf_file_end): Emit HWCAP in TCB verification symbol.
24292         * config/rs6000/rs6000.h (TLS_REGNUM): New define.
24293         * configure.ac (gcc_cv_libc_provides_hwcap_in_tcb): New test.
24294         * configure: Regenerate.
24295         * config.in: Likewise.
24296         * doc/extend.texi (PowerPC Built-in Functions): Document
24297         __builtin_cpu_init, __builtin_cpu_is and __builtin_cpu_supports.
24299 2016-01-20  David Edelsohn  <dje.gcc@gmail.com>
24301         PR target/68609
24302         * config/rs6000/rs6000.c (rs6000_emit_swsqrt): Add vector sqrt
24303         domain check.
24304         * config/rs6000/vector.md (sqrt<mode>2): Call rs6000_emit_swsqrt
24305         for V4SFmode.
24307 2016-01-20  Richard Henderson  <rth@redhat.com>
24309         PR bootstrap/69343
24310         PR bootstrap/69339
24311         PR tree-opt/68964
24312         Revert:
24313         * tree.c (tm_define_builtin): New.
24314         (find_tm_vector_type): New.
24315         (build_tm_vector_builtins): New.
24316         (build_common_builtin_nodes): Call it.
24318 2016-01-20  Christophe Lyon  <christophe.lyon@linaro.org>
24320         * doc/sourcebuild.texi (arm_crypto_pragma_ok): Document new entry.
24321         (arm_fp_ok): Likewise.
24322         (arm_fp): Likewise.
24323         (arm_crypto): Likewise.
24325 2016-01-20  Ilya Enkovich  <enkovich.gnu@gmail.com>
24326             Richard Biener  <rguenther@suse.de>
24328         PR tree-optimization/69328
24329         * tree-vect-stmts.c (vect_is_simple_cond): Check compared
24330         vectors have same number of elements.
24331         (vectorizable_condition): Fix masked version recognition.
24333 2016-01-20  Richard Biener  <rguenther@suse.de>
24335         PR tree-optimization/69345
24336         * tree-ssa-sccvn.h (VN_INFO_RANGE_INFO): New inline function.
24337         (VN_INFO_PTR_INFO): Likewise.
24338         * tree-ssa-sccvn.c (set_ssa_val_to): Avoid clearing points-to
24339         info when it is equal between non-dominating SSA names.
24340         * tree-ssa-pre.c (eliminate_dom_walker::before_dom_children):
24341         Make sure to look at original SSA infos.
24343 2016-01-20  Jeff Law  <law@redhat.com>
24345         PR target/25114
24346         * config/m68k/predicates.md (pow2_m1_operand): New predicate
24347         extracted from ...
24348         (reg_or_pow2_m1_operand): Call pow2_m1_operand.
24349         (pc_or_label_operand): New predicate.
24350         * config/m68k/m68k.md: Add new peephole2 patterns for GTU/LEU
24351         tests for small integers that are 2^n - 1.
24353 2016-01-20  Jonathan Wakely  <jwakely@redhat.com>
24355         * doc/invoke.texi (Options Summary): Add '.' after @xref.
24357 2016-01-19  Jeff Law  <law@redhat.com>
24359         PR middle-end/69347
24360         * tree-ssa-threadbackwards.c
24361         (fsm_find_control_statement_thread_paths): Do not try to lookup
24362         FSM paths for SSA_NAMEs appearing in abnormal PHIs.
24364 2016-01-20  Kugan Vivekanandarajah  <kuganv@linaro.org>
24366         * doc/lto.texi: Remove text that says only Gold has linker plugin
24367         support.
24369 2016-01-19  Eric Botcazou  <ebotcazou@adacore.com>
24371         * dwarf2out.c (need_endianity_attribute_p): New inline predicate.
24372         (base_type_die): Add REVERSE parameter and attach DW_AT_endianity to
24373         the DIE accordingly.
24374         (modified_type_die): Add REVERSE parameter and pass it recursively,
24375         as well as to base_type_die.  Adjust presence check accordingly.
24376         (base_type_for_mode): Adjust call to modified_type_die.
24377         (add_type_attribute): Add REVERSE parameter and pass it to
24378         modified_type_die.
24379         (generic_parameter_die): Adjust call to add_type_attribute.
24380         (add_scalar_info): Likewise.
24381         (add_subscript_info): Likewise.
24382         (gen_array_type_die): Likewise.
24383         (gen_descr_array_type_die): Likewise.
24384         (gen_entry_point_die): Likewise.
24385         (gen_enumeration_type_die): Likewise.
24386         (gen_formal_parameter_die): Likewise.
24387         (gen_subprogram_die): Likewise.
24388         (gen_variable_die ): Likewise.
24389         (gen_const_die): Likewise.
24390         (gen_field_die): Likewise.
24391         (gen_pointer_type_die): Likewise.
24392         (gen_reference_type_die): Likewise.
24393         (gen_ptr_to_mbr_type_die): Likewise.
24394         (gen_inheritance_die): Likewise.
24395         (gen_subroutine_type_die): Likewise.
24396         (gen_typedef_die): Likewise.
24397         (force_type_die): Adjust call to modified_type_die.
24399 2016-01-19  Sandra Loosemore  <sandra@codesourcery.com>
24401         * doc/standards.texi: Copy-editing for grammar, markup, and sentence
24402         flow throughout the file.  Fix broken link to Objective-C 2.0
24403         documentation.
24404         * doc/invoke.texi: More copy-editing; fix numerous typos and spelling
24405         errors.
24407 2016-01-19  Wilco Dijkstra  <wdijkstr@arm.com>
24409         * ccmp.c (expand_ccmp_expr_1): Avoid spurious unused warnings.
24411 2016-01-19  Jan Hubicka  <hubicka@ucw.cz>
24413         PR ipa/66223
24414         * ipa-devirt.c (is_cxa_pure_virtual_p): New function.
24415         (maybe_record_node): Record cxa_pure_virtual as the only possible
24416         target if there are not ohter candidates.
24417         (possible_polymorphic_call_target_p): Accept cxa_pure_virtual.
24419 2016-01-19  Richard Biener  <rguenther@suse.de>
24421         * hsa-gen.c (get_memory_order_name): Use MEMMODEL_ constants.
24422         (get_memory_order): Likewise.
24424 2016-01-19  Kirill Yukhin  <kirill.yukhin@intel.com>
24426         * tree-vect-stmts.c (vectorizable_store): Check
24427         rhs vectype.
24429 2016-01-19  David Malcolm  <dmalcolm@redhat.com>
24431         PR jit/68446
24432         * gcc.c (driver::decode_argv): Add call to
24433         init_opts_obstack before init_options_struct.
24434         * opts.c (init_opts_obstack): Remove idempotency.
24435         (init_options_struct): Replace call to init_opts_obstack
24436         with a gcc_assert to verify that it has already been called.
24437         * toplev.c (toplev::main): Add call to init_opts_obstack before
24438         calls to init_options_struct.
24439         (toplev::finalize): Move cleanup of opts_obstack next to
24440         cleanup of save_decoded_options, clearing the latter, and
24441         save_decoded_options_count.
24443 2016-01-19  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
24445         PR target/69135
24446         * config/arm/vfp.md (l<vrint_pattern><su_optab><mode>si2): Set "conds"
24447         attribute to unconditional.  Remove %? from output template.
24449 2015-01-19  Wilco Dijkstra  <wdijkstr@arm.com>
24450             Jiong Wang  <jiong.wang@arm.com>
24452         * ccmp.c (expand_ccmp_expr_1): Cost the instruction sequences
24453         generated from different expand order.
24455 2015-01-19  Wilco Dijkstra  <wdijkstr@arm.com>
24457         * /config/aarch64/aarch64.c (aarch64_if_then_else_costs):
24458         Add support for CCMP costing.
24460 2015-01-19  Wilco Dijkstra  <wdijkstr@arm.com>
24462         * ccmp.c (ccmp_candidate_p): Remove integer-only restriction.
24463         * config/aarch64/aarch64.md (fccmp<mode>): New pattern.
24464         (fccmpe<mode>): Likewise.
24465         (fcmp): Rename to fcmp and globalize pattern.
24466         (fcmpe): Likewise.
24467         * config/aarch64/aarch64.c (aarch64_gen_ccmp_first): Add FP support.
24468         (aarch64_gen_ccmp_next): Add FP support.
24470 2015-01-19  Wilco Dijkstra  <wdijkstr@arm.com>
24472         * target.def (gen_ccmp_first): Update documentation.
24473         (gen_ccmp_next): Likewise.
24474         * doc/tm.texi (gen_ccmp_first): Update documentation.
24475         (gen_ccmp_next): Likewise.
24476         * ccmp.c (expand_ccmp_expr): Extract cmp_code from return value of
24477         expand_ccmp_expr_1.  Improve comments.
24478         * config/aarch64/aarch64.md (ccmp_and): Use if_then_else for ccmp.
24479         (ccmp_ior<mode>): Remove pattern.
24480         (cmp<mode>): Remove expand.
24481         (cmp): Globalize pattern.
24482         (cstorecc4): Use cc_register.
24483         (mov<mode>cc): Remove ccmp_cc_register check.
24484         * config/aarch64/aarch64.c (aarch64_get_condition_code_1):
24485         Simplify after removal of CC_DNE/* modes.
24486         (aarch64_ccmp_mode_to_code): Remove.
24487         (aarch64_print_operand): Remove 'K' case.  Merge 'm' and 'M' cases.
24488         In 'k' case use integer as condition.
24489         (aarch64_nzcv_codes): Remove inverted cases.
24490         (aarch64_code_to_ccmode): Remove.
24491         (aarch64_gen_ccmp_first): Use cmp pattern directly.  Return the correct
24492         comparison with CC register to be used in folowing CCMP/branch/CSEL.
24493         (aarch64_gen_ccmp_next): Use previous comparison and mode in CCMP
24494         pattern.  Return the comparison with CC register.  Invert conditions
24495         when bitcode is OR.
24496         * config/aarch64/aarch64-modes.def: Remove CC_DNE/* modes.
24497         * config/aarch64/predicates.md (ccmp_cc_register): Remove.
24499 2016-01-19  Jan Hubicka  <hubicka@ucw.cz>
24501         * cgraphunit.c (cgraph_node::reset): Clear thunk info and
24502         instrumented_version.
24504 2016-01-19  Richard Biener  <rguenther@suse.de>
24506         PR tree-optimization/69336
24507         * tree-ssa-scopedtables.c (avail_expr_hash): Handle all
24508         handled components with get_ref_base_and_extent.
24509         (equal_mem_array_ref_p): Adjust.
24511 2016-01-19  Jakub Jelinek  <jakub@redhat.com>
24513         PR debug/65779
24514         * shrink-wrap.c: Include valtrack.h.
24515         (move_insn_for_shrink_wrap): Add DEBUG argument.  If
24516         MAY_HAVE_DEBUG_INSNS, call dead_debug_add on DEBUG_INSNs
24517         in between insn and where it will be moved to.  Call
24518         dead_debug_insert_temp.
24519         (prepare_shrink_wrap): Adjust caller.  Call dead_debug_local_init
24520         first and dead_debug_local_finish at the end.
24521         For uses and defs bitmap, handle all regs in between REGNO and
24522         END_REGNO, not just the first one.
24524 2016-01-19  Richard Biener  <rguenther@suse.de>
24526         PR tree-optimization/69352
24527         * tree-ssa-scopedtables.c (avail_expr_hash): Check for size == -1.
24528         (equal_mem_array_ref_p): Constrain size and max size properly.
24529         Compare the reverse flag.
24531 2016-01-19  Bernd Schmidt  <bschmidt@redhat.com>
24533         * ira.c (ira): Update regstat data if we deleted insns.
24535 2016-01-19  Jakub Jelinek  <jakub@redhat.com>
24537         PR rtl-optimization/68955
24538         PR rtl-optimization/64557
24539         * dse.c (record_store, check_mem_read_rtx): Don't call get_addr
24540         here.  Fix up formatting.
24541         * alias.c (get_addr): Handle VALUE +/- CONST_SCALAR_INT_P.
24543 2016-01-19  Jan Hubicka  <hubicka@ucw.cz>
24545         PR lto/69133
24546         * cgraphunit.c (cgraph_node::expand_thunk): When forcing gimple
24547         assume that the node has body.
24548         * cgraph.c (cgraph_node::get_untransformed_body): Use gimple_body_p
24549         check.
24551 2016-01-19  Jan Hubicka  <hubicka@ucw.cz>
24553         * lto-streamer-out.c (lto_output): Do not stream instrumentation
24554         thunks.
24556 2016-01-19  Jan Hubicka  <hubicka@ucw.cz>
24558         * symtab.c (symtab_node::asm_name): Do not call printable name directly.
24559         (symtab_node::name): Report name as unnamed if DECL_NAME is not set.
24561 2016-01-19  Martin Jambor  <mjambor@suse.cz>
24562             Martin Liska  <mliska@suse.cz>
24563             Michael Matz  <matz@suse.de>
24565         * Makefile.in (OBJS): Add new source files.
24566         (GTFILES): Add hsa.c.
24567         * common.opt (disable_hsa): New variable.
24568         (-Whsa): New warning.
24569         * config.in (ENABLE_HSA): New.
24570         * configure.ac: Treat hsa differently from other accelerators.
24571         (OFFLOAD_TARGETS): Define ENABLE_OFFLOADING according to
24572         $enable_offloading.
24573         (ENABLE_HSA): Define ENABLE_HSA according to $enable_hsa.
24574         * doc/install.texi (Configuration): Document --with-hsa-runtime,
24575         --with-hsa-runtime-include, --with-hsa-runtime-lib and
24576         --with-hsa-kmt-lib.
24577         * doc/invoke.texi (-Whsa): Document.
24578         (hsa-gen-debug-stores): Likewise.
24579         * lto-wrapper.c (compile_images_for_offload_targets): Do not attempt
24580         to invoke offload compiler for hsa acclerator.
24581         * opts.c (common_handle_option): Determine whether HSA offloading
24582         should be performed.
24583         * params.def (PARAM_HSA_GEN_DEBUG_STORES): New parameter.
24584         * builtin-types.def (BT_FN_VOID_UINT_PTR_INT_PTR): New.
24585         (BT_FN_VOID_INT_OMPFN_SIZE_PTR_PTR_PTR_UINT_PTR_INT_INT): Removed.
24586         (BT_FN_VOID_INT_OMPFN_SIZE_PTR_PTR_PTR_UINT_PTR_PTR): New.
24587         * gimple-low.c (lower_stmt): Also handle GIMPLE_OMP_GRID_BODY.
24588         * gimple-pretty-print.c (dump_gimple_omp_for): Also handle
24589         GF_OMP_FOR_KIND_GRID_LOOP.
24590         (dump_gimple_omp_block): Also handle GIMPLE_OMP_GRID_BODY.
24591         (pp_gimple_stmt_1): Likewise.
24592         * gimple-walk.c (walk_gimple_stmt): Likewise.
24593         * gimple.c (gimple_build_omp_grid_body): New function.
24594         (gimple_copy): Also handle GIMPLE_OMP_GRID_BODY.
24595         * gimple.def (GIMPLE_OMP_GRID_BODY): New.
24596         * gimple.h (enum gf_mask): Added GF_OMP_PARALLEL_GRID_PHONY,
24597         GF_OMP_FOR_KIND_GRID_LOOP, GF_OMP_FOR_GRID_PHONY and
24598         GF_OMP_TEAMS_GRID_PHONY.
24599         (gimple_statement_omp_single_layout): Updated comments.
24600         (gimple_build_omp_grid_body): New function.
24601         (gimple_has_substatements): Also handle GIMPLE_OMP_GRID_BODY.
24602         (gimple_omp_for_grid_phony): New function.
24603         (gimple_omp_for_set_grid_phony): Likewise.
24604         (gimple_omp_parallel_grid_phony): Likewise.
24605         (gimple_omp_parallel_set_grid_phony): Likewise.
24606         (gimple_omp_teams_grid_phony): Likewise.
24607         (gimple_omp_teams_set_grid_phony): Likewise.
24608         (gimple_return_set_retbnd): Also handle GIMPLE_OMP_GRID_BODY.
24609         * omp-builtins.def (BUILT_IN_GOMP_OFFLOAD_REGISTER): New.
24610         (BUILT_IN_GOMP_OFFLOAD_UNREGISTER): Likewise.
24611         (BUILT_IN_GOMP_TARGET): Updated type.
24612         * omp-low.c: Include symbol-summary.h, hsa.h and params.h.
24613         (adjust_for_condition): New function.
24614         (get_omp_for_step_from_incr): Likewise.
24615         (extract_omp_for_data): Moved parts to adjust_for_condition and
24616         get_omp_for_step_from_incr.
24617         (build_outer_var_ref): Handle GIMPLE_OMP_GRID_BODY.
24618         (fixup_child_record_type): Bail out if receiver_decl is NULL.
24619         (scan_sharing_clauses): Handle OMP_CLAUSE__GRIDDIM_.
24620         (scan_omp_parallel): Do not create child functions for phony
24621         constructs.
24622         (check_omp_nesting_restrictions): Handle GIMPLE_OMP_GRID_BODY.
24623         (scan_omp_1_op): Checking assert we are not remapping to
24624         ERROR_MARK.  Also also handle GIMPLE_OMP_GRID_BODY.
24625         (parallel_needs_hsa_kernel_p): New function.
24626         (expand_parallel_call): Register apprpriate parallel child
24627         functions as HSA kernels.
24628         (grid_launch_attributes_trees): New type.
24629         (grid_attr_trees): New variable.
24630         (grid_create_kernel_launch_attr_types): New function.
24631         (grid_insert_store_range_dim): Likewise.
24632         (grid_get_kernel_launch_attributes): Likewise.
24633         (get_target_argument_identifier_1): Likewise.
24634         (get_target_argument_identifier): Likewise.
24635         (get_target_argument_value): Likewise.
24636         (push_target_argument_according_to_value): Likewise.
24637         (get_target_arguments): Likewise.
24638         (expand_omp_target): Call get_target_arguments instead of looking
24639         up for teams and thread limit.
24640         (grid_expand_omp_for_loop): New function.
24641         (grid_arg_decl_map): New type.
24642         (grid_remap_kernel_arg_accesses): New function.
24643         (grid_expand_target_kernel_body): New function.
24644         (expand_omp): Call it.
24645         (lower_omp_for): Do not emit phony constructs.
24646         (lower_omp_taskreg): Do not emit phony constructs but create for them
24647         a temporary variable receiver_decl.
24648         (lower_omp_taskreg): Do not emit phony constructs.
24649         (lower_omp_teams): Likewise.
24650         (lower_omp_grid_body): New function.
24651         (lower_omp_1): Call it.
24652         (grid_reg_assignment_to_local_var_p): New function.
24653         (grid_seq_only_contains_local_assignments): Likewise.
24654         (grid_find_single_omp_among_assignments_1): Likewise.
24655         (grid_find_single_omp_among_assignments): Likewise.
24656         (grid_find_ungridifiable_statement): Likewise.
24657         (grid_target_follows_gridifiable_pattern): Likewise.
24658         (grid_remap_prebody_decls): Likewise.
24659         (grid_copy_leading_local_assignments): Likewise.
24660         (grid_process_kernel_body_copy): Likewise.
24661         (grid_attempt_target_gridification): Likewise.
24662         (grid_gridify_all_targets_stmt): Likewise.
24663         (grid_gridify_all_targets): Likewise.
24664         (execute_lower_omp): Call grid_gridify_all_targets.
24665         (make_gimple_omp_edges): Handle GIMPLE_OMP_GRID_BODY.
24666         * tree-core.h (omp_clause_code): Added OMP_CLAUSE__GRIDDIM_.
24667         (tree_omp_clause): Added union field dimension.
24668         * tree-pretty-print.c (dump_omp_clause): Handle OMP_CLAUSE__GRIDDIM_.
24669         * tree.c (omp_clause_num_ops): Added number of arguments of
24670         OMP_CLAUSE__GRIDDIM_.
24671         (omp_clause_code_name): Added name of OMP_CLAUSE__GRIDDIM_.
24672         (walk_tree_1): Handle OMP_CLAUSE__GRIDDIM_.
24673         * tree.h (OMP_CLAUSE_GRIDDIM_DIMENSION): New.
24674         (OMP_CLAUSE_SET_GRIDDIM_DIMENSION): Likewise.
24675         (OMP_CLAUSE_GRIDDIM_SIZE): Likewise.
24676         (OMP_CLAUSE_GRIDDIM_GROUP): Likewise.
24677         * passes.def: Schedule pass_ipa_hsa and pass_gen_hsail.
24678         * tree-pass.h (make_pass_gen_hsail): Declare.
24679         (make_pass_ipa_hsa): Likewise.
24680         * ipa-hsa.c: New file.
24681         * lto-section-in.c (lto_section_name): Add hsa section name.
24682         * lto-streamer.h (lto_section_type): Add hsa section.
24683         * timevar.def (TV_IPA_HSA): New.
24684         * hsa-brig-format.h: New file.
24685         * hsa-brig.c: New file.
24686         * hsa-dump.c: Likewise.
24687         * hsa-gen.c: Likewise.
24688         * hsa.c: Likewise.
24689         * hsa.h: Likewise.
24690         * toplev.c (compile_file): Call hsa_output_brig.
24691         * hsa-regalloc.c: New file.
24693 2016-01-18  Jeff Law  <law@redhat.com>
24695         PR tree-optimization/69320
24696         * tree-ssa-dom.c (record_edge_info): For comparisons against a boolean
24697         ranged object, do nothing if the RHS constant is not [0..1].
24698         (optimize_stmt): Comparing a boolean ranged object against a
24699         constant outside [0..1] results in a compile-time constant.
24701         * tree-ssanames.c (ssa_name_has_boolean_range): Remove unnecessary
24702         test.
24704 2016-01-18  Sandra Loosemore  <sandra@codesourcery.com>
24706         * doc/invoke.texi (Invoking GCC): Add new section to menu.
24707         (Option Summary): Update to reflect new section and moved options.
24708         (C++ Dialect Options): Move -fstats to new section.
24709         (Debugging Options): Move all dump, statistics, and other GCC
24710         developer options to new section.  Rewrite section introduction
24711         and re-order remaining options to put the more basic ones first.
24712         (Optimization Options): Move -fira-verbose and -flto-report* to
24713         new section.
24714         (Developer Options): New section incorporating moved options.
24715         * doc/cppopts.texi (-dM): Update cross-reference.
24717 2016-01-18  Richard Henderson  <rth@redhat.com>
24719         PR target/69176
24720         * config/aarch64/aarch64.md (add<GPI>3): Move long immediate
24721         operands to pseudo only if CSE is expected.  Split long immediate
24722         operands only after reload, and for the stack pointer.
24723         (*add<GPI>3_pluslong): Remove.
24724         (*addsi3_aarch64, *adddi3_aarch64): Merge into...
24725         (*add<GPI>3_aarch64): ... here.  Add r/rk/Upl alternative.
24726         (*addsi3_aarch64_uxtw): Add r/rk/Upl alternative.
24727         (*add<GPI>3 peepholes): New.
24728         (*add<GPI>3 splitters): New.
24729         * config/aarch64/constraints.md (Upl): New.
24730         * config/aarch64/predicates.md (aarch64_pluslong_strict_immedate): New.
24732 2016-01-18  Richard Biener  <rguenther@suse.de>
24734         PR tree-optimization/69297
24735         * tree-vect-slp.c (vect_bb_slp_scalar_cost): Count each scalar
24736         stmt at most once.
24737         (vect_bb_vectorization_profitable_p): Clear visited flag again.
24739 2016-01-18  Yuri Rumyantsev  <ysrumyan@gmail.com>
24741         PR middle-end/68542
24742         * fold-const.c (fold_binary_op_with_conditional_arg): Bail out for case
24743         of mixind vector and scalar types.
24744         (fold_relational_const): Add handling of vector
24745         comparison with boolean result.
24746         * tree-cfg.c (verify_gimple_comparison): Add argument CODE, allow
24747         comparison of vector operands with boolean result for EQ/NE only.
24748         (verify_gimple_assign_binary): Adjust call for verify_gimple_comparison.
24749         (verify_gimple_cond): Likewise.
24750         * tree-vrp.c (extract_code_and_val_from_cond_with_ops): Modify check on
24751         valid type of VAL.
24753 2016-01-18  Joseph Myers  <joseph@codesourcery.com>
24755         * config/mips/mips.h (ISA_HAS_PAIRED_SINGLE): Require
24756         !TARGET_OCTEON.
24758 2016-01-18  Richard Biener  <rguenther@suse.de>
24760         PR middle-end/69308
24761         * gimple.c (gimple_could_trap_p_1): Handle GIMPLE_COND.
24763 2016-01-18  Tom de Vries  <tom@codesourcery.com>
24765         * passes.def: Add pass_parallelize_loops to pass_oacc_kernels.
24767 2016-01-18  Tom de Vries  <tom@codesourcery.com>
24769         * omp-low.c (set_oacc_fn_attrib): Make extern.
24770         * omp-low.h (set_oacc_fn_attrib): Declare.
24771         * tree-parloops.c (struct reduction_info): Add reduc_addr field.
24772         (create_call_for_reduction_1): Handle case that reduc_addr is non-NULL.
24773         (create_parallel_loop, gen_parallel_loop, try_create_reduction_list):
24774         Add and handle function parameter oacc_kernels_p.
24775         (find_reduc_addr, get_omp_data_i_param): New function.
24776         (ref_conflicts_with_region, oacc_entry_exit_ok_1)
24777         (oacc_entry_exit_single_gang, oacc_entry_exit_ok): New function.
24778         (parallelize_loops): Add and handle function parameter oacc_kernels_p.
24779         Calculate dominance info.  Skip loops that are not in a kernels region
24780         in oacc_kernels_p mode.  Skip inner loops of parallelized loops.
24781         (pass_parallelize_loops::execute): Call parallelize_loops with
24782         oacc_kernels_p argument.
24783         (pass_parallelize_loops::clone, pass_parallelize_loops::set_pass_param):
24784         New member function.
24785         (pass_parallelize_loops::bool oacc_kernels_p): New member var.
24786         * passes.def: Add argument to pass_parallelize_loops instantation.
24788 2016-01-18  Tom de Vries  <tom@codesourcery.com>
24790         * tree-parloops.c (pass_parallelize_loops::execute): Allow
24791         pass_parallelize_loops to be run outside the loop pipeline.
24793 2016-01-18  Alan Lawrence  <alan.lawrence@arm.com>
24795         * tree-scalar-evolution.c (follow_copies_to_constant): New.
24796         (analyze_initial_condition, analyze_scalar_evolution_1): Call previous.
24798 2016-01-18  Alan Lawrence  <alan.lawrence@arm.com>
24800         PR target/63679
24801         * tree-ssa-scopedtables.c (avail_expr_hash): Hash MEM_REF and ARRAY_REF
24802         using get_ref_base_and_extent.
24803         (equal_mem_array_ref_p): New.
24804         (hashable_expr_equal_p): Add call to previous.
24806 2016-01-18  Alan Lawrence  <alan.lawrence@arm.com>
24808         PR target/63679
24809         * tree-sra.c (disqualified_constants, constant_decl_p): New.
24810         (sra_initialize): Allocate disqualified_constants.
24811         (sra_deinitialize): Free disqualified_constants.
24812         (disqualify_candidate): Update disqualified_constants when appropriate.
24813         (create_access): Scan for constant-pool entries as we go along.
24814         (scalarizable_type_p): Add check against type_contains_placeholder_p.
24815         (maybe_add_sra_candidate): Allow constant-pool entries.
24816         (load_assign_lhs_subreplacements): Bind debug for constant pool vars.
24817         (initialize_constant_pool_replacements): New.
24818         (sra_modify_assign): Avoid mangling assignments created by previous,
24819         and don't generate writes into constant pool.
24820         (sra_modify_function_body): Call initialize_constant_pool_replacements.
24822 2016-01-18  Ilya Enkovich  <enkovich.gnu@gmail.com>
24824         * config/i386/i386.c (scalar_to_vector_candidate_p): Support
24825         andnot instruction.
24826         (scalar_chain::convert_op): Likewise.
24827         * config/i386/i386.md (*andndi3_doubleword): New.
24829 2016-01-18  Richard Biener  <rguenther@suse.de>
24831         PR tree-optimization/69170
24832         * tree-vect-slp.c (vect_build_slp_tree): Verify we are not
24833         building a vector from scalar results of a pattern stmt.
24835 2016-01-18  Jakub Jelinek  <jakub@redhat.com>
24837         * haifa-sched.c (autopref_multipass_init): Work around
24838         -Wmaybe-uninitialized warning.
24840 2016-01-18  Thomas Preud'homme  <thomas.preudhomme@arm.com>
24842         * config/arm/arm.c (thumb1_reorg): Check that the comparison is
24843         against the constant 0.
24845 2016-01-17  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
24847         PR tree-optimization/68799
24848         * gimple-ssa-strength-reduction.c (create_phi_basis): Directly
24849         look up phi candidates in the statement-candidate map.
24850         (phi_add_costs): Likewise.
24851         (record_phi_increments): Likewise.
24852         (phi_incr_cost): Likewise.
24853         (ncd_with_phi): Likewise.
24854         (all_phi_incrs_profitable): Likewise.
24856 2016-01-17  Jakub Jelinek  <jakub@redhat.com>
24858         * omp-low.c (mark_loops_in_oacc_kernels_region): Work around
24859         -Wmaybe-uninitialized warning.
24861 2016-01-16  Sandra Loosemore  <sandra@codesourcery.com>
24863         * doc/invoke.texi (Invoking GCC): Add new section to menu.
24864         (Option Summary): Update to reflect new section and moved options.
24865         (C++ Dialect Options): Move -fvtable-verify and related options.
24866         (Debugging Options): Move Sanitizer, Pointer Bounds Checker,
24867         and profiling-related options.
24868         (Optimization Options): Move profile generation options and
24869         -fstack-protector and related options.
24870         (Instrumentation Options): New section incorporating moved options.
24871         (Code Generation Options): Move -finstrument-functions and
24872         related options, -fstack-check, -fstack-limit*, and -fbounds-check.
24874 2016-01-16  Tom de Vries  <tom@codesourcery.com>
24876         * passes.def: Move pass_expand_omp_ssa out of pass_parallelize_loops.
24878 2016-01-16  Tom de Vries  <tom@codesourcery.com>
24880         * omp-low.c (expand_omp_atomic_fetch_op):  Release defs of update stmt.
24882 2016-01-16  Richard Sandiford  <richard.sandiford@arm.com>
24884         * hash-table.h (hash_table::empty): Turn into an inline wrapper
24885         that checks whether the table is already empty.  Rename the
24886         original implementation to...
24887         (hash_table::empty_slot): ...this new private function.
24889 2016-01-15  David Malcolm  <dmalcolm@redhat.com>
24891         PR diagnostic/68899
24892         * diagnostic-show-locus.c (layout::print_source_line): Move x
24893         offset of line until after call to
24894         get_line_width_without_trailing_whitespace.
24896 2016-01-15  Jeff Law  <law@redhat.com>
24898         PR tree-optimization/69270
24899         * tree-ssanames.c (ssa_name_has_boolean_range): Moved here from
24900         tree-ssa-dom.c.  Improve test for [0..1] ranve from VRP.
24901         * tree-ssa-dom.c (ssa_name_has_boolean_range): Remove.
24902         * tree-ssanames.h (ssa_name_has_boolean_range): Prototype.
24903         * tree-ssa-uncprop.c (associate_equivalences_with_edges): Use
24904         ssa_name_has_boolean_range and constant_boolean_node.
24906 2016-01-15  Vladimir Makarov  <vmakarov@redhat.com>
24908         PR rtl-optimization/69030
24909         * lra-spills.c (remove_pseudos): Check nrefs and make the function
24910         returning bool.
24911         (spill_pseudos): Delete debug insn for dead pseudo.
24912         (lra_spill): Initiate spill_hard_reg and slots memory separately.
24914 2016-01-15  Jiong Wang  <jiong.wang@arm.com>
24916         * config/aarch64/aarch64-builtins.c (aarch64_types_unopus_qualifiers):
24917         New.
24918         (TYPES_UNOPUS): Likewise.
24919         * config/aarch64/aarch64-simd-builtins.def (lbtruncuv2sf): Correct
24920         builtin type, from UNOP to UNOPUS.
24921         (lbtruncuv4sf): Likewise.
24922         (lbtruncuv2df): Likewise.
24923         (lrounduv2sf): Likewise.
24924         (lrounduv4sf): Likewise.
24925         (lrounduv2df): Likewise.
24926         (lroundusf): Likewise.
24927         (lroundusf): Likewise.
24928         (lceiluv2sf): Likewise.
24929         (lceiluv4sf): Likewise.
24930         (lceiluv2df): Likewise.
24931         (lceilusf): Likewise.
24932         (lceiludf): Likewise.
24933         (lflooruv2sf): Likewise.
24934         (lflooruv4sf): Likewise.
24935         (lflooruv2df): Likewise.
24936         (lfloorusf): Likewise.
24937         (lfloorudf): Likewise.
24938         (lfrintnuv2sf): Likewise.
24939         (lfrintnuv4sf): Likewise.
24940         (lfrintnuv2df): Likewise.
24941         (lfrintnusf): Likewise.
24942         (lfrintnudf): Likewise.
24943         * config/aarch64/arm_neon.h (vcvt_u32_f32): Remove unncessary type
24944         conversion.
24945         (vcvtq_u32_f32): Likewise.
24946         (vcvtq_u64_f64): Likewise.
24947         (vcvta_u32_f32): Likewise.
24948         (vcvtaq_u32_f32): Likewise.
24949         (vcvtaq_u64_f64): Likewise.
24950         (vcvtm_u32_f32): Likewise.
24951         (vcvtmq_u32_f32): Likewise.
24952         (vcvtmq_u64_f64): Likewise.
24953         (vcvtn_u32_f32): Likwise.
24954         (vcvtnq_u32_f32): Likewise.
24955         (vcvtnq_u64_f64): Likewise.
24956         (vcvtp_u32_f32): Likewise.
24957         (vcvtpq_u32_f32): Likewise.
24958         (vcvtpq_u64_f64): Likewise.
24959         (vcvtmd_u64_f64): Likewise.
24960         (vcvtms_u32_f32): Likewise.
24961         (vcvtad_u64_f64): Likewise.
24962         (vcvtas_u32_f32): Likewise.
24963         (vcvtnd_u64_f64): Likewise.
24964         (vcvtns_u32_f32): Likewise.
24965         (vcvtpd_u64_f64): Likewise.
24966         (vcvtps_u32_f32): Likewise.
24968 2016-01-15  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
24970         * config/aarch64/aarch64.c (aarch64_if_then_else_costs): Handle
24971         CSEL of zero_extended registers.
24973 2016-01-15  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
24975         * config/aarch64/aarch64.c (aarch64_rtx_costs, COMPARE case):
24976         Handle COMPARE of ZERO_EXTRACT against zero form of TST-immediate.
24978 2016-01-15  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
24980         * config/aarch64/aarch64.c (aarch64_process_one_target_attr): Return
24981         false when argument string is not found in the attributes table
24982         at all.
24984 2016-01-15  David Edelsohn  <dje.gcc@gmail.com>
24986         PR target/68609
24987         * config/rs6000/rs6000.c (rs6000_emit_msub): Delete.
24988         (rs6000_emit_swsqrt): Convert to Goldschmidt's Algorithm
24989         * config/rs6000/rs6000.md (sqrt<mode>2): Limit swsqrt to high
24990         precision estimate.
24992 2016-01-15  Richard Biener  <rguenther@suse.de>
24994         PR tree-optimization/66856
24995         * tree-vect-loop.c (vect_transform_loop): Free SLP instances here.
24996         * tree-vect-slp.c (vect_free_slp_tree): Decrement stmt reference count.
24997         (vect_create_new_slp_node): Increment stmt reference count.
24998         (vect_get_and_check_slp_defs): Make sure stmts are nor already in
24999         an SLP tree before swapping operands.
25000         (vect_build_slp_tree): Likewise.
25001         (destroy_bb_vec_info): Free stmt info after SLP instances.
25002         * tree-vect-stmts.c (new_stmt_vec_info): Initialize reference count.
25003         * tree-vectorizer.h (struct _stmt_vec_info): Add num_slp_uses field.
25004         (STMT_VINFO_NUM_SLP_USES): New macro.
25006 2016-01-15  Richard Biener  <rguenther@suse.de>
25008         PR debug/69137
25009         * dwarf2out.c (add_linkage_name_raw): New function split out from ...
25010         (add_linkage_name): ... here.
25011         (gen_typedef_die): Use add_linkage_name_raw instead of
25012         add_linkage_attr to delay DECL_ASSEMBLER_NAME computation
25013         if necessary.
25015 2016-01-15  Cesar Philippidis  <cesar@codesourcery.com>
25017         * gimplify.c (oacc_default_clause): Decode reference and pointer
25018         types for both kernels and parallel regions.
25020 2016-01-15  Richard Sandiford  <richard.sandiford@arm.com>
25022         PR middle-end/69246
25023         * calls.c (emit_call_1): Force n_popped to zero for sibcalls.
25025 2016-01-15  Ilya Enkovich  <enkovich.gnu@gmail.com>
25027         * config/i386/i386.c (scalar_chain::compute_convert_gain): Fix typo.
25028         (convert_scalars_to_vector): Likewise.
25030 2016-01-15  Jonathan Wakely  <jwakely@redhat.com>
25032         * doc/extend.texi (Type Traits): Fix grammar.
25034 2016-01-15  Martin Jambor  <mjambor@suse.cz>
25036         * tree-inline.c (remap_decl): Use existing dclarations if
25037         remapping a type and prevent_decl_creation_for_types.
25038         (replace_locals_stmt): Do an initial remapping of non-VLA typed
25039         decls first.  Do real remapping with
25040         prevent_decl_creation_for_types set.
25041         * tree-inline.h (copy_body_data): New field
25042         prevent_decl_creation_for_types, moved remap_var_for_cilk to avoid
25043         padding.
25045 2016-01-15  Dominik Vogt  <vogt@linux.vnet.ibm.com>
25047         * config/s390/s390.opt (mmvcle): More verbose help text.
25049 2016-01-15  Dominik Vogt  <vogt@linux.vnet.ibm.com>
25051         * config/s390/s390.opt: Add period to -mzvector option text.
25053 2016-01-15  Richard Biener  <rguenther@suse.de>
25055         PR tree-optimization/68961
25056         * tree-vect-slp.c (vect_analyze_slp_cost_1): Consider cost
25057         of invariants in stores again.
25059 2016-01-15  Sebastian Huber  <sebastian.huber@embedded-brains.de>
25061         * config/arm/t-rtems: Add cortex-m7/fpv5-d16 multilib.
25063 2016-01-15  Ilya Enkovich  <enkovich.gnu@gmail.com>
25065         * config/i386/i386.c (ix86_expand_branch): Don't split
25066         DI mode xor instruction to SI mode.
25068 2016-01-15  Jan Hubicka  <hubicka@ucw.cz>
25070         PR ipa/68148
25071         * ipa-icf.c (sem_function::merge): Virtual functions may become
25072         reachable even if they address is not taken and there are no
25073         idrect calls.
25075 2016-01-15  Jan Hubicka  <hubicka@ucw.cz>
25077         * lto-streamer-out.c (subtract_estimated_size): New function.
25078         (get_symbol_initial_value): Use it.
25080 2016-01-15  Christian Bruel  <christian.bruel@st.com>
25082         PR target/65837
25083         * config/arm/arm-builtins.c (ARM_BUILTIN_CRYPTO_BASE): New enum tag.
25084         (arm_init_neon_builtins_internal): Rename arm_init_neon_builtins,
25085         (arm_init_crypto_builtins_internal): Rename arm_init_crypto_builtins.
25086         use add_builtin_function_ext_scope instead of add_builtin_function.
25087         (neon_set_p, neon_crypto_set_p): Remove.
25088         (arm_init_builtins): Always call arm_init_neon_builtins and
25089         arm_init_crypto_builtins.
25090         (arm_expand_builtin): Check that builtins are allowed for the arch.
25091         * config/arm/arm-protos.h (arm_init_neon_builtins): Remove prototype.
25092         * config/arm/arm.c (arm_valid_target_attribute_tree): Remove
25093         arm_init_neon_builtins call.
25095 2016-01-15  Richard Biener  <rguenther@suse.de>
25097         PR tree-optimization/69117
25098         * tree-ssa-sccvn.h (struct vn_ssa_aux): Add info member.
25099         * tree-ssa-sccvn.c (set_ssa_val_to): Save and adjust SSA name info
25100         of the leader conservatively.
25101         (free_scc_vn): Restore original SSA name infos.
25103 2016-01-14  Jeff Law  <law@redhat.com>
25105         PR tree-optimization/69270
25106         * tree-ssa-dom.c (ssa_name_has_boolean_range): If the type has a
25107         single bit of precision, verify it's also unsigned.
25108         (record_edge_info): Use constant_boolean_node rather than fold_convert
25109         to convert boolean_true/boolean_false to the right type.
25111 2016-01-14  Richard Henderson  <rth@redhat.com>
25113         PR rtl-opt/69014
25114         * loop-doloop.c (record_reg_sets): New.
25115         (doloop_optimize): Reject the transform if the sequence
25116         clobbers registers live at the end of the loop block.
25117         (doloop_optimize_loops): Enable df_live if needed.
25119 2016-01-14  Michael Meissner  <meissner@linux.vnet.ibm.com>
25121         * config/rs6000/rs6000-builtin.def: Revert 2016-01-13 change.
25122         * config/rs6000/rs6000.c: Likewise.
25123         * config/rs6000/rs6000.h: Likewise.
25124         * config/rs6000/rs6000.md: Likewise.
25125         * doc/extend.texi: Likewsie.
25127 2016-01-14  Jeff Law  <law@redhat.com>
25129         * tree-ssa-dom.c (ssa_name_has_boolean_range): Fix comment
25130         typo.
25132 2016-01-14  Richard Henderson  <rth@redhat.com>
25134         PR c/69272
25135         PR tree-opt/68964
25136         * trans-mem.c (tm_log_emit_stmt): Fix unit size to bit size.
25137         * tree.c (build_tm_vector_builtins): Use builtin_decl_explicit_p
25138         instead of builtin_decl_declared_p to test for declaration.
25140 2016-01-14  Nicklas Bo Jensen  <nbjensen@gmail.com>
25142         * doc/loop.texi (Loop Analysis and Representation): Document
25143         loop_depth function.
25145 2016-01-14  Tom de Vries  <tom@codesourcery.com>
25147         PR tree-optimization/68773
25148         * omp-low.c (expand_omp_target): Don't set force_output.
25149         * varpool.c (varpool_node::get_create): Same.
25150         * lto-cgraph.c (input_offload_tables): Mark entries in offload_vars and
25151         offload_funcs with force_output.
25153 2016-01-14  Jakub Jelinek  <jakub@redhat.com>
25155         PR debug/69244
25156         * lra-eliminations.c (move_plus_up): Don't change anything if either
25157         the outer or inner subreg mode is not MODE_INT.
25158         * dwarf2out.c (mem_loc_descriptor): For SUBREG, if outer mode is
25159         integral <= DWARF2_ADDR_SIZE, convert to untyped afterwards.
25161 2016-01-14  Alan Lawrence  <alan.lawrence@arm.com>
25163         * doc/md.texi (reduc_smin_@var{m}, reduc_smax_@var{m},
25164         reduc_umin_@var{m}, reduc_umax_@var{m}, reduc_splus_@var{m},
25165         reduc_uplus_@var{m}): Remove.
25166         * expr.c (expand_expr_real_2): Remove expansion path for
25167         reduc_[us](min|max|plus) optabs.
25168         * optabs-tree.c (scalar_reduc_to_vector): Remove.
25169         * optabs-tree.h (scalar_reduc_to_vector): Remove.
25170         * optabs.def (reduc_smax_optab, reduc_smin_optab, reduc_splus_optab,
25171         reduc_umax_optab, reduc_umin_optab, reduc_uplus_optab): Remove.
25172         * tree-vect-loop.c (vectorizable_reduction): Remove test for
25173         reduc_[us](min|max|plus) optabs.
25175 2016-01-14  Alan Lawrence  <alan.lawrence@arm.com>
25177         * config/mips/mips-ps-3d.md (reduc_splus_v2sf): Remove.
25178         (reduc_plus_scal_v2sf): New.
25179         (reduc_smax_v2sf): Rename to...
25180         (reduc_smax_scal_v2sf): ...here, make result SFmode, add vec_extract.
25181         (reduc_smin_v2sf): Rename to...
25182         (reduc_smin_scal_v2sf): ...here, make result SFmode, add vec_extract.
25184 2016-01-14  Jan Hubicka  <hubicka@ucw.cz>
25186         * alias.c (compare_base_symbol_refs): New function.
25187         (rtx_equal_for_memref_p, base_alias_check, memrefs_conflict_p): Use
25188         it.
25190 2016-01-14  Jakub Jelinek  <jakub@redhat.com>
25192         PR middle-end/68146
25193         PR tree-optimization/69155
25194         * tree-complex.c: Include cfganal.h.
25195         (phis_to_revisit): New variable.
25196         (extract_component): Add phiarg_p argument.  Assert that returned
25197         SSA_NAME has non-NULL SSA_NAME_DEF_STMT unless phiarg_p is true.
25198         (update_phi_components): Partly rewrite to use loop over real/imag
25199         components instead of code duplication.  If extract_component returns
25200         SSA_NAME with NULL SSA_NAME_DEF_STMT, store SSA_NAME_VAR or
25201         create_tmp_reg into the PHI node instead, and mention the phi triplet
25202         in phis_to_revisit.
25203         (tree_lower_complex): Walk bbs in rpo order.  Adjust phis recorded
25204         in phis_to_revisit at the end.
25206 2016-01-14  Richard Biener  <rguenther@suse.de>
25208         PR tree-optimization/68060
25209         * tree-vect-loop.c (vect_is_simple_reduction): Check the
25210         outer loop reduction is only used in the inner loop before
25211         detecting a double reduction.
25213 2016-01-14  Jakub Jelinek  <jakub@redhat.com>
25215         PR target/68269
25216         * combine.c (expand_field_assignment): Punt if compute_mode is
25217         unsupported scalar mode.
25219 2016-01-14  Richard Biener  <rguenther@suse.de>
25221         PR tree-optimization/66856
25222         * tree-vect-slp.c (vect_build_slp_tree): Refactor to build
25223         SLP node only if it built successfully.
25224         (vect_analyze_slp_instance): Adjust.
25226 2016-01-14  Jeff Law  <law@redhat.com>
25228         PR tree-optimization/69270
25229         * tree-ssa-dom.c (ssa_name_has_boolean_range): New function.
25230         (record_edge_info): Use it.  Convert boolean_{true,false}_node
25231         to the type of op0.
25233 2016-01-13  Jan Hubicka  <hubicka@ucw.cz>
25235         PR ipa/66487
25236         * ipa-polymorphic-call.c (inlined_polymorphic_ctor_dtor_block_p):
25237         use block_ultimate_origin
25238         (noncall-stmt_may_be_vtbl_ptr_store): Likewise.
25240 2016-01-13  Sandra Loosemore  <sandra@codesourcery.com>
25242         * doc/invoke.texi (Submodel Options): Rename section to
25243         "Machine-Dependent Options" to better reflect its content.
25244         Rewrite introductory text to remove archaic CPU names.
25245         Update references.
25247 2016-01-13  Sandra Loosemore  <sandra@codesourcery.com>
25249         * doc/invoke.texi (Code Gen Options): Move section up in file,
25250         before target-specific options.  Update menu and option summary
25251         to reflect the new section ordering.
25253 2016-01-13  Jonathan Wakely  <jwakely@redhat.com>
25255         * doc/invoke.texi (C Dialect Options): Adjust -std default for C++.
25256         (C++ Dialect Options): Add cross-reference to -std option.
25257         * doc/standards.texi (C++ Language): Document C++14 support.
25259 2016-01-13  Michael Meissner  <meissner@linux.vnet.ibm.com>
25261         * config/rs6000/rs6000-builtin.def (BU_FLOAT128_2): Add support
25262         for pack/unpack functions for __ibm128.
25263         (PACK_IF): Likewise.
25264         (UNPACK_IF): Likewise.
25266         * config/rs6000/rs6000.c (rs6000_builtin_mask_calculate): Add
25267         support for __ibm128 pack/unpack functions.
25268         (rs6000_invalid_builtin): Likewise.
25269         (rs6000_init_builtins): Likewise.
25270         (rs6000_opt_masks): Likewise.
25272         * config/rs6000/rs6000.h (MASK_FLOAT128): Add short name.
25273         (RS6000_BTM_FLOAT128): Add support for __ibm128 pack/unpack
25274         functions
25275         (RS6000_BTM_COMMON): Likewise.
25277         * config/rs6000/rs6000.md (f128_vsx): New mode attribute.
25278         (unpack<mode>): Use FMOVE128_FPR iterator instead of FMOVE128, to
25279         disallow __builtin_{pack,unpack}_longdouble if long double is IEEE
25280         128-bit floating point.  Add support for the double values to be
25281         in Altivec registers for TF/IF packing and unpacking, but restrict
25282         TD packing sub-fields to be FPR registers.  Don't allow overlapped
25283         register support for packing.  Allow pack inputs to be memory
25284         locations.  Don't build generator functions for unpack<mode>_dm
25285         and unpack<mode>_nodm.
25286         (unpack<mode>_dm): Likewise.
25287         (unpack<mode>_nodm): Likewise.
25288         (pack<mode>): Likewise.
25290         * config/rs6000/rs6000-builtin.def (__builtin_pack_ibm128): Add
25291         built-in functions to pack/unpack explicit __ibm128 values.
25292         (__builtin_unpack_ibm128): Likewise.
25294         * doc/extend.texi (PowerPC Built-in Functions): Document
25295         __builtin_pack_ibm128 and __builtin_unpack_ibm128.
25297 2016-01-13  Bernd Schmidt  <bschmidt@redhat.com>
25299         PR c/66208
25300         * c-common.c (check_function_nonnull): Remove unnecessary declaration.
25301         Add new arg loc and pass it down as context.
25302         (check_nonnull_arg): Don't mark ctx arg as unused. Use it as a pointer
25303         to the location to use for the warning.
25304         (check_function_arguments): New arg loc.  All callers changed.  Pass
25305         it to check_function_nonnull.
25306         * c-common.h (check_function_arguments): Adjust declaration.
25308 2016-01-13  Jakub Jelinek  <jakub@redhat.com>
25310         PR tree-optimization/69156
25311         * gimple.c (validate_type): Removed.
25312         (gimple_builtin_call_types_compatible_p): Use
25313         useless_type_conversion_p instead of validate_type.
25314         * value-prof.c (gimple_stringop_fixed_value): Fold
25315         icall_size to correct type.
25317 2016-01-13  Jonathan Wakely  <jwakely@redhat.com>
25319         * doc/extend.texi (__atomic Builtins): Clarify compare_exchange
25320         effects.
25322 2016-01-13  Richard Henderson  <rth@redhat.com>
25324         PR tree-opt/68964
25325         * target.def (builtin_tm_load, builtin_tm_store): Remove.
25326         * config/i386/i386.c (ix86_builtin_tm_load): Remove.
25327         (ix86_builtin_tm_store): Remove.
25328         (TARGET_VECTORIZE_BUILTIN_TM_LOAD): Remove.
25329         (TARGET_VECTORIZE_BUILTIN_TM_STORE): Remove.
25330         * doc/tm.texi.in (TARGET_VECTORIZE_BUILTIN_TM_LOAD): Remove.
25331         (TARGET_VECTORIZE_BUILTIN_TM_STORE): Remove.
25332         * doc/tm.texi: Rebuild.
25334         * gtm-builtins.def (BUILT_IN_TM_MEMCPY_RNWT): New.
25335         (BUILT_IN_TM_MEMCPY_RTWN): New.
25336         * trans-mem.c (tm_log_emit_stmt): Rearrange code for better
25337         fallback from vector to integer helpers.
25338         (build_tm_load): Handle vector types directly, instead of
25339         via target hook.
25340         (build_tm_store): Likewise.
25341         (expand_assign_tm): Prepare for register types not handled by
25342         the above.  Copy them to memory and use memcpy.
25343         * tree.c (tm_define_builtin): New.
25344         (find_tm_vector_type): New.
25345         (build_tm_vector_builtins): New.
25346         (build_common_builtin_nodes): Call it.
25348 2016-01-13  Uros Bizjak  <ubizjak@gmail.com>
25350         * config/i386/i386.h (TARGET_FLT_EVAL_METHOD): Return -1 for
25351         TARGET_SSE_MATH without TARGET_SSE2.  Rewrite.
25353 2016-01-13  Tom de Vries  <tom@codesourcery.com>
25355         PR tree-optimization/69169
25356         * tree-ssa-structalias.c (create_variable_info_for_1): Add and handle
25357         handled_struct_type param.
25358         (create_variable_info_for, intra_create_variable_infos): Call
25359         create_variable_info_for_1 with extra arg.
25361 2016-01-13  Yvan Roux  <yvan.roux@linaro.org>
25363         * config/arm/arm-arches.def: Remove spurious whitespace in "armv8.1-a"
25364         and "armv8.1-a+crc" entries.
25366 2016-01-13  Alexander Fomin  <alexander.fomin@intel.com>
25368         PR target/69228
25369         * config/i386/sse.md (define_expand "avx512pf_gatherpf<mode>sf"):
25370         Change first operand predicate from register_or_constm1_operand
25371         to register_operand.
25372         (define_expand "avx512pf_gatherpf<mode>df"): Likewise.
25373         (define_expand "avx512pf_scatterpf<mode>sf"): Likewise.
25374         (define_expand "avx512pf_scatterpf<mode>df"): Likewise.
25375         (define_insn "*avx512pf_gatherpf<mode>sf"): Remove.
25376         (define_insn "*avx512pf_gatherpf<mode>df"): Likewise.
25377         (define_insn "*avx512pf_scatterpf<mode>sf"): Likewise.
25378         (define_insn "*avx512pf_scatterpf<mode>df"): Likewise.
25379         * config/i386/i386.c (ix86_expand_builtin): Remove first operand
25380         comparison with constm1_rtx from vec_prefetch_gen part.
25382 2016-01-13  Richard Biener  <rguenther@suse.de>
25384         PR tree-optimization/69013
25385         * tree-ssa-uninit.c (prune_uninit_phi_opnds_in_unrealizable_paths):
25386         Exchange assert for a test.
25388 2016-01-13  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
25390         PR target/69247
25391         * config/s390/s390.md (bswaphi splitter): Use simplify_gen_subreg.
25393 2016-01-13  Richard Biener  <rguenther@suse.de>
25395         PR tree-optimization/69242
25396         * tree-ssa-sccvn.c (visit_reference_op_load): Replace bogus
25397         assert with a check.
25399 2016-01-13  Richard Biener  <rguenther@suse.de>
25401         PR tree-optimization/69186
25402         * tree-vect-data-refs.c (vect_enhance_data_refs_alignment):
25403         Properly guard vect_update_misalignment_for_peel call.
25405 2016-01-12  Jeff Law  <law@redhat.com>
25407         PR tree-optimization/pr67755
25408         * tree-ssa-threadupdate.c (struct ssa_local_info_t): Add new field
25409         "need_profile_correction".
25410         (thread_block_1): Initialize new field to false by default.  If we
25411         have multiple thread paths through a common joiner to different
25412         final targets, then set new field to true.
25413         (compute_path_counts): Only do count adjustment when it's really
25414         needed.
25416 2016-01-12  Sandra Loosemore  <sandra@codesourcery.com>
25418         * doc/invoke.texi (Spec Files): Move section down in file, past
25419         all command-line option descriptions.
25421 2016-01-12  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
25423         PR middle-end/54809
25424         * doc/gty.texi: Remove documentation of mark_hook.
25425         * gengtype.c (struct write_types_data): Remove code to support
25426         mark_hook attribute.
25427         (walk_type): Likewise.
25428         (write_func_for_structure): Likewise.
25430 2016-01-12  Sandra Loosemore  <sandra@codesourcery.com>
25432         * doc/invoke.texi (Option Summary) Move -no-canonical-prefixes to
25433         Directory Options, and -specs= to Overall Options.
25434         (Overall Options): Adjust similarly.  Reorder to group related
25435         options together.  Make -specs= cross-reference the spec file details.
25436         (Directory Options): Adjust similarly.
25438 2016-01-12  Jeff Law  <law@redhat.com>
25440         * tree-ssa-threadupdate.c: Various whitespace and typo fixes.
25442 2016-01-12  Olivier Hainque  <hainque@adacore.com>
25444         * gcc.c (spec_undefvar_allowed): New global.
25445         (process_command): Set to true when running for --version or --help,
25446         alone or together.
25447         (getenv_spec_function): When the variable is not defined, use the
25448         variable name as the variable value if we're allowed not to issue
25449         a fatal error.
25451 2016-01-12  Bin Cheng  <bin.cheng@arm.com>
25453         PR tree-optimization/68911
25454         * tree-vrp.c (adjust_range_with_scev): Check overflow in range
25455         information computed for expression "init + nit * step".
25457 2016-01-12  Sandra Loosemore  <sandra@codesourcery.com>
25459         * doc/invoke.texi (Invoking GCC): Copy-edit.  Incorporate information
25460         about name of GCC executable.  Remove deleted node from menu.
25461         (Directory Options) <-B>: Remove cross-reference to deleted node.
25462         (Target Options): Delete section.
25464 2016-01-12  Christian Bruel  <christian.bruel@st.com>
25466         PR target/69180
25467         * config/arm/arm-c.c (arm_pragma_target_parse): Set NODE_CONDITIONAL
25468         for __ARM_NEON_FP, __ARM_FP, _ARM_FEATURE_LDREX.
25470 2016-01-12  Jakub Jelinek  <jakub@redhat.com>
25472         PR target/69198
25473         * config/i386/i386.c (ix86_expand_special_args_builtin): Ensure
25474         aligned_mem is properly set for AVX512-VL floating point masked
25475         stores.
25477         PR target/69175
25478         * ifcvt.c (cond_exec_process_if_block): When removing the last
25479         insn from then_bb, remove also any possible barriers that follow it.
25481 2016-01-12  H.J. Lu  <hongjiu.lu@intel.com>
25483         PR target/68456
25484         PR target/69226
25485         * config/i386/iamcu.h (SIZE_TYPE): New macro.
25486         (PTRDIFF_TYPE): Likewise.
25487         (WCHAR_TYPE): Likewise.
25488         (WCHAR_TYPE_SIZE): Likewise.
25489         (STDINT_LONG32): Likewise.
25491 2016-01-12  Richard Biener  <rguenther@suse.de>
25493         PR tree-optimization/69053
25494         * tree-vect-loop.c (get_initial_def_for_reduction): Properly
25495         convert initial value for cond reductions.
25497 2016-01-12  Richard Biener  <rguenther@suse.de>
25499         PR tree-optimization/69007
25500         * tree-vect-patterns.c (vect_vect_recog_func_ptrs): Move
25501         widen_sum after dot_prod and sad.
25503 2016-01-12  Richard Biener  <rguenther@suse.de>
25505         PR tree-optimization/69168
25506         * tree-vect-loop.c (vect_analyze_loop_2): Reset both main and
25507         pattern stmt SLP type.
25508         * tree-vect-slp.c (vect_detect_hybrid_slp_stmts): Patterns may
25509         end up unused so cope with that case.
25511 2016-01-12  Richard Biener  <rguenther@suse.de>
25513         PR tree-optimization/69157
25514         * tree-vect-stmts.c (vectorizable_mask_load_store): Check
25515         stmts def type only during analyze phase.
25516         (vectorizable_call): Likewise.
25517         (vectorizable_simd_clone_call): Likewise.
25518         (vectorizable_conversion): Likewise.
25519         (vectorizable_assignment): Likewise.
25520         (vectorizable_shift): Likewise.
25521         (vectorizable_operation): Likewise.
25522         (vectorizable_store): Likewise.
25523         (vectorizable_load): Likewise.
25525 2016-01-12  Richard Biener  <rguenther@suse.de>
25527         PR tree-optimization/69174
25528         * tree-vect-stmts.c (vect_mark_relevant): Remove excessive vertical
25529         space.
25530         (vectorizable_load): Properly compute the number of loads needed
25531         for permuted strided SLP loads and do not spuriously assign
25532         to SLP_TREE_VEC_STMTS.
25534 2016-01-12  Andris Pavenis  <andris.pavenis@iki.fi>
25536         * config/i386/djgpp.h (PREFERRED_DEBUGGING_TYPE): Define to DWARF2
25537         (TARGET_ASM_OUTPUT_IDENT): Define to default_asm_output_ident_directive
25538         (MD_EXEC_PREFIX): Remove.
25539         (MD_STARTFILE_PREFIX) Removee.
25540         (FILE_NAME_ABSOLUTE_P): Remove.
25541         (CPP_SPEC): Do not read macros from sys/version.h.
25542         (LINK_COMMAND_SPEC): Remove.
25543         (LOCAL_INCLUDE_DIR): Remove.
25544         (TARGET_ASM_NAMED_SECTION): Define to i386_djgpp_asm_named_section
25545         (TARGET_OS_CPP_BUILTINS): Add DJGPP (non ISO only), __DJGPP, __DJGPP__, unix.
25546         (POST_LINK_SPEC): Define to invoke stubify after linker
25547         (LIBSTDCXX): Remove define
25548         (DBX_REGISTER_NUMBER): Define to svr4_dbx_register_map.
25549         (DEFAULT_PCC_STRUCT_RETURN): Define to 1.
25550         (SUBTARGET_OVERRIDE_OPTIONS): Remove warning about -mbnu2210.
25551         (SUBTARGET_OVERRIDE_OPTIONS): Ignore -fPIC and generate message.
25552         (SUBTARGET_OVERRIDE_OPTIONS): Default to DWARF2 debugging info.
25553         (IX86_MAYBE_NO_LIBGCC_TFMODE): Remove.
25554         (i386_djgpp_asm_named_section): Add propotype of new procedure
25556         * config/i386/xm-djgpp.h (NATIVE_SYSTEM_HEADER_DIR): Define.
25557         (MD_EXEC_PREFIX): Define (moved from config/i386/djgpp.h).
25558         (STANDARD_STARTFILE_PREFIX_1): Define (moved from MD_STARTFILE_PREFIX
25559         in config/i386/djgpp.h).
25560         (STANDARD_STARTFILE_PREFIX_2): Define identical to
25561         STANDARD_STARTFILE_PREFIX_1.
25562         (LOCAL_INCLUDE_DIR): Define (moved from config/i386/djgpp.h).
25563         (GCC_DRIVER_HOST_INITIALIZATION): Fix reporting fatal
25564         installation errors.
25565         (MAX_OFILE_ALIGNMENT): Define to 128.
25566         (HAVE_FTW_H): Undefine as DJGPP do not have nftw, but have ftw.h.
25568         * config/i386/djgpp.c: New file. Add implementation of
25569         i386_djgpp_asm_named_section.
25571         * config/i386/djgpp.opt: Remove obsolete option -mbnu210.
25573         * config/i386/t-djgpp: New file. Add djgpp.o to EXTRA_OBJS.
25574         Add rule for building djgpp.o.
25576 2016-01-11  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
25578         * config/rs6000/rs6000.c (v2df_reduction_p): New function.
25579         (rtx_is_swappable_p): Reductions are swappable.
25580         (insn_is_swappable_p): V2DF reductions are swappable.
25582 2016-01-11  John David Anglin  <danglin@gcc.gnu.org>
25584         * config/pa/pa.c (pa_emit_move_sequence): Handle floating point
25585         reloads for other unsupported memory operands.
25587 2016-01-12  Kugan Vivekanandarajah  <kuganv@linaro.org>
25588             Jim Wilson  <jim.wilson@linaro.org>
25590         PR target/69194
25591         * config/arm/arm-builtins.c (arm_expand_neon_args): Call
25592         copy_to_mode_reg instead of force_reg.
25594 2016-01-11  H.J. Lu  <hongjiu.lu@intel.com>
25596         PR target/69225
25597         * config/i386/i386.h (TARGET_FLT_EVAL_METHOD): Set to 2 only if
25598         TARGET_80387 is true.
25600 2016-01-11  Jakub Jelinek  <jakub@redhat.com>
25602         PR target/69071
25603         * lra-eliminations.c (move_plus_up): Only move plus up
25604         if subreg of the constant can be simplified into constant
25605         and use the simplified subreg of the constant instead of
25606         the original constant.
25608         * fold-const.c (fold_convertible_p): Don't return true
25609         for conversion of VECTOR_TYPE to same sized integral type.
25610         (fold_convert_loc): Fix up formatting.  Fold conversion of
25611         VECTOR_TYPE to same sized integral type using VIEW_CONVERT_EXPR
25612         instead of NOP_EXPR.
25614         PR tree-optimization/69214
25615         * tree-vrp.c (simplify_cond_using_ranges): Don't propagate
25616         innerop into a comparison if SSA_NAME_OCCURS_IN_ABNORMAL_PHI.
25617         Formatting fix.
25619         PR tree-optimization/69207
25620         * tree-vect-slp.c (vect_get_constant_vectors): For
25621         VECTOR_BOOLEAN_TYPE_P, assert op has integral type instead of
25622         fold_convertible_p to vector_type's element type, and always
25623         use VCE for non-VECTOR_BOOLEAN_TYPE_P.
25625 2016-01-11  Richard Biener  <rguenther@suse.de>
25627         PR tree-optimization/69173
25628         * tree-vect-loop.c (vect_fixup_scalar_cycles_with_patterns): Only
25629         fixup the cycle if all stmts are in a pattern.
25631 2016-01-11  Uros Bizjak  <ubizjak@gmail.com>
25633         PR middle-end/68999
25634         * alias.c (base_alias_check): Move check for addresses with
25635         alignment ANDs before the call for compare_base_decls.
25636         (memrefs_conflict_p): Return -1 for different decls
25637         that went through alignment adjustments.
25639 2016-01-11  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
25641         PR rtl-optimization/68796
25642         * config/aarch64/aarch64.md (*and<mode>_compare0): New pattern.
25643         * config/aarch64/aarch64.c (aarch64_select_cc_mode): Handle HImode
25644         and QImode comparisons against zero with CC_NZmode.
25645         * config/aarch64/iterators.md (short_mask): New mode_attr.
25647 2016-01-11  H.J. Lu  <hongjiu.lu@intel.com>
25649         * config/i386/sse.md (<avx512>_load<mode>_mask): Remove snprintf.
25650         (<avx512>_store<mode>_mask): Likewise.
25652 2016-01-11  Bernd Schmidt  <bschmidt@redhat.com>
25653             Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
25655         PR rtl-optimization/68841
25656         * ifcvt.c (struct noce_if_info): Add orig_x field.
25657         (bbs_ok_for_cmove_arith): Add to_rename parameter.
25658         Don't record conflicts on to_rename if it's present.
25659         Allow memory destinations in sets.
25660         (noce_try_cmove_arith): Call bbs_ok_for_cmove_arith even on simple
25661         blocks, passing orig_x to the checks.
25662         (noce_process_if_block): Set if_info->orig_x appropriately.
25664 2016-01-11  Tom de Vries  <tom@codesourcery.com>
25666         PR tree-optimization/69069
25667         * tree-parloops.c (create_parallel_loop): Add missing phi args.
25669 2016-01-11  Yuri Rumyantsev  <ysrumyan@gmail.com>
25671         PR rtl-optimization/68920
25672         * config/i386/i386.c (ix86_option_override_internal): Restrict number
25673         of conditional moves for  RTL if-conversion to 1 for
25674         TARGET_ONE_IF_CONV_INSN.
25675         * config/i386/i386.h (TARGET_ONE_IF_CONV_INSN): New macros.
25676         * config/i386/x86-tune.def (X86_TUNE_ONE_IF_CONV_INSN): New macros.
25677         * params.def (PARAM_MAX_RTL_IF_CONVERSION_INSNS) : Introduce new
25678         parameter to restirct number of conditional moves for
25679         RTL if-conversion.
25680         * doc/invoke.texi (max-rtl-if-conversion-insns): Document it.
25681         * ifcvt.c (bb_ok_for_noce_convert_multiple_sets): Limit number of
25682         conditionl moves.
25684 2016-01-11  Alexandre Oliva  <aoliva@redhat.com>
25686         PR bootstrap/69123
25687         * var-tracking.c (drop_overlapping_mem_locs): Operate on all
25688         onepart vars.  Fix typo in comment.  Fix reversed condition in
25689         unshare test.
25690         (dataflow_set_remove_mem_locs): Operate on all onepart vars.
25692         PR bootstrap/69123
25693         * var-tracking.c (dump_onepart_variable_differences): New.
25694         (dataflow_set_different): If a detailed dump is requested,
25695         delay early returns and dump differences between onepart
25696         variables present before and after, and added variables.
25698 2016-01-11  Ilya Enkovich  <enkovich.gnu@gmail.com>
25700         PR target/69010
25701         * expr.c (expand_expr_real_1): For boolean vector constants
25702         with a scalar mode use const_scalar_mask_from_tree.
25703         (const_scalar_mask_from_tree): New.
25704         * optabs.c (expand_vec_cond_mask_expr): Use mask mode
25705         assigned to a mask type to handle constants.
25707 2016-01-11  Martin Jambor  <mjambor@suse.cz>
25709         PR ipa/69044
25710         * ipa-cp.c (estimate_local_effects): Do not clone for removal of
25711         useless parameters if we cannot change function signature.
25713 2016-01-11  Martin Jambor  <mjambor@suse.cz>
25715         PR ipa/66616
25716         * cgraphclones.c (duplicate_thunk_for_node): Copy can_change_signature
25717         flag.
25719 2016-01-11  Tom de Vries  <tom@codesourcery.com>
25721         PR tree-optimization/69109
25722         * tree-parloops.c (try_transform_to_exit_first_loop_alt): Don't allow
25723         latch with phi.
25725 2016-01-11  Tom de Vries  <tom@codesourcery.com>
25727         PR tree-optimization/69108
25728         * tree-parloops.c (gather_scalar_reductions): Handle case that outer phi
25729         res is not used in a phi.
25731 2016-01-11  Yury Gribov  <y.gribov@samsung.com>
25733         PR 67425
25734         * common.opt (frandom-seed): Fix parameter name.
25735         * doc/invoke.texi (frandom-seed): Ditto and describe parameter.
25737 2016-01-11  Tom de Vries  <tom@codesourcery.com>
25739         PR tree-optimization/69058
25740         * tree-parloops.c (pass_parallelize_loops::execute): Return 0 if libgomp
25741         not supported.
25743 2016-01-11  Andrew Burgess  <andrew.burgess@embecosm.com>
25745         * config/arc/arc.opt (mdiv-rem): Add period to the end.
25746         (mcode-density): Likewise.
25748 2016-01-10  Tom de Vries  <tom@codesourcery.com>
25750         PR tree-optimization/69062
25751         * tree-parloops.c (loop_has_phi_with_address_arg): New function.
25752         (parallelize_loops): Don't paralelize loop that has phi with address
25753         arg.
25755 2016-01-10  Tom de Vries  <tom@codesourcery.com>
25757         PR tree-optimization/69039
25758         * tree-parloops.c (try_create_reduction_list): Only allow single exit
25759         phi for reduction.
25761 2016-01-09  John David Anglin  <danglin@gcc.gnu.org>
25763         PR middle-end/68743
25764         * match.pd: Require target has function_c99_misc before doing
25765         truncl(extend(x)) and trunc(extend(x)) -> extend(truncf(x)), etc.
25767 2016-01-09  Gerald Pfeifer  <gerald@pfeifer.com>
25769         * configure.ac (isl_options_set_schedule_serialize_sccs): Also
25770         use GMPINC.
25771         * configure: Regenerate.
25773 2016-01-09  Jakub Jelinek  <jakub@redhat.com>
25775         PR middle-end/50865
25776         PR tree-optimization/69097
25777         * fold-const.h (expr_not_equal_to): New prototype.
25778         * fold-const.c: Include stringpool.h and tree-ssanames.h.
25779         (expr_not_equal_to): New function.
25780         * match.pd (X % -Y is the same as X % Y): Don't optimize
25781         unless X is known not to be equal to minimum or Y is known
25782         not to be equal to -1.
25783         * tree-vrp.c (simplify_div_or_mod_using_ranges): Add GSI argument.
25784         fold TRUNC_MOD_EXPR if the second argument is not a power of two.
25785         (simplify_stmt_using_ranges): Adjust caller.
25786         (vrp_finalize): Call set_value_range on SSA_NAMEs before calling
25787         substitute_and_fold.
25789 2016-01-09  Jan Hubicka  <hubicka@ucw.cz>
25791         * ipa-icf.c (sem_item_optimizer::merge_classes): Do not ICE on VAR_DECL
25792         w/o DECL_NAME.
25794 2016-01-08  Jakub Jelinek  <jakub@redhat.com>
25796         PR tree-optimization/69167
25797         * gimple-fold.c (replace_stmt_with_simplification): Also punt if
25798         new SSA_NAME_OCCURS_IN_ABNORMAL_PHI SSA_NAMEs appear in operands of
25799         ops[0] comparison.
25800         * gimple-match-head.c (maybe_push_res_to_seq): Likewise.
25802 2016-01-08  Alan Lawrence  <alan.lawrence@arm.com>
25803             Richard Biener  <rguenther@suse.de>
25805         PR tree-optimization/68707
25806         * tree-vect-slp.c (vect_analyze_slp_instance): Cancel permuted SLP
25807         instances that can be handled via vect_load_lanes.
25809 2016-01-08  Uros Bizjak  <ubizjak@gmail.com>
25811         * symtab.c (symtab_node::equal_address_to): Return -1 instead of 2
25812         if we can't determine address equivalence.
25813         * alias.c (compare_base_decl): Update for changed return value of
25814         symtab_node::equal_address_to.
25816 2016-01-08  Jason Merrill  <jason@redhat.com>
25818         PR c++/68983
25819         PR c++/67557
25820         * function.c (assign_temp): Guard against TREE_ADDRESSABLE types here.
25821         * expr.c (store_field): Not here.
25822         * tree-cfgcleanup.c (fixup_noreturn_call): Don't clear LHS of a
25823         call with TREE_ADDRESSABLE type.
25824         * tree-cfg.c (verify_gimple_call): Adjust.
25826 2016-01-08  Olivier Hainque  <hainque@adacore.com>
25828         * config/vxworks.h (VXWORKS_LIBGCC_SPEC): Don't link shared RTPs with
25829         libc_internal.
25831 2016-01-08  Alan Lawrence  <alan.lawrence@arm.com>
25833         * gcc.target/rs6000/paired.md (reduc_smax_v2sf): Rename to...
25834         (reduc_smax_scal_v2sf): ...here, make result SFmode, extract element.
25835         (reduc_smin_v2sf): Rename to...
25836         (reduc_smin_scal_v2sf): ...here, make result SFmode, extract element.
25837         (reduc_splus_v2sf): Rename to...
25838         (reduc_plus_scal_v2sf): ...here, make result SFmode, extract element.
25840 2016-01-08  Jakub Jelinek  <jakub@redhat.com>
25842         PR tree-optimization/69162
25843         * gimplify.c (gimplify_va_arg_expr): Encode original type of
25844         valist argument in another argument.
25845         (gimplify_modify_expr): Adjust for the above change.  Cleanup.
25846         * tree-stdarg.c (expand_ifn_va_arg_1): Use new 3rd argument
25847         to determine the va_list type, build a MEM_REF instead of
25848         build_fold_indirect_ref.
25850         PR tree-optimization/69172
25851         * gimple-fold.c (gimple_fold_builtin_memory_chk): Pass type to
25852         gimple_build.
25854 2016-01-08  Thomas Preud'homme  <thomas.preudhomme@arm.com>
25856         PR tree-optimization/67781
25857         * tree-ssa-math-opts.c (find_bswap_or_nop): Zero out bytes in cmpxchg
25858         and cmpnop in two steps: first the ones not accessed in original
25859         gimple expression in a endian independent way and then the ones not
25860         accessed in the final result in an endian-specific way.
25862 2016-01-08  Jakub Jelinek  <jakub@redhat.com>
25864         PR tree-optimization/69083
25865         * tree-vect-slp.c (vect_get_constant_vectors): For
25866         VECTOR_BOOLEAN_TYPE_P assert op is fold_convertible_p to vector_type's
25867         element type.  If op is fold_convertible_p to vector_type's element
25868         type, use NOP_EXPR instead of VCE.
25870 2016-01-08  Segher Boessenkool  <segher@kernel.crashing.org>
25872         PR rtl-optimization/67778
25873         PR rtl-optimization/68634
25874         PR rtl-optimization/68909
25875         * shrink-wrap.c (try_shrink_wrapping): Add comment.  Don't pop
25876         block from the stack until done with it.  Remove a superfluous
25877         bitmap set.  Remove a superfluous bitmap test.
25879 2016-01-07  Martin Sebor  <msebor@redhat.com>
25881         PR c/68966
25882         * doc/extend.texi (__atomic Builtins, __sync Builtins): Document
25883         constraint on the type of arguments.
25885 2016-01-07  Andreas Tobler  <andreast@gcc.gnu.org>
25887         * config/arm/freebsd.h: Rename SUBTARGET_OVERRIDE_OPTIONS to
25888         SUBTARGET_OVERRIDE_INTERNAL_OPTIONS. Adjust to check
25889         unaligned_access on the gcc_options set.
25890         * config/arm/arm.c (arm_option_override_internal): Use
25891         SUBTARGET_OVERRIDE_INTERNAL_OPTIONS.
25893 2016-01-07  Uros Bizjak  <ubizjak@gmail.com>
25895         PR target/69140
25896         * config/i386/i386.c (ix86_frame_pointer_required): Enable
25897         frame pointer for TARGET_64BIT_MS_ABI when stack is misaligned.
25899 2016-01-07  Uros Bizjak  <ubizjak@gmail.com>
25901         Revert
25902         2016-01-06  Uros Bizjak  <ubizjak@gmail.com>
25904         PR target/69140
25905         * config/i386/i386.c (ix86_expand_prologue): Declare fs.sp_valid
25906         depending on frame_pointer_needed before remaining integer and SSE
25907         registers are saved.
25909 2016-01-07  Sandra Loosemore  <sandra@codesourcery.com>
25911         PR 1078
25912         * doc/extend.texi (Nvidia PDX Function Attributes): New section.
25914 2016-01-07  H.J. Lu  <hongjiu.lu@intel.com>
25916         PR target/69171
25917         * config/i386/sse.md (<sse>_sqrt<mode>2<mask_name><round_name>):
25918         Use the "xBm" constraint.
25919         (float<sseintvecmodelower><mode>2<mask_name><round_name):
25920         Likewise.
25921         (sse_cvtsi2ss<round_name>): Use round_nimm_scalar_predicate.
25922         (sse_cvtsi2ssq<round_name>): Likewise.
25923         (sse_cvtss2si<round_name>): Likewise.
25924         (sse_cvtss2siq<round_name>): Likewise.
25925         (sse2_cvtsi2sdq<round_name>): Likewise.
25926         (sse2_cvtsd2si<round_name>): Likewise.
25927         (sse2_cvtsd2siq<round_name>): Likewise.
25928         * config/i386/subst.md (round_nimm_scalar_predicate): New
25929         predicate.
25931 2015-12-15  Bernd Schmidt  <bschmidt@redhat.com>
25933         PR middle-end/67639
25934         * varasm.c (make_decl_rtl): Mark invalid register vars as
25935         DECL_EXTERNAL.
25937         PR rtl-optimization/66206
25938         * bt-load.c (find_btr_use): Change first arg to be a pointer to an rtx.
25939         All callers changed.
25941 2016-01-07  Jakub Jelinek  <jakub@redhat.com>
25943         PR tree-optimization/69141
25944         * tree-ssa-pre.c: Include langhooks.h.
25945         (eliminate_dom_walker::before_dom_children): Use
25946         lang_hooks.decl_printable_name instead of
25947         cgraph_node::get ()->name ().
25949         PR middle-end/68960
25950         * gimple-expr.c (copy_var_decl): If var has DECL_USER_ALIGN set, copy
25951         it and DECL_ALIGN too.
25953 2016-01-06  Robert Suchanek  <robert.suchanek@imgtec.com>
25955         * config/mips/mips-ftypes.def: Sort to lexicographical order.
25957 2016-01-06  Uros Bizjak  <ubizjak@gmail.com>
25959         PR target/69140
25960         * config/i386/i386.c (ix86_expand_prologue): Declare fs.sp_valid
25961         depending on frame_pointer_needed before remaining integer and SSE
25962         registers are saved.
25964 2015-01-06  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
25966         * config/rs6000/vsx.md (*p9_vecload_<mode>): Replace VSX_M
25967         mode iterator with VSX_M2.
25968         (*p9_vecstore_<mode>): Likewise.
25969         (*vsx_le_permute_<mode>): Restrict to !TARGET_P9_VECTOR.
25970         (*vsx_le_perm_load_<mode> for VSX_LE_128): Likewise.
25971         (*vsx_le_perm_store_<mode> for VSX_LE_128): Likewise.
25972         (define_split for VSX_LE128 stores): Likewise.
25973         (define_peephole2 for TImode LE swaps): Likewise.
25974         (define_split for VSX_LE128 post-reload stores): Likewise.
25976 2016-01-06  Marek Polacek  <polacek@redhat.com>
25978         PR sanitizer/69099
25979         * convert.c (convert_to_integer_1): Adjust call to
25980         ubsan_instrument_float_cast.  Use NULL_TREE instead of NULL.
25981         * ubsan.c (ubsan_instrument_float_cast): Drop the ARG parameter.  Use
25982         EXPR instead of ARG.
25983         * ubsan.h (ubsan_instrument_float_cast): Adjust declaration.
25985 2016-01-05  Sandra Loosemore  <sandra@codesourcery.com>
25987         PR 1078
25988         * doc/extend.texi (RL78 Variable Attributes): New section.
25990 2016-01-05  Marek Polacek  <polacek@redhat.com>
25992         PR c/69104
25993         * builtins.c (get_memmodel): Use expansion point location rather than
25994         the input location.  Call warning_at rather than warning.
25995         (expand_builtin_atomic_compare_exchange): Likewise.
25996         (expand_builtin_atomic_load): Likewise.
25997         (expand_builtin_atomic_store): Likewise.
25998         (expand_builtin_atomic_clear): Likewise.
26000 2016-01-05  H.J. Lu  <hongjiu.lu@intel.com>
26002         PR target/68991
26003         * config/i386/i386.c (ix86_expand_vector_logical_operator):
26004         Replace nonimmediate_operand with vector_operand.
26005         * config/i386/predicates.md (vector_operand): New predicate.
26006         (general_vector_operand): Replace nonimmediate_operand with
26007         vector_operand.
26008         * config/i386/sse.md: Replace nonimmediate_operand with
26009         vector_operand and m constraint with Bm constraint on SSE
26010         patterns with 16-byte memory operand.
26011         * config/i386/subst.md (round_nimm_predicate): Replace
26012         nonimmediate_operand with vector_operand.
26013         (round_saeonly_nimm_predicate): Likewise.
26014         (round_saeonly_nimm_scalar_predicate): New.
26016 2016-01-05  H.J. Lu  <hongjiu.lu@intel.com>
26018         PR target/68991
26019         * config/i386/constraints.md (Bm): New constraint.
26020         * config/i386/predicates.md (vector_memory_operand): New
26021         predicate.
26022         * config/i386/sse.md: Replace xm with xBm in plusminus and
26023         any_logic patterns.
26025 2016-01-05  Sandra Loosemore  <sandra@codesourcery.com>
26027         PR 1078
26028         * doc/extend.texi (V850 Function Attributes): New section.
26029         (V850 Variable Attributes): New section.
26031 2016-01-05  Sandra Loosemore  <sandra@codesourcery.com>
26033         PR 1078
26034         * doc/extend.texi (MicroBlaze Function Attributes): Document
26035         interrupt_handler and fast_interrupt attributes.
26037 2016-01-05  Sergei Trofimovich  <siarheit@google.com>
26039         PR other/60465
26040         * config/ia64/ia64.c (ia64_expand_load_address): Use gprel64
26041         for local symbolic operands.
26042         * config/ia64/predicates.md (local_symbolic_operand64): New
26043         predicate.
26045 2016-01-05  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
26047         PR rtl-optimization/68651
26048         * combine.c (combine_simplify_rtx): Canonicalize x + x into
26049         x << 1.
26051 2016-01-05  Nathan Sidwell  <nathan@acm.org>
26053         * alias.c (compare_base_decls): Use symtab_node::get.
26055 2016-01-05  Nick Clifton  <nickc@redhat.com>
26057         PR target/68770
26058         * ira-costs.c (copy_cost): Initialise the t_icode field of the
26059         secondary_reload_info structure.
26061         PR target/66655
26062         * config/i386/cygming.h (MAKE_DECL_ONE_ONLY): Define to use weak
26063         decls if weak support is available.
26065 2016-01-04  Martin Sebor  <msebor@redhat.com>
26067         * doc/invoke.texi (Warning Options): Document -Winvalid-memory-model.
26069 2016-01-04  Michael Meissner  <meissner@linux.vnet.ibm.com>
26071         * config/rs6000/rs6000-cpus.def (ISA_3_0_MASKS_SERVER): Add
26072         OPTION_MASK_P9_DFORM.
26074         * config/rs6000/constraints.md (wo constraint): New constraint for
26075         ISA 3.0 (power9).
26077         * config/rs6000/rs6000.c (rs6000_debug_reg_global): Add support
26078         for wo constraint.
26079         (rs6000_init_hard_regno_mode_ok): Likewise.
26081         * config/rs6000/rs6000.h (r6000_reg_class_enum): Add support for
26082         wo constraint.
26084         * config/rs6000/altivec.md (altivec_vperm_<mode>): Clean up vperm
26085         expanders not to have constraints.  Add support for ISA 3.0 xxperm
26086         instruction.  Add support for fusing xxlor with xxperm.
26087         (altivec_vperm_<mode>_internal): Likewise.
26088         (altivec_vperm_v8hiv16qi): Likewise.
26089         (altivec_vperm_<mode>v16q): Likewise.
26090         (altivec_vperm_<mode>_uns): Likewise.
26091         (vperm_v8hiv4si): Likewise.
26092         (vperm_v16qiv8hi): Likewise.
26094         * doc/md.texi (RS/6000 constraints): Document wo constraint.
26096 2016-01-04  Jakub Jelinek  <jakub@redhat.com>
26098         Update copyright years.
26100         * gcc.c (process_command): Update copyright notice dates.
26101         * gcov-dump.c (print_version): Ditto.
26102         * gcov.c (print_version): Ditto.
26103         * gcov-tool.c (print_version): Ditto.
26104         * gengtype.c (create_file): Ditto.
26105         * doc/cpp.texi: Bump @copying's copyright year.
26106         * doc/cppinternals.texi: Ditto.
26107         * doc/gcc.texi: Ditto.
26108         * doc/gccint.texi: Ditto.
26109         * doc/gcov.texi: Ditto.
26110         * doc/install.texi: Ditto.
26111         * doc/invoke.texi: Ditto.
26113 2016-01-04  Eric Botcazou  <ebotcazou@adacore.com>
26115         * config/arm/arm.c (aapcs_vfp_allocate_return_reg): Treat all integer
26116         modes larger than TImode as TImode if NEON is not enabled.
26118 2016-01-04  Eric Botcazou  <ebotcazou@adacore.com>
26120         PR target/69100
26121         * config/sparc/sparc.h (FUNCTION_ARG_REGNO_P): Return true in 64-bit
26122         mode for %f0-%f31 only if TARGET_FPU.
26124 2016-01-04  Eric Botcazou  <ebotcazou@adacore.com>
26126         PR target/69072
26127         * config/sparc/sparc.c (scan_record_type): Take into account subfields
26128         to compute the PACKED_P predicate.
26129         (function_arg_record_value): Minor tweaks.
26131 2016-01-04  Thomas Preud'homme  <thomas.preudhomme@arm.com>
26133         * doc/install.texi (--with-multilib-list): Describe the meaning of the
26134         option for arm*-*-* targets.
26136 2016-01-03  Sandra Loosemore  <sandra@codesourcery.com>
26138         * doc/extend.texi (Common Function Attributes): Move docs for
26139         MSP430-specific attributes to....
26140         (MSP430 Function Attributes): ...here.  Delete the redundant
26141         entries and copy-edit the remaining text.
26142         (MSP430 Variable Attributes): Use uniform format for index
26143         entries and add a cross-reference to the corresponding function
26144         attribute docs.
26146 2016-01-03  Vladimír Čunát  <vcunat@gmail.com>
26148         * doc/invoke.texi (RS/6000 and PowerPC Options): Fix
26149         -finite-math typo.
26150         (x86 Options): Likewise.
26152 2016-01-01  Sandra Loosemore  <sandra@codesourcery.com>
26154         PR 1078
26156         * extend.texi (Common Function Attributes) <no_stack_limit>: New.
26157         * invoke.texi (Code Gen Options) <-fno-stack-limit>: Add pointer
26158         to corresponding attribute.
26160 2016-01-01  Sandra Loosemore  <sandra@codesourcery.com>
26162         * doc/extend.texi (Common Function Attributes) <noplt>: Move
26163         to correct alphabetization of table.  Copy-edit and correct
26164         markup.
26165         <stack_protect>: Likewise.
26166         <target_clones>: Likewise.
26167         <simd>: Likewise.
26168         * doc/invoke.texi (Optimize Options) <-fstack-protector-explicit>:
26169         Correct punctuation.
26170         (Code Gen Options) <-fno-plt>: Copy-edit.
26172 2016-01-01  Bernd Edlinger  <bernd.edlinger@hotmail.de>
26174         PR target/68917
26175         * config/tilegx/tilegx.md (clzsi2): Don't create DI subregs of
26176         SI values.  Explicitly convert SI to DI and vice-versa.
26178 2016-01-01  Jakub Jelinek  <jakub@redhat.com>
26180         PR tree-optimization/69070
26181         * tree-ssa-math-opts.c (gimple_expand_builtin_pow): Only test
26182         REAL_VALUE_ISSIGNALING_NAN on arg0 if arg0 is a REAL_CST.
26184         PR sanitizer/69055
26185         * ubsan.c (ubsan_instrument_float_cast): Call
26186         initialize_sanitizer_builtins.
26188         PR target/69015
26189         * ifcvt.c (find_cond_trap): Give up if returnjump_p (jump).
26191 Copyright (C) 2016 Free Software Foundation, Inc.
26193 Copying and distribution of this file, with or without modification,
26194 are permitted in any medium without royalty provided the copyright
26195 notice and this notice are preserved.