PR fortran/77973
[official-gcc.git] / gcc / ChangeLog
blob4f5c3c220a722eb94593c1e8560b9d2f1515776d
1 2016-10-26  Jakub Jelinek  <jakub@redhat.com>
2             Martin Liska  <mliska@suse.cz>
4         PR fortran/77973
5         * gimplify.c (gimplify_adjust_omp_clauses_1): For all added map
6         clauses with OMP_CLAUSE_SIZE being a decl, call omp_notice_variable
7         on outer context if any.
9 2016-10-26  Jakub Jelinek  <jakub@redhat.com>
11         * gen-pass-instances.awk (adjust_linenos): INcrement pass_lines[p]
12         by increment rather than double it.
13         (insert_remove_pass): Strip leading whitespace from args[3].  Don't
14         emit a space before args[4].
15         (END): Don't emit a space before with_arg.
17 2016-10-26  Thomas Preud'homme  <thomas.preudhomme@arm.com>
19         * config/arm/sync.md (atomic_compare_and_swap<mode>_1): Add new ARMv8-M
20         Baseline only alternatives to (i) hold store atomic success value in a
21         return register rather than a scratch register, (ii) use a low register
22         for it and to (iii) ensure the cbranchsi insn generated by the split
23         respect the constraints of Thumb-1 cbranchsi4_insn and
24         cbranchsi4_scratch.
25         * config/arm/thumb1.md (cbranchsi4_insn): Add comment to indicate
26         constraints must match those in atomic_compare_and_swap.
27         (cbranchsi4_scratch): Likewise.
29 2016-10-26  Thomas Preud'homme  <thomas.preudhomme@arm.com>
31         * config/arm/arm.c (arm_expand_compare_and_swap): Add new bdst local
32         variable.  Add the new parameter to the insn generator.  Set that
33         parameter to be CC flag for 32-bit targets, bval otherwise.  Set the
34         return value from the negation of that parameter for Thumb-1, keeping
35         the logic unchanged otherwise except for using bdst as the destination
36         register of the compare_and_swap insn.
37         (arm_split_compare_and_swap): Add explanation about how is the value
38         returned to the function comment.  Rename scratch variable to
39         neg_bval.  Adapt initialization of variables holding operands to the
40         new operand numbers.  Use return register to hold result of store
41         exclusive for Thumb-1, scratch register otherwise.  Construct the
42         appropriate cbranch for Thumb-1 targets, keeping the logic unchanged
43         for 32-bit targets.  Guard Z flag setting to restrict to 32bit targets.
44         Use gen_cbranchsi4 rather than hand-written conditional branch to loop
45         for strongly ordered compare_and_swap.
46         * config/arm/predicates.md (cc_register_operand): New predicate.
47         * config/arm/sync.md (atomic_compare_and_swap<mode>_1): Use a
48         match_operand with the new predicate to accept either the CC flag or a
49         destination register for the boolean return value, restricting it to
50         CC flag only via constraint.  Adapt operand numbers accordingly.
52 2016-10-26  Jeff Law  <law@redhat.com>
54         * config/fr30/fr30.c (fr30_print_operand): Adjust fallthru comment.
56         * config/frv/frv.c (comparison_string): Do not fall through after
57         an error.
59         * config/iq2000/iq2000.c (iq2000_function_arg): Adjust fallthru
60         comment.
61         (expand_one_builtin): Add missing break.
63         * config/m32c/m32c.c (encode_pattern_1): Add fallthru comment.
64         (m32c_legitimate_address_p): Likewise.
66         * config/m32r/m32r.c (m32r_print_operand): Adjust fallthru comment.
68         * config/mcore/mcore.c (mcore_gen_compare): Adjust fallthru comments.
70         * config/microblaze/microblaze.c (microblaze_function_arg): Adjust
71         fallthru comment.
73         * config/msp430/msp430.c (msp430_legitimate_address_p): Adjust
74         fallthru comment.
76         * config/nios2/nios2.c (nios2_rtx_costs): Avoid fallthru.
78         * config/rl78/rl78.c (rl78_calculate_death_notes): Add fallthru
79         comment.
80         (rl78_asm_ctor_dtor): Increase buffer size.
82         * config/stormy16/stormy16.c (xstormy16_asm_output_destrutor): Increase
83         buffer size.
84         (xstormy16_asm_output_constructor): Likewise.
86         * config/pa/pa.c (pa_asm_output_mi_thunk): Increase buffer
87         size.
89         * config/h8300/h8300.c (h8300_print_operand): Adjust FALLTHRU
90         comment to silence warning.
92         * config/spu/spu.c (spu_sched_reorder): Add missing fallthru comment.
93         (spu_legitimate_address_p): Fix logic error and add missing fallthru
94         comment.
96 2016-10-26  Michael Matz  <matz@suse.de>
98         PR tree-optimization/78060
99         PR tree-optimization/78061
100         PR tree-optimization/78088
101         * tree-ssa-loop-split.c (easy_exit_values): New function.
102         (tree_ssa_split_loops): Use it.
103         (compute_new_first_bound): Change order of operations,
104         fix invalid use of types.
106 2016-10-26  Georg-Johann Lay  <avr@gjlay.de>
108         gen-pass-instances.awk is sensitive to the order in which
109         passes are added; passes that appear later have to be added first.
111         PR target/71676
112         PR target/71678
113         * config/avr/avr-passes.def: Swap order of directives for
114         gen-pass-instances.awk.
116 2016-10-25  Jeff Law  <law@redhat.com>
118         * config/vax/vax.c (vad_address_cost_1): Add missing FALLTHRU comment.
119         (vax_notice_update_cc): Likewise.
121 2016-10-25  Eric Botcazou  <ebotcazou@adacore.com>
123         * config.gcc (sparc*-*-solaris2*): Adjust.
124         (sparc64-*-linux*): Likewise.
125         * config/sparc/default-64.h: Rename to...
126         * config/sparc/default64.h: ...this.
127         * config/sparc/sparc.c (sparc_option_override): Replace TARGET_64BIT
128         with TARGET_ARCH64.
129         (sparc_mangle_type): Replace !TARGET_64BIT with TARGET_ARCH32.
130         * config/sparc/sparc.h: Minor tweaks.
131         * config/sparc/sparc.md: Replace !TARGET_64BIT and !TARGET_ARCH64 with
132         TARGET_ARCH32 throughout.  Minor various tweaks throughout.
134 2016-10-25  David Malcolm  <dmalcolm@redhat.com>
136         * input.c (fcache::file_patch): Add comment about lifetime.
137         (selftest::cpp_reader_ptr): New class.
138         (selftest::lexer_test): Convert m_parser from cpp_reader *
139         to a cpp_reader_ptr, and move m_tempfile to after it.
140         (selftest::lexer_test::lexer_test): Update for above reordering.
141         (lexer_test::~lexer_test): Move cleanup of m_parser to
142         cpp_reader_ptr's dtor.
144 2016-10-25  David Malcolm  <dmalcolm@redhat.com>
146         * toplev.c (toplev::main): Remove call to
147         location_adhoc_data_fini.
149 2016-10-25  Eric Botcazou  <ebotcazou@adacore.com>
151         * tree.h (wi::fits_to_tree_p): Accept only 0 and 1 for boolean types.
152         * tree.c (int_fits_type_p): Likewise.  Adjust head comment.
154 2016-10-25  David Malcolm  <dmalcolm@redhat.com>
156         * ggc-tests.c (forcibly_ggc_collect): Rename to...
157         (selftest::forcibly_ggc_collect): ...this, and remove "static".
158         (test_basic_struct): Update for above renaming.
159         (test_length): Likewise.
160         (test_union): Likewise.
161         (test_finalization): Likewise.
162         (test_deletable_global): Likewise.
163         (test_inheritance): Likewise.
164         (test_chain_next): Likewise.
165         (test_user_struct): Likewise.
166         (test_tree_marking): Likewise.
167         * selftest-run-tests.c (selftest::run_tests): Call
168         selftest::forcibly_ggc_collect at the end of the selftests.
169         * selftest.h (selftest::forcibly_ggc_collect): New decl.
171 2016-10-25  Jakub Jelinek  <jakub@redhat.com>
173         PR target/78102
174         * optabs.def (vcondeq_optab, vec_cmpeq_optab): New optabs.
175         * optabs.c (expand_vec_cond_expr): For comparison codes
176         EQ_EXPR and NE_EXPR, attempt vcondeq_optab as fallback.
177         (expand_vec_cmp_expr): For comparison codes
178         EQ_EXPR and NE_EXPR, attempt vec_cmpeq_optab as fallback.
179         * optabs-tree.h (expand_vec_cmp_expr_p, expand_vec_cond_expr_p):
180         Add enum tree_code argument.
181         * optabs-query.h (get_vec_cmp_eq_icode, get_vcond_eq_icode): New
182         inline functions.
183         * optabs-tree.c (expand_vec_cmp_expr_p): Add CODE argument.  For
184         CODE EQ_EXPR or NE_EXPR, attempt to use vec_cmpeq_optab as
185         fallback.
186         (expand_vec_cond_expr_p): Add CODE argument.  For CODE EQ_EXPR or
187         NE_EXPR, attempt to use vcondeq_optab as fallback.
188         * tree-vect-generic.c (expand_vector_comparison,
189         expand_vector_divmod, expand_vector_condition): Adjust
190         expand_vec_cmp_expr_p and expand_vec_cond_expr_p callers.
191         * tree-vect-stmts.c (vectorizable_condition,
192         vectorizable_comparison): Likewise.
193         * tree-vect-patterns.c (vect_recog_mixed_size_cond_pattern,
194         check_bool_pattern, search_type_for_mask_1): Likewise.
195         * expr.c (do_store_flag): Likewise.
196         * doc/md.texi (@code{vec_cmpeq@var{m}@var{n}},
197         @code{vcondeq@var{m}@var{n}}): Document.
198         * config/i386/sse.md (vec_cmpeqv2div2di, vcondeq<VI8F_128:mode>v2di):
199         New expanders.
201 2016-10-25  Jeff Law  <law@redhat.com>
203         * config/v850/v850.c (v850_handle_data_area_attribute): Fix fallthru
204         comment.
205         (v850_output_aligned_bss): Add missing break.
207         * config/m68k/m68k.c (m68k_get_reloc_decoration): Add gcc_unreachable.
209 2016-10-25  Martin Liska  <mliska@suse.cz>
211         PR sanitizer/78106
212         * sanopt.c (imm_dom_path_with_freeing_call): Handle gasm
213         statements as they can also contain possibly a freeing call.
215 2016-10-25  H.J. Lu  <hongjiu.lu@intel.com>
216             Martin Liska  <mliska@suse.cz>
218         PR ipa/78099
219         * common.opt: Mark flag_ipa_icf_variables as Optimization flag.
220         * ipa-icf.c (sem_function::get_hash): Add target optimization
221         node to hash.
223 2016-10-25  Wilco Dijkstra  <wdijkstr@arm.com>
225         PR target/78041
226         * config/arm/neon.md (ashldi3_neon): Add "r 0 i" and "&r r i" variants.
227         Remove partial overlap check for shift by 1.
228         (ashldi3_neon): Likewise.
230 2016-10-25  Thomas Preud'homme  <thomas.preudhomme@arm.com>
232         * config/arm/constraints.md (Q constraint): Document its use for
233         Thumb-1.
234         (Pf constraint): New constraint for relaxed, consume or relaxed memory
235         models.
236         * config/arm/sync.md (atomic_load<mode>): Add new ARMv8-M Baseline only
237         alternatives to allow any register when memory model matches Pf and
238         thus lda is used, but only low registers otherwise.  Use unpredicated
239         output template for Thumb-1 targets.
240         (atomic_store<mode>): Likewise for stl.
241         (arm_load_exclusive<mode>): Add new ARMv8-M Baseline only alternative
242         whose output template does not have predication.
243         (arm_load_acquire_exclusive<mode>): Likewise.
244         (arm_load_exclusivesi): Likewise.
245         (arm_load_acquire_exclusivesi): Likewise.
246         (arm_store_release_exclusive<mode>): Likewise.
247         (arm_store_exclusive<mode>): Use unpredicated output template for
248         Thumb-1 targets.
250 2016-10-25  Jakub Jelinek  <jakub@redhat.com>
252         * internal-fn.def (LAUNDER): New internal function.
253         * internal-fn.c (expand_LAUNDER): New function.
255 2016-10-25  Georg-Johann Lay  <avr@gjlay.de>
256             Pitchumani Sivanupandi  <pitchumani.sivanupandi@microchip.com>
258         New avr target pass to work around performance loss by PR fix.
260         PR target/71676
261         PR target/71678
262         * config/avr/avr.md (casesi_<mode>_sequence) [qi,hi]: New insn.
263         (*cmp<mode>) [qi,qq,uqq,hi,hq,uhq,ha,uha]: Rename to cmp<mode>3.
264         * config/avr/predicates.md (extend_operator): New.
265         * config/avr/avr-passes.def (avr_pass_casesi): Register new pass.
266         * config/avr/avr-protos.h (avr_casei_sequence_check_operands)
267         (make_avr_pass_casesi): New prototypes.
268         * config/avr/avr.c (print-rtl.h): Include it.
269         (pass_data avr_pass_data_casesi): Data for new pass.
270         (avr_pass_casesi): New class implementing rtl_opt_pass .avr-casesi.
271         (make_avr_pass_casesi, avr_parallel_insn_from_insns)
272         (avr_is_casesi_sequence, avr_casei_sequence_check_operands)
273         (avr_optimize_casesi): New functions.
275 2016-10-25  Georg-Johann Lay  <avr@gjlay.de>
276             Pitchumani Sivanupandi  <pitchumani.sivanupandi@microchip.com>
278         PR target/71676
279         PR target/71678
280         * config/avr/avr.md (casesi): Rewrite avoiding subregs of SI.
282 2016-10-24  Jakub Jelinek  <jakub@redhat.com>
284         * dwarf2out.c (gen_subprogram_die): Add DW_AT_reference or
285         DW_AT_rvalue_reference attributes.
287 2016-10-24  Bernd Edlinger  <bernd.edlinger@hotmail.de>
289         * doc/invoke.text (Wint-in-bool-context): Update documentation.
290         * value-prof.c (stringop_block_profile): Fix a warning.
292 2016-10-24  Martin Sebor  <msebor@redhat.com>
294         PR middle-end/77735
295         * builtins.c (string_length): New function.
296         (c_strlen): Use string_length.  Correctly handle wide strings.
297         * gimple-ssa-sprintf.c (target_max_value, target_size_max): New
298         functions.
299         (target_int_max): Call target_max_value.
300         (format_result::knownrange): New data member.
301         (fmtresult::fmtresult): Define default constructor.
302         (format_integer): Use it and set format_result::knownrange.
303         Handle global constants.
304         (format_floating_max): Add third argument.
305         (format_floating): Recompute maximum value for %a for each argument.
306         (get_string_length): Use fmtresult default ctor.
307         (format_string): Set format_result::knownrange.
308         (format_directive): Check format_result::knownrange.
309         (add_bytes): Same.  Correct caret placement in diagnostics.
310         (pass_sprintf_length::compute_format_length): Set
311         format_result::knownrange.
312         (pass_sprintf_length::handle_gimple_call): Use target_size_max.
314 2016-10-24  Jakub Jelinek  <jakub@redhat.com>
316         * config/i386/i386.c (ix86_in_large_data_p, ix86_expand_builtin): Use
317         VAR_P (x) instead of TREE_CODE (x) == VAR_DECL.
319 2016-10-24  Ximin Luo  <infinity0@pwned.gg>
321         PR debug/77985
322         * dwarf2out.c (file_table_relative_p): Remove.
323         (gen_compile_unit_die, dwarf2out_early_finish): Emit DW_AT_comp_dir
324         also for absolute paths.
325         * doc/tm.texi: Update.
326         * doc/tm.texi.in (SDB and DWARF) <TARGET_FORCE_AT_COMP_DIR>: Remove.
327         * target.def (force_at_comp_dir): Remove hook.
328         * config/darwin.h (TARGET_FORCE_AT_COMP_DIR): Remove define.
330 2016-10-24  Richard Biener  <rguenther@suse.de>
332         * tree-vrp.c (evrp_dom_walker::before_dom_children): Ignore
333         backedges when identifying the single predecessor to take
334         conditional info from.  Use SCEV to get at ranges for loop IVs.
335         * lto-streamer-out.c (lto_write_mode_table): CSE inner mode to
336         avoid false warning.
338 2016-10-24  Georg-Johann Lay  <avr@gjlay.de>
340         PR target/78093
341         * doc/extend.texi (AVR Variable Attributes) [absdata]: Document it.
342         * config/avr/avr.c (AVR_SYMBOL_FLAG_TINY_ABSDATA): New macro.
343         (avr_address_tiny_absdata_p): New static function.
344         (avr_legitimate_address_p, avr_legitimize_address) [AVR_TINY]: Use
345         it to determine validity of constant addresses.
346         (avr_attribute_table) [absdata]: New variable attribute...
347         (avr_handle_absdata_attribute): ...and handler.
348         (avr_decl_absdata_p): New static function.
349         (avr_encode_section_info) [AVR_TINY]: Use it to add flag
350         AVR_SYMBOL_FLAG_TINY_ABSDATA to respective symbols_refs.
351         (avr_address_cost) [AVR_TINY]: absdata addresses cost 2.
353 2016-10-24  Richard Biener  <rguenther@suse.de>
355         PR tree-optimization/78076
356         * tree-ssa-loop-split.c (tree_ssa_split_loops): Reset aux
357         also on the loop tree root.
359 2016-10-24  Jakub Jelinek  <jakub@redhat.com>
361         * config/i386/i386.c (ix86_fold_builtin): Handle
362         IX86_BUILTIN_BEXTR{,I}{32,64}, IX86_BUILTIN_BZHI{32,64},
363         IX86_BUILTIN_PDEP{32,64} and IX86_BUILTIN_PEXT{32,64}.
364         (ix86_gimple_fold_builtin): Handle IX86_BUILTIN_BZHI{32,64},
365         IX86_BUILTIN_PDEP{32,64} and IX86_BUILTIN_PEXT{32,64}.
367 2016-10-24  Martin Liska  <mliska@suse.cz>
369         PR sanitizer/77966
370         * opts.c (finish_options): Skip conditionally.
372 2016-10-23  Martin Sebor  <msebor@redhat.com>
374         PR target/77837
375         * config/rs6000/linux.h (TARGET_PRINTF_POINTER_FORMAT): Define.
376         * config/rs6000/linux64.h (TARGET_PRINTF_POINTER_FORMAT): Likewise.
378 2016-10-23  Eric Botcazou  <ebotcazou@adacore.com>
380         * config/sparc/sparc.md (cpu_feature): Minor tweak.
381         (enabled): Likewise.
382         (movsi_insn, movdi_insn_sp32, movdi_insn_sp64, movsf_insn,
383         movdf_insn_sp32, movdf_insn_sp64, zero_extendsidi2_insn_sp64,
384         sign_extendsidi2_insn, mov<VM32:mode>_insn, mov<VM64:mode>_insn_sp64,
385         mov<VM64:mode>_insn_sp32, not_<code><mode>, nand<mode>_vis,
386         <code>_not1<mode>_vi, <code>_not2<mode>_vis, one_cmpl<mode>2,
387         fcmp<code><GCM:gcm_name>, pdistn<mode>_vis): Likewise.
389 2016-10-23  Eric Botcazou  <ebotcazou@adacore.com>
391         * config/sparc/sparc-c.c (sparc_target_macros): Replace TARGET_64BIT
392         with TARGET_ARCH64.  Define __VIS to 0x400 if TARGET_VIS4.
394 2016-10-21  Andrew Pinski  <apinski@cavium.com>
396         * config/aarch64/aarch64-cores.def: Rewrite so IMP and PART are
397         integer constants.
398         * config/aarch64/driver-aarch64.c (struct aarch64_core_data): Change
399         implementer_id to unsigned char.
400         Change part_no to unsigned int.
401         (AARCH64_BIG_LITTLE): New define.
402         (INVALID_IMP): New define.
403         (INVALID_CORE): New define.
404         (cpu_data): Change the last element's implementer_id and part_no to
405         integers.
406         (valid_bL_string_p): Rewrite to ..
407         (valid_bL_core_p): this for integers instead of strings.
408         (parse_field): New function.
409         (contains_string_p): Rewrite to ...
410         (contains_core_p): this for integers and only for the part_no.
411         (host_detect_local_cpu): Rewrite handling of implementation and
412         par num to be integers; simplifying the code.
414 2016-10-21  Kugan Vivekanandarajah  <kuganv@linaro.org>
416         * ipa-prop.c (ipa_compute_jump_functions_for_edge): Create nonzero
417         value range for pointers in more cases.
419 2016-10-21  Wilco Dijkstra  <wdijkstr@arm.com>
421         * config/aarch64/aarch64.c (aarch64_add_constant_internal):
422         Add extra argument to allow emitting the move immediate.
423         Use add/sub with positive immediate.
424         (aarch64_add_constant): Add inline function.
425         (aarch64_add_sp): Likewise.
426         (aarch64_sub_sp): Likewise.
427         (aarch64_expand_prologue): Call aarch64_sub_sp.
428         (aarch64_expand_epilogue): Call aarch64_add_sp.
429         Decide when to leave out move.
430         (aarch64_output_mi_thunk): Call aarch64_add_constant.
432 2016-10-21  Wilco Dijkstra  <wdijkstr@arm.com>
434         * config/aarch64/aarch64.c (aarch64_layout_frame):
435         Align FP callee-saves.
437 2016-10-21  Jakub Jelinek  <jakub@redhat.com>
439         * config/i386/adxintrin.h (_subborrow_u32, _addcarry_u32,
440         _addcarryx_u32, _subborrow_u64, _addcarry_u64, _addcarryx_u64):
441         Formatting fixes.
442         * config/i386/rdseedintrin.h (_rdseed16_step, _rdseed32_step,
443         _rdseed64_step): Likewise.
444         * config/i386/tbmintrin.h (__bextri_u32): Likewise.
446         PR target/78057
447         * config/i386/i386.c: Include fold-const-call.h, tree-vrp.h
448         and tree-ssanames.h.
449         (ix86_fold_builtin): Fold IX86_BUILTIN_[LT]ZCNT{16,32,64}
450         with INTEGER_CST argument.
451         (ix86_gimple_fold_builtin): New function.
452         (TARGET_GIMPLE_FOLD_BUILTIN): Define.
454         * dwarf2out.c (ranges_table): Change into vec<dw_ranges, va_gc> *.
455         (ranges_by_label): Change into vec<dw_ranges_by_label, va_gc> *.
456         (ranges_table_allocated, ranges_table_in_use,
457         ranges_by_label_allocated, ranges_by_label_in_use,
458         RANGES_TABLE_INCREMENT): Removed.
459         (add_ranges_num): Use vec_safe_push into ranges_table.
460         (add_ranges_by_labels): Use vec_safe_push into ranges_by_label.
461         (output_ranges): Adjust for ranges_table and ranges_by_label
462         conversion from arrays to vec.
463         (add_high_low_attributes, dwarf2out_finish): Adjust for range_table
464         conversion from arrays to vec.
465         (dwarf2out_c_finalize): Don't clear ranges_table_allocated,
466         ranges_table_in_use, ranges_by_label_allocated and
467         ranges_by_label_in_use.  Set ranges_by_label to NULL instead of 0.
469         * dwarf2out.c (gen_variable_die): Emit DW_AT_const_expr attribute
470         if needed.  Re-add origin_die variable and its initialization.
472         * gimplify.c (gimplify_bind_expr): Handle oacc_declare_returns
473         even for -fstack-reuse=none, or for volatile vars etc.
475 2016-10-21  David Malcolm  <dmalcolm@redhat.com>
477         * print-rtl-function.c (flag_compact): Move extern decl to...
478         * print-rtl.h (flag_compact): ...here.
479         * rtl-tests.c (selftests::assert_rtl_dump_eq): New function.
480         (ASSERT_RTL_DUMP_EQ): New macro.
481         (selftest::test_dumping_regs): New function.
482         (selftest::test_dumping_insns): New function.
483         (selftest::test_uncond_jump): Add uses of ASSERT_RTL_DUMP_EQ on
484         the insns.
485         (selftest::rtl_tests_c_tests): Call the new test functions.
487 2016-10-21  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
489         * cfgcleanup.c (merge_blocks_move_successor_nojumps): Adjust.
490         (outgoing_edges_match): Likewise.
491         (try_crossjump_to_edge): Likewise.
492         * cfgrtl.c (try_redirect_by_replacing_jump): Likewise.
493         (rtl_tidy_fallthru_edge): Likewise.
494         * rtl.h (tablejump_p): Adjust prototype.
495         * rtlanal.c (tablejump_p): Return the label as a rtx_insn *.
497 2016-10-21  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
499         * rtl.h (label_ref_label): New function.
500         (set_label_ref_label): New function.
501         (LABEL_REF_LABEL): Delete.
502         * alias.c (rtx_equal_for_memref_p): Adjust.
503         * cfgbuild.c (make_edges): Likewise.
504         (purge_dead_tablejump_edges): Likewise.
505         * cfgexpand.c (convert_debug_memory_address): Likewise.
506         * cfgrtl.c (patch_jump_insn): Likewise.
507         * combine.c (distribute_notes): Likewise.
508         * cse.c (hash_rtx_cb): Likewise.
509         (exp_equiv_p): Likewise.
510         (fold_rtx): Likewise.
511         (check_for_label_ref): Likewise.
512         * cselib.c (rtx_equal_for_cselib_1): Likewise.
513         (cselib_hash_rtx): Likewise.
514         * emit-rtl.c (mark_label_nuses): Likewise.
515         * explow.c (convert_memory_address_addr_space_1): Likewise.
516         * final.c (output_asm_label): Likewise.
517         (output_addr_const): Likewise.
518         * gcse.c (add_label_notes): Likewise.
519         * genconfig.c (walk_insn_part): Likewise.
520         * genrecog.c (validate_pattern): Likewise.
521         * ifcvt.c (cond_exec_get_condition): Likewise.
522         (noce_emit_store_flag): Likewise.
523         (noce_get_alt_condition): Likewise.
524         (noce_get_condition): Likewise.
525         * jump.c (maybe_propagate_label_ref): Likewise.
526         (mark_jump_label_1): Likewise.
527         (redirect_exp_1): Likewise.
528         (rtx_renumbered_equal_p): Likewise.
529         * lra-constraints.c (operands_match_p): Likewise.
530         * print-rtl.c (print_value): Likewise.
531         * reload.c (find_reloads): Likewise.
532         * reload1.c (set_label_offsets): Likewise.
533         * reorg.c (get_branch_condition): Likewise.
534         * rtl-tests.c (test_uncond_jump): Likewise.
535         * rtl.c (rtx_equal_p_cb): Likewise.
536         (rtx_equal_p): Likewise.
537         * rtlanal.c (reg_mentioned_p): Likewise.
538         (rtx_referenced_p): Likewise.
539         (get_condition): Likewise.
540         * varasm.c (const_hash_1): Likewise.
541         (compare_constant): Likewise.
542         (const_rtx_hash_1): Likewise.
543         (output_constant_pool_1): Likewise.
545 2016-10-21  Senthil Kumar Selvaraj  <senthil_kumar.selvaraj@atmel.com>
547         PR target/71627
548         * reload.c (find_valid_class_1): Allow regclass if atleast one
549         regno in regclass is ok. Compute and use rclass size based on
550         actually available regnos for mode in rclass.
552 2016-10-21  Eric Botcazou  <ebotcazou@adacore.com>
554         * config/sparc/sparc-modes.def (CCV): New.
555         (CCXV): Likewise.
556         * config/sparc/predicates.md (v_comparison_operator): New.
557         (icc_comparison_operator): Add support for CCV/CCXV.
558         (xcc_comparison_operator): Likewise.
559         * config/sparc/sparc.c (output_cbranch): Likewise.
560         (sparc_print_operand): Likewise.
561         * config/sparc/sparc.md (UNSPEC_{ADD,SUB,NEG}V): New constants.
562         (uaddvdi4): New expander.
563         (addvdi4): Likewise.
564         (uaddvdi4_sp32): New instruction.
565         (addvdi4_sp32): Likewise.
566         (uaddvsi4): New expander.
567         (addvsi4): Likewise.
568         (cmp_ccc_plus_sltu_set): New instruction.
569         (cmp_ccv_plus): Likewise.
570         (cmp_ccxv_plus): Likewise.
571         (cmp_ccv_plus_set): Likewise.
572         (cmp_ccxv_plus_set): Likewise.
573         (cmp_ccv_plus_sltu_set): Likewise.
574         (uaddvdi4): New expander.
575         (subvdi4): Likewise.
576         (usubdi4_sp32): New instruction.
577         (subvdi4_sp32): Likewise.
578         (usubvsi4): New expander.
579         (subvsi4): Likewise.
580         (cmpsi_minus_sltu_set): New instruction.
581         (cmp_ccv_minus): Likewise.
582         (cmp_ccxv_minus): Likewise.
583         (cmp_ccv_minus_set): Likewise.
584         (cmp_ccxv_minus_set): Likewise.
585         (cmp_ccv_minus_sltu_set): Likewise.
586         (unegvdi3): New expander.
587         (negvdi3): Likewise.
588         (unegdi3_sp32): New instruction.
589         (negvdi3_sp32): Likewise.
590         (unegvsi3): New expander.
591         (negvsi3): Likewise.
592         (cmp_ccc_neg_sltu_set): New instruction.
593         (cmp_ccv_neg): Likewise.
594         (cmp_ccxv_neg): Likewise.
595         (cmp_ccv_neg_set): Likewise.
596         (cmp_ccxv_neg_set): Likewise.
597         (cmp_ccv_neg_sltu_set): Likewise.
599         * tree-ssa-loop-split.c: Remove trailing spaces.
600         * match.pd: Likewise.
602 2016-10-21  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
604         PR rtl-optimization/78038
605         * ree.c (get_defs): Return NULL if a defining insn for REG cannot
606         be deduced to set REG through the RTL structure.
607         (make_defs_and_copies_lists): Return false on a failing get_defs call.
609 2016-10-21  Richard Biener  <rguenther@suse.de>
611         PR tree-optimization/78051
612         * tree-vrp.c (evrp_dom_walker::before_dom_children): Update stmt
613         and mark replaced if folding did something.
615 2016-10-21  David Edelsohn  <dje.gcc@gmail.com>
617         * config/rs6000/rs6000.c (rs6000_assemble_visibility): Swap "internal"
618         and "protected" in visibility types.
619         (rs6000_xcoff_declare_function_name): Fix formatting.
620         (rs6000_xcoff_declare_object_name): Fix formatting.
622 2016-10-21  Uros Bizjak  <ubizjak@gmail.com>
624         * config/i386/i386.c (ix86_fold_builtin): Handle IX86_BUILTIN_INFQ
625         and IX86_BUILTIN_HUGE_VALQ here ...
626         (ix86_expand_builtin): ... not here.
628 2016-10-20  Jakub Jelinek  <jakub@redhat.com>
630         * doc/gty.texi (for_user): Use @item next to @findex.
632 2016-10-20  Uros Bizjak  <ubizjak@gmail.com>
634         PR target/78037
635         * config/i386/bmiintrin.h (__tzcnt_u16): Call __builtin_ia32_tzcnt_u16.
636         (__tzcnt_u32, _tzcnt_u32): Call __builtin_ia32_tzcnt_u32.
637         (__tzcnt_u64, _tzcnt_u64): Call __builtin_ia32_tzcnt_u64.
638         * config/i386/lzcntintrin.h (__lzcnt_u16): Call
639         __builtin_ia32_lzcnt_u16.
640         (__lzcnt_u32, _lzcnt_u32): Call __builtin_ia32_lzcnt_u32.
641         (__lzcnt_u64, _lzcnt_u64): Call __builtin_ia32_lzcnt_u64.
642         * config/i386/i386.md (UNSPEC_LZCNT, UNSPEC_TZCNT): New unspecs.
643         (ctz<mode>2, *ctz<mode>2): Use SWI48 mode iterator.
644         (bmi_tzcnt_<mode>): New expander.
645         (*bmi_tzcnt_<mode>_falsedep_1): New define_insn_and_split pattern.
646         (*bmi_tzcnt_<mode>_falsedep, *bmi_tzcnt_<mode>): New insn patterns.
647         (clz<mode>2_lzcnt, *clz<mode>2_lzcnt): Use SWI48 mode iterator.
648         (lzcnt_<mode>): New expander.
649         (*lzcnt_<mode>_falsedep_1): New define_insn_and_split pattern.
650         (*lzcnt_<mode>_falsedep, *lzcnt_<mode>): New insn patterns.
651         * config/i386/i386-builtin-types.def (UINT_FTYPE_UINT): New.
652         (UINT64_FTYPE_UINT64): New.
653         * config/i386/i386-builtin.def (__builtin_clzs): Remove description.
654         (__builtin_ia32_lzcnt_u16): New description.
655         (__builtin_ia32_lzcnt_u32): Ditto.
656         (__builtin_ia32_lzcnt_u64): Ditto.
657         (__builtin_ctzs): Remove description.
658         (__builtin_ia32_tzcnt_u16): New description.
659         (__builtin_ia32_tzcnt_u32): Ditto.
660         (__builtin_ia32_tzcnt_u64): Ditto.
661         * config/i386/i386.c (ix86_expand_args_builtin): Handle
662         UINT_FTYPE_UINT and UINT64_FTYPE_UINT64.
664 2016-10-20  Martin Liska  <mliska@suse.cz>
666         PR lto/78049
667         * lto-streamer-in.c (fixup_call_stmt_edges_1): Replace value
668         comparison with STMT_UID_NOT_IN_RANGE.
669         (fixup_call_stmt_edges): Do not fixup edges of a thunk in
670         LTRANS.
672 2016-10-20  Eric Botcazou  <ebotcazou@adacore.com>
674         * compare-elim.c (conforming_compare): Accept UNSPECs.
675         (find_comparison_dom_walker::before_dom_children): Deal with
676         instructions both using and killing the flags register.
677         (equivalent_reg_at_start): New function extracted from...
678         (try_eliminate_compare): ...here.  Use it and add support for
679         registers and UNSPECs as second operand of the compare.
680         * config/visium/visium-modes.def (CCV): New.
681         * config/visium/predicates.md (visium_v_comparison_operator): New.
682         (visium_branch_operator): Deal with CCV mode.
683         * config/visium/visium.c (visium_select_cc_mode): Likewise.
684         (output_cbranch): Likewise.
685         * config/visium/visium.md (UNSPEC_{ADD,SUB,NEG}V): New constants.
686         (uaddv<mode>4): New expander.
687         (addv<mode>4): Likewise.
688         (add<mode>3_insn_set_carry): New instruction.
689         (add<mode>3_insn_set_overflow): Likewise.
690         (addsi3_insn_set_overflow): Likewise.
691         (usubv<mode>4): New expander.
692         (subv<mode>4): Likewise.
693         (sub<mode>3_insn_set_carry): New instruction.
694         (sub<mode>3_insn_set_overflow): Likewise.
695         (subsi3_insn_set_overflow): Likewise.
696         (unegv<mode>3): New expander.
697         (negv<mode>3): Likewise.
698         (neg<mode>2_insn_set_overflow): New instruction.
699         (addv_tst<mode>): Likewise.
700         (subv_tst<mode>): Likewise.
701         (negv_tst<mode>): Likewise.
702         (cbranch<mode>4_addv_insn): New splitter and instruction.
703         (cbranch<mode>4_subv_insn): Likewise.
704         (cbranch<mode>4_negv_insn): Likewise.
706 2016-10-20  Richard Biener  <rguenther@suse.de>
708         * tree-ssa-alias.c (ptrs_compare_unequal): Remove code duplication.
709         Handle decls possibly not bound.
710         * tree-ssa-structalias.c (get_constraint_for_ssa_var): Add
711         nothing_id for decls that might not be bound if we are interested
712         for the address.
713         (get_constraint_for_component_ref): Deal with that.
715 2016-10-20  Michael Matz  <matz@suse.de>
717         Loop splitting.
718         * common.opt (-fsplit-loops): New flag.
719         * passes.def (pass_loop_split): Add.
720         * opts.c (default_options_table): Add OPT_fsplit_loops entry at -O3.
721         (enable_fdo_optimizations): Add loop splitting.
722         * timevar.def (TV_LOOP_SPLIT): Add.
723         * tree-pass.h (make_pass_loop_split): Declare.
724         * tree-ssa-loop-manip.h (rewrite_into_loop_closed_ssa_1): Declare.
725         * tree-ssa-loop-unswitch.c: Include tree-ssa-loop-manip.h,
726         * tree-ssa-loop-split.c: New file.
727         * Makefile.in (OBJS): Add tree-ssa-loop-split.o.
728         * doc/invoke.texi (fsplit-loops): Document.
729         * doc/passes.texi (Loop optimization): Add paragraph about loop
730         splitting.
732 2016-10-20  Richard Biener  <rguenther@suse.de>
734         * cgraphunit.c (analyze_functions): Set node->definition to
735         false to signal symbol removal to debug_hooks->late_global_decl.
736         * ipa.c (symbol_table::remove_unreachable_nodes): When not in
737         WPA signal symbol removal to the debuginfo machinery.
738         * dwarf2out.c (dwarf2out_late_global_decl): Instead of
739         using early_finised to guard the we're called for symbol
740         removal case look at the symtabs definition flag.
741         (gen_variable_die): Remove redundant check.
743 2016-10-20  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
745         * config/s390/s390.md ("prefetch"): Add fallthrough comment.
747 2016-10-20  Prathamesh Kulkarni  <prathamesh.kulkarni@linaro.org>
749         PR tree-optimization/53979
750         * match.pd ((a ^ b) | a -> a | b): New pattern.
752 2016-10-19  John David Anglin  <danglin@gcc.gnu.org>
754         * config/pa/pa64-hpux.h (PA_INIT_FRAME_DUMMY_ASM_OP): Move to
755         config/pa/pa64-hpux-lib.h.
756         (PA_CRTBEGIN_HACK): Likewise.
757         (DTOR_LIST_BEGIN): Likewise.
759 2016-10-19  Bernd Edlinger  <bernd.edlinger@hotmail.de>
761         * config/arm/arm.c (arm_emit_coreregs_64bit_shift): Clear the result
762         register only if "in" and "out" are different registers.
764 2016-10-19  Eric Botcazou  <ebotcazou@adacore.com>
766         * omp-low.c (pass_oacc_device_lower::gate): New method.
767         (execute): Always call execute_oacc_device_lower.
769 2016-10-19  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
771         PR tree-optimization/77916
772         PR tree-optimization/77937
773         * gimple-ssa-strength-reduction.c (analyze_increments): Remove
774         stopgap fix.
775         (insert_initializers): Requirement of initializer for -1 should be
776         based on pointer-typedness of the candidate basis.
778 2016-10-19  Bin Cheng  <bin.cheng@arm.com>
780         PR tree-optimization/78005
781         * tree-vect-loop-manip.c (vect_gen_prolog_loop_niters): Compute
782         upper (included) bound for niters of prolog loop.
783         (vect_gen_scalar_loop_niters): Change parameter VF to VFM1.
784         Compute niters of scalar loop above which vectorized loop is
785         preferred, as well as the upper (included) bound for the niters.
786         (vect_do_peeling): Record niter bound for loops accordingly.
788 2016-10-19  Thomas Schwinge  <thomas@codesourcery.com>
790         PR lto/77458
791         * tree-core.h (enum tree_index): Put the complex types after their
792         component types.
793         * tree-streamer.c (verify_common_node_recorded): New function.
794         (preload_common_nodes) <TREE_CODE (node) == COMPLEX_TYPE>: Use it.
796 2016-10-19  Martin Liska  <mliska@suse.cz>
798         * cgraph.h (cgraph_edge::binds_to_current_def_p):
799         Replace NULL with false as a return value.
801 2016-10-19  Thomas Schwinge  <thomas@codesourcery.com>
803         PR tree-optimization/78024
804         * omp-low.c (oacc_loop_discovery): Call clear_bb_flags before, and
805         don't clear BB_VISITED after processing.
807 2016-10-19  Richard Biener  <rguenther@suse.de>
809         * domwalk.c (dom_walker::walk): Use RPO order.
811 2016-10-19  Richard Biener  <rguenther@suse.de>
813         * tree-vrp.c (evrp_dom_walker::evrp_dom_walker): Initialize
814         stmts_to_remove.
815         (evrp_dom_walker::~evrp_dom_walker): Free it.
816         (evrp_dom_walker::stmts_to_remove): Add.
817         (evrp_dom_walker::before_dom_children): Mark PHIs and stmts
818         whose output we fully propagate for removal.  Propagate
819         into BB destination PHI arguments.
820         (execute_early_vrp): Remove queued stmts.  Dump value ranges
821         before stmt removal.
823 2016-10-18  Aldy Hernandez  <aldyh@redhat.com>
825         * Makefile.in (OBJS): Add gimple-ssa-warn-alloca.o.
826         * passes.def: Add two instances of pass_walloca.
827         * tree-pass.h (make_pass_walloca): New.
828         * gimple-ssa-warn-alloca.c: New file.
829         * doc/invoke.texi: Document -Walloca, -Walloca-larger-than=, and
830         -Wvla-larger-than= options.
832 2016-10-18  Thomas Schwinge  <thomas@codesourcery.com>
834         * cfg.c (clear_bb_flags): Use FOR_ALL_BB_FN.
835         * config/nvptx/nvptx.c (nvptx_find_sese): Likewise.
837 2016-10-18  Kelvin Nilsen  <kelvin@gcc.gnu.org>
839         * config/rs6000/altivec.h (vec_xl_len): New macro.
840         (vec_xst_len): New macro.
841         (vec_cmpnez): New macro.
842         (vec_cntlz_lsbb): New macro.
843         (vec_cnttz_lsbb): New macro.
844         (vec_xlx): New macro.
845         (vec_xrx): New macro.
846         (vec_all_nez): New C++ predicate template.
847         (vec_any_eqz): New C++ predicate template.
848         (vec_all_ne): Revised C++ predicate template under _ARCH_PWR9
849         conditional compilation.
850         (vec_any_eq): Revised C++ predicate template under _ARCH_PWR9
851         conditional compilation.
852         (vec_all_nez): New macro.
853         (vec_any_eqz): New macro.
854         (vec_all_ne): Revised macro under _ARCH_PWR9 conditional
855         compilation.
856         (vec_any_eq): Revised macro under _ARCH_PWR9 conditional
857         compilation.
858         * config/rs6000/vector.md (VI): Moved this mode iterator
859         definition from altivec.md to vector.md.
860         (UNSPEC_NEZ_P): New value.
861         (vector_ne_<mode>_p): New expansion for implementation of
862         vec_all_ne and vec_any_eq built-in functions.
863         (vector_nez_<mode>_p): New expansion for implementation of
864         vec_all_nez and vec_any_eqz built-in functions.
865         (vector_ne_v2di_p): New expansion for implementation of vec_all_ne
866         and vec_any_eq built-in function.
867         (cr6_test_for_zero): New commentary to explain this expansion.
868         (cr6_test_for_zero_reverse): New commentary to explain this expansion.
869         (cr6_test_for_lt): New commentary to explain this expansion.
870         (cr6_test_for_lt_reverse): New commentary to explain this
871         expansion.
872         * config/rs6000/rs6000-c.c (altivec_overloaded_builtins): Add
873         overloaded function prototypes for vec_all_ne, vec_all_nez,
874         vec_any_eq, vec_any_eqz, vec_cmpnez, vec_cntlz_lsbb,
875         vec_cnttz_lsbb, vec_xl_len, vec_xst_len, vec_xlx, and vec_xrx
876         built-in functions.
877         (altivec_resolve_overloaded_builtin): Modify the handling of
878         ALTIVEC_BUILTIN_VEC_CMPNE to use the Power9 instructions when
879         the compiler is configured to support TARGET_P9_VECTOR.
880         * config/rs6000/rs6000-builtin.def (BU_ALTIVEC_P): Add commentary
881         to explain the special processing that is given to predicate
882         built-ins introduced using this macro.
883         (BU_ALTIVEC_OVERLOAD_P): Add commentary to alert maintainers to
884         the special processing given to predicate built-ins introduced
885         using this macro.
886         (BU_VSX_P): Likewise.
887         (BU_P8V_AV_P): Likewise.
888         (BU_P9V_AV_P): Likewise.
889         (BU_P9V_AV_X): New macro.
890         (BU_P9V_64BIT_AV_X): New macro.
891         (BU_P9V_VSX_3): New macro.
892         (BU_P9V_OVERLOAD_P): New macro.
893         (LXVL): New BU_P9V_64BIT_VSX_2.
894         (VEXTUBLX): New BU_P9V_AV_2.
895         (VEXTUBRX): Likewise.
896         (VEXTUHLX): Likewise.
897         (VEXTUHRX): Likewise.
898         (VEXTUWLX): Likewise.
899         (VEXTUWRX): Likewise.
900         (STXVL): New BU_P9V_64BIT_AV_X.
901         (VCLZLSBB): New BU_P9V_AV_1.
902         (VCTZLSBB): Likewise.
903         (CMPNEB): New BU_P9V_AV_2.
904         (CMPNEH): Likewise.
905         (CMPNEW): Likewise.
906         (CMPNEF): Likewise.
907         (CMPNED): Likewise.
908         (VCMPNEB_P): New BU_P9V_AV_P.
909         (VCMPNEH_P): Likewise.
910         (VCMPNEW_P): Likewise.
911         (VCMPNED_P): Likewise.
912         (VCMPNEFP_P): Likewise.
913         (VCMPNEDP_P): Likewise.
914         (CMPNEZB): New BU_P9V_AV_2.
915         (CMPNEZH): Likewise.
916         (CMPNEZW): Likewise.
917         (VCMPNEZB_P): New BU_P9V_AV_P.
918         (VCMPNEZH_P): Likewise.
919         (VCMPNEZW_P): Likewise.
920         (LXVL): New BU_P9V_OVERLOAD_2.
921         (STXVL): New BU_P9V_OVERLOAD_3.
922         (VEXTULX): New BU_P9V_OVERLOAD_2.
923         (VEXTURX): Likewise.
924         (CMPNEZ): Likewise.
925         (VCMPNEZ_P): New BU_P9V_OVERLOAD_P.
926         (VCMPNE_P): Likewise.
927         (VCLZLSBB): New BU_P9V_OVERLOAD_1.
928         (VCTZLSBB): Likewise.
929         * config/rs6000/rs6000.c (altivec_expand_predicate_builtin): Add
930         comment to explain mode used for scratch register.
931         (altivec_expand_stxvl_builtin): New function.
932         (altivec_expand_builtin): Add case for new constant P9V_BUILTIN_STXVL.
933         (altivec_init_builtins): Add initialized variable
934         void_ftype_v16qi_pvoid_long and use this type to define the
935         built-in function __builtin_altivec_stxvl.
936         * config/rs6000/vsx.md (UNSPEC_LXVL): New value.
937         (UNSPEC_STXVL): New value.
938         (UNSPEC_VCLZLSBB): New value.
939         (UNSPEC_VCTZLSBB): New value.
940         (UNSPEC_VEXTUBLX): New value.
941         (UNSPEC_VEXTUHLX): New value.
942         (UNSPEC_VEXTUWLX): New value.
943         (UNSPEC_VEXTUBRX): New value.
944         (UNSPEC_VEXTUHRX): New value.
945         (UNSPEC_VEXTUWRX): New value.
946         (UNSPEC_VCMPNEB): New value.
947         (UNSPEC_VCMPNEZB): New value.
948         (UNSPEC_VCMPNEH): New value.
949         (UNSPEC_VCMPNEZH): New value.
950         (UNSPEC_VCMPNEW): New value.
951         (UNSPEC_VCMPNEZW): New value.
952         (*vsx_ne_<mode>_p): New insn for vector test all not equal with
953         vector of integer modes.
954         (*vsx_ne_<mode>_p): New insn for vector test all not equal with
955         vector of float or double modes.
956         (*vector_nez_<mode>_p): New insn for vector test all not equal or
957         zero.
958         (lxvl): New expand for load VSX vector with length.
959         (*lxvl): New insn for load VSX vector with length.
960         (stxvl): New expand for store VSX vector with length.
961         (*stxvl): New insn for store VSX vector with length.
962         (vcmpneb): New insn for vector of byte compare not equal.
963         (vcmpnezb): New insn for vector of byte compare not equal or zero.
964         (vcmpneh): New insn for vector of half word compare not equal.
965         (vcmpnezh): New insn for vector of half word compare not equal or
966         zero.
967         (vcmpnew): New insn for vector of word compare not equal.
968         (vcmpne<VSs>): New insn for vector of float or double compare not
969         equal.
970         (vcmpnezw): New insn for vector of word compare not equal or zero.
971         (vclzlsbb): New insn for vector count leading zero
972         least-significant bits byte.
973         (vctzlsbb): New insn for vector count trailing zero least
974         signficant bits byte.
975         (vextublx): New insn for vector extract unsigned byte left
976         indexed.
977         (vextubrx): New insn for vector extract unsigned byte right
978         indexed.
979         (vextuhlx): New insn for vector extract unsigned half word left
980         indexed.
981         (vextuhrx): New insn for vector extract unsigned half word right
982         indexed.
983         (vextuwlx): New insn for vector extract unsigned word left
984         indexed.
985         (vextuwrx): New insn for vector extract unsigned word right
986         indexed.
987         * config/rs6000/rs6000.h (RS6000_BTC_CONST): Enhance comment to
988         clarify intent of this constant.
989         * config/rs6000/altivec.md (VI): Move this mode iterator to vsx.md.
990         * doc/extend.texi (PowerPC Altivec Built-in Functions): Add
991         documentation for vec_all_nez, vec_any_eqz, vec_cmpnez,
992         vec_cntlz_lsbb, vec_cnttz_lsbb, vec_xl_len, vec_xst_len, vec_xlx,
993         and vec_xrx functions.
995 2016-10-18  Andrew Pinski  <apinski@cavium.com>
997         PR tree-opt/65950
998         * predict.c (is_exit_with_zero_arg): New function.
999         (tree_bb_level_predictions): Don't consider paths leading to exit(0)
1000         as nottaken.
1002 2016-10-18  Uros Bizjak  <ubizjak@gmail.com>
1004         PR target/77991
1005         * config/i386/i386.c (legitimize_tls_address)
1006         <case TLS_MODEL_INITIAL_EXEC>: For TARGET_64BIT || TARGET_ANY_GNU_TLS
1007         convert dest to Pmode if different than Pmode.
1009 2016-10-18  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
1011         PR tree-optimization/77916
1012         * gimple-ssa-strength-reduction.c (analyze_increments): Reinstate
1013         stopgap fix, as pointers with -1 increment are still broken.
1015 2016-10-18  David Edelsohn  <dje.gcc@gmail.com>
1017         * config/rs6000/rs6000.c (rs6000_output_symbol_ref): Move storage
1018         mapping class decoration from here...
1019         (rs6000_xcoff_encode_section): ...to here.
1021         (rs6000_savres_strategy) [AIX,ELFv2]: Inline FPR save and restore
1022         if shrink-wrapping and optimizing for speed.
1024 2016-10-18  Richard Biener  <rguenther@suse.de>
1026         * tree-vrp.c (evrp_dom_walker::before_dom_children): Handle
1027         not visited but non-executable predecessors.  Return taken edge.
1028         Simplify conditions and refactor propagation vs. folding step.
1030 2016-10-18  Segher Boessenkool  <segher@kernel.crashing.org>
1032         * config/rs6000/rs6000.c (rs6000_savres_strategy): Do not select
1033         {SAVE,REST}_MULTIPLE if shrink-wrapping separate components.
1034         (rs6000_get_separate_components): Assert we do not have those
1035         strategies selected.
1037 2016-10-18  Richard Biener  <rguenther@suse.de>
1039         * tree-ssa-propagate.h (substitute_and_fold): Adjust prototype.
1040         * tree-ssa-propagate.c (ssa_prop_fini): Remove final BB_VISITED
1041         clearing.
1042         (substitute_and_fold_dom_walker): Adjust constructor.
1043         (substitute_and_fold_dom_walker::before_dom_children): Remove
1044         do_dce flag and handling (always true).
1045         (substitute_and_fold): Likewise.
1046         * tree-vrp.c (vrp_finalize): Adjust.
1047         (execute_early_vrp): Remove final BB_VISITED clearing.
1048         * tree-ssa-ccp.c (ccp_finalize): Adjust.
1049         * tree-ssa-copy.c (fini_copy_prop): Likewise.
1050         * ira.c (ira): Call clear_bb_flags.
1052 2016-10-18  Richard Biener  <rguenther@suse.de>
1054         * genmatch.c (dt_operand::gen_gimple_expr): Use get_name to
1055         get at the operand to look at with TREE_OPERAND for generic
1056         sub-nodes.
1058 2016-10-18  David Malcolm  <dmalcolm@redhat.com>
1060         * genattrtab.c (attr_string): Use rtx_reader_ptr for call to
1061         copy_md_ptr_loc.
1062         (gen_attr): Use rtx_reader_ptr for lookup_enum_type call.
1063         (write_test_expr): Use rtx_reader_ptr for calls to
1064         fprint_c_condition.
1065         (write_attr_value): Likewise.
1066         * genconditions.c (write_one_condition): Use rtx_reader_ptr for
1067         call to print_md_ptr_loc.
1068         (write_one_condition): Likewise for calls to print_c_condition.
1069         * genconstants.c: Include "statistics.h" and "vec.h".
1070         (main): Update for conversion to member functions.
1071         * genemit.c (emit_c_code): Use rtx_reader_ptr for
1072         call to print_md_ptr_loc.
1073         * genenums.c: Include "statistics.h" and "vec.h".
1074         (main): Update for conversion of traverse_enum_types to a method.
1075         * genmddeps.c: Include "statistics.h" and "vec.h".
1076         * genoutput.c (process_template): Use rtx_reader_ptr for call to
1077         print_md_ptr_loc.
1078         * genpreds.c (write_predicate_subfunction): Likewise.
1079         (write_predicate_expr): Likewise for calls to print_c_condition.
1080         * genrecog.c (print_test): Likewise.
1081         * gensupport.c (process_rtx): Likewise for calls to
1082         copy_md_ptr_loc and join_c_conditions.
1083         (alter_test_for_insn): Likewise for call to join_c_conditions.
1084         (process_substs_on_one_elem): Likewise.
1085         (gen_mnemonic_setattr): Update for move of string_obstack to a
1086         field of rtx_reader.
1087         (mnemonic_htab_callback): Likewise.  Fix formatting.
1088         (gen_mnemonic_attr): Likewise.
1089         * gentarget-def.c (def_target_insn): Use rtx_reader_ptr for calls
1090         to print_c_condition.
1091         * read-md.c: Include "statistics.h" and "vec.h".
1092         (string_obstack): Convert this global to field "m_string_obstack"
1093         of class rtx_reader.
1094         (ptr_locs): Likewise, as "m_ptr_locs".
1095         (ptr_loc_obstack): Likewise, as "m_ptr_loc_obstack".
1096         (joined_conditions): Likewise, as "m_joined_conditions".
1097         (joined_conditions_obstack): Likewise, as "m_joined_conditions_obstack".
1098         (md_constants): Likewise, as "m_md_constants".
1099         (enum_types): Likewise, as "m_enum_types".
1100         (set_md_ptr_loc): Convert to...
1101         (rtx_reader::set_md_ptr_loc): ...member function.
1102         (get_md_ptr_loc): Convert to...
1103         (rtx_reader::get_md_ptr_loc): ...member function.
1104         (copy_md_ptr_loc): Convert to...
1105         (rtx_reader::copy_md_ptr_loc): ...member function.
1106         (fprint_md_ptr_loc): Convert to...
1107         (rtx_reader::fprint_md_ptr_loc): ...member function.
1108         (print_md_ptr_loc): Convert to...
1109         (rtx_reader::print_md_ptr_loc): ...member function.
1110         (join_c_conditions): Convert to...
1111         (rtx_reader::join_c_conditions): ...member function.
1112         (fprint_c_condition): Convert to...
1113         (rtx_reader::fprint_c_condition): ...member function.
1114         (print_c_condition): Convert to...
1115         (rtx_reader::print_c_condition): ...member function.
1116         (read_name): Convert to...
1117         (rtx_reader::read_name): ...member function.
1118         (read_escape): Convert to...
1119         (rtx_reader::read_escape): ...member function.
1120         (read_quoted_string): Convert to...
1121         (rtx_reader::read_quoted_string): ...member function.
1122         (read_braced_string): Convert to...
1123         (rtx_reader::read_braced_string): ...member function.
1124         (read_string): Convert to...
1125         (rtx_reader::read_string): ...member function.
1126         (read_skip_construct): Convert to...
1127         (rtx_reader::read_skip_construct): ...member function.
1128         (handle_constants): Convert to...
1129         (rtx_reader::handle_constants): ...member function.
1130         (traverse_md_constants): Convert to...
1131         (rtx_reader::traverse_md_constants): ...member function.
1132         (handle_enum): Convert to...
1133         (rtx_reader::handle_enum): ...member function.
1134         (lookup_enum_type): Convert to...
1135         (rtx_reader::lookup_enum_type): ...member function.
1136         (traverse_enum_types): Convert to...
1137         (rtx_reader::traverse_enum_types): ...member function.
1138         (rtx_reader::rtx_reader): Move initializations
1139         of various former global data from rtx_reader::read_md_files to
1140         here, as fields, along with the call to unlock_std_streams.
1141         (rtx_reader::~rtx_reader): Clean up m_base_dir, and clean up
1142         the new fields.
1143         (rtx_reader::read_md_files): Move initializations of various
1144         global data from here to the ctor.
1145         * read-md.h (read_name): Convert to...
1146         (rtx_reader::read_name): ...member function.
1147         (rtx_reader::read_escape): New method decl.
1148         (read_quoted_string): Convert to...
1149         (rtx_reader::read_quoted_string): ...member function.
1150         (rtx_reader::read_braced_string): New method decl.
1151         (read_string): Convert to...
1152         (rtx_reader::read_string): ...member function.
1153         (rtx_reader::read_skip_construct): New method decl.
1154         (rtx_reader::set_md_ptr_loc): New method decl.
1155         (rtx_reader::get_md_ptr_loc): New method decl.
1156         (copy_md_ptr_loc): Convert to...
1157         (rtx_reader::copy_md_ptr_loc): ...member function.
1158         (fprint_md_ptr_loc): Convert to...
1159         (rtx_reader::fprint_md_ptr_loc): ...member function.
1160         (print_md_ptr_loc): Convert to...
1161         (rtx_reader::print_md_ptr_loc): ...member function.
1162         (rtx_reader::lookup_enum_type): New method decl.
1163         (rtx_reader::traverse_enum_types): New method decl.
1164         (rtx_reader::handle_constants): New method decl.
1165         (traverse_md_constants): Convert to...
1166         (rtx_reader::traverse_md_constants): ...member function.
1167         (rtx_reader::handle_enum): New method decl.
1168         (rtx_reader::join_c_conditions): New method decl.
1169         (fprint_c_condition): Convert to...
1170         (rtx_reader::fprint_c_condition): ...member function.
1171         (print_c_condition): Convert to...
1172         (rtx_reader::print_c_condition): ...member function.
1173         (rtx_reader::apply_iterator_to_string): New method decl.
1174         (rtx_reader::copy_rtx_for_iterators): New method decl.
1175         (rtx_reader::read_conditions): New method decl.
1176         (rtx_reader::record_potential_iterator_use): New method decl.
1177         (rtx_reader::read_mapping): New method decl.
1178         (rtx_reader::read_rtx): New method decl.
1179         (rtx_reader::read_rtx_code): New method decl.
1180         (rtx_reader::read_rtx_operand): New method decl.
1181         (rtx_reader::read_nested_rtx): New method decl.
1182         (rtx_reader::read_rtx_variadic): New method decl.
1183         (rtx_reader::get_string_obstack): New method.
1184         (rtx_reader::get_md_constants): New method.
1185         (string_obstack): Convert global variable decl to...
1186         (rtx_reader::m_string_obstack): ...this new field.
1187         (rtx_reader::m_ptr_locs): New field.
1188         (rtx_reader::m_ptr_loc_obstack): New field.
1189         (rtx_reader::m_joined_conditions): New field.
1190         (rtx_reader::m_joined_conditions_obstack): New field.
1191         (rtx_reader::m_md_constants): New field.
1192         (rtx_reader::m_enum_types): New field.
1193         * read-rtl.c (apply_iterator_to_string): Convert to...
1194         (rtx_reader::apply_iterator_to_string): ...member function.
1195         (copy_rtx_for_iterators): Convert to...
1196         (rtx_reader::copy_rtx_for_iterators): ...member function.
1197         (add_condition_to_string): Use rtx_reader_ptr for
1198         calls join_c_conditions.
1199         (apply_iterators): Use rtx_reader_ptr for calls to
1200         join_c_conditions and copy_rtx_for_iterators.
1201         (read_conditions): Convert to...
1202         (rtx_reader::read_conditions): ...member function.
1203         (record_potential_iterator_use): Convert to...
1204         (rtx_reader::record_potential_iterator_use): ...member function.
1205         (read_mapping): Convert to...
1206         (rtx_reader::read_mapping): ...member function.
1207         (read_subst_mapping): Use rtx_reader_ptr for read_string call.
1208         (read_rtx): Convert to...
1209         (rtx_reader::read_rtx): ...member function.
1210         (read_rtx_code): Convert to...
1211         (rtx_reader::read_rtx_code): ...member function.
1212         (read_rtx_operand): Convert to...
1213         (rtx_reader::read_rtx_operand): ...member function.  Update for move
1214         of string_obstack to a field.
1215         (read_nested_rtx): Convert to..
1216         (rtx_reader::read_nested_rtx): ...member function.
1217         (read_rtx_variadic): Convert to..
1218         (rtx_reader::read_rtx_variadic): ...member function.
1220 2016-10-18  Kugan Vivekanandarajah  <kuganv@linaro.org>
1222         * tree-vrp.c (get_value_range): Check get_ptr_nonnull.
1224 2016-10-18  Kugan Vivekanandarajah  <kuganv@linaro.org>
1226         * ipa-prop.c (ipa_compute_jump_functions_for_edge): Set value range
1227         for pointer type too.
1228         (ipcp_update_vr): set_ptr_nonnull for pointer.
1230 2016-10-18  Kugan Vivekanandarajah  <kuganv@linaro.org>
1232         * tree-ssa-alias.h (pt_solution_singleton_or_null_p): Renamed from
1233         pt_solution_singleton_p.
1234         * tree-ssa-ccp.c (fold_builtin_alloca_with_align): Use renamed
1235         pt_solution_singleton_or_null_p from pt_solution_singleton_p.
1236         * tree-ssa-structalias.c (find_what_p_points_to): Preserve
1237         pointer nonnull computed by VRP.
1238         Also Conservatively set pt.null to 1.
1239         (pt_solution_reset): Conservatively set pt.null to 1.
1240         (pt_solution_singleton_or_null_p): Renamed from
1241         pt_solution_singleton_p.
1242         * tree-ssanames.h (set_ptr_nonnull): Declare.
1243         (get_ptr_nonnull): Likewise.
1244         * tree-ssanames.c (set_ptr_nonnull): New.
1245         (get_ptr_nonnull): Likewise.
1246         * tree-vrp.c (vrp_finalize): Set ptr that are nonnull.
1247         (evrp_dom_walker::before_dom_children): Likewise.
1249 2016-10-17  Eric Botcazou  <ebotcazou@adacore.com>
1251         * config/i386/i386.h (TARGET_CUSTOM_FUNCTION_DESCRIPTORS): Move to...
1252         * config/i386/i386.c (TARGET_CUSTOM_FUNCTION_DESCRIPTORS): ...here.
1253         * config/ia64/ia64.h (TARGET_CUSTOM_FUNCTION_DESCRIPTORS): Move to...
1254         * config/ia64/ia64.c (TARGET_CUSTOM_FUNCTION_DESCRIPTORS): ...here.
1255         * config/rs6000/rs6000.h (TARGET_CUSTOM_FUNCTION_DESCRIPTORS): Move to.
1256         * config/rs6000/rs6000.c (TARGET_CUSTOM_FUNCTION_DESCRIPTORS): ...here.
1257         (rs6000_option_override_internal): Clear it if ABI_AIX.
1258         * config/sparc/sparc.h (TARGET_CUSTOM_FUNCTION_DESCRIPTORS): Move to...
1259         * config/sparc/sparc.c (TARGET_CUSTOM_FUNCTION_DESCRIPTORS): ... here.
1261 2016-10-17  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
1263         * gimple-ssa-strength-reduction.c (record_increment): Remove
1264         garbage comment.
1266 2016-10-17  Eric Botcazou  <ebotcazou@adacore.com>
1268         * expmed.c (expand_shift_1): Add MAY_FAIL parameter and do not assert
1269         that the result is non-zero if it is true.
1270         (maybe_expand_shift): New wrapper around expand_shift_1.
1271         (emit_store_flag): Call maybe_expand_shift in lieu of expand_shift.
1273 2016-10-17  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
1275         PR tree-optimization/77916
1276         * gimple-ssa-strength-reduction.c (create_add_on_incoming_edge):
1277         Don't allow a MINUS_EXPR for pointer arithmetic for either known
1278         or unknown strides.
1279         (record_increment): Increments of -1 for unknown strides just use
1280         a multiply initializer like other negative values.
1281         (analyze_increments): Remove stopgap solution for -1 increment
1282         applied to pointer arithmetic.
1284 2016-10-17  Yuri Rumyantsev  <ysrumyan@gmail.com>
1286         * dominance.c (dom_info::dom_info): Add new constructor for region
1287         which is vector of basic blocks.
1288         (dom_init): New method to initialize members common for both
1289         constructors.
1290         (dom_info::dom_info): Invoke dom_init for partial initialization.
1291         (dom_info::get_idom): Add check to corner cases on basic blocks which
1292         are not in region.
1293         (dom_info::calc_dfs_tree): Check M_FAKE_EXIT_EDGE instead of M_REVERSE
1294         to detect unreachable bbs.
1295         (dom_info::calc_idoms): Likewise.
1296         (compute_dom_fast_query_in_region): New function.
1297         (calculate_dominance_info_for_region): Likewise.
1298         (free_dominance_info_for_region): Likewise.
1299         * dominance.h: Add prototypes for introduced region-based functions
1300         tree-if-conv.c: (build_region): New function.
1301         (if_convertible_loop_p_1): Invoke local version of post-dominators
1302         calculation before basic block predication with subsequent freeing
1303         post-dominator info.
1304         (tree_if_conversion): Remove free of post-dominator info
1305         (pass_if_conversion::execute): Delete detection of infinite loops
1306         and fake edges to exit block since post-dominator calculation is
1307         performed per if-converted loop only.
1309 2016-10-17  Bernd Edlinger  <bernd.edlinger@hotmail.de>
1311         PR target/77308
1312         * config/arm/arm.c (arm_emit_coreregs_64bit_shift): Clear the result
1313         register explicitly.
1314         * config/arm/arm.md (ashldi3, ashrdi3, lshrdi3): Don't FAIL if
1315         optimizing for size.
1317 2016-10-17  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
1319         * config/aarch64/aarch64.c: Delete inclusion of
1320         cortex-a57-fma-steering.h.
1321         (aarch64_override_options): Delete call
1322         to aarch64_register_fma_steering.
1323         * config/aarch64/aarch64-protos.h (make_pass_fma_steering): Declare.
1324         * config/aarch64/cortex-a57-fma-steering.h: Delete.
1325         * config/aarch64/aarch64-passes.def: New file.
1326         * config/aarch64/cortex-a57-fma-steering.c
1327         (aarch64_register_fma_steering): Delete definition.
1328         (make_pass_fma_steering): Remove static qualifier.
1329         * config/aarch64/t-aarch64 (PASSES_EXTRA): New directive.
1330         (cortex-a57-fma-steering.o): Remove dependency on
1331         cortex-a57-fma-steering.h.
1333 2016-10-17  Eric Botcazou  <ebotcazou@adacore.com>
1335         * explow.c (validize_mem): Do not modify the argument in-place.
1337 2016-10-17  Thomas Schwinge  <thomas@codesourcery.com>
1339         * tree-streamer.c (record_common_node): Explicitly list expected
1340         tree codes.
1342 2016-10-17  Richard Biener  <rguenther@suse.de>
1344         PR tree-optimization/77988
1345         * tree-vrp.c (remove_range_assertions): Use replace_uses_by.
1347 2016-10-17  Marek Polacek  <polacek@redhat.com>
1349         * Makefile.in (C_COMMON_OBJS): Add c-family/c-attribs.o.
1351 2016-10-17  Richard Biener  <rguenther@suse.de>
1353         * bb-reorder.c (reorder_basic_blocks_simple): Clear BB_VISITED
1354         before using it.
1356 2016-10-17  Prathamesh Kulkarni  <prathamesh.kulkarni@linaro.org>
1358         PR tree-optimization/71636
1359         * match.pd (x & ((1 << b) - 1) -> x & ~(~0 << b)): New pattern.
1361 2016-10-17  Richard Biener  <rguenther@suse.de>
1363         * gimplify.c (gimplify_function_tree): Do not move the outer
1364         binds block.
1366 2016-10-17  Jakub Jelinek  <jakub@redhat.com>
1368         * langhooks.h (struct lang_hooks_for_decls): Remove
1369         function_decl_explicit_p, function_decl_deleted_p and
1370         function_decl_defaulted hooks.  Add decl_dwarf_attribute hook.
1371         * langhooks-def.h (lhd_decl_dwarf_attribute): Declare.
1372         (LANG_HOOKS_FUNCTION_DECL_EXPLICIT_P,
1373         LANG_HOOKS_FUNCTION_DECL_DELETED_P,
1374         LANG_HOOKS_FUNCTION_DECL_DEFAULTED): Remove.
1375         (LANG_HOOKS_DECL_DWARF_ATTRIBUTE): Define.
1376         (LANG_HOOKS_DECLS): Remove LANG_HOOKS_FUNCTION_DECL_EXPLICIT_P,
1377         LANG_HOOKS_FUNCTION_DECL_DELETED_P and
1378         LANG_HOOKS_FUNCTION_DECL_DEFAULTED.  Add
1379         LANG_HOOKS_DECL_DWARF_ATTRIBUTE.
1380         * langhooks.c (lhd_decl_dwarf_attribute): New function.
1381         * dwarf2out.c (gen_subprogram_die): Use
1382         lang_hooks.decls.decl_dwarf_attribute instead of
1383         lang_hooks.decls.function_decl_*.
1385 2016-10-16  Eric Botcazou  <ebotcazou@adacore.com>
1387         PR ada/37139
1388         PR ada/67205
1389         * common.opt (-ftrampolines): New option.
1390         * doc/invoke.texi (Code Gen Options): Document it.
1391         * doc/tm.texi.in (Trampolines): Add TARGET_CUSTOM_FUNCTION_DESCRIPTORS.
1392         * doc/tm.texi: Regenerate.
1393         * builtins.def: Add init_descriptor and adjust_descriptor.
1394         * builtins.c (expand_builtin_init_trampoline): Do not issue a warning
1395         on platforms with descriptors.
1396         (expand_builtin_init_descriptor): New function.
1397         (expand_builtin_adjust_descriptor): Likewise.
1398         (expand_builtin) <BUILT_IN_INIT_DESCRIPTOR>: New case.
1399         <BUILT_IN_ADJUST_DESCRIPTOR>: Likewise.
1400         * calls.c (prepare_call_address): Remove SIBCALLP parameter and add
1401         FLAGS parameter.  Deal with indirect calls by descriptor and adjust.
1402         Set STATIC_CHAIN_REG_P on the static chain register, if any.
1403         (call_expr_flags): Set ECF_BY_DESCRIPTOR for calls by descriptor.
1404         (expand_call): Likewise.  Move around call to prepare_call_address
1405         and pass all flags to it.
1406         * cfgexpand.c (expand_call_stmt): Reinstate CALL_EXPR_BY_DESCRIPTOR.
1407         * gimple.h (enum gf_mask): New GF_CALL_BY_DESCRIPTOR value.
1408         (gimple_call_set_by_descriptor): New setter.
1409         (gimple_call_by_descriptor_p): New getter.
1410         * gimple.c (gimple_build_call_from_tree): SetCALL_EXPR_BY_DESCRIPTOR.
1411         (gimple_call_flags): Deal with GF_CALL_BY_DESCRIPTOR.
1412         * langhooks.h (struct lang_hooks): Add custom_function_descriptors.
1413         * langhooks-def.h (LANG_HOOKS_CUSTOM_FUNCTION_DESCRIPTORS): Define.
1414         (LANG_HOOKS_INITIALIZER): Add LANG_HOOKS_CUSTOM_FUNCTION_DESCRIPTORS.
1415         * rtl.h (STATIC_CHAIN_REG_P): New macro.
1416         * rtlanal.c (find_first_parameter_load): Skip static chain registers.
1417         * target.def (custom_function_descriptors): New POD hook.
1418         * tree.h (FUNC_ADDR_BY_DESCRIPTOR): New flag on ADDR_EXPR.
1419         (CALL_EXPR_BY_DESCRIPTOR): New flag on CALL_EXPR.
1420         * tree-core.h (ECF_BY_DESCRIPTOR): New mask.
1421         Document FUNC_ADDR_BY_DESCRIPTOR and CALL_EXPR_BY_DESCRIPTOR.
1422         * tree.c (make_node_stat) <tcc_declaration>: Use FUNCTION_ALIGNMENT.
1423         (build_common_builtin_nodes): Initialize init_descriptor and
1424         adjust_descriptor.
1425         * tree-nested.c: Include target.h.
1426         (struct nesting_info): Add 'any_descr_created' field.
1427         (get_descriptor_type): New function.
1428         (lookup_element_for_decl): New function extracted from...
1429         (create_field_for_decl): Likewise.
1430         (lookup_tramp_for_decl): ...here.  Adjust.
1431         (lookup_descr_for_decl): New function.
1432         (convert_tramp_reference_op): Deal with descriptors.
1433         (build_init_call_stmt): New function extracted from...
1434         (finalize_nesting_tree_1): ...here.  Adjust and deal with descriptors.
1435         * defaults.h (FUNCTION_ALIGNMENT): Define.
1436         (TRAMPOLINE_ALIGNMENT): Set to above instead of FUNCTION_BOUNDARY.
1437         * config/i386/i386.h (TARGET_CUSTOM_FUNCTION_DESCRIPTORS): Define.
1438         * config/ia64/ia64.h (TARGET_CUSTOM_FUNCTION_DESCRIPTORS): Likewise.
1439         * config/rs6000/rs6000.h (TARGET_CUSTOM_FUNCTION_DESCRIPTORS):Likewise.
1440         * config/sparc/sparc.h (TARGET_CUSTOM_FUNCTION_DESCRIPTORS): Likewise.
1442 2016-10-16  Eric Botcazou  <ebotcazou@adacore.com>
1444         * config/sparc/sparc.c (sparc_expand_vector_init): Only accept literal
1445         constants in CONST_VECTORs.
1447 2016-10-15  Eric Botcazou  <ebotcazou@adacore.com>
1449         * config/sparc/sparc.c (sparc_expand_vec_perm_bmask): Use a scratch
1450         register as destination of bmask.
1451         (vector_init_bshuffle): Likewise.
1452         * config/sparc/sparc.md (vec_perm_constv8qi): Likewise.
1453         (bmaskdi_vis): Enable only in 64-bit mode.
1455 2016-10-15  Segher Boessenkool  <segher@kernel.crashing.org>
1457         * config/rs6000/rs6000.c (rs6000_get_separate_components): Do not
1458         make LR a separately shrink-wrapped component unless savres_strategy
1459         contains all of {SAVE,REST}_INLINE_{GPRS,FPRS,VRS}.  Do not wrap
1460         GPRs unless both {SAVE,REST}_INLINE_GPRS.  Do not disallow all
1461         wrapping when not both {SAVE,REST}_INLINE_GPRS.
1463 2016-10-15  Eric Botcazou  <ebotcazou@adacore.com>
1465         * optabs.c (expand_parity): Fix mode mismatch, add final conversion
1466         and keep looping on failure.
1468 2016-10-14  David Malcolm  <dmalcolm@redhat.com>
1470         * print-rtl-function.c (print_edge): Omit "(flags)" when none are
1471         set.
1472         (print_rtx_function): Update example in comment for...
1473         * print-rtl.c (print_rtx_operand_code_r): In compact mode, print
1474         non-virtual pseudos with a '%' sigil followed by the regno, offset
1475         by (LAST_VIRTUAL_REGISTER + 1), so that the first non-virtual
1476         pseudo is dumped as "%0".
1478 2016-10-14  Jakub Jelinek  <jakub@redhat.com>
1480         PR middle-end/77959
1481         * expr.c (expand_expr_real_1) <case CONST_DECL>: For EXPAND_WRITE
1482         return a MEM.
1484 2016-10-14  Eric Botcazou  <ebotcazou@adacore.com>
1486         * config/sparc/sparc-passes.def: New file.
1487         * config/sparc/t-sparc (PASSES_EXTRA): Add sparc-passes.def.
1488         * config/sparc/sparc-protos.h (make_pass_work_around_errata): New.
1489         * config/sparc/sparc.c (sparc_option_override): Don't register passes.
1491 2016-10-14  Pat Haugen  <pthaugen@us.ibm.com>
1493         * loop-unroll.c (unroll_loop_runtime_iterations): Condition initial
1494         loop peel to loops with exit test at the beginning.
1496 2016-10-14  Pat Haugen  <pthaugen@us.ibm.com>
1498         PR rtl-optimization/68212
1499         * cfgloopmanip.c (duplicate_loop_to_header_edge): Use preheader edge
1500         frequency when computing scale factor for peeled copies.
1501         * loop-unroll.c (unroll_loop_runtime_iterations): Fix freq/count
1502         values for switch/peel blocks/edges.
1504 2016-10-14  Pedro Alves  <palves@redhat.com>
1506         * coretypes.h (OVERRIDE, FINAL): Delete, moved to include/ansidecl.h.
1508 2016-10-14  Catherine Moore  <clm@codesourcery.com>
1510         * gcc/config/mips/mips.c (mips_prepare_pch_save): Initialize
1511         micromips_globals to zero.
1513 2016-10-14  Richard Biener  <rguenther@suse.de>
1515         PR tree-optimization/77979
1516         * tree-vrp.c (compare_name_with_value): Handle released SSA names
1517         in the equivalency sets.
1518         (compare_names): Likewise.
1520 2016-10-14  Martin Liska  <mliska@suse.cz>
1522         * builtins.h(target_char_cst_p): Declare the function.
1523         * builtins.c (fold_builtin_memchr): Remove.
1524         (target_char_cst_p): Move the function from gimple-fold.c.
1525         (fold_builtin_3): Do not call the function.
1526         * gimple-fold.c (gimple_fold_builtin_memchr): New function.
1527         (gimple_fold_builtin): Call the function.
1528         * fold-const-call.c (fold_const_call_1): Handle CFN_BUILT_IN_MEMCHR.
1530 2016-10-14  Martin Liska  <mliska@suse.cz>
1532         * builtins.c (fold_builtin_strcmp): Remove function.
1533         (fold_builtin_strncmp): Likewise.
1534         (fold_builtin_2): Remove call of the function.
1535         (fold_builtin_3): Likewise.
1536         * fold-const-call.c (fold_const_call): Add constant folding
1537         for CFN_BUILT_IN_STRCASECMP and CFN_BUILT_IN_STRNCASECMP.
1538         * fold-const-call.h (build_cmp_result): Declare the function.
1539         * gimple-fold.c (gimple_load_first_char): New function.
1540         (gimple_fold_builtin_string_compare): Likewise.
1541         (gimple_fold_builtin): Call the function.
1543 2016-10-14  Nathan Sidwell  <nathan@acm.org>
1545         * gcov-io.c (gcov_open): Deconstify 'mode'.
1547 2016-10-14  Martin Liska  <mliska@suse.cz>
1549         * fold-const.c (c_getstr): Support of properly \0-terminated
1550         string constants.  New argument is added.
1551         * fold-const.h: New argument is added.
1553 2016-10-14  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
1555         * config/aarch64/aarch64.c (aarch64_print_hint_for_core_or_arch):
1556         New function.
1557         (aarch64_print_hint_for_core): Likewise.
1558         (aarch64_print_hint_for_arch): Likewise.
1559         (aarch64_validate_march): Use it.  Fix indentation in type signature.
1560         (aarch64_validate_mcpu): Use aarch64_print_hint_for_core_or_arch.
1561         (aarch64_validate_mtune): Likewise.
1562         (aarch64_handle_attr_arch): Likewise.
1563         (aarch64_handle_attr_cpu): Likewise.
1564         (aarch64_handle_attr_tune): Likewise.
1566 2016-10-14  Prathamesh Kulkarni  <prathamesh.kulkarni@linaro.org>
1568         * optabs.def: Remove optab function gen_int_libfunc for sdivmod_optab
1569         and udivmod_optab.
1571 2016-10-13  Andreas Schwab  <schwab@linux-m68k.org>
1573         * config/m68k/m68k.c (m68k_option_override): Check
1574         opt_fstack_limit_symbol_arg and opt_fstack_limit_register_no
1575         instead of stack_limit_rtx.
1577 2016-10-13  Jakub Jelinek  <jakub@redhat.com>
1579         * dwarf2out.c (gen_member_die): Handle inline static data member
1580         definitions.
1582 2016-10-13  Nathan Sidwell  <nathan@acm.org>
1584         * gcov-io.c (gcov_open): Fix documentation.  Simplify setting
1585         gcov_var.mode.  Remove unnecessary fstat.
1587 2016-10-13  Segher Boessenkool  <segher@kernel.crashing.org>
1589         PR bootstrap/77962
1590         * function.c (thread_prologue_and_epilogue_insns): Call all
1591         make_*logue_seq in the same order as traditional.  Call them
1592         all a second time if shrink_wrapped_separate.
1594 2016-10-13  Marek Polacek  <polacek@redhat.com>
1596         * Makefile.in (insn-attrtab.o-warn, insn-dfatab.o-warn,
1597         insn-latencytab.o-warn, insn-output.o-warn, insn-emit.o-warn): Don't
1598         use -Wno-error.
1600 2016-10-13  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
1602         PR tree-optimization/77937
1603         * gimple-ssa-strength-reduction.c (analyze_increments): Set cost
1604         to infinite when we have a pointer with an increment of -1.
1606 2016-10-13  Thomas Preud'homme  <thomas.preudhomme@arm.com>
1608         * coretypes.h: Move MEMMODEL_* macros and enum memmodel definition
1609         into ...
1610         * memmodel.h: This file.
1611         * alias.c, asan.c, auto-inc-dec.c, bb-reorder.c, bt-load.c,
1612           caller-save.c, calls.c, ccmp.c, cfgbuild.c, cfgcleanup.c,
1613           cfgexpand.c, cfgloopanal.c, cfgrtl.c, cilk-common.c, combine.c,
1614           combine-stack-adj.c, common/config/aarch64/aarch64-common.c,
1615           common/config/arm/arm-common.c, common/config/bfin/bfin-common.c,
1616           common/config/c6x/c6x-common.c, common/config/i386/i386-common.c,
1617           common/config/ia64/ia64-common.c, common/config/nvptx/nvptx-common.c,
1618           compare-elim.c, config/aarch64/aarch64-builtins.c,
1619           config/aarch64/aarch64-c.c, config/aarch64/cortex-a57-fma-steering.c,
1620           config/arc/arc.c, config/arc/arc-c.c, config/arm/arm-builtins.c,
1621           config/arm/arm-c.c, config/avr/avr.c, config/avr/avr-c.c,
1622           config/avr/avr-log.c, config/bfin/bfin.c, config/c6x/c6x.c,
1623           config/cr16/cr16.c, config/cris/cris.c, config/darwin-c.c,
1624           config/darwin.c, config/epiphany/epiphany.c,
1625           config/epiphany/mode-switch-use.c,
1626           config/epiphany/resolve-sw-modes.c, config/fr30/fr30.c,
1627           config/frv/frv.c, config/ft32/ft32.c, config/h8300/h8300.c,
1628           config/i386/i386-c.c, config/i386/winnt.c, config/iq2000/iq2000.c,
1629           config/lm32/lm32.c, config/m32c/m32c.c, config/m32r/m32r.c,
1630           config/m68k/m68k.c, config/mcore/mcore.c,
1631           config/microblaze/microblaze.c, config/mmix/mmix.c,
1632           config/mn10300/mn10300.c, config/moxie/moxie.c,
1633           config/msp430/msp430.c, config/nds32/nds32-cost.c,
1634           config/nds32/nds32-intrinsic.c, config/nds32/nds32-md-auxiliary.c,
1635           config/nds32/nds32-memory-manipulation.c,
1636           config/nds32/nds32-predicates.c, config/nds32/nds32.c,
1637           config/nios2/nios2.c, config/nvptx/nvptx.c, config/pa/pa.c,
1638           config/pdp11/pdp11.c, config/rl78/rl78.c, config/rs6000/rs6000-c.c,
1639           config/rx/rx.c, config/s390/s390-c.c, config/s390/s390.c,
1640           config/sh/sh.c, config/sh/sh-c.c, config/sh/sh-mem.cc,
1641           config/sh/sh_treg_combine.cc, config/sol2.c, config/spu/spu.c,
1642           config/stormy16/stormy16.c, config/tilegx/tilegx.c,
1643           config/tilepro/tilepro.c, config/v850/v850.c, config/vax/vax.c,
1644           config/visium/visium.c, config/vms/vms-c.c, config/xtensa/xtensa.c,
1645           coverage.c, cppbuiltin.c, cprop.c, cse.c, cselib.c, dbxout.c, dce.c,
1646           df-core.c, df-problems.c, df-scan.c, dojump.c, dse.c, dwarf2asm.c,
1647           dwarf2cfi.c, dwarf2out.c, emit-rtl.c, except.c, explow.c, expmed.c,
1648           expr.c, final.c, fold-const.c, function.c, fwprop.c, gcse.c,
1649           ggc-page.c, haifa-sched.c, hsa-brig.c, hsa-gen.c, hw-doloop.c,
1650           ifcvt.c, init-regs.c, internal-fn.c, ira-build.c, ira-color.c,
1651           ira-conflicts.c, ira-costs.c, ira-emit.c, ira-lives.c, ira.c, jump.c,
1652           loop-doloop.c, loop-invariant.c, loop-iv.c, loop-unroll.c,
1653           lower-subreg.c, lra.c, lra-assigns.c, lra-coalesce.c,
1654           lra-constraints.c, lra-eliminations.c, lra-lives.c, lra-remat.c,
1655           lra-spills.c, mode-switching.c, modulo-sched.c, omp-low.c, passes.c,
1656           postreload-gcse.c, postreload.c, predict.c, print-rtl-function.c,
1657           recog.c, ree.c, reg-stack.c, regcprop.c, reginfo.c, regrename.c,
1658           reload.c, reload1.c, reorg.c, resource.c, rtl-chkp.c, rtl-tests.c,
1659           rtlanal.c, rtlhooks.c, sched-deps.c, sched-rgn.c, sdbout.c,
1660           sel-sched-ir.c, sel-sched.c, shrink-wrap.c, simplify-rtx.c,
1661           stack-ptr-mod.c, stmt.c, stor-layout.c, target-globals.c,
1662           targhooks.c, toplev.c, tree-nested.c, tree-outof-ssa.c,
1663           tree-profile.c, tree-ssa-coalesce.c, tree-ssa-ifcombine.c,
1664           tree-ssa-loop-ivopts.c, tree-ssa-loop.c, tree-ssa-reassoc.c,
1665           tree-ssa-sccvn.c, tree-vect-data-refs.c, ubsan.c, valtrack.c,
1666           var-tracking.c, varasm.c: Include memmodel.h.
1667         * genattrtab.c (write_header): Include memmodel.h in generated file.
1668         * genautomata.c (main): Likewise.
1669         * gengtype.c (open_base_files): Likewise.
1670         * genopinit.c (main): Likewise.
1671         * genconditions.c (write_header): Include memmodel.h earlier in
1672         generated file.
1673         * genemit.c (main): Likewise.
1674         * genoutput.c (output_prologue): Likewise.
1675         * genpeep.c (main): Likewise.
1676         * genpreds.c (write_insn_preds_c): Likewise.
1677         * genrecog.c (write_header): Likewise.
1678         * Makefile.in (PLUGIN_HEADERS): Include memmodel.h
1680 2016-10-13  David Malcolm  <dmalcolm@redhat.com>
1682         * function-tests.c (selftest::test_expansion_to_rtl): Add "true"
1683         for new "compact" param of print_rtx_function.  Check for "cinsn"
1684         rather than "insn".
1685         * print-rtl-function.c (flag_compact): New decl.
1686         (print_rtx_function): Add param "compact" and use it to set
1687         flag_compact, adding a description of the effect to the leading
1688         comment, and updating the example output.
1689         * print-rtl.c (flag_compact): New variable.
1690         (print_rtx_operand_code_0): Omit the JUMP_LABEL reference in compact
1691         mode.
1692         (print_rtx_operand_code_i): When printing source locations, wrap
1693         xloc.file in quotes.  Don't print INSN_CODEs in compact mode.
1694         (print_rtx_operand_code_r): Don't print regnos for hard regs and
1695         virtuals in compact mode.
1696         (print_rtx_operand_code_u): Don't print insn UIDs in compact mode,
1697         apart from in LABEL_REFs.
1698         (print_rtx_operand): In case 'w', don't print in hex in compact mode.
1699         Don't print basic block ids in compact mode.
1700         (print_rtx):  In compact mode, prefix the code of insns with "c",
1701         only print the INSN_UID of CODE_LABELs, and omit their LABEL_NUSES.
1702         * print-rtl.h (print_rtx_function): Add "compact" param.
1704 2016-10-13  Richard Earnshaw  <rearnsha@arm.com>
1706         * arm.h (TARGET_VFP): Delete.
1707         (TARGET_VFPD32): Remove references to TARGET_VFP.
1708         (TARGET_VFP3, TARGET_VFP5): Likewise.
1709         (TARGET_VFP_SINGLE, TARGET_VFP_DOUBLE): Likewise.
1710         (TARGET_NEON_FP16): Likewise.
1711         (TARGET_FMA): Likewise.
1712         (TARGET_CRYPTO): Likewise.
1713         (TARGET_NEON): Likewise.
1714         (SECONDARY_OUTPUT_RELOAD_CLASS): Likewise.
1715         (FUNCTION_ARG_REGNO_P): Likewise.
1716         * arm.c (arm_option_check_internal): Likewise.
1717         (arm_option_override): Likewise.
1718         (use_return_insn): Likewise.
1719         (arm_function_value_regno_p): Likewise.
1720         (arm_apply_result_size): Likewise.
1721         (use_vfp_abi): Likewise.
1722         (arm_legitimate_address_outer_p): Likewise.
1723         (thumb2_legitimate_address_p): Likewise.
1724         (arm_legitimate_index_p): Likewise.
1725         (thumb2_legitimate_index_p): Likewise.
1726         (arm_legitimate_address): Likewise.
1727         (arm_get_vfp_saved_size): Likewise.
1728         (arm_emit_vfp_multi_reg_pop): Likewise.
1729         (arm_get_frame_offsets): Likewise.
1730         (arm_save_coproc_regs): Likewise.
1731         (arm_hard_regno_mode_ok): Likewise.
1732         (arm_expand_epilogue_apcs_frame): Likewise.
1733         (arm_expand_epilogue): Likewise.
1734         (arm_file_start): Likewise.
1735         (arm_conditional_register_usage): Likewise.
1736         (arm_validize_comparison): Use vfp_compare_operand directly.
1737         * arm-builtins.c (arm_init_builtins): Remove references to TARGET_VFP.
1738         (arm_expand_vfp_builtin): Use TARGET_HARD_FLOAT for detecting
1739         unsupported usage.
1740         (arm_atomic_assign_expand_fenv): Likewise.
1741         * arm.md (divsf3): Likewise.
1742         (arm_negsi2): Likewise.
1743         (absdf2): Likewise.
1744         (arm_movdi): Likewise.
1745         (arm_movt): Likewise.
1746         (cbranchsf4): Change predicate to vfp_compare_operand.
1747         (cbranchdf4): Change predicate to vfp_compare_operand.
1748         (cstorehf4): Change predicate to vfp_compare_operand.
1749         (cstoresf4): Change predicate to vfp_compare_operand.
1750         (cstoredf4): Change predicate to vfp_compare_operand.
1751         (vfp_pop_multiple_with_writeback): Remove references to TARGET_VFP.
1752         (movhi_insn_arch4, movhi_bytes): Likewise.
1753         * constraints.md (Dt): Likewise.
1754         (Dp): Likewise.
1755         * iterators.md (SDF): Likewise.
1756         * predicates.md (arm_float_compare_operand): Delete.
1757         (const_double_vcvt_power_of_two_reciprocal): Remove references to
1758         TARGET_VFP.
1759         (const_double_vcvt_power_of_two): Likewise.
1760         * thumb2.md thumb2_movsi_insn): Likewise.
1761         * vfp.md (arm_movhi_vfp, thumb2_movhi_vfp): Likewise.
1762         (movhf_vfp): Likewise.
1763         (arm_movsi_vfp, thumb2_movsi_vfp): Likewise.
1764         (movdi_vfp, movdi_vfp_cortexa8): Likewise.
1765         (movsf_vfp, thumb2_movsf_vfp): Likewise.
1766         (movdf_vfp, thumb2_movdf_vfp): Likewise.
1767         (movsfcc_vfp, abssf2_vfp, negsf2_vfp, addsf3_vfp): Likewise.
1768         (subsf3_vfp, divsf3_vfp): Likewise.
1769         (mulsf3_vfp, mulsf3negsf_vfp, negmulsf3_vfp): Likewise.
1770         (mulsf3addsf_vfp, (mulsf3subsf_vfp, mulsf3negsfaddsf_vfp): Likewise.
1771         (mulsf3negsfsubsf_vfp): Likewise.
1772         (truncsisf2_vfp, fixuns_truncsfsi2, floatsisf2_vfp): Likewise.
1773         (floatunssisf2, sqrtsf2_vfp): Likewise.
1774         (movcc_vfp): Likewise.
1775         (cmpsf_split_vfp, cmpsf_trap_split_vfp): Likewise.
1776         (cmpsf_vfp, cmpsf_trap_vfp): Likewise.
1777         (push_multi_vfp): Likewise.
1778         (set_fpscr, get_fpscr): Likewise.
1779         * arm-c.c (arm_cpu_builtins): Unconditionally define __VFP_FP__.
1781 2016-10-13  Richard Earnshaw  <rearnsha@arm.com>
1783         * arm.h (TARGET_VFP): Unconditionally define to 1.
1784         (arm_fpu_desc): Remove 'model' field.
1785         (TARGET_FPU_MODEL): Delete.
1786         * arm.c (all_fpus): Don't initialize the model field.
1787         (arm_can_inline_p): Don't check the FPU model.
1788         * arm-fpus.def: Remove redundant model field from all FPU
1789         descriptions.
1791 2016-10-13  Richard Biener  <rguenther@suse.de>
1793         PR middle-end/77826
1794         * genmatch.c (struct capture): Add value_match member.
1795         (commutate): Preserve value_match.
1796         (lower_opt_convert): Likewise.
1797         (lower_cond): Likewise.
1798         (replace_id): Likewise.
1799         (struct dt_operand): Add value_match member.
1800         (decision_tree::cmp_node): Compare it.
1801         (decision_tree::insert_operand): Honor it when finding and
1802         when appending a DT_MATCH.
1803         (dt_operand::gen_match_op): Generate a type check after
1804         operand_equal_p if ! value_match for both GENERIC and GIMPLE.
1805         (parser::get_internal_capture_id): New helper.
1806         (parser::finish_match_operand): New function lowering @@<id>.
1807         (parser::parse_capture): Parse @@<id> as value-match.
1808         (parser::parse_expr): Use get_internal_capture_id.
1809         (parser::parse_simplify): Call finish_match_operand.
1810         (walk_captures): New helper.
1811         * match.pd (X - (X / Y) * Y -> X % Y): Use value-matching instead
1812         of operand_equal_p.
1813         ((X /[ex] A) * A -> X): Likewise.
1814         ((X | Y) ^ X -> Y & ~ X): Handle constants properly by using
1815         convert[12] and value-matching.
1816         ((A | B) & (A | C) ->  A | (B & C)): Likewise.
1817         ((X | Y) | Y -> X | Y): Likewise.
1818         ((X ^ Y) ^ Y -> X): Likewise.
1819         (A - (A & B) -> ~B & A): Likewise.
1820         ((T)(P + A) - (T)P -> (T) A): Likewise.
1821         ((T)P - (T)(P + A) -> -(T) A): Likewise.
1822         ((T)(P + A) - (T)(P + B) -> (T)A - (T)B): Likewise.
1823         * doc/match-and-simplify.texi: Amend capture section.
1825 2016-10-13  Claudiu Zissulescu  <claziss@synopsys.com>
1827         * config/arc/arc.md (umul_600): Remove predicated variant.
1828         (umul64_600): Likewise.
1830 2016-10-13  Claudiu Zissulescu  <claziss@synopsys.com>
1832         * config/arc/arc.h (INSN_LENGTH_ALIGNMENT): Change.
1834 2016-10-13  Bin Cheng  <bin.cheng@arm.com>
1836         * tree-vect-loop.c (loop_niters_no_overflow): New func.
1837         (vect_transform_loop): Call loop_niters_no_overflow.  Pass the
1838         no-overflow information to vect_do_peeling_for_loop_bound and
1839         vect_gen_vector_loop_niters.
1841 2016-10-13  Bin Cheng  <bin.cheng@arm.com>
1843         * tree-predcom.c (tree_predictive_commoning_loop): Skip loop that only
1844         iterates 1 time.
1846 2016-10-13  Bin Cheng  <bin.cheng@arm.com>
1848         * tree-vect-loop-manip.c (adjust_vec_debug_stmts): Don't release
1849         adjust_vec automatically.
1850         (slpeel_add_loop_guard): Remove param cond_expr_stmt_list.  Rename
1851         param exit_bb to guard_to.
1852         (slpeel_checking_verify_cfg_after_peeling):
1853         (set_prologue_iterations):
1854         (create_lcssa_for_virtual_phi): New func which is factored out from
1855         slpeel_tree_peel_loop_to_edge.
1856         (slpeel_tree_peel_loop_to_edge):
1857         (iv_phi_p): New func.
1858         (vect_can_advance_ivs_p): Call iv_phi_p.
1859         (vect_update_ivs_after_vectorizer): Call iv_phi_p.  Directly insert
1860         new gimple stmts in basic block.
1861         (vect_gen_niters_for_prolog_loop): Rename to...
1862         (vect_gen_prolog_loop_niters): ...Rename from.  Change parameters and
1863         adjust implementation.
1864         (vect_update_inits_of_drs): Fix code style issue.  Convert niters to
1865         sizetype if necessary.
1866         (vect_build_loop_niters): Move to here from tree-vect-loop.c.  Change
1867         it to external function.
1868         (vect_gen_scalar_loop_niters, vect_gen_vector_loop_niters): New.
1869         (vect_gen_vector_loop_niters_mult_vf): New.
1870         (slpeel_update_phi_nodes_for_loops): New.
1871         (slpeel_update_phi_nodes_for_guard1): Reimplement.
1872         (find_guard_arg, slpeel_update_phi_nodes_for_guard2): Reimplement.
1873         (slpeel_update_phi_nodes_for_lcssa, vect_do_peeling): New.
1874         * tree-vect-loop.c (vect_build_loop_niters): Move to file
1875         tree-vect-loop-manip.c
1876         (vect_generate_tmps_on_preheader): Delete.
1877         (vect_transform_loop): Rename vectorization_factor to vf.  Call
1878         vect_do_peeling instead of vect_do_peeling-* functions.
1879         * tree-vectorizer.h (vect_do_peeling): New decl.
1880         (vect_build_loop_niters, vect_gen_vector_loop_niters): New decls.
1881         (vect_do_peeling_for_loop_bound): Delete.
1882         (vect_do_peeling_for_alignment): Delete.
1884 2016-10-13  Bin Cheng  <bin.cheng@arm.com>
1886         * tree-vect-loop-manip.c (slpeel_tree_duplicate_loop_to_edge_cfg): Put
1887         duplicated loop after its preheader and after the original loop.
1889 2016-10-13  Bin Cheng  <bin.cheng@arm.com>
1891         * tree-vect-loop.c (vect_analyze_loop_2): Check and skip loop if it
1892         has no enough iterations for LOOP_VINFO_PEELING_FOR_GAPS.
1894 2016-10-13  Bin Cheng  <bin.cheng@arm.com>
1896         * tree-vect-loop.c (vectorizable_live_operation): Support handling
1897         for live variable outside loop but not in lcssa form.
1899 2016-10-13  Bin Cheng  <bin.cheng@arm.com>
1901         * cfg.c (reset_original_copy_tables): New func.
1902         * cfg.h (reset_original_copy_tables): New decl.
1904 2016-10-13  Jakub Jelinek  <jakub@redhat.com>
1906         PR c/77946
1907         * tree.h (FALLTHROUGH_LABEL_P): Use private_flag instead of
1908         public_flag.
1909         * varasm.c (default_binds_local_p_3): Formatting fix.
1911 2016-10-13  Bin Cheng  <bin.cheng@arm.com>
1913         * tree-vect-loop-manip.c (slpeel_can_duplicate_loop_p): Fix code
1914         style issue.
1915         (vect_do_peeling_for_loop_bound, vect_do_peeling_for_alignment):
1916         Remove useless code.
1918 2016-10-13  Martin Liska  <mliska@suse.cz>
1920         PR tree-optimization/77943
1921         * tree-ssa-tail-merge.c (merge_stmts_p): Do not merge BBs with
1922         a different EH landing pads.
1924 2016-10-13  Jakub Jelinek  <jakub@redhat.com>
1926         PR target/77957
1927         * hooks.h (hook_tree_void_null): Declare.
1928         * hooks.c (hook_tree_void_null): New function.
1929         * langhooks.c (lhd_return_null_tree_v): Remove.
1930         * langhooks-def.h (lhd_return_null_tree_v): Remove.
1931         * cfgexpand.c (stack_protect_prologue): If guard_decl is NULL,
1932         set y to const0_rtx.
1933         * function.c (stack_protect_epilogue): Likewise.
1934         * config/tilepro/tilepro.c (TARGET_STACK_PROTECT_GUARD): Redefine
1935         if TARGET_THREAD_SSP_OFFSET is defined.
1936         * config/s390/s390.c (TARGET_STACK_PROTECT_GUARD): Likewise.
1937         * config/sparc/sparc.c (TARGET_STACK_PROTECT_GUARD): Likewise.
1938         * config/tilegx/tilegx.c (TARGET_STACK_PROTECT_GUARD): Likewise.
1939         * config/rs6000/rs6000.c (TARGET_STACK_PROTECT_GUARD): Likewise.
1940         * config/i386/i386.c (TARGET_STACK_PROTECT_GUARD): Likewise.
1941         (ix86_stack_protect_guard): New function.
1943 2016-10-13  Richard Biener  <rguenther@suse.de>
1945         * dwarf2out.c (tree_add_const_value_attribute): Do not try
1946         rtl_for_decl_init during early phase.
1947         (gen_variable_die): Do not create locations during early phase.
1948         (gen_label_die): Likewise.
1949         (decls_for_scope): Do not waste time handling BLOCK_NONLOCALIZED_VARs
1950         twice.
1952 2016-10-12  Richard Biener  <rguenther@suse.de>
1954         * tree-vrp.c (evrp_dom_walker::try_find_new_range): Renamed from
1955         try_add_new_range and made to eturn new range.
1956         (evrp_dom_walker::before_dom_children): Push op1 value range before
1957         pushing op0 value range.
1959 2016-10-12  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
1961         PR tree-optimization/77937
1962         * gimple-ssa-strength-reduction.c (analyze_increments): Use
1963         POINTER_TYPE_P on the candidate type to determine whether
1964         candidates in this chain require pointer arithmetic.
1966 2016-10-12  Eric Botcazou  <ebotcazou@adacore.com>
1968         * config/visium/visium.c (visium_gimplify_va_arg): Emit a big-endian
1969         correction if the type is smaller than a word.
1970         (visium_select_cc_mode): Add ... fall through ... comment.
1972 2016-10-12  Segher Boessenkool  <segher@kernel.crashing.org>
1974         * config/rs6000/rs6000.c (machine_function): Add new fields
1975         gpr_is_wrapped_separately and lr_is_wrapped_separately.
1976         (TARGET_SHRINK_WRAP_GET_SEPARATE_COMPONENTS,
1977         TARGET_SHRINK_WRAP_COMPONENTS_FOR_BB,
1978         TARGET_SHRINK_WRAP_DISQUALIFY_COMPONENTS,
1979         TARGET_SHRINK_WRAP_EMIT_PROLOGUE_COMPONENTS,
1980         TARGET_SHRINK_WRAP_EMIT_EPILOGUE_COMPONENTS,
1981         TARGET_SHRINK_WRAP_SET_HANDLED_COMPONENTS): Define.
1982         (rs6000_get_separate_components): New function.
1983         (rs6000_components_for_bb): New function.
1984         (rs6000_disqualify_components): New function.
1985         (rs6000_emit_prologue_components): New function.
1986         (rs6000_emit_epilogue_components): New function.
1987         (rs6000_set_handled_components): New function.
1988         (rs6000_emit_prologue): Don't emit LR save if lr_is_wrapped_separately.
1989         Don't emit GPR saves if gpr_is_wrapped_separately for that register.
1990         (restore_saved_lr): Don't restore LR if lr_is_wrapped_separately.
1991         (rs6000_emit_epilogue): Don't emit GPR restores if
1992         gpr_is_wrapped_separately for that register.  Don't make a
1993         REG_CFA_RESTORE note for registers we did not restore, either.
1995 2016-10-12  Segher Boessenkool  <segher@kernel.crashing.org>
1997         * function.c (thread_prologue_and_epilogue_insns): Call
1998         try_shrink_wrapping_separate.  Compute the prologue_seq afterwards,
1999         if it has possibly changed.  Compute the split_prologue_seq and
2000         epilogue_seq later, too.
2001         * shrink-wrap.c: #include cfgbuild.h and insn-config.h.
2002         (dump_components): New function.
2003         (struct sw): New struct.
2004         (SW): New function.
2005         (init_separate_shrink_wrap): New function.
2006         (fini_separate_shrink_wrap): New function.
2007         (place_prologue_for_one_component): New function.
2008         (spread_components): New function.
2009         (disqualify_problematic_components): New function.
2010         (emit_common_heads_for_components): New function.
2011         (emit_common_tails_for_components): New function.
2012         (insert_prologue_epilogue_for_components): New function.
2013         (try_shrink_wrapping_separate): New function.
2014         * shrink-wrap.h: Declare try_shrink_wrapping_separate.
2016 2016-10-12  Segher Boessenkool  <segher@kernel.crashing.org>
2018         * regrename.c (build_def_use): Invalidate chains that have a
2019         REG_CFA_RESTORE on some instruction.
2021 2016-10-12  Segher Boessenkool  <segher@kernel.crashing.org>
2023         * dce.c (delete_unmarked_insns): Don't delete instructions with
2024         a REG_CFA_RESTORE note.
2026 2016-10-12  Segher Boessenkool  <segher@kernel.crashing.org>
2028         * common.opt (-fshrink-wrap-separate): New flag.
2029         * doc/invoke.texi: Document it.
2030         * doc/tm.texi.in (Shrink-wrapping separate components): New subsection.
2031         * doc/tm.texi: Regenerate.
2032         * emit-rtl.h (struct rtl_data): New field shrink_wrapped_separate.
2033         * target.def (shrink_wrap): New hook vector.
2034         (get_separate_components, components_for_bb, disqualify_components,
2035         emit_prologue_components, emit_epilogue_components,
2036         set_handled_components): New hooks.
2038 2016-10-12  Segher Boessenkool  <segher@kernel.crashing.org>
2040         * config/rs6000/rs6000.c (rs6000_return_in_memory): Warn for
2041         vector return by reference only if -Wpsabi.
2042         (rs6000_pass_by_reference): Similarly, for argument passing.
2044 2016-10-12  David Malcolm  <dmalcolm@redhat.com>
2046         * function-tests.c: Include "print-rtl.h".
2047         (selftest::test_expansion_to_rtl): Call print_rtx_function on the
2048         function, and verify what is dumped.
2049         * print-rtl-function.c (print_edge): New function.
2050         (begin_any_block): New function.
2051         (end_any_block): New function.
2052         (can_have_basic_block_p): New function.
2053         (print_rtx_function): Track the basic blocks of insns in the
2054         chain, wrapping those that are within blocks within "(block)"
2055         directives.  Remove the "(cfg)" directive.
2057 2016-10-12  David Malcolm  <dmalcolm@redhat.com>
2059         * selftest.c (selftest::read_file): New function.
2060         (selftest::test_read_file): New function.
2061         (selftest::selftest_c_tests): Call test_read_file.
2062         * selftest.h (selftest::read_file): New decl.
2064 2016-10-12  Richard Biener  <rguenther@suse.de>
2066         PR debug/77947
2067         * cgraphunit.c (analyze_functions): Preserve cgraph nodes
2068         function context.
2070 2016-10-12  Thomas Schwinge  <thomas@codesourcery.com>
2072         * lto-streamer.c: Fix LTO_STREAMER_DEBUG build.
2074         * dwarf2out.c (dwarf2_lineno_debug_hooks): Use
2075         dwarf2out_assembly_start.
2077         * Makefile.in (SELFTEST_FLAGS): Add -nostdinc.
2079         * Makefile.in (SELFTEST_FLAGS): New variable.
2080         (s-selftest, selftest-gdb, selftest-valgrind): Use it.
2082         * vmsdbgout.c (vmsdbg_debug_hooks): Add filename parameter to
2083         early_finish hook.
2085 2016-10-12  Georg-Johann Lay  <avr@gjlay.de>
2087         * rtl.h (struct rtx_def): Comment how RTX_FLAGS will be
2088         dumped in RTL dumps.
2090 2016-10-12  Martin Liska  <mliska@suse.cz>
2092         * gimple-fold.c (create_tmp_reg_or_ssa_name): New function.
2093         (gimple_fold_builtin_memory_op): Use the function.
2094         (gimple_fold_builtin_strchr): Likewise.
2095         (gimple_fold_builtin_strcat): Likewise.
2096         (gimple_build): Likewise.
2098 2016-10-12  Nathan Sidwell  <nathan@acm.org>
2100         * diagnostic.c (diagnostc_report_diagnostic): Fix formatting.
2102 2016-10-12  Pierre-Marie de Rodat  <derodat@adacore.com>
2104         * dwarf2out.c (int_loc_descriptor): Generate opcodes for another
2105         equivalent 32-bit constant (modulo 2**32) when that yields
2106         smaller instructions.
2107         (size_of_int_loc_descriptor): Update accordingly.
2109 2016-10-12  Pierre-Marie de Rodat  <derodat@adacore.com>
2111         * dwarf2out.c (dwarf2out_early_global_decl): For nested
2112         functions, call dwarf2out_decl on the parent function first.
2114 2016-10-12  Richard Biener  <rguenther@suse.de>
2116         * match.pd ((X /[ex] A) * A -> X): Remove unnecessary constraint
2117         on the conversion.
2119 2016-10-12  Richard Biener  <rguenther@suse.de>
2121         * tree-ssa-propagate.c
2122         (substitute_and_fold_dom_walker::before_dom_children): Do not
2123         ignore ASSERT_EXPRs but only preserve them.
2124         * tree-vrp.c (remove_range_assertions): Deal with ASSERT_EXPRs
2125         that have been propagated into.
2126         (vrp_finalize): Enable DCE for substitute_and_fold.
2128 2016-10-12  Richard Biener  <rguenther@suse.de>
2130         PR tree-optimization/77920
2131         * tree-vrp.c (simplify_div_or_mod_using_ranges): Simplify.
2132         (simplify_min_or_max_using_ranges): Pass in gsi and use it.
2133         (simplify_abs_using_ranges): Likewise.
2134         (simplify_conversion_using_ranges): Likewise.
2135         (simplify_stmt_using_ranges): Adjust.
2137 2016-10-12  Jakub Jelinek  <jakub@redhat.com>
2139         PR tree-optimization/77929
2140         * tree-ssa-reassoc.c (optimize_range_tests_var_bound): Handle
2141         (*ops)[ranges[i].idx]->op != ranges[i].exp case.
2143 2016-10-12  Aaron Sawdey  <acsawdey@linux.vnet.ibm.com>
2145         PR target/77934
2146         * config/rs6000/vmx.md (vsx_concat_<mode>): The mtvsrdd instruction
2147         needs a base register for arg 1.
2149 2016-10-12  Jakub Jelinek  <jakub@redhat.com>
2151         * common.opt (Wimplicit-fallthrough) Turn into alias to
2152         -Wimplicit-fallthrough=3.  Remove EnabledBy.
2153         (Wimplicit-fallthrough=): New option.
2154         * gimplify.c (warn_implicit_fallthrough_r): Use
2155         OPT_Wimplicit_fallthrough_ instead of OPT_Wimplicit_fallthrough.
2156         * doc/invoke.texi (-Wimplicit-fallthrough): Document as alias
2157         to -Wimplicit-fallthrough=3.
2158         (-Wimplicit-fallthrough=): Document.
2160 2016-10-11  Eric Botcazou  <ebotcazou@adacore.com>
2162         * config/sparc/sparc.c (emit_scc_insn): Remove direct support for EQ
2163         and GEU in DImode if TARGET_SUBXC.
2164         * config/sparc/sparc.md (seqdi<W:mode>_zero): Remove TARGET_SUBXC.
2165         (seqdi<W:mode>_zero_subxc): Delete.
2166         (neg_seqdi<W:mode>_zero): Remove TARGET_VIS3.
2167         (neg_seqdi<W:mode>_zero_vis3): Delete.
2168         (plus_seqdi<W:mode>_zero): Likewise.
2169         (minus_seqdi<W:mode>_zero): Likewise.
2170         (plus_plus_sltu<W:mode>): Accept only register.
2171         (addx<W:mode>): Likewise.
2172         (plus_sltu<W:mode>_vis3): Likewise.
2173         (plus_plus_sltu<W:mode>_vis3): Likewise.
2174         (neg_sgeu<W:mode>_vis3): Delete.
2175         (minus_sgeu<W:mode>_vis3): Likewise.
2176         (addxc<W:mode>): Accept only registers.
2177         (neg_sltu<W:mode>_subxc): Write %%g0 instead of 0.
2178         (minus_neg_sltu<W:mode>_subxc): Accept only register.
2179         (neg_plus_sltu<W:mode>_subxc): Likewise.
2180         (minus_sltu<W:mode>_subxc): Write %%g0 instead of 0.
2181         (minus_minus_sltu<W:mode>_subxc): Accept only register.
2182         (sgeu<W:mode>_insn_subxc): Delete.
2183         (plus_sgeu<W:mode>_subxc): Likewise.
2184         (subxc<W:mode>): Accept only register.
2185         (scc splitter): Split always GEU again.
2187 2016-10-11  Jeff Law  <law@redhat.com>
2189         PR tree-optimization/77424
2190         * tree-ssa-threadupdate.c (thread_through_all_blocks): Remove
2191         dead conditionals.  Assert that all e->aux fields are NULL.
2193 2016-10-11  David Malcolm  <dmalcolm@redhat.com>
2195         * print-rtl.c (print_rtx): Rename "i" to "idx".  Split out the
2196         operand-printing "switch" statement into...
2197         (print_rtx_operand_code_0): ...this new function, ...
2198         (print_rtx_operand_code_e): ...this new function, ...
2199         (print_rtx_operand_codes_E_and_V): ...this new function, ...
2200         (print_rtx_operand_code_i): ...this new function, ...
2201         (print_rtx_operand_code_r): ...this new function, ...
2202         (print_rtx_operand_code_u): ...this new function, ...
2203         (print_rtx_operand): ...and this new function.
2205 2016-10-11  Uros Bizjak  <ubizjak@gmail.com>
2207         * config/alpha/alpha-passes.def: New file.
2208         * config/alpha/t-alpha: New file.
2209         * config/alpha/alpha-protos.h (gcc::context, rtl_opt_pass): Declare.
2210         (make_pass_handle_trap_shadows): New prototype.
2211         (make_pass_align_insns): Ditto.
2212         * config/alpha/alpha.c (alpha_option_override): Don't register
2213         passes here.
2214         * config.gcc (alpha*-*-*) Add alpha/t-alpha to tmake_file.
2216 2016-10-11  Michael Meissner  <meissner@linux.vnet.ibm.com>
2218         PR target/77924
2219         * config/rs6000/rs6000.c (rs6000_init_builtins): Only create the
2220         distinct __ibm128 IBM extended double type if long doubles are
2221         128-bits and the default format for long double is IEEE 128-bit.
2223 2016-10-11  Richard Biener  <rguenther@suse.de>
2225         * dwarf2out.c (DEBUG_STR_OFFSETS_SECTION): Remove conditional.
2226         (init_sections_and_labels): Use DEBUG_DWO_STR_OFFSETS_SECTION.
2227         (verify_die): New function.
2228         (dwarf2out_finish): Call it.
2229         (output_line_info): Handle case of -gsplit-dwarf without
2230         DWARF2_ASM_LINE_DEBUG_INFO.
2232 2016-10-11  Richard Biener  <rguenther@suse.de>
2234         PR debug/77931
2235         * gimple-low.c (lower_gimple_bind): Handle arbitrary common
2236         sub-chains of BLOCK_VARS and gimple_bind_vars.
2238 2016-10-11  Venkataramanan Kumar  <Venkataramanan.kumar@amd.com>
2240         * config/i386/znver1.md : Fix imov/imovx load type reservations.
2242 2016-10-11  Eric Botcazou  <ebotcazou@adacore.com>
2244         * config/sparc/sparc.opt (msubxc): New option.
2245         * doc/invoke.texi (SPARC options): Document it and tidy up.
2246         * doc/tm.texi.in (Condition Codes): Adjust SPARC example.
2247         * doc/tm.texi: Regenerate.
2248         * config/sparc/sparc-modes.def (CC_NOOV): Rename into...
2249         (CCNZ): ...this.
2250         (CCX_NOOV): Rename into...
2251         (CCXNZ): ...this.
2252         (CCC): New.
2253         (CCXC): Likewise.
2254         * config/sparc/predicates.m (fcc_register_operand): Simplify.
2255         (fcc0_register_operand): Likewise.
2256         (icc_register_operand): New.
2257         (icc_or_fcc_register_operand): Simplify.
2258         (nz_comparison_operator): New.
2259         (c_comparison_operator): Likewise.
2260         (noov_compare_operator): Rename into...
2261         (icc_comparison_operator): ...this.  Use above predicates.
2262         (noov_compare64_operator): Rename into...
2263         (v9_comparison_operator): ...this and tidy up.
2264         (fcc_comparison_operator): New.
2265         (icc_or_fcc_comparison_operator): Likewise.
2266         (v9_register_compare_operator): Rename info...
2267         (v9_register_comparison_operator): ...this.
2268         * config/sparc/sparc.c (TARGET_FIXED_CONDITION_CODE_REGS): Define.
2269         (sparc_option_override): Remove redundant VIS masks and add MASK_SUBXC
2270         for Niagara-7.
2271         (sparc_fixed_condition_code_regs): New function.
2272         (select_cc_mode): Remove ATTRIBUTE_UNUSED.  Adjust for CCNZ/CCXNZ
2273         renaming and add support for CCC/CCXC.
2274         (output_cbranch): Likewise.
2275         (sparc_print_operand): Likewise.
2276         (gen_v9_scc): Remove obsolete assertion.
2277         (emit_scc_insn): Emit RTL directly for EQ and NE.  Add direct support
2278         for EQ in DImode if TARGET_SUBXC.  Remove test on TARGET_VIS3 for GEU.
2279         (output_cbcond): Remove bogus handling of CC modes.
2280         (sparc_register_move_cost): Return 100 for NO_REGS.
2281         * config/sparc/sparc.md (W): New mode iterator.
2282         (length): Adjust for noov_compare64_operator renaming.
2283         (cmpsi_sne): New instruction.
2284         (cmpdi_sne): Likewise.
2285         (seqdi_special): Delete.
2286         (seqdi_special): Likewise.
2287         (snesi<P:mode>_special): Likewise.
2288         (snedi_special): Likewise.
2289         (snedi_special_vis3): Likewise.
2290         (snesi patterns): Use W iterator.
2291         (snedi patterns): Likewise.  Add TARGET_SUBXC patterns.
2292         (sltu patterns): Likewise.
2293         (sgeu patterns): Likewise.
2294         (scc splitter): Do not split GEU in DImode if TARGET_SUBXC.
2295         (normal_branch): Use icc_comparison_operator predicate.
2296         (inverted_branch): Likewise.
2297         (cbcond_sp32): Use comparison_operator predicate.
2298         (cbcond_sp64): Likewise.
2299         (normal_int_branch_sp64): Adjust for renaming
2300         (inverted_int_branch_sp64): Likewise.
2301         (mov<I:mode>_cc_reg_sp64): Likewise.
2302         (movsf_cc_reg_sp6): Likewise.
2303         (movdf_cc_reg_sp64): Likewise.
2304         (movtf_cc_reg_hq_sp64): Likewise.
2305         (movtf_cc_reg_sp64): Likewise.
2306         (mov<I:mode>_cc_v9): Use icc_or_fcc_comparison_operator predicate.
2307         (movsf_cc_v9): Likewise.
2308         (movdf_cc_v9): Likewise.
2309         (movtf_cc_hq_v9): Likewise.
2310         (movtf_cc_v9): Likewise.
2311         (adddi3): Call gen_adddi3_sp32.
2312         (adddi3_insn_sp32): Rename to...
2313         (adddi3_sp32): ...this.  Accept only register_operand as operand #1
2314         and use CCCmode for the carry.
2315         (addx_extend_sp32): Use CCCmode for the carry.
2316         (addx_extend_sp64): Delete.
2317         (adddi3_extend_sp32): Use CCCmode for the carry.
2318         (cmp_plus patterns): Use CCNZ/CCXNZ mode and add C variants.
2319         (subdi3): Call gen_subdi3_sp32.
2320         (subdi3_insn_sp32): Rename to...
2321         (subdi3_sp32): ...this and use CCmode for the carry.
2322         (subx_extend_sp32): Use CCCmode for the carry.
2323         (subx_extend_sp64): Delete.
2324         (subdi3_extend_sp32): Use CCmode for the carry.
2325         (cmp_minus patterns): Use CCNZ/CCXNZ mode and add C variants.
2326         (negdi3): Call gen_negdi3_sp32.
2327         (negdi3_sp32): Use CCCmode for the carry.
2328         (cmp_neg patterns): Use CCNZ/CCXNZ mode and add C variants.
2329         (cmp_nz_ashift_1): Use CCNZ mode.
2330         (cmp_nz_set_ashift_1): Likewise.
2331         (ctrapsi4): Use comparison_operator predicate.
2332         (ctrapdi4): Likewise.
2333         (trapsi_insn): Use icc_comparison_operator predicate.
2334         (trapdi_insn): Likewise.
2335         (edge8 patterns): Use CCNZmode.
2336         (edge16 patterns): Likewise.
2337         (edge32 patterns): Likewise.
2339 2016-10-11  Eric Botcazou  <ebotcazou@adacore.com>
2341         * config/visium/visium-modes.def (CC_NOOV): Rename into...
2342         (CCNZ): ...this.
2343         (CC_BTST): Rename into...
2344         (CCC): ...this.
2345         * config/visium/predicates.md (real_add_operand): New.
2346         (visium_btst_operator): Rename into...
2347         (visium_equality_comparison_operator): ...this.
2348         (visium_noov_operator): Rename into...
2349         (visium_nz_comparison_operator): ...this.
2350         (visium_c_comparison_operator): New.
2351         (visium_branch_operator): Adjust and deal with all CC modes.
2352         * config/visium/visium.c (visium_adjust_cost): Adjust.
2353         (visium_split_double_add): Use the *_set_carry patterns.
2354         (visium_select_cc_mode): Add support for CCC mode and adjust.
2355         (output_cbranch): Adjust and use the carry-based operators for
2356         floating-point comparisons.
2357         * config/visium/visium.md (flags_subst_arith): Adjust.
2358         (addsi3_insn_set_carry): New instruction.
2359         (subsi3_insn_set_carry): Likewise.
2360         (negsi2_insn_set_carry): Likewise.
2361         (btst): Adjust.
2362         (cmp<mode>_sne): Likewise.
2363         (cbranch<mode>4): Use ordered_comparison_operator.
2364         (cbranch<mode>4_insn): Likewise.
2365         (cbranchsi4_btst_insn): Adjust.
2367 2016-10-11  Tom de Vries  <tom@codesourcery.com>
2369         PR middle-end/77558
2370         * builtins.c (std_canonical_va_list_type): Remove RECORD_TYPE
2371         special-casing.
2373 2016-10-11  Eric Botcazou  <ebotcazou@adacore.com>
2375         * tree.h (build_complex_type): Add second parameter with default.
2376         * tree.c (build_complex_type): Add NAMED second parameter and adjust
2377         recursive call.  Create a TYPE_DECL only if NAMED is true.
2378         (build_common_tree_nodes): Pass true in calls to build_complex_type.
2380 2016-10-11  Georg-Johann Lay  <avr@gjlay.de>
2382         New avr-passes.def to register AVR specific passes.
2384         * config/avr/avr-passes.def: New file.
2385         * config/avr/t-avr (PASSES_EXTRA): Add avr-passes.def.
2386         * config/avr/avr-protos.h (gcc::context, rtl_opt_pass): Declare.
2387         (make_avr_pass_recompute_note): New proto.
2388         * config/avr/avr.c (make_avr_pass_recompute_notes): New function.
2389         (avr_pass_recompute_notes): Use anonymous namespace.
2390         (avr_register_passes): Remove function...
2391         (avr_option_override): ...and its call.
2393 2016-10-11  Robert Suchanek  <robert.suchanek@imgtec.com>
2395         * config/mips/mips-cpus.def: Replace PTF_AVOID_BRANCHLIKELY with
2396         PTF_AVOID_BRANCHLIKELY_ALWAYS for generic architecture and with
2397         PTF_AVOID_BRANCHLIKELY_SPEED for others.
2398         (mips2, mips3, mips4): Add PTF_AVOID_BRANCHLIKELY_SIZE to tune
2399         flags.
2400         * config/mips/mips.c (mips_option_override): Enable the branch
2401         likely depending on the tune flags and optimization level.
2402         * config/mips/mips.h (PTF_AVOID_BRANCHLIKELY): Remove.
2403         (PTF_AVOID_BRANCHLIKELY_SPEED): Define.
2404         (PTF_AVOID_BRANCHLIKELY_SIZE): Likewise.
2405         (PTF_AVOID_BRANCHLIKELY_ALWAYS): Likewise.
2407 2016-10-11  Richard Biener  <rguenther@suse.de>
2409         * lto-streamer-out.c (collect_block_tree_leafs): New helper.
2410         (output_function): Properly stream the whole block tree.
2411         * lto-streamer-in.c (input_function): Likewise.
2413 2016-10-11  Marek Polacek  <polacek@redhat.com>
2415         * Makefile.in (C_COMMON_OBJS): Add c-family/c-warn.o.
2417 2016-10-11  Kugan Vivekanandarajah  <kuganv@linaro.org>
2419         * tree-vrp.c (evrp_dom_walker::try_add_new_range): New.
2420         (evrp_dom_walker::before_dom_children): Infer and push new value
2421         ranges for x in y < x.
2423 2016-10-10  Joseph Myers  <joseph@codesourcery.com>
2425         PR target/77586
2426         * config/ia64/ia64.c (ia64_libgcc_floating_mode_supported_p)
2427         (TARGET_LIBGCC_FLOATING_MODE_SUPPORTED_P): Remove.
2428         * config/ia64/elf.h (IA64_NO_LIBGCC_TFMODE): Likewise.
2429         * config/ia64/freebsd.h (IA64_NO_LIBGCC_TFMODE): Likewise.
2430         * config/ia64/vms.h (IA64_NO_LIBGCC_XFMODE)
2431         (IA64_NO_LIBGCC_TFMODE): Likewise.
2433 2016-10-11  Kugan Vivekanandarajah  <kuganv@linaro.org>
2435         * tree-vrp.c (vrp_intersect_ranges_1): Allocate bitmap before
2436           copying.
2438 2016-10-10  Andreas Tobler  <andreast@gcc.gnu.org>
2440         * config.gcc: Add aarch64-*-freebsd* support.
2441         * config.host: Likewise.
2442         * config/aarch64/aarch64-freebsd.h: New file.
2443         * config/aarch64/t-aarch64-freebsd: Ditto.
2445 2016-10-10  Jeff Law  <law@redhat.com>
2447         PR tree-optimization/71947
2448         * tree-ssa-dom.c (cprop_into_stmt): Avoid replacing A with B, then
2449         B with A within a single statement.
2451 2016-10-10  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
2453         PR tree-optimization/77824
2454         * gimple-ssa-strength-reduction.c (stmt_cost): Explicitly return
2455         zero cost for copies.
2456         (find_candidates_dom_walker::before_dom_children): Replace
2457         MODIFY_EXPR with SSA_NAME.
2458         (replace_mult_candidate): Likewise.
2459         (replace_profitable_candidates): Likewise.
2461 2016-10-10  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
2463         * config/s390/s390.h: Wrap more macros args in brackets and fix
2465 2016-10-10  Georg-Johann Lay  <avr@gjlay.de>
2467         * config/avr/gen-avr-mmcu-texi.c (string.h): Include.
2469 2016-10-10  Andreas Schwab  <schwab@suse.de>
2471         PR target/77738
2472         * config/ia64/ia64.md ("doloop_end"): Reject if mode of loop
2473         pseudo is not DImode.
2475 2016-10-10  Claudiu Zissulescu  <claziss@synopsys.com>
2477         * common/config/arc/arc-common.c (arc_option_optimization_table):
2478         Remove compact casesi option.
2479         * config/arc/arc.c (arc_override_options): Use compact casesi
2480         option only for pre-ARCv2 cores.
2481         * doc/invoke.texi (mcompact-casesi): Update text.
2483 2016-10-09  Aaron Sawdey  <acsawdey@linux.vnet.ibm.com>
2485         * config/rs6000/rs6000.h (TARGET_EFFICIENT_OVERLAPPING_UNALIGNED):
2486         Add macro to say we can efficiently handle overlapping unaligned
2487         loads.
2488         * config/rs6000/rs6000.c (expand_block_compare): Avoid generating
2489         poor code for processors older than p8.
2491 2016-10-09  Eric Botcazou  <ebotcazou@adacore.com>
2493         * gen-pass-instances.awk: Remove GNUism.
2495 2016-10-09  Prathamesh Kulkarni  <prathamesh.kulkarni@linaro.org>
2497         * ipa-prop.c (ipcp_transform_function): Set fields m_vr and bits to
2498         NULL of (*ipcp_transformations)][node->uid].
2500 2016-10-09  John David Anglin  <danglin@gcc.gnu.org>
2502         * config/pa/pa.h (BIGGEST_ALIGNMENT): Adjust comment.
2503         (MALLOC_ABI_ALIGNMENT): Define.
2505 2016-10-09  Jakub Jelinek  <jakub@redhat.com>
2507         * tree-ssa.c (target_for_debug_bind, verify_phi_args,
2508         ssa_undefined_value_p, maybe_optimize_var): Use VAR_P and/or
2509         VAR_OR_FUNCTION_DECL_P macros.
2510         * tree-chkp.c (chkp_register_var_initializer, chkp_make_static_bounds,
2511         chkp_get_bounds_for_decl_addr, chkp_parse_array_and_component_ref,
2512         chkp_find_bounds_1): Likewise.
2513         * ipa-polymorphic-call.c (decl_maybe_in_construction_p): Likewise.
2514         * hsa-gen.c (get_symbol_for_decl): Likewise.
2515         * cgraphunit.c (check_global_declaration, analyze_functions,
2516         handle_alias_pairs, thunk_adjust, cgraph_node::expand_thunk):
2517         Likewise.
2518         * gimple-fold.c (can_refer_decl_in_current_unit_p,
2519         canonicalize_constructor_val, gimple_get_virt_method_for_vtable):
2520         Likewise.
2521         * tree.c (set_decl_section_name, copy_node_stat,
2522         need_assembler_name_p, free_lang_data_in_decl, find_decls_types_r,
2523         merge_dllimport_decl_attributes, handle_dll_attribute,
2524         decl_init_priority_insert, auto_var_in_fn_p, array_at_struct_end_p,
2525         verify_type): Likewise.
2526         * gimple-ssa-isolate-paths.c (find_implicit_erroneous_behavior,
2527         find_explicit_erroneous_behavior): Likewise.
2528         * sdbout.c (sdbout_toplevel_data, sdbout_late_global_decl): Likewise.
2529         * ipa.c (process_references): Likewise.
2530         * tree-chkp-opt.c (chkp_get_check_result): Likewise.
2531         * varasm.c (get_block_for_decl, use_blocks_for_decl_p, make_decl_rtl,
2532         notice_global_symbol, assemble_variable, mark_decl_referenced,
2533         build_constant_desc, output_constant_def_contents, do_assemble_alias,
2534         make_decl_one_only, default_section_type_flags,
2535         categorize_decl_for_section, default_encode_section_info): Likewise.
2536         * trans-mem.c (requires_barrier): Likewise.
2537         * gimple-expr.c (mark_addressable): Likewise.
2538         * cfgexpand.c (add_scope_conflicts_1, expand_one_var,
2539         expand_used_vars_for_block, clear_tree_used, stack_protect_decl_p,
2540         expand_debug_expr): Likewise.
2541         * tree-dump.c (dequeue_and_dump): Likewise.
2542         * ubsan.c (instrument_bool_enum_load): Likewise.
2543         * tree-pretty-print.c (print_declaration): Likewise.
2544         * simplify-rtx.c (delegitimize_mem_from_attrs): Likewise.
2545         * tree-ssa-uninit.c (warn_uninitialized_vars): Likewise.
2546         * asan.c (asan_protect_global, instrument_derefs): Likewise.
2547         * tree-into-ssa.c (rewrite_stmt, maybe_register_def,
2548         pass_build_ssa::execute): Likewise.
2549         * var-tracking.c (var_debug_decl, track_expr_p): Likewise.
2550         * tree-ssa-loop-ivopts.c (force_expr_to_var_cost, split_address_cost):
2551         Likewise.
2552         * ipa-split.c (test_nonssa_use, consider_split, mark_nonssa_use):
2553         Likewise.
2554         * tree-inline.c (insert_debug_decl_map, remap_ssa_name,
2555         can_be_nonlocal, remap_decls, copy_debug_stmt,
2556         initialize_inlined_parameters, add_local_variables,
2557         reset_debug_binding, replace_locals_op): Likewise.
2558         * dse.c (can_escape): Likewise.
2559         * ipa-devirt.c (compare_virtual_tables, referenced_from_vtable_p):
2560         Likewise.
2561         * tree-diagnostic.c (default_tree_printer): Likewise.
2562         * tree-streamer-in.c (unpack_ts_decl_common_value_fields,
2563         unpack_ts_decl_with_vis_value_fields,
2564         lto_input_ts_decl_common_tree_pointers): Likewise.
2565         * builtins.c (builtin_save_expr, fold_builtin_expect,
2566         readonly_data_expr): Likewise.
2567         * tree-ssa-structalias.c (new_var_info, get_constraint_for_ssa_var,
2568         create_variable_info_for, set_uids_in_ptset, visit_loadstore):
2569         Likewise.
2570         * gimple-streamer-out.c (output_gimple_stmt): Likewise.
2571         * gimplify.c (force_constant_size, gimplify_bind_expr,
2572         gimplify_decl_expr, gimplify_var_or_parm_decl,
2573         gimplify_compound_lval, gimplify_init_constructor,
2574         gimplify_modify_expr, gimplify_asm_expr, gimplify_oacc_declare,
2575         gimplify_type_sizes): Likewise.
2576         * cgraphbuild.c (record_reference, record_type_list, mark_address,
2577         mark_load, mark_store, pass_build_cgraph_edges::execute): Likewise.
2578         * tree-ssa-live.c (mark_all_vars_used_1, remove_unused_scope_block_p,
2579         remove_unused_locals): Likewise.
2580         * tree-ssa-alias.c (ptr_deref_may_alias_decl_p, ptrs_compare_unequal,
2581         ref_maybe_used_by_call_p_1, call_may_clobber_ref_p_1): Likewise.
2582         * function.c (instantiate_expr, instantiate_decls_1,
2583         setjmp_vars_warning, add_local_decl): Likewise.
2584         * alias.c (ao_ref_from_mem, get_alias_set, compare_base_symbol_refs):
2585         Likewise.
2586         * tree-stdarg.c (find_va_list_reference, va_list_counter_struct_op,
2587         va_list_ptr_read, va_list_ptr_write, check_all_va_list_escapes,
2588         optimize_va_list_gpr_fpr_size): Likewise.
2589         * tree-nrv.c (pass_nrv::execute): Likewise.
2590         * tsan.c (instrument_expr): Likewise.
2591         * tree-ssa-dce.c (remove_dead_stmt): Likewise.
2592         * vtable-verify.c (verify_bb_vtables): Likewise.
2593         * tree-dfa.c (ssa_default_def, set_ssa_default_def,
2594         get_ref_base_and_extent): Likewise.
2595         * toplev.c (wrapup_global_declaration_1, wrapup_global_declaration_2):
2596         Likewise.
2597         * tree-sra.c (static bool constant_decl_p, find_var_candidates,
2598         analyze_all_variable_accesses): Likewise.
2599         * tree-nested.c (get_nonlocal_debug_decl,
2600         convert_nonlocal_omp_clauses, note_nonlocal_vla_type,
2601         note_nonlocal_block_vlas, convert_nonlocal_reference_stmt,
2602         get_local_debug_decl, convert_local_omp_clauses,
2603         convert_local_reference_stmt, nesting_copy_decl, remap_vla_decls):
2604         Likewise.
2605         * tree-vect-data-refs.c (vect_can_force_dr_alignment_p): Likewise.
2606         * stmt.c (decl_overlaps_hard_reg_set_p): Likewise.
2607         * dbxout.c (dbxout_late_global_decl, dbxout_type_fields,
2608         dbxout_symbol, dbxout_common_check): Likewise.
2609         * expr.c (expand_assignment, expand_expr_real_2, expand_expr_real_1,
2610         string_constant): Likewise.
2611         * hsa.c (hsa_get_declaration_name): Likewise.
2612         * passes.c (rest_of_decl_compilation): Likewise.
2613         * tree-ssanames.c (make_ssa_name_fn): Likewise.
2614         * tree-streamer-out.c (pack_ts_decl_common_value_fields,
2615         pack_ts_decl_with_vis_value_fields,
2616         write_ts_decl_common_tree_pointers): Likewise.
2617         * stor-layout.c (place_field): Likewise.
2618         * symtab.c (symtab_node::maybe_create_reference,
2619         symtab_node::verify_base, symtab_node::make_decl_local,
2620         symtab_node::copy_visibility_from,
2621         symtab_node::can_increase_alignment_p): Likewise.
2622         * dwarf2out.c (add_var_loc_to_decl, tls_mem_loc_descriptor,
2623         decl_by_reference_p, reference_to_unused, rtl_for_decl_location,
2624         fortran_common, add_location_or_const_value_attribute,
2625         add_scalar_info, add_linkage_name, set_block_abstract_flags,
2626         local_function_static, gen_variable_die, dwarf2out_late_global_decl,
2627         optimize_one_addr_into_implicit_ptr,
2628         optimize_location_into_implicit_ptr): Likewise.
2629         * gimple-low.c (record_vars_into): Likewise.
2630         * ipa-visibility.c (update_vtable_references): Likewise.
2631         * tree-ssa-address.c (fixed_address_object_p, copy_ref_info):
2632         Likewise.
2633         * lto-streamer-out.c (tree_is_indexable, get_symbol_initial_value,
2634         DFS::DFS_write_tree_body, write_symbol): Likewise.
2635         * langhooks.c (lhd_warn_unused_global_decl,
2636         lhd_set_decl_assembler_name): Likewise.
2637         * attribs.c (decl_attributes): Likewise.
2638         * except.c (output_ttype): Likewise.
2639         * varpool.c (varpool_node::get_create, ctor_for_folding,
2640         varpool_node::assemble_decl, varpool_node::create_alias): Likewise.
2641         * fold-const.c (fold_unary_loc): Likewise.
2642         * ipa-prop.c (ipa_compute_jump_functions_for_edge,
2643         ipa_find_agg_cst_from_init): Likewise.
2644         * omp-low.c (expand_omp_regimplify_p, expand_omp_taskreg,
2645         expand_omp_target, lower_omp_regimplify_p,
2646         grid_reg_assignment_to_local_var_p, grid_remap_prebody_decls,
2647         find_link_var_op): Likewise.
2648         * tree-chrec.c (chrec_contains_symbols): Likewise.
2649         * tree-cfg.c (verify_address, verify_expr, verify_expr_location_1,
2650         gimple_duplicate_bb, move_stmt_op, replace_block_vars_by_duplicates,
2651         execute_fixup_cfg): Likewise.
2653         PR tree-optimization/77901
2654         * tree-ssa-reassoc.c (optimize_range_tests_var_bound): Only optimize
2655         if ranges[i].exp is SSA_NAME when looking for >= and only when
2656         ranges[i].exp is NULL or SSA_NAME when looking for the other
2657         comparison.
2659 2016-10-09  Prathamesh Kulkarni  <prathamesh.kulkarni@linaro.org>
2661         * ipa-cp.c (ipcp_alignment_lattice): Remove.
2662         (ipcp_param_lattices): Remove field alignment.
2663         (print_all_lattices): Remove call to ipcp_alignment_lattice::print.
2664         (set_all_contains_variable): Remove call to
2665         ipcp_alignment_lattice::set_to_bottom.
2666         (initialize_node_lattices): Likewise.
2667         (propagate_alignment_accross_jump_function): Remove.
2668         (propagate_constants_accross_call): Remove call to
2669         propagate_alignment_accross_jump_function.
2670         (ipcp_store_alignment_results): Remove.
2671         (ipcp_driver): Remove call to ipcp_store_alignment_results.
2672         (propagate_bits_accross_jump_function): Handle ancestor jump function.
2673         * ipa-prop.c (ipa_print_node_jump_functions_for_edge): Remove
2674         pretty-printing of alignment jump function.
2675         (ipa_set_jf_unknown): Remove assignment to jfunc->alignment.known.
2676         (ipa_compute_jump_functions_for_edge): Adjust ipa_bits jump function for
2677         alignments and remove computing ipa_alignment jump function.
2678         (ipa_node_params_t::duplicate): Remove copying of src_trans->alignments.
2679         (ipa_write_jump_functions): Remove streaming for ipa_alignment.
2680         (ipa_read_jump_function): Remove reading of ipa_alignment.
2681         (write_ipcp_transformation_info): Remove streaming for alignment
2682         propagation summary.
2683         (read_ipcp_transformation_info): Remove reading of alignment
2684         propagation summary.
2685         (ipcp_update_alignments): Remove.
2686         (ipcp_update_bits): Adjust to set alignment for parameters of pointer
2687         type.
2688         (ipcp_transform_function): Remove call to ipcp_update_alignments()
2689         and remove assignment to (*ipcp_transformations)[node->uid].alignments.
2690         * ipa-prop.h (ipa_alignment): Remove.
2691         (ipa_jump_func): Remove field alignment.
2692         (ipcp_transformation_summary): Remove field alignments.
2693         * doc/invoke.texi: Mark fipa-cp-alignment as obsolete.
2694         * opts.c (default_options_table): Remove entry for fipa-cp-alignment.
2695         (enable_fdo_optimizations): Remove checking for fipa-cp-alignment.
2697 2016-10-08  Eric Botcazou  <ebotcazou@adacore.com>
2699         * config/sparc/sparc.h (FIXED_REGISTERS): Add %icc.
2701         * config/visium/visium.c (visium_expand_int_cstore): Revert latest
2702         change.
2703         (visium_expand_fp_cstore): Likewise.
2705 2016-10-08  Prathamesh Kulkarni  <prathamesh.kulkarni@linaro.org>
2707         * diagnostic-core.h (warning_at_rich_loc_n): Declare.
2708         * diagnostic.c (warning_at_rich_loc_n): New function.
2709         (diagnostic_n_impl_richloc): Likewise.
2710         (diagnostic_n_impl): Move most of the function to
2711         diagnostic_n_impl_richloc and call it.
2713 2016-10-08  Jakub Jelinek  <jakub@redhat.com>
2715         * gen-pass-instances.awk: Rewritten.
2716         * Makefile.in (pass-instances.def): Depend on $(PASSES_EXTRA), pass
2717         $(PASSES_EXTRA) after passes.def to the script.
2718         * config/i386/t-i386 (PASSES_EXTRA): Add i386-passes.def.
2719         * config/i386/i386-passes.def: New file.
2720         * config/i386/i386-protos.h (make_pass_insert_vzeroupper,
2721         make_pass_stv): Declare.
2722         * config/i386/i386.c (pass_stv::pass_stv): Initialize timode_p to
2723         false.
2724         (pass_stv::gate): Depending on timode_p member require TARGET_64BIT
2725         or !TARGET_64BIT.
2726         (pass_stv::clone, pass_stv::set_pass_param): New methods.
2727         (pass_stv::timode_p): New non-static data member.
2728         (ix86_option_override): Don't register passes here.
2730         * doc/invoke.texi: Document accepting Else, fallthrough.
2732         * doc/invoke.texi (-Wimplicit-fallthrough): Document FALLTHRU comment
2733         style changes.
2735         * doc/invoke.texi (-Wimplicit-fallthrough): Document the accepted
2736         FALLTHRU comment styles.
2738 2016-10-07  Andrew Pinski  <apinski@cavium.com>
2740         * config/aarch64/aarch64-arches.def (AARCH64_ARCH): #undef at the end.
2741         * config/aarch64/aarch64-cores.def (AARCH64_CORE): Likewise.
2742         * config/aarch64/aarch64-fusion-pairs.def (AARCH64_FUSION_PAIR):
2743         Likewise.
2744         * config/aarch64/aarch64-option-extensions.def (AARCH64_OPT_EXTENSION):
2745         Likewise.
2746         * config/aarch64/aarch64-tuning-flags.def (AARCH64_EXTRA_TUNING_OPTION):
2747         Likewise.
2748         * config/aarch64/aarch64-opts.h (AARCH64_CORE): Don't #undef here.
2749         (AARCH64_ARCH): Likewise.
2750         * common/config/aarch64/aarch64-common.c (AARCH64_OPT_EXTENSION):
2751         Likewise.
2752         (AARCH64_CORE): Likewise.
2753         (AARCH64_ARCH): Likewise.
2754         * config/aarch64/aarch64-protos.h (AARCH64_FUSION_PAIR): Likewise.
2755         (AARCH64_EXTRA_TUNING_OPTION): Likewise.
2756         * config/aarch64/aarch64.c (AARCH64_FUION_PAIR): Likewise.
2757         (AARCH64_EXTRA_TUNING_OPTION): Likewise.
2758         (AARCH64_ARCH): Likewise.
2759         (AARCH64_CORE): Likewise.
2760         * config/aarch64/aarch64.h (AARCH64_CORE): Likewise.
2761         * config/aarch64/driver-aarch64.c (AARCH64_OPT_EXTENSION): Likewise.
2762         (AARCH64_CORE): Likewise.
2763         (AARCH64_ARCH): Likewise.
2765 2016-10-06  Michael Meissner  <meissner@linux.vnet.ibm.com>
2767         * config/rs6000/rs6000-c.c (rs6000_cpu_cpp_builtins): Split
2768         -mfloat128 into -mfloat128-type that enables the IEEE 128-bit
2769         floating point type infrastructre, and -mfloat128 that enables the
2770         keyword.  Define __FLOAT128__ if -mfloat128, and __FLOAT128_TYPE__
2771         if -mfloat128-type.  Define __ibm128 to be long double by default.
2772         * config/rs6000/rs6000.c (rs6000_debug_reg_global): Print whether
2773         the IEEE 128-bit floating point type infrastructure should
2774         automatically be enabled.
2775         (rs6000_init_hard_regno_mode_ok): Switch to use -mfloat128-type
2776         instead of -mfloat128 to enable KFmode.
2777         (rs6000_option_override_internal): Split the option -mfloat128
2778         into -mfloat128-type and -mfloat128.  On Linux PowerPC 64-bit
2779         systems, automatically set -mfloat128-type, but don't enable it on
2780         other operating systems.  Move setting the long double size and
2781         IEEE quad support before the IEEE 128-bit floating point changes.
2782         (rs6000_init_builtins): Do not create a unique type for __ibm128
2783         if long double is IBM extended double, instead rely on __ibm128
2784         being defined as 'long double'.  If -mfloat128-type and not
2785         -mfloat128, create the KFmode type with an undocumented __ieee128
2786         keyword.
2787         (rs6000_init_libfuncs): Use -mfloat128-type instead of
2788         -mfloat128 for tests about the types, but keep tests for
2789         -mfloat128 to enable the keyword support.
2790         (rs6000_complex_function_value): Likewise.
2791         (rs6000_scalar_mode_supported_p): Likewise.
2792         (rs6000_floatn_mode): Likewise.
2793         (rs6000_c_mode_for_suffix): Likewise.
2794         (rs6000_opt_masks): Add -mfloat128-type.
2795         * config/rs6000/rs6000-cpus.def (POWERPC_MASKS): Add support for
2796         -mfloat128-type being split from -mfloat128.  Add
2797         -mfloat128-hardware, which was missing.
2798         * config/rs6000/rs6000.opt (-mfloat128): Split -mfloat128 into
2799         -mfloat128 and -mfloat128-type:
2800         (-mfloat128-type): Likewise.
2801         * config/rs6000/linux64.h (TARGET_FLOAT128_ENABLE_TYPE): Define so
2802         that 64-bit Linux systems with enable -mfloat128-type by default
2803         on VSX systems.
2804         * config/rs6000/rs6000.h (TARGET_FLOAT128_ENABLE_TYPE): Likewise.
2805         (FLOAT128_VECTOR_P): Switch IEEE 128-bit floating points to use
2806         -mfloat128-type instead of -mfloat128.
2807         (FLOAT128_2REG_P): Likewise.
2808         (MASK_FLOAT128_TYPE): Likewise.
2809         (ALTIVEC_ARG_MAX_RETURN): Likewise.
2810         (RS6000_BTM_FLOAT128): Likewise.
2811         (TARGET_FLOAT128): Poison old identifiers.
2812         (OPTION_MASK_FLOAT128): Likewise.
2813         (MASK_FLOAT128): Likewise.
2814         * config/rs6000/rs6000.md (FP): Likewise.
2815         (FLOAT128): Likewise.
2816         (fix_trunc<mode>di2): Likewise.
2817         (fixuns_trunc<IEEE128:mode><SDI:mode>2): Likewise.
2818         (floatdi<mode>2): Likewise.
2819         (floatuns<SDI:mode><IEEE128:mode>2): Likewise.
2820         (neg<mode>2, FLOAT128 iterator): Likewise.
2821         (abs<mode>2, FLOAT128 iterator): Likewise.
2822         (ieee_128bit_negative_zero): Likewise.
2823         (ieee_128bit_vsx_neg<mode>2): Likewise.
2824         (ieee_128bit_vsx_neg<mode>2_internal): Likewise.
2825         (ieee_128bit_vsx_abs<mode>2): Likewise.
2826         (ieee_128bit_vsx_abs<mode>2_internal): Likewise.
2827         (ieee_128bit_vsx_nabs<mode>2): Likewise.
2828         (ieee_128bit_vsx_nabs<mode>2_internal): Likewise.
2829         (extendiftf2): Likewise.
2830         (extendifkf2): Likewise.
2831         (extendtfkf2): Likewise.
2832         (trunciftf2): Likewise.
2833         (truncifkf2): Likewise.
2834         (trunckftf2): Likewise.
2835         (trunctfif2): Likewise.
2836         (extendkftf2): Likewise.
2837         (trunctfkf2): Likewise.
2839 2016-10-07  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
2841         * simplify-rtx.c (simplify_immed_subreg): Zero-initialize tmp array
2842         before merging in bytes to pass down to real_from_target.
2844 2016-10-07  Richard Biener  <rguenther@suse.de>
2846         * tree-ssa-propagate.c (replace_phi_args_in): Remove no longer
2847         required hack.
2848         (substitute_and_fold_dom_walker::before_dom_children):
2849         Substitute and fold before pass specific folding to avoid
2850         feeding that with SSA names that will be later released.
2851         * tree-ssa-ccp.c (get_value_for_expr): Guard for new SSA names
2852         introduced by folding and visited by evaluate_stmt called during
2853         ccp_fold_stmt.
2854         (likely_value): Likewise.
2855         (evaluate_stmt): Likewise.
2856         * tree-vrp.c (simplify_truth_ops_using_ranges): Fold modified stmt.
2857         (simplify_div_or_mod_using_ranges): Likewise.
2858         (simplify_min_or_max_using_ranges): Likewise.
2859         (simplify_abs_using_ranges): Likewise.
2860         (simplify_conversion_using_ranges): Likewise.
2861         (simplify_float_conversion_using_ranges): Likewise.
2862         (simplify_stmt_using_ranges): Likewise.
2864 2016-10-07  Marek Polacek  <polacek@redhat.com>
2866         * gimplify.c (should_warn_for_implicit_fallthrough): Check for
2867         FALLTHROUGH_LABEL_P here...
2868         (warn_implicit_fallthrough_r): ...not here.
2870 2016-10-07  Bernd Schmidt  <bschmidt@redhat.com>
2872         PR tree-optimization/77880
2873         * expr.c (by_pieces_ninsns): Use unsigned HOST_WIDE_INT where
2874         necessary.
2876 2016-10-07  Marek Polacek  <polacek@redhat.com>
2878         PR c++/77803
2879         * gimplify.c (last_stmt_in_scope): Add check for FALLTHROUGH ().
2881 2016-10-07  Richard Biener  <rguenther@suse.de>
2883         * bitmap.h: Document constraints on bitmap modification while
2884         iterating over it.
2886 2016-10-07  Richard Biener  <rguenther@suse.de>
2888         * bitmap.c (bitmap_elem_to_freelist): Set indx to -1.
2889         * bitmap.h (bmp_iter_set): When advancing to the next element
2890         check that we didn't remove the current one.
2891         (bmp_iter_and): Likewise.
2892         (bmp_iter_and_compl): Likewise.
2893         * tree-ssa.c (release_defs_bitset): Do not remove worklist bit
2894         we currently iterate on but keep a one-level queue.
2895         * sched-deps.c (remove_from_deps): Do not clear current bit
2896         but keep a one-level queue.
2898 2016-10-07  Jakub Jelinek  <jakub@redhat.com>
2900         PR tree-optimization/77664
2901         * tree-ssa-reassoc.c (update_range_test): Also clear low and high
2902         for the other ranges.
2903         (optimize_range_tests_diff): Fix up formatting.
2904         (optimize_range_tests_var_bound): New function.
2905         (optimize_range_tests): Use it.
2907 2016-10-07  Martin Liska  <mliska@suse.cz>
2909         * coverage.c (build_gcov_exit_decl): Fix priority what
2910         should be really 99.
2912 2016-10-07  Richard Biener  <rguenther@suse.de>
2914         * gimple-low.c (lower_gimple_bind): Clear DECL_CHAIN of
2915         vars in gimple_bind_vars but not in BLOCK_VARS.
2917 2016-10-07  Richard Biener  <rguenther@suse.de>
2919         PR tree-optimization/77879
2920         * tree-ssa-structalias.c (handle_const_call): Properly handle
2921         NRV return slots.
2922         (handle_pure_call): Likewise.
2924 2016-10-06  Aaron Sawdey  <acsawdey@linux.vnet.ibm.com>
2926         * config/rs6000/rs6000.c (rs6000_elf_asm_out_constructor)
2927         (rs6000_elf_asm_out_destructor): increase size of buf to avoid
2928         possible overflow.
2930 2016-10-06  Andrew Pinski  <apinski@cavium.com>
2932         * config/aarch64/aarch64-cores.def: Add a comment before each
2933         set of cores.
2935 2016-10-06  Kugan Vivekanandarajah  <kuganv@linaro.org>
2937         PR tree-optimization/77862
2938         * tree-vrp.c (add_equivalence): Use get_value_range so that
2939         num_vr_values is checked before accessing vr_values.
2941 2016-10-06  Kugan Vivekanandarajah  <kuganv@linaro.org>
2943         * tree-vrp.c (evrp_dom_walker::before_dom_children): Handle
2944           POINTER_TYPE_P.
2946 2016-10-05  Jeff Law  <law@redhat.com>
2948         PR tree-optimization/71661
2949         * tree-cfgcleanup.c (remove_forwarder_block_with_phi): Handle case when
2950         removal of a forwarder exposes a new natural loop.
2952 2016-10-06  Uros Bizjak  <ubizjak@gmail.com>
2954         * config/i386/sse.md (andnot<mode>3): Add FALLTHRU comments.
2955         Introduce ssesuffix variable.
2956         (<mask_codefor><code><mode>3<mask_name>): Ditto.
2957         (*<code><mode>3): Ditto.
2959 2016-10-06  Jan Hubicka  <hubicka@ucw.cz>
2961         * postreload.c (reload_cse_simplify): Skip also USE when detecting
2962         noop move.
2964 2016-10-06  Richard Biener  <rguenther@suse.de>
2966         PR tree-optimization/77855
2967         * tree-ssa-pre.c (prune_clobbered_mems): Queue exprs to remove
2968         instead of removing the current item while iterating over the set
2969         which is not safe.
2971 2016-10-06  James Clarke  <jrtc27@jrtc27.com>
2972             Eric Botcazou  <ebotcazou@adacore.com>
2974         PR target/77759
2975         * config/sparc/sparc.c (classify_data_t): Remove int_regs field.
2976         (classify_registers): Don't set it
2977         (function_arg_slotno): Don't initialize and test it.  Tidy up.
2979 2016-10-06  Richard Biener  <rguenther@suse.de>
2981         PR tree-optimization/77839
2982         * tree-ssa-sccvn.c (set_ssa_val_to): Forbid value -> constant value
2983         lattice transition.
2985 2016-10-06  Martin Liska  <mliska@suse.cz>
2987         * gcc.c: Set -fprofile-update=atomic when profiling is
2988         enabled and -pthread is set.  Warn when one combines
2989         -pthread and -fprofile-update=single for an app using
2990         profiling code.
2992 2016-10-06  Martin Liska  <mliska@suse.cz>
2994         PR bootstrap/77788
2995         * expmed.h (mul_highpart_cost_ptr): Add an gcc_assert.
2996         * gimple-ssa-strength-reduction.c (slsr_process_cast):
2997         Initialize a pointer to NULL.
2998         (slsr_process_copy): Likewise.
2999         * input.c (location_get_source_line): Likewise.
3000         * tree-ssa-ccp.c (optimize_atomic_bit_test_and): Likewise.
3002 2016-10-05  Andrew Senkevich  <andrew.senkevich@intel.com>
3004         * common/config/i386/i386-common.c (OPTION_MASK_ISA_PCOMMIT_UNSET,
3005         OPTION_MASK_ISA_PCOMMIT_SET): Deleted definitions.
3006         (ix86_handle_option): Deleted handle of OPT_mpcommit.
3007         * config.gcc: Deleted pcommitintrin.h
3008         * config/i386/pcommitintrin.h: Deleted file.
3009         * config/i386/cpuid.h (bit_PCOMMIT): Deleted.
3010         * config/i386/driver-i386.c (host_detect_local_cpu): Deleted pcommit
3011         detection.
3012         * config/i386/i386-c.c (ix86_target_macros_internal): Deleted define
3013         __PCOMMIT__.
3014         * config/i386/i386.c (ix86_target_string): Deleted -mpcommit.
3015         (PTA_PCOMMIT): Deleted define.
3016         (ix86_option_override_internal): Deleted handle of option.
3017         (ix86_valid_target_attribute_inner_p): Deleted pcommit.
3018         * config/i386/i386-builtin.def (IX86_BUILTIN_PCOMMIT,
3019         __builtin_ia32_pcommit): Deleted.
3020         * config/i386/i386.h (TARGET_PCOMMIT, TARGET_PCOMMIT_P): Deleted.
3021         * config/i386/i386.md (unspecv): Deleted UNSPECV_PCOMMIT.
3022         (pcommit): Deleted instruction.
3023         * config/i386/i386.opt: Mention -mpcommit deprecation.
3024         * config/i386/x86intrin.h: Deleted inclusion of pcommitintrin.h.
3026 2016-10-05  Uros Bizjak  <ubizjak@gmail.com>
3028         PR target/77874
3029         * config/i386/sse.md (<mask_codefor><code><mode>3<mask_name>):
3030         Remove wrong assert.
3031         (<floatsuffix>float<sseintvecmodelower><mode>2<mask_name><round_name>:
3032         Use <round_constraint> as operand 1 constraint.
3034 2016-10-05  Jakub Jelinek  <jakub@redhat.com>
3036         PR sanitizer/66343
3037         * ubsan.c (ubsan_create_data): Call initialize_sanitizer_builtins here.
3038         (ubsan_instrument_float_cast): And not here.
3040         PR sanitizer/66343
3041         * ubsan.c (ubsan_ids): New GTY(()) array.
3042         (ubsan_type_descriptor, ubsan_create_data): Use ubsan_ids
3043         instead of static local counters.
3045 2016-10-05  Martin Sebor  <msebor@redhat.com>
3047         PR bootstrap/77819
3048         * config/linux.h (TARGET_PRINTF_POINTER_FORMAT): Define macro.
3049         * config/linux.c (gnu_libc_printf_pointer_format): Remove.
3050         * targhooks.c [DEFAULT_LIBC == LIBC_UCLIBC) && SINGLE_LIBC]
3051         (default_printf_pointer_format): Define function.
3052         * targhooks.c (linux_printf_pointer_format): Define new function.
3053         * targhooks.h (linux_printf_pointer_format): Declare.
3054         (gnu_libc_printf_pointer_format): Remove declaration.
3056 2016-10-05  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
3058         * fold-const.c (native_encode_real): Fix logic for selecting offset
3059         to write to when BYTES_BIG_ENDIAN.
3061 2016-10-05  Wilco Dijkstra  <wdijkstr@arm.com>
3063         * builtins.c (fold_builtin_strchr): Remove function.
3064         (fold_builtin_strrchr): Likewise.
3065         (fold_builtin2): Remove strchr, index, strrchr, rindex cases.
3066         * gimple-fold.c (target_char_cst_p): New function.
3067         (gimple_fold_builtin_strchr) Add more foldings.
3068         (gimple_fold_builtin): Add index, strrchr, rindex cases.
3070 2016-10-05  Richard Biener  <rguenther@suse.de>
3072         PR middle-end/77863
3073         * genmatch.c (capture_info::walk_c_expr): Diagnose unknown
3074         capture ids in c-exprs.
3076 2016-10-05  Richard Biener  <rguenther@suse.de>
3078         PR middle-end/77826
3079         * genmatch.c (dt_operand::gen_match_op): Amend operand_equal_p
3080         with types_match for GIMPLE code gen to handle type mismatched
3081         constants properly.
3082         (dt_operand::gen): Adjust.
3083         * match.pd ((X /[ex] A) * A -> X): Properly handle converted
3084         and constant A.
3086 2016-10-05  Richard Biener  <rguenther@suse.de>
3088         * match.pd (copysign(x, CST) -> [-]abs (x)): New pattern.
3090 2016-10-05  Richard Biener  <rguenther@suse.de>
3092         PR middle-end/77842
3093         * genmatch.c (parser::parse_c_expr): Handle premature EOF.
3095 2016-10-05  Pierre-Marie de Rodat  <derodat@adacore.com>
3097         * dwarf2out.c (dwarf2out_imported_module_or_decl): Move DWARF
3098         version check to protect only DW_TAG_imported_module generation.
3100 2016-10-05  Richard Biener  <rguenther@suse.de>
3102         PR middle-end/55152
3103         * match.pd (min(a,-a) -> -abs(a)): New pattern.
3105 2016-10-04  Ian Lance Taylor  <iant@golang.org>
3107         * explow.c (allocate_dynamic_stack_space): Call
3108         do_pending_stack_adjust before handling flag_split_stack.
3110 2016-10-04  David Malcolm  <dmalcolm@redhat.com>
3112         * genattrtab.c (make_internal_attr): Supply dummy column number to
3113         file_location ctor.
3114         (main): Likewise.
3115         * genoutput.c (init_insn_for_nothing): Likewise.
3116         * gensupport.c (add_define_attr): Likewise.
3117         * read-md.c (message_at_1): Print column number.
3118         (fatal_with_file_and_line): Likewise.
3119         (rtx_reader::read_char): Track column numbers.
3120         (rtx_reader::unread_char): Likewise.
3121         (rtx_reader::rtx_reader): Initialize m_read_md_colno.
3122         (rtx_reader::handle_include): Stash and restore m_read_md_colno.
3123         (rtx_reader::handle_file): Initialize m_read_md_colno.
3124         (rtx_reader::get_current_location): Supply column number to
3125         file_location ctor.
3126         * read-md.h (struct file_location): Add field "colno".
3127         (file_location::file_location): Likewise.
3128         (rtx_reader::get_colno): New accessor.
3129         (rtx_reader::m_read_md_colno): New field.
3130         (rtx_reader::m_last_line_colno): New field.
3132 2016-10-04  Jakub Jelinek  <jakub@redhat.com>
3134         * doc/extend.texi (Java Exceptions): Remove.
3135         (java_interface): Remove.
3137 2016-10-04  Doug Gilmore  <doug.gilmore@imgtec.com>
3139         PR tree-optimization/77808
3140         * tree-ssa-loop-prefetch.c (issue_prefetch_ref): Check base_addr
3141         and addr are different before copying points-to information.
3143 2016-10-04  Uros Bizjak  <ubizjak@gmail.com>
3145         * config/i386/x86-tune.def (X86_TUNE_VECTORIZE_DOUBLE): Remove.
3146         * config/i386/i386.h (TARGET_VECTORIZE_DOUBLE): Remove.
3147         * config/i386/i386.c (ix86_add_stmt_cost): Use TARGET_BONNEL instead
3148         of !TARGET_VECTORIZE_DOUBLE when penalizing DFmode vector ops.
3150 2016-10-04  Richard Biener  <rguenther@suse.de>
3152         PR tree-optimization/77399
3153         * tree-ssa-forwprop.c (simplify_vector_constructor): Properly
3154         verify the target can convert.
3156 2016-10-04  Richard Biener  <rguenther@suse.de>
3158         PR middle-end/77833
3159         * explow.c (plus_constant): Verify the mode of the constant
3160         pool offset before calling plus_constant.
3162 2016-10-04  Richard Biener  <rguenther@suse.de>
3164         PR middle-end/77407
3165         * match.pd (X / abs (X) -> X < 0 ? -1 : 1): Drop vector
3166         type support, mark with :C.
3167         (X / -X -> -1): Mark with :C.
3169 2016-10-04  Jakub Jelinek  <jakub@redhat.com>
3171         * defaults.h (JCR_SECTION_NAME, TARGET_USE_JCR_SECTION): Remove.
3172         * system.h (JCR_SECTION_NAME, TARGET_USE_JCR_SECTION): Poison.
3173         * doc/tm.texi.in (TARGET_USE_JCR_SECTION): Remove.
3174         * doc/tm.texi: Regenerated.
3175         * config/i386/mingw32.h (TARGET_USE_JCR_SECTION): Remove.
3176         * config/i386/cygming.h (TARGET_USE_JCR_SECTION): Remove.
3177         * config/darwin.h (JCR_SECTION_NAME): Remove.
3178         * config/pa/pa64-hpux.h (JCR_SECTION_NAME): Remove.
3179         * config/rs6000/aix71.h (TARGET_USE_JCR_SECTION): Remove.
3180         * config/rs6000/aix51.h (TARGET_USE_JCR_SECTION): Remove.
3181         * config/rs6000/aix52.h (TARGET_USE_JCR_SECTION): Remove.
3182         * config/rs6000/aix53.h (TARGET_USE_JCR_SECTION): Remove.
3183         * config/rs6000/aix61.h (TARGET_USE_JCR_SECTION): Remove.
3185 2016-10-03  Prathamesh Kulkarni  <prathamesh.kulkarni@linaro.org>
3187         * ipa-cp.c (propagate_bits_accross_jump_function): Introduce space
3188         between "because" and "param" in dump message in call to fprintf.
3190 2016-10-03  Jeff Law  <law@redhat.com>
3192         PR tree-optimization/71550
3193         PR tree-optimization/71403
3194         * tree-ssa-threadbackward.c: Include tree-vectorizer.h
3195         (profitable_jump_thread_path): Also return boolean indicating if
3196         the realized path will create an irreducible loop.
3197         Remove loop depth tests from 71403.
3198         (fsm_find_control_statement_thread_paths): Remove loop depth tests
3199         from 71403.  If threading will create an irreducible loop, then
3200         throw away loop iteration and related information.
3202 2016-10-03  Uros Bizjak  <ubizjak@gmail.com>
3204         * configure.ac (strict_warn): Merge -Wmissing-format-attribute and
3205         -Woverloaded-virtual checks for warning options.
3206         * configure: Regenerate.
3208 2016-10-03  Bernd Edlinger  <bernd.edlinger@hotmail.de>
3210         PR preprocessor/77699
3211         * input.c (maybe_grow): Don't allocate one byte extra headroom.
3212         (get_next_line): Return false on error.
3213         (read_next_line): Removed, use get_next_line instead.
3214         (read_line_num): Don't copy the line.
3215         (location_get_source_line): Don't use static data.
3216         (selftest::test_reading_source_line): Add more test cases.
3218 2016-10-03  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
3220         Revert
3221         2016-09-30  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
3223         * ifcvt.c (noce_try_avoid_const_materialization): New function.
3224         (noce_process_if_block): Use it.
3226 2016-10-03  Bernd Edlinger  <bernd.edlinger@hotmail.de>
3228         * doc/invoke.texi: Update -Wint-in-bool-context.
3230 2016-10-02  Jakub Jelinek  <jakub@redhat.com>
3232         * dwarf2out.c (output_fde, output_call_frame_info,
3233         dwarf2out_do_cfi_startproc, set_indirect_string,
3234         gen_internal_sym, output_die, output_line_info): Use
3235         MAX_ARTIFICIAL_LABEL_BYTES as char array sizes for
3236         ASM_GENERATE_INTERNAL_LABEL output.
3238 2016-10-01  Richard Biener  <rguenther@suse.de>
3240         PR middle-end/77798
3241         * genmatch.c (get_operand_type): Add operand position arg
3242         and handle COND_EXPR comparison operand with fixed boolean_type_node.
3243         (expr::gen_transform): Adjust.
3244         (dt_simplify::gen_1): Likewise.
3246 2016-10-01  Jakub Jelinek  <jakub@redhat.com>
3248         * config/i386/sse.md (<mask_codefor><code><mode>): Add FALLTHRU
3249         comments.  Simplify asserts, remove unnecessary conditions.
3250         Formatting fixes.
3251         (*<code><mode>3): Likewise.
3253 2016-09-30  Jakub Jelinek  <jakub@redhat.com>
3255         * doc/invoke.texi (-Wregister): Document.
3257 2016-09-30  Bernd Edlinger  <bernd.edlinger@hotmail.de>
3259         * configure.ac: Split CHECKING_P into CHECKING_P and
3260         ENABLE_EXTRA_CHECKING.
3261         * configure: Regenerated.
3262         * config.in: Adjust commment of CHECKING_P.  Add ENABLE_EXTRA_CHECKING.
3263         * common.opt (flag_checking): Use CHECKING_P and ENABLE_EXTRA_CHECKING.
3265 2016-09-30  Prasad Ghangal  <prasad.ghangal@gmail.com>
3267         PR other/31566
3268         * gcc.c (process_command): For @filename handling, output
3269         the correct name if the file does not exist.
3271 2016-09-30  Marek Polacek  <polacek@redhat.com>
3273         * config/aarch64/aarch64-simd.md: Adjust fall through comments.
3274         * config/alpha/predicates.md: Likewise.
3276 2016-09-30  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
3278         * ifcvt.c (noce_try_avoid_const_materialization): New function.
3279         (noce_process_if_block): Use it.
3281 2016-09-30  Martin Liska  <mliska@suse.cz>
3283         * doc/invoke.texi: Document asan-use-after-return that
3284         it's disabled by default in runtime.
3286 2016-09-30  Richard Biener  <rguenther@suse.de>
3288         * tree-vrp.c (intersect_ranges): If we failed to handle
3289         the intersection choose a constant singleton range if available.
3291 2016-09-30  Richard Biener  <rguenther@suse.de>
3293         PR tree-optimization/77399
3294         * tree-ssa-forwprop.c (simplify_vector_constructor): Handle
3295         float <-> int conversions.
3297 2016-09-30  Alan Modra  <amodra@gmail.com>
3299         * config/rs6000/rs6000.c (rs6000_opt_vars): Revert last change.
3301 2016-09-29  Uros Bizjak  <ubizjak@gmail.com>
3303         * config/i386/driver-i386.c (host_detect_local_cpu): Check maximum
3304         ext_level before calling CPUID with 0x80000008.
3305         Simplify xgetbv checks.
3307 2016-09-29  David Malcolm  <dmalcolm@redhat.com>
3309         * Makefile.in (OBJS): Add print-rtl-function.o.
3310         * print-rtl-function.c: New file.
3311         * print-rtl.h (print_rtx_function): New decl.
3313 2016-09-29  Uros Bizjak  <ubizjak@gmail.com>
3315         PR target/77756
3316         * config/i386/cpuid.h (__get_cpuid_count): New.
3317         (__get_cpuid): Rename __level to __leaf.
3319 2016-09-29  Marek Polacek  <polacek@redhat.com>
3321         * genattrtab.c (write_attr_case): Also emit FALLTHRU marker.
3323 2016-09-29  Bernd Schmidt  <bschmidt@redhat.com>
3325         * builtins.c (expand_builtin_memcmp): don't swap args unless
3326         result is only being compared with zero.
3328 2016-09-29  Marek Polacek  <polacek@redhat.com>
3330         * dwarf2out.c (loc_descriptor): Add fall through comment.
3331         (add_const_value_attribute): Likewise.
3333 2016-09-29  Matthew Wahab  <matthew.wahab@arm.com>
3335         * config/arm/arm.md (*arm_movsi_insn): Replace "t2" arch attribute
3336         with "v6t2".  Move "arch" attribute above "pool_range".
3337         * config/arm/vfp.md (*arm_movhi_vfp): Replace "t2" arch attribute
3338         with "v6t2".
3339         (*thumb2_movhi_vfp): Likewise.
3340         (*arm_movhi_fp16): Likewise.
3341         (*thumb2_movhi_fp16): Likewise.
3342         (*arm_movsi_vfp): Remove "arch" attribute.
3343         (*thumb2_movsi_vfp): Likewise.
3345 2016-09-29  Martin Liska  <mliska@suse.cz>
3347         * doc/extend.texi: Remove limitation of Objective C for
3348         __attribute__((constructor)) and __attribute__((destructor)).
3350 2016-09-29  Richard Biener  <rguenther@suse.de>
3352         PR tree-optimization/77768
3353         * tree-ssa-pre.c (eliminate_dom_walker::before_dom_children):
3354         Handle stores to readonly memory when removing redundant stores.
3356 2016-09-29  Richard Biener  <rguenther@suse.de>
3358         PR middle-end/77407
3359         * match.pd: Add X / abs (X) -> X < 0 ? -1 : 1 and
3360         X / -X -> -1 simplifications.
3362 2016-09-29  Richard Biener  <rguenther@suse.de>
3364         PR middle-end/55152
3365         * match.pd: Add max(a,-a) -> abs(a) pattern.
3366         * tree-ssa-phiopt.c (minmax_replacement): Disable for
3367         HONOR_SIGNED_ZEROS types.
3369 2016-09-29  James Greenhalgh  <james.greenhalgh@arm.com>
3371         * defaults.h (TARGET_FLT_EVAL_METHOD_NON_DEFAULT): Remove.
3372         * system.h (TARGET_FLT_EVAL_METHOD_NON_DEFAULT): Poison.
3374 2016-09-29  Richard Biener  <rguenther@suse.de>
3376         * tree-vrp.c (set_defs_to_varying): New helper avoiding
3377         writing to vr_const_varying.
3378         (vrp_initialize): Call it.
3379         (vrp_visit_stmt): Likewise.
3380         (evrp_dom_walker::before_dom_children): Likewise.
3382 2016-09-29  Richard Biener  <rguenther@suse.de>
3384         * tree-vect-stmts.c (vectorizable_load): Avoid emitting vector
3385         constructors with vector elements.
3387 2016-09-29  Richard Biener  <rguenther@suse.de>
3389         PR tree-optimization/77768
3390         * tree-ssa-sccvn.c (visit_reference_op_store): Properly deal
3391         with stores to a place we know has a constant value.
3393 2016-09-29  Alan Modra  <amodra@gmail.com>
3395         * config/rs6000/sysv4.opt (mgnu-attribute): New option.
3396         * doc/invoke.texi: Document it.
3397         * config/rs6000/rs6000.c (HAVE_LD_PPC_GNU_ATTR_LONG_DOUBLE): Define.
3398         (rs6000_passes_float): Comment.
3399         (rs6000_passes_long_double): New static var.
3400         (call_ABI_of_interest): Return false unless rs6000_gnu_attr is set.
3401         (init_cumulative_args): Set up to emit fp .gnu_attribute for
3402         ELF 64-bit ABIs as well as 32-bit ELF.  Correct rs6000_passes_float
3403         to include fp values returned in vectors.
3404         Set rs6000_passes_long_double.
3405         (rs6000_function_arg_advance_1): Likewise for function args.
3406         (rs6000_elf_file_end): Emit fp .gnu_attribute for ELF 64-bit ABIs,
3407         and SPE.  Emit long double tag value too.
3408         (rs6000_opt_vars): Add gnu-attr.
3409         * configure.ac (HAVE_LD_PPC_GNU_ATTR_LONG_DOUBLE): New ppc32 test.
3410         * configure: Regenerate.
3411         * config.in: Regenerate.
3413 2016-09-28  Jakub Jelinek  <jakub@redhat.com>
3415         * gimple-ssa-sprintf.c (pass_sprintf_length::gate): Use x > 0 instead
3416         of 0 < x.
3417         (format_floating, format_string, format_directive,
3418         get_destination_size, pass_sprintf_length::handle_gimple_call):
3419         Likewise.
3421 2016-09-28  Jakub Jelinek  <jakub@redhat.com>
3423         * gimple-ssa-sprintf.c: Fix comment formatting.
3424         (format_integer): Use is_gimple_assign.
3425         (pass_sprintf_length::handle_gimple_call): Use gimple_call_builtin_p
3426         and gimple_call_fndecl.  Reorder case BUILT_IN_SPRINTF_CHK.  Fix up
3427         BUILT_IN_SNPRINTF_CHK comment.  Replace "to to" with "to" in comment.
3428         (pass_sprintf_length::execute): Use is_gimple_call.
3430 2016-09-28  Wilco Dijkstra  <wdijkstr@arm.com>
3432         * gimple-fold.c (gimple_fold_builtin): After failing to fold
3433         strchr, also try the generic folding.
3435 2016-09-28  Martin Sebor  <msebor@redhat.com>
3437         PR c/77762
3438         * gimple-ssa-sprintf.c (pass_sprintf_length::handle_gimple_call):
3439         Fix typos.
3441 2016-09-28  Martin Sebor  <msebor@redhat.com>
3443         PR middle-end/77683
3444         * gimple-ssa-sprintf.c (format_integer): Fail gracefully when
3445         length modifier is not expected.
3446         (format_floating): Ignore l length modifier and fail gracefuly
3447         when it isn't one of the other expected ones.
3449 2016-09-28  Martin Sebor  <msebor@redhat.com>
3451         PR bootstrap/77753
3452         * varasm.c (assemble_addr_to_section): Increase local buffer size.
3454 2016-09-27  Richard Biener  <rguenther@suse.de>
3456         * dwarf2out.c (cu_die_list): New global.
3457         (dwarf2out_finish): Walk cu_die_list instead of limbo DIEs.  Add
3458         main_comp_unit_die to cu_die_list if we created it.
3459         Move break_out_includes ...
3460         (dwarf2out_early_finish): ... here.  Push created CU DIEs onto
3461         the cu_die_list.
3463 2016-09-28  Richard Biener  <rguenther@suse.de>
3465         * dwarf2out.c (struct die_struct): Add removed flag.
3466         (lookup_type_die): If the DIE is marked as removed, clear
3467         TYPE_SYMTAB_DIE and return NULL.
3468         (lookup_decl_die): If the DIE is marked as removed, remove it
3469         from the hash and return NULL.
3470         (mark_removed): New helper.
3471         (prune_unused_types_prune): Call it for removed DIEs.
3472         (gen_subprogram_die): Move the premark_used_types call to after
3473         DIEs for the functions scopes are generated.
3474         (process_scope_var): Do not re-create pruned types or type decls.
3475         Make sure to also re-parent type decls.
3476         (dwarf2out_finish): Move unused type pruning and debug_types
3477         handling ...
3478         (dwarf2out_early_finish): ... here.
3480 2016-09-29  Claudiu Zissulescu  <claziss@synopsys.com>
3482         * config/arc/arc-c.c: New file.
3483         * config/arc/arc-c.def: Likewise.
3484         * config/arc/t-arc: Likewise.
3485         * config.gcc: Include arc-c.o as c and cpp object.
3486         * config/arc/arc-protos.h (arc_cpu_cpp_builtins): Add prototype.
3487         * config/arc/arc.h (TARGET_CPU_CPP_BUILTINS): Use
3488         arc_cpu_cpp_builtins.
3490 2016-09-29  Claudiu Zissulescu  <claziss@synopsys.com>
3492         * config/arc/arc.md (*rotrsi3_cnt1): New pattern.
3493         (*ashlsi2_cnt1, *lshrsi3_cnt1, *ashrsi3_cnt1): Likewise.
3495 2016-09-28  Nathan Sidwell  <nathan@acm.org>
3497         * gimple-pretty-print.c (dump_gimple_call_args): Simplify "' "
3498         printing.
3500 2016-09-28  Wilco Dijkstra  <wdijkstr@arm.com>
3502         PR tree-optimization/61056
3503         * gimple-fold.c (gimple_fold_builtin_strchr):
3504         New function to optimize strchr (s, 0) to strlen.
3505         (gimple_fold_builtin): Add BUILT_IN_STRCHR case.
3507 2016-09-27  Robin Dapp  <rdapp@linux.vnet.ibm.com>
3509         PR tree-optimization/77724
3510         * tree-vect-loop-manip.c (create_intersect_range_checks_index):
3511         Add tree_fits_shwi_p check.
3513 2016-09-27  Jakub Jelinek  <jakub@redhat.com>
3515         * auto-inc-dec.c (try_merge): Remove break after return.
3516         * cselib.c (autoinc_split): Likewise.
3517         * explow.c (promote_mode): Likewise.
3518         * fixed-value.c (fixed_arithmetic): Likewise.
3519         * hsa.c (hsa_internal_fn::get_arity): Likewise.
3520         * rtlanal.c (modified_between_p, modified_in_p): Likewise.
3521         * trans-mem.c (get_attrs_for): Likewise.
3522         * tree-if-conv.c (if_convertible_stmt_p): Likewise.
3523         * tree-vrp.c (simplify_stmt_using_ranges): Likewise.
3524         * config/aarch64/aarch64-builtins.c (aarch64_fold_builtin): Likewise.
3525         * config/aarch64/aarch64.c (aarch64_get_condition_code_1): Likewise.
3526         * config/c6x/c6x.c (c6x_get_unit_specifier): Likewise.
3527         * config/cr16/cr16.c (legitimate_pic_operand_p): Likewise.
3528         * config/cris/cris.c (cris_op_str): Likewise.
3529         * config/mn10300/mn10300.c (cc_flags_for_code): Likewise.
3530         * config/tilepro/tilepro.c (tilepro_emit_setcc_internal_di): Likewise.
3532 2016-09-27  Nathan Sidwell  <nathan@codesourcery.com>
3534         * internal-fn.h (IFN_UNIQUE_CODES, IFN_GOACC_LOOP_CODES,
3535         IFN_GOACC_REDUCTION_CODES): New.
3536         (enum ifn_unique_kind, enum ifn_goacc_loop_kind, enum
3537         ifn_goacc_reduction_kind): Use them.
3538         * gimple-pretty-print.c (dump_gimple_call_args): Decode first arg
3539         of internal functions, when applicable.
3541 2016-09-27  Maciej W. Rozycki  <macro@imgtec.com>
3543         * config/mips/constraints.md (d): Fix documentation.
3544         * doc/md.texi (Machine Constraints): Update accordingly.
3546 2016-09-27  Richard Biener  <rguenther@suse.de>
3548         * dwarf2out.c (dwarf2out_init): Move text_section_line_info,
3549         cur_line_info_table initialization ...
3550         (dwarf2out_assembly_start): ... here.
3552 2016-09-27  Matthew Wahab  <matthew.wahab@arm.com>
3554         * config/arm/arm.md (*arm_movsi_insn): Add "arch" attribute.
3555         * config/arm/vfp.md (*arm_movhi_vfp): Likewise.
3556         (*thumb2_movhi_vfp): Likewise.
3557         (*arm_movhi_fp16): Remove predication operand from VMOV.F16
3558         template.  Expand predicable attribute to mark VMOV.F16 as not
3559         predicable.  Add "arch" attribute.
3560         (*thumb2_movhi_fp16): Likewise.
3561         (*arm_movsi_vfp): Break a long line.  Add "arch" attribute.
3562         (*thumb2_movsi_vfp): Add "arch" attribute.
3564 2016-09-27  David Edelsohn  <dje.gcc@gmail.com>
3566         * config/rs6000/rs6000.c (rs6000_output_symbol): Don't modify
3567         VAR_DECL string.
3569 2016-09-27  Marek Polacek  <polacek@redhat.com>
3571         * config/ia64/ia64.c (ia64_print_operand): Adjust fall through
3572         comment.
3574         * config/c6x/c6x.h: Adjust fall through comment.
3575         * config/sh/sh.c (final_prescan_insn): Likewise.
3576         * config/visium/visium.c (visium_expand_int_cstore): Likewise.
3577         (visium_expand_fp_cstore): Likewise.
3579 2016-09-27  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
3581         * config/arm/arm.c (const_ok_for_op): Use "Fall through" comment form
3582         expected by -Wimplicit-fallthrough.
3583         (thumb1_size_rtx_costs): Likewise.
3584         (thumb2_reorg): Likewise.
3585         (tls_mentioned_p): Add "Fall through" comment.
3586         (thumb2_reorg): Likewise.
3587         * config/arm/arm-builtins.c (arm_expand_neon_args): Use "Fall through"
3588         comment form expected by -Wimplicit-fallthrough.
3590 2016-09-27  Martin Liska  <mliska@suse.cz>
3592         PR gcov-profile/46266
3593         * input.h (RESERVED_LOCATION_P): New macro.
3594         * profile.c (branch_prob): Use RESERVED_LOCATION_P and
3595         instread of comparison with UNKNOWN_LOCATION.
3597 2016-09-27  Richard Biener  <rguenther@suse.de>
3599         PR tree-optimization/77745
3600         * tree-ssa-pre.c (eliminate_dom_walker::before_dom_children):
3601         When removing redundant stores make sure to check compatibility
3602         of the TBAA state for downstream accesses.
3603         * tree-ssa-sccvn.c (visit_reference_op_store): Likewise for when
3604         value-numbering virtual operands for store matches.
3606 2016-09-27  Oleg Endo  <olegendo@gcc.gnu.org>
3608         PR target/51244
3609         * config/sh/sh.c (sh_rtx_costs): Fix return value of SET of movt and
3610         movrt patterns.  Match them before anything else in the SET case.
3612 2016-09-27  Martin Liska  <mliska@suse.cz>
3614         PR gcov-profile/7970
3615         PR gcov-profile/16855
3616         PR gcov-profile/44779
3617         * coverage.c (build_gcov_exit_decl): New function.
3618         (coverage_obj_init): Call the function and generate __gcov_exit
3619         destructor.
3620         * doc/gcov.texi: Document when __gcov_exit function is called.
3622 2016-09-27  Marek Polacek  <polacek@redhat.com>
3624         PR bootstrap/77751
3625         * Makefile.in (insn-attrtab.o-warn, insn-dfatab.o-warn,
3626         insn-latencytab.o-warn, insn-output.o-warn, insn-emit.o-warn): Use
3627         -Wno-error instead of -Wno-implicit-fallthrough.
3629 2016-09-27  Martin Liska  <mliska@suse.cz>
3631         PR bootstrap/77749
3632         * gcov-counter.def: Remove GCOV_COUNTER_V_DELTA.
3634 2016-09-27  Jakub Jelinek  <jakub@redhat.com>
3636         * combine.c (simplify_comparison): Add canonical FALLTHROUGH comments.
3637         * config/i386/i386.c (ix86_dep_by_shift_count_body): Add FALLTHROUGH
3638         comments.  Remove break after return.
3639         (ix86_fp_compare_code_to_integer, has_dispatch,
3640         ix86_simd_clone_usable): Remove break after return.
3642 2016-09-27  Bernd Edlinger  <bernd.edlinger@hotmail.de>
3644         PR rlt-optimization/77714
3645         * lra-eliminations.c (eliminate_regs_in_insn): Avoid alias on
3646         REG_EQUAL note.
3648 2016-09-27  Kugan Vivekanandarajah  <kuganv@linaro.org>
3650         PR ipa/77677
3651         * ipa-prop.c (ipa_compute_jump_functions_for_edge): Use
3652         extract_range_from_unary_expr to convert value_range.
3653         * tree-vrp.c (extract_range_from_unary_expr_1): Rename to.
3654         (extract_range_from_unary_expr): This.
3655         * tree-vrp.h (extract_range_from_unary_expr): Declare.
3657 2016-09-27  Segher Boessenkool  <segher@kernel.crashing.org>
3659         * config/rs6000/rs6000.md (movcc_internal1): Disparage using CTR or LR.
3661 2016-09-26  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
3663         * config/i386/i386.c (ix86_print_operand)
3664         [HAVE_AS_IX86_CMOV_SUN_SYNTAX]: Add gcc_fallthrough.
3665         * config/sparc/sparc.c (check_pic): Add fallthrough comment.
3666         (epilogue_renumber): Likewise.
3668 2016-09-26  Kugan Vivekanandarajah  <kuganv@linaro.org>
3670         PR middle-end/77719
3671         * tree-ssa-reassoc.c (make_new_ssa_for_def): Use gimple_get_lhs
3672         to get lhs instead of gimple_assign_lhs as stmt can be builtins too.
3674 2016-09-26  Thomas Preud'homme  <thomas.preudhomme@arm.com>
3676         * tree.h (memmodel_from_int, memmodel_base, is_mm_relaxed,
3677         is_mm_consume, is_mm_acquire, is_mm_release, is_mm_acq_rel,
3678         is_mm_seq_cst, is_mm_sync): Move to ...
3679         * memmodel.h: This.  New file.
3680         * builtins.c: Include memmodel.h.
3681         * optabs.c: Likewise.
3682         * tsan.c: Likewise.
3683         * config/aarch64/aarch64.c: Likewise.
3684         * config/alpha/alpha.c: Likewise.
3685         * config/arm/arm.c: Likewise.
3686         * config/i386/i386.c: Likewise.
3687         * config/ia64/ia64.c: Likewise.
3688         * config/mips/mips.c: Likewise.
3689         * config/rs6000/rs6000.c: Likewise.
3690         * config/sparc/sparc.c: Likewise.
3691         * genconditions.c: Include memmodel.h in generated file.
3692         * genemit.c: Likewise.
3693         * genoutput.c: Likewise.
3694         * genpeep.c: Likewise.
3695         * genpreds.c: Likewise.
3696         * genrecog.c: Likewise.
3698 2016-09-26  David Malcolm  <dmalcolm@redhat.com>
3700         * read-rtl.c (read_rtx_code): Rename local "i" to "idx", and use
3701         "c" instead when parsing characters.  Move operand parsing into...
3702         (read_rtx_operand): ...this new function, renaming "i" to "idx",
3703         and tightening the scope of various locals.
3705 2016-09-26  Liu Hao  <lh_mouse@126.com>
3707         * config/i386/cygming.h (ASM_OUTPUT_DWARF_OFFSET): Fix typo.
3709 2016-09-26  Marek Polacek  <polacek@redhat.com>
3711         * system.h: Use __has_attribute to check whether the fallthrough
3712         attribute is supported.
3714 2016-09-26  Marek Polacek  <polacek@redhat.com>
3716         * ipa-inline-analysis.c (find_foldable_builtin_expect): Use
3717         gimple_call_internal_p.
3718         * ipa-split.c (find_return_bb): Likewise.
3719         (execute_split_functions): Likewise.
3720         * omp-low.c (dump_oacc_loop_part): Likewise.
3721         (oacc_loop_xform_head_tail): Likewise.
3722         * predict.c (predict_loops): Likewise.
3723         * sanopt.c (pass_sanopt::execute): Likewise.
3724         * tree-cfg.c (get_abnormal_succ_dispatcher): Likewise.
3725         * tree-parloops.c (oacc_entry_exit_ok_1): Likewise.
3726         * tree-stdarg.c (gimple_call_ifn_va_arg_p): Remove function.
3727         (expand_ifn_va_arg_1): Use gimple_call_internal_p.
3728         (expand_ifn_va_arg): Likewise.
3729         * tree-vect-loop.c (vect_determine_vectorization_factor): Likewise.
3730         (optimize_mask_stores): Likewise.
3731         * tree-vect-stmts.c (vect_simd_lane_linear): Likewise.
3732         (vect_transform_stmt): Likewise.
3733         * tree-vectorizer.c (vect_loop_vectorized_call): Likewise.
3734         * tsan.c (instrument_memory_accesses): Likewise.
3736 2016-09-26  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
3737             Alexander Monakov  <amonakov@ispras.ru>
3739         * regrename.c (rename_chains): Check
3740         HARD_FRAME_POINTER_IS_FRAME_POINTER rather than
3741         HARD_FRAME_POINTER_REGNUM when picking unavailable registers.
3742         * sel-sched.c (mark_unavailable_hard_regs): Likewise.
3744 2016-09-26  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
3746         * config/s390/s390.c (s390_rtx_costs): Add /* fallthrough */.
3747         (s390_sched_score): Likewise.
3749 2016-09-26  Martin Liska  <mliska@suse.cz>
3751         * doc/gcov.texi: Update program output of gcov tool.
3753 2016-09-26  Martin Liska  <mliska@suse.cz>
3755         PR gcov-profile/23332
3756         * profile.c (instrument_values): Do not handle HIST_TYPE_CONST_DELTA.
3757         * tree-profile.c (gimple_gen_const_delta_profiler): Remove.
3758         * value-prof.c (dump_histogram_value): Do not handle
3759         HIST_TYPE_CONST_DELTA.
3760         (stream_in_histogram_value): Likewise.
3761         (gimple_find_values_to_profile): Likewise.
3762         * value-prof.h (enum hist_type): Likewise.
3764 2016-09-26  Martin Liska  <mliska@suse.cz>
3766         * common.opt: Exclude SANITIZE_UNREACHABLE and SANITIZE_RETURN
3767         from default sanitize recover values.
3768         * doc/invoke.texi: Fix documentation related to -fsanitize=leak,
3769         -fsanitize=address, -fsanitize=thread and -fsanitize-recover.
3770         * flag-types.h: Replace couple of 1 << x to 1UL << x, make it
3771         consistent.
3772         * opts.c (finish_options): Do a generic loop over options
3773         that can be recovered.
3774         (parse_sanitizer_options): Exclude SANITIZE_UNREACHABLE and
3775         SANITIZE_RETURN.
3776         (common_handle_option): Likewise.
3777         * opts.h: Declare can_recover to sanitizer_opts_s.
3779 2016-09-26  Andre Vieira  <andre.simoesdiasvieira@arm.com>
3781         * target.def(elf_flags_numeric): Change documentation to present tense.
3782         * doc/tm.texi: Regenerate.
3784 2016-09-26  Marek Polacek  <polacek@redhat.com>
3786         PR c/7652
3787         * Makefile.in (insn-attrtab.o-warn, insn-dfatab.o-warn,
3788         insn-latencytab.o-warn, insn-output.o-warn, insn-emit.o-warn): Add
3789         -Wno-switch-fallthrough.
3790         * builtins.c (expand_builtin_int_roundingfn_2): Add gcc_fallthrough.
3791         (expand_builtin): Likewise.
3792         * config/rs6000/rs6000.c (rs6000_builtin_vectorized_libmass): Likewise.
3793         * convert.c (convert_to_real_1): Likewise.
3794         (convert_to_integer_1): Likewise.
3795         * final.c (output_alternate_entry_point): Likewise.
3796         * genattrtab.c (make_canonical): Likewise.
3797         (write_test_expr): Likewise.
3798         * genpreds.c (validate_exp): Likewise.
3799         * gimple-ssa-strength-reduction.c
3800         (find_candidates_dom_walker::before_dom_children): Likewise.
3801         * godump.c (go_format_type): Likewise.
3802         * reload1.c (elimination_effects): Likewise.
3803         * resource.c (mark_referenced_resources): Likewise.
3804         (mark_set_resources): Likewise.
3805         * tree-ssa-loop-ivopts.c (find_deriving_biv_for_expr): Likewise.
3806         * varasm.c (output_addressed_constants): Likewise.
3808 2016-09-26  Marek Polacek  <polacek@redhat.com>
3810         PR c/7652
3811         * common.opt (Wimplicit-fallthrough): New option.
3812         * doc/extend.texi: Document statement attributes and the fallthrough
3813         attribute.
3814         * doc/invoke.texi: Document -Wimplicit-fallthrough.
3815         * gimple.h (gimple_call_internal_p): New function.
3816         * gimplify.c (struct gimplify_ctx): Add in_switch_expr.
3817         (struct label_entry): New struct.
3818         (find_label_entry): New function.
3819         (case_label_p): New function.
3820         (collect_fallthrough_labels): New function.
3821         (last_stmt_in_scope): New function.
3822         (should_warn_for_implicit_fallthrough): New function.
3823         (warn_implicit_fallthrough_r): New function.
3824         (maybe_warn_implicit_fallthrough): New function.
3825         (expand_FALLTHROUGH_r): New function.
3826         (expand_FALLTHROUGH): New function.
3827         (gimplify_switch_expr): Call maybe_warn_implicit_fallthrough and
3828         expand_FALLTHROUGH for the innermost GIMPLE_SWITCH.
3829         (gimplify_label_expr): New function.
3830         (gimplify_case_label_expr): Set location.
3831         (gimplify_expr): Call gimplify_label_expr.
3832         * internal-fn.c (expand_FALLTHROUGH): New function.
3833         * internal-fn.def (FALLTHROUGH): New internal function.
3834         * langhooks.c (lang_GNU_OBJC): New function.
3835         * langhooks.h (lang_GNU_OBJC): Declare.
3836         * system.h (gcc_fallthrough): Define.
3837         * tree-core.h: Add FALLTHROUGH_LABEL_P comment.
3838         * tree.h (FALLTHROUGH_LABEL_P): Define.
3840 2016-09-26  Richard Biener  <rguenther@suse.de>
3842         * dwarf2out.c (stripattributes): Remove unused function.
3843         (DEBUG_NORM_MACINFO_SECTION): Rename to DEBUG_MACINFO_SECTION.
3844         Push dwarf_split_debug_info handling into init_sections_and_labels.
3845         (DEBUG_NORM_MACRO_SECTION): Likewise to DEBUG_MACRO_SECTION.
3846         (DEBUG_MACRO_SECTION_FLAGS): Remove.
3847         (debug_macinfo_section_name): New global.
3848         (output_macinfo): Use debug_macinfo_section_name.
3849         (init_sections_and_labels): Split out section and label generation
3850         from dwarf2out_init.  Set debug_macinfo_section_name.
3851         (dwarf2out_init): Move text section label generation and emission
3852         to ...
3853         (dwarf2out_assembly_start): ... here.
3854         (dwarf2out_finish): Call init_sections_and_labels before DWARF
3855         output starts.
3857 2016-09-26  Richard Biener  <rguenther@suse.de>
3859         PR debug/77692
3860         * cgraphunit.c (analyze_functions): Before early removing
3861         global vars calls the late_global_decl debug handler mark
3862         the variable as readonly.
3864 2016-09-25  Oleg Endo  <olegendo@gcc.gnu.org>
3866         PR target/51244
3867         * config/sh/sh.c (sh_movt_set_dest, sh_movrt_set_dest): Add overloads.
3868         (sh_rtx_costs): Handle SET of movt and movrt patterns.
3869         * cnofig/sh/sh-protos.h (sh_movt_set_dest, sh_movrt_set_dest): Forward
3870         declare new overloads.
3871         * config/sh/sh.md (*cset_zero): Add variant that takes a treg_set_expr
3872         operand.
3874 2016-09-24  Aaron Sawdey  <acsawdey@linux.vnet.ibm.com>
3876         * config/rs6000/rs6000.c (expand_block_compare, do_load_for_compare):
3877         Change TARGET_LITTLE_ENDIAN to !BYTES_BIG_ENDIAN.
3879 2016-09-24  David Edelsohn  <dje.gcc@gmail.com>
3881         * configure.ac (gcc_cv_as_aix_dwloc): Fix typo in assembly fragment.
3882         * configure: Regenerate.
3884 2016-09-24  Marek Polacek  <polacek@redhat.com>
3886         PR c/77490
3887         * doc/invoke.texi: Document -Wbool-operation.
3889 2016-09-23  Aaron Sawdey  <acsawdey@linux.vnet.ibm.com>
3891         * config/rs6000/rs6000.md (cmpmemsi): New define_expand.
3892         * config/rs6000/rs6000.c (expand_block_compare): New function used by
3893         cmpmemsi pattern to do builtin expansion of memcmp ().
3894         (compute_current_alignment): Add helper function for
3895         expand_block_compare used to compute alignment as the compare proceeds.
3896         (select_block_compare_mode): Used by expand_block_compare to select
3897         the mode used for reading the next chunk of bytes in the compare.
3898         (do_load_for_compare): Used by expand_block_compare to emit the load
3899         insns for the compare.
3900         (rs6000_emit_dot_insn): Moved this function to avoid a forward
3901         reference from expand_block_compare ().
3902         * config/rs6000/rs6000-protos.h (expand_block_compare): Add a
3903         prototype for this function.
3904         * config/rs6000/rs6000.opt (mblock-compare-inline-limit): Add a new
3905         target option for controlling how much code inline expansion of
3906         memcmp() will be allowed to generate.
3908 2016-09-23  Jakub Jelinek  <jakub@redhat.com>
3910         * hooks.c (hook_bool_bool_false, hook_bool_bool_gcc_optionsp_false,
3911         hook_bool_mode_false, hook_bool_mode_true,
3912         hook_bool_mode_const_rtx_false, hook_bool_mode_const_rtx_true,
3913         hook_bool_mode_rtx_false, hook_bool_mode_rtx_true,
3914         hook_bool_const_rtx_insn_const_rtx_insn_true,
3915         hook_bool_mode_uhwi_false, hook_void_FILEptr_constcharptr,
3916         hook_bool_FILEptr_rtx_false, hook_bool_gsiptr_false,
3917         hook_bool_const_tree_hwi_hwi_const_tree_false,
3918         hook_bool_const_tree_hwi_hwi_const_tree_true,
3919         default_can_output_mi_thunk_no_vcall, hook_int_uint_mode_1,
3920         hook_int_const_tree_0, hook_int_const_tree_const_tree_1,
3921         hook_int_rtx_0, hook_int_rtx_bool_0, hook_void_tree,
3922         hook_void_constcharptr, hook_void_tree_treeptr, hook_void_int_int,
3923         hook_bool_tree_false, hook_bool_const_tree_false, hook_bool_tree_true,
3924         hook_bool_const_tree_true, hook_bool_tree_tree_false,
3925         hook_bool_tree_tree_true, hook_bool_tree_bool_false,
3926         hook_bool_rtx_insn_true, hook_bool_rtx_false,
3927         hook_bool_uintp_uintp_false,
3928         hook_bool_rtx_mode_int_int_intp_bool_false, hook_rtx_rtx_null,
3929         hook_rtx_tree_int_null, hook_uint_mode_0,
3930         hook_constcharptr_const_tree_null, hook_tree_tree_int_treep_bool_null,
3931         hook_tree_tree_tree_null, hook_tree_tree_tree_tree_null,
3932         hook_constcharptr_const_rtx_insn_null,
3933         hook_constcharptr_const_tree_const_tree_null,
3934         hook_constcharptr_int_const_tree_null,
3935         hook_constcharptr_int_const_tree_const_tree_null,
3936         hook_tree_const_tree_null, hook_bool_rtx_insn_int_false,
3937         hook_void_rtx_insn_int, hook_void_gcc_optionsp): For arguments with
3938         ATTRIBUTE_UNUSED, remove parameter name as well as ATTRIBUTE_UNUSED.
3940         * vec.h (vNULL): Extend comment to say = vNULL initialization
3941         isn't needed for static vars.
3943         * sel-sched-ir.c (sel_global_bb_info, sel_region_bb_info,
3944         loop_nests, s_i_d, last_added_blocks): Remove unnecessary
3945         = vNULL initialization of file scope vec.
3946         * passes.c (pass_tab, enabled_pass_uid_range_tab,
3947         disabled_pass_uid_range_tab): Likewise.
3948         * haifa-sched.c (sched_luids, h_i_d): Likewise.
3949         * tree-chkp-opt.c (check_infos): Likewise.
3950         * sel-sched.c (vec_av_set, vec_temp_moveop_nops): Likewise.
3952         * vec.h (vnull::operator vec): Add constexpr keyword for
3953         C++11 and later.
3955 2016-09-23  Doug Gilmore  <doug.gilmore@imgtec.com>
3957         PR tree-optimization/77654
3958         * tree-ssa-loop-prefetch.c (issue_prefetch_ref): Add call
3959         to duplicate_ssa_name_ptr_info.
3961 2016-09-23  David Malcolm  <dmalcolm@redhat.com>
3963         PR preprocessor/77672
3964         * input.c (selftest::test_lexer_string_locations_simple): Update
3965         test to expect location information of the terminator character
3966         at the location of the final closing quote.
3967         (selftest::test_lexer_string_locations_hex): Likewise.
3968         (selftest::test_lexer_string_locations_oct): Likewise.
3969         (selftest::test_lexer_string_locations_letter_escape_1): Likewise.
3970         (selftest::test_lexer_string_locations_letter_escape_2): Likewise.
3971         (selftest::test_lexer_string_locations_ucn4): Likewise.
3972         (selftest::test_lexer_string_locations_ucn8): Likewise.
3973         (selftest::test_lexer_string_locations_u8): Likewise.
3974         (selftest::test_lexer_string_locations_utf8_source): Likewise.
3975         (selftest::test_lexer_string_locations_concatenation_1): Likewise.
3976         (selftest::test_lexer_string_locations_concatenation_2): Likewise.
3977         (selftest::test_lexer_string_locations_concatenation_3): Likewise.
3978         (selftest::test_lexer_string_locations_macro): Likewise.
3979         (selftest::test_lexer_string_locations_long_line): Likewise.
3981 2016-09-23  Richard Biener  <rguenther@suse.de>
3983         * tree-ssa-sccvn.c (visit_reference_op_call): Value number
3984         virtual definition to virtual use if the call devirtualizes
3985         to a const or pure function.
3986         (visit_use): Also visit calls we can devirtualize to a
3987         const or pure function.
3989 2016-09-23  Richard Biener  <rguenther@suse.de>
3991         PR tree-optimization/77697
3992         * tree-ssa-forwprop.c (defcodefor_name): Remove bogus code,
3993         signal error if we have sth ternary or unhandled.
3995 2016-09-23  Matthew Wahab  <matthew.wahab@arm.com>
3997         * config/arm/arm_neon.h (vabd_f16): New.
3998         (vabdq_f16): New.
3999         (vabs_f16): New.
4000         (vabsq_f16): New.
4001         (vadd_f16): New.
4002         (vaddq_f16): New.
4003         (vcage_f16): New.
4004         (vcageq_f16): New.
4005         (vcagt_f16): New.
4006         (vcagtq_f16): New.
4007         (vcale_f16): New.
4008         (vcaleq_f16): New.
4009         (vcalt_f16): New.
4010         (vcaltq_f16): New.
4011         (vceq_f16): New.
4012         (vceqq_f16): New.
4013         (vceqz_f16): New.
4014         (vceqzq_f16): New.
4015         (vcge_f16): New.
4016         (vcgeq_f16): New.
4017         (vcgez_f16): New.
4018         (vcgezq_f16): New.
4019         (vcgt_f16): New.
4020         (vcgtq_f16): New.
4021         (vcgtz_f16): New.
4022         (vcgtzq_f16): New.
4023         (vcle_f16): New.
4024         (vcleq_f16): New.
4025         (vclez_f16): New.
4026         (vclezq_f16): New.
4027         (vclt_f16): New.
4028         (vcltq_f16): New.
4029         (vcltz_f16): New.
4030         (vcltzq_f16): New.
4031         (vcvt_f16_s16): New.
4032         (vcvt_f16_u16): New.
4033         (vcvt_s16_f16): New.
4034         (vcvt_u16_f16): New.
4035         (vcvtq_f16_s16): New.
4036         (vcvtq_f16_u16): New.
4037         (vcvtq_s16_f16): New.
4038         (vcvtq_u16_f16): New.
4039         (vcvta_s16_f16): New.
4040         (vcvta_u16_f16): New.
4041         (vcvtaq_s16_f16): New.
4042         (vcvtaq_u16_f16): New.
4043         (vcvtm_s16_f16): New.
4044         (vcvtm_u16_f16): New.
4045         (vcvtmq_s16_f16): New.
4046         (vcvtmq_u16_f16): New.
4047         (vcvtn_s16_f16): New.
4048         (vcvtn_u16_f16): New.
4049         (vcvtnq_s16_f16): New.
4050         (vcvtnq_u16_f16): New.
4051         (vcvtp_s16_f16): New.
4052         (vcvtp_u16_f16): New.
4053         (vcvtpq_s16_f16): New.
4054         (vcvtpq_u16_f16): New.
4055         (vcvt_n_f16_s16): New.
4056         (vcvt_n_f16_u16): New.
4057         (vcvtq_n_f16_s16): New.
4058         (vcvtq_n_f16_u16): New.
4059         (vcvt_n_s16_f16): New.
4060         (vcvt_n_u16_f16): New.
4061         (vcvtq_n_s16_f16): New.
4062         (vcvtq_n_u16_f16): New.
4063         (vfma_f16): New.
4064         (vfmaq_f16): New.
4065         (vfms_f16): New.
4066         (vfmsq_f16): New.
4067         (vmax_f16): New.
4068         (vmaxq_f16): New.
4069         (vmaxnm_f16): New.
4070         (vmaxnmq_f16): New.
4071         (vmin_f16): New.
4072         (vminq_f16): New.
4073         (vminnm_f16): New.
4074         (vminnmq_f16): New.
4075         (vmul_f16): New.
4076         (vmul_lane_f16): New.
4077         (vmul_n_f16): New.
4078         (vmulq_f16): New.
4079         (vmulq_lane_f16): New.
4080         (vmulq_n_f16): New.
4081         (vneg_f16): New.
4082         (vnegq_f16): New.
4083         (vpadd_f16): New.
4084         (vpmax_f16): New.
4085         (vpmin_f16): New.
4086         (vrecpe_f16): New.
4087         (vrecpeq_f16): New.
4088         (vrnd_f16): New.
4089         (vrndq_f16): New.
4090         (vrnda_f16): New.
4091         (vrndaq_f16): New.
4092         (vrndm_f16): New.
4093         (vrndmq_f16): New.
4094         (vrndn_f16): New.
4095         (vrndnq_f16): New.
4096         (vrndp_f16): New.
4097         (vrndpq_f16): New.
4098         (vrndx_f16): New.
4099         (vrndxq_f16): New.
4100         (vrsqrte_f16): New.
4101         (vrsqrteq_f16): New.
4102         (vrecps_f16): New.
4103         (vrecpsq_f16): New.
4104         (vrsqrts_f16): New.
4105         (vrsqrtsq_f16): New.
4106         (vsub_f16): New.
4107         (vsubq_f16): New.
4109 2016-09-23  Matthew Wahab  <matthew.wahab@arm.com>
4111         * config.gcc (extra_headers): Add arm_fp16.h
4112         * config/arm/arm_fp16.h: New.
4113         * config/arm/arm_neon.h: Include "arm_fp16.h".
4115 2016-09-23  Matthew Wahab  <matthew.wahab@arm.com>
4117         * config/arm/arm_neon_builtins.def (vadd): New (v8hf, v4hf
4118         variants).
4119         (vmulf): New (v8hf, v4hf variants).
4120         (vfma): New (v8hf, v4hf variants).
4121         (vfms): New (v8hf, v4hf variants).
4122         (vsub): New (v8hf, v4hf variants).
4123         (vcage): New (v8hf, v4hf variants).
4124         (vcagt): New (v8hf, v4hf variants).
4125         (vcale): New (v8hf, v4hf variants).
4126         (vcalt): New (v8hf, v4hf variants).
4127         (vceq): New (v8hf, v4hf variants).
4128         (vcgt): New (v8hf, v4hf variants).
4129         (vcge): New (v8hf, v4hf variants).
4130         (vcle): New (v8hf, v4hf variants).
4131         (vclt): New (v8hf, v4hf variants).
4132         (vceqz): New (v8hf, v4hf variants).
4133         (vcgez): New (v8hf, v4hf variants).
4134         (vcgtz): New (v8hf, v4hf variants).
4135         (vcltz): New (v8hf, v4hf variants).
4136         (vclez): New (v8hf, v4hf variants).
4137         (vabd): New (v8hf, v4hf variants).
4138         (vmaxf): New (v8hf, v4hf variants).
4139         (vmaxnm): New (v8hf, v4hf variants).
4140         (vminf): New (v8hf, v4hf variants).
4141         (vminnm): New (v8hf, v4hf variants).
4142         (vpmaxf): New (v4hf variant).
4143         (vpminf): New (v4hf variant).
4144         (vpadd): New (v4hf variant).
4145         (vrecps): New (v8hf, v4hf variants).
4146         (vrsqrts): New (v8hf, v4hf variants).
4147         (vabs): New (v8hf, v4hf variants).
4148         (vneg): New (v8hf, v4hf variants).
4149         (vrecpe): New (v8hf, v4hf variants).
4150         (vrnd): New (v8hf, v4hf variants).
4151         (vrnda): New (v8hf, v4hf variants).
4152         (vrndm): New (v8hf, v4hf variants).
4153         (vrndn): New (v8hf, v4hf variants).
4154         (vrndp): New (v8hf, v4hf variants).
4155         (vrndx): New (v8hf, v4hf variants).
4156         (vrsqrte): New (v8hf, v4hf variants).
4157         (vmul_lane): Add v4hf and v8hf variants.
4158         (vmul_n): Add v4hf and v8hf variants.
4159         (vext): New (v8hf, v4hf variants).
4160         (vcvts): New (v8hi, v4hi variants).
4161         (vcvts): New (v8hf, v4hf variants).
4162         (vcvtu): New (v8hi, v4hi variants).
4163         (vcvtu): New (v8hf, v4hf variants).
4164         (vcvts_n): New (v8hf, v4hf variants).
4165         (vcvtu_n): New (v8hi, v4hi variants).
4166         (vcvts_n): New (v8hi, v4hi variants).
4167         (vcvtu_n): New (v8hf, v4hf variants).
4168         (vbsl): New (v8hf, v4hf variants).
4169         (vcvtas): New (v8hf, v4hf variants).
4170         (vcvtau): New (v8hf, v4hf variants).
4171         (vcvtms): New (v8hf, v4hf variants).
4172         (vcvtmu): New (v8hf, v4hf variants).
4173         (vcvtns): New (v8hf, v4hf variants).
4174         (vcvtnu): New (v8hf, v4hf variants).
4175         (vcvtps): New (v8hf, v4hf variants).
4176         (vcvtpu): New (v8hf, v4hf variants).
4178 2016-09-23  Matthew Wahab  <matthew.wahab@arm.com>
4180         * config/arm/arm-builtins.c (hf_UP): New.
4181         (si_UP): New.
4182         (vfp_builtin_data): New.  Update comment.
4183         (enum arm_builtins): Include "arm_vfp_builtins.def".
4184         (ARM_BUILTIN_VFP_PATTERN_START): New.
4185         (arm_init_vfp_builtins): New.
4186         (arm_init_builtins): Add arm_init_vfp_builtins.
4187         (arm_expand_vfp_builtin): New.
4188         (arm_expand_builtins): Update for arm_expand_vfp_builtin.  Fix
4189         long line.
4190         * config/arm/arm_vfp_builtins.def: New file.
4191         * config/arm/t-arm (arm.o): Add arm_vfp_builtins.def.
4192         (arm-builtins.o): Likewise.
4194 2016-09-23  Kugan Vivekanandarajah  <kuganv@linaro.org>
4196         PR ipa/77677
4197         * ipa-cp.c (propagate_vr_accross_jump_function): Drop TREE_OVERFLOW
4198         from constant while creating value range.
4200 2016-09-23  Renlin Li  <renlin.li@arm.com>
4202         * ira.c (ira): Move ira_use_lra_p initialization code to ...
4203         (ira_init_once): Here.
4205 2016-09-23  Uros Bizjak  <ubizjak@gmail.com>
4206             Jakub Jelinek  <jakub@redhat.com>
4208         * hooks.h (hook_uint_uintp_false): Rename to...
4209         (hook_bool_uint_uintp_false): ... this.
4210         * hooks.c (hook_uint_uintp_false): Rename to...
4211         (hook_bool_uint_uintp_false): ... this.
4212         * target.def (elf_flags_numeric): Use hook_bool_uint_uintp_false
4213         instead of hook_uint_uintp_false.
4215 2016-09-23  Matthew Wahab  <matthew.wahab@arm.com>
4217         * config/arm/arm-builtins.c (arm_init_neon_builtin): New.
4218         (arm_init_builtins): Move body of a loop to the standalone
4219         function arm_init_neon_builtin.
4220         (arm_expand_neon_builtin_1): New.  Update comment.  Function body
4221         moved from arm_neon_builtin with some white-space fixes.
4222         (arm_expand_neon_builtin): Move code into the standalone function
4223         arm_expand_neon_builtin_1.
4225 2016-09-23  Matthew Wahab  <matthew.wahab@arm.com>
4227         * config/arm/iterators.md (VCVTHI): New.
4228         (NEON_VCMP): Add UNSPEC_VCLT and UNSPEC_VCLE.  Fix a long line.
4229         (NEON_VAGLTE): New.
4230         (VFM_LANE_AS): New.
4231         (VH_CVTTO): New.
4232         (V_reg): Add HF, V4HF and V8HF.  Fix white-space.
4233         (V_HALF): Add V4HF.  Fix white-space.
4234         (V_if_elem): Add HF, V4HF and V8HF.  Fix white-space.
4235         (V_s_elem): Likewise.
4236         (V_sz_elem): Fix white-space.
4237         (V_elem_ch): Likewise.
4238         (VH_elem_ch): New.
4239         (scalar_mul_constraint): Add V8HF and V4HF.
4240         (Is_float_mode): Fix white-space.
4241         (Is_d_reg): Add V4HF and V8HF.  Fix white-space.
4242         (q): Add HF.  Fix white-space.
4243         (float_sup): New.
4244         (float_SUP): New.
4245         (cmp_op_unsp): Add UNSPEC_VCALE and UNSPEC_VCALT.
4246         (neon_vfm_lane_as): New.
4247         * config/arm/neon.md (add<mode>3_fp16): New.
4248         (sub<mode>3_fp16): New.
4249         (mul<mode>3add<mode>_neon): New.
4250         (fma<VH:mode>4_intrinsic): New.
4251         (fmsub<VCVTF:mode>4_intrinsic): Fix white-space.
4252         (fmsub<VH:mode>4_intrinsic): New.
4253         (<absneg_str><mode>2): New.
4254         (neon_v<absneg_str><mode>): New.
4255         (neon_v<fp16_rnd_str><mode>): New.
4256         (neon_vrsqrte<mode>): New.
4257         (neon_vpaddv4hf): New.
4258         (neon_vadd<mode>): New.
4259         (neon_vsub<mode>): New.
4260         (neon_vmulf<mode>): New.
4261         (neon_vfma<VH:mode>): New.
4262         (neon_vfms<VH:mode>): New.
4263         (neon_vc<cmp_op><mode>): New.
4264         (neon_vc<cmp_op><mode>_fp16insn): New
4265         (neon_vc<cmp_op_unsp><mode>_fp16insn_unspec): New.
4266         (neon_vca<cmp_op><mode>): New.
4267         (neon_vca<cmp_op><mode>_fp16insn): New.
4268         (neon_vca<cmp_op_unsp><mode>_fp16insn_unspec): New.
4269         (neon_vc<cmp_op>z<mode>): New.
4270         (neon_vabd<mode>): New.
4271         (neon_v<maxmin>f<mode>): New.
4272         (neon_vp<maxmin>fv4hf: New.
4273         (neon_<fmaxmin_op><mode>): New.
4274         (neon_vrecps<mode>): New.
4275         (neon_vrsqrts<mode>): New.
4276         (neon_vrecpe<mode>): New (VH variant).
4277         (neon_vdup_lane<mode>_internal): New.
4278         (neon_vdup_lane<mode>): New.
4279         (neon_vcvt<sup><mode>): New (VCVTHI variant).
4280         (neon_vcvt<sup><mode>): New (VH variant).
4281         (neon_vcvt<sup>_n<mode>): New (VH variant).
4282         (neon_vcvt<sup>_n<mode>): New (VCVTHI variant).
4283         (neon_vcvt<vcvth_op><sup><mode>): New.
4284         (neon_vmul_lane<mode>): New.
4285         (neon_vmul_n<mode>): New.
4286         * config/arm/unspecs.md (UNSPEC_VCALE): New
4287         (UNSPEC_VCALT): New.
4288         (UNSPEC_VFMA_LANE): New.
4289         (UNSPECS_VFMS_LANE): New.
4291 2016-09-23  Dominik Vogt  <vogt@linux.vnet.ibm.com>
4293         * config/s390/s390.md ("*extzv<mode>_zEC12", "*extzv<mode>_z10")
4294         ("*extzv<mode><clobbercc_or_nocc>"):
4295         Correct a typo in a comment.
4296         Merged patterns.
4297         ("*insv<mode>_zEC12", "*insv<mode>_z10")
4298         ("*insv<mode><clobbercc_or_nocc>"): Ditto.
4299         ("*insv<mode>_zEC12_appendbitsleft")
4300         ("*insv<mode><clobbercc_or_nocc>_appendbitsleft")
4301         ("*insv<mode>_z10_appendbitsleft"): Ditto.
4302         ("*insv<mode>_zEC12_noshift", "*insv<mode>_z10_noshift")
4303         ("*insv<mode><clobbercc_or_nocc>_noshift"): Ditto.
4304         Provide pattern with operands switched.
4305         ("*pre_z10_extv<mode>"):
4306         Use new subst patterns.
4307         ("*extzvdi<clobbercc_or_nocc>_lshiftrt", "*<risbg_n>_ior_and_sr_ze")
4308         ("*extvsidi<clobbercc_or_nocc>", "*<risbg_n>_and_subregdi_rotr")
4309         ("*<risbg_n>_and_subregdi_rotl", "*<risbg_n>_di_and_rot")
4310         ("*insv_z10_noshift_cc", "*insv_z10_noshift_cconly")
4311         ("*<risbg_n>_<mode>_ior_and_lshiftrt")
4312         ("*<risbg_n>_sidi_ior_and_lshiftrt")
4313         ("*trunc_sidi_and_subreg_lshrt<clobbercc_or_nocc>"):
4314         New patterns.
4315         ("*extzv_<mode>_sll", "*extzv_<mode>_srl")
4316         ("*extzv_<mode>_srl<clobbercc_or_nocc>")
4317         ("*extzv_<mode>_sll<clobbercc_or_nocc>"): Renamed patterns, use risbgn
4318         on zEC12.
4319         ("SINT"): New mode_iterator with SI, HI, QI.
4320         * config/s390/subst.md ("clobbercc_or_nocc_subst", "z10_or_zEC12_cond")
4321         ("clobbercc_or_nocc", "risbg_n"): New constructs for risbg pattern
4322         duplication.
4324 2016-09-23  Dominik Vogt  <vogt@linux.vnet.ibm.com>
4326         * config/s390/predicates.md ("contiguous_bitmask_operand"): Adapt to
4327         new interface of s390_contiguous_bitmask_p.
4328         ("contiguous_bitmask_nowrap_operand"): New predicate.
4329         ("*anddi3_cc", "*anddi3_cconly", "*anddi3"): Replace NxxDq with NxxDw.
4330         * config/s390/constraints.md ("NxxDw", "NxxSq"): Adapt to new interface
4331         of s390_contiguous_bitmask_p.
4332         ("NxxDw"): Rename NxxDq constraint to NxxDw.
4333         ("NxxSw"): New constraint.
4334         * config/s390/s390.md ("*andsi3_zarch"): Enable bitmask wraparound.
4335         * config/s390/s390-protos.h (s390_contiguous_bitmask_p): Updated
4336         interface.
4337         (s390_contiguous_bitmask_nowrap_p): Export.
4338         * config/s390/s390.c (s390_contiguous_bitmask_nowrap_p): New name of
4339         former s390_contiguous_bitmask_p.
4340         (s390_contiguous_bitmask_p): Use s390_contiguous_bitmask_nowrap_p to
4341         detect contiguous bit ranges with wraparound.  Change signature to
4342         return START and END position instead of POS and LENGTH.
4343         (s390_contiguous_bitmask_vector_p): Remove extra code for continous bit
4344         ranges with wraparound.
4345         (s390_extzv_shift_ok): Use s390_contiguous_bitmask_nowrap_p.
4346         (s390_contiguous_bitmask_vector_p,s390_extzv_shift_ok,print_operand):
4347         Adapt to new signature of s390_contiguous_bitmask_p.
4349 2016-09-23  Bin Cheng  <bin.cheng@arm.com>
4351         * tree-vect-loop-manip.c (create_intersect_range_checks_index): New.
4352         (create_intersect_range_checks): New.
4353         (vect_create_cond_for_alias_checks): Call above function.
4355 2016-09-23  Matthew Wahab  <matthew.wahab@arm.com>
4357         * config/arm/iterators.md (Code iterators): Fix some white-space
4358         in the comments.
4359         (GLTE): New.
4360         (ABSNEG): New
4361         (FCVT): Moved from vfp.md.
4362         (VCVT_HF_US_N): New.
4363         (VCVT_SI_US_N): New.
4364         (VCVT_HF_US): New.
4365         (VCVTH_US): New.
4366         (FP16_RND): New.
4367         (absneg_str): New.
4368         (FCVTI32typename): Moved from vfp.md.
4369         (sup): Add UNSPEC_VCVTA_S, UNSPEC_VCVTA_U, UNSPEC_VCVTM_S,
4370         UNSPEC_VCVTM_U, UNSPEC_VCVTN_S, UNSPEC_VCVTN_U, UNSPEC_VCVTP_S,
4371         UNSPEC_VCVTP_U, UNSPEC_VCVT_HF_S_N, UNSPEC_VCVT_HF_U_N,
4372         UNSPEC_VCVT_SI_S_N, UNSPEC_VCVT_SI_U_N,  UNSPEC_VCVTH_S_N,
4373         UNSPEC_VCVTH_U_N, UNSPEC_VCVTH_S and UNSPEC_VCVTH_U.
4374         (vcvth_op): New.
4375         (fp16_rnd_str): New.
4376         (fp16_rnd_insn): New.
4377         * config/arm/unspecs.md (UNSPEC_VCVT_HF_S_N): New.
4378         (UNSPEC_VCVT_HF_U_N): New.
4379         (UNSPEC_VCVT_SI_S_N): New.
4380         (UNSPEC_VCVT_SI_U_N): New.
4381         (UNSPEC_VCVTH_S): New.
4382         (UNSPEC_VCVTH_U): New.
4383         (UNSPEC_VCVTA_S): New.
4384         (UNSPEC_VCVTA_U): New.
4385         (UNSPEC_VCVTM_S): New.
4386         (UNSPEC_VCVTM_U): New.
4387         (UNSPEC_VCVTN_S): New.
4388         (UNSPEC_VCVTN_U): New.
4389         (UNSPEC_VCVTP_S): New.
4390         (UNSPEC_VCVTP_U): New.
4391         (UNSPEC_VCVTP_S): New.
4392         (UNSPEC_VCVTP_U): New.
4393         (UNSPEC_VRND): New.
4394         (UNSPEC_VRNDA): New.
4395         (UNSPEC_VRNDI): New.
4396         (UNSPEC_VRNDM): New.
4397         (UNSPEC_VRNDN): New.
4398         (UNSPEC_VRNDP): New.
4399         (UNSPEC_VRNDX): New.
4400         * config/arm/vfp.md (<absneg_str>hf2): New.
4401         (neon_vabshf): New.
4402         (neon_v<fp16_rnd_str>hf): New.
4403         (neon_vrndihf): New.
4404         (addhf3): New.
4405         (subhf3): New.
4406         (divhf3): New.
4407         (mulhf3): New.
4408         (*mulsf3neghf_vfp): New.
4409         (*negmulhf3_vfp): New.
4410         (*mulsf3addhf_vfp): New.
4411         (*mulhf3subhf_vfp): New.
4412         (*mulhf3neghfaddhf_vfp): New.
4413         (*mulhf3neghfsubhf_vfp): New.
4414         (fmahf4): New.
4415         (neon_vfmahf): New.
4416         (fmsubhf4_fp16): New.
4417         (neon_vfmshf): New.
4418         (*fnmsubhf4): New.
4419         (*fnmaddhf4): New.
4420         (neon_vsqrthf): New.
4421         (neon_vrsqrtshf): New.
4422         (FCVT): Move to iterators.md.
4423         (FCVTI32typename): Likewise.
4424         (neon_vcvth<sup>hf): New.
4425         (neon_vcvth<sup>si): New.
4426         (neon_vcvth<sup>_nhf_unspec): New.
4427         (neon_vcvth<sup>_nhf): New.
4428         (neon_vcvth<sup>_nsi_unspec): New.
4429         (neon_vcvth<sup>_nsi): New.
4430         (neon_vcvt<vcvth_op>h<sup>si): New.
4431         (neon_<fmaxmin_op>hf): New.
4433 2016-09-23  Dominik Vogt  <vogt@linux.vnet.ibm.com>
4435         * config/s390/s390.md (bitoff, bitoff_plus): Neq mode attributes.
4436         ("*extzv<mode>_zEC12", "*insv<mode>_zEC12", "*insv<mode>_z10")
4437         ("*insv<mode>_zEC12_appendbitsleft")
4438         ("*insv<mode>_z10_appendbitsleft", "*r<noxa>sbg_<mode>_sll")
4439         ("*r<noxa>sbg_<mode>_srl"): Use new attributes.
4441 2016-09-23  Jakub Jelinek  <jakub@redhat.com>
4443         * ipa-cp.c (ipcp_store_vr_results): Avoid static local var zero.
4444         * sreal.h (sreal::min, sreal::max): Avoid static local vars,
4445         construct values without normalization.
4446         * tree-ssa-sccvn.c (vn_reference_lookup_3): Don't initialize
4447         static local lhs_ops to vNULL.
4449 2016-09-23  Matthew Wahab  <matthew.wahab@arm.com>
4450             Jiong Wang <jiong.wang@arm.com>
4452         * config/arm/arm.c (coproc_secondary_reload_class): Make HFmode
4453         available when FP16 instructions are available.
4454         (output_move_vfp): Add support for 16-bit data moves.
4455         (arm_validize_comparison): Fix some white-space.  Support HFmode
4456         by conversion to SFmode.
4457         * config/arm/arm.md (truncdfhf2): Fix a comment.
4458         (extendhfdf2): Likewise.
4459         (cstorehf4): New.
4460         (movsicc): Fix some white-space.
4461         (movhfcc): New.
4462         (movsfcc): Fix some white-space.
4463         (*cmovhf): New.
4464         * config/arm/vfp.md (*arm_movhi_vfp): Disable when VFP FP16
4465         instructions are available.
4466         (*thumb2_movhi_vfp): Likewise.
4467         (*arm_movhi_fp16): New.
4468         (*thumb2_movhi_fp16): New.
4469         (*movhf_vfp_fp16): New.
4470         (*movhf_vfp_neon): Disable when VFP FP16 instructions are available.
4471         (*movhf_vfp): Likewise.
4472         (extendhfsf2): Enable when VFP FP16 instructions are available.
4473         (truncsfhf2):  Enable when VFP FP16 instructions are available.
4475 2016-09-23  Martin Liska  <mliska@suse.cz>
4477         * config/s390/vx-builtins.md: Replace 'adress' with 'address'.
4479 2016-09-23  Matthew Wahab  <matthew.wahab@arm.com>
4481         * config/arm/arm.c (arm_evpc_neon_vuzp): Add support for V8HF and
4482         V4HF modes.
4483         (arm_evpc_neon_vtrn): Likewise.
4484         (arm_evpc_neon_vrev): Likewise.
4485         (arm_evpc_neon_vext): Likewise.
4486         * config/arm/arm_neon.h (vbsl_f16): New.
4487         (vbslq_f16): New.
4488         (vdup_n_f16): New.
4489         (vdupq_n_f16): New.
4490         (vdup_lane_f16): New.
4491         (vdupq_lane_f16): New.
4492         (vext_f16): New.
4493         (vextq_f16): New.
4494         (vmov_n_f16): New.
4495         (vmovq_n_f16): New.
4496         (vrev64_f16): New.
4497         (vrev64q_f16): New.
4498         (vtrn_f16): New.
4499         (vtrnq_f16): New.
4500         (vuzp_f16): New.
4501         (vuzpq_f16): New.
4502         (vzip_f16): New.
4503         (vzipq_f16): New.
4504         * config/arm/arm_neon_buillins.def (vdup_n): New (v8hf, v4hf variants).
4505         (vdup_lane): New (v8hf, v4hf variants).
4506         (vext): New (v8hf, v4hf variants).
4507         (vbsl): New (v8hf, v4hf variants).
4508         * config/arm/iterators.md (VDQWH): New.
4509         (VH): New.
4510         (V_double_vector_mode): Add V8HF and V4HF.  Fix white-space.
4511         (Scalar_mul_8_16): Fix white-space.
4512         (Is_d_reg): Add V4HF and V8HF.
4513         * config/arm/neon.md (neon_vdup_lane<mode>_internal): New.
4514         (neon_vdup_lane<mode>): New.
4515         (neon_vtrn<mode>_internal): Replace VDQW with VDQWH.
4516         (*neon_vtrn<mode>_insn): Likewise.
4517         (neon_vzip<mode>_internal): Likewise. Also fix white-space.
4518         (*neon_vzip<mode>_insn): Likewise
4519         (neon_vuzp<mode>_internal): Likewise.
4520         (*neon_vuzp<mode>_insn): Likewise
4521         * config/arm/vec-common.md (vec_perm_const<mode>): New.
4523 2016-09-23  Jiong Wang  <jiong.wang@arm.com>
4524             Matthew Wahab  <matthew.wahab@arm.com>
4526         * config/arm/arm.c (output_move_vfp): Weaken assert to allow HImode.
4527         (arm_hard_regno_mode_ok): Allow HImode values in VFP registers.
4528         * config/arm/arm.md (*movhi_bytes): Disable when VFP registers are
4529         available.  Also fix some white-space.
4530         * config/arm/vfp.md (*arm_movhi_vfp): New.
4531         (*thumb2_movhi_vfp): New.
4533 2016-09-23  Matthew Wahab  <matthew.wahab@arm.com>
4535         * config/arm/arm-c.c (arm_cpu_builtins): Define
4536         "__ARM_FEATURE_FP16_SCALAR_ARITHMETIC" and
4537         "__ARM_FEATURE_FP16_VECTOR_ARITHMETIC".
4539 2016-09-23  Matthew Wahab  <matthew.wahab@arm.com>
4541         * doc/sourcebuild.texi (ARM-specific attributes): Add anchor for
4542         arm_v8_1a_neon_ok.  Add entries for arm_v8_2a_fp16_scalar_ok,
4543         arm_v8_2a_fp16_scalar_hw, arm_v8_2a_fp16_neon_ok and
4544         arm_v8_2a_fp16_neon_hw.
4545         (Add options): Add entries for arm_v8_1a_neon, arm_v8_2a_scalar,
4546         arm_v8_2a_neon.
4548 2016-09-23  Matthew Wahab  <matthew.wahab@arm.com>
4550         * doc/sourcebuild.texi (ARM-specific attributes): Add entries for
4551         arm_fp16_alternative_ok and arm_fp16_none_ok.
4553 2016-09-23  Martin Liska  <mliska@suse.cz>
4555         * ipa-icf.c (sem_variable::merge): Replace adress with address.
4557 2016-09-23  Matthew Wahab  <matthew.wahab@arm.com>
4559         * config/arm/arm-arches.def ("armv8.1-a"): Add FL_CRC32.
4560         ("armv8.2-a"): New.
4561         ("armv8.2-a+fp16"): New.
4562         * config/arm/arm-protos.h (FL2_ARCH8_2): New.
4563         (FL2_FP16INST): New.
4564         (FL2_FOR_ARCH8_2A): New.
4565         * config/arm/arm-tables.opt: Regenerate.
4566         * config/arm/arm.c (arm_arch8_2): New.
4567         (arm_fp16_inst): New.
4568         (arm_option_override): Set arm_arch8_2 and arm_fp16_inst.  Check
4569         for incompatible fp16-format settings.
4570         * config/arm/arm.h (TARGET_VFP_FP16INST): New.
4571         (TARGET_NEON_FP16INST): New.
4572         (arm_arch8_2): Declare.
4573         (arm_fp16_inst): Declare.
4574         * config/arm/bpabi.h (BE8_LINK_SPEC): Add entries for
4575         march=armv8.2-a and march=armv8.2-a+fp16.
4576         * config/arm/t-aprofile (Arch Matches): Add entries for armv8.2-a
4577         and armv8.2-a+fp16.
4578         * doc/invoke.texi (ARM Options): Add "-march=armv8.1-a",
4579         "-march=armv8.2-a" and "-march=armv8.2-a+fp16".
4581 2016-09-23  Martin Liska  <mliska@suse.cz>
4583         * doc/extend.texi: Remove fused-madd from i386 target options.
4585 2016-09-23  Martin Liska  <mliska@suse.cz>
4587         * config/i386/i386.c (ix86_valid_target_attribute_inner_p):
4588         Handle movbe.
4590 2016-09-23  Martin Liska  <mliska@suse.cz>
4592         * config/i386/i386.c (ix86_valid_target_attribute_inner_p):
4593         Handle crc32.
4595 2016-09-23  Martin Liska  <mliska@suse.cz>
4597         PR target/71652
4598         * config/i386/i386.c (ix86_option_override_internal): Change
4599         signature and return false when there's an error related to
4600         arch string.
4601         (release_options_strings): New function.
4602         (ix86_valid_target_attribute_tree): Call the function.
4604 2016-09-23  Jakub Jelinek  <jakub@redhat.com>
4606         * hsa-gen.c (hsa_op_immed::hsa_op_immed Use CONSTRUCTOR_NELTS (...)
4607         instead of vec_safe_length (CONSTRUCTOR_ELTS (...)).
4608         (gen_hsa_ctor_assignment): Likewise.
4609         * print-tree.c (print_node): Likewise.
4610         * tree-dump.c (dequeue_and_dump): Likewise.
4611         * tree-sra.c (sra_modify_constructor_assign): Likewise.
4612         * expr.c (store_constructor): Likewise.
4613         * fold-const.c (operand_equal_p): Likewise.
4614         * tree-pretty-print.c (dump_generic_node): Likewise.
4615         * hsa-brig.c (hsa_op_immed::emit_to_buffer): Likewise.
4616         * ipa-icf-gimple.c (func_checker::compare_operand): Likewise.
4618 2016-09-23  Richard Biener  <rguenther@suse.de>
4620         * hooks.h (hook_uint_uintp_false): Declare.
4622 2016-09-22  Senthil Kumar Selvaraj  <senthil_kumar.selvaraj@atmel.com>
4624         * config/avr/avr.c (avr_rtx_costs_1): Handle DImode MULT.
4625         (avr_address_cost): Replace 61 with MAX_LD_OFFSET(mode).
4627 2016-09-22  Martin Sebor  <msebor@redhat.com>
4629         PR target/77676
4630         * gimple-ssa-sprintf.c (target_int_min, target_int_max): Use
4631         HOST_BITS_PER_WIDE_INT, make a static local variable auto.
4632         (target_int_min): Correct computation.
4633         (format_integer): Use long long as the argument for the ll length
4634         modifier.
4635         (format_floating): Use target_int_max().
4636         (get_string_length): Same.
4637         (format_string): Avoid setting the bounded flag for strings
4638         of unknown length.
4639         (try_substitute_return_value): Avoid setting range info when
4640         the result isn't bounded.
4641         * varasm.c (assemble_name): Increase buffer size.
4643 2016-09-22  Andre Vieira  <andre.simoesdiasvieira@arm.com>
4644             Terry Guo  <terry.guo@arm.com>
4646         * target.def (elf_flags_numeric): New target hook.
4647         * targhooks.h (default_asm_elf_flags_numeric): New.
4648         * varasm.c (default_asm_elf_flags_numeric): New.
4649         (default_elf_asm_named_section): Use new target hook.
4650         * config/arm/arm.opt (mpure-code): New.
4651         * config/arm/arm.h (SECTION_ARM_PURECODE): New.
4652         * config/arm/arm.c (arm_asm_init_sections): Add section
4653         attribute to default text section if -mpure-code.
4654         (arm_option_check_internal): Diagnose use of option with
4655         non supported targets and/or options.
4656         (arm_asm_elf_flags_numeric): New.
4657         (arm_function_section): New.
4658         (arm_elf_section_type_flags): New.
4659         * config/arm/elf.h (JUMP_TABLES_IN_TEXT_SECTION): Disable
4660         for -mpure-code.
4661         * gcc/doc/texi (TARGET_ASM_ELF_FLAGS_NUMERIC): New.
4662         * gcc/doc/texi.in (TARGET_ASM_ELF_FLAGS_NUMERIC): Likewise.
4664 2016-09-22  Jan Hubicka  <hubicka@ucw.cz>
4666         * regcprop.c (copyprop_hardreg_forward_1): Remove noop moves.
4668 2016-09-22  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
4670         * emit-rtl.c (next_cc0_user): Make argument type rtx_insn *.
4671         * rtl.h: Adjust prototype.
4673 2016-09-22  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
4675         * emit-rtl.c (next_active_insn): Change argument type to rtx_insn *.
4676         (prev_active_insn): Likewise.
4677         (active_insn_p): Likewise.
4678         * rtl.h: Adjust prototypes.
4679         * cfgcleanup.c (merge_blocks_move_successor_nojumps): Adjust.
4680         * config/arc/arc.md: Likewise.
4681         * config/pa/pa.c (branch_to_delay_slot_p): Likewise.
4682         (branch_needs_nop_p): Likewise.
4683         (use_skip_p): Likewise.
4684         * config/sh/sh.c (gen_block_redirect): Likewise.
4685         (split_branches): Likewise.
4686         * reorg.c (optimize_skip): Likewise.
4687         (fill_simple_delay_slots): Likewise.
4688         (fill_slots_from_thread): Likewise.
4689         (relax_delay_slots): Likewise.
4690         * resource.c (mark_target_live_regs): Likewise.
4692 2016-09-22  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
4694         * config/cris/cris.c (cris_asm_output_case_end): Change argument
4695         type to rtx_insn *.
4696         * emit-rtl.c (next_nonnote_nondebug_insn): Likewise.
4697         (prev_nonnote_nondebug_insn): Likewise.
4698         * config/cris/cris-protos.h: Adjust prototype.
4699         * rtl.h: Likewise.
4700         * jump.c (rtx_renumbered_equal_p): Adjust.
4702 2016-09-22  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
4704         * emit-rtl.c (prev_real_insn): Change argument type to rtx_insn *.
4705         * rtl.h: Adjust prototype.
4706         * config/sh/sh.md: Adjust.
4707         * dwarf2out.c (add_var_loc_to_decl): Likewise.
4709 2016-09-22  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
4711         * emit-rtl.c (next_nondebug_insn): Change argument type to rtx_insn *.
4712         (prev_nondebug_insn): Likewise.
4713         * loop-doloop.c (doloop_condition_get): Likewise.
4714         * rtl.h: Adjust prototype.
4715         * cfgloop.h: Likewise.
4717 2016-09-22  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
4719         * emit-rtl.c (next_nonnote_insn): Change argument type to rtx_insn *.
4720         (prev_nonnote_insn): Likewise.
4721         * jump.c (reversed_comparison_code_parts): Likewise.
4722         (reversed_comparison): Likewise.
4723         * rtl.h: Adjust prototypes.
4724         * config/arc/arc.md: Adjust.
4725         * cse.c (find_comparison_args): Likewise.
4726         * reorg.c (redundant_insn): Change return type to rtx_insn *.
4727         (fix_reg_dead_note): Change argument type to rtx_insn *.
4728         (delete_prior_computation): Likewise.
4729         (delete_computation): Likewise.
4730         (fill_slots_from_thread): Adjust.
4731         (relax_delay_slots): Likewise.
4732         * simplify-rtx.c (simplify_unary_operation_1): Likewise.
4733         (simplify_relational_operation_1): Likewise.
4734         (simplify_ternary_operation): Likewise.
4736 2016-09-22  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
4738         * config/arc/arc-protos.h (arc_label_align): Change type of
4739         variables from rtx to rtx_insn *.
4740         * config/arc/arc.c (arc_label_align): Likewise.
4741         * config/arm/arm.c (any_sibcall_could_use_r3): Likewise.
4742         * config/bfin/bfin.c (workaround_speculation): Likewise.
4743         * config/c6x/c6x.c (find_next_cycle_insn): Likewise.
4744         (find_last_same_clock): Likewise.
4745         (reorg_split_calls): Likewise.
4746         * config/cris/cris-protos.h (cris_cc0_user_requires_cmp): Likewise.
4747         * config/cris/cris.c (cris_cc0_user_requires_cmp): Likewise.
4748         * config/h8300/h8300-protos.h (same_cmp_preceding_p): Likewise.
4749         (same_cmp_following_p): Likewise.
4750         * config/h8300/h8300.c (same_cmp_preceding_p): Likewise.
4751         (same_cmp_following_p): Likwise.
4752         * config/m32r/m32r.c (m32r_expand_epilogue): Likewise.
4753         * config/nds32/nds32-protos.h (nds32_target_alignment): Likewise.
4754         * config/nds32/nds32.c (nds32_target_alignment): Likewise.
4755         * config/rl78/rl78.c (rl78_alloc_physical_registers_op2): Likewise.
4756         (rl78_alloc_physical_registers_cmp): Likewise.
4757         (rl78_alloc_physical_registers_umul): Likewise.
4758         (rl78_calculate_death_notes): Likewise.
4759         * config/s390/s390-protos.h (s390_label_align): Likewise.
4760         * config/s390/s390.c (s390_label_align): Likewise.
4761         * config/sh/sh.c (barrier_align): Likewise.
4762         * config/sparc/sparc-protos.h (emit_cbcond_nop): Likewise.
4763         * config/sparc/sparc.c (sparc_asm_function_epilogue): Likewise.
4764         (emit_cbcond_nop): Likewise.
4766 2016-09-22  Martin Liska  <mliska@suse.cz>
4768         PR ipa/77653
4769         * ipa-icf.c (sem_variable::merge): Yield merge operation if
4770         alias address matters, not necessarily address of original.
4772 2016-09-22  Richard Biener  <rguenther@suse.de>
4774         PR middle-end/77697
4775         * gimple-fold.c (fold_array_ctor_reference): Turn asserts into
4776         fold fails.
4778 2016-09-22  Richard Biener  <rguenther@suse.de>
4780         PR middle-end/77677
4781         * gimple-match-head.c (gimple_resimplify1): Drop TREE_OVERFLOW
4782         from constant folding results.
4783         (gimple_resimplify2): Likewise.
4784         (gimple_resimplify3): Likewise.
4786 2016-09-22  Richard Biener  <rguenther@suse.de>
4788         PR middle-end/77678
4789         * expr.c (expand_expr_real_1): Guard array access against negative
4790         offset.
4792 2016-09-22  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
4794         * gimple-ssa-sprintf.c (format_floating_max): Use GMP_RNDN instead
4795         of MPFR_RNDN.
4796         (format_floating): Likewise.
4798 2016-09-22  Jakub Jelinek  <jakub@redhat.com>
4800         PR fortran/77665
4801         * tree-inline.c (remap_gimple_stmt): Set has_simduid_loops
4802         for all IFN_GOMP_SIMD_* internal fns, not just for
4803         IFN_GOMP_SIMD_ORDERED_*.
4805 2016-09-21  Michael Meissner  <meissner@linux.vnet.ibm.com>
4807         PR target/77670
4808         * config/rs6000/predicates.md (invert_fpmask_comparison_operator):
4809         New predicate that matches the ISA 3.0 XSCMP{EQ,GT,GE}DP
4810         instructions when you want to invert the test.
4811         * config/rs6000/rs6000.md (fpmask<mode>): Use the arguments in the
4812         correct order for XXSEL.
4813         (mov<SFDF:mode><SFDF2:mode>cc_invert_p9): Define the inverted test
4814         for using XSCMP{EQ,GT,GE}DP.
4816 2016-09-21  David Malcolm  <dmalcolm@redhat.com>
4818         * genconstants.c (main): Introduce noop_reader and convert call
4819         to read_md_files to a method call.
4820         * genenums.c (main): Likewise.
4821         * genmddeps.c (main): Likewise.
4822         * genpreds.c (write_tm_constrs_h): Replace use of "in_fname" with
4823         rtx_reader_ptr->get_top_level_filename ().
4824         (write_tm_preds_h): Likewise.
4825         (write_insn_preds_c): Likewise.
4826         * gensupport.c (class gen_reader): New subclass of rtx_reader.
4827         (rtx_handle_directive): Convert to...
4828         (gen_reader::handle_unknown_directive): ...this.
4829         (init_rtx_reader_args_cb): Convert return type from bool to
4830         rtx_reader *.  Create a gen_reader instance, using it for the
4831         call to read_md_files.  Return it if no errors occur.
4832         (init_rtx_reader_args): Convert return type from bool to
4833         rtx_reader *.
4834         * gensupport.h (init_rtx_reader_args_cb): Likewise.
4835         (init_rtx_reader_args_cb): Likewise.
4836         * read-md.c (struct file_name_list): Move to class rtx_reader.
4837         (read_md_file): Delete in favor of rtx_reader::m_read_md_file.
4838         (read_md_filename): Delete in favor of
4839         rtx_reader::m_read_md_filename.
4840         (read_md_lineno): Delete in favor of rtx_reader::m_read_md_lineno.
4841         (in_fname): Delete in favor of rtx_reader::m_toplevel_fname.
4842         (base_dir): Delete in favor of rtx_reader::m_base_dir.
4843         (first_dir_md_include): Delete in favor of
4844         rtx_reader::m_first_dir_md_include.
4845         (last_dir_md_include_ptr): Delete in favor of
4846         rtx_reader::m_last_dir_md_include_ptr.
4847         (max_include_len): Delete.
4848         (rtx_reader_ptr): New.
4849         (fatal_with_file_and_line): Use get_filename and get_lineno
4850         accessors of rtx_reader_ptr.
4851         (require_char_ws): Likewise.
4852         (rtx_reader::read_char): New method, based on ::read_char.
4853         (rtx_reader::unread_char): New method, based on ::unread_char.
4854         (read_escape): Use get_filename and get_lineno accessors of
4855         rtx_reader_ptr.
4856         (read_braced_string): Use get_lineno accessor of rtx_reader_ptr.
4857         (read_string): Use get_filename and get_lineno accessors of
4858         rtx_reader_ptr.
4859         (rtx_reader::rtx_reader): New ctor.
4860         (rtx_reader::~rtx_reader): New dtor.
4861         (handle_include): Convert from a function to...
4862         (rtx_reader::handle_include): ...this method, converting
4863         handle_directive from a callback to a virtual function.
4864         (handle_file): Likewise, converting to...
4865         (rtx_reader::handle_file): ...this method.
4866         (handle_toplevel_file): Likewise, converting to...
4867         (rtx_reader::handle_toplevel_file): ...this method.
4868         (rtx_reader::get_current_location): New method.
4869         (parse_include): Convert from a function to...
4870         (rtx_reader::add_include_path): ...this method, dropping redundant
4871         update to unused max_include_len.
4872         (read_md_files): Convert from a function to...
4873         (rtx_reader::read_md_files): ...this method, converting
4874         handle_directive from a callback to a virtual function.
4875         (noop_reader::handle_unknown_directive): New method.
4876         * read-md.h (directive_handler_t): Delete this typedef.
4877         (in_fname): Delete.
4878         (read_md_file): Delete.
4879         (read_md_lineno): Delete.
4880         (read_md_filename): Delete.
4881         (class rtx_reader): New class.
4882         (rtx_reader_ptr): New decl.
4883         (class noop_reader): New subclass of rtx_reader.
4884         (read_char): Reimplement in terms of rtx_reader::read_char.
4885         (unread_char): Reimplement in terms of rtx_reader::unread_char.
4886         (read_md_files): Delete.
4887         * read-rtl.c (read_rtx_code): Update for deletion of globals
4888         read_md_filename and read_md_lineno.
4890 2016-09-21  Jason Merrill  <jason@redhat.com>
4892         * input.h (from_macro_definition_at): New.
4894 2016-09-21  Segher Boessenkool  <segher@kernel.crashing.org>
4896         * doc/rtl.texi (JUMP_LABEL): Document RETURN and SIMPLE_RETURN values.
4898 2016-09-21  Bernd Edlinger  <bernd.edlinger@hotmail.de>
4900         PR tree-optimization/77550
4901         * tree-vect-stmts.c (create_array_ref): Change parameters.
4902         (get_group_alias_ptr_type): New function.
4903         (vectorizable_store, vectorizable_load): Use get_group_alias_ptr_type.
4905 2016-09-21  Marek Polacek  <polacek@redhat.com>
4907         * gimple-ssa-sprintf.c (pass_sprintf_length::compute_format_length):
4908         Add falls through comment.
4910 2016-09-21  Richard Biener  <rguenther@suse.de>
4912         * dwarf2out.c (remove_child_with_prev): Clear child->die_sib.
4913         (replace_child): Likewise.
4914         (remove_child_TAG): Adjust.
4915         (move_marked_base_types): Likewise.
4916         (prune_unused_types_prune): Clear die_sib of removed children.
4918 2016-09-21  Georg-Johann Lay  <avr@gjlay.de>
4920         PR target/77326
4921         * config/avr/avr.c (avr_notice_update_cc) [CC_NONE]: If insn
4922         touches some regs mentioned in cc_status, do CC_STATUS_INIT.
4924 2016-09-21  Richard Biener  <rguenther@suse.de>
4926         PR tree-optimization/77648
4927         * tree-ssa-structalias.c (process_constraint): Handle all DEREF
4928         with complex RHS.
4929         (make_transitive_closure_constraints): Adjust comment.
4930         (make_any_offset_constraints): New function.
4931         (handle_rhs_call): Make sure to first expand a pointer to all
4932         subfields before transitively closing it.
4933         (handle_const_call): Likewise.  Properly expand returned
4934         pointers as well.
4935         (handle_pure_call): Likewise.
4937 2016-09-21  Richard Biener  <rguenther@suse.de>
4938             Jakub Jelinek  <jakub@redhat.com>
4940         PR tree-optimization/77621
4941         * tree-vect-data-refs.c (vect_analyze_data_ref_accesses): Split
4942         group at non-vectorizable stmts.
4944 2016-09-21  Kugan Vivekanandarajah  <kuganv@linaro.org>
4946         PR tree-optimization/72835
4947         * tree-ssa-reassoc.c (make_new_ssa_for_def): New.
4948         (make_new_ssa_for_all_defs): Likewise.
4949         (zero_one_operation): Replace all SSA_NAMEs defined in the chain.
4951 2016-09-20  Martin Sebor  <msebor@redhat.com>
4953         PR middle-end/49905
4954         * Makefile.in (OBJS): Add gimple-ssa-sprintf.o.
4955         * config/linux.h (TARGET_PRINTF_POINTER_FORMAT): Redefine.
4956         * config/linux.c (gnu_libc_printf_pointer_format): New function.
4957         * config/sol2.h (TARGET_PRINTF_POINTER_FORMAT): Same.
4958         * config/sol2.c (solaris_printf_pointer_format): New function.
4959         * doc/invoke.texi (-Wformat-length, -fprintf-return-value): New
4960         options.
4961         * doc/tm.texi.in (TARGET_PRINTF_POINTER_FORMAT): Document.
4962         * doc/tm.texi: Regenerate.
4963         * gimple-fold.h (get_range_strlen): New function.
4964         (get_maxval_strlen): Declare existing function.
4965         * gimple-fold.c (get_range_strlen): Add arguments and compute both
4966         maximum and minimum.
4967          (get_range_strlen): Define overload.
4968         (get_maxval_strlen): Adjust.
4969         * gimple-ssa-sprintf.c: New file and pass.
4970         * passes.def (pass_sprintf_length): Add new pass.
4971         * targhooks.h (default_printf_pointer_format): Declare new function.
4972         (gnu_libc_printf_pointer_format): Same.
4973         (solaris_libc_printf_pointer_format): Same.
4974         * targhooks.c (default_printf_pointer_format): Define new function.
4975         * tree-pass.h (make_pass_sprintf_length): Declare new function.
4976         * print-tree.c: Increase buffer size.
4978 2016-09-21  Kugan Vivekanandarajah  <kuganv@linaro.org>
4980         * tree-vrp.c (get_value_range): Teach PARM_DECL to use ipa-vrp results.
4982 2016-09-21  Kugan Vivekanandarajah  <kuganv@linaro.org>
4984         * common.opt: New option -fipa-vrp.
4985         * ipa-cp.c (ipa_get_vr_lat): New.
4986         (ipcp_vr_lattice::print): Likewise.
4987         (print_all_lattices): Call ipcp_vr_lattice::print.
4988         (ipcp_vr_lattice::meet_with): New.
4989         (ipcp_vr_lattice::meet_with_1): Likewise.
4990         (ipcp_vr_lattice::top_p): Likewise.
4991         (ipcp_vr_lattice::bottom_p): Likewsie.
4992         (ipcp_vr_lattice::set_to_bottom): Likewise.
4993         (set_all_contains_variable): Call VR set_to_bottom.
4994         (initialize_node_lattices): Init VR lattices.
4995         (propagate_vr_accross_jump_function): New.
4996         (propagate_constants_accross_call): Call
4997         propagate_vr_accross_jump_function.
4998         (ipcp_store_vr_results): New.
4999         (ipcp_driver): Handle VR.
5000         * ipa-prop.c (ipa_print_node_jump_functions_for_edge): Handle VR.
5001         (ipa_set_jf_unknown): Likewise.
5002         (ipa_compute_jump_functions_for_edge): Likewise.
5003         (ipa_node_params_t::duplicate): Likewise.
5004         (ipa_write_jump_function): Likewise.
5005         (ipa_read_jump_function): Likewise.
5006         (write_ipcp_transformation_info): Likewise.
5007         (read_ipcp_transformation_info): Likewise.
5008         (ipcp_update_vr): New.
5009         (ipcp_transform_function): Handle VR.
5010         * ipa-prop.h (struct ipa_vr): New.
5011         * cgraph.c: Include tree-vrp.h.
5012         * cgraphunit.c: Likewise.
5013         * ipa-utils.c: Likewise.
5014         * ipa.c: Likewise.
5015         * opts.c: Likewise.
5016         * toplev.c: Likewise.
5017         * ipa-devirt.c: Likewise.
5018         * ipa-inline-transform.c: Likewise.
5019         * ipa-inline.c: Likewise.
5020         * ipa-profile.c: Likewise.
5022 2016-09-21  Kugan Vivekanandarajah  <kuganv@linaro.org>
5024         * doc/invoke.texi: Document -fdump-tree-evrp.
5025         * passes.def: Define new pass_early_vrp.
5026         * timevar.def: Define new TV_TREE_EARLY_VRP.
5027         * tree-pass.h (make_pass_early_vrp): New.
5028         * tree-ssa-propagate.c: Make replace_uses_in non static.
5029         * tree-ssa-propagate.h: Export replace_uses_in.
5030         * tree-vrp.c (extract_range_for_var_from_comparison_expr): New.
5031         (extract_range_from_assert): Factor out
5032         extract_range_for_var_from_comparison_expr.
5033         (vrp_initialize_lattice): New.
5034         (vrp_initialize): Factor out vrp_initialize_lattice.
5035         (vrp_valueize): Fix it to reject complex value ranges.
5036         (vrp_free_lattice): New.
5037         (evrp_dom_walker::before_dom_children): Likewise.
5038         (evrp_dom_walker::after_dom_children): Likewise.
5039         (evrp_dom_walker::push_value_range): Likewise.
5040         (evrp_dom_walker::pop_value_range): Likewise.
5041         (execute_early_vrp): Likewise.
5042         (execute_vrp): Call vrp_initialize_lattice and vrp_free_lattice.
5043         (make_pass_early_vrp): New.
5045 2016-09-20  Uros Bizjak  <ubizjak@gmail.com>
5047         * config/i386/i386.md (mult->ashift peephole2s): Use pow2p_hwi
5048         instead of exact_log2.
5050 2016-09-20  Uros Bizjak  <ubizjak@gmail.com>
5052         PR target/77621
5053         * config/i386/i386.c (ix86_preferred_simd_mode) <case DFmode>:
5054         Don't return word_mode for !TARGET_VECTORIZE_DOUBLE.
5055         (ix86_add_stmt_cost): Penalize DFmode vector operations
5056         for !TARGET_VECTORIZE_DOUBLE.
5058 2016-09-20  Gerald Pfeifer  <gerald@pfeifer.com>
5060         * doc/invoke.texi (Warning Options): Simplify language.
5061         (Optimize Options): Complete sentence.
5063 2016-09-20  David Edelsohn  <dje.gcc@gmail.com>
5065         * dbxout.c (xcoff_debug_hooks):  Add filename parameter to
5066         early_finish hook.
5068 2016-09-20  Michael Meissner  <meissner@linux.vnet.ibm.com>
5070         PR target/71395
5071         * config/rs6000/rs6000.c (rs6000_expand_vector_init): For V4SF
5072         inits on power8 and above, use the VMRGEW instruction instead of a
5073         permute.
5075         * config/rs6000/altivec.md (UNSPEC_VMRGEW_DIRECT): New unspec.
5076         (p8_vmrgew_v4sf_direct): New VMRGEW insn for V4SF floating
5077         initialization.
5079 2016-09-20  Tamar Christina  <tamar.christina@arm.com>
5081         * config/aarch64/arm_neon.h
5082         (vst2_s64, vst2_u64, vst2_f64, vst2_s8): Add missing attributes.
5083         (vst3_s64, vst3_u64, vst3_f64, vst3_s8): Likewise.
5084         (vst4_s64, vst4_u64, vst4_f64, vst4_s8): Likewise.
5086 2016-09-20  Bernd Edlinger  <bernd.edlinger@hotmail.de>
5088         * config/var/vax.h (ELIMINABLE_REGS): Define.
5089         (INITIAL_ELIMINATION_OFFSET): Define.
5091 2016-09-20  Jakub Jelinek  <jakub@redhat.com>
5093         PR middle-end/77624
5094         * builtins.c (fold_builtin_atomic_always_lock_free): Only look through
5095         cast to void * if the cast is from some other pointer type.
5097 2016-09-20  Richard Biener  <rguenther@suse.de>
5099         PR tree-optimization/77646
5100         * tree-ssa-sccvn.c (visit_reference_op_call): Always value-number
5101         a VDEF.
5103 2016-09-20  Tamar Christina  <tamar.christina@arm.com>
5105         * config/aarch64/arm_neon.h: Add gnu_inline and artificial
5106         attributes to all inlined functions and make them extern.
5108 2016-09-20  Richard Biener  <rguenther@suse.de>
5110         * debug.h (gcc_debug_hooks): Add filename parameter to early_finish
5111         hook.
5112         * debug.c (do_nothing_debug_hooks): Adjust.
5113         * dbxout.c (dbx_debug_hooks): Likewise.
5114         * sdbout.c (sdb_debug_hooks): Likewise.
5115         * dwarf2out.c (dwarf2_lineno_debug_hooks): Likewise.
5116         (dwarf2out_finish): Move producer, filename and
5117         path annotation ...
5118         (dwarf2out_early_finish): ... here.  Remove in_lto_p special-casing.
5119         * cgraphunit.c (symbol_table::finalize_compilation_unit): Adjust.
5121 2016-09-19  Bernd Edlinger  <bernd.edlinger@hotmail.de>
5123         PR c++/77434
5124         * doc/invoke.texi: Document -Wint-in-bool-context.
5126         PR middle-end/77421
5127         * dwarf2out.c (output_loc_operands): Fix an assertion.
5129 2016-09-19  Joseph Myers  <joseph@codesourcery.com>
5131         * ginclude/float.h [__STDC_WANT_IEC_60559_BFP_EXT__]
5132         (CR_DECIMAL_DIG): New macro.
5134 2016-09-19  Joseph Myers  <joseph@codesourcery.com>
5136         * ginclude/stddef.h (max_align_t) [__i386__]: Add __float128
5137         element.
5139 2016-09-19  Vladimir Makarov  <vmakarov@redhat.com>
5141         PR rtl-optimization/77416
5142         * lra-remat.c (operand_to_remat): Process hard coded insn
5143         registers.
5145 2016-09-19  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
5147         * simplify-rtx.c (simplify_relational_operation_1): Add transformation
5148         (GTU (PLUS a C) (C - 1)) --> (LTU a -C).
5150 2016-09-19  Segher Boessenkool  <segher@kernel.crashing.org>
5152         * target.def (lra_p): Wordsmithing.
5153         * doc/tm.texi: Regenerate.
5155 2016-09-19  Jakub Jelinek  <jakub@redhat.com>
5156             Jan Hubicka  <jh@suse.cz>
5158         PR target/77587
5159         * cgraph.c (cgraph_node::rtl_info): Pass &avail to
5160         ultimate_alias_target call, return NULL if avail < AVAIL_AVAILABLE.
5161         Call ultimate_alias_target just once, not up to 4 times.
5163 2016-09-19  Richard Biener  <rguenther@suse.de>
5165         * dwarf2out.c (early_dwarf_finished): New global.
5166         (set_early_dwarf::set_early_dwarf): Assert early_dwarf_finished
5167         is false.
5168         (dwarf2out_early_finish): Set early_dwarf_finished at the end,
5169         if called from LTO exit early.
5170         (dwarf2out_late_global_decl): When being during the early
5171         debug phase do not add locations but only const value attributes.
5172         Adjust the way we generate early DIEs for LTO.
5174 2016-09-19  Richard Biener  <rguenther@suse.de>
5176         PR middle-end/77605
5177         * tree-data-ref.c (analyze_subscript_affine_affine): Use the
5178         proper niter to bound the loops.
5180 2016-09-19  Richard Biener  <rguenther@suse.de>
5182         PR tree-optimization/77514
5183         * tree-ssa-pre.c (create_expression_by_pieces): Optimize
5184         search for folded stmt.
5186 2016-09-17  Jan Hubicka  <hubicka@ucw.cz>
5188         * passes.def (pass_early_thread_jumps): Schedule after forwprop.
5189         * tree-pass.h (make_pass_early_thread_jumps): Declare.
5190         * tree-ssa-threadbackward.c (fsm_find_thread_path,
5191         fsm_find_thread_path, profitable_jump_thread_path,
5192         fsm_find_control_statement_thread_paths,
5193         find_jump_threads_backwards): Add speed_p parameter.
5194         (pass_data_early_thread_jumps): New pass.
5195         (make_pass_early_thread_jumps): New function.
5197 2016-09-17  Andreas Schwab  <schwab@suse.de>
5199         * config/ia64/ia64.h (ASM_OUTPUT_DWARF_OFFSET): Add cast.
5200         * config/i386/cygming.h (ASM_OUTPUT_DWARF_OFFSET): Likewise.
5202 2016-09-16  Eric Botcazou  <ebotcazou@adacore.com>
5204         * recog.c (rest_of_handle_split_after_reload): Delete.
5205         (pass_split_after_reload::gate): New method.
5206         (pass_split_after_reload::execute): Call split_all_insns directly.
5208 2016-09-16  Jonathan Wakely  <jwakely@redhat.com>
5210         * doc/extend.texi (Integer Overflow Builtins): Fix type of out
5211         parameters for functions taking long long arguments.
5213 2016-09-16  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
5215         PR target/77613
5216         * config/rs6000/rs6000.c (rtx_is_swappable_p): Add support for
5217         splat with truncate.
5219 2016-09-16  Jason Merrill  <jason@redhat.com>
5221         * hwint.h (least_bit_hwi, pow2_or_zerop, pow2p_hwi, ctz_or_zero):
5222         New.
5223         * hwint.c (exact_log2): Use pow2p_hwi.
5224         (ctz_hwi, ffs_hwi): Use least_bit_hwi.
5225         * alias.c (memrefs_conflict_p): Use pow2_or_zerop.
5226         * builtins.c (get_object_alignment_2, get_object_alignment)
5227         (get_pointer_alignment, fold_builtin_atomic_always_lock_free): Use
5228         least_bit_hwi.
5229         * calls.c (compute_argument_addresses, store_one_arg): Use
5230         least_bit_hwi.
5231         * cfgexpand.c (expand_one_stack_var_at): Use least_bit_hwi.
5232         * combine.c (force_to_mode): Use least_bit_hwi.
5233         (contains_muldiv, find_split_point, combine_simplify_rtx)
5234         (simplify_if_then_else, simplify_set, force_to_mode)
5235         (if_then_else_cond, simplify_and_const_int_1)
5236         (simplify_compare_const): Use pow2p_hwi.
5237         * cse.c (fold_rtx): Use pow2p_hwi.
5238         * emit-rtl.c (set_mem_attributes_minus_bitpos, adjust_address_1):
5239         Use least_bit_hwi.
5240         * expmed.c (synth_mult, expand_divmod): Use ctz_or_zero, ctz_hwi.
5241         (init_expmed_one_conv): Use pow2p_hwi.
5242         * expr.c (is_aligning_offset): Use pow2p_hwi.
5243         * fold-const.c (round_up_loc, round_down_loc): Use pow2_or_zerop.
5244         (fold_binary_loc): Use pow2p_hwi.
5245         * function.c (assign_parm_find_stack_rtl): Use least_bit_hwi.
5246         * gimple-fold.c (gimple_fold_builtin_memory_op): Use pow2p_hwi.
5247         * gimple-ssa-strength-reduction.c (replace_ref): Use least_bit_hwi.
5248         * hsa-gen.c (gen_hsa_addr_with_align, hsa_bitmemref_alignment):
5249         Use least_bit_hwi.
5250         * ifcvt.c (noce_try_store_flag_constants): Use pow2p_hwi.
5251         * ipa-cp.c (ipcp_alignment_lattice::meet_with_1): Use least_bit_hwi.
5252         * ipa-prop.c (ipa_modify_call_arguments): Use least_bit_hwi.
5253         * omp-low.c (oacc_loop_fixed_partitions)
5254         (oacc_loop_auto_partitions): Use least_bit_hwi.
5255         * rtlanal.c (nonzero_bits1): Use ctz_or_zero.
5256         * stor-layout.c (place_field): Use least_bit_hwi.
5257         * tree-pretty-print.c (dump_generic_node): Use pow2p_hwi.
5258         * tree-sra.c (build_ref_for_offset): Use least_bit_hwi.
5259         * tree-ssa-ccp.c (ccp_finalize): Use least_bit_hwi.
5260         * tree-ssa-math-opts.c (bswap_replace): Use least_bit_hwi.
5261         * tree-ssa-strlen.c (handle_builtin_memcmp): Use pow2p_hwi.
5262         * tree-vect-data-refs.c (vect_analyze_group_access_1)
5263         (vect_grouped_store_supported, vect_grouped_load_supported)
5264         (vect_permute_load_chain, vect_shift_permute_load_chain)
5265         (vect_transform_grouped_load): Use pow2p_hwi.
5266         * tree-vect-generic.c (expand_vector_divmod): Use ctz_or_zero.
5267         * tree-vect-patterns.c (vect_recog_divmod_pattern): Use ctz_or_zero.
5268         * tree-vect-stmts.c (vectorizable_mask_load_store): Use
5269         least_bit_hwi.
5270         * tsan.c (instrument_expr): Use least_bit_hwi.
5271         * var-tracking.c (negative_power_of_two_p): Use pow2_or_zerop.
5273 2016-09-16  Andreas Schwab  <schwab@suse.de>
5275         * config/ia64/ia64.h (ASM_OUTPUT_DWARF_OFFSET): Use parameter
5276         OFFSET, not offset.
5277         * config/i386/cygming.h (ASM_OUTPUT_DWARF_OFFSET): Likewise.
5279 2016-09-16  Jakub Jelinek  <jakub@redhat.com>
5281         PR target/77526
5282         * combine.c (rest_of_handle_combine): If any edges have been purged,
5283         free dominators if available.
5285 2016-09-16  Jakub Jelinek  <jakub@redhat.com>
5286             Eric Botcazou  <ebotcazou@adacore.com>
5288         PR middle-end/77594
5289         * internal-fn.c (expand_arith_overflow) <case MINUS_EXPR>: Don't fall
5290         through into expand_addsub_overflow after expand_neg_overflow.
5292 2016-09-15  David Malcolm  <dmalcolm@redhat.com>
5294         * diagnostic-show-locus.c
5295         (selftest::test_fixit_insert_containing_newline): New function.
5296         (selftest::test_fixit_replace_containing_newline): New function.
5297         (selftest::diagnostic_show_locus_c_tests): Call the above.
5299 2016-09-15  Bin Cheng  <bin.cheng@arm.com>
5301         PR tree-optimization/77503
5302         * tree-vect-loop.c (vectorizable_reduction): Record reduction
5303         code for CONST_COND_REDUCTION at analysis stage and use it at
5304         transform stage.
5305         * tree-vectorizer.h (struct _stmt_vec_info): New field.
5306         (STMT_VINFO_VEC_CONST_COND_REDUC_CODE): New macro.
5307         * tree-vect-stmts.c (new_stmt_vec_info): Initialize above new
5308         field.
5310 2016-09-15  Richard Biener  <rguenther@suse.de>
5312         PR middle-end/77544
5313         * fold-const.c (split_tree): Do not split constant ~X.
5315 2016-09-15  Jakub Jelinek  <jakub@redhat.com>
5317         PR rtl-optimization/77425
5318         * sched-int.h (sd_iterator_cond): Don't update it_ptr->linkp if list
5319         is NULL.
5321         PR middle-end/77475
5322         * config/i386/i386.c (ix86_parse_stringop_strategy_string): Simplify,
5323         use %qs instead of %s where desirable, use argument instead of arg in
5324         the diagnostic wording, add list of supported strategies and
5325         spellcheck hint.
5326         (ix86_option_override_internal): Emit target("m...") instead of
5327         option("m...") in the diagnostic.  Use %qs instead of %s in invalid
5328         -march/-mtune option diagnostic.  Add list of supported arches/tunings
5329         and spellcheck hint.  Remove prefix, suffix and sw variables, use
5330         main_args_p ? "..." : "..." in diagnostics to make translation
5331         possible.
5333 2016-09-15  Richard Biener  <rguenther@suse.de>
5335         * dwarf2asm.h (dw2_asm_output_offset): Add overload with
5336         extra offset argument.
5337         * dwarf2asm.c (dw2_asm_output_offset): Implement that.
5338         * doc/tm.texi.in (ASM_OUTPUT_DWARF_OFFSET): Adjust documentation
5339         to reflect new offset parameter.
5340         * doc/tm.texi: Regenerate.
5341         * config/darwin.h (ASM_OUTPUT_DWARF_OFFSET): Adjust.
5342         * config/darwin-protos.h (darwin_asm_output_dwarf_delta): Add
5343         offset argument.
5344         (darwin_asm_output_dwarf_offset): Likewise.
5345         * config/darwin.c (darwin_asm_output_dwarf_delta): Add offset
5346         argument.
5347         (darwin_asm_output_dwarf_offset): Pass offset argument through.
5348         * config/ia64/ia64.h (ASM_OUTPUT_DWARF_OFFSET): Adjust.
5349         * config/i386/cygmin.h (ASM_OUTPUT_DWARF_OFFSET): Likewise.
5351 2016-09-15  Chung-Lin Tang  <cltang@codesourcery.com>
5353         PR fortran/72743
5354         * ipa-icf.c (set_alias_uids): New function.
5355         (sem_variable::merge): Use set_alias_uids to set DECL_PT_UID of
5356         all the merged variable's referring aliases.
5358 2016-09-15  Richard Biener  <rguenther@suse.de>
5360         PR tree-optimization/77514
5361         * tree-ssa-pre.c (create_expression_by_pieces): Handle garbage
5362         only forced_stmts sequence.
5364 2016-09-15  Kugan Vivekanandarajah  <kuganv@linaro.org>
5366         * tree-ssanames.h (FOR_EACH_SSA_NAME): New.
5367         * cfgexpand.c (update_alias_info_with_stack_vars): Use
5368         FOR_EACH_SSA_NAME to iterate over SSA variables.
5369         (pass_expand::execute): Likewise.
5370         * omp-simd-clone.c (ipa_simd_modify_function_body): Likewise.
5371         * tree-cfg.c (dump_function_to_file): Likewise.
5372         * tree-into-ssa.c (pass_build_ssa::execute): Likewise.
5373         (update_ssa): Likewise.
5374         * tree-ssa-alias.c (dump_alias_info): Likewise.
5375         * tree-ssa-ccp.c (ccp_finalize): Likewise.
5376         * tree-ssa-coalesce.c (build_ssa_conflict_graph): Likewise.
5377         (create_outofssa_var_map): Likewise.
5378         (coalesce_ssa_name): Likewise.
5379         * tree-ssa-operands.c (dump_immediate_uses): Likewise.
5380         * tree-ssa-pre.c (compute_avail): Likewise.
5381         * tree-ssa-sccvn.c (init_scc_vn): Likewise.
5382         (scc_vn_restore_ssa_info): Likewise.
5383         (free_scc_vn): Likwise.
5384         (run_scc_vn): Likewise.
5385         * tree-ssa-structalias.c (compute_points_to_sets): Likewise.
5386         * tree-ssa-ter.c (new_temp_expr_table): Likewise.
5387         * tree-ssa-copy.c (fini_copy_prop): Likewise.
5388         * tree-ssa.c (verify_ssa): Likewise.
5390 2016-09-14  Matthew Fortune  <matthew.fortune@imgtec.com>
5392         * config.gcc (mips*-mti-elf*, mips*-mti-linux*): Set mips32r2
5393         and mips64r2 as default 32-bit and 64-bit architectures.
5394         (mips*-img-elf*, mips*-img-linux*): Set mips32r6 and mips64r6
5395         as default 32-bit and 64-bit architectures.
5397 2016-09-14  Pat Haugen  <pthaugen@us.ibm.com>
5399         * loop-unroll.c (unroll_loop_runtime_iterations): Set probability
5400         of succ edge.
5402 2016-09-14  Segher Boessenkool  <segher@kernel.crashing.org>
5404         * target.def (lra_p): Change commentary (for the manual) for the
5405         new default.
5406         * doc/tm.texi: Regenerate.
5408 2016-09-14  Segher Boessenkool  <segher@kernel.crashing.org>
5410         * config/aarch64/aarch64.c (TARGET_LRA_P): Delete macro.
5411         * config/arm/arm.c (TARGET_LRA_P): Delete macro.
5412         * config/i386/i386.c (TARGET_LRA_P): Delete macro.
5413         * config/nds32/nds32.c (TARGET_LRA_P): Delete macro.
5415 2016-09-14  Segher Boessenkool  <segher@kernel.crashing.org>
5417         * targhooks.c (default_lra_p): Return true instead of false.
5419 2016-09-14  Segher Boessenkool  <segher@kernel.crashing.org>
5421         * config/alpha/alpha.c (TARGET_LRA_P): New macro, defined to
5422         hook_bool_void_false.
5423         * config/avr/avr.c: Ditto.
5424         * config/bfin/bfin.c: Ditto.
5425         * config/c6x/c6x.c: Ditto.
5426         * config/cr16/cr16.c: Ditto.
5427         * config/cris/cris.c: Ditto.
5428         * config/epiphany/epiphany.c: Ditto.
5429         * config/fr30/fr30.c: Ditto.
5430         * config/frv/frv.c: Ditto.
5431         * config/h8300/h8300.c: Ditto.
5432         * config/ia64/ia64.c: Ditto.
5433         * config/iq2000/iq2000.c: Ditto.
5434         * config/lm32/lm32.c: Ditto.
5435         * config/m32c/m32c.c: Ditto.
5436         * config/m32r/m32r.c: Ditto.
5437         * config/m68k/m68k.c: Ditto.
5438         * config/mcore/mcore.c: Ditto.
5439         * config/microblaze/microblaze.c: Ditto.
5440         * config/mmix/mmix.c: Ditto.
5441         * config/mn10300/mn10300.c: Ditto.
5442         * config/moxie/moxie.c: Ditto.
5443         * config/msp430/msp430.c: Ditto.
5444         * config/nios2/nios2.c: Ditto.
5445         * config/nvptx/nvptx.c: Ditto.
5446         * config/pa/pa.c: Ditto.
5447         * config/pdp11/pdp11.c: Ditto.
5448         * config/rl78/rl78.c: Ditto.
5449         * config/sparc/sparc.c: Ditto.
5450         * config/spu/spu.c: Ditto.
5451         * config/stormy16/stormy16.c: Ditto.
5452         * config/tilegx/tilegx.c: Ditto.
5453         * config/tilepro/tilepro.c: Ditto.
5454         * config/v850/v850.c: Ditto.
5455         * config/vax/vax.c: Ditto.
5456         * config/visium/visium.c: Ditto.
5457         * config/xtensa/xtensa.c: Ditto.
5459 2016-09-14  Jakub Jelinek  <jakub@redhat.com>
5461         PR sanitizer/68260
5462         * tsan.c: Include target.h.
5463         (enum tsan_atomic_action): Add bool_clear and bool_test_and_set.
5464         (BOOL_CLEAR, BOOL_TEST_AND_SET): Define.
5465         (tsan_atomic_table): Add BUILT_IN_ATOMIC_CLEAR and
5466         BUILT_IN_ATOMIC_TEST_AND_SET entries.
5467         (instrument_builtin_call): Handle bool_clear and bool_test_and_set.
5469 2016-09-14  Bernd Edlinger  <bernd.edlinger@hotmail.de>
5470             Martin Liska  <mliska@suse.cz>
5472         PR middle-end/77574
5473         * predict.c (force_edge_cold): Add braces to a condition.
5475 2016-09-13  Bernd Edlinger  <bernd.edlinger@hotmail.de>
5477         PR rtl-optimization/77289
5478         * lra-constraints.c (get_final_hard_regno): Removed.
5479         (get_hard_regno): Add new parameter final_p.
5480         (get_reg_class): Directly call lra_get_elimination_hard_regno.
5481         (operands_match_p): Adjust call to get_hard_regno.
5482         (uses_hard_regs_p): Likewise.
5483         (process_alt_operands): Likewise.
5485 2016-09-13  Joe Seymour  <joe.s@somniumtech.com>
5487         PR target/70713
5488         * config/msp430/msp430.c (msp430_start_function): Emit an error
5489         if a function is both weak and specifies an interrupt number.
5491 2016-09-13  Jakub Jelinek  <jakub@redhat.com>
5493         PR tree-optimization/77454
5494         * tree-ssa-dom.c (optimize_stmt): Set modified flag on stmt after
5495         changing GIMPLE_COND.  Move update_stmt_if_modified call after this.
5496         Formatting fix.
5498 2016-09-13  Tamar Christina  <tamar.christina@arm.com>
5500         * config/aarch64/aarch64-builtins.c
5501         (aarch64_init_simd_builtins): Fix builtin type signature printing.
5503 2016-09-13  Uros Bizjak  <ubizjak@gmail.com>
5505         * config/alpha/alpha.c (alpha_pass_by_reference): Pass un-named
5506         SFmode and SCmode arguments by reference.
5508 2016-09-13  David Malcolm  <dmalcolm@redhat.com>
5510         * diagnostic-show-locus.c (selftest::test_one_liner_fixit_insert):
5511         Rename to...
5512         (selftest::test_one_liner_fixit_insert_before): ...this, and update
5513         for renaming of add_fixit_insert to add_fixit_insert_before.
5514         (selftest::test_one_liner_fixit_insert_after): New function.
5515         (selftest::test_one_liner_fixit_validation_adhoc_locations):
5516         Update for renaming of add_fixit_insert to add_fixit_insert_before.
5517         (selftest::test_one_liner_many_fixits): Likewise.
5518         (selftest::test_diagnostic_show_locus_one_liner): Update for
5519         renaming, call new test function.
5520         (selftest::test_diagnostic_show_locus_fixit_lines): Update for
5521         renaming of add_fixit_insert to add_fixit_insert_before.
5522         (selftest::test_fixit_consolidation): Likewise.
5523         * diagnostic.c (selftest::test_print_parseable_fixits_insert):
5524         Likewise.
5525         * edit-context.c (selftest::test_applying_fixits_insert): Rename to...
5526         (selftest::test_applying_fixits_insert_before): ...this.
5527         (selftest::test_applying_fixits_insert): Update for renaming of
5528         add_fixit_insert to add_fixit_insert_before.
5529         (selftest::test_applying_fixits_insert_after): New function.
5530         (selftest::test_applying_fixits_insert_after_at_line_end): New
5531         function.
5532         (selftest::test_applying_fixits_insert_after_failure): New function.
5533         (selftest::test_applying_fixits_multiple): Update for renaming of
5534         add_fixit_insert to add_fixit_insert_before.
5535         (selftest::change_line): Likewise.
5536         (selftest::test_applying_fixits_unreadable_file): Likewise.
5537         (selftest::test_applying_fixits_line_out_of_range): Likewise.
5538         (selftest::test_applying_fixits_column_validation): Likewise.
5539         (selftest::test_applying_fixits_column_validation): Likewise.
5540         (selftest::edit_context_c_tests): Update for renamed test function;
5541         call new test functions.
5543 2016-09-13  Pat Haugen  <pthaugen@us.ibm.com>
5545         PR tree-optimization/77536
5546         PR rtl-optimization/68212
5547         * config/rs6000/rs6000.md (div->recip splitter): Remove
5548         optimize_insn_for_speed_p condition.
5550 2016-09-13  Maciej W. Rozycki  <macro@imgtec.com>
5552         * optabs.c (prepare_cmp_insn): Update documentation comment.
5554 2016-09-13  Jakub Jelinek  <jakub@redhat.com>
5555             Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
5557         PR middle-end/77475
5558         * opts.h (candidates_list_and_hint): Declare.
5559         * opts-common.c (candidates_list_and_hint): New function.
5560         (cmdline_handle_error): Use it.
5562 2016-09-12  David Malcolm  <dmalcolm@redhat.com>
5564         * edit-context.c (edited_line::get_len): New accessor.
5565         (edited_file::print_diff): Split out hunk-printing into...
5566         (edited_file::print_diff_hunk): New method.
5567         (edited_file::print_diff_line): New method.
5569 2016-09-12  Andrew Pinski  <apinski@cavium.com>
5571         * config/aarch64/aarch64-tuning-flags.def (SLOW_UNALIGNED_LDPW):
5572         New tuning option.
5573         * config/aarch64/aarch64.c (thunderx_tunings): Enable
5574         AARCH64_EXTRA_TUNE_SLOW_UNALIGNED_LDPW.
5575         (aarch64_operands_ok_for_ldpstp): Return false if
5576         AARCH64_EXTRA_TUNE_SLOW_UNALIGNED_LDPW and the mode
5577         was SImode and the alignment is less than 8 byte.
5578         (aarch64_operands_adjust_ok_for_ldpstp): Likewise.
5580 2016-09-12  Orlando Arias  <oarias@knights.ucf.edu>
5582         PR target/77570
5583         * config/msp430/msp430.md (delay_cycles_32x): Fix pushm/popm.
5585 2016-09-12  Marek Polacek  <polacek@redhat.com>
5587         * doc/extend.texi: Use lowercase "boolean".
5588         * doc/invoke.texi: Likewise.
5589         * doc/md.texi: Likewise.
5590         * target.def: Likewise.
5591         * doc/tm.texi: Regenerated.
5593 2016-09-12  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
5595         PR middle-end/77426
5596         * expmed.c (synth_mult): Delete duplicate mode check.
5598 2016-09-10  Tom de Vries  <tom@codesourcery.com>
5600         PR C/71602
5601         * builtins.c (std_canonical_va_list_type): Strictly return non-null for
5602         va_list type only.
5603         * config/i386/i386.c (ix86_canonical_va_list_type): Same.
5604         * gimplify.c (gimplify_va_arg_expr): Handle &va_list.
5606 2016-09-09  Peter Bergner  <bergner@vnet.ibm.com>
5608         PR rtl-optimization/77289
5609         * lra-constraints.c (get_final_hard_regno): Add support for non hard
5610         register numbers.  Remove support for subregs.
5611         (get_hard_regno): Use SUBREG_P.  Don't call get_final_hard_regno().
5612         (get_reg_class): Delete removed get_final_hard_regno() argument.
5613         (uses_hard_regs_p): Call get_final_hard_regno().
5615 2016-09-09  Martin Sebor  <msebor@redhat.com>
5617         PR c/77520
5618         PR c/77521
5619         * pretty-print.c (pp_quoted_string): New function.
5620         (pp_format): Call it for %c and %s directives.
5622 2016-09-10  Bernd Edlinger  <bernd.edlinger@hotmail.de>
5624         * doc/tm.texi.in (INITIAL_FRAME_POINTER_OFFSET): Remove.
5625         (ELIMINABLE_REGS, TARGET_CAN_ELIMINATE,
5626         INITIAL_ELIMINATION_OFFSET) : Update documentation.
5627         * target.def (frame_pointer_required, can_eliminate): Likewise.
5628         * doc/tm.texi: Regenerated.
5629         * builtins.c (expand_builtin_setjmp_receiver): Remove #ifdef
5630         ELIMINABLE_REGS.
5631         * df-scan.c (df_hard_reg_init): Likewise.
5632         * ira.c (ira_setup_eliminable_regset): Likewise.
5633         * lra-eliminations.c (reg_eliminate_1, (update_reg_eliminate,
5634         init_elim_table): Likewise.
5635         * reload1.c (reg_eliminate_1, verify_initial_elim_offsets,
5636         set_initial_elim_offsets, update_eliminables,
5637         init_elim_table): Likewise.
5638         * rtlanal.c (get_initial_register_offset): Likewise.
5639         * config/ft32/ft32.h (INITIAL_FRAME_POINTER_OFFSET): Remove.
5640         * config/m32r/m32r.h (INITIAL_FRAME_POINTER_OFFSET): Likewise.
5641         * config/moxie/moxie.h (INITIAL_FRAME_POINTER_OFFSET): Likewise.
5642         * config/vax/vax.h (INITIAL_FRAME_POINTER_OFFSET): Likewise.
5643         * config/fr30/fr30.h: Fix comment.
5644         * config/frv/frv.c: Likewise.
5645         * config/frv/frv.h: Likewise.
5646         * config/ft32/ft32.h: Likewise.
5647         * config/visium/visium.h: Likewise.
5648         * config/pa/pa64-linux.h: Likewise.
5649         * config/v850/v850.h: Likewise.
5650         * config/cris/cris.c: Likewise.
5651         * config/ia64/ia64.h: Likewise.
5652         * config/moxie/moxie.h: Likewise.
5653         * config/m32r/m32r.h: Likewise.
5655 2016-09-10  Alexander Ivchenko  <alexander.ivchenko@intel.com>
5657         PR target/77267
5658         * config.in: Regenerate.
5659         * config/i386/linux-common.h (MPX_LD_AS_NEEDED_GUARD_PUSH):
5660         New macro.
5661         (MPX_LD_AS_NEEDED_GUARD_PUSH): Ditto.
5662         (LIBMPXWRAPPERS_SPEC): Remove "--no-whole-archive" from
5663         static-libmpxwrappers case.
5664         (LIBMPX_SPEC): Add guards with MPX_LD_AS_NEEDED_GUARD_PUSH and
5665         MPX_LD_AS_NEEDED_GUARD_POP.
5666         * configure: Regenerate.
5667         * configure.ac (HAVE_LD_PUSHPOPSTATE_SUPPORT): New variable.
5668         defined if linker support "--push-state"/"--pop-state".
5670 2016-09-09  Bernd Edlinger  <bernd.edlinger@hotmail.de>
5672         * doc/cpp.texi (__*_WIDTH__): Small wording fixes.
5674 2016-09-09  Joseph Myers  <joseph@codesourcery.com>
5676         * doc/cpp.texi (__SCHAR_WIDTH__, __SHRT_WIDTH__, __INT_WIDTH__)
5677         (__LONG_WIDTH__, __LONG_LONG_WIDTH__, __PTRDIFF_WIDTH__)
5678         (__SIG_ATOMIC_WIDTH__, __SIZE_WIDTH__, __WCHAR_WIDTH__)
5679         (__WINT_WIDTH__, __INT_LEAST8_WIDTH__, __INT_LEAST16_WIDTH__)
5680         (__INT_LEAST32_WIDTH__, __INT_LEAST64_WIDTH__)
5681         (__INT_FAST8_WIDTH__, __INT_FAST16_WIDTH__, __INT_FAST32_WIDTH__)
5682         (__INT_FAST64_WIDTH__, __INTPTR_WIDTH__, __INTMAX_WIDTH__):
5683         Document.
5684         * ginclude/stdint-gcc.h [__STDC_WANT_IEC_60559_BFP_EXT__]: Define
5685         width macros from TS 18661-1.
5686         * glimits.h [__STDC_WANT_IEC_60559_BFP_EXT__]: Likewise.
5688 2016-09-08  Jakub Jelinek  <jakub@redhat.com>
5690         PR fortran/77516
5691         * omp-low.c (lower_rec_simd_input_clauses): Use max_vf for non-positive
5692         OMP_CLAUSE_SAFELEN_EXPR.
5694 2016-09-07  David Malcolm  <dmalcolm@redhat.com>
5696         * Makefile.in (OBJS): Add substring-locations.o.
5697         * langhooks-def.h (class substring_loc): New forward decl.
5698         (lhd_get_substring_location): New decl.
5699         (LANG_HOOKS_GET_SUBSTRING_LOCATION): New macro.
5700         (LANG_HOOKS_INITIALIZER): Add LANG_HOOKS_GET_SUBSTRING_LOCATION.
5701         * langhooks.c (lhd_get_substring_location): New function.
5702         * langhooks.h (class substring_loc): New forward decl.
5703         (struct lang_hooks): Add field get_substring_location.
5704         * substring-locations.c: New file, taking definition of
5705         format_warning_va and format_warning_at_substring from
5706         c-family/c-format.c, making them non-static.
5707         * substring-locations.h (class substring_loc): Move class here
5708         from c-family/c-common.h.  Add and rewrite comments.
5709         (format_warning_va): New decl.
5710         (format_warning_at_substring): New decl.
5711         (get_source_location_for_substring): Add comment.
5713 2016-09-07  Eric Gallager  <egall@gwmail.gwu.edu>
5715         * config/i386/i386.c: Add 'U' suffix to processor feature bits
5716         to avoid -Wnarrowing warning.
5717         * config/i386/x86-tune.def: Likewise for DEF_TUNE selector bitmasks.
5718         * opts.c: Likewise for SANITIZER_OPT bitmasks.
5720 2016-09-07  Wilco Dijkstra  <wdijkstr@arm.com>
5722         * config/aarch64/aarch64.c (aarch64_legitimize_address):
5723         Avoid use of base_offset if offset already in range.
5725 2016-09-07  Kaz Kojima  <kkojima@gcc.gnu.org>
5727         * config/sh/sh-protos.h (struct sh_atomic_model,
5728         selected_atomic_model, TARGET_ATOMIC_ANY, TARGET_ATOMIC_STRICT,
5729         TARGET_ATOMIC_SOFT_GUSA, TARGET_ATOMIC_HARD_LLCS,
5730         TARGET_ATOMIC_SOFT_TCB, TARGET_ATOMIC_SOFT_IMASK): Move to...
5731         * config/sh/sh.h (struct sh_atomic_model,
5732         selected_atomic_model, TARGET_ATOMIC_ANY, TARGET_ATOMIC_STRICT,
5733         TARGET_ATOMIC_SOFT_GUSA, TARGET_ATOMIC_HARD_LLCS,
5734         TARGET_ATOMIC_SOFT_TCB, TARGET_ATOMIC_SOFT_IMASK): ...here.
5735         Guard with __cplusplus.
5737 2016-09-06  Jakub Jelinek  <jakub@redhat.com>
5739         PR target/69255
5740         * config/i386/i386.c (ix86_expand_builtin): For builtin with
5741         unsupported or unknown ISA, use expand_call.
5743 2016-09-06  Martin Liska  <mliska@suse.cz>
5745         PR gcov-profile/77378
5746         PR gcov-profile/77466
5747         * tree-profile.c (tree_profiling): Detect whether target can use
5748         -fprofile-update=atomic.
5750 2016-09-06  Richard Biener  <rguenther@suse.de>
5752         PR tree-optimization/77479
5753         * tree-vrp.c (update_value_range): Extend overflow handling to
5754         VARYING.
5756 2016-09-05  Jakub Jelinek  <jakub@redhat.com>
5758         PR target/77476
5759         * config/i386/i386.md (isa): Add x64_avx512bw.
5760         (*zero_extendsidi2): For alternative 11 use x64_avx512bw isa.
5761         (kmov_isa): New mode attr.
5762         (zero_extend<mode>di2): Use <kmov_isa> isa for the last alternative.
5763         (*zero_extend<mode>si2): Likewise.
5764         (*zero_extendqihi2): Use avx512dq isa for the last alternative.
5766 2016-09-05  Gerald Pfeifer  <gerald@pfeifer.com>
5768         * doc/invoke.texi (SPU Options): nops -> NOPs.
5769         (x86 Options): Ditto.
5771 2016-09-05  Jakub Jelinek  <jakub@redhat.com>
5773         PR middle-end/77475
5774         * toplev.c (process_options): Temporarily set input_location
5775         to UNKNOWN_LOCATION around targetm.target_option.override () call.
5777 2016-09-05  Uros Bizjak  <ubizjak@gmail.com>
5779         PR rtl-optimization/77452
5780         * explow.c (plus_constant) <case MEM>: Extract scalar constant from
5781         inner-mode reference to a CONST_VECTOR constant in the constant pool.
5783 2016-09-05  Marek Polacek  <polacek@redhat.com>
5785         PR c/77423
5786         * doc/invoke.texi: Update -Wlogical-not-parentheses documentation.
5788 2016-09-05  Jakub Jelinek  <jakub@redhat.com>
5790         PR other/77421
5791         * gensupport.c (alter_output_for_subst_insn): Remove redundant
5792         *insn_out == '*' test.  Don't copy unnecessary to yet another
5793         memory buffer, and don't leak it.
5795         PR rtl-optimization/77425
5796         * ipa-devirt.c (get_odr_type): Set val->id unconditionally.
5798 2016-09-03  Kirill Yukhin  <kirill.yukhin@intel.com>
5800         * ubsan.c (ubsan_use_new_style_p): Fix check for empty string.
5802 2016-09-02  David Malcolm  <dmalcolm@redhat.com>
5804         * common.opt (fdiagnostics-generate-patch): New option.
5805         * diagnostic.c: Include "edit-context.h".
5806         (diagnostic_initialize): Initialize context->edit_context_ptr.
5807         (diagnostic_finish): Delete context->edit_context_ptr.
5808         (diagnostic_report_diagnostic): Add fix-it hints from the
5809         diagnostic to context->edit_context_ptr, if any.
5810         * diagnostic.h (class edit_context): Add forward decl.
5811         (struct diagnostic_context): Add field "edit_context_ptr".
5812         * doc/invoke.texi (Diagnostic Message Formatting Options): Add
5813         -fdiagnostics-generate-patch.
5814         (-fdiagnostics-generate-patch): New item.
5815         * toplev.c: Include "edit-context.h".
5816         (process_options): Set global_dc->edit_context_ptr to a new
5817         edit_context if the options need one.
5818         (toplev::main): Handle -fdiagnostics-generate-patch by using
5819         global_dc->edit_context_ptr.
5821 2016-09-02  Jakub Jelinek  <jakub@redhat.com>
5823         PR c/65467
5824         * gimplify.c (gimplify_adjust_omp_clauses_1): Diagnose implicit
5825         map and firstprivate clauses on target construct for _Atomic
5826         qualified decls.
5827         (gimplify_adjust_omp_clauses): Diagnose explicit firstprivate clauses
5828         on target construct for _Atomic qualified decls.
5829         * omp-low.c (use_pointer_for_field): Return true for _Atomic qualified
5830         decls.
5831         * omp-simd-clone.c (simd_clone_clauses_extract): Warn and give up for
5832         _Atomic qualified arguments not mentioned in uniform clause.
5834 2016-09-02  David Malcolm  <dmalcolm@redhat.com>
5836         * Makefile.in (OBJS-libcommon): Add edit-context.o.
5837         * diagnostic-color.c (color_dict): Add "diff-filename",
5838         "diff-hunk", "diff-delete", and "diff-insert".
5839         (parse_gcc_colors): Update default value of GCC_COLORS in comment
5840         to reflect above changes.
5841         * doc/invoke.texi (-fdiagnostics-color): Update description of
5842         default GCC_COLORS, and of the supported capabilities.
5843         * edit-context.c: New file.
5844         * edit-context.h: New file.
5845         * input.c (struct fcache): Add field "missing_trailing_newline".
5846         (diagnostics_file_cache_forcibly_evict_file): Initialize it to
5847         true.
5848         (add_file_to_cache_tab): Likewise.
5849         (fcache::fcache): Likewise.
5850         (get_next_line): Update c->missing_trailing_newline.
5851         (location_missing_trailing_newline): New function.
5852         * input.h (location_missing_trailing_newline): New decl.
5853         * selftest-run-tests.c (selftest::run_tests): Call
5854         edit_context_c_tests.
5855         * selftest.h (edit_context_c_tests): New decl.
5857 2016-09-02  Jakub Jelinek  <jakub@redhat.com>
5858             Richard Biener  <rguenth@suse.de>
5860         PR tree-optimization/77444
5861         * tree-ssa-loop-ivopts.c (cand_value_at): For pointers use sizetype
5862         as steptype, remove redundant initialization.
5864 2016-09-02  Jakub Jelinek  <jakub@redhat.com>
5866         PR sanitizer/77396
5867         * sanopt.c: Include gimple-ssa.h, tree-phinodes.h and ssa-iterators.h.
5868         (sanopt_optimize_walker): Optimize away
5869         __asan_before_dynamic_init (...) followed by
5870         __asan_after_dynamic_init () without intervening memory loads/stores.
5871         * ipa-pure-const.c (special_builtin_state): Handle
5872         BUILT_IN_ASAN_BEFORE_DYNAMIC_INIT and
5873         BUILT_IN_ASAN_AFTER_DYNAMIC_INIT.
5875 2016-09-02  Prathamesh Kulkarni  <prathamesh.kulkarni@linaro.org>
5877         * cfg.c (free_original_copy_tables): Replace second assignment of
5878         bb_copy = NULL by bb_original = NULL.
5880 2016-09-02  Jakub Jelinek  <jakub@redhat.com>
5882         PR other/77421
5883         * config/i386/i386.c (ix86_expanded_args_builtin): Remove redundant
5884         assignment added in r216794.
5886 2016-09-02  David Malcolm  <dmalcolm@redhat.com>
5888         * Makefile.in (OBJS): Add typed-splay-tree.o.
5889         * selftest-run-tests.c (selftest::run_tests): Call
5890         typed_splay_tree_c_tests.
5891         * selftest.h (typed_splay_tree_c_tests): New decl.
5892         * typed-splay-tree.c: New file.
5893         * typed-splay-tree.h (typed_splay_tree::foreach_fn): New typedef.
5894         (typed_splay_tree::max): New method.
5895         (typed_splay_tree::min): New method.
5896         (typed_splay_tree::foreach): New method.
5897         (typed_splay_tree::closure): New struct.
5898         (typed_splay_tree::inner_foreach_fn): New function.
5900 2016-09-02  Prathamesh Kulkarni  <prathamesh.kulkarni@linaro.org>
5902         * ipa-cp.c (ipcp_store_bits_results): Change option name from
5903         -fipa-cp-bit to -fipa-bit-cp.
5905 2016-09-01  Martin Sebor  <msebor@redhat.com>
5907         PR tree-optimization/71831
5908         * tree-object-size.h: Return bool instead of the size and add
5909         argument for the size.
5910         * tree-object-size.c (compute_object_offset): Update signature.
5911         (addr_object_size): Same.
5912         (compute_builtin_object_size): Return bool instead of the size
5913         and add argument for the size.  Handle POINTER_PLUS_EXPR when
5914         optimization is disabled.
5915         (expr_object_size): Adjust.
5916         (plus_stmt_object_size): Adjust.
5917         (pass_object_sizes::execute): Adjust.
5918         * builtins.c (fold_builtin_object_size): Adjust.
5919         * doc/extend.texi (Object Size Checking): Update.
5920         * ubsan.c (instrument_object_size): Adjust.
5922 2016-09-01  Martin Sebor  <msebor@redhat.com>
5924         * genmatch.c (parser::parse_expr): Increase buffer size to guarantee
5925         it fits the output of the formatted function regardless of its
5926         arguments.
5927         * gcc/genmodes.c (parser::parse_expr): Same.
5928         * gimplify.c (gimplify_asm_expr): Same.
5929         * passes.c (pass_manager::register_one_dump_file): Same.
5930         * print-tree.c (print_node): Same.
5932 2016-09-01  Segher Boessenkool  <segher@kernel.crashing.org>
5934         * config/rs6000/altivec.md: Use VSCR_REGNO instead of 110 throughout.
5936 2016-09-01  Segher Boessenkool  <segher@kernel.crashing.org>
5938         * config/rs6000/altivec.md: Use VRSAVE_REGNO instead of 109 throughout.
5940 2016-09-01  Segher Boessenkool  <segher@kernel.crashing.org>
5942         * config/rs6000/altivec.md: Use CR6_REGNO instead of 74 throughout.
5943         * config/rs6000/vector.md: Ditto.
5944         * config/rs6000/vsx.md: Ditto.
5946 2016-09-01  Eric Botcazou  <ebotcazou@adacore.com>
5948         * ipa-inline-analysis.c (param_change_prob): Get to the base object
5949         first in all cases.
5951 2016-09-01  Segher Boessenkool  <segher@kernel.crashing.org>
5953         * config/rs6000/rs6000.md (*restore_gpregs_<mode>_r11,
5954         *restore_gpregs_<mode>_r12, *restore_gpregs_<mode>_r1,
5955         *return_and_restore_gpregs_<mode>_r11,
5956         *return_and_restore_gpregs_<mode>_r12,
5957         *return_and_restore_gpregs_<mode>_r1,
5958         *return_and_restore_fpregs_<mode>_r11,
5959         *return_and_restore_fpregs_<mode>_r12,
5960         *return_and_restore_fpregs_<mode>_r1): Use the hard register LR_REGNO
5961         directly instead of via the "l" constraint.  Renumber operands.
5962         Fix whitespace.
5964 2016-09-01  Segher Boessenkool  <segher@kernel.crashing.org>
5966         * config/rs6000/altivec.md (*save_world, *save_vregs_<mode>_r11,
5967         save_vregs_<mode>_r12, *restore_vregs_<mode>_r11,
5968         *restore_vregs_<mode>_r12): Use LR_REGNO instead of 65.
5969         * config/rs6000/darwin.md (load_macho_picbase, load_macho_picbase_si,
5970         load_macho_picbase_di, *call_indirect_nonlocal_darwin64,
5971         *call_nonlocal_darwin64, *call_value_indirect_nonlocal_darwin64,
5972         *call_value_nonlocal_darwin64, reload_macho_picbase,
5973         reload_macho_picbase_si, reload_macho_picbase_di): Ditto.
5974         * config/rs6000/rs6000.h (RETURN_ADDR_IN_PREVIOUS_FRAME): Ditto.
5975         * config/rs6000/rs6000.md (*save_gpregs_<mode>_r11,
5976         *save_gpregs_<mode>_r12, *save_gpregs_<mode>_r1,
5977         *save_fpregs_<mode>_r11, *save_fpregs_<mode>_r12,
5978         *save_fpregs_<mode>_r1): Ditto.
5979         * config/rs6000/spe.md (*save_gpregs_spe, *restore_gpregs_spe,
5980         *return_and_restore_gpregs_spe): Ditto.
5982 2016-09-01  Segher Boessenkool  <segher@kernel.crashing.org>
5984         * config/rs6000/rs6000.md
5985         (define_insn "*return_and_restore_fpregs_aix_<mode>_r11"): Delete
5986         the use of the link register.
5987         (define_insn "*return_and_restore_fpregs_aix_<mode>_r1"): Ditto.
5989 2016-09-01  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
5990             Michael Meissner  <meissner@linux.vnet.ibm.com>
5992         PR target/72827
5993         * config/rs6000/rs6000.c (rs6000_legitimize_address): Avoid
5994         reg+reg addressing for TImode.
5995         (rs6000_legitimate_address_p): Only allow register indirect
5996         addressing for TImode, even without TARGET_QUAD_MEMORY.
5998 2016-09-01  Richard Biener  <rguenther@suse.de>
6000         PR middle-end/77436
6001         * tree-chrec.c (tree_fold_binomial): Use widest_int, properly
6002         check whether the result fits the desired result type.
6004 2016-09-01  Nathan Sidwell  <nathan@acm.org>
6006         * config/nvptx/nvptx.md (cbranch<mode>4): Op 2 can be const.
6008 2016-09-01  Wilco Dijkstra  <wdijkstr@arm.com>
6010         * config/aarch64/aarch64.c (aarch64_legitimize_address_displacement):
6011         New function.
6012         (TARGET_LEGITIMIZE_ADDRESS_DISPLACEMENT): Define.
6014 2016-09-01  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
6016         * config/aarch64/aarch64.md (*ands<mode>_compare0): New pattern.
6017         * config/aarch64/aarch64.c (aarch64_select_cc_mode): Return CC_NZmode
6018         for comparisons of integer ZERO_EXTEND against zero.
6020 2016-09-01  Eric Botcazou  <ebotcazou@adacore.com>
6022         * config/i386/i386.c (ix86_option_override_internal): Also disable the
6023         STV pass if -mstackrealign is enabled.
6025 2016-08-31  Ilya Verbin  <iverbin@gmail.com>
6027         * config/i386/driver-i386.c (host_detect_local_cpu): Fix detection of
6028         AVX512IFMA.
6030 2016-08-31  David Malcolm  <dmalcolm@redhat.com>
6032         * diagnostic-show-locus.c (class layout): Add field m_fixit_hints.
6033         (layout_range::intersects_line_p): New method.
6034         (test_range_contains_point_for_single_point): Rename to...
6035         (test_layout_range_for_single_point): ...this, and add testing
6036         for layout_range::intersects_line_p.
6037         (test_range_contains_point_for_single_line): Rename to...
6038         (test_layout_range_for_single_line): ...this,  and add testing
6039         for layout_range::intersects_line_p.
6040         (test_range_contains_point_for_multiple_lines): Rename to...
6041         (test_layout_range_for_multiple_lines): ...this,  and add testing
6042         for layout_range::intersects_line_p.
6043         (layout::layout): Populate m_fixit_hints.
6044         (layout::get_expanded_location): Handle the case of a line-span
6045         for a fix-it hint.
6046         (layout::validate_fixit_hint_p): New method.
6047         (get_line_span_for_fixit_hint): New function.
6048         (layout::calculate_line_spans): Add spans for fixit-hints.
6049         (layout::should_print_annotation_line_p): New method.
6050         (layout::print_any_fixits): Drop param "richloc", instead using
6051         validated fixits in m_fixit_hints.  Add "const" to hint pointers.
6052         (diagnostic_show_locus): Avoid printing blank annotation lines.
6053         (selftest::test_diagnostic_context::test_diagnostic_context):
6054         Initialize show_column and start_span.
6055         (selftest::test_diagnostic_context::start_span_cb): New static
6056         function.
6057         (selftest::test_diagnostic_show_locus_fixit_lines): New function.
6058         (selftest::diagnostic_show_locus_c_tests): Update for function
6059         renamings.  Call test_diagnostic_show_locus_fixit_lines.
6061 2016-08-31  Marc Glisse  <marc.glisse@inria.fr>
6063         PR tree-optimization/73714
6064         * match.pd (a * (1 << b)): Revert change from 2016-05-23.
6066 2016-08-31  David Malcolm  <dmalcolm@redhat.com>
6068         * selftest.c: Move "namespace selftest {" to top of file,
6069         removing explicit "selftest::" qualifiers throughout.
6071 2016-08-31  Marc Glisse  <marc.glisse@inria.fr>
6073         * config/i386/avx512fintrin.h (__m512_u, __m512i_u, __m512d_u):
6074         New types.
6075         (_mm512_loadu_pd, _mm512_storeu_pd, _mm512_loadu_ps,
6076         _mm512_storeu_ps, _mm512_loadu_si512, _mm512_storeu_si512):
6077         Replace builtin with vector extension.
6078         * config/i386/avxintrin.h (__m256_u, __m256i_u, __m256d_u):
6079         New types.
6080         (_mm256_loadu_pd, _mm256_storeu_pd, _mm256_loadu_ps,
6081         _mm256_storeu_ps, _mm256_loadu_si256, _mm256_storeu_si256):
6082         Replace builtin with vector extension.
6083         * config/i386/emmintrin.h (__m128i_u, __m128d_u): New types.
6084         (_mm_loadu_pd, _mm_storeu_pd, _mm_loadu_si128, _mm_storeu_si128):
6085         Replace builtin with vector extension.
6086         * config/i386/xmmintrin.h (__m128_u): New type.
6087         (_mm_loadu_ps, _mm_storeu_ps): Replace builtin with vector extension.
6088         (_mm_load_ps, _mm_store_ps): Simplify.
6090 2016-08-31  Eric Botcazou  <ebotcazou@adacore.com>
6092         * config/arm/arm.c (thumb1_size_rtx_costs) <SET>: Add missing guard.
6094 2016-08-30  David Malcolm  <dmalcolm@redhat.com>
6096         * diagnostic-show-locus.c (colorizer::begin_state): Support more
6097         than 3 ranges per diagnostic by alternating between color 1 and
6098         color 2.
6099         (layout::layout): Replace use of rich_location::MAX_RANGES
6100         with richloc->get_num_locations ().
6101         (layout::calculate_line_spans): Replace use of
6102         rich_location::MAX_RANGES with m_layout_ranges.length ().
6103         (layout::print_annotation_line): Handle arbitrary numbers of
6104         ranges in caret-printing by defaulting to '^'.
6105         (selftest::test_one_liner_many_fixits): New function.
6106         (test_diagnostic_show_locus_one_liner): Call it.
6107         * diagnostic.c (diagnostic_initialize): Update for renaming
6108         of rich_location::MAX_RANGES to
6109         rich_location::STATICALLY_ALLOCATED_RANGES.
6110         * diagnostic.h (struct diagnostic_context): Likewise.
6112 2016-08-30  David Malcolm  <dmalcolm@redhat.com>
6114         * selftest.c (selftest::named_temp_file::named_temp_file): New
6115         ctor.
6116         (selftest::temp_source_file::~temp_source_file): Move to...
6117         (selftest::named_temp_file::~named_temp_file): ...here.
6118         (selftest::test_named_temp_file): New function.
6119         (selftest::selftest_c_tests): Call test_named_temp_file.
6120         * selftest.h (class named_temp_file): New class.
6121         (class temp_source_file): Convert to a subclass of named_temp_file.
6123 2016-08-30  Segher Boessenkool  <segher@kernel.crashing.org>
6125         * config/rs6000/rs6000.c (rs6000_emit_epilogue): Do not emit
6126         USEs of LR_REGNO in returns and sibcalls.
6127         (rs6000_output_mi_thunk): Similar.
6128         (rs6000_sibcall_aix): Similar.
6129         * config/rs6000/rs6000.md (sibcall, sibcall_value, sibcall_local32,
6130         sibcall_local64, sibcall_value_local32, sibcall_value_local64,
6131         sibcall_nonlocal_sysv<mode>, sibcall_value_nonlocal_sysv<mode>):
6132         Remove the USE of LR_REGNO from the patterns as well.  Delete an
6133         obsolete comment.
6134         (return_internal_<mode>): Delete.
6136 2016-08-30  Tamar Christina  <tamar.christina@arm.com>
6138         * gcc/config/aarch64/aarch64-simd.md
6139         (aarch64_ld2<mode>_dreg_le): New.
6140         (aarch64_ld2<mode>_dreg_be): New.
6141         (aarch64_ld2<mode>_dreg): Removed.
6142         (aarch64_ld3<mode>_dreg_le): New.
6143         (aarch64_ld3<mode>_dreg_be): New.
6144         (aarch64_ld3<mode>_dreg): Removed.
6145         (aarch64_ld4<mode>_dreg_le): New.
6146         (aarch64_ld4<mode>_dreg_be): New.
6147         (aarch64_ld4<mode>_dreg): Removed.
6148         (aarch64_ld<VSTRUCT:nregs><VDC:mode>): Wrapper around _le, _be.
6150 2016-08-30  David Malcolm  <dmalcolm@redhat.com>
6152         * diagnostic-show-locus.c (test_one_liner_fixit_insert): Remove
6153         redundant location param.
6154         (test_one_liner_fixit_remove): Likewise.
6155         (test_one_liner_fixit_replace): Likewise.
6156         (test_one_liner_fixit_replace_equal_secondary_range): Likewise.
6157         * gcc-rich-location.c
6158         (gcc_rich_location::add_fixit_misspelled_id): Eliminate call to
6159         get_range_from_loc.  Drop overload taking a const char *.
6160         * gcc-rich-location.h
6161         (gcc_rich_location::add_fixit_misspelled_id): Drop overload taking
6162         a const char *.
6164 2016-08-30  Szabolcs Nagy  <szabolcs.nagy@arm.com>
6166         * config/linux.c (linux_libc_has_function): Return true on musl.
6168 2016-08-30  Szabolcs Nagy  <szabolcs.nagy@arm.com>
6170         * config.gcc (*-*-*musl*): Disable gnu-indirect-function.
6172 2016-08-30  Eric Botcazou  <ebotcazou@adacore.com>
6174         * postreload-gcse.c (bb_has_well_behaved_predecessors): Tweak criterion
6175         used for abnormal egdes.
6177 2016-08-30  Jakub Jelinek  <jakub@redhat.com>
6179         PR tree-optimization/72866
6180         * tree-vect-patterns.c (search_type_for_mask): Turn into
6181         a small wrapper, move all code to ...
6182         (search_type_for_mask_1): ... this new function.  Add caching
6183         and adjust recursive calls.
6185         PR debug/77363
6186         * dwarf2out.c (modified_type_die): Use lookup_type_die (type)
6187         instead of lookup_type_die (type_main_variant (type)) even for array
6188         types.
6190         PR middle-end/77377
6191         * simplify-rtx.c (avoid_constant_pool_reference): For out of bounds
6192         constant pool reference return x instead of c.
6194 2016-08-29  Segher Boessenkool  <segher@kernel.crashing.org>
6196         * config/rs6000/rs6000.h (CALL_REALLY_USED_REGISTERS): Do not
6197         include MQ.
6199 2016-08-29  David Malcolm  <dmalcolm@redhat.com>
6201         * input.c
6202         (selftest::test_make_location_nonpure_range_endpoints): Fix
6203         header comment.
6205 2016-08-29  David Malcolm  <dmalcolm@redhat.com>
6207         * diagnostic-show-locus.c
6208         (selftest::test_one_liner_fixit_validation_adhoc_locations): New
6209         function.
6210         (selftest::test_diagnostic_show_locus_one_liner): Call it.
6211         * input.c (get_pure_location): Move to libcpp/line-map.c.
6212         * input.h (get_pure_location): Convert decl to an inline function
6213         calling implementation in libcpp.
6215 2016-08-29  Uros Bizjak  <ubizjak@gmail.com>
6217         PR target/77403
6218         * config/i386/sse.md (vec_set_lo_<mode><mask_name>): Fix assembler
6219         template for intel asm dialect.
6220         (vec_set_hi_<mode><mask_name>): Ditto.
6222 2016-08-29  David Malcolm  <dmalcolm@redhat.com>
6224         * selftest.h (selftest::fail): Add ATTRIBUTE_NORETURN.
6225         (selftest::fail_formatted): Likewise.
6227 2016-08-29  David Malcolm  <dmalcolm@redhat.com>
6229         * input.c (make_location): Call get_start and get_finish
6230         on the endpoints to avoid storing packed ranges or ad-hoc
6231         ranges in them.
6232         (selftest::test_make_location_nonpure_range_endpoints): New function.
6233         (selftest::input_c_tests): Call it.
6234         * input.h (get_start): New inline function.
6236 2016-08-29  Tom de Vries  <tom@codesourcery.com>
6238         PR c/77398
6239         * gimplify.c (gimplify_va_arg_expr): Replace first argument type error
6240         with assert.
6242 2016-08-29  Eric Botcazou  <ebotcazou@adacore.com>
6244         * Makefile.in (gcov-iov.h): Add dummy recipe.
6246 2016-08-29  Nathan Sidwell  <nathan@acm.org>
6248         * config/nvptx/nvptx.c: #include tree-vrp.h.
6250 2016-08-28  Eric Botcazou  <ebotcazou@adacore.com>
6252         PR target/77324
6253         * config/sparc/sparc.c (sparc_legitimate_address_p): Accept special
6254         HIGH+LO construct during reload.
6256 2016-08-28  Tom de Vries  <tom@codesourcery.com>
6258         PR lto/70955
6259         * config/i386/i386.c (ix86_build_builtin_va_list_64): Tag type with
6260         'sysv_abi va_list' attribute.
6261         (ix86_build_builtin_va_list): Tag type with 'ms_abi va_list' attribute.
6262         (ix86_canonical_va_list_type): Handle 'sysv_abi/ms_abi va_list'
6263         attributes.
6265 2016-08-27  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
6267         * emit-rtl.h (struct rtl_data): Make stack_slot_list a vector.
6268         * emit-rtl.c (unshare_all_rtl_1): Adjust.
6269         (unshare_all_rtl_again): Likewise.
6270         * function.c (assign_stack_local_1): Likewise.
6271         (assign_stack_temp_for_type): Likewise.
6273 2016-08-27  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
6275         * cfgbuild.c (make_edges): Adjust.
6276         * cfgrtl.c (can_delete_label_p): Likewise.
6277         * dwarf2cfi.c (create_trace_edges): Likewise.
6278         * except.c (sjlj_emit_dispatch_table): Likewise.
6279         * function.h (struct expr_status): make x_forced_labels a vector.
6280         * jump.c (rebuild_jump_labels_1): Adjust.
6281         * reload1.c (set_initial_label_offsets): Likewise.
6282         * stmt.c (force_label_rtx): Likewise.
6283         (expand_label): Likewise.
6285 2016-08-27  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
6287         * haifa-sched.c (fix_recovery_deps): Make ready_list a vector.
6289 2016-08-27  Patrick Palka  <ppalka@gcc.gnu.org>
6291         PR tree-optimization/71077
6292         PR tree-optimization/68542
6293         * fold-const.c (fold_relational_const): Fix folding of
6294         VECTOR_CST comparisons that have a scalar boolean result type.
6295         (selftest::test_vector_folding): New static function.
6296         (selftest::fold_const_c_tests): Call it.
6298 2016-08-27  Gerald Pfeifer  <gerald@pfeifer.com>
6300         * doc/extend.texi (SPU Built-in Functions): Remove stale
6301         references to material formerly at IBM and Sony.
6303 2016-08-26  David Edelsohn  <dje.gcc@gmail.com>
6305         PR target/77349
6306         * config/rs6000/xcoff.h (DWARF_OFFSET_SIZE): Define as PTR_SIZE.
6308 2016-08-26  David Malcolm  <dmalcolm@redhat.com>
6310         * diagnostic-show-locus.c
6311         (selftest::test_fixit_consolidation): New function.
6312         (selftest::diagnostic_show_locus_c_tests): Call it.
6313         * gcc-rich-location.h (gcc_rich_location): Eliminate unused
6314         constructor based on source_range.
6316 2016-08-26  David Malcolm  <dmalcolm@redhat.com>
6318         * diagnostic-color.c (color_dict): Add "fixit-insert" and
6319         "fixit-delete".
6320         (parse_gcc_colors): Update description of default GCC_COLORS.
6321         * diagnostic-show-locus.c (colorizer::set_fixit_hint): Delete.
6322         (colorizer::set_fixit_insert): New method.
6323         (colorizer::set_fixit_delete): New method.
6324         (colorizer::get_color_by_name): New method.
6325         (colorizer::STATE_FIXIT_INSERT): New constant.
6326         (colorizer::STATE_FIXIT_DELETE): New constant.
6327         (class colorizer): Drop "_cs" suffix from fields.  Delete "_ce"
6328         fields in favor of new field "m_stop_color".  Add fields
6329         "m_fixit_insert" and "m_fixit_delete".
6330         (colorizer::colorizer): Update for above changes.  Replace
6331         colorize_start calls with calls to get_color_by_name.
6332         (colorizer::begin_state): Handle STATE_FIXIT_INSERT and
6333         STATE_FIXIT_DELETE.  Update for field renamings.
6334         (colorizer::finish_state): Simplify by using m_stop_color,
6335         rather than multiple identical "*_ce" fields.
6336         (colorizer::get_color_by_name): New method.
6337         (layout::print_any_fixits): Print insertions and replacements
6338         using the "fixit-insert" color, and deletions using the
6339         "fixit-delete" color.
6340         * doc/invoke.texi (-fdiagnostics-color): Update description of
6341         default GCC_COLORS, and of the supported capabilities.
6343 2016-08-26  Max Filippov  <jcmvbkbc@gmail.com>
6345         * config/xtensa/xtensa.c (xtensa_expand_prologue): Update
6346         current_function_static_stack_size variable with the static
6347         stack frame size of the current function when
6348         flag_stack_usage_info is enabled.
6350 2016-08-26  Nathan Sidwell  <nathan@acm.org>
6352         * ipa-inline-analysis.c (inline_write_summary): Remove unnecessary
6353         assignment inside if condition.
6355 2016-08-26  Richard Biener  <rguenther@suse.de>
6357         PR tree-optimization/69047
6358         * tree-ssa.c (maybe_rewrite_mem_ref_base): Handle general bitfield
6359         extracts similar to what FRE does.
6360         (non_rewritable_mem_ref_base): Likewise.
6362 2016-08-26  Joseph Myers  <joseph@codesourcery.com>
6364         * config/i386/i386.c (ix86_libgcc_floating_mode_supported_p)
6365         (TARGET_LIBGCC_FLOATING_MODE_SUPPORTED_P): Remove.
6366         * config/i386/i386elf.h (IX86_MAYBE_NO_LIBGCC_TFMODE): Likewise.
6367         * config/i386/lynx.h (IX86_MAYBE_NO_LIBGCC_TFMODE): Likewise.
6368         * config/i386/netbsd-elf.h (IX86_MAYBE_NO_LIBGCC_TFMODE):
6369         Likewise.
6370         * config/i386/netbsd64.h (IX86_MAYBE_NO_LIBGCC_TFMODE): Likewise.
6371         * config/i386/nto.h (IX86_MAYBE_NO_LIBGCC_TFMODE): Likewise.
6372         * config/i386/openbsd.h (IX86_MAYBE_NO_LIBGCC_TFMODE): Likewise.
6373         * config/i386/rtemself.h (IX86_NO_LIBGCC_TFMODE): Likewise.
6374         * config/i386/vxworks.h (IX86_MAYBE_NO_LIBGCC_TFMODE): Likewise.
6376 2016-08-26  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
6378         PR target/70473
6379         * config/arm/cortex-a8-neon.md (cortex_a8_vfp_muld): Reduce
6380         reservation duration to 15 cycles.
6381         (cortex_a8_vfp_macs): Likewise.
6382         (cortex_a8_vfp_macd): Likewise.
6383         (cortex_a8_vfp_divs): Likewise.
6384         (cortex_a8_vfp_divd): Likewise.
6386 2016-08-26  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
6388         * config/arm/arm.c (arm_sets_movw_movt_fusible_p): New function.
6389         (aarch_macro_fusion_pair_p): Use above to avoid early return.
6391 2016-08-26  Prathamesh Kulkarni  <prathamesh.kulkarni@linaro.org>
6392             Martin Jambhor  <mjambor@suse.cz>
6394         * common.opt: New option -fipa-bit-cp.
6395         * doc/invoke.texi: Document -fipa-bit-cp.
6396         * opts.c (default_options_table): Add entry for -fipa-bit-cp.
6397         (enable_fdo_optimizations): Check for flag_ipa_bit_cp.
6398         * tree-ssa-ccp.h: New header file.
6399         * tree-ssa-ccp.c: Include tree-ssa-ccp.h
6400         (bit_value_binop_1): Change to bit_value_binop_1 and export it.
6401         Replace all occurences of tree parameter by two new params: signop, int.
6402         (bit_value_unop_1): Change to bit_value_unop and export it.
6403         Replace all occurences of tree parameter by two new params: signop,
6404         int.
6405         (bit_value_binop): Change call from bit_value_binop_1 to
6406         bit_value_binop.
6407         (bit_value_assume_aligned): Likewise.
6408         (bit_value_unop): Change call from bit_value_unop_1 to bit_value_unop.
6409         (do_ssa_ccp): Pass nonzero_p || flag_ipa_cp_bit instead of nonzero_p
6410         to ccp_finalize.
6411         (ccp_finalize): Skip processing if val->mask == 0.
6412         * ipa-cp.c: Include tree-ssa-ccp.h
6413         (ipcp_bits_lattice): New class.
6414         (ipcp_param_lattice (bits_lattice): New member.
6415         (print_all_lattices): Call ipcp_bits_lattice::print.
6416         (set_all_contains_variable): Call ipcp_bits_lattice::set_to_bottom.
6417         (initialize_node_lattices): Likewise.
6418         (propagate_bits_accross_jump_function): New function.
6419         (propagate_constants_accross_call): Call
6420         propagate_bits_accross_jump_function.
6421         (ipcp_propagate_stage): Store parameter types when in_lto_p is true.
6422         (ipcp_store_bits_results): New function.
6423         (ipcp_driver): Call ipcp_store_bits_results.
6424         * ipa-prop.h (ipa_bits): New struct.
6425         (ipa_jump_func): Add new member bits of type ipa_bits.
6426         (ipa_param_descriptor): Change decl to decl_or_type.
6427         (ipa_get_param): Change decl to decl_or_type and assert on
6428         PARM_DECL.
6429         (ipa_get_type): New function.
6430         (ipcp_transformation_summary): New member bits.
6431         * ipa-prop.c (ipa_get_param_decl_index_1): s/decl/decl_or_type.
6432         (ipa_populate_param_decls): Likewise.
6433         (ipa_dump_param): Likewise.
6434         (ipa_print_node_jump_functions_for_edge): Pretty-print ipa_bits jump
6435         function.
6436         (ipa_set_jf_unknown): Set ipa_bits::known to false.
6437         (ipa_compute_jump_functions_for_edge): Compute jump function for bits
6438         propagation.
6439         (ipa_node_params_t::duplicate): Copy src->bits into dst->bits.
6440         (ipa_write_jump_function): Add streaming for ipa_bits.
6441         (ipa_read_jump_function): Add support for reading streamed ipa_bits.
6442         (write_ipcp_transformation_info): Add streaming for ipa_bits
6443         summary for ltrans.
6444         (read_ipcp_transfomration_info): Add support for reading streamed
6445         ipa_bits.
6446         (ipcp_update_bits): New function.
6447         (ipcp_transform_function): Call ipcp_update_bits.
6449 2016-08-25  Szabolcs Nagy  <szabolcs.nagy@arm.com>
6451         * config/mips/linux.h (MUSL_DYNAMIC_LINKER32): Update.
6452         (MUSL_DYNAMIC_LINKER64, MUSL_DYNAMIC_LINKERN32): Update.
6454 2016-08-25  David Edelsohn  <dje.gcc@gmail.com>
6456         * multiple_target.c (pass_data_dispatcher_calls): Fix typo.
6458 2016-08-25  Richard Biener  <rguenther@suse.de>
6460         * dwarf2out.c (gen_remaining_tmpl_value_param_die_attributes):
6461         Only add locations in late dwarf.
6462         (gen_scheduled_generic_parms_dies): Do not set early dwarf here.
6463         (dwarf2out_early_finish): But do it here.
6465 2016-08-24  Michael Collison  <michael.collison@linaro.org>
6466             Michael Collison  <michael.collison@arm.com>
6468         * config/arm/arm-modes.def: Add new condition code mode CC_V
6469         to represent the overflow bit.
6470         * config/arm/arm.c (maybe_get_arm_condition_code):
6471         Add support for CC_Vmode.
6472         (arm_gen_unlikely_cbranch): New function to generate common
6473         rtl conditional branches for overflow patterns.
6474         * config/arm/arm-protos.h: Add prototype for
6475         arm_gen_unlikely_cbranch.
6476         * config/arm/arm.md (addv<mode>4, add<mode>3_compareV,
6477         addsi3_compareV_upper): New patterns to support signed
6478         builtin overflow add operations.
6479         (uaddv<mode>4, add<mode>3_compareC, addsi3_compareV_upper):
6480         New patterns to support unsigned builtin add overflow operations.
6481         (subv<mode>4, sub<mode>3_compare1): New patterns to support signed
6482         builtin overflow subtract operations,
6483         (usubv<mode>4): New patterns to support unsigned builtin subtract
6484         overflow operations.
6485         (negvsi3, negvdi3, negdi2_compare, negsi2_carryin_compare): New patterns
6486         to support builtin overflow negate operations.
6488 2016-08-24  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
6490         Revert
6491         2016-08-23  Dominik Vogt  <vogt@linux.vnet.ibm.com>
6493         * explow.c (get_dynamic_stack_size): Take known alignment of stack
6494         pointer + STACK_DYNAMIC_OFFSET into account when calculating the size
6495         needed.
6497 2016-08-24  Thomas Preud'homme  <thomas.preudhomme@arm.com>
6499         * doc/fragments.texi (MULTILIB_REUSE): Mention that only options in
6500         MULTILIB_OPTIONS should be used.  Small wording fixes.
6501         * genmultilib: Memorize set of all option combinations in
6502         combination_space.  Detect if RHS of MULTILIB_REUSE uses an option not
6503         found in MULTILIB_OPTIONS by checking if option set is listed in
6504         combination_space.  Output new and existing error message to stderr.
6506 2016-08-24  Thomas Preud'homme  <thomas.preudhomme@arm.com>
6508         * config/arm/t-aprofile (MULTILIB_MATCHES): Add mapping for
6509         -mcpu=cortex-a7, -mfpu=neon-fp16, -mfpu=fpv5-d16 and -mfpu=fp-armv8.
6510         Fix typo in -mfpu=vfpv3-d16-fp16 mapping.
6511         (MULTILIB_REUSE): Remove reuse rules for option set including
6512         -mfpu=fp-armv8 and -mfpu=vfpv4
6514 2016-08-24  Sebastian Huber  <sebastian.huber@embedded-brains.de>
6516         * config/arm/t-rtems: Add vfp multilib.
6518 2016-08-23  Ian Lance Taylor  <iant@golang.org>
6520         * config/s390/s390.c (s390_asm_file_start): Call
6521         default_file_start.
6523 2016-08-23  Michael Meissner  <meissner@linux.vnet.ibm.com>
6525         * config/rs6000/rs6000.c (rs6000_expand_vector_init): Set
6526         initialization of all 0's to the 0 constant, instead of directly
6527         generating XOR.  Add support for V4SImode vector initialization on
6528         64-bit systems with direct move, and rework the ISA 3.0 V4SImode
6529         initialization.  Change variables used in V4SFmode vector
6530         intialization.  For V4SFmode vector splat on ISA 3.0, make sure
6531         any memory addresses are in index form.  Add support for using
6532         VSPLTH/VSPLTB to initialize vector short and vector char vectors
6533         with all of the same element.
6534         (regno_or_subregno): New helper function to return a register
6535         number for either REG or SUBREG.
6536         (rs6000_adjust_vec_address): Do not generate ADDI <reg>,R0,<num>.
6537         Use regno_or_subregno where possible.
6538         (rs6000_split_v4si_init_di_reg): New helper function to build up a
6539         DImode value from two SImode values in order to generate V4SImode
6540         vector initialization on 64-bit systems with direct move.
6541         (rs6000_split_v4si_init): Split up the insns for a V4SImode vector
6542         initialization.
6543         (rtx_is_swappable_p): V4SImode vector initialization insn is not
6544         swappable.
6545         * config/rs6000/rs6000-protos.h (rs6000_split_v4si_init): Add
6546         declaration.
6547         * config/rs6000/vsx.md (VSX_SPLAT_I): New mode iterators and
6548         attributes to initialize V8HImode and V16QImode vectors with the
6549         same element.
6550         (VSX_SPLAT_COUNT): Likewise.
6551         (VSX_SPLAT_SUFFIX): Likewise.
6552         (UNSPEC_VSX_VEC_INIT): New unspec.
6553         (vsx_concat_v2sf): Eliminate using 'preferred' register classes.
6554         Allow SFmode values to come from Altivec registers.
6555         (vsx_init_v4si): New insn/split for V4SImode vector initialization
6556         on 64-bit systems with direct move.
6557         (vsx_splat_<mode>, VSX_W iterator): Rework V4SImode and V4SFmode
6558         vector initializations, to allow V4SImode vector initializations
6559         on 64-bit systems with direct move.
6560         (vsx_splat_v4si): Likewise.
6561         (vsx_splat_v4si_di): Likewise.
6562         (vsx_splat_v4sf): Likewise.
6563         (vsx_splat_v4sf_internal): Likewise.
6564         (vsx_xxspltw_<mode>, VSX_W iterator): Eliminate using 'preferred'
6565         register classes.
6566         (vsx_xxspltw_<mode>_direct, VSX_W iterator): Likewise.
6567         (vsx_vsplt<VSX_SPLAT_SUFFIX>_di): New insns to support
6568         initializing V8HImode and V16QImode vectors with the same
6569         element.
6570         * config/rs6000/rs6000.h (TARGET_DIRECT_MOVE_64BIT): Disallow
6571         optimization if -maltivec=be.
6573 2016-08-23  Christophe Lyon  <christophe.lyon@linaro.org>
6575         * config/arm/arm.md (arm_movqi_insn): Swap predicable_short_it
6576         attribute for alternatives 3 and 4.
6578 2016-08-23  David Malcolm  <dmalcolm@redhat.com>
6580         * selftest.c (selftest::assert_str_contains): New function.
6581         (selftest::test_assertions): Verify ASSERT_STR_CONTAINS.
6582         * selftest.h (selftest::assert_str_contains): New decl.
6583         (ASSERT_STR_CONTAINS): New macro.
6585 2016-08-23  Richard Biener  <rguenther@suse.de>
6587         PR tree-optimization/77286
6588         * tree-vect-loop.c (vect_analyze_loop_form_1): Do not modify
6589         the CFG here.
6590         (vect_transform_loop): Split exit edges of loop and scalar
6591         loop if required and at the appropriate time.
6593 2016-08-23  Dominik Vogt  <vogt@linux.vnet.ibm.com>
6595         * explow.c (get_dynamic_stack_size): Take known alignment of stack
6596         pointer + STACK_DYNAMIC_OFFSET into account when calculating the size
6597         needed.
6598         Correct a typo in a comment.
6600 2016-08-23  Dominik Vogt  <vogt@linux.vnet.ibm.com>
6602         * config/s390/s390.md ("*andc_split"): New splitter for and with
6603         complement.
6605 2016-08-23  Richard Biener  <rguenther@suse.de>
6607         PR tree-optimization/27336
6608         * tree-vrp.c (infer_value_range): Handle stmts that can throw
6609         by looking for a non-EH edge.
6610         (process_assert_insertions_for): Likewise.
6612 2016-08-23  Richard Biener  <rguenther@suse.de>
6614         PR middle-end/77305
6615         * statistics.c (statistics_counter_event): Robustify against
6616         NULL current_pass.
6618 2016-08-23  Venkataramanan Kumar  <venkataramanan.kumar@amd.com>
6620         * config/i386/i386.c (processor_alias_table): Enable PTA_PRFCHW
6621         for targets amdfam10 and barcelona.
6623 2016-08-22  Uros Bizjak  <ubizjak@gmail.com>
6625         * config/i386/i386.md (*zero_extendsidi2): Add (*r,*k) alternative.
6626         (zero_extend<mode>di2): Ditto.
6627         (*zero_extend<mode>si2): Ditto.
6628         (*zero_extendqihi2): Ditto.
6630 2016-08-22  Joseph Myers  <joseph@codesourcery.com>
6632         PR middle-end/77269
6633         * builtins.c (fold_builtin_classify): Use builtin_decl_explicit
6634         (BUILT_IN_SIGNBIT) to expand __builtin_isinf_sign.
6636 2016-08-22  Patrick Palka  <ppalka@gcc.gnu.org>
6638         * print-tree.c (print_node) [VECTOR_CST]: Coalesce the output of
6639         identical consecutive elements.
6640         [SSA_NAME]: Print the name's def stmt on its own line.  When printing
6641         the node's def stmt, avoid printing an unwanted trailing newline by
6642         replacing the call to print_gimple_stmt() with its inlined body and
6643         adjusting it to not set pp_needs_newline and to call pp_flush()
6644         instead of pp_newline_and_flush().
6646 2016-08-22  Joseph Myers  <joseph@codesourcery.com>
6648         * tree.h (CASE_FLT_FN_FLOATN_NX, float16_type_node)
6649         (float32_type_node, float64_type_node, float32x_type_node)
6650         (float128x_type_node): New macros.
6651         * builtin-types.def (BT_FLOAT16, BT_FLOAT32, BT_FLOAT64)
6652         (BT_FLOAT128, BT_FLOAT32X, BT_FLOAT64X, BT_FLOAT128X)
6653         (BT_FN_FLOAT16, BT_FN_FLOAT32, BT_FN_FLOAT64, BT_FN_FLOAT128)
6654         (BT_FN_FLOAT32X, BT_FN_FLOAT64X, BT_FN_FLOAT128X)
6655         (BT_FN_FLOAT16_FLOAT16, BT_FN_FLOAT32_FLOAT32)
6656         (BT_FN_FLOAT64_FLOAT64, BT_FN_FLOAT128_FLOAT128)
6657         (BT_FN_FLOAT32X_FLOAT32X, BT_FN_FLOAT64X_FLOAT64X)
6658         (BT_FN_FLOAT128X_FLOAT128X, BT_FN_FLOAT16_CONST_STRING)
6659         (BT_FN_FLOAT32_CONST_STRING, BT_FN_FLOAT64_CONST_STRING)
6660         (BT_FN_FLOAT128_CONST_STRING, BT_FN_FLOAT32X_CONST_STRING)
6661         (BT_FN_FLOAT64X_CONST_STRING, BT_FN_FLOAT128X_CONST_STRING)
6662         (BT_FN_FLOAT16_FLOAT16_FLOAT16, BT_FN_FLOAT32_FLOAT32_FLOAT32)
6663         (BT_FN_FLOAT64_FLOAT64_FLOAT64, BT_FN_FLOAT128_FLOAT128_FLOAT128)
6664         (BT_FN_FLOAT32X_FLOAT32X_FLOAT32X)
6665         (BT_FN_FLOAT64X_FLOAT64X_FLOAT64X)
6666         (BT_FN_FLOAT128X_FLOAT128X_FLOAT128X): New type definitions.
6667         * builtins.def (DEF_GCC_FLOATN_NX_BUILTINS): New macro.
6668         (copysign, fabs, huge_val, inf, nan, nans): Use it.
6669         * builtins.c (expand_builtin): Use CASE_FLT_FN_FLOATN_NX for fabs
6670         and copysign.
6671         (fold_builtin_0): Use CASE_FLT_FN_FLOATN_NX for inf and huge_val.
6672         (fold_builtin_1): Use CASE_FLT_FN_FLOATN_NX for fabs.
6673         * doc/extend.texi (Other Builtins): Document these built-in
6674         functions.
6675         * fold-const-call.c (fold_const_call): Use CASE_FLT_FN_FLOATN_NX
6676         for nan and nans.
6678 2016-08-22  Gerald Pfeifer  <gerald@pfeifer.com>
6680         * doc/install.texi (Binaries): www.opencsw.org now uses https.
6682 2016-08-22  Richard Biener  <rguenther@suse.de>
6684         * tree-ssa-forwprop.c (pass_forwprop::execute): Use RPO order.
6686 2016-08-21  Uros Bizjak  <ubizjak@gmail.com>
6688         PR target/77270
6689         * config/i386/i386.md (prefetch): When TARGET_PRFCHW or
6690         TARGET_PREFETCHWT1 are disabled, emit 3dNOW! write prefetches for
6691         non-SSE2 athlons only, otherwise prefer SSE prefetches.
6693 2016-08-20  Kugan Vivekanandarajah  <kuganv@linaro.org>
6695         * tree-vrp.c (vrp_visit_assignment_or_call): Changed to Return VR.
6696         (vrp_visit_cond_stmt): Just sets TAKEN_EDGE_P.
6697         (vrp_visit_switch_stmt): Likewise.
6698         (extract_range_from_stmt): Factored out from vrp_visit_stmt.
6699         (extract_range_from_phi_node): Factored out from vrp_visit_phi_stmt.
6700         (vrp_visit_stmt): Use extract_range_from_stmt.
6701         (vrp_visit_phi_node): Use extract_range_from_phi_node.
6703 2016-08-20  Kugan Vivekanandarajah  <kuganv@linaro.org>
6705         * Makefile.in: Add tree-vrp.h to GTFILES.
6706         * gengtype.c (open_base_files): Add tree-vrp.h.
6707         * asan.c: Add tree-vrp.h which now has the definition value_range_type.
6708         * builtins.c: Likewise.
6709         * fold-const.c: Likewise.
6710         * gimple-builder.c: Likewise.
6711         * gimple-laddress.c: Likewise.
6712         * hsa-gen.c: Likewise.
6713         * internal-fn.c: Likewise.
6714         * ssa.h: Likewise.
6715         * targhooks.c: Liewise,
6716         * tree-ssa-address.c: Likewise.
6717         * tree-ssanames.h (value_range_type: Move to tree-vrp.h.
6718         * tree-vrp.c (struct value_range): Move to tree-vrp.h
6719         * tree-vrp.h: New file.
6721 2016-08-20  Kugan Vivekanandarajah  <kuganv@linaro.org>
6723         PR tree-optimization/61839
6724         * tree-vrp.c (two_valued_val_range_p): New.
6725         (simplify_stmt_using_ranges): Convert CST BINOP VAR where VAR is
6726         two-valued to VAR == VAL1 ? (CST BINOP VAL1) : (CST BINOP VAL2).
6727         Also Convert VAR BINOP CST where VAR is two-valued to
6728         VAR == VAL1 ? (VAL1 BINOP CST) : (VAL2 BINOP CST).
6730 2016-08-19  David Malcolm  <dmalcolm@redhat.com>
6732         * diagnostic-show-locus.c
6733         (layout::annotation_line_showed_range_p): New method.
6734         (layout::print_any_fixits): Remove case fixit_hint::REMOVE.
6735         Reimplement case fixit_hint::REPLACE to cover removals, and
6736         replacements where the range of the replacement isn't one
6737         of the ranges in the rich_location.
6738         (test_one_liner_fixit_replace): Likewise.
6739         (selftest::test_one_liner_fixit_replace_non_equal_range): New
6740         function.
6741         (selftest::test_one_liner_fixit_replace_equal_secondary_range):
6742         New function.
6743         (selftest::test_diagnostic_show_locus_one_liner): Call the new
6744         functions.
6745         * diagnostic.c (print_parseable_fixits): Remove case
6746         fixit_hint::REMOVE.
6748 2016-08-19  Uros Bizjak  <ubizjak@gmail.com>
6750         PR target/77270
6751         * config/i386/i386.c (ix86_option_override_internal): Remove
6752         PTA_PRFCHW from entries that also have PTA_3DNOW flag.
6753         Enable SSE prefetch also for TARGET_PREFETCHWT1.
6754         Do not try to enable TARGET_PRFCHW ISA flag here.
6755         * config/i386/i386.md (prefetch): Enable also for TARGET_3DNOW.
6756         Rewrite expander function body.
6757         (*prefetch_3dnow): Enable for TARGET_3DNOW and TARGET_PREFETCHWT1.
6759 2016-08-19  Joseph Myers  <joseph@codesourcery.com>
6761         PR c/32187
6762         * tree-core.h (TI_COMPLEX_FLOAT16_TYPE)
6763         (TI_COMPLEX_FLOATN_NX_TYPE_FIRST, TI_COMPLEX_FLOAT32_TYPE)
6764         (TI_COMPLEX_FLOAT64_TYPE, TI_COMPLEX_FLOAT128_TYPE)
6765         (TI_COMPLEX_FLOAT32X_TYPE, TI_COMPLEX_FLOAT64X_TYPE)
6766         (TI_COMPLEX_FLOAT128X_TYPE, TI_FLOAT16_TYPE, TI_FLOATN_TYPE_FIRST)
6767         (TI_FLOATN_NX_TYPE_FIRST, TI_FLOAT32_TYPE, TI_FLOAT64_TYPE)
6768         (TI_FLOAT128_TYPE, TI_FLOATN_TYPE_LAST, TI_FLOAT32X_TYPE)
6769         (TI_FLOATNX_TYPE_FIRST, TI_FLOAT64X_TYPE, TI_FLOAT128X_TYPE)
6770         (TI_FLOATNX_TYPE_LAST, TI_FLOATN_NX_TYPE_LAST): New enum
6771         tree_index values.
6772         (NUM_FLOATN_TYPES, NUM_FLOATNX_TYPES, NUM_FLOATN_NX_TYPES): New
6773         macros.
6774         (struct floatn_type_info): New structure type.
6775         (floatn_nx_types): New variable declaration.
6776         * tree.h (FLOATN_TYPE_NODE, FLOATN_NX_TYPE_NODE)
6777         (FLOATNX_TYPE_NODE, float128_type_node, float64x_type_node)
6778         (COMPLEX_FLOATN_NX_TYPE_NODE): New macros.
6779         * tree.c (floatn_nx_types): New variable.
6780         (build_common_tree_nodes): Initialize _FloatN, _FloatNx and
6781         corresponding complex types.
6782         * target.def (floatn_mode): New hook.
6783         * targhooks.c: Include "real.h".
6784         (default_floatn_mode): New function.
6785         * targhooks.h (default_floatn_mode): New prototype.
6786         * doc/extend.texi (Floating Types): Document _FloatN and _FloatNx
6787         types.
6788         * doc/sourcebuild.texi (float@var{n}, float@var{n}x): Document new
6789         effective-target and dg-add-options keywords.
6790         (float@var{n}_runtime, float@var{n}x_runtime, floatn_nx_runtime):
6791         Document new effective-target keywords.
6792         * doc/tm.texi.in (TARGET_FLOATN_MODE): New @hook.
6793         * doc/tm.texi: Regenerate.
6794         * ginclude/float.h (LDBL_DECIMAL_DIG): Define to
6795         __LDBL_DECIMAL_DIG__, not __DECIMAL_DIG__.
6796         [__STDC_WANT_IEC_60559_TYPES_EXT__]: Define macros from TS
6797         18661-3.
6798         * real.h (struct real_format): Add field ieee_bits.
6799         * real.c (ieee_single_format, mips_single_format)
6800         (motorola_single_format, spu_single_format, ieee_double_format)
6801         (mips_double_format, motorola_double_format)
6802         (ieee_extended_motorola_format, ieee_extended_intel_96_format)
6803         (ieee_extended_intel_128_format)
6804         (ieee_extended_intel_96_round_53_format, ibm_extended_format)
6805         (mips_extended_format, ieee_quad_format, mips_quad_format)
6806         (vax_f_format, vax_d_format, vax_g_format, decimal_single_format)
6807         (decimal_double_format, decimal_quad_format, ieee_half_format)
6808         (arm_half_format, real_internal_format: Initialize ieee_bits
6809         field.
6810         * config/i386/i386.c (ix86_init_builtin_types): Do not initialize
6811         float128_type_node.  Set float80_type_node to float64x_type_node
6812         if appropriate and long_double_type_node not appropriate.
6813         * config/ia64/ia64.c (ia64_init_builtins): Likewise.
6814         * config/pdp11/pdp11.c (pdp11_f_format, pdp11_d_format):
6815         Initialize ieee_bits field.
6816         * config/rs6000/rs6000.c (TARGET_FLOATN_MODE): New macro.
6817         (rs6000_init_builtins): Set ieee128_float_type_node to
6818         float128_type_node.
6819         (rs6000_floatn_mode): New function.
6821 2016-08-19  Jakub Jelinek  <jakub@redhat.com>
6823         * config/i386/rdseedintrin.h (_rdseed16_step, _rdseed32_step,
6824         _rdseed64_step): Uglify argument names and/or local variable names
6825         in inline functions.
6826         * config/i386/rtmintrin.h (_xabort): Likewise.
6827         * config/i386/avx512vlintrin.h (_mm256_ternarylogic_epi64,
6828         _mm256_mask_ternarylogic_epi64, _mm256_maskz_ternarylogic_epi64,
6829         _mm256_ternarylogic_epi32, _mm256_mask_ternarylogic_epi32,
6830         _mm256_maskz_ternarylogic_epi32, _mm_ternarylogic_epi64,
6831         _mm_mask_ternarylogic_epi64, _mm_maskz_ternarylogic_epi64,
6832         _mm_ternarylogic_epi32, _mm_mask_ternarylogic_epi32,
6833         _mm_maskz_ternarylogic_epi32): Likewise.
6834         * config/i386/lwpintrin.h (__llwpcb, __lwpval32, __lwpval64,
6835         __lwpins32, __lwpins64): Likewise.
6836         * config/i386/avx2intrin.h (_mm_i32gather_pd, _mm_mask_i32gather_pd,
6837         _mm256_i32gather_pd, _mm256_mask_i32gather_pd, _mm_i64gather_pd,
6838         _mm_mask_i64gather_pd, _mm256_i64gather_pd, _mm256_mask_i64gather_pd,
6839         _mm_i32gather_ps, _mm_mask_i32gather_ps, _mm256_i32gather_ps,
6840         _mm256_mask_i32gather_ps, _mm_i64gather_ps, _mm_mask_i64gather_ps,
6841         _mm256_i64gather_ps, _mm256_mask_i64gather_ps, _mm_i32gather_epi64,
6842         _mm_mask_i32gather_epi64, _mm256_i32gather_epi64,
6843         _mm256_mask_i32gather_epi64, _mm_i64gather_epi64,
6844         _mm_mask_i64gather_epi64, _mm256_i64gather_epi64,
6845         _mm256_mask_i64gather_epi64, _mm_i32gather_epi32,
6846         _mm_mask_i32gather_epi32, _mm256_i32gather_epi32,
6847         _mm256_mask_i32gather_epi32, _mm_i64gather_epi32,
6848         _mm_mask_i64gather_epi32, _mm256_i64gather_epi32,
6849         _mm256_mask_i64gather_epi32): Likewise.
6850         * config/i386/pmm_malloc.h (_mm_malloc, _mm_free): Likewise.
6851         * config/i386/ia32intrin.h (__writeeflags): Likewise.
6852         * config/i386/pkuintrin.h (_wrpkru): Likewise.
6853         * config/i386/avx512pfintrin.h (_mm512_mask_prefetch_i32gather_pd,
6854         _mm512_mask_prefetch_i32gather_ps, _mm512_mask_prefetch_i64gather_pd,
6855         _mm512_mask_prefetch_i64gather_ps, _mm512_prefetch_i32scatter_pd,
6856         _mm512_prefetch_i32scatter_ps, _mm512_mask_prefetch_i32scatter_pd,
6857         _mm512_mask_prefetch_i32scatter_ps, _mm512_prefetch_i64scatter_pd,
6858         _mm512_prefetch_i64scatter_ps, _mm512_mask_prefetch_i64scatter_pd,
6859         _mm512_mask_prefetch_i64scatter_ps): Likewise.
6860         * config/i386/gmm_malloc.h (_mm_malloc, _mm_free): Likewise.
6861         * config/i386/avx512fintrin.h (_mm512_ternarylogic_epi64,
6862         _mm512_mask_ternarylogic_epi64, _mm512_maskz_ternarylogic_epi64,
6863         _mm512_ternarylogic_epi32, _mm512_mask_ternarylogic_epi32,
6864         _mm512_maskz_ternarylogic_epi32, _mm512_i32gather_ps,
6865         _mm512_mask_i32gather_ps, _mm512_i32gather_pd, _mm512_i64gather_ps,
6866         _mm512_i64gather_pd, _mm512_i32gather_epi32, _mm512_i32gather_epi64,
6867         _mm512_i64gather_epi32, _mm512_i64gather_epi64): Likewise.
6869         * config/i386/fxsrintrin.h (_fxsave): Remove return keyword in inlines
6870         returning void.
6871         (_fxrstor, _fxsave64, _fxrstor64): Likewise.
6872         * config/i386/xsaveintrin.h (_xsave, _xrstor, _xsave64, _xrstor64):
6873         Likewise.
6874         * config/i386/xsaveoptintrin.h (_xsaveopt, _xsaveopt64): Likewise.
6875         * config/i386/pkuintrin.h (_wrpkru): Likewise.  Add space after
6876         function name.
6877         (_rdpkru_u32): Add space after function name.
6879         * config/i386/t-i386 (i386-c.o): Don't depend on
6880         i386-builtin-types.inc.
6881         (i386.o): Depend on i386-builtin-types.inc.
6883 2016-08-19  Matthew Wahab  <matthew.wahab@arm.com>
6885         PR target/77281
6886         * config/arm/arm.c (neon_valid_immediate): Delete declaration.
6887         Use const_vec_duplicate to check for duplicated elements.
6889 2016-08-19  Richard Biener  <rguenther@suse.de>
6891         PR tree-optimization/77290
6892         * tree-ssa-pre.c (eliminate_dom_walker::before_dom_children):
6893         Fix flag_tree_parallelize_loops check.
6895 2016-08-19  Richard Biener  <rguenther@suse.de>
6897         * match.pd (x | 0 -> x): Add.
6899 2016-08-19  Richard Biener  <rguenther@suse.de>
6901         PR tree-optimization/77286
6902         * tree-vect-loop-manip.c (slpeel_duplicate_current_defs_from_edges):
6903         Deal with virtual PHIs being out-of-order.
6905 2016-08-18  David Malcolm  <dmalcolm@redhat.com>
6907         * doc/invoke.texi (fverbose-asm): Note that source code lines
6908         are emitted, and provide an example.
6909         * final.c (asm_show_source): New function.
6910         (final_scan_insn): Call asm_show_source.
6912 2016-08-18  David Malcolm  <dmalcolm@redhat.com>
6914         * diagnostic-show-locus.c (colorizer::colorizer): Replace diagnostic
6915         param with diagnostic_kind.
6916         (class colorizer): Similarly replace field m_diagnostic with
6917         m_diagnostic_kind.
6918         (colorizer::colorizer): Replace diagnostic
6919         param with diagnostic_kind.
6920         (colorizer::begin_state): Update for above field change.
6921         (layout::layout): Replace diagnostic param with rich_location *
6922         and diagnostic_kind.
6923         (diagnostic_show_locus): Replace diagnostic param with richloc
6924         and diagnostic_kind.
6925         (class selftest::test_diagnostic_context): New class.
6926         (selftest::test_diagnostic_show_locus_unknown_location): New
6927         function.
6928         (selftest::test_one_liner_simple_caret): New function.
6929         (selftest::test_one_liner_caret_and_range): New function.
6930         (selftest::test_one_liner_multiple_carets_and_ranges): New
6931         function.
6932         (selftest::test_one_liner_fixit_remove): New function.
6933         (selftest::test_one_liner_fixit_replace): New function.
6934         (selftest::test_diagnostic_show_locus_one_liner): New function.
6935         (selftest::diagnostic_show_locus_c_tests): Call the new test
6936         functions.
6937         * diagnostic.c (diagnostic_initialize): Initialize
6938         colorize_source_p, show_ruler_p and parseable_fixits_p.
6939         (default_diagnostic_finalizer): Update for change to
6940         diagnostic_show_locus.
6941         (diagnostic_append_note): Likewise.
6942         * diagnostic.h (diagnostic_show_locus): Replace
6943         const diagnostic_info * param with location * and diagnostic_t.
6945 2016-08-18  David Malcolm  <dmalcolm@redhat.com>
6947         * input.c (saved_line_table): New global.
6948         (class selftest::temp_line_table): Rename to line_table_test and
6949         move declaration to selftest.h, and drop field m_old_line_table.
6950         (selftest::temp_line_table::temp_line_table): Rename ctor to...
6951         (selftest::line_table_test::line_table_test): ...this.  Add a
6952         default ctor.  Store current value of line_table within
6953         saved_line_table.
6954         (selftest::temp_line_table::~temp_line_table): Rename dtor to...
6955         (selftest::line_table_test::~line_table_test): ...this, and
6956         restore line_table from the saved_line_table, rather than
6957         m_old_line_table.
6958         (selftest::test_accessing_ordinary_linemaps): Update for above
6959         renaming.
6960         (selftest::test_lexer): Likewise.
6961         (struct selftest::lexer_test): Likewise.
6962         (selftest::lexer_test::lexer_test): Likewise.
6963         (selftest::input_c_tests): Move the looping over test cases from
6964         here into...
6965         (selftest::for_each_line_table_case): New function.
6966         * input.h (saved_line_table): New decl.
6967         * selftest.h (struct selftest::line_table_case): New forward decl.
6968         (class selftest::line_table_test): New class, moved here from
6969         selftest::temp_line_table in input.c, and renamed.
6970         (selftest::for_each_line_table_case): New decl.
6972 2015-08-18  H.J. Lu  <hongjiu.lu@intel.com>
6974         PR target/72839
6975         * config/i386/i386.c (lakemont_cost): Set MOVE_RATIO to 17.
6977 2016-08-18  Chung-Lin Tang  <cltang@codesourcery.com>
6979         PR middle-end/70895
6980         * gimplify.c (omp_add_variable): Adjust/add variable mapping on
6981         enclosing parallel construct for reduction variables on OpenACC loop
6982         directives.
6984 2016-08-18  Pierre-Marie de Rodat  <derodat@adacore.com>
6986         * dwarf2out.c (copy_dwarf_procedure): Remove obsolete comment.
6987         (new_dwarf_proc_die): Emit DW_TAG_dwarf_procedure DIEs even for
6988         -gdwarf-3.
6989         (function_to_dwarf_procedure): Update comment.
6991 2016-08-18  David Malcolm  <dmalcolm@redhat.com>
6993         * input.c (diagnostics_file_cache_forcibly_evict_file): New
6994         function.
6995         * input.h (diagnostics_file_cache_forcibly_evict_file): New
6996         declaration.
6997         * selftest.c (selftest::temp_source_file::~temp_source_file):
6998         Evict m_filename from the diagnostic file cache.
7000 2016-08-18  Richard Biener  <rguenther@suse.de>
7002         * tree-pass.h (make_pass_materialize_all_clones): Declare.
7003         * ipa.c (pass_data_materialize_all_clones, pass_materialize_all_clones,
7004         make_pass_materialize_all_clones): New simple IPA pass encapsulating
7005         clone materialization.
7006         * passes.def (all_late_ipa_passes): Start with
7007         pass_materialize_all_clones.
7008         * cgraphunit.c (symbol_table::compile): Remove call to
7009         materialize_all_clones.
7010         * tree-into-ssa.c: Include statistics.h.
7011         (update_ssa): Count number of times we do incremental/rewrite
7012         SSA update.
7014 2016-08-18  Richard Biener  <rguenther@suse.de>
7016         PR tree-optimization/77282
7017         * tree-ssa-pre.c (eliminate_dom_walker::before_dom_children):
7018         When doing auto-parallelizing also prevent use of PHIs that
7019         carry dependences across loop backedges.
7021 2016-08-18  Tamar Christina  <tamar.christina@arm.com>
7022             Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>
7024         * varasm.c (default_use_anchors_for_symbol_p): Reject too large decls.
7026 2016-08-18  Richard Biener  <rguenther@suse.de>
7028         * ssa-iterators.h (ssa_vuse_operand): New inline.
7029         * tree-if-conv.c (ifc_temp_var): Update virtual operand.
7030         (predicate_all_scalar_phis): Use remove_phi_node to remove
7031         phi nodes predicated.  Delay removing virtual PHIs.
7032         (predicate_mem_writes): Update virtual operands.
7033         (combine_blocks): Likewise.  Propagate out remaining virtual PHIs.
7034         (tree_if_conversion): Do not rewrite virtual SSA form.
7035         * tree-phinodes.c (release_phi_node): Make static.
7036         * tree-phinodes.h (release_phi_node): Remove.
7038 2016-08-18  Jakub Jelinek  <jakub@redhat.com>
7040         * config/i386/i386.c (enum ix86_builtins): Remove IX86_BUILTIN_*
7041         codes that appear in bdesc_* arrays, instead include i386-builtin.def
7042         twice to define those.
7043         (bdesc_comi, bdesc_pcmpestr, bdesc_pcmpistr, bdesc_special_args,
7044         bdesc_args, bdesc_round_args, bdesc_mpx, bdesc_mpx_const,
7045         bdesc_multi_arg): Define by including i386-builtin.def the third time.
7046         * config/i386/i386-builtin.def: New file.
7048 2016-08-17  David Malcolm  <dmalcolm@redhat.com>
7050         * input.c (get_source_range_for_char): Rename to...
7051         (selftest::get_source_range_for_char): ...this, and move within
7052         the #if CHECKING_P guard.
7053         (get_num_source_ranges_for_substring): Rename to...
7054         (selftest::get_num_source_ranges_for_substring): ...this, move
7055         within the #if CHECKING_P guard, and make static.
7056         (selftest::assert_num_substring_ranges): Initialize
7057         actual_num_ranges.
7059 2016-08-18  Alan Modra  <amodra@gmail.com>
7061         PR rtl-optimization/72771
7062         * reload.c (find_reloads): Don't assume that a subreg mem is OK
7063         when find_reloads_toplev returns address_reloaded==-1.
7064         (alternative_allows_const_pool_ref): Update comment.
7066 2015-08-17  Alan Hayward  <alan.hayward@arm.com>
7068         PR tree-optimization/71752
7069         * tree-vect-loop.c (vectorizable_reduction): Keep SLP operand ordering.
7070         * tree-vect-slp.c (vect_get_slp_defs): Handle null operands.
7072 2016-08-17  Jakub Jelinek  <jakub@redhat.com>
7074         * gimple-fold.c (gimple_fold_call): Use gimple_call_noreturn_p
7075         instead of testing ECF_NORETURN bit in gimple_call_flags.
7076         * tree-cfg.c (make_edges_bb, execute_fixup_cfg): Likewise.
7077         * predict.c (tree_bb_level_predictions): Likewise.
7078         * gimple-low.c (gimple_stmt_may_fallthru): Likewise.
7080         PR middle-end/77259
7081         * tree-ssa-pre.c (eliminate_dom_walker::before_dom_children): If
7082         turning a call into __builtin_unreachable-like noreturn call, adjust
7083         gimple_call_set_fntype.
7084         * tree-cfgcleanup.c (fixup_noreturn_call): Remove lhs also if
7085         gimple_call_fntype has void return type.
7087 2016-08-17  Chung-Lin Tang  <cltang@codesourcery.com>
7089         * omp-low.c (lower_oacc_reductions): Adjust variable lookup to use
7090         maybe_lookup_decl, to handle nested acc loop directives.
7092 2016-08-17  Richard Biener  <rguenther@suse.de>
7094         PR tree-optimization/76490
7095         * tree-vrp.c (update_value_range): Preserve overflow infinities
7096         when intersecting with ranges from get_range_info.
7097         (operand_less_p): Handle overflow infinities correctly.
7098         (value_range_constant_singleton): Use vrp_operand_equal_p
7099         to handle overflow max/min correctly.
7100         (vrp_valueize): Likewise.
7101         (union_ranges): Likewise.
7102         (intersect_ranges): Likewise.
7103         (vrp_visit_phi_node): Improve iteration limitation to only
7104         apply when we'll possibly re-visit the PHI via a changed argument
7105         on the backedge.
7107 2016-08-17  Thomas Preud'homme  <thomas.preudhomme@arm.com>
7109         * config/arm/t-aprofile (MULTILIB_EXCEPTIONS): Rewrite into ...
7110         (MULTILIB_REQUIRED): This by specifying multilib needing to be built
7111         rather than those that should not be built.
7113 2016-08-17  Stanislaw Halik  <sthalik@misaki.pl>
7115         PR target/66488
7116         * config/i386/xm-mingw32.h (HOST_BITS_PER_PTR): Define if __x86_64__.
7118 2016-08-17  Richard Biener  <rguenther@suse.de>
7120         * tree-ssa.c: Include tree-cfg.h and tree-dfa.h.
7121         (verify_vssa): New function verifying virtual SSA form.
7122         (verify_ssa): Call it.
7123         * tree-ssa-loop-manip.c (slpeel_update_phi_nodes_for_guard2):
7124         Do not apply loop-closed SSA handling to virtuals.
7125         * ssa-iterators.h (op_iter_init): Handle GIMPLE_TRANSACTION.
7126         * tree-into-ssa.c (prepare_use_sites_for): Skip virtual SSA names
7127         when rewriting their symbol.
7128         (prepare_def_site_for): Likewise.
7129         * tree-chkp-opt.c (chkp_reduce_bounds_lifetime): Clear virtual
7130         operands of moved stmts.
7132 2016-08-17  Richard Biener  <rguenther@suse.de>
7134         PR tree-optimization/23855
7135         * tree-ssa-loop-unswitch.c: Include tree-ssa-loop-manip.h.
7136         (tree_unswitch_outer_loop): Iterate find_loop_guard as long as we
7137         find guards to hoist.  Do not update SSA form but rewrite virtuals
7138         into loop closed SSA.
7139         (find_loop_guard): Adjust to skip already hoisted guards.  Do
7140         not mark virtuals for renaming or update SSA form.
7142 2016-08-17  Martin Liska  <mliska@suse.cz>
7144         * coverage.c (get_gcov_type): Replace GCOV_TYPE_SIZE with
7145         a LONG_LONG_TYPE_SIZE comparison.
7146         * gcov-io.h: Remove macro definitions.
7147         * tree-profile.c (gimple_gen_edge_profiler): Replace usage
7148         of GCOV_TYPE_ATOMIC_FETCH_ADD with a LONG_LONG_TYPE_SIZE
7149         comparison.
7151 2016-08-16  Jakub Jelinek  <jakub@redhat.com>
7153         * config/i386/i386.c (enum ix86_builtins): Reorder enumerators, so
7154         that builtins not mentioned in bdesc_* arrays come first, then
7155         the ones mentioned in bdesc_* arrays in the order they appear in
7156         the arrays in between IX86_BUILTIN__BDESC_*_FIRST and
7157         IX86_BUILTIN__BDESC_*_LAST enumerator.
7158         (bdesc_mpx): Fix up a comment typo.
7159         (bdesc_multi_arg): Remove __builtin_ia32_vpcomne[bwdq] and
7160         __builtin_ia32_vpcomneu[bwdq] builtins.
7161         (BDESC_VERIFY, BDESC_VERIFYS): Define.
7162         (ix86_init_mmx_sse_builtins, ix86_init_mpx_builtins): Verify
7163         enum ix86_builtins ordering.
7164         (ix86_expand_builtin): Use enum ix86_builtins ordering assumption
7165         for direct bdesc_* array member access instead of searching all the
7166         arrays until an fcode match is found.
7168 2016-08-16  Uros Bizjak  <ubizjak@gmail.com>
7170         * config/i386/i386.md (*ashl<mode>3_mask): Rewrite define_insn
7171         pattern as define_insn_and_split.  Split insn before reload to
7172         ashl<mode>3_1.
7173         (*<shift_insn><mode>3_mask): Ditto.  Split insn before reload to
7174         <shift_insn><mode>3_1.
7175         (*<rotate_insn><mode>3_mask): Ditto.  Split insn before reload to
7176         <rotate_insn><mode>3_1.
7178 2016-08-16  David Malcolm  <dmalcolm@redhat.com>
7180         PR c/72857
7181         * input.c (get_source_range_for_substring): Rename to...
7182         (get_source_location_for_substring): ...this, adding param
7183         "caret_idx", and converting output param from source_range * to
7184         location_t *.
7185         (get_source_range_for_char): New function.
7186         (get_num_source_ranges_for_substring): Update comment to reflect
7187         above renaming.
7188         (assert_char_at_range): Update to use get_source_range_for_char
7189         rather than get_source_range_for_substring.
7190         (test_lexer_string_locations_concatenation_2): Likewise.
7191         * substring-locations.h (get_source_range_for_substring): Rename
7192         to...
7193         (get_source_location_for_substring): ...this, and adding param
7194         "caret_idx", and converting output param from source_range * to
7195         location_t *.
7197 2016-08-16  David Malcolm  <dmalcolm@redhat.com>
7199         * input.c (class selftest::temp_source_file): Move to
7200         selftest.h.
7201         (selftest::temp_source_file::temp_source_file): Move to
7202         selftest.c.
7203         (selftest::temp_source_file::~temp_source_file): Likewise.
7204         * selftest.c (selftest::temp_source_file::temp_source_file): Move
7205         here from input.c.
7206         (selftest::temp_source_file::~temp_source_file): Likewise.
7207         * selftest.h (class selftest::temp_source_file): Move here from
7208         input.c
7210 2016-08-16  Jakub Jelinek  <jakub@redhat.com>
7212         PR target/71910
7213         * tree-cfg.c (execute_fixup_cfg): Add node variable, use it.  Before
7214         inlining, add cgraph edge for the added __builtin_unreachable call.
7216         PR middle-end/67485
7217         * expmed.c (expand_mult_const): Change val_so_far's type to UHWI,
7218         only cast it to SHWI for the final comparison.
7220 2016-08-16  Martin Liska  <mliska@suse.cz>
7222         PR gcov-profile/36412
7223         * doc/gcov.texi: Document --hash-filenames(-x).
7224         * gcov.c (print_usage): Add the option.
7225         (process_args): Process the option, sort options alphabetically.
7226         (md5sum_to_hex): New function.
7227         (make_gcov_file_name): Do the md5sum and append it to a
7228         filename.
7230 2016-08-16  Bin Cheng  <bin.cheng@arm.com>
7232         PR tree-optimization/69848
7233         * config/aarch64/aarch64-simd.md (vcond<mode><mode>): Invert NE
7234         and swtich operands to avoid additional NOT instruction.
7235         (vcond<v_cmp_mixed><mode>): Ditto.
7236         (vcondu<mode><mode>, vcondu<mode><v_cmp_mixed>): Ditto.
7238 2016-08-16  Eric Botcazou  <ebotcazou@adacore.com>
7240         * doc/install.texi (*-*-solaris2*): Adjust latest change.
7242 2016-08-16  Richard Biener  <rguenther@suse.de>
7244         PR tree-optimization/76783
7245         * tree-ssa-propagate.c (ssa_prop_init): Use RPO order.  Clear
7246         BB visited flags at start.
7248 2016-08-16  Bin Cheng  <bin.cheng@arm.com>
7250         PR tree-optimization/72817
7251         PR tree-optimization/73450
7252         * tree-ssa-loop-niter.c (number_of_iterations_ne): Check
7253         multiple_of_p for adjusted IV.base.
7255 2016-08-15  Uros Bizjak  <ubizjak@gmail.com>
7257         PR target/72867
7258         * config/i386/sse.md (<code><mode>3<mask_name><round_saeonly_name>):
7259         Emit ieee_<ieee_maxmin><mode>3<mask_name><round_saeonly_name>
7260         for !flag_finite_math_only or flag_signed_zeros.
7261         (*<code><mode>3<mask_name><round_saeonly_name>): Rename from
7262         *<code><mode>3_finite<mask_name><round_saeonly_name>.  Do not
7263         depend on flag_finite_math_only.
7264         (ieee_<ieee_maxmin><mode>3<mask_name><round_saeonly_name>):
7265         New insn pattern.
7266         (*<code><mode>3<mask_name><round_saeonly_name>): Remove.
7267         (*ieee_smin<mode>3): Ditto.
7268         (*ieee_smax<mode>3): Ditto.
7269         * config/i386/mmx.md (mmx_<code>v2sf3): Emit
7270         mmx_ieee_<ieee_maxmin>v2sf3 for !flag_finite_math_only or
7271         flag_signed_zeros.
7272         (*mmx_<code>v2sf3): Rename from *mmx_<code>v2sf3_finite.  Do not
7273         depend on flag_finite_math_only.
7274         (mmx_ieee_<ieee_maxmin>v2sf3): New insn pattern.
7275         (*mmx_<code>v2sf3): Remove.
7276         * config/i386/subst.md (round_saeonly_mask_arg3): New subst attribute.
7277         * config/i386/i386.c (ix86_expand_sse_fp_mimnax): Check
7278         flag_signed_zeros instead of !flag_unsafe_math_optimizations.
7280 2016-08-15  Segher Boessenkool  <segher@kernel.crashing.org>
7282         PR rtl-optimization/73650
7283         * lra-constraints.c (simple_move_p): If the insn is multiple_sets
7284         it is not a simple move.
7286 2016-08-15  Martin Liska  <mliska@suse.cz>
7288         PR driver/72765
7289         * gcc.c (do_spec_1): Call save_string with the right size.
7290         (save_string): Do an assert about string we copy.
7292 2016-08-15  Richard Biener  <rguenther@suse.de>
7294         * ree.c (rest_of_handle_ree): Remove redundant timevar push/pop.
7295         * config/i386/i386.c (pass_data_insert_vzeroupper): Account to
7296         TV_MACH_DEP.
7297         (pass_data_stv): Likewise.
7299 2016-08-15  Richard Biener  <rguenther@suse.de>
7301         PR tree-optimization/73434
7302         * tree-ssa-sccvn.c (vn_reference_maybe_forwprop_address): Preserve
7303         TBAA info on the base when forwarding a non-invariant address.
7305 2016-08-15  Jakub Jelinek  <jakub@redhat.com>
7307         * dwarf2out.c (struct checksum_attributes): Add
7308         at_string_length_bit_size and at_string_length_byte_size fields.
7309         (collect_checksum_attributes): Handle DW_AT_string_length_bit_size
7310         and DW_AT_string_length_byte_size.
7311         (die_checksum_ordered): Handle at_string_length_bit_size and
7312         at_string_length_byte_size.
7313         (gen_array_type_die): For dwarf_version >= 5 emit
7314         DW_AT_string_length_byte_size instead of DW_AT_byte_size.
7315         (adjust_string_types): For dwarf_version >= 5 remove
7316         DW_AT_string_length_byte_size instead of DW_AT_byte_size.
7317         (resolve_addr): Likewise.
7319         PR debug/71906
7320         * dwarf2out.c (string_types): New variable.
7321         (gen_array_type_die): Change early_dwarf handling of
7322         DW_AT_string_length, create DW_OP_call4 referencing the
7323         length var temporarily.  Handle parameters that are pointers
7324         to string length.
7325         (adjust_string_types): New function.
7326         (gen_subprogram_die): Temporarily set string_types to local var,
7327         call adjust_string_types if needed.
7328         (non_dwarf_expression, copy_deref_exprloc, optimize_string_length):
7329         New functions.
7330         (resolve_addr): Adjust DW_AT_string_length if it is DW_OP_call4.
7332 2016-08-15  Eric Botcazou  <ebotcazou@adacore.com>
7334         * doc/install.texi (*-*-solaris2*): Fix version number and document
7335         requirement on GNU make for building libjava with the Solaris linker.
7337 2016-08-15  Martin Liska  <mliska@suse.cz>
7338             Jakub Jelinek  <jakub@redhat.com>
7340         PR tree-optimization/72824
7341         * tree-loop-distribution.c (const_with_all_bytes_same)
7342         <case VECTOR_CST>: Fix a typo.
7344 2016-08-14  Uros Bizjak  <ubizjak@gmail.com>
7346         PR target/76342
7347         * config/i386/avx512fintrin.h (_mm512_undefined_epi32):
7348         Renamed from _mm512_undefined_si512.
7349         (_mm_undefined_si512): New definition.
7351 2016-08-13  Richard Biener  <rguenther@suse.de>
7353         * tree-ssa-forwprop.c (pass_forwprop::execute): Propagate
7354         into PHIs and update the lattice for its def.
7356 2016-08-12  Jakub Jelinek  <jakub@redhat.com>
7358         PR c/71512
7359         * ubsan.c (instrument_si_overflow): Pass true instead of false
7360         to gsi_replace.
7361         (pass_ubsan::execute): Call gimple_purge_dead_eh_edges at the end
7362         of bbs.  Return TODO_cleanup_cfg if any returned true.
7364 2016-08-12  Michael Meissner  <meissner@linux.vnet.ibm.com>
7366         * config/rs6000/vsx.md (vsx_concat_<mode>): Add support for the
7367         ISA 3.0 MTVSRDD instruction.
7368         (vsx_splat_<mode>): Change cpu type of MTVSRDD instruction to
7369         vecperm.
7371 2016-08-12  Bernd Edlinger  <bernd.edlinger@hotmail.de>
7373         PR tree-optimization/71083
7374         * tree-predcom.c (ref_at_iteration): Use a COMPONENT_REF for the
7375         bitfield access when possible.
7377 2016-08-12  Patrick Palka  <ppalka@gcc.gnu.org>
7379         PR middle-end/71654
7380         * match.pd ((T)A CMP (T)B -> A CMP B): Allow (T)A to be a
7381         sign-changing cast from a shorter unsigned type to a wider
7382         signed type.
7384 2016-08-12  Jakub Jelinek  <jakub@redhat.com>
7386         * config/i386/sse.md (avx512dq_vextract<shuffletype>64x2_1_maskm,
7387         vec_extract_hi_<mode>_mask, vec_extract_lo_<mode>_mask,
7388         vec_extract_hi_<mode>_mask): Use Yk constraint instead of k.
7390 2016-08-12  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
7392         * config/rs6000/rs6000.c (rs6000_builtin_vectorization_cost):
7393         Correct costs for vec_construct.
7395 2016-08-12  Bin Cheng  <bin.cheng@arm.com>
7397         PR tree-optimization/69848
7398         * tree-vectorizer.h (enum vect_def_type): New condition reduction
7399         type CONST_COND_REDUCTION.
7400         * tree-vect-loop.c (vectorizable_reduction): Support new condition
7401         reudction type CONST_COND_REDUCTION.
7403 2016-08-12  Richard Biener  <rguenther@suse.de>
7405         PR tree-optimization/57326
7406         * tree-ssa-pre.c (fully_constant_expression): Handle simplification
7407         returning an SSA name.
7408         (phi_translate_1): When fully_constant_expression returns a NAME
7409         make sure we have a leader for it.
7411 2016-08-12  Martin Liska  <mliska@suse.cz>
7412             Adam Fineman  <afineman@afineman.com>
7414         * gcov.c (process_file): Create .gcov file when .gcda
7415         file is missing.
7417 2016-08-12  Marek Polacek  <polacek@redhat.com>
7419         PR c/7652
7420         * alias.c (find_base_value): Adjust fall through comment.
7421         * cfgexpand.c (expand_debug_expr): Likewise.
7422         * combine.c (find_split_point): Likewise.
7423         (expand_compound_operation): Likewise.  Add FALLTHRU.
7424         (make_compound_operation): Adjust fall through comment.
7425         (canon_reg_for_combine): Add FALLTHRU.
7426         (force_to_mode): Adjust fall through comment.
7427         (simplify_shift_const_1): Likewise.
7428         (simplify_comparison): Likewise.
7429         * config/aarch64/aarch64-builtins.c (aarch64_simd_expand_args): Add
7430         FALLTHRU.
7431         * config/aarch64/predicates.md: Likewise.
7432         * config/i386/i386.c (function_arg_advance_32): Likewise.
7433         (ix86_gimplify_va_arg): Likewise.
7434         (print_reg): Likewise.
7435         (ix86_print_operand): Likewise.
7436         (ix86_build_const_vector): Likewise.
7437         (ix86_expand_branch): Likewise.
7438         (ix86_sched_init_global): Adjust fall through comment.
7439         (ix86_expand_args_builtin): Add FALLTHRU.
7440         (ix86_expand_builtin): Likewise.
7441         (ix86_expand_vector_init_one_var): Likewise.
7442         * config/rs6000/rs6000.c (rs6000_emit_vector_compare_inner): Likewise.
7443         (rs6000_adjust_cost): Likewise.
7444         (insn_must_be_first_in_group): Likewise.
7445         * config/rs6000/rs6000.md: Likewise.  Adjust fall through comment.
7446         * dbxout.c (dbxout_symbol): Adjust fall through comment.
7447         * df-scan.c (df_uses_record): Likewise.
7448         * dojump.c (do_jump): Add FALLTHRU.
7449         * dwarf2out.c (mem_loc_descriptor): Likewise.  Adjust fall through
7450         comment.
7451         (resolve_args_picking_1): Adjust fall through comment.
7452         (loc_list_from_tree_1): Likewise.
7453         * expmed.c (make_tree): Likewise.
7454         * expr.c (expand_expr_real_2): Add FALLTHRU.
7455         (expand_expr_real_1): Likewise.  Adjust fall through comment.
7456         * fold-const.c (const_binop): Adjust fall through comment.
7457         (fold_truth_not_expr): Likewise.
7458         (fold_cond_expr_with_comparison): Add FALLTHRU.
7459         (fold_binary_loc): Likewise.
7460         (contains_label_1): Adjust fall through comment.
7461         (multiple_of_p): Likewise.
7462         * gcov-tool.c (process_args): Add FALLTHRU.
7463         * genattrtab.c (check_attr_test): Likewise.
7464         (write_test_expr): Likewise.
7465         * genconfig.c (walk_insn_part): Likewise.
7466         * genpreds.c (validate_exp): Adjust fall through comment.
7467         (needs_variable): Likewise.
7468         * gensupport.c (get_alternatives_number): Add FALLTHRU.
7469         (subst_dup): Likewise.
7470         * gimple-pretty-print.c (dump_gimple_assign): Likewise.
7471         * gimplify.c (gimplify_addr_expr): Adjust fall through comment.
7472         (gimplify_scan_omp_clauses): Add FALLTHRU.
7473         (goa_stabilize_expr): Likewise.
7474         * graphite-isl-ast-to-gimple.c (substitute_ssa_name): Adjust fall
7475         through comment.
7476         * hsa-gen.c (get_address_from_value): Likewise.
7477         * ipa-icf.c (sem_function::hash_stmt): Likewise.
7478         * ira.c (ira_setup_alts): Add FALLTHRU.
7479         * lra-eliminations.c (lra_eliminate_regs_1): Adjust fall through
7480         comment.
7481         * lto-streamer-out.c (lto_output_tree_ref): Add FALLTHRU.
7482         * opts.c (common_handle_option): Likewise.
7483         * read-rtl.c (read_rtx_code): Likewise.
7484         * real.c (round_for_format): Likewise.
7485         * recog.c (asm_operand_ok): Likewise.
7486         * reginfo.c (reg_scan_mark_refs): Adjust fall through comment.
7487         * reload1.c (set_label_offsets): Likewise.
7488         (eliminate_regs_1): Likewise.
7489         (reload_reg_reaches_end_p): Likewise.
7490         * rtlanal.c (commutative_operand_precedence): Add FALLTHRU.
7491         (rtx_cost): Likewise.
7492         * sched-rgn.c (is_exception_free): Likewise.
7493         * simplify-rtx.c (simplify_rtx): Adjust fall through comment.
7494         * stor-layout.c (int_mode_for_mode): Likewise.
7495         * toplev.c (print_to_asm_out_file): Likewise.
7496         (print_to_stderr): Likewise.
7497         * tree-cfg.c (gimple_verify_flow_info): Likewise.
7498         * tree-chrec.c (chrec_fold_plus_1): Add FALLTHRU.
7499         (chrec_fold_multiply): Likewise.
7500         (evolution_function_is_invariant_rec_p): Likewise.
7501         (for_each_scev_op): Likewise.
7502         * tree-data-ref.c (siv_subscript_p): Likewise.
7503         (get_references_in_stmt): Likewise.
7504         * tree.c (find_placeholder_in_expr): Adjust fall through comment.
7505         (substitute_in_expr): Likewise.
7506         (type_cache_hasher::equal): Likewise.
7507         (walk_type_fields): Likewise.
7508         * var-tracking.c (adjust_mems): Add FALLTHRU.
7509         (set_dv_changed): Adjust fall through comment.
7510         * varasm.c (default_function_section): Add FALLTHRU.
7512 2016-08-12  Marek Polacek  <polacek@redhat.com>
7514         PR c/7652
7515         * tree-complex.c (expand_complex_division): Add missing break.
7517 2016-08-12  Richard Biener  <rguenther@suse.de>
7519         * passes.c (execute_todo): Do not push/pop TV_TODO.
7520         (execute_one_ipa_transform_pass): Move timevar push/pop TODO execution.
7521         (execute_one_pass): Likewise.
7522         * common.opt (ftime-report-details): New switch.
7523         * doc/invoke.texi (ftime-report-details): Document.
7524         * timevar.h (timer::print_row): Adjust signature.
7525         (timer::all_zero): New static helper.
7526         (timer::child_map_t): New typedef.
7527         (timer::time_var_def): Add children field.
7528         * timevar.c (timer::named_items::print): Adjust.
7529         (timer::~timer): Free timevar recorded children.
7530         (timer::pop_internal): When -ftime-report-details record
7531         time spent in sub-timevars.
7532         (timer::print_row): Adjust.
7533         (timer::print): Print sub-timevar stats, use all_zero.
7534         * timevar.def (TV_TODO): Remove.
7536 2016-08-12  Richard Biener  <rguenther@suse.de>
7538         PR tree-optimization/72851
7539         * tree-ssa-propagate.c: Include cfganal.h.  Rewrite block and stmt
7540         worklists to use bitmaps indexed in execution order.
7541         (executable_blocks, cfg_blocks_num, cfg_blocks_tail, cfg_blocks_head,
7542         bb_in_list, interesting_ssa_edges, varying_ssa_edges): Remove.
7543         (cfg_blocks): Make a bitmap.
7544         (bb_to_cfg_order, cfg_order_to_bb, ssa_edge_worklist, uid_to_stmt):
7545         New globals.
7546         (cfg_blocks_empty_p): Adjust.
7547         (cfg_blocks_add): Likewise.
7548         (cfg_blocks_get): Likewise.
7549         (add_ssa_edge): Likewise.
7550         (add_control_edge): Likewise.
7551         (simulate_stmt): Likewise.
7552         (process_ssa_edge_worklist): Likewise.
7553         (simulate_block): Likewise.
7554         (ssa_prop_init): Compute PRE order and stmt UIDs.
7555         (ssa_prop_fini): Adjust.
7556         (ssa_propagate): Adjust.
7558 2016-08-12  Richard Biener  <rguenther@suse.de>
7560         * tree-vrp.c (vrp_visit_phi_node): Allow a last iteration if
7561         the currently executable edges have fixed ranges.  Always
7562         go through update_value_range.
7564 2016-08-12  Alexandre Oliva  <aoliva@redhat.com>
7566         PR debug/63240
7567         * langhooks-def.h
7568         (LANG_HOOKS_FUNCTION_DECL_EXPLICIT_P): Const_tree-ify.
7569         (LANG_HOOKS_FUNCTION_DECL_DELETED_P): Likewise.
7570         (LANG_HOOKS_FUNCTION_DECL_DEFAULTED): Set default.
7571         (LANG_HOOKS_DECLS): Add it.
7572         * langhooks.h (struct lang_hooks_for_decls): Add
7573         function_decl_defaulted.  Const_tree-ify
7574         function_decl_explicit_p and function_decl_deleted_p.
7575         * dwarf2out.c (gen_subprogram_die): Add DW_AT_defaulted
7576         attribute.  Add DW_AT_deleted instead of DW_AT_GNU_deleted,
7577         also at strict DWARF v5.
7579         PR debug/55641
7580         * dwarf2out.c (decl_quals): Don't map TREE_READONLY to
7581         TYPE_QUAL_CONST in reference-typed decls.
7583         PR debug/49366
7584         * dwarf2out.c (loc_list_from_tree_1): Expand some CONSTRUCTORs
7585         in DW_OP_pieces, just enough to handle pointers to member
7586         functions.
7587         (gen_remaining_tmpl_value_param_die_attribute): Use a location
7588         expression on DWARFv5 if a constant value doesn't work.
7590 2016-08-11  David Malcolm  <dmalcolm@redhat.com>
7592         * selftest-run-tests.c (selftest::run_tests): Call selftest_c_tests.
7593         * selftest.c (selftest::test_assertions): New function.
7594         (selftest::selftest_c_tests): New function.
7595         * selftest.h (selftest::selftest_c_tests): New declaration.
7597 2016-08-11  Richard Biener  <rguenther@suse.de>
7598             Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
7600         PR rtl-optimization/72855
7601         * df-core.c (df_verify): Turn off DF_VERIFY_SCHEDULED at end.
7603 2016-08-11  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
7605         PR target/72863
7606         * vsx.md (vsx_load_<mode>): For P8LE, emit swaps at expand time.
7607         (vsx_store_<mode>): Likewise.
7609 2015-08-11  H.J. Lu  <hongjiu.lu@intel.com>
7611         * config/i386/i386.c (timode_scalar_to_vector_candidate_p): Allow
7612         TImode CONST_WIDE_INT store.
7613         (timode_scalar_chain::convert_insn): Handle CONST_WIDE_INT store.
7615 2015-08-11  H.J. Lu  <hongjiu.lu@intel.com>
7617         * config/i386/i386.h (MOVE_MAX_PIECES): Use TImode in 64-bit
7618         mode if unaligned SSE load and store are optimal.
7620 2016-08-11  Bernd Edlinger  <bernd.edlinger@hotmail.de>
7622         PR tree-optimization/71083
7623         * tree-predcom.c (ref_at_iteration): Correctly align the
7624         reference type.
7626 2016-08-11  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
7628         * config/s390/s390-builtin-types.def: Add INT128 types.
7629         * config/s390/s390-builtins.def: Add INT128 variants for the add
7630         sub low-level builtins dealing with TImode.
7631         * config/s390/s390.c (s390_expand_builtin): Allow mode conversions
7632         via subreg when expanding a builtin.
7633         * config/s390/s390.md: Remove UNSPEC_VEC_ADDC_U128,
7634         UNSPEC_VEC_SUB_U128, and UNSPEC_VEC_SUBC_U128 constants.
7635         Fix comment.
7636         * config/s390/vecintrin.h: Adjust builtin names accordingly.
7637         * config/s390/vx-builtins.md ("vec_add_u128"): Remove expander.
7638         ("vec_addc<mode>", "vec_addc_u128"): Merge to
7639         "vacc<bhfgq>_<mode>".
7640         ("vec_adde_u128"): Rename to "vacq". Change mode to TImode.
7641         ("vec_addec_u128"): Rename to "vacccq". Change mode to TImode.
7642         ("vec_subc<mode>", "vec_subc_u128"): Merge to
7643         "vscbi<bhfgq>_<mode>".
7644         ("vec_sube_u128"): Rename to "vsbiq". Change mode to TImode.
7645         ("vec_subec_u128"): Rename to "vsbcbiq". Change mode to TImode.
7647 2016-08-11  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
7649         * config/s390/s390-builtins.def: Mark last operand of s390_vlvg*
7651 2016-08-11  Bin Cheng  <bin.cheng@arm.com>
7653         * config/aarch64/aarch64-simd.md (vcond<mode><mode>): Delete
7654         unused declaration.
7655         (vcond<v_cmp_mixed><mode>): Ditto.
7656         (vcondu<mode><mode>, vcondu<mode><v_cmp_mixed>): Ditto.
7658 2016-08-11  Bin Cheng  <bin.cheng@arm.com>
7660         * config/aarch64/aarch64-simd.md (vec_cmp<mode><v_cmp_result>): Init
7661         variable explicitly, also assert on it before use.
7663 2016-08-11  Richard Biener  <rguenther@suse.de>
7665         PR tree-optimization/72772
7666         * cfgloopmanip.c (create_preheader): Use split_edge if there
7667         is a single loop entry, avoiding degenerate PHIs.
7669 2016-08-11  Richard Biener  <rguenther@suse.de>
7671         * tree-ssa-threadbackward.c (pass_data_thread_jumps): Remove
7672         unconditional TODO_cleanup_cfg.
7673         (pass_thread_jumps::execute): Initialize loops, perform a CFG
7674         cleanup only if we threaded a jump.
7676 2016-08-11  Alan Modra  <amodra@gmail.com>
7678         PR target/71680
7679         * lra-constraints.c (simplify_operand_subreg): Allow subreg
7680         mode for mem when SLOW_UNALIGNED_ACCESS if inner mode is also
7681         slow.  Emit two reloads for slow mem case, first loading in
7682         fast innermode, then converting to required mode.
7684 2016-08-10  Kelvin Nilsen  <kelvin@gcc.gnu.org>
7686         * config/rs6000/altivec.h (vec_extract_exp): New macro.
7687         (vec_extract_sig): New macro.
7688         (vec_insert_exp): New macro.
7689         (vec_test_data_class): New macro.
7690         (scalar_extract_exp): New macro.
7691         (scalar_extract_sig): New macro.
7692         (scalar_insert_exp): New macro.
7693         (scalar_test_data_class): New macro.
7694         (scalar_test_neg): New macro.
7695         (scalar_cmp_exp_gt): New macro.
7696         (scalar_cmp_exp_lt): New macro.
7697         (scalar_cmp_exp_eq): New macro.
7698         (scalar_cmp_exp_unordered): New macro.
7699         * config/rs6000/predicates.md (u7bit_cint_operand): New predicate
7700         to enforce constraint that operand is a 7-bit unsigned literal.
7701         * config/rs6000/rs6000-builtin.def (BU_P9V_64BIT_VSX_1): New macro
7702         for power9 built-ins.
7703         (BU_P9V_VSX_2): Likewise.
7704         (BU_P9V_64BIT_VSX_2): Likewise.
7705         (VSEEDP): Add scalar extract exponent support.
7706         (VSEESP): Add scalar extract signature support.
7707         (VSTDCNDP): Add scalar test negative support.
7708         (VSTDCNSP): Likewise.
7709         (VSIEDP): Add scalar insert exponent support.
7710         (VSCEDPGT): Add scalar compare exponent greater than support.
7711         (VSCEDPLT): Add scalar compare exponent less than support.
7712         (VSCEDPEQ): Add scalar compare exponent test-for-equality support.
7713         (VSCEDPUO): Add scalar compare exponent test-for-unordered support.
7714         (VSTDCDP): Add scalar test data class support.
7715         (VSTDCSP): Likewise.
7716         (VSEEDP): Add overload support for scalar extract exponent
7717         operation.
7718         (VSESDP): Add overload support for scalar extract signature
7719         operation.
7720         (VSTDCN): Add overload support for scalar test negative
7721         operation.
7722         (VSTDCNDP): Add overload support for scalar test negative
7723         operation.
7724         (VSTDCNSP): Add overload support for scalar test negative
7725         operation.
7726         (VSIEDP): Add overload support for scalar insert exponent
7727         operation.
7728         (VSTDC): Add overload support for scalar test data class
7729         operation.
7730         (VSTDCDP): Add overload support for scalar test data class
7731         operation.
7732         (VSTDCSP): Add overload support for scalar test data class
7733         opreation.
7734         (VSCEDPGT): Add overload support for scalar compare exponent
7735         greater than operation.
7736         (VSCEDPLT): Add overload support for scalar compare exponent
7737         less than operation.
7738         (VSCEDPEQ): Add overload support for scalar compare exponent
7739         test-for-equality operation.
7740         (VSCEDPUO): Add overload support for scalar compare exponent
7741         test-for-unordered operation.
7742         (VEEDP): Add vector extract exponent support.
7743         (VEESP): Likewise.
7744         (VESDP): Add vector extract significand support.
7745         (VESSP): Likewise.
7746         (VIEDP): Add vector insert exponent support.
7747         (VIESP): Likewise.
7748         (VTDCDP): Add vector test data class support.
7749         (VTDCSP): Likewise.
7750         (VES): Add overload support for vector extract significand operation.
7751         (VESDP): Likewise.
7752         (VESSP): Likewise
7753         (VEE): Add overload support for vector extract exponent operation.
7754         (VEEDP): Likewise.
7755         (VEESP): Likewise.
7756         (VTDC): Add overload support for vector test data class operation.
7757         (VTDCDP): Likewise.
7758         (VTDCSP): Likewise.
7759         (VIE): Add overload support for vector insert exponent operation.
7760         (VIEDP): Likewise.
7761         (VIESP): Likewise.
7762         * config/rs6000/rs6000-c.c (altivec_overloaded_builtins): Add
7763         overloaded binary floating point functions.
7764         (altivec_resolve_overloaded_builtin): Improve error messages to
7765         distinguish between functions not supported in the current
7766         compiler configuration and functions that were invoked with an
7767         invalid parameter combination, and include the built-in function
7768         name in both error messages.
7769         * config/rs6000/rs6000-protos.h (rs6000_overloaded_builtin_name):
7770         New prototype.
7771         * config/rs6000/rs6000.c (rs6000_overloaded_builtin_name): New
7772         function.
7773         (rs6000_expand_binop_builtin): Add check to enforce that argument
7774         2 of the test data class operations is a 7-bit unsigned literal.
7775         (rs6000_invalid_builtin): Add code to issue an error message if a
7776         built-in function that requires the power9_vector and -m32
7777         command-line options is compiled without these options.
7778         * config/rs6000/vsx.md (UNSPEC_VSX_SXEXPDP): New value.
7779         (UNSPEC_VSX_SXSIGDP): New value.
7780         (UNSPEC_VSX_SXSIGPDP): New value.
7781         (UNSPEC_VSX_SIEXPDP): New value.
7782         (UNSPEC_VSX_SCMPEXPDP): New value.
7783         (UNSPEC_VSX_STSTDC): New value.
7784         (UNSPEC_VSX_VXEXP): New value.
7785         (UNSPEC_VSX_VXSIG): New value.
7786         (UNSPEC_VSX_VIEXP): New value.
7787         (UNSPEC_VSX_VTSTDC): New value.
7788         (xsxexpdp): New insn for scalar extract exponent.
7789         (xsxsigdp): New insn for scalar extract significand.
7790         (xsiexpdp): New insn for scalar insert exponent.
7791         (xscmpexpdp_<code>): New expansion for scalar compare exponents.
7792         (*xscmpexpdp): New insn for scalar compare exponents.
7793         (xststdc<Fvsx): New expansion for both single- and
7794         double-precision scalar test data class operations.
7795         (xststdcneg<Fvsx>): New expansion for both single- and
7796         double-precision scalar test for negative value operations.
7797         (*xststdc<Fvsx>): New insn for scalar test data class
7798         operation.
7799         (xvxexp<VSs>): New insn for single- and double-precision
7800         vector extract exponent operation.
7801         (xvxsig<VSs>): New insn for single- and double-precision
7802         vector extract significand operation.
7803         (xviexp<VSs>): New insn for single- and double-precision
7804         vector insert exponent operation.
7805         (xvtstdc<VSs>): New insn for single- and double-precision
7806         vector test data class operation.
7807         * doc/extend.texi (PowerPC AltiVec Built-in Functions): Document
7808         built-in functions to represent the Power9 binary floating-point
7809         support instructions.
7811 2016-08-10  bin cheng  <bin.cheng@arm.com>
7813         * doc/sourcebuild.texi (@item vect_cond_mixed): New item.
7815 2016-08-10  Alan Lawrence  <alan.lawrence@arm.com>
7816             Renlin Li  <renlin.li@arm.com>
7817             Bin Cheng  <bin.cheng@arm.com>
7819         * config/aarch64/iterators.md (V_cmp_mixed, v_cmp_mixed): New.
7820         * config/aarch64/aarch64-simd.md (<su><maxmin>v2di3): Call
7821         gen_vcondv2div2di instead of gen_aarch64_vcond_internalv2div2di.
7822         (aarch64_vcond_internal<mode><mode>): Delete pattern.
7823         (aarch64_vcond_internal<VDQF_COND:mode><VDQF:mode>): Ditto.
7824         (vcond<v_cmp_result><mode>): Ditto.
7825         (vcond<mode><mode>): Re-implement using vec_cmp and vcond_mask.
7826         (vcondu<mode><mode>): Ditto.
7827         (vcond<v_cmp_mixed><mode>): New pattern.
7828         (vcondu<mode><v_cmp_mixed>): New pattern.
7829         (aarch64_cmtst<mode>): Revise comment using aarch64_vcond instead
7830         of aarch64_vcond_internal.
7832 2016-08-10  Alan Lawrence  <alan.lawrence@arm.com>
7833             Renlin Li  <renlin.li@arm.com>
7834             Bin Cheng  <bin.cheng@arm.com>
7836         * config/aarch64/aarch64-simd.md (vec_cmp<mode><mode>): New pattern.
7837         (vec_cmp<mode><v_cmp_result>): New pattern.
7838         (vec_cmpu<mode><mode>): New pattern.
7839         (vcond_mask_<mode><v_cmp_result>): New pattern.
7841 2016-08-10  Yuri Rumyantsev  <ysrumyan@gmail.com>
7843         PR tree-optimization/71734
7844         * tree-ssa-loop-im.c (ref_indep_loop_p): Add new argument
7845         REF_LOOP, invoke ref_indep_loop_p_1.
7846         (outermost_indep_loop): Pass LOOP argumnet where REF was defined
7847         to ref_indep_loop_p.
7848         (ref_indep_loop_p_1): Fix commentary, add argument REF_LOOP,
7849         combine it with ref_indep_lopp_p_2, update SAFELEN if only REF
7850         is inside LOOP, do not cache dpendence value for loops with
7851         non-zero SAFELEN.
7852         (ref_indep_loop_p_2): Delete function.
7853         (can_sm_ref_p): Pass LOOP as additional argument to
7854         ref_indep_loop_p.
7856 2016-08-10  Michael Meissner  <meissner@linux.vnet.ibm.com>
7858         PR target/72853
7859         * config/rs6000/rs6000.c (mem_operand_ds_form): Add check for op
7860         being an offsettable address.
7862 2016-08-10  Martin Liska  <mliska@suse.cz>
7864         PR gcov-profile/58306
7865         * tree-profile.c (gimple_init_edge_profiler): Create conditionally
7866         atomic variants of profile update functions.
7868 2016-08-10  Martin Liska  <mliska@suse.cz>
7870         Cherry picked (and modified) from google-4_7 branch
7871         2012-12-26  Rong Xu  <xur@google.com>
7872         * common.opt (fprofile-update): Add new flag.
7873         * coretypes.h: Define enum profile_update.
7874         * doc/invoke.texi: Document -fprofile-update.
7875         * gcov-io.h: Declare GCOV_TYPE_ATOMIC_FETCH_ADD and
7876         GCOV_TYPE_ATOMIC_FETCH_ADD_FN.
7877         * tree-profile.c (gimple_init_edge_profiler): Generate
7878         also atomic profiler update.
7879         (gimple_gen_edge_profiler): Likewise.
7881 2016-08-10  David Malcolm  <dmalcolm@redhat.com>
7883         * toplev.c (finalize): Set aux_info_file, asm_out_file, and
7884         stack_usage_file to NULL after fclose calls.
7886 2016-08-10  Senthil Kumar Selvaraj  <senthil_kumar.selvaraj@atmel.com>
7888         PR target/71873
7889         * reload.c (push_reload): Compute subreg_in_class for
7890         subregs of constants and plus expressions. Remove special
7891         handling of SYMBOL_REFs.
7893 2016-08-10  Alan Modra  <amodra@gmail.com>
7895         PR target/71680
7896         * config/rs6000/rs6000.h (HARD_REGNO_CALLER_SAVE_MODE): Return
7897         SImode for TARGET_E500_DOUBLE when given SImode.
7899 2016-08-09  David Wohlferd  <dw@LimeGreenSocks.com>
7901         * config/i3836/avx512fintrin.h (_mm512_cvtsepi64_epi32): Remove
7902         unused variable __O.
7904 2016-08-09  Martin Liska  <mliska@suse.cz>
7906         * doc/gcov.texi: Change _gcov_dump to __gcov_dump and
7907         _gcov_reset to __gcov_reset.
7908         * doc/gcov-tool.texi: Fix typo.
7910 2016-08-09  Martin Liska  <mliska@suse.cz>
7912         * value-prof.c (gimple_divmod_values_to_profile): Do not
7913         instrument MOD histogram if a value is not a SSA name.
7915 2016-08-09  Martin Liska  <mliska@suse.cz>
7917         * value-prof.c (dump_histogram_value): Swap pow2 and non-pow2
7918         values.
7920 2016-08-09  Renlin Li  <renlin.li@arm.com>
7922         PR middle-end/64971
7923         * calls.c (prepare_call_address): Convert funexp to Pmode when
7924         necessary.
7925         * config/aarch64/aarch64.md (sibcall): Remove fix for PR 64971.
7926         (sibcall_value): Likewise.
7928 2016-08-09  Marek Polacek  <polacek@redhat.com>
7930         PR c/7652
7931         * cselib.c (cselib_expand_value_rtx_1): Add return.
7932         * gengtype.c (dbgprint_count_type_at): Likewise.
7933         * hsa-gen.c (gen_hsa_insn_for_internal_fn_call): Likewise.
7934         * reg-stack.c (get_true_reg): Restructure to avoid fallthrough warning.
7936 2016-08-09  Martin Jambor  <mjambor@suse.cz>
7938         PR ipa/71981
7939         * ipa-polymorphic-call.c (get_dynamic_type): Bail out gracefully
7940         if instance is a MEM_REF.
7942 2016-08-09  Uros Bizjak  <ubizjak@gmail.com>
7944         PR target/72843
7945         * config/i386/i386.md (*movtf_internal): Use
7946         lra_in_progress || reload_completed instead of !can_create_pseudo_p
7947         in the insn constraint.
7948         (*movxf_internal): Ditto.
7949         (*movdf_internal): Ditto.
7950         (*movsf_internal): Ditto.
7952 2016-08-09  Bin Cheng  <bin.cheng@arm.com>
7954         PR tree-optimization/72772
7955         * tree-ssa-loop-niter.c (loop_exits_before_overflow): Check equality
7956         for expanded base.
7958 2016-08-09  Bin Cheng  <bin.cheng@arm.com>
7960         PR tree-optimization/72772
7961         * tree-ssa-loop-niter.h (simplify_using_initial_conditions): Delete
7962         parameter STOP.
7963         * tree-ssa-loop-niter.c (tree_simplify_using_condition_1): Delete
7964         parameter STOP and update calls.  Move expand_simple_operations
7965         function call from here...
7966         (simplify_using_initial_conditions): ...to here.  Delete parameter
7967         STOP.
7968         (tree_simplify_using_condition): Delete parameter STOP.
7969         * tree-scalar-evolution.c (simple_iv_with_niters): Update call to
7970         simplify_using_initial_conditions.
7972 2016-08-09  Matthew Fortune  <matthew.fortune@imgtec.com>
7974         PR c/65345
7975         * config/mips/mips.c (mips_atomic_assign_expand_fenv):
7976         Use create_tmp_var_raw instead of create_tmp_var.
7978 2016-08-09  Richard Biener  <rguenther@suse.de>
7980         * tree-ssa-threadbackward.c (profitable_jump_thread_path):
7981         Treat same SSA names related.
7983 2016-08-09  Jakub Jelinek  <jakub@redhat.com>
7985         PR tree-optimization/72824
7986         * tree-loop-distribution.c (const_with_all_bytes_same): Verify
7987         real_zerop is not negative.
7989 2016-08-09  Richard Biener  <rguenther@suse.de>
7991         PR tree-optimization/71802
7992         * tree-cfgcleanup.c (cleanup_tree_cfg_bb): Make sure to catch
7993         all merge opportunities with the predecessor.
7995 2016-08-09  Richard Biener  <rguenther@suse.de>
7997         PR ipa/68273
7998         * ipa-prop.c (ipa_modify_formal_parameters): Build
7999         parameter types with natural alignment also for the
8000         over-aligned case.
8002 2016-08-08  Andi Kleen  <ak@linux.intel.com>
8004         * tree-vrp.c (get_single_symbol): Always initialize inv and neg.
8006 2016-08-08  David Malcolm  <dmalcolm@redhat.com>
8008         PR c/64955
8009         * langhooks-def.h (LANG_HOOKS_RUN_LANG_SELFTESTS): New default
8010         do-nothing langhook.
8011         (LANG_HOOKS_INITIALIZER): Add LANG_HOOKS_RUN_LANG_SELFTESTS.
8012         * langhooks.h (struct lang_hooks): Add run_lang_selftests.
8013         * selftest-run-tests.c: Include "tree.h" and "langhooks.h".
8014         (selftest::run_tests): Call lang_hooks.run_lang_selftests.
8016 2016-08-08  David Malcolm  <dmalcolm@redhat.com>
8018         PR bootstrap/72844
8019         * input.c: Ensure that HAVE_ICONV is defined.
8021 2016-08-08  Jakub Jelinek  <jakub@redhat.com>
8023         PR middle-end/72781
8024         * omp-low.c (lower_lastprivate_clauses): Set TREE_NO_WARNING on the
8025         private vars for lastprivate and for linear iterator.
8027         PR middle-end/68762
8028         * omp-simd-clone.c: Include varasm.h.
8029         (simd_clone_create): Copy over DECL_COMDAT, DECL_WEAK, DECL_EXTERNAL,
8030         DECL_VISIBILITY, DECL_VISIBILITY_SPECIFIED, DECL_DLLIMPORT_P and for
8031         DECL_ONE_ONLY call make_decl_one_only.  Fix up spelling in comment and
8032         update function name.
8034 2016-07-29  Pitchumani Sivanupandi  <pitchumani.s@atmel.com>
8036         * config/avr/driver-avr.c (specfiles_doc_url): Remove.
8037         (avr_diagnose_devicespecs_error): Remove.
8038         (avr_devicespecs_file): Remove composing absolute path for specfile
8039         and its verbose info. Remove conditions to check specs-file,
8041 2016-08-08  Jakub Jelinek  <jakub@redhat.com>
8043         PR rtl-optimization/72821
8044         * lra-spills.c (regno_in_use_p): Don't use BLOCK_FOR_INSN on barriers,
8045         just return false for them.
8047 2016-08-08  Alan Modra  <amodra@gmail.com>
8049         PR target/72771
8050         * config/rs6000/rs6000.c (toc_relative_expr_p): Allow (lo_sum (high))
8051         toc refs created during reload.  Update function comment.
8053 2016-08-08  Alan Modra  <amodra@gmail.com>
8055         PR target/72802
8056         * config/rs6000/rs6000.md (mov<mode>_hardfloat): Sort
8057         alternatives.  Put loads first, then stores, and reg/reg moves
8058         within same class later.  Delete attr length.
8060 2016-08-08  Alan Modra  <amodra@gmail.com>
8062         PR target/72802
8063         * config/rs6000/rs6000.c (mem_operand_gpr): Remove vsx dform test.
8064         (mem_operand_ds_form): New predicate.
8065         * config/rs6000/rs6000-protos.h (mem_operand_ds_form): Declare.
8066         * config/rs6000/constraints.md (wY): Use mem_operand_df_form.
8067         * config/rs6000/predicates.md (offsettable_mem_14bit_operand): Delete.
8068         * config/rs6000/rs6000.md (f32_lm2, f32_sm2): Use wY for SF.
8069         (extendsfdf2_fpr): Replace o constraint with wY.
8071 2016-08-07  Jan Hubicka  <hubicka@ucw.cz>
8073         * tree-ssa-threadbackward.c: Include tree-inline.h
8074         (profitable_jump_thread_path): Use estimate_num_insns to estimate
8075         size of copied block; for cold paths reduce duplication.
8076         (find_jump_threads_backwards): Remove redundant tests.
8077         (pass_thread_jumps::gate): Enable for -Os.
8079 2016-08-07  Jakub Jelinek  <jakub@redhat.com>
8081         PR c/72816
8082         * stor-layout.c (layout_decl): Fix up formatting.
8083         (relayout_decl): Allow DECL to be FIELD_DECL.
8085 2016-08-07  Alan Modra  <amodra@gmail.com>
8087         * config/rs6000/rs6000.md (fix_trunc<mode>si2): Fix mode of reg.
8089 2016-08-07  Kugan Vivekanandarajah  <kuganv@linaro.org>
8091         * data-streamer-in.c (streamer_read_wide_int): New.
8092         (streamer_read_widest_int): Renamed function.
8093         * data-streamer-out.c (streamer_write_wide_int): New
8094         (streamer_write_widest_int): Renamed function.
8095         * lto-streamer-in.c (streamer_read_wi): Renamed and moved to
8096         data-stream-in.c.
8097         (input_cfg): Call renamed function.
8098         * lto-streamer-out.c (streamer_write_wi): Renamed and moved to
8099         data-stream-out.c.
8100         (output_cfg): Call renamed function.
8101         * data-streamer.h: Add declarations.
8103 2016-08-08  Prathamesh Kulkarni  <prathamesh.kulkarni@linaro.org>
8105         * tree-ssa-ccp.c (extend_mask): New param sgn.
8106         Remove ORing with wi::mask.
8107         (get_default_value): Adjust call to extend_mask to pass sign.
8108         (evaluate_stmt): Likewise.
8110 2016-08-06  Jakub Jelinek  <jakub@redhat.com>
8112         * gcov.c (handle_cycle): Use INTTYPE_MAXIMUM (int64_t) instead of
8113         INT64_MAX.
8115 2016-08-06  Prathamesh Kulkarni  <prathamesh.kulkarni@linaro.org>
8117         * match.pd ((intptr_t) x eq/ne CST to x eq/ne (typeof x) cst): Disable
8118         transform if operand's type is pointer to function or method.
8120 2016-08-05  Patrick Palka  <ppalka@gcc.gnu.org>
8122         PR tree-optimization/18046
8123         * tree-ssa-threadedge.c: Include cfganal.h.
8124         (simplify_control_statement_condition): If simplifying a
8125         GIMPLE_SWITCH, replace the index operand of the GIMPLE_SWITCH
8126         with the dominating ASSERT_EXPR before handing it off to VRP.
8127         Mention that a CASE_LABEL_EXPR may be returned.
8128         (thread_around_empty_blocks): Adjust to handle
8129         simplify_control_statement_condition() returning a
8130         CASE_LABEL_EXPR.
8131         (thread_through_normal_block): Likewise.
8132         * tree-vrp.c (simplify_stmt_for_jump_threading): Simplify
8133         a switch statement by trying to determine which case label
8134         will be taken.
8136 2016-08-05  Vladimir Makarov  <vmakarov@redhat.com>
8138         PR rtl-optimization/69847
8139         * lra-constraints.c (process_invariant_for_inheritance): Save
8140         pattern instead of src.
8141         (remove_inheritance_pseudos): Use the pattern.  Add assert.
8143 2016-08-05  David Malcolm  <dmalcolm@redhat.com>
8145         * input.c (string_concat::string_concat): New constructor.
8146         (string_concat_db::string_concat_db): New constructor.
8147         (string_concat_db::record_string_concatenation): New method.
8148         (string_concat_db::get_string_concatenation): New method.
8149         (string_concat_db::get_key_loc): New method.
8150         (class auto_cpp_string_vec): New class.
8151         (get_substring_ranges_for_loc): New function.
8152         (get_source_range_for_substring): New function.
8153         (get_num_source_ranges_for_substring): New function.
8154         (class selftest::lexer_test_options): New class.
8155         (struct selftest::lexer_test): New struct.
8156         (class selftest::ebcdic_execution_charset): New class.
8157         (selftest::ebcdic_execution_charset::s_singleton): New variable.
8158         (selftest::lexer_test::lexer_test): New constructor.
8159         (selftest::lexer_test::~lexer_test): New destructor.
8160         (selftest::lexer_test::get_token): New method.
8161         (selftest::assert_char_at_range): New function.
8162         (ASSERT_CHAR_AT_RANGE): New macro.
8163         (selftest::assert_num_substring_ranges): New function.
8164         (ASSERT_NUM_SUBSTRING_RANGES): New macro.
8165         (selftest::assert_has_no_substring_ranges): New function.
8166         (ASSERT_HAS_NO_SUBSTRING_RANGES): New macro.
8167         (selftest::test_lexer_string_locations_simple): New function.
8168         (selftest::test_lexer_string_locations_ebcdic): New function.
8169         (selftest::test_lexer_string_locations_hex): New function.
8170         (selftest::test_lexer_string_locations_oct): New function.
8171         (selftest::test_lexer_string_locations_letter_escape_1): New function.
8172         (selftest::test_lexer_string_locations_letter_escape_2): New function.
8173         (selftest::test_lexer_string_locations_ucn4): New function.
8174         (selftest::test_lexer_string_locations_ucn8): New function.
8175         (selftest::uint32_from_big_endian): New function.
8176         (selftest::test_lexer_string_locations_wide_string): New function.
8177         (selftest::uint16_from_big_endian): New function.
8178         (selftest::test_lexer_string_locations_string16): New function.
8179         (selftest::test_lexer_string_locations_string32): New function.
8180         (selftest::test_lexer_string_locations_u8): New function.
8181         (selftest::test_lexer_string_locations_utf8_source): New function.
8182         (selftest::test_lexer_string_locations_concatenation_1): New
8183         function.
8184         (selftest::test_lexer_string_locations_concatenation_2): New
8185         function.
8186         (selftest::test_lexer_string_locations_concatenation_3): New
8187         function.
8188         (selftest::test_lexer_string_locations_macro): New function.
8189         (selftest::test_lexer_string_locations_stringified_macro_argument):
8190         New function.
8191         (selftest::test_lexer_string_locations_non_string): New function.
8192         (selftest::test_lexer_string_locations_long_line): New function.
8193         (selftest::test_lexer_char_constants): New function.
8194         (selftest::input_c_tests): Call the new test functions once per
8195         case within the line_table test matrix.
8196         * input.h (struct string_concat): New struct.
8197         (struct location_hash): New struct.
8198         (class string_concat_db): New class.
8199         * substring-locations.h: New header.
8201 2016-08-05  Patrick Palka  <ppalka@gcc.gnu.org>
8203         PR tree-optimization/72810
8204         * tree-vrp.c (simplify_switch_using_ranges): Avoid changing
8205         the type of the case labels when truncating.
8207 2016-08-05  James Greenhalgh  <james.greenhalgh@arm.com>
8209         PR Target/72819
8210         * config/aarch64/aarch64.h (aarch64_fp16_type_node): Declare.
8211         (aarch64_fp16_ptr_type_node): Likewise.
8212         * config/aarch64/aarch64-simd-builtins.c
8213         (aarch64_fp16_ptr_type_node): Define.
8214         (aarch64_init_fp16_types): New, refactored out of...
8215         (aarch64_init_builtins): ...here, update to call
8216         aarch64_init_fp16_types.
8217         * config/aarch64/aarch64.c (aarch64_gimplify_va_arg_expr): Handle
8218         HFmode.
8219         (aapcs_vfp_sub_candidate): Likewise.
8221 2016-08-05  Martin Liska  <mliska@suse.cz>
8222             Joshua Cranmer  <Pidgeot18@gmail.com>
8224         * gcov.c (line_t::has_block): New function.
8225         (enum loop_type): New enum.
8226         (handle_cycle): New function.
8227         (unblock): Likewise.
8228         (circuit): Likewise.
8229         (get_cycles_count): Likewise.
8230         (accumulate_line_counts): Use new loop detection algorithm.
8232 2016-08-05  Martin Liska  <mliska@suse.cz>
8234         * gcov.c (output_intermediate_file): Rename
8235         function_info::line_next to next_file_fn.
8236         (process_file): Likewise.
8237         (read_graph_file): Likewise.
8238         (accumulate_line_counts): Likewise.
8239         (output_lines): Likewise.
8241 2016-08-05  Richard Biener  <rguenther@suse.de>
8243         * tree-ssa-threadupdate.c (thread_block_1): Remove unnecessary
8244         restriction on threading to a loop header.
8246 2016-08-05  Richard Biener  <rguenther@suse.de>
8248         * tree-cfgcleanup.c (tree_forwarder_block_p): Use bb_loop_header_p.
8249         * cfghooks.c (force_nonfallthru): If we ended up splitting a latch
8250         adjust loop info accordingly.
8252 2016-08-05  Kugan Vivekanandarajah  <kuganv@linaro.org>
8254         * tree-vrp.c (extract_range_basic): Check cfun->after_inlining
8255         before folding call to __builtin_constant_p with parameters to false.
8257 2016-08-05  Alan Modra  <amodra@gmail.com>
8259         * config/rs6000/rs6000.c (rs6000_preferred_reload_class): Delete
8260         code accidentally committed 2016-05-02 providing class when given
8261         NO_REGS.
8263 2016-08-04  Patrick Palka  <ppalka@gcc.gnu.org>
8265         * tree-vrp.c (simplify_switch_using_ranges): Try to truncate
8266         the case label ranges that partially overlap with OP's value
8267         range.
8269 2016-08-04  Uros Bizjak  <ubizjak@gmail.com>
8271         PR target/72805
8272         * config/i386/avx512fintrin.h (_mm512_cmp_epi32_mask) [!__OPTIMIZE__]:
8273         Cast builtin function result to __mmask16 instead of __mmask8.
8274         (_mm512_cmp_epu32_mask) [!__OPTIMIZE__]: Ditto.
8275         (_mm512_mask_cmp_epi32_mask) [!__OPTIMIZE__]: Ditto.
8276         (_mm512_mask_cmp_epu32_mask) [!__OPTIMIZE__]: Ditto.
8278 2016-08-04  David Malcolm  <dmalcolm@redhat.com>
8280         * selftest.h (ASSERT_TRUE): Reimplement in terms of...
8281         (ASSERT_TRUE_AT): New macro.
8282         (ASSERT_FALSE): Reimplement in terms of...
8283         (ASSERT_FALSE_AT): New macro.
8284         (ASSERT_STREQ_AT): Fix typo in comment.
8286 2016-08-04  Patrick Palka  <ppalka@gcc.gnu.org>
8288         * gimple.c (preprocess_case_label_vec_for_gimple): When the case
8289         labels are exhaustive, designate the label with the widest
8290         range to be the default label.
8292 2016-08-04  Andrew Pinski  <apinski@cavium.com>
8294         * config/aarch64/aarch64.c (thunderx_vector_cost): New variable.
8295         (thunderx_tunings): Use thunderx_vector_cost instead of
8296         generic_vector_cost.
8298 2016-08-04  Martin Liska  <mliska@suse.cz>
8300         * gcov.c (main): Fix GNU coding style.
8301         (output_intermediate_file): Likewise.
8302         (process_file): Likewise.
8303         (generate_results): Likewise.
8304         (release_structures): Likewise.
8305         (create_file_names): Likewise.
8306         (find_source): Likewise.
8307         (read_graph_file): Likewise.
8308         (find_exception_blocks): Likewise.
8309         (canonicalize_name): Likewise.
8310         (make_gcov_file_name): Likewise.
8311         (mangle_name): Likewise.
8312         (accumulate_line_counts): Likewise.
8313         (output_branch_count): Likewise.
8314         (read_line): Likewise.
8316 2016-08-04  Bernd Edlinger  <bernd.edlinger@hotmail.de>
8318         PR rtl-optimization/71779
8319         * emit-rtl.c (set_reg_attrs_from_value): Only propagate REG_POINTER,
8320         if the value was sign-extended according to POINTERS_EXTEND_UNSIGNED
8321         or if it was truncated.
8323         PR rtl-optimization/70903
8324         * cse.c (cse_insn): If DEST is a paradoxical SUBREG, don't record DEST.
8326 2016-08-04  Kugan Vivekanandarajah  <kuganv@linaro.org>
8328         * tree-inline.c (remap_ssa_name): Check for POINTER_TYPE_P before
8329         accessing SSA_NAME_PTR_INFO.
8331 2016-08-04  Georg-Johann Lay  <avr@gjlay.de>
8333         PR 70677
8334         * common/config/avr/avr-common.c (avr_option_optimization_table)
8335         [OPT_LEVELS_ALL]: Turn off -fcaller-saves.
8337 2016-08-04  Georg-Johann Lay  <avr@gjlay.de>
8339         PR 55181
8340         * config/avr/avr.md: New pattern to work around do_store_flag
8341         generating shift instructions for bit extractions.
8343 2016-08-04  Kugan Vivekanandarajah  <kuganv@linaro.org>
8345         * tree-vrp.c (set_value_range): Use vrp_equiv_obstack with
8346         BITMAP_ALLOC.
8347         (add_equivalence): Likewise.
8348         (get_value_range): Allocate value range with vrp_value_range_pool.
8349         (vrp_initialize): Initialize vrp_equiv_obstack for equiv allocation.
8350         (vrp_finalize): Relase vrp_equiv_obstack and vrp_value_range_pool.
8352 2016-08-03  Peter Bergner  <bergner@vnet.ibm.com>
8354         * config/rs6000/rs6000.c (rs6000_option_override_internal): Make LRA
8355         the default for the rs6000 port.
8357 2016-08-03  Bernd Edlinger  <bernd.edlinger@hotmail.de>
8359         PR middle-end/71876
8360         * calls.c (special_function_p): Remove special handling of
8361         "setjmp_syscall", "qsetjmp", "longjmp", "siglongjmp" and the
8362         prefix "__x".  Recognize "savectx", "vfork" and "getcontext" only
8363         without prefix.  Remove potentially unsafe ECF_LEAF and ECF_NORETURN.
8365 2016-08-03  Vladimir Makarov  <vmakarov@redhat.com>
8367         PR middle-end/72778
8368         * lra-spills.c (regno_in_use_p): Check bb and regno modification.
8369         Don't stop on regular insns.
8371 2016-08-03  Nathan Sidwell  <nathan@codesourcery.com>
8373         * config/nvptx/nvptx.c (nvptx_declare_function_name): Round frame
8374         size to DImode boundary.
8375         (nvptx_propagate): Likewise.
8377 2016-08-03  Alan Modra  <amodra@gmail.com>
8379         * config/rs6000/rs6000.h (SLOW_UNALIGNED_ACCESS): Make scalar
8380         float access depend on TARGET_EFFICIENT_UNALIGNED_VSX.
8381         * config/rs6000/rs6000.opt (-mefficient-unaligned-vsx): Renamed
8382         from -mefficient-unaligned-vector.  Note that this affects fp too.
8384 2016-08-03  Alan Modra  <amodra@gmail.com>
8386         * config/rs6000/rs6000.c (rs6000_rtx_costs): Make unaligned mem
8387         cost more.
8389 2016-08-03  Alan Modra  <amodra@gmail.com>
8391         * config/rs6000/rs6000.md (fix_trunc<mode>si2): Force source operand
8392         to a reg.  Localize vars.
8394 2016-08-03  Alan Modra  <amodra@gmail.com>
8396         * config/rs6000/rs6000.opt: Remove negatives from help strings
8397         and comments.
8399 2016-08-03  Alan Modra  <amodra@gmail.com>
8401         * config/rs6000/rs6000.c (rs6000_secondary_reload_direct_move):
8402         Delete duplicated code.
8404 2016-08-02  Vladimir Makarov  <vmakarov@redhat.com>
8406         PR middle-end/72778
8407         * lra-spills.c (regno_in_use_p): New.
8408         (lra_final_code_change): Use it.
8410 2016-08-02  Vladimir Makarov  <vmakarov@redhat.com>
8412         PR rtl-optimization/69847
8413         * lra-int.h (struct lra-reg): Use restore_rtx instead of
8414         restore_regno.
8415         (lra_rtx_hash): New.
8416         * lra.c (initialize_lra_reg_info_element): Use restore_rtx instead
8417         of restore_regno.
8418         (lra_rtx_hash): Rename and move lra-remat.c::rtx_hash.
8419         * lra-remat.c (rtx_hash): Rename and Move to lra.c.
8420         * lra-spills.c (lra_final_code_change): Don't delete insn when the
8421         next insn is USE with the same reg as the current insn source.
8422         * lra-constraints.c (curr_insn_transform): Use restore_rtx instead
8423         of restore_regno.
8424         (lra_constraints_init): Call initiate_invariants.
8425         (lra_constraints_finish): Call finish_invariants.
8426         (struct invariant, invariant_t, invariant_ptr_t): New.
8427         (const_invariant_ptr_t, invariants, invariants_pool): New.
8428         (invariant_table, invariant_hash, invariant_eq_p): New.
8429         (insert_invariant, initiate_invariants, finish_invariants): New.
8430         (clear_invariants, invalid_invariant_regs): New.
8431         (inherit_reload_reg, split_reg, fix_bb_live_info): Use restore_rtx
8432         instead of restore_regno.
8433         (invariant_p, process_invariant_for_inheritance): New.
8434         (inherit_in_ebb): Implement invariant inheritance.
8435         (lra_inheritance): Initialize and finalize invalid_invariant_regs.
8436         (remove_inheritance_pseudos): Implement undoing invariant
8437         inheritance.
8438         (undo_optional_reloads, lra_undo_inheritance): Use restore_rtx
8439         instead of restore_regno.
8440         * lra-assigns.c (regno_live_length): New.
8441         (reload_pseudo_compare_func): Use regno_live_length.
8442         (assign_by_spills): Use restore_rtx instead of restore_regno.
8443         (lra_assign): Ditto.  Initiate regno_live_length.
8445 2016-02-08  James Greenhalgh  <james.greenhalgh@arm.com>
8447         * config/aarch64/arm_neon.h (vminnm_f64): Add back missing 'f' from
8448         __builtin_aarch64_fmindf.
8450 2016-08-02  Bin Cheng  <bin.cheng@arm.com>
8452         PR tree-optimization/34114
8453         * tree-ssa-loop-niter.c (number_of_iterations_ne): Prove no-overflow
8454         information for more control IVs.
8456 2016-08-02  Bin Cheng  <bin.cheng@arm.com>
8458         PR tree-optimization/34114
8459         * fold-const.c (multiple_of_p): Improve MULT_EXPR, PLUS_EXPR,
8460         PLUS_EXPR case.  Handle SSA_NAME case.
8462 2016-08-02  Tamar Christina  <tamar.christina@arm.com>
8464         * config/aarch64/aarch64-simd-builtins.def
8465         (__builtin_aarch64_fmindf): Change BUILTIN_VDQF to BUILTIN_VDQF_DF.
8466         (__builtin_aarch64_fmaxdf): Likewise.
8467         (__builtin_aarch64_smin_nandf): Likewise.
8468         (__builtin_aarch64_smax_nandf): Likewise.
8469         * config/aarch64/aarch64-simd.md (<fmaxmin><mode>3): Remove.
8470         * config/aarch64/aarch64.md (<fmaxmin><mode>3): Rename to...
8471         (<fmaxmin><mode>3): ...this.
8472         * config/aarch64/arm_neon.h (vmaxnm_f64): New.
8473         (vminnm_f64): Likewise.
8474         (vmin_f64): Likewise.
8475         (vmax_f64): Likewise.
8476         * config/aarch64/iterators.md (FMAXMIN): Merge with...
8477         (FMAXMIN_UNS): ...this.
8478         (fmaxmin): Merged with
8479         (fmaxmin_op): ...this...
8480         (maxmin_uns_op): ...in to this.
8482 2016-08-01  Michael Meissner  <meissner@linux.vnet.ibm.com>
8484         * config/rs6000/rs6000-c.c (altivec_resolve_overloaded_builtin):
8485         Add support for vec_extract on vector float, vector int, vector
8486         short, and vector char vector types.
8487         * config/rs6000/rs6000.c (rs6000_expand_vector_extract): Add
8488         vector float, vector int, vector short, and vector char
8489         optimizations on 64-bit ISA 2.07 systems for both constant and
8490         variable element numbers.
8491         (rs6000_split_vec_extract_var): Likewise.
8492         * config/rs6000/vsx.md (vsx_xscvspdp_scalar2): Allow SFmode to be
8493         Altivec registers on ISA 2.07 and above.
8494         (vsx_extract_v4sf): Delete alternative that hard coded element 0,
8495         which never was matched due to the split occuring before register
8496         allocation (and the code would not have worked on little endian
8497         systems if it did match).  Allow extracts to go to the Altivec
8498         registers if ISA 2.07 (power8).  Change from using "" around the
8499         C++ code to using {}'s.
8500         (vsx_extract_v4sf_<mode>_load): New insn to optimize vector float
8501         vec_extracts when the vector is in memory.
8502         (vsx_extract_v4sf_var): New insn to optimize vector float
8503         vec_extracts when the element number is variable on 64-bit ISA
8504         2.07 systems.
8505         (vsx_extract_<mode>, VSX_EXTRACT_I iterator): Add optimizations
8506         for 64-bit ISA 2.07 as well as ISA 3.0.
8507         (vsx_extract_<mode>_p9, VSX_EXTRACT_I iterator): Likewise.
8508         (vsx_extract_<mode>_p8, VSX_EXTRACT_I iterator): Likewise.
8509         (vsx_extract_<mode>_load, VSX_EXTRACT_I iterator): New insn to
8510         optimize vector int, vector short, and vector char vec_extracts
8511         when the vector is in memory.
8512         (vsx_extract_<mode>_var, VSX_EXTRACT_I iterator): New insn to
8513         optimize vector int, vector short, and vector char vec_extracts
8514         when the element number is variable.
8516 2016-08-01  Georg-Johann Lay  <avr@gjlay.de>
8518         PR target/71948
8519         * config/avr/avr.c (AVR_SYMBOL_FLAG_TINY_PM): Use a value that
8520         does not overlap with other symbol flags.
8522 2016-08-01  Wilco Dijkstra  <wdijkstr@arm.com>
8524         * config/aarch64/aarch64.h (aarch64_frame):
8525         Remove padding0 and hardfp_offset.  Add locals_offset,
8526         initial_adjust, callee_adjust, callee_offset and final_adjust.
8527         * config/aarch64/aarch64.c (aarch64_layout_frame):
8528         Remove unused padding0 and hardfp_offset initializations.
8529         Choose frame layout and set frame variables accordingly.
8530         Use INVALID_REGNUM instead of FIRST_PSEUDO_REGISTER.
8531         (aarch64_push_regs): Use INVALID_REGNUM, not FIRST_PSEUDO_REGISTER.
8532         (aarch64_pop_regs): Likewise.
8533         (aarch64_expand_prologue): Remove all decision code, just emit
8534         prolog according to frame variables.
8535         (aarch64_expand_epilogue): Remove all decision code, just emit
8536         epilog according to frame variables.
8537         (aarch64_initial_elimination_offset): Use offset to local/arg area.
8539 2015-08-01  H.J. Lu  <hongjiu.lu@intel.com>
8541         PR target/72748
8542         * config/i386/i386.c (timode_scalar_chain::convert_insn): Call
8543         fix_debug_reg_uses after changing source register mode to
8544         V1TImode if source register is undefined.
8546 2015-08-01  Alan Hayward  <alan.hayward@arm.com>
8548         PR tree-optimization/71818
8549         * tree-vect-loop-manip.c (vect_can_advance_ivs_p): Don't advance IVs
8550         with non invariant evolutions
8552 2016-08-01  Georg-Johann Lay  <avr@gjlay.de>
8554         PR target/72767
8555         * config/avr/avr.md (length) [branch]: Correct insn length
8556         attribute for forward branches.
8558 2016-08-01  Georg-Johann Lay  <avr@gjlay.de>
8560         * doc/extend.texi (AVR Built-in Functions): Document
8561         __builtin_avr_nops.
8562         * config/avr/builtins.def (NOPS): New.
8563         * config/avr/avr.c (avr_expand_nops): New static function.
8564         (avr_expand_builtin): Use it to handle AVR_BUILTIN_NOPS.
8566 2016-08-01  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
8568         * config/aarch64/aarch64.c (aarch64_classify_address): Use DImode when
8569         performing aarch64_offset_7bit_signed_scaled_p check for TImode LDP/STP
8570         addresses.
8572 2016-08-01  Virendra Pathak  <virendra.pathak@broadcom.com>
8574         * config/aarch64/aarch64.c (vulcan_tunings): Update
8575         vulcan L1 cache_line_size.
8577 2016-07-30  Michael Meissner  <meissner@linux.vnet.ibm.com>
8579         * config/rs6000/rs6000-protos.h (rs6000_adjust_vec_address): New
8580         function that takes a vector memory address, a hard register, an
8581         element number and a temporary base register, and recreates an
8582         address that points to the appropriate element within the vector.
8583         * config/rs6000/rs6000.c (rs6000_adjust_vec_address): Likewise.
8584         (rs6000_split_vec_extract_var): Add support for the target of a
8585         vec_extract with variable element number being a scalar memory
8586         location.
8587         (rtx_is_swappable_p): VLSO insns (UNSPEC_VSX_VSLOW) are not
8588         swappable.
8589         * config/rs6000/vsx.md (vsx_extract_<mode>_load): Replace
8590         vsx_extract_<mode>_load insn with a new insn that optimizes
8591         storing either element to a memory location, using scratch
8592         registers to pick apart the vector and reconstruct the address.
8593         (vsx_extract_<P:mode>_<VSX_D:mode>_load): Likewise.
8594         (vsx_extract_<mode>_store): Rework alternatives to more correctly
8595         support Altivec registers.  Add support for ISA 3.0 Altivec d-form
8596         store instruction.
8597         (vsx_extract_<mode>_var): Add support for extracting a variable
8598         element number from memory.
8600 2016-07-29  Georg-Johann Lay  <avr@gjlay.de>
8602         * config/avr/avr.c (avr_out_compare): Use const0_rtx instead of 0
8603         when testing for compares against constants of the form 0xabab.
8605 2016-07-29  Bin Cheng  <bin.cheng@arm.com>
8607         PR tree-optimization/57558
8608         * tree-vect-loop-manip.c (vect_create_cond_for_niters_checks): New
8609         function.
8610         (vect_loop_versioning): Support versioning with niter assumptions.
8611         * tree-vect-loop.c (tree-ssa-loop.h): Include header file.
8612         (vect_get_loop_niters): New parameter.  Reimplement to support
8613         assumptions in loop niter info.
8614         (vect_analyze_loop_form_1, vect_analyze_loop_form): Ditto.
8615         (new_loop_vec_info): Init LOOP_VINFO_NITERS_ASSUMPTIONS.
8616         (vect_estimate_min_profitable_iters): Use LOOP_REQUIRES_VERSIONING.
8617         Support loop versioning for niters.
8618         * tree-vectorizer.c (tree-ssa-loop-niter.h): Include header file.
8619         (vect_free_loop_info_assumptions): New function.
8620         (vectorize_loops): Free loop niter info for loops with flag
8621         LOOP_F_ASSUMPTIONS set if vectorization failed.
8622         * tree-vectorizer.h (struct _loop_vec_info): New field
8623         num_iters_assumptions.
8624         (LOOP_VINFO_NITERS_ASSUMPTIONS): New macro.
8625         (LOOP_REQUIRES_VERSIONING_FOR_NITERS): New macro.
8626         (LOOP_REQUIRES_VERSIONING): New macro.
8627         (vect_free_loop_info_assumptions): New decl.
8629 2016-07-29  Bin Cheng  <bin.cheng@arm.com>
8631         * cfgloop.h (struct loop): New field constraints.
8632         (LOOP_C_INFINITE, LOOP_C_FINITE): New macros.
8633         (loop_constraint_set, loop_constraint_clr, loop_constraint_set_p): New
8634         functions.
8635         * cfgloop.c (alloc_loop): Initialize new field.
8636         * cfgloopmanip.c (copy_loop_info): Copy constraints.
8637         * tree-ssa-loop-niter.c (number_of_iterations_exit_assumptions):
8638         Adjust niter analysis wrto loop constraints.
8639         * doc/loop.texi (@node Number of iterations): Add description for loop
8640         constraints.
8642 2016-07-29  Marek Polacek  <polacek@redhat.com>
8644         PR c/7652
8645         * config/i386/i386.c (ix86_expand_args_builtin): Add break.
8646         (ix86_expand_round_builtin): Likewise.
8648 2016-07-29  Segher Boessenkool  <segher@kernel.crashing.org>
8649             Georg-Johann Lay  <avr@gjlay.de>
8651         PR rtl-optimization/71976
8652         * combine.c (get_last_value): Return 0 if the argument for which
8653         the function is called has a wider mode than the recorded value.
8655 2016-07-29  Marek Polacek  <polacek@redhat.com>
8657         PR c/7652
8658         * config/rs6000/rs6000.c (altivec_expand_ld_builtin): Add break.
8659         (altivec_expand_st_builtin): Likewise.
8661 2016-07-29  Georg-Johann Lay  <avr@gjlay.de>
8663         * config/avr/avr.md (addqi3) [cc]: Revert glitch in insn attribute
8664         introduced in r238381.
8666 2016-07-29  Kugan Vivekanandarajah  <kuganv@linaro.org>
8668         PR middle-end/68217
8669         * tree-vrp.c (extract_range_from_binary_expr_1): In case of signed
8670         & sign-bit-CST, generate [-INF, 0] instead of [-INF, INF].
8672 2016-07-28  Michael Meissner  <meissner@linux.vnet.ibm.com>
8674         * config/rs6000/rs6000-protos.h (rs6000_split_vec_extract_var):
8675         New declaration.
8676         * config/rs6000/rs6000-c.c (altivec_resolve_overloaded_builtin):
8677         Add support for vec_extract of vector double or vector long having
8678         a variable element number on 64-bit ISA 2.07 systems or newer.
8679         * config/rs6000/rs6000.c (rs6000_expand_vector_extract):
8680         Likewise.
8681         (rs6000_split_vec_extract_var): New function to split a
8682         vec_extract built-in function with variable element number.
8683         (rtx_is_swappable_p): Variable vec_extracts and shifts are not
8684         swappable.
8685         * config/rs6000/vsx.md (UNSPEC_VSX_VSLO): New unspec.
8686         (UNSPEC_VSX_EXTRACT): Likewise.
8687         (vsx_extract_<mode>, VSX_D iterator): Fix constraints to allow
8688         direct move instructions to be generated on 64-bit ISA 2.07
8689         systems and newer, and to take advantage of the ISA 3.0 MFVSRLD
8690         instruction.
8691         (vsx_vslo_<mode>): New insn to do VSLO on V2DFmode and V2DImode
8692         arguments for vec_extract variable element.
8693         (vsx_extract_<mode>_var, VSX_D iterator): New insn to support
8694         vec_extract with variable element on V2DFmode and V2DImode
8695         vectors.
8696         * config/rs6000/rs6000.h (TARGET_VEXTRACTUB): Remove
8697         -mupper-regs-df requirement, since it isn't needed.
8698         (TARGET_DIRECT_MOVE_64BIT): New macro to say whether we can
8699         do direct moves on 64-bit systems, which allows optimization of
8700         vec_extract on 64-bit ISA 2.07 systems and newer.
8702 2016-07-28  Kristina Martsenko  <kristina.martsenko@arm.com>
8703 2016-07-28  Wilco Dijkstra  <wdijkstr@arm.com>
8705          * config/aarch64/aarch64.md
8706         (zero_extend<SHORT:mode><GPI:mode>2_aarch64): Change output
8707         statement and type.
8708         (<optab>qihi2_aarch64): Likewise, and split into two.
8709         (extendqihi2_aarch64): New.
8710         (zero_extendqihi2_aarch64): New.
8711         * config/aarch64/iterators.md (ldrxt): Remove.
8712         * config/aarch64/aarch64.c (aarch64_rtx_costs): Change cost of
8713         uxtb/uxth.
8715 2016-07-28  Kristina Martsenko  <kristina.martsenko@arm.com>
8717         * config/aarch64/aarch64.c (aarch64_rtx_costs): Fix cost of zero extend.
8719 2016-07-28  Wilco Dijkstra  <wdijkstr@arm.com>
8721         * config/aarch64/aarch64.c (aarch64_pushwb_pair_reg): Rename.
8722         (aarch64_push_reg): New function to push 1 or 2 registers.
8723         (aarch64_pop_reg): New function to pop 1 or 2 registers.
8724         (aarch64_expand_prologue): Use aarch64_push_regs.
8725         (aarch64_expand_epilogue): Use aarch64_pop_regs.
8727 2016-07-28  Yuri Rumyantsev  <ysrumyan@gmail.com>
8729         PR tree-optimization/71734
8730         * tree-ssa-loop-im.c (ref_indep_loop_p_1): Pass value of safelen
8731         attribute instead of REF_LOOP and use it.
8732         (ref_indep_loop_p_2): Use SAFELEN argument instead of REF_LOOP and
8733         set it for Loops having non-zero safelen attribute.
8734         (ref_indep_loop_p): Pass zero as initial value for safelen.
8736 2016-07-28  Ilya Enkovich  <ilya.enkovich@intel.com>
8738         PR middle-end/72657
8739         PR target/72683
8740         * tree-chkp.c (chkp_retbnd_call_by_val): Check for instrumentation
8741         call using chkp_gimple_call_builtin_p.
8742         (chkp_copy_bounds_for_assign): Likewise.
8744 2016-07-28  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
8746         * config/alpha/alpha.c (alpha_adjust_cost): Adjust.
8747         * config/arm/arm-protos.h (struct tune_params): Likewise.
8748         * config/arm/arm.c (xscale_sched_adjust_cost): Likewise.
8749         (cortex_a9_sched_adjust_cost): Likewise.
8750         (fa726te_sched_adjust_cost): Likewise.
8751         (arm_adjust_cost): Likewise.
8752         * config/bfin/bfin.c (bfin_adjust_cost): Likewise.
8753         * config/c6x/c6x.c (c6x_adjust_cost): Likewise.
8754         * config/epiphany/epiphany.c (epiphany_adjust_cost): Likewise.
8755         * config/i386/i386.c (ix86_adjust_cost): Likewise.
8756         * config/ia64/ia64.c: Likewise.
8757         * config/m68k/m68k.c: Likewise.
8758         * config/mep/mep.c (mep_adjust_cost): Likewise.
8759         * config/microblaze/microblaze.c (microblaze_adjust_cost):
8760         * Likewise.
8761         * config/mips/mips.c (mips_adjust_cost): Likewise.
8762         * config/mn10300/mn10300.c (mn10300_adjust_sched_cost):
8763         * Likewise.
8764         * config/pa/pa.c (pa_adjust_cost): Likewise.
8765         * config/rs6000/rs6000.c (rs6000_adjust_cost): Likewise.
8766         (rs6000_debug_adjust_cost): Likewise.
8767         * config/sh/sh.c (sh_adjust_cost): Likewise.
8768         * config/sparc/sparc.c (supersparc_adjust_cost): Likewise.
8769         (hypersparc_adjust_cost): Likewise.
8770         (sparc_adjust_cost): Likewise.
8771         * config/spu/spu.c (spu_sched_adjust_cost): Likewise.
8772         * config/tilegx/tilegx.c (tilegx_sched_adjust_cost): Likewise.
8773         * config/tilepro/tilepro.c (tilepro_sched_adjust_cost):
8774         * Likewise.
8775         * config/visium/visium.c (visium_adjust_cost): Likewise.
8776         * doc/tm.texi: Regenerate.
8777         * haifa-sched.c (dep_cost_1): Adjust.
8778         * target.def: Merge adjust_cost and adjust_cost_2.
8780 2016-07-28  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
8782         * haifa-sched.c (add_to_speculative_block): Make twins a vector.
8784 2016-07-28  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
8786         * store-motion.c (struct st_expr): Make pattern_regs a vector.
8787         (extract_mentioned_regs): Append to a vector instead of
8788         returning a rtx_expr_list.
8789         (st_expr_entry): Adjust.
8790         (free_st_expr_entry): Likewise.
8791         (store_ops_ok): Likewise.
8792         (store_killed_in_insn): Likewise.
8793         (find_moveable_store): Likewise.
8795 2016-07-28  Martin Liska  <mliska@suse.cz>
8797         PR gcov-profile/68025
8798         * tree-profile.c (tree_profiling): Respect
8799         no_profile_instrument_function attribute.
8800         * doc/extend.texi: Document no_profile_instrument_function
8801         attribute.
8803 2016-07-28  Martin Liska  <mliska@suse.cz>
8805         PR rtl-optimization/70944
8806         * combine.c (make_compound_operation):
8807         Do not allow make_compound_operation for vector mode
8809 2016-07-28  Kugan Vivekanandarajah  <kuganv@linaro.org>
8811         PR middle-end/71994
8812         * tree-ssa-reassoc.c (maybe_optimize_range_tests): Check tcc_comparison
8813          before calling get_ops.
8815 2016-07-27  Bernd Edlinger  <bernd.edlinger@hotmail.de>
8817         * defaults.h (LOG2_BITS_PER_UNIT): Move from here...
8818         * tree.h (LOG2_BITS_PER_UNIT): ...to here.
8819         (BITS_PER_UNIT_LOG): Remove.
8820         (int_bit_position): Use LOG2_BITS_PER_UNIT instead of BITS_PER_UNIT_LOG.
8821         * expr.c (expand_assignment): Likewise.
8822         * stor-layout.c (initialize_sizetypes): Likewise.
8824 2016-07-27  Michael Meissner  <meissner@linux.vnet.ibm.com>
8826         * config/rs6000/vector.md (vec_extract<mode>): Change the calling
8827         signature of rs6000_expand_vector_extract so that the element
8828         number is a RTX instead of a constant integer.
8829         * config/rs6000/rs6000-protos.h (rs6000_expand_vector_extract):
8830         Likewise.
8831         * config/rs6000/rs6000.c (rs6000_expand_vector_extract): Likewise.
8832         (altivec_expand_vec_ext_builtin): Likewise.
8833         * config/rs6000/altivec.md (reduc_plus_scal_<mode>): Likewise.
8834         * config/rs6000/vsx.md (vsx_extract_<mode>): Fix spelling of the
8835         MFVSRLD instruction.
8837 2016-07-27  David Malcolm  <dmalcolm@redhat.com>
8839         * input.c (get_pure_location): Move here from tree.c.
8840         (make_location): Likewise.  Add header comment.
8841         (selftest::test_accessing_ordinary_linemaps): Verify
8842         pure_location_p, make_location, get_location_from_adhoc_loc and
8843         get_range_from_loc.
8844         * input.h (get_pure_location): Move declaration here from tree.h.
8845         (get_finish): Likewise for inline function.
8846         (make_location): Likewise for declaration.
8847         * tree.c (get_pure_location): Move to input.c.
8848         (make_location): Likewise.
8849         * tree.h (get_pure_location): Move declaration to tree.h.
8850         (get_finish): Likewise for inline function.
8851         (make_location): Likewise for declaration.
8853 2016-07-27  Prathamesh Kulkarni  <prathamesh.kulkarni@linaro.org>
8855         PR middle-end/71078
8856         * match.pd (x / abs(x) -> copysign(1.0, x)): New pattern.
8858 2016-07-27  David Malcolm  <dmalcolm@redhat.com>
8860         * system.h (STATIC_ASSERT): Use static_assert if building
8861         with C++11 onwards.
8863 2016-07-27  Richard Biener  <rguenther@suse.de>
8865         PR tree-optimization/72517
8866         * tree-vect-data-refs.c (vect_analyze_data_ref_dependences):
8867         Revert change to not compute read-read dependences.
8869 2016-07-27  Richard Biener  <rguenther@suse.de>
8871         * predict.c (set_even_probabilities): Make nedges unsigned.
8873 2016-07-27  Martin Liska  <mliska@suse.cz>
8875         * predict.c (set_even_probabilities): Handle unlikely edges.
8876         (combine_predictions_for_bb): Likewise.
8878 2016-07-26  Michael Meissner  <meissner@linux.vnet.ibm.com>
8880         PR target/71869
8881         * config/rs6000/rs6000.c (rs6000_generate_compare): Rework
8882         __float128 support when we don't have hardware support, so that
8883         the IEEE built-in functions like isgreater, first call __unordkf3
8884         to make sure neither operand is a NaN, and if both operands are
8885         ordered, do the normal comparison.
8887 2016-07-26  Patrick Palka  <ppalka@gcc.gnu.org>
8889         * tree-vrp.c (dump_asserts_for): Print loc->expr instead of
8890         name.
8891         (extract_code_and_val_from_cond_with_ops): Verify that name is
8892         either cond_op0 or cond_op1.
8894 2016-07-26  Patrick Palka  <ppalka@gcc.gnu.org>
8896         PR tree-optimization/18046
8897         * genmodes.c (emit_mode_size_inline): Emit an assert that
8898         verifies that mode is a valid array index.
8899         (emit_mode_nuinits_inline): Likewise.
8900         (emit_mode_inner_inline): Likewise.
8901         (emit_mode_unit_size_inline): Likewise.
8902         (emit_mode_unit_precision_inline): Likewise.
8903         * tree-vrp.c: Include params.h.
8904         (find_switch_asserts): Register edge assertions for the default
8905         label which correspond to the anti-ranges of each case label.
8906         * params.def (PARAM_MAX_VRP_SWITCH_ASSERTIONS): New.
8907         * doc/invoke.texi: Document it.
8909 2016-07-26  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
8911         * gimple-ssa-strength-reduction.c (slsr_process_phi): Remove dead
8912         and unnecessary call to gimple_bb.
8914 2016-07-26  Richard Biener  <rguenther@suse.de>
8916         PR rtl-optimization/71984
8917         * simplify-rtx.c (simplify_subreg): Use GET_MODE_SIZE and prepare
8918         for VOIDmode.
8920 2016-07-26  Richard Biener  <rguenther@suse.de>
8922         PR middle-end/72517
8923         * expmed.c (extract_bit_field_1): Constrain the vector mode
8924         with element size matching the extraction mode size when
8925         choosing a better vector mode to do the extraction from.
8927 2016-07-26  Richard Biener  <rguenther@suse.de>
8928             Prathamesh Kulkarni  <prathamesh.kulkarni@linaro.org>
8930         PR middle-end/70920
8931         * match.pd ((intptr)x eq/ne CST to x eq/ne (typeof x) CST): New
8932         pattern.
8934 2016-07-26  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
8936         * tree-ssa-structalias.c (struct scc_info): Change types of
8937         members to auto_sbitmap and auto_vec.
8938         (scc_info::scc_info): New constructor.
8939         (scc_info::~scc_info): New destructor.
8940         (init_scc_info): Remove.
8941         (free_scc_info): Remove.
8942         (find_indirect_cycles): Adjust.
8943         (perform_var_substitution): Likewise.
8944         (free_var_substitution_info): Likewise.
8946 2016-07-26  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
8948         * tree-outof-ssa.c (struct elim_graph): Change type of members
8949         to auto_vec and auto_sbitmap.
8950         (elim_graph::elim_graph): New constructor.
8951         (delete_elim_graph): Remove.
8952         (expand_phi_nodes): Adjust.
8954 2016-07-26  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
8956         * tree-outof-ssa.c (struct elim_graph): Remove typedef.
8957         (new_elim_graph): Adjust.
8958         (clear_elim_graph): Likewise.
8959         (delete_elim_graph): Likewise.
8960         (elim_graph_size): Likewise.
8961         (elim_graph_add_node): Likewise.
8962         (elim_graph_add_edge): Likewise.
8963         (elim_graph_remove_succ_edge): Likewise.
8964         (eliminate_name): Likewise.
8965         (eliminate_build): Likewise.
8966         (elim_forward): Likewise.
8967         (elim_unvisited_predecessor): Likewise.
8968         (elim_backward): Likewise.
8969         (elim_create): Likewise.
8970         (eliminate_phi): Likewise.
8971         (expand_phi_nodes): Likewise.
8973 2016-07-26  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
8975         * bt-load.c (compute_out): Use auto_sbitmap class.
8976         (link_btr_uses): Likewise.
8977         * cfganal.c (mark_dfs_back_edges): Likewise.
8978         (post_order_compute): Likewise.
8979         (inverted_post_order_compute): Likewise.
8980         (pre_and_rev_post_order_compute_fn): Likewise.
8981         (single_pred_before_succ_order): Likewise.
8982         * cfgexpand.c (pass_expand::execute): Likewise.
8983         * cfgloop.c (verify_loop_structure): Likewise.
8984         * cfgloopmanip.c (fix_bb_placements): Likewise.
8985         (remove_path): Likewise.
8986         (update_dominators_in_loop): Likewise.
8987         * cfgrtl.c (break_superblocks): Likewise.
8988         * ddg.c (check_sccs): Likewise.
8989         (create_ddg_all_sccs): Likewise.
8990         * df-core.c (df_worklist_dataflow): Likewise.
8991         * dse.c (dse_step3): Likewise.
8992         * except.c (eh_region_outermost): Likewise.
8993         * function.c (thread_prologue_and_epilogue_insns): Likewise.
8994         * gcse.c (prune_expressions): Likewise.
8995         (prune_insertions_deletions): Likewise.
8996         * gimple-ssa-backprop.c (backprop::~backprop): Likewise.
8997         * graph.c (draw_cfg_nodes_no_loops): Likewise.
8998         * ira-lives.c (remove_some_program_points_and_update_live_ranges): Likewise.
8999         * lcm.c (compute_earliest): Likewise.
9000         (compute_farthest): Likewise.
9001         * loop-unroll.c (unroll_loop_constant_iterations): Likewise.
9002         (unroll_loop_runtime_iterations): Likewise.
9003         (unroll_loop_stupid): Likewise.
9004         * lower-subreg.c (decompose_multiword_subregs): Likewise.
9005         * lra-lives.c: Likewise.
9006         * lra.c (lra): Likewise.
9007         * modulo-sched.c (schedule_reg_moves): Likewise.
9008         (optimize_sc): Likewise.
9009         (get_sched_window): Likewise.
9010         (sms_schedule_by_order): Likewise.
9011         (check_nodes_order): Likewise.
9012         (order_nodes_of_sccs): Likewise.
9013         (order_nodes_in_scc): Likewise.
9014         * recog.c (split_all_insns): Likewise.
9015         * regcprop.c (pass_cprop_hardreg::execute): Likewise.
9016         * reload1.c (reload): Likewise.
9017         * sched-rgn.c (haifa_find_rgns): Likewise.
9018         (split_edges): Likewise.
9019         (compute_trg_info): Likewise.
9020         * sel-sched.c (init_seqno): Likewise.
9021         * store-motion.c (remove_reachable_equiv_notes): Likewise.
9022         * tree-into-ssa.c (update_ssa): Likewise.
9023         * tree-ssa-live.c (live_worklist): Likewise.
9024         * tree-ssa-loop-im.c (fill_always_executed_in): Likewise.
9025         * tree-ssa-loop-ivcanon.c (try_unroll_loop_completely):
9026         * Likewise.
9027         (try_peel_loop): Likewise.
9028         * tree-ssa-loop-manip.c (tree_transform_and_unroll_loop):
9029         * Likewise.
9030         * tree-ssa-pre.c (compute_antic): Likewise.
9031         * tree-ssa-reassoc.c (undistribute_ops_list): Likewise.
9032         * tree-stdarg.c (reachable_at_most_once): Likewise.
9033         * tree-vect-slp.c (vect_attempt_slp_rearrange_stmts): Likewise.
9034         * var-tracking.c (vt_find_locations): Likewise.
9036 2016-07-26  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
9038         * sbitmap.h (auto_sbitmap): New class.
9040 2016-07-26  Alan Modra  <amodra@gmail.com>
9042         PR target/72103
9043         * config/rs6000/rs6000.c (rs6000_secondary_reload): Initialize
9044         sri->t_icode.
9046 2016-07-25  David Malcolm  <dmalcolm@redhat.com>
9048         * input.c (selftest::temp_source_file::temp_source_file): Fix
9049         missing "%s" in fprintf.
9051 2016-07-25  John David Anglin  <danglin@gcc.gnu.org>
9053         PR middle-end/71732
9054         * cselib.c (cselib_process_insn): Invalidate argument slots for
9055         const/pure calls.
9057 2016-07-25  Jiong Wang  <jiong.wang@arm.com>
9059         * config/aarch64/arm_neon.h (vfmah_lane_f16, vfmah_laneq_f16,
9060         vfmsh_lane_f16, vfmsh_laneq_f16, vmulh_lane_f16, vmulh_laneq_f16,
9061         vmulxh_lane_f16, vmulxh_laneq_f16): New.
9063 2016-07-25  Jiong Wang  <jiong.wang@arm.com>
9065         * config/aarch64/aarch64-simd-builtins.def: Register new builtins.
9066         * config/aarch64/aarch64.md (fma, fnma): Support HF.
9067         * config/aarch64/arm_fp16.h (vfmah_f16, vfmsh_f16): New.
9069 2016-07-25  Jiong Wang  <jiong.wang@arm.com>
9071         * config/aarch64/aarch64-simd-builtins.def: Register new builtins.
9072         * config/aarch64/aarch64.md (<FCVT_F2FIXED:fcvt_fixed_insn>hf<mode>3):
9073         New.
9074         (<FCVT_FIXED2F:fcvt_fixed_insn><mode>hf3): Likewise.
9075         (add<mode>3): Likewise.
9076         (sub<mode>3): Likewise.
9077         (mul<mode>3): Likewise.
9078         (div<mode>3): Likewise.
9079         (*div<mode>3): Likewise.
9080         (<fmaxmin><mode>3): Extend to HF.
9081         * config/aarch64/aarch64-simd.md (aarch64_rsqrts<mode>): Likewise.
9082         (fabd<mode>3): Likewise.
9083         (<FCVT_F2FIXED:fcvt_fixed_insn><VHSDF_HSDF:mode>3): Likewise.
9084         (<FCVT_FIXED2F:fcvt_fixed_insn><VHSDI_HSDI:mode>3): Likewise.
9085         (aarch64_fmulx<mode>): Likewise.
9086         (aarch64_fac<optab><mode>): Likewise.
9087         (aarch64_frecps<mode>): Likewise.
9088         (<FCVT_F2FIXED:fcvt_fixed_insn>hfhi3): New.
9089         (<FCVT_FIXED2F:fcvt_fixed_insn>hihf3): Likewise.
9090         * config/aarch64/iterators.md (VHSDF_SDF): Delete.
9091         (VSDQ_HSDI): Support HI.
9092         (fcvt_target, FCVT_TARGET): Likewise.
9093         * config/aarch64/arm_fp16.h (vaddh_f16, vsubh_f16, vabdh_f16,
9094         vcageh_f16, vcagth_f16, vcaleh_f16, vcalth_f16, vceqh_f16, vcgeh_f16,
9095         vcgth_f16, vcleh_f16, vclth_f16, vcvth_n_f16_s16, vcvth_n_f16_s32,
9096         vcvth_n_f16_s64, vcvth_n_f16_u16, vcvth_n_f16_u32, vcvth_n_f16_u64,
9097         vcvth_n_s16_f16, vcvth_n_s32_f16, vcvth_n_s64_f16, vcvth_n_u16_f16,
9098         vcvth_n_u32_f16, vcvth_n_u64_f16, vdivh_f16, vmaxh_f16, vmaxnmh_f16,
9099         vminh_f16, vminnmh_f16, vmulh_f16, vmulxh_f16, vrecpsh_f16,
9100         vrsqrtsh_f16): New.
9102 2016-07-25  Jiong Wang  <jiong.wang@arm.com>
9104         * config.gcc (aarch64*-*-*): Install arm_fp16.h.
9105         * config/aarch64/aarch64-builtins.c (hi_UP): New.
9106         * config/aarch64/aarch64-simd-builtins.def: Register new builtins.
9107         * config/aarch64/aarch64-simd.md (aarch64_frsqrte<mode>): Extend to HF
9108         mode.
9109         (aarch64_frecp<FRECP:frecp_suffix><mode>): Likewise.
9110         (aarch64_cm<optab><mode>): Likewise.
9111         * config/aarch64/aarch64.md (<frint_pattern><mode>2): Likewise.
9112         (l<fcvt_pattern><su_optab><GPF:mode><GPI:mode>2): Likewise.
9113         (fix_trunc<GPF:mode><GPI:mode>2): Likewise.
9114         (sqrt<mode>2): Likewise.
9115         (*sqrt<mode>2): Likewise.
9116         (abs<mode>2): Likewise.
9117         (<optab><mode>hf2): New pattern for HF mode.
9118         (<optab>hihf2): Likewise.
9119         * config/aarch64/arm_neon.h: Include arm_fp16.h.
9120         * config/aarch64/iterators.md (GPF_F16, GPI_F16, VHSDF_HSDF): New.
9121         (w1, w2, v, s, q, Vmtype, V_cmp_result, fcvt_iesize, FCVT_IESIZE):
9122         Support HF mode.
9123         * config/aarch64/arm_fp16.h: New file.
9124         (vabsh_f16, vceqzh_f16, vcgezh_f16, vcgtzh_f16, vclezh_f16, vcltzh_f16,
9125         vcvth_f16_s16, vcvth_f16_s32, vcvth_f16_s64, vcvth_f16_u16,
9126         vcvth_f16_u32, vcvth_f16_u64, vcvth_s16_f16, vcvth_s32_f16,
9127         vcvth_s64_f16, vcvth_u16_f16, vcvth_u32_f16, vcvth_u64_f16,
9128         vcvtah_s16_f16, vcvtah_s32_f16, vcvtah_s64_f16, vcvtah_u16_f16,
9129         vcvtah_u32_f16, vcvtah_u64_f16, vcvtmh_s16_f16, vcvtmh_s32_f16,
9130         vcvtmh_s64_f16, vcvtmh_u16_f16, vcvtmh_u32_f16, vcvtmh_u64_f16,
9131         vcvtnh_s16_f16, vcvtnh_s32_f16, vcvtnh_s64_f16, vcvtnh_u16_f16,
9132         vcvtnh_u32_f16, vcvtnh_u64_f16, vcvtph_s16_f16, vcvtph_s32_f16,
9133         vcvtph_s64_f16, vcvtph_u16_f16, vcvtph_u32_f16, vcvtph_u64_f16,
9134         vnegh_f16, vrecpeh_f16, vrecpxh_f16, vrndh_f16, vrndah_f16, vrndih_f16,
9135         vrndmh_f16, vrndnh_f16, vrndph_f16, vrndxh_f16, vrsqrteh_f16,
9136         vsqrth_f16): New.
9138 2016-07-25  Jiong Wang  <jiong.wang@arm.com>
9140         * config/aarch64/aarch64-simd-builtins.def (reduc_smax_scal_,
9141         reduc_smin_scal_): Use VDQIF_F16.
9142         (reduc_smax_nan_scal_, reduc_smin_nan_scal_): Use VHSDF.
9143         * config/aarch64/aarch64-simd.md (reduc_<maxmin_uns>_scal_<mode>):
9144         Use VHSDF.
9145         (aarch64_reduc_<maxmin_uns>_internal<mode>): Likewise.
9146         * config/aarch64/iterators.md (VDQIF_F16): New.
9147         (vp): Support HF modes.
9148         * config/aarch64/arm_neon.h (vmaxv_f16, vmaxvq_f16, vminv_f16,
9149         vminvq_f16, vmaxnmv_f16, vmaxnmvq_f16, vminnmv_f16, vminnmvq_f16): New.
9151 2016-07-25  Jiong Wang  <jiong.wang@arm.com>
9153         * config/aarch64/aarch64-simd.md (*aarch64_mulx_elt_to_64v2df): Rename to
9154         "*aarch64_mulx_elt_from_dup<mode>".
9155         (*aarch64_mul3_elt<mode>): Update schedule type.
9156         (*aarch64_mul3_elt_from_dup<mode>): Likewise.
9157         (*aarch64_fma4_elt_from_dup<mode>): Likewise.
9158         (*aarch64_fnma4_elt_from_dup<mode>): Likewise.
9159         * config/aarch64/iterators.md (VMUL): Supprt half precision float modes.
9160         (f, fp): Support HF modes.
9161         * config/aarch64/arm_neon.h (vfma_lane_f16, vfmaq_lane_f16,
9162         vfma_laneq_f16, vfmaq_laneq_f16, vfma_n_f16, vfmaq_n_f16, vfms_lane_f16,
9163         vfmsq_lane_f16, vfms_laneq_f16, vfmsq_laneq_f16, vfms_n_f16,
9164         vfmsq_n_f16, vmul_lane_f16, vmulq_lane_f16, vmul_laneq_f16,
9165         vmulq_laneq_f16, vmul_n_f16, vmulq_n_f16, vmulx_lane_f16,
9166         vmulxq_lane_f16, vmulx_laneq_f16, vmulxq_laneq_f16): New.
9168 2016-07-25  Jiong Wang  <jiong.wang@arm.com>
9170         * config/aarch64/aarch64-simd-builtins.def: Register new builtins.
9171         * config/aarch64/aarch64-simd.md (fma<mode>4, fnma<mode>4): Extend to HF
9172         modes.
9173         * config/aarch64/arm_neon.h (vfma_f16, vfmaq_f16, vfms_f16,
9174         vfmsq_f16): New.
9176 2016-07-25  Jiong Wang  <jiong.wang@arm.com>
9178         * config/aarch64/aarch64-simd-builtins.def: Register new builtins.
9179         * config/aarch64/aarch64-simd.md
9180         (aarch64_rsqrts<mode>): Extend to HF modes.
9181         (fabd<mode>3): Likewise.
9182         (<FCVT_F2FIXED:fcvt_fixed_insn><VHSDF_SDF:mode>3): Likewise.
9183         (<FCVT_FIXED2F:fcvt_fixed_insn><VHSDI_SDI:mode>3): Likewise.
9184         (aarch64_<maxmin_uns>p<mode>): Likewise.
9185         (<su><maxmin><mode>3): Likewise.
9186         (<maxmin_uns><mode>3): Likewise.
9187         (<fmaxmin><mode>3): Likewise.
9188         (aarch64_faddp<mode>): Likewise.
9189         (aarch64_fmulx<mode>): Likewise.
9190         (aarch64_frecps<mode>): Likewise.
9191         (*aarch64_fac<optab><mode>): Rename to aarch64_fac<optab><mode>.
9192         (add<mode>3): Extend to HF modes.
9193         (sub<mode>3): Likewise.
9194         (mul<mode>3): Likewise.
9195         (div<mode>3): Likewise.
9196         (*div<mode>3): Likewise.
9197         * config/aarch64/aarch64.c (aarch64_emit_approx_div): Return false for
9198         HF, V4HF and V8HF.
9199         * config/aarch64/iterators.md (VDQ_HSDI, VSDQ_HSDI): New mode iterator.
9200         * config/aarch64/arm_neon.h (vadd_f16, vaddq_f16, vabd_f16, vabdq_f16,
9201         vcage_f16, vcageq_f16, vcagt_f16, vcagtq_f16, vcale_f16, vcaleq_f16,
9202         vcalt_f16, vcaltq_f16, vceq_f16, vceqq_f16, vcge_f16, vcgeq_f16,
9203         vcgt_f16, vcgtq_f16, vcle_f16, vcleq_f16, vclt_f16, vcltq_f16,
9204         vcvt_n_f16_s16, vcvtq_n_f16_s16, vcvt_n_f16_u16, vcvtq_n_f16_u16,
9205         vcvt_n_s16_f16, vcvtq_n_s16_f16, vcvt_n_u16_f16, vcvtq_n_u16_f16,
9206         vdiv_f16, vdivq_f16, vdup_lane_f16, vdup_laneq_f16, vdupq_lane_f16,
9207         vdupq_laneq_f16, vdups_lane_f16, vdups_laneq_f16, vmax_f16, vmaxq_f16,
9208         vmaxnm_f16, vmaxnmq_f16, vmin_f16, vminq_f16, vminnm_f16, vminnmq_f16,
9209         vmul_f16, vmulq_f16, vmulx_f16, vmulxq_f16, vpadd_f16, vpaddq_f16,
9210         vpmax_f16, vpmaxq_f16, vpmaxnm_f16, vpmaxnmq_f16, vpmin_f16, vpminq_f16,
9211         vpminnm_f16, vpminnmq_f16, vrecps_f16, vrecpsq_f16, vrsqrts_f16,
9212         vrsqrtsq_f16, vsub_f16, vsubq_f16): New.
9214 2016-07-25  Jiong Wang  <jiong.wang@arm.com>
9216         * config/aarch64/aarch64-builtins.c (TYPES_BINOP_USS): New.
9217         * config/aarch64/aarch64-simd-builtins.def: Register new builtins.
9218         * config/aarch64/aarch64-simd.md (aarch64_rsqrte<mode>): Extend to HF modes.
9219         (neg<mode>2): Likewise.
9220         (abs<mode>2): Likewise.
9221         (<frint_pattern><mode>2): Likewise.
9222         (l<fcvt_pattern><su_optab><VDQF:mode><fcvt_target>2): Likewise.
9223         (<optab><VDQF:mode><fcvt_target>2): Likewise.
9224         (<fix_trunc_optab><VDQF:mode><fcvt_target>2): Likewise.
9225         (ftrunc<VDQF:mode>2): Likewise.
9226         (<optab><fcvt_target><VDQF:mode>2): Likewise.
9227         (sqrt<mode>2): Likewise.
9228         (*sqrt<mode>2): Likewise.
9229         (aarch64_frecpe<mode>): Likewise.
9230         (aarch64_cm<optab><mode>): Likewise.
9231         * config/aarch64/aarch64.c (aarch64_emit_approx_sqrt): Return false for
9232         HF, V4HF and V8HF.
9233         * config/aarch64/iterators.md (VHSDF, VHSDF_DF, VHSDF_SDF): New.
9234         (VDQF_COND, fcvt_target, FCVT_TARGET, hcon): Extend mode attribute to HF modes.
9235         (stype): New.
9236         * config/aarch64/arm_neon.h (vdup_n_f16): New.
9237         (vdupq_n_f16): Likewise.
9238         (vld1_dup_f16): Use vdup_n_f16.
9239         (vld1q_dup_f16): Use vdupq_n_f16.
9240         (vabs_f16, vabsq_f16, vceqz_f16, vceqzq_f16, vcgez_f16, vcgezq_f16,
9241         vcgtz_f16, vcgtzq_f16, vclez_f16, vclezq_f16, vcltz_f16, vcltzq_f16,
9242         vcvt_f16_s16, vcvtq_f16_s16, vcvt_f16_u16, vcvtq_f16_u16, vcvt_s16_f16,
9243         vcvtq_s16_f16, vcvt_u16_f16, vcvtq_u16_f16, vcvta_s16_f16,
9244         vcvtaq_s16_f16, vcvta_u16_f16, vcvtaq_u16_f16, vcvtm_s16_f16,
9245         vcvtmq_s16_f16, vcvtm_u16_f16, vcvtmq_u16_f16, vcvtn_s16_f16,
9246         vcvtnq_s16_f16, vcvtn_u16_f16, vcvtnq_u16_f16, vcvtp_s16_f16,
9247         vcvtpq_s16_f16, vcvtp_u16_f16, vcvtpq_u16_f16, vneg_f16, vnegq_f16,
9248         vrecpe_f16, vrecpeq_f16, vrnd_f16, vrndq_f16, vrnda_f16, vrndaq_f16,
9249         vrndi_f16, vrndiq_f16, vrndm_f16, vrndmq_f16, vrndn_f16, vrndnq_f16,
9250         vrndp_f16, vrndpq_f16, vrndx_f16, vrndxq_f16, vrsqrte_f16, vrsqrteq_f16,
9251         vsqrt_f16, vsqrtq_f16): New.
9253 2016-07-25  Jiong Wang  <jiong.wang@arm.com>
9255         * config/aarch64/aarch64-simd.md
9256         (aarch64_<PERMUTE:perm_insn><PERMUTE:perm_hilo><mode>): Use VALL_F16.
9257         (aarch64_ext<mode>): Likewise.
9258         (aarch64_rev<REVERSE:rev_op><mode>): Likewise.
9259         * config/aarch64/aarch64.c (aarch64_evpc_trn, aarch64_evpc_uzp,
9260         aarch64_evpc_zip, aarch64_evpc_ext, aarch64_evpc_rev): Support V4HFmode
9261         and V8HFmode.
9262         * config/aarch64/arm_neon.h (__INTERLEAVE_LIST): Support float16x4_t,
9263         float16x8_t.
9264         (__aarch64_vdup_lane_f16, __aarch64_vdup_laneq_f16,
9265         __aarch64_vdupq_lane_f16, __aarch64_vdupq_laneq_f16, vbsl_f16,
9266         vbslq_f16, vdup_n_f16, vdupq_n_f16, vdup_lane_f16, vdup_laneq_f16,
9267         vdupq_lane_f16, vdupq_laneq_f16, vduph_lane_f16, vduph_laneq_f16,
9268         vext_f16, vextq_f16, vmov_n_f16, vmovq_n_f16, vrev64_f16, vrev64q_f16,
9269         vtrn1_f16, vtrn1q_f16, vtrn2_f16, vtrn2q_f16, vtrn_f16, vtrnq_f16,
9270         vuzp1_f16, vuzp1q_f16, vuzp2_f16, vuzp2q_f16, vzip1_f16, vzip2q_f16):
9271         New.
9272         (vmov_n_f16): Reimplement using vdup_n_f16.
9273         (vmovq_n_f16): Reimplement using vdupq_n_f16..
9275 2016-07-25  Jiong Wang  <jiong.wang@arm.com>
9277         * config/aarch64/aarch64.c (aarch64_add_constant): New parameter
9278         "frame_related_p".  Generate CFA annotation when it's necessary.
9279         (aarch64_expand_prologue): Use aarch64_add_constant.
9280         (aarch64_expand_epilogue): Likewise.
9281         (aarch64_output_mi_thunk): Pass "false" when calling
9282         aarch64_add_constant.
9284 2016-07-25  Jiong Wang  <jiong.wang@arm.com>
9286         * config/aarch64/aarch64.c (aarch64_add_constant): Optimize instruction
9287         sequences.
9289 2016-07-25  Jiong Wang  <jiong.wang@arm.com>
9291         * config/aarch64/aarch64.c (aarch64_add_constant): New parameter "mode".
9292         Use aarch64_internal_mov_immediate instead of aarch64_build_constant.
9293         (aarch64_output_mi_thunk): Pass Pmode when calling aarch64_add_constant.
9294         (aarch64_build_constant): Delete.
9296 2016-07-25  Alexander Monakov  <amonakov@ispras.ru>
9298         Revert
9299         2016-07-20  Alexander Monakov  <amonakov@ispras.ru>
9301         * config/nvptx/nvptx.c (nvptx_option_override): Do not set
9302         flag_toplevel_reorder.
9304 2016-07-25  Richard Biener  <rguenther@suse.de>
9306         * cgraph.c (cgraph_node::verify_node): Compare against builtin
9307         by using DECL_BUILT_IN_CLASS and DECL_FUNCTION_CODE.
9308         * tree-chkp.c (chkp_gimple_call_builtin_p): Likewise.
9309         * tree-streamer.h (streamer_handle_as_builtin_p): Remove.
9310         (streamer_get_builtin_tree): Likewise.
9311         (streamer_write_builtin): Likewise.
9312         * lto-streamer.h (LTO_builtin_decl): Remove.
9313         * lto-streamer-in.c (lto_read_tree_1): Remove assert.
9314         (lto_input_scc): Remove LTO_builtin_decl handling.
9315         (lto_input_tree_1): Liekwise.
9316         * lto-streamer-out.c (lto_output_tree_1): Remove special
9317         handling of builtins.
9318         (DFS::DFS): Likewise.
9319         * tree-streamer-in.c (streamer_get_builtin_tree): Remove.
9320         * tree-streamer-out.c (pack_ts_function_decl_value_fields): Remove
9321         assert.
9322         (streamer_write_builtin): Remove.
9324 2016-07-25  Martin Liska  <mliska@suse.cz>
9326         * lto-cgraph.c (input_symtab): Don't call get_working_sets
9327         if flag_auto_profile is set to true.
9329 2016-07-25  Martin Liska  <mliska@suse.cz>
9331         PR gcov-profile/71868
9332         * cfgloopanal.c (expected_loop_iterations_unbounded): When we
9333         have a function with multiple latches, count them all.
9335 2016-07-25  Martin Liska  <mliska@suse.cz>
9337         * tree-ssa-loop-niter.c (loop_only_exit_p): Release body array.
9339 2016-07-25  Martin Liska  <mliska@suse.cz>
9341         PR tree-optimization/71987
9342         * tree-ssa-reassoc.c (maybe_optimize_range_tests): Call get_ops
9343         just for SSA_NAMEs. Fix GNU coding style.
9345 2016-07-25  Martin Liska  <mliska@suse.cz>
9347         PR gcov-profile/64874
9348         * gcov-io.h: Update command about file format.
9349         * gcov-iov.c (main): Adapt the numbering scheme.
9351 2016-07-24  Kugan Vivekanandarajah  <kuganv@linaro.org>
9353         PR middle-end/66726
9354         * tree-ssa-reassoc.c (optimize_vec_cond_expr): Handle tcc_compare stmt
9355         whose result is used in PHI.
9356         (final_range_test_p): Likewise.
9357         (maybe_optimize_range_tests): Likewise.
9359 2016-07-22  Michael Meissner  <meissner@linux.vnet.ibm.com>
9361         * config/rs6000/rs6000-c.c (altivec_resolve_overloaded_builtin):
9362         Reformat two multi-line strings.
9364 2016-07-22  Martin Sebor  <msebor@redhat.com>
9366         * doc/extend.texi (Compound Literals): Add '@' missed in last commit.
9368 2016-07-22  Martin Sebor  <msebor@redhat.com>
9370         PR c/71560
9371         * doc/extend.texi (Compound Literals): Correct and clarify.
9372         (Cast to Union): Same.
9374 2016-07-22  Kelvin Nilsen  <kelvin@gcc.gnu.org>
9376         * config/rs6000/rs6000.c (rs6000_option_override_internal): Add
9377         comments to explain why certain error messages make mention of
9378         undocumented options.
9379         (rs6000_invalid_builtin): Change error messages to replace mention
9380         of undocumented options with mention of the -mcpu=power9 option
9381         that enables those undocumented options.
9382         * config/rs6000/rs6000.h (MASK_FLOAT128): New macro.
9383         (RS6000_BTM_FLOAT128): Use the new MASK_FLOAT128 macro in the
9384         definition of this macro to correct an existing error.
9385         * config/rs6000/rs6000.opt: Add the Undocumented qualifier to the
9386         mpower9-fusion, mpower9-vector, mpower9-dform, and mmodulo entries.
9387         * doc/extend.texi (PowerPC AltiVec Built-in Functions): Modify
9388         descriptions of built-in functions so that they depend on
9389         -mcpu=power9 instead of on the corresponding undocumented flags.
9390         * doc/invoke.texi (Option Summary):  Remove all mention of newly
9391         undocumented flags.
9392         (IBM RS/6000 and PowerPC Options): Likewise.
9393         * doc/md.texi (Constraints for Particuliar Machines): Remove all
9394         mention of newly undocumented flags.
9396 2016-07-22  Evgeny Stupachenko  <evstupac@gmail.com>
9398         * ipa-cp.c (determine_versionability): Do not create constprop clones,
9399         when target_clones attribute is set.
9401 2016-07-22  Bin Cheng  <bin.cheng@arm.com>
9403         * common.opt (funsafe-loop-optimizations): Mark ignore.
9404         * doc/invoke.texi (funsafe-loop-optimizations): Remove.
9405         * loop-iv.c (get_simple_loop_desc): Remove unsafe-loop-optimizations
9406         related code.
9407         * tree-ssa-loop-niter.c (finite_loop_p): Ditto.
9408         * config/bfin/bfin.c (bfin_can_use_doloop_p): Ditto.
9410 2016-07-22  Bin Cheng  <bin.cheng@arm.com>
9412         * tree-ssa-loop-niter.h (number_of_iterations_exit_assumptions): New
9413         Parameter.
9414         * tree-ssa-loop-niter.c (number_of_iterations_exit_assumptions): New
9415         Parameter.
9416         (number_of_iterations_exit): Warn missed loop optimization for
9417         possible infinite loops.
9419 2016-07-22  Segher Boessenkool  <segher@kernel.crashing.org>
9421         PR target/71216
9422         * config/rs6000/rs6000.c (rs6000_file_start): Fix condition for
9423         when to emit a ".machine" pseudo-op.
9425 2016-07-22  Martin Liska  <mliska@suse.cz>
9427         PR gcov-profile/69028
9428         PR gcov-profile/62047
9429         * coverage.c (coverage_compute_lineno_checksum): Do not
9430         calculate checksum for fns w/o xloc.file.
9431         (coverage_compute_profile_id): Likewise.
9433 2016-07-22  Georg-Johann Lay  <avr@gjlay.de>
9435         * config/avr/avr.c (TARGET_SECONDARY_RELOAD): Remove hook define...
9436         (avr_secondary_reload): ...and implementation.
9437         (avr_adjust_insn_length) [ADJUST_LEN_LPM]: Remove handling.
9438         * config/avr/avr.md (reload_in<mode>): Remove insns.
9439         (adjust_len) [lpm]: Remove insn attribute value.
9440         * config/avr/predicates.md (flash_operand): Remove insn predicate.
9442 2016-07-21  Bernd Edlinger  <bernd.edlinger@hotmail.de>
9444         PR middle-end/71876
9445         * builtin-attrs.def (ATTR_RT_NOTHROW_LEAF_LIST): New return twice
9446         attribute.
9447         * builtins.def (BUILT_IN_SETJMP): Use ATTR_RT_NOTHROW_LEAF_LIST here.
9448         * calls.c (special_function_p): Remove the special handling of the
9449         "__builtin_" prefix.
9451 2016-07-21  Bernd Edlinger  <bernd.edlinger@hotmail.de>
9453         PR middle-end/71876
9454         * calls.c (gimple_maybe_alloca_call_p): New function.  Return true
9455         if STMT may be an alloca call.
9456         (gimple_alloca_call_p, alloca_call_p): Return only true for the
9457         builtin alloca call.
9458         * calls.h (gimple_maybe_alloca_call_p): New function.
9459         * tree-inline.c (inline_forbidden_p_stmt): Use
9460         gimple_maybe_alloca_call_p here.
9462 2016-07-21  David Malcolm  <dmalcolm@redhat.com>
9464         * spellcheck-tree.c (best_macro_match::best_macro_match):
9465         Explictly specify the template arguments when invoking the base
9466         class constructor, to help older C++ compilers.
9468 2016-07-21  Jakub Jelinek  <jakub@redhat.com>
9470         PR sanitizer/71953
9471         * asan.c (asan_dynamic_init_call): Call asan_init_shadow_ptr_types
9472         before builtin_decl_implicit.
9474 2016-07-21  James Greenhalgh  <james.greenhalgh@arm.com>
9476         * optabs.c (emit_condiitonal_move): Short circuit for identical
9477         sources.
9479 2016-07-21  James Greenhalgh  <james.greenhalgh@arm.com>
9481         * ifcvt.c (noce_if_info): New fields: speed_p, original_cost,
9482         max_seq_cost.  Removed fields: then_cost, else_cost, branch_cost.
9483         (noce_conversion_profitable_p): New.
9484         (noce_try_store_flag_constants): Use it.
9485         (noce_try_addcc): Likewise.
9486         (noce_try_store_flag_mask): Likewise.
9487         (noce_try_cmove): Likewise.
9488         (noce_try_cmove_arith): Likewise.
9489         (bb_valid_for_noce_process_p): Add to the cost parameter rather than
9490         overwriting it.
9491         (noce_convert_multiple_sets): Move cost model to here, from...
9492         (bb_ok_for_noce_convert_multiple_sets) ...here.
9493         (noce_process_if_block): Update calls for above changes.
9494         (noce_find_if_block): Record new noce_if_info parameters.
9496 2016-07-21  James Greenhalgh  <james.greenhalgh@arm.com>
9498         * target.def (max_noce_ifcvt_seq_cost): New.
9499         * doc/tm.texi.in (TARGET_MAX_NOCE_IFCVT_SEQ_COST): Document it.
9500         * doc/tm.texi: Regenerate.
9501         * targhooks.h (default_max_noce_ifcvt_seq_cost): New.
9502         * targhooks.c (default_max_noce_ifcvt_seq_cost): New.
9503         * params.def (PARAM_MAX_RTL_IF_CONVERSION_PREDICTABLE_COST): New.
9504         (PARAM_MAX_RTL_IF_CONVERSION_UNPREDICTABLE_COST): Likewise.
9505         * doc/invoke.texi: Document new params.
9507 2016-07-21  Richard Biener  <rguenther@suse.de>
9509         PR tree-optimization/71947
9510         * tree-vrp.c (extract_range_from_assert): Singleton symbolic
9511         ranges have useful limit_vr information.
9513 2016-07-21  Richard Biener  <rguenther@suse.de>
9515         * function-tests.c (build_trivial_generic_function): Set
9516         BLOCK_SUPERCONTEXT of DECL_INITIAL.
9517         * omp-low.c (create_omp_child_function): Likewise.
9518         (grid_expand_target_grid_body): Likewise.
9519         * cgraphunit.c (init_lowered_empty_function): Likewise.
9520         (cgraph_node::expand_thunk): Likewise.
9521         * tree-parloops.c (create_loop_fn): Likewise.
9522         * ipa.c (cgraph_build_static_cdtor_1): Likewise.
9524 2016-07-21  Prathamesh Kulkarni  <prathamesh.kulkarni@linaro.org>
9526         * tree-ssa-strlen.c (strlen_dom_walker::before_dom_children): Fix typo
9527         in comment.
9529 2016-07-21  Georg-Johann Lay  <avr@gjlay.de>
9531         * config/avr/avr.md (any_extract, any_shiftrt): New code iterators.
9532         (*insv.extract, *insv.shiftrt, *insv.not-bit.0, *insv.not-bit.7)
9533         (*insv.xor-extract, *insv.xor1-bit.0): New insns.
9534         (adjust_len) [insv_notbit, insv_notbit_0, insv_notbit_7]: New
9535         values for insn attribute.
9536         * config/avr/avr.c (avr_out_insert_notbit): New function.
9537         (avr_adjust_insn_length): Handle ADJUST_LEN_INSV_NOTBIT,
9538         ADJUST_LEN_INSV_NOTBIT_0/_7.
9539         * config/avr/avr-protos.h (avr_out_insert_notbit): New proto.
9541 2016-07-21  Bin Cheng  <bin.cheng@arm.com>
9543         * tree-chrec.c (convert_affine_scev): New parameter.  Pass new arg.
9544         (chrec_convert_1, chrec_convert): Ditto.
9545         * tree-chrec.h (chrec_convert, convert_affine_scev): New parameter.
9546         * tree-scalar-evolution.c (interpret_rhs_expr): Pass new arg.
9547         * tree-vrp.c (adjust_range_with_scev): Ditto.
9548         * tree-ssa-loop-niter.c (idx_infer_loop_bounds): Ditto.
9549         (scev_var_range_cant_overflow): New function.
9550         (scev_probably_wraps_p): New parameter.  Call above function.
9551         * tree-ssa-loop-niter.h (scev_probably_wraps_p): New parameter.
9553 2016-07-21  Bin Cheng  <bin.cheng@arm.com>
9555         * tree-ssa-loop-niter.c (number_of_iterations_lt_to_ne): Clean up
9556         by removing computation of may_be_zero.
9558 2016-07-21  Jakub Jelinek  <jakub@redhat.com>
9560         * tree-object-size.c (unknown): Use HOST_WIDE_INT_M1U instead of -1.
9562 2016-07-21  Andrew Sutton  <andrew.n.sutton@gmail.com>
9564         Improving concepts performance and diagnostics.
9565         * timevar.def (TV_CONSTRAINT_SAT, TV_CONSTRAINT_SUB): New time vars
9566         for constraint satisfaction and subsumption.
9567         * timevar.h (auto_timevar): New constructor that matches the push/pop
9568         pattern of usage in pt.c.
9570 2016-07-20  Uros Bizjak  <ubizjak@gmail.com>
9572         * hwint.h (HOST_WIDE_INT_0): New define.
9573         (HOST_WIDE_INT_0U): Ditto.
9574         * double-int.c: Use HOST_WIDE_INT_0 instead of (HOST_WIDE_INT) 0.
9575         * dse.c: Use HOST_WIDE_INT_0U instead of (unsigned HOST_WIDE_INT) 0.
9576         * simplify-rtx.c: Ditto.
9577         * tree-object-size.c: Ditto.
9579 2016-07-20  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
9581         * config/s390/s390.c (s390_encode_section_info): Remove mode size
9582         check.
9584 2016-07-20  Uros Bizjak  <ubizjak@gmail.com>
9586         * cse.c: Use HOST_WIDE_INT_M1 instead of ~(HOST_WIDE_INT) 0.
9587         * combine.c: Use HOST_WIDE_INT_M1U instead of
9588         ~(unsigned HOST_WIDE_INT) 0.
9589         * double-int.h: Ditto.
9590         * dse.c: Ditto.
9591         * dwarf2asm.c:Ditto.
9592         * expmed.c: Ditto.
9593         * genmodes.c: Ditto.
9594         * match.pd: Ditto.
9595         * read-rtl.c: Ditto.
9596         * tree-ssa-loop-ivopts.c: Ditto.
9597         * tree-ssa-loop-prefetch.c: Ditto.
9598         * tree-vect-generic.c: Ditto.
9599         * tree-vect-patterns.c: Ditto.
9600         * tree.c: Ditto.
9602 2016-07-20  Georg-Johann Lay  <avr@gjlay.de>
9604         * gcc/config/avr.c (avr_legitimize_address) [AVR_TINY]: Force
9605         constant addresses outside [0,0xc0] into a register.
9606         (avr_out_movhi_r_mr_reg_no_disp_tiny): Pass insn.  And handle
9607         cases where the base address register is unused after.
9608         (avr_out_movhi_r_mr_reg_disp_tiny): Same.
9609         (avr_out_movhi_mr_r_reg_disp_tiny): Same.
9610         (avr_out_store_psi_reg_disp_tiny): Same.
9612 2016-07-20  Georg-Johann Lay  <avr@gjlay.de>
9614         Implement attribute progmem on reduced Tiny cores by adding
9615         flash offset 0x4000 to respective symbols.
9617         PR target/71948
9618         * doc/extend.texi (AVR Variable Attributes) [progmem]: Add
9619         documentation how it works on reduced Tiny cores.
9620         (AVR Named Address Spaces): No support for reduced Tiny.
9621         * config/avr/avr.c (AVR_SYMBOL_FLAG_TINY_PM): New macro.
9622         (avr_address_tiny_pm_p): New static function.
9623         (avr_print_operand_address) [AVR_TINY]: Add AVR_TINY_PM_OFFSET
9624         if the address is in progmem.
9625         (avr_assemble_integer): Same.
9626         (avr_encode_section_info) [AVR_TINY]: Set AVR_SYMBOL_FLAG_TINY_PM
9627         for symbol_ref in progmem.
9628         * config/avr/avr.h (AVR_TINY_PM_OFFSET): New macro.
9629         * config/avr/avr-c.c (avr_cpu_cpp_builtins): Use it instead of
9630         magic 0x4000 when built-in def'ing __AVR_TINY_PM_BASE_ADDRESS__.
9632 2016-07-20  Patrick Palka  <ppalka@gcc.gnu.org>
9634         * configure.ac (thin_archive_support): New variable.  AC_SUBST it.
9635         * configure: Regenerate.
9636         * Makefile.in (THIN_ARCHIVE_SUPPORT): New variable.
9637         (USE_THIN_ARCHIVES): New variable.
9638         (libbackend.a): If USE_THIN_ARCHIVES then pass T to ar to build
9639         this archive as a thin archive.
9641 2016-07-20  David Malcolm  <dmalcolm@redhat.com>
9643         * diagnostic-show-locus.c (diagnostic_show_locus): If this is the
9644         same location as last time, don't skip if we have fix-it hints.
9645         Clarify the skipping logic by converting it from one "if" clause
9646         to repeated "if" clauses.
9647         * spellcheck-tree.c: Include "cpplib.h".
9648         (find_closest_macro_cpp_cb): Move here from c/c-decl.c.
9649         (best_macro_match::best_macro_match): New constructor.
9650         * spellcheck-tree.h (struct edit_distance_traits<cpp_hashnode *>):
9651         Move here from c/c-decl.c.
9652         (class best_macro_match): Move here from c/c-decl.c, converting
9653         from a typedef to a subclass, gaining a ctor.
9655 2016-07-20  Georg-Johann Lay  <avr@gjlay.de>
9657         * config/avr/avr-protos.h (avr_addr_space_supported_p): New prototype.
9658         * config/avr/avr.c (TARGET_ADDR_SPACE_DIAGNOSE_USAGE): New hook
9659         define...
9660         (avr_addr_space_diagnose_usage): ...and implementation.
9661         (avr_addr_space_supported_p): New function.
9662         (avr_nonconst_pointer_addrspace, avr_pgm_check_var_decl): Only
9663         report bad address space usage if that space is supported.
9664         (avr_insert_attributes): Same.  No more complain about unsupported
9665         address spaces.
9666         * config/avr/avr-c.c (tm_p.h): Include it.
9667         (avr_cpu_cpp_builtins): Only define addr-space related built-in
9668         macro if avr_addr_space_supported_p.
9670 2016-07-20  Alexander Monakov  <amonakov@ispras.ru>
9672         * config/nvptx/nvptx.c (nvptx_option_override): Do not set
9673         flag_toplevel_reorder.
9675 2016-07-20  David Malcolm  <dmalcolm@redhat.com>
9677         * gcc-rich-location.c
9678         (gcc_rich_location::add_fixit_misspelled_id): New overload, taking
9679         a const char *.
9680         * gcc-rich-location.h
9681         (gcc_rich_location::add_fixit_misspelled_id): Likewise.
9683 2016-07-20  Georg-Johann Lay  <avr@gjlay.de>
9685         * target.def (addr_space): Add new diagnose_usage to hook vector.
9686         * targhooks.c (default_addr_space_diagnose_usage): Add default
9687         implementation and...
9688         * targhooks.h (default_addr_space_diagnose_usage): ... its prototype.
9689         * c/c-parser.c (c_lex_one_token) [CPP_NAME]: If the token
9690         is some address space, call targetm.addr_space.diagnose_usage.
9691         * doc/tm.texi.in (Named Address Spaces): Add anchor for
9692         TARGET_ADDR_SPACE_DIAGNOSE_USAGE documentation.
9693         * doc/tm.texi: Regenerate.
9695 2016-07-20  Martin Liska  <mliska@suse.cz>
9697         PR middle-end/71898
9698         * graphite-isl-ast-to-gimple.c (later_of_the_two):
9699         Properly handly PHI stmts.
9701 2016-07-20  Bin Cheng  <bin.cheng@arm.com>
9703         PR tree-optimization/71503
9704         PR tree-optimization/71683
9705         * tree-if-conv.c (gen_phi_arg_condition): Record true predicate
9706         and break.
9708 2016-07-20  Martin Liska  <mliska@suse.cz>
9710         * doc/invoke.texi (-fipa-ra): Document when the option is
9711         disabled. Fix a typo.
9713 2016-07-20  Martin Liska  <mliska@suse.cz>
9715         * Makefile.in: Include fibonacci_heap.c
9716         * fibonacci_heap.c: New file.
9717         * fibonacci_heap.h (fibonacci_heap::insert): Use insert_node.
9718         (fibonacci_heap::union_with): Fix deletion of the second heap.
9719         * selftest-run-tests.c (selftest::run_tests): Incorporate
9720         fibonacci heap tests.
9721         * selftest.h: Declare fibonacci_heap_c_tests.
9723 2016-07-20  Martin Liska  <mliska@suse.cz>
9725         * selftest-run-tests.c (selftest::run_tests): New function.
9726         * selftest.h (sreal_c_tests): Declare.
9727         * sreal.c (sreal_verify_basics): New function.
9728         (verify_aritmetics): Likewise.
9729         (sreal_verify_arithmetics): Likewise.
9730         (verify_shifting): Likewise.
9731         (sreal_verify_shifting): Likewise.
9732         (void sreal_c_tests): Likewise.
9734 2016-07-19  Jakub Jelinek  <jakub@redhat.com>
9736         PR rtl-optimization/71916
9737         * cfgrtl.c (contains_no_active_insn_p): Return false also for
9738         bb which have a single succ fake edge.
9740 2016-07-19  Aldy Hernandez  <aldyh@redhat.com>
9742         PR debug/71855
9743         * dwarf2out.c (gen_subprogram_die): Only call
9744         gen_unspecified_parameters_die while dumping early dwarf.
9746 2016-07-19  Jakub Jelinek  <jakub@redhat.com>
9748         PR middle-end/71874
9749         * gimple-fold.c (fold_builtin_memory_op): Use
9750         get_addr_base_and_unit_offset instead of get_ref_base_and_extent.
9752 2016-07-19  Uros Bizjak  <ubizjak@gmail.com>
9754         * builtins.c: Use HOST_WIDE_INT_1 instead of (HOST_WIDE_INT) 1,
9755         HOST_WIDE_INT_1U instead of (unsigned HOST_WIDE_INT) 1,
9756         HOST_WIDE_INT_M1 instead of (HOST_WIDE_INT) -1 and
9757         HOST_WIDE_INT_M1U instead of (unsigned HOST_WIDE_INT) -1.
9758         * combine.c: Ditto.
9759         * cse.c: Ditto.
9760         * dojump.c: Ditto.
9761         * double-int.c: Ditto.
9762         * dse.c: Ditto.
9763         * dwarf2out.c: Ditto.
9764         * expmed.c: Ditto.
9765         * expr.c: Ditto.
9766         * fold-const.c: Ditto.
9767         * function.c: Ditto.
9768         * fwprop.c: Ditto.
9769         * genmodes.c: Ditto.
9770         * hwint.c: Ditto.
9771         * hwint.h: Ditto.
9772         * ifcvt.c: Ditto.
9773         * loop-doloop.c: Ditto.
9774         * loop-invariant.c: Ditto.
9775         * loop-iv.c: Ditto.
9776         * match.pd: Ditto.
9777         * optabs.c: Ditto.
9778         * real.c: Ditto.
9779         * reload.c: Ditto.
9780         * rtlanal.c: Ditto.
9781         * simplify-rtx.c: Ditto.
9782         * stor-layout.c: Ditto.
9783         * toplev.c: Ditto.
9784         * tree-ssa-loop-ivopts.c: Ditto.
9785         * tree-vect-generic.c: Ditto.
9786         * tree-vect-patterns.c: Ditto.
9787         * tree.c: Ditto.
9788         * tree.h: Ditto.
9789         * ubsan.c: Ditto.
9790         * varasm.c: Ditto.
9791         * wide-int-print.cc: Ditto.
9792         * wide-int.cc: Ditto.
9793         * wide-int.h: Ditto.
9795 2016-07-19  David Malcolm  <dmalcolm@redhat.com>
9797         * selftest.c (selftest::assert_streq): Handle NULL values of
9798         val_actual and val_expected.
9800 2016-07-19  Martin Jambor  <mjambor@suse.cz>
9802         PR fortran/71688
9803         * trans-decl.c (gfc_generate_function_code): Use cgraph_get_create_node
9804         rather than cgraph_create_node to get a call graph node.
9806 2016-07-19  Richard Biener  <rguenther@suse.de>
9808         * gimple-fold.c (get_base_constructor): Add VIEW_CONVERT case,
9809         handle all tcc_constant bases and valueize SSA names.
9810         * tree-ssa-sccvn.c (fully_constant_vn_reference_p): Handle
9811         tcc_constant bases.
9813 2016-07-19  David Malcolm  <dmalcolm@redhat.com>
9815         * function-tests.c (selftest::verify_three_block_rtl_cfg): Verify
9816         the flags of the exit block and bb2, not just the entry block.
9818 2016-07-19  Richard Biener  <rguenther@suse.de>
9820         PR tree-optimization/71901
9821         * tree-ssa-sccvn.h (struct vn_reference_op_struct): Add
9822         align member, group stuff with the bitfield.
9823         (vn_ref_op_align_unit): New inline.
9824         * tree-ssa-sccvn.c (copy_reference_ops_from_ref): For ARRAY_REFs
9825         record element alignment and operand 3 unchanged.
9826         (ao_ref_init_from_vn_reference): Adjust.
9827         (valueize_refs_1): Likewise.
9828         * tree-ssa-pre.c (create_component_ref_by_pieces_1): Likewise.
9830 2016-07-19  Richard Biener  <rguenther@suse.de>
9832         PR tree-optimization/71908
9833         * tree-ssa-structalias.c (get_constraint_for_component_ref): Handle
9834         symbolic constants in a more reliable way.
9836 2016-07-19  Ilya Enkovich  <ilya.enkovich@intel.com>
9838         * tree-vect-loop-manip.c (vect_update_ivs_after_vectorizer): Update
9839         comment.
9840         (vect_update_inits_of_drs): Likewise.
9841         (vect_create_cond_for_alias_checks): Likewise.
9842         * tree-vect-loop.c (vect_get_known_peeling_cost): Likewise.
9844 2016-07-19  Richard Biener  <rguenther@suse.de>
9846         PR lto/71907
9847         * lto-streamer-out.c (DFS::DFS_write_tree_body): For blocks
9848         with an abstract origin that is not an inlined function outer
9849         scope add a self-reference as abstract origin.
9850         * tree-streamer-out.c (write_ts_block_tree_pointers): Likewise.
9852 2016-07-18  Michael Meissner  <meissner@linux.vnet.ibm.com>
9854         PR target/71493
9855         * config/rs6000/rs6000.c (rs6000_function_value): Fix
9856         unintentional System V.4 structure return breakage for structures
9857         with a single floating point element.
9859 2016-07-18  Yuri Rumyantsev  <ysrumyan@gmail.com>
9861         PR tree-optimization/71734
9862         * tree-ssa-loop-im.c (ref_indep_loop_p_1): Add REF_LOOP argument which
9863         contains REF, use it to check safelen, assume that safelen value
9864         must be greater 1, fix style.
9865         (ref_indep_loop_p_2): Add REF_LOOP argument.
9866         (ref_indep_loop_p): Pass LOOP as additional argument to
9867         ref_indep_loop_p_2.
9869 2016-07-18  Dominik Vogt  <vogt@linux.vnet.ibm.com>
9871         * cfgexpand.c (expand_stack_vars): Implement synamic stack space
9872         allocation in the prologue.
9873         * explow.c (get_dynamic_stack_base): New function to return an address
9874         expression for the dynamic stack base.
9875         (get_dynamic_stack_size): New function to do the required dynamic stack
9876         space size calculations.
9877         (allocate_dynamic_stack_space): Use new functions.
9878         (align_dynamic_address): Move some code from
9879         allocate_dynamic_stack_space to new function.
9880         * explow.h (get_dynamic_stack_base, get_dynamic_stack_size): Export.
9882 2016-07-18  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
9884         * config/s390/s390.c (s390_encode_section_info): Always set
9885         notaligned marker if mode size is 0 or no MEM_ALIGN info could be
9886         found.
9888 2016-07-18  Richard Biener  <rguenther@suse.de>
9890         PR tree-optimization/71893
9891         * tree-ssa-pre.c (create_component_ref_by_pieces_1): Compensate
9892         for sizetype cast added by array_ref_element_size.
9893         * tree-ssa-sccvn.c (copy_reference_ops_from_ref): Likewise.
9895 2016-07-16  John David Anglin  <danglin@gcc.gnu.org>
9897         * config/pa/pa.c (hppa_profile_hook): Allocate stack space for
9898         register parameters.  Remove code to initialize argument pointer
9899         on TARGET_64BIT.  Optimize call to _mcount when it can be reached
9900         using a pc-relative branch.  Cleanup conditional code.
9901         * config/pa/pa.md (call_mcount): New expander.
9902         (call_mcount_nonpic): New insn.
9903         (call_mcount_pic): New insn and split.
9904         (call_mcount_pic_post_reload): New insn.
9905         (call_mcount_64bit): New insn and split.
9906         (call_mcount_64bit_post_reload): New insn.
9908 2016-07-15  Georg-Johann Lay  <avr@gjlay.de>
9910         * config/avr/predicates.md (const_m255_to_m1_operand): New.
9911         * config/avr/constraints.md (Cn8, Ca1, Co1, Yx2): New constraints.
9912         * config/avr/avr.md (add<mode>3) <ALL1>: Fix set_vzn for +/-2.
9913         (*cmphi.zero-extend.0, *cmphi.zero-extend.1)
9914         (*usum_widenqihi3, *udiff_widenqihi3)
9915         (*addhi3_zero_extend.const): New combiner insns.
9916         (andqi3, iorqi3): Provide "l" (NO_LD_REGS) alternative if
9917         just 1 bit is affected.
9918         * config/avr/avr.c (avr_out_bitop) <QImode>: Don't access xop[3].
9919         (avr_out_compare) [EQ,NE]: Tweak comparing d-regs against -1.
9921 2016-07-15  Cesar Philippidis  <cesar@codesourcery.com>
9923         * omp-low.c (lower_omp_target): Mark data clauses with
9924         GOMP_MAP_FORCE_{PRESENT,TO,FROM,TOFROM} as potentially having
9925         zero-length subarrays.
9927 2016-07-15  Richard Biener  <rguenther@suse.de>
9929         PR tree-optimization/71881
9930         * tree-loop-distribution.c (destroy_loop): Remove blocks in
9931         reverse DOM order to make debug temp generation happy.
9933 2016-07-15  Richard Biener  <rguenther@suse.de>
9935         PR tree-optimization/71887
9936         * tree-ssa-phiopt.c (absorbing_element_p): Add rhs arg and
9937         verify it is not zero for division / modulo handling.
9938         (value_replacement): Adjust.
9940 2016-07-15  Virendra Pathak  <virendra.pathak@broadcom.com>
9941             Julian Brown  <julian@codesourcery.com>
9943         * config/aarch64/aarch64-cores.def: Update vulcan COSTS.
9944         * config/aarch64/aarch64-cost-tables.h
9945         (vulcan_extra_costs): New variable.
9946         * config/aarch64/aarch64.c
9947         (vulcan_addrcost_table): Likewise.
9948         (vulcan_regmove_cost): Likewise.
9949         (vulcan_vector_cost): Likewise.
9950         (vulcan_branch_cost): Likewise.
9951         (vulcan_tunings): Likewise.
9953 2016-07-15  Alexander Monakov  <amonakov@ispras.ru>
9955         * cgraphunit.c (cgraph_order_sort_kind): New entry ORDER_VAR_UNDEF.
9956         (output_in_order): Loop over undefined variables too.  Output them
9957         via assemble_undefined_decl.  Skip variables that correspond to hard
9958         registers or have value-exprs.
9959         * varpool.c (symbol_table::output_variables): Handle undefined
9960         variables together with defined ones.
9962 2016-07-15  Richard Biener  <rguenther@suse.de>
9964         * tree-ssa-pre.c (get_representative_for): Make sure to return
9965         the value number of SSA names.
9966         (phi_translate_1): get_representative_for cannot return NULL.
9967         (do_pre_regular_insertion): Remove redundant call to
9968         fully_constant_expression.
9969         (do_pre_partial_partial_insertion): Likewise.
9971 2016-07-15  Bin Cheng  <bin.cheng@arm.com>
9973         * tree-scalar-evolution.c (simple_iv_with_niters): New funcion.
9974         (derive_simple_iv_with_niters): New function.
9975         (simple_iv): Rewrite using simple_iv_with_niters.
9976         * tree-scalar-evolution.h (simple_iv_with_niters): New decl.
9977         * tree-ssa-loop-niter.c (number_of_iterations_exit_assumptions): New
9978         function.
9979         (number_of_iterations_exit): Rewrite using above function.
9980         * tree-ssa-loop-niter.h (number_of_iterations_exit_assumptions): New
9981         Decl.
9983 2016-07-15  Richard Biener  <rguenther@suse.de>
9985         * config/i386/i386.c (ix86_builtin_vectorization_cost): Adjust
9986         vec_construct cost.
9988 2016-07-14  Jakub Jelinek  <jakub@redhat.com>
9990         PR tree-optimization/71872
9991         * tree-data-ref.c (get_references_in_stmt): Ignore references
9992         with is_gimple_constant get_base_address.
9994 2016-07-14  Thomas Preud'homme  <thomas.preudhomme@arm.com>
9996         * config/arm/arm.h (TARGET_HAVE_LDACQ): Enable for ARMv8-M Mainline.
9997         (TARGET_HAVE_LDACQD): New macro.
9998         * config/arm/sync.md (atomic_loaddi): Use TARGET_HAVE_LDACQD rather
9999         than TARGET_HAVE_LDACQ.
10000         (arm_load_acquire_exclusivedi): Likewise.
10001         (arm_store_release_exclusivedi): Likewise.
10003 2016-07-14  Thomas Preud'homme  <thomas.preudhomme@arm.com>
10005         PR rtl-optimization/71878
10006         * lra-constraints.c (match_reload): Pass information about other
10007         output operands.  Create new unique register value if matching input
10008         operand shares same register value as output operand being considered.
10009         (curr_insn_transform): Record output operands already processed.
10011 2016-07-14  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
10013         PR target/65951
10014         PR tree-optimization/70923
10015         * tree-vect-patterns.c: Include mult-synthesis.h.
10016         (target_supports_mult_synth_alg): New function.
10017         (synth_lshift_by_additions): Likewise.
10018         (apply_binop_and_append_stmt): Likewise.
10019         (vect_synth_mult_by_constant): Likewise.
10020         (target_has_vecop_for_code): Likewise.
10021         (vect_recog_mult_pattern): Use above functions to synthesize vector
10022         multiplication by integer constants.
10024 2016-07-14  Alan Modra  <amodra@gmail.com>
10026         * gcc/config/rs6000/altivec.md (altivec_mov<mode>): Disparage
10027         gpr alternatives.  Correct '*' placement on Y,r alternative.
10028         Add '*' on operand 1 of r,r alternative.
10030 2016-07-14  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
10032         * expmed.c (mult_variant, choose_mult_variant): Move declaration to...
10033         * expmed.h: ... Here.
10035 2016-07-14  Jan Hubicka  <hubicka@ucw.cz>
10037         * gimple.h (stmt_can_terminate_bb_p): New function.
10038         * tree-cfg.c (need_fake_edge_p): Rename to ...
10039         (stmt_can_terminate_bb_p): ... this; return true if stmt can
10040         throw external; handle const and pure calls.
10041         * tree-ssa-loop-niter.c (loop_only_exit_p): Use it.
10043 2016-07-14  Richard Biener  <rguenther@suse.de>
10045         PR tree-optimization/71866
10046         * tree-ssa-pre.c (get_constant_for_value_id): Remove.
10047         (do_hoist_insertion): Avoid endless recursion when we
10048         didn't insert anything because we managed to simplify
10049         things down to a constant or SSA name.
10050         (fully_constant_expression): Re-write in terms of ...
10051         * tree-ssa-sccvn.h (vn_nary_simplify): ... this.  Declare.
10052         * tree-ssa-sccvn.c (vn_nary_simplify): New wrapper around
10053         vn_nary_build_or_lookup_1.
10054         (vn_nary_build_or_lookup_1): Added flag and renamed from ...
10055         (vn_nary_build_or_lookup): ... this which now wraps it.
10057 2016-07-14  Alan Modra  <amodra@gmail.com>
10059         PR target/71733
10060         * config/rs6000/rs6000.c (rs6000_option_override_internal): Deal
10061         with p9_vector override before power9-dform override.
10063 2016-07-13  Andi Kleen  <ak@linux.intel.com>
10065         * value-prof.c (gimple_value_profile_transformations): Don't run
10066         when auto_profile is on.
10068 2016-07-13  Andi Kleen  <ak@linux.intel.com>
10070         * auto-profile.c (update_inlined_ind_target,
10071         afdo_indirect_call): Print information to dump file.
10073 2016-07-13  Andrew Burgess  <andrew.burgess@embecosm.com>
10075         * genrecog.c (special_predicate_operand_p): New function.
10076         (predicate_name): Move function.
10077         (validate_pattern): Don't warn about missing mode for all
10078         define_special_predicate predicates.
10080 2016-07-13  Bin Cheng  <bin.cheng@arm.com>
10082         * tree-vect-data-refs.c (vect_no_alias_p): New function.
10083         (vect_prune_runtime_alias_test_list): Call vect_no_alias_p to
10084         resolve alias checks which are known at compilation time.
10085         Truncate vector LOOP_VINFO_MAY_ALIAS_DDRS(loop_vinfo) if all
10086         alias checks are resolved.  Move dump info for too many runtime
10087         alias checks to here...
10088         * tree-vect-loop.c (vect_analyze_loop_2): ...From here.
10090 2016-07-13  Richard Biener  <rguenther@suse.de>
10092         PR tree-optimization/24574
10093         * tree-ssa-phiopt.c (absorbing_element_p): Pass in argument
10094         position and add shift, rotate, divison and modulo support
10095         for left zero.
10096         (value_replacement): Pass in argument position to absorbing_element_p.
10098 2016-07-13  Ilya Enkovich  <ilya.enkovich@intel.com>
10100         PR ipa/71633
10101         * ipa-inline-transform.c (inline_call): Support
10102         instrumented thunks.
10104 2016-07-13  Thomas Preud'homme  <thomas.preudhomme@arm.com>
10106         * config/arm/arm.h (TARGET_HAVE_CBZ): Define.
10107         (TARGET_IDIV): Set for all Thumb targets provided they have hardware
10108         divide feature.
10109         * config/arm/arm.md (divsi3): New unpredicable alternative for ARMv8-M
10110         Baseline.  Make initial alternative TARGET_32BIT only.
10111         (udivsi3): Likewise.
10112         * config/arm/thumb1.md (thumb1_cbz): New define_insn.
10113         * doc/sourcebuild.texi (arm_thumb1_cbz_ok): Document new effective
10114         target.
10116 2016-07-13  Thomas Preud'homme  <thomas.preudhomme@arm.com>
10118         * config/arm/arm.h (TARGET_HAVE_MOVT): Include ARMv8-M as having MOVT.
10119         * config/arm/arm.c (arm_arch_name): (const_ok_for_op): Check MOVT/MOVW
10120         availability with TARGET_HAVE_MOVT.
10121         (thumb_legitimate_constant_p): Strip the high part of a label_ref.
10122         (thumb1_rtx_costs): Also return 0 if setting a half word constant and
10123         MOVW is available and replace (unsigned HOST_WIDE_INT) INTVAL by
10124         UINTVAL.
10125         (thumb1_size_rtx_costs): Make set of half word constant also cost 1
10126         extra instruction if MOVW is available.  Use a cost variable
10127         incremented by COSTS_N_INSNS (1) when the condition match rather than
10128         returning an arithmetic expression based on COSTS_N_INSNS.  Make
10129         constant with bottom half word zero cost 2 instruction if MOVW is
10130         available.
10131         * config/arm/arm.md (define_attr "arch"): Add v8mb.
10132         (define_attr "arch_enabled"): Set to yes if arch value is v8mb and
10133         target is ARMv8-M Baseline.
10134         (arm_movt): New unpredicable alternative for ARMv8-M Baseline.
10135         (arm_movtas_ze): Likewise.
10136         * config/arm/thumb1.md (thumb1_movdi_insn): Add ARMv8-M Baseline only
10137         alternative for constants satisfying j constraint.
10138         (thumb1_movsi_insn): Likewise.
10139         (movsi splitter for K alternative): Tighten condition to not trigger
10140         if movt is available and j constraint is satisfied.
10141         (Pe immediate splitter): Likewise.
10142         (thumb1_movhi_insn): Add ARMv8-M Baseline only alternative for
10143         constant fitting in an halfword to use MOVW.
10144         * doc/sourcebuild.texi (arm_thumb1_movt_ok): Document new ARM
10145         effective target.
10147 2016-07-13  Richard Biener  <rguenther@suse.de>
10149         PR middle-end/71104
10150         * gimplify.c (gimplify_modify_expr): Gimplify the RHS before
10151         gimplifying the LHS.  Make sure to gimplify a returning twice
10152         call LHS without using SSA names.
10154 2016-07-12  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
10156         * tree-data-ref.c (find_data_references_in_stmt): Remove
10157         unnecessary call to vec::release.
10158         (graphite_find_data_references_in_stmt): Likewise.
10159         * tree-ssa-alias.c (nonoverlapping_component_refs_of_decl_p): Likewise.
10160         * tree-vect-stmts.c (vectorizable_condition): Likewise.
10162 2016-07-12  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
10164         * cfgexpand.c (expand_used_vars): Make the type of a local
10165         variable auto_vec.
10166         * genmatch.c (lower_for): Likewise.
10167         * haifa-sched.c (haifa_sched_init): Likewise.
10168         (add_to_speculative_block): Likewise.
10169         (create_check_block_twin): Likewise.
10170         * predict.c (handle_missing_profiles): Likewise.
10171         * tree-data-ref.c (loop_nest_has_data_refs): Likewise.
10172         * tree-diagnostic.c (maybe_unwind_expanded_macro_loc): Likewise.
10173         * tree-ssa-loop-niter.c (discover_iteration_bound_by_body_walk):
10174         Likewise.
10175         (maybe_lower_iteration_bound): Likewise.
10176         * tree-ssa-sccvn.c (DFS): Likewise.
10177         * tree-stdarg.c (reachable_at_most_once): Likewise.
10178         * tree-vect-stmts.c (vectorizable_conversion): Likewise.
10179         (vectorizable_store): Likewise.
10181 2016-07-12  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
10183         * tree-ssa-sccvn.c (sccvn_dom_walker::~sccvn_dom_walker): remove.
10184         (sccvn_dom_walker): make cond_stack an auto_vec.
10186 2016-07-12  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
10188         * ree.c (struct ext_state): Make type of members auto_vec.
10189         (find_and_remove_re): Adjust.
10191 2016-07-12  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
10193         * cfgexpand.c (struct stack_vars_data): Make type of fields
10194         auto_vec.
10195         (expand_used_vars): Adjust.
10197 2016-07-12  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
10199         * ipa.c (record_cdtor_fn): Adjust.
10200         (build_cdtor_fns): Likewise.
10201         (ipa_cdtor_merge): Make static_ctors and static_dtors local
10202         variables.
10204 2016-07-12  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
10206         * genextract.c (struct accum_extract): Add constructor and make
10207         members auto_vec.
10208         (gen_insn): Adjust.
10210 2016-07-12  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
10212         * tree.c (struct free_lang_data_d): Add constructor and change
10213         types of members to ones that automatically manage resources.
10214         (fld_worklist_push): Adjust.
10215         (find_decls_types): Likewise.
10216         (find_decls_types_in_eh_region): Likewise.
10217         (free_lang_data_in_cgraph): Stop manually creating and
10218         destroying members of free_lang_data_d.
10220 2016-07-13  Uros Bizjak  <ubizjak@gmail.com>
10222         PR rtl-optimization/68961
10223         * config/i386/sse.md (movsd/movhpd to movupd peephole2s): Add new
10224         peephole variant.  Use sse_reg_operand predicates.
10226 2016-07-12  Uros Bizjak  <ubizjak@gmail.com>
10228         * config/i386/predicates.md (x86_64_immediate_operand)
10229         <case CONST_INT>: Remove unneeded truncation to DImode.
10230         <case CONST>: Ditto.
10231         (x86_64_zext_immediate_operand) <case CONST>: Ditto.
10233 2016-07-12  Michael Meissner  <meissner@linux.vnet.ibm.com>
10235         PR target/71805
10236         * config/rs6000/altivec.md (altivec_vperm_<mode>_internal):
10237         The xxperm and xxpermr instructions require that the 2nd input
10238         operand overlap with the output operand, and not the 1st.
10239         (altivec_vperm_v8hiv16qi): Likewise.
10240         (altivec_vperm_<mode>_uns_internal): Likewise.
10241         (altivec_vpermr_<mode>_internal): Likewise.
10242         (vperm_v8hiv4si): Likewise.
10243         (vperm_v16qiv8hi): Likewise.
10245 2016-07-12  Nathan Sidwell  <nathan@acm.org>
10247         * config/arm/arm.c (arm_option_override): Set MASK_SINGLE_PIC_BASE
10248         when -mno-pic-data-is-text-relative is in effect, by default.
10249         * doc/invoke.texi (mpic-data-is-text-relative): Document new
10250         behavior and clarify.
10252 2016-07-12  Martin Liska  <mliska@suse.cz>
10254         * params.def: Add avg-loop niter.
10255         * tree-ssa-loop-ivopts.c (avg_loop_niter): Use the param.
10256         * cfgloopanal.c (expected_loop_iterations_unbounded): Likewise.
10257         * doc/invoke.texi: Document the new parameter.
10259 2016-07-12  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
10261         PR middle-end/71700
10262         * expr.c (store_constructor): Mask sign-extended bits when widening
10263         sub-word constructor element at the start of a word.
10265 2016-07-12  Martin Liska  <mliska@suse.cz>
10267         * Makefile.in: Append rule for params-options.h.
10268         * params-options.h: New file.
10270 2016-07-12  Martin Liska  <mliska@suse.cz>
10272         * ira-build.c (mark_loops_for_removal): Properly iterate
10273         loops.
10275 2016-07-12  Steven Bosscher  <steven@gcc.gnu.org>
10276             Richard Biener  <rguenther@suse.de>
10278         PR tree-optimization/23286
10279         PR tree-optimization/70159
10280         * doc/invoke.texi: Document -fcode-hoisting.
10281         * common.opt (fcode-hoisting): New flag.
10282         * opts.c (default_options_table): Enable -fcode-hoisting at -O2+.
10283         * tree-ssa-pre.c (pre_stats): Add hoist_insert.
10284         (do_regular_insertion): Rename to ...
10285         (do_pre_regular_insertion): ... this and amend general comments
10286         on insertion strathegy.
10287         (do_partial_partial_insertion): Rename to ...
10288         (do_pre_partial_partial_insertion): ... this.
10289         (do_hoist_insertion): New function.
10290         (insert_aux): Take flags on whether to do PRE and/or hoist insertion
10291         and call do_hoist_insertion properly.
10292         (insert): Adjust.
10293         (pass_pre::gate): Enable also if -fcode-hoisting is enabled.
10294         (pass_pre::execute): Register hoist_insert stats.
10296 2016-07-12  Jakub Jelinek  <jakub@redhat.com>
10298         PR middle-end/71716
10299         * gimple-fold.c (optimize_atomic_compare_exchange_p): Return false
10300         for SCALAR_FLOAT_TYPE_P type of expected var, or if TYPE_PRECISION
10301         is different from mode's bitsize.  Small cleanup.
10303 2016-07-12  Richard Biener  <rguenther@suse.de>
10305         PR rtl-optimization/68961
10306         * fwprop.c (propagate_rtx): Allow SUBREGs of VEC_CONCAT and CONCAT
10307         to simplify to a non-constant.
10309 2016-07-11  Jakub Jelinek  <jakub@redhat.com>
10311         PR middle-end/71758
10312         * omp-low.c (expand_omp_target): Gimplify device.
10314         PR tree-optimization/71823
10315         * tree-vect-stmts.c (vectorizable_operation): Use vect_get_vec_defs
10316         to get vec_oprnds2 from op2.
10318 2016-07-11  Uros Bizjak  <ubizjak@gmail.com>
10320         * config/i386/predicates.md (x86_64_immediate_operand) <case CONST>:
10321         Hoist common subexpressions.
10322         (x86_64_zext_immediate_operand) <case CONST>: Ditto.
10324 2016-07-11  Pat Haugen  <pthaugen@us.ibm.com>
10326         PR target/71800
10327         * config/rs6000/rs6000.md (stfiwx): Change constraint to 'wu' to
10328         prevent generation of 'stxsiwx' on pre Power8 hardware.
10330 2016-07-11  David Malcolm  <dmalcolm@redhat.com>
10332         * input.c: Include cpplib.h.
10333         (selftest::temp_source_file): New class.
10334         (selftest::temp_source_file::temp_source_file): New ctor.
10335         (selftest::temp_source_file::~temp_source_file): New dtor.
10336         (selftest::should_have_column_data_p): New function.
10337         (selftest::test_should_have_column_data_p): New function.
10338         (selftest::temp_line_table): New class.
10339         (selftest::temp_line_table::temp_line_table): New ctor.
10340         (selftest::temp_line_table::~temp_line_table): New dtor.
10341         (selftest::test_accessing_ordinary_linemaps): Add case_ param; use
10342         it to create a temp_line_table.
10343         (selftest::assert_loceq): Only verify LOCATION_COLUMN for
10344         locations that are known to have column data.
10345         (selftest::line_table_case): New struct.
10346         (selftest::test_reading_source_line): Move tempfile handling
10347         to class temp_source_file.
10348         (ASSERT_TOKEN_AS_TEXT_EQ): New macro.
10349         (selftest::assert_token_loc_eq): New function.
10350         (ASSERT_TOKEN_LOC_EQ): New macro.
10351         (selftest::test_lexer): New function.
10352         (selftest::boundary_locations): New array.
10353         (selftest::input_c_tests): Call test_should_have_column_data_p.
10354         Loop over a test matrix of interesting values of location and
10355         default_range_bits, calling test_lexer on each case in the matrix.
10356         Move call to test_accessing_ordinary_linemaps into the matrix.
10357         * selftest.h (ASSERT_EQ): Reimplement in terms of...
10358         (ASSERT_EQ_AT): New macro.
10360 2016-07-11  H.J. Lu  <hongjiu.lu@intel.com>
10362         PR target/71801
10363         * config/i386/i386.c (timode_scalar_chain::fix_debug_reg_uses):
10364         Don't convert TImode in debug insn.
10366 2016-07-11  Bernd Edlinger  <bernd.edlinger@hotmail.de>
10368         Convert TYPE_ALIGN_OK to a TYPE_LANG_FLAG.
10369         * tree-core.h (tree_base::nothrow_flag): Adjust comment.
10370         (tree_type_common::lang_flag_7): New.
10371         (tree_type_common::spare): Reduce size.
10372         * tree.h (TYPE_ALIGN_OK): Remove.
10373         (TYPE_LANG_FLAG_7): New.
10374         (get_inner_reference): Adjust header.
10375         * print-tree.c (print_node): Adjust.
10376         * expr.c (get_inner_reference): Remove parameter keep_aligning.
10377         (get_bit_range, expand_assignment, expand_expr_addr_expr_1): Adjust
10378         calls to get_inner_reference.
10379         (expand_expr_real_1): Adjust call to get_inner_reference.  Remove
10380         handling of TYPE_ALIGN_OK.
10381         * builtins.c (get_object_alignment_2): Adjust call to
10382         get_inner_reference.  Remove handling of VIEW_CONVERT_EXPR.
10383         * emit-rtl.c (set_mem_attributes_minus_bitpos): Remove handling of
10384         TYPE_ALIGN_OK.
10385         * asan.c (instrument_derefs): Adjust calls to get_inner_reference.
10386         * cfgexpand.c (expand_debug_expr): Likewise.
10387         * dbxout.c (dbxout_expand_expr): Likewise.
10388         * dwarf2out.c (loc_list_for_address_of_addr_expr_of_indirect_ref,
10389         loc_list_from_tree, fortran_common): Likewise.
10390         * fold-const.c (optimize_bit_field_compare,
10391         decode_field_reference, fold_unary_loc, fold_comparison,
10392         split_address_to_core_and_offset): Likewise.
10393         * gimple-laddress.c (execute): Likewise.
10394         * gimple-ssa-strength-reduction.c (slsr_process_ref): Likewise.
10395         * gimplify.c (gimplify_scan_omp_clauses): Likewise.
10396         * hsa-gen.c (gen_hsa_addr): Likewise.
10397         * simplifx-rtx.c (delegitimize_mem_from_attrs): Likewise.
10398         * tsan.c (instrument_expr): Likewise.
10399         * ubsan.c (instrument_bool_enum_load, instrument_object_size): Likewise.
10400         * tree.c (verify_type_variant): Remove handling of TYPE_ALIGN_OK.
10401         * tree-affine.c (tree_to_aff_combination,
10402         get_inner_reference_aff): Adjust calls to get_inner_reference.
10403         * tree-data-ref.c (split_constant_offset_1,
10404         dr_analyze_innermost): Likewise.
10405         * tree-scalar-evolution.c (interpret_rhs_expr): Likewise.
10406         * tree-sra.c (ipa_sra_check_caller): Likewise.
10407         * tree-ssa-loop-ivopts.c (split_address_cost): Likewise.
10408         * tree-ssa-math-opts.c (find_bswap_or_nop_load,
10409         bswap_replace): Likewise.
10410         * tree-vect-data-refs.c (vect_check_gather,
10411         vect_analyze_data_refs): Likewise.
10412         * config/mips/mips.c (r10k_safe_mem_expr_p): Likewise.
10413         * config/pa/pa.c (pa_emit_move_sequence): Remove handling of
10414         TYPE_ALIGN_OK.
10416 2016-07-11  David Malcolm  <dmalcolm@redhat.com>
10418         * Makefile.in (selftest-valgrind): New phony target.
10419         * function-tests.c (selftest::build_cfg): Delete pass instances
10420         created by the test.
10421         (selftest::convert_to_ssa): Likewise.
10422         (selftest::test_expansion_to_rtl): Likewise.
10423         * tree-cfg.c (selftest::test_linear_chain): Release dominator
10424         vectors.
10425         (selftest::test_diamond): Likewise.
10427 2016-07-11  Richard Biener  <rguenther@suse.de>
10429         PR tree-optimization/71816
10430         * tree-ssa-pre.c (compute_avail): Adjust alignment of ref rather
10431         than replacing all of its operands.
10433 2016-07-11  Alan Modra  <amodra@gmail.com>
10435         * config/rs6000/rs6000.md (UNSPEC_DOLOOP): New unspec.
10436         (ctr<mode>): Add unspec.
10437         (ctr<mode>_internal*): Likewise.
10439 2016-07-08  James Bowman  <james.bowman@ftdichip.com>
10441         * config/ft32/ft32.c (ft32_elf_encode_section_info): New function.
10442         * config/ft32/ft32.h (ASM_OUTPUT_SYMBOL_REF): New function.
10444 2016-07-08  Vladimir Makarov  <vmakarov@redhat.com>
10446         PR rtl-optimization/71621
10447         * lra-constraints.c (process_alt_operands): Check combination of
10448         reg class and mode.
10450 2016-07-08  Jason Merrill  <jason@redhat.com>
10451             Richard Biener  <rguenther@suse.de>
10453         P0145: Refining Expression Order for C++.
10454         * gimplify.c (initial_rhs_predicate_for): New.
10455         (gimplfy_modify_expr): Gimplify RHS before LHS.
10457 2016-07-08  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
10459         PR target/71297
10460         * config/rs6000/rs6000-c.c (altivec_resolve_overloaded_builtin):
10461         Allow standard error handling to take over when a wrong number
10462         of arguments is presented to __builtin_vec_ld () or
10463         __builtin_vec_st ().
10465 2016-07-08  Jiong Wang  <jiong.wang@arm.com>
10467         * config/aarch64/aarch64-simd-builtins.def (smax): Remove float
10468         variants.
10469         (smin): Likewise.
10470         (fmax): New entry.
10471         (fmin): Likewise.
10472         * config/aarch64/arm_neon.h (vmaxnm_f32): Use
10473         __builtin_aarch64_fmaxv2sf.
10474         (vmaxnmq_f32): Likewise.
10475         (vmaxnmq_f64): Likewise.
10476         (vminnm_f32): Likewise.
10477         (vminnmq_f32): Likewise.
10478         (vminnmq_f64): Likewise.
10480 2016-07-08  Michael Meissner  <meissner@linux.vnet.ibm.com>
10482         PR target/71806
10483         * config/rs6000/rs6000-cpus.def (ISA_3_0_MASKS_SERVER): Do not
10484         enable -mfloat128-hardware by default.
10485         (ISA_3_0_MASKS_IEEE): New macro to give all of the VSX options
10486         that IEEE 128-bit hardware support needs.
10487         * config/rs6000/rs6000.c (rs6000_option_override_internal): If
10488         -mcpu=power9 -mfloat128, enable -mfloat128-hardware by default.
10489         Use ISA_3_0_MASKS_IEEE as the set of options that IEEE 128-bit
10490         floating point requires.
10491         * doc/invoke.texi (RS/6000 and PowerPC Options): Document
10492         -mfloat128 and -mfloat128-hardware changes.
10494 2016-07-08  Alan Hayward  <alan.hayward@arm.com>
10496         PR tree-optimization/71667
10497         * tree-vect-loop.c (vectorizable_live_operation): ignore DEBUG stmts
10499 2016-07-08  Martin Liska  <mliska@suse.cz>
10501         PR middle-end/71606
10502         * fold-const.c (fold_convertible_p): As COMPLEX_TYPE
10503         folding produces SAVE_EXPRs, thus return false for the type.
10505 2016-07-07  Martin Liska  <mliska@suse.cz>
10507         * file-find.c (remove_prefix): New function.
10508         * file-find.h (remove_prefix): Declare the function.
10509         * gcc-ar.c (main): Skip a folder of the wrapper if
10510         a wrapped binary would point to the same file.
10512 2016-07-07  Jan Hubicka  <jh@suse.cz>
10514         * tree-scalar-evolution.c (iv_can_overflow_p): export.
10515         * tree-scalar-evolution.h (iv_can_overflow_p): Declare.
10516         * tree-ssa-loop-ivopts.c (alloc_iv): Use it.
10518 2016-07-07  Ilya Enkovich  <ilya.enkovich@intel.com>
10520         PR ipa/71624
10521         * ipa-inline-analysis.c (compute_inline_parameters): Set
10522         local.can_change_signature to false for intrumentation
10523         thunk callees.
10525 2016-07-07  Thomas Preud'homme  <thomas.preudhomme@arm.com>
10527         * config/arm/arm.h (TARGET_USE_MOVT): Check MOVT/MOVW availability
10528         with TARGET_HAVE_MOVT.
10529         (TARGET_HAVE_MOVT): Define.
10530         * config/arm/arm.c (const_ok_for_op): Check MOVT/MOVW
10531         availability with TARGET_HAVE_MOVT.
10532         * config/arm/arm.md (arm_movt): Use TARGET_HAVE_MOVT to check MOVT
10533         availability.
10534         (addsi splitter): Use TARGET_THUMB && TARGET_HAVE_MOVT rather than
10535         TARGET_THUMB2.
10536         (symbol_refs movsi splitter): Remove TARGET_32BIT check.
10537         (arm_movtas_ze): Use TARGET_HAVE_MOVT to check MOVT availability.
10538         * config/arm/constraints.md (define_constraint "j"): Use
10539         TARGET_HAVE_MOVT to check MOVT availability.
10541 2016-07-07  Thomas Preud'homme  <thomas.preudhomme@arm.com>
10543         * config/arm/arm-protos.h: Reindent FL_FOR_* macro definitions.
10545 2016-07-07  Thomas Preud'homme  <thomas.preudhomme@arm.com>
10547         * config/arm/arm-arches.def (armv8-m.base): Define new architecture.
10548         (armv8-m.main): Likewise.
10549         (armv8-m.main+dsp): Likewise.
10550         * config/arm/arm-protos.h (FL_FOR_ARCH8M_BASE): Define.
10551         (FL_FOR_ARCH8M_MAIN): Likewise.
10552         * config/arm/arm-tables.opt: Regenerate.
10553         * config/arm/bpabi.h: Add armv8-m.base, armv8-m.main and
10554         armv8-m.main+dsp to BE8_LINK_SPEC.
10555         * config/arm/arm.h (TARGET_HAVE_LDACQ): Exclude ARMv8-M.
10556         (enum base_architecture): Add BASE_ARCH_8M_BASE and BASE_ARCH_8M_MAIN.
10557         * config/arm/arm.c (arm_arch_name): Increase size to work with ARMv8-M
10558         Baseline and Mainline.
10559         (arm_option_override_internal): Also disable arm_restrict_it when
10560         !arm_arch_notm.  Update comment for -munaligned-access to also cover
10561         ARMv8-M Baseline.
10562         (arm_file_start): Increase buffer size for printing architecture name.
10563         * doc/invoke.texi: Document architectures armv8-m.base, armv8-m.main
10564         and armv8-m.main+dsp.
10565         (mno-unaligned-access): Clarify that this is disabled by default for
10566         ARMv8-M Baseline architectures as well.
10568 2016-07-07  Thomas Preud'homme  <thomas.preudhomme@arm.com>
10570         * config/arm/elf.h: Use __ARM_ARCH_ISA_THUMB and __ARM_ARCH_ISA_ARM to
10571         decide whether to prevent some libgcc routines being included for some
10572         multilibs rather than __ARM_ARCH_6M__ and add comment to indicate the
10573         link between this condition and the one in
10574         libgcc/config/arm/lib1func.S.
10576 2016-07-07  Richard Biener  <rguenther@suse.de>
10578         * tree-ssa-pre.c: Include alias.h.
10579         (compute_avail): If we have multiple VN_REFERENCEs with the
10580         same hashtable entry adjust that to make it a valid replacement
10581         for all of them with respect to alignment and aliasing
10582         when doing insertion.
10583         * tree-ssa-sccvn.h (vn_reference_operands_for_lookup): Declare.
10584         * tree-ssa-sccvn.c (vn_reference_operands_for_lookup): New function.
10586 2016-07-06  Segher Boessenkool  <segher@kernel.crashing.org>
10588         PR target/70098
10589         PR target/71763
10590         * config/rs6000/rs6000.md (*ctr<mode>_internal1, *ctr<mode>_internal2,
10591         *ctr<mode>_internal5, *ctr<mode>_internal6): Add *wi to the output
10592         constraint.
10594 2016-07-06  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
10596         * var-tracking.c (struct adjust_mem_data): Make side_effects a vector.
10597         (adjust_mems): Adjust.
10598         (adjust_insn): Likewise.
10599         (prepare_call_arguments): Likewise.
10601 2016-07-06  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
10603         * gcse.c (struct ls_expr): Make stores field a vector.
10604         (ldst_entry): Adjust.
10605         (free_ldst_entry): Likewise.
10606         (print_ldst_list): Likewise.
10607         (compute_ld_motion_mems): Likewise.
10608         (update_ld_motion_stores): Likewise.
10610 2016-07-06  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
10612         * gcse.c (struct ls_expr): Remove loads field.
10613         (ldst_entry): Adjust.
10614         (free_ldst_entry): Likewise.
10615         (print_ldst_list): Likewise.
10616         (compute_ld_motion_mems): Likewise.
10618 2016-07-06  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
10620         * store-motion.c (struct st_expr): Make antic_stores a vector.
10621         (st_expr_entry): Adjust.
10622         (free_st_expr_entry): Likewise.
10623         (print_store_motion_mems): Likewise.
10624         (find_moveable_store): Likewise.
10625         (compute_store_table): Likewise.
10626         (remove_reachable_equiv_notes): Likewise.
10627         (replace_store_insn): Likewise.
10628         (build_store_vectors): Likewise.
10630 2016-07-06  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
10632         * config/arm/driver-arm.c (arm_cpu_table): Add entries for cortex-a32,
10633         cortex-a35, cortex-a53, cortex-a57, cortex-a72, cortex-a73.
10635 2016-07-06  Yuri Rumyantsev  <ysrumyan@gmail.com>
10637         PR tree-optimization/71518
10638         * tree-vect-data-refs.c (vect_compute_data_ref_alignment): Adjust
10639         misalign also for outer loops with negative step.
10641 2016-07-06  Wilco Dijkstra  <wdijkstr@arm.com>
10643         * config/arm/cortex-a53.md: Use final_presence_set for in-order.
10644         (cortex_a53_shift): Add mov_shift.
10645         (cortex_a53_shift_reg): Add new reservation for register shifts.
10646         (cortex_a53_alu): Remove bfm.
10647         (cortex_a53_alu_shift): Add bfm, remove mov_shift.
10648         (cortex_a53_alu_extr): Add new reservation for EXTR.
10649         (bypasses): Improve bypass modelling.
10651 2016-07-06  Senthil Kumar Selvaraj  <senthil_kumar.selvaraj@atmel.com>
10653         PR target/50739
10654         * config/avr/avr.c (avr_asm_select_section): Strip off
10655         SECTION_DECLARED from flags when calling get_section.
10657 2016-07-06  Richard Sandiford  <richard.sandiford@arm.com>
10659         * tree-vectorizer.h (vect_memory_access_type): Add
10660         VMAT_INVARIANT, VMAT_CONTIGUOUS_DOWN and VMAT_CONTIGUOUS_REVERSED.
10661         * tree-vect-stmts.c (compare_step_with_zero): New function.
10662         (perm_mask_for_reverse): Move further up file.
10663         (get_group_load_store_type): Stick to VMAT_ELEMENTWISE if the
10664         step is negative.
10665         (get_negative_load_store_type): New function.
10666         (get_load_store_type): Call it.  Add an ncopies argument.
10667         (vectorizable_mask_load_store): Update call accordingly and
10668         remove tests for negative steps.
10669         (vectorizable_store, vectorizable_load): Likewise.  Handle new
10670         memory_access_types.
10672 2016-07-06  Richard Sandiford  <richard.sandiford@arm.com>
10674         * tree-vectorizer.h (vect_memory_access_type): New enum.
10675         (_stmt_vec_info): Add a memory_access_type field.
10676         (STMT_VINFO_MEMORY_ACCESS_TYPE): New macro.
10677         (vect_model_store_cost): Take an access type instead of a boolean.
10678         (vect_model_load_cost): Likewise.
10679         * tree-vect-slp.c (vect_analyze_slp_cost_1): Update calls to
10680         vect_model_store_cost and vect_model_load_cost.
10681         * tree-vect-stmts.c (vec_load_store_type): New enum.
10682         (vect_model_store_cost): Take an access type instead of a
10683         store_lanes_p boolean.  Simplify tests.
10684         (vect_model_load_cost): Likewise, but for load_lanes_p.
10685         (get_group_load_store_type, get_load_store_type): New functions.
10686         (vectorizable_store): Use get_load_store_type.  Record the access
10687         type in STMT_VINFO_MEMORY_ACCESS_TYPE.
10688         (vectorizable_load): Likewise.
10689         (vectorizable_mask_load_store): Likewise.  Replace is_store
10690         variable with vls_type.
10692 2016-07-06  Richard Sandiford  <richard.sandiford@arm.com>
10694         * tree-vectorizer.h (vect_grouped_load_supported): Add a
10695         single_element_p parameter.
10696         * tree-vect-data-refs.c (vect_grouped_load_supported): Likewise.
10697         Check the PR65518 case here rather than in vectorizable_load.
10698         * tree-vect-loop.c (vect_analyze_loop_2): Update call accordignly.
10699         * tree-vect-stmts.c (vectorizable_load): Likewise.
10701 2016-07-06  Richard Sandiford  <richard.sandiford@arm.com>
10703         * tree-vectorizer.h (gather_scatter_info): New structure.
10704         (vect_check_gather_scatter): Return a bool rather than a decl.
10705         Replace return-by-pointer arguments with a single
10706         gather_scatter_info *.
10707         * tree-vect-data-refs.c (vect_check_gather_scatter): Likewise.
10708         (vect_analyze_data_refs): Update call accordingly.
10709         * tree-vect-stmts.c (vect_mark_stmts_to_be_vectorized): Likewise.
10710         (vectorizable_mask_load_store): Likewise.  Also record the
10711         offset dt and vectype in the gather_scatter_info.
10712         (vectorizable_store): Likewise.
10713         (vectorizable_load): Likewise.
10715 2016-07-06  Richard Sandiford  <richard.sandiford@arm.com>
10717         * tree-vect-stmts.c (vect_model_store_cost): For non-SLP
10718         strided groups, use the cost of N scalar accesses instead
10719         of ncopies vector accesses.
10720         (vect_model_load_cost): Likewise.
10722 2016-07-06  Richard Sandiford  <richard.sandiford@arm.com>
10724         * tree-vect-stmts.c (vect_cost_group_size): Delete.
10725         (vect_model_store_cost): Avoid calling it.  Use first_stmt_p
10726         variable to indicate when once-per-group costs are being used.
10727         (vect_model_load_cost): Likewise.  Fix comment and misindented code.
10729 2016-07-06  Richard Sandiford  <richard.sandiford@arm.com>
10731         * tree-vect-stmts.c (vectorizable_load): Remove unnecessary
10732         peeling-for-gaps condition.
10734 2016-07-06  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
10736         * config/s390/s390.c (s390_expand_vec_init): Force initializer
10737         element to register if it doesn't match general_operand.
10739 2016-07-05  Michael Meissner  <meissner@linux.vnet.ibm.com>
10740             Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
10742         * config/rs6000/rs6000-protos.h (rs6000_split_signbit): New
10743         prototype.
10744         * config/rs6000/rs6000.c (rs6000_split_signbit): New function.
10745         * config/rs6000/rs6000.md (UNSPEC_SIGNBIT): New constant.
10746         (SIGNBIT): New mode iterator.
10747         (Fsignbit): New mode attribute.
10748         (signbit<mode>2): Change operand1 to match FLOAT128 instead of
10749         IBM128; dispatch to gen_signbit{kf,tf}2_dm for __float128
10750         when direct moves are available.
10751         (signbit<mode>2_dm): New define_insn_and_split).
10752         (signbit<mode>2_dm2): New define_insn.
10754 2016-07-05  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
10756         PR rtl-optimization/71594
10757         * ifcvt.c (noce_convert_multiple_sets): Wrap new_val or old_val
10758         into subregs of appropriate mode before trying to emit a conditional
10759         move.
10761 2016-07-05  Jan Hubicka  <jh@suse.cz>
10763         * tree-scalar-evolution.c (iv_can_overflow_p): New function.
10764         (simple_iv): Use it.
10766 2016-07-05  Jan Hubicka  <jh@suse.cz>
10768         * tree-ssa-loop-niter.c (nowrap_type_p): Use ANY_INTEGRAL_TYPE_P.
10770 2016-07-05  Jiong Wang  <jiong.wang@arm.com>
10772         * lra-constraints.c (process_alt_operands): Don't add spilling cost for
10773         "offmemok".
10775 2016-07-05  Jan Hubicka  <jh@suse.cz>
10777         * tree-scalar-evoluiton.c (simple_iv): Use nowrap_type to check if
10778         IV can overflow.
10780 2016-07-05  Richard Biener  <rguenther@suse.de>
10782         * gimple-ssa-split-paths.c (find_block_to_duplicate_for_splitting_pa):
10783         Handle empty else block.
10784         (is_feasible_trace): Likewise.
10785         (split_paths): Likewise.
10787 2016-07-05  Richard Biener  <rguenther@suse.de>
10789         * tree-loop-distribution.c (distribute_loop): Fix issue with
10790         the cost model loop.
10792 2016-07-05  Christophe Lyon  <christophe.lyon@linaro.org>
10794         * config/arm/neon-testgen.ml: Delete.
10795         * config/arm/neon.ml: Delete.
10797 2016-07-04  Jakub Jelinek  <jakub@redhat.com>
10799         PR c++/71739
10800         * tree.c (attribute_value_equal): Use get_attribute_name instead of
10801         directly using TREE_PURPOSE.
10803 2016-07-04  Jiong Wang  <jiong.wang@arm.com>
10805         * config/aarch64/aarch64.h: Rename "ARMv8.1" to "ARMv8.1-A".
10806         * config/aarch64/aarch64_neon.h: Likewise.
10807         * config/aarch64/arm_neon.h: Likewise.
10808         * config/aarch64/atomics.md: Likewise.
10809         * config/aarch64/aarch64-simd-builtins.def: Likewise.
10810         * doc/invoke.texi: Likewise.
10812 2016-07-04  Dominik Vogt  <vogt@linux.vnet.ibm.com>
10814         * config/s390/s390.md: Add "z13" cpu_facility.
10815         ("*mov<mode>cc"): Add support for z13 instructions lochi and locghi.
10816         * config/s390/predicates.md ("loc_operand"): New predicate for "load on
10817         condition" type instructions.
10819 2016-07-04  Dominik Vogt  <vogt@linux.vnet.ibm.com>
10820             Jeff Law  <law@redhat.com>
10822         * explow.c (allocate_dynamic_stack_space): Simplify knowing that
10823         MUST_ALIGN was always true and extra_align ist always BITS_PER_UNIT.
10825 2016-07-04  Yuri Rumyantsev  <ysrumyan@gmail.com>
10827         * config/i386/i386.c (ix86_expand_vec_perm): Add handle one-operand
10828         permutation for TARGET_AVX512F.
10829         (ix86_expand_vec_one_operand_perm_avx512): New function.
10830         (expand_vec_perm_1): Invoke introduced function.
10831         * tree-vect-loop.c (vect_transform_loop): Clear-up safelen value since
10832         it may be not valid after vectorization.
10834 2016-07-04  Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>
10836         PR target/63874
10837         * config/aarch64/aarch64.c (aarch64_classify_symbol): Fix
10838         typo in comment.  Only force to memory if it is a weak
10839         external reference.
10841 2016-07-04  Matthew Wahab  <matthew.wahab@arm.com>
10842             Jiong Wang  <jiong.wang@arm.com>
10844         * config/aarch64/aarch64-arches.def: Add "armv8.2-a".
10845         * config/aarch64/aarch64.h (AARCH64_FL_V8_2): New.
10846         (AARCH64_FL_F16): New.
10847         (AARCH64_FL_FOR_ARCH8_2): New.
10848         (AARCH64_ISA_8_2): New.
10849         (AARCH64_ISA_F16): New.
10850         (TARGET_FP_F16INST): New.
10851         (TARGET_SIMD_F16INST): New.
10852         * config/aarch64/aarch64-option-extensions.def ("fp16"): New entry.
10853         ("fp"): Disabling "fp" also disables "fp16".
10854         * config/aarch64/aarch64-c.c (arch64_update_cpp_builtins):
10855         Conditionally define __ARM_FEATURE_FP16_SCALAR_ARITHMETIC
10856         and __ARM_FEATURE_FP16_VECTOR_ARITHMETIC.
10857         * doc/invoke.texi (AArch64 Options): Document "armv8.2-a" and "fp16".
10859 2016-07-04  Jan Beulich  <jbeulich@suse.com>
10861         * gcc.c (default_compilers["@c-header"]): Conditionalize "-o".
10863 2016-07-01  Michael Meissner  <meissner@linux.vnet.ibm.com>
10865         PR target/71720
10866         * config/rs6000/vsx.md (vsx_splat_v4sf_internal): When splitting
10867         the insns, use an insn form that does not adjust the offset on
10868         little endian systems.
10870 2016-07-01  Jan Beulich  <jbeulich@suse.com>
10872         * varasm.c (get_variable_section): Validate initializer in
10873         named .bss-like sections.
10875 2016-07-01  Kelvin Nilsen  <kelvin@gcc.gnu.org>
10877         * config/rs6000/altivec.md (*altivec_vpermr_<mode>_internal):
10878         Exchange the order of the second and third operands in the vpermr
10879         instruction tmeplate.
10881 2016-07-01  Peter Bergner  <bergner@vnet.ibm.com>
10883         PR target/71698
10884         * config/rs6000/rs6000.c (rs6000_secondary_reload_simple_move):
10885         Disallow TDmode values.
10887 2016-07-01  Alan Modra  <amodra@gmail.com>
10889         PR rtl-optimization/71709
10890         * ira-lives.c (find_call_crossed_cheap_reg): Exit loop on arg reg
10891         being set, not referenced.
10893 2016-07-01  Yuri Rumyantsev  <ysrumyan@gmail.com>
10895         PR tree-optimization/70729
10896         * tree-vectorizer.c (adjust_simduid_builtins): Nullify safelen field
10897         of loop since it can be not valid after transformation.
10899 2016-07-01  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
10901         * config/arm/arm.c (thumb_reload_in_hi): Delete.
10902         * config/arm/arm-protos.h (thumb_reload_in_hi): Delete prototype.
10904 2016-07-01  Eric Botcazou  <ebotcazou@adacore.com>
10906         * config/arm/arm.c (arm_function_ok_for_sibcall): Add another check
10907         for NULL decl.
10909 2016-06-30  Michael Meissner  <meissner@linux.vnet.ibm.com>
10911         PR target/71677
10912         * config/rs6000/constraints.md (wY constraint): New constraint to
10913         match the requirements for the LXSD and STXSD instructions.
10914         * config/rs6000/predicates.md (offsettable_mem_14bit_operand): New
10915         predicate to match the requirements for the LXSD and STXSD
10916         instructions.
10917         * config/rs6000/rs6000.md (mov<mode>_hardfloat32, FMOVE64 case):
10918         Use constaint wY for LXSD/STXSD instructions instead of 'o' or 'Y'
10919         to make sure that the bottom 2 bits of offset are 0, the address
10920         form is offsettable, and no updating is done in the address mode.
10921         (mov<mode>_hardfloat64, FMOVE64 case): Likewise.
10922         (movdi_internal32): Likewise
10923         (movdi_internal64): Likewise.
10925 2016-06-30  Jakub Jelinek  <jakub@redhat.com>
10927         PR tree-optimization/71707
10928         * tree-ssa-strlen.c (get_stridx_plus_constant): Handle already present
10929         strinfo even for ADDR_EXPR ptr.
10931 2016-06-30  Kelvin Nilsen  <kelvin@gcc.gnu.org>
10933         * config/rs6000/altivec.md (darn_32): Change the condition to
10934         TARGET_P9_MISC instead of TARGET_MODULO.
10935         (darn_raw): Replace TARGET_MODULO with TARGET_P9_MISC in the
10936         condition expression.
10937         (darn): Replace TARGET_MODULO with TARGET_P9_MISC in the
10938         condition expression.
10939         * config/rs6000/dfp.md (UNSPEC_DTSTSFI): New unspec constant.
10940         (DFP_TEST): New code iterator.
10941         (dfptstsfi_<code>_mode>): New define_expand.
10942         (*dfp_sgnfcnc_<mode>): New define_insn.
10943         * config/rs6000/rs6000-builtin.def (BU_P9_MISC_0): Move this macro
10944         definition next to BU_P9_MISC_1 definition and change the MASK
10945         value to RS6000_BTM_P9_MISC.
10946         (BU_P9_MISC_1): Change the MASK value to RS6000_BTM_P9_MISC.
10947         (BU_P9_64BIT_MISC_0): Likewise.
10948         (BU_P9_DFP_MISC_0): New macro definition.
10949         (BU_P9_DFP_MISC_1): New macro definition.
10950         (BU_P9_DFP_MISC_2): New macro definition.
10951         (BU_P9_DFP_OVERLOAD_1): New macro definition.
10952         (BU_P9_DFP_OVERLOAD_2): New macro definition.
10953         (BU_P9_DFP_OVERLOAD_3): New macro definition.
10954         (TSTSFI_LT_DD): New BU_P9_DFP_MISC_2.
10955         (TSTSFI_LT_TD): Likewise.
10956         (TSTSFI_EQ_DD): Likewise.
10957         (TSTSFI_EQ_TD): Likewise.
10958         (TSTSFI_GT_DD): Likewise.
10959         (TSTSFI_GT_TD): Likewise.
10960         (TSTSFI_OV_DD): Likewise.
10961         (TSTSFI_OV_TD): Likewise.
10962         (TSTSFI_LT): New BU_P9_DFP_OVERLOAD_2.
10963         (TSTSFI_LT_DD): Likewise.
10964         (TSTSFI_LT_TD): Likewise.
10965         (TSTSFI_EQ): Likewise.
10966         (TSTSFI_EQ_DD): Likewise.
10967         (TSTSFI_EQ_TD): Likewise.
10968         (TSTSFI_GT): Likewise.
10969         (TSTSFI_GT_DD): Likewise.
10970         (TSTSFI_GT_TD): Likewise.
10971         (TSTSFI_OV): Likewise.
10972         (TSTSFI_OV_DD): Likewise.
10973         (TSTSFI_OV_TD): Likewise.
10974         * config/rs6000/rs6000-c.c (altivec_overloaded_builtins): Add
10975         overloaded test significance functions.
10976         * config/rs6000/rs6000-cpus.def (ISA_3_0_MASKS_SERVER): Add
10977         OPTION_MASK_P9_MISC into the representation of this mask.
10978         (POWERPC_MASKS): Add OPTION_MASK_P9_MISC into the representation
10979         of this mask.
10980         * config/rs6000/rs6000.c (rs6000_builtin_mask_calculate): Set the
10981         RS6000_BTM_P9_MISC flag in the return value if TARGET_P9_MISC is
10982         non-zero.
10983         (rs6000_expand_binop_builtin): Enforce that argument 0 of the exp
10984         argument is a 6-bit unsigned literal value if the icode argument
10985         represents a DFP test significance built-in call.
10986         (rs6000_invalid_builtin): Add support for the RS6000_BTM_P9_MISC
10987         flag used independently and in combination with the
10988         RS6000_BTM_64BIT flag.
10989         (rs6000_opt_masks): Add entry for power9-misc command-line option.
10990         (rs6000_builtin_mask_names): Add entry for power9-misc
10991         command-line option.
10992         * config/rs6000/rs6000.h: Redefine TARGET_P9_MISC as 0 if
10993         HAVE_AS_POWER9 is not a defined macro.  Define MASK_P9_MISC and
10994         RS6000_BTM_P9_MISC macros.
10995         * config/rs6000/rs6000.opt: Add support for the -mpower9-misc
10996         option and change the description of the -mpower9-vector option to
10997         enable only vector instructions, removing its erroneously claimed
10998         support for scalar instructions.
10999         * doc/extend.texi (PowerPC AltiVec Built-in Functions): Document
11000         the ISA 3.0 digital floating point test significance built-in
11001         functions.
11003 2016-06-30  Wilco Dijkstra  <wdijkstr@arm.com>
11005         * config/aarch64/aarch64.c (cortexa35_tunings):
11006         Enable AES fusion.  Use cortexa57_branch_cost.
11007         (cortexa53_tunings): Use cortexa57_branch_cost.
11008         (cortexa72_tunings): Use cortexa57_branch_cost.
11009         Use AUTOPREFETCHER_WEAK.
11010         (cortexa73_tunings): Use cortexa57_branch_cost.
11012 2016-06-30  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
11013             James Greenhalgh  <james.greenhalgh@arm.com>
11015         * config/aarch64/arm_neon.h (vcopyq_lane_f32, vcopyq_lane_f64,
11016         vcopyq_lane_p8, vcopyq_lane_p16, vcopyq_lane_s8, vcopyq_lane_s16,
11017         vcopyq_lane_s32, vcopyq_lane_s64, vcopyq_lane_u8, vcopyq_lane_u16,
11018         vcopyq_lane_u32, vcopyq_lane_u64): Reimplement in C.
11019         (vcopy_lane_f32, vcopy_lane_f64, vcopy_lane_p8, vcopy_lane_p16,
11020         vcopy_lane_s8, vcopy_lane_s16, vcopy_lane_s32, vcopy_lane_s64,
11021         vcopy_lane_u8, vcopy_lane_u16, vcopy_lane_u32, vcopy_lane_u64,
11022         vcopy_laneq_f32, vcopy_laneq_f64, vcopy_laneq_p8, vcopy_laneq_p16,
11023         vcopy_laneq_s8, vcopy_laneq_s16, vcopy_laneq_s32, vcopy_laneq_s64,
11024         vcopy_laneq_u8, vcopy_laneq_u16, vcopy_laneq_u32, vcopy_laneq_u64,
11025         vcopyq_laneq_f32, vcopyq_laneq_f64, vcopyq_laneq_p8, vcopyq_laneq_p16,
11026         vcopyq_laneq_s8, vcopyq_laneq_s16, vcopyq_laneq_s32, vcopyq_laneq_s64,
11027         vcopyq_laneq_u8, vcopyq_laneq_u16, vcopyq_laneq_u32, vcopyq_laneq_u64):
11028         New intrinsics.
11030 2016-06-30  James Greenhalgh  <james.greenhalgh@arm.com>
11031             Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
11033         * config/aarch64/aarch64-simd.md (*aarch64_simd_vec_copy_lane<mode>):
11034         New define_insn.
11035         (*aarch64_simd_vec_copy_lane_<vswap_width_name><mode>): Likewise.
11037 2016-06-30  David Malcolm  <dmalcolm@redhat.com>
11039         PR driver/71651
11040         * gcc.c (driver::build_option_suggestions): Pass "option" to
11041         add_misspelling_candidates.
11042         * opts-common.c (add_misspelling_candidates): Add "option" param;
11043         use it to avoid adding negated forms for options marked with
11044         RejectNegative.
11045         * opts.h (add_misspelling_candidates): Add "option" param.
11047 2016-06-30  Jakub Jelinek  <jakub@redhat.com>
11049         PR middle-end/71693
11050         * fold-const.c (fold_binary_loc) <case RROTATE_EXPR>: Cast
11051         TREE_OPERAND (arg0, 0) and TREE_OPERAND (arg0, 1) to type
11052         first when permuting bitwise operation with rotate.  Cast
11053         TREE_OPERAND (arg0, 0) to type when cancelling two rotations.
11055 2016-06-29  David Malcolm  <dmalcolm@redhat.com>
11057         * opts.c (handle_param): Use find_param_fuzzy to offer suggestions
11058         for misspelled param names.
11059         * params.c: Include spellcheck.h.
11060         (find_param_fuzzy): New function.
11061         * params.h (find_param_fuzzy): New prototype.
11062         * spellcheck.c (struct edit_distance_traits<const char *>): Move to...
11063         * spellcheck.h (struct edit_distance_traits<const char *>):
11064         ...here.
11066 2016-06-29  Michael Meissner  <meissner@linux.vnet.ibm.com>
11068         * config/rs6000/predicates.md (const_0_to_7_operand): New
11069         predicate, recognize 0..7.
11070         * config/rs6000/rs6000.c (rs6000_expand_vector_extract): Add
11071         support for doing extracts from V16QImode, V8HImode, V4SImode
11072         under ISA 3.0.
11073         * config/rs6000/vsx.md (VSX_EXTRACT_I): Mode iterator for ISA 3.0
11074         vector extract support.
11075         (VSX_EXTRACT_PREDICATE): Mode attribute to validate element number
11076         for ISA 3.0 vector extract.
11077         (VSX_EX): Constraints to use for ISA 3.0 vector extract.
11078         (vsx_extract_<mode>, VSX_EXTRACT_I): Add support for doing
11079         extracts of a constant element number from small integer vectors
11080         on 64-bit ISA 3.0 systems.
11081         (vsx_extract_<mode>_di): Likewise.
11082         * config/rs6000/rs6000.h (TARGET_VEXTRACTUB): New target macro to
11083         say when we can do ISA 3.0 vector extracts.
11084         * config/rs6000/rs6000.md (stfiwx): Allow DImode in Altivec
11085         registers, using the stxsiwx instruction.
11087 2016-06-29  Jim Wilson  <jim.wilson@linaro.org>
11089         * config/aarch64/aarch64-cores.def (qdf24xx): Use qdf24xx tuning.
11090         * config/aarch64/aarch64.c (qdf24xx_addrcost_table,
11091         qdf24xx_regmove_cost, qdf24xx_tunings): New.
11092         * config/arm/aarch64-cost-tables.h (qdf24xx_extra_costs): New.
11093         * config/arm/arm-cores.def (qdf24xx): Use qdf24xx tuning.
11094         * config/arm/arm.c (arm_qdf24xx_tune): New.
11096 2016-06-29  Wilco Dijkstra  <wdijkstr@arm.com>
11098         * config/aarch64/aarch64.c (cortexa53_tunings):
11099         Increase loop alignment to 8.  Set function alignment to 16.
11100         (cortexa35_tunings): Likewise.
11101         (cortexa57_tunings): Increase loop alignment to 8.
11102         (cortexa72_tunings): Likewise.
11103         (cortexa73_tunings): Likewise.
11105 2016-06-29  Matthew Wahab  <matthew.wahab@arm.com>
11107         * doc/sourcebuild.texi (Effective-Target keywords): Add entries
11108         for arm_fp16_ok and arm_fp16_hw.
11109         (Add Options): Add entries for arm_fp16, arm_fp16_ieee and
11110         arm_fp16_alternative.
11112 2016-06-29  Ilya Enkovich  <ilya.enkovich@intel.com>
11114         PR tree-optimization/71655
11115         * tree-vect-stmts.c (vectorizable_comparison): Swap definition
11116         types when swapping operands.
11118 2016-06-29  Martin Liska  <mliska@suse.cz>
11120         PR middle-end/71585
11121         * common.opt (flag_stack_protect): Mark the flag as optimization flag.
11122         * ipa-inline-transform.c (inline_call): Remove unnecessary call
11123         of build_optimization_node.
11125 2016-06-29  Yuri Rumyantsev  <ysrumyan@gmail.com>
11127         PR tree-optimization/70729
11128         * tree-ssa-loop-im.c (ref_indep_loop_p_1): Consider memory reference as
11129         independent in loops having positive safelen value.
11130         * tree-vect-loop.c (vect_transform_loop): Clear-up safelen value since
11131         it may be not valid after vectorization.
11133 2016-06-29  Jakub Jelinek  <jakub@redhat.com>
11135         PR tree-optimization/71625
11136         * tree-ssa-strlen.c (get_addr_stridx): Add PTR argument.  Assume list
11137         is sorted by ascending list->offset.  If PTR is non-NULL and there is
11138         previous strinfo, call get_stridx_plus_constant.
11139         (get_stridx): Pass exp as second argument to get_addr_stridx.
11140         (addr_stridxptr): Add missing list = list->next, so that there can be
11141         more than one entries in the list.  Bump limit from 16 to 32.  Ensure
11142         the list is sorted by ascending list->offset.
11143         (get_stridx_plus_constant): Adjust so that it can be also called with
11144         ADDR_EXPR instead of SSA_NAME as PTR.
11145         (handle_char_store): Pass NULL_TREE as second argument to
11146         get_addr_stridx.
11148 2016-06-29  Richard Biener  <rguenther@suse.de>
11150         PR rtl-optimization/68961
11151         * simplify-rtx.c (simplify_subreg): Handle VEC_CONCAT like CONCAT.
11153 2016-06-29  Richard Biener  <rguenther@suse.de>
11155         PR middle-end/71002
11156         * alias.c (component_uses_parent_alias_set_from): Handle
11157         type punning through union accesses by using the union alias set.
11158         * gimple.c (gimple_get_alias_set): Remove union type punning case.
11160 2016-07-29  Richard Biener  <rguenther@suse.de>
11162         * match.pd ((T)(T2)x -> (T)x): Remove restriction on final
11163         precision not matching mode precision.
11165 2016-06-28  John David Anglin  <danglin@gcc.gnu.org>
11167         * config/pa/pa.md (call_symref_64bit_post_reload): Don't call
11168         pa_output_arg_descriptor.
11169         (call_val_symref_64bit_post_reload): Likewise.
11170         (call_val_powf_64bit_post_reload): Likewise.
11171         (sibcall_internal_symref_64bit): Likewise.
11172         (sibcall_value_internal_symref_64bit): Likewise.
11174 2016-06-28  Jakub Jelinek  <jakub@redhat.com>
11176         PR middle-end/71626
11177         * config/i386/i386.c (ix86_expand_vector_move): For SUBREG of
11178         a constant, force its SUBREG_REG into memory or register instead
11179         of whole op1.
11181 2016-06-28  Pitchumani Sivanupandi  <pitchumani.s@atmel.com>
11183         PR target/58655
11184         * config/avr/avr.opt (-mfract-convert-truncate): Update description.
11185         * doc/invoke.texi (AVR Options): Document it.
11187 2016-06-28  Walter Lee  <walt@tilera.com>
11189         * config/tilegx/linux.h: Do not include arch/icache.h
11190         (CLEAR_INSN_CACHE): Provide inlined definition directly.
11191         * config/tilepro/linux.h: Do not include arch/icache.h
11192         (CLEAR_INSN_CACHE): Provide inlined definition directly.
11194 2016-06-28  Wilco Dijkstra  <wdijkstr@arm.com>
11196         * tree-ssa-math-opts.c (find_bswap_or_nop_1): Adjust bitnumbering
11197         for big-endian BIT_FIELD_REF.
11199 2016-06-28  Pat Haugen  <pthaugen@us.ibm.com>
11201         * config/rs6000/rs6000.md ('type' attribute): Add htmsimple/dfp types.
11202         ('size' attribute): Add '128'.
11203         Include power9.md.
11204         (*mov<mode>_hardfloat32, *mov<mode>_hardfloat64, *movdi_internal32,
11205         *movdi_internal64, *movdf_update1): Set size attribute to '64'.
11206         (add<mode>3, sub<mode>3, mul<mode>3, div<mode>3, sqrt<mode>2,
11207         copysign<mode>3, neg<mode>2_hw, abs<mode>2_hw, *nabs<mode>2_hw,
11208         *fma<mode>4_hw, *fms<mode>4_hw, *nfma<mode>4_hw, *nfms<mode>4_hw,
11209         extend<SFDF:mode><IEEE128:mode>2_hw, trunc<mode>df2_hw,
11210         *xscvqp<su>wz_<mode>, *xscvqp<su>dz_<mode>, *xscv<su>dqp_<mode>,
11211         *trunc<mode>df2_odd): Set size attribute to '128'.
11212         (*cmp<mode>_hw): Change type to veccmp and set size attribute to '128'.
11213         * config/rs6000/power6.md (power6-fp): Include dfp type.
11214         * config/rs6000/power7.md (power7-fp): Likewise.
11215         * config/rs6000/power8.md (power8-fp): Likewise.
11216         * config/rs6000/power9.md: New file.
11217         * config/rs6000/t-rs6000 (MD_INCLUDES): Add power9.md.
11218         * config/rs6000/htm.md (*tabort, *tabort<wd>c, *tabort<wd>ci,
11219         *trechkpt, *treclaim, *tsr, *ttest): Change type attribute to
11220         htmsimple.
11221         * config/rs6000/dfp.md (extendsddd2, truncddsd2, extendddtd2,
11222         trunctddd2, adddd3, addtd3, subdd3, subtd3, muldd3, multd3, divdd3,
11223         divtd3, *cmpdd_internal1, *cmptd_internal1, floatdidd2, floatditd2,
11224         ftruncdd2, fixdddi2, ftrunctd2, fixtddi2, dfp_ddedpd_<mode>,
11225         dfp_denbcd_<mode>, dfp_dxex_<mode>, dfp_diex_<mode>, dfp_dscli_<mode>,
11226         dfp_dscri_<mode>): Change type attribute to dfp.
11227         * config/rs6000/crypto.md (crypto_vshasigma<CR_char>): Change type
11228         attribute to vecsimple.
11229         * config/rs6000/rs6000.c (power9_cost): Update costs, cache size
11230         and prefetch streams.
11231         (rs6000_option_override_internal): Remove temporary code setting
11232         tuning to power8.  Don't set rs6000_sched_groups for power9.
11233         (last_scheduled_insn): Change to rtx_insn *.
11234         (divide_cnt, vec_load_pendulum): New variables.
11235         (rs6000_adjust_cost): Add Power9 to test for store->load separation.
11236         (rs6000_issue_rate): Set issue rate for Power9.
11237         (is_power9_pairable_vec_type): New.
11238         (power9_sched_reorder2): New.
11239         (rs6000_sched_reorder2): Call new function for Power9 specific
11240         reordering.
11241         (insn_must_be_first_in_group): Remove Power9.
11242         (insn_must_be_last_in_group): Likewise.
11243         (force_new_group): Likewise.
11244         (rs6000_sched_init): Fix initialization of last_scheduled_insn.
11245         Initialize divide_cnt/vec_load_pendulum.
11246         (_rs6000_sched_context, rs6000_init_sched_context,
11247         rs6000_set_sched_context): Handle context save/restore of new
11248         variables.
11250 2016-06-28  Richard Biener  <rguenther@suse.de>
11252         * tree-ssa-alias.c (nonoverlapping_component_refs_of_decl_p):
11253         Properly handle DECL_BIT_FIELD_REPRESENTATIVE occuring as
11254         COMPONENT_REF operand.
11255         (nonoverlapping_component_refs_p): Likewise.
11256         * stor-layout.c (start_bitfield_representative): Mark
11257         DECL_BIT_FIELD_REPRESENTATIVE as DECL_NONADDRESSABLE_P.
11259 2016-06-28  Jakub Jelinek  <jakub@redhat.com>
11261         * Makefile.in: Don't cat ../stage_current if it does not exist.
11263         * doc/extend.texi (__builtin_add_overflow_p): Clarify behavior when
11264         last argument is a bit-field.
11266         PR rtl-optimization/71673
11267         * internal-fn.c (expand_arith_overflow_result_store): Use
11268         OPTAB_LIB_WIDEN instead of OPTAB_DIRECT as last argument to
11269         expand_simple_binop.
11271         PR middle-end/66867
11272         * builtins.c (expand_ifn_atomic_compare_exchange_into_call,
11273         expand_ifn_atomic_compare_exchange): New functions.
11274         * internal-fn.c (expand_ATOMIC_COMPARE_EXCHANGE): New function.
11275         * tree.h (build_call_expr_internal_loc): Rename to ...
11276         (build_call_expr_internal_loc_array): ... this.  Fix up type of
11277         last argument.
11278         * internal-fn.def (ATOMIC_COMPARE_EXCHANGE): New internal fn.
11279         * predict.c (expr_expected_value_1): Handle IMAGPART_EXPR of
11280         ATOMIC_COMPARE_EXCHANGE result.
11281         * builtins.h (expand_ifn_atomic_compare_exchange): New prototype.
11282         * gimple-fold.h (optimize_atomic_compare_exchange_p,
11283         fold_builtin_atomic_compare_exchange): New prototypes.
11284         * gimple-fold.c (optimize_atomic_compare_exchange_p,
11285         fold_builtin_atomic_compare_exchange): New functions..
11286         * tree-ssa.c (execute_update_addresses_taken): If
11287         optimize_atomic_compare_exchange_p, ignore &var in 2nd argument
11288         of call when finding addressable vars, and if such var becomes
11289         non-addressable, call fold_builtin_atomic_compare_exchange.
11291 2016-06-27  Segher Boessenkool  <segher@kernel.crashing.org>
11293         PR target/71670
11294         * config/rs6000/rs6000.md (ashdi3_extswsli_dot): Use
11295         gen_ashdi3_extswsli_dot2 instead of gen_ashdi3_extswsli_dot.
11297 2016-06-27  Pat Haugen  <pthaugen@us.ibm.com>
11299         * config/rs6000/rs6000.md ('type' attribute): Add
11300         veclogical,veccmpfx,vecexts,vecmove insn types.
11301         (*abs<mode>2_fpr, *nabs<mode>2_fpr, *neg<mode>2_fpr, *extendsfdf2_fpr,
11302         copysign<mode>3_fcpsgn, trunc<mode>df2_internal1, neg<mode>2_internal,
11303         p8_fmrgow_<mode>, pack<mode>): Change type to fpsimple.
11304         (*xxsel<mode>, copysign<mode>3_hard, neg<mode>2_hw, abs<mode>2_hw,
11305         *nabs<mode>2_hw): Change type to vecmove.
11306         (*and<mode>3_internal, *bool<mode>3_internal, *boolc<mode>3_internal,
11307         *boolcc<mode>3_internal, *eqv<mode>3_internal,
11308         *one_cmpl<mode>3_internal, *ieee_128bit_vsx_neg<mode>2_internal,
11309         *ieee_128bit_vsx_abs<mode>2_internal,
11310         *ieee_128bit_vsx_nabs<mode>2_internal, extendkftf2, trunctfkf2,
11311         *ieee128_mfvsrd_64bit, *ieee128_mfvsrd_32bit, *ieee128_mtvsrd_64bit,
11312         *ieee128_mtvsrd_32bit): Change type to veclogical.
11313         (mov<mode>_hardfloat, *mov<mode>_hardfloat32, *mov<mode>_hardfloat64,
11314         *movdi_internal32, *movdi_internal64): Update insn types.
11315         * config/rs6000/vsx.md (*vsx_le_undo_permute_<mode>,
11316         vsx_extract_<mode>): Change type to veclogical.
11317         (*vsx_xxsel<mode>, *vsx_xxsel<mode>_uns): Change type to vecmove.
11318         (vsx_sign_extend_qi_<mode>, *vsx_sign_extend_hi_<mode>,
11319         *vsx_sign_extend_si_v2di): Change type to vecexts.
11320         * config/rs6000/altivec.md (*altivec_mov<mode>, *altivec_movti): Change
11321         type to veclogical.
11322         (*altivec_eq<mode>, *altivec_gt<mode>, *altivec_gtu<mode>,
11323         *altivec_vcmpequ<VI_char>_p, *altivec_vcmpgts<VI_char>_p,
11324         *altivec_vcmpgtu<VI_char>_p): Change type to veccmpfx.
11325         (*altivec_vsel<mode>, *altivec_vsel<mode>_uns): Change type to vecmove.
11326         * config/rs6000/dfp.md (*negdd2_fpr, *absdd2_fpr, *nabsdd2_fpr,
11327         negtd2, *abstd2_fpr, *nabstd2_fpr): Change type to fpsimple.
11328         * config/rs6000/40x.md (ppc405-float): Add fpsimple.
11329         * config/rs6000/440.md (ppc440-fp): Add fpsimple.
11330         * config/rs6000/476.md (ppc476-fp): Add fpsimple.
11331         * config/rs6000/601.md (ppc601-fp): Add fpsimple.
11332         * config/rs6000/603.md (ppc603-fp): Add fpsimple.
11333         * config/rs6000/6xx.md (ppc604-fp): Add fpsimple.
11334         * config/rs6000/7xx.md (ppc750-fp): Add fpsimple.
11335         (ppc7400-vecsimple): Add veclogical, vecmove, veccmpfx.
11336         * config/rs6000/7450.md (ppc7450-fp): Add fpsimple.
11337         (ppc7450-vecsimple): Add veclogical, vecmove.
11338         (ppc7450-veccmp): Add veccmpfx.
11339         * config/rs6000/8540.md (ppc8540_simple_vector): Add veclogical,
11340         vecmove.
11341         (ppc8540_vector_compare): Add veccmpfx.
11342         * config/rs6000/a2.md (ppca2-fp): Add fpsimple.
11343         * config/rs6000/cell.md (cell-fp): Add fpsimple.
11344         (cell-vecsimple): Add veclogical, vecmove.
11345         (cell-veccmp): Add veccmpfx.
11346         * config/rs6000/e300c2c3.md (ppce300c3_fp): Add fpsimple.
11347         * config/rs6000/e6500.md (e6500_vecsimple): Add veclogical, vecmove,
11348         veccmpfx.
11349         * config/rs6000/mpc.md (mpccore-fp): Add fpsimple.
11350         * config/rs6000/power4.md (power4-fp): Add fpsimple.
11351         (power4-vecsimple): Add veclogical, vecmove.
11352         (power4-veccmp): Add veccmpfx.
11353         * config/rs6000/power5.md (power5-fp): Add fpsimple.
11354         * config/rs6000/power6.md (power6-fp): Add fpsimple.
11355         (power6-vecsimple): Add veclogical, vecmove.
11356         (power6-veccmp): Add veccmpfx.
11357         * config/rs6000/power7.md (power7-fp): Add fpsimple.
11358         (power7-vecsimple): Add veclogical, vecmove, veccmpfx.
11359         * config/rs6000/power8.md (power8-fp): Add fpsimple.
11360         (power8-vecsimple): Add veclogical, vecmove, veccmpfx.
11361         * config/rs6000/rs64.md (rs64a-fp): Add fpsimple.
11362         * config/rs6000/titan.md (titan_fp): Add fpsimple.
11363         * config/rs6000/xfpu.md (fp-default, fp-addsub-s, fp-addsub-d): Add
11364         fpsimple.
11365         * config/rs6000/rs6000.c (rs6000_adjust_cost): Add TYPE_FPSIMPLE.
11367 2016-06-27  Peter Bergner  <bergner@vnet.ibm.com>
11369         PR target/71656
11370         * config/rs6000/rs6000-cpus.def (ISA_3_0_MASKS_SERVER): Add
11371         OPTION_MASK_P9_DFORM_VECTOR.
11372         * config/rs6000/rs6000.c (rs6000_option_override_internal): Do not
11373         disable -mpower9-dform-vector when using reload.
11374         (quad_address_p): Remove 'gpr_p' argument and all associated code.
11375         New 'strict' argument.  Update all callers.  Add strict addressing
11376         support.
11377         (rs6000_legitimate_offset_address_p): Remove call to
11378         virtual_stack_registers_memory_p.
11379         (rs6000_legitimize_reload_address): Add quad address support.
11380         (rs6000_legitimate_address_p): Move call to quad_address_p above
11381         call to virtual_stack_registers_memory_p.  Adjust quad_address_p args
11382         to account for new strict usage.
11383         (rs6000_output_move_128bit): Adjust quad_address_p args to account
11384         for new strict usage.
11385         * config/rs6000/predicates.md (quad_memory_operand): Likewise.
11387 2016-06-26  Uros Bizjak  <ubizjak@gmail.com>
11389         PR target/70902
11390         PR target/71453
11391         PR target/71555
11392         PR target/71596
11393         PR target/71657
11394         * config/i386/i386.c (ix86_spill_class): Disable condition to
11395         always return NO_REGS.
11397 2016-06-26  Jan Hubicka  <hubicka@ucw.cz>
11399         * predict.c: Include gimple-pretty-print.h
11400         (predicted_by_loop_heuristics_p): Check also
11401         PRED_LOOP_EXIT_WITH_RECURSION
11402         (predict_loops): Find self recursive calls and use special purpose
11403         predictors for them; dump log about decisions.
11404         (pass_profile::execute): Dump info about #of iterations.
11405         * predict.def (PRED_LOOP_EXIT_WITH_RECURSION,
11406         (PRED_LOOP_GUARD_WITH_RECURSION): New predictors.
11408 2016-06-26  John David Anglin  <danglin@gcc.gnu.org>
11410         * config/pa/pa.c (pa_output_indirect_call): Rework to combine
11411         output_asm_insn calls and shorten long lines.  Output .CALL
11412         argument descriptor using pa_output_arg_descriptor.  Add various
11413         inline $$dyncall and other optimizations.
11414         (pa_attr_length_indirect_call): Adjust ordering and lengths.
11416 2016-06-25  Jakub Jelinek  <jakub@redhat.com>
11418         PR tree-optimization/71643
11419         * tree-ssa-tail-merge.c (find_clusters_1): Ignore basic blocks with
11420         EH preds.
11422         * tree-ssa-tail-merge.c (deps_ok_for_redirect_from_bb_to_bb): Don't
11423         leak a bitmap if dep_bb is NULL.
11425         PR tree-optimization/71631
11426         * tree-ssa-reassoc.c (reassociate_bb): Pass true as last argument
11427         to rewrite_expr_tree even if negate_result, move new_lhs var
11428         declaration and initialization earlier, for powi_result set afterwards
11429         new_lhs to lhs.  For negate_result, use new_lhs instead of tmp
11430         if new_lhs != lhs, and don't shadow gsi var.
11432 2016-06-24  Jan Hubicka  <hubicka@ucw.cz>
11434         * predict.c (predict_paths_leading_to, predict_paths_leading_to_edge):
11435         Add in_loop parameter.
11436         (predict_loops): Add loop guard heuristics.
11437         * predict.def (PRED_LOOP_GUARD): New heuristics.
11439 2016-06-24  Jan Hubicka  <hubicka@ucw.cz>
11441         * predict.c: Include ipa-utils.h
11442         (tree_bb_level_prediction): Predict recursive calls.
11443         (tree_estimate_probability_bb): Skip inexpensive calls for call
11444         predictor.
11445         * predict.def (PRED_RECURSIVE_CALL): New.
11447 2016-06-24  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
11449         * config/rs6000/rs6000-builtin.def (BU_FLOAT128_2): New #define.
11450         (BU_FLOAT128_1): Likewise.
11451         (FABSQ): Likewise.
11452         (COPYSIGNQ): Likewise.
11453         (RS6000_BUILTIN_NANQ): Likewise.
11454         (RS6000_BUILTIN_NANSQ): Likewise.
11455         (RS6000_BUILTIN_INFQ): Likewise.
11456         (RS6000_BUILTIN_HUGE_VALQ): Likewise.
11457         * config/rs6000/rs6000.c (rs6000_fold_builtin): New prototype.
11458         (TARGET_FOLD_BUILTIN): New #define.
11459         (rs6000_builtin_mask_calculate): Add TARGET_FLOAT128 entry.
11460         (rs6000_invalid_builtin): Add handling for RS6000_BTM_FLOAT128.
11461         (rs6000_fold_builtin): New target hook implementation, handling
11462         folding of 128-bit NaNs and infinities.
11463         (rs6000_init_builtins): Initialize const_str_type_node; ensure all
11464         entries are filled in to avoid problems during bootstrap
11465         self-test; define builtins for 128-bit NaNs and infinities.
11466         (rs6000_opt_mask): Add entry for float128.
11467         * config/rs6000/rs6000.h (RS6000_BTM_FLOAT128): New #define.
11468         (RS6000_BTM_COMMON): Include RS6000_BTM_FLOAT128.
11469         (rs6000_builtin_type_index): Add RS6000_BTI_const_str.
11470         (const_str_type_node): New #define.
11471         * config/rs6000/rs6000.md (copysign<mode>3 for IEEE128): Convert
11472         to a define_expand that dispatches to either copysign<mode>3_soft
11473         or copysign<mode>3_hard.
11474         (copysign<mode>3_hard): Rename from copysign<mode>3.
11475         (copysign<mode>3_soft): New define_insn.
11476         * doc/extend.texi: Document new builtins.
11478 2016-06-24  Jakub Jelinek  <jakub@redhat.com>
11480         * cfgloop.c (flow_loop_dump): Cast nit to uint64_t and print it using
11481         PRIu64 instead of lu.
11483 2016-06-24  Eric Botcazou  <ebotcazou@adacore.com>
11485         PR debug/71642
11486         * tree-inline.c (remap_decl): When fixing up DECL_ORIGINAL_TYPE, just
11487         copy the type name.
11489 2016-06-24  Jakub Jelinek  <jakub@redhat.com>
11491         PR tree-optimization/71647
11492         * omp-low.c (lower_rec_input_clauses): Convert
11493         omp_clause_aligned_alignment (c) to size_type_node for the
11494         last argument of __builtin_assume_aligned.
11496 2016-06-24  H.J. Lu  <hongjiu.lu@intel.com>
11498         * configure.ac (calling ___tls_get_addr via GOT): New
11499         assembler/linker check.
11500         (HAVE_AS_IX86_TLS_GET_ADDR_GOT): New.  Defined to 1 if 32-bit
11501         assembler and linker supports calling ___tls_get_addr via GOT.
11502         Otherise, defined to 0.
11503         * config.in: Regenerated.
11504         * configure: Likewise.
11505         * config/i386/constraints.md (Yb): New constraint.
11506         * config/i386/i386.h (reg_class): Add TLS_GOTBASE_REGS.
11507         (REG_CLASS_NAMES): Likewise.
11508         (REG_CLASS_CONTENTS): Likewise.
11509         * config/i386/i386.md (*tls_global_dynamic_32_gnu): Replace
11510         the b constraint with the Yb constraint.  Call ___tls_get_addr
11511         via GOT for GNU TLS with -fno-plt if HAVE_AS_IX86_TLS_GET_ADDR_GOT
11512         is 1.
11513         (*tls_local_dynamic_base_32_gnu): Likewise.
11514         (*tls_global_dynamic_64_<mode>): Call _tls_get_addr via GOT for
11515         GNU TLS with -fno-plt if HAVE_AS_IX86_TLS_GET_ADDR_GOT is 1.
11516         (*tls_local_dynamic_base_64_<mode>): Likewise.
11518 2016-06-24  Martin Liska  <mliska@suse.cz>
11520         * cfgloop.c (flow_loop_dump): Dump average number of loop iterations.
11521         * cfgloop.h: Change 'struct loop' to 'const struct loop' for a
11522         few functions.
11523         * cfgloopanal.c (expected_loop_iterations_unbounded): Set a new
11524         argument to true if the expected number of iterations is
11525         loop-based.
11527 2016-06-24  Uros Bizjak  <ubizjak@gmail.com>
11529         * configure.ac (HAVE_AS_GOTOF_IN_DATA): Use $as_ix86_gas_32_opt to
11530         assemble for 32bit target.
11531         (HAVE_AS_IX86_TLSGDPLT): Use $as_ix86_gas_32_opt to assemble
11532         and $ld_ix86_gld_32_opt to link for 32bit target.
11533         (HAVE_AS_IX86_TLSLDMPLT): Ditto.
11534         * configure: Regenerate.
11536 2016-06-24  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
11538         * config/arm/arm.c (int_log2): Delete definition and prototype.
11539         (shift_op): Use exact_log2 instead of int_log2.
11540         (vfp3_const_double_for_fract_bits): Likewise.
11542 2016-06-24  Jakub Jelinek  <jakub@redhat.com>
11544         * internal-fn.c (expand_arith_set_overflow): New function.
11545         (expand_addsub_overflow, expand_neg_overflow, expand_mul_overflow):
11546         Use it.
11547         (expand_arith_overflow_result_store): Likewise.  Handle precision
11548         smaller than mode precision.
11549         * tree-vrp.c (extract_range_basic): For imag part, handle
11550         properly signed 1-bit precision result.
11551         * doc/extend.texi (__builtin_add_overflow): Document that last
11552         argument can't be pointer to enumerated or boolean type.
11553         (__builtin_add_overflow_p): Document that last argument can't
11554         have enumerated or boolean type.
11556 2016-06-23  Michael Meissner  <meissner@linux.vnet.ibm.com>
11557             Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
11559         * config/rs6000/predicates.md (splat_input_operand): Rework.
11560         Don't allow constants, since the insns that use this predicate
11561         don't support constants.  Constants are handled by other insns
11562         that are created via combine.  During and after register
11563         allocation, only allow indexed or indirect addresses, and not
11564         general addresses.  Only allow modes supported by the hardware.
11565         * config/rs6000/rs6000.c (xxsplitb_constant_p): Update usage
11566         comment.  Move check for using VSPLTIS<x> to a common location,
11567         instead of doing it in two different places.
11569 2016-06-23  Jocelyn Mayer  <l_indien@magic.fr>
11571         * config/i386/driver-i386.c (host_detect_local_cpu): Set
11572         PROCESSOR_PENTIUMPRO for signature_CENTAUR_ebx family >= 9.
11573         <case PROCESSOR_PENTIMUMPRO>: Pass c7 or nehemiah for
11574         signature_CENTAUR_ebx.
11576 2016-06-23  H.J. Lu  <hongjiu.lu@intel.com>
11578         PR target/66232
11579         PR target/67400
11580         * configure.ac (as_ix86_tls_ldm_opt): Renamed to ...
11581         (as_ix86_gas_32_opt): This.
11582         (ld_ix86_tls_ldm_opt): Renamed to ...
11583         (ld_ix86_gld_32_opt): This.
11584         (R_386_TLS_LDM reloc): Updated.
11585         (R_386_GOT32X reloc): New assembler/linker check.
11586         (HAVE_AS_IX86_GOT32X): New.  Defined to 1 if 32-bit assembler and
11587         linker support "jmp *_start@GOT" and "cmpl $0, bar@GOT".  Otherise,
11588         defined to 0.
11589         * config.in: Regenerated.
11590         * configure: Likewise.
11591         * config/i386/i386.c (ix86_force_load_from_GOT_p): Return
11592         true if HAVE_AS_IX86_GOT32X is 1 in 32-bit mode.
11593         (ix86_legitimate_address_p): Allow UNSPEC_GOT for -fno-plt
11594         if ix86_force_load_from_GOT_p returns true.
11595         (ix86_print_operand_address_as): Also support UNSPEC_GOT if
11596         ix86_force_load_from_GOT_p returns true.
11597         (ix86_expand_move): Generate UNSPEC_GOT in 32-bit mode to load
11598         the external function address via the GOT slot.
11599         (ix86_nopic_noplt_attribute_p): Check both TARGET_64BIT and
11600         HAVE_AS_IX86_GOT32X before returning false.
11601         (ix86_output_call_insn): Generate "%!jmp/call\t*%p0@GOT" in
11602         32-bit mode if ix86_nopic_noplt_attribute_p returns true.
11604 2016-06-23  Eric Botcazou  <ebotcazou@adacore.com>
11606         * tree-inline.c (remap_decl): Preserve DECL_ORIGINAL_TYPE invariant.
11608 2016-06-23  Andi Kleen  <ak@linux.intel.com>
11610         * Makefile.in: Regenerate.
11611         * doc/install.texi: Document autoprofiledbootstrap.
11613 2016-06-23  Andi Kleen  <ak@linux.intel.com>
11615         * config/i386/gcc-auto-profile: New file.
11617 2016-06-23  Martin Liska  <mliska@suse.cz>
11619         PR middle-end/71619
11620         * predict.c (predict_loops): Revert the hunk that was removed
11621         in r237103.
11623 2016-06-23  Jakub Sejdak  <jakub.sejdak@phoesys.com>
11625         * config.gcc: Add support for arm*-*-phoenix* targets.
11626         * config/arm/t-phoenix: New.
11627         * config/phoenix.h: New.
11629 2016-06-23  Uros Bizjak  <ubizjak@gmail.com>
11630             H.J. Lu  <hongjiu.lu@intel.com>
11632         PR target/67400
11633         * config/i386/i386-protos.h (ix86_force_load_from_GOT_p): New.
11634         * config/i386/i386.c (ix86_force_load_from_GOT_p): New function.
11635         (ix86_legitimate_constant_p): Do not allow UNSPEC_GOTPCREL if
11636         ix86_force_load_from_GOT_p returns true.
11637         (ix86_legitimate_address_p): Allow UNSPEC_GOTPCREL if
11638         ix86_force_load_from_GOT_p returns true.
11639         (ix86_print_operand_address_as): Support UNSPEC_GOTPCREL if
11640         ix86_force_load_from_GOT_p returns true.
11641         (ix86_expand_move): Load the external function address via the
11642         GOT slot if ix86_force_load_from_GOT_p returns true.
11643         * config/i386/predicates.md (x86_64_immediate_operand): Return
11644         false for SYMBOL_REFs where ix86_force_load_from_GOT_p returns true.
11645         (x86_64_zext_immediate_operand): Ditto.
11647 2016-06-22  Uros Bizjak  <ubizjak@gmail.com>
11649         * config/i386/i386.c (ix86_expand_move): Simplify SYMBOL_REF handling.
11651 2016-06-22  David Malcolm  <dmalcolm@redhat.com>
11653         PR c/70339
11654         * diagnostic-core.h (pedwarn_at_rich_loc): New prototype.
11655         * diagnostic.c (pedwarn_at_rich_loc): New function.
11656         * spellcheck.h (best_match::best_match): Add a
11657         "best_distance_so_far" optional parameter.
11658         (best_match::set_best_so_far): New method.
11659         (best_match::get_best_distance): New accessor.
11660         (best_match::get_best_candidate_length): New accessor.
11662 2016-06-22  Nick Clifton  <nickc@redhat.com>
11664         * dwarf2out.c (scompare_loc_descriptor): Use SCALAR_INT_MODE_P() in
11665         place of GET_MODE_CLASS() == MODE_INT, so that partial integer
11666         modes are accepted as well.
11667         (ucompare_loc_descriptor): Likewise.
11668         (minmax_loc_descriptor): Likewise.
11669         (clz_loc_descriptor): Likewise.
11670         (popcount_loc_descriptor): Likewise.
11671         (bswap_loc_descriptor): Likewise.
11672         (rotate_loc_descriptor): Likewise.
11673         (mem_loc_descriptor): Likewise.
11674         (loc_descriptor): Likewise.
11676 2016-06-22  David Malcolm  <dmalcolm@redhat.com>
11678         * common.opt (fdiagnostics-parseable-fixits): New option.
11679         * diagnostic.c: Include "selftest.h".
11680         (print_escaped_string): New function.
11681         (print_parseable_fixits): New function.
11682         (diagnostic_report_diagnostic): Call print_parseable_fixits.
11683         (selftest::assert_print_escaped_string): New function.
11684         (ASSERT_PRINT_ESCAPED_STRING_STREQ): New macro.
11685         (selftest::test_print_escaped_string): New function.
11686         (selftest::test_print_parseable_fixits_none): New function.
11687         (selftest::test_print_parseable_fixits_insert): New function.
11688         (selftest::test_print_parseable_fixits_remove): New function.
11689         (selftest::test_print_parseable_fixits_replace): New function.
11690         (selftest::diagnostic_c_tests): New function.
11691         * diagnostic.h (struct diagnostic_context): Add field
11692         "parseable_fixits_p".
11693         * doc/invoke.texi (Diagnostic Message Formatting Options): Add
11694         -fdiagnostics-parseable-fixits.
11695         (-fdiagnostics-parseable-fixits): New option.
11696         * opts.c (common_handle_option): Handle
11697         -fdiagnostics-parseable-fixits.
11698         * selftest-run-tests.c (selftest::run_tests): Call
11699         selftest::diagnostic_c_tests.
11700         * selftest.h (selftest::diagnostic_c_tests): New prototype.
11702 2016-06-22  Ilya Enkovich  <ilya.enkovich@intel.com>
11704         PR tree-optimization/71488
11705         * tree-vect-patterns.c (vect_recog_mask_conversion_pattern): Support
11706         comparison of boolean vectors.
11707         * tree-vect-stmts.c (vectorizable_comparison): Vectorize comparison
11708         of boolean vectors using bitwise operations.
11710 2016-06-22  Andreas Schwab  <schwab@suse.de>
11712         * config/aarch64/aarch64-protos.h (aarch64_elf_asm_named_section):
11713         Remove declaration.
11715 2016-06-22  Eric Botcazou  <ebotcazou@adacore.com>
11717         * function.c (assign_parm_setup_reg): Prevent sharing in another case.
11719 2016-06-22  Bernd Edlinger  <bernd.edlinger@hotmail.de>
11721         * config/i386/i386.c (print_reg): Emit an error message on attempt to
11722         print FLAGS_REG.
11724 2016-06-22  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
11726         * config/arm/arm.c (arm_cortex_a73_tune): New struct.
11727         * config/arm/arm-cores.def (cortex-a73): New entry.
11728         (cortex-a73.cortex-a35): Likewise.
11729         (cortex-a73.cortex-a53): Likewise.
11730         * config/arm/arm-tables.opt: Regenerate.
11731         * config/arm/arm-tune.md: Likewise.
11732         * config/arm/bpabi.h (BE8_LINK_SPEC): Handle mcpu=cortex-a73,
11733         mcpu=cortex-a73.cortex-a35 and mcpu=cortex-a73.cortex-a53.
11734         * config/arm/t-aprofile: Handle mcpu=cortex-a73,
11735         mcpu=cortex-a73.cortex-a35 and mcpu=cortex-a73.cortex-a53.
11736         * doc/invoke.texi (ARM Options): Document cortex-a73,
11737         cortex-a73.cortex-a35 and cortex-a73.cortex-a53.
11739 2016-06-22  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
11741         * config/aarch64/aarch64.c (cortexa73_tunings): New struct.
11742         * config/aarch64/aarch64-cores.def (cortex-a73): New entry.
11743         (cortex-a73.cortex-a35): Likewise.
11744         (cortex-a73.cortex-a53): Likewise.
11745         * config/aarch64/aarch64-tune.md: Regenerate.
11746         * doc/invoke.texi (AArch64 Options): Document cortex-a73,
11747         cortex-a73.cortex-a35 and cortex-a73.cortex-a53 arguments to
11748         -mcpu and -mtune.
11750 2016-06-22  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
11752         * configure.ac (gcc_cv_as_compress_debug): Remove
11753         --compress-debug-sections as extra as switch.
11754         Handle gas --compress-debug-sections=type.
11755         (gcc_cv_ld_compess_debug): Remove bogus ld_date check.
11756         Handle gld --compress-debug-sections=type.
11757         * configure: Regenerate.
11759 2016-06-21  Andrew Burgess  <andrew.burgess@embecosm.com>
11761         * bb-reorder.c (pass_partition_blocks::gate): Update comment.
11763 2016-06-21  John David Anglin  <danglin@gcc.gnu.org>
11765         * gcov-tool.c (profile_rewrite): Use int64_t instead of long long.
11766         (do_rewrite): likewise.
11768 2016-06-21  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
11770         * common/config/mep/mep-common.c: Remove.
11771         * config.gcc: Remove mep-* support.
11772         * config/mep/constraints.md: Remove.
11773         * config/mep/default.h: Remove.
11774         * config/mep/intrinsics.h: Remove.
11775         * config/mep/intrinsics.md: Remove.
11776         * config/mep/ivc2-template.h: Remove.
11777         * config/mep/mep-c5.cpu: Remove.
11778         * config/mep/mep-core.cpu: Remove.
11779         * config/mep/mep-default.cpu: Remove.
11780         * config/mep/mep-ext-cop.cpu: Remove.
11781         * config/mep/mep-intrin.h: Remove.
11782         * config/mep/mep-ivc2.cpu: Remove.
11783         * config/mep/mep-pragma.c: Remove.
11784         * config/mep/mep-protos.h: Remove.
11785         * config/mep/mep.c: Remove.
11786         * config/mep/mep.cpu: Remove.
11787         * config/mep/mep.h: Remove.
11788         * config/mep/mep.md: Remove.
11789         * config/mep/mep.opt: Remove.
11790         * config/mep/predicates.md: Remove.
11791         * config/mep/t-mep: Remove.
11792         * doc/install.texi: Remove mep-* documentation.
11793         * doc/md.texi: Likewise.
11795 2016-06-21  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
11797         * config.gcc: Remove support for avr-rtems.
11798         * config/avr/gen-avr-mmcu-specs.c: Likewise.
11799         * config/avr/rtems.h: Remove.
11800         * config/avr/t-rtems: Remove.
11802 2016-06-21  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
11804         * config.gcc: Remove m32r-rtems support.
11805         * config/m32r/rtems.h: Remove.
11807 2016-06-21  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
11809         * config.gcc: Remove h8300-rtems support.
11810         * config/h8300/rtems.h: Remove.
11811         * config/h8300/t-rtems: Remove.
11813 2016-06-21  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
11815         * config.gcc: Remove support for knetbsd.
11816         * configure.ac: Likewise.
11817         * config/i386/knetbsd-gnu.h: Remove.  * config/i386/knetbsd-gnu64.h: Remove.
11818         * config/knetbsd-gnu.h: Remove.
11819         * configure: Regenerate.
11821 2016-06-21  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
11823         * config.gcc: Remove support for openbsd 2 and 3.
11824         * config/openbsd-oldgas.h: Remove.
11826 2016-06-21  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
11828         * config.gcc: Remove interix support.
11829         * config/i386/i386-interix.h: Remove.
11830         * config/i386/interix.opt: Remove.
11831         * config/i386/t-interix: Remove.
11832         * configure: Regenerate.
11833         * configure.ac: Remove interix support.
11834         * doc/install.texi: Remove interix documentation.
11836 2016-06-21  Kelvin Nilsen  <kelvin@gcc.gnu.org>
11838         * config/rs6000/rs6000.h: Add conditional preprocessing directives
11839         to disable Power9-specific compiler features if HAVE_AS_POWER9 is
11840         not defined.
11842 2016-06-21  Eric Botcazou  <ebotcazou@adacore.com>
11844         * tree.c (verify_type_variant): Skip TYPE_SIZE and TYPE_SIZE_UNIT if
11845         they are both PLACEHOLDER_EXPRs.
11847 2016-06-21  Michael Meissner  <meissner@linux.vnet.ibm.com>
11849         * stor-layout.c (layout_type): Move setting complex MODE to
11850         layout_type, instead of setting it ahead of time by the caller.
11851         * tree.c (build_complex_type): Likewise.
11853 2016-06-21  Martin Liska  <mliska@suse.cz>
11855         * predict.c (force_edge_cold): Replace imposisble with
11856         impossible.
11858 2016-06-21  Ilya Verbin  <ilya.verbin@intel.com>
11860         * config/i386/i386.c (ix86_emit_swsqrtsf): Emit vrsqrt28ps.
11861         * config/i386/sse.md (define_expand "rsqrtv16sf2"): New.
11863 2016-06-21  Ilya Verbin  <ilya.verbin@intel.com>
11865         * config/i386/i386.c (ix86_emit_swdivsf): Emit vrcp28ps.
11867 2016-06-21  H.J. Lu  <hongjiu.lu@intel.com>
11868             Ilya Enkovich  <ilya.enkovich@intel.com>
11870         PR target/71549
11871         * config/i386/i386.c (timode_scalar_chain::fix_debug_reg_uses):
11872         New member function to convert V1TImode register to SUBREG
11873         TImode in debug insn.
11874         (timode_scalar_chain::convert_insn): Call fix_debug_reg_uses
11875         after changing register mode to V1TImode.
11877 2016-06-21  Virendra Pathak  <virendra.pathak@broadcom.com>
11879         * config/aarch64/aarch64-cores.def (vulcan): New core.
11880         * config/aarch64/aarch64-tune.md: Regenerate.
11881         * doc/invoke.texi: Document vulcan as an available option.
11883 2016-06-21  Eric Botcazou  <ebotcazou@adacore.com>
11885         * cse.c (canon_asm_operands): New function extracted from...
11886         (canonicalize_insn): ...here.  Call it to canonicalize an ASM_OPERANDS
11887         either standalone or member of a PARALLEL.
11889 2016-06-21  Georg-Johann Lay  <avr@gjlay.de>
11891         PR target/30417
11892         * config/avr/gen-avr-mmcu-specs.c (print_mcu):
11893         [*link_data_start]: Wrap -Tdata into %{!Tdata:...}.
11894         [*link_text_start]: Wrap -Ttext into %{!Ttext:...}.
11896 2016-06-21  Georg-Johann Lay  <avr@gjlay.de>
11898         PR target/71103
11899         * config/avr/avr.md (movqi): Only handle loading subreg:qi of
11900         constant addresses if can_create_pseudo_p.
11902 2016-06-21  Jakub Jelinek  <jakub@redhat.com>
11904         PR tree-optimization/71588
11905         * tree-ssa-strlen.c (valid_builtin_call): New function.
11906         (adjust_last_stmt, handle_builtin_memset, strlen_optimize_stmt): Use
11907         it.
11909 2016-06-20  Jakub Jelinek  <jakub@redhat.com>
11911         PR middle-end/71581
11912         * tree-ssa-uninit.c (warn_uninit): If EXPR and VAR are NULL,
11913         see if T isn't anonymous SSA_NAME with COMPLEX_EXPR created
11914         for conversion of scalar user var to complex type and use the
11915         underlying SSA_NAME_VAR in that case.  If EXPR is still NULL,
11916         punt.
11918         PR rtl-optimization/71591
11919         * toplev.c (toplev::run_self_tests): If no_backend, complain and
11920         don't run any tests.
11922 2016-06-20  Hans-Peter Nilsson  <hp@axis.com>
11924         PR target/71571
11925         * config/cris/cris.c (cris_asm_output_mi_thunk): Add missing "ba"
11926         delay-slot "nop" for PIC with CRIS v32.  Also add missing leading
11927         space for PIC with non-v32 and the common non-PIC "jump".
11929 2016-06-20  Jakub Jelinek  <jakub@redhat.com>
11931         PR target/71559
11932         * config/i386/i386.c (ix86_fp_cmp_code_to_pcmp_immediate): Fix up
11933         returned values and add UN*/LTGT/*ORDERED cases with values matching
11934         D operand modifier on vcmp for AVX.
11936 2016-06-20  Wilco Dijkstra  <wdijkstr@arm.com>
11938         * config/aarch64/aarch64.opt
11939         (mpc-relative-literal-loads): Rename internal option name.
11940         * config/aarch64/aarch64.c
11941         (aarch64_nopcrelative_literal_loads): Rename to
11942         aarch64_pcrelative_literal_loads.
11943         (aarch64_expand_mov_immediate): Likewise.
11944         (aarch64_secondary_reload): Likewise.
11945         (aarch64_can_use_per_function_literal_pools_p): Likewise.
11946         (aarch64_override_options_after_change_1): Rename and simplify logic.
11947         (aarch64_classify_symbol): Merge large model checks into switch,
11948         remove pc-relative load check.
11950 2016-06-20  James Greenhalgh  <james.greenhalgh@arm.com>
11952         * config/arm/aarch-cost-tables.h (cortexa53_extra_costs): Make FP
11953         costs relative to the cost of a register move.
11955 2016-06-20  James Greenhalgh  <james.greenhalgh@arm.com>
11957         * config/aarch64/arm_neon.h (vcvt_n_f64_s64): New.
11958         (vcvt_n_f64_u64): Likewise.
11959         (vcvt_n_s64_f64): Likewise.
11960         (vcvt_n_u64_f64): Likewise.
11961         (vcvt_f64_s64): Likewise.
11962         (vrecpe_f64): Likewise.
11963         (vcvt_f64_u64): Likewise.
11964         (vrecps_f64): Likewise.
11966 2016-06-20  James Greenhalgh  <james.greenhalgh@arm.com>
11968         * config/aarch64/aarch64.md
11969         (<FCVT_F2FIXED:fcvt_fixed_insn><GPF:mode>3): Add attributes to
11970         iterators.
11971         (<FCVT_FIXED2F:fcvt_fixed_insn><GPI:mode>3): Likewise.  Correct
11972         attributes.
11973         * config/aarch64/aarch64-builtins.c
11974         (aarch64_types_binop_uss_qualifiers): Delete.
11975         (TYPES_BINOP_USS): Likewise.
11976         (aarch64_types_binop_sus_qualifiers): Likewise.
11977         (TYPES_BINOP_SUS): Likewise.
11978         (aarch64_types_fcvt_from_unsigned_qualifiers): New.
11979         (TYPES_FCVTIMM_SUS): Likewise.
11980         * config/aarch64/aarch64-simd-builtins.def (scvtf): Use SHIFTIMM
11981         rather than BINOP.
11982         (ucvtf): Use FCVTIMM_SUS rather than BINOP_SUS.
11983         (fcvtzs): Use SHIFTIMM rather than BINOP.
11984         (fcvtzu): Use SHIFTIMM_USS rather than BINOP_USS.
11986 2016-06-20  James Greenhalgh  <james.greenhalgh@arm.com>
11988         * config/arm/aarch-cost-tables.h (cortexa57_extra_costs): Make FP
11989         costs relative to the cost of a register move.
11991 2016-06-20  Wilco Dijkstra  <wdijkstr@arm.com>
11993         * config/aarch64/aarch64.c (aarch64_modes_tieable_p):
11994         Allow scalar/single vector modes to be tieable.
11996 2016-06-20  Wilco Dijkstra  <wdijkstr@arm.com>
11998         * config/arm/cortex-a57.md (cortex_a57_fp_cpys): Add fcsel.
12000 2016-06-20  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
12002         * params.def (PARAM_ALIGN_LOOP_ITERATIONS): Use "alignment" instead of
12003         "alignement".
12004         * tree.h (TYPE_ALIGN): Likewise.
12006 2016-06-20  Georg-Johann Lay  <avr@gjlay.de>
12008         PR target/71103
12009         * config/avr/avr.md (movqi): Handle loading subreg:qi (const).
12011 2016-06-20  Georg-Johann Lay  <avr@gjlay.de>
12013         * config/avr/avr.c (avr_print_operand): Fix "format not a string
12014         literal" build warnings.
12015         (avr_print_operand_address): Dito.
12017 2016-06-19  David Edelsohn  <dje.gcc@gmail.com>
12019         PR target/71375
12020         * config/rs6000/aix51.h (TARGET_EXTRA_BUILTINS): Define as 0.
12021         * config/rs6000/aix43.h (TARGET_EXTRA_BUILTINS): Same.
12023 2016-06-18  John David Anglin  <danglin@gcc.gnu.org>
12025         * config/pa/pa.h (TARGET_LONG_PIC_PCREL_CALL): Remove.
12027 2016-06-18  Eric Botcazou  <ebotcazou@adacore.com>
12029         PR bootstrap/71435
12030         * reload1.c (reload): Pass 0 to finish_spills when called because
12031         update_eliminables_and_spill returns true and remove did_spill.
12032         (finish_spills): Adjust comment and document GLOBAL parameter.
12034 2016-06-17  DJ Delorie  <dj@redhat.com>
12036         PR target/71338
12037         * config/rl78/rl78-expand.c (umulqihi3): Enable for G10.
12038         * config/rl78/rl78-virtual.c (umulhi3_shift_virt): Likewise.
12039         (umulqihi3_virt): Likewise.
12040         * config/rl78/rl78-real.c (umulhi3_shift_real): Likewise.
12041         (umulqihi3_real): Likewise.
12043 2016-06-17  Martin Liska  <mliska@suse.cz>
12045         * tree-ssa-reassoc.c (transform_add_to_multiply): Use auto_vec.
12047 2016-06-17  Martin Liska  <mliska@suse.cz>
12049         * predict.def: PRED_LOOP_EXIT from 92 to 85.
12051 2016-06-17  James Greenhalgh  <james.greenhalgh@arm.com>
12053         * config/arm/arm_neon.h (vadd_f32): replace __FAST_MATH with
12054         __FAST_MATH__.
12055         (vaddq_f32): Likewise.
12056         (vmul_f32): Likewise.
12057         (vmulq_f32): Likewise.
12058         (vsub_f32): Likewise.
12059         (vsubq_f32): Likewise.
12061 2016-06-17  Bin Cheng  <bin.cheng@arm.com>
12063         PR tree-optimization/71347
12064         * tree-ssa-loop-ivopts.c (determine_group_iv_cost_address): Compute
12065         cost for all uses in group.
12067 2016-06-17  Bin Cheng  <bin.cheng@arm.com>
12069         * tree-vect-loop.c (vect_create_epilog_for_reduction): Only
12070         insert gimple seq if it's not empty.
12072 2016-06-17  Bin Cheng  <bin.cheng@arm.com>
12074         * tree-vectorizer.h (struct dr_with_seg_len): Remove class
12075         member OFFSET.
12076         * tree-vect-data-refs.c (operator ==): Handle DR_OFFSET directly,
12077         rather than OFFSET.
12078         (comp_dr_with_seg_len_pair): Ditto.
12079         (vect_prune_runtime_alias_test_list): Ditto.  Also Canonicalize
12080         struct dr_with_seg_len_pair against DR_OFFSET.
12081         * tree-vect-loop-manip.c (vect_create_cond_for_alias_checks): Handle
12082         DR_OFFSET directly.
12084 2016-06-17  Szabolcs Nagy  <szabolcs.nagy@arm.com>
12086         * config/aarch64/geniterators.sh: Handle parenthesised conditions.
12088 2016-06-16  John David Anglin  <danglin@gcc.gnu.org>
12090         * config/pa/pa.c (pa_output_pic_pcrel_sequence): New.
12091         (pa_output_lbranch): Use pa_output_pic_pcrel_sequence.
12092         (pa_output_millicode_call): Likewise.
12093         (pa_output_call): Likewise.
12094         (pa_output_indirect_call): Likewise.
12095         (pa_asm_output_mi_thunk): Likewise.
12097 2016-06-16  Bernhard Reutner-Fischer  <aldot@gcc.gnu.org>
12099         * doc/invoke.texi (x86 Options): Fix -mno-fp-ret-in-387 typo.
12101 2016-06-16  Martin Liska  <mliska@suse.cz>
12103         * predict.c (combine_predictions_for_insn): When we find a first
12104         match predictor, we should consider just predictors with
12105         PRED_FLAG_FIRST_MATCH.  Print either first match (if any) or
12106         DS theory predictor.
12107         (combine_predictions_for_bb): Likewise.
12109 2016-06-16  Jakub Jelinek  <jakub@redhat.com>
12111         * gimplify.c (gimplify_scan_omp_clauses): Handle COMPONENT_REFs
12112         with base of reference to struct.
12114 2016-06-16  Uros Bizjak  <ubizjak@gmail.com>
12116         * doc/invoke.texi (x86 Options): Document -m80387 and -mhard-float.
12118 2016-06-16  Senthil Kumar Selvaraj  <senthil_kumar.selvaraj@atmel.com>
12120         PR target/71151
12121         * config/avr/avr.c (avr_asm_init_sections): Remove setup of
12122         progmem_swtable_section.
12123         (progmem_swtable_section): Remove.
12124         (avr_asm_function_rodata_section): Remove.
12125         (TARGET_ASM_FUNCTION_RODATA_SECTION): Remove.
12126         * config/avr/avr.h (JUMP_TABLES_IN_TEXT_SECTION: Define to 1.
12128 2016-06-16  Jocelyn Mayer  <l_indien@magic.fr>
12130         * config/i386/driver-i386.c (host_detect_local_cpu): Set
12131         PROCESSOR_K8 for signature_CENTAUR_ebx with has_longmode.
12132         <case PROCESSOR_K8>: Pass nano-3000, nano, eden-x2 or k8 for
12133         signature_CENTAUR_ebx.
12134         * config/i386/i386.c (ix86_option_override_internal): Add
12135         definitions for VIA c7, samuel-2, nehemiah, esther, eden-x2, eden-x4,
12136         nano, nano-1000, nano-2000, nano-3000, nano-x2 and nano-x4.
12137         * doc/invoke.texi (x86 Options): Document new VIA -march entries.
12139 2016-06-16  Martin Liska  <mliska@suse.cz>
12141         * predict.def: Add fortran loop preheader predictor.
12142         * gimple-fold.c (gimple_fold_stmt_to_constant_1): Properly
12143         fold IFN_BUILTIN_EXPECT with a known constant argument.
12145 2016-06-16  Martin Liska  <mliska@suse.cz>
12147         * predict.def: Add 'Fortran' to display text of all
12148         PRED_FORTRAN_* predictors.
12150 2016-06-16  Uros Bizjak  <ubizjak@gmail.com>
12152         PR target/71242
12153         * config/ia64/ia64.c (enum ia64_builtins) [IA64_BUILTIN_NANQ]: New.
12154         [IA64_BUILTIN_NANSQ]: Ditto.
12155         (ia64_fold_builtin): New function.
12156         (TARGET_FOLD_BUILTIN): New define.
12157         (ia64_init_builtins) Declare const_string_type node.
12158         Add __builtin_nanq and __builtin_nansq builtin functions.
12159         (ia64_expand_builtin): Handle IA64_BUILTIN_NANQ and IA64_BUILTIN_NANSQ.
12161 2016-06-16  Nick Clifton  <nickc@redhat.com>
12163         * config/msp430/msp430-opts.h (msp430_hwmult_types): Add
12164         MSP430_HWMULT_ prefix to enum values.
12165         (msp430_regions): Add MSP430_REGION_ prefix to enum values.
12166         * config/msp430/msp430.c: Update use of enum values.
12167         * config/msp430/msp430.md: Likewise.
12168         * config/msp430/msp430.opt: Likewise.
12170 2016-06-16  Jan Hubicka  <hubicka@ucw.cz>
12172         * tree-ssa-loop-ivcanon.c (tree_estimate_loop_size): Fix estimation
12173         of comparsions in the last iteration.
12175 2016-06-16  Claudiu Zissulescu  <claziss@synopsys.com>
12176             Joern Rennecke  <joern.rennecke@embecosm.com>
12178         * config/arc/arc.c (arc_print_operand_address): Handle pc-relative
12179         addresses.
12180         (arc_needs_pcl_p): Add GOTOFFPC.
12181         (arc_legitimate_pic_addr_p): Likewise.
12182         (arc_output_pic_addr_const): Likewise.
12183         (arc_legitimize_pic_address): Generate a pc-relative address using
12184         GOTOFFPC.
12185         (arc_output_libcall): Use @pcl syntax.
12186         (arc_delegitimize_address_0): Delegitimize ARC_UNSPEC_GOTOFFPC.
12187         * config/arc/arc.md ("unspec"): Add ARC_UNSPEC_GOTOFFPC.
12188         (*movsi_insn): Use @pcl syntax.
12189         (doloop_begin_i): Likewise.
12191 2016-06-16  Martin Liska  <mliska@suse.cz>
12193         * predict.def: Define a new predictor.
12195 2016-06-16  Claudiu Zissulescu  <claziss@synopsys.com>
12197         * config/arc/arc.opt (mtp-regno): Update text.
12199 2016-06-16  Renlin Li  <renlin.li@arm.com>
12201         * config/aarch64/aarch64.c (aarch64_legitimize_address): Fix a typo.
12203 2016-06-16  Jakub Jelinek  <jakub@redhat.com>
12205         PR target/71554
12206         * config/i386/i386.md (setcc + movzbl peephole2): Use reg_set_p.
12207         (setcc + and peephole2): Likewise.
12209         PR rtl-optimization/71532
12210         * cse.c (cse_insn): For const/pure calls, invalidate argument passing
12211         memory slots.
12213 2016-06-15  Michael Meissner  <meissner@linux.vnet.ibm.com>
12215         * config/rs6000/vsx.md (VSINT_84): Add DImode to enable loading
12216         DImode constants with XXSPLTIB in vector registers.
12217         (vsx_extract_<mode>, V2DImode/V2DFmode): Combine both
12218         vsx_extract_<mode>_internal{1,2} into a single insn that handles
12219         direct move (both ISA 2.07 and ISA 3.0 versions), and optimizes
12220         extraction of the element at the top of the register as a scalar
12221         value.
12222         (vsx_extract_<mode>_internal1): Likewise.
12223         (vsx_extract_<mode>_internal2): Likewise.
12224         * config/rs6000/constraints.md (wi constraint): Remove a comment
12225         about DImode not being allowed in Altivec registers.
12226         (wB constraint): New constraint for constants that can be
12227         generated in Altivec registers with VSPLTISW/VUPKHSW.
12228         * config/rs6000/predicates.md (xxspltib_constant_split): Update
12229         comments.
12230         (xxspltib_constant_nosplit): Likewise.
12231         * config/rs6000/rs6000-cpus.def (ISA_2_6_MASKS_SERVER): Add
12232         support for -mupper-regs-di to enable DImode to go into Altivec
12233         registers.
12234         (POWERPC_MASKS): Likewise.
12235         (power7 cpu): Likewise.
12236         * config/rs6000/rs6000.opt (-mupper-regs-di): Likewise.
12237         * config/rs6000/rs6000.c (rs6000_hard_regno_mode_ok): Add support
12238         for DImode being allowed in Altivec registers.  Update wi/wj
12239         constraints.  Set scalar_in_vmx_p flag.
12240         (rs6000_option_override_internal): Add checks for -mupper-regs-di.
12241         (xxspltib_constant_p): Allow CONST_INT's with VOIDmode.  Don't
12242         return true if we could use VSPLTISW/VUPKHSW instead of XXSPLTIB.
12243         (rs6000_opt_masks): Add -mupper-regs-di.
12244         * config/rs6000/rs6000.md (lfiwax): Update clobbers that don't use
12245         direct move to use wi and not wj.
12246         (lfiwzx): Likewise.
12247         (floatsi<mode>2_lfiwax_mem): Combine alternatives into a single
12248         alternative.
12249         (floatunssi<mode>2_lfiwzx_mem): Likewise.
12250         (fix_trunc<mode>di2_fctidz): Change second alternative to allow
12251         any VSX register, instead of just Altivec registers, to allow
12252         either operand to be an Altivec register or both.
12253         (fixuns_trunc<mode>di2_fctiduz): Likewise.
12254         (movdi_internal32): Add support for -mupper-regs-di.  Add support
12255         to load constants via XXSPLTIB or VSPLTISW.  Add spacing to allow
12256         the alternatives and attributes to be lined up to be easier to
12257         read.
12258         (movdi_internal64): Likewise.
12259         (64-bit DImode splitters): Change predicates to only split loading
12260         up GPR registers.  Add splits for using XXSPLTIB or VSPLTISW to
12261         load constants in ISA 3.0 or ISA 2.07 respectively.
12262         * doc/invoke.texi (RS/6000 and PowerPC Options): Document
12263         -mupper-regs-di.  Update -mupper-regs-df and -mupper-regs-sf to
12264         mention -mcpu=power9 sets these options.
12265         * doc/md.texi (PowerPC and IBM RS6000 constraints): Document the
12266         wB constraint.
12268 2016-06-15  Pitchumani Sivanupandi  <pitchumani.s@atmel.com>
12270         PR target/67353
12271         * config/avr/avr.c (avr_set_current_function): Warn misspelled
12272         interrupt/ signal handler if -Wmisspelled-isr flag is enabled.
12273         * config/avr/avr.opt (Wmisspelled-isr): New warning flag. Enabled
12274         by default to warn misspelled interrupt/ signal handler.
12275         * doc/invoke.texi (AVR Options): Document it. Update description
12276         for -nodevicelib option.
12278 2016-06-15  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
12280         * config/aarch64/aarch64-simd.md (aarch64_<sur>shll_n<mode>): Clean
12281         up parentheses.  Use GET_MODE_UNIT_BITSIZE.
12282         (aarch64_<sur>shll2_n<mode>): Likewise.
12284 2016-06-15  Ilya Enkovich  <ilya.enkovich@intel.com>
12286         PR middle-end/71529
12287         * ipa-chkp.c (chkp_build_instrumented_fndecl): Fix
12288         DECL_CONTEXT for copied arguments.
12290 2016-06-15  Alan Hayward  <alan.hayward@arm.com>
12292         PR tree-optimization/71483
12293         * tree-vect-loop.c (vectorizable_live_operation): Pick correct index
12294         for slp
12296 2016-06-15  Martin Liska  <mliska@suse.cz>
12298         * predict.c (tree_predict_by_opcode): Call predict_edge_def
12299         instead of predict_edge w/o a probability.
12301 2016-06-15  Alan Hayward  <alan.hayward@arm.com>
12303         PR tree-optimization/71439
12304         * tree-vect-loop.c (vect_analyze_loop_operations): Additional check for
12305         live PHIs.
12307 2016-06-15  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
12309         * ifcvt.c (bb_ok_for_noce_multiple_sets): Allow simple lowpart
12310         register subregs in SET_SRC.
12312 2016-06-15  Richard Biener  <rguenther@suse.de>
12314         * tree-vect-stmts.c (vectorizable_store): Remove strided grouped
12315         store restrictions.
12317 2016-06-15  Richard Biener  <rguenther@suse.de>
12319         * tree-vect-data-refs.c (vect_analyze_data_ref_dependence): Do
12320         not consider dependences between accesses that belong to the
12321         same group.
12322         (vect_analyze_data_ref_dependences): Do not analyze read-read
12323         or self-dependences.
12325 2016-06-14  David Malcolm  <dmalcolm@redhat.com>
12327         * spellcheck-tree.c: Include spellcheck-tree.h rather than
12328         spellcheck.h.
12329         (find_closest_identifier): Reimplement in terms of
12330         best_match<tree,tree>.
12331         * spellcheck-tree.h: New file.
12332         * spellcheck.c (struct edit_distance_traits<const char *>): New
12333         struct.
12334         (find_closest_string): Reimplement in terms of
12335         best_match<const char *, const char *>.
12336         * spellcheck.h (levenshtein_distance): Move prototype of tree-based
12337         overload to spellcheck-tree.h.
12338         (find_closest_identifier): Likewise.
12339         (struct edit_distance_traits<T>): New template.
12340         (class best_match): New class.
12342 2016-06-14  David Malcolm  <dmalcolm@redhat.com>
12344         * selftest-run-tests.c (selftest::run_tests): Call
12345         selftest::spellcheck_tree_c_tests.
12346         * selftest.h (selftest::spellcheck_tree_c_tests): New decl.
12347         * spellcheck-tree.c: Include selftest.h and stringpool.h.
12348         (selftest::test_find_closest_identifier): New function.
12349         (selftest::spellcheck_tree_c_tests): New function.
12350         * spellcheck.c (selftest::test_find_closest_string): Verify that
12351         the order of the vec does not affect the results for this case.
12352         (selftest::test_data): New array.
12353         (selftest::test_metric_conditions): New function.
12354         (selftest::spellcheck_c_tests): Add a test of case-comparison.
12355         Call selftest::test_metric_conditions.
12357 2016-06-14  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
12359         * config/rs6000/rs6000-builtin.def (commentary): Typo.
12360         (BU_P9_MISC_1): Likewise.
12361         (BU_P9_64BIT_MISC_0): Likewise.
12362         (BU_P9_MISC_0): Likewise.
12364 2016-06-14  David Malcolm  <dmalcolm@redhat.com>
12366         * gcc-rich-location.c
12367         (gcc_rich_location::add_fixit_misspelled_id): New method.
12368         * gcc-rich-location.h
12369         (gcc_rich_location::add_fixit_misspelled_id): Add decl.
12371 2016-06-14  Andreas Tobler  <andreast@gcc.gnu.org>
12373         * config/arm/freebsd.h: Only enable unaligned access for armv6 on
12374         FreeBSD 11 and above.
12376 2016-06-14  Uros Bizjak  <ubizjak@gmail.com>
12378         * config/i386/i386.md (signbittf2): Emit sse_movmskps for TARGET_SSE.
12380 2016-06-14  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
12382         * expmed.h: Close parenthesis in "at your option" in copyright
12383         boilerplate.
12384         * lower-subreg.h: Likewise.
12386 2016-06-14  Richard Biener  <rguenther@suse.de>
12388         PR middle-end/71526
12389         * genmatch.c (expr::gen_transform): Use in_type for comparisons
12390         if available.
12392 2015-06-14  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
12394         * config/aarch64/aarch64.c (aarch64_mask_and_shift_for_ubfiz_p):
12395         New function.
12396         (aarch64_rtx_costs): Use it.  Rewrite CONST_INT_P (op1) case to handle
12397         mask+shift version.
12398         * config/aarch64/aarch64-protos.h (aarch64_mask_and_shift_for_ubfiz_p):
12399         New prototype.
12400         * config/aarch64/aarch64.md (*andim_ashift<mode>_bfiz): Replace
12401         matching condition with aarch64_mask_and_shift_for_ubfiz_p.
12403 2016-06-14  Richard Biener  <rguenther@suse.de>
12405         PR tree-optimization/71522
12406         * tree-ssa.c (non_rewritable_lvalue_p): Do not rewrite non-float
12407         copying into float copying.
12409 2016-06-14  Jakub Jelinek  <jakub@redhat.com>
12411         PR tree-optimization/71520
12412         * tree-ssa-tail-merge.c (find_duplicate): Handle labels.
12413         (replace_block_by): Move user labels from bb1 to bb2.
12415 2016-06-14  Richard Biener  <rguenther@suse.de>
12417         PR middle-end/71310
12418         PR bootstrap/71510
12419         * expr.h (get_bit_range): Declare.
12420         * expr.c (get_bit_range): Export.
12421         * fold-const.c (optimize_bit_field_compare): Use get_bit_range and
12422         word_mode again to constrain the bitfield access.
12424 2016-06-14  Richard Biener  <rguenther@suse.de>
12426         PR tree-optimization/71521
12427         * tree-vrp.c (extract_range_from_binary_expr_1): Guard
12428         division int_const_binop against zero divisor.
12430 2016-06-13  Uros Bizjak  <ubizjak@gmail.com>
12432         * config/i386/i386.md (signbittf2): New expander.
12433         * config/i386/sse.md (ptesttf2): New insn pattern.
12435 2016-06-13  David Malcolm  <dmalcolm@redhat.com>
12437         PR bootstrap/71481
12438         * input.c (selftest::test_reading_source_line): Avoid reading from
12439         __FILE__ by creating a tempfile with known content and reading
12440         from that instead.
12442 2016-06-13  David Malcolm  <dmalcolm@redhat.com>
12444         * pretty-print.c (assert_pp_format_colored): Skip the test if
12445         GCC_COLORS is set.
12446         (test_pp_format): Remove comment about GCC_COLORS.
12448 2016-06-13  David Malcolm  <dmalcolm@redhat.com>
12450         * input.c (test_reading_source_line): Use SELFTEST_LOCATION.
12451         * pretty-print.c (assert_pp_format_va): Add location param and use
12452         it with ASSERT_STREQ_AT.
12453         (assert_pp_format): Add location param and pass it to
12454         assert_pp_format_va.
12455         (assert_pp_format_colored): Likewise.
12456         (ASSERT_PP_FORMAT_1): New.
12457         (ASSERT_PP_FORMAT_2): New.
12458         (ASSERT_PP_FORMAT_3): New.
12459         (test_pp_format): Provide SELFTEST_LOCATION throughout, either
12460         explicitly, or implicitly via the above macros.
12461         * selftest.c (selftest::pass): Use a selftest::location rather
12462         than file and line.
12463         (selftest::fail): Likewise.  Print the function name.
12464         (selftest::fail_formatted): Likewise.
12465         (selftest::assert_streq): Use a selftest::location rather than
12466         file and line.
12467         * selftest.h (selftest::location): New struct.
12468         (SELFTEST_LOCATION): New macro.
12469         (selftest::pass): Accept a const location & rather than file
12470         and line.
12471         (selftest::fail): Likewise.
12472         (selftest::fail_formatted): Likewise.
12473         (selftest::assert_streq): Likewise.
12474         (ASSERT_TRUE): Update for above changes, using SELFTEST_LOCATION.
12475         (ASSERT_FALSE): Likewise.
12476         (ASSERT_EQ): Likewise.
12477         (ASSERT_NE): Likewise.
12478         (ASSERT_STREQ): Likewise.
12479         (ASSERT_PRED1): Likewise.
12480         (ASSERT_STREQ_AT): New macro.
12482 2016-06-13  David Malcolm  <dmalcolm@redhat.com>
12484         * selftest.c (selftest::fail_formatted): New function.
12485         (selftest::assert_streq): New function.
12486         * selftest.h (selftests::fail_formatted): New decl.
12487         (selftest::assert_streq): New decl.
12488         (ASSERT_STREQ): Reimplement in terms of selftest::assert_streq.
12490 2016-06-13  Jeff Law  <law@redhat.com>
12492         PR tree-optimization/71403
12493         * tree-ssa-threadbackward.c
12494         (convert_and_register_jump_thread_path): No longer accept reference
12495         to path.  Do not pop items off the path anymore.
12496         (fsm_find_control_statement_thread_paths): Do not allow threading
12497         to a deeper loop nest.  Pop the last item off the path here rather
12498         than in convert_and_register_jump_thread_path.
12500 2016-06-13  Evandro Menezes  <e.menezes@samsung.com>
12501             Wilco Dijkstra  <Wilco.Dijkstra@arm.com>
12503         [AArch64] Emit division using the Newton series
12505         * config/aarch64/aarch64-protos.h
12506         (cpu_approx_modes): Add new member "division".
12507         (aarch64_emit_approx_div): Declare new function.
12508         * config/aarch64/aarch64.c
12509         (generic_approx_modes): New member "division".
12510         (exynosm1_approx_modes): Likewise.
12511         (xgene1_approx_modes): Likewise.
12512         (aarch64_emit_approx_div): Define new function.
12513         * config/aarch64/aarch64.md ("div<mode>3"): New expansion.
12514         * config/aarch64/aarch64-simd.md ("div<mode>3"): Likewise.
12515         * config/aarch64/aarch64.opt (-mlow-precision-div): Add new option.
12516         * doc/invoke.texi (-mlow-precision-div): Describe new option.
12518 2016-06-13  Evandro Menezes  <e.menezes@samsung.com>
12519             Wilco Dijkstra  <wilco.dijkstra@arm.com>
12521         [AArch64] Emit square root using the Newton series
12523         * config/aarch64/aarch64-protos.h
12524         (aarch64_emit_approx_rsqrt): Replace with new function
12525         "aarch64_emit_approx_sqrt".
12526         (cpu_approx_modes): New member "sqrt".
12527         * config/aarch64/aarch64.c
12528         (generic_approx_modes): New member "sqrt".
12529         (exynosm1_approx_modes): Likewise.
12530         (xgene1_approx_modes): Likewise.
12531         (aarch64_emit_approx_rsqrt): Replace with new function
12532         "aarch64_emit_approx_sqrt".
12533         (aarch64_override_options_after_change_1): Handle new option.
12534         * config/aarch64/aarch64-simd.md
12535         (rsqrt<mode>2): Use new function instead.
12536         (sqrt<mode>2): New expansion and insn definitions.
12537         * config/aarch64/aarch64.md: Likewise.
12538         * config/aarch64/aarch64.opt
12539         (mlow-precision-sqrt): Add new option description.
12540         * doc/invoke.texi (mlow-precision-sqrt): Likewise.
12542 2016-06-13  Evandro Menezes  <e.menezes@samsung.com>
12544         [AArch64] Add more choices for the reciprocal square root approximation
12546         Allow a target to prefer such operation depending on the operation mode.
12548         * config/aarch64/aarch64-protos.h
12549         (AARCH64_APPROX_MODE): New macro.
12550         (AARCH64_APPROX_{NONE,ALL}): Likewise.
12551         (cpu_approx_modes): New structure.
12552         (tune_params): New member "approx_modes".
12553         * config/aarch64/aarch64-tuning-flags.def
12554         (AARCH64_EXTRA_TUNE_APPROX_RSQRT): Remove macro.
12555         * config/aarch64/aarch64.c
12556         (generic_approx_modes): New core "cpu_approx_modes" structure.
12557         (exynosm1_approx_modes): Likewise.
12558         (xgene1_approx_modes): Likewise.
12559         (generic_tunings): New member "approx_modes".
12560         (cortexa35_tunings): Likewise.
12561         (cortexa53_tunings): Likewise.
12562         (cortexa57_tunings): Likewise.
12563         (cortexa72_tunings): Likewise.
12564         (exynosm1_tunings): Likewise.
12565         (thunderx_tunings): Likewise.
12566         (xgene1_tunings): Likewise.
12567         (use_rsqrt_p): New argument for the mode and use new member from
12568         "tune_params".
12569         (aarch64_builtin_reciprocal): Devise mode from builtin.
12570         (aarch64_optab_supported_p): New argument for the mode.
12571         * doc/invoke.texi (-mlow-precision-recip-sqrt): Reword description.
12573 2016-06-13  Kelvin Nilsen  <kelvin@gcc.gnu.org>
12575         * config/rs6000/rs6000.h (RS6000_BTM_COMMON): Add the
12576         RS6000_BTM_MODULO flag into the set of flags that are considered
12577         to be part of the common configuration.
12579 2016-06-13  Kelvin Nilsen  <kelvin@gcc.gnu.org>
12581         * config/rs6000/altivec.h (vec_absd): New macro for vector absolute
12582         difference unsigned.
12583         (vec_absdb): New macro for vector absolute difference unsigned
12584         byte.
12585         (vec_absdh): New macro for vector absolute difference unsigned
12586         half-word.
12587         (vec_absdw): New macro for vector absolute difference unsigned word.
12588         * config/rs6000/altivec.md (UNSPEC_VADU): New value.
12589         (vadu<mode>3): New insn.
12590         (*p9_vadu<mode>3): New insn.
12591         * config/rs6000/rs6000-builtin.def (vadub): New built-in
12592         definition.
12593         (vaduh): New built-in definition.
12594         (vaduw): New built-in definition.
12595         (vadu): New overloaded built-in definition.
12596         (vadub): New overloaded built-in definition.
12597         (vaduh): New overloaded built-in definition.
12598         (vaduw): New overloaded built-in definition.
12599         * config/rs6000/rs6000-c.c (altivec_overloaded_builtins): Add
12600         overloaded vector absolute difference unsigned functions.
12601         * doc/extend.texi (PowerPC AltiVec Built-in Functions): Document
12602         the ISA 3.0 vector absolute difference unsigned built-in functions.
12604 2016-06-13  Eric Botcazou  <ebotcazou@adacore.com>
12606         * tree-ssa-sccvn.c (vn_reference_lookup_3): Use a uniform test and
12607         update shared_lookup_references only once after changing operands.
12609 2016-06-13  Thomas Schwinge  <thomas@codesourcery.com>
12611         PR middle-end/71373
12612         * tree-nested.c (convert_nonlocal_omp_clauses)
12613         (convert_local_omp_clauses): Document missing OMP_CLAUSE_*.
12615         * tree-cfg.c (edge_to_cases_cleanup): Fix CASE_CHAIN typo.
12616         * tree.def (CASE_LABEL_EXPR): Likewise.
12618 2016-06-13  Bernd Edlinger  <bernd.edlinger@hotmail.de>
12620         PR bootstrap/71481
12621         * input.c (test_builtins): Fix an assertion.
12623 2016-06-13  Uros Bizjak  <ubizjak@gmail.com>
12625         * config/i386/i386.md (paritydi2): Use ix86_expand_setcc.
12626         (paritysi2): Ditto.
12627         (isinfxf2): Ditto.
12628         (isinf<mode>2): Ditto.
12630 2016-06-13  Uros Bizjak  <ubizjak@gmail.com>
12632         * ggc-tests.c (test_finalization): Only test need_finalization_p
12633         for GCC_VERSION >= 4003.
12635 2016-06-13  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
12637         * config/s390/vecintrin.h: Fix file description in comment.
12639 2016-06-13  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
12641         * config/s390/s390-builtin-types.def: Change builtin type naming
12642         scheme to match builtin-types.def.
12644 2016-06-13  Marc Glisse  <marc.glisse@inria.fr>
12646         * fold-const.c (optimize_minmax_comparison): Remove.
12647         (fold_comparison): Remove call to the above.
12648         * match.pd (MIN (X, Y) == X, MIN (X, 5) == 0, MIN (X, C1) < C2):
12649         New transformations.
12651 2016-06-13  Alan Hayward  <alan.hayward@arm.com>
12653         PR tree-optimization/71416
12654         * tree-vect-loop.c (vectorizable_live_operation): Let worklist have
12655         multiple entries
12657 2016-06-13  Martin Liska  <mliska@suse.cz>
12659         * predict.c (enum predictor_reason): Prefix enum with REASON_.
12660         (combine_predictions_for_insn): Likewise.
12661         (prune_predictions_for_bb): Likewise.
12662         (combine_predictions_for_bb): Likewise.
12664 2016-06-13  Richard Biener  <rguenther@suse.de>
12666         PR tree-optimization/71505
12667         * tree-vect-data-refs.c (vect_analyze_data_ref_accesses): Make
12668         assert match comment.
12670 2016-06-13  Marek Polacek  <polacek@redhat.com>
12672         PR middle-end/71476
12673         * gimplify.c (maybe_warn_switch_unreachable): Factored out of
12674         gimplify_switch_expr.
12675         (warn_switch_unreachable_r): New function.
12677 2016-06-13  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
12679         PR target/71379
12680         * config/s390/s390.c (s390_expand_builtin): Increase MAX_ARGS by
12681         one.
12683 2016-06-13  Richard Biener  <rguenther@suse.de>
12685         PR middle-end/64516
12686         * fold-const.c (fold_unary_loc): Preserve alignment when
12687         folding a VIEW_CONVERT_EXPR into a MEM_REF.
12689 2016-06-13  Martin Liska  <mliska@suse.cz>
12691         PR sanitizer/71458
12692         * toplev.c (process_options): Do not enable -fcheck-pointer-bounds
12693         w/ -fsanitize=bounds.
12695 2016-06-12  Uros Bizjak  <ubizjak@gmail.com>
12697         * config/i386/i386.c (ix86_init_builtins): Calculate
12698         FLOAT128_FTYPE_CONST_STRING function type only once.
12699         * doc/extend.texi (x86 Built-in Functions): Update text, __float128
12700         built-in functions are available for x86-32 and x86-64 targets.
12702 2016-06-12  Uros Bizjak  <ubizjak@gmail.com>
12704         PR target/71241
12705         * config/i386/i386.i386-builtin-types.def (CONST_STRING):
12706         New primitive type.
12707         (FLOAT128_FTYPE_CONST_STRING): New function type.
12708         * config/i386/i386.c (enum ix86_builtins) [IX86_BUILTIN_NANQ]: New.
12709         [IX86_BUILTIN_NANSQ]: Ditto.
12710         (ix86_fold_builtin): Handle IX86_BUILTIN_NANQ and IX86_BUILTIN_NANSQ.
12711         (ix86_init_builtin_types): Declare const_string_type_node.
12712         (ix86_init_builtins): Add __builtin_nanq and __builtin_nansq
12713         builtin functions.
12714         (ix86_expand_builtin): Handle IX86_BUILTIN_NANQ and IX86_BUILTIN_NANSQ.
12715         * doc/extend.texi (x86 Built-in Functions): Document
12716         __builtin_nanq and __builtin_nansq.
12718 2016-06-11  Jiong Wang  <jiong.wang@arm.com>
12720         PR target/71061
12721         * config/arm/arm-protos.h (arm_attr_length_pop_multi): New declaration.
12722         * config/arm/arm.c (arm_attr_length_pop_multi): New function to return
12723         length for pop patterns.
12724         (arm_attr_length_push_multi): Update comments.
12725         * config/arm/arm.md (*load_multiple_with_writeback): Set "length"
12726         attribute.
12727         (*pop_multiple_with_writeback_and_return): Likewise.
12728         (*pop_multiple_with_return): Likewise.
12730 2016-06-11  Segher Boessenkool  <segher@kernel.crashing.org>
12732         PR middle-end/71310
12733         * fold-const.c (optimize_bit_field_compare): Don't try to use
12734         word_mode unconditionally for reading the bit field, look at
12735         DECL_BIT_FIELD_REPRESENTATIVE instead.
12737 2016-06-11  Kugan Vivekanandarajah  <kuganv@linaro.org>
12739         PR middle-end/71478
12740         * tree-ssa-reassoc.c (reassociate_bb): Remove (-1) from ops list for
12741         vector integer type.
12743 2016-06-10  Jakub Jelinek  <jakub@redhat.com>
12745         PR middle-end/71494
12746         * tree-nested.c (convert_nonlocal_reference_stmt): For GIMPLE_GOTO
12747         without LABEL_DECL, set *handled_ops_p to false instead of true.
12749 2016-06-10  Martin Sebor  <msebor@redhat.com>
12751         PR c/71392
12752         * builtin-attrs.def (ATTR_NOTHROW_NONNULL_LEAF_LIST): New macro.
12753         (ATTR_NOTHROW_NONNULL_TYPEGENERIC_LEAF): Same.
12754         * builtins.def (BUILT_IN_SADD_OVERFLOW, BUILT_IN_SADDL_OVERFLOW): Use
12755         them.
12756         (BUILT_IN_SADDLL_OVERFLOW, BUILT_IN_SSUB_OVERFLOW): Same.
12757         (BUILT_IN_SSUBL_OVERFLOW, BUILT_IN_SSUBLL_OVERFLOW): Same.
12758         (BUILT_IN_SMUL_OVERFLOW, BUILT_IN_SMULL_OVERFLOW): Same.
12759         (BUILT_IN_SMULLL_OVERFLOW, BUILT_IN_UADD_OVERFLOW): Same.
12760         (BUILT_IN_UADDL_OVERFLOW, BUILT_IN_UADDLL_OVERFLOW): Same.
12761         (BUILT_IN_USUB_OVERFLOW, BUILT_IN_USUBL_OVERFLOW): Same.
12762         (BUILT_IN_USUBLL_OVERFLOW, BUILT_IN_UMUL_OVERFLOW): Same.
12763         (BUILT_IN_UMULL_OVERFLOW, BUILT_IN_UMULLL_OVERFLOW): Same.
12765 2016-06-10  Bernd Edlinger  <bernd.edlinger@hotmail.de>
12767         * config/arm/arm.h (pool_vector_label,
12768         return_used_this_function): Remove.
12770 2016-06-10  Jeff Law  <law@redhat.com>
12772         PR tree-optimization/71335
12773         * tree-ssa-threadbackward.c (profitable_jump_thread_path): Filter out
12774         zero length paths here.
12775         (convert_and_register_jump_thread_path): Remove hacks related to
12776         duplicated blocks in the jump thread path.
12777         (fsm_find_control_statement_thread_paths): Avoid putting the same
12778         block on the thread path twice, but ensure the thread path is
12779         unchanged from the caller's point of view.
12781 2016-06-10  Jan Hubicka  <hubicka@ucw.cz>
12783         * predict.c (predict_loops): Remove PRED_LOOP_BRANCH.
12784         * predict.def (PRED_LOOP_BRANCH): Remove.
12786 2016-06-10  David Malcolm  <dmalcolm@redhat.com>
12788         * Makefile.in (OBJS): Add ggc-tests.o.
12789         (GTFILES): Add ggc-tests.c.
12790         * ggc-tests.c: New file.
12791         * selftest-run-tests.c (selftest::run_tests): Call
12792         selftest::ggc_tests_c_tests.
12793         * selftest.h (selftest::ggc_tests_c_tests): New prototype.
12795 2016-06-10  Alexander Monakov  <amonakov@ispras.ru>
12797         * match.pd (-1 / B < A): Use :c to avoid pattern duplication.
12799 2016-06-10  Maxim Ostapenko  <m.ostapenko@samsung.com>
12801         PR sanitizer/71480
12802         * varasm.c (place_block_symbol): Adjust alignment for asan protected
12803         STRING_CSTs even if TREE_CONSTANT_POOL_ADDRESS_P.
12805 2016-06-10  Jan Hubicka  <hubicka@ucw.cz>
12807         * profile.c: Include cfgloop.h.
12808         (branch_prob): Compute estimated number of iterations.
12809         * tree-ssa-loop-niter.c (estimate_numbers_of_iterations_loop): Do not
12810         recompute estimate number of iterations from profile.
12812 2016-06-10  Bernd Edlinger  <bernd.edlinger@hotmail.de>
12814         PR inline-asm/68843
12815         * reg-stack.c (check_asm_stack_operands): Explicit input arguments
12816         must be grouped on top of stack.  Don't force early clobber
12817         on ordinary reg outputs.
12819 2016-06-10  Richard Biener  <rguenther@suse.de>
12821         * targhooks.c (default_builtin_vectorization_cost): Adjust
12822         vec_construct cost.
12824 2016-06-10  Richard Biener  <rguenther@suse.de>
12826         * gimple-fold.c (gimple_fold_builtin_memory_op): Make sure
12827         to fold the RHS to a constant if possible.
12829 2016-06-10  Thomas Schwinge  <thomas@codesourcery.com>
12831         PR middle-end/71373
12832         * tree-nested.c (convert_nonlocal_omp_clauses)
12833         (convert_local_omp_clauses): Handle OMP_CLAUSE_ASYNC,
12834         OMP_CLAUSE_WAIT, OMP_CLAUSE_INDEPENDENT, OMP_CLAUSE_AUTO,
12835         OMP_CLAUSE__CACHE_, OMP_CLAUSE_TILE.
12837         * gimplify.c (gimplify_adjust_omp_clauses): Discard
12838         OMP_CLAUSE_TILE.
12839         * omp-low.c (scan_sharing_clauses): Don't expect OMP_CLAUSE_TILE.
12841         * omp-low.c (scan_sharing_clauses): Don't expect
12842         OMP_CLAUSE__CACHE_.
12844 2016-06-10  Alan Hayward  <alan.hayward@arm.com>
12846         PR tree-optimization/71407
12847         PR tree-optimization/71416
12848         * tree-vect-loop.c (vectorizable_live_operation): Use vectype for
12849         BIT_FIELD_REF type.
12851 2016-06-10  Richard Biener  <rguenther@suse.de>
12853         PR middle-end/71477
12854         * cfgloop.c (alloc_loop): Initialize nb_iterations_likely_upper_bound.
12856 2016-06-09  Eric Botcazou  <ebotcazou@adacore.com>
12858         * df-problems.c (df_note_bb_compute): Guard use of DF_INSN_INFO_GET.
12860 2016-06-09  Vladimir Makarov  <vmakarov@redhat.com>
12861             Jiong Wang  <jiong.wang@arm.com>
12863         PR rtl-optimization/70751
12864         * lra-constraints.c (process_alt_operands): Recognize Non-pseudo
12865         spilled into memory.
12867 2016-06-09  Jonathan Yong  <10walls@gmail.com>
12869         Revert:
12870         2015-09-21  Jonathan Yong  <10walls@gmail.com>
12872         * config/i386/cygwin.h (STARTFILE_SPEC): Explicitly search
12873         sysroot/usr/lib/32api for additional win32 libraries,
12874         fixes failing Cygwin bootstrapping.
12876 2016-06-09  Marcin Baczyński  <marbacz@gmail.com>
12878         * diagnostic.h (diagnostic_line_cutoff, diagnostic_flush_buffer):
12879         Delete.
12881 2016-06-09  David Malcolm  <dmalcolm@redhat.com>
12883         PR bootstrap/71471
12884         * pretty-print.c (pp_indent): Specify that %p is printed in a
12885         host-dependent manner.
12886         (test_pp_format): Remove the test for %p.
12888 2016-06-09  Maciej W. Rozycki  <macro@imgtec.com>
12890         * config/mips/mips.c (mips_output_jump): Fix formatting.
12892 2016-06-09  Richard Biener  <rguenther@suse.de>
12894         PR tree-optimization/71462
12895         * tree-ssa-loop-manip.c (find_uses_to_rename): Guard against
12896         removed blocks.
12898 2016-06-09  Martin Liska  <mliska@suse.cz>
12900         * predict.c (dump_prediction): Add new argument.
12901         (enum predictor_reason): New enum.
12902         (struct predictor_hash): New struct.
12903         (predictor_hash::hash): New function.
12904         (predictor_hash::equal): Likewise.
12905         (not_removed_prediction_p): New function.
12906         (prune_predictions_for_bb): Likewise.
12907         (combine_predictions_for_bb): Prune predictions.
12909 2016-06-09  Martin Liska  <mliska@suse.cz>
12911         * predict.c (filter_predictions): New function.
12912         (remove_predictions_associated_with_edge): Use the filter
12913         function.
12914         (equal_edge_p): New function.
12916 2016-06-09  Stefan Bruens  <stefan.bruens@rwth-aachen.de>
12918         * doc/invoke.texi (ARM Options): Use lexicographical ordering.
12919         Correct usage of @samp vs @option, add @samp where appropriate.
12920         Add -march={armv6k,armv6z,arm6zk}, remove -march=ep9312.
12921         Add armv6s-m and document it, as it is no official ARM name.
12923 2016-06-09  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
12925         * ifcvt.c (struct noce_if_info): Add transform_name field.
12926         (noce_try_move): Set if_info->transform_name to the function name.
12927         (noce_try_ifelse_collapse): Likewise.
12928         (noce_try_store_flag): Likewise.
12929         (noce_try_inverse_constants): Likewise.
12930         (noce_try_store_flag_constants): Likewise.
12931         (noce_try_addcc): Likewise.
12932         (noce_try_store_flag_mask): Likewise.
12933         (noce_try_cmove): Likewise.
12934         (noce_try_cmove_arith): Likewise.
12935         (noce_try_minmax): Likewise.
12936         (noce_try_abs): Likewise.
12937         (noce_try_sign_mask): Likewise.
12938         (noce_try_bitop): Likewise.
12939         (noce_convert_multiple_sets): Likewise.
12940         (noce_process_if_block): Print if_info->transform_name to
12941         dump_file if transformation succeeded.
12943 2016-06-09  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
12945         * config/arm/cortex-a57.md (cortex_a57_alu):
12946         Handle csel type.
12948 2016-06-08  Martin Sebor  <msebor@redhat.com>
12949             Jakub Jelinek  <jakub@redhat.com>
12951         PR c++/70507
12952         PR c/68120
12953         * builtins.def (BUILT_IN_ADD_OVERFLOW_P, BUILT_IN_SUB_OVERFLOW_P,
12954         BUILT_IN_MUL_OVERFLOW_P): New builtins.
12955         * builtins.c: Include gimple-fold.h.
12956         (fold_builtin_arith_overflow): Handle
12957         BUILT_IN_{ADD,SUB,MUL}_OVERFLOW_P.
12958         (fold_builtin_3): Likewise.
12959         * doc/extend.texi (Integer Overflow Builtins): Document
12960         __builtin_{add,sub,mul}_overflow_p.
12962 2016-06-08  Jose E. Marchesi  <jose.marchesi@oracle.com>
12964         * config/sparc/driver-sparc.c (cpu_names): Fix the entry for the
12965         SPARC-M7 and add an entry for SPARC-S7 cpus (Sonoma).
12967 2016-06-08  Alan Lawrence  <alan.lawrence@arm.com>
12969         * config/aarch64/aarch64.c (aarch64_function_arg_alignment):
12970         Rewrite, looking one level down for records and arrays.
12972 2016-06-08  David Malcolm  <dmalcolm@redhat.com>
12974         * pretty-print.c: Include "selftest.h".
12975         (pp_format): Fix comment.
12976         (identifier_to_locale): Likewise.
12977         (selftest::test_basic_printing): New function.
12978         (selftest::assert_pp_format): New function.
12979         (selftest::test_pp_format): New function.
12980         (selftest::pretty_print_c_tests): New function.
12981         * selftest-run-tests.c (selftest::run_tests): Call
12982         selftest::pretty_print_c_tests.
12983         * selftest.h (pretty_print_c_tests): New declaration.
12985 2016-06-07  Jan Hubicka  <hubicka@ucw.cz>
12987         * invoke.texi (max-loop-headers-insns): Document.
12988         * params.def (PARAM_MAX_LOOP_HEADER_INSNS): New.
12989         * tree-ssa-loop-ch.c (should_duplicate_loop_header_p): Update comment.
12990         (ch_base::copy_headers): Use PARAM_MAX_LOOP_HEADER_INSNS.
12992 2016-06-08  Richard Biener  <rguenther@suse.de>
12994         * tree-vect-stmts.c (vectorizable_load): Remove restrictions
12995         on strided SLP loads and fall back to scalar loads in case
12996         we can't chunk them.
12998 2016-06-08  Richard Biener  <rguenther@suse.de>
13000         PR tree-optimization/71452
13001         * tree-ssa.c (non_rewritable_lvalue_p): Make sure that the
13002         type used for the SSA rewrite has enough precision to cover
13003         the dynamic type of the location.
13005 2016-06-08  Jakub Jelinek  <jakub@redhat.com>
13006             Richard Biener  <rguenther@suse.de>
13008         PR c++/71448
13009         * fold-const.c (fold_comparison): Handle CONSTANT_CLASS_P (base0)
13010         the same as DECL_P (base0) for indirect_base0.  Use equality_code
13011         in one further place.
13013 2016-06-08  Richard Sandiford  <richard.sandiford@arm.com>
13015         * expmed.c (store_bit_field_1): Do not restrict a multiword op0
13016         to one word if the field is known to overlap other words.
13017         (extract_bit_field_1): Likewise.
13018         (store_split_bit_field): Remove compensating code.
13019         (extract_split_bit_field): Likewise.
13021 2016-06-08  Bernd Schmidt  <bschmidt@redhat.com>
13023         PR debug/71432
13024         PR ada/71413
13025         * tree-ssa-strlen.c (handle_builtin_memcmp): Ignore debug insns.
13027 2016-06-08  Jiong Wang  <jiong.wang@arm.com>
13029         * config/aarch64/aarch64-builtins.def (faddp): New builtins for modes in
13030         VDQF.
13031         * config/aarch64/aarch64-simd.md (aarch64_faddp<mode>): New.
13032         (arch64_addpv4sf): Delete.
13033         (reduc_plus_scal_v4sf): Use "gen_aarch64_faddpv4sf" instead of
13034         "gen_aarch64_addpv4sf".
13035         * config/aarch64/arm_neon.h (vpadd_f32): Remove inline assembly.  Use
13036         builtin.
13037         (vpadds_f32): Likewise.
13038         (vpaddq_f32): Likewise.
13039         (vpaddq_f64): Likewise.
13041 2016-06-08  Jiong Wang  <jiong.wang@arm.com>
13043         * config/aarch64/aarch64-builtins.def (fabd): New builtins for modes
13044         VALLF.
13045         * config/aarch64/aarch64-simd.md (fabd<mode>_3): Extend modes from VDQF
13046         to VALLF.  Rename to "fabd<mode>3".
13047         "*fabd_scalar<mode>3): Delete.
13048         * config/aarch64/arm_neon.h (vabds_f32): Remove inline assembly.
13049         Use builtin.
13050         (vabdd_f64): Likewise.
13051         (vabd_f32): Likewise.
13052         (vabd_f64): Likewise.
13053         (vabdq_f32): Likewise.
13054         (vabdq_f64): Likewise.
13056 2016-06-08  Jiong Wang  <jiong.wang@arm.com>
13058         * config/aarch64/aarch64-builtins.def (rsqrts): New builtins for modes
13059         VALLF.
13060         * config/aarch64/aarch64-simd.md (aarch64_rsqrts_<mode>3): Rename to
13061         "aarch64_rsqrts<mode>".
13062         * config/aarch64/aarch64.c (get_rsqrts_type): Update gen* name.
13063         * config/aarch64/arm_neon.h (vrsqrtss_f32): Remove inline assembly.  Use
13064         builtin.
13065         (vrsqrtsd_f64): Likewise.
13066         (vrsqrts_f32): Likewise.
13067         (vrsqrts_f64): Likewise.
13068         (vrsqrtsq_f32): Likewise.
13069         (vrsqrtsq_f64): Likewise.
13071 2016-06-08  Jiong Wang  <jiong.wang@arm.com>
13073         * config/aarch64/aarch64-builtins.def (rsqrte): New builtins for modes
13074         VALLF.
13075         * config/aarch64/aarch64-simd.md (aarch64_rsqrte_<mode>2): Rename to
13076         "aarch64_rsqrte<mode>".
13077         * config/aarch64/aarch64.c (get_rsqrte_type): Update gen* name.
13078         * config/aarch64/arm_neon.h (vrsqrts_f32): Remove inline assembly.  Use
13079         builtin.
13080         (vrsqrted_f64): Likewise.
13081         (vrsqrte_f32): Likewise.
13082         (vrsqrte_f64): Likewise.
13083         (vrsqrteq_f32): Likewise.
13084         (vrsqrteq_f64): Likewise.
13086 2016-06-08  Jiong Wang  <jiong.wang@arm.com>
13088         * config/aarch64/aarch64-builtins.def (scvtf): Register vector modes.
13089         (ucvtf): Likewise.
13090         (fcvtzs): Likewise.
13091         (fcvtzu): Likewise.
13092         * config/aarch64/aarch64-simd.md
13093         (<FCVT_F2FIXED:fcvt_fixed_insn><VDQF:mode>3): New.
13094         (<FCVT_FIXED2F:fcvt_fixed_insn><VDQ_SDI:mode>3): Likewise.
13095         * config/aarch64/arm_neon.h (vcvt_n_f32_s32): Remove inline assembly.
13096         Use builtin.
13097         (vcvt_n_f32_u32): Likewise.
13098         (vcvt_n_s32_f32): Likewise.
13099         (vcvt_n_u32_f32): Likewise.
13100         (vcvtq_n_f32_s32): Likewise.
13101         (vcvtq_n_f32_u32): Likewise.
13102         (vcvtq_n_f64_s64): Likewise.
13103         (vcvtq_n_f64_u64): Likewise.
13104         (vcvtq_n_s32_f32): Likewise.
13105         (vcvtq_n_s64_f64): Likewise.
13106         (vcvtq_n_u32_f32): Likewise.
13107         (vcvtq_n_u64_f64): Likewise.
13108         * config/aarch64/iterators.md (VDQ_SDI): New mode iterator.
13109         (VSDQ_SDI): Likewise.
13110         (fcvt_target): Support V4DI, V4SI and V2SI.
13111         (FCVT_TARGET): Likewise.
13113 2016-06-08  Jiong Wang  <jiong.wang@arm.com>
13115         * config/aarch64/aarch64-builtins.c (TYPES_BINOP_USS): New
13116         (TYPES_BINOP_SUS): Likewise.
13117         (aarch64_simd_builtin_data): Update include file name.
13118         (aarch64_builtins): Likewise.
13119         * config/aarch64/aarch64-simd-builtins.def (scvtf): New entries
13120         for conversion between scalar float-point and fixed-point.
13121         (ucvtf): Likewise.
13122         (fcvtzs): Likewise.
13123         (fcvtzu): Likewise.
13124         * config/aarch64/aarch64.md
13125         (<FCVT_F2FIXED:fcvt_fixed_insn><GPF:mode>3: New
13126         pattern for conversion between scalar float to fixed-pointer.
13127         (<FCVT_FIXED2F:fcvt_fixed_insn><GPI:mode>: Likewise.
13128         (UNSPEC_FCVTZS): New UNSPEC enumeration.
13129         (UNSPEC_FCVTZU): Likewise.
13130         (UNSPEC_SCVTF): Likewise.
13131         (UNSPEC_UCVTF): Likewise.
13132         * config/aarch64/arm_neon.h (vcvtd_n_f64_s64): Remove inline assembly.
13133         Use builtin.
13134         (vcvtd_n_f64_u64): Likewise.
13135         (vcvtd_n_s64_f64): Likewise.
13136         (vcvtd_n_u64_f64): Likewise.
13137         (vcvtd_n_f32_s32): Likewise.
13138         (vcvts_n_f32_u32): Likewise.
13139         (vcvtd_n_s32_f32): Likewise.
13140         (vcvts_n_u32_f32): Likewise.
13141         * config/aarch64/iterators.md (fcvt_target): Support integer to float
13142         mapping.
13143         (FCVT_TARGET): Likewise.
13144         (FCVT_FIXED2F): New iterator.
13145         (FCVT_F2FIXED): Likewise.
13146         (fcvt_fixed_insn): New define_int_attr.
13148 2016-06-07  Jan Hubicka  <hubicka@ucw.cz>
13150         * predict.c (pass_strip_predict_hints::execute): Cleanup CFG if
13151         some statements was removed.
13153 2016-06-08  Alan Hayward  <alan.hayward@arm.com>
13155         * tree-vect-data-refs.c (vect_analyze_data_refs): Remove debug newline.
13156         * tree-vect-loop-manip.c (slpeel_make_loop_iterate_ntimes): likewise.
13157         (vect_can_advance_ivs_p): likewise.
13158         (vect_update_ivs_after_vectorizer): likewise.
13159         * tree-vect-loop.c (vect_determine_vectorization_factor): likewise.
13160         (vect_analyze_scalar_cycles_1): likewise.
13161         (vect_analyze_loop_operations): likewise.
13162         (report_vect_op): likewise.
13163         (vect_is_slp_reduction): likewise.
13164         (vect_is_simple_reduction): likewise.
13165         (get_initial_def_for_induction): likewise.
13166         (vect_transform_loop): likewise.
13167         * tree-vect-patterns.c (vect_recog_dot_prod_pattern): likewise.
13168         (vect_recog_sad_pattern): likewise.
13169         (vect_recog_widen_sum_pattern): likewise.
13170         (vect_recog_widening_pattern): likewise.
13171         (vect_recog_divmod_pattern): likewise.
13172         * tree-vect-slp.c (vect-build-slp_tree_1): likewise.
13173         (vect_analyze_slp_instance): likewise.
13174         (vect_transform_slp_perm_load): likewise.
13175         (vect_schedule_slp_instance): likewise.
13177 2016-06-07  Jan Hubicka  <hubicka@ucw.cz>
13179         * predict.c (predict_iv_comparison): Mention that heuristics is broken.
13180         (return_prediction): PRED_CONST_RETURN predict return as not taken.
13181         * predict.def (PRED_CONTINUE): Change hitrate 50->67
13182         (PRED_LOOP_BRANCH): Document predictor as broken.
13183         (PRED_LOOP_EXIT): Change hitrate 91->92.
13184         (PRED_LOOP_EXTRA_EXIT): Change hitrate 91->83.
13185         (PRED_POINTER, PRED_TREE_POINTER): Change hitrate 85->70.
13186         (PRED_OPCODE_POSITIVE): Change hitrate 79->64.
13187         (PRED_OPCODE_NONEQUAL): Change hitrate 91->66.
13188         (PRED_TREE_OPCODE_POSITIVE): Change hitrate 73->64
13189         (PRED_TREE_OPCODE_NONEQUAL): Chnage hitrate 72->66
13190         (PRED_CALL): Chane hitrate 71->67.
13191         (PRED_TREE_EARLY_RETURN): Document issues, change hitrate 61->54.
13192         (PRED_GOTO): Document as unused right now.
13193         (PRED_CONST_RETURN): Change hitrate 67->69
13194         (PRED_NEGATIVE_RETURN): Change hitrate 96->98
13195         (PRED_NULL_RETURN): Change hitrate 91->90.
13196         (PRED_LOOP_IV_COMPARE_GUESS): Change hitrate to 98.
13197         (PRED_FORTRAN_FAIL_ALLOC): Change hitrate to 62; document issues.
13198         (PRED_FORTRAN_SIZE_ZERO): Change hitrate to 99.
13200 2016-06-07  Bill Seurer  <seurer@linux.vnet.ibm.com>
13202         * config/rs6000/altivec.h: Add __builtin_vec_mul.
13203         * config/rs6000/rs6000-builtin.def (vec_mul): Change vec_mul to a
13204         special case Altivec builtin.
13205         * config/rs6000/rs6000-c.c (altivec_overloaded_builtins): Remove
13206         VSX_BUILTIN_VEC_MUL (replaced with special case code).
13207         * config/rs6000/rs6000-c.c (altivec_resolve_overloaded_builtin): Add
13208         code for ALTIVEC_BUILTIN_VEC_MUL.
13209         * config/rs6000/rs6000.c (altivec_init_builtins): Add definition
13210         for __builtin_vec_mul.
13212 2016-06-07  Peter Bergner  <bergner@vnet.ibm.com>
13214         * doc/invoke.texi (RS/6000 and PowerPC Options): Document -mhtm and
13215         -mno-htm.
13217 2016-06-07  David Malcolm  <dmalcolm@redhat.com>
13219         * spellcheck.c (selftest::test_find_closest_string): New function.
13220         (spellcheck_c_tests): Call the above.
13222 2016-06-07  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
13224         * simplify-rtx.c (simplify_cond_clz_ctz): Delete 'mode' local variable.
13226 2016-06-07  Jakub Jelinek  <jakub@redhat.com>
13228         * config/i386/sse.md (avx_vec_concat<mode>): Add v=v,vm and
13229         Yv=Yv,C alternatives.
13231 2016-06-07  Richard Biener  <rguenther@suse.de>
13233         PR c/61564
13234         * common.opt (ffast-math): Make Optimization.
13236 2016-06-07  Simon Dardis  <simon.dardis@imgtec.com>
13237             Prachi Godbole  <prachi.godbole@imgtec.com>
13239         * config/mips/p5600.md (p5600_fpu_fadd): Remove checking for
13240         `fabs' and `fneg' type attributes.
13241         (p5600_fpu_fabs): Add `fmove' to the comment.
13243 2016-06-07  Jan Hubicka  <hubicka@ucw.cz>
13245         * gimple.c: Include builtins.h
13246         (gimple_inexpensive_call_p): New function.
13247         * gimple.h (gimple_inexpensive_call_p): Declare.
13248         * tree-ssa-loop-ch.c (should_duplicate_loop_header_p): Use it.
13249         * tree-ssa-loop-ivcanon.c (tree_estimate_loop_size): Likewise;
13250         fix formatting.
13252 2016-06-07  Paolo Carlini  <paolo.carlini@oracle.com>
13254         * diagnostic.c (diagnostic_impl, diagnostic_n_impl): New.
13255         (inform, inform_at_rich_loc, inform_n, warning, warning_at,
13256         warning_at_rich_loc, warning_n, pedwarn, permerror,
13257         permerror_at_rich_loc, error, error_n, error_at, error_at_rich_loc,
13258         sorry, fatal_error, internal_error, internal_error_no_backtrace):
13259         Use the above.
13261 2016-06-07  Richard Biener  <rguenther@suse.de>
13263         PR tree-optimization/71428
13264         * tree-ssa-math-opts.c (perform_symbolic_merge): Properly distinguish
13265         BIT_FIELD_REF op vs. load.
13267 2016-06-07  Richard Biener  <rguenther@suse.de>
13269         PR middle-end/71423
13270         * match.pd ((X | ~Y) -> Y <= X): Properly invert the comparison
13271         for signed ops.
13273 2016-06-06  John David Anglin  <danglin@gcc.gnu.org>
13275         * config/pa/pa.md (call): Generate indirect long calls to non-local
13276         functions on TARGET_64BIT.
13277         (call_value): Likewise.
13279 2016-06-06  John David Anglin  <danglin@gcc.gnu.org>
13281         * config/pa/pa.md (call_val_reg_64bit): Remove "reg: DI " clobber from
13282         pattern and subsequent splitters.
13283         (call_val_reg_64bit_post_reload): Likewise.
13285 2016-06-07  Kugan Vivekanandarajah  <kuganv@linaro.org>
13287         PR middle-end/71408
13288         * tree-ssa-reassoc.c (zero_one_operation): Fix NEGATE_EXPR operand for
13289         propagate_op_to_single_use.
13291 2016-06-07  Kugan Vivekanandarajah  <kuganv@linaro.org>
13293         PR middle-end/71281
13294         * tree-ssa-reassoc.c (reassociate_bb): Set uid for negate stmt.
13296 2016-06-07  Uros Bizjak  <ubizjak@gmail.com>
13298         * config/i386/i386.h (enum ix86_enitity): Add X86_DIRFLAG.
13299         (enum x86_dirflag_state): New enum.
13300         (NUM_MODES_FOR_MODE_SWITCHING): Add X86_DIRFLAG_ANY.
13301         (machine_function): Remove needs_cld.
13302         (ix86_current_function_needs_cld): Remove.
13303         * config/i386/i386.c (ix86_set_func_type): Set
13304         ix86_optimize_mode_switching[X86_DIRFLAG] to 1.
13305         (ix86_expand_prologue): Do not emit CLD here.
13306         (ix86_dirflag_mode_needed): New function.
13307         (ix86_dirflag_mode_entry): Ditto.
13308         (ix86_mode_needed): Handle X86_DIRFLAG entity.
13309         (ix86_mode_after): Ditto.
13310         (ix86_mode_entry): Ditto.
13311         (ix86_mode_exit): Ditto.
13312         (ix86_emit_mode_set): Ditto.
13313         * config/i386/i386.md (strmov_singleop): Set
13314         ix86_optimize_mode_switching[X86_DIRFLAG] to 1 for TARGET_CLD.
13315         Do not set ix86_current_function_needs_cld.
13316         (rep_mov): Ditto.
13317         (strset_singleop): Ditto.
13318         (rep_stos): Ditto.
13319         (cmpstrnqi_nz_1): Ditto.
13320         (cmpstrnqi_1): Ditto.
13321         (strlenqi_1): Ditto.
13323 2016-06-06  Jakub Jelinek  <jakub@redhat.com>
13325         PR tree-optimization/71259
13326         * tree-vect-slp.c (vect_get_constant_vectors): For
13327         VECTOR_BOOLEAN_TYPE_P, return all ones constant instead of
13328         one for constant op, and use COND_EXPR for non-constant.
13330 2016-06-06  David Malcolm  <dmalcolm@redhat.com>
13332         * Makefile.in (OBJS): Add function-tests.o,
13333         hash-map-tests.o, hash-set-tests.o, rtl-tests.o,
13334         selftest-run-tests.o.
13335         (OBJS-libcommon): Add selftest.o.
13336         (OBJS-libcommon-target): Add selftest.o.
13337         (all.internal): Add "selftest".
13338         (all.cross): Likewise.
13339         (selftest): New phony target.
13340         (s-selftest): New target.
13341         (selftest-gdb): New phony target.
13342         (COLLECT2_OBJS): Add selftest.o.
13343         * bitmap.c: Include "selftest.h".
13344         (selftest::test_gc_alloc): New function.
13345         (selftest::test_set_range): New function.
13346         (selftest::test_clear_bit_in_middle): New function.
13347         (selftest::test_copying): New function.
13348         (selftest::test_bitmap_single_bit_set_p): New function.
13349         (selftest::bitmap_c_tests): New function.
13350         * common.opt (fself-test): New.
13351         * diagnostic-show-locus.c: Include "selftest.h".
13352         (make_range): New function.
13353         (test_range_contains_point_for_single_point): New function.
13354         (test_range_contains_point_for_single_line): New function.
13355         (test_range_contains_point_for_multiple_lines): New function.
13356         (assert_eq): New function.
13357         (test_get_line_width_without_trailing_whitespace): New function.
13358         (selftest::diagnostic_show_locus_c_tests): New function.
13359         * et-forest.c: Include "selftest.h".
13360         (selftest::test_single_node): New function.
13361         (selftest::test_simple_tree): New function.
13362         (selftest::test_disconnected_nodes): New function.
13363         (selftest::et_forest_c_tests): New function.
13364         * fold-const.c: Include "selftest.h".
13365         (selftest::assert_binop_folds_to_const): New function.
13366         (selftest::assert_binop_folds_to_nonlvalue): New function.
13367         (selftest::test_arithmetic_folding): New function.
13368         (selftest::fold_const_c_tests): New function.
13369         * function-tests.c: New file.
13370         * gimple.c: Include "selftest.h".
13371         Include "gimple-pretty-print.h".
13372         (selftest::verify_gimple_pp): New function.
13373         (selftest::test_assign_single): New function.
13374         (selftest::test_assign_binop): New function.
13375         (selftest::test_nop_stmt): New function.
13376         (selftest::test_return_stmt): New function.
13377         (selftest::test_return_without_value): New function.
13378         (selftest::gimple_c_tests): New function.
13379         * hash-map-tests.c: New file.
13380         * hash-set-tests.c: New file.
13381         * input.c: Include "selftest.h".
13382         (selftest::assert_loceq): New function.
13383         (selftest::test_accessing_ordinary_linemaps): New function.
13384         (selftest::test_unknown_location): New function.
13385         (selftest::test_builtins): New function.
13386         (selftest::test_reading_source_line): New function.
13387         (selftest::input_c_tests): New function.
13388         * rtl-tests.c: New file.
13389         * selftest-run-tests.c: New file.
13390         * selftest.c: New file.
13391         * selftest.h: New file.
13392         * spellcheck.c: Include "selftest.h".
13393         (selftest::levenshtein_distance_unit_test_oneway): New function,
13394         adapted from testsuite/gcc.dg/plugin/levenshtein_plugin.c.
13395         (selftest::levenshtein_distance_unit_test): Likewise.
13396         (selftest::spellcheck_c_tests): Likewise.
13397         * toplev.c: Include selftest.h.
13398         (toplev::run_self_tests): New.
13399         (toplev::main): Handle -fself-test.
13400         * toplev.h (toplev::run_self_tests): New.
13401         * tree.c: Include "selftest.h".
13402         (selftest::test_integer_constants): New function.
13403         (selftest::test_identifiers): New function.
13404         (selftest::test_labels): New function.
13405         (selftest::tree_c_tests): New function.
13406         * tree-cfg.c: Include "selftest.h".
13407         (selftest::push_fndecl): New function.
13408         (selftest::test_linear_chain): New function.
13409         (selftest::test_diamond): New function.
13410         (selftest::test_fully_connected): New function.
13411         (selftest::tree_cfg_c_tests): New function.
13412         * vec.c: Include "selftest.h".
13413         (selftest::safe_push_range): New function.
13414         (selftest::test_quick_push): New function.
13415         (selftest::test_safe_push): New function.
13416         (selftest::test_truncate): New function.
13417         (selftest::test_safe_grow_cleared): New function.
13418         (selftest::test_pop): New function.
13419         (selftest::test_safe_insert): New function.
13420         (selftest::test_ordered_remove): New function.
13421         (selftest::test_unordered_remove): New function.
13422         (selftest::test_block_remove): New function.
13423         (selftest::reverse_cmp): New function.
13424         (selftest::test_qsort): New function.
13425         (selftest::vec_c_tests): New function.c.
13426         * wide-int.cc: Include selftest.h and wide-int-print.h.
13427         (selftest::from_int <wide_int>): New function.
13428         (selftest::from_int <offset_int>): New function.
13429         (selftest::from_int <widest_int>): New function.
13430         (selftest::assert_deceq): New function.
13431         (selftest::assert_hexeq): New function.
13432         (selftest::test_printing <VALUE_TYPE>): New function template.
13433         (selftest::test_ops <VALUE_TYPE>): New function template.
13434         (selftest::test_comparisons <VALUE_TYPE>): New function template.
13435         (selftest::run_all_wide_int_tests <VALUE_TYPE>): New function
13436         template.
13437         (selftest::wide_int_cc_tests): New function.
13439 2016-06-06  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
13441         PR middle-end/37780
13442         * ifcvt.c (noce_try_ifelse_collapse): New function.
13443         Declare prototype.
13444         (noce_process_if_block): Call noce_try_ifelse_collapse.
13445         * simplify-rtx.c (simplify_cond_clz_ctz): New function.
13446         (simplify_ternary_operation): Use the above to simplify
13447         conditional CLZ/CTZ expressions.
13449 2016-06-06  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
13451         PR middle-end/37780
13452         * config/aarch64/aarch64.md (ctz<mode>2): Convert to
13453         define_insn_and_split.
13455 2016-06-06  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
13457         PR middle-end/37780
13458         * config/arm/arm.md (ctzsi2): Convert to define_insn_and_split.
13460 2016-06-06  Bernd Edlinger  <bernd.edlinger@hotmail.de>
13462         PR c/24414
13463         * cfgexpand.c (expand_asm_loc): Remove handling for ADDR_EXPR.
13464         Implicitly clobber memory for basic asm with non-empty assembler
13465         string.  Use targetm.md_asm_adjust also here.
13466         * compare-elim.c (arithmetic_flags_clobber_p): Use asm_noperands here.
13467         * final.c (final_scan_insn): Handle basic asm in PARALLEL block.
13468         * gimple.c (gimple_asm_clobbers_memory_p): Handle basic asm with
13469         non-empty assembler string.
13470         * ira.c (compute_regs_asm_clobbered): Use asm_noperands here.
13471         * recog.c (asm_noperands): Handle basic asm in PARALLEL block.
13472         (decode_asm_operands): Handle basic asm in PARALLEL block.
13473         (extract_insn): Handle basic asm in PARALLEL block.
13474         * doc/extend.texi: Mention new behavior of basic asm.
13475         * config/ia64/ia64 (rtx_needs_barrier): Handle ASM_INPUT here.
13476         * config/pa/pa.c (branch_to_delay_slot_p, branch_needs_nop_p,
13477         branch_needs_nop_p): Use asm_noperands.
13479 2016-06-06  Jose E. Marchesi  <jose.marchesi@oracle.com>
13481         * config/sparc/sparc.md (cpu): Add niagara7 cpu type.
13482         Include the M7 SPARC DFA scheduler.
13483         New attribute v3pipe.
13484         Annotate insns with v3pipe where appropriate.
13485         Define cpu_feature vis4.
13486         Add lzd instruction type and set it on clzdi_sp64 and clzsi_sp64.
13487         Add (V8QI "8") to vbits.
13488         Add insns {add,sub}v8qi3
13489         Add insns ss{add,sub}v8qi3
13490         Add insns us{add,sub}{v8qi,v4hi}3
13491         Add insns {min,max}{v8qi,v4hi,v2si}3
13492         Add insns {minu,maxu}{v8qi,v4hi,v2si}3
13493         Add insns fpcmp{le,gt,ule,ug,ule,ugt}{8,16,32}_vis.
13494         * config/sparc/niagara4.md: Add a comment explaining the
13495         discrepancy between the documented latenty numbers and the
13496         implemented ones.
13497         * config/sparc/niagara7.md: New file.
13498         * configure.ac (HAVE_AS_SPARC5_VIS4): Define if the assembler
13499         supports SPARC5 and VIS 4.0 instructions.
13500         * configure: Regenerate.
13501         * config.in: Likewise.
13502         * config.gcc: niagara7 is a supported cpu in sparc*-*-* targets.
13503         * config/sparc/sol2.h (ASM_CPU32_DEFAUILT_SPEC): Set for
13504         TARGET_CPU_niagara7.
13505         (ASM_CPU64_DEFAULT_SPEC): Likewise.
13506         (CPP_CPU_SPEC): Handle niagara7.
13507         (ASM_CPU_SPEC): Likewise.
13508         * config/sparc/sparc-opts.h (processor_type): Add
13509         PROCESSOR_NIAGARA7.
13510         (mvis4): New option.
13511         * config/sparc/sparc.h (TARGET_CPU_niagara7): Define.
13512         (AS_NIAGARA7_FLAG): Define.
13513         (ASM_CPU64_DEFAULT_SPEC): Set for niagara7.
13514         (CPP_CPU64_DEFAULT_SPEC): Likewise.
13515         (CPP_CPU_SPEC): Handle niagara7.
13516         (ASM_CPU_SPEC): Likewise.
13517         * config/sparc/sparc.c (niagara7_costs): Define.
13518         (sparc_option_override): Handle niagara7 and adjust cache-related
13519         parameters with better values for niagara cpus.  Also support VIS4.
13520         (sparc32_initialize_trampoline): Likewise.
13521         (sparc_use_sched_lookahead): Likewise.
13522         (sparc_issue_rate): Likewise.
13523         (sparc_register_move_cost): Likewise.
13524         (dump_target_flag_bits): Support VIS4.
13525         (sparc_vis_init_builtins): Likewise.
13526         (sparc_builtins): Likewise.
13527         * config/sparc/sparc-c.c (sparc_target_macros): Define __VIS__ for
13528         VIS4 4.0.
13529         * config/sparc/driver-sparc.c (cpu_names): Add SPARC-M7 and
13530         UltraSparc M7.
13531         * config/sparc/sparc.opt (sparc_processor_type): New value
13532         niagara7.
13533         * config/sparc/visintrin.h (__attribute__): Prototypes for the
13534         VIS4 builtins.
13535         * doc/invoke.texi (SPARC Options): Document -mcpu=niagara7 and
13536         -mvis4.
13537         * doc/extend.texi (SPARC VIS Built-in Functions): Document the
13538         VIS4 builtins.
13540 2016-06-06  Jonathan Wakely  <jwakely@redhat.com>
13542         * doc/sourcebuild.texi (Directives): Remove extra closing braces.
13544 2016-06-06  Richard Biener  <rguenther@suse.de>
13546         PR tree-optimization/71398
13547         * tree-ssa-loop-ivcanon.c (unloop_loops): First unloop, then
13548         remove edges.
13550 2016-06-05  James Bowman  <james.bowman@ftdichip.com>
13552         * config/ft32/ft32.c (ft32_setup_incoming_varargs,
13553         ft32_expand_prolog, ft32_expand_epilogue):
13554         Handle pretend_args.
13555         * config/ft32/ft32.h: Remove OUTGOING_REG_PARM_STACK_SPACE.
13556         * config/ft32/ft32.md: Add pretend_returner.
13558 2016-06-06  Uros Bizjak  <ubizjak@gmail.com>
13560         PR target/71389
13561         * config/i386/i386.c (ix86_avx256_split_vector_move_misalign):
13562         Copy op1 RTX to avoid invalid sharing.
13563         (ix86_expand_vector_move_misalign): Ditto.
13565 2016-06-05  John David Anglin  <danglin@gcc.gnu.org>
13567         * expr.c (move_by_pieces_d::generate): Mark mode parameter with
13568         ATTRIBUTE_UNUSED.
13570 2016-06-05  Jan Hubicka  <hubicka@ucw.cz>
13572         * predict.c (predicted_by_loop_heuristics_p): New function.
13573         (predict_iv_comparison): Use it.
13574         (predict_loops): Walk from innermost loops; do not predict edges
13575         leaving multiple loops multiple times; implement
13576         PRED_LOOP_ITERATIONS_MAX heuristics.
13577         * predict.def (PRED_LOOP_ITERATIONS_MAX): New predictor.
13579 2016-06-05  Jan Hubicka  <hubicka@ucw.cz>
13581         * cfg.c (check_bb_profile): Do not report mismatched profiles when
13582         only edges out of BB are EH edges.
13584 2016-06-04  Martin Sebor  <msebor@redhat.com>
13585             Marcin Baczyński  <marbacz@gmail.com>
13587         PR c/48116
13588         * doc/invoke.texi (-Wreturn-type): Mention not warning on return with
13589         a void expression in a void function.
13591 2016-06-03  Jan Hubicka  <hubicka@ucw.cz>
13593         * tree-ssa-loop-ch.c (should_duplicate_loop_header_p): Do not check
13594         aux; dump reasons of decisions.
13595         (should_duplicate_loop_header_p): Likewise.
13596         (do_while_loop_p): Likewise.
13597         (ch_base::copy_headers): Dump asi num insns duplicated.
13599 2016-06-04  Jakub Jelinek  <jakub@redhat.com>
13601         PR tree-optimization/71405
13602         * tree-ssa.c (execute_update_addresses_taken): For clobber with
13603         incompatible type, build a new clobber with the right type instead
13604         of building a VIEW_CONVERT_EXPR around it.
13606 2016-06-04  Oleg Endo  <olegendo@gcc.gnu.org>
13608         PR tree-optimization/52171
13609         * config/sh/sh.c (sh_use_by_pieces_infrastructure_p): Use
13610         by_pieces_ninsns instead of move_by_pieces_ninsns.
13612 2016-06-04  Oleg Endo  <olegendo@gcc.gnu.org>
13614         * config/sh/sh.c (sh_print_operand_address): Don't use hardcoded 'r0'
13615         for reg+reg addressing mode.
13617 2016-06-03  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
13619         * rs6000-c.c (c/c-tree.h): Add #include.
13620         (altivec_resolve_overloaded_builtin): Handle ARRAY_TYPE arguments
13621         in C++ when found in the base position of vec_ld or vec_st.
13623 2016-06-03  Jan Hubicka  <hubicka@ucw.cz>
13625         * tree-ssa-loop-niter.c (estimate_numbers_of_iterations_loop): Avoid
13626         use of profile unless profile status is PROFILE_READ.
13627         * profile.c (compute_branch_probabilities): Set profile status
13628         only after reporting predictor hitrates.
13630 2016-06-03  Joseph Myers  <joseph@codesourcery.com>
13632         PR target/71276
13633         PR target/71277
13634         * common.opt (ffp-int-builtin-inexact): New option.
13635         * doc/invoke.texi (-fno-fp-int-builtin-inexact): Document.
13636         * doc/md.texi (floor@var{m}2, btrunc@var{m}2, round@var{m}2)
13637         (ceil@var{m}2): Document dependence on this option.
13638         * ipa-inline-transform.c (inline_call): Handle
13639         flag_fp_int_builtin_inexact.
13640         * ipa-inline.c (can_inline_edge_p): Likewise.
13641         * config/i386/i386.md (rintxf2): Do not test
13642         flag_unsafe_math_optimizations.
13643         (rint<mode>2_frndint): New define_insn.
13644         (rint<mode>2): Do not test flag_unsafe_math_optimizations for 387
13645         or !flag_trapping_math for SSE.  Just use gen_rint<mode>2_frndint
13646         for 387 instead of extending and truncating.
13647         (frndintxf2_<rounding>): Test flag_fp_int_builtin_inexact ||
13648         !flag_trapping_math instead of flag_unsafe_math_optimizations.
13649         Change to frndint<mode>2_<rounding>.
13650         (frndintxf2_<rounding>_i387): Likewise.  Change to
13651         frndint<mode>2_<rounding>_i387.
13652         (<rounding_insn>xf2): Likewise.
13653         (<rounding_insn><mode>2): Test flag_fp_int_builtin_inexact ||
13654         !flag_trapping_math instead of flag_unsafe_math_optimizations for
13655         x87.  Test TARGET_ROUND || !flag_trapping_math ||
13656         flag_fp_int_builtin_inexact instead of !flag_trapping_math for
13657         SSE.  Use ROUND_NO_EXC in constant operand of
13658         gen_sse4_1_round<mode>2.  Just use gen_frndint<mode>2_<rounding>
13659         for 387 instead of extending and truncating.
13661 2016-06-03  H.J. Lu  <hongjiu.lu@intel.com>
13662             Julia Koval  <julia.koval@intel.com>
13664         PR target/66960
13665         PR target/67630
13666         PR target/67634
13667         PR target/67841
13668         PR target/68037
13669         PR target/68618
13670         PR target/68661
13671         PR target/69575
13672         PR target/69596
13673         PR target/69734
13674         * config/i386/i386-protos.h (ix86_epilogue_uses): New prototype.
13675         * config/i386/i386.c (ix86_conditional_register_usage): Preserve
13676         all registers, except for function return registers if there are
13677         no caller-saved registers.
13678         (ix86_set_func_type): New function.
13679         (ix86_set_current_function): Call ix86_set_func_type to set
13680         no_caller_saved_registers and func_type.  Call reinit_regs if
13681         caller-saved registers are changed.  Don't allow MPX, SSE, MMX
13682         nor x87 instructions in interrupt handler nor function with
13683         no_caller_saved_registers attribute.
13684         (ix86_function_ok_for_sibcall): Return false if there are no
13685         caller-saved registers.
13686         (type_natural_mode): Don't warn ABI change for MMX in interrupt
13687         handler.
13688         (ix86_function_arg_advance): Skip for callee in interrupt handler.
13689         (ix86_function_arg): Return special arguments in interrupt handler.
13690         (ix86_promote_function_mode): Promote pointer to word_mode only
13691         for normal functions.
13692         (ix86_can_use_return_insn_p): Don't use `ret' instruction in
13693         interrupt handler.
13694         (ix86_epilogue_uses): New function.
13695         (ix86_hard_regno_scratch_ok): Likewise.
13696         (ix86_save_reg): Preserve all registers in interrupt handler
13697         after reload.  Preserve all registers, except for function return
13698         registers, if there are no caller-saved registers after reload.
13699         (find_drap_reg): Always use callee-saved register if there are
13700         no caller-saved registers.
13701         (ix86_minimum_incoming_stack_boundary): Return MIN_STACK_BOUNDARY
13702         for interrupt handler.
13703         (ix86_expand_prologue): Don't allow DRAP in interrupt handler.
13704         Emit cld instruction if stringops are used in interrupt handler
13705         or interrupt handler isn't a leaf function.
13706         (ix86_expand_epilogue): Generate interrupt return for interrupt
13707         handler and pop the 'ERROR_CODE' off the stack before interrupt
13708         return in exception handler.
13709         (ix86_expand_call): Disallow calling interrupt handler directly.
13710         If there are no caller-saved registers, mark all registers that
13711         are clobbered by the call which returns as clobbered.
13712         (ix86_handle_no_caller_saved_registers_attribute): New function.
13713         (ix86_handle_interrupt_attribute): Likewise.
13714         (ix86_attribute_table): Add interrupt and no_caller_saved_registers
13715         attributes.
13716         (TARGET_HARD_REGNO_SCRATCH_OK): Likewise.
13717         * config/i386/i386.h (ACCUMULATE_OUTGOING_ARGS): Use argument
13718         accumulation in interrupt function if stack may be realigned to
13719         avoid DRAP.
13720         (EPILOGUE_USES): New.
13721         (function_type): New enum.
13722         (machine_function): Add func_type and no_caller_saved_registers.
13723         * config/i386/i386.md (UNSPEC_INTERRUPT_RETURN): New.
13724         (interrupt_return): New pattern.
13725         * doc/extend.texi: Document x86 interrupt and
13726         no_caller_saved_registers attributes.
13728 2016-06-03  Bernd Schmidt  <bschmidt@redhat.com>
13730         PR tree-optimization/52171
13731         * builtins.c (expand_cmpstrn_or_cmpmem): Delete, moved elsewhere.
13732         (expand_builtin_memcmp): New arg RESULT_EQ.  All callers changed.
13733         Look for constant strings.  Move some code to emit_block_cmp_hints
13734         and use it.
13735         * builtins.def (BUILT_IN_MEMCMP_EQ): New.
13736         * defaults.h (COMPARE_MAX_PIECES): New macro.
13737         * expr.c (move_by_pieces_d, store_by_pieces_d): Remove old structs.
13738         (move_by_pieces_1, store_by_pieces_1, store_by_pieces_2): Remvoe.
13739         (clear_by_pieces_1): Don't declare.  Move definition before use.
13740         (can_do_by_pieces): New static function.
13741         (can_move_by_pieces): Use it.  Return bool.
13742         (by_pieces_ninsns): Renamed from move_by_pieces_ninsns.  New arg
13743         OP.  All callers changed.  Handle COMPARE_BY_PIECES.
13744         (class pieces_addr); New.
13745         (pieces_addr::pieces_addr, pieces_addr::decide_autoinc,
13746         pieces_addr::adjust, pieces_addr::increment_address,
13747         pieces_addr::maybe_predec, pieces_addr::maybe_postinc): New member
13748         functions for it.
13749         (class op_by_pieces_d): New.
13750         (op_by_pieces_d::op_by_pieces_d, op_by_pieces_d::run): New member
13751         functions for it.
13752         (class move_by_pieces_d, class compare_by_pieces_d,
13753         class store_by_pieces_d): New subclasses of op_by_pieces_d.
13754         (move_by_pieces_d::prepare_mode, move_by_pieces_d::generate,
13755         move_by_pieces_d::finish_endp, store_by_pieces_d::prepare_mode,
13756         store_by_pieces_d::generate, store_by_pieces_d::finish_endp,
13757         compare_by_pieces_d::generate, compare_by_pieces_d::prepare_mode,
13758         compare_by_pieces_d::finish_mode): New member functions.
13759         (compare_by_pieces, emit_block_cmp_via_cmpmem): New static
13760         functions.
13761         (expand_cmpstrn_or_cmpmem): Moved here from builtins.c.
13762         (emit_block_cmp_hints): New function.
13763         (move_by_pieces, store_by_pieces, clear_by_pieces): Rewrite to just
13764         use the newly defined classes.
13765         * expr.h (by_pieces_constfn): New typedef.
13766         (can_store_by_pieces, store_by_pieces): Use it in arg declarations.
13767         (emit_block_cmp_hints, expand_cmpstrn_or_cmpmem): Declare.
13768         (move_by_pieces_ninsns): Don't declare.
13769         (can_move_by_pieces): Change return value to bool.
13770         * target.def (TARGET_USE_BY_PIECES_INFRASTRUCTURE_P): Update docs.
13771         (compare_by_pieces_branch_ratio): New hook.
13772         * target.h (enum by_pieces_operation): Add COMPARE_BY_PIECES.
13773         (by_pieces_ninsns): Declare.
13774         * targethooks.c (default_use_by_pieces_infrastructure_p): Handle
13775         COMPARE_BY_PIECES.
13776         (default_compare_by_pieces_branch_ratio): New function.
13777         * targhooks.h (default_compare_by_pieces_branch_ratio): Declare.
13778         * doc/tm.texi.in (STORE_MAX_PIECES, COMPARE_MAX_PIECES): Document.
13779         * doc/tm.texi: Regenerate.
13780         * tree-ssa-strlen.c: Include "builtins.h".
13781         (handle_builtin_memcmp): New static function.
13782         (strlen_optimize_stmt): Call it for BUILT_IN_MEMCMP.
13783         * tree.c (build_common_builtin_nodes): Create __builtin_memcmp_eq.
13785 2016-06-03  Alan Hayward  <alan.hayward@arm.com>
13787         * tree-vect-stmts.c (vect_stmt_relevant_p): Do not vectorize non live
13788         relevant stmts which are simple and invariant.
13789         * tree-vect-loop.c (vectorizable_live_operation): Check relevance
13790         instead of simple and invariant
13792 2016-06-03  Alan Hayward  <alan.hayward@arm.com>
13794         * tree-vect-loop.c (vect_analyze_loop_operations): Allow live stmts.
13795         (vectorizable_reduction): Check for new relevant state.
13796         (vectorizable_live_operation): vectorize live stmts using
13797         BIT_FIELD_REF.  Remove special case for gimple assigns stmts.
13798         * tree-vect-stmts.c (is_simple_and_all_uses_invariant): New function.
13799         (vect_stmt_relevant_p): Check for stmts which are only used live.
13800         (process_use): Use of a stmt does not inherit it's live value.
13801         (vect_mark_stmts_to_be_vectorized): Simplify relevance inheritance.
13802         (vect_analyze_stmt): Check for new relevant state.
13803         * tree-vectorizer.h (vect_relevant): New entry for a stmt which is used
13804         outside the loop, but not inside it.
13806 2016-06-03  Alan Hayward  <alan.hayward@arm.com>
13808         * tree-vectorizer.h (vect_get_vec_def_for_operand_1): New.
13809         * tree-vect-stmts.c (vect_get_vec_def_for_operand_1): New.
13810         (vect_get_vec_def_for_operand): Split out code.
13812 2016-06-03  Segher Boessenkool  <segher@kernel.crashing.org>
13814         * config/rs6000/rs6000.md (define_peepholes for two mfcr's): Delete.
13816 2016-06-03  Alan Hayward  <alan.hayward@arm.com>
13818         * tree-vect-stmts.c (vectorizable_call) Remove GOMP_SIMD_LANE code.
13820 2016-06-03  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
13822         * config/arm/thumb1.md (*thumb1_mulsi3): Fix typos in comment.
13824 2016-06-03  Jakub Jelinek  <jakub@redhat.com>
13826         PR middle-end/71387
13827         * cgraph.c (cgraph_edge::redirect_call_stmt_to_callee): If redirecting
13828         to noreturn e->callee->decl that has void return type and void
13829         arguments, adjust gimple_call_fntype and remove lhs even if it had
13830         previously addressable type.
13832 2016-06-02  Jeff Law  <law@redhat.com>
13834         PR tree-optimization/71328
13835         * tree-ssa-threadupdate.c (duplicate_thread_path): Fix off-by-one
13836         error when checking for a jump back onto the copied path.
13838 2016-06-02  David Malcolm  <dmalcolm@redhat.com>
13840         * config/microblaze/microblaze.c (get_branch_target): Add return
13841         NULL_RTX for the non-CALL_P case.
13842         (insert_wic_for_ilb_runout): Remove unused local "wic_addr1".
13843         (insert_wic): Remove unused local "j".
13845 2016-06-02  Martin Liska  <mliska@suse.cz>
13847         * predict.def: Fix typo in PRED_FORTRAN_FAIL_IO display name.
13849 2016-06-02  H.J. Lu  <hongjiu.lu@intel.com>
13850             Julia Koval  <julia.koval@intel.com>
13852         * function.c (assign_parm_setup_stack): Force source into a
13853         register if needed.
13854         * target.def (function_incoming_arg): Update documentation to
13855         allow arbitrary address computation based on hard register.
13856         * doc/tm.texi: Regenerated.
13858 2016-06-02  Martin Liska  <mliska@suse.cz>
13860         * predict.c (combine_predictions_for_bb): Fix first match in
13861         cases where a first predictor contains more than one occurence
13862         in list of predictors.  Take the best value in such case.
13864 2016-06-02  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
13866         PR rtl-optimization/71295
13867         * rtlanal.c (subreg_get_info): If taking a subreg at the requested
13868         offset would go over the size of the inner mode reject it.
13870 2016-06-02  Jakub Jelinek  <jakub@redhat.com>
13872         * config/i386/sse.md (*vec_concatv4si): Use v=v,v instead of
13873         x=x,x and v=v,m instead of x=x,m.
13875         * config/i386/sse.md (*vec_concatv2si_sse4_1): Add avx512dq v=Yv,rm
13876         alternative.  Change x=x,x alternative to v=Yv,Yv and x=rm,C
13877         alternative to v=rm,C.
13879         * config/i386/sse.md (*vec_concatv2di): Add x86_avx512dq v=Yv,rm
13880         alternative.  Change x=xm,C alternative to v=vm,C, x=x,x alternative
13881         to v=Yv,Yv and x=x,m to v=v,m.  Use maybe_evex prefix attribute
13882         instead of vex for the last two above mentioned alternatives.
13884 2016-06-02  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
13886         PR target/70830
13887         * config/arm/arm.c (arm_output_multireg_pop): Guard "pop" on update.
13889 2016-06-02  Segher Boessenkool  <segher@kernel.crashing.org>
13891         * config/rs6000/dfp.md (trunctddd2): Correct the "length" attribute.
13893 2016-06-01  David Malcolm  <dmalcolm@redhat.com>
13895         * config/rl78/rl78.c (rl78_expand_prologue): Convert local
13896         from int to unsigned.
13898 2016-05-31  Michael Meissner  <meissner@linux.vnet.ibm.com>
13900         * config/rs6000/vsx.md (vsx_splat_<mode>, V2DI/V2DF): Simplify
13901         alternatives, eliminating preferred register class.  Add support
13902         for the MTVSRDD instruction in ISA 3.0.
13903         (vsx_splat_v4si_internal): Use splat_input_operand instead of
13904         reg_or_indexed_operand.
13905         (vsx_splat_v4sf_internal): Likewise.
13907 2016-05-31  Michael Meissner  <meissner@linux.vnet.ibm.com>
13909         PR target/71186
13910         * config/rs6000/vsx.md (xxspltib_<mode>_nosplit): Add alternatives
13911         for loading up all 0's or all 1's.
13913 2016-06-01  Thomas Preud'homme  <thomas.preudhomme@arm.com>
13915         * doc/sourcebuild.texi (arm_acq_rel): Document new effective target.
13917 2016-06-01  Eduard Sanou  <dhole@openmailbox.org>
13919         * doc/cppenv.texi: Note that the `%s` in `date` is a non-standard
13920         extension.
13921         * gcc.c (driver_handle_option): Call set_source_date_epoch_envvar.
13922         * gcc.c (set_source_date_epoch_envvar): New function, sets
13923         the SOURCE_DATE_EPOCH environment variable to the current time.
13925 2016-06-01  Eric Botcazou  <ebotcazou@adacore.com>
13927         * tree-vect-loop.c (vect_determine_vectorization_factor): Also compute
13928         the factor for live Phi nodes.
13930 2016-06-01  Jan Hubicka  <hubicka@ucw.cz>
13932         * loop-dolop.c (doloop_optimize): Us likely max iteration bound.
13933         * tree-parloops.c (parallelize_loops): likewise.
13934         * tree-ssa-loop-unswitch.c (tree_unswitch_single_loop,
13935         tree_unswitch_outer_loop): likewise.
13937 2016-06-01  Jakub Jelinek  <jakub@redhat.com>
13939         PR middle-end/71371
13940         * gimplify.c (gimplify_omp_for): Temporarily clear gimplify_omp_ctxp
13941         around creation of the temporary.
13943 2016-06-01  Richard Biener  <rguenther@suse.de>
13945         PR tree-optimization/71366
13946         * tree-ssa-loop-ivcanon.c (edges_to_remove): New global.
13947         (unloop_loops): Move removing edges here ...
13948         (try_unroll_loop_completely): ... from here.
13949         (try_peel_loop): ... and here.
13950         (tree_unroll_loops_completely_1): Track parent loops via
13951         bitmap of header BBs.
13952         (tree_unroll_loops_completely): Adjust for that.
13954 2016-06-01  Kelvin Nilsen  <kelvin@gcc.gnu.org>
13956         * config/rs6000/altivec.h (vec_slv): New macro.
13957         (vec_srv): New macro.
13958         * config/rs6000/altivec.md (UNSPEC_VSLV): New value.
13959         (UNSPEC_VSRV): New value.
13960         (vslv): New insn.
13961         (vsrv): New insn.
13962         * config/rs6000/rs6000-builtin.def (vslv): New builtin definition.
13963         (vsrv): New builtin definition.
13964         * config/rs6000/rs6000-c.c (P9V_BUILTIN_VSLV): Macro expansion to
13965         define argument types for new builtin.
13966         (P9V_BUILTIN_VSRV): Macro expansion to define argument types for
13967         new builtin.
13968         * doc/extend.texi: Document the new vec_vslv and vec_srv built-in
13969         functions.
13971 2016-06-01  Uros Bizjak  <ubizjak@gmail.com>
13972             Jocelyn Mayer  <l_indien@magic.fr>
13974         PR target/67310
13975         * config/i386/driver-i386.c (host_detect_local_cpu): Correctly
13976         detect processor family for signature_CENTAUR_ebx.
13977         <case PROCESSOR_I486>: Pass c3, winchip2 or winchip-c6 for
13978         signature_CENTAUR_ebx.
13979         <case PROCESSOR _PENTIUMPRO>: Pass c3-2 for signature_CENTAUR_ebx.
13980         <default>: Pass x86-64 for has_longmode.
13982 2016-06-01  Nathan Sidwell  <nathan@acm.org>
13984         * config/nvptx/nvptx.c (nvptx_assemble_undefined_decl): Reject
13985         undefined weak.
13987 2016-06-01  Richard Biener  <rguenther@suse.de>
13989         PR tree-optimization/71261
13990         * tree-vect-patterns.c (check_bool_pattern): Gather a hash-set
13991         of stmts successfully put in the bool pattern.  Remove
13992         single-use restriction.
13993         (adjust_bool_pattern_cast): Add cast at the use site via the
13994         pattern def sequence.
13995         (adjust_bool_pattern): Remove recursion, maintain a hash-map
13996         of patterned defs.  Use the pattern def seqence instead of
13997         multiple independent patterns.
13998         (sort_after_uid): New qsort compare function.
13999         (adjust_bool_stmts): New function to process stmts in the bool
14000         pattern in IL order.
14001         (vect_recog_bool_pattern): Adjust.
14002         * tree-if-conv.c (ifcvt_split_def_stmt): Remove.
14003         (ifcvt_walk_pattern_tree): Likewise.
14004         (stmt_is_root_of_bool_pattern): Likewise.
14005         (ifcvt_repair_bool_pattern): Likewise.
14006         (tree_if_conversion): Do not call ifcvt_repair_bool_pattern.
14008 2016-06-01  Jan Hubicka  <hubicka@ucw.cz>
14010         * loop-unroll.c (decide_unroll_constant_iterations,
14011         decide_unroll_runtime_iterations, decide_unroll_stupid): Use
14012         likely upper bounds.
14013         * loop-iv.c (find_simple_exit): Dump likely upper bounds.
14015 2016-06-01  Thomas Schwinge  <thomas@codesourcery.com>
14017         * tree-core.h (enum omp_clause_code): Remove
14018         OMP_CLAUSE_DEVICE_RESIDENT.  Adjust all users.
14020 2016-06-01  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
14022         * config/arm/sync.md (arm_store_exclusive<mode>):
14023         Use 'H' output modifier on operands[2] rather than creating a new
14024         entry in out-of-bounds memory of the operands array.
14025         (arm_store_release_exclusivedi): Likewise.
14027 2016-06-01  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
14029         * config/arm/arm.c (arm_fusion_enabled_p): New function.
14030         * config/arm/arm-protos.h (arm_fusion_enabled_p): Declare prototype.
14031         * config/arm/crypto.md (crypto_<crypto_pattern>, CRYPTO_UNARY):
14032         Add "=w,0" alternative.  Enable it when AES/AESMC fusion is enabled.
14034 2016-06-01  Eric Botcazou  <ebotcazou@adacore.com>
14036         * tree-vect-loop.c (vect_determine_vectorization_factor): Also take
14037         into account live statements for mask producers.
14039 2016-06-01  Richard Biener  <rguenther@suse.de>
14041         PR tree-optimization/71311
14042         * match.pd (@0 < @1 && @0 < @2 -> @0 < min(@1,@2)): Add :c and
14043         restrict to non-INTEGER_CST @0.
14045 2016-06-01  Richard Biener  <rguenther@suse.de>
14047         * match.pd ((A & B) - (A & ~B) -> B - (A ^ B)): Add missing :c.
14048         (relational patterns): Use :c to avoid pattern duplications.
14050 2016-06-01  Richard Biener  <rguenther@suse.de>
14052         * genmatch.c (comparison_code_p): New predicate.
14053         (swap_tree_comparison): New function.
14054         (commutate): Add for_vec parameter to append new for entries.
14055         Support commutating relational operators by swapping it alongside
14056         operands.
14057         (lower_commutative): Adjust.
14058         (dt_simplify::gen): Do not pass artificial operators to gen
14059         functions.
14060         (decision_tree::gen): Do not add artificial operators as parameters.
14061         (parser::parse_expr): Verify operator commutativity when :c is
14062         applied.  Allow :C to override this.
14063         * match.pd: Adjust patterns to use :C instead of :c where required.
14065 2016-06-01  Patrick Palka  <ppalka@gcc.gnu.org>
14067         PR tree-optimization/71077
14068         * tree-ssa-threadedge.c (simplify_control_stmt_condition_1): In
14069         the combining step, use boolean_false_node and boolean_true_node
14070         as the designated false/true return values.
14072 2016-05-31  Jan Hubicka  <hubicka@ucw.cz>
14074         * predict.def (PRED_LOOP_EXTRA_EXIT): Define.
14075         * predict.c (predict_iv_comparison): Also check PRED_LOOP_EXTRA_EXIT.
14076         (predict_extra_loop_exits): Use PRED_LOOP_EXTRA_EXIT instead of
14077         PRED_LOOP_EXIT.
14079 2016-05-31  Jan Hubicka  <hubicka@ucw.cz>
14081         * doc/invoke.texi (-frename-registers): Drop -fpeel-loops from list
14082         of flags impliying the register renaming.
14083         * toplev.c (process_options): Do not imply flag_rename_registers with
14084         loop peeling.
14086 2016-05-31  Oleg Endo  <olegendo@gcc.gnu.org>
14088         * config/sh/sh.h (ASM_OUTPUT_SYMBOL_REF): Remove macro and use the
14089         default implementation.
14091 2016-05-31  Nathan Sidwell  <nathan@acm.org>
14093         * dwarf2out.c (cur_line_info_table): Add GTY marker.
14095 2016-05-31  Oleg Endo  <olegendo@gcc.gnu.org>
14097         * config/sh/constraints.md (b): Remove constraint.
14098         * config/sh/predicates.md (arith_reg_operand): Remove
14099         TARGET_REGISTER_P.
14100         * config/sh/sh-modes.def (PDI): Remove.
14101         * config/sh/sh.c (sh_target_reg_class,
14102         sh_optimize_target_register_callee_saved): Remove functions.
14103         (sh_option_override): Don't set MASK_SAVE_ALL_TARGET_REGS.
14104         (sh_expand_epilogue): Update comment.
14105         (sh_hard_regno_mode_ok, sh_register_move_cost, calc_live_regs,
14106         sh_secondary_reload): Remove TARGET_REGS related code.
14107         * config/sh/sh.h (FIRST_TARGET_REG, LAST_TARGET_REG,
14108         TARGET_REGISTER_P): Remove macros.
14109         (SH_DBX_REGISTER_NUMBER, REG_ALLOC_ORDER): Remove target regs.
14110         * config/sh/sh.md (PR_MEDIA_REG, T_MEDIA_REG, FR23_REG, TR0_REG,
14111         TR1_REG, TR2_REG): Remove constants.
14112         * config/sh/sh.opt (SAVE_ALL_TARGET_REGS): Remove.
14114 2016-05-31  Oleg Endo  <olegendo@gcc.gnu.org>
14116         * config/sh/sh.md (adddi3, subdi3, negdi2, abs<mode>2): Remove
14117         define_expand patterns.
14118         (adddi3_compact): Rename to adddi3.
14119         (subdi3_compact): Rename to subdi3.
14120         (*negdi2): Rename to negdi2.
14121         (*abs<mode>2): Rename to abs<mode>2.
14123 2016-05-31  Oleg Endo  <olegendo@gcc.gnu.org>
14125         * config/rx/rx.md (FETCHOP_NO_MINUS): New code iterator.
14126         (atomic_<fetchop_name>_fetchsi): Extract minus operator into ...
14127         (atomic_sub_fetchsi): ... this new pattern.
14128         (mvtc): Add CC_REG clobber.
14130 2016-05-31  Marek Polacek  <polacek@redhat.com>
14132         * gimplify.c (gimplify_switch_expr): Also handle GIMPLE_TRY.
14134 2016-05-31  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
14136         * config/aarch64/aarch64.c (aarch_macro_fusion_pair_p): Use
14137         aarch64_fusion_enabled_p to check for fusion capabilities.
14139 2016-05-31  Richard Biener  <rguenther@suse.de>
14141         PR tree-optimization/71352
14142         * tree-ssa-reassoc.c (zero_one_operation): Handle op equal to
14143         minus one and a negate.
14145 2016-05-31  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
14147         * config/aarch64/aarch64.c (aarch64_simd_attr_length_move): Delete.
14148         * config/aarch64/aarch64-protos.h (aarch64_simd_attr_length_move):
14149         Delete prototype.
14150         * config/aarch64/iterators.md (insn_count): Add descriptive comment.
14151         * config/aarch64/aarch64-simd.md (*aarch64_mov<mode>, VSTRUCT modes):
14152         Remove use of aarch64_simd_attr_length_move, set length attribute
14153         directly.
14154         (*aarch64_be_movoi): Likewise.
14155         (*aarch64_be_movci): Likewise.
14156         (*aarch64_be_movxi): Likewise.
14158 2016-05-31  Jan Hubicka  <hubicka@ucw.cz>
14160         * loop-init.c (gate): Do not enale RTL loop unroller with -fpeel-loops.
14161         It no longer does that.
14162         * toplev.c (process_options): Do not enable flag_web with -fpeel-loops.
14164 2016-05-31  Wladimir J. van der Laan  <laanwj@gmail.com>
14166         * config/aarch64/arm_neon.h (vdupb_laneq_s8): Remove spurious
14167         attribute __unused__.
14169 2016-05-31  Thomas Preud'homme  <thomas.preudhomme@arm.com>
14171         * config/arm/arm-protos.h (arm_arch_thumb1): Declare.
14172         * config/arm/arm.c (arm_arch_thumb1): Define.
14173         (arm_option_override): Initialize arm_arch_thumb1.
14174         * config/arm/arm.h (arm_arch_thumb1): Declare.
14175         (TARGET_ARM_ARCH_ISA_THUMB): Use arm_arch_thumb to determine if target
14176         support Thumb-1 ISA.
14178 2016-05-31  Kirill Yukhin  <kirill.yukhin@intel.com>
14180         PR target/71346
14181         * config/i386/sse.md (define_insn_and_split "*vec_extractv4sf_0"): Use
14182         `Yv' for scalar operand.
14184 2016-05-31  Tom de Vries  <tom@codesourcery.com>
14186         PR tree-optimization/69068
14187         * graphite-isl-ast-to-gimple.c (copy_bb_and_scalar_dependences): Handle
14188         phis with more than two args.
14190 2016-05-30  Andreas Tobler  <andreast@gcc.gnu.org>
14192         * config.gcc: Move hard float support for arm*hf*-*-freebsd* into
14193         armv6*-*-freebsd* for FreeBSD 11. Eliminate the arm*hf*-*-freebsd*
14194         target.
14196 2016-05-30  Jose E. Marchesi  <jose.marchesi@oracle.com>
14198         * config.gcc (sparc*-*-*): Support cpu_32, cpu_64, tune_32 and
14199         tune_64.
14200         * doc/install.texi (--with-cpu-32, --with-cpu-64): Document
14201         support on SPARC.
14202         * config/sparc/linux64.h (OPTION_DEFAULT_SPECS): Add entries for
14203         cpu_32, cpu_64, tune_32 and tune_64.
14204         * config/sparc/sol2.h (OPTION_DEFAULT_SPECS): Likewise.
14206 2016-05-30  Uros Bizjak  <ubizjak@gmail.com>
14208         * config/i386/sync.md (mfence_nosse): Use "lock orl $0, -4(%esp)".
14210 2016-05-30  Andi Kleen  <ak@linux.intel.com>
14212         * auto-profile.c (read_profile): Replace asserts with errors
14213         when file does not exist.
14214         * gcov-io.c (gcov_read_words): Dito.
14216 2016-05-30  Jan Hubicka  <hubicka@ucw.cz>
14218         * tree-cfg.c (print_loop): Print likely upper bounds.
14220 2016-05-30  Jan Hubicka  <hubicka@ucw.cz>
14222         * doc/invoke.texi (-fpeel-loops,-O3): Update documentation.
14223         * opts.c (default_options): Enable peel loops at -O3.
14224         * tree-ssa-loop-ivcanon.c (peeled_loops): New static var.
14225         (try_peel_loop): Do not re-peel already peeled loops;
14226         use likely upper bounds; fix profile updating.
14227         (pass_complete_unroll::execute): Initialize peeled_loops.
14229 2016-05-30  Martin Liska  <mliska@suse.cz>
14231         * tree-ssa-loop-ivopts.c (get_computation_cost_at): Scale
14232         computed costs by frequency of BB they belong to.
14233         (get_scaled_computation_cost_at): New function.
14235 2016-05-30  Alexander Monakov  <amonakov@ispras.ru>
14236             Marc Glisse  <marc.glisse@inria.fr>
14238         PR tree-optimization/71289
14239         * match.pd (-1 / B < A, A > -1 / B): New transformations.
14241 2016-05-30  Jan Hubicka  <hubicka@ucw.cz>
14243         * tree-vect-loop.c (vect_transform_loop): Update likely bounds.
14245 2016-05-30  Jan Hubicka  <hubicka@ucw.cz>
14247         * tree-ssa-loop-ivcanon.c (try_peel_loop): Correctly set wont_exit
14248         for peeled copies; avoid underflow when updating estimates; correctly
14249         scale loop profile.
14251 2016-05-30  Kugan Vivekanandarajah  <kuganv@linaro.org>
14253         * tree-ssa-reassoc.ci (swap_ops_for_binary_stmt): Fix typo from commit
14254         r236875. Corrected oe3 to oe2 as obvious.
14256 2016-05-30  Kugan Vivekanandarajah  <kuganv@linaro.org>
14258         PR middle-end/71269
14259         PR middle-end/71252
14260         * tree-ssa-reassoc.c (insert_stmt_before_use): Use find_insert_point so
14261         that inserted stmt will not dominate stmts that defines its operand.
14262         (rewrite_expr_tree): Add stmt_to_insert before adding the use stmt.
14263         (rewrite_expr_tree_parallel): Likewise.
14265 2016-05-30  Kugan Vivekanandarajah  <kuganv@linaro.org>
14267         PR middle-end/71252
14268         * tree-ssa-reassoc.c (swap_ops_for_binary_stmt): Fix swap such that
14269         all fields including stmt_to_insert are swapped.
14271 2016-05-30  Jan Hubicka  <hubicka@ucw.cz>
14273         * predict.h (force_edge_cold): Declare.
14274         * predict.c (force_edge_cold): New function.
14275         * tree-ssa-loop-ivcanon.c (try_unroll_loop_completely): Fix profile
14276         updating.
14277         (canonicalize_loop_induction_variables): Fix formating.
14279 2016-05-30  Eric Botcazou  <ebotcazou@adacore.com>
14281         * config/visium/visium.c (visium_split_double_add): Minor tweaks.
14282         (visium_expand_copysign): Use gen_int_mode directly.
14283         (visium_compute_frame_size): Minor tweaks.
14285 2016-05-30  Jan Hubicka  <hubicka@ucw.cz>
14287         * tree-vect-loop.c (vect_analyze_loop_2): Use
14288         likely_max_stmt_executions_int.
14290 2016-05-30  Tom de Vries  <tom@codesourcery.com>
14292         PR tree-optimization/69067
14293         * graphite-isl-ast-to-gimple.c (get_def_bb_for_const): Remove assert.
14295 2016-05-29  Uros Bizjak  <ubizjak@gmail.com>
14297         PR target/71245
14298         * config/i386/sync.md (define_peephole2 atomic_storedi_fpu):
14299         New peepholes to remove unneeded fild/fistp pairs.
14300         (define_peephole2 atomic_loaddi_fpu): Ditto.
14302 2016-05-27  Jan Hubicka  <hubicka@ucw.cz>
14304         * predict.c (maybe_hot_frequency_p): Avoid division.
14306 2016-05-28  Gerald Pfeifer  <gerald@pfeifer.com>
14308         * doc/install.texi: Use https for shop.fsf.org.
14310 2016-05-27  Jan Hubicka  <hubicka@ucw.cz>
14312         * tree-ssa-loop-ivopts.c (estimated_stmt_executions_int): Use
14313         likely_max_stmt_executions_int.
14315 2016-05-27  Jan Hubicka  <hubicka@ucw.cz>
14317         * tree-ssa-loop-prefetch.c (loop_prefetch_arrays): Use
14318         likely_max_stmt_executions_int.
14320 2016-05-27  Jan Hubicka  <hubicka@ucw.cz>
14322         * profile.c (compute_branch_probabilities): Do not report hitrates
14323         here.
14324         (branch_prob): Report hitrates here.
14325         * predict.c (gimple_predict_edge): Do not assert profile status;
14326         fix formatting issues.
14328 2016-05-27  Jan Hubicka  <hubicka@ucw.cz>
14330         * predict.c (edge_predicted_by_p): New function.
14331         (predict_paths_for_bb): Do not put multiple predictions of the same type
14332         on one edge.
14334 2016-05-27  Jan Hubicka  <hubicka@ucw.cz>
14336         * tree-ssa-loop-niter.c (number_of_iterations_exit): Revert accidental
14337         commit.
14339 2016-05-28  Alan Modra  <amodra@gmail.com>
14341         * dominance.c (verify_dominators): Don't segfault on NULL imm_bb.
14343 2016-05-28  Alan Modra  <amodra@gmail.com>
14345         PR rtl-optimization/71275
14346         * ira.c (ira): Free dominance info.
14348 2016-05-27  Gerald Pfeifer  <gerald@pfeifer.com>
14350         * doc/sourcebuild.texi: New address for upstream Go repository.
14352 2016-05-27  Thomas Preud'homme  <thomas.preudhomme@arm.com>
14354         * config/arm/arm.h (TARGET_ARM_V6M): Remove.
14355         (TARGET_ARM_V7M): Likewise.
14357 2016-05-26  Jeff Law  <law@redhat.com>
14359         * tree-ssa-threadedge.c: Remove include of tree-ssa-threadbackward.h.
14360         (thread_across_edge): Remove calls to find_jump_threads_backwards.
14361         * passes.def: Add jump threading passes before DOM/VRP.
14362         * tree-ssa-threadbackward.c (find_jump_threads_backwards): Change
14363         argument to a basic block from an edge.  Remove tests which are
14364         handled elsewhere.
14365         (pass_data_thread_jumps, class pass_thread_jumps): New.
14366         (pass_thread_jumps::gate, pass_thread_jumps::execute): New.
14367         (make_pass_thread_jumps): Likewise.
14368         * tree-pass.h (make_pass_thread_jumps): Declare.
14370 2016-05-27  Eric Botcazou  <ebotcazou@adacore.com>
14372         * config/visium/visium-protos.h (split_double_move): Rename into...
14373         (visium_split_double_move): ...this.
14374         (visium_split_double_add): Declare.
14375         * config/visium/visium.c (split_double_move): Rename into...
14376         (visium_split_double_move): ...this.
14377         (visium_split_double_add): New function.
14378         (visium_expand_copysign): Renumber operands for consistency.
14379         * config/visium/visium.md (DImode move splitter): Adjust to renaming.
14380         (DFmode move splitter): Likewise.
14381         (*addi3_insn): Split by means of visium_split_double_add.
14382         (*adddi3_insn_flags): Delete.
14383         (*plus_plus_sltu<subst_arith>): New insn.
14384         (*subdi3_insn): Split by means of visium_split_double_add.
14385         (subdi3_insn_flags): Delete.
14386         (*minus_minus_sltu<subst_arith>): New insn.
14387         (*negdi2_insn): Split by means of visium_split_double_add.
14388         (*negdi2_insn_flags): Delete.
14390 2016-05-27  Ulrich Weigand  <uweigand@de.ibm.com>
14392         * configure.ac: Treat a --with-headers option without argument
14393         the same as the default (i.e. consult sys-include directory).
14394         * configure: Regenerate.
14396 2016-05-27  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
14398         * config/aarch64/aarch64.c (aarch64_fusion_enabled_p): New function.
14399         * config/aarch64/aarch64-protos.h (aarch64_fusion_enabled_p): Declare
14400         prototype.
14401         * config/aarch64/aarch64-simd.md (aarch64_crypto_aes<aesmc_op>v16qi):
14402         Add "=w,0" alternative.  Enable it when AES/AESMC fusion is enabled.
14404 2016-05-27  Jiong Wang  <jiong.wang@arm.com>
14406         PR target/63596
14407         * config/aarch64/aarch64.c (aarch64_expand_builtin_va_start): Honor
14408         tree-stdarg analysis results.
14409         (aarch64_setup_incoming_varargs): Likewise.
14411 2016-05-27  Jiong Wang  <jiong.wang@arm.com>
14413         * config/aarch64/aarch64.c (aarch64_build_builtin_va_list): Initialize
14414         va_list_gpr_counter_field and va_list_fpr_counter_field.
14416 2016-05-27  Wilco Dijkstra  <wdijkstr@arm.com>
14418         PR67609
14419         * config/aarch64/aarch64.h (CANNOT_CHANGE_MODE_CLASS): Remove.
14420         * config/aarch64/aarch64.c
14421         (aarch64_cannot_change_mode_class): Remove function.
14422         * config/aarch64/aarch64-protos.h
14423         (aarch64_cannot_change_mode_class): Remove.
14425 2016-05-27  Jan Hubicka  <hubicka@ucw.cz>
14427         * cfgloop.c (record_niter_bound): Record likely upper bounds.
14428         (likely_max_stmt_executions_int, get_likely_max_loop_iterations,
14429         get_likely_max_loop_iterations_int): New.
14430         * cfgloop.h (struct loop): Add nb_iterations_likely_upper_bound,
14431         any_likely_upper_bound.
14432         (get_likely_max_loop_iterations_int, get_likely_max_loop_iterations):
14433         Declare.
14434         * cfgloopmanip.c (copy_loop_info): Copy likely upper bounds.
14435         * loop-unroll.c (unroll_loop_constant_iterations): Update likely
14436         upper bound.
14437         (unroll_loop_constant_iterations): Likewise.
14438         (unroll_loop_runtime_iterations): Likewise.
14439         * lto-streamer-in.c (input_cfg): Stream likely upper bounds.
14440         * lto-streamer-out.c (output_cfg): Likewise.
14441         * tree-ssa-loop-ivcanon.c (try_peel_loop): Update likely upper
14442         bounds.
14443         (canonicalize_loop_induction_variables): Dump likely upper bounds.
14444         * tree-ssa-loop-niter.c (record_estimate): Record likely upper bounds.
14445         (likely_max_loop_iterations): New.
14446         (likely_max_loop_iterations_int): New.
14447         (likely_max_stmt_executions): New.
14448         * tree-ssa-loop-niter.h (likely_max_loop_iterations,
14449         likely_max_loop_iterations_int, likely_max_stmt_executions_int,
14450         likely_max_stmt_executions): Declare.
14452 2016-05-27  Marek Polacek  <polacek@redhat.com>
14454         PR middle-end/71308
14455         * gimple-fold.c (gimple_fold_call): Check that LHS is not null.
14457 2016-05-27  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
14459         * config/s390/s390.md (2x risbg splitters): Use
14460         reg_overlap_mentioned_p instead of rtx_equal_p.
14462 2016-05-27  Dominik Vogt  <vogt@linux.vnet.ibm.com>
14464         * combine.c (make_compound_operation): Take known zero bits into
14465         account when checking for possible zero_extend.
14467 2016-05-27  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
14469         * config/aarch64/aarch64.md (ashl<mode>3, SHORT modes):
14470         Use const_int_operand for operand 2 predicate.  Simplify expand code
14471         as a result.
14473 2016-05-27  Ilya Enkovich  <ilya.enkovich@intel.com>
14475         PR middle-end/71279
14476         * fold-const.c (fold_ternary_loc): Don't fold VEC_COND_EXPR
14477         into comparison.
14479 2016-05-27  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
14481         * config/aarch64/aarch64-modes.def (CC_ZESWP, CC_SESWP): Delete.
14482         * config/aarch64/aarch64.c (aarch64_select_cc_mode): Remove condition
14483         that returns CC_SESWPmode and CC_ZESWPmode.
14484         (aarch64_get_condition_code_1): Remove handling of CC_SESWPmode
14485         and CC_SESWPmode.
14486         (aarch64_rtx_costs): Likewise.
14488 2016-05-26  Michael Meissner  <meissner@linux.vnet.ibm.com>
14490         * config/rs6000/rs6000.c (rs6000_emit_p9_fp_minmax): New function
14491         for ISA 3.0 min/max support.
14492         (rs6000_emit_p9_fp_cmove): New function for ISA 3.0 floating point
14493         conditional move support.
14494         (rs6000_emit_cmove): Call rs6000_emit_p9_fp_minmax and
14495         rs6000_emit_p9_fp_cmove if the ISA 3.0 instructions are
14496         available.
14497         * config/rs6000/rs6000.md (SFDF2): New iterator to allow doing
14498         conditional moves where the comparison type is different from move
14499         type.
14500         (fp_minmax): New code iterator for smin/smax.
14501         (minmax): New code attributes for min/max.
14502         (SMINMAX): Likewise.
14503         (smax<mode>3): Combine min, max insns into one insn using the
14504         fp_minmax code iterator.  Add support for ISA 3.0 min/max
14505         instructions that don't need -ffast-math.
14506         (s<minmax><mode>3): Likewise.
14507         (smax<mode>3_vsx): Likewise.
14508         (smin<mode>3): Likewise.
14509         (s<minmax><mode>3_vsx): Likewise.
14510         (smin<mode>3_vsx): Likewise.
14511         (pre-VSX min/max splitters): Likewise.
14512         (s<minmax><mode>3_fpr): Likewise.
14513         (movsfcc): Rewrite floating point conditional moves to combine
14514         SFmode/DFmode into a single insn.
14515         (mov<mode>cc): Likewise.
14516         (movdfcc): Likewise.
14517         (fselsfsf4): Combine FSEL cases into a single insn, using SFDF and
14518         SFDF2 iterators to handle all combinations.
14519         (fseldfsf4): Likewise.
14520         (fsel<SFDF:mode><SFDF2:mode>4): Likewise.
14521         (fseldfdf4): Likewise.
14522         (fselsfdf4): Likewise.
14523         (mov<SFDF:mode><SFDF2:mode>cc_p9): Add support for the ISA 3.0
14524         comparison instructions that set a 0/-1 mask, and use it for
14525         floating point conditional move via XXSEL.
14526         (fpmask<mode>): Likewise.
14527         (xxsel<mode>): Likewise.
14528         * config/rs6000/predicates.md (min_max_operator): Delete, no
14529         longer used.
14530         (fpmask_comparison_operaton): New insn for ISA 3.0 comparison
14531         instructions that generate a 0/-1 mask for use with XXSEL.
14532         * config/rs6000/rs6000.h (TARGET_MINMAX_SF): New helper macros to
14533         say whether floating point min/max is available, either through
14534         FSEL, ISA 2.06 min/max, and ISA 3.0 min/max instrucitons.
14535         (TARGET_MINMAX_DF): Likewise.
14537 2016-05-27  Alan Modra  <amodra@gmail.com>
14539         PR rtl-optimization/71275
14540         * ira.c (ira): Call loop_optimizer_init to set up bb_loop_depth
14541         for update_equiv_regs and combine_and_move_insns.
14543 2016-05-26  Uros Bizjak  <ubizjak@gmail.com>
14545         * config/i386/i386.md (*movqi_internal) <attr "isa">: Use
14546         if_then_else or cond RTXes to calculate attribute value.
14547         * config/i386/mmx.md (*vec_extractv2sf_1) <attr "prefix_rep">: Ditto.
14548         <attr "length_immediate>: Ditto.
14549         (*vec_extractv2sf_1) <attr "length_immediate">: Ditto.
14550         * config/i386/sse.md (sse_loadlps) <attr "length_immediate">: Ditto.
14551         (*vec_concatv2sf_sse4_1) <attr "isa">: Ditto.
14552         <attr "type">: Ditto.
14553         <attr "prefix_data16">: Ditto.
14554         <attr "prefix_extra">: Ditto.
14555         <attr "length_immediate">: Ditto.
14556         <attr "prefix">: Ditto.
14557         (vec_set<mode>_0) <attr "isa">: Ditto.
14558         <attr "prefix_extra">: Ditto.
14559         <attr "length_immediate">: Ditto.
14560         <attr "prefix">: Ditto.
14561         (*vec_interleave_highv2df) <attr "prefix_data16">: Ditto.
14562         (*vec_interleave_lowv2df) <attr "prefix_data16">: Ditto.
14563         (sse2_storelpd) <attr "prefix_data16">: Ditto.
14564         (sse2_loadhpd) <attr "prefix_data16">: Ditto.
14565         (sse2_loadlpd) <attr "prefix_data16">: Ditto.
14566         <attr "length_immediate">: Ditto.
14567         <attr "prefix">: Ditto.
14568         (sse2_movsd) <attr "length_immediate">: Ditto.
14569         <attr "prefix">: Ditto.
14570         (vec_concatv2df)  <attr "isa">: Ditto.
14571         <attr "prefix">: Ditto.
14572         (*vec_extractv4si) <attr "prefix_extra">: Ditto.
14573         (*vec_extractv2di_1) <attr "isa">: Ditto.
14574         <attr "type">: Ditto.
14575         <attr "length_immediate">: Ditto.
14576         <attr "prefix_rex">: Ditto.
14577         <attr "prefix_extra">: Ditto.
14578         (*vec_concatv2si_sse4_1) <attr "type">: Ditto.
14579         <attr "prefix_extra">: Ditto.
14580         <attr "length_immediate">: Ditto.
14581         (vec_concatv2di) <attr "isa">: Ditto.
14582         <attr "prefix_extra">: Ditto.
14583         <attr "length_immediate">: Ditto.
14584         <attr "prefix">: Ditto.
14586 2016-05-26  Martin Liska  <mliska@suse.cz>
14588         * tree-ssa-loop-ivopts.c (comp_cost::infinite_cost_p): New
14589         function.
14590         (operator+): Likewise.
14591         (operator-): Likewise.
14592         (comp_cost::operator+=): Likewise.
14593         (comp_cost::operator-=): Likewise.
14594         (comp_cost::operator/=): Likewise.
14595         (comp_cost::operator*=): Likewise.
14596         (operator<): Likewise.
14597         (operator==): Likewise.
14598         (operator<=): Likewise.
14599         (new_cost): Remove.
14600         (infinite_cost_p): Likewise.
14601         (add_costs): Likewise.
14602         (sub_costs): Likewise.
14603         (compare_costs): Likewise.
14604         (set_group_iv_cost): Use the newly introduced functions.
14605         (get_address_cost): Likewise.
14606         (get_shiftadd_cost): Likewise.
14607         (force_expr_to_var_cost): Likewise.
14608         (split_address_cost): Likewise.
14609         (ptr_difference_cost): Likewise.
14610         (difference_cost): Likewise.
14611         (get_computation_cost_at): Likewise.
14612         (determine_group_iv_cost_generic): Likewise.
14613         (determine_group_iv_cost_address): Likewise.
14614         (determine_group_iv_cost_cond): Likewise.
14615         (autoinc_possible_for_pair): Likewise.
14616         (determine_group_iv_costs): Likewise.
14617         (cheaper_cost_pair): Likewise.
14618         (iv_ca_recount_cost): Likewise.
14619         (iv_ca_set_no_cp): Likewise.
14620         (iv_ca_set_cp): Likewise.
14621         (iv_ca_cost): Likewise.
14622         (iv_ca_new): Likewise.
14623         (iv_ca_dump): Likewise.
14624         (iv_ca_narrow): Likewise.
14625         (iv_ca_prune): Likewise.
14626         (iv_ca_replace): Likewise.
14627         (try_add_cand_for): Likewise.
14628         (try_improve_iv_set): Likewise.
14629         (find_optimal_iv_set): Likewise.
14631 2016-05-26  Richard Sandiford  <richard.sandiford@arm.com>
14633         * tree-ssa-loop-ivopts.c (loop_body_includes_call): Don't assume
14634         that internal functions will clobber all caller-saved registers.
14636 2016-05-26  Wilco Dijkstra  <wdijkstr@arm.com>
14638         * config/aarch64/aarch64.c (aarch64_case_values_threshold):
14639         Return a better case_values_threshold when optimizing.
14641 2016-05-26  Wilco Dijkstra  <wdijkstr@arm.com>
14643         * config/aarch64/aarch64-simd.md (aarch64_combinez):
14644         Add ? to integer variant.
14645         (aarch64_combinez_be): Likewise.
14647 2016-05-26  Jakub Jelinek  <jakub@redhat.com>
14649         * config/i386/sse.md (*vcvtps2ph_store<mask_name>): Use v constraint
14650         instead of x constraint.
14651         (vcvtps2ph256<mask_name>): Likewise.
14653         * config/i386/sse.md (*ssse3_palignr<mode>_perm): Add avx512bw
14654         alternative.  Formatting fix.
14656         * config/i386/sse.md
14657         (<mask_codefor>avx512vl_shuf_<shuffletype>32x4_1<mask_name>): Rename
14658         to ...
14659         (avx512vl_shuf_<shuffletype>32x4_1<mask_name>): ... this.
14660         (*avx_vperm_broadcast_v4sf): Use v constraint instead of x.  Use
14661         maybe_evex prefix instead of vex.
14662         (*avx_vperm_broadcast_<mode>): Use v constraint instead of x.  Handle
14663         EXT_REX_SSE_REG_P (op0) case in the splitter.
14665 2016-05-25  Jeff Law  <law@redhat.com>
14667         PR tree-optimization/71272
14668         * tree-ssa-threadbackward.c (convert_and_register_jump_thread_path):
14669         Update comments.  Add test for empty path.
14671 2016-05-25  Bill Seurer  <seurer@linux.vnet.ibm.com>
14673         * config/rs6000/altivec.h (vec_cmpne): Add #define for vec_cmpne.
14674         * config/rs6000/rs6000-builtin.def (vec_cmpne): Add vec_cmpne as a
14675         special case builtin.
14676         * config/rs6000/rs6000-c.c (altivec_resolve_overloaded_builtin): Add
14677         code for ALTIVEC_BUILTIN_VEC_CMPNE.
14678         * config/rs6000/rs6000.c (altivec_init_builtins): Add definition
14679         for __builtin_vec_cmpne.
14681 2016-05-25  Eric Botcazou  <ebotcazou@adacore.com>
14683         * tree-ssa-phiopt.c (factor_out_conditional_conversion): Remove
14684         redundant test and bail out if the type of the new operand is not
14685         a GIMPLE register type after stripping a VIEW_CONVERT_EXPR.
14687 2016-05-25  Uros Bizjak  <ubizjak@gmail.com>
14689         * config/i386/i386.opt (ix86_target_flags_explicit): Remove.
14690         (x_ix86_target_flags_explicit): Remove.
14691         * config/i386/i386.c (ix86_function_specific_save): Do not copy
14692         x_ix86_target_flags_explicit.
14693         (ix86_function_specific_restore): Ditto.
14695 2016-05-25  Uros Bizjak  <ubizjak@gmail.com>
14696             H.J. Lu  <hongjiu.lu@intel.com>
14698         PR target/70738
14699         * common/config/i386/i386-common.c
14700         (OPTION_MASK_ISA_GENERAL_REGS_ONLY_UNSET): New.
14701         (ix86_handle_option) <case OPT_mgeneral_regs_only>: Disable
14702         MPX, MMX, SSE and x87 instructions for -mgeneral-regs-only.
14703         * config/i386/i386.opt (ix86_target_flags): Add new Variable.
14704         (-mgeneral-regs-only): Add new option.
14705         * config/i386/i386.c (ix86_option_override_internal): Don't enable
14706         x87 instructions if only general registers are allowed.
14707         (ix86_target_string): Add ix86_flags argument. Handle additional
14708         flags options through ix86_flags argument.  Update all callers.
14709         * doc/invoke.texi (x86 Options): Document -mgeneral-regs-only.
14711 2016-05-25  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
14713         PR rtl-optimization/66940
14714         * ifcvt.c (noce_get_alt_condition): Check that incrementing or
14715         decrementing desired_val will not overflow before performing these
14716         operations.
14718 2016-05-25  Ilya Verbin  <ilya.verbin@intel.com>
14720         * config/i386/i386-builtin-types.def: Add V16SI_FTYPE_V16SF,
14721         V8DF_FTYPE_V8DF_ROUND, V16SF_FTYPE_V16SF_ROUND, V16SI_FTYPE_V16SF_ROUND.
14722         * config/i386/i386.c (enum ix86_builtins): Add
14723         IX86_BUILTIN_CVTPS2DQ512_MASK, IX86_BUILTIN_FLOORPS512,
14724         IX86_BUILTIN_FLOORPD512, IX86_BUILTIN_CEILPS512, IX86_BUILTIN_CEILPD512,
14725         IX86_BUILTIN_TRUNCPS512, IX86_BUILTIN_TRUNCPD512,
14726         IX86_BUILTIN_CVTPS2DQ512, IX86_BUILTIN_VEC_PACK_SFIX512,
14727         IX86_BUILTIN_FLOORPS_SFIX512, IX86_BUILTIN_CEILPS_SFIX512,
14728         IX86_BUILTIN_ROUNDPS_AZ_SFIX512.
14729         (builtin_description bdesc_args): Add __builtin_ia32_floorps512,
14730         __builtin_ia32_ceilps512, __builtin_ia32_truncps512,
14731         __builtin_ia32_floorpd512, __builtin_ia32_ceilpd512,
14732         __builtin_ia32_truncpd512, __builtin_ia32_cvtps2dq512,
14733         __builtin_ia32_vec_pack_sfix512, __builtin_ia32_roundps_az_sfix512,
14734         __builtin_ia32_floorps_sfix512, __builtin_ia32_ceilps_sfix512.
14735         Change IX86_BUILTIN_CVTPS2DQ512 to IX86_BUILTIN_CVTPS2DQ512_MASK for
14736         __builtin_ia32_cvtps2dq512_mask.
14737         (ix86_expand_args_builtin): Handle V8DF_FTYPE_V8DF_ROUND,
14738         V16SF_FTYPE_V16SF_ROUND, V16SI_FTYPE_V16SF_ROUND, V16SI_FTYPE_V16SF.
14739         (ix86_builtin_vectorized_function): Handle builtins mentioned above.
14740         * config/i386/sse.md
14741         (<mask_codefor>avx512f_fix_notruncv16sfv16si<mask_name><round_name>):
14742         Rename to ...
14743         (avx512f_fix_notruncv16sfv16si<mask_name><round_name>): ... this.
14744         (<mask_codefor>avx512f_cvtpd2dq512<mask_name><round_name>): Rename
14745         to ...
14746         (avx512f_cvtpd2dq512<mask_name><round_name>): ... this.
14747         (avx512f_vec_pack_sfix_v8df): New define_expand.
14748         (avx512f_roundpd512): Rename to ...
14749         (avx512f_round<castmode>512): ... this.  Change iterator.
14750         (avx512f_roundps512_sfix): New define_expand.
14751         (round<mode>2_sfix): Change iterator.
14753 2016-05-25  Nick Clifton  <nickc@redhat.com>
14755         * config/msp430/msp430.c (msp430_attr): Produce an error if a
14756         static interrupt handler is detected.
14757         * config/msp430/msp430.h (LIB_SPEC): Do not use msp430.ld as the
14758         default linker script.
14759         * config/msp430/msp430.md (movpsihi2_lo): New pattern for loading
14760         the low part of a symbolic pointer.
14762 2016-05-25  Richard Biener  <rguenther@suse.de>
14764         PR tree-optimization/71261
14765         * tree-if-conv.c (ifcvt_split_def_stmt): Walk uses on the
14766         interesting stmt instead of immediate uses when looking
14767         for the use operand to replace.
14769 2016-05-25  Martin Liska  <mliska@suse.cz>
14771         * ipa-inline.c (edge_badness): Use 'w/' instead of 'w'.
14773 2016-05-25  Richard Biener  <rguenther@suse.de>
14775         PR tree-optimization/71264
14776         * tree-vect-stmts.c (vect_init_vector): Properly deal with
14777         vector type val.
14779 2016-05-25  Martin Liska  <mliska@suse.cz>
14781         PR tree-optimization/71239
14782         * tree.c (array_at_struct_end_p): Do not call operand_equal_p
14783         if DECL_SIZE is NULL.
14785 2016-05-25  Richard Biener  <rguenther@suse.de>
14787         * timevar.def (TV_TREE_LOOP_IFCVT): Add.
14788         * tree-if-conv.c (pass_data_if_conversion): Use it.
14790 2016-05-25  Bernd Edlinger  <bernd.edlinger@hotmail.de>
14792         * cgraph.c (cgraph_node::get_availability): Fix typo in comment.
14793         * symtab.c (symtab_node::binds_to_current_def_p): Likewise.
14794         * varpool.c (varpool_node::get_availability): Likewise.
14796 2016-05-24  Michael Meissner  <meissner@linux.vnet.ibm.com>
14798         * config/rs6000/altivec.md (VNEG iterator): New iterator for
14799         VNEGW/VNEGD instructions.
14800         (p9_neg<mode>2): New insns for ISA 3.0 VNEGW/VNEGD.
14801         (neg<mode>2): Add expander for V2DImode added in ISA 2.07, and
14802         support for ISA 3.0 VNEGW/VNEGD instructions.
14804 2016-05-24  Cesar Philippidis  <cesar@codesourcery.com>
14806         * gimplify.c (omp_notice_variable): Use zero-length arrays for data
14807         pointers inside OACC_DATA regions.
14808         (gimplify_scan_omp_clauses): Prune firstprivate clause associated
14809         with OACC_DATA, OACC_ENTER_DATA and OACC_EXIT data regions.
14810         (gimplify_adjust_omp_clauses): Fix typo in comment.
14812 2016-05-24  Michael Meissner  <meissner@linux.vnet.ibm.com>
14814         * config/rs6000/altivec.md (VParity): New mode iterator for vector
14815         parity built-in functions.
14816         (p9v_ctz<mode>2): Add support for ISA 3.0 vector count trailing
14817         zeros.
14818         (p9v_parity<mode>2): Likewise.
14819         * config/rs6000/vector.md (VEC_IP): New mode iterator for vector
14820         parity.
14821         (ctz<mode>2): ISA 3.0 expander for vector count trailing zeros.
14822         (parity<mode>2): ISA 3.0 expander for vector parity.
14823         * config/rs6000/rs6000-builtin.def (BU_P9_MISC_1): New macros for
14824         power9 built-ins.
14825         (BU_P9_64BIT_MISC_0): Likewise.
14826         (BU_P9_MISC_0): Likewise.
14827         (BU_P9V_AV_1): Likewise.
14828         (BU_P9V_AV_2): Likewise.
14829         (BU_P9V_AV_3): Likewise.
14830         (BU_P9V_AV_P): Likewise.
14831         (BU_P9V_VSX_1): Likewise.
14832         (BU_P9V_OVERLOAD_1): Likewise.
14833         (BU_P9V_OVERLOAD_2): Likewise.
14834         (BU_P9V_OVERLOAD_3): Likewise.
14835         (VCTZB): Add vector count trailing zeros support.
14836         (VCTZH): Likewise.
14837         (VCTZW): Likewise.
14838         (VCTZD): Likewise.
14839         (VPRTYBD): Add vector parity support.
14840         (VPRTYBQ): Likewise.
14841         (VPRTYBW): Likewise.
14842         (VCTZ): Add overloaded vector count trailing zeros support.
14843         (VPRTYB): Add overloaded vector parity support.
14844         * config/rs6000/rs6000-c.c (altivec_overloaded_builtins): Add
14845         overloaded vector count trailing zeros and parity instructions.
14846         * config/rs6000/rs6000.md (wd mode attribute): Add V1TI and TI for
14847         vector parity support.
14848         * config/rs6000/altivec.h (vec_vctz): Add ISA 3.0 vector count
14849         trailing zeros support.
14850         (vec_cntlz): Likewise.
14851         (vec_vctzb): Likewise.
14852         (vec_vctzd): Likewise.
14853         (vec_vctzh): Likewise.
14854         (vec_vctzw): Likewise.
14855         (vec_vprtyb): Add ISA 3.0 vector parity support.
14856         (vec_vprtybd): Likewise.
14857         (vec_vprtybw): Likewise.
14858         (vec_vprtybq): Likewise.
14859         * doc/extend.texi (PowerPC AltiVec Built-in Functions): Document
14860         the ISA 3.0 vector count trailing zeros and vector parity built-in
14861         functions.
14863 2016-05-24  Kugan Vivekanandarajah  <kuganv@linaro.org>
14865         * tree-ssa-reassoc.c (sort_by_operand_rank): Skip checking gimple_bb
14866         when there is stmt_to_insert.
14868 2016-05-24  Martin Sebor  <msebor@redhat.com>
14870         PR c++/71147
14871         * tree.h (complete_or_array_type_p): New inline function.
14873 2016-05-24  Jakub Jelinek  <jakub@redhat.com>
14875         * config/i386/i386.h (TARGET_AVOID_4BYTE_PREFIXES): Define.
14876         * config/i386/constraints.md (Yr): Test TARGET_AVOID_4BYTE_PREFIXES
14877         rather than X86_TUNE_AVOID_4BYTE_PREFIXES.
14879         * config/i386/sse.md (<sse4_1>_round<ssemodesuffix><avxsizesuffix>):
14880         Limit 1st alternative to noavx isa, split 2nd alternative into one
14881         noavx and one avx alternative, use *x and Bm in the former and
14882         x and m in the latter.
14884         * config/i386/sse.md (vec_set<mode>_0): Use sse4_noavx isa instead
14885         of sse4 for the first alternative, drop %v from the template
14886         and d operand modifier.  Split second alternative into one sse4_noavx
14887         and one avx alternative, use *x instead of *v in the former and v
14888         instead of *v in the latter.
14889         (*sse4_1_extractps): Use noavx isa instead of * for the first
14890         alternative, drop %v from the template.  Split second alternative into
14891         one noavx and one avx alternative, use *x instead of *v in the
14892         former and v instead of *v in the latter.
14893         (<vi8_sse4_1_avx2_avx512>_movntdqa): Guard the first 2 alternatives
14894         with noavx and the last one with avx.
14895         (sse4_1_phminposuw): Guard first alternative with noavx isa,
14896         split the second one into one noavx and one avx alternative,
14897         use *x and Bm in the former and x and m in the latter one.
14898         (<sse4_1>_ptest<mode>): Use noavx instead of * for the first two
14899         alternatives.
14901         * config/i386/sse.md (sse4_1_<code>v8qiv8hi2<mask_name>): Limit
14902         first two alternatives to noavx, use *x instead of *v in the second
14903         one, add avx alternative without *.
14904         (sse4_1_<code>v4qiv4si2<mask_name>, sse4_1_<code>v4hiv4si2<mask_name>,
14905         sse4_1_<code>v2qiv2di2<mask_name>, sse4_1_<code>v2hiv2di2<mask_name>,
14906         sse4_1_<code>v2siv2di2<mask_name>): Likewise.
14908 2016-05-24  Jeff Law  <law@redhat.com>
14910         * tree-ssa-threadbackwards.c (convert_and_register_jump_thread_path):
14911         New function, extracted from...
14912         (fsm_find_control_statement_thread_paths): Here.  Use the new function.
14913         Allow simple copies and constant initializations in the SSA chain.
14915 2016-05-24  Marek Polacek  <polacek@redhat.com>
14917         PR c/71249
14918         * gimplify.c (gimplify_switch_expr): Look into the innermost lexical
14919         scope.
14921 2016-05-24  Jakub Jelinek  <jakub@redhat.com>
14923         PR c++/71257
14924         * tree-vect-stmts.c (vectorizable_simd_clone_call): Handle
14925         SIMD_CLONE_ARG_TYPE_LINEAR_REF_CONSTANT_STEP like
14926         SIMD_CLONE_ARG_TYPE_LINEAR_CONSTANT_STEP.  Add
14927         SIMD_CLONE_ARG_TYPE_LINEAR_VAL_CONSTANT_STEP and
14928         SIMD_CLONE_ARG_TYPE_LINEAR_UVAL_CONSTANT_STEP cases explicitly.
14930 2016-05-24  Richard Biener  <rguenther@suse.de>
14932         PR tree-optimization/71240
14933         * tree-ssa-math-opts.c (init_symbolic_number): Verify the source
14934         has integral type.
14936 2016-05-24  Richard Biener  <rguenther@suse.de>
14938         PR tree-optimization/71230
14939         * tree-ssa-reassoc.c (zero_one_operation): Handle negate special ops.
14941 2016-05-24  Richard Sandiford  <richard.sandiford@arm.com>
14943         * tree-vectorizer.h (vectorizable_comparison): Delete.
14944         * tree-vect-loop.c (vectorizable_reduction): Remove redundant
14945         PURE_SLP_STMT check.
14946         * tree-vect-stmts.c (vectorizable_call): Likewise.
14947         (vectorizable_simd_clone_call): Likewise.
14948         (vectorizable_conversion): Likewise.
14949         (vectorizable_assignment): Likewise.
14950         (vectorizable_shift): Likewise.
14951         (vectorizable_operation): Likewise.
14952         (vectorizable_load): Likewise.
14953         (vectorizable_condition): Likewise.
14954         (vectorizable_store): Likewise.  Assert that we don't have
14955         hybrid SLP.
14956         (vectorizable_comparison): Make static.  Remove redundant
14957         PURE_SLP_STMT check.
14958         (vect_transform_stmt): Assert that we always have an slp_node
14959         if PURE_SLP_STMT.
14961 2016-05-24  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
14963         * config/arm/neon.md (ashldi3_neon):  Replace comparison of INTVAL of
14964         operands[2] against 1 with comparison against CONST1_RTX.
14965         (<shift>di3_neon): Likewise.
14966         * config/arm/predicates.md (const0_operand): Replace with comparison
14967         against CONST0_RTX.
14969 2016-05-24  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
14971         * config/arm/arm.md (ashldi3): Replace comparison of INTVAL of
14972         operands[2] against 1 with comparison against CONST1_RTX.
14973         (ashrdi3): Likewise.
14974         (lshrdi3): Likewise.
14975         (ashlsi3): Replace cast of INTVAL to unsigned HOST_WIDE_INT with
14976         UINTVAL.
14977         (ashrsi3): Likewise.
14978         (lshrsi3): Likewise.
14979         (rotrsi3): Likewise.
14980         (define_split above *compareqi_eq0): Likewise.
14981         (define_split above "prologue"): Likewise.
14982         * config/arm/arm.c (thumb1_size_rtx_costs): Likewise.
14983         * config/arm/predicates.md (shift_operator): Likewise.
14984         (shift_nomul_operator): Likewise.
14985         (sat_shift_operator): Likewise.
14986         (thumb1_cmp_operand): Likewise.
14987         (const_neon_scalar_shift_amount_operand): Replace manual range
14988         check with IN_RANGE.
14989         * config/arm/thumb1.md (define_peephole2 above *thumb_subdi3):
14990         Replace cast of INTVAL to unsigned HOST_WIDE_INT with UINTVAL.
14992 2016-05-24  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
14994         * config/arm/arm.md (andsi3): Replace cast of 1 to HOST_WIDE_INT
14995         with HOST_WIDE_INT_1.
14996         (insv): Likewise.
14997         * config/arm/arm.c (optimal_immediate_sequence): Replace cast of
14998         1 to unsigned HOST_WIDE_INT with HOST_WIDE_INT_1U.
14999         (arm_canonicalize_comparison): Likewise.
15000         (thumb1_rtx_costs): Replace cast of 1 to HOST_WIDE_INT with
15001         HOST_WIDE_INT_1.
15002         (thumb1_size_rtx_costs): Likewise.
15003         (vfp_const_double_index): Replace cast of 1 to unsigned
15004         HOST_WIDE_INT with HOST_WIDE_INT_1U.
15005         (get_jump_table_size): Replace cast of 1 to HOST_WIDE_INT with
15006         HOST_WIDE_INT_1.
15007         (arm_asan_shadow_offset): Replace cast of 1 to unsigned
15008         HOST_WIDE_INT with HOST_WIDE_INT_1U.
15009         * config/arm/neon.md (vec_set<mode>): Replace cast of 1 to
15010         HOST_WIDE_INT with HOST_WIDE_INT_1.
15012 2016-05-24  Marek Polacek  <polacek@redhat.com>
15014         * tree-cfg.h (should_remove_lhs_p): New predicate.
15015         * cgraph.c (cgraph_edge::redirect_call_stmt_to_callee): Use it.
15016         * gimplify.c (gimplify_modify_expr): Likewise.
15017         * tree-cfg.c (verify_gimple_call): Likewise.
15018         * tree-cfgcleanup.c (fixup_noreturn_call): Likewise.
15019         * gimple-fold.c: Include "tree-cfg.h".
15020         (gimple_fold_call): Use should_remove_lhs_p.
15022 2016-05-24  Richard Biener  <rguenther@suse.de>
15024         PR tree-optimization/71253
15025         * cfganal.h (control_dependences): Make robust against edge
15026         and BB removal.
15027         (control_dependences::control_dependences): Remove edge_list argument.
15028         (control_dependences::get_edge): Remove.
15029         (control_dependences::get_edge_src): Add.
15030         (control_dependences::get_edge_dest): Likewise.
15031         (control_dependences::m_el): Make a vector of edge src/dest index.
15032         * cfganal.c (control_dependences::find_control_dependence): Adjust.
15033         (control_dependences::control_dependences): Likewise.
15034         (control_dependences::~control_dependence): Likewise.
15035         (control_dependences::get_edge): Remove.
15036         (control_dependences::get_edge_src): Add.
15037         (control_dependences::get_edge_dest): Likewise.
15038         * tree-ssa-dce.c (mark_control_dependent_edges_necessary): Use
15039         get_edge_src.
15040         (perform_tree_ssa_dce): Adjust.
15041         * tree-loop-distribution.c (create_edge_for_control_dependence): Use
15042         get_edge_src.
15043         (pass_loop_distribution::execute): Adjust.  Do loop destroying
15044         conditional on changed.
15046 2016-05-24  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
15048         PR target/69857
15049         * config/arm/arm.c (gen_operands_ldrd_strd): Remove bogus early
15050         return.  Reindent transformation comment and mention the ARM state
15051         behavior.
15053 2016-05-24  Kugan Vivekanandarajah  <kuganv@linaro.org>
15055         PR middle-end/71252
15056         * tree-ssa-reassoc.c (rewrite_expr_tree_parallel): Add stmt_to_insert
15057         after build_and_add_sum creates new use stmt.
15059 2016-05-24  Richard Sandiford  <richard.sandiford@arm.com>
15061         * tree-vect-stmts.c (vectorizable_load): Reorder checks so that
15062         load_lanes/grouped_load classification comes first.  Don't check
15063         whether the vectorization factor is a multiple of the group size
15064         for load_lanes.
15066 2016-05-24  Richard Sandiford  <richard.sandiford@arm.com>
15068         * tree-vect-data-refs.c (vect_analyze_group_access_1): Set
15069         GROUP_GAP for single-element interleaving.
15070         * tree-vect-stmts.c (vectorizable_load): Remove force_peeling
15071         variable.
15073 2016-05-24  Richard Biener  <rguenther@suse.de>
15075         PR middle-end/70434
15076         PR c/69504
15077         * tree-ssa.c (non_rewritable_mem_ref_base): Make sure to mark
15078         bases which are accessed with non-invariant indices.
15079         * gimple-fold.c (maybe_canonicalize_mem_ref_addr): Re-write
15080         constant index ARRAY_REFs of vectors into BIT_FIELD_REFs.
15082 2016-05-24  Kugan Vivekanandarajah  <kuganv@linaro.org>
15084         PR middle-end/71170
15085         * tree-ssa-reassoc.c (struct operand_entry): Add field stmt_to_insert.
15086         (add_to_ops_vec): Add stmt_to_insert.
15087         (add_repeat_to_ops_vec): Init stmt_to_insert.
15088         (insert_stmt_before_use): New.
15089         (transform_add_to_multiply): Remove mult_stmt insertion and add it
15090         to ops vector.
15091         (get_ops): Init stmt_to_insert.
15092         (maybe_optimize_range_tests): Likewise.
15093         (rewrite_expr_tree): Insert stmt_to_insert before use stmt.
15094         (rewrite_expr_tree_parallel): Likewise.
15095         (reassociate_bb): Likewise.
15097 2016-05-23  Michael Meissner  <meissner@linux.vnet.ibm.com>
15099         PR target/71201
15100         * config/rs6000/altivec.md (altivec_vperm_<mode>_internal): Drop
15101         ISA 3.0 xxperm fusion alternative.
15102         (altivec_vperm_v8hiv16qi): Likewise.
15103         (altivec_vperm_<mode>_uns_internal): Likewise.
15104         (vperm_v8hiv4si): Likewise.
15105         (vperm_v16qiv8hi): Likewise.
15107 2016-05-23  Michael Meissner  <meissner@linux.vnet.ibm.com>
15108             Kelvin Nilsen  <kelvin@gcc.gnu.org>
15110         * config/rs6000/rs6000.c (rs6000_expand_vector_set): Generate
15111         vpermr/xxpermr on ISA 3.0.
15112         (altivec_expand_vec_perm_le): Likewise.
15113         * config/rs6000/altivec.md (UNSPEC_VPERMR): New unspec.
15114         (altivec_vpermr_<mode>_internal): Add VPERMR/XXPERMR support for
15115         ISA 3.0.
15117 2016-05-23  Uros Bizjak  <ubizjak@gmail.com>
15119         * config/i386/i386.h (IS_STACK_MODE): Enable for
15120         TARGET_MIX_SSE_I387.  Rewrite using X87_FLOAT_MODE_P and
15121         SSE_FLOAT_MODE_P macros.
15122         * config/i386/i386.c (ix86_preferred_reload_class): Use
15123         IS_STACK_MODE, INTEGER_CLASS_P, FLOAT_CLASS_P and Q_CLASS_P macros.
15124         Cleanup regclass processing for CONST_DOUBLE_P.
15125         (ix86_preferred_output_reload_class): Use IS_STACK_MODE macro.
15126         (ix86_rtx_costs): Remove redundant TARGET_80387 check
15127         with IS_STACK_MODE macro.
15128         * config/i386/i386.md: Replace SSE_FLOAT_MODE_P (DFmode)
15129         with TARGET_SSE2.
15130         (*movdf_internal): Use IS_STACK_MODE macro.
15131         (*movsf_internal): Ditto.
15133 2016-05-23  Marc Glisse  <marc.glisse@inria.fr>
15135         * match.pd (a * (1 << b), ~x & ~y, ~X ^ ~Y, (X ^ Y) ^ Y, ~ (-A),
15136         ~ (A - 1), ~(~X >> Y), ~(~X >>r Y)): Relax constraints.
15138 2016-05-23  Jeff Law  <law@redhat.com>
15140         * tree-ssa-threadbackward.c (profitable_jump_thread_path): New function
15141         extracted from ...
15142         (fsm_find_control_statement_thread_paths): Call it.
15144 2016-05-23  Martin Jambor  <mjambor@suse.cz>
15146         PR ipa/71234
15147         * ipa-cp.c (ipa_get_indirect_edge_target_1): Only check value of
15148         from_global_constant if t is not NULL.
15150 2016-05-23  Marek Polacek  <polacek@redhat.com>
15152         PR c/49859
15153         * common.opt (Wswitch-unreachable): New option.
15154         * doc/invoke.texi: Document -Wswitch-unreachable.
15155         * gimplify.c (gimplify_switch_expr): Implement the -Wswitch-unreachable
15156         warning.
15158 2016-05-23  Bin Cheng  <bin.cheng@arm.com>
15160         * tree-ssa-address.c (copy_ref_info): Check NULL TMR_STEP when
15161         TMR_INDEX is non-NULL.
15163 2016-05-23  Richard Biener  <rguenther@suse.de>
15165         PR tree-optimization/71230
15166         * tree-ssa-reassoc.c (acceptable_pow_call): Move initial condition...
15167         (try_special_add_to_ops): ... here.  Always test for single-use.
15169 2016-05-23  Martin Jambor  <mjambor@suse.cz>
15171         * hsa-gen.c (gen_hsa_insns_for_switch_stmt): Create an empty
15172         default block if a PHI node in the original one would be resized.
15174 2016-05-23  Venkataramanan Kumar  <venkataramanan.kumar@amd.com>
15176         PR tree-optimization/58135
15177         * tree-vect-slp.c: When group size is not multiple
15178         of vector size, allow splitting of store group at
15179         vector boundary.
15181 2016-05-23  Christophe Lyon  <christophe.lyon@linaro.org>
15183         * config/arm/arm_neon.h (vtst_p16, vtstq_p16): New.
15185 2016-05-22  Jakub Jelinek  <jakub@redhat.com>
15187         * config/i386/sse.md (vec_set_lo_<mode><mask_name>,
15188         vec_set_hi_<mode><mask_name>): Add && <mask_avx512dq_condition>
15189         condition.  For !TARGET_AVX512DQ, emit 32x4 instruction instead
15190         of 64x2.
15192         * config/i386/sse.md (vec_set_lo_v16hi, vec_set_hi_v16hi,
15193         vec_set_lo_v32qi, vec_set_hi_v32qi): Add alternative with
15194         v constraint instead of x and vinserti32x4 insn.
15196         * config/i386/sse.md (i128vldq): New mode iterator.
15197         (avx2_vbroadcasti128_<mode>, avx_vbroadcastf128_<mode>): Add
15198         avx512dq and avx512vl alternatives.
15200         * config/i386/sse.md (avx2_vec_dupv4df): Use v instead of x
15201         constraint, use maybe_evex prefix instead of vex.
15202         (vec_dupv4sf): Use v constraint instead of x for output
15203         operand except for noavx alternative, use Yv constraint
15204         instead of x for input.  Use maybe_evex prefix instead of vex.
15205         (*vec_dupv4si): Likewise.
15206         (*vec_dupv2di): Likewise.
15208 2016-05-22  Kugan Vivekanandarajah  <kuganv@linaro.org>
15210         PR middle-end/40921
15211         * tree-ssa-reassoc.c (try_special_add_to_ops): New.
15212         (linearize_expr_tree): Call try_special_add_to_ops.
15213         (reassociate_bb): Convert MULT_EXPR by (-1) to NEGATE_EXPR.
15215 2016-05-21  Senthil Kumar Selvaraj  <senthil_kumar.selvaraj@atmel.com>
15217         * config/avr/avr.c (avr_expand_prologue): Add INCOMING_FRAME_SP_OFFSET
15218         to computed stack_usage.
15220 2016-05-21  Pitchumani Sivanupandi  <pitchumani.s@atmel.com>
15222         PR target/71103
15223         * config/avr/avr.md (define_expand "mov<mode>"): If the source
15224         operand is subreg (symbol_ref) then move the symbol ref to register.
15226 2016-05-21  Jan Hubicka  <hubicka@ucw.cz>
15228         * tree.c (array_at_struct_end_p): Look through MEM_REF.
15230 2016-05-21  Kugan Vivekanandarajah  <kuganv@linaro.org>
15232         PR middle-end/71179
15233         * tree-ssa-reassoc.c (transform_add_to_multiply): Disallow float
15234         VECTOR type.
15236 2016-05-20  Eric Botcazou  <ebotcazou@adacore.com>
15238         * tree-vrp.c (compare_values_warnv): Simplify handling of symbolic
15239         ranges by calling get_single_symbol and tidy up.  Look more closely
15240         into NAME + CST1 vs CST2 comparisons if type overflow is undefined.
15242 2016-05-20  Jeff Law  <law@redhat.com>
15244         * bitmap.c (bitmap_find_bit): Remove useless test.
15246 2016-05-20  Segher Boessenkool  <segher@kernel.crashing.org>
15248         * function.c (thread_prologue_and_epilogue_insns): Commit the
15249         insertion of the epilogue.
15251 2016-05-20  Martin Jambor  <mjambor@suse.cz>
15253         PR tree-optimization/70884
15254         * tree-sra.c (initialize_constant_pool_replacements): Do not check
15255         should_scalarize_away_bitmap and cannot_scalarize_away_bitmap bits.
15256         (sort_and_splice_var_accesses): Do not consider multiple scalar reads
15257         of constant pool data as a reason for scalarization.
15259 2016-05-20  Eric Botcazou  <ebotcazou@adacore.com>
15261         * config/arm/arm.c (arm_expand_prologue): Set the stack usage to 0
15262         for naked functions.
15263         (thumb1_expand_prologue): Likewise.
15265 2016-05-20  Nathan Sidwell  <nathan@acm.org>
15267         * config/nvptx/nptx.c (nvptx_option_override): Only set
15268         flag_toplevel_reorder, if not explicitly specified.  Set
15269         flag_no_common, unless explicitly specified.
15271 2016-05-20  David Malcolm  <dmalcolm@redhat.com>
15273         * calls.c (can_implement_as_sibling_call_p): Mark param
15274         reg_parm_stack_space with ATTRIBUTE_UNUSED.
15276 2016-05-20  Uros Bizjak  <ubizjak@gmail.com>
15278         * config/i386/i386.c (ix86_rtx_costs) <case CONST_DOUBLE>:
15279         Use IS_STACK_MODE when calculating cost of standard 80387 constants.
15280         Fallthru to CONST_VECTOR case to calculate cost of standard SSE
15281         constants.
15282         <case CONST_WIDE_INT>: Calculate cost of (MEM (SYMBOL_REF)).
15283         (ix86_legitimate_constant_p): Use CASE_CONST_SCALAR_INT
15284         and CASE_CONST_ANY.
15286 2016-05-20  Cesar Philippidis  <cesar@codesourcery.com>
15288         * config/nvptx/nvptx.md (sincossf3): New pattern.
15290 2016-05-20  David Malcolm  <dmalcolm@redhat.com>
15292         * calls.c (maybe_complain_about_tail_call): New function.
15293         (initialize_argument_information): Call
15294         maybe_complain_about_tail_call when clearing *may_tailcall.
15295         (can_implement_as_sibling_call_p): Call
15296         maybe_complain_about_tail_call when returning false.
15297         (expand_call): Read CALL_EXPR_MUST_TAIL_CALL and, if set,
15298         ensure try_tail_call is set.  Call maybe_complain_about_tail_call
15299         if tail-call optimization fails.
15300         * cfgexpand.c (expand_call_stmt): Initialize
15301         CALL_EXPR_MUST_TAIL_CALL from gimple_call_must_tail_p.
15302         * gimple-pretty-print.c (dump_gimple_call): Dump
15303         gimple_call_must_tail_p.
15304         * gimple.c (gimple_build_call_from_tree): Call
15305         gimple_call_set_must_tail with the value of
15306         CALL_EXPR_MUST_TAIL_CALL.
15307         * gimple.h (enum gf_mask): Add GF_CALL_MUST_TAIL_CALL.
15308         (gimple_call_set_must_tail): New function.
15309         (gimple_call_must_tail_p): New function.
15310         * print-tree.c (print_node): Update printing of TREE_STATIC
15311         to reflect its use for CALL_EXPR_MUST_TAIL_CALL.
15312         * tree-core.h (struct tree_base): Add MUST_TAIL_CALL to the
15313         trailing comment listing applicable flags.
15314         * tree.h (CALL_EXPR_MUST_TAIL_CALL): New macro.
15316 2016-05-20  David Malcolm  <dmalcolm@redhat.com>
15318         * calls.c (expand_call): Move "Rest of purposes for tail call
15319         optimizations to fail" to...
15320         (can_implement_as_sibling_call_p): ...this new function, and
15321         split into multiple "if" statements.
15323 2016-05-20  Jan Hubicka  <hubicka@ucw.cz>
15325         * cfgloop.h (expected_loop_iterations_unbounded,
15326         expected_loop_iterations): Unconstify.
15327         * cfgloopanal.c (expected_loop_iterations_unbounded): Sanity check the
15328         profile with known upper bound; return 3 when profile is absent.
15329         (expected_loop_iterations): Update.
15331 2016-05-20  Jan Hubicka  <hubicka@ucw.cz>
15333         * loop-doloop.c (doloop_optimize): Use get_estimated_loop_iterations_int
15334         and get_max_loop_iterations_int.
15336 2016-05-20  Jan Hubicka  <hubicka@ucw.cz>
15338         * tree-ssa-loop-niter.c (idx_infer_loop_bounds): We can not produce
15339         realistic upper bounds here.
15341 2016-05-20  Jakub Jelinek  <jakub@redhat.com>
15343         PR c++/71210
15344         * gimple-fold.c (gimple_fold_call): Do not remove lhs of noreturn
15345         calls if the LHS is variable length or has addressable type.
15346         If targets[0]->decl is a noreturn call with void return type and
15347         zero arguments, adjust fntype and remove lhs in that case.
15349 2016-05-20  Marc Glisse  <marc.glisse@inria.fr>
15351         PR tree-optimization/71079
15352         PR tree-optimization/71206
15353         * match.pd ((X ^ Y) ^ (X ^ Z)): Convert the arguments.
15355 2016-05-20  Prathamesh Kulkarni  <prathamesh.kulkarni@linaro.org>
15357         * tree-vectorizer.c (get_vec_alignment_for_decl): New static function.
15358         (get_vec_alignment_for_array_decl): Likewise.
15359         (get_vec_alignment_for_record_decl): Likewise.
15360         (increase_alignment::execute): Move code to find alignment to
15361         get_vec_alignment_for_array_decl and call get_vec_alignment_for_decl.
15362         (type_align_map): New hash_map.
15364 2016-05-20  Richard Guenther  <rguenther@suse.de>
15366         PR tree-optimization/29756
15367         * tree.def (BIT_INSERT_EXPR): New tcc_expression tree code.
15368         * expr.c (expand_expr_real_2): Handle BIT_INSERT_EXPR.
15369         * fold-const.c (operand_equal_p): Likewise.
15370         (fold_ternary_loc): Add constant folding of BIT_INSERT_EXPR.
15371         * gimplify.c (gimplify_expr): Handle BIT_INSERT_EXPR.
15372         * tree-inline.c (estimate_operator_cost): Likewise.
15373         * tree-pretty-print.c (dump_generic_node): Likewise.
15374         * tree-ssa-operands.c (get_expr_operands): Likewise.
15375         * cfgexpand.c (expand_debug_expr): Likewise.
15376         * gimple-pretty-print.c (dump_ternary_rhs): Likewise.
15377         * gimple.c (get_gimple_rhs_num_ops): Handle BIT_INSERT_EXPR.
15378         * tree-cfg.c (verify_gimple_assign_ternary): Verify BIT_INSERT_EXPR.
15379         * tree-ssa.c (non_rewritable_lvalue_p): We can rewrite
15380         vector inserts using BIT_FIELD_REF or MEM_REF on the lhs.
15381         (execute_update_addresses_taken): Do it.
15383 2016-05-20  Richard Biener  <rguenther@suse.de>
15385         PR tree-optimization/71185
15386         * tree-ssa-loop-prefetch.c (gather_memory_references): Drop
15387         register operations.
15389 2016-05-20  Richard Biener  <rguenther@suse.de>
15391         * tree-if-conv.c (add_bb_predicate_gimplified_stmts): Use
15392         gimple_seq_add_seq_without_update.
15393         (release_bb_predicate): Assert we have no operands to free.
15394         (if_convertible_loop_p_1): Calculate post dominators later.
15395         Do not free BB predicates here.
15396         (combine_blocks): Do not recompute BB predicates.
15397         (version_loop_for_if_conversion): Save BB predicates around
15398         loop versioning.
15400 2016-05-19  Segher Boessenkool  <segher@kernel.crashing.org>
15402         * function.c (make_epilogue_seq): Remove epilogue_end parameter.
15403         (thread_prologue_and_epilogue_insns): Remove bb_flags.  Restructure
15404         code.  Ignore sibcalls on EDGE_IGNORE edges.
15405         * shrink-wrap.c (handle_simple_exit): New function.  Set EDGE_IGNORE
15406         on edges for sibcalls that run without prologue.  The rest of the
15407         function is combined from...
15408         (fix_fake_fallthrough_edge): ... this, and ...
15409         (try_shrink_wrapping): ... a part of this.  Remove the bb_with
15410         function argument, make it a local variable.
15412 2016-05-19  Sandra Loosemore  <sandra@codesourcery.com>
15414         * config/i386/cygming.h (DWARF2_UNWIND_INFO): Allow
15415         --disable-sjlj-exceptions for TARGET_BI_ARCH to select DWARF-2 EH
15416         for 32-bit mode and SEH for 64-bit.
15417         * config/i386/mingw32.h (SHARED_LIBGCC_UNDEFS_SPEC): Handle
15418         TARGET_64BIT_DEFAULT.
15420 2016-05-19  Ryan Burn  <contact@rnburn.com>
15422         * Makefile.in (GTFILES): Add cilk.h and cilk-common.c.
15423         * gengtype.c (open_base_files): Add cilk.h to ifiles.
15425 2016-05-19  Uros Bizjak  <ubizjak@gmail.com>
15427         * sched-deps.c (sched_analyze_2) <case TRAP_IF>: Also
15428         force pending loads from memory.
15430 2016-05-19  Kelvin Nilsen  <kelvin@gcc.gnu.org>
15432         * config/rs6000/altivec.md (UNSPEC_DARN): New unspec constant.
15433         (UNSPEC_DARN_32): New unspec constant.
15434         (UNSPEC_DARN_RAW): New unspec constant.
15435         (darn_32): New instruction.
15436         (darn_raw): New instruction.
15437         (darn): New instruction.
15438         * config/rs6000/rs6000-builtin.def (RS6000_BUILTIN_0): Add
15439         support and documentation for this macro.
15440         (BU_P9_MISC_1): New macro definition.
15441         (BU_P9_64BIT_MISC_0): New macro definition.
15442         (BU_P9_MISC_0): New macro definition.
15443         (darn_32): New builtin definition.
15444         (darn_raw): New builtin definition.
15445         (darn): New builtin definition.
15446         * config/rs6000/rs6000.c: Add #define RS6000_BUILTIN_0 and #undef
15447         RS6000_BUILTIN_0 directives to surround each occurrence of
15448         #include "rs6000-builtin.def".
15449         (rs6000_builtin_mask_calculate): Add in the RS6000_BTM_MODULO and
15450         RS6000_BTM_64BIT flags to the returned mask, depending on
15451         configuration.
15452         (def_builtin): Correct an error in the assignments made to the
15453         debugging variable attr_string.
15454         (rs6000_expand_builtin): Add support for no-operand built-in
15455         functions.
15456         (builtin_function_type): Remove fatal_error assertion that is no
15457         longer valid.
15458         (rs6000_common_init_builtins): Add support for no-operand built-in
15459         functions.
15460         * config/rs6000/rs6000.h (RS6000_BTM_MODULO): New macro
15461         definition.
15462         (RS6000_BTM_PURE): Enhance comment to clarify intent of this flag
15463         definition.
15464         (RS6000_BTM_64BIT): New macro definition.
15465         * doc/extend.texi: Document __builtin_darn (void),
15466         __builtin_darn_raw (void), and __builtin_darn_32 (void) built-in
15467         functions.
15469 2016-05-19  Jan Hubicka  <hubicka@ucw.cz>
15471         * tree-vect-loop.c (vect_analyze_loop_2): Use also
15472         max_loop_iterations_int.
15474 2016-05-19  Marek Polacek  <polacek@redhat.com>
15476         PR tree-optimization/71031
15477         * tree-vrp.c (extract_range_from_binary_expr_1): Turn assert into a
15478         condition and adjust the code a bit.
15480 2016-05-19  Martin Liska  <mliska@suse.cz>
15482         * tree-vect-stmts.c (vectorizable_simd_clone_call): Utilize
15483         auto_vec instead of vec.
15485 2016-05-19  Martin Liska  <mliska@suse.cz>
15487         * tree-parloops.c (oacc_entry_exit_ok): Release a vector.
15489 2016-05-19  Martin Liska  <mliska@suse.cz>
15491         * tree-if-conv.c (ifcvt_repair_bool_pattern): Utilize auto_vecs.
15493 2016-05-19  Martin Liska  <mliska@suse.cz>
15495         * ipa-pure-const.c (set_function_state): Remove an existing
15496         funct_state.
15497         (remove_node_data): Do not free it as it's released
15498         in set_function_state.
15500 2016-05-19  Martin Liska  <mliska@suse.cz>
15502         * tree-vect-slp.c (vect_attempt_slp_rearrange_stmts): Release
15503         bitmap.
15505 2016-05-19  Martin Liska  <mliska@suse.cz>
15507         * omp-simd-clone.c (simd_clone_adjust): Release vector.
15509 2016-05-19  Martin Liska  <mliska@suse.cz>
15511         * tree-ssa-reassoc.c (eliminate_duplicate_pair): Truncate
15512         an auto_vec instead of re-creating it.
15514 2016-05-19  Martin Liska  <mliska@suse.cz>
15516         * tree-ssa-loop-prefetch.c (determine_loop_nest_reuse): Use
15517         auto_vec instead of vec.
15519 2016-05-19  Martin Liska  <mliska@suse.cz>
15521         * lto-section-in.c (lto_get_section_data): Call
15522         lto_check_version with additional argument.
15523         * lto-streamer.c (lto_check_version): Add new argument.
15524         * lto-streamer.h (lto_check_version): Likewise.
15526 2016-05-19  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
15528         * config/arm/arm.c (arm_new_rtx_costs, SIGN_EXTEND case):
15529         Don't add cost of inner memory when handling sign-extended loads.
15531 2016-05-19  Ilya Enkovich  <ilya.enkovich@intel.com>
15533         PR rtl-optimization/71148
15534         * cse.c (cse_main): Free dominance info.
15535         (rest_of_handle_cse): Don't free dominance info.
15536         (rest_of_handle_cse2): Likewise.
15537         (rest_of_handle_cse_after_global_opts): Likewise.
15539 2016-05-19  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
15541         PR target/71056
15542         * config/arm/arm-builtins.c (arm_builtin_vectorized_function): Return
15543         NULL_TREE early if NEON is not available.  Remove now redundant check
15544         in ARM_CHECK_BUILTIN_MODE.
15546 2016-05-19  Maxim Ostapenko  <m.ostapenko@samsung.com>
15548         PR sanitizer/64354
15549         * cppbuiltin.c (define_builtin_macros_for_compilation_flags): Add new
15550         builtin __SANITIZE_THREAD__ macros for fsanitize=thread switch.
15551         * doc/cpp.texi: Document new macros.
15553 2016-05-19  Bin Cheng  <bin.cheng@arm.com>
15555         PR tree-optimization/69848
15556         * tree-vect-loop.c (vectorizable_reduction): Don't factor
15557         comparison expr out of VEC_COND_EXPR for COND_REDUCTION.
15559 2016-05-19  Segher Boessenkool  <segher@kernel.crashing.org>
15561         * function.c (thread_prologue_and_epilogue_insn): Move the
15562         "goto epilogue_done" one block later.
15564 2016-05-19  Richard Biener  <rguenther@suse.de>
15566         PR tree-optimization/70729
15567         * passes.def: Move LIM pass before PRE.  Remove no longer
15568         required copyprop and move first DCE out of the loop pipeline.
15570 2016-05-18  David Malcolm  <dmalcolm@redhat.com>
15572         PR driver/69265
15573         * Makefile.in (GCC_OBJS): Move spellcheck.o to...
15574         (OBJS-libcommon-target): ...here.
15575         * opts-common.c: Include spellcheck.h.
15576         (cmdline_handle_error): Build a vec of valid options and use it
15577         to suggest provide hints for misspelled arguments.
15579 2016-05-18  Jakub Jelinek  <jakub@redhat.com>
15581         PR c++/71100
15582         * cgraph.c (cgraph_edge::redirect_call_stmt_to_callee): Don't drop
15583         lhs if it has TREE_ADDRESSABLE type.
15585 2016-05-18  Uros Bizjak  <ubizjak@gmail.com>
15587         PR target/71145
15588         * config/alpha/alpha.md (trap): Add (use (reg:DI 29)).
15589         (*exception_receiver_1): Return "#" for TARGET_EXPLICIT_RELOCS.
15591 2016-05-18  Martin Jambor  <mjambor@suse.cz>
15593         PR ipa/69708
15594         * ipa-cp.c (ipa_get_jf_pass_through_result): Allow non-ip constant
15595         input for NOP_EXPR pass-through functions.
15596         * ipa-prop.c (ipa_compute_jump_functions_for_edge): Allow
15597         aggregate global constant VAR_DECLs in constant jump functions.
15599 2016-05-18  Martin Jambor  <mjambor@suse.cz>
15601         PR ipa/69708
15602         * ipa-prop.c (parm_preserved_before_stmt_p): Return true for loads
15603         from TREE_READONLY parameters.
15605 2016-05-18  Martin Jambor  <mjambor@suse.cz>
15607         PR ipa/69708
15608         * cgraph.h (cgraph_indirect_call_info): New field
15609         guaranteed_unmodified.
15610         * ipa-cp.c (ipa_get_indirect_edge_target_1): Also pass parameter value
15611         to ipa_find_agg_cst_for_param, check guaranteed_unmodified when
15612         appropriate.
15613         * ipa-inline-analysis.c (evaluate_conditions_for_known_args): Also
15614         pass the parameter value to ipa_find_agg_cst_for_param.
15615         * ipa-prop.c (ipa_load_from_parm_agg): New parameter
15616         guaranteed_unmodified, store AA results there instead of bailing out
15617         if present.
15618         (ipa_note_param_call): Also initialize guaranteed_unmodified flag.
15619         (ipa_analyze_indirect_call_uses): Also set guaranteed_unmodified flag.
15620         (find_constructor_constant_at_offset): New function.
15621         (ipa_find_agg_cst_from_init): Likewise.
15622         (ipa_find_agg_cst_for_param): Also seearch for aggregate values in
15623         static initializers of contants, report back through a new paameter
15624         from_global_constant if that was the case.
15625         (try_make_edge_direct_simple_call): Also pass parameter value to
15626         ipa_find_agg_cst_for_param, check guaranteed_unmodified when
15627         appropriate.
15628         (ipa_write_indirect_edge_info): Stream new flag guaranteed_unmodified.
15629         (ipa_read_indirect_edge_info): Likewise.
15630         * ipa-prop.h (ipa_find_agg_cst_for_param): Update declaration.
15631         (ipa_load_from_parm_agg): Likewise.
15633 2016-05-18  Jiong Wang  <jiong.wang@arm.com>
15635         PR rtl-optimization/71150
15636         * lra-constraint (process_addr_reg): Guard "in_class_p" with REG_P
15637         check.
15639 2016-05-18  Michael Meissner  <meissner@linux.vnet.ibm.com>
15641         PR target/70915
15642         * config/rs6000/constraints.md (wE constraint): New constraint
15643         for a vector constant that can be loaded with XXSPLTIB.
15644         (wM constraint): New constraint for a vector constant of a 1's.
15645         (wS constraint): New constraint for a vector constant that can be
15646         loaded with XXSPLTIB and a vector sign extend instruction.
15647         * config/rs6000/predicates.md (xxspltib_constant_split): New
15648         predicates for wE/wS constraints.
15649         (xxspltib_constant_nosplit): Likewise.
15650         (easy_vector_constant): Add support for constants that can be
15651         loaded via XXSPLTIB.
15652         (all_ones_constant): New predicate for vector constant with all
15653         1's set.
15654         (splat_input_operand): Add support for ISA 3.0 word splat operations.
15655         * config/rs6000/rs6000.c (xxspltib_constant_p): New function to
15656         return if a constant can be loaded with the ISA 3.0 XXSPLTIB
15657         instruction and possibly with a sign extension.
15658         (output_vec_const_move): Add support for XXSPLTIB. If we are
15659         loading up 0/-1 into Altivec registers, prefer using VSPLTISW
15660         instead of XXLXOR/XXLORC.
15661         (rs6000_expand_vector_init): Add support for ISA 3.0 word splat
15662         operations.
15663         (rs6000_legitimize_reload_address): Likewise.
15664         (rs6000_output_move_128bit): Use output_vec_const_move to emit
15665         constants.
15666         * config/rs6000/vsx.md (VSX_M): Add TImode (if -mvsx-timode) and
15667         combine VSX_M and VSX_M2 into one iterator.
15668         (VSX_M2): Likewise.
15669         (VSINT_84): New iterators for loading constants with XXSPLTIB.
15670         (VSINT_842): Likewise.
15671         (UNSPEC_VSX_SIGN_EXTEND): New UNSPEC.
15672         (xxspltib_v16qi): New insns to load up constants with the ISA 3.0
15673         XXSPLTIB instruction.
15674         (xxspltib_<mode>_nosplit): Likewise.
15675         (xxspltib_<mode>_split): New insn to load up constants with
15676         XXSPLTIB and a sign extend instruction.
15677         (vsx_mov<mode>): Replace single move that handled all vector types
15678         with separate 32-bit and 64-bit moves.  Combine the movti_<bit>
15679         moves (when -mvsx-timode is in effect) into the main vector
15680         moves.  Eliminate separate moves for <VSr> <VSa>, where the
15681         preferred register class (<VSr>) is listed first, and the
15682         secondary register class (<VSa>) is listed second with a '?' to
15683         discourage use.  Prefer loading 0/-1 in any VSX register for ISA
15684         3.0, and Altivec registers for ISA 2.06/2.07 (PR target/70915) so
15685         that if the register was involved in a slow operation, the
15686         clear/set operation does not wait for the slow operation to
15687         finish.  Adjust the length attributes for 32-bit mode.  Use
15688         rs6000_output_move_128bit and drop the use of the string
15689         instructions for 32-bit movti when -mvsx-timode is in effect.  Use
15690         spacing so that the alternatives and attributes don't generate
15691         long lines, and put things in columns, so that it is easier to
15692         match up the operands and attributes with the insn alternatives.
15693         (vsx_mov<mode>_64bit): Likewise.
15694         (vsx_mov<mode>_32bit): Likewise.
15695         (vsx_movti_64bit): Fold movti into normal vector moves.
15696         (vsx_movti_32bit): Likewise.
15697         (vsx_splat_<mode>, V4SI/V4SF modes): Add support for ISA 3.0 word
15698         splat instructions.
15699         (vsx_splat_v4si_internal): Likewise.
15700         (vsx_splat_v4sf_internal): Likewise.
15701         (vector fusion peepholes): Use VSX_M instead of VSX_M2.
15702         (vsx_sign_extend_qi_<mode>): New ISA 3.0 instructions to sign
15703         extend vector elements.
15704         (vsx_sign_extend_hi_<mode>): Likewise.
15705         (vsx_sign_extend_si_v2di): Likewise.
15706         * config/rs6000/rs6000-protos.h (xxspltib_constant_p): Add
15707         declaration.
15708         * doc/md.texi (PowerPC constraints): Document the wE, wM, and wS
15709         constraints.  Add trailing period to wL documentation.
15711 2016-05-18  Richard Sandiford  <richard.sandiford@arm.com>
15713         PR middle-end/71020
15714         * tree-dfa.h (replace_abnormal_ssa_names): Declare.
15715         * tree-dfa.c (replace_abnormal_ssa_names): New function.
15716         * tree-call-cdce.c: Include tree-dfa.h.
15717         (can_guard_call_p): New function, extracted from...
15718         (can_use_internal_fn): ...here.
15719         (shrink_wrap_one_built_in_call_with_conds): Remove failure path
15720         and return void.
15721         (shrink_wrap_one_built_in_call): Likewise.
15722         (use_internal_fn): Likewise.
15723         (shrink_wrap_conditional_dead_built_in_calls): Update accordingly
15724         and return void.  Call replace_abnormal_ssa_names.
15725         (pass_call_cdce::execute): Check can_guard_call_p during the
15726         initial walk.  Assume shrink_wrap_conditional_dead_built_in_calls
15727         will always change something.
15729 2016-05-18  Martin Jambor  <mjambor@suse.cz>
15731         PR ipa/70646
15732         * ipa-prop.c (determine_locally_known_aggregate_parts): Bail out early
15733         if parameter PARAM_IPA_MAX_AGG_ITEMS is zero.
15735 2016-05-18  Martin Jambor  <mjambor@suse.cz>
15737         PR ipa/70646
15738         * ipa-inline.h (condition): New field size.
15739         * ipa-inline-analysis.c (add_condition): New parameter SIZE, use it
15740         for comaprison and store it into the new condition.
15741         (evaluate_conditions_for_known_args): Use condition size to check
15742         access sizes for all but CHANGED conditions.
15743         (unmodified_parm_1): New parameter size_p, store access size into it.
15744         (unmodified_parm): Likewise.
15745         (unmodified_parm_or_parm_agg_item): Likewise.
15746         (eliminated_by_inlining_prob): Pass NULL to unmodified_parm as size_p.
15747         (set_cond_stmt_execution_predicate): Extract access sizes and store
15748         them to conditions.
15749         (set_switch_stmt_execution_predicate): Likewise.
15750         (will_be_nonconstant_expr_predicate): Likewise.
15751         (will_be_nonconstant_predicate): Likewise.
15752         (inline_read_section): Stream condition size.
15753         (inline_write_summary): Likewise.
15755 2016-05-18  Richard Biener  <rguenther@suse.de>
15757         * tree-ssa-loop-im.c (determine_max_movement): Properly add
15758         condition cost to PHI cost instead of total_cost.
15760 2016-05-18  Martin Liska  <mliska@suse.cz>
15762         PR fortran/70856
15763         * ipa-icf.c (sem_variable::merge): Set DECL_PT_UID for
15764         merged variables.
15766 2016-05-18  Richard Biener  <rguenther@suse.de>
15768         * lto-streamer.h (LTO_major_version): Bump to 6.
15770 2016-05-18  Segher Boessenkool  <segher@kernel.crashing.org>
15772         * function.c (make_split_prologue_seq, make_prologue_seq,
15773         make_epilogue_seq): New functions, factored out from...
15774         (thread_prologue_and_epilogue_insns): Here.
15776 2016-05-18  Segher Boessenkool  <segher@kernel.crashing.org>
15778         * function.c (rest_of_handle_thread_prologue_and_epilogue): Call
15779         cleanup_cfg with CLEANUP_EXPENSIVE after shrink-wrapping instead
15780         of before.  Add a comment.
15782 2016-05-18  Bin Cheng  <bin.cheng@arm.com>
15784         * tree-ssa-loop-ivopts.c (get_computation_cost_at): Check invariant
15785         expression pointer, not pointer to the pointer.
15787 2016-05-18  Jakub Jelinek  <jakub@redhat.com>
15789         * config/i386/sse.md (pbroadcast_evex_isa): New mode attr.
15790         (avx2_pbroadcast<mode>): Add another alternative with v instead
15791         of x constraints in it, using <pbroadcast_evex_isa> isa.
15792         (avx2_pbroadcast<mode>_1): Similarly, add two such alternatives.
15794         * config/i386/sse.md (<ssse3_avx2>_palignr<mode>): Use
15795         constraint x instead of v in second alternative, add avx512bw
15796         alternative.
15798         * config/i386/sse.md (<ssse3_avx2>_pshufb<mode>3<mask_name>): Use
15799         constraint x instead of v in second alternative, add avx512bw
15800         alternative.
15802         * config/i386/sse.md (*<ssse3_avx2>_pmulhrsw<mode>3<mask_name>): Use
15803         constraint x instead of v in second alternative, add avx512bw
15804         alternative.
15806         * config/i386/sse.md (avx2_pmaddubsw256, ssse3_pmaddubsw128): Add
15807         avx512bw alternative.
15809 2016-05-18  Kirill Yukhin  <kirill.yukhin@intel.com>
15811         * config/i386/sse.md (define_insn "*andnot<mode>3"): Extend static
15812         array to 128 chars.
15813         (define_insn "*andnottf3"): Ditto.
15814         (define_insn "*<code><mode>3"/any_logic): Ditto.
15815         (define_insn "*<code>tf3"/any_logic): Ditto.
15816         (define_insn "sse2_storehpd"): Use Yv constraint for scalar
15817         operand to block AVX-512VL insn variant emit when it is not enabled.
15819 2016-05-18  Kirill Yukhin  <kirill.yukhin@intel.com>
15821         * config/i386/sse.md (define_insn "*vec_concatv2sf_sse4_1"): Use 'Yv'
15822         constraint fot SF mode.
15824 2016-05-18  Petr Murzin  <petr.murzin@intel.com>
15825             Kirill Yukhin  <kirill.yukhin@intel.com>
15827         * config/i386/sse.md (define_insn "srcp14<mode>"): Use proper operand
15828         modifiers.
15829         (define_insn "rsqrt14<mode>"): Ditto.
15830         (define_insn "<mask_codefor>avx512dq_cvtps2qqv2di<mask_name>"): Ditto.
15831         (define_insn "<fixsuffix>fix_truncv2sfv2di2<mask_name>"): Ditto.
15832         (define_insn "avx512f_<code>v8div16qi2_mask_store"): Ditto.
15833         (define_insn "vec_set_hi_<mode><mask_name>"): Ditto.
15834         (define_insn "<mask_codefor>avx512dq_broadcast<mode><mask_name>"):
15835         Ditto.
15836         (define_insn "*avx512f_gatherdi<mode>"): Ditto.
15837         (define_insn "*avx512f_scatterdi<mode>"): Ditto.
15838         * config/i386/i386.c (ix86_print_operand): Expand check for size
15839         override codes for Intel syntax.
15841 2016-05-18  Richard Biener  <rguenther@suse.de>
15843         PR tree-optimization/71168
15844         * tree-loop-distribution.c (distribute_loop): Move *destroy_p
15845         initialization earlier.
15847 2016-05-18  James Greenhalgh  <james.greenhalgh@arm.com>
15849         * config/aarch64/aarch64-simd.md
15850         (aarch64_reduc_plus_internal<mode>): Rename to...
15851         (reduc_plus_scal): ...This, and remove previous implementation.
15853 2016-05-18  Richard Biener  <rguenther@suse.de>
15855         * passes.def: Put late dse and cd_dce in canonical order.
15857 2016-05-17  Jan Hubicka  <hubicka@ucw.cz>
15859         * ipa-inline-transform.c (preserve_function_body_p): Look for
15860         first non-thunk clone.
15861         (save_function_body): Save into first non-thunk.
15862         * lto-cgraph.c (lto_output_edge): When streaming thunk do not look
15863         up call stmt id.
15864         (lto_output_node): Inline thunks don't need body in every
15865         partition.
15866         * lto-streamer-in.c: Do not fixup thunk clones.
15867         * cgraphclones.c (cgraph_node::create_edge_including_clone): Skip
15868         thunks.
15869         * tree-inline.c (copy_bb): Be prepared for target node to be new after
15870         folding suceeds.
15872 2016-05-17  Kugan Vivekanandarajah  <kuganv@linaro.org>
15874         PR middle-end/63586
15875         * tree-ssa-reassoc.c (transform_add_to_multiply): New.
15876         (reassociate_bb): Call transform_add_to_multiply.
15878 2016-05-17  Kugan Vivekanandarajah  <kuganv@linaro.org>
15880         * config/aarch64/aarch64.c (all_extensions): Removed unused
15881         static variable.
15883 2016-05-17  Nathan Sidwell  <nathan@acm.org>
15885         * config/nvptx/nvptx.c (nvptx_function_arg_boundary): New.
15886         (TARGET_FUNCTION_ARG_BOUNDARY): Override.
15888 2016-05-17  Mikhail Maltsev  <maltsevm@gmail.com>
15890         PR tree-optimization/54579
15891         PR middle-end/55299
15892         * match.pd (~(~X >> Y), ~(~X >>r Y), ~(~X <<r Y)): New patterns.
15894 2016-05-17  Marek Polacek  <polacek@redhat.com>
15896         PR ipa/71146
15897         * tree-inline.c (expand_call_inline): Call
15898         maybe_remove_unused_call_args.
15900 2016-05-17  Jim Wilson  <jim.wilson@linaro.org>
15902         * doc/cpp.texi (__GNUC__): Major version changes are no longer rare.
15903         * doc/invoke.texi (-mnan=2008): Change signalling to signaling.
15904         * doc/md.texi (fmin@var{m}3): Likewise.
15906 2016-05-17  Marc Glisse  <marc.glisse@inria.fr>
15908         * match.pd (X & C): New transformation.
15910 2016-05-17  Marc Glisse  <marc.glisse@inria.fr>
15912         * match.pd (~X & Y): New transformation.
15914 2016-05-17  Marc Glisse  <marc.glisse@inria.fr>
15916         * tree-vrp.c (simplify_truth_ops_using_ranges): Set range
15917         information for new SSA_NAME.
15918         (simplify_conversion_using_ranges): Get range through get_range_info
15919         instead of get_value_range.
15921 2016-05-17  Jiong Wang  <jiong.wang@arm.com>
15923         * config/aarch64/arm_neon.h (vmvn_s8): Reimplement using C operator.
15924         Remove inline assembly.
15925         (vmvn_s16): Likewise.
15926         (vmvn_s32): Likewise.
15927         (vmvn_u8): Likewise.
15928         (vmvn_u16): Likewise.
15929         (vmvn_u32): Likewise.
15930         (vmvnq_s8): Likewise.
15931         (vmvnq_s16): Likewise.
15932         (vmvnq_s32): Likewise.
15933         (vmvnq_u8): Likewise.
15934         (vmvnq_u16): Likewise.
15935         (vmvnq_u32): Likewise.
15936         (vmvn_p8): Likewise.
15937         (vmvnq_p16): Likewise.
15939 2016-05-17  Jiong Wang  <jiong.wang@arm.com>
15941         * config/aarch64/aarch64-simd.md (vmul_n_f32): Remove inline assembly.
15942         Use builtin.
15943         (vmul_n_s16): Likewise.
15944         (vmul_n_s32): Likewise.
15945         (vmul_n_u16): Likewise.
15946         (vmul_n_u32): Likewise.
15947         (vmulq_n_f32): Likewise.
15948         (vmulq_n_f64): Likewise.
15949         (vmulq_n_s16): Likewise.
15950         (vmulq_n_s32): Likewise.
15951         (vmulq_n_u16): Likewise.
15952         (vmulq_n_u32): Likewise.
15954 2016-05-17  Jiong Wang  <jiong.wang@arm.com>
15956         * config/aarch64/aarch64-simd.md (*aarch64_mul3_elt_to_128df): Extend
15957         to all supported modes.  Rename to "*aarch64_mul3_elt_from_dup".
15959 2016-05-17  Jiong Wang  <jiong.wang@arm.com>
15961         * config/aarch64/aarch64-simd.md (*aarch64_fma4_elt_to_128df): Rename
15962         to *aarch64_fma4_elt_from_dup<mode>.
15963         (*aarch64_fnma4_elt_to_128df): Rename to
15964         *aarch64_fnma4_elt_from_dup<mode>.
15965         * config/aarch64/arm_neon.h (vfma_n_f64): New.
15966         (vfms_n_f32): Likewise.
15967         (vfms_n_f64): Likewise.
15968         (vfmsq_n_f32): Likewise.
15969         (vfmsq_n_f64): Likewise.
15971 2016-05-17  Gerald Pfeifer  <gerald@pfeifer.com>
15973         * wide-int.h: Change fixed_wide_int_storage from class to struct.
15975 2016-05-17  Richard Biener  <rguenther@suse.de>
15977         PR tree-optimization/71132
15978         * tree-loop-distribution.c (create_rdg_cd_edges): Pass in loop.
15979         Only add control dependences for blocks in the loop.
15980         (build_rdg): Adjust.
15981         (generate_code_for_partition): Return whether loop should
15982         be destroyed and delay that.
15983         (distribute_loop): Likewise.
15984         (pass_loop_distribution::execute): Record loops to be destroyed
15985         and perform delayed destroying of loops.
15987 2016-05-17  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
15989         PR target/70809
15990         * config/aarch64/aarch64-simd.md (aarch64_vmls<mode>): Delete.
15992 2016-05-17  James Greenhalgh  <james.greenhalgh@arm.com>
15994         * config/aarch64/aarch64-elf.h (ASM_OUTPUT_DEF): Delete.
15996 2016-05-17  Ilya Enkovich  <ilya.enkovich@intel.com>
15998         PR target/71114
15999         * config/i386/i386.c (dimode_scalar_chain::convert_op): Fix
16000         insertion point for instructions generated by validize_mem.
16002 2016-05-17  James Greenhalgh  <james.greenhalgh@arm.com>
16004         * config/aarch64/aarch64.c (SHIFT_COUNT_TRUNCATED): Wrap definition
16005         in brackets.
16007 2016-05-17  James Greenhalgh  <james.greenhalgh@arm.com>
16009         * config/aarch64/aarch64.c
16010         (aarch64_output_simd_mov_immediate): Make "buf_size" a variable
16011         rather than a macro.
16013 2016-05-16  Wilco Dijkstra  <wdijkstr@arm.com>
16015         * doc/invoke.texi (AArch64 Options): Various updates.
16017 2016-05-16  Jan Hubicka  <hubicka@ucw.cz>
16019         * ipa-inline-analysis.c (compute_inline_parameters): Disable inlinig
16020         into instrumentation thunks.
16021         * cif-code.def (CIF_CHKP): New.
16023 2016-05-16  Uros Bizjak  <ubizjak@gmail.com>
16025         * config/i386/xopintrin.h: Correct "unsinged" typo in the comments.
16027 2016-05-16  Martin Jambor  <mjambor@suse.cz>
16029         * hsa-gen.c (fillup_for_decl): Increase alignment to natural one.
16030         (get_symbol_for_decl): Sorry if a global symbol in under-aligned.
16032 2016-05-16  Marek Polacek  <polacek@redhat.com>
16034         * gimple.c (maybe_remove_unused_call_args): Fix typos in the
16035         commentary.
16037 2016-05-16  Martin Jambor  <mjambor@suse.cz>
16039         PR hsa/70857
16040         * omp-low.c (grid_expand_target_grid_body): Copy RESULT_DECL of
16041         the outlined kernel function.
16043 2016-05-16  Robert Suchanek  <robert.suchanek@imgtec.com>
16045         * config/mips/mips.h (ISA_HAS_LSA): Enable for -mmsa.
16046         (ISA_HAS_DLSA): Ditto.
16048 2016-05-16  Matthew Fortune  <matthew.fortune@imgtec.com>
16050         * config/mips/m5100.md (m51_int_load): Update the latency to 2.
16052 2016-05-16  Nathan Sidwell  <nathan@acm.org>
16054         * config/nvptx/nvptx.c (nvptx_mangle_decl_assembler_name): Revert.
16055         (nvptx_name_replacement): Restore.  Add comment.
16056         (write_fn_proto, write_fn_proto_from_insn,
16057         nvptx_output_call_insn): Restore
16058         (TARGET_MANGLE_DECL_ASSEMBLER_NAME): Delete.
16060 2016-05-16  Wilco Dijkstra  <wdijkstr@arm.com>
16062         * config/aarch64/aarch64.md
16063         (add<mode>3_compareC_cconly_imm): Remove use of %w.
16064         (add<mode>3_compareC_imm): Likewise.
16065         (<optab>si3_uxtw): Split into register and immediate variants.
16066         (andsi3_compare0_uxtw): Likewise.
16067         (and<mode>3_compare0): Likewise.
16068         (and<mode>3nr_compare0): Likewise.
16069         (stack_protect_test_<mode>): Don't use %x for memory operands.
16071 2016-05-16  Matthew Fortune  <matthew.fortune@imgtec.com>
16073         * config/mips/mips-cpus.def (p5600): Add multi-line brackets.
16075 2016-05-16  Wilco Dijkstra  <wdijkstr@arm.com>
16077         * config/aarch64/aarch64.md (aarch64_ashl_sisd_or_int_<mode>3):
16078         Split integer shifts into shift_reg and bfm.
16079         (aarch64_lshr_sisd_or_int_<mode>3): Likewise.
16080         (aarch64_ashr_sisd_or_int_<mode>3): Likewise.
16081         (ror<mode>3_insn): Likewise.
16082         (<optab>si3_insn_uxtw): Likewise.
16083         (<optab><mode>3_insn): Change to rotate_imm.
16084         (extr<mode>5_insn_alt): Likewise.
16085         (extrsi5_insn_uxtw): Likewise.
16086         (extrsi5_insn_uxtw_alt): Likewise.
16088 2016-05-16  Matthew Wahab  <matthew.wahab@arm.com>
16090         * doc/tm.texi: Regenerate.
16091         * doc/tm.texi.in (TARGET_INVALID_PARAMETER_TYPE): Remove.
16092         (TARGET_INVALID_RETURN_TYPE): Remove.
16093         * system.h: Poison TARGET_INVALID_PARAMETER_TYPE and
16094         TARGET_INVALID_RETURN_TYPE.
16095         * target.def (invalid_parameter_type): Remove.
16096         (invalid_return_type): Remove.
16098 2016-05-16  Jan Hubicka  <hubicka@ucw.cz>
16100         * ipa-inline-analysis.c (compute_inline_parameters): Be more reailistic
16101         on estimating thunk bodies; do not set inline_failed to CIF_THUNK for
16102         calls from thunk.
16103         * ipa-inline-transform.c (inline_call): When inlining into thunk produce
16104         gimple body.
16105         (preserve_function_body_p): No need to preserve function body
16106         * cif-codes.def (CIF_THUNK): Remove.
16107         * cgraphclones.c (duplicate_thunk_for_node): Thunks calls are inlinable.
16109 2016-05-16  Jan Hubicka  <hubicka@ucw.cz>
16111         * tree-inline.c (expand_call_inline): recurse after inlining thunk.
16113 2016-05-16  Jan Hubicka  <hubicka@ucw.cz>
16115         * tree.c (free_lang_data_in_decl): Also set target/optimization flags
16116         for thunks.
16118 2016-05-16  Jan Hubicka  <hubicka@ucw.cz>
16120         * ipa-inline.c (report_inline_failed_reason): Look into thunks, too
16121         (inline_small_functions): Do not look for function symbol when
16122         resetting caches.
16124 2016-05-16  Jan Hubicka  <hubicka@ucw.cz>
16126         * lto-cgraph.c (compute_ltrans_boundary, output_symtab): Fix handling
16127         of inline thunks
16129 2016-05-16  Matthew Wahab  <matthew.wahab@arm.com>
16130             Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>
16131             Jiong Wang  <jiong.wang@arm.com>
16133         * config/arm/arm-c.c (arm_cpu_builtins): Use def_or_undef_macro
16134         for __ARM_FP16_FORMAT_IEEE and __ARM_FP16_FORMAT_ALTERNATIVE.
16135         Define __ARM_FP16_ARGS when appropriate.
16136         * config/arm/arm.c (arm_invalid_parameter_type): Remove
16137         declaration.
16138         (arm_invalid_return_type): Likewise.
16139         (TARGET_INVALID_PARAMETER_TYPE): Remove.
16140         (TARGET_INVALID_RETURN_TYPE): Remove.
16141         (aapcs_vfp_sub_candidate): Allow HFmode.
16142         (aapcs_vfp_allocate): Add comment.  Support HFmode.
16143         (aapcs_vfp_allocate_return_reg): Likewise.
16144         (struct aapcs_cp_arg_layout): Slightly reword comments for
16145         is_return_candidate and allocate_return_reg.
16146         (output_mov_vfp): Update assert.
16147         (arm_hard_regno_mode_ok): Remove comment, update HF-mode
16148         condition.
16149         (arm_invalid_parameter_type): Remove.
16150         (amr_invalid_return_type): Remove.
16151         * config/arm/arm.h (TARGET_NEON_FP16): Fix definition.
16152         * config/arm/arm.md (*arm32_movhf): Disable for TARGET_VFP.
16153         * config/arm/vfp.md (*movhf_vfp): Enable for TARGET_VFP.
16155 2016-05-16  Matthew Wahab  <matthew.wahab@arm.com>
16157         * config/aarch64/aarch64.h (LEGITIMIZE_RELOAD_ADDRESS): Remove.
16158         * config/aarch64/arch64-protos.h
16159         (aarch64_legitimize_reload_address): Remove.
16160         * config/aarch64/aarch64.c (aarch64_legitimize_reload_address):
16161         Remove.
16163 2016-05-16  Eric Botcazou  <ebotcazou@adacore.com>
16165         * configure.ac: Add ACX_NONCANONICAL_HOST.
16166         * configure: Regenerate.
16167         * Makefile.in: Set host_noncanonical.
16169 2016-05-14  Uros Bizjak  <ubizjak@gmail.com>
16171         PR target/71097
16172         * config/i386/i386.md (*movtf_internal): Before register allocation,
16173         do not allow FP constants for CM_MEDIUM memory model, allow only
16174         standard FP constants for CM_LARGE and CM_LARGE_PIC models.
16175         (*movxf_internal): Ditto.
16176         (*movdf_internal): Ditto.
16177         (*movsf_internal): Ditto.
16179 2016-05-13  Segher Boessenkool  <segher@kernel.crashing.org>
16181         PR rtl-optimization/67483
16182         * combine.c (make_compound_operation): Don't call extract_left_shift
16183         with negative shift amounts.
16185 2016-05-13  Jakub Jelinek  <jakub@redhat.com>
16187         PR bootstrap/71071
16188         * fold-const.c (fold_checksum_tree): Allow modification
16189         of TYPE_ALIAS_SET during folding.
16191         * config/i386/i386.c (ix86_compute_frame_layout, ix86_expand_prologue,
16192         ix86_expand_split_stack_prologue): Use HOST_WIDE_INT_C macro.
16193         (ix86_split_to_parts): Likewise.  Fix up formatting.
16195 2016-05-13  H.J. Lu  <hongjiu.lu@intel.com>
16197         * tree-ssa-loop-ivopts.c (create_new_ivs): Cast to
16198         unsigned HOST_WIDE_INT with HOST_WIDE_INT_PRINT_UNSIGNED in
16199         printf format.
16201 2016-05-13  Nathan Sidwell  <nathan@acm.org>
16203         * config/nvptx/nvptx.c (nvptx_mangle_decl_assembler_name): New.
16204         (nvptx_name_replacement): Delete.
16205         (write_fn_proto, write_fn_proto_from_insn,
16206         nvptx_output_call_insn): Remove nvptx_name_replacement call.
16207         (TARGET_MANGLE_DECL_ASSEMBLER_NAME): Override.
16208         * langhooks.c (add_builtin_funcction_common): Call
16209         targetm.mangle_decl_assembler_name.
16211         * config/nvptx/nvptx.c (write_fn_proto): Handle
16212         BUILT_IN_ATOMIC_COMPARE_EXCHANGE_n oddity.
16214 2016-05-13  Martin Liska  <mliska@suse.cz>
16216         * tree-ssa-loop-ivopts.c (create_new_ivs): Use HOST_WIDE_INT_PRINT_DEC
16217         and PRIu64 in printf format.
16219 2016-05-13  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
16221         * tree-ssa-loop-ivanon.c (try_unroll_loop_completely): Typo fix in
16222         comment.
16224 2016-05-13  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
16226         * tree-ssa-loop-ivcanon.c (try_unroll_loop_completely):
16227         Change --param max-completely-peeled-times to
16228         --param max-completely-peel-times in dump file printing.
16230 2016-05-13  Richard Biener  <rguenther@suse.de>
16232         PR tree-optimization/42587
16233         * tree-ssa-math-opts.c (perform_symbolic_merge): Handle BIT_FIELD_REF.
16234         (find_bswap_or_nop_1): Likewise.
16235         (bswap_replace): Likewise.
16237 2016-05-13  Martin Liska  <mliska@suse.cz>
16239         * tree-vect-patterns.c (vect_recog_mask_conversion_pattern):
16240         Initialize a variable with default value.
16242 2016-05-13  Martin Liska  <mliska@suse.cz>
16244         * doc/invoke.texi: Enhance explanation of error recovery
16245         of sanitizers.
16247 2016-05-13  Martin Liska  <mliska@suse.cz>
16249         * tree-ssa-loop-ivopts.c (avg_loop_niter): Fix coding style.
16250         (struct cost_pair): Change inv_expr_id (int) to inv_expr
16251         (iv_inv_expr_ent *).
16252         (struct iv_inv_expr_ent): Comment struct fields.
16253         (sort_iv_inv_expr_ent): New function.
16254         (struct ivopts_data): Rename inv_expr_id to max_inv_expr_id.
16255         (struct iv_ca): Replace used_inv_expr and num_used_inv_expr with
16256         a hash_map between iv_inv_expr_ent and number of usages.
16257         (niter_for_exit): Fix coding style.
16258         (tree_ssa_iv_optimize_init): Use renamed variable.
16259         (determine_base_object): Fix coding style.
16260         (alloc_iv): Likewise.
16261         (find_interesting_uses_outside): Likewise.
16262         (add_candidate_1): Likewise.
16263         (add_standard_iv_candidates): Likewise.
16264         (set_group_iv_cost): Replace inv_expr_id with inv_expr.
16265         (prepare_decl_rtl): Fix coding style.
16266         (get_address_cost): Likewise.
16267         (get_shiftadd_cost): Likewise.
16268         (force_expr_to_var_cost): Likewise.
16269         (compare_aff_trees): Likewise.
16270         (get_expr_id): Restructure the function.
16271         (get_loop_invariant_expr_id): Renamed to
16272         get_loop_invariant_expr.
16273         (get_computation_cost_at): Replace usage of inv_expr_id with
16274         inv_expr.
16275         (get_computation_cost): Likewise.
16276         (determine_group_iv_cost_generic): Likewise.
16277         (determine_group_iv_cost_address): Likewise.
16278         (iv_period): Fix coding style.
16279         (iv_elimination_compare_lt): Likewise.
16280         (may_eliminate_iv): Likewise.
16281         (determine_group_iv_cost_cond):  Replace usage of inv_expr_id with
16282         inv_expr.
16283         (determine_group_iv_costs): Dump invariant expressions.
16284         (iv_ca_recount_cost): Use the newly added hash_map.
16285         (iv_ca_set_remove_invariants): Fix coding style.
16286         (iv_ca_set_add_invariants): Fix coding style.
16287         (iv_ca_set_no_cp): Utilize the newly added hash_map for used
16288         invariants.
16289         (iv_ca_set_cp): Likewise.
16290         (iv_ca_new): Initialize the newly added hash_map and remove
16291         initialization of fields.
16292         (iv_ca_free): Delete the hash_map.
16293         (iv_ca_dump): Dump invariant expressions.
16294         (iv_ca_extend): Fix coding style.
16295         (try_add_cand_for): Likewise.
16296         (create_new_ivs): Dump information about # of avg iterations and
16297         # of used invariant expressions.
16298         (rewrite_use_compare): Fix coding style.
16299         (free_loop_data): Set default value for max_inv_expr_id.
16301 2016-05-13  Ilya Enkovich  <ilya.enkovich@intel.com>
16303         * cse.c (rest_of_handle_cse): Use cleanup_cfg
16304         returned value cse_cfg_altered computation.
16305         (rest_of_handle_cse2): Likewise.
16306         (rest_of_handle_cse_after_global_opts): Likewise.
16308 2016-05-13  Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>
16310         PR target/53440
16311         * config/arm/arm.c (arm32_output_mi_thunk): New.
16312         (arm_output_mi_thunk): Rename to arm_thumb1_mi_thunk. Rework
16313         to split Thumb1 vs TARGET_32BIT functionality.
16314         (arm_thumb1_mi_thunk): New.
16316 2016-05-13  Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>
16318         * config/aarch64/aarch64.c (TARGET_OMIT_STRUCT_RETURN_REG): Set
16319         to true.
16321 2016-05-13  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
16323         PR target/71080
16324         * config/i386/i386.c (ix86_in_large_data_p): Guard against NULL exp.
16326 2016-05-13  Eric Botcazou  <ebotcazou@adacore.com>
16328         * builtins.c (expand_builtin_memcmp): Do not emit the call here.
16329         (expand_builtin_trap): Emit a regular call.
16330         (set_builtin_user_assembler_name): Remove obsolete cases.
16331         * dse.c (scan_insn): Adjust.
16332         * except.c: Include calls.h.
16333         (sjlj_emit_function_enter): If DONT_USE_BUILTIN_SETJMP is defined,
16334         emit a regular call to setjmp.
16335         * expr.c (emit_block_move_hints): Call emit_block_copy_via_libcall.
16336         (block_move_libcall_safe_for_call_parm): Use memcpy builtin.
16337         (emit_block_move_via_libcall): Delete.
16338         (block_move_fn): Delete.
16339         (init_block_move_fn): Likewise.
16340         (emit_block_move_libcall_fn): Likewise.
16341         (emit_block_op_via_libcall): New function.
16342         (set_storage_via_libcall): Tidy up and use memset builtin.
16343         (block_clear_fn): Delete.
16344         (init_block_clear_fn): Likewise.
16345         (clear_storage_libcall_fn): Likewise.
16346         (expand_assignment): Call emit_block_move_via_libcall.
16347         Do not include gt-expr.h.
16348         * expr.h (emit_block_op_via_libcall): Declare.
16349         (emit_block_copy_via_libcall): New inline function.
16350         (emit_block_move_via_libcall): Likewise.
16351         (emit_block_comp_via_libcall): Likewise.
16352         (block_clear_fn): Delete.
16353         (init_block_move_fn): Likewise.
16354         (init_block_clear_fn): Likewise.
16355         (emit_block_move_via_libcall): Likewise.
16356         (set_storage_via_libcall): Add default parameter value.
16357         * libfuncs.h (enum libfunc_index): Remove obsolete values.
16358         (abort_libfunc): Delete.
16359         (memcpy_libfunc): Likewise.
16360         (memmove_libfunc): Likewise.
16361         (memcmp_libfunc): Likewise.
16362         (memset_libfunc): Likewise.
16363         (setbits_libfunc): Likewise.
16364         (setjmp_libfunc): Likewise.
16365         (longjmp_libfunc): Likewise.
16366         (profile_function_entry_libfunc): Likewise.
16367         (profile_function_exit_libfunc): Likewise.
16368         (gcov_flush_libfunc): Likewise.
16369         * optabs-libfuncs.c (build_libfunc_function): Set DECL_ARTIFICIAL
16370         and DECL_VISIBILITY on the declaration.
16371         (init_optabs): Do not initialize obsolete libfuncs.
16372         * optabs.c (prepare_cmp_insn): Call emit_block_comp_via_libcall.
16373         * tree-core.h (ECF_RET1): Define.
16374         (ECF_TM_PURE): Adjust.
16375         (ECF_TM_BUILTIN): Likewise.
16376         * tree.c (set_call_expr_flags): Deal with ECF_RET1.
16377         (build_common_builtin_nodes): Initialize abort builtin.
16378         Add ECF_RET1 on memcpy, memmove and memset builtins.
16379         Pass final flags for alloca and alloca_with_align builtins.
16380         * config/alpha/alpha.c (alpha_init_libfuncs): Do not initialize
16381         obsolete builtins.
16382         * config/ia64/ia64.c (ia64_vms_init_libfuncs): Likewise.
16383         * config/i386/i386.c (ix86_expand_set_or_movmem): Adjust call to
16384         set_storage_via_libcall and call emit_block_copy_via_libcall.
16386 2016-05-12  Uros Bizjak  <ubizjak@gmail.com>
16388         * config/i386/i386.md (*call_got_x32): Change operand 0 to
16389         DImode before it is passed to ix86_output_call_operand.
16390         (*call_value_got_x32): Ditto for operand 1.
16392 2016-05-12  Jiong Wang  <jiong.wang@arm.com>
16394         PR rtl-optimization/70904
16395         * lra-constraint.c (process_addr_reg): Relax the restriction on subreg
16396         reload for wide mode.
16398 2016-05-12  Marek Polacek  <polacek@redhat.com>
16400         PR c/70756
16401         * langhooks-def.h (lhd_incomplete_type_error): Adjust declaration.
16402         * langhooks.c (lhd_incomplete_type_error): Add location parameter.
16403         * langhooks.h (incomplete_type_error): Likewise.
16404         * tree.c (size_in_bytes_loc): Renamed from size_in_bytes.  Add location
16405         parameter, pass it down to incomplete_type_error.
16406         * tree.h (size_in_bytes): New inline overload.
16407         (size_in_bytes_loc): Renamed from size_in_bytes.
16409 2016-05-12  Richard Biener  <rguenther@suse.de>
16411         PR tree-optimization/71059
16412         * tree-ssa-pre.c (phi_translate_1): Fully fold translated
16413         nary before looking up or entering the expression into the VN
16414         hashes.
16415         * tree-ssa-sccvn.c (vn_nary_build_or_lookup): Fix comment typo.
16416         Make sure to re-use NARYs without result as inserted by
16417         phi-translation.
16419 2016-05-12  Richard Biener  <rguenther@suse.de>
16421         PR tree-optimization/71062
16422         * tree-ssa-alias.h (struct pt_solution): Add vars_contains_restrict
16423         field.
16424         * tree-ssa-structalias.c (set_uids_in_ptset): Set
16425         vars_contains_restrict if the var is a restrict tag.
16426         * tree-ssa-alias.c (ptrs_compare_unequal): If vars_contains_restrict
16427         do not disambiguate pointers against it.
16428         (dump_points_to_solution): Re-structure and adjust for new
16429         vars_contains_restrict flag.
16430         * gimple-pretty-print.c (pp_points_to_solution): Likewise.
16432 2016-05-12  Martin Liska  <mliska@suse.cz>
16434         * doc/invoke.texi: Explain connection between
16435         -fsanitize-recover=address and ASAN_OPTIONS="halt_on_error=1".
16437 2016-05-12  Ilya Enkovich  <ilya.enkovich@intel.com>
16439         PR tree-optimization/71006
16440         * tree-vect-loop.c (vect_determine_vectorization_factor): Don't
16441         consider COND_EXPR as a mask producer.
16443 2016-05-12  Marek Polacek  <polacek@redhat.com>
16445         PR driver/71063
16446         * opts.c (common_handle_option): Detect missing argument for --help^.
16448 2016-05-12  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
16450         PR target/70830
16451         * config/arm/arm.c (arm_output_multireg_pop): Avoid POP instruction
16452         when popping the PC and within an interrupt handler routine.
16453         Add missing tab to output of "ldmfd".
16454         (output_return_instruction): Output LDMFD with SP update rather
16455         than POP when returning from interrupt handler.
16457 2016-05-12  Jakub Jelinek  <jakub@redhat.com>
16459         * config/i386/i386.md (isa): Add x64_avx512dq, enable if
16460         TARGET_64BIT && TARGET_AVX512DQ.
16461         * config/i386/sse.md (*vec_extract<mode>): Add avx512bw alternatives.
16462         (*vec_extract<PEXTR_MODE12:mode>_zext): Add avx512bw alternative.
16463         (*vec_extract<ssevecmodelower>_0, *vec_extractv4si_0_zext,
16464         *vec_extractv2di_0_sse): Use v constraint instead of x constraint.
16465         (*vec_extractv4si): Add avx512dq and avx512bw alternatives.
16466         (*vec_extractv4si_zext): Add avx512dq alternative.
16467         (*vec_extractv2di_1): Add x64_avx512dq and avx512bw alternatives,
16468         use v instead of x constraint in other alternatives where possible.
16470         * config/i386/sse.md (sse2_loadld): Use v instead of x
16471         constraint in alternatives 0,1,4.
16473         * config/i386/sse.md (pinsr_evex_isa): New mode attr.
16474         (<sse2p4_1>_pinsr<ssemodesuffix>): Add 2 alternatives with
16475         v constraints instead of x and <pinsr_evex_isa> isa attribute.
16477         PR target/71019
16478         * config/i386/sse.md (<sse2_avx2>_packssdw<mask_name>,
16479         <sse4_1_avx2>_packusdw<mask_name>): Make sure EVEX encoded insn
16480         is not emitted unless TARGET_AVX512BW.
16481         (<sse2_avx2>_packuswb<mask_name>, <sse2_avx2>_packsswb<mask_name>):
16482         Likewise.  For TARGET_AVX512BW, use "=v" constraint instead of "=x"
16483         for the result operand.
16485         * config/i386/sse.md (*vec_setv4sf_sse4_1, sse4_1_insertps): Use v
16486         constraint instead of x in avx alternatives.  Use maybe_evex instead
16487         of vex prefix.
16489         * config/i386/constraints.md (Yv): New constraint.
16490         * config/i386/i386.h (VALID_AVX512VL_128_REG_MODE): Allow
16491         TFmode and V1TImode in xmm16+ registers for TARGET_AVX512VL.
16492         * config/i386/i386.md (avx512fvecmode): New mode attr.
16493         (*pushtf): Use v constraint instead of x.
16494         (*movtf_internal): Likewise.  For TARGET_AVX512VL and
16495         xmm16+ registers, use vmovdqu64 or vmovdqa64 instructions.
16496         (*absneg<mode>2): Use Yv constraint instead of x constraint.
16497         (*absnegtf2_sse): Likewise.
16498         (copysign<mode>3_const, copysign<mode>3_var): Likewise.
16499         * config/i386/sse.md (*andnot<mode>3): Add avx512vl and
16500         avx512f alternatives.
16501         (*andnottf3, *<code><mode>3, *<code>tf3): Likewise.
16503 2016-05-12  Richard Biener  <rguenther@suse.de>
16505         PR tree-optimization/71060
16506         * tree-data-ref.c (initialize_data_dependence_relation): Do not
16507         require exact match of DR_BASE_OBJECT but only matching address and
16508         type.
16510 2016-05-12  Richard Biener  <rguenther@suse.de>
16512         PR tree-optimization/70986
16513         * cfganal.c: Include cfgloop.h.
16514         (dfs_find_deadend): Prefer to take edges exiting loops.
16516 2016-05-11  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
16518         * gcc.target/powerpc/pr70963.c: Require at least power8 at both
16519         compile and run time.
16521 2016-05-11  Mikhail Maltsev  <maltsevm@gmail.com>
16523         PR c/43651
16524         * doc/invoke.texi (Wduplicate-decl-specifier): Document new option.
16526 2016-05-11  Uros Bizjak  <ubizjak@gmail.com>
16528         * config/i386/i386.c (legitimize_pic_address): Use
16529         copy_to_suggested_reg instead of gen_movsi.
16531 2016-05-11  Michael Meissner  <meissner@linux.vnet.ibm.com>
16533         * config/rs6000/predicates.md (quad_memory_operand): Move most of
16534         the code into quad_address_p and call it to share code with
16535         vsx_quad_dform_memory_operand.
16536         (vsx_quad_dform_memory_operand): New predicate for ISA 3.0 vector
16537         d-form support.
16538         * config/rs6000/rs6000.opt (-mlra): Switch to being an option mask
16539         bit instead of being a separate word.  Split -mpower9-dform into
16540         two switches, -mpower9-dform-scalar and -mpower9-dform-vector.
16541         * config/rs6000/rs6000.c (RELOAD_REG_QUAD_OFFSET): New addr_mask
16542         for the register class supporting 128-bit quad word memory offsets.
16543         (mode_supports_vsx_dform_quad): Helper function to return if the
16544         register class uses quad word memory offsets.
16545         (rs6000_debug_addr_mask): Add support for quad word memory offsets.
16546         (rs6000_debug_reg_global): Always print if we are using LRA or not.
16547         (rs6000_setup_reg_addr_masks): If ISA 3.0 vector d-form
16548         instructions are enabled, set up the appropriate addr_masks for
16549         128-bit types.
16550         (rs6000_init_hard_regno_mode_ok): wb constraint is now based on
16551         -mpower9-dform-scalar, instead of -mpower9-dform.
16552         (rs6000_option_override_internal): Split -mpower9-dform into two
16553         switches, -mpower9-dform-scalar and -mpower9-dform-vector.  The
16554         -mpower9-dform switch sets or clears both.  If we are not using
16555         the LRA register allocator, do not enable -mpower9-dform-vector by
16556         default.  If we are using LRA, enable -mpower9-dform-vector and
16557         -mvsx-timode if it is appropriate.  Issue a warning if either
16558         -mpower9-dform-vector or -mvsx-timode are explicitly used without
16559         enabling LRA.
16560         (quad_address_offset_p): New helper function to return if the
16561         offset is legal for quad word memory instructions.
16562         (quad_address_p): New function to determin if GPR or vector
16563         register quad word memory addresses are legal.
16564         (mem_operand_gpr): Validate quad word address offsets.
16565         (reg_offset_addressing_ok_p): Add support for ISA 3.0 vector
16566         d-form (register + offset) instructions.
16567         (offsettable_ok_by_alignment): Likewise.
16568         (rs6000_legitimate_offset_address_p): Likewise.
16569         (legitimate_lo_sum_address_p): Likewise.
16570         (rs6000_legitimize_address): Likewise.
16571         (rs6000_legitimize_reload_address): Add more debug statements for
16572         -mdebug=addr.
16573         (rs6000_legitimate_address_p): Add support for ISA 3.0 vector
16574         d-form instructions.
16575         (rs6000_secondary_reload_memory): Add support for ISA 3.0 vector
16576         d-form instructions.  Distinguish different cases in debug
16577         output. (rs6000_secondary_reload_inner): Add support for ISA 3.0 vector
16578         d-form instructions.
16579         (rs6000_preferred_reload_class): Likewise.
16580         (rs6000_output_move_128bit): Add support for ISA 3.0 d-form
16581         instructions.  If ISA 3.0 is available, generate lxvx/stxvx instead
16582         of the ISA 2.06 indexed memory instructions.
16583         (rs6000_emit_prologue): If we have ISA 3.0 d-form instructions,
16584         use them to save/restore the saved vector registers instead of
16585         using Altivec instructions.
16586         (rs6000_emit_epilogue): Likewise.
16587         (rs6000_lra_p): Use TARGET_LRA instead of the old option word.
16588         (rs6000_opt_masks): Split -mpower9-dform into
16589         -mpower9-dform-scalar and -mpower9-dform-vector.
16590         (rs6000_print_options_internal): Print -mno-<switch> if <switch>
16591         was not selected.
16592         * config/rs6000/vsx.md (p9_vecload_<mode>): Delete hack to emit
16593         ISA 3.0 vector indexed memory instructions, and fold the code into
16594         the normal mov<mode> patterns.
16595         (p9_vecstore_<mode>): Likewise.
16596         (vsx_mov<mode>): Add support for ISA 3.0 vector d-form
16597         instructions.
16598         (vsx_movti_64bit): Likewise.
16599         (vsx_movti_32bit): Likewise.
16600         * config/rs6000/constraints.md (wO constraint): New constraint for
16601         ISA 3.0 vector d-form support.
16602         * config/rs6000/rs6000-cpus.def (ISA_3_0_MASKS_SERVER): Use
16603         -mpower9-dform-scalar instead of -mpower9-dform.  Add note not to
16604         include -mpower9-dform-vector until we switch over to LRA.
16605         (POWERPC_MASKS): Add -mlra. Split -mpower9-dform into two.
16606         switches, -mpower9-dform-scalar and -mpower9-dform-vector.
16607         * config/rs6000/rs6000-protos.h (quad_address_p): Add declaration.
16608         * doc/invoke.texi (RS/6000 and PowerPC Options): Add documentation
16609         for -mpower9-dform and -mlra.
16610         * doc/md.texi (wO constraint): Document wO constraint.
16612 2016-05-11  Alexander Monakov  <amonakov@ispras.ru>
16614         * genattr.c (main): Change 'rtx' to 'rtx_insn *' in prototypes of
16615         'insn_latency', 'maximal_insn_latency', 'min_insn_conflict_delay'.
16616         * genautomata.c (output_internal_insn_code_evaluation): Simplify.
16617         Move handling of non-insn arguments inline into the sole user:
16618         (output_trans_func): ...here.
16619         (output_min_insn_conflict_delay_func): Change 'rtx' to 'rtx_insn *'
16620         in emitted function prototype.
16621         (output_internal_insn_latency_func): Ditto.  Simplify.
16622         (output_internal_maximal_insn_latency_func): Ditto.  Delete
16623         always-unused argument.
16624         (output_insn_latency_func): Ditto.
16625         (output_maximal_insn_latency_func): Ditto.
16627 2016-05-11  Richard Biener  <rguenther@suse.de>
16629         PR tree-optimization/71055
16630         * tree-ssa-sccvn.c (vn_reference_lookup_3): When native-interpreting
16631         sth with precision not equal to access size verify we don't chop
16632         off bits.
16634 2016-05-11  Richard Biener  <rguenther@suse.de>
16636         PR debug/71057
16637         * dwarf2out.c (retry_incomplete_types): Set early_dwarf.
16638         (dwarf2out_finish): Move retry_incomplete_types call ...
16639         (dwarf2out_early_finish): ... here.
16641 2016-05-11  Richard Biener  <rguenther@suse.de>
16643         PR middle-end/71002
16644         * alias.c (reference_alias_ptr_type): Preserve alias-set zero
16645         if the langhook insists on it.
16646         * fold-const.c (make_bit_field_ref): Add arg for the original
16647         reference and preserve its alias-set.
16648         (decode_field_reference): Take exp by reference and adjust it
16649         to the original memory reference.
16650         (optimize_bit_field_compare): Adjust callers.
16651         (fold_truth_andor_1): Likewise.
16652         * gimplify.c (gimplify_expr): Adjust in-SSA form test.
16654 2016-05-11  Ilya Enkovich  <ilya.enkovich@intel.com>
16656         PR middle-end/70807
16657         * cfgrtl.h (delete_insn_and_edges): Now return bool.
16658         * cfgrtl.c (delete_insn_and_edges): Likewise.
16659         * config/i386/i386.c (convert_scalars_to_vector): Remove
16660         redundant code.
16661         * cse.c (cse_insn): Compute cse_cfg_altered.
16662         (delete_trivially_dead_insns): Likewise.
16663         (cse_cc_succs): Likewise.
16664         (rest_of_handle_cse): Free dominance info if required.
16665         (rest_of_handle_cse2): Likewise.
16666         (rest_of_handle_cse_after_global_opts): Likewise.
16668 2016-05-11  Alan Modra  <amodra@gmail.com>
16670         * config/rs6000/rs6000.c (is_complex_IBM_long_double,
16671         abi_v4_pass_in_fpr): New functions.
16672         (rs6000_function_arg_boundary): Exclude complex IBM long double
16673         from 64-bit alignment when ABI_V4.
16674         (rs6000_function_arg, rs6000_function_arg_advance_1,
16675         rs6000_gimplify_va_arg): Use abi_v4_pass_in_fpr.
16677 2016-05-10  Segher Boessenkool  <segher@kernel.crashing.org>
16679         PR rtl-optimization/71028
16680         * cfgcleanup.c (try_optimize_cfg): Do not flip a conditional
16681         jump with just a return in the fallthrough block if the branch
16682         block contains just a return as well.
16684 2016-05-10  Marc Glisse  <marc.glisse@inria.fr>
16686         * fold-const.c (fold_binary_loc) [(X ^ Y) & Y]: Remove and merge with...
16687         * match.pd ((X & Y) ^ Y): ... this.
16688         ((X & Y) & Y, (X | Y) | Y, (X ^ Y) ^ Y, (X & Y) & (X & Z), (X | Y)
16689         | (X | Z), (X ^ Y) ^ (X ^ Z)): New transformations.
16691 2016-05-10  David Malcolm  <dmalcolm@redhat.com>
16693         * read-md.c (require_char_ws): New function.
16694         (read_string): Simplify using require_char_ws.
16695         (handle_constants): Likewise.
16696         (handle_enum): Likewise.
16697         (handle_file): Likewise.
16698         * read-md.h (require_char_ws): New declaration.
16699         * read-rtl.c (read_conditions): Simplify using require_char_ws.
16700         (read_mapping): Likewise.
16701         (read_rtx_code): Likewise.
16702         (read_nested_rtx): Likewise.
16704 2016-05-10  James Norris  <jnorris@codesourcery.com>
16706         * config/rs6000/sysv4.h (CRTOFFLOADBEGIN): Define. Add crtoffloadbegin.o
16707         if offloading is enabled and -fopenacc or -fopenmp is specified.
16708         (CRTOFFLOADEND): Likewise.
16709         (STARTFILE_LINUX_SPEC): Add CRTOFFLOADBEGIN.
16710         (ENDFILE_LINUX_SPEC): Add CRTOFFLOADEND.
16712 2016-05-10  Uros Bizjak  <ubizjak@gmail.com>
16714         * config/i386/i386.c (legitimize_pic_address): Merge 64-bit and 32-bit
16715         gotoff_operand code paths.  Use copy_to_suggested_regs and
16716         expand_simple_binop where appropriate.  Cleanup.
16718 2016-05-10  Ilya Enkovich  <ilya.enkovich@intel.com>
16720         PR target/70799
16721         * config/i386/i386.c (dimode_scalar_to_vector_candidate_p): Allow
16722         integer constants.
16723         (dimode_scalar_chain::vector_const_cost): New.
16724         (dimode_scalar_chain::compute_convert_gain): Handle constants.
16725         (dimode_scalar_chain::convert_op): Likewise.
16726         (dimode_scalar_chain::convert_insn): Likewise.
16728 2016-05-10  Pierre-Marie de Rodat  <derodat@adacore.com>
16730         * dwarf2out.c (resolve_args_picking_1): Consider DW_OP_neg as an
16731         unary operation, not a binary one.
16733 2016-05-10  Ilya Enkovich  <ilya.enkovich@intel.com>
16735         PR middle-end/70877
16736         * tree-chkp.c (chkp_add_bounds_to_call_stmt): Handle
16737         calls with type casted fndecl.
16739 2016-05-10  Ilya Enkovich  <ilya.enkovich@intel.com>
16741         PR tree-optimization/70786
16742         * tree-chkp.c (chkp_find_bounds_1): Support WITH_SIZE_EXPR.
16743         * calls.c (initialize_argument_information): Bind bounds
16744         with corresponding args passed by reference.
16746 2016-05-10  Jakub Jelinek  <jakub@redhat.com>
16748         PR target/70927
16749         * config/i386/sse.md (<sse>_andnot<mode>3<mask_name>),
16750         *<code><mode>3<mask_name>): For !TARGET_AVX512DQ and EVEX encoding,
16751         use vp*[dq] instead of v*p[sd] instructions and adjust mode attribute
16752         accordingly.
16754 2016-05-10  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
16756         PR target/70963
16757         * config/rs6000/vsx.md (vsx_xvcvdpsxds_scale): Generate correct
16758         code for a zero scale factor.
16759         (vsx_xvcvdpuxds_scale): Likewise.
16761 2016-05-10  David Malcolm  <dmalcolm@redhat.com>
16763         * diagnostic-show-locus.c (layout::layout): Call show_ruler
16764         if show_ruler_p was set on the context.
16765         (layout::show_ruler): New method.
16766         * diagnostic.h (struct diagnostic_context): Add field
16767         "show_ruler_p".
16769 2016-05-10  Richard Biener  <rguenther@suse.de>
16771         PR tree-optimization/71039
16772         * tree-ssa-phiprop.c: Include tree-ssa-loop.h.
16773         (chk_uses): New function.
16774         (propagate_with_phi): Verify we can safely replicate the lhs of an
16775         aggregate assignment on all incoming edges.
16777 2016-05-10  Oleg Endo  <olegendo@gcc.gnu.org>
16779         * config/rx/rx-protos.h (is_interrupt_func, is_fast_interrupt_func):
16780         Forward declare.
16781         (rx_atomic_sequence): New class.
16782         * config/rx/rx.c (rx_print_operand): Use symbolic names for PSW bits.
16783         (is_interrupt_func, is_fast_interrupt_func): Make non-static and
16784         non-inline.
16785         (rx_atomic_sequence::rx_atomic_sequence,
16786         rx_atomic_sequence::~rx_atomic_sequence): New functions.
16787         * config/rx/rx.md (CTRLREG_PSW, CTRLREG_USP, CTRLREG_FPSW, CTRLREG_CPEN,
16788         CTRLREG_BPSW, CTRLREG_BPC, CTRLREG_ISP, CTRLREG_FINTV,
16789         CTRLREG_INTB): New constants.
16790         (FETCHOP): New code iterator.
16791         (fethcop_name, fetchop_name2): New iterator code attributes.
16792         (QIHI): New mode iterator.
16793         (atomic_exchange<mode>, atomic_exchangesi, xchg_mem<mode>,
16794         atomic_fetch_<fetchop_name>si, atomic_fetch_nandsi,
16795         atomic_<fetchop_name>_fetchsi, atomic_nand_fetchsi): New patterns.
16797 2016-05-10  Martin Liska  <mliska@suse.cz>
16799         * tree-inline.c (remap_dependence_clique): Do not remap
16800         debugging statements.
16802 2016-05-10  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
16804         * config/s390/s390.md ("*vec_cmp<insn_cmp>df_cconly")
16805         ("*fixuns_truncdfdi2_z13")
16806         ("*fixuns_trunc<FP:mode><GPR:mode>2_z196")
16807         ("*fix_truncdfdi2_bfp_z13", "*floatunsdidf2_z13")
16808         ("*extendsfdf2_z13"): Replace TARGET_Z13 with TARGET_VX.
16810 2016-05-10  Richard Biener  <rguenther@suse.de>
16812         PR tree-optimization/70497
16813         PR tree-optimization/28367
16814         * tree-ssa-sccvn.c (vn_nary_build_or_lookup): New function
16815         split out from ...
16816         (visit_reference_op_load): ... here.
16817         (vn_reference_lookup_3): Use it to handle subreg-like accesses
16818         with simplified BIT_FIELD_REFs.
16819         * tree-ssa-pre.c (eliminate_insert): Handle inserting BIT_FIELD_REFs.
16820         * tree-complex.c (extract_component): Handle BIT_FIELD_REFs
16821         correctly.
16823 2016-05-10  Pierre-Marie de Rodat  <derodat@adacore.com>
16825         * dwarf2out.c (add_abstract_origin_attribute): Adjust
16826         documentation comment.  For BLOCK nodes, add a
16827         DW_AT_abstract_origin attribute that points to the DIE generated
16828         for the origin BLOCK.
16829         (gen_lexical_block_die): Call add_abstract_origin_attribute for
16830         blocks from inlined functions.
16832 2016-05-10  Alan Modra  <amodra@gmail.com>
16834         PR target/70947
16835         * config/rs6000/rs6000.c (rs6000_expand_split_stack_prologue): Stop
16836         regrename modifying insns saving lr before __morestack call.
16837         * config/rs6000/rs6000.md (split_stack_return): Similarly for
16838         insns restoring lr after __morestack call.
16840 2016-05-09  Jakub Jelinek  <jakub@redhat.com>
16842         * config/i386/i386.md (set_got, set_got_labelled, lwp_llwpcb,
16843         lwp_lwpval<mode>3, lwp_lwpins<mode>3): Remove constraints from
16844         expanders.
16845         * config/i386/sse.md (vec_interleave_high<mode>,
16846         vec_interleave_low<mode>, <avx512>_vpermi2var<mode>3_maskz,
16847         <avx512>_vpermt2var<mode>3_maskz): Likewise.
16849 2016-05-04  Aaron Sawdey  <acsawdey@linux.vnet.ibm.com>
16851         * config/rs6000/rs6000.c (rs6000_reassociation_width): Add
16852         function for TARGET_SCHED_REASSOCIATION_WIDTH to enable
16853         parallel reassociation for power8 and forward.
16855 2016-05-09  Uros Bizjak  <ubizjak@gmail.com>
16857         * config/i386/i386.md (absneg splitters with general regs): Use
16858         general_reg_operand predicate.
16859         (btsq peephole2): Use x86_64_immediate_operand to check if new
16860         value is suitable for immediate operand.  Generate emitted insn
16861         using RTL expressions.
16862         (btcq peephole2): Ditto.
16863         (btrq peephole2): Ditto.  Generate correct immediate operand
16864         for AND masking.
16866 2016-05-09  Richard Sandiford  <richard.sandiford@arm.com>
16868         * cfgexpand.c (expand_debug_expr): Fix address offset for negative
16869         bitpos.
16871 2016-05-09  Richard Sandiford  <richard.sandiford@arm.com>
16873         * tree-affine.c (wide_int_constant_multiple_p): Add missing
16874         pointer dereference.
16876 2016-05-09  Richard Biener  <rguenther@suse.de>
16878         PR tree-optimization/70985
16879         * match.pd (BIT_FIELD_REF -> (type)): Disable on GIMPLE when
16880         op0 isn't a gimple register.
16882 2016-05-09  Prachi Godbole  <prachi.godbole@imgtec.com>
16884         * config/mips/i6400.md (i6400_fpu_intadd, i6400_fpu_logic)
16885         (i6400_fpu_div, i6400_fpu_cmp, i6400_fpu_float, i6400_fpu_store)
16886         (i6400_fpu_long_pipe, i6400_fpu_logic_l, i6400_fpu_float_l)
16887         (i6400_fpu_mult): New cpu units.
16888         (i6400_msa_add_d, i6400_msa_int_add, i6400_msa_short_logic3)
16889         (i6400_msa_short_logic2, i6400_msa_short_logic, i6400_msa_move)
16890         (i6400_msa_cmp, i6400_msa_short_float2, i6400_msa_div_d)
16891         (i6400_msa_div_w, i6400_msa_div_h, i6400_msa_div_b)
16892         (i6400_msa_copy, i6400_msa_branch, i6400_fpu_msa_store)
16893         (i6400_fpu_msa_load, i6400_fpu_msa_move, i6400_msa_long_logic1)
16894         (i6400_msa_long_logic2, i6400_msa_mult, i6400_msa_long_float2)
16895         (i6400_msa_long_float4, i6400_msa_long_float5)
16896         (i6400_msa_long_float8, i6400_msa_fdiv_df)
16897         (i6400_msa_fdiv_sf): New reservations.
16898         * config/mips/p5600.md (p5600_fpu_intadd, p5600_fpu_cmp)
16899         (p5600_fpu_float, p5600_fpu_logic_a, p5600_fpu_logic_b)
16900         (p5600_fpu_div, p5600_fpu_logic, p5600_fpu_float_a)
16901         (p5600_fpu_float_b, p5600_fpu_float_c, p5600_fpu_float_d)
16902         (p5600_fpu_mult, p5600_fpu_fdiv, p5600_fpu_load): New cpu units.
16903         (msa_short_int_add, msa_short_logic, msa_short_logic_move_v)
16904         (msa_short_cmp, msa_short_float2, msa_short_logic3)
16905         (msa_short_store4, msa_long_load, msa_short_store)
16906         (msa_long_logic, msa_long_float2, msa_long_float4)
16907         (msa_long_float5, msa_long_float8, msa_long_mult)
16908         (msa_long_fdiv, msa_long_div): New reservations.
16910 2016-05-09  Robert Suchanek  <robert.suchanek@imgtec.com>
16911             Sameera Deshpande  <sameera.deshpande@imgtec.com>
16912             Matthew Fortune  <matthew.fortune@imgtec.com>
16913             Graham Stott  <graham.stott@imgtec.com>
16914             Chao-ying Fu  <chao-ying.fu@imgtec.com>
16916         * config.gcc: Add MSA header file for mips*-*-* target.
16917         * config/mips/constraints.md (YI, YC, YZ, Unv5, Uuv5, Usv5, Uuv6)
16918         (Ubv8i, Urv8):  New constraints.
16919         * config/mips/mips-ftypes.def: Add function types for MSA
16920         builtins.
16921         * config/mips/mips-modes.def (V16QI, V8HI, V4SI, V2DI, V4SF)
16922         (V2DF, V32QI, V16HI, V8SI, V4DI, V8SF, V4DF): New modes.
16923         * config/mips/mips-msa.md: New file.
16924         * config/mips/mips-protos.h
16925         (mips_split_128bit_const_insns): New prototype.
16926         (mips_msa_idiv_insns): Likewise.
16927         (mips_split_128bit_move): Likewise.
16928         (mips_split_128bit_move_p): Likewise.
16929         (mips_split_msa_copy_d): Likewise.
16930         (mips_split_msa_insert_d): Likewise.
16931         (mips_split_msa_fill_d): Likewise.
16932         (mips_expand_msa_branch): Likewise.
16933         (mips_const_vector_same_val_p): Likewise.
16934         (mips_const_vector_same_bytes_p): Likewise.
16935         (mips_const_vector_same_int_p): Likewise.
16936         (mips_const_vector_shuffle_set_p): Likewise.
16937         (mips_const_vector_bitimm_set_p): Likewise.
16938         (mips_const_vector_bitimm_clr_p): Likewise.
16939         (mips_msa_vec_parallel_const_half): Likewise.
16940         (mips_msa_output_division): Likewise.
16941         (mips_ldst_scaled_shift): Likewise.
16942         (mips_expand_vec_cond_expr): Likewise.
16943         * config/mips/mips.c (enum mips_builtin_type): Add
16944         MIPS_BUILTIN_MSA_TEST_BRANCH.
16945         (mips_gen_const_int_vector_shuffle): New prototype.
16946         (mips_const_vector_bitimm_set_p): New function.
16947         (mips_const_vector_bitimm_clr_p): Likewise.
16948         (mips_const_vector_same_val_p): Likewise.
16949         (mips_const_vector_same_bytes_p): Likewise.
16950         (mips_const_vector_same_int_p): Likewise.
16951         (mips_const_vector_shuffle_set_p): Likewise.
16952         (mips_symbol_insns): Forbid loading symbols via immediate for
16953         MSA.
16954         (mips_valid_offset_p): Limit offset to 10-bit for MSA loads and
16955         stores.
16956         (mips_valid_lo_sum_p): Forbid loadings symbols via %lo(base) for
16957         MSA.
16958         (mips_lx_address_p): Add support load indexed address for MSA.
16959         (mips_address_insns): Add calculation of instructions needed for
16960         stores and loads for MSA.
16961         (mips_const_insns): Move CONST_DOUBLE below CONST_VECTOR.  Handle
16962         CONST_VECTOR for MSA and let it fall through.
16963         (mips_ldst_scaled_shift): New function.
16964         (mips_subword_at_byte): Likewise.
16965         (mips_msa_idiv_insns): Likewise.
16966         (mips_legitimize_move): Validate MSA moves.
16967         (mips_rtx_costs): Add UNGE, UNGT, UNLE, UNLT cases.  Add
16968         calculation of costs for MSA division.
16969         (mips_split_move_p): Check if MSA moves need splitting.
16970         (mips_split_move): Split MSA moves if necessary.
16971         (mips_split_128bit_move_p): New function.
16972         (mips_split_128bit_move): Likewise.
16973         (mips_split_msa_copy_d): Likewise.
16974         (mips_split_msa_insert_d): Likewise.
16975         (mips_split_msa_fill_d): Likewise.
16976         (mips_output_move): Handle MSA moves.
16977         (mips_expand_msa_branch): New function.
16978         (mips_print_operand): Add 'E', 'B', 'w', 'v' and 'V' modifiers.
16979         Reinstate 'y' modifier.
16980         (mips_file_start): Add MSA .gnu_attribute.
16981         (mips_hard_regno_mode_ok_p): Allow TImode and 128-bit vectors in
16982         FPRs.
16983         (mips_hard_regno_nregs): Always return 1 for MSA supported mode.
16984         (mips_class_max_nregs): Add register size for MSA supported mode.
16985         (mips_cannot_change_mode_class): Allow conversion between MSA
16986         vector modes and TImode.
16987         (mips_mode_ok_for_mov_fmt_p): Allow MSA to use move.v
16988         instruction.
16989         (mips_secondary_reload_class): Force MSA loads/stores via memory.
16990         (mips_preferred_simd_mode): Add preffered modes for MSA.
16991         (mips_vector_mode_supported_p): Add MSA supported modes.
16992         (mips_autovectorize_vector_sizes): New function.
16993         (mips_msa_output_division): Likewise.
16994         (MSA_BUILTIN, MIPS_BUILTIN_DIRECT_NO_TARGET)
16995         (MSA_NO_TARGET_BUILTIN, MSA_BUILTIN_TEST_BRANCH): New macros.
16996         (CODE_FOR_msa_adds_s_b, CODE_FOR_msa_adds_s_h)
16997         (CODE_FOR_msa_adds_s_w, CODE_FOR_msa_adds_s_d)
16998         (CODE_FOR_msa_adds_u_b, CODE_FOR_msa_adds_u_h)
16999         (CODE_FOR_msa_adds_u_w, CODE_FOR_msa_adds_u_du
17000         (CODE_FOR_msa_addv_b, CODE_FOR_msa_addv_h, CODE_FOR_msa_addv_w)
17001         (CODE_FOR_msa_addv_d, CODE_FOR_msa_and_v, CODE_FOR_msa_bmnz_v)
17002         (CODE_FOR_msa_bmnzi_b, CODE_FOR_msa_bmz_v, CODE_FOR_msa_bmzi_b)
17003         (CODE_FOR_msa_bnz_v, CODE_FOR_msa_bz_v, CODE_FOR_msa_bsel_v)
17004         (CODE_FOR_msa_bseli_b, CODE_FOR_msa_ceqi_h, CODE_FOR_msa_ceqi_w)
17005         (CODE_FOR_msa_ceqi_d, CODE_FOR_msa_clti_s_b)
17006         (CODE_FOR_msa_clti_s_h, CODE_FOR_msa_clti_s_w)
17007         (CODE_FOR_msa_clti_s_d, CODE_FOR_msa_clti_u_b)
17008         (CODE_FOR_msa_clti_u_h, CODE_FOR_msa_clti_u_w)
17009         (CODE_FOR_msa_clti_u_d, CODE_FOR_msa_clei_s_b)
17010         (CODE_FOR_msa_clei_s_h, CODE_FOR_msa_clei_s_w)
17011         (CODE_FOR_msa_clei_s_d, CODE_FOR_msa_clei_u_b)
17012         (CODE_FOR_msa_clei_u_h, CODE_FOR_msa_clei_u_w)
17013         (CODE_FOR_msa_clei_u_d, CODE_FOR_msa_div_s_b)
17014         (CODE_FOR_msa_div_s_h, CODE_FOR_msa_div_s_w)
17015         (CODE_FOR_msa_div_s_d, CODE_FOR_msa_div_u_b)
17016         (CODE_FOR_msa_div_u_h, CODE_FOR_msa_div_u_w)
17017         (CODE_FOR_msa_div_u_d, CODE_FOR_msa_fadd_w, CODE_FOR_msa_fadd_d)
17018         (CODE_FOR_msa_fexdo_w, CODE_FOR_msa_ftrunc_s_w)
17019         (CODE_FOR_msa_ftrunc_s_d, CODE_FOR_msa_ftrunc_u_w)
17020         (CODE_FOR_msa_ftrunc_u_d, CODE_FOR_msa_ffint_s_w)
17021         (CODE_FOR_msa_ffint_s_d, CODE_FOR_msa_ffint_u_w)
17022         (CODE_FOR_msa_ffint_u_d, CODE_FOR_msa_fsub_w)
17023         (CODE_FOR_msa_fsub_d, CODE_FOR_msa_fmsub_d, CODE_FOR_msa_fmadd_w)
17024         (CODE_FOR_msa_fmadd_d, CODE_FOR_msa_fmsub_w, CODE_FOR_msa_fmul_w)
17025         (CODE_FOR_msa_fmul_d, CODE_FOR_msa_fdiv_w, CODE_FOR_msa_fdiv_d)
17026         (CODE_FOR_msa_fmax_w, CODE_FOR_msa_fmax_d, CODE_FOR_msa_fmax_a_w)
17027         (CODE_FOR_msa_fmax_a_d, CODE_FOR_msa_fmin_w, CODE_FOR_msa_fmin_d)
17028         (CODE_FOR_msa_fmin_a_w, CODE_FOR_msa_fmin_a_d)
17029         (CODE_FOR_msa_fsqrt_w, CODE_FOR_msa_fsqrt_d)
17030         (CODE_FOR_msa_max_s_b, CODE_FOR_msa_max_s_h)
17031         (CODE_FOR_msa_max_s_w, CODE_FOR_msa_max_s_d)
17032         (CODE_FOR_msa_max_u_b, CODE_FOR_msa_max_u_h)
17033         (CODE_FOR_msa_max_u_w, CODE_FOR_msa_max_u_d)
17034         (CODE_FOR_msa_min_s_b, CODE_FOR_msa_min_s_h)
17035         (CODE_FOR_msa_min_s_w, CODE_FOR_msa_min_s_d)
17036         (CODE_FOR_msa_min_u_b, CODE_FOR_msa_min_u_h)
17037         (CODE_FOR_msa_min_u_w, CODE_FOR_msa_min_u_d)
17038         (CODE_FOR_msa_mod_s_b, CODE_FOR_msa_mod_s_h)
17039         (CODE_FOR_msa_mod_s_w, CODE_FOR_msa_mod_s_d)
17040         (CODE_FOR_msa_mod_u_b, CODE_FOR_msa_mod_u_h)
17041         (CODE_FOR_msa_mod_u_w, CODE_FOR_msa_mod_u_d)
17042         (CODE_FOR_msa_mod_s_b, CODE_FOR_msa_mod_s_h)
17043         (CODE_FOR_msa_mod_s_w, CODE_FOR_msa_mod_s_d)
17044         (CODE_FOR_msa_mod_u_b, CODE_FOR_msa_mod_u_h)
17045         (CODE_FOR_msa_mod_u_w, CODE_FOR_msa_mod_u_d)
17046         (CODE_FOR_msa_mulv_b, CODE_FOR_msa_mulv_h, CODE_FOR_msa_mulv_w)
17047         (CODE_FOR_msa_mulv_d, CODE_FOR_msa_nlzc_b, CODE_FOR_msa_nlzc_h)
17048         (CODE_FOR_msa_nlzc_w, CODE_FOR_msa_nlzc_d, CODE_FOR_msa_nor_v)
17049         (CODE_FOR_msa_or_v, CODE_FOR_msa_ori_b, CODE_FOR_msa_nori_b)
17050         (CODE_FOR_msa_pcnt_b, CODE_FOR_msa_pcnt_h, CODE_FOR_msa_pcnt_w)
17051         (CODE_FOR_msa_pcnt_d, CODE_FOR_msa_xor_v, CODE_FOR_msa_xori_b)
17052         (CODE_FOR_msa_sll_b, CODE_FOR_msa_sll_h, CODE_FOR_msa_sll_w)
17053         (CODE_FOR_msa_sll_d, CODE_FOR_msa_slli_b, CODE_FOR_msa_slli_h)
17054         (CODE_FOR_msa_slli_w, CODE_FOR_msa_slli_d, CODE_FOR_msa_sra_b)
17055         (CODE_FOR_msa_sra_h, CODE_FOR_msa_sra_w, CODE_FOR_msa_sra_d)
17056         (CODE_FOR_msa_srai_b, CODE_FOR_msa_srai_h, CODE_FOR_msa_srai_w)
17057         (CODE_FOR_msa_srai_d, CODE_FOR_msa_srl_b, CODE_FOR_msa_srl_h)
17058         (CODE_FOR_msa_srl_w, CODE_FOR_msa_srl_d, CODE_FOR_msa_srli_b)
17059         (CODE_FOR_msa_srli_h, CODE_FOR_msa_srli_w, CODE_FOR_msa_srli_d)
17060         (CODE_FOR_msa_subv_b, CODE_FOR_msa_subv_h, CODE_FOR_msa_subv_w)
17061         (CODE_FOR_msa_subv_d, CODE_FOR_msa_subvi_b, CODE_FOR_msa_subvi_h)
17062         (CODE_FOR_msa_subvi_w, CODE_FOR_msa_subvi_d, CODE_FOR_msa_move_v)
17063         (CODE_FOR_msa_vshf_b, CODE_FOR_msa_vshf_h, CODE_FOR_msa_vshf_w)
17064         (CODE_FOR_msa_vshf_d, CODE_FOR_msa_ilvod_d, CODE_FOR_msa_ilvev_d)
17065         (CODE_FOR_msa_pckod_d, CODE_FOR_msa_pckdev_d, CODE_FOR_msa_ldi_b)
17066         (CODE_FOR_msa_ldi_hi, CODE_FOR_msa_ldi_w)
17067         (CODE_FOR_msa_ldi_d): New code_aliasing macros.
17068         (mips_builtins): Add MSA sll_b, sll_h, sll_w, sll_d, slli_b,
17069         slli_h, slli_w, slli_d, sra_b, sra_h, sra_w, sra_d, srai_b,
17070         srai_h, srai_w, srai_d, srar_b, srar_h, srar_w, srar_d, srari_b,
17071         srari_h, srari_w, srari_d, srl_b, srl_h, srl_w, srl_d, srli_b,
17072         srli_h, srli_w, srli_d, srlr_b, srlr_h, srlr_w, srlr_d, srlri_b,
17073         srlri_h, srlri_w, srlri_d, bclr_b, bclr_h, bclr_w, bclr_d,
17074         bclri_b, bclri_h, bclri_w, bclri_d, bset_b, bset_h, bset_w,
17075         bset_d, bseti_b, bseti_h, bseti_w, bseti_d, bneg_b, bneg_h,
17076         bneg_w, bneg_d, bnegi_b, bnegi_h, bnegi_w, bnegi_d, binsl_b,
17077         binsl_h, binsl_w, binsl_d, binsli_b, binsli_h, binsli_w,
17078         binsli_d, binsr_b, binsr_h, binsr_w, binsr_d, binsri_b, binsri_h,
17079         binsri_w, binsri_d, addv_b, addv_h, addv_w, addv_d, addvi_b,
17080         addvi_h, addvi_w, addvi_d, subv_b, subv_h, subv_w, subv_d,
17081         subvi_b, subvi_h, subvi_w, subvi_d, max_s_b, max_s_h, max_s_w,
17082         max_s_d, maxi_s_b, maxi_s_h, maxi_s_w, maxi_s_d, max_u_b,
17083         max_u_h, max_u_w, max_u_d, maxi_u_b, maxi_u_h, maxi_u_w,
17084         maxi_u_d, min_s_b, min_s_h, min_s_w, min_s_d, mini_s_b, mini_s_h,
17085         mini_s_w, mini_s_d, min_u_b, min_u_h, min_u_w, min_u_d, mini_u_b,
17086         mini_u_h, mini_u_w, mini_u_d, max_a_b, max_a_h, max_a_w, max_a_d,
17087         min_a_b, min_a_h, min_a_w, min_a_d, ceq_b, ceq_h, ceq_w, ceq_d,
17088         ceqi_b, ceqi_h, ceqi_w, ceqi_d, clt_s_b, clt_s_h, clt_s_w,
17089         clt_s_d, clti_s_b, clti_s_h, clti_s_w, clti_s_d, clt_u_b,
17090         clt_u_h, clt_u_w, clt_u_d, clti_u_b, clti_u_h, clti_u_w,
17091         clti_u_d, cle_s_b, cle_s_h, cle_s_w, cle_s_d, clei_s_b, clei_s_h,
17092         clei_s_w, clei_s_d, cle_u_b, cle_u_h, cle_u_w, cle_u_d, clei_u_b,
17093         clei_u_h, clei_u_w, clei_u_d, ld_b, ld_h, ld_w, ld_d, st_b, st_h,
17094         st_w, st_d, sat_s_b, sat_s_h, sat_s_w, sat_s_d, sat_u_b, sat_u_h,
17095         sat_u_w, sat_u_d, add_a_b, add_a_h, add_a_w, add_a_d, adds_a_b,
17096         adds_a_h, adds_a_w, adds_a_d, adds_s_b, adds_s_h, adds_s_w,
17097         adds_s_d, adds_u_b, adds_u_h, adds_u_w, adds_u_d, ave_s_b,
17098         ave_s_h, ave_s_w, ave_s_d, ave_u_b, ave_u_h, ave_u_w, ave_u_d,
17099         aver_s_b, aver_s_h, aver_s_w, aver_s_d, aver_u_b, aver_u_h,
17100         aver_u_w, aver_u_d, subs_s_b, subs_s_h, subs_s_w, subs_s_d,
17101         subs_u_b, subs_u_h, subs_u_w, subs_u_d, subsuu_s_b, subsuu_s_h,
17102         subsuu_s_w, subsuu_s_d, subsus_u_b, subsus_u_h, subsus_u_w,
17103         subsus_u_d, asub_s_b, asub_s_h, asub_s_w, asub_s_d, asub_u_b,
17104         asub_u_h, asub_u_w, asub_u_d, mulv_b, mulv_h, mulv_w, mulv_d,
17105         maddv_b, maddv_h, maddv_w, maddv_d, msubv_b, msubv_h, msubv_w,
17106         msubv_d, div_s_b, div_s_h, div_s_w, div_s_d, div_u_b, div_u_h,
17107         div_u_w, div_u_d, hadd_s_h, hadd_s_w, hadd_s_d, hadd_u_h,
17108         hadd_u_w, hadd_u_d, hsub_s_h, hsub_s_w, hsub_s_d, hsub_u_h,
17109         hsub_u_w, hsub_u_d, mod_s_b, mod_s_h, mod_s_w, mod_s_d, mod_u_b,
17110         mod_u_h, mod_u_w, mod_u_d, dotp_s_h, dotp_s_w, dotp_s_d,
17111         dotp_u_h, dotp_u_w, dotp_u_d, dpadd_s_h, dpadd_s_w, dpadd_s_d,
17112         dpadd_u_h, dpadd_u_w, dpadd_u_d, dpsub_s_h, dpsub_s_w, dpsub_s_d,
17113         dpsub_u_h, dpsub_u_w, dpsub_u_d, sld_b, sld_h, sld_w, sld_d,
17114         sldi_b, sldi_h, sldi_w, sldi_d, splat_b, splat_h, splat_w,
17115         splat_d, splati_b, splati_h, splati_w, splati_d, pckev_b,
17116         pckev_h, pckev_w, pckev_d, pckod_b, pckod_h, pckod_w, pckod_d,
17117         ilvl_b, ilvl_h, ilvl_w, ilvl_d, ilvr_b, ilvr_h, ilvr_w, ilvr_d,
17118         ilvev_b, ilvev_h, ilvev_w, ilvev_d, ilvod_b, ilvod_h, ilvod_w,
17119         ilvod_d, vshf_b, vshf_h, vshf_w, vshf_d, and_v, andi_b, or_v,
17120         ori_b, nor_v, nori_b, xor_v, xori_b, bmnz_v, bmnzi_b, bmz_v,
17121         bmzi_b, bsel_v, bseli_b, shf_b, shf_h, shf_w, bnz_v, bz_v,
17122         fill_b, fill_h, fill_w, fill_d, pcnt_b, pcnt_h, pcnt_w,
17123         pcnt_d, nloc_b, nloc_h, nloc_w, nloc_d, nlzc_b, nlzc_h, nlzc_w,
17124         nlzc_d, copy_s_b, copy_s_h, copy_s_w, copy_s_d, copy_u_b,
17125         copy_u_h, copy_u_w, copy_u_d, insert_b, insert_h, insert_w,
17126         insert_d, insve_b, insve_h, insve_w, insve_d, bnz_b, bnz_h,
17127         bnz_w, bnz_d, bz_b, bz_h, bz_w, bz_d, ldi_b, ldi_h, ldi_w, ldi_d,
17128         fcaf_w, fcaf_d, fcor_w, fcor_d, fcun_w, fcun_d, fcune_w, fcune_d,
17129         fcueq_w, fcueq_d, fceq_w, fceq_d, fcne_w, fcne_d, fclt_w, fclt_d,
17130         fcult_w, fcult_d, fcle_w, fcle_d, fcule_w, fcule_d, fsaf_w,
17131         fsaf_d, fsor_w, fsor_d, fsun_w, fsun_d, fsune_w, fsune_d,
17132         fsueq_w, fsueq_d, fseq_w, fseq_d, fsne_w, fsne_d, fslt_w,
17133         fslt_d, fsult_w, fsult_d, fsle_w, fsle_d, fsule_w, fsule_d,
17134         fadd_w, fadd_d, fsub_w, fsub_d, fmul_w, fmul_d, fdiv_w, fdiv_d,
17135         fmadd_w, fmadd_d, fmsub_w, fmsub_d, fexp2_w, fexp2_d, fexdo_h,
17136         fexdo_w, ftq_h, ftq_w, fmin_w, fmin_d, fmin_a_w, fmin_a_d,
17137         fmax_w, fmax_d, fmax_a_w, fmax_a_d, mul_q_h, mul_q_w, mulr_q_h,
17138         mulr_q_w, madd_q_h, madd_q_w, maddr_q_h, maddr_q_w, msub_q_h,
17139         msub_q_w, msubr_q_h, msubr_q_w, fclass_w, fclass_d, fsqrt_w,
17140         fsqrt_d, frcp_w, frcp_d, frint_w, frint_d, frsqrt_w, frsqrt_d,
17141         flog2_w, flog2_d, fexupl_w, fexupl_d, fexupr_w, fexupr_d, ffql_w,
17142         ffql_d, ffqr_w, ffqr_d, ftint_s_w, ftint_s_d, ftint_u_w,
17143         ftint_u_d, ftrunc_s_w, ftrunc_s_d, ftrunc_u_w, ftrunc_u_d,
17144         ffint_s_w, ffint_s_d, ffint_u_w, ffint_u_d, ctcmsa, cfcmsa,
17145         move_v builtins.
17146         (mips_get_builtin_decl_index): New array.
17147         (MIPS_ATYPE_QI, MIPS_ATYPE_HI, MIPS_ATYPE_V2DI, MIPS_ATYPE_V4SI)
17148         (MIPS_ATYPE_V8HI, MIPS_ATYPE_V16QI, MIPS_ATYPE_V2DF)
17149         (MIPS_ATYPE_V4SF, MIPS_ATYPE_UV2DI, MIPS_ATYPE_UV4SI)
17150         (MIPS_ATYPE_UV8HI, MIPS_ATYPE_UV16QI): New.
17151         (mips_init_builtins): Initialize mips_get_builtin_decl_index
17152         array.
17153         (TARGET_VECTORIZE_BUILTIN_VECTORIZED_FUNCTION): Define target
17154         hook.
17155         (mips_expand_builtin_insn): Prepare operands for
17156         CODE_FOR_msa_addvi_b, CODE_FOR_msa_addvi_h, CODE_FOR_msa_addvi_w,
17157         CODE_FOR_msa_addvi_d, CODE_FOR_msa_clti_u_b,
17158         CODE_FOR_msa_clti_u_h, CODE_FOR_msa_clti_u_w,
17159         CODE_FOR_msa_clti_u_d, CODE_FOR_msa_clei_u_b,
17160         CODE_FOR_msa_clei_u_h, CODE_FOR_msa_clei_u_w,
17161         CODE_FOR_msa_clei_u_d, CODE_FOR_msa_maxi_u_b,
17162         CODE_FOR_msa_maxi_u_h, CODE_FOR_msa_maxi_u_w,
17163         CODE_FOR_msa_maxi_u_d, CODE_FOR_msa_mini_u_b,
17164         CODE_FOR_msa_mini_u_h, CODE_FOR_msa_mini_u_w,
17165         CODE_FOR_msa_mini_u_d, CODE_FOR_msa_subvi_b,
17166         CODE_FOR_msa_subvi_h, CODE_FOR_msa_subvi_w, CODE_FOR_msa_subvi_d,
17167         CODE_FOR_msa_ceqi_b, CODE_FOR_msa_ceqi_h, CODE_FOR_msa_ceqi_w,
17168         CODE_FOR_msa_ceqi_d, CODE_FOR_msa_clti_s_b,
17169         CODE_FOR_msa_clti_s_h, CODE_FOR_msa_clti_s_w,
17170         CODE_FOR_msa_clti_s_d, CODE_FOR_msa_clei_s_b,
17171         CODE_FOR_msa_clei_s_h, CODE_FOR_msa_clei_s_w,
17172         CODE_FOR_msa_clei_s_d, CODE_FOR_msa_maxi_s_b,
17173         CODE_FOR_msa_maxi_s_h, CODE_FOR_msa_maxi_s_w,
17174         CODE_FOR_msa_maxi_s_d, CODE_FOR_msa_mini_s_b,
17175         CODE_FOR_msa_mini_s_h, CODE_FOR_msa_mini_s_w,
17176         CODE_FOR_msa_mini_s_d, CODE_FOR_msa_andi_b, CODE_FOR_msa_ori_b,
17177         CODE_FOR_msa_nori_b, CODE_FOR_msa_xori_b, CODE_FOR_msa_bmzi_b,
17178         CODE_FOR_msa_bmnzi_b, CODE_FOR_msa_bseli_b, CODE_FOR_msa_fill_b,
17179         CODE_FOR_msa_fill_h, CODE_FOR_msa_fill_w, CODE_FOR_msa_fill_d,
17180         CODE_FOR_msa_ilvl_b, CODE_FOR_msa_ilvl_h, CODE_FOR_msa_ilvl_w,
17181         CODE_FOR_msa_ilvl_d, CODE_FOR_msa_ilvr_b, CODE_FOR_msa_ilvr_h,
17182         CODE_FOR_msa_ilvr_w, CODE_FOR_msa_ilvr_d, CODE_FOR_msa_ilvev_b,
17183         CODE_FOR_msa_ilvev_h, CODE_FOR_msa_ilvev_w, CODE_FOR_msa_ilvod_b,
17184         CODE_FOR_msa_ilvod_h, CODE_FOR_msa_ilvod_w, CODE_FOR_msa_pckev_b,
17185         CODE_FOR_msa_pckev_h, CODE_FOR_msa_pckev_w, CODE_FOR_msa_pckod_b,
17186         CODE_FOR_msa_pckod_h, CODE_FOR_msa_pckod_w, CODE_FOR_msa_slli_b,
17187         CODE_FOR_msa_slli_h, CODE_FOR_msa_slli_w, CODE_FOR_msa_slli_d,
17188         CODE_FOR_msa_srai_b, CODE_FOR_msa_srai_h, CODE_FOR_msa_srai_w,
17189         CODE_FOR_msa_srai_d, CODE_FOR_msa_srli_b, CODE_FOR_msa_srli_h,
17190         CODE_FOR_msa_srli_w, CODE_FOR_msa_srli_d, CODE_FOR_msa_insert_b,
17191         CODE_FOR_msa_insert_h, CODE_FOR_msa_insert_w,
17192         CODE_FOR_msa_insert_d, CODE_FOR_msa_insve_b,
17193         CODE_FOR_msa_insve_h, CODE_FOR_msa_insve_w, CODE_FOR_msa_insve_d,
17194         CODE_FOR_msa_shf_b, CODE_FOR_msa_shf_h, CODE_FOR_msa_shf_w,
17195         CODE_FOR_msa_shf_w_f, CODE_FOR_msa_vshf_b, CODE_FOR_msa_vshf_h,
17196         CODE_FOR_msa_vshf_w, CODE_FOR_msa_vshf_d.
17197         (mips_expand_builtin): Add case for MIPS_BULTIN_MSA_TEST_BRANCH.
17198         (mips_set_compression_mode): Disallow MSA with MIPS16 code.
17199         (mips_option_override): -mmsa requires -mfp64 and -mhard-float.
17200         These are set implicitly and an error is reported if overridden.
17201         (mips_expand_builtin_msa_test_branch): New function.
17202         (mips_expand_msa_shuffle): Likewise.
17203         (MAX_VECT_LEN): Increase maximum length of a vector to 16 bytes.
17204         (TARGET_SCHED_REASSOCIATION_WIDTH): Define target hook.
17205         (TARGET_VECTORIZE_AUTOVECTORIZE_VECTOR_SIZES): Likewise.
17206         (mips_expand_vec_unpack): Add support for MSA.
17207         (mips_expand_vector_init): Likewise.
17208         (mips_expand_vi_constant): Use CONST0_RTX (element_mode)
17209         instead of const0_rtx.
17210         (mips_msa_vec_parallel_const_half): New function.
17211         (mips_gen_const_int_vector): Likewise.
17212         (mips_gen_const_int_vector_shuffle): Likewise.
17213         (mips_expand_msa_cmp): Likewise.
17214         (mips_expand_vec_cond_expr): Likewise.
17215         * config/mips/mips.h
17216         (TARGET_CPU_CPP_BUILTINS): Add __mips_msa and __mips_msa_width.
17217         (OPTION_DEFAULT_SPECS): Ignore --with-fp-32 if -mmsa is
17218         specified.
17219         (ASM_SPEC): Pass mmsa and mno-msa to the assembler.
17220         (ISA_HAS_MSA): New macro.
17221         (UNITS_PER_MSA_REG): Likewise.
17222         (BITS_PER_MSA_REG): Likewise.
17223         (BIGGEST_ALIGNMENT): Redefine using ISA_HAS_MSA.
17224         (MSA_REG_FIRST): New macro.
17225         (MSA_REG_LAST): Likewise.
17226         (MSA_REG_NUM): Likewise.
17227         (MSA_REG_P): Likewise.
17228         (MSA_REG_RTX_P): Likewise.
17229         (MSA_SUPPORTED_MODE_P): Likewise.
17230         (HARD_REGNO_CALL_PART_CLOBBERED): Redefine using TARGET_MSA.
17231         (ADDITIONAL_REGISTER_NAMES): Add named registers $w0-$w31.
17232         * config/mips/mips.md: Include mips-msa.md.
17233         (alu_type): Add simd_add.
17234         (mode): Add V2DI, V4SI, V8HI, V16QI, V2DF, V4SF.
17235         (type): Add simd_div, simd_fclass, simd_flog2, simd_fadd,
17236         simd_fcvt, simd_fmul, simd_fmadd, simd_fdiv, simd_bitins,
17237         simd_bitmov, simd_insert, simd_sld, simd_mul, simd_fcmp,
17238         simd_fexp2, simd_int_arith, simd_bit, simd_shift, simd_splat,
17239         simd_fill, simd_permute, simd_shf, simd_sat, simd_pcnt,
17240         simd_copy, simd_branch, simd_cmsa, simd_fminmax, simd_logic,
17241         simd_move, simd_load, simd_store.  Choose "multi" for moves
17242         for "qword_mode".
17243         (qword_mode): New attribute.
17244         (insn_count): Add instruction count for quad moves.
17245         Increase the count for MIPS SIMD division.
17246         (UNITMODE): Add UNITMODEs for vector types.
17247         (addsub): New code iterator.
17248         * config/mips/mips.opt (mmsa): New option.
17249         * config/mips/msa.h: New file.
17250         * config/mips/mti-elf.h: Don't infer -mfpxx if -mmsa is
17251         specified.
17252         * config/mips/mti-linux.h: Likewise.
17253         * config/mips/predicates.md
17254         (const_msa_branch_operand): New constraint.
17255         (const_uimm3_operand): Likewise.
17256         (const_uimm4_operand): Likewise.
17257         (const_uimm5_operand): Likewise.
17258         (const_uimm8_operand): Likewise.
17259         (const_imm5_operand): Likewise.
17260         (aq10b_operand): Likewise.
17261         (aq10h_operand): Likewise.
17262         (aq10w_operand): Likewise.
17263         (aq10d_operand): Likewise.
17264         (const_m1_operand): Likewise.
17265         (reg_or_m1_operand): Likewise.
17266         (const_exp_2_operand): Likewise.
17267         (const_exp_4_operand): Likewise.
17268         (const_exp_8_operand): Likewise.
17269         (const_exp_16_operand): Likewise.
17270         (const_vector_same_val_operand): Likewise.
17271         (const_vector_same_simm5_operand): Likewise.
17272         (const_vector_same_uimm5_operand): Likewise.
17273         (const_vector_same_uimm6_operand): Likewise.
17274         (const_vector_same_uimm8_operand): Likewise.
17275         (par_const_vector_shf_set_operand): Likewise.
17276         (reg_or_vector_same_val_operand): Likewise.
17277         (reg_or_vector_same_simm5_operand): Likewise.
17278         (reg_or_vector_same_uimm6_operand): Likewise.
17279         * doc/extend.texi (MIPS SIMD Architecture Functions): New
17280         section.
17281         * doc/invoke.texi (-mmsa): Document new option.
17283 2016-05-09  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
17285         * configure.ac (enable_vtable_verify): Handle --enable-vtable-verify.
17286         * configure: Regenerate.
17287         * config.in: Regenerate.
17288         * gcc.c (VTABLE_VERIFICATION_SPEC) [!ENABLE_VTABLE_VERIFY]: Error
17289         on -fvtable-verify.
17290         * config/sol2.h [!ENABLE_VTABLE_VERIFY] (STARTFILE_VTV_SPEC): Define.
17291         (ENDFILE_VTV_SPEC): Define.
17293 2016-05-09  Kaushik Phatak  <kaushik.phatak@kpit.com>
17295         * config/rl78/rl78.c (rl78_expand_prologue): Save the MDUC related
17296         registers in all interrupt handlers if necessary.
17297         (rl78_option_override): Add warning.
17298         (MUST_SAVE_MDUC_REGISTERS): New macro.
17299         (rl78_expand_epilogue): Restore the MDUC registers if necessary.
17300         * config/rl78/rl78.c (check_mduc_usage): New function.
17301         (mduc_regs): New structure to hold MDUC register data.
17302         * config/rl78/rl78.md (is_g13_muldiv_insn): New attribute.
17303         (mulsi3_g13): Add is_g13_muldiv_insn attribute.
17304         (udivmodsi4_g13): Add is_g13_muldiv_insn attribute.
17305         (mulhi3_g13): Add is_g13_muldiv_insn attribute.
17306         * config/rl78/rl78.opt (msave-mduc-in-interrupts): New option.
17307         * doc/invoke.texi (RL78 Options): Add -msave-mduc-in-interrupts.
17309 2016-05-09  Bin Cheng  <bin.cheng@arm.com>
17311         * tree-if-conv.c (tree-ssa-loop.h): Include header file.
17312         (tree-ssa-loop-niter.h): Ditto.
17313         (idx_within_array_bound, ref_within_array_bound): New functions.
17314         (ifcvt_memrefs_wont_trap): Check if array ref is within bound.
17315         Factor out check on writable base object to ...
17316         (base_object_writable): ... here.
17318 2016-05-09  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
17320         * config/arm/arm.md (probe_stack): Add modes to set source
17321         and destination.
17323 2016-05-09  Bernd Schmidt  <bschmidt@redhat.com>
17325         * regrename.c (base_reg_class_for_rename): New static function.
17326         (scan_rtx_address, scan_rtx): Use it instead of base_reg_class.
17328 2016-05-08  Jan Hubicka  <hubicka@ucw.cz>
17330         * cgraph.c (thunk_adjust): Export.
17331         * cgraphclones.c (cgraph_node::create_clone): Clone thunk info.
17332         * cgraphunit.c (thunk_adjust): Export.
17333         (cgraph_node::assemble_thunks_and_aliases): Do not assemble inlined
17334         thunks.
17335         * ipa-inline-analyssi.c (compute_inline_parameters): Thunks are
17336         inlinable.
17337         * tree-inline.c (expand_call_inline): Expand thunks inline.
17339 2016-05-08  Uros Bizjak  <ubizjak@gmail.com>
17341         PR target/70998
17342         * config/i386/sse.md (*sse2_vd_cvtsd2ss): New insn pattern.
17343         (*sse2_vd_cvtss2sd): Ditto.
17344         * config/i386/i386.md
17345         (TARGET_SSE_PARTIAL_REG_DEPENDENCY float_truncate df->sf splitter):
17346         Generate *sse2_vd_cvtsd2ss pattern.
17347         (TARGET_SSE_PARTIAL_REG_DEPENDENCY float_extend sf->df splitter):
17348         Generate *sse2_vd_cvtss2sd pattern.
17350 2016-05-08  Oleg Endo  <olegendo@gcc.gnu.org>
17352         * config/sh/sh.h (GET_SH_ARG_CLASS): Convert macro into ...
17353         * config/sh/sh.c (get_sh_arg_class): ... this new function.  Update its
17354         users.
17356 2016-05-08  Oleg Endo  <olegendo@gcc.gnu.org>
17358         * config/sh/sh-protos.h (sh_media_register_for_return): Remove.
17359         * config/sh/sh.c: Define and declare variables on first use throughout
17360         the file.
17361         (current_function_interrupt): Change to bool type.
17362         (frame_insn): Rename to emit_frame_insn and update users.
17363         (push_regs): Use bool for 'interrupt_handler' argument.
17364         (save_schedule_s): Remove.
17365         (TARGET_ASM_UNALIGNED_DI_OP, TARGET_ASM_ALIGNED_DI_OP): Remove.
17366         (sh_option_override): Don't nullify targetm.asm_out.aligned_op.di and
17367         targetm.asm_out.unaligned_op.di.
17368         (gen_far_branch): Remove redundant forward declaration.
17369         (sh_media_register_for_return, MAX_SAVED_REGS, save_entry_s, save_entry,
17370         MAX_TEMPS, save_schedule_ssave_schedule): Remove.
17371         (sh_set_return_address, sh_function_ok_for_sibcall,
17372         scavenge_reg): Update comments.
17373         (sh_builtin_saveregs): Use TRAGET_FPU_ANY condition.
17374         (sh2a_get_function_vector_number, sh2a_function_vector_p): Use for loop.
17375         (sh_attr_renesas_p): Remove unnecessary parentheses.
17376         (branch_dest): Simplify.
17377         * config/sh/sh.h (sh_args): Remove byref, byref_regs, stack_regs fields.
17378         Change force_mem, prototype_p, outgoing, renesas_abi fields to bool.
17379         (CUMULATIVE_ARGS): Change macro to typedef.
17380         (current_function_interrupt): Change to bool type.
17381         (sh_arg_class, sh_args, CUMULATIVE_ARGS, current_function_interrupt):
17382         Surround with __cplusplus ifdef.
17383         (sh_compare_op0, sh_compare_op1): Remove.
17384         (EPILOGUE_USES): Use TARGET_FPU_ANY condition.
17386 2016-05-07  Jim Wilson  <jim.wilson@linaro.org>
17388         * config/arm/arm.md: (arch): Add neon.
17389         (arch_enabled): Return yes for arch neon when TARGET_NEON.
17390         * config/arm/vfp.md (movdf_vfp): Add w/G as alternative 3.  Add
17391         neon_move as type for alt 3.  Add arch attr enabling alt 3 for neon.
17392         Emit vmov.i64 for alt 3.  Renumber alternatives 3 to 8.  Adjust
17393         attributes for alt renumbering.  Mark alt 3 as non-predicable.
17394         (thumb2_movdf_vfp): Likewise.
17396 2016-05-07  Uros Bizjak  <ubizjak@gmail.com>
17398         * config/i386/i386.md (*addqi_1): Add preferred_for_speed attribute
17399         to disparage alternatives 3 and 4 for TARGET_PARTIAL_REG_STALL targets.
17400         (*andqi_1): Add preferred_for_speed attribute to disparage
17401         alternative 2 for TARGET_PARTIAL_REG_STALL targets.
17402         (*<code>qi_1): Ditto.
17403         (*one_cmplqi2_1): Add preferred_for_speed attribute to disparage
17404         alternative 1 for TARGET_PARTIAL_REG_STALL targets.
17405         (*ashlqi3_1): Ditto.
17406         (*swap<mode>): Merge from *swap<mode>_1 and *swap<mode>_2 patterns.
17407         Add preferred_for_size attribute to disparage alternative 0 and
17408         preferred_for_speed attribute to disparage alternative 1 for
17409         TARGET_PARTIAL_REG_STALL targets.
17411 2016-05-07  Tom de Vries  <tom@codesourcery.com>
17413         PR tree-optimization/70956
17414         * graphite-scop-detection.c (build_cross_bb_scalars_def): Handle NULL
17415         def.
17417 2016-05-07  Oleg Endo  <olegendo@gcc.gnu.org>
17419         * config/sh/sh-protos.h (sh_cbranch_distance): Declare new function.
17420         * config/sh/sh.c (sh_cbranch_distance): Implement it.
17421         * config/sh/sh.md (branch_zero): Remove define_attr.
17422         (define_delay): Disable delay slot if branch distance is one insn.
17424 2016-05-06  Uros Bizjak  <ubizjak@gmail.com>
17426         * config/i386/i386.md (LEAMODE): New mode attribute.
17427         (plus to LEA splitter): Rewrite splitter using LEAMODE mode attribute.
17428         (ashift to LEA splitter): Rewrte splitter using SWI mode iterator
17429         and LEAMODE mode attribute.  Use VOIDmode const_0_to_3_operand as
17430         operand 2 predicate.
17431         (*lea<mode>_general_2): Use VOIDmode for const248_operand.
17432         (*lea<mode>_general_3): Ditto.
17433         (*lea<mode>_general_4): Use VOIDmode for const_0_to_3_operand.
17435 2016-05-06  Jakub Jelinek  <jakub@redhat.com>
17437         * genmddump.c (main): Convert argv from char ** to const char **.
17439 2016-05-06  David Malcolm  <dmalcolm@redhat.com>
17441         * coretypes.h (OVERRIDE): New macro.
17442         (FINAL): New macro.
17444 2016-05-06  Eric Botcazou  <ebotcazou@adacore.com>
17446         * tree-ssa-coalesce.c (gimple_can_coalesce_p): In the optimized case,
17447         allow coalescing if the types are compatible.
17449 2016-05-06  David Malcolm  <dmalcolm@redhat.com>
17451         * pass_manager.h (pass_manager::register_pass_name): New method.
17452         (pass_manager::get_pass_by_name): New method.
17453         (pass_manager::create_pass_tab): New method.
17454         (pass_manager::m_name_to_pass_map): New field.
17455         * passes.c (name_to_pass_map): Delete global in favor of field
17456         "m_name_to_pass_map" of pass_manager.
17457         (register_pass_name): Rename from a function to...
17458         (pass_manager::register_pass_name): ...this method, updating
17459         for renaming of global "name_to_pass_map" to field
17460         "m_name_to_pass_map".
17461         (create_pass_tab): Rename from a function to...
17462         (pass_manager::create_pass_tab): ...this method, updating
17463         for renaming of global "name_to_pass_map" to field.
17464         (get_pass_by_name): Rename from a function to...
17465         (pass_manager::get_pass_by_name): ...this method.
17466         (enable_disable_pass): Convert use of get_pass_by_name to
17467         a method call, locating the pass_manager singleton.
17469 2016-05-06  David Malcolm  <dmalcolm@redhat.com>
17471         * genattr-common.c (main): Convert argv from char ** to const char **.
17472         * genattr.c (main): Likewise.
17473         * genattrtab.c (main): Likewise.
17474         * genautomata.c (initiate_automaton_gen): Likewise.
17475         (main): Likewise.
17476         * gencodes.c (main): Likewise.
17477         * genconditions.c (main): Likewise.
17478         * genconfig.c (main): Likewise.
17479         * genconstants.c (main): Likewise.
17480         * genemit.c (main): Likewise.
17481         * genenums.c (main): Likewise.
17482         * genextract.c (main): Likewise.
17483         * genflags.c (main): Likewise.
17484         * genmddeps.c (main): Likewise.
17485         * genopinit.c (main): Likewise.
17486         * genoutput.c (main): Likewise.
17487         * genpeep.c (main): Likewise.
17488         * genpreds.c (main): Likewise.
17489         * genrecog.c (main): Likewise.
17490         * gensupport.c (init_rtx_reader_args_cb): Likewise.
17491         (init_rtx_reader_args): Likewise.
17492         * gensupport.h (init_rtx_reader_args_cb): Likewise.
17493         (init_rtx_reader_args): Likewise.
17494         * gentarget-def.c (main): Likewise.
17495         * read-md.c (read_md_files): Likewise.
17496         * read-md.h (read_md_files): Likewise.
17498 2016-05-06  Uros Bizjak  <ubizjak@gmail.com>
17500         * config/i386/i386.md (int cmove peephole2s): Use general_reg_operand
17501         instead of register_and_not_any_fp_reg_operand as operand 0 predicate.
17502         * config/i386/predicates.md (register_and_not_any_fp_reg_operand):
17503         Remove unused predicate.
17504         (register_and_not_fp_reg_operand): Ditto.
17506 2016-05-06  Martin Liska  <mliska@suse.cz>
17508         * tree-if-conv.c (ifcvt_split_critical_edges): Use auto_vec
17509         instead of vec as the vector is local to the function.
17511 2016-05-06  Jakub Jelinek  <jakub@redhat.com>
17513         * config/i386/sse.md (*<code>v8hi3, *<code>v16qi3): Add
17514         avx512bw alternative.
17516         * config/i386/sse.md (<mask_codefor>ashr<mode>3<mask_name>): Move
17517         before the ashr<mode>3 pattern.
17519         * config/i386/sse.md (*avx2_pmaddwd, *sse2_pmaddwd): Use
17520         v instead of x in vex or maybe_vex alternatives, use
17521         maybe_evex instead of vex in prefix.
17523         * config/i386/sse.md (*vec_extractv4sf_0, *sse4_1_extractps,
17524         *vec_extractv4sf_mem, vec_extract_lo_v16hi, vec_extract_hi_v16hi,
17525         vec_extract_lo_v32qi, vec_extract_hi_v32qi): Use v instead of x
17526         in vex or maybe_vex alternatives, use maybe_evex instead of vex
17527         in prefix.
17529         * config/i386/sse.md (*vec_concatv2sf_sse4_1, *vec_concatv4sf): Use
17530         v instead of x in vex or maybe_vex alternatives, use
17531         maybe_evex instead of vex in prefix.
17533         * config/i386/sse.md (sse_shufps_<mode>, sse_storehps, sse_loadhps,
17534         sse_storelps, sse_movss, avx2_vec_dup<mode>, avx2_vec_dupv8sf_1,
17535         sse2_shufpd_<mode>, sse2_storehpd, sse2_storelpd, sse2_loadhpd,
17536         sse2_loadlpd, sse2_movsd): Use v instead of x in vex or maybe_vex
17537         alternatives, use maybe_evex instead of vex in prefix.
17539         * config/i386/sse.md (vec_interleave_lowv4sf,
17540         *vec_interleave_highv2df, *vec_interleave_lowv2df): Use
17541         v instead of x in vex or maybe_vex alternatives, use
17542         maybe_evex instead of vex in prefix.
17544         * config/i386/sse.md (sse_movhlps, sse_movlhps): Use
17545         v instead of x in vex or maybe_vex alternatives, use
17546         maybe_evex instead of vex in prefix.
17548         * config/i386/sse.md (*avx_cvtpd2dq256_2, *avx_cvtps2pd256_2): Use
17549         v constraint instead of x.
17551 2016-05-06  Nathan Sidwell  <nathan@codesourcery.com>
17553         * gimple.c (gimple_call_same_target_p): Unique functions are eq.
17554         * tree-ssa-tail-merge.c (same_succ::equal): Check pointer eq
17555         equality first.
17557 2016-05-06  Richard Biener  <rguenther@suse.de>
17559         PR tree-optimization/70948
17560         * tree-ssa-structalias.c (find_func_aliases_for_builtin_call):
17561         Properly clobber all fields of va_list for __builtin_va_start.
17563 2016-05-06  Yuri Rumyantsev  <ysrumyan@gmail.com>
17565         PR debug/70935
17566         * tree-ssa-loop-unswitch.c (find_loop_guard): Reject guard edge with
17567         loop latch destination.
17569 2016-05-06  Martin Liska  <mliska@suse.cz>
17571         * tree-ssa-uninit.c: Apply manual changes
17572         to the GNU coding style.
17573         (prune_uninit_phi_opnds): Rename from
17574         prune_uninit_phi_opnds_in_unrealizable_paths.
17576 2016-05-06  Oleg Endo  <olegendo@gcc.gnu.org>
17578         * config/sh/sh.opt (madjust-unroll, minvalid-symbols, msoft-atomic,
17579         mspace): Remove deprecated options.
17580         * doc/invoke.texi (SH options): Remove -mspace.
17582 2016-05-06  Oleg Endo  <olegendo@gcc.gnu.org>
17584         * config/sh/sh.md (ic_invalidate_line_sh4a): Fix insn length.
17586 2016-05-06  Oleg Endo  <olegendo@gcc.gnu.org>
17588         * config/sh/sh.md (*cmpeqsi_t): Remove combine insn pattern and similar
17589         corresponding combine split pattern.
17591 2016-05-06  Oleg Endo  <olegendo@gcc.gnu.org>
17593         PR target/58219
17594         * config/sh/predicates.md (long_displacement_mem_operand): New.
17595         * config/sh/sh.md (movsi_i): Allow for SH2A, disallow for any FPU.
17596         Add movi20, movi20s alternatives.  Adjust length attribute for
17597         alternatives.
17598         (movsi_ie): Allow for any FPU.  Adjust length attribute for
17599         alternatives.
17600         (movsi_i_lowpart): Add movi20, movi20s alternatives.  Adjust length
17601         attribute for alternatives.
17602         (*mov<mode>): Use long_displacement_mem_operand for length attribute.
17603         (*movdi_i, movdf_k, movdf_i4, movsf_i, movsf_ie, movsf_ie_ra): Adjust
17604         length attribute for alternatives.
17606 2016-05-06  Richard Biener  <rguenther@suse.de>
17608         PR tree-optimization/70960
17609         * tree-if-conv.c (ifcvt_walk_pattern_tree): Handle non-SSA ops.
17611 2016-05-06  Oleg Endo  <olegendo@gcc.gnu.org>
17613         PR target/52933
17614         * config/sh/sh.md (*cmp_div0s_7, *cmp_div0s_8): Add div0s variants.
17615         * config/sh/sh.c (sh_rtx_costs): Add another div0s case.
17617 2016-05-06  Marek Polacek  <polacek@redhat.com>
17619         PR sanitizer/70875
17620         * ubsan.c (get_ubsan_type_info_for_type): Remove assert.
17622 2016-05-06  Oleg Endo  <olegendo@gcc.gnu.org>
17624         PR target/54089
17625         * config/sh/sh.md (*rotcr): Add another variant.
17627 2016-05-06  Richard Biener  <rguenther@suse.de>
17629         PR middle-end/70931
17630         * dwarf2out.c (native_encode_initializer): Skip zero-sized fields.
17632 2016-05-06  Richard Biener  <rguenther@suse.de>
17634         PR middle-end/70941
17635         * fold-const.c (split_tree): Always convert to the original type
17636         before negating.
17638 2016-05-06  Richard Biener  <rguenther@suse.de>
17640         * fwprop.c (fwprop): Remove duplicate cleanup_cfg call.
17641         (fwprop_addr): Likewise.
17643 2016-05-06  Uros Bizjak  <ubizjak@gmail.com>
17645         PR target/70873
17646         * config/i386/i386-protos.h (ix86_standard_x87sse_constant_load_p):
17647         New prototype.
17648         * config/i386/i386.c (ix86_standard_x87sse_constant_load_p): New.
17649         * config/i386/i386.md (push mem splitter): Use find_constant_src in
17650         the splitter condition.
17651         (FP load splitter): Use ix86_standard_x87sse_constant_load_p in
17652         the splitter condition.
17653         (FP float_extend load splitter): Ditto.
17655 2016-05-05  Uros Bizjak  <ubizjak@gmail.com>
17657         * config/i386/i386.md (peehole2 patterns): Change true_regnum
17658         to REGNO in all peephole2 patterns.
17659         (post-reload splitters): Change true_regnum to REGNO in
17660         post-reload splitters.
17661         (zero_extend splitters): Use general_reg_operand and
17662         nonimmediate_gr_operand predicates.
17664 2016-05-05  Jakub Jelinek  <jakub@redhat.com>
17666         * config/i386/sse.md (<avx512>_fmadd_<mode>_mask3<round_name>): Use
17667         v constraint instead of x.
17669 2016-05-05  Alan Modra  <amodra@gmail.com>
17671         PR target/68662
17672         * config/rs6000/sysv4.h (SUBTARGET_OVERRIDE_OPTIONS): Don't
17673         set OPTION_MASK_RELOCATABLE when flag_pic == 2.  Set
17674         TARGET_NO_FP_IN_TOC for -mrelocatable.
17675         (MINIMAL_TOC_SECTION_ASM_OP): Remove redundant
17676         TARGET_RELOCATABLE test.
17677         (ASM_OUTPUT_SPECIAL_POOL_ENTRY_P): Likewise.
17678         (ASM_PREFERRED_EH_DATA_FORMAT): Likewise.
17679         * config/rs6000/linux64.h (MINIMAL_TOC_SECTION_ASM_OP): Likewise.
17680         (ASM_OUTPUT_SPECIAL_POOL_ENTRY_P): Likewise.
17681         (ASM_PREFERRED_EH_DATA_FORMAT): Likewise.
17682         * config/rs6000/freebsd64.h (MINIMAL_TOC_SECTION_ASM_OP): Likewise.
17683         (ASM_OUTPUT_SPECIAL_POOL_ENTRY_P): Likewise.
17684         (ASM_PREFERRED_EH_DATA_FORMAT): Likewise.
17685         * config/rs6000/predicates.md (easy_fp_constant): Likewise.
17686         * config/rs6000/rs6000.c (rs6000_elf_output_toc_section_asm_op):
17687         Likewise.
17688         (rs6000_assemble_integer): Update TARGET_RELOCATABLE test.
17689         (rs6000_stack_info): Likewise.
17690         (rs6000_elf_asm_out_constructor): Likewise.
17691         (rs6000_elf_asm_out_destructor): Likewise.
17692         (rs6000_elf_declare_function_name): Likewise.
17693         * config/rs6000/rs6000.md (load_toc_aix_di): Likewise.
17694         * config/rs6000/rs6000.h (MASK_RELOCATABLE, MASK_MINIMAL_TOC):
17695         Don't define.
17697 2016-05-05  Alan Modra  <amodra@gmail.com>
17699         * config/rs6000/rs6000.c (rs6000_frame_related): Rewrite.
17701 2016-05-05  Alan Modra  <amodra@gmail.com>
17703         * config/rs6000/rs6000.c (rs6000_savres_strategy): Don't use
17704         out-of-line gpr restore for one or two regs if that would add
17705         a save of lr.
17707 2016-05-04  Uros Bizjak  <ubizjak@gmail.com>
17709         PR target/70873
17710         * config/i386/i386.md
17711         (TARGET_SSE_PARTIAL_REG_DEPENDENCY float_extend sf->df peephole2):
17712         Change to post-epilogue_completed late splitter.  Use sse_reg_operand
17713         as operand 0 predicate.
17714         (TARGET_SSE_PARTIAL_REG_DEPENDENCY float_truncate df->sf peephole2):
17715         Ditto.
17716         (TARGET_SSE_PARTIAL_REG_DEPENDENCY float {si,di}->{sf,df} peephole2):
17717         Ditto.  Emit the pattern using RTX.
17719         (TARGET_USE_VECTOR_FP_CONVERTS float_extend sf->df splitter):
17720         Use sse_reg_opreand as operand 0 predicate.  Do not use true_regnum in
17721         the post-reload splitter.  Use lowpart_subreg instead of gen_rtx_REG.
17722         (TARGET_USE_VECTOR_FP_CONVERTS float_truncate df->sf splitter):
17723         Ditto.
17724         (TARGET_USE_VECTOR_CONVERTS float si->{sf,df} splitter): Use
17725         sse_reg_operand as operand 0 predicate.
17727         (TARGET_SPLIT_MEM_OPND_FOR_FP_CONVERTS float_extend sf->df peephole2):
17728         Use sse_reg_opreand as operand 0 predicate.  Use lowpart_subreg
17729         instead of gen_rtx_REG.
17730         (TARGET_SPLIT_MEM_OPND_FOR_FP_CONVERTS float_truncate sf->df peephole2):
17731         Ditto.
17733 2016-05-04  Segher Boessenkool  <segher@kernel.crashing.org>
17735         * function.c (emit_use_return_register_into_block): Delete.
17736         (gen_return_pattern): Delete.
17737         (emit_return_into_block): Delete.
17738         (active_insn_between): Delete.
17739         (convert_jumps_to_returns): Delete.
17740         (emit_return_for_exit): Delete.
17741         (thread_prologue_and_epilogue_insns): Delete all code dealing with
17742         simple_return for shrink-wrapped blocks.
17743         * shrink-wrap.c (try_shrink_wrapping): Insert simple_return at the
17744         end of blocks that need one.
17745         (get_unconverted_simple_return): Delete.
17746         (convert_to_simple_return): Delete.
17747         * shrink-wrap.c (get_unconverted_simple_return): Delete declaration.
17748         (convert_to_simple_return): Ditto.
17750 2016-05-04  Segher Boessenkool  <segher@kernel.crashing.org>
17752         * cfgcleanup.c (bb_is_just_return): New function.
17753         (try_optimize_cfg): Simplify jumps to return, branches to return,
17754         and branches around return.
17756 2016-05-04  Segher Boessenkool  <segher@kernel.crashing.org>
17758         * cfgcleanup.c (try_simplify_condjump): Don't try to simplify a
17759         branch to a return.
17761 2016-05-04  Jakub Jelinek  <jakub@redhat.com>
17763         PR c++/70906
17764         PR c++/70933
17765         * tree-core.h (enum operand_equal_flag): Add OEP_HASH_CHECK.
17766         * tree.c (inchash::add_expr): If !IS_EXPR_CODE_CLASS (tclass),
17767         assert flags & OEP_HASH_CHECK, instead of asserting it
17768         never happens.  Handle TARGET_EXPR.
17769         * fold-const.c (operand_equal_p): For hash verification,
17770         or in OEP_HASH_CHECK into flags.
17772 2016-05-04  Eric Botcazou  <ebotcazou@adacore.com>
17774         * tree-ssa-coalesce.c (gimple_can_coalesce_p): Fix reference in head
17775         comment.
17776         (compute_samebase_partition_bases): Fix typo.
17778 2016-05-04  Jakub Jelinek  <jakub@redhat.com>
17780         * config/i386/sse.md (vec_interleave_highv8sf,
17781         vec_interleave_lowv8sf, vec_interleave_highv4df,
17782         vec_interleave_lowv4df): Remove constraints from expanders.
17784         * config/i386/sse.md (sse2_movq128): Use v constraint instead of x.
17786 2016-05-04  Jan Hubicka  <hubicka@ucw.cz>
17788         * tree-inline.c (expand_call_inline): Fix path dealing with
17789         making lhs of call statement undefined.
17791 2016-05-04  Jan Hubicka  <hubicka@ucw.cz>
17793         * cgraph.c (cgraph_node::call_for_symbol_thunks_and_aliases):
17794         Check availability on NODE, too.
17795         * cgraph.h (symtab_node::call_for_symbol_and_aliases): Likewise.
17796         (cgraph_node::call_for_symbol_and_aliases): Likewise.
17797         (varpool_node::call_for_symbol_and_aliase): Likewise.
17798         * ipa-pure-const.c (add_new_function): Analyze all bodies.
17799         (propagate_pure_const): Propagate across interposable functions, too.
17800         (skip_function_for_local_pure_const): Do not skip interposable bodies
17801         with aliases.
17802         (pass_local_pure_const::execute): Update.
17804 2016-05-04  Marek Polacek  <polacek@redhat.com>
17806         * doc/invoke.texi: Document -Wdangling-else.
17808 2016-05-04  Thomas Preud'homme  <thomas.preudhomme@arm.com>
17810         * config.gcc: Error out when conflicting multilib is detected.  Do not
17811         loop over multilibs since no combination is legal.
17813 2016-05-04  Alan Modra  <amodra@gmail.com>
17815         * config/rs6000/rs6000.h (PIC_OFFSET_TABLE_REGNUM): Correct.
17816         * config/rs6000/sysv4.h (TARGET_TOC): Simplify.
17817         * config/rs6000/rs6000.c (rs6000_elf_output_toc_section_asm_op):
17818         Align .toc.
17820 2016-05-04  Matthew Fortune  <matthew.fortune@imgtec.com>
17822         * config/mips/mips-cpus.def (p5600): Avoid IMADD by default.
17823         Clean up p5600 comments.
17825 2016-05-04  Richard Biener  <rguenther@suse.de>
17827         * match.pd: Add BIT_FIELD_REF canonicalizations and vector
17828         constructor simplifications.
17829         * fold-const.c (fold_ternary_loc): Remove duplicate functionality here.
17831 2016-05-04  Oleg Endo  <olegendo@gcc.gnu.org>
17833         * config/sh/predicates (post_inc_mem, pre_dec_mem): New predicates.
17834         * config/sh/sh-protos.h (sh_find_set_of_reg): Return null result if
17835         result.set_rtx is null instead of aborting.
17836         * config/sh/sh.h (USE_LOAD_POST_INCREMENT, USE_STORE_PRE_DECREMENT):
17837         Always enable.
17838         (USE_LOAD_PRE_DECREMENT, USE_STORE_POST_INCREMENT): Enable for SH2A.
17839         * config/sh/sh.md (*extend<mode>si2_predec, *mov<mode>_load_predec,
17840         *mov<mode>_store_postinc): New patterns.
17842 2016-05-04  Marc Glisse  <marc.glisse@inria.fr>
17844         * match.pd ((A | B) & (A | C)): Generalize to BIT_XOR_EXPR.  Mark
17845         as commutative.  Check both conversions are NOP.
17846         ((A & B) OP (C & B)): Remove.
17848 2016-05-04  Alan Modra  <amodra@gmail.com>
17850         * combine.c (simplify_set): Correct WORD_REGISTER_OPERATIONS test.
17852 2016-05-04  Alan Modra  <amodra@gmail.com>
17854         PR target/70866
17855         * config/rs6000/rs6000.c (rs6000_stack_info): Don't set cr_save_p
17856         when cr2,3,4 are all fixed regs.
17858 2016-05-04  Bernd Schmidt  <bschmidt@redhat.com>
17860         PR rtl-optimization/57193
17861         * opts.c (default_options_table): Revert OPT_frename_registers change.
17862         * doc/invoke.texi (-frename-registers, -O2): Likewise.
17864 2016-05-03  Martin Sebor  <msebor@redhat.com>
17866         PR c++/66561
17867         * builtins.c (fold_builtin_FILE): New function.
17868         (fold_builtin_FUNCTION, fold_builtin_LINE): New functions.
17869         (fold_builtin_0): Call them.
17870         * gimplify.c (gimplify_call_expr): Remove the handling of
17871         BUILT_IN_FILE, BUILT_IN_FUNCTION, and BUILT_IN_LINE.
17873         PR c++/66561
17874         * doc/extend.texi (Other Builtins): Update __builtin_FILE,
17875         __builtin_FUNCTION, and __builtin_LINE to reflect they yield
17876         constants.
17878         PR c++/66639
17879         * doc/extend.texi (Function Names as Strings): Update __func__,
17880         __FUNCTION__, __PRETTY_FUNCTION__ to reflect they evaluate to
17881         constants.
17883 2016-05-03  Jakub Jelinek  <jakub@redhat.com>
17884             Richard Biener  <rguenther@suse.de>
17886         PR tree-optimization/70916
17887         * tree-if-conv.c: Include cfganal.h.
17888         (pass_if_conversion::execute): Call connect_infinite_loops_to_exit
17889         and remove_fake_exit_edges around the optimization pass.
17891 2016-05-03  Jan Hubicka  <hubicka@ucw.cz>
17893         * cgraph.c (symbol_table::create_edge): Set inline_failed.
17894         (cgraph_edge::make_direct): Likewise.
17895         (cgraph_edge::dump_edge_flags): Dump call_stmt_cannot_inline_p.
17896         * cgraphclones.c (duplicate_thunk_for_node): Set inline_failed.
17897         * cif-code.def (CIF_LTO_MISMATCHED_DECLARATIONS): New code
17898         (CIF_THUNK): New code.
17899         * ipa-inline-analysis.c (initialize_inline_failed): Preserve
17900         CIF_FINAL_ERROR codes; do not deal with call_stmt_cannot_inline_p.
17901         (compute_inline_parameters): Set inline_failed for thunks.
17902         (inline_analyze_function): Cleanup.
17903         * ipa-inline.c (can_inline_edge_p): Do not deal with
17904         call_stmt_cannot_inline_p.
17905         (can_early_inline_edge_p): Likewise.
17906         (early_inliner): Initialize inline_failed.
17907         * lto-cgraph.c (lto_output_edge): Sanity check inline_failed.
17909 2016-05-03  Uros Bizjak  <ubizjak@gmail.com>
17911         * config/i386/predicates.md (x87nonimm_ssenomem_operand): Rename
17912         from nonimm_ssenomem_operand.
17913         (nonimm_ssenomem_operand): New predicate.
17914         * config/i386/i386.md (extendsfdf2): Use nonimm_ssenomem_operand
17915         as operand 0 predicate.
17916         (*extendsfdf2): Merge from *extendsfdf2_mixed and *extendsfdf2_i387.
17917         Disable unsupported alternatives using "enabled" attribute.
17918         Use register_ssemem_operand as operand 0 predicate.
17919         (*fop_<mode>_1): Use x87nonimm_ssenomem_operand as operand 1 predicate.
17921 2016-05-03  Marek Polacek  <polacek@redhat.com>
17923         PR c/70859
17924         * input.c (expansion_point_location): New function.
17925         * input.h (expansion_point_location): Declare.
17927 2016-05-03  Pierre-Marie de Rodat  <derodat@adacore.com>
17929         * dwarf2out.c (resolve_args_picking_1): Replace the frame_offset
17930         occurence with frame_offset_ ones.
17932 2016-05-03  Alan Modra  <amodra@gmail.com>
17934         PR rtl-optimization/70890
17935         * ira.c (combine_and_move_insns): When moving def_insn, remove
17936         equivs on use_insn.
17938 2016-05-03  Dominik Vogt  <vogt@linux.vnet.ibm.com>
17940         * config/s390/s390.md ("*r<noxa>sbg_<mode>_sll")
17941         ("*r<noxa>sbg_<mode>_srl"): New define_insns.
17942         ("*r<noxa>sbg_<mode>_srl_bitmask"): Rename by adding "_bitmask".
17943         ("*r<noxa>sbg_<mode>_sll_bitmask"): Likewise.
17945 2016-05-03  Alan Modra  <amodra@gmail.com>
17947         * config/rs6000/rs6000.c (rs6000_savres_strategy): Correct condition
17948         for SAVE_MULTIPLE/STORE_MULTIPLE.
17950 2016-05-03  Jakub Jelinek  <jakub@redhat.com>
17952         * config/i386/i386.md (*truncdfsf_mixed, *truncdfsf_i387,
17953         *truncxfsf2_mixed, *truncxfdf2_mixed): Use v constraint instead of x.
17955 2016-05-03  Richard Biener  <rguenther@suse.de>
17957         * gimplify.h (get_initialized_tmp_var): Add allow_ssa parameter
17958         default true.
17959         (gimplify_arg): Likewise.
17960         * gimplify.c (gimplify_expr): Add overload with allow_ssa parameter,
17961         re-writing the result to a decl if required.
17962         (internal_get_tmp_var): Add allow_ssa parameter
17963         and override into_ssa with it.
17964         (get_formal_tmp_var): Adjust.
17965         (get_initialized_tmp_var): Add allow_ssa parameter.
17966         (gimplify_arg): Add allow_ssa parameter and avoid generating
17967         SSA names for the result false.
17968         (gimplify_call_expr): If the call may return twice do not
17969         gimplify parameters into SSA.
17970         (prepare_gimple_addressable): Do not allow an SSA name as temporary.
17971         (gimplify_modify_expr): Adjust assert.  For noreturn calls
17972         with a SSA name LHS adjust its def.
17973         (gimplify_save_expr): Do not allow an SSA name as save-expr result.
17974         (gimplify_one_sizepos): Do not allow an SSA name as a sizepos.
17975         (gimplify_body): Init GIMPLE SSA data structures and gimplify into-SSA.
17976         (gimplify_scan_omp_clauses): Make sure OMP_CLAUSE_SIZE is not
17977         an SSA name.  Likewise for OMP_CLAUSE_REDUCTION operands.
17978         (gimplify_omp_for): Likewise for OMP_CLAUSE_DECL.  Likewise
17979         for OMP_FOR_COND,  OMP_FOR_INCR and OMP_CLAUSE_LINEAR_STEP.
17980         (optimize_target_teams): Do not allow SSA names for clause operands.
17981         (gimplify_expr): Likewise for where we mark the result addressable.
17982         * passes.def (pass_init_datastructures): Remove.
17983         * tree-into-ssa.c (mark_def_sites): Ignore existing SSA names.
17984         (rewrite_stmt): Likewise.
17985         * tree-inline.c (initialize_cfun): Properly transfer SSA state.
17986         (replace_locals_op): Replace SSA names.
17987         (copy_gimple_seq_and_replace_locals): Init src_cfun.
17988         * gimple-low.c (lower_builtin_setjmp): Deal with SSA.
17989         * cgraph.c (release_function_body): Free CFG annotations only
17990         when we have a CFG.  Simplify.
17991         * gimple-fold.c (gimplify_and_update_call_from_tree): Use
17992         force_gimple_operand instead of get_initialized_tmp_var.
17993         * tree-pass.h (make_pass_init_datastructures): Remove.
17994         * tree-ssa.c (execute_init_datastructures): Remove.
17995         (pass_data_init_datastructures): Likewise.
17996         (class pass_init_datastructures): Likewise.
17997         (make_pass_init_datastructures): Likewise.
17998         * omp-low.c (create_omp_child_function): Init SSA data structures.
17999         (grid_expand_target_grid_body): Likewise.
18000         * tree-cfg.c (move_block_to_fn): Double-check the DEF is an SSA
18001         name before adding it to names_to_release.
18002         (remove_bb): Always release SSA defs.
18003         * tree-ssa-ccp.c (get_default_value): Check SSA_NAME_VAR
18004         before dereferencing it.
18005         * cgraphunit.c (init_lowered_empty_function): Always
18006         int SSA data structures.
18007         * tree-ssanames.c (release_defs): Remove assert that we are in
18008         SSA form.
18009         * trans-mem.c (diagnose_tm_1): Handle SSA name function.
18011 2016-05-03  Jakub Jelinek  <jakub@redhat.com>
18012             Uros Bizjak  <ubizjak@gmail.com>
18014         PR rtl-optimization/70467
18015         * config/i386/predicates.md (x86_64_hilo_int_operand,
18016         x86_64_hilo_general_operand): New predicates.
18017         * config/i386/constraints.md (Wd): New constraint.
18018         * config/i386/i386.md (mode attr di): Use Wd instead of e.
18019         (general_hilo_operand): New mode attr.
18020         (add<mode>3, sub<mode>3): Use <general_hilo_operand>
18021         instead of <general_operand>.
18022         (*add<dwi>3_doubleword, *sub<dwi>3_doubleword): Use
18023         x86_64_hilo_general_operand instead of <general_operand>.
18025 2016-05-03  Jakub Jelinek  <jakub@redhat.com>
18027         PR tree-optimization/70916
18028         * tree-if-conv.c (constant_or_ssa_name): Removed.
18029         (fold_build_cond_expr): Use is_gimple_val instead of
18030         constant_or_ssa_name.
18032         PR tree-optimization/70916
18033         * tree-vect-patterns.c (vect_recog_mask_conversion_pattern): Give up
18034         if COND_EXPR rhs1 is neither SSA_NAME nor COMPARISON_CLASS_P.
18036         PR target/49244
18037         * tree-ssa-ccp.c: Include stor-layout.h and optabs-query.h.
18038         (optimize_atomic_bit_test_and): New function.
18039         (pass_fold_builtins::execute): Use it.
18040         * optabs.def (atomic_bit_test_and_set_optab,
18041         atomic_bit_test_and_complement_optab,
18042         atomic_bit_test_and_reset_optab): New optabs.
18043         * internal-fn.def (ATOMIC_BIT_TEST_AND_SET,
18044         ATOMIC_BIT_TEST_AND_COMPLEMENT, ATOMIC_BIT_TEST_AND_RESET): New ifns.
18045         * builtins.h (expand_ifn_atomic_bit_test_and): New prototype.
18046         * builtins.c (expand_ifn_atomic_bit_test_and): New function.
18047         * internal-fn.c (expand_ATOMIC_BIT_TEST_AND_SET,
18048         expand_ATOMIC_BIT_TEST_AND_COMPLEMENT,
18049         expand_ATOMIC_BIT_TEST_AND_RESET): New functions.
18050         * doc/md.texi (atomic_bit_test_and_set@var{mode},
18051         atomic_bit_test_and_complement@var{mode},
18052         atomic_bit_test_and_reset@var{mode}): Document.
18053         * config/i386/sync.md (atomic_bit_test_and_set<mode>,
18054         atomic_bit_test_and_complement<mode>,
18055         atomic_bit_test_and_reset<mode>): New expanders.
18056         (atomic_bit_test_and_set<mode>_1,
18057         atomic_bit_test_and_complement<mode>_1,
18058         atomic_bit_test_and_reset<mode>_1): New insns.
18060 2016-05-03  Richard Sandiford  <richard.sandiford@arm.com>
18062         PR rtl-optimization/70687
18063         * combine.c (change_zero_ext): Check for scalar modes.  Use wide_int
18064         instead of unsigned HOST_WIDE_INT.
18066 2016-05-03  Bernd Schmidt  <bschmidt@redhat.com>
18068         PR rtl-optimization/44281
18069         * hard-reg-set.h (struct target_hard_regs): New field
18070         x_fixed_nonglobal_reg_set.
18071         (fixed_nonglobal_reg_set): New macro.
18072         * reginfo.c (init_reg_sets_1): Initialize it.
18073         * ira.c (setup_alloc_regs): Use fixed_nonglobal_reg_set instead
18074         of fixed_reg_set.
18075         * df-scan.c (df_insn_refs_collect): Asms may reference global regs.
18077 2016-05-03  Bin Cheng  <bin.cheng@arm.com>
18079         PR tree-optimization/56541
18080         * doc/invoke.texi (@item max-tree-if-conversion-phi-args): New item.
18081         * params.def (PARAM_MAX_TREE_IF_CONVERSION_PHI_ARGS): new param.
18082         * tree-if-conv.c (MAX_PHI_ARG_NUM): new macro.
18083         (any_complicated_phi): new static variable.
18084         (aggressive_if_conv): delete.
18085         (if_convertible_phi_p): support phis with more than two arguments.
18086         (if_convertible_bb_p): remvoe check on aggressive_if_conv and
18087         critical pred edges.
18088         (ifcvt_split_critical_edges): support phis with more than two
18089         arguments by checking new parameter.  only split critical edges
18090         if needed.
18091         (tree_if_conversion): handle simd pragma marked loop using new
18092         local variable aggressive_if_conv.  check any_complicated_phi.
18094 2016-05-03  Bin Cheng  <bin.cheng@arm.com>
18096         * tree-ssa-loop-ivopts.c (get_computation_cost_at): Check depends_on
18097         before using it.
18099 2016-05-03  Bin Cheng  <bin.cheng@arm.com>
18101         * tree-ssa-loop-ivopts.c (get_computation_cost_at): Don't clobber
18102         cbase.
18104 2016-05-03  Oleg Endo  <olegendo@gcc.gnu.org>
18106         * config/sh/sh.md (udivsi3, divsi3, mulsi3): Simplify.
18107         (mulhisi3, umulhisi3, (smulsi3_highpart, umulsi3_highpart): Convert to
18108         define_insn_and_split.
18109         (mulsi3_i): New define_insn_and_split.
18110         (mulsi3_call): Convert to define_insn.
18111         (mulsidi3, mulsidi3_compact, umulsidi3, umulsidi3_compact):
18112         Remove constraints.
18114 2016-05-02  Michael Meissner  <meissner@linux.vnet.ibm.com>
18116         * machmode.h (mode_complex): Add support to give the complex mode
18117         for a given mode.
18118         (GET_MODE_COMPLEX_MODE): Likewise.
18119         * stor-layout.c (layout_type): For COMPLEX_TYPE, use the mode
18120         stored by build_complex_type and gfc_build_complex_type instead of
18121         trying to figure out the appropriate mode based on the size. Raise
18122         an assertion error, if the type was not set.
18123         * genmodes.c (struct mode_data): Add field for the complex type of
18124         the given type.
18125         (blank_mode): Likewise.
18126         (make_complex_modes): Remember the complex mode created in the
18127         base type.
18128         (emit_mode_complex): Write out the mode_complex array to map a
18129         type mode to the complex version.
18130         (emit_insn_modes_c): Likewise.
18131         * tree.c (build_complex_type): Set the complex type to use before
18132         calling layout_type.
18133         * config/rs6000/rs6000.c (rs6000_hard_regno_nregs_internal): Add
18134         support for __float128 complex datatypes.
18135         (rs6000_hard_regno_mode_ok): Likewise.
18136         (rs6000_setup_reg_addr_masks): Likewise.
18137         (rs6000_complex_function_value): Likewise.
18138         * config/rs6000/rs6000.h (FLOAT128_IEEE_P): Likewise.
18139         __float128 and __ibm128 complex.
18140         (FLOAT128_IBM_P): Likewise.
18141         (ALTIVEC_ARG_MAX_RETURN): Likewise.
18142         * doc/extend.texi (Additional Floating Types): Document that
18143         -mfloat128 must be used to enable __float128.  Document complex
18144         __float128 and __ibm128 support.
18146 2016-05-02  Jakub Jelinek  <jakub@redhat.com>
18148         PR target/49244
18149         * gimple.c (gimple_builtin_call_types_compatible_p): Allow
18150         char/short arguments promoted to int because of promote_prototypes.
18152 2016-05-02  Uros Bizjak  <ubizjak@gmail.com>
18154         * config/i386/predicates.md (register_ssemem_operand): New predicate.
18155         * config/i386/i386.md (*cmpi<FPCMP:unord><MODEF:mode>): Merge from
18156         *cmpi<FPCMP:unord><MODEF:mode>_mixed and
18157         *cmpi<FPCMP:unord><X87MODEF:mode>_i387.  Disable unsupported
18158         alternatives using "enabled" attribute.  Use register_ssemem_operand
18159         as operand 1 predicate.
18160         (*cmpi<unord>xf_i387): Split XFmode pattern from
18161         *cmpi<FPCMP:unord><X87MODEF:mode>_i387.
18162         (*absneg<mode>2): Merge from *absneg<mode>2_mixed and
18163         *absneg<mode>2_i387.  Disable unsupported alternatives using
18164         "enabled" attribute.
18165         (*absnegxf2_i387): Split XFmode pattern from *absneg<mode>2_i387.
18167 2016-05-02  Nathan Sidwell  <nathan@codesourcery.com>
18169         * omp-low.c (lower_oacc_head_tail): Assert there is at least one
18170         marker.
18171         (oacc_loop_process): Check mask for loop termination.
18173 2016-05-02  Jan Hubicka  <hubicka@ucw.cz>
18175         * cif-code.def (CIF_THUNK): Add.
18176         * ipa-inline-analsysis.c (evaluate_conditions_for_known_args): Revert
18177         accidental change.
18179 2016-05-02  Jan Hubicka  <hubicka@ucw.cz>
18181         * ipa-inline-analysis.c (reset_inline_summary): Clear fp_expressions
18182         (dump_inline_summary): Dump it.
18183         (fp_expression_p): New predicate.
18184         (estimate_function_body_sizes): Use it.
18185         (inline_merge_summary): Merge fp_expressions.
18186         (inline_read_section): Read fp_expressions.
18187         (inline_write_summary): Write fp_expressions.
18188         * ipa-inline.c (can_inline_edge_p): Permit inlining across fp math
18189         codegen boundary if either caller or callee is !fp_expressions.
18190         * ipa-inline.h (inline_summary): Add fp_expressions.
18191         * ipa-inline-transform.c (inline_call): When inlining !fp_expressions
18192         to fp_expressions be sure the fp generation flags are updated.
18194 2016-05-02  Jakub Jelinek  <jakub@redhat.com>
18196         PR rtl-optimization/70467
18197         * cse.c (cse_insn): Handle no-op MEM moves after folding.
18199         PR rtl-optimization/70467
18200         * ipa-pure-const.c (check_call): Handle internal calls even in
18201         ipa mode like in local mode.
18203 2016-05-02  Bernd Edlinger  <bernd.edlinger@hotmail.de>
18205         * doc/install.texi: Document supported in-tree gmp/mpfr/mpc versions.
18207 2016-05-02  Marc Glisse  <marc.glisse@inria.fr>
18209         * match.pd (X u< X, X u> X): New transformations.
18211 2016-05-02  Marc Glisse  <marc.glisse@inria.fr>
18213         * flag-types.h (enum warn_strict_overflow_code): Move ...
18214         * coretypes.h: ... here.
18215         * fold-const.h (fold_overflow_warning): Declare.
18216         * fold-const.c (fold_overflow_warning): Make non-static.
18217         (fold_comparison): Move the transformation of X +- C1 CMP C2
18218         into X CMP C2 -+ C1 ...
18219         * match.pd: ... here.
18220         * gimple-fold.c (fold_stmt_1): Protect with
18221         fold_defer_overflow_warnings.
18223 2016-05-02  Nathan Sidwell  <nathan@codesourcery.com>
18225         * omp-low.c (struct oacc_loop): Add 'inner' field.
18226         (new_oacc_loop_raw): Initialize it to zero.
18227         (oacc_loop_fixed_partitions): Initialize it.
18228         (oacc_loop_auto_partitions): Partition outermost loop to outermost
18229         available partitioning.
18231 2016-05-02  Claudiu Zissulescu  <claziss@synopsys.com>
18233         * config/arc/arc.md (mulsidi3): Change operand 0 predicate to
18234         register_operand.
18235         (umulsidi3): Likewise.
18236         (indirect_jump): Fix jump instruction assembly patterns.
18238 2016-05-02  Thomas Schwinge  <thomas@codesourcery.com>
18240         PR target/70860
18241         * config/nvptx/nvptx.c (nvptx_libcall_value): Handle NULL cfun.
18242         (nvptx_function_value): Assert non-NULL cfun.
18244 2016-05-02  Eric Botcazou  <ebotcazou@adacore.com>
18246         PR rtl-optimization/70886
18247         * sched-deps.c (estimate_dep_weak): Canonicalize cselib values.
18249         * cselib.h (rtx_equal_for_cselib_1): Declare.
18250         (rtx_equal_for_cselib_p: New inline function.
18251         * cselib.c (rtx_equal_for_cselib_p): Delete.
18252         (rtx_equal_for_cselib_1): Make public.
18254 2016-05-02  Uros Bizjak  <ubizjak@gmail.com>
18256         * config/i386/predicates.md (nonimm_ssenomem_operand): New predicate.
18257         (register_mixssei387nonimm_operand): Remove predicate.
18258         * config/i386/i386.md (*fop_<mode>_comm): Merge from
18259         *fop_<mode>_comm_mixed and *fop_<mode>_comm_i387.  Disable unsupported
18260         alternatives using "enabled" attribute.  Also check X87_ENABLE_ARITH
18261         for TARGET_MIX_SSE_I387 alternatives.
18262         (*fop_<mode>_1): Merge from *fop_<mode>_1_mixed and *fop_<mode>_1_i387.
18263         Disable unsupported alternatives using "enabled" attribute.  Use
18264         nonimm_ssenomem_operand as operand 1 predicate.  Also check
18265         X87_ENABLE_ARITH for TARGET_MIX_SSE_I387 alternatives.
18267 2016-05-02  Richard Sandiford  <richard.sandiford@arm.com>
18269         * tree.c (cst_and_fits_in_hwi): Simplify.
18271 2016-05-02  Richard Sandiford  <richard.sandiford@arm.com>
18273         * tree.h (wi::to_wide): New function.
18274         * expr.c (expand_expr_real_1): Use wi::to_wide.
18275         * fold-const.c (int_const_binop_1): Likewise.
18276         (extract_muldiv_1): Likewise.
18278 2016-05-02  Richard Sandiford  <richard.sandiford@arm.com>
18280         * wide-int.h: Update offset_int and widest_int documentation.
18281         (WI_SIGNED_SHIFT_RESULT): New macro.
18282         (wi::binary_shift): Define signed_shift_result_type for
18283         shifts on offset_int- and widest_int-like types.
18284         (generic_wide_int): Support <<= and >>= if << and >> are supported.
18285         * tree.h (int_bit_position): Use shift operators instead of wi::
18286          shifts.
18287         * alias.c (adjust_offset_for_component_ref): Likewise.
18288         * expr.c (get_inner_reference): Likewise.
18289         * fold-const.c (fold_comparison): Likewise.
18290         * gimple-fold.c (fold_nonarray_ctor_reference): Likewise.
18291         * gimple-ssa-strength-reduction.c (restructure_reference): Likewise.
18292         * tree-dfa.c (get_ref_base_and_extent): Likewise.
18293         * tree-ssa-alias.c (indirect_ref_may_alias_decl_p): Likewise.
18294         (stmt_kills_ref_p): Likewise.
18295         * tree-ssa-ccp.c (bit_value_binop_1): Likewise.
18296         * tree-ssa-math-opts.c (find_bswap_or_nop_load): Likewise.
18297         * tree-ssa-sccvn.c (copy_reference_ops_from_ref): Likewise.
18298         (ao_ref_init_from_vn_reference): Likewise.
18300 2016-05-02  Richard Sandiford  <richard.sandiford@arm.com>
18302         * wide-int.h: Update offset_int and widest_int documentation.
18303         (WI_SIGNED_BINARY_PREDICATE_RESULT): New macro.
18304         (wi::binary_traits): Allow ordered comparisons between offset_int and
18305         offset_int, between widest_int and widest_int, and between either
18306         of these types and basic C types.
18307         (operator <, <=, >, >=): Define for the same combinations.
18308         * tree.h (tree_int_cst_lt): Use comparison operators instead
18309         of wi:: comparisons.
18310         (tree_int_cst_le): Likewise.
18311         * gimple-fold.c (fold_array_ctor_reference): Likewise.
18312         (fold_nonarray_ctor_reference): Likewise.
18313         * gimple-ssa-strength-reduction.c (record_increment): Likewise.
18314         * tree-affine.c (aff_comb_cannot_overlap_p): Likewise.
18315         * tree-parloops.c (try_transform_to_exit_first_loop_alt): Likewise.
18316         * tree-sra.c (completely_scalarize): Likewise.
18317         * tree-ssa-alias.c (stmt_kills_ref_p): Likewise.
18318         * tree-ssa-reassoc.c (extract_bit_test_mask): Likewise.
18319         * tree-vrp.c (extract_range_from_binary_expr_1): Likewise.
18320         (check_for_binary_op_overflow): Likewise.
18321         (search_for_addr_array): Likewise.
18322         * ubsan.c (ubsan_expand_objsize_ifn): Likewise.
18324 2016-05-02  Claudiu Zissulescu  <claziss@synopsys.com>
18326         * config/arc/arc.c (arc_preferred_simd_mode): Remove enum keyword.
18327         (arc_save_restore): Likewise.
18328         (arc_dwarf_register_span): Likewise.
18329         (arc_output_pic_addr_const): Initialize suffix variable.
18331 2016-05-02  Martin Liska  <mliska@suse.cz>
18333         * symbol-summary.h (function_summary::function_summary):
18334         Remove checking assert for all cgraph nodes.
18335         (function_summary::get): Check summary_uid.
18336         (symtab_insertion): Check summary_uid.
18338 2016-05-02  Claudiu Zissulescu  <claziss@synopsys.com>
18340         * config/arc/arc-protos.h (compact_memory_operand_p): Declare.
18341         * config/arc/arc.c (arc_output_commutative_cond_exec): Consider
18342         bmaskn instruction.
18343         (arc_dwarf_register_span): Remove enum keyword.
18344         (compact_memory_operand_p): New function.
18345         * config/arc/arc.h (reg_class): Add code density register classes.
18346         (REG_CLASS_NAMES): Likewise.
18347         (REG_CLASS_CONTENTS): Likewise.
18348         * config/arc/arc.md (*movqi_insn): Add code density instructions.
18349         (*movhi_insn, *movsi_insn, *movsf_insn): Likewise.
18350         (*extendhisi2_i, andsi3_i, cmpsi_cc_insn_mixed): Likewise.
18351         (*cmpsi_cc_c_insn, *movsi_ne): Likewise.
18352         * config/arc/constraints.md (C2p, Uts, Cm1, Cm3, Ucd): New
18353         constraints.
18354         (h, Rcd, Rsd, Rzd): New register constraints.
18355         (T): Use compact_memory_operand_p function.
18356         * config/arc/predicates.md (compact_load_memory_operand): Remove.
18358 2016-05-02  Oleg Endo  <olegendo@gcc.gnu.org>
18360         * config/sh/sh.md (*negnegt, *movtt): Remove.
18362 2016-05-02  Marek Polacek  <polacek@redhat.com>
18363             Tom de Vries  <tom@codesourcery.com>
18365         PR tree-optimization/70700
18366         * tree-ssa-structalias.c (dump_pred_graph): Fix getting varinfo for ids
18367         bigger than FIRST_REF_NODE.
18369 2016-05-02  Oleg Endo  <olegendo@gcc.gnu.org>
18371         PR target/52898
18372         * config/sh/sh.c (sh_option_override): Remove TARGET_CBRANCHDI4,
18373         TARGET_CMPEQDI_T.
18374         (prepare_cbranch_operands): Don't use scratch register.  Assume that
18375         function is used when pseudos can be created.
18376         (expand_cbranchdi4): Likewise.  Remove unused TARGET_CMPEQDI_T paths.
18377         * config/sh/sh.md (cbranchsi4): Allow only when pseudos can be created.
18378         (cbranchdi4, cbranchdi4_i): Simplify to single cbranchdi4
18379         define_expand.  Allow it only when pseudos can be created.
18380         * config/sh/sh.opt (mcbranchdi, mcmpeqdi): Delete.
18382 2016-05-01  Uros Bizjak  <ubizjak@gmail.com>
18384         * config/i386/constraints.md (BC): Only allow -1 operands.
18385         * config/i386/sse.md (mov<mode>_internal): Add (v,C) alternative.
18386         Add "enabled" attribute.  Update XI mode attribute calculation.
18387         * config/i386/i386.md (*movxi_internal_avx512f): Add (v,C) alternative.
18388         (*movoi_internal_avx): Update XI mode attribute calculation.
18389         (*movti_internal): Ditto.
18391 2016-05-01  Oleg Endo  <olegendo@gcc.gnu.org>
18393         * config/sh/sh.md (push, pop, ic_invalidate_line, cstoresi4, cstoredi4,
18394         cstoresf4, cstoredf4, fix_truncsfsi2): Remove constraints.
18396 2016-05-01  Eric Botcazou  <ebotcazou@adacore.com>
18398         * config/rs6000/rs6000.c (altivec_expand_lv_builtin): Do not use switch
18399         statement on instruction code.  Remove trailing spaces.
18400         (altivec_expand_stv_builtin): Likewise.
18402 2016-05-01  Oleg Endo  <olegendo@gcc.gnu.org>
18404         * config/sh/sh.h (TARGET_SH4): Remove and use default implementation.
18405         (TARGET_FPU_DOUBLE): Simplify.
18406         (BASE_ARG_REG, DOUBLE_TYPE_SIZE, OPTIMIZE_MODE_SWITCHING): Replace
18407         'TARGET_SH4 || TARGET_SH2A_DOUBLE' conditions with 'TARGET_FPU_DOUBLE'.
18408         * config/sh/sh.c: Replace 'TARGET_SH4 || TARGET_SH2A_DOUBLE' conditions
18409         with 'TARGET_FPU_DOUBLE'.
18410         * config/sh/sh.md: Likewise.
18412 2016-05-01  Yoshinori Sato  <ysato@users.sourceforge.jp>
18414         * config/sh/linux.h (SH_DIV_STRATEGY_DEFAULT,
18415         SH_DIV_STR_FOR_SIZE): Remove.
18416         * config/sh/netbsd-elf.h (SH_DIV_STRATEGY_DEFAULT,
18417         SH_DIV_STR_FOR_SIZE): Remove.
18419 2016-05-01  Oleg Endo  <olegendo@gcc.gnu.org>
18421         * config/sh/predicates.md (any_register_operand, zero_extend_operand,
18422         logical_reg_operand): Delete.
18423         (arith_operand, arith_reg_dest, arith_or_int_operand, cmpsi_operand,
18424         arith_reg_or_0_operand, arith_reg_or_0_or_1_operand, logical_operand,
18425         logical_and_operand, movsrc_no_disp_mem_operand): Rewrite using
18426         match_operand and match_test.
18427         (sh_const_vec, sh_1el_vec): Remove redundant checks.  Declare local
18428         variables on their first use.  Return bool values.
18429         * config/sh/sh.h (LOAD_EXTEND_OP): Update comment.
18430         * config/sh/sh.md (andsi3, iorsi3): Use arith_reg_dest for result and
18431         arith_reg_operand for input operand.  Remove empty constraints.
18432         (xorsi3): Delete.
18433         (*xorsi3_compact): Rename to xorsi3.
18434         (zero_extend<mode>si2): Use arith_reg_operand for input operand.
18435         (*zero_extend<mode>si2_disp_mem): Update comment.
18436         (mov_nop): Delete.
18438 2016-04-30  Oleg Endo  <olegendo@gcc.gnu.org>
18440         * config/sh/t-sh: Remove SH5 support.
18441         * config.gcc: Likewise.
18442         * configure: Likewise.
18444 2016-04-30  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
18446         * config/darwin.h (LINK_COMMAND_SPEC_A): Handle -fcilkplus.
18448 2016-04-30  Oleg Endo  <olegendo@gcc.gnu.org>
18450         * config/sh/sh.c (register_sh_passes, sh_option_override,
18451         sh_print_operand, prepare_move_operands,
18452         sh_can_follow_jump): Remove TARGET_SH1 checks.
18453         * config/sh/sh.h (TARGET_VARARGS_PRETEND_ARGS, VALID_REGISTER_P,
18454         PROMOTE_MODE): Likewise.
18455         * config/sh/sh.md (adddi3, addsi3, subdi3, subsi3, andsi3,
18456         movdi): Likewise.
18458 2016-04-30  Alan Modra  <amodra@gmail.com>
18460         * config/rs6000/rs6000.c (rs6000_savres_strategy): Force inline
18461         restoring when fixed_reg_p, but allow out-of-line or stmw save.
18462         Check for user regs later to avoid unnecessary looping over regs.
18463         Merge user reg check with non-saved reg check.  Don't force
18464         inline VR restore when static chain used.
18465         (rs6000_frame_related): Omit eh_frame info for user regs when
18466         saving.
18467         (fixed_regs_p): Delete.
18469 2016-04-30  Alan Modra  <amodra@gmail.com>
18471         * config/rs6000/rs6000.c (SAVRES_MULTIPLE): Replace with..
18472         (SAVE_STRATEGY, REST_STRATEGY): ..this.  Renumber and sort enum.
18473         Update all uses.
18475 2016-04-30  Alan Modra  <amodra@gmail.com>
18477         PR target/69645
18478         * config/rs6000/rs6000.c (fixed_reg_p): New function.
18479         (fixed_regs_p): Rename from global_regs_p.  Call fixed_reg_p.
18480         Update all uses.
18482 2016-04-30  Alan Modra  <amodra@gmail.com>
18484         * config/rs6000/rs6000.c (rs6000_conditional_register_usage):
18485         Remove redundant PIC_OFFSET_TABLE_REGNUM test.  Replace with
18486         flag_pic test for Darwin.
18488 2016-04-30  Alan Modra  <amodra@gmail.com>
18490         * regs.h (struct reg_info_t): Delete freq_calls_crossed and
18491         throw_calls_crossed.
18492         (REG_FREQ_CALLS_CROSSED): Delete.
18493         (REG_N_THROWING_CALLS_CROSSED): Delete.
18494         * regstat.c (regstat_bb_compute_ri): Don't calculate
18495         REG_FREQ_CALLS_CROSSED and REG_N_THROWING_CALLS_CROSSED.
18496         (dump_reg_info): Don't print call cross frequency.
18497         * ira.c (combine_and_move_insns): Don't set REG_FREQ_CALLS_CROSSED
18498         and REG_N_THROWING_CALLS_CROSSED.
18500 2016-04-30  Alan Modra  <amodra@gmail.com>
18502         * regs.h (struct reg_info_t): Delete live_length.
18503         (REG_LIVE_LENGTH): Delete macro.
18504         * regstat.c (regstat_bb_compute_ri): Delete artificial_uses,
18505         local_live, local_processed and local_live_last_luid params.
18506         Replace bb_index param with bb.  Don't set REG_LIVE_LENGTH.
18507         Formatting fixes.
18508         (regstat_compute_ri): Adjust for above.  Don't set
18509         REG_LIVE_LENGTH.
18510         (dump_reg_info): Don't print live length.
18511         * ira.c (update_equiv_regs): Replace test of REG_LIVE_LENGTH
18512         with test of setjmp_crosses.  Don't set REG_LIVE_LENGTH.
18513         Localize loop_depth var.
18515 2016-04-30  Alan Modra  <amodra@gmail.com>
18517         * ira.c (enum valid_equiv): New.
18518         (validate_equiv_mem): Return enum.
18519         (update_equiv_mem): Create replacement in more cases.
18520         (add_store_equivs): Update validate_equiv_mem call.
18522 2016-04-30  Alan Modra  <amodra@gmail.com>
18524         * ira.c (combine_and_move_insns): Rather than scanning insns,
18525         use DF infrastucture to find use and def insns.
18527 2016-04-30  Alan Modra  <amodra@gmail.com>
18529         ira.c (combine_and_move_insns): Move invariant conditions..
18530         (ira.c): ..to here.  Call combine_and_move_insns before
18531         add_store_equivs.  Call grow_reg_equivs later.  Allocate
18532         req_equiv later using max_reg_num() rather than global max_regno.
18533         (contains_replace_regs): Delete.
18534         (add_store_equivs): Remove contains_replace_regs test.
18536 2016-04-30  Alan Modra  <amodra@gmail.com>
18538         * ira.c (struct equiv_mem_data): New.
18539         (equiv_mem, equiv_mem_modified): Delete static vars.
18540         (validate_equiv_mem_from_store): Use "data" param to communicate..
18541         (validate_equiv_mem): ..from here.
18543 2016-04-30  Alan Modra  <amodra@gmail.com>
18545         * ira.c (add_store_equivs, combine_and_move_insns): New functions,
18546         split out from..
18547         (update_reg_equivs): ..here.  Move allocation and freeing of
18548         reg_equiv, and calls to grow_reg_equivs, init_alias_analysis,
18549         end_alias_analysis to..
18550         (ira): ..here.
18552 2016-04-30  Alan Modra  <amodra@gmail.com>
18554         * ira.c (pdx_subregs): Delete.
18555         (struct equivalence): Add pdx_subregs field.
18556         (set_paradoxical_subreg): Remove pdx_subregs param.  Update
18557         pdx_subregs access.
18558         (update_equiv_regs): Don't create or free pdx_subregs.  Update
18559         pdx_subregs access.
18561 2016-04-29  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
18563         * config/rs6000/altivec.h: Change definitions of vec_xl and
18564         vec_xst.
18565         * config/rs6000/rs6000-builtin.def (LD_ELEMREV_V2DF): New.
18566         (LD_ELEMREV_V2DI): New.
18567         (LD_ELEMREV_V4SF): New.
18568         (LD_ELEMREV_V4SI): New.
18569         (LD_ELEMREV_V8HI): New.
18570         (LD_ELEMREV_V16QI): New.
18571         (ST_ELEMREV_V2DF): New.
18572         (ST_ELEMREV_V2DI): New.
18573         (ST_ELEMREV_V4SF): New.
18574         (ST_ELEMREV_V4SI): New.
18575         (ST_ELEMREV_V8HI): New.
18576         (ST_ELEMREV_V16QI): New.
18577         (XL): New.
18578         (XST): New.
18579         * config/rs6000/rs6000-c.c (altivec_overloaded_builtins): Add
18580         descriptions for VSX_BUILTIN_VEC_XL and VSX_BUILTIN_VEC_XST.
18581         * config/rs6000/rs6000.c (rs6000_builtin_mask_calculate): Map from
18582         TARGET_P9_VECTOR to RS6000_BTM_P9_VECTOR.
18583         (altivec_expand_builtin): Add handling for
18584         VSX_BUILTIN_ST_ELEMREV_<MODE> and VSX_BUILTIN_LD_ELEMREV_<MODE>.
18585         (rs6000_invalid_builtin): Add error-checking for
18586         RS6000_BTM_P9_VECTOR.
18587         (altivec_init_builtins): Define builtins used to implement vec_xl
18588         and vec_xst.
18589         (rs6000_builtin_mask_names): Define power9-vector.
18590         * config/rs6000/rs6000.h (MASK_P9_VECTOR): Define.
18591         (RS6000_BTM_P9_VECTOR): Define.
18592         (RS6000_BTM_COMMON): Include RS6000_BTM_P9_VECTOR.
18593         * config/rs6000/vsx.md (vsx_ld_elemrev_v2di): New define_insn.
18594         (vsx_ld_elemrev_v2df): Likewise.
18595         (vsx_ld_elemrev_v4sf): Likewise.
18596         (vsx_ld_elemrev_v4si): Likewise.
18597         (vsx_ld_elemrev_v8hi): Likewise.
18598         (vsx_ld_elemrev_v16qi): Likewise.
18599         (vsx_st_elemrev_v2df): Likewise.
18600         (vsx_st_elemrev_v2di): Likewise.
18601         (vsx_st_elemrev_v4sf): Likewise.
18602         (vsx_st_elemrev_v4si): Likewise.
18603         (vsx_st_elemrev_v8hi): Likewise.
18604         (vsx_st_elemrev_v16qi): Likewise.
18605         * doc/extend.texi: Add prototypes for vec_xl and vec_xst.  Correct
18606         grammar.
18608 2016-04-29  Patrick Palka  <ppalka@gcc.gnu.org>
18610         * tree-ssa-threadedge.c (simplify_control_stmt_condition): Split
18611         out into ...
18612         (simplify_control_stmt_condition_1): ... here.  Recurse into
18613         BIT_AND_EXPRs and BIT_IOR_EXPRs.
18615 2016-04-29  David Edelsohn  <dje.gcc@gmail.com>
18617         PR target/69810
18618         * config/rs6000/rs6000.md (EXTQI): Don't allow extension to HImode.
18619         (zero_extendqi<mode>2_dot): Revert earlier conversion from
18620         define_insn_and_split to define_insn.
18621         (zero_extendqi<mode>2_dot2): Same.
18622         (extendqi<mode>2_dot): Same.
18623         (extendqi<mode>2_dot2): Same.
18625 2016-04-29  Uros Bizjak  <ubizjak@gmail.com>
18627         * config/i386/i386.md (unspec): Add UNSPEC_PROBE_STACK.
18628         (probe_stack): New expander.
18629         (probe_stack_<mode>): New insn pattern.
18631 2016-04-29  Uros Bizjak  <ubizjak@gmail.com>
18633         * config/i386/i386.md
18634         (operations with memory inputs setting flags peephole2):
18635         Remove uneeded REG_P checks.  Cleanup pattern generation.
18637 2016-04-29  Ilya Enkovich  <ilya.enkovich@intel.com>
18639         * tree-vect-loop.c (vect_transform_loop): Fix
18640         nb_iterations_upper_bound computation for vectorized loop.
18642 2016-04-29  Marek Polacek  <polacek@redhat.com>
18643             Jakub Jelinek  <jakub@redhat.com>
18645         PR sanitizer/70342
18646         * fold-const.c (tree_single_nonzero_warnv_p): For TARGET_EXPR, use
18647         TARGET_EXPR_SLOT as a base.
18649 2016-04-29  Andrew Burgess  <andrew.burgess@embecosm.com>
18651         * config/arc/arc.md (*loadqi_update): Replace use of 'rI' constraint
18652         with 'rCm2' constraints to limit possible immediate size.
18653         (*load_zeroextendqisi_update): Likewise.
18654         (*load_signextendqisi_update): Likewise.
18655         (*loadhi_update): Likewise.
18656         (*load_zeroextendhisi_update): Likewise.
18657         (*load_signextendhisi_update): Likewise.
18658         (*loadsi_update): Likewise.
18659         (*loadsf_update): Likewise.
18661 2016-04-29  Uros Bizjak  <ubizjak@gmail.com>
18663         * config/i386/predicates.md (constm1_operand): Fix comparison.
18665 2016-04-29  Claudiu Zissulescu  <claziss@synopsys.com>
18667         * testsuite/gcc.target/arc/ieee_eq.c: New test.
18669 2016-04-29  Oleg Endo  <olegendo@gcc.gnu.org>
18671         * common/config/sh/sh-common.c (sh_option_optimization_table): Remove
18672         remaining SH5 related settings.
18673         * config/sh/sh-protos.h (shmedia_cleanup_truncate,
18674         shmedia_prepare_call_address): Delete.
18675         * config/sh/sh.c (sh_print_operand, output_stack_adjust,
18676         DWARF_CIE_DATA_ALIGNMENT, LOCAL_ALIGNMENT): Update comments.
18677         * config/sh/sh.h (SUBTARGET_ASM_RELAX_SPEC,
18678         UNSUPPORTED_SH2A): Remove m5 checks.
18679         (sh_divide_strategy_e): Remove SH5 division strategies.
18680         (TARGET_PTRMEMFUNC_VBIT_LOCATION): Remove and use default.
18681         * config/sh/sh.md (divsf3): Reinstate define_expand pattern.
18683 2016-04-29  Dominik Vogt  <vogt@linux.vnet.ibm.com>
18685         * config/s390/s390.c (s390_rtx_costs): Update documentation.
18687 2016-04-29  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
18689         * config/s390/2964.md ("z13_unit_fxu", "z13_0"): Remove lder.
18690         * config/s390/s390.md ("movsi_larl", "*movsi_esa", "mov<mode>"):
18691         Change lder to ldr.
18692         * config/s390/vector.md ("mov<mode>"): Likewise.
18694 2016-04-29  Ulrich Weigand  <uweigand@de.ibm.com>
18696         * config/s390/constraints.md ("U", "W"): Invoke
18697         s390_mem_constraint with "ZR" and "ZT".
18698         * config/s390/s390.c (s390_check_qrst_address): Reject invalid
18699         addresses when using LRA.  Accept also short displacements for S
18700         and T constraints.  Do not check for long displacement target for
18701         S and T constraints.
18702         (s390_mem_constraint): Remove handling of U and W constraints.
18703         * config/s390/s390.md (various patterns): Remove the short
18704         displacement constraints (Q and R) if a long displacement
18705         constraint is present.  Add longdisp as required CPU capability.
18706         * config/s390/vector.md: Likewise.
18707         * config/s390/vx-builtins.md: Likewise.
18709 2016-04-29  Senthil Kumar Selvaraj  <senthil_kumar.selvaraj@atmel.com>
18711         PR target/60040
18712         * reload1.c (reload): Call finish_spills before
18713         restarting reload loop. Skip select_reload_regs
18714         if update_eliminables_and_spill returns true.
18716 2016-04-29  Claudiu Zissulescu  <claziss@synopsys.com>
18718         * config/arc/arc.h (UNSIGNED_INT12, UNSIGNED_INT16): Define.
18719         * config/arc/arc.md (umulhisi3): Use arc_short_operand predicate.
18720         (umulhisi3_imm): Update predicates and constraint letters.
18721         (umulhisi3_reg): Declare instruction as commutative.
18722         * config/arc/constraints.md (J12, J16): New constraints.
18723         * config/arc/predicates.md (short_unsigned_const_operand): New
18724         predicate.
18725         (arc_short_operand): Likewise.
18726         * testsuite/gcc.target/arc/umulsihi3_z.c: New file.
18728 2016-04-29  Richard Biener  <rguenther@suse.de>
18730         PR tree-optimization/13962
18731         PR tree-optimization/65686
18732         * tree-ssa-alias.h (ptrs_compare_unequal): Declare.
18733         * tree-ssa-alias.c (ptrs_compare_unequal): New function
18734         using PTA to compare pointers.
18735         * match.pd: Add pattern for pointer equality compare simplification
18736         using ptrs_compare_unequal.
18738 2016-04-29  Richard Biener  <rguenther@suse.de>
18740         * stor-layout.c (layout_type): Do not build a pointer-to-element
18741         type for arrays.
18743 2016-04-29  Uros Bizjak  <ubizjak@gmail.com>
18745         * config/i386/i386.md (Load+RegOp to Mov+MemOp peephole2):
18746         Use SWI mode iterator.  Use general_reg_operand predicate.
18747         (Load+RegOp to Mov+MemOp peephole2 with vector regs): Split
18748         peephole to MMX and SSE part.  Use mmx_reg_operand and sse_reg_operand
18749         predicates.
18751 2016-04-29  Jakub Jelinek  <jakub@redhat.com>
18753         PR middle-end/70843
18754         * fold-const.c (operand_equal_p): Don't verify hash value equality
18755         if arg0 == arg1.
18756         * tree.c (inchash::add_expr): Handle STATEMENT_LIST.  Ignore BLOCK
18757         and OMP_CLAUSE.
18759 2016-04-28  Jakub Jelinek  <jakub@redhat.com>
18761         PR target/70858
18762         * config/i386/i386.c (bdesc_special_args): Add | OPTION_MASK_ISA_64BIT
18763         to __builtin_ia32_lwpval64 and __builtin_ia32_lwpins64.
18764         (bdesc_args): Add | OPTION_MASK_ISA_64BIT to __builtin_ia32_bextr_u64,
18765         __builtin_ia32_bextri_u64, __builtin_ia32_bzhi_di,
18766         __builtin_ia32_pdep_di and __builtin_ia32_pext_di.
18768 2016-04-28  Segher Boessenkool  <segher@kernel.crashing.org>
18770         * config/rs6000/rs6000.c (compute_save_world_info): Rename info_ptr
18771         to info.  Don't initialize separate fields to 0.  Clean up
18772         formatting a bit.
18774 2016-04-28  Uros Bizjak  <ubizjak@gmail.com>
18776         * config/i386/i386.md (peephole2s for operations with memory inputs):
18777         Use SWI mode iterator.
18778         (peephole2s for operations with memory outputs): Ditto.
18779         Do not check for stack checking probe.
18781         (probe_stack): Remove expander.
18783 2016-04-28  Joern Rennecke  <joern.rennecke@embecosm.com>
18784             Andrew Burgess  <andrew.burgess@embecosm.com>
18786         * config/arc/arc.c (arc_print_operand): Print integer 'H' / 'L'
18787         operands as 32-bits.
18789 2016-04-28  Jason Merrill  <jason@redhat.com>
18791         * gdbinit.in: Skip line-map.h.
18793 2016-04-28  Joern Rennecke  <joern.rennecke@embecosm.com>
18794             Andrew Burgess  <andrew.burgess@embecosm.com>
18796         * config/arc/arc.c (arc_conditional_register_usage): Take
18797         TARGET_RRQ_CLASS into account.
18798         (arc_print_operand): Support printing 'p' and 's' operands.
18799         * config/arc/arc.h (TARGET_NPS_BITOPS_DEFAULT): Provide default
18800         as 0.
18801         (TARGET_RRQ_CLASS): Define.
18802         (IS_POWEROF2_OR_0_P): Define.
18803         * config/arc/arc.md (*movsi_insn): Add w/Clo, w/Chi, and w/Cbi
18804         alternatives.
18805         (*tst_movb): New define_insn.
18806         (*tst): Avoid recognition if it could prevent '*tst_movb'
18807         combination; replace c/CnL with c/Chs alternative.
18808         (*tst_bitfield_tst): New define_insn.
18809         (*tst_bitfield_asr): New define_insn.
18810         (*tst_bitfield): New define_insn.
18811         (andsi3_i): Add Rrq variant.
18812         (extzv): New define_expand.
18813         (insv): New define_expand.
18814         (*insv_i): New define_insn.
18815         (*movb): New define_insn.
18816         (*movb_signed): New define_insn.
18817         (*movb_high): New define_insn.
18818         (*movb_high_signed): New define_insn.
18819         (*movb_high_signed + 1): New define_split pattern.
18820         (*mrgb): New define_insn.
18821         (*mrgb + 1): New define_peephole2 pattern.
18822         (*mrgb + 2): New define_peephole2 pattern.
18823         * config/arc/arc.opt (mbitops): New option for nps400, uses
18824         TARGET_NPS_BITOPS_DEFAULT.
18825         * config/arc/constraints.md (q): Make register class conditional.
18826         (Rrq): New register constraint.
18827         (Chs): New constraint.
18828         (Clo): New constraint.
18829         (Chi): New constraint.
18830         (Cbf): New constraint.
18831         (Cbn): New constraint.
18832         (C18): New constraint.
18833         (Cbi): New constraint.
18835 2016-04-28  Segher Boessenkool  <segher@kernel.crashing.org>
18837         * cfganal.c (bitmap_intersection_of_succs): Delete assert checking
18838         dst->popcount.
18839         (bitmap_intersection_of_preds): Ditto.
18840         (bitmap_union_of_succs): Ditto.
18841         (bitmap_union_of_preds): Ditto.
18842         * sbitmap.c (do_popcount): Delete.
18843         (BITMAP_DEBUGGING): Delete.
18844         (sbitmap_verify_popcount): Delete.
18845         (sbitmap_alloc): Don't initialize the popcount field.
18846         (sbitmap_alloc_with_popcount): Delete.
18847         (sbitmap_resize): Don't resize the popcount array.
18848         (sbitmap_vector_alloc): Don't initialize the popcount field.
18849         (bitmap_copy): Don't copy the popcount array.
18850         (bitmap_clear): Don't clear the popcount array.
18851         (bitmap_clear): Delete the popcount array handling.
18852         (bitmap_ior_and_compl): Delete the popcount assert.
18853         (bitmap_not): Ditto.
18854         (bitmap_and_compl): Ditto.
18855         (bitmap_and): Delete the popcount array handling.
18856         (bitmap_xor): Ditto.
18857         (bitmap_ior): Ditto.
18858         (bitmap_or_and): Delete the popcount assert.
18859         (bitmap_and_or): Ditto.
18860         (popcount_table): Delete.
18861         (sbitmap_elt_popcount): Delete.
18862         * sbitmap.h (simple_bitmap_def): Delete the popcount field.
18863         (bitmap_set_bit): Delete the popcount assert.
18864         (bitmap_clear_bit): Ditto.
18865         (sbitmap_free): Don't free the popcount array.
18866         (sbitmap_alloc_with_popcount): Delete declaration.
18867         (sbitmap_popcount): Ditto.
18869 2016-04-28  Joern Rennecke  <joern.rennecke@embecosm.com>
18870             Andrew Burgess  <andrew.burgess@embecosm.com>
18872         * config/arc/arc.h (SYMBOL_FLAG_CMEM): Define.
18873         (TARGET_NPS_CMEM_DEFAULT): Provide default definition.
18874         * config/arc/arc.c (arc_address_cost): Return 0 for cmem_address.
18875         (arc_encode_section_info): Set SYMBOL_FLAG_CMEM where indicated.
18876         * config/arc/arc.opt (mcmem): New option.
18877         * config/arc/arc.md (*extendqihi2_i): Add r/Uex alternative,
18878         supply length for r/m alternative.
18879         (*extendqisi2_ac): Likewise.
18880         (*extendhisi2_i): Add r/Uex alternative, supply length for r/m and
18881         r/Uex alternative.
18882         (movqi_insn): Add r/Ucm and Ucm/?Rac alternatives.
18883         (movhi_insn): Likewise.
18884         (movsi_insn): Add r/Ucm,Ucm/w alternatives.
18885         (*zero_extendqihi2_i): Add r/Ucm alternative.
18886         (*zero_extendqisi2_ac): Likewise.
18887         (*zero_extendhisi2_i): Likewise.
18888         * config/arc/constraints.md (Uex): New memory constraint.
18889         (Ucm): New define_constraint.
18890         * config/arc/predicates.md (long_immediate_loadstore_operand):
18891         Return 0 for MEM with cmem_address address.
18892         (cmem_address_0): New predicates.
18893         (cmem_address_1): Likewise.
18894         (cmem_address_2): Likewise.
18895         (cmem_address): Likewise.
18897 2016-04-28  Segher Boessenkool  <segher@kernel.crashing.org>
18899         * config/rs6000/rs6000.c (machine_function): Rename
18900         insn_chain_scanned_p to spe_insn_chain_scanned_p.
18901         (rs6000_stack_info): Adjust.
18903 2016-04-28  Joern Rennecke  <joern.rennecke@embecosm.com>
18904             Andrew Burgess  <andrew.burgess@embecosm.com>
18906         * config/arc/constraints.md (Usd): Convert to define_constraint.
18907         (Us<): Likewise.
18908         (Us>): Likewise.
18910 2016-04-28  Jakub Jelinek  <jakub@redhat.com>
18912         PR target/70821
18913         * config/i386/sync.md (define_peephole2 *atomic_fetch_add_cmp<mode>):
18914         Add new peephole2 where the first insn is *mov<mode>_or instead of
18915         *mov<mode>_internal.
18917 2016-04-28  Segher Boesssenkool  <segher@kernel.crashing.org>
18919         * tracer.c (bb_seen): Make static.
18921 2016-04-28  Andrew Burgess  <andrew.burgess@embecosm.com>
18923         * common/config/arc/arc-common.c (arc_handle_option): Add NPS400
18924         support, setup defaults.
18925         * config/arc/arc-opts.h (enum processor_type): Add NPS400.
18926         * config/arc/arc.c (arc_init): Add NPS400 support.
18927         * config/arc/arc.h (CPP_SPEC): Add NPS400 defines.
18928         (TARGET_ARC700): NPS400 is also an ARC700.
18929         * config/arc/arc.opt: Add NPS400 options to -mcpu=.
18931 2016-04-28  Segher Boessenkool  <segher@kernel.crashing.org>
18933         PR target/70668
18934         * config/nds32/nds32.md (casesi): Don't access the operands array
18935         out of bounds.
18937 2016-04-28  Uros Bizjak  <ubizjak@gmail.com>
18939         * config/i386/i386.md (zeroing peephole2): Use general_reg_operand.
18940         (or $-1,reg peephole2): Ditto.
18941         (strict_low_part zeroing peephole2): Use SWI12 mode iterator.
18943 2016-04-28  Markus Trippelsdorf  <markus@trippelsdorf.de>
18945         * doc/extend.texi (Common Function Attributes) [optimize]:
18946         Discourage use of the optimize attribute.
18948 2016-04-28  Bill Seurer  <seurer@linux.vnet.ibm.com>
18950         * config/rs6000/rs6000-builtin.def (vec_adde): Change vec_adde to a
18951         special case builtin.
18952         * config/rs6000/rs6000-c.c (altivec_overloaded_builtins): Remove
18953         ALTIVEC_BUILTIN_VEC_ADDE.
18954         * config/rs6000/rs6000-c.c (altivec_resolve_overloaded_builtin): Add
18955         support for ALTIVEC_BUILTIN_VEC_ADDE.
18956         * config/rs6000/rs6000.c (altivec_init_builtins): Add definition
18957         for __builtin_vec_adde.
18959 2016-04-28  Jakub Jelinek  <jakub@redhat.com>
18961         * config/i386/i386.md (sse4_1_round<mode>2): Add avx512f alternative.
18962         * config/i386/sse.md (sse4_1_round<ssescalarmodesuffix>): Likewise.
18964 2016-04-28  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
18966         PR testsuite/70595
18967         * doc/sourcebuild.texi (Effective-Target Keywords, Other
18968         attributes): Document cilkplus_runtime.
18970 2016-04-28  Martin Jambor  <mjambor@suse.cz>
18972         * tree-cfg.c (verify_expr): Verify that local declarations belong to
18973         this function.  Call verify_expr on MEM_REFs and bases of other
18974         handled_components.
18976 2016-04-28  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
18978         * internal-fn.c (expand_arith_overflow): Convert preprocessor check
18979         for WORD_REGISTER_OPERATIONS to runtime check.
18981 2016-04-28  Claudiu Zissulescu  <claziss@synopsys.com>
18983         * config/arc/arc.h (ASM_SPEC): Pass mfpuda to assembler.
18985 2016-04-28  Claudiu Zissulescu  <claziss@synopsys.com>
18987         * config/arc/arc.c (arc_process_double_reg_moves): Fix for
18988         big-endian compilation.
18989         * config/arc/arc.md (addf3): Likewise.
18990         (subdf3): Likewise.
18991         (muldf3): Likewise.
18993 2016-04-28  Richard Biener  <rguenther@suse.de>
18995         PR tree-optimization/70840
18996         * match.pd: powi(-x, y) and powi(|x|,y) -> powi(x,y) if y is even;
18997         Fix pow(copysign(x, y), z) -> pow(x, z) and add powi variant;
18998         Mark x * pow(x,c) -> pow(x,c+1) commutative.
18999         Add powi(x,y) * powi(z,y) -> powi(x*z,y).
19001 2015-04-28  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
19003         * config/aarch64/aarch64.h (WORD_REGISTER_OPERATIONS): Define to 0
19004         and explain why in a comment.
19006 2016-04-28  Claudiu Zissulescu  <claziss@synopsys.com>
19008         * config/arc/arc.md (cpu_facility): Add fpx variant.
19009         (subdf3): Prohibit use reverse sub when assist operations option
19010         is enabled.
19011         * config/arc/fpx.md (subdf3_insn, *dsubh_peep2_insn): Allow drsub
19012         instructions only when FPX is enabled.
19013         * testsuite/gcc.target/arc/trsub.c: New test.
19015 2016-04-28  Uros Bizjak  <ubizjak@gmail.com>
19017         * config/i386/i386.md (*fop_<mode>_1_mixed): Do not check for
19018         mult_operator when calculating "type" attribute.
19019         (*fop_<mode>_1_i387): Ditto.
19020         (*fop_xf_1_i387): Ditto.
19021         (x87 stack loads peephole2): Add "reg = op (mem, reg)" peephole2.
19022         Use std::swap to swap operands.  Use RTL expressions to generate
19023         converted pattern.
19025 2016-04-28  Claudiu Zissulescu  <claziss@synopsys.com>
19026             Joern Rennecke  <joern.rennecke@embecosm.com>
19028         * config/arc/arc-protos.h (arc_legitimize_pic_address): Remove
19029         declaration.
19030         (emit_pic_move): Remove.
19031         (arc_eh_uses, insn_is_tls_gd_dispatch): Declare.
19032         * config/arc/arc.c (emit_pic_move): Removed.
19033         (TARGET_HAVE_TLS): Define.
19034         (arc_conditional_register_usage): Test for arc_tp_regno.
19035         (arc_print_operand, arc_print_operand_address): Handle TLS
19036         unspecs.
19037         (arc_needs_pcl_p): New function.
19038         (arc_legitimate_pc_offset_p): Use arc_needs_pcl_p.
19039         (arc_legitimate_pic_addr_p): Handle TLS unspecs.
19040         (arc_raw_symbolic_reference_mentioned_p): Likewise.
19041         (arc_get_tp, arc_emit_call_tls_get_addr): New function.
19042         (arc_legitimize_tls_address): Likewise.
19043         (DTPOFF_ZERO_SYM): Define.
19044         (arc_legitimize_pic_address): Make it static, handle TLS cases.
19045         (arc_output_pic_addr_const): Print TLS unspecs.
19046         (prepare_pic_move): New function, replaces emit_pic_move.
19047         (arc_legitimate_constant_p): Handle TLS unspecs.
19048         (arc_legitimate_address_p): Likewise.
19049         (arc_rewrite_small_data_p): Use assert for TLS constants.
19050         (prepare_move_operands): Use prepare_pic_move.
19051         (arc_legitimize_address): Legitimize tls addresses.
19052         (arc_epilogue_uses): Check for arc_tp_regno.
19053         (arc_eh_uses, insn_is_tls_gd_dispatch): New function.
19054         * config/arc/arc.h [DEFAULT_LIBC != LIBC_UCLIBC] (EXTRA_SPECS):
19055         Define.
19056         [DEFAULT_LIBC != LIBC_UCLIBC] (ARC_TLS_EXTRA_START_SPEC):
19057         Likewise.
19058         [DEFAULT_LIBC != LIBC_UCLIBC] (STARTFILE_SPEC): Add
19059         %(arc_tls_extra_start_spec).
19060         (TARGET_CPU_CPP_BUILTINS): Define __ARC_TLS_REGNO__.
19061         (REGNO_OK_FOR_BASE_P): Check for arc_tp_regno.
19062         (EH_USES): Define.
19063         (INSN_REFERENCES_ARE_DELAYED): Use insn_is_tls_gd_dispatch.
19064         * config/arc/arc.md (UNSPEC_TLS_GD, UNSPEC_TLS_LD, UNSPEC_TLS_IE)
19065         (UNSPEC_TLS_OFF): Add.
19066         (R10_REG): Define.
19067         (tls_load_tp_soft, tls_gd_load, tls_gd_get_addr, tls_gd_dispatch)
19068         (get_thread_pointersi): New patterns.
19069         * config/arc/arc.opt (mtp-regno): New option.
19070         * config/arc/predicates.md (move_src_operand): Handle TLS symbols.
19071         (move_dest_operand): Likewise.
19072         * configure: Regenerate.
19073         * configure.ac: Add arc*-*-* case to test for tls.
19074         * doc/invoke.texi (ARC options): Document mtp-regno.
19076 2016-04-28  Claudiu Zissulescu  <claziss@synopsys.com>
19078         * config/arc/arc.c (arc_vector_mode_supported_p): Add support for
19079         the new ARC HS SIMD instructions.
19080         (arc_preferred_simd_mode): New function.
19081         (arc_autovectorize_vector_sizes): Likewise.
19082         (TARGET_VECTORIZE_PREFERRED_SIMD_MODE)
19083         (TARGET_VECTORIZE_AUTOVECTORIZE_VECTOR_SIZES): Define.
19084         (arc_init_reg_tables): Accept new ARC HS SIMD modes.
19085         (arc_init_builtins): Add new SIMD builtin types.
19086         (arc_split_move): Handle 64 bit vector moves.
19087         * config/arc/arc.h (TARGET_PLUS_DMPY, TARGET_PLUS_MACD)
19088         (TARGET_PLUS_QMACW): Define.
19089         * config/arc/builtins.def (QMACH, QMACHU, QMPYH, QMPYHU, DMACH)
19090         (DMACHU, DMPYH, DMPYHU, DMACWH, DMACWHU, VMAC2H, VMAC2HU, VMPY2H)
19091         (VMPY2HU, VADDSUB2H, VSUBADD2H, VADDSUB, VSUBADD, VADDSUB4H)
19092         (VSUBADD4H): New builtins.
19093         * config/arc/simdext.md: Add new ARC HS SIMD instructions.
19094         * testsuite/gcc.target/arc/builtin_simdarc.c: New file.
19096 2016-04-28  Eduard Sanou  <dhole@openmailbox.org>
19097             Matthias Klose  <doko@debian.org>
19099         * doc/cppenv.texi: Document SOURCE_DATE_EPOCH environment variable.
19101 2016-04-28  Richard Biener  <rguenther@suse.de>
19103         PR middle-end/70777
19104         * fold-const.c (fold_binary_loc): Remove x*x to pow(x,2.0)
19105         canonicalization.
19107 2016-04-28  Oleg Endo  <olegendo@gcc.gnu.org>
19109         * common/config/sh/sh-common.c: Remove SH5 support.
19110         * config/sh/constraints.md: Likewise.
19111         * config/sh/config/sh/elf.h: Likewise.
19112         * config/sh/linux.h: Likewise.
19113         * config/sh/netbsd-elf.h: Likewise.
19114         * config/sh/predicates.md: Likewise.
19115         * config/sh/sh-c.c: Likewise.
19116         * config/sh/sh-protos.h: Likewise.
19117         * config/sh/sh.c: Likewise.
19118         * config/sh/sh.h: Likewise.
19119         * config/sh/sh.md: Likewise.
19120         * config/sh/sh.opt: Likewise.
19121         * config/sh/sync.md: Likewise.
19122         * config/sh/sh64.h: Delete.
19123         * config/sh/shmedia.h: Likewise.
19124         * config/sh/shmedia.md: Likewise.
19125         * config/sh/sshmedia.h: Likewise.
19126         * config/sh/t-netbsd-sh5-64: Likewise.
19127         * config/sh/t-sh64: Likewise.
19128         * config/sh/ushmedia.h: Likewise.
19130 2016-04-28  Uros Bizjak  <ubizjak@gmail.com>
19132         * config/i386/i386.md (sign_extend to memory peephole2s): Use
19133         general_reg_operand instead of register_operand predicate.
19135 2016-04-27  Prathamesh Kulkarni  <prathamesh.kulkarni@linaro.org>
19137         * params.def (MIN_PARTITION_SIZE): Set default value to 10000.
19139 2016-04-27  Marc Glisse  <marc.glisse@inria.fr>
19141         * match.pd (A - B > A, A + B < A): New transformations.
19143 2016-04-27  Patrick Palka  <ppalka@gcc.gnu.org>
19145         * genattrtab.c (write_test_expr): New parameter EMIT_PARENS
19146         which defaults to true.  Emit an outer pair of parentheses only if
19147         EMIT_PARENS.  When continuing a chain of && or || (or & or |),
19148         don't emit parentheses for the right-hand operand.
19150 2016-04-27  Jeff Law  <law@redhat.com>
19152         * tree-ssa-dom.c (record_temporary_equivalences): Fix typo in comment.
19154 2016-04-27  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
19156         * config/rs6000/altivec.md (altivec_lvx_<mode>): Remove.
19157         (altivec_lvx_<mode>_internal): Document.
19158         (altivec_lvx_<mode>_2op): New define_insn.
19159         (altivec_lvx_<mode>_1op): Likewise.
19160         (altivec_lvx_<mode>_2op_si): Likewise.
19161         (altivec_lvx_<mode>_1op_si): Likewise.
19162         (altivec_stvx_<mode>): Remove.
19163         (altivec_stvx_<mode>_internal): Document.
19164         (altivec_stvx_<mode>_2op): New define_insn.
19165         (altivec_stvx_<mode>_1op): Likewise.
19166         (altivec_stvx_<mode>_2op_si): Likewise.
19167         (altivec_stvx_<mode>_1op_si): Likewise.
19168         * config/rs6000/rs6000-c.c (altivec_resolve_overloaded_builtin):
19169         Expand vec_ld and vec_st during parsing.
19170         * config/rs6000/rs6000.c (altivec_expand_lvx_be): Commentary
19171         changes.
19172         (altivec_expand_stvx_be): Likewise.
19173         (altivec_expand_lv_builtin): Expand lvx built-ins to expose the
19174         address-masking behavior in RTL.
19175         (altivec_expand_stv_builtin): Expand stvx built-ins to expose the
19176         address-masking behavior in RTL.
19177         (altivec_expand_builtin): Change builtin code arguments for calls
19178         to altivec_expand_stv_builtin and altivec_expand_lv_builtin.
19179         (insn_is_swappable_p): Avoid incorrect swap optimization in the
19180         presence of lvx/stvx patterns.
19181         (alignment_with_canonical_addr): New function.
19182         (alignment_mask): Likewise.
19183         (find_alignment_op): Likewise.
19184         (recombine_lvx_pattern): Likewise.
19185         (recombine_stvx_pattern): Likewise.
19186         (recombine_lvx_stvx_patterns): Likewise.
19187         (rs6000_analyze_swaps): Perform a pre-pass to recognize lvx and
19188         stvx patterns from expand.
19189         * config/rs6000/vector.md (vector_altivec_load_<mode>): Use new
19190         expansions.
19191         (vector_altivec_store_<mode>): Likewise.
19193 2016-04-26  Evandro Menezes  <e.menezes@samsung.com>
19195         * config/aarch64/aarch64.md
19196         (*movhf_aarch64): Add "movi %0, #0" to zero up register and
19197         remove the "fp" attributes.
19198         (*movsf_aarch64): Add "movi %0, #0" to zero up register and
19199         add the "simd" attributes.
19200         (*movdf_aarch64): Likewise.
19201         (*movtf_aarch64): Remove the "fp" attributes.
19202         * testsuite/gcc.target/aarch64/fmovf-zero-reg.c: Update accordingly.
19203         * testsuite/gcc.target/aarch64/fmovd-zero-reg.c: Likewise.
19205 2016-04-27  David Malcolm  <dmalcolm@redhat.com>
19207         * emit-rtl.c (maybe_set_first_label_num): Strengthen param from
19208         rtx to rtx_code_label *.
19209         * rtl.h (maybe_set_first_label_num): Likewise.
19211 2016-04-27  David Malcolm  <dmalcolm@redhat.com>
19213         * df-core.c (df_add_problem): Make the problem param be const.
19214         (df_remove_problem): Make local "problem" be const.
19215         * df-problems.c (problem_RD): Make const.
19216         (problem_LR): Likewise.
19217         (problem_LIVE): Likewise.
19218         (problem_MIR): Likewise.
19219         (problem_CHAIN): Likewise.
19220         (problem_WORD_LR): Likewise.
19221         (problem_NOTE): Likewise.
19222         (problem_MD): Likewise.
19223         * df-scan.c (problem_SCAN): Likewise.
19224         * df.h (struct df_problem): Make field "dependent_problem" be
19225         const.
19226         (struct dataflow): Likewise for field "problem".
19227         (df_add_problem): Make param const.
19229 2016-04-27  Uros Bizjak  <ubizjak@gmail.com>
19231         * config/i386/i386.c (ix86_spill_class): Enable for TARGET_SSE2 when
19232         inter-unit moves to/from vector registers are enabled.  Do not disable
19233         for TARGET_MMX.
19235 2016-04-27  David Malcolm  <dmalcolm@redhat.com>
19237         * df.h (DF_SCAN, DF_LR, DF_LIVE, DF_RD, DF_CHAIN, DF_WORD_LR,
19238         DF_NOTE, DF_MD, DF_MIR, DF_LAST_PROBLEM_PLUS1): Convert from
19239         #define to...
19240         (enum df_problem_id): ...this new enum.
19241         (struct df_problem): Convert field "id" from "int" to
19242         enum df_problem_id.
19244 2016-04-27  David Malcolm  <dmalcolm@redhat.com>
19246         * rtl.def: Update comment for "things in the instruction chain" to
19247         reflect the removal of the leading "i" field for INSN_UID in
19248         r210360.  Fix bogus apostrophe.
19250 2016-04-27  Uros Bizjak  <ubizjak@gmail.com>
19252         * config/i386/i386.md
19253         (lea arith with mem operand + setcc peephole2): Set operator mode.
19255 2016-04-27  H.J. Lu  <hongjiu.lu@intel.com>
19257         PR target/70155
19258         * config/i386/i386.c (scalar_to_vector_candidate_p): Renamed to ...
19259         (dimode_scalar_to_vector_candidate_p): This.
19260         (timode_scalar_to_vector_candidate_p): New function.
19261         (scalar_to_vector_candidate_p): Likewise.
19262         (timode_check_non_convertible_regs): Likewise.
19263         (timode_remove_non_convertible_regs): Likewise.
19264         (remove_non_convertible_regs): Likewise.
19265         (remove_non_convertible_regs): Renamed to ...
19266         (dimode_remove_non_convertible_regs): This.
19267         (scalar_chain::~scalar_chain): Make it virtual.
19268         (scalar_chain::compute_convert_gain): Make it pure virtual.
19269         (scalar_chain::mark_dual_mode_def): Likewise.
19270         (scalar_chain::convert_insn): Likewise.
19271         (scalar_chain::convert_registers): Likewise.
19272         (scalar_chain::add_to_queue): Make it protected.
19273         (scalar_chain::emit_conversion_insns): Likewise.
19274         (scalar_chain::replace_with_subreg): Likewise.
19275         (scalar_chain::replace_with_subreg_in_insn): Likewise.
19276         (scalar_chain::convert_op): Likewise.
19277         (scalar_chain::convert_reg): Likewise.
19278         (scalar_chain::make_vector_copies): Likewise.
19279         (scalar_chain::convert_registers): New pure virtual function.
19280         (class dimode_scalar_chain): New class.
19281         (class timode_scalar_chain): Likewise.
19282         (scalar_chain::mark_dual_mode_def): Renamed to ...
19283         (dimode_scalar_chain::mark_dual_mode_def): This.
19284         (timode_scalar_chain::mark_dual_mode_def): New function.
19285         (timode_scalar_chain::convert_insn): Likewise.
19286         (dimode_scalar_chain::convert_registers): Likewise.
19287         (scalar_chain::compute_convert_gain): Renamed to ...
19288         (dimode_scalar_chain::compute_convert_gain): This.
19289         (scalar_chain::replace_with_subreg): Renamed to ...
19290         (dimode_scalar_chain::replace_with_subreg): This.
19291         (scalar_chain::replace_with_subreg_in_insn): Renamed to ...
19292         (dimode_scalar_chain::replace_with_subreg_in_insn): This.
19293         (scalar_chain::make_vector_copies): Renamed to ...
19294         (dimode_scalar_chain::make_vector_copies): This.
19295         (scalar_chain::convert_reg): Renamed to ...
19296         (dimode_scalar_chain::convert_reg ): This.
19297         (scalar_chain::convert_op): Renamed to ...
19298         (dimode_scalar_chain::convert_op): This.
19299         (scalar_chain::convert_insn): Renamed to ...
19300         (dimode_scalar_chain::convert_insn): This.
19301         (scalar_chain::convert): Call convert_registers.
19302         (convert_scalars_to_vector): Change to scalar_chain pointer to
19303         use timode_scalar_chain in 64-bit mode and dimode_scalar_chain
19304         in 32-bit mode.  Delete scalar_chain pointer.  Call
19305         free_dominance_info in 64-bit mode.
19306         (pass_stv::gate): Remove TARGET_64BIT check.
19307         (ix86_option_override): Put the 64-bit STV pass before the CSE
19308         pass.
19310 2016-04-27  Pierre-Marie de Rodat  <derodat@adacore.com>
19312         * dwarf2out.h (struct dw_loc_descr_node): Remove the
19313         dw_loc_frame_offset field.
19314         * dwarf2out.c (new_loc_descr): Likewise.
19315         (resolve_args_picking_1): Turn the VISITED hash set into a
19316         FRAME_OFFSET hash map. Use it to associate a frame offset to
19317         visited nodes. Remove uses of the CHECKING_P macro.
19318         (resolve_args_picking): Update call to resolve_args_picking_1.
19320 2016-04-27  Martin Liska  <mliska@suse.cz>
19322         * tree-ssa-loop-ivopts.c (iv_ca_dump): Fix level of indentation.
19323         (free_loop_data): Release vuses of groups.
19325 2016-04-27  Bin Cheng  <bin.cheng@arm.com>
19327         * tree-ssa-loop-ivopts.c (struct iv): Use pointer to struct iv_use
19328         instead of redundant use_id and boolean have_use_for.
19329         (struct iv_use): Change sub_id into group_id.  Remove field next.
19330         Move fields: related_cands, n_map_members, cost_map and selected
19331         to ...
19332         (struct iv_group): ... here.  New structure.
19333         (struct iv_common_cand): Use structure declaration directly.
19334         (struct ivopts_data, iv_ca, iv_ca_delta): Rename fields.
19335         (MAX_CONSIDERED_USES): Rename macro to ...
19336         (MAX_CONSIDERED_GROUPS): ... here.
19337         (n_iv_uses, iv_use, n_iv_cands, iv_cand): Delete.
19338         (dump_iv, dump_use, dump_cand): Refactor format of dump information.
19339         (dump_uses): Rename to ...
19340         (dump_groups): ... here.  Update all uses.
19341         (tree_ssa_iv_optimize_init, alloc_iv): Update all uses.
19342         (find_induction_variables): Refactor format of dump information.
19343         (record_sub_use): Delete.
19344         (record_use): Update all uses.
19345         (record_group): New function.
19346         (record_group_use, find_interesting_uses_op): Call above functions.
19347         Update all uses.
19348         (find_interesting_uses_cond): Ditto.
19349         (group_compare_offset): New function.
19350         (split_all_small_groups): Rename to ...
19351         (split_small_address_groups_p): ... here.  Update all uses.
19352         (split_address_groups):  Update all uses.
19353         (find_interesting_uses): Refactor format of dump information.
19354         (add_candidate_1): Update all uses.  Remove redundant check on iv,
19355         base and step.
19356         (add_candidate, record_common_cand): Remove redundant assert.
19357         (add_iv_candidate_for_biv): Update use.
19358         (add_iv_candidate_derived_from_uses): Update all uses.
19359         (add_iv_candidate_for_groups, record_important_candidates): Ditto.
19360         (alloc_use_cost_map): Ditto.
19361         (set_use_iv_cost, get_use_iv_cost): Rename to ...
19362         (set_group_iv_cost, get_group_iv_cost): ... here.  Update all uses.
19363         (determine_use_iv_cost_generic): Ditto.
19364         (determine_group_iv_cost_generic): Ditto.
19365         (determine_use_iv_cost_address): Ditto.
19366         (determine_group_iv_cost_address): Ditto.
19367         (determine_use_iv_cost_condition): Ditto.
19368         (determine_group_iv_cost_cond): Ditto.
19369         (determine_use_iv_cost): Ditto.
19370         (determine_group_iv_cost): Ditto.
19371         (set_autoinc_for_original_candidates): Update all uses.
19372         (find_iv_candidates): Update all uses.  Refactor dump information.
19373         (determine_use_iv_costs): Ditto.
19374         (determine_iv_costs): Ditto.
19375         (iv_ca_cand_for_use): Rename to ...
19376         (iv_ca_cand_for_group): ... here.  Update all uses.
19377         (iv_ca_add_use, iv_ca_add_group): Ditto.
19378         (iv_ca_set_cp, iv_ca_cost, iv_ca_delta_add): Update all uses.
19379         (iv_ca_delta_join, iv_ca_delta_reverse, iv_ca_delta_free): Ditto.
19380         (iv_ca_new, iv_ca_dump, iv_ca_extend, iv_ca_narrow): Ditto.
19381         (iv_ca_prune, cheaper_cost_with_cand, iv_ca_replace): Ditto.
19382         (try_add_cand_for, try_improve_iv_set, find_optimal_iv_set): Ditto.
19383         (create_new_iv, adjust_iv_update_pos): Ditto.
19384         (rewrite_use_address): Delete.
19385         (rewrite_use_address_1): Rename to ...
19386         (rewrite_use_address): ... here.
19387         (rewrite_use_compare): Update all uses.
19388         (rewrite_use): Delete.
19389         (rewrite_uses): Rename to ...
19390         (rewrite_groups): ... here.  Update all uses.
19391         (remove_unused_ivs, free_loop_data): Update all uses.
19392         (tree_ssa_iv_optimize_finalize, tree_ssa_iv_optimize_loop): Ditto.
19394 2016-04-27  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
19396         * rtlanal.c (nonzero_bits1): Convert preprocessor check
19397         for WORD_REGISTER_OPERATIONS to runtime check.
19399 2016-04-27  Richard Biener  <rguenther@suse.de>
19401         PR ipa/70760
19402         * tree-ssa-structalias.c (find_func_aliases_for_call): Use
19403         aggregate_value_p to determine if a function result is
19404         returned by reference.
19405         (ipa_pta_execute): Functions having their address taken are
19406         not automatically nonlocal.
19408 2016-04-27  Jakub Jelinek  <jakub@redhat.com>
19410         PR sanitizer/70683
19411         * tree-core.h (enum operand_equal_flag): Add OEP_NO_HASH_CHECK.
19412         * fold-const.c (operand_equal_p): If flag_checking and
19413         OEP_NO_HASH_CHECK is not set in flag, recurse with OEP_NO_HASH_CHECK
19414         and if it returns non-zero, assert iterative_hash_expr on both
19415         args is the same.
19417 2016-04-27  Bernd Schmidt  <bschmidt@redhat.com>
19419         * doc/invoke.texi (-frename-registers): Also enabled at -Os.
19421 2016-04-27  Nick Clifton  <nickc@redhat.com>
19423         PR middle-end/49889
19424         * varasm.c (merge_weak): Generate an error if an attempt is made
19425         to convert a non-weak static function into a weak, public function.
19427 2016-04-27  Prathamesh Kulkarni  <prathamesh.kulkarni@linaro.org>
19429         * params.def (MAX_PARTITION_SIZE): New param.
19430         * doc/invoke.texi: Document lto-max-partition.
19432 2016-04-27  Richard Biener  <rguenther@suse.de>
19434         PR ipa/70785
19435         * tree-ssa-structalias.c (refered_from_nonlocal_fn): New
19436         function cummulating used_from_other_partition, externally_visible
19437         and force_output from aliases.
19438         (refered_from_nonlocal_var): Likewise.
19439         (ipa_pta_execute): Use call_for_symbol_and_aliases to cummulate
19440         node flags properly.
19442 2016-04-27  Bernd Schmidt  <bschmidt@redhat.com>
19444         * doc/invoke.texi (Warning Options): Add -Wmemset-elt-size.
19445         (-Wmemset-elt-size): New item.
19447 2016-04-27  Eric Botcazou  <ebotcazou@adacore.com>
19449         PR ada/70759
19450         * stor-layout.h (internal_reference_types): Delete.
19451         * stor-layout.c (reference_types_internal): Likewise.
19452         (internal_reference_types): Likewise.
19453         (layout_type) <REFERENCE_TYPE>: Adjust.
19455 2016-04-27  Jakub Jelinek  <jakub@redhat.com>
19457         PR sanitizer/70683
19458         * tree.h (inchash::add_expr): Add FLAGS argument.
19459         * tree.c (inchash::add_expr): Likewise.  If not OEP_ADDRESS_OF,
19460         use STRIP_NOPS first.  For INTEGER_CST assert not OEP_ADDRESS_OF.
19461         For REAL_CST and !HONOR_SIGNED_ZEROS (t) hash +/- 0 the same.
19462         Formatting fix.  Adjust recursive calls.  For tcc_comparison,
19463         if swap_tree_comparison (code) is smaller than code, hash that
19464         and arguments in the other order.  Hash CONVERT_EXPR the same
19465         as NOP_EXPR.  For OEP_ADDRESS_OF hash MEM_REF with 0 offset
19466         of ADDR_EXPR of decl as the decl itself.  Add or remove
19467         OEP_ADDRESS_OF from recursive flags as needed.  For
19468         FMA_EXPR, WIDEN_MULT_{PLUS,MINUS}_EXPR hash the first two
19469         operands commutatively and only the third one normally.
19470         For internal CALL_EXPR hash in CALL_EXPR_IFN.
19472 2016-04-27  Sebastian Huber  <sebastian.huber@embedded-brains.de>
19474         * config/rtems.h (LIB_SPEC): Add -latomic.
19476 2016-04-27  Joel Sherrill  <joel@rtems.org>
19478         * config/microblaze/rtems.h: Redefine LINK_SPEC to avoid
19479         xilink.ld and flags not relevant to RTEMS.
19481 2016-04-26  Zhouyi Zhou  <yizhouzhou@ict.ac.cn>
19483         * toplev.c (backend_init_target): Avoid calling init_reload when using
19484         LRA.
19486 2016-04-26  Jakub Jelinek  <jakub@redhat.com>
19488         * reorg.c (try_merge_delay_insns): Declare i and j inside the
19489         for loops rather than one for the whole function.
19491 2016-04-26  Marc Glisse  <marc.glisse@inria.fr>
19493         * match.pd (X + CST CMP X): New transformation.
19495 2016-04-26  Marc Glisse  <marc.glisse@inria.fr>
19497         * genmatch.c (write_predicate): Add ATTRIBUTE_UNUSED.
19498         * fold-const.c (fold_binary_loc): Remove 2 transformations
19499         superseded by match.pd.
19500         * match.pd (x+x -> x*2): Generalize to integers.
19502 2016-04-26  Bernd Schmidt  <bschmidt@redhat.com>
19504         * config/i386/i386.md (operation on memory peephole): Duplicate an
19505         existing peephole and adapt it to match lea rather than an operation
19506         that clobbers CC.
19508         PR rtl-optimization/57193
19509         * opts.c (default_options_table): Add OPT_frename_registers at -O2
19510         and above.
19511         * doc/invoke.texi (-frename-registers, -O2): Update documentation.
19513 2016-04-26  Bin Cheng  <bin.cheng@arm.com>
19515         * tree-if-conv.c (any_pred_load_store): New static variable.
19516         (if_convertible_gimple_assign_stmt_p): Remove parameter.  Use
19517         any_pred_load_store instead of and_mask_load_store.
19518         (if_convertible_stmt_p, if_convertible_loop_p_1): Ditto.
19519         (if_convertible_loop_p, insert_gimplified_predicates): Ditto.
19520         (combine_blocks, tree_if_conversion): Ditto.
19522 2016-04-26  Bin Cheng  <bin.cheng@arm.com>
19524         PR tree-optimization/70771
19525         PR tree-optimization/70775
19526         * tree-if-conv.c (if_convertible_phi_p): Remove check on special
19527         virtual PHI nodes.  Delete parameter.
19528         (if_convertible_loop_p_1): Delete argument to above function.
19529         (predicate_all_scalar_phis): Delete code handling single-argument
19530         PHIs.
19531         (tree_if_conversion): Mark and update virtual SSA.
19533 2016-04-26  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
19535         PR target/61821
19536         * config/i386/i386.c (LARGECOMM_SECTION_ASM_OP): Define default.
19537         (x86_elf_aligned_common): Rename to ...
19538         (x86_elf_aligned_decl_common): ... this.
19539         Add decl arg.  Switch to .lbss for largecomm object.  Use
19540         LARGECOMM_SECTION_ASM_OP.
19541         * config/i386/i386-protos.h (x86_elf_aligned_common): Reflect
19542         renaming.
19543         * config/i386/x86-64.h (ASM_OUTPUT_ALIGNED_COMMON): Rename to ...
19544         (ASM_OUTPUT_ALIGNED_DECL_COMMON): ... this.
19545         Pass new decl arg.
19546         * config/i386/sol2.h (ASM_OUTPUT_ALIGNED_COMMON): Likewise.
19547         [!USE_GAS] (LARGECOMM_SECTION_ASM_OP): Define.
19549 2016-04-26  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
19551         PR target/59407
19552         * config/i386/i386.c (SECTION_LARGE): Define.
19553         (x86_64_elf_select_section): Set it for large data/bss sections.
19554         Only clear SECTION_WRITE for .lrodata.
19555         (x86_64_elf_section_type_flags): Set SECTION_LARGE for large
19556         data/bss sections.
19557         * config/i386/sol2.h (MACH_DEP_SECTION_ASM_FLAG): Define.
19558         * varasm.c (default_elf_asm_named_section): Grow flagchars.
19559         [MACH_DEP_SECTION_ASM_FLAG] Emit MACH_DEP_SECTION_ASM_FLAG for
19560         SECTION_MACH_DEP.
19561         * doc/tm.texi.in (Sections, MACH_DEP_SECTION_ASM_FLAG): Describe.
19562         * doc/tm.texi: Regenerate.
19564 2016-04-26  Jakub Jelinek  <jakub@redhat.com>
19566         PR bootstrap/70704
19567         * configure.ac (--enable-checking): Document extra flag, for
19568         non-release builds default to --enable-checking=yes,extra.
19569         If misc checking and extra checking, define CHECKING_P to 2 instead
19570         of 1.
19571         * common.opt (fchecking=): Add.
19572         * doc/invoke.texi (-fchecking=): Document.
19573         * doc/install.texi: Document --enable-checking changes.
19574         * configure: Regenerated.
19575         * config.in: Regenerated.
19577 2016-04-25  Uros Bizjak  <ubizjak@gmail.com>
19579         * config/i386/i386.md (*movxi_internal_avx512f): Use insn type
19580         attribute instead of which_alternative.
19581         * config/i386/sse.md (*mov<mode>_internal): Ditto.
19582         Use EXT_REX_SSE_REG_P where appropriate.
19584 2016-04-25  Uros Bizjak  <ubizjak@gmail.com>
19586         * config/i386/predicates.md (const0_operand): Do not match
19587         const_wide_int code.
19588         (const1_operand): Ditto.
19590 2016-04-25  Uros Bizjak  <ubizjak@gmail.com>
19592         * config/i386/i386.md (*movoi_internal_avx): Set mode attribute to XI
19593         for SSE constm1 operands and TARGET_AVX512VL.
19594         (*movti_internal): Ditto.
19595         (*mov<mode>_or): Use constm1_operand predicate.
19596         * config/i386/sse.md (*mov<mode>_internal): Set mode attribute to XI
19597         for SSE vector_all_ones operands and TARGET_AVX512VL.
19598         * config/i386/predicates.md (constm1_operand): New predicate.
19599         * config/i386/i386.c (standard_sse_constant_opcode): Simplify
19600         emission of constant -1 load.
19602 2016-04-25  Jason Merrill  <jason@redhat.com>
19604         * gdbinit.in: Skip is-a.h.
19606         * attribs.c (register_scoped_attributes): Fix logic.
19607         * attribs.h: Declare register_scoped_attributes.
19609 2016-04-25  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
19611         * config/rs6000/rs6000-builtin.def: Correct pasto error for
19612         stxvd2x and stxvw4x built-in functions.
19614 2016-04-25  DJ Delorie  <dj@redhat.com>
19616         * config/msp430/msp430.md (ashlhi3): Optimize one bit shifts.
19617         (ashrhi3): Likewise.
19618         (lshrhi3): Likewise.
19620 2016-04-25  Richard Biener  <rguenther@suse.de>
19622         PR tree-optimization/70780
19623         * tree-ssa-pre.c (compute_antic_aux): Also return true if the block
19624         wasn't visited yet.
19625         (compute_antic): Mark blocks with abnormal preds as visited as
19626         they have a final empty antic-in solution already.
19628 2016-04-25  Michael Collison  <michael.collison@linaro.org>
19630         * ChangeLog(2016-04-25): Fix ChangeLog formatting.
19632 2016-04-25  Michael Collison  <michael.collison@linaro.org>
19634         * config/arm/neon.md (widen_<us>sum<mode>): New patterns where
19635         mode is VQI to improve mixed mode vectorization.
19636         * config/arm/neon.md (vec_sel_widen_ssum_lo<VQI:mode><VW:mode>3): New
19637         define_insn to match low half of signed vaddw.
19638         * config/arm/neon.md (vec_sel_widen_ssum_hi<VQI:mode><VW:mode>3): New
19639         define_insn to match high half of signed vaddw.
19640         * config/arm/neon.md (vec_sel_widen_usum_lo<VQI:mode><VW:mode>3): New
19641         define_insn to match low half of unsigned vaddw.
19642         * config/arm/neon.md (vec_sel_widen_usum_hi<VQI:mode><VW:mode>3): New
19643         define_insn to match high half of unsigned vaddw.
19644         * config/arm/arm.c (arm_simd_vect_par_cnst_half): New function.
19645         (arm_simd_check_vect_par_cnst_half_p): Likewise.
19646         * config/arm/arm-protos.h (arm_simd_vect_par_cnst_half): Prototype
19647         for new function.
19648         (arm_simd_check_vect_par_cnst_half_p): Likewise.
19649         * config/arm/predicates.md (vect_par_constant_high): Support
19650         big endian and simplify by calling
19651         arm_simd_check_vect_par_cnst_half
19652         (vect_par_constant_low): Likewise.
19654 2016-04-25  Uros Bizjak  <ubizjak@gmail.com>
19656         * config/i386/i386.md (*lea<mode>_general_4): Use const_0_to_3_operand
19657         predicate for operand 2.
19659 2016-04-24  Uros Bizjak  <ubizjak@gmail.com>
19660             H.J. Lu  <hongjiu.lu@intel.com>
19662         * config/i386/i386-protos.h (standard_sse_constant_p): Add
19663         machine_mode argument.
19664         * config/i386/i386.c (standard_sse_constant_p): Return 2 for
19665         constm1_rtx operands.  For VOIDmode constants, get mode from
19666         pred_mode.  Check mode size if the mode is supported by ABI.
19667         (standard_sse_constant_opcode): Do not use standard_constant_p.
19668         Strictly check ABI support for all-ones operands.
19669         (ix86_legitimate_constant_p): Handle TImode, OImode and XImode
19670         immediates. Update calls to standard_sse_constant_p.
19671         (ix86_expand_vector_move): Update calls to standard_sse_constant_p.
19672         (ix86_rtx_costs): Ditto.
19673         * config/i386/i386.md (*movxi_internal_avx512f): Use
19674         nonimmediate_or_sse_const_operand instead of vector_move_operand.
19675         Use (v,BC) alternative instead of (v,C). Use register_operand
19676         checks instead of MEM_P.
19677         (*movoi_internal_avx): Use nonimmediate_or_sse_const_operand instead
19678         of vector_move_operand.  Add (v,BC) alternative and corresponding avx2
19679         isa attribute.  Use register_operand checks instead of MEM_P.
19680         (*movti_internal): Use nonimmediate_or_sse_const_operand for
19681         TARGET_SSE.  Improve TARGET_SSE insn constraint.  Add (v,BC)
19682         alternative and corresponding sse2 isa attribute.
19683         (*movtf_internal, *movdf_internal, *movsf_interal): Update calls
19684         to standard_sse_constant_p.
19685         (FP constant splitters): Ditto.
19686         * config/i386/constraints.md (BC): Do not use standard_sse_constant_p.
19687         (C): Ditto.
19688         * config/i386/predicates.md (constm1_operand): Remove.
19689         (nonimmediate_or_sse_const_operand): Rewrite using RTX.
19690         * config/i386/sse.md (*<avx512>_cvtmask2<ssemodesuffix><mode>): Use
19691         vector_all_ones_operand instead of constm1_operand.
19693 2016-04-24  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
19695         * print-rtl.c (print_rtx_insn_vec): New function.
19696         * print-rtl.h: New prototype.
19697         * store-motion.c (struct st_expr): Make avail_stores a vector.
19698         (st_expr_entry): Adjust.
19699         (free_st_expr_entry): Likewise.
19700         (print_store_motion_mems): Likewise.
19701         (find_moveable_store): Likewise.
19702         (compute_store_table): Likewise.
19703         (delete_store): Likewise.
19704         (build_store_vectors): Likewise.
19706 2016-04-24  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
19708         * reorg.c (try_merge_delay_insns): Make merged_insns a vector.
19710 2016-04-24  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
19712         * vec.h (vec_safe_contains): New function.
19713         (vec::contains): Likewise.
19714         (vec::begin): Likewise.
19715         (vec::end): Likewise.
19717 2016-04-23  Jakub Jelinek  <jakub@redhat.com>
19719         PR sanitizer/70712
19720         * cfgexpand.c (expand_stack_vars): Fix typo.
19722 2016-04-22  Szabolcs Nagy  <szabolcs.nagy@arm.com>
19724         * system.h (list, map, set, vector): Include conditionally.
19725         * auto-profile.c (INCLUDE_MAP, INCLUDE_SET): Define.
19726         * graphite-isl-ast-to-gimple.c (INCLUDE_MAP): Define.
19727         * ipa-icf.c (INCLUDE_LIST): Define.
19728         * config/aarch64/cortex-a57-fma-steering.c (INCLUDE_LIST): Define.
19729         * config/sh/sh.c (INCLUDE_VECTOR): Define.
19730         * config/sh/sh_treg_combine.cc (INCLUDE_ALGORITHM): Define.
19731         (INCLUDE_LIST, INCLUDE_VECTOR): Define.
19732         * cp/logic.cc (INCLUDE_LIST): Define.
19733         * fortran/trans-common.c (INCLUDE_MAP): Define.
19735 2016-04-22  Szabolcs Nagy  <szabolcs.nagy@arm.com>
19737         * auto-profile.c: Remove <string.h> include.
19738         * ipa-icf-gimple.c: Remove <list> include.
19739         * diagnostic.c: Remove <new> include.
19740         * genmatch.c: Likewise.
19741         * pretty-print.c: Likewise.
19742         * toplev.c: Likewise
19743         * c/c-objc-common.c: Likewise.
19744         * cp/error.c: Likewise.
19745         * fortran/error.c: Likewise.
19747 2016-04-22  Richard Biener  <rguenther@suse.de>
19749         * lto-streamer-in.c (input_ssa_names): Do not allocate
19750         GIMPLE_NOP for all SSA names.
19751         * lto-streamer-out.c (output_ssa_names): Do not output
19752         SSA names that should have been released.
19754 2016-04-22  Richard Biener  <rguenther@suse.de>
19756         PR tree-optimization/70740
19757         * tree-ssa-phiprop.c (propagate_with_phi): Handle inserted
19758         VDEF.
19760 2016-04-21  H.J. Lu  <hongjiu.lu@intel.com>
19762         PR target/70750
19763         * config/i386/predicates.md (call_insn_operand): Replace
19764         sibcall_memory_operand with memory_operand.
19766 2016-04-21  Patrick Palka  <ppalka@gcc.gnu.org>
19768         * tree-vrp.c (register_edge_assert_for_2): Remove redundant
19769         has_single_use() tests.
19770         (register_edge_assert_for_1): Likewise.
19771         (find_assert_locations_1): Check the liveness bitmap instead of
19772         checking has_single_use().
19774 2016-04-21  Kirill Yukhin  <kirill.yukhin@intel.com>
19776         PR target/70728
19777         * config/i386/sse.md (define_insn "<shift_insn><mode>3<mask_name>"):
19778         Extract AVX-512BW constraint from AVX.
19780 2016-04-21  Richard Biener  <rguenther@suse.de>
19782         PR tree-optimization/70725
19783         * tree-if-conv.c (if_convertible_phi_p): Adjust guard
19784         for phi_convertible_by_degenerating_args.
19785         (predicate_all_scalar_phis): Handle single-argument PHIs.
19787 2016-04-21  Richard Biener  <rguenther@suse.de>
19789         PR middle-end/70747
19790         * fold-const.c (fold_comparison): Return properly typed
19791         constant boolean.
19793 2016-04-21  Bin Cheng  <bin.cheng@arm.com>
19795         PR tree-optimization/70715
19796         * tree-ssa-loop-niter.c (loop_exits_before_overflow): Check equality
19797         after expanding BASE using expand_simple_operations.
19799 2016-04-21  Marc Glisse  <marc.glisse@inria.fr>
19801         * match.pd (min(-x, -y), max(-x, -y), min(~x, ~y), max(~x, ~y)):
19802         New transformations.
19804 2016-04-21  Marc Glisse  <marc.glisse@inria.fr>
19806         * match.pd (min(int_max, x), max(int_min, x)): New transformations.
19808 2016-04-20  Jan Hubicka  <jh@suse.cz>
19810         * ipa-inline.c (can_inline_edge_p): Pass caller info to
19811         ultiimate_alias_target.
19812         (update_callee_keys): Likewise.
19813         (lookup_recursive_calls): Likewise.
19814         (speculation_useful_p): Likewise.
19816 2016-04-20  Jan Hubicka  <jh@suse.cz>
19818         PR ipa/70018
19819         * cgraph.c (cgraph_set_nothrow_flag_1): Rename to ...
19820         (set_nothrow_flag_1): ... this; handle interposition correctly;
19821         recurse on aliases and thunks.
19822         (cgraph_node::set_nothrow_flag): New.
19823         * ipa-pure-const.c (ignore_edge_for_nothrow): Ignore calls to
19824         functions compiled with non-call exceptions that binds to current
19825         def.
19826         (propagate_nothrow): Be safe WRT interposition.
19827         * cgraph.h (set_nothrow_flag): Update prototype.
19829 2016-04-18  Jan Hubicka  <jh@suse.cz>
19831         * tree-ssa-loop-unswitch.c (tree_unswitch_single_loop): Use also
19832         max_loop_iterations_int.
19833         (tree_unswitch_outer_loop): Likewise.
19835 2016-04-20  Bin Cheng  <bin.cheng@arm.com>
19837         PR tree-optimization/69489
19838         * tree-if-conv.c (phi_convertible_by_degenerating_args): New.
19839         (if_convertible_phi_p): Call phi_convertible_by_degenerating_args.
19840         Revise dump message.
19841         (if_convertible_bb_p): Remove check on edge count of basic block's
19842         predecessors.
19844 2016-04-20  Bin Cheng  <bin.cheng@arm.com>
19846         PR tree-optimization/56625
19847         PR tree-optimization/69489
19848         * tree-data-ref.h (DR_INNERMOST): New macro.
19849         * tree-if-conv.c (innermost_loop_behavior_hash): New class for
19850         hashing struct innermost_loop_behavior.
19851         (ref_DR_map): Remove.
19852         (innermost_DR_map): New map.
19853         (baseref_DR_map): Revise comment.
19854         (hash_memrefs_baserefs_and_store_DRs_read_written_info): Store DR
19855         to innermost_DR_map accroding to its innermost loop behavior.
19856         (ifcvt_memrefs_wont_trap): Get DR from innermost_DR_map according
19857         to its innermost loop behavior.
19858         (if_convertible_loop_p_1): Remove intialization for ref_DR_map.
19859         Add initialization for innermost_DR_map.  Record memory reference
19860         in DR_BASE_ADDRESS if the reference is compound one or it doesn't
19861         have innermost loop behavior.
19862         (if_convertible_loop_p): Remove release for ref_DR_map.  Release
19863         innermost_DR_map.
19865 2016-04-20  Uros Bizjak  <ubizjak@gmail.com>
19867         * config/i386/i386.md (*lea<mode>_general_1): Rename from
19868         *lea_general_1.  Use explicit SWI12 mode interator.
19869         (*lea<mode>_general_2): Rename from *lea_general_2.
19870         Use explicit SWI12 mode interator.
19871         (*lea<mode>_general_3): Rename from *lea_general_3.
19872         Use explicit SWI12 mode interator.
19873         (*lea<SWI12:mode>_general_4): Split from *lea_general_4.
19874         Use explicit SWI12 mode interator.
19875         (*lea<SWI48:mode>_general_4): Split from *lea_general_4.
19876         Use explicit SWI48 mode interator.
19878 2016-04-20  H.J. Lu  <hongjiu.lu@intel.com>
19880         * config/i386/i386.c (ix86_avx256_split_vector_move_misalign):
19881         Short-cut unaligned load and store cases.  Handle all integer
19882         vector modes.
19883         (ix86_expand_vector_move_misalign): Short-cut unaligned load
19884         and store cases.  Call ix86_avx256_split_vector_move_misalign
19885         directly without checking mode class.
19887 2016-04-20  Andrew Pinski  <apinski@cavium.com>
19888             Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
19890         PR target/64971
19891         * config/aarch64/aarch64.md (sibcall): Force call
19892         address to be DImode for ILP32.
19893         (sibcall_value): Likewise.
19895 2016-04-20  H.J. Lu  <hongjiu.lu@intel.com>
19897         * doc/invoke.texi: Replace -skip-rax-setup with -mskip-rax-setup.
19899 2016-04-20  Richard Biener  <rguenther@suse.de>
19901         * gimple-match.h (maybe_build_generic_op): Adjust prototype.
19902         * gimple-match-head.c (maybe_build_generic_op): Pass all ops
19903         by reference, clear op1 and op2 when GENERICizing BIT_FIELD_REF.
19904         (maybe_push_res_to_seq): Adjust.
19905         * gimple-fold.c (maybe_build_generic_op): Likewise.
19907 2016-04-20  Marek Polacek  <polacek@redhat.com>
19909         * tree-if-conv.c (is_false_predicate): For NULL_TREE return false
19910         rather than true.
19912 2016-04-20  Ilya Enkovich  <ilya.enkovich@intel.com>
19914         * config/i386/sse.md (vec_unpacks_lo_hi): Always
19915         use kmovw to support AVX512F target.
19917 2016-04-20  Bin Cheng  <bin.cheng@arm.com>
19919         * tree-scalar-evolution.c (interpret_rhs_expr): Handle BIT_AND_EXPR.
19921 2016-04-20  Marek Polacek  <polacek@redhat.com>
19923         PR tree-optimization/70725
19924         * tree-if-conv.c (is_false_predicate): New function.
19925         (predicate_mem_writes): Use it.
19927 2016-04-20  Richard Biener  <rguenther@suse.de>
19929         PR tree-optimization/70726
19930         * tree-vect-stmts.c (vectorizable_shift): Do not use scalar
19931         shift amounts from a pattern stmt operand.
19933 2016-04-20  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
19935         PR target/70674
19936         * config/s390/s390.c (s390_restore_gprs_from_fprs): Pick the new
19937         stack_restore_from_fpr pattern when restoring r15.
19938         (s390_optimize_prologue): Strip away the memory barrier in the
19939         parallel when trying to get rid of restore insns.
19940         * config/s390/s390.md ("stack_restore_from_fpr"): New insn
19941         definition for loading the stack pointer from an FPR.  Compared to
19942         the normal move insn this pattern includes a full memory barrier.
19944 2016-04-19  Jakub Jelinek  <jakub@redhat.com>
19946         PR middle-end/70680
19947         * gimplify.c (gimplify_omp_for): Call omp_notice_variable for
19948         implicitly linear or lastprivate iterator on the outer context.
19950 2016-04-19  H.J. Lu  <hongjiu.lu@intel.com>
19952         * config/i386/i386.c (ix86_legitimate_combined_insn): Remove
19953         alignment check.
19954         * config/i386/i386.md (ssememalign): Removed.
19955         * config/i386/sse.md: Remove ssememalign attribute from patterns.
19957 2016-04-19  H.J. Lu  <hongjiu.lu@intel.com>
19959         PR target/69201
19960         * config/i386/avx512bwintrin.h (_mm512_mask_loadu_epi16): Pass
19961         const short * to __builtin_ia32_loaddquhi512_mask.
19962         (_mm512_maskz_loadu_epi16): Likewise.
19963         (_mm512_mask_storeu_epi16): Pass short * to
19964         __builtin_ia32_storedquhi512_mask.
19965         (_mm512_mask_loadu_epi8): Pass const char * to
19966         __builtin_ia32_loaddquqi512_mask.
19967         (_mm512_maskz_loadu_epi8): Likewise.
19968         (_mm512_mask_storeu_epi8): Pass char * to
19969         __builtin_ia32_storedquqi512_mask.
19970         * config/i386/avx512fintrin.h (_mm512_loadu_pd): Pass
19971         const double * to __builtin_ia32_loadupd512_mask.
19972         (_mm512_mask_loadu_pd): Likewise.
19973         (_mm512_maskz_loadu_pd): Likewise.
19974         (_mm512_storeu_pd): Pass double * to
19975         __builtin_ia32_storeupd512_mask.
19976         (_mm512_mask_storeu_pd): Likewise.
19977         (_mm512_loadu_ps): Pass const float * to
19978         __builtin_ia32_loadups512_mask.
19979         (_mm512_mask_loadu_ps): Likewise.
19980         (_mm512_maskz_loadu_ps): Likewise.
19981         (_mm512_storeu_ps): Pass float * to
19982         __builtin_ia32_storeups512_mask.
19983         (_mm512_mask_storeu_ps): Likewise.
19984         (_mm512_mask_loadu_epi64): Pass const long long * to
19985         __builtin_ia32_loaddqudi512_mask.
19986         (_mm512_maskz_loadu_epi64): Likewise.
19987         (_mm512_mask_storeu_epi64): Pass long long *
19988         to __builtin_ia32_storedqudi512_mask.
19989         (_mm512_loadu_si512): Pass const int * to
19990         __builtin_ia32_loaddqusi512_mask.
19991         (_mm512_mask_loadu_epi32): Likewise.
19992         (_mm512_maskz_loadu_epi32): Likewise.
19993         (_mm512_storeu_si512): Pass int * to
19994         __builtin_ia32_storedqusi512_mask.
19995         (_mm512_mask_storeu_epi32): Likewise.
19996         * config/i386/avx512vlbwintrin.h (_mm256_mask_storeu_epi8): Pass
19997         char * to __builtin_ia32_storedquqi256_mask.
19998         (_mm_mask_storeu_epi8): Likewise.
19999         (_mm256_mask_loadu_epi16): Pass const short * to
20000         __builtin_ia32_loaddquhi256_mask.
20001         (_mm256_maskz_loadu_epi16): Likewise.
20002         (_mm_mask_loadu_epi16): Pass const short * to
20003         __builtin_ia32_loaddquhi128_mask.
20004         (_mm_maskz_loadu_epi16): Likewise.
20005         (_mm256_mask_loadu_epi8): Pass const char * to
20006         __builtin_ia32_loaddquqi256_mask.
20007         (_mm256_maskz_loadu_epi8): Likewise.
20008         (_mm_mask_loadu_epi8): Pass const char * to
20009         __builtin_ia32_loaddquqi128_mask.
20010         (_mm_maskz_loadu_epi8): Likewise.
20011         (_mm256_mask_storeu_epi16): Pass short * to.
20012         __builtin_ia32_storedquhi256_mask.
20013         (_mm_mask_storeu_epi16): Pass short * to.
20014         __builtin_ia32_storedquhi128_mask.
20015         * config/i386/avx512vlintrin.h (_mm256_mask_loadu_pd): Pass
20016         const double * to __builtin_ia32_loadupd256_mask.
20017         (_mm256_maskz_loadu_pd): Likewise.
20018         (_mm_mask_loadu_pd): Pass onst double * to
20019         __builtin_ia32_loadupd128_mask.
20020         (_mm_maskz_loadu_pd): Likewise.
20021         (_mm256_mask_storeu_pd): Pass double * to
20022         __builtin_ia32_storeupd256_mask.
20023         (_mm_mask_storeu_pd): Pass double * to
20024         __builtin_ia32_storeupd128_mask.
20025         (_mm256_mask_loadu_ps): Pass const float * to
20026         __builtin_ia32_loadups256_mask.
20027         (_mm256_maskz_loadu_ps): Likewise.
20028         (_mm_mask_loadu_ps): Pass const float * to
20029         __builtin_ia32_loadups128_mask.
20030         (_mm_maskz_loadu_ps): Likewise.
20031         (_mm256_mask_storeu_ps): Pass float * to
20032         __builtin_ia32_storeups256_mask.
20033         (_mm_mask_storeu_ps): ass float * to
20034         __builtin_ia32_storeups128_mask.
20035         (_mm256_mask_loadu_epi64): Pass const long long * to
20036         __builtin_ia32_loaddqudi256_mask.
20037         (_mm256_maskz_loadu_epi64): Likewise.
20038         (_mm_mask_loadu_epi64): Pass const long long * to
20039         __builtin_ia32_loaddqudi128_mask.
20040         (_mm_maskz_loadu_epi64): Likewise.
20041         (_mm256_mask_storeu_epi64): Pass long long * to
20042         __builtin_ia32_storedqudi256_mask.
20043         (_mm_mask_storeu_epi64): Pass long long * to
20044         __builtin_ia32_storedqudi128_mask.
20045         (_mm256_mask_loadu_epi32): Pass const int * to
20046         __builtin_ia32_loaddqusi256_mask.
20047         (_mm256_maskz_loadu_epi32): Likewise.
20048         (_mm_mask_loadu_epi32): Pass const int * to
20049         __builtin_ia32_loaddqusi128_mask.
20050         (_mm_maskz_loadu_epi32): Likewise.
20051         (_mm256_mask_storeu_epi32): Pass int * to
20052         __builtin_ia32_storedqusi256_mask.
20053         (_mm_mask_storeu_epi32): Pass int * to
20054         __builtin_ia32_storedqusi128_mask.
20055         * config/i386/i386-builtin-types.def (PCSHORT): New.
20056         (PINT64): Likewise.
20057         (V64QI_FTYPE_PCCHAR_V64QI_UDI): Likewise.
20058         (V32HI_FTYPE_PCSHORT_V32HI_USI): Likewise.
20059         (V32QI_FTYPE_PCCHAR_V32QI_USI): Likewise.
20060         (V16SF_FTYPE_PCFLOAT_V16SF_UHI): Likewise.
20061         (V8DF_FTYPE_PCDOUBLE_V8DF_UQI): Likewise.
20062         (V16SI_FTYPE_PCINT_V16SI_UHI): Likewise.
20063         (V16HI_FTYPE_PCSHORT_V16HI_UHI): Likewise.
20064         (V16QI_FTYPE_PCCHAR_V16QI_UHI): Likewise.
20065         (V8SF_FTYPE_PCFLOAT_V8SF_UQI): Likewise.
20066         (V8DI_FTYPE_PCINT64_V8DI_UQI): Likewise.
20067         (V8SI_FTYPE_PCINT_V8SI_UQI): Likewise.
20068         (V8HI_FTYPE_PCSHORT_V8HI_UQI): Likewise.
20069         (V4DF_FTYPE_PCDOUBLE_V4DF_UQI): Likewise.
20070         (V4SF_FTYPE_PCFLOAT_V4SF_UQI): Likewise.
20071         (V4DI_FTYPE_PCINT64_V4DI_UQI): Likewise.
20072         (V4SI_FTYPE_PCINT_V4SI_UQI): Likewise.
20073         (V2DF_FTYPE_PCDOUBLE_V2DF_UQI): Likewise.
20074         (V2DI_FTYPE_PCINT64_V2DI_UQI): Likewise.
20075         (VOID_FTYPE_PDOUBLE_V8DF_UQI): Likewise.
20076         (VOID_FTYPE_PDOUBLE_V4DF_UQI): Likewise.
20077         (VOID_FTYPE_PDOUBLE_V2DF_UQI): Likewise.
20078         (VOID_FTYPE_PFLOAT_V16SF_UHI): Likewise.
20079         (VOID_FTYPE_PFLOAT_V8SF_UQI): Likewise.
20080         (VOID_FTYPE_PFLOAT_V4SF_UQI): Likewise.
20081         (VOID_FTYPE_PINT64_V8DI_UQI): Likewise.
20082         (VOID_FTYPE_PINT64_V4DI_UQI): Likewise.
20083         (VOID_FTYPE_PINT64_V2DI_UQI): Likewise.
20084         (VOID_FTYPE_PINT_V16SI_UHI): Likewise.
20085         (VOID_FTYPE_PINT_V8SI_UHI): Likewise.
20086         (VOID_FTYPE_PINT_V4SI_UHI): Likewise.
20087         (VOID_FTYPE_PSHORT_V32HI_USI): Likewise.
20088         (VOID_FTYPE_PSHORT_V16HI_UHI): Likewise.
20089         (VOID_FTYPE_PSHORT_V8HI_UQI): Likewise.
20090         (VOID_FTYPE_PCHAR_V64QI_UDI): Likewise.
20091         (VOID_FTYPE_PCHAR_V32QI_USI): Likewise.
20092         (VOID_FTYPE_PCHAR_V16QI_UHI): Likewise.
20093         (V64QI_FTYPE_PCV64QI_V64QI_UDI): Removed.
20094         (V32HI_FTYPE_PCV32HI_V32HI_USI): Likewise.
20095         (V32QI_FTYPE_PCV32QI_V32QI_USI): Likewise.
20096         (V16HI_FTYPE_PCV16HI_V16HI_UHI): Likewise.
20097         (V16QI_FTYPE_PCV16QI_V16QI_UHI): Likewise.
20098         (V8HI_FTYPE_PCV8HI_V8HI_UQI): Likewise.
20099         (VOID_FTYPE_PV32HI_V32HI_USI): Likewise.
20100         (VOID_FTYPE_PV16HI_V16HI_UHI): Likewise.
20101         (VOID_FTYPE_PV8HI_V8HI_UQI): Likewise.
20102         (VOID_FTYPE_PV64QI_V64QI_UDI): Likewise.
20103         (VOID_FTYPE_PV32QI_V32QI_USI): Likewise.
20104         (VOID_FTYPE_PV16QI_V16QI_UHI): Likewise.
20105         * config/i386/i386.c (ix86_emit_save_reg_using_mov): Don't
20106         use UNSPEC_STOREU.
20107         (ix86_emit_restore_sse_regs_using_mov): Don't use UNSPEC_LOADU.
20108         (ix86_avx256_split_vector_move_misalign): Don't use unaligned
20109         load nor store.
20110         (ix86_expand_vector_move_misalign): Likewise.
20111         (bdesc_special_args): Use CODE_FOR_movvNXY_internal and pointer
20112         to scalar function prototype for unaligned load/store builtins.
20113         (ix86_expand_special_args_builtin): Updated.
20114         * config/i386/sse.md (UNSPEC_LOADU): Removed.
20115         (UNSPEC_STOREU): Likewise.
20116         (VI_ULOADSTORE_BW_AVX512VL): Likewise.
20117         (VI_ULOADSTORE_F_AVX512VL): Likewise.
20118         (ssescalarsize): Handle V4TI, V2TI and V1TI.
20119         (<sse>_loadu<ssemodesuffix><avxsizesuffix><mask_name>): Likewise.
20120         (*<sse>_loadu<ssemodesuffix><avxsizesuffix><mask_name>): Likewise.
20121         (<sse>_storeu<ssemodesuffix><avxsizesuffix>): Likewise.
20122         (<avx512>_storeu<ssemodesuffix><avxsizesuffix>_mask): Likewise.
20123         (<sse2_avx_avx512f>_loaddqu<mode><mask_name>): Likewise.
20124         (*<sse2_avx_avx512f>_loaddqu<mode><mask_name>"): Likewise.
20125         (sse2_avx_avx512f>_storedqu<mode>): Likewise.
20126         (<avx512>_storedqu<mode>_mask): Likewise.
20127         (*sse4_2_pcmpestr_unaligned): Likewise.
20128         (*sse4_2_pcmpistr_unaligned): Likewise.
20129         (*mov<mode>_internal): Renamed to ...
20130         (mov<mode>_internal): This.  Remove check of AVX and IAMCU on
20131         misaligned operand.  Replace vmovdqu64 with vmovdqu<ssescalarsize>.
20132         (movsd/movhpd to movupd peephole): Don't use UNSPEC_LOADU.
20133         (movlpd/movhpd to movupd peephole): Don't use UNSPEC_STOREU.
20135 2016-04-19  Richard Biener  <rguenther@suse.de>
20137         PR tree-optimization/70171
20138         * tree-ssa-phiprop.c: Include stor-layout.h.
20139         (phiprop_insert_phi): Handle the aggregate copy case.
20140         (propagate_with_phi): Likewise.
20142 2016-04-19  Uros Bizjak  <ubizjak@gmail.com>
20144         * config/i386/i386.c (ix86_decompose_address): Use lowpart_subreg
20145         instead of simplify_gen_subreg (... , 0).
20146         (ix86_delegitimize_address): Ditto.
20147         (ix86_split_divmod): Ditto.
20148         (ix86_split_copysign_const): Ditto.
20149         (ix86_split_copysign_var): Ditto.
20150         (ix86_expand_args_builtin): Ditto.
20151         (ix86_expand_round_builtin): Ditto.
20152         (ix86_expand_special_args_builtin): Ditto.
20153         * config/i386/i386.md (TARGET_USE_VECTOR_FP_CONVERTS splitters): Ditto.
20154         (TARGET_SSE_PARTIAL_REG_DEPENDENCY splitters and peephole2s): Ditto.
20155         (udivmodqi4): Ditto.
20156         (absneg splitters): Ditto.
20157         (*jcc_bt<mode>_1): Ditto.
20159 2016-04-19  Richard Biener  <rguenther@suse.de>
20161         PR tree-optimization/70724
20162         * tree-ssa-sccvn.c (scc_vn_restore_ssa_info): Split SSA info
20163         restoring out from ...
20164         (free_scc_vn): ... here.
20165         * tree-ssa-sccvn.h (scc_vn_restore_ssa_info): Declare.
20166         * tres-ssa-pre.c (pass_pre::execute): Restore SSA info before
20167         tail merging.
20168         (pass_fre::execute): Restore SSA info.
20170 2016-04-19  Richard Biener  <rguenther@suse.de>
20172         * gimple-walk.h (struct walk_stmt_info): Add stmt member.
20173         * gimple-walk.c (walk_gimple_op): Initialize it.
20174         (walk_gimple_asm): Set wi->is_lhs before each callback invocation.
20175         * tree-inline.c (remap_gimple_op_r): Set SSA_NAME_DEF_STMT when
20176         remapping SSA names of defs.
20177         (copy_bb): Remove walk over all SSA defs and SSA_NAME_DEF_STMT
20178         adjustment.
20180 2016-04-18  Vladimir Makarov  <vmakarov@redhat.com>
20182         PR middle-end/70689
20183         * lra-constraints.c (equiv_substition_p): New.
20184         (process_alt_operands): Use it.
20185         (swap_operands): Swap it.
20186         (curr_insn_transform): Update it.
20188 2016-04-18  Michael Matz  <matz@suse.de>
20190         * tree.h (TYPE_ALIGN, DECL_ALIGN): Return shifted amount.
20191         (SET_TYPE_ALIGN, SET_DECL_ALIGN): New.
20192         * tree-core.h (tree_type_common.align): Use bit-field.
20193         (tree_type_common.spare): New.
20194         (tree_decl_common.off_align): Make smaller.
20195         (tree_decl_common.align): Use bit-field.
20197         * expr.c (expand_expr_addr_expr_1): Use SET_TYPE_ALIGN.
20198         * omp-low.c (install_var_field): Use SET_DECL_ALIGN.
20199         (scan_sharing_clauses): Ditto.
20200         (finish_taskreg_scan): Use SET_DECL_ALIGN and SET_TYPE_ALIGN.
20201         (omp_finish_file): Ditto.
20202         * stor-layout.c (do_type_align): Use SET_DECL_ALIGN.
20203         (layout_decl): Ditto.
20204         (relayout_decl): Ditto.
20205         (finalize_record_size): Use SET_TYPE_ALIGN.
20206         (finalize_type_size): Ditto.
20207         (finish_builtin_struct): Ditto.
20208         (layout_type): Ditto.
20209         (initialize_sizetypes): Ditto.
20210         * targhooks.c (std_gimplify_va_arg_expr): Use SET_TYPE_ALIGN.
20211         * tree-nested.c (insert_field_into_struct): Use SET_TYPE_ALIGN.
20212         (lookup_field_for_decl): Use SET_DECL_ALIGN.
20213         (get_chain_field): Ditto.
20214         (get_trampoline_type): Ditto.
20215         (get_nl_goto_field): Ditto.
20216         * tree-streamer-in.c (unpack_ts_decl_common_value_fields): Use
20217         SET_DECL_ALIGN.
20218         (unpack_ts_type_common_value_fields): Use SET_TYPE_ALIGN.
20219         * gimple-expr.c (copy_var_decl): Use SET_DECL_ALIGN.
20220         * tree.c (make_node_stat): Use SET_DECL_ALIGN and SET_TYPE_ALIGN.
20221         (build_qualified_type): Use SET_TYPE_ALIGN.
20222         (build_aligned_type, build_range_type_1): Ditto.
20223         (build_atomic_base): Ditto.
20224         (build_common_tree_nodes): Ditto.
20225         * cfgexpand.c (align_local_variable): Use SET_DECL_ALIGN.
20226         (expand_one_stack_var_at): Ditto.
20227         * coverage.c (build_var): Use SET_DECL_ALIGN.
20228         * except.c (init_eh): Ditto.
20229         * function.c (assign_parm_setup_block): Ditto.
20230         * symtab.c (increase_alignment_1): Ditto.
20231         * tree-ssa-ccp.c (fold_builtin_alloca_with_align): Ditto.
20232         * tree-vect-stmts.c (ensure_base_align): Ditto.
20233         * varasm.c (align_variable): Ditto.
20234         (assemble_variable): Ditto.
20235         (build_constant_desc): Ditto.
20236         (output_constant_def_contents): Ditto.
20238         * config/arm/arm.c (arm_relayout_function): Use SET_DECL_ALIGN.
20239         * config/avr/avr.c (avr_adjust_type_node): Use SET_TYPE_ALIGN.
20240         * config/mips/mips.c (mips_std_gimplify_va_arg_expr): Ditto.
20241         * config/msp430/msp430.c (msp430_gimplify_va_arg_expr): Ditto.
20242         * config/spu/spu.c (spu_build_builtin_va_list): Use SET_DECL_ALIGN.
20244 2016-04-18  H.J. Lu  <hongjiu.lu@intel.com>
20246         PR target/70708
20247         * config/i386/sse.md (sse2_loadlpd): Accept load from "xm" and
20248         replace %vmovsd with "%vmovq".
20249         (vec_concatv2df): Likewise.
20251 2016-04-18  Uros Bizjak  <ubizjak@gmail.com>
20253         * config/i386/mmx.md (*vec_extractv2sf_0): Use gen_lowpart.
20254         (*vec_extractv2si_0): Ditto.
20255         * config/i386/sse.md (*vec_extractv4sf_0): Ditto.
20256         (zero_extended_scalar_load_operand splitters): Ditto.
20257         (vec_extract splitters): Ditto.
20258         (*vec_extractv4si_0_zext): Ditto.
20259         (avx_<castmode><avxsizesuffix>_<castmode>): Use gen_lowpart
20260         and lowpart_subreg.
20261         (avx512f_<castmode><avxsizesuffix>_<castmode>): Ditto.
20262         (avx512f_<castmode><avxsizesuffix>_256<castmode>): Ditto.
20263         (*sse4_1_extractps): Use lowpart_subreg.
20264         * config/i386/i386.md (x87 floatsplitter): Use gen_lowpart.
20266 2016-04-18  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
20268         * doc/install.texi (Specific, i?86-*-solaris2.10): Update gas and
20269         gld requirements.
20270         (Specific, *-*-solaris2*): Update Solaris 11 bundled gcc versions.
20271         Mention Solaris 11 packaging changes.
20272         Update gas and gld requirements.
20273         Remove reference to pre-Solaris 10 bug.
20274         (Specific, sparc-sun-solaris2*): Remove reference to pre-Solaris 10
20275         systems and bugs.
20276         (Specific, sparc64-*-solaris2*): Remove reference to bootstrap
20277         with cc.
20279 2016-04-17  Jan Hubicka  <jh@suse.cz>
20281         * tree-ssa-loop-ivopts.c (avg_loop_niter): Use also
20282         max_loop_iterations_int.
20284 2016-04-18  Richard Biener  <rguenther@suse.de>
20286         PR tree-optimization/43434
20287         * tree-ssa-structalias.c (struct vls_data): New.
20288         (visit_loadstore): Handle all pointer-based accesses.
20289         (compute_dependence_clique): Compute a bitmap of restrict tags
20290         assigned bases and pass it to visit_loadstore.
20292 2016-04-18  Matthew Wahab  <matthew.wahab@arm.com>
20294         PR target/70711
20295         * config/arm/bpabi.h (BE8_LINK_SPEC): Add entries for armv8+crc,
20296         armv8.1-a and armv8.1-a+crc.
20298 2016-04-18  Richard Biener  <rguenther@suse.de>
20300         PR tree-optimization/70701
20301         * tree-ssa-sccvn.c (vn_reference_lookup_3): Resolve fully constant
20302         references after translating through a memcpy.
20304 2016-04-18  Richard Biener  <rguenther@suse.de>
20306         * tree-ssa-pre.c (postorder, postorder_num): Make locals ...
20307         (compute_antic): ... here.  For partial antic use regular
20308         postorder and scrap iteration.
20309         (compute_partial_antic_aux): Remove unused return value.
20310         (init_pre): Do not allocate postorder.
20311         (fini_pre): Do not free postorder.
20313 2016-04-18  Richard Biener  <rguenther@suse.de>
20315         PR middle-end/37870
20316         * expmed.c (extract_bit_field_1): Remove broken case
20317         using a wider MODE_INT mode.
20319 2016-04-18  Segher Boessenkool  <segher@kernel.crashing.org>
20321         * has-brig.c (lendian16): Don't try to use __builtin_bswap16
20322         unless compiling with at least GCC-4.8.
20324 2016-04-17  Jan Hubicka  <jh@suse.cz>
20326         PR bootstrap/70706
20327         * graphite.c (graphite_finalize): Update call to
20328         tree_estimate_probability.
20329         * predict.h (tree_estimate_probability): Update prototype.
20331 2016-04-17  Jan Hubicka  <jh@suse.cz>
20333         * predict.c (combine_predictions_for_bb): Add dry_run parmaeter.
20334         (tree_estimate_probability): Likewise.
20335         (pass_profile::execute): Update.
20336         (report_predictor_hitrates): New function.
20337         * profile.c (compute_branch_probabilities): Use it.
20338         * predict.h (report_predictor_hitrates): Declare.
20340 2016-04-17  Jan Hubicka  <jh@suse.cz>
20342         PR ipa/70018
20343         * cgraph.h (cgraph_node::set_const_flag,
20344         cgraph_node::set_pure_flag): Update prototype to return bool;
20345         update comment.
20346         * cgraph.c (cgraph_node::call_for_symbol_thunks_and_aliases): Thunks
20347         of interposable symbol are interposable, too.
20348         (cgraph_set_const_flag_1): Rename to ...
20349         (set_const_flag_1): ... this one; change to self recursive function
20350         instead of call_for_symbol_thunks_and_aliases. Handle correctly
20351         clearnig the flag in all variants and also virtual thunks of const
20352         functions are pure; track if any change was done.
20353         (cgraph_node::set_const_flag): Update.
20354         (struct set_pure_flag_info): New struct.
20355         (cgraph_set_pure_flag_1): Rename to ...
20356         (set_pure_flag_1): ... this one; take set_pure_flag_info parameter
20357         rather than pointer encoded flags; track if any changes was done;
20358         handle correctly clearning flag and setting flag of aliases already
20359         declared const.
20360         (cgraph_node::set_pure_flag): Update.
20361         (cgraph_node::set_nothrow_flag): Handle correctly clearning the flag.
20363 2016-04-17  Tom de Vries  <tom@codesourcery.com>
20365         PR other/70433
20366         * pretty-print.c (pp_write_text_as_dot_label_to_stream): Escape
20367         backslash in label.
20369 2016-04-17  Tom de Vries  <tom@codesourcery.com>
20371         * pretty-print.c (pp_write_text_as_dot_label_to_stream): Classify chars
20372         '{}<> ' as escape-for-record.
20374 2016-04-17  Tom de Vries  <tom@codesourcery.com>
20376         * pretty-print.c (pp_write_text_as_dot_label_to_stream): Simplify loop
20377         structure.
20379 2016-04-17  Tom de Vries  <tom@codesourcery.com>
20381         PR other/70185
20382         * tree-pass.h (class opt_pass): Remove graph_dump_initialized member.
20383         * dumpfile.h (struct dump_file_info): Add graph_dump_initialized field.
20384         * dumpfile.c (dump_files): Initialize graph_dump_initialized field.
20385         * passes.c (finish_optimization_passes): Only call
20386         finish_graph_dump_file if dfi->graph_dump_initialized.
20387         (execute_function_dump, pass_init_dump_file): Use
20388         dfi->graph_dump_initialized instead of pass->graph_dump_initialized.
20390 2016-04-17  Tom de Vries  <tom@codesourcery.com>
20392         PR tree-optimization/70256
20393         * tree-ssa-structalias.c (dump_varinfo, debug_varinfo, dump_varmap)
20394         (debug_varmap): New function.
20396 2016-04-17  Tom de Vries  <tom@codesourcery.com>
20398         PR other/70183
20399         * passes.c (pass_manager::register_pass): Propagate pflags.
20401 2016-04-17  Tom de Vries  <tom@codesourcery.com>
20403         PR other/68875
20404         * pass_manager.h (TERMINATE_PASS_LIST): Add pass argument.
20405         * passes.c (pass_manager::pass_manager): Declare and init p_start in
20406         INSERT_PASSES_AFTER.  Add pass parameter to TERMINATE_PASS_LIST, and
20407         check if it's equal to p_start.
20408         * passes.def: Add arguments to TERMINATE_PASS_LISTs.
20410 2016-04-15  Jan Hubicka  <jh@suse.cz>
20412         PR ipa/70018
20413         * cgraph.c (cgraph_set_const_flag_1): Only set as pure if
20414         function does not bind to current def.
20415         * ipa-pure-const.c (worse_state): Add FROM and TO parameters;
20416         handle conservatively calls to functions that does not need to bind
20417         to current def.
20418         (check_call): Update call of worse_state.
20419         (ignore_edge_for_nothrow): Update.
20420         (ignore_edge_for_pure_const): Likewise.
20421         (propagate_pure_const): Update calls to worse_state.
20422         (skip_function_for_local_pure_const): Reformat comments.
20424 2016-04-15  Jan Hubicka  <jh@suse.cz>
20426         PR ipa/70018
20427         * cgraph.c (cgraph_node::get_availability): Add REF parameter.
20428         (cgraph_node::function_symbol): Likewise.
20429         (cgraph_node::function_or_virtual_thunk_symbol): Likewise.
20430         * cgraph.h (symtab_node::get_availabbility): Add REF parameter.
20431         (symtab_node::ultimate_alias_target): Add REF parameter.
20432         (symtab_node::binds_to_current_def_p): Declare.
20433         (symtab_node;:ultimate_alias_target_1): Add REF parameter.
20434         (cgraph_node::function_symbol): Likewise.
20435         (cgraph_node::function_or_virtual_thunk_symbol): Likewise.
20436         (cgraph_node::get_availability): Likewise.
20437         (cgraph_edge::binds_to_current_def_p): New inline function.
20438         (varpool_node::get_availability): Add REF parameter.
20439         (varpool_node::ultimate_alias_target): Likewise.
20440         * symtab.c (symtab_node::ultimate_alias_target_1): Likewise.
20441         (symtab_node::binds_to_current_def_p): Likewise.
20442         * varpool.c (varpool_node::get_availability): Likewise.
20444 2016-04-15  Kirill Yukhin  <kirill.yukhin@intel.com>
20446         PR target/70662
20447         * config/i386/sse.md(define_insn "<avx512>_vec_dup<mode><mask_name>"):
20448         Fix mode size check.
20450 2016-04-15  Jakub Jelinek  <jakub@redhat.com>
20452         * BASE-VER: Set to 7.0.0.
20454 2016-04-15  Alexander Monakov  <amonakov@ispras.ru>
20456         * config/nvptx/nvptx.opt (moptimize): Add a period at end of help text.
20458 2016-04-15  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
20460         * doc/invoke.texi (ARM Options): Add note on deprecation of pre-ARMv4T
20461         architecture revisions.
20463 2016-04-15  Bernd Schmidt  <bschmidt@redhat.com>
20465         * config/i386/i386-protos.h (ix86_using_red_zone): Declare.
20466         * config/i386/i386.c (ix86_using_red_zone): No longer static.
20467         * config/i386/i386.md (stack decrement to push peepholes): Guard
20468         with !x86_using_red_zone ().
20470 2016-04-15  Jakub Jelinek  <jakub@redhat.com>
20472         PR c++/70675
20473         * tree-pretty-print.c (do_niy): Add FLAGS argument, pass it down
20474         to dump_generic_node.
20475         (NIY): Pass also flags to do_niy.
20477 2016-04-15  Thomas Schwinge  <thomas@codesourcery.com>
20479         * omp-low.c (simd_clone_struct_alloc, simd_clone_struct_copy)
20480         (simd_clone_vector_of_formal_parm_types)
20481         (simd_clone_clauses_extract, simd_clone_compute_base_data_type)
20482         (simd_clone_mangle, simd_clone_create)
20483         (simd_clone_adjust_return_type, create_tmp_simd_array)
20484         (simd_clone_adjust_argument_types, simd_clone_init_simd_arrays)
20485         (struct modify_stmt_info, ipa_simd_modify_stmt_ops)
20486         (ipa_simd_modify_function_body, simd_clone_linear_addend)
20487         (simd_clone_adjust, expand_simd_clones, ipa_omp_simd_clone)
20488         (pass_data_omp_simd_clone, class pass_omp_simd_clone)
20489         (pass_omp_simd_clone::gate, make_pass_omp_simd_clone): Move into...
20490         * omp-simd-clone.c: ... this new file.
20491         (simd_clone_vector_of_formal_parm_types): Make it static.
20492         * Makefile.in (OBJS): Add omp-simd-clone.o.
20494 2016-04-15  Kirill Yukhin  <kirill.yukhin@intel.com>
20496         PR target/70662
20497         * config/i386/sse.md: Use proper memory operand modifiers.
20500 2016-04-15  Richard Biener  <rguenther@suse.de>
20501         Alan Modra  <amodra@gmail.com>
20503         PR tree-optimization/70130
20504         * tree-vect-data-refs.c (vect_supportable_dr_alignment): Detect
20505         when alignment stays not the same and no not use the realign
20506         scheme then.
20508 2016-04-14  Michael Meissner  <meissner@linux.vnet.ibm.com>
20510         PR target/70669
20511         * config/rs6000/rs6000.c (rs6000_init_hard_regno_mode_ok): Add
20512         direct move handlers for KFmode. Change TFmode handlers test from
20513         FLOAT128_IEEE_P to FLOAT128_VECTOR_P.
20515 2016-04-14  Jakub Jelinek  <jakub@redhat.com>
20517         PR c++/70594
20518         * ipa-utils.h (polymorphic_ctor_dtor_p): New prototype.
20519         * ipa-polymorphic-call.c (polymorphic_ctor_dtor_p): New function.
20520         (inlined_polymorphic_ctor_dtor_block_p): Use it.
20521         * tree-ssa-live.c (remove_unused_scope_block_p): When
20522         in_ctor_dtor_block, avoid discarding not just BLOCKs with
20523         BLOCK_ABSTRACT_ORIGIN being FUNCTION_DECL, but even when
20524         block_ultimate_origin is FUNCTION_DECL.
20525         (remove_unused_locals): If current_function_decl is
20526         polymorphic_ctor_dtor_p, pass initial true to
20527         remove_unused_scope_block_p' is_ctor_dtor_block.
20529 2016-04-14  Martin Sebor  <msebor@redhat.com>
20531         PR c++/69517
20532         PR c++/70019
20533         PR c++/70588
20534         * doc/extend.texi (Variable Length): Revert.
20536 2016-04-14  Marek Polacek  <polacek@redhat.com>
20537             Jan Hubicka  <hubicka@ucw.cz>
20539         PR c++/70029
20540         * tree.c (verify_type): Disable the canonical type of main variant
20541         check.
20543 2016-04-14  Jason Merrill  <jason@redhat.com>
20545         * cfgexpand.c, expr.c: Revert previous change.
20547 2016-04-14  Cesar Philippidis  <cesar@codesourcery.com>
20549         PR middle-end/70643
20550         * omp-low.c (lower_oacc_reductions): Check for TREE_CONSTANT
20551         when building a mem ref for the incoming reduction variable.
20553 2016-04-14  Richard Biener  <rguenther@suse.de>
20555         PR tree-optimization/70614
20556         * tree-scalar-evolution.c (analyze_evolution_in_loop): Terminate
20557         loop if the evolution dropped to chrec_dont_know.
20558         (interpret_condition_phi): Likewise.
20560 2016-04-14  Richard Biener  <rguenther@suse.de>
20562         PR tree-optimization/70623
20563         * tree-ssa-pre.c (changed_blocks): Make global ...
20564         (compute_antic): ... local here.  Move and fix worklist
20565         handling here.  Do not clear EDGE_DFS_BACK or call mark_dfs_back_edges.
20566         (compute_antic_aux): Add dumping for MAX assumed succs.  Remove
20567         worklist handling, dump when ANTIC_IN changed.
20568         (compute_partial_antic_aux): Remove worklist handling.
20569         (init_pre): Do not compute post dominators.  Add a comment about
20570         the CFG order chosen.
20571         (fini_pre): Do not free post dominators.
20573 2016-04-13  Martin Sebor  <msebor@redhat.com>
20575         PR c++/69517
20576         PR c++/70019
20577         PR c++/70588
20578         * doc/extend.texi (Variable Length): Document C++ specifics.
20580 2016-04-13  Jakub Jelinek  <jakub@redhat.com>
20582         PR c++/70641
20583         * ipa-pure-const.c (pass_nothrow::execute): Call maybe_clean_eh_stmt
20584         on all recursive call stmts.  Return TODO_cleanup_cfg if any dead
20585         eh edges have been purged.
20587         PR c++/70594
20588         * tree-sra.c (create_access_replacement,
20589         get_replaced_param_substitute): Set DECL_NAMELESS on repl if it
20590         gets fancy name.
20591         * tree-pretty-print.c (dump_fancy_name): New function.
20592         (dump_decl_name, dump_generic_node): Use it.
20594 2016-04-13  Jason Merrill  <jason@redhat.com>
20596         * cfgexpand.c (pass_expand::execute): Handle attribute "abi warning".
20597         * expr.c (expand_expr_real_1): Likewise.
20599 2016-04-13  Ilya Enkovich  <ilya.enkovich@intel.com>
20601         * config/i386/i386.md (kunpckhi): Swap operands.
20602         (kunpcksi): Likewise.
20603         (kunpckdi): Likewise.
20604         * config/i386/sse.md (vec_pack_trunc_qi): Likewise.
20605         (vec_pack_trunc_<mode>): Likewise.
20607 2016-04-13  Jakub Jelinek  <jakub@redhat.com>
20609         PR debug/70628
20610         * explow.c (convert_memory_address_addr_space_1): Formatting fix.
20612         PR middle-end/70633
20613         * gimplify.c (gimplify_init_constructor): Clear TREE_STATIC if
20614         gimplification turns some element into non-constant.
20616         PR debug/70628
20617         * rtl.h (convert_memory_address_addr_space_1): New prototype.
20618         * explow.c (convert_memory_address_addr_space_1): No longer static,
20619         add NO_EMIT argument and don't call convert_modes if true, pass
20620         it down recursively, remove break after return.
20621         (convert_memory_address_addr_space): Adjust caller.
20622         * simplify-rtx.c (simplify_unary_operation_1): Call
20623         convert_memory_address_addr_space_1 instead of convert_memory_address,
20624         if it returns NULL, don't simplify.
20626 2016-04-12  Eric Botcazou  <ebotcazou@adacore.com>
20628         PR target/70630
20629         * config/sparc/sparc.c (sparc_compute_frame_size): Add parentheses.
20631 2016-04-12  Jakub Jelinek  <jakub@redhat.com>
20633         * config/i386/i386.c (ix86_simd_clone_compute_vecsize_and_simdlen):
20634         Bump the upper SIMDLEN limits, so that if the return type or
20635         characteristic type if the return type is void can be passed in
20636         all available SSE2/AVX/AVX2/AVX512-F registers, the SIMDLEN is
20637         allowed.
20639 2016-04-12  Michael Meissner  <meissner@linux.vnet.ibm.com>
20641         PR target/70640
20642         * config/rs6000/rs6000.md (ieee_128bit_vsx_neg<mode>2_internal):
20643         Do not use "=" constraint on an input constraint.
20644         (ieee_128bit_vsx_abs<mode>2_internal): Likewise.
20645         (ieee_128bit_vsx_nabs<mode>2_internal): Likewise.
20646         (ieee_128bit_vsx_nabs<mode>2): Correct splitter so that it
20647         generates (neg (abs ...)) instead of (abs ...).
20649 2016-04-12  Jakub Jelinek  <jakub@redhat.com>
20651         PR rtl-optimization/70596
20652         * lra-spills.c (spill_pseudos): Don't delete debug insns, instead
20653         just invalidate LRA data and reset them.  Adjust dump wording.
20655 2016-04-12  Martin Liska  <mliska@suse.cz>
20657         Revert
20658         2016-03-30  Jan Hubicka  <hubicka@ucw.cz>
20660         * tree-ssa-loop-niter.c (idx_infer_loop_bounds): We can't get realistic
20661         estimates here.
20662         * tree-ssa-loop-unswitch.c (tree_unswitch_single_loop): Use also
20663         max_loop_iterations_int.
20664         (tree_unswitch_outer_loop): Likewise.
20665         * tree-ssa-loop-ivopts.c (avg_loop_niter): Likewise.
20666         * tree-vect-loop.c (vect_analyze_loop_2): Likewise.
20668 2016-04-12  Tom de Vries  <tom@codesourcery.com>
20670         PR tree-optimization/68756
20671         * graphite-isl-ast-to-gimple.c (copy_cond_phi_args): Use new_expr
20672         instead of new_name.
20674 2016-04-12  Jakub Jelinek  <jakub@redhat.com>
20676         PR tree-optimization/70602
20677         * tree-sra.c (generate_subtree_copies): Don't write anything into
20678         constant pool decls.
20680         * omp-low.c (lower_omp_target): Use GOMP_MAP_FIRSTPRIVATE_INT
20681         regardless whether there are depend clauses or not.
20683 2016-04-11  Michael Meissner  <meissner@linux.vnet.ibm.com>
20685         PR target/70381
20686         * config/rs6000/rs6000.c (rs6000_opt_masks): Disable using the
20687         target attribute and pragma from changing the -mfloat128
20688         and -mfloat128-hardware options.
20690         * doc/extend.texi (Additional Floating Types): Document PowerPC
20691         __float128 restrictions.
20693 2016-04-11  James Greenhalgh  <james.greenhalgh@arm.com>
20695         PR target/70133
20696         * config/aarch64/driver-aarch64.c
20697         (aarch64_get_extension_string_for_isa_flags): New.
20698         (arch_extension): Rename to...
20699         (aarch64_arch_extension): ...This.
20700         (ext_to_feat_string): Rename to...
20701         (aarch64_extensions): ...This.
20702         (aarch64_core_data): Keep track of architecture extension flags.
20703         (cpu_data): Rename to...
20704         (aarch64_cpu_data): ...This.
20705         (aarch64_arch_driver_info): Keep track of architecture extension
20706         flags.
20707         (get_arch_name_from_id): Rename to...
20708         (get_arch_from_id): ...This, change return type.
20709         (host_detect_local_cpu): Update and reformat for renames, handle
20710         extensions through common infrastructure.
20712 2016-04-11  James Greenhalgh  <james.greenhalgh@arm.com>
20714         PR target/70133
20715         * config/aarch64/aarch64-common.c (aarch64_option_extension): Keep
20716         track of a canonical flag name.
20717         (all_extensions): Likewise.
20718         (arch_to_arch_name): Also track extension flags enabled by the arch.
20719         (all_architectures): Likewise.
20720         (aarch64_parse_extension): Move to here.
20721         (aarch64_get_extension_string_for_isa_flags): Take a new argument,
20722         rework.
20723         (aarch64_rewrite_selected_cpu): Update for above change.
20724         * config/aarch64/aarch64-option-extensions.def: Rework the way flags
20725         are handled, such that the single explicit value enabled by an
20726         extension is kept seperate from the implicit values it also enables.
20727         * config/aarch64/aarch64-protos.h (aarch64_parse_opt_result): Move
20728         to here.
20729         (aarch64_parse_extension): New.
20730         * config/aarch64/aarch64.c (aarch64_parse_opt_result): Move from
20731         here to config/aarch64/aarch64-protos.h.
20732         (aarch64_parse_extension): Move from here to
20733         common/config/aarch64/aarch64-common.c.
20734         (aarch64_option_print): Update.
20735         (aarch64_declare_function_name): Likewise.
20736         (aarch64_start_file): Likewise.
20737         * config/aarch64/driver-aarch64.c (arch_extension): Keep track of
20738         the canonical flag for extensions.
20739         * config.gcc (aarch64*-*-*): Extend regex for capturing extension
20740         flags.
20742 2016-04-11  James Greenhalgh  <james.greenhalgh@arm.com>
20744         * config/aarch64/aarch64.h (AARCH64_FL_FOR_ARCH8_1): Also add
20745         AARCH64_FL_CRC.
20747 2016-04-09  Tom de Vries  <tom@codesourcery.com>
20749         PR tree-optimization/68953
20750         * graphite-sese-to-poly.c (pdr_add_memory_accesses): Order accesses from
20751         first to last subscript.
20753 2016-04-09  Jakub Jelinek  <jakub@redhat.com>
20755         PR tree-optimization/70586
20756         * tree-ssa-ifcombine.c (bb_no_side_effects_p): Return false
20757         for any calls.
20759 2016-04-08  Cesar Philippidis  <cesar@codesourcery.com>
20761         PR lto/70289
20762         PR ipa/70348
20763         PR tree-optimization/70373
20764         PR middle-end/70533
20765         PR middle-end/70534
20766         PR middle-end/70535
20767         * gimplify.c (gimplify_adjust_omp_clauses): Add or adjust data
20768         clauses for acc parallel reductions as necessary.  Error on those
20769         that are private.
20770         * omp-low.c (scan_sharing_clauses): Don't install variables which
20771         are used in acc parallel reductions.
20772         (lower_rec_input_clauses): Remove dead code.
20773         (lower_oacc_reductions): Add support for reference reductions.
20774         (lower_reduction_clauses): Remove dead code.
20775         (lower_omp_target): Don't remap variables appearing in acc parallel
20776         reductions.
20777         * tree.h (OMP_CLAUSE_MAP_IN_REDUCTION): New macro.
20779 2016-04-08  Jakub Jelinek  <jakub@redhat.com>
20781         PR middle-end/70593
20782         * tree-ssa-coalesce.c (build_ssa_conflict_graph): For stmt
20783         with multiple SSA_NAME defs, force the outputs other than first
20784         to be live before calling live_track_process_def on each output.
20786         PR rtl-optimization/70574
20787         * fwprop.c (forward_propagate_and_simplify): Don't add
20788         REG_EQUAL note if DF_REF_REG (use) is a paradoxical subreg.
20789         (try_fwprop_subst): Don't add REG_EQUAL note if there are any
20790         paradoxical subregs within *loc.
20792 2016-04-08  Thomas Schwinge  <thomas@codesourcery.com>
20794         * config/arc/arc.h (LINK_COMMAND_SPEC): Use gt to ignore
20795         -ftree-parallelize-loops={0,1}.
20796         * config/darwin.h (LINK_COMMAND_SPEC_A): Likewise.
20797         * config/i386/mingw32.h (GOMP_SELF_SPECS): Likewise.
20798         * config/ia64/hpux.h (LIB_SPEC): Likewise.
20799         * config/pa/pa-hpux11.h (LIB_SPEC): Likewise.
20800         * config/pa/pa64-hpux.h (LIB_SPEC): Likewise.
20802 2016-04-08  Maxim Ostapenko  <m.ostapenko@samsung.com>
20804         PR sanitizer/70541
20805         * asan.c (instrument_derefs): If we get unknown location, extract it
20806         with EXPR_LOCATION.
20807         (maybe_instrument_call): Instrument gimple_call's arguments if needed.
20809 2016-04-08  Tom de Vries  <tom@codesourcery.com>
20811         * omp-low.c (lower_omp_target): Set TREE_NO_WARNING for oacc
20812         implicit firstprivate clause.
20814 2016-04-08  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
20816         PR target/70566
20817         * config/arm/thumb2.md (tst + branch-> lsls + branch
20818         peephole below *orsi_not_shiftsi_si): Require that condition
20819         register is dead after the peephole.
20820         (second peephole after the above): Likewise.
20822 2016-04-08  Alan Modra  <amodra@gmail.com>
20824         PR target/70117
20825         * builtins.c (fold_builtin_classify): For IBM extended precision,
20826         look at just the high-order double to test for NaN.
20827         (fold_builtin_interclass_mathfn): Similarly for Inf.  For isnormal
20828         test just the high double for Inf but both doubles for subnormal
20829         limit.
20831 2016-04-07  Jakub Jelinek  <jakub@redhat.com>
20833         * cgraph.h (struct cgraph_simd_clone): Add mask_mode field.
20834         * omp-low.c (simd_clone_init_simd_arrays, simd_clone_adjust): Handle
20835         node->simdclone->mask_mode != VOIDmode masks.
20836         (simd_clone_adjust_argument_types): Likewise.  Move sc var definition
20837         earlier, use it instead of node->simdclone.
20838         * config/i386/i386.c (ix86_simd_clone_compute_vecsize_and_simdlen):
20839         Set clonei->mask_mode.
20841 2016-04-06  Patrick Palka  <ppalka@gcc.gnu.org>
20843         PR c/70436
20844         * parser.c (cp_parser_iteration_statement): New parameter IF_P.
20845         Pass it through to cp_parser_already_scoped_statement.
20846         (cp_parser_already_scoped_statement): New parameter IF_P.  Pass
20847         it through to cp_parser_statement.
20848         (cp_parser_statement): Pass IF_P through to
20849         cp_parser_iteration_statement.
20850         (cp_parser_pragma): Adjust call to
20851         cp_parser_iteration_statement.
20853 2016-04-06  Patrick Palka  <ppalka@gcc.gnu.org>
20855         PR c/70436
20856         * gimplify.c (gimplify_omp_ordered): Add explicit braces to
20857         resolve a future -Wparentheses warning.
20858         * omp-low.c (scan_sharing_clauses): Likewise.
20859         * tree-parloops.c (eliminate_local_variables): Likewise.
20861 2016-04-06  Vladimir Makarov  <vmakarov@redhat.com>
20863         PR rtl-optimization/70398
20864         * lra-constraints.c (process_address_1): Check zero scale and code
20865         for reloading with zero scale.
20867 2016-04-06  Uros Bizjak  <ubizjak@gmail.com>
20869         * config/i386/sse.md (shuffletype): Add V32HI and V4TI modes.
20870         (ssescalarsize): Add V8SF, V4SF, V4DF and V2DF modes.
20872 2016-04-06  Jakub Jelinek  <jakub@redhat.com>
20874         * config/i386/i386.c (ix86_simd_clone_compute_vecsize_and_simdlen):
20875         Add support for AVX512F clones, include them by default for
20876         exported OpenMP declare simd functions.  For AVX2 allow simdlen 32
20877         and use it if charasteric type is 8-bit, for AVX512F allow simdlen
20878         up to 128.
20880         PR middle-end/70550
20881         * tree.h (OMP_CLAUSE_FIRSTPRIVATE_IMPLICIT): Define.
20882         * gimplify.c (gimplify_adjust_omp_clauses_1): Set it for implicit
20883         firstprivate clauses.
20884         * omp-low.c (lower_send_clauses): Set TREE_NO_WARNING for
20885         OMP_CLAUSE_FIRSTPRIVATE_IMPLICIT !by_ref vars in task contexts.
20886         (lower_omp_target): Set TREE_NO_WARNING for
20887         non-addressable possibly uninitialized vars which are copied into
20888         addressable temporaries or copied for GOMP_MAP_FIRSTPRIVATE_INT.
20890 2016-04-05  John David Anglin  <danglin@gcc.gnu.org>
20892         * config/pa/predicates.md (integer_store_memory_operand): Accept
20893         REG+D operands with a large offset when reload_in_progress is true.
20894         (floating_point_store_memory_operand): Likewise.
20896 2016-04-05  Jakub Jelinek  <jakub@redhat.com>
20898         PR c++/70336
20899         * match.pd (nested int casts): Limit to GIMPLE.
20901 2016-04-05  Jan Hubicka  <hubicka@ucw.cz>
20903         PR ipa/66223
20904         * ipa-devirt.c (maybe_record_node): Fix comment; use
20905         SANITIZE_UNREACHABLE instead of SANITIZE_UNDEFINED.
20907 2016-04-05  Jakub Jelinek  <jakub@redhat.com>
20909         PR rtl-optimization/70542
20910         * ree.c (add_removable_extension): For VECTOR_MODE_P punt
20911         if there are any uses other than insn or debug insns.
20913 2016-04-05  Marc Glisse  <marc.glisse@inria.fr>
20914             Jakub Jelinek  <jakub@redhat.com>
20916         PR tree-optimization/70509
20917         * simplify-rtx.c (simplify_binary_operation_1) <case VEC_SELECT>:
20918         Shift HOST_WIDE_INT_1U instead of 1.
20920 2016-04-05  Zdenek Sojka  <zsojka@seznam.cz>
20922         PR tree-optimization/70509
20923         * tree-ssa-forwprop.c (simplify_bitfield_ref): Use bitsize_int instead
20924         of the vector base type for index.
20926 2016-04-05  Uros Bizjak  <ubizjak@gmail.com>
20928         PR target/70510
20929         * config/i386/sse.md (iptr): Add V64QI, V32HI, V16SI and V8DI modes.
20931 2016-04-05  Richard Biener  <rguenther@suse.de>
20933         PR tree-optimization/70526
20934         * tree-sra.c (build_ref_for_offset): Use prev_base to
20935         extract the alias pointer type.
20937 2016-04-05  Richard Biener  <rguenther@suse.de>
20939         * dse.c (struct store_info): Remove alias_set member.
20940         (struct read_info_type): Likewise.
20941         (clear_alias_group, clear_alias_mode_table, clear_alias_mode_holder,
20942         spill_deleted, clear_alias_set_lookup): Remove.
20943         (get_group_info): Remove dead base == NULL_RTX case.
20944         (dse_step0): Remove initialization of removed variables.
20945         (delete_dead_store_insn): Reomve alias set dumping.
20946         (free_read_records): Remove alias_set handling.
20947         (canon_address): Remove alias_set_out parameter.
20948         (record_store): Remove spill_alias_set, it's always zero.
20949         (check_mem_read_rtx): Likewise.
20950         (dse_step2): Rename from ...
20951         (dse_step2_nospill): ... this.  Adjust.
20952         (scan_stores): Rename from ...
20953         (scan_stores_nospill): ... this.
20954         (scan_reads): Rename from ...
20955         (scan_reads_nospill): ... this.
20956         (scan_stores_spill, scan_reads_spill): Remove.
20957         (dse_step3_scan): Remove for_spills argument which is always false.
20958         (dse_step3): Likewise.
20959         (dse_step5): Rename from ...
20960         (dse_step5_nospill): ... this.  Remove alias_set handling.
20961         (rest_of_handle_dse): Adjust.
20963 2016-04-05  Jakub Jelinek  <jakub@redhat.com>
20965         PR target/70525
20966         * config/i386/sse.md (*andnot<mode>3): Simplify assertions.
20967         Use vpandn<ssemodesuffix> for V16SI/V8DImode, vpandnq for
20968         V32HI/V64QImode, don't use <mask_operand3_1>, fix up formatting.
20969         (*andnot<mode>3_mask): Remove insn with VI12_AVX512VL iterator.
20971 2016-04-05  Richard Biener  <rguenther@suse.de>
20973         PR middle-end/70499
20974         * gimplify-me.c (gimple_regimplify_operands): Do not rewrite
20975         non-register type temporaries into SSA.
20977 2016-04-04  Jan Hubicka  <hubicka@ucw.cz>
20979         PR ipa/66223
20980         * ipa-devirt.c (maybe_record_node): Do not optimize cxa_pure_virtual
20981         calls when sanitizing.
20982         (possible_polymorphic_call_target_p): Fix formatting.
20984 2016-04-04  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
20985             Jakub Jelinek  <jakub@redhat.com>
20987         PR middle-end/70457
20988         * tree-inline.c (estimate_num_insn): Use gimple_call_builtin_p
20989         to ensure a call statement is compatible with a built-in's
20990         prototype.
20991         * tree-ssa-math-opts.c (pass_optimize_windening_mul::execute):
20992         Likewise.
20994 2016-04-04  Richard Biener  <rguenther@suse.de>
20996         PR rtl-optimization/70484
20997         * rtl.h (canon_output_dependence): Declare.
20998         * alias.c (canon_output_dependence): New function.
20999         * dse.c (record_store): Use canon_output_dependence rather
21000         than canon_true_dependence.
21002 2016-03-30  Jan Hubicka  <hubicka@ucw.cz>
21004         PR ipa/68881
21005         * cgraph.h (symtab_node::copy_visibility_from): New function.
21006         * symtab.c (symtab_node::copy_visibility_from): New function.
21007         * ipa-visibility.c (optimize_weakref): New function.
21008         (function_and_variable_visibility): Use it.
21010 2016-04-04  Martin Liska  <mliska@suse.cz>
21012         PR hsa/70402
21013         * hsa-gen.c (gen_hsa_insns_for_switch_stmt): Guard index
21014         value that is really in range handled by SBR instruction.
21015         * hsa-brig.c (emit_switch_insn): Do not emit unconditional jump.
21016         * hsa-dump.c (dump_hsa_insn_1): Do not dump default BB.
21017         * hsa.h (hsa_insn_sbr::m_default_bb): Remove field.
21019 2016-04-03  Oleg Endo  <olegendo@gcc.gnu.org>
21021         PR target/70416
21022         PR target/67391
21023         * config/sh/sh.md (*addsi3): Allow pattern when reload_in_progress is
21024         set, but not for SP_REG operands.
21026 2016-04-02  Martin Sebor  <msebor@redhat.com>
21028         PR c++/67376
21029         * fold-const.c (maybe_nonzero_address): New function.
21030         (fold_comparison): Call it.  Fold equality and relational
21031         expressions involving null pointers.
21032         (tree_single_nonzero_warnv_p): Call maybe_nonzero_address.
21034 2016-03-31  Evandro Menezes  <e.menezes@samsung.com>
21036         Fix the predicate "aarch64_simd_reg_or_zero" to correctly validate
21037         the "Y" constraint (scalar FP 0.0 immediate).
21039         * config/aarch64/predicates.md (aarch64_simd_reg_or_zero):
21040         Add the "const_double" to the list of operand constraints.
21042 2016-04-01  Jakub Jelinek  <jakub@redhat.com>
21044         PR rtl-optimization/70467
21045         * config/i386/i386.md (*add<dwi>3_doubleword, *sub<dwi>3_doubleword):
21046         If low word of the last operand is 0, just emit addition/subtraction
21047         for the high word.
21049 2016-04-01  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
21051         PR target/70404
21052         * config/s390/s390.c (s390_expand_insv): Check for everything
21053         constant instead of just VOIDmode stuff.
21055 2016-04-01  Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>
21057         PR target/70496
21058         * config/arm/arm.h (ASM_APP_OFF): Handle TARGET_ARM and TARGET_THUMB.
21060 2016-04-01  Nathan Sidwell  <nathan@acm.org>
21062         * tree.def (TRY_CATCH_EXPR): Correct documentation.
21064 2016-03-31  Vladimir Makarov  <vmakarov@redhat.com>
21066         PR rtl-optimization/70461
21067         * ira-color.c (allocno_copy_cost_saving): Use allocno class if it
21068         is necessary.
21070 2016-03-31  Martin Liska  <mliska@suse.cz>
21072         PR hsa/70399
21073         * hsa-brig.c (hsa_op_immed::emit_to_buffer): Emit either
21074         a tree value or an immediate integer value to a buffer
21075         that is eventually copied to a BRIG section.
21076         (emit_immediate_operand): Call the function here.
21077         * hsa-dump.c (dump_hsa_immed): Remove checking assert.
21078         * hsa-gen.c (hsa_op_immed::hsa_op_immed): Remove initialization
21079         of class' fields that are removed.
21080         (hsa_op_immed::~hsa_op_immed): Remove deinitialization.
21081         * hsa.h (class hsa_op_immed): Remove m_brig_repr and
21082         m_brig_repr_size fields.
21084 2016-03-31  Martin Liska  <mliska@suse.cz>
21086         PR hsa/70391
21087         * hsa-gen.c (hsa_function_representation::update_dominance): New
21088         function.
21089         (convert_addr_to_flat_segment): Likewise.
21090         (gen_hsa_memory_set): New alignment argument.
21091         (gen_hsa_ctor_assignment): Likewise.
21092         (gen_hsa_insns_for_single_assignment): Provide alignment
21093         to gen_hsa_ctor_assignment.
21094         (gen_hsa_insns_for_direct_call): Add new argument.
21095         (expand_lhs_of_string_op): New function.
21096         (expand_string_operation_builtin): Likewise.
21097         (expand_memory_copy): New function.
21098         (expand_memory_set): New function.
21099         (gen_hsa_insns_for_call): Use HOST_WIDE_INT.
21100         (convert_switch_statements): Change signature.
21101         (generate_hsa): Use a return value of the function.
21102         (pass_gen_hsail::execute): Do not call
21103         convert_switch_statements here.
21104         * hsa-regalloc.c (hsa_regalloc): Call update_dominance.
21105         * hsa.h (hsa_function_representation::m_modified_cfg): New flag.
21106         (hsa_function_representation::update_dominance): New function.
21108 2016-03-31  Martin Liska  <mliska@suse.cz>
21110         PR hsa/70391
21111         * hsa-brig.c (emit_directive_variable): Emit alignment
21112         according to hsa_symbol::m_align.
21113         * hsa-dump.c (hsa_byte_alignment): Move the function to another file.
21114         (dump_hsa_symbol): Dump alignment of HSA symbols.
21115         * hsa-gen.c (get_symbol_for_decl): Set-up alignment of a symbol.
21116         (gen_hsa_addr_with_align): New function.
21117         (hsa_bitmemref_alignment): Use newly added function.
21118         (gen_hsa_insns_for_load): Likewise.
21119         (gen_hsa_insns_for_store): Likewise.
21120         (gen_hsa_memory_copy): New argument added.
21121         (gen_hsa_insns_for_single_assignment): Respect
21122         alignment for assignments processed via gen_hsa_memory_copy.
21123         (gen_hsa_insns_for_direct_call): Likewise.
21124         (gen_hsa_insns_for_return): Likewise.
21125         (gen_function_def_parameters): Set default alignment.
21126         * hsa.c (hsa_object_alignment): New function.
21127         (hsa_byte_alignment): Pasted function.
21128         * hsa.h (hsa_symbol::m_align): New field.
21130 2016-03-31  Bin Cheng  <bin.cheng@arm.com>
21132         * tree-ssa-loop-ivopts.c (get_computation_cost_at): Initialize
21133         scratch field for goto case.
21135 2016-03-31  James Greenhalgh  <james.greenhalgh@arm.com>
21137         * config/arm/linux-elf.h (ASM_OUTPUT_DEF): Delete.
21139 2016-03-31  Ilya Enkovich  <enkovich.gnu@gmail.com>
21141         PR target/70442
21142         * config/i386/i386.c (scalar_chain::convert_op): Fix description.
21143         (scalar_chain::convert_insn): Call convert_op for reg
21144         moves to handle undefined registers.
21146 2016-03-31  Nathan Sidwell  <nathan@acm.org>
21148         PR c++/70393
21149         * varasm.c (output_constructor_regular_field): Flush bitfield earlier.
21150         Assert we don't want to move backwards.
21152 2016-03-31  Kirill Yukhin  <kirill.yukhin@intel.com>
21154         PR target/70453
21155         * config/i386/sse.md (define_mode_attr shuffletype): Fix typo.
21157 2016-03-31  Jakub Jelinek  <jakub@redhat.com>
21159         PR rtl-optimization/70460
21160         * ira.c (indirect_jump_optimize): Don't substitute LABEL_REF
21161         with operand from REG_LABEL_OPERAND, instead substitute
21162         SET_SRC or REG_EQUAL note content if it is a LABEL_REF.
21163         Don't do anything for REG_NON_LOCAL_GOTO jumps.
21165 2016-03-31  Martin Liska  <mliska@suse.cz>
21167         * passes.c (execute_one_pass): Do not call
21168         todo_after for a discarded function.
21170 2016-03-31  Bin Cheng  <bin.cheng@arm.com>
21172         * tree-ssa-loop-ivopts.c (struct comp_cost): New scrach field.
21173         (no_cost, infinite_cost): Initialize the new field.
21174         (get_computation_cost_at): Record setup cost.
21175         (determine_use_iv_cost_address): Skip cost computation for sub
21176         uses if we can estimate it without losing accuracy.
21178 2016-03-30  Jan Hubicka  <hubicka@ucw.cz>
21180         * tree-ssa-loop-niter.c (idx_infer_loop_bounds): We can't get realistic
21181         estimates here.
21182         * tree-ssa-loop-unswitch.c (tree_unswitch_single_loop): Use also
21183         max_loop_iterations_int.
21184         (tree_unswitch_outer_loop): Likewise.
21185         * tree-ssa-loop-ivopts.c (avg_loop_niter): Likewise.
21186         * tree-vect-loop.c (vect_analyze_loop_2): Likewise.
21188 2016-03-30  Richard Biener  <rguenther@suse.de>
21190         PR middle-end/70450
21191         * fold-const.c (extract_muldiv_1): Fix thinko in wide_int::from usage.
21193 2016-03-30  Jakub Jelinek  <jakub@redhat.com>
21195         PR target/70421
21196         * config/i386/i386.c (ix86_expand_vector_set): Fix up argument order
21197         in gen_blendm expander.
21199 2016-03-30  Nick Clifton  <nickc@redhat.com>
21201         PR target/62254
21202         * config/arm/arm.c (arm_reload_out_hi): Add code to handle the
21203         case where we are already provided with an SImode SUBREG.
21205 2016-03-30  H.J. Lu  <hongjiu.lu@intel.com>
21207         PR target/70439
21208         * config/i386/i386.c (ix86_expand_epilogue): Properly check
21209         conflict between DRAP register and __builtin_eh_return.
21211 2016-03-30  Michael Matz  <matz@suse.de>
21212             Richard Biener  <rguenther@suse.de>
21214         PR ipa/12392
21215         * ipa-polymorphic-call.c (struct type_change_info): Change
21216         speculative to an unsigned allowing to limit the work we do.
21217         (csftc_abort_walking_p): New inline function..
21218         (check_stmt_for_type_change): Limit the number of may-defs
21219         skipped for speculative devirtualization to
21220         max-speculative-devirt-maydefs.
21221         * params.def (max-speculative-devirt-maydefs): New param.
21222         * doc/invoke.texi (--param max-speculative-devirt-maydefs): Document.
21224 2016-03-30  Mike Stump  <mrs@gcc.gnu.org>
21226         PR target/63890
21227         * config/i386/i386.h (ACCUMULATE_OUTGOING_ARGS): Use when profiling
21228         and TARGET_MACHO.
21230 2016-03-30  Patrick Palka  <ppalka@gcc.gnu.org>
21232         PR tree-optimization/59124
21233         * tree-vrp.c (register_edge_assert_for_2): For NAME != CST1
21234         where NAME = A +- CST2 add the assertion A != (CST1 -+ CST2).
21236 2016-03-29  Jeff Law  <law@redhat.com>
21238         * tree-ssa-coalesce.c (struct ssa_conflicts): Fix typo in comment.
21240 2016-03-10  Jan Hubicka  <hubicka@ucw.cz>
21242         * tree-ssa-loop-ivcanon.c (try_peel_loop): Change type of peel
21243         to HOST_WIDE_INT.
21245 2016-03-29  Thomas Schwinge  <thomas@codesourcery.com>
21247         * config/gnu.h (CPP_SPEC, LIB_SPEC): Don't override.
21248         * config/i386/gnu.h (STARTFILE_SPEC): Use gcrt1.o instead of
21249         gcrt0.o if linking dynamically.
21251 2016-03-10  Jan Hubicka  <hubicka@ucw.cz>
21253         PR ipa/70283
21254         * ipa-devirt.c (methods_equal_p): New function.
21255         (compare_virtual_tables): Use it.
21256         * cgraph.h (symbol_table::symbol_suffix_separator): Declare.
21257         * cgraphclones.c (clone_function_name_1): Use
21258         symbol_table::symbol_suffix_separator.
21259         * coverage.c (build_var): Likewise.
21260         * symtab.c (symbol_table::symbol_suffix_separator): New.
21262 2016-03-29  Jakub Jelinek  <jakub@redhat.com>
21264         PR rtl-optimization/70429
21265         * combine.c (simplify_shift_const_1): For ASHIFTRT don't optimize
21266         (cst1 >> count) >> cst2 into (cst1 >> cst2) >> count if
21267         mode != result_mode.
21269         PR c++/70353
21270         * tree-inline.c (remap_decls): Don't add_local_decl if cfun is null.
21272         PR tree-optimization/70405
21273         * ssa-iterators.h (num_imm_uses): Add missing braces.
21275 2016-03-29  Vladimir Makarov  <vmakarov@redhat.com>
21277         PR rtl-optimization/68695
21278         * ira-color.c (allocno_copy_cost_saving): New.
21279         (improve_allocation): Use it.
21281 2016-03-29  Richard Henderson  <rth@redhat.com>
21283         PR middle-end/70355
21284         * lower-subreg.c (simplify_subreg_concatn): Reject paradoxical subregs.
21286 2016-03-29  Richard Biener  <rguenther@suse.de>
21288         PR middle-end/70424
21289         * ipa-prop.c (ipa_compute_jump_functions_for_edge): Always
21290         use alignment returned by get_pointer_alignment_1 if it is
21291         bigger than BITS_PER_UNIT.
21292         * builtins.c (get_pointer_alignment_1): Do not return true
21293         for alignment extracted from SSA info.
21295 2016-03-28  James Bowman  <james.bowman@ftdichip.com>
21297         * config/ft32/ft32.opt (mnodiv): New.
21298         * config/ft32/ft32.md (*divsi3, *modsi3): Qualify with TARGET_NODIV.
21299         * doc/invoke.texi (FT32 Options -mnodiv): New.
21301 2016-03-28  Kirill Yukhin  <kirill.yukhin@intel.com>
21303         PR target/70406
21304         * config/i386/i386.md (define_split, andn): Fix modes.
21306 2016-03-26  Richard Biener  <rguenther@suse.de>
21307             Prathamesh Kulkarni  <prathamesh.kulkarni@linaro.org>
21309         PR ipa/70366
21310         * ipa-inline-transform.c (inline_call): Pass opts_for_fn (to->decl)
21311         instead of
21312         TREE_OPTIMIZATION (DECL_FUNCTION_SPECIFIC_OPTIMIZATION (to->decl))
21313         as 2nd argument to cl_optimization_restore().
21315 2016-03-25  Richard Henderson  <rth@redhat.com>
21317         PR target/70120
21318         * config/aarch64/aarch64.c (aarch64_asm_output_pool_epilogue): New.
21319         * config/aarch64/aarch64-protos.h: Declare it.
21320         * config/aarch64/aarch64.h (ASM_OUTPUT_POOL_EPILOGUE): New.
21322 2016-03-25  Alan Modra  <amodra@gmail.com>
21324         PR target/70052
21325         * config/rs6000/constraints.md (j): Simplify.
21326         * config/rs6000/predicates.md (easy_fp_constant): Exclude
21327         decimal float 0.D.
21328         * config/rs6000/rs6000.md (zero_fp): New mode_attr.
21329         (mov<mode>_hardfloat, mov<mode>_hardfloat32, mov<mode>_hardfloat64,
21330          mov<mode>_64bit_dm, mov<mode>_32bit): Use zero_fp in place of j
21331         in all constraint alternatives.
21332         (movtd_64bit_nodm): Delete "j" constraint alternative.
21334 2016-03-24  Aldy Hernandez  <aldyh@redhat.com>
21336         * tree-ssa-propagate.c: Enhance docs for
21337         SSA_PROP_NOT_INTERESTING.
21339 2016-03-24  Aldy Hernandez  <aldyh@redhat.com>
21341         * doc/extend.texi: Fix typo in documentation to pure attribute.
21343 2016-03-24  John David Anglin  <danglin@gcc.gnu.org>
21345         PR target/70319
21346         * config/pa/pa.md (bswapdi2): Use a scratch register.
21348 2016-03-24  Richard Henderson  <rth@redhat.com>
21350         PR middle-end/69845
21351         * fold-const.c (extract_muldiv_1): Correct test for multiplication
21352         overflow.
21354 2016-03-24  Uros Bizjak  <ubizjak@gmail.com>
21356         * config/i386/i386.md (*anddi3_doubleword): Generate AND insn
21357         using ix86_expand_binary_operator instead of gen_andsi3.
21359 2016-03-24  Richard Biener  <rguenther@suse.de>
21361         PR tree-optimization/70396
21362         * tree-vect-stmts.c (vectorizable_comparison): Use
21363         get_vectype_for_scalar_type.
21365 2016-03-24  Richard Biener  <rguenther@suse.de>
21367         PR middle-end/70370
21368         * gimplify.c (gimplify_asm_expr): Handle !allows_mem outputs
21369         with register bases.
21371 2016-03-24  Richard Biener  <rguenther@suse.de>
21373         PR tree-optimization/70372
21374         * tree-ssa-reassoc.c (eliminate_plus_minus_pair): Use
21375         build_all_ones_cst to also handle vector types correctly.
21377 2016-03-23  Michael Meissner  <meissner@linux.vnet.ibm.com>
21379         PR target/70381
21380         * config/rs6000/rs6000-cpus.def (ISA_2_6_MASKS_SERVER): Do not set
21381         -mfloat128 here.
21383 2016-03-23  Marek Polacek  <polacek@redhat.com>
21385         PR c++/69884
21386         * doc/invoke.texi: Document -Wignored-attributes.
21388 2016-03-23  Bin Cheng  <bin.cheng@arm.com>
21390         PR tree-optimization/69042
21391         * params.def (PARAM_IV_CONSIDER_ALL_CANDIDATES_BOUND): Increase the
21392         parameter from 30 to 40.
21394 2016-03-23  Bin Cheng  <bin.cheng@arm.com>
21396         PR tree-optimization/69042
21397         * tree-ssa-loop-ivopts.c (add_iv_candidate_for_use): Add IV cand
21398         for use with constant offset stripped in base.
21400 2016-03-23  Richard Biener  <rguenther@suse.de>
21402         PR middle-end/70251
21403         * match.pd (A + (B vcmp C ? 1 : 0) -> A - (B vcmp C)): Adjust
21404         mode compatibility check.
21405         (A - (B vcmp C ? 1 : 0) -> A + (B vcmp C)): Likewise.
21407 2016-03-23  Jeff Law  <law@redhat.com>
21409         PR tree-optimization/64058
21410         * tree-ssa-coalesce.c (struct coalesce_pair): Add new field
21411         CONFLICT_COUNT.
21412         (struct ssa_conflicts): Move up earlier in the file.
21413         (conflicts_, var_map_): New static variables.
21414         (initialize_conflict_count): New function to initialize the
21415         CONFLICT_COUNT field for each conflict pair.
21416         (compare_pairs): Lazily initialize the conflict count and use it
21417         as the first tie-breaker.
21418         (sort_coalesce_list): Add new arguments conflicts, map.  Initialize
21419         and wipe conflicts_ and map_ around the call to qsort.  Remove
21420         special case for 2 coalesce pairs.
21421         * bitmap.c (bitmap_count_unique_bits): New function.
21422         (bitmap_count_bits_in_word): New function, extracted from
21423         bitmap_count_bits.
21424         (bitmap_count_bits): Use bitmap_count_bits_in_word.
21425         * bitmap.h (bitmap_count_unique_bits): Declare it.
21427 2016-03-23  Ilya Enkovich  <enkovich.gnu@gmail.com>
21429         PR target/69917
21430         * config/i386/sol2.h (ASM_OUTPUT_DEF_FROM_DECLS): Follow
21431         transparent alias chain for decl assembler name.
21432         * config/sol2.c (solaris_assemble_visibility): Likewise.
21434 2016-03-23  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
21436         * config/arm/arm1020e.md (1020call_op): Reduce reservation
21437         duration.
21438         (v10_fdivs): Likewise.
21439         (v10_fdivd): Likewise.
21441 2016-03-23  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
21443         PR driver/70132
21444         * config/arm/driver-arm.c (host_detect_local_cpu): Reorder exit logic
21445         to not call fclose twice on file.
21447 2016-03-23  Jakub Jelinek  <jakub@redhat.com>
21449         PR tree-optimization/70354
21450         * tree-vect-patterns.c (vect_recog_vector_vector_shift_pattern): If
21451         oprnd0 is wider than oprnd1 and there is a cast from the wider
21452         type to oprnd1, mask it with the mask of the narrower type.
21454         PR target/70321
21455         * config/i386/i386.md (*anddi3_doubleword, *<code>di3_doubleword):
21456         Optimize TARGET_STV splitters, if high or low word of last argument
21457         is 0 or -1.
21459 2016-03-22  Jeff Law  <law@redhat.com>
21461         PR target/70232
21462         tree-ssa-threadbackward.c
21463         (fsm_find_control_statement_thread_paths): Correctly distinguish
21464         between old style jump threads vs FSM jump threads.
21466 2016-03-22  Ilya Enkovich  <enkovich.gnu@gmail.com>
21468         PR target/70302
21469         * config/i386/i386.c (scalar_chain::convert_op): Support
21470         uninitialized register usage case.
21472 2016-03-22  Richard Biener  <rguenther@suse.de>
21474         PR middle-end/70251
21475         * genmatch.c (gen_transform): Adjust last parameter to a three-state
21476         int...
21477         (capture::gen_transform): ... to change behavior when substituting
21478         a condition into cond or not-cond expr context.
21479         (dt_simplify::gen_1): Adjust.
21480         * gimple-match-head.c: Include gimplify.h for unshare_expr.
21481         * match.pd (A + (B vcmp C ? 1 : 0) -> A - (B vcmp C)): Revert
21482         last change and instead change to
21483         A + (B vcmp C ? 1 : 0) -> A - (B vcmp C ? -1 : 0).
21484         (A - (B vcmp C ? 1 : 0) -> A + (B vcmp C)): Likewise.
21486 2016-03-22  Anthony Green  <green@moxielogic.com>
21488         * config/moxie/moxiebox.h (CC1_SPEC): Define.  Fix endianness
21489         issue for moxiebox targets.
21490         (CC1PLUS_SPEC): Ditto.
21492 2016-03-22  Richard Biener  <rguenther@suse.de>
21494         PR middle-end/70333
21495         * fold-const.c (extract_muldiv_1): Properly perform multiplication
21496         in the wide type.
21498 2016-03-22  Kirill Yukhin  <kirill.yukhin@intel.com>
21500         * config/i386/i386.c (def_builtin): Remove duplicated functionality.
21502 2016-03-22  Kirill Yukhin  <kirill.yukhin@intel.com>
21504         PR target/70325
21505         * config/i386/i386.c (def_builtin): Handle
21506         OPTION_MASK_ISA_AVX512VL to be and-ed with other
21507         bits.
21508         (const struct builtin_description bdesc_special_args[]):
21509         Remove duplicate ISA bits.
21511 2016-03-22  Jakub Jelinek  <jakub@redhat.com>
21513         PR target/70329
21514         * config/i386/i386.c (ix86_expand_vecop_qihi): Don't bother computing
21515         d.perm[i] for i >= d.nelt.  If not full_interleave, compute d.perm[i]
21516         in a way that works also for AVX512BW.
21518         PR target/70300
21519         * config/i386/i386.md (cvtsd2ss splitter): Unpack in destination
21520         instead of source if operands[1] is xmm16 and above and
21521         !TARGET_AVX512VL.  Use avx512f_vec_dupv16sf_1 instead of
21522         vec_interleave_lowv4sf if we need to unpack xmm16 and above.
21524         PR c++/70295
21525         * gimplify.c (gimplify_modify_expr): Call gimple_set_no_warning
21526         on assign if (*from_p) is a comparison, set it to
21527         TREE_NO_WARNING (*from_p).
21529 2016-03-21  Jakub Jelinek  <jakub@redhat.com>
21531         PR middle-end/70326
21532         * lra.c (restore_scratches): Ignore deleted insns.
21534 2016-03-21  Marc Glisse  <marc.glisse@inria.fr>
21535             Jakub Jelinek  <jakub@redhat.com>
21537         PR tree-optimization/70317
21538         * match.pd (cmp @0 @0): Pass @0 instead of TYPE_MODE (TREE_TYPE (@0))
21539         to HONOR_NANS.
21541 2016-03-21  Uros Bizjak  <ubizjak@gmail.com>
21543         PR target/70327
21544         * config/i386/i386.md (movxi): Use ix86_expand_vector_move instead
21545         of ix86_expand_move.
21546         (movoi): Ditto.
21547         (movti): Use general_operand for operand 1 predicate.
21549 2016-03-21  Martin Liska  <mliska@suse.cz>
21551         * hsa-dump.c (dump_hsa_insn_1): dump default branch of SBR
21552         insns.
21553         (dump_hsa_symbol): Dump BRIG offset of hsa_symbols.
21555 2016-03-21  Martin Liska  <mliska@suse.cz>
21557         PR ipa/70306
21558         * ipa-icf.c (sem_function::parse): Skip static
21559         constructors and destructors.
21561 2016-03-21  Jakub Jelinek  <jakub@redhat.com>
21563         PR target/70296
21564         * config/rs6000/rs6000-c.c (rs6000_macro_to_expand): If IDENT is
21565         function-like macro, peek following token(s) if it is followed
21566         by CPP_OPEN_PAREN token with optional padding in between, and
21567         if not, don't treat it like a macro.
21569 2016-03-21  Thomas Schwinge  <thomas@codesourcery.com>
21570             Alexander Monakov  <amonakov@ispras.ru>
21572         * config/nvptx/nvptx.c (nvptx_option_override): Don't emit sorry
21573         for the stabs debug format.
21575 2016-03-21  Richard Biener  <rguenther@suse.de>
21577         PR tree-optimization/70310
21578         * tree-vect-generic.c (expand_vector_condition): Fold the built
21579         condition.
21581 2016-03-21  Kirill Yukhin  <kirill.yukhin@intel.com>
21583         PR target/70293
21584         * config/i386/sse.md: (define_insn "*vec_dup<mode>"/AVX2):
21585         Block third alternative for AVX-512VL target,
21587 2016-03-21  Martin Liska  <mliska@suse.cz>
21589         PR hsa/70234
21590         * hsa-brig.c (emit_function_directives): Mark unemitted
21591         global variables for emission.
21592         * hsa-gen.c (hsa_symbol::hsa_symbol): Initialize a new flag.
21593         (get_symbol_for_decl): Likewise.
21594         * hsa.h (struct hsa_symbol): New flag.
21596 2016-03-21  Richard Biener  <rguenther@suse.de>
21598         PR tree-optimization/70288
21599         * tree-ssa-loop-ivcanon.c (tree_estimate_loop_size): Make sure
21600         we do not estimate unsimplified all-constant conditionals or
21601         switches as optimized away.
21603 2016-03-21  Andrey Belevantsev  <abel@ispras.ru>
21605         PR rtl-optimization/69102
21606         * sched-deps.c (sched_analyze_insn): Do not set last_args_size field
21607         when we have a readonly dependency context.
21609 2016-03-18  Jeff Law  <law@redhat.com>
21611         PR rtl-optimization/70263
21612         * ira.c (memref_used_between_p): Assert we found END in the insn chain.
21613         (update_equiv_regs): When trying to move a store to after the insn
21614         that sets the source of the store, make sure the store occurs after
21615         the insn that sets the source of the store.  When successful note
21616         the REG_EQUIV note created in the dump file.
21618 2016-03-16  David Wohlferd  <dw@LimeGreenSocks.com>
21619             Bernd Schmidt  <bschmidt@redhat.com>
21621         * doc/extend.texi: Document more potential problems with basic asms.
21623 2016-03-18  Bernd Schmidt  <bschmidt@redhat.com>
21625         PR rtl-optimization/70278
21626         * lra-constraints.c (split_reg): Handle the case where biggest_mode is
21627         VOIDmode.
21629 2016-03-18  Jason Merrill  <jason@redhat.com>
21631         * calls.c (load_register_parameters): Fix zero size sibcall logic.
21633 2016-03-18  Kirill Yukhin  <kirill.yukhin@intel.com>
21635         * config/i386/sse.md: Use vpbroadcastq for broadcasting DF
21636         values to 128b regs.
21638 2016-03-18  Ilya Enkovich  <enkovich.gnu@gmail.com>
21640         PR tree-optimization/70252
21641         * tree-vect-stmts.c (supportable_widening_operation): Check resulting
21642         boolean vector has a proper number of elements.
21643         (supportable_narrowing_operation): Likewise.
21645 2016-03-18  Tom de Vries  <tom@codesourcery.com>
21647         PR ipa/70269
21648         * cgraph.c (cgraph_node::get_body): Set dump_file to NULL after save.
21650 2016-03-18  Jakub Jelinek  <jakub@redhat.com>
21652         * reload1.c (emit_input_reload_insns): Use simplify_replace_rtx
21653         instead of replace_rtx for DEBUG_INSNs.
21655 2016-03-18  Venkataramanan Kumar  <venkataramanan.kumar@amd.com>
21657         * config/i386/znver1.md : Fix latencies of FP/SSE/AVX
21658         load type reservations.
21660 2016-03-17  John David Anglin  <danglin@gcc.gnu.org>
21662         PR target/70188
21663         * config/pa/constraints.md: Revert 2015-02-13 change.  Use
21664         define_constraint for "Q" and "T" constraints.
21666 2016-03-17  Evandro Menezes  <e.menezes@samsung.com>
21668         Tweak the pipeline model for Exynos M1
21670         * config/aarch64/aarch64.c (exynosm1_tunings):  Enable weak prefetching
21671         model.
21673 2016-03-17  David Malcolm  <dmalcolm@redhat.com>
21675         PR c/70264
21676         * diagnostic-show-locus.c (compatible_locations_p): Handle the case
21677         where one or both locations aren't within a line_map.
21679 2016-03-17  H.J. Lu  <hongjiu.lu@intel.com>
21681         PR driver/70192
21682         * opts.c (finish_options): Don't set flag_pie to the default if
21683         -fpic, -fPIC, -fno-pic or -fno-PIC is used.  Set flag_pic to 0
21684         if it is -1.
21686 2016-03-17  Joern Rennecke  <joern.rennecke@embecosm.com>
21688         * config/i386/i386.md (*movv4qicc_insn+1..36): Pass
21689         true as ALL_REGS argument to replace_rtx.
21691 2016-03-17  Richard Biener  <rguenther@suse.de>
21693         PR debug/70271
21694         * dwarf2out.c (dwarf2out_early_finish): Process deferred_asm_name
21695         last.
21697 2016-03-17  Jakub Jelinek  <jakub@redhat.com>
21699         PR target/70245
21700         * rtl.h (replace_rtx): Add ALL_REGS argument.
21701         * rtlanal.c (replace_rtx): Likewise.  If true, use REGNO
21702         equality and assert mode is the same, instead of just rtx pointer
21703         equality.
21704         * config/i386/i386.md (mov + arithmetics with load peephole): Pass
21705         true as ALL_REGS argument to replace_rtx.
21707 2016-03-17  Ilya Enkovich  <enkovich.gnu@gmail.com>
21709         * match.pd (A + (B vcmp C ? 1 : 0) -> A - (B vcmp C)): Apply
21710         for boolean vector with vector mode only.
21711         (A - (B vcmp C ? 1 : 0) -> A + (B vcmp C)): Likewise.
21713 2016-03-17  Nick Clifton  <nickc@redhat.com>
21715         PR target/70162
21716         * config/rx/rx.c (rx_print_integer): Print negative constants in
21717         decimal.
21719 2016-03-17  Jakub Jelinek  <jakub@redhat.com>
21721         PR target/70261
21722         * rtlanal.c (replace_rtx): Revert 2016-03-16 change.
21724 2016-03-16  Richard Henderson  <rth@redhat.com>
21725             Richard Biener  <rguenth@suse.de>
21727         PR middle-end/70240
21728         PR middle-end/68215
21729         PR tree-opt/68714
21730         * gimplify.c (gimplify_expr) [VEC_COND_EXPR]: Gimplify the
21731         first operand as is_gimple_condexpr.
21733         PR middle-end/70240
21734         PR middle-end/68215
21735         Revert r231575
21736         2015-12-11  Eric Botcazou  <ebotcazou@adacore.com>
21737         * tree-vect-generic.c (tree_vec_extract): Remove GSI parameter.
21738         Do not gimplify the result.
21739         (do_unop): Adjust call to tree_vec_extract.
21740         (do_binop): Likewise.
21741         (do_compare): Likewise.
21742         (do_plus_minus): Likewise.
21743         (do_negate): Likewise.
21744         (expand_vector_condition): Likewise.
21745         (do_cond): Likewise.
21747 2016-03-16  Richard Henderson  <rth@redhat.com>
21749         PR target/70048
21750         * config/aarch64/aarch64.c (virt_or_elim_regno_p): New.
21751         (aarch64_classify_address): Use it.
21752         (aarch64_legitimize_address): Force all subexpressions of PLUS
21753         into registers.  Simplify as (sfp+const)+reg or (reg+reg)+const.
21755 2016-03-16  Jakub Jelinek  <jakub@redhat.com>
21756             Richard Biener  <rguenth@suse.de>
21758         PR target/70245
21759         * rtlanal.c (replace_rtx): For REG, if from is a REG,
21760         return to even if only REGNO is equal, and assert
21761         mode is the same.
21763 2016-03-11  Jeff Law  <law@redhat.com>
21765         PR rtl-optimization/70224
21766         * reorg.c (relax_delay_slots): Pass right argument to CROSSING_JUMP_P.
21768 2016-03-16  Richard Henderson  <rth@redhat.com>
21770         PR middle-end/70199
21771         * function.h (struct function): Add has_forced_label_in_static.
21772         * gimplify.c (force_labels_r): Set it.
21773         * lto-streamer-in.c (input_struct_function_base): Read it.
21774         * lto-streamer-out.c (output_struct_function_base): Write it.
21775         * tree-inline.c (has_label_address_in_static_1): Remove.
21776         (copy_forbidden): Remove fndecl parameter; test
21777         has_forced_label_in_static.
21778         (inline_forbidden_p): Update call to copy_forbidden.
21779         (tree_versionable_function_p): Likewise.
21780         * ipa-chkp.c (chkp_instrumentable_p): Likewise.
21781         (chkp_versioning): Likewise.
21782         * tree-inline.h (copy_forbidden): Update decl.
21784 2016-03-16  Marek Polacek  <polacek@redhat.com>
21786         PR c/70093
21787         * cgraphunit.c (cgraph_node::expand_thunk): Also build call to the
21788         function being thunked if the result type doesn't have fixed size.
21789         * gimplify.c (gimplify_modify_expr): Also set LHS if the result type
21790         doesn't have fixed size.
21792 2016-03-16  Bin Cheng  <bin.cheng@arm.com>
21794         * tree-vect-loop.c (vect_analyze_loop_2): Fix wrong dump info by
21795         reporting malformed loop nest.
21797 2016-03-16  Tom de Vries  <tom@codesourcery.com>
21799         PR lto/70187
21800         * ipa-devirt.c (possible_polymorphic_call_targets): Move
21801         nodes.length () == 1 test to before first nodes[0] access.
21803 2016-03-16  Tom de Vries  <tom@codesourcery.com>
21805         PR tree-optimization/68715
21806         * graphite-scop-detection.c (scop_detection::merge_sese): Add missing
21807         single_pred_p test.
21809 2016-03-16  Tom de Vries  <tom@codesourcery.com>
21811         PR tree-optimization/68809
21812         * graphite-scop-detection.c (same_close_phi_node): Test if result types
21813         are the same.
21815 2016-03-16  Carlos O'Donell  <carlos@redhat.com>
21816             Sandra Loosemore  <sandra@codesourcery.com>
21818         * doc/extend.texi (Common Function Attributes): Describe ifunc impact
21819         on leaf attribute. Mention ELF interposition problems.
21821 2016-03-16  Alan Modra  <amodra@gmail.com>
21823         PR rtl-optimization/69195
21824         PR rtl-optimization/47992
21825         * ira.c (indirect_jump_optimize): Ignore artificial defs.
21826         Add comments.
21828 2016-03-15  Eric Botcazou  <ebotcazou@adacore.com>
21830         PR bootstrap/69513
21831         * dwarf2out.c (flush_limbo_die_list): Really flush the limbo list.
21833 2016-03-15  Senthil Kumar Selvaraj  <senthil_kumar.selvaraj@atmel.com>
21835         * config/avr/avr.md (rotl<mode>3): Set mode for operand 2.
21837 2016-03-15  Jakub Jelinek  <jakub@redhat.com>
21839         PR rtl-optimization/70222
21840         * combine.c (simplify_shift_const_1): For A >> B >> C LSHIFTRT
21841         optimization if mode is different from result_mode, queue up masking
21842         of the result in outer_op.  Formatting fix.
21844         PR middle-end/70239
21845         * tree-ssa-sccvn.c (VN_INFO_GET): Use safe_grow_cleared instead
21846         of safe_grow.
21848 2016-03-15  Andrey Belevantsev  <abel@ispras.ru>
21850         PR rtl-optimization/69032
21851         * sel-sched-ir.c (get_seqno_by_preds): Include both insn and head when
21852         looping backwards over basic block insns.
21854 2016-03-15  Andrey Belevantsev  <abel@ispras.ru>
21856         PR target/66660
21857         * sel-sched-ir.c (merge_expr): Avoid changing the speculative pattern
21858         to non-speculative when propagating trap bits.
21860 2016-03-15  Andrey Belevantsev  <abel@ispras.ru>
21862         PR rtl-optimization/63384
21863         * sel-sched.c (invoke_aftermath_hooks): Do not decrease issue_more on
21864         DEBUG_INSN_P insns.
21866 2016-03-15  Andrey Belevantsev  <abel@ispras.ru>
21868         PR target/64411
21869         * sched-deps.c (get_implicit_reg_pending_clobbers): New function,
21870         factored out from ...
21871         (sched_analyze_insn): ... here.
21872         * sched-int.h (get_implicit_reg_pending_clobbers): Declare it.
21873         * sel-sched-ir.c (setup_id_implicit_regs): New function, use
21874         get_implicit_reg_pending_clobbers in it.
21875         (setup_id_reg_sets): Use setup_id_implicit_regs.
21876         (deps_init_id): Ditto.
21878 2016-03-15  Tom de Vries  <tom@codesourcery.com>
21880         PR ipa/70161
21881         * cgraph.c (cgraph_node::get_body): Save, reset and restore
21882         dump_file_name.
21883         * passes.c (execute_one_ipa_transform_pass): Add missing argument to
21884         execute_function_dump.
21885         (execute_one_pass): Don't dump function if it will be dumped after ipa
21886         transform.
21888 2016-03-15  Segher Boessenkool  <segher@kernel.crashing.org>
21890         * genrecog.c (match_pattern_2): If pred is NULL don't call
21891         safe_predicate_mode on it.
21893 2016-03-14  Jakub Jelinek  <jakub@redhat.com>
21895         PR middle-end/70219
21896         * lra-constraints.c (delete_move_and_clobber): Change assertion
21897         to also allow dregno == 0.
21899 2016-03-14  Richard Henderson  <rth@redhat.com>
21901         PR tree-opt/68714
21902         * tree-ssa-reassoc.c (ovce_extract_ops, optimize_vec_cond_expr): New.
21903         (can_reassociate_p): Allow ANY_INTEGRAL_TYPE_P.
21904         (reassociate_bb): Use optimize_vec_cond_expr; avoid
21905         optimize_range_tests, attempt_builtin_copysign and attempt_builtin_powi
21906         on vectors.
21908 2016-03-14  Bernd Schmidt  <bschmidt@redhat.com>
21910         PR target/70083
21911         * lra-lives.c (process_bb_lives): Also update biggest mode for hard
21912         regs.
21913         (lra_create_live_ranges_1): initialize hard register biggest_mode to
21914         VOIDmode.
21915         * lra-constraints.c (split_reg): For hard regs, try to find the
21916         biggest single-register mode used in the function.
21918 2016-03-14  Richard Biener  <rguenther@suse.de>
21920         PR tree-optimization/56365
21921         * tree-ssa-phiopt.c (minmax_replacement): Handle alternate
21922         constants to compare against.
21924 2016-03-14  Segher Boessenkool  <segher@kernel.crashing.org>
21926         PR target/70098
21927         * config/rs6000/rs6000.md (*ctr<mode>_internal1, *ctr<mode>_internal2,
21928         *ctr<mode>_internal5, *ctr<mode>_internal6): Also allow "d" as output.
21929         (define_split for the GPR case): Use int_reg_operand instead of
21930         gpc_reg_operand for the output.
21932 2016-03-14  Tom de Vries  <tom@codesourcery.com>
21934         PR tree-optimization/70045
21935         * graphite-isl-ast-to-gimple.c (graphite_create_new_loop_guard): Unshare
21936         create_empty_if_region_on_edge argument.
21938 2016-03-13  Eric Botcazou  <ebotcazou@adacore.com>
21940         * config/arm/vxworks.h (STACK_CHECK_STATIC_BUILTIN): Define.
21941         (STACK_CHECK_PROTECT): Likewise.
21942         * config/i386/vxworks.h (STACK_CHECK_STATIC_BUILTIN): Likewise
21943         (STACK_CHECK_PROTECT): Likewise.
21944         * config/rs6000/vxworks.h (STACK_CHECK_STATIC_BUILTIN): Likewise
21945         (STACK_CHECK_PROTECT): Likewise.
21946         * config/rs6000/vxworksae.h (STACK_CHECK_PROTECT): Likewise.
21947         * config/sparc/vxworks.h (STACK_CHECK_STATIC_BUILTIN): Likewise.
21948         (STACK_CHECK_PROTECT): Likewise.
21950 2016-03-12  Andrey Belevantsev  <abel@ispras.ru>
21952         PR rtl-optimization/69307
21953         * sel-sched.c (choose_best_pseudo_reg): Properly check for hard
21954         registers in modes that span more than one register.
21956 2016-03-12  Vladimir Makarov  <vmakarov@redhat.com>
21958         PR target/69614
21959         * lra-constraints.c (delete_move_and_clobber): New.
21960         (remove_inheritance_pseudos): Use it.
21962 2016-03-12  Eric Botcazou  <ebotcazou@adacore.com>
21964         PR ada/70017
21965         * calls.c (emit_library_call_value_1): Clear the ECF_NOTHROW flag if
21966         the libcall is LCT_THROW.
21967         * explow.c (probe_stack_range): Pass LCT_THROW to emit_library_call
21968         for the checking routine.
21970 2016-03-11  Michael Meissner  <meissner@linux.vnet.ibm.com>
21972         PR target/70131
21973         * config/rs6000/rs6000.md (round32<mode>2_fprs): Do not do the
21974         optimization if we have direct move.
21975         (roundu32<mode>2_fprs): Likewise.
21977 2016-03-11  Bernd Schmidt  <bschmidt@redhat.com>
21979         PR target/70123
21980         * lra-remat.c (operand_to_remat): Disallow hard regs in the value t
21981         be rematerialized.
21982         (reg_overlap_for_remat_p): Renamed from input_regno_present_p.
21983         Arguments swapped.  All callers changed.  Take reg_renumber into
21984         account, and Calculate and compare register ranges for hard regs.
21986 2016-03-11  Jeff Law  <law@redhat.com>
21988         PR tree-optimization/70190
21989         * tree-ssa-threadbackward.c (fsm_find_control_statement_thread_paths):
21990         Handle cases where we can not extract the taken edge, even though we
21991         found a constant value.
21993         PR tree-optimization/64058
21994         * tree-ssa-coalesce.c (struct coalesce_pair): Add new field INDEX.
21995         (num_coalesce_pairs): Move up earlier in file.
21996         (find_coalesce_pair): Initialize the INDEX field for each pair
21997         discovered.
21998         (compare_pairs): No longer sort on the elements in each pair.
21999         Instead break ties with the index of the coalesce pair.
22001 2016-03-11  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
22003         PR target/70002
22004         * config/aarch64/aarch64-protos.h
22005         (aarch64_save_restore_target_globals): New prototype.
22006         * config/aarch64/aarch64-c.c (aarch64_pragma_target_parse):
22007         Call the above when popping pragma.
22008         * config/aarch64/aarch64.c (aarch64_save_restore_target_globals):
22009         New function.
22010         (aarch64_set_current_function): Rewrite using the above.
22012 2016-03-11  Jakub Jelinek  <jakub@redhat.com>
22014         PR tree-optimization/70177
22015         * gimple-expr.h (extract_ops_from_tree_1): Renamed to ...
22016         (extract_ops_from_tree): ... this.  In the 2 argument
22017         overload remove _1 suffix.
22018         * gimple-expr.c (extract_ops_from_tree_1): Renamed to ...
22019         (extract_ops_from_tree): ... this.
22020         * gimple.c (gimple_build_assign, gimple_assign_set_rhs_from_tree):
22021         Adjust callers.
22022         * tree-ssa-loop-niter.c (derive_constant_upper_bound): Likewise.
22023         * tree-ssa-forwprop.c (defcodefor_name): Call 3 operand
22024         extract_ops_from_tree instead of 2 operand one.
22026 2016-03-11  Alan Lawrence  <alan.lawrence@arm.com>
22028         PR tree-optimization/70013
22029         * tree-sra.c (analyze_access_subtree): Also set grp_unscalarized_data
22030         for constant-pool entries.
22032 2016-03-11  Jakub Jelinek  <jakub@redhat.com>
22034         PR rtl-optimization/70174
22035         * expmed.c (store_bit_field_using_insv): Use gen_lowpart_if_possible
22036         followed by gen_lowpart on force_reg instead of just gen_lowpart.
22038         PR tree-optimization/70169
22039         * tree-ssa-loop.c (gen_lsm_tmp_name): Handle FUNCTION_DECL and
22040         LABEL_DECL like VAR_DECL.  Emit nothing instead of gcc_unreachable
22041         for unknown codes.
22043 2016-03-11  Ilya Enkovich  <enkovich.gnu@gmail.com>
22044             Jakub Jelinek  <jakub@redhat.com>
22046         PR target/70160
22047         * config/i386/i386.c (scalar_chain::convert_reg): Skip uses
22048         of uninitialized values.
22050 2016-03-11  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
22052         * config/s390/s390.md ("trunctddd2"): Turn former define_insn into
22053         define_expand.
22054         ("*trunctddd2"): New pattern definition.
22055         ("trunctdsd2"): Set prep_for_short_prec rounding mode for the
22056         TD->DD truncation.
22058 2016-03-11  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
22060         * config/s390/s390.md (BFP_RND_*, DFP_RND_*): Add new constant
22061         definitions for BFP and DFP rounding modes.
22062         ("fixuns_truncdddi2", "fixuns_trunctddi2")
22063         ("fixuns_trunc<BFP:mode><GPR:mode>2", "fixuns_trunc<mode>si2")
22064         ("fix_trunc<DSF:mode><GPR:mode>2", "fix_trunc<mode>di2")
22065         ("fix_trunctf<mode>2"): Use the new constants instead of magic
22066         numbers.
22068 2016-03-11  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
22070         * config/s390/constraints.md: Adjust comment.
22071         ("Y"): Adjust comment.  Rename s390_decompose_shift_count to
22072         s390_decompose_addrstyle_without_index.
22073         * config/s390/predicates.md (shift_count_or_setmem_operand):
22074         Rename to setmem_operand.
22075         * config/s390/s390-protos.h
22076         (s390_decompose_shift_count): Rename to
22077         s390_decompose_addrstyle_without_index.
22078         * config/s390/s390.c (s390_decompose_shift_count)
22079         (s390_mem_constraint, print_shift_count_operand)
22080         (print_operand_address, print_operand): Rename
22081         s390_decompose_shift_count to
22082         s390_decompose_addrstyle_without_index and rename
22083         print_shift_count_operand to print_addrstyle_operand troughout the
22084         file.
22085         * config/s390/s390.md ("setmem_long_<P:mode>", "*setmem_long")
22086         ("*setmem_long_and", "*setmem_long_31z", "*setmem_long_and_31z"):
22087         Rename shift_count_or_setmem_operand to setmem_operand.
22088         * config/s390/vx-builtins.md ("vec_insert<mode>")
22089         ("vec_promote<mode>"): Replace shift_count_or_setmem_operand with
22090         nonmemory_operand.
22092 2016-03-10  Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>
22094         PR target/70168
22095         * config/rs6000/rs6000.c (rs6000_expand_atomic_compare_and_swap):
22096         Handle overlapping retval and newval.
22098 2016-03-10  Nick Clifton  <nickc@redhat.com>
22100         PR target/7044
22101         * config/aarch64/aarch64.c
22102         (aarch64_override_options_after_change_1): When forcing
22103         flag_omit_frame_pointer to be true, use a special value that can
22104         be detected if this function is called again, thus preventing
22105         flag_omit_leaf_frame_pointer from being forced to be false.
22107 2016-03-10  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
22109         * common/config/aarch64/aarch64-common.c (aarch64_handle_option):
22110         Set x_flag_omit_leaf_frame_pointer when handling
22111         -momit-leaf-frame-pointer.
22113 2016-03-10  Jan Hubicka  <hubicka@ucw.cz>
22115         PR lto/69589
22116         * cgraph.c (cgraph_node::dump): Dump split_part and
22117         indirect_call_target.
22118         * cgraph.h (cgraph_node): Add indirect_call_target flag.
22119         * ipa.c (has_addr_references_p): Cleanup.
22120         (is_indirect_call_target_p): New.
22121         (walk_polymorphic_call_targets): Do not mark virtuals that may be
22122         called indirectly as local.
22123         (symbol_table::remove_unreachable_nodes): Compute indirect_call_target.
22125 2016-03-10  Jan Hubicka  <hubicka@ucw.cz>
22127         PR ipa/69630
22128         * ipa-devirt.c (possible_polymorphic_call_targets): Do not ICE
22129         on cxa_pure_virtual.
22131 2016-03-10  Jan Hubicka  <hubicka@ucw.cz>
22133         PR lto/69589
22134         * tree.c (free_lang_data_in_decl): Clear visibility of TYPE_DECL.
22136 2016-03-10  Jan Hubicka  <hubicka@ucw.cz>
22138         PR lto/69589
22139         * tree.c (need_assembler_name_p): Only record main variant type names.
22141 2016-03-10  Christophe Lyon  <christophe.lyon@linaro.org>
22143         PR target/70113.
22144         * config/aarch64/aarch64.h (TARGET_FIX_ERR_A53_843419_DEFAULT):
22145         Always define to 0 or 1.
22146         (TARGET_FIX_ERR_A53_843419): New macro.
22147         * config/aarch64/aarch64-elf-raw.h
22148         (TARGET_FIX_ERR_A53_843419_DEFAULT): Update for above changes.
22149         * config/aarch64/aarch64-linux.h: Likewise.
22150         * config/aarch64/aarch64.c
22151         (aarch64_override_options_after_change_1): Do not default
22152         aarch64_nopcrelative_literal_loads to true if Cortex-A53 erratum
22153         843419 is on.
22154         (aarch64_attributes): Handle fix-cortex-a53-843419.
22155         (aarch64_can_inline_p): Likewise.
22156         * config/aarch64/aarch64.opt (aarch64_fix_a53_err843419): Save.
22158 2016-03-10  Alan Lawrence  <alan.lawrence@arm.com>
22159             Jakub Jelinek  <jakub@redhat.com>
22161         * common.opt (funconstrained-commons, flag_unconstrained_commons): New.
22162         * tree.c (array_at_struct_end_p): Do not limit to size of decl for
22163         DECL_COMMONS if flag_unconstrained_commons is set.
22164         * tree-dfa.c (get_ref_base_and_extent): Likewise.
22165         * doc/invoke.texi (Optimize Options): Add -funconstrained-commons.
22166         (funconstrained-commons): Document.
22168 2016-03-10  Christophe Lyon  <christophe.lyon@linaro.org>
22170         * config/aarch64/t-aarch64 (OPTIONS_H_EXTRA): Add
22171         aarch64-fusion-pairs.def and aarch64-tuning-flags.def
22173 2016-03-10  Ilya Enkovich  <enkovich.gnu@gmail.com>
22175         * tree-vect-stmts.c (vectorizable_mask_load_store): Check mask
22176         has a proper number of elements.
22178 2016-03-10  Alan Modra  <amodra@gmail.com>
22180         PR rtl-optimization/69195
22181         PR rtl-optimization/47992
22182         * ira.c (recorded_label_ref): Delete.
22183         (update_equiv_regs): Return void.
22184         (indirect_jump_optimize): New function.
22185         (ira): Call indirect_jump_optimize and delete_trivially_dead_insns
22186         before regstat_compute_ri.  Don't rebuild_jump_labels here.
22187         Delete update_regstat.
22189 2016-03-10  Richard Biener  <rguenther@suse.de>
22191         PR tree-optimization/70128
22192         * tree-ssa-structalias.c (set_uids_in_ptset): Set
22193         vars_contains_nonlocal for any FUNCTION_DECL or LABEL_DECL.
22195 2016-03-09  Jakub Jelinek  <jakub@redhat.com>
22197         PR tree-optimization/70152
22198         * tree-sra.c (replace_removed_params_ssa_names): Copy over
22199         SSA_NAME_OCCURS_IN_ABNORMAL_PHI from old_name to new_name.
22201         PR target/70086
22202         * config/i386/i386.md (truncdfsf2 splitter): Use gen_vec_concatv2df
22203         instead of gen_sse2_loadlpd.
22204         * config/i386/sse.md (*vec_concatv2df): Rename to...
22205         (vec_concatv2df): ... this.
22207         PR tree-optimization/70127
22208         * fold-const.c (operand_equal_p): Revert the 2015-10-28 change.
22210 2016-03-09  David Malcolm  <dmalcolm@redhat.com>
22212         PR c/68473
22213         PR c++/70105
22214         * diagnostic-show-locus.c (compatible_locations_p): New function.
22215         (layout::layout): Sanitize ranges using compatible_locations_p.
22217 2016-03-09  David Malcolm  <dmalcolm@redhat.com>
22219         PR c/68473
22220         PR c++/70105
22221         * diagnostic-show-locus.c (layout_range::layout_range): Replace
22222         location_range param with three const expanded_locations * and a
22223         bool.
22224         (layout::layout): Replace call to
22225         rich_location::lazily_expand_location with get_expanded_location.
22226         Extract the range and perform location expansion here, passing
22227         the results to the layout_range ctor.
22228         * diagnostic.c (source_range::debug): Delete.
22229         * diagnostic.h (diagnostic_expand_location): Reimplement in terms
22230         of rich_location::get_expanded_location.
22231         * gcc-rich-location.c (get_range_for_expr): Delete.
22232         (gcc_rich_location::add_expr): Reimplement to avoid the
22233         rich_location::add_range overload that took a location_range,
22234         passing a location_t instead.
22236 2016-03-09  Richard Biener  <rguenther@suse.de>
22237         Jakub Jelinek  <jakub@redhat.com>
22239         PR tree-optimization/70138
22240         * tree-vect-loop-manip.c (vect_update_ivs_after_vectorizer):
22241         Also skip vect_double_reduction_def.
22243 2016-03-09  Jakub Jelinek  <jakub@redhat.com>
22245         PR target/70049
22246         * config/i386/sse.md (*vec_extract<mode>): Use %0 instead of %k0
22247         if the operand is "m".
22249 2016-03-09  Nathan Sidwell  <nathan@acm.org>
22251         * config/nvptx/nvptx.c (nvptx_option_override): Don't kill debug level.
22253 2016-03-09  Venkataramanan Kumar  <venkataramanan.kumar@amd.com>
22255         * config/i386/i386.c (processor_target_table): Fix cost table
22256         intialization order for znver1.
22258 2016-03-08  Jakub Jelinek  <jakub@redhat.com>
22260         * ipa-polymorphic-call.c (walk_ssa_copies): Fix spelling
22261         - becuase -> because.
22262         * ipa-reference.c (ignore_module_statics): Likewise.
22263         * cgraph.c (cgraph_node::get_body): Likewise.
22264         * ipa-inline.c (early_inliner): Likewise.
22265         * ipa-devirt.c (types_same_for_odr): Likewise.
22266         * tree-streamer-out.c (pack_ts_type_common_value_fields): Likewise.
22267         * config/i386/i386.h (ACCUMULATE_OUTGOING_ARGS): Likewise.
22269 2016-03-08  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
22271         * tree-ssa-math-opts.c: Fix typo in comment.
22273 2016-03-08  Jakub Jelinek  <jakub@redhat.com>
22275         PR target/70110
22276         * config/i386/i386.c (scalar_chain::make_vector_copies,
22277         scalar_chain::convert_reg): Call end_sequence in between
22278         get_insns and emit_conversion_insns rather than after both
22279         calls.
22281 2016-03-07  Uros Bizjak  <ubizjak@gmail.com>
22283         PR target/70064
22284         * config/i386/i386.h (machine_function): Add
22285         pc_thunk_call_expanded flag.
22286         (ix86_pc_thunk_call_expanded): New define.
22287         * config/i386/i386.md (set_got, set_got_labelled): New expanders.
22288         (*set_got): Rename insn pattern from set_got.
22289         (*set_got_labelled): Rename inst pattern from set_got_labelled.
22290         * config/i386/i386.c (ix86_compute_frame_layout): Use
22291         ix86_pc_thunk_call_expanded to prevent red-zone.
22293 2016-03-07  Martin Jambor  <mjambor@suse.cz>
22295         * hsa.h (hsa_get_ctor_statements): Declare.
22296         (hsa_get_dtor_statements): Likewise.
22297         (hsa_get_kernel_dispatch_type): Likewise.
22298         * hsa.c (hsa_get_ctor_statements): New function.
22299         (hsa_get_dtor_statements): Likewise.
22300         (hsa_get_kernel_dispatch_type): Likewise.
22301         * hsa-brig.c (hsa_cdtor_statements): Removed.
22302         (hsa_output_libgomp_mapping): Use hsa_get_ctor_statements and
22303         hsa_get_dtor_statements.
22304         * hsa-gen.c (hsa_kernel_dispatch_type): Removed.
22305         (get_hsa_kernel_dispatch_offset): Use hsa_get_kernel_dispatch_type.
22307 2016-03-07  Andre Vieira  <andre.simoesdiasvieira@arm.com>
22309         * config/arm/arm-cores.def (cortex-r8): New.
22310         * config/arm/arm-tables.opt (cortex-r8): Regenerate.
22311         * config/arm/arm-tune.md: Likewise.
22312         * doc/invoke.texi: Add cortex-r8 to list of cpu values.
22314 2016-03-07  Martin Sebor  <msebor@redhat.com>
22316         PR rtl-optimization/19705
22317         * doc/invoke.texi (Options That Control Optimization): Clarify
22318         -fno-branch-count-reg.
22320 2016-02-26  Richard Biener  <rguenther@suse.de>
22321             Jeff Law  <law@redhat.com>
22323         PR tree-optimization/69740
22324         * cfghooks.c (remove_edge): Request loop fixups if we delete
22325         an edge that might turn an irreducible loop into a natural
22326         loop.
22327         * cfgloop.h (check_verify_loop_structure): Clear LOOPS_NEED_FIXUP.
22328         Move after definition of loops_state_clear.
22330 2016-03-07  Bin Cheng  <bin.cheng@arm.com>
22332         PR rtl-optimization/69052
22333         * rtlanal.c (commutative_operand_precedence): Set higher precedence
22334         to CONST_WIDE_INT.
22336 2016-03-07  Tom de Vries  <tom@codesourcery.com>
22338         PR tree-optimization/70116
22339         * tree-ssa-tail-merge.c (merge_stmts_p): New function, handling
22340         is_tm_ending stmts and ubsan/asan internal functions.
22341         (find_duplicate): Use it.  Don't test is_tm_ending here.
22343 2016-03-07  Richard Biener  <rguenther@suse.de>
22345         PR tree-optimization/70115
22346         * tree-ssa-loop-ivcanon.c (propagate_into_all_uses): Remove.
22347         (propagate_constants_for_unrolling): Use replace_uses_by.
22349 2016-03-07  Nathan Sidwell  <nathan@codesourcery.com>
22351         PR middle-end/69916
22352         * omp-low.c (struct oacc_loop): Add ifns.
22353         (new_oacc_loop_raw): Initialize it.
22354         (finish_oacc_loop): Clear mask & flags if no ifns.
22355         (oacc_loop_discover_walk): Count IFN_GOACC_LOOP calls.
22356         (oacc_loop_xform_loop): Add ifns arg & adjust.
22357         (oacc_loop_process): Adjust oacc_loop_xform_loop call.
22359 2016-03-07  Richard Henderson  <rth@redhat.com>
22361         PR rtl-opt/70061
22362         * tree-outofssa.c (emit_partition_copy): Flush pending stack adjust.
22363         (insert_value_copy_on_edge): Likewise.
22365 2016-03-07  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
22367         * config/arm/arm_neon.h: Show error if using with soft-float ABI.
22369 2016-03-07  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
22371         PR target/62281
22372         * config/i386/sol2.h (STACK_REALIGN_DEFAULT): Define.
22374 2016-03-05  Venkataramanan Kumar  <Venkataramanan.kumar@amd.com>
22376         * config/i386/i386.c (znver1_cost): Fix Multiply cost.
22378 2016-03-05  Venkataramanan Kumar  <Venkataramanan.kumar@amd.com>
22380         Fix sseimul type attribute.
22381         * config/i386/znver1.md
22382         (znver1_sseimul, znver1_sseimul_avx256, znver1_sseimul_load,
22383         znver1_sseimul_avx256_load) : Fix the type attribute.
22384         (znver1_sseimul_di, znver1_sseimul_load_di): Fix type attribute,
22385         pipe usage and latency.
22387 2016-03-05  Jakub Jelinek  <jakub@redhat.com>
22389         PR c++/70084
22390         * tree-inline.c (copy_tree_body_r): When cancelling ADDR_EXPR
22391         of INDIRECT_REF and ADDR_EXPR changed type, fold_convert it
22392         to the right type.
22394 2016-03-04  Bernd Schmidt  <bschmidt@redhat.com>
22396         PR c/69973
22397         * targhooks.c (default_vector_alignment): Limit to MAX_OFILE_ALIGNMENT.
22399         PR rtl-optimization/69941
22400         * postreload.c (reload_combine_recognize_pattern): Ensure all uses of
22401         the reg share its mode.
22403 2016-03-04  Jeff Law  <law@redhat.com>
22405         PR tree-optimization/69196
22406         * tree-ssa-threadbackward.c (fsm_find_control_statement_thread_paths):
22407         If the both SSA_NAMEs are anonymous, then consider them unassociated
22408         and include the PHI in the statement count.
22410 2016-03-05  Tom de Vries  <tom@codesourcery.com>
22412         * omp-low.c (check_omp_nesting_restrictions): Check for non-oacc
22413         construct in oacc routine.  Check for oacc region in oacc routine.
22415 2016-03-04  Jakub Jelinek  <jakub@redhat.com>
22417         PR target/70062
22418         * config/i386/i386.c (decide_alg): Add RECUR argument.  Revert
22419         2016-02-22 changes, instead don't recurse if RECUR is already true.
22420         Don't change *dynamic_check if RECUR.  Adjust recursive caller
22421         to pass true to the new argument.
22422         (ix86_expand_set_or_movmem): Adjust decide_alg caller.
22424         PR target/70059
22425         * config/i386/sse.md (vec_set_lo_<mode><mask_name>,
22426         <extract_type_2>_vinsert<shuffletype><extract_suf_2>_mask): Formatting
22427         fixes.
22428         (vec_set_hi_<mode><mask_name>): Likewise.  Swap VEC_CONCAT operands.
22430 2016-03-04  Bernd Schmidt  <bschmidt@redhat.com>
22432         PR rtl-optimization/57676
22433         * lra-assigns.c (lra_assign): Guard test for maximum iterations
22434         with flag_checking.
22436 2016-03-04  Ilya Enkovich  <enkovich.gnu@gmail.com>
22438         * tree-vect-patterns.c (search_type_for_mask): Handle
22439         comparison of booleans.
22441 2016-03-04  Jakub Jelinek  <jakub@redhat.com>
22443         * doc/extend.texi (__builtin_alloca, __builtin_alloca_with_align):
22444         Fix @xref usage.
22446         PR debug/69947
22447         * dwarf2out.c (prune_unused_types_walk_loc_descr): Handle
22448         all other ops that have dw_val_class_die_ref operands,
22449         and DW_OP_GNU_entry_value.
22451 2016-03-03  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
22453         PR rtl-optimization/69904
22454         * config/arm/arm.c (arm_cannot_copy_insn_p):
22455         Return true for load-exclusive instructions.
22457 2016-03-03  Jakub Jelinek  <jakub@redhat.com>
22459         PR target/70021
22460         * tree-vect-stmts.c (vect_mark_relevant): Remove USED_IN_PATTERN
22461         argument, if STMT_VINFO_IN_PATTERN_P (stmt_info), always mark
22462         the pattern no matter if it is used just by non-pattern, pattern
22463         or mix thereof.
22464         (process_use, vect_mark_stmts_to_be_vectorized): Adjust callers.
22465         * tree-vect-patterns.c (vect_recog_vector_vector_shift_pattern): If
22466         oprnd1 def_stmt is in pattern, don't look through it.
22468 2016-03-03  Marek Polacek  <polacek@redhat.com>
22470         PR middle-end/70050
22471         * match.pd (X % -Y): Add INTEGRAL_TYPE_P check.
22473 2016-03-03  Martin Liska  <mliska@suse.cz>
22475         PR tree-optimization/70043
22476         * tree-vect-loop.c (optimize_mask_stores): Move iterator to
22477         previous statement if we see a debug statement.
22479 2016-03-03  Richard Biener  <rguenther@suse.de>
22481         PR tree-optimization/55936
22482         * tree-vrp.c (compare_name_with_value): Add use_equiv_p
22483         parameter and guard unsafe equivalence use.
22484         (vrp_evaluate_conditional_warnv_with_ops): Always use
22485         safe equivalences but not via the quadratic compare_names
22486         helper.
22488 2016-03-03  Michael Collison  <michael.collison@linaro.org>
22490         PR target/70014
22491         * config/arm/arm.md (*subsi3_carryin_const): Change predicate
22492         for operand 1 to s_register_operand. Change predicate for operand
22493         2 to arm_not_immediate_operand.
22495 2016-03-02  H.J. Lu  <hongjiu.lu@intel.com>
22497         * doc/tm.texi: Regenerated.
22499 2016-03-02  Richard Henderson  <rth@redhat.com>
22501         PR rtl-opt/67145
22502         * simplify-rtx.c (simplify_plus_minus): Allow reassoc without
22503         simplification when all args are positive non-fixed registers.
22505 2016-03-02  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
22507         * target.def (lra_p): Specify that new ports should use LRA.
22509 2016-03-02  Jakub Jelinek  <jakub@redhat.com>
22511         PR libgomp/69555
22512         * gimplify.c (gimplify_decl_expr): For decls with REFERENCE_TYPE, also
22513         gimplify_type_sizes the type they refer to.
22514         (omp_notice_variable): Handle reference vars to VLAs.
22515         * omp-low.c (lower_omp_target): Emit setup of OMP_CLAUSE_PRIVATE
22516         reference to VLA decls in the second pass instead of first pass.
22518 2016-03-02  Tom de Vries  <tom@codesourcery.com>
22520         PR tree-optimization/68659
22521         * graphite-isl-ast-to-gimple.c (collect_all_ssa_names): Handle
22522         new_expr == NULL_TREE.
22523         (get_new_name): Handle ADDR_EXPR.
22525 2016-03-02  Bin Cheng  <bin.cheng@arm.com>
22527         PR rtl-optimization/69052
22528         * loop-invariant.c (canonicalize_address): New function.
22529         (inv_can_prop_to_addr_use): Check validity of address expression
22530         which is canonicalized by above function.
22532 2016-03-02  Alan Modra  <amodra@gmail.com>
22534         PR ipa/69990
22535         * ipa-icf.c (sem_variable::merge): Do not merge an alias with
22536         larger alignment.
22538 2016-03-02  Jakub Jelinek  <jakub@redhat.com>
22540         PR target/70028
22541         * config/i386/i386.md (kmovw): Move m constraint to 2nd alternative.
22542         (*movhi_internal): Put mask moves from and to memory separately
22543         from moves from/to GPRs.
22545 2016-03-02  Richard Biener  <rguenther@suse.de>
22547         * genmatch.c (dt_node::gen_kids): Fix match code-gen for embedded
22548         GENERIC expressions in GIMPLE.
22550 2016-03-02  Richard Biener  <rguenther@suse.de>
22552         * config/i386/i386.c (type_natural_mode): Fix typo.
22554 2016-03-02  Nick Clifton  <nickc@redhat.com>
22556         * config.gcc (mep-*-elf): Add newlib-stdint.h to tm_file.
22558 2016-03-02  Richard Biener  <rguenther@suse.de>
22559             Uros Bizjak  <ubizjak@gmail.com>
22561         PR target/67278
22562         * config/i386/i386.c (type_natural_mode): Handle XFmode vectors.
22564 2016-03-02  Richard Biener  <rguenther@suse.de>
22566         PR middle-end/67278
22567         * tree-cfg.c (verify_expr): Adjust BIT_FIELD_REF case.
22569 2016-03-02  Marek Polacek  <polacek@redhat.com>
22571         PR c/67854
22572         * gimplify.c (gimplify_va_arg_expr): Use expanded location for the
22573         "is promoted to" warning.
22575 2016-03-01  DJ Delorie  <dj@redhat.com>
22577         * config.gcc: Deprecate mep-*.
22579 2016-03-01  Vladimir Makarov  <vmakarov@redhat.com>
22581         PR middle-end/70025
22582         * lra-constraints.c (regno_val_use_in): New.
22583         (match_reload): Use it instead of regno_use_in.
22585 2016-03-01  Eric Botcazou  <ebotcazou@adacore.com>
22587         PR rtl-optimization/70007
22588         * gcse.c (compute_ld_motion_mems): Tidy up and also invalidate memory
22589         references present in REG_EQUAL notes attached to non-SET patterns.
22591 2016-03-01  Jeff Law  <law@redhat.com>
22593         PR tree-optimization/69196
22594         * tree-ssa-threadbackward.c (fsm_find_control_statement_thread_paths):
22595         Appropriately clamp the number of statements to copy when the
22596         thread path does not traverse a loop backedge.
22598         PR tree-optimization/69196
22599         * tree-ssa-threadbackward.c (fsm_find_control_statement_thread_paths):
22600         Do count some PHIs in the thread path against the insn count.  Decrease
22601         final statement count by one as the control statement in the last
22602         block will get removed.  Remove special cased code for handling PHIs
22603         in the last block.
22605 2016-03-01  Uros Bizjak  <ubizjak@gmail.com>
22607         PR target/70027
22608         * config/i386/i386.c (ix86_output_call_insn): Add -masm=intel
22609         asm dialect alternatives to explicit GOTPCREL calls.
22611 2016-03-01  Eric Botcazou  <ebotcazou@adacore.com>
22613         PR ada/70017
22614         * ira.c (do_reload): Issue warning for generic stack checking here...
22615         * reload1.c (reload): ...instead of here and streamline it.
22617 2016-03-01  Nick Clifton  <nickc@redhat.com>
22619         * config.gcc (cr16-*-elf): Add newlib-stdint.h to tm_file.
22621 2016-03-01  Richard Biener  <rguenther@suse.de>
22623         PR tree-optimization/69983
22624         * tree-chrec.c (eq_evolutions_p): Handle conversions, compare
22625         types and fall back to operand_equal_p.
22627 2016-03-01  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
22629         Revert
22630         2016-03-01  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
22632         * config/s390/constraints.md ("jm8"): New constraint.
22633         * config/s390/predicates.md ("const_int_8bitset_operand"): New
22634         predicate.
22635         * config/s390/s390.md ("*setmem_long", "*setmem_long_and"): Merge
22636         into ...
22637         ("*setmem_long<setmem_and>"): New pattern.
22638         ("*setmem_long_31z", "*setmem_long_and_31z"): Merge
22639         into ...
22640         ("*setmem_long_31z<setmem_and>"): New pattern.
22641         * config/s390/subst.md ("setmem_31z_subst", "setmem_and_subst"):
22642         New substitution rules with the required attributes.
22645 2016-03-01  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
22647         Revert
22648         2016-03-01  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
22650         * gensupport.c (process_substs_on_one_elem): Split loop to
22651         complete mark_operands_used_in_match_dup on all expressions in the
22652         vector first.
22653         (adjust_operands_numbers): Inline into process_substs_on_one_elem
22654         and remove function.
22656 2016-03-01  Richard Biener  <rguenther@suse.de>
22658         PR middle-end/70022
22659         * fold-const.c (fold_indirect_ref_1): Fix range checking for
22660         vector BIT_FIELD_REF extract.
22662 2016-03-01  Richard Biener  <rguenther@suse.de>
22664         PR tree-optimization/69994
22665         * tree-ssa-reassoc.c (ops_equal_values_p): Handle missing case.
22667 2016-03-01  Ilya Enkovich  <enkovich.gnu@gmail.com>
22669         PR tree-optimization/69956
22670         * tree-vect-stmts.c (supportable_widening_operation): Support
22671         multi-step conversion of boolean vectors.
22672         (supportable_narrowing_operation): Likewise.
22674 2016-03-01  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
22676         * config/s390/s390.c (s390_decompose_address): Don't accept SImode
22677         anymore.
22679 2016-03-01  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
22681         * config/s390/subst.md (DSI_VI): New mode iterator.
22682         ("addr_style_op_subst"): Use DSI_VI instead of DSI.
22683         * config/s390/vector.md ("vec_set<mode>"): Move expander before
22684         the insn definition.
22685         ("*vec_set<mode>"): Change predicate and add alternative to
22686         support only either register or const_int operands as element
22687         selector.
22688         ("*vec_set<mode>_plus"): New pattern to support reg + const_int
22689         operands.
22690         ("vec_extract<mode>"): New expander.
22691         ("*vec_extract<mode>"): New insn definition supporting reg and
22692         const_int element selectors.
22693         ("*vec_extract<mode>_plus"): New insn definition supporting
22694         reg+const_int element selectors.
22695         ("rotl<mode>3", "ashl<mode>3", "ashr<mode>3"): Merge into the
22696         following expander+insn definition.
22697         ("<vec_shifts_name><mode>3"): New expander.
22698         ("*<vec_shifts_name><mode>3<addr_style_op>"): New insn definition.
22700 2016-03-01  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
22702         * config/s390/s390.md ("*tabort_1"): Change predicate to
22703         nonmemory_operand.  Add a second alternative to cover
22704         register as well as const int operands.
22705         ("*tabort_1_plus"): New pattern definition.
22707 2016-03-01  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
22709         * config/s390/s390.md ("*ashrdi3_cc_31")
22710         ("*ashrdi3_cconly_31""*ashrdi3_cc_31_and")
22711         ("*ashrdi3_cconly_31_and", "*ashrdi3_31_and", "*ashrdi3_31"):
22712         Merge insn definitions into ...
22713         ("*ashrdi3_31<addr_style_op_cc><masked_op_cc><setcc><cconly>"):
22714         New pattern definition.
22715         ("*ashr<mode>3_cc", "*ashr<mode>3_cconly", "ashr<mode>3", )
22716         ("*ashr<mode>3_cc_and", "*ashr<mode>3_cconly_and")
22717         ("*ashr<mode>3_and"): Merge insn definitions into ...
22718         ("*ashr<mode>3<addr_style_op_cc><masked_op_cc><setcc><cconly>"):
22719         New pattern definition.
22720         * config/s390/subst.md ("addr_style_op_cc_subst")
22721         ("masked_op_cc_subst", "setcc_subst", "cconly_subst"): New
22722         substitutions patterns plus attributes.
22723         Add ashiftrt to SUBST iterator.
22725 2016-03-01  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
22727         * config/s390/s390.md ("<shift><mode>3"): Change predicate of
22728         op2 to nonmemory_operand.
22729         ("*<shift>di3_31", "*<shift>di3_31_and"):
22730         Merge into single pattern definition ...
22731         ("*<shift>di3_31<addr_style_op><masked_op>"): New pattern.
22732         ("*<shift><mode>3", "*<shift><mode>3_and"): Merge into single
22733         pattern definition ...
22734         ("*<shift><mode>3<addr_style_op><masked_op>"): New pattern.
22735         * config/s390/subst.md: Add ashift and lshiftrt to SUBST
22736         iterator.
22738 2016-03-01  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
22740         * config/s390/predicates.md (const_int_6bitset_operand): New
22741         predicate.
22742         * config/s390/s390.md: Include subst.md.
22743         ("rotl<mode>3"): New expander.
22744         ("rotl<mode>3", "*rotl<mode>3_and"): Merge insn definitions into
22745         ...
22746         ("*rotl<mode>3<addr_style_op><masked_op>"): New insn definition.
22747         * config/s390/subst.md: New file.
22749 2016-03-01  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
22751         * config/s390/s390.md ("op_type", "atype", "length" attributes):
22752         Remove RRR type.  It doesn't really exist.
22753         ("RRer", "f0", "v0", "vf", "vd", "op1", "Rf"): Remove mode
22754         attributes.
22755         ("BFP", "DFP", "nDSF", "nDFDI"): Add mode attributes.
22756         ("*cmp<mode>_ccs", "floatdi<mode>2", "add<mode>3")
22757         ("*add<mode>3_cc", "*add<mode>3_cconly", "sub<mode>3")
22758         ("*sub<mode>3_cc", "*sub<mode>3_cconly", "mul<mode>3")
22759         ("fma<mode>4", "fms<mode>4", "div<mode>3", "*neg<mode>2")
22760         ("*abs<mode>2", "*negabs<mode>2", "sqrt<mode>2"): Override
22761         `enabled' attribute.
22763 2016-03-01  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
22765         * gensupport.c (process_substs_on_one_elem): Split loop to
22766         complete mark_operands_used_in_match_dup on all expressions in the
22767         vector first.
22768         (adjust_operands_numbers): Inline into process_substs_on_one_elem
22769         and remove function.
22771 2016-02-29  Eric Botcazou  <ebotcazou@adacore.com>
22773         PR target/69706
22774         * config/sparc/sparc.c (NWORDS_UP): Rename to...
22775         (CEIL_NWORDS): ...this.  Use CEIL macro.
22776         (compute_fp_layout): Adjust to above renaming.
22777         (function_arg_union_value): Likewise.
22778         (sparc_arg_partial_bytes): Likewise.
22779         (sparc_function_arg_advance): Likewise.
22781 2016-02-29  Jeff Law  <law@redhat.com>
22783         PR tree-optimization/70005
22784         * tree-ssa-uncprop.c (associate_equivalences_with_edges): Handle case
22785         where an object with a boolean range is compared against a value
22786         outside [0..1].
22788         PR tree-optimization/69999
22789         * gimple-ssa-split-paths.c (split_paths): When duplicating a block
22790         with an outgoing edge marked with EDGE_IRREDUCIBLE_LOOP, schedule
22791         loop cleanups.
22793 2016-02-29  Richard Biener  <rguenther@suse.de>
22795         PR tree-optimization/69994
22796         * tree-ssa-reassoc.c (gimple_nop_conversion_p): New function.
22797         (get_unary_op): Look through nop conversions.
22798         (ops_equal_values_p): New function, look for equality diregarding
22799         nop conversions.
22800         (eliminate_plus_minus_pair): Use ops_equal_values_p
22801         (repropagate_negates): Do not use get_unary_op here.
22803 2016-02-29  Martin Liska  <mliska@suse.cz>
22805         * system.h: Poison ENABLE_CHECKING macro.
22807 2016-02-29  Martin Liska  <mliska@suse.cz>
22809         * hsa-gen.c (gen_body_from_gimple): Dump only if TDF_DETAILS
22810         is presented in dump flags.
22811         * hsa-regalloc.c (linear_scan_regalloc): Likewise.
22812         (hsa_regalloc): Likewise.
22814 2016-02-19  Richard Biener  <rguenther@suse.de>
22816         PR tree-optimization/69980
22817         * tree-vect-slp.c (vect_attempt_slp_rearrange_stmts): Update
22818         permutation of those we need to keep.
22820 2016-02-29  Eric Botcazou  <ebotcazou@adacore.com>
22822         PR target/69706
22823         * config/sparc/sparc.c (ROUND_ADVANCE): Rename to...
22824         (NWORDS_UP): ...this
22825         (init_cumulative_args): Minor tweaks.
22826         (sparc_promote_function_mode): Likewise.
22827         (scan_record_type): Delete.
22828         (traverse_record_type): New function template.
22829         (classify_data_t): New structure type.
22830         (classify_registers): New inline function.
22831         (function_arg_slotno): In 64-bit mode, bail out early if FP slots are
22832         exhausted.  Instantiate traverse_record_type on classify_registers and
22833         deal with the case of a structure passed in slot #15 with no FP field
22834         in the first word.
22835         (assign_data_t): New structure type.
22836         (compute_int_layout): New static function.
22837         (compute_fp_layout): Likewise.
22838         (count_registers): New inline function.
22839         (assign_int_registers): New static function.
22840         (assign_fp_registers): Likewise.
22841         (assign_registers): New inline function.
22842         (function_arg_record_value_1): Delete.
22843         (function_arg_record_value_2): Likewise.
22844         (function_arg_record_value_3): Likewise.
22845         (function_arg_record_value): Adjust to above changes.  Instantiate
22846         traverse_record_type on count_registers to first count the number of
22847         registers to be used and then on assign_registers to assign them.
22848         (function_arg_union_value): Adjust to above renaming.
22849         (sparc_function_arg_1); Minor tweaks.  Remove commented out code.
22850         (sparc_arg_partial_bytes): Adjust to above renaming.  Deal with the
22851         case of a structure passed in slot #15
22852         (sparc_function_arg_advance): Likewise.
22853         (function_arg_padding): Minor tweak.
22855 2016-02-29  Richard Biener  <rguenther@suse.de>
22857         PR tree-optimization/69720
22858         * tree-vect-loop.c (get_initial_def_for_reduction): Avoid
22859         the adjustment_def path for possibly vectorized defs.
22860         (vect_create_epilog_for_reduction): Handle vectorized initial
22861         defs properly.
22863 2016-02-28  Eric Botcazou  <ebotcazou@adacore.com>
22865         * config/i386/cygming.h (STACK_REALIGN_DEFAULT): Define.
22867 2016-02-27  Jeff Law  <law@redhat.com>
22869         Revert
22870         2016-02-26  Richard Biener  <rguenther@suse.de>
22871                     Jeff Law  <law@redhat.com>
22873         PR tree-optimization/69740
22874         * cfghooks.c (remove_edge): Request loop fixups if we delete
22875         an edge that might turn an irreducible loop into a natural
22876         loop.
22878 2016-02-27  Jakub Jelinek  <jakub@redhat.com>
22880         PR rtl-optimization/69896
22881         * tree-vect-generic.c (get_compute_type): Avoid single element
22882         vector types.
22884 2016-02-26  Evandro Menezes  <e.menezes@samsung.com>
22886         Rename the AArch64 tuning option and related functions to enable the
22887         Newton series for the reciprocal square root to reflect its
22888         approximative characteristic.
22890         * config/aarch64/aarch64-protos.h (aarch64_emit_swrsqrt): Rename
22891         function to "aarch64_emit_approx_rsqrt".
22892         * config/aarch64/aarch64-tuning-flags.def: Rename tuning flag to
22893         AARCH64_EXTRA_TUNE_APPROX_RSQRT.
22894         * config/aarch64/aarch64.c (exynosm1_tunigs): Use new flag name.
22895         (xgene1_tunings): Likewise.
22896         (use_rsqrt_p): Likewise.
22897         (aarch64_emit_swrsqrt): Use new function name.
22898         * config/aarch64/aarch64-simd.md (aarch64_rsqrts_*): Likewise.
22899         * config/aarch64/aarch64.opt (mlow-precision-recip-sqrt): Reword the
22900         text explaining this option.
22901         * doc/invoke.texi (-mlow-precision-recip-sqrt): Likewise.
22903 2016-02-26  Jakub Jelinek  <jakub@redhat.com>
22905         PR target/69969
22906         * config/rs6000/rs6000.c (rs6000_option_override_internal): Don't
22907         complain about -mallow-movmisalign without -mvsx if
22908         TARGET_ALLOW_MOVMISALIGN was not set explicitly.
22910 2016-02-26  Joel Sherrill  <joel@rtems.org>
22912         * config.gcc: Add x86_64-*-rtems*.
22913         * config/i386/rtems-64.h: New file.
22915 2016-02-26  Joel Sherrill  <joel@rtems.org>
22917         * config.gcc: Add aarch64-*-rtems*.
22918         * config/aarch64/rtems.h: New file.
22920 2016-02-26  Segher Boessenkool  <segher@kernel.crashing.org>
22922         PR target/69946
22923         * config/rs6000/rs6000.c (rs6000_insn_for_shift_mask): Print rlwinm
22924         shift amount using %h.  Add comment.
22926 2016-02-26  Richard Biener  <rguenther@suse.de>
22927             Jeff Law  <law@redhat.com>
22929         PR tree-optimization/69740
22930         * cfghooks.c (remove_edge): Request loop fixups if we delete
22931         an edge that might turn an irreducible loop into a natural
22932         loop.
22934 2016-02-26  Martin Jambor  <mjambor@suse.cz>
22936         PR middle-end/69920
22937         * tree-sra.c (sra_modify_assign): Do not remove loads of
22938         uninitialized aggregates to SSA_NAMEs.
22940 2016-02-26  Richard Henderson  <rth@redhat.com>
22942         PR target/69709
22943         * config/s390/s390.md (risbg and risbgn splitters): Allocate new
22944         pseudo in case the target rtx matches the source of the left
22945         shift.
22947 2016-02-26  Martin Jambor  <mjambor@suse.cz>
22949         PR hsa/69568
22950         * hsa.h (hsa_type_packed_p): Declare.
22951         * hsa.c (hsa_type_packed_p): New function.
22952         * hsa-gen.c (mem_type_for_type): Use unsigned type for packed
22953         loads.
22954         (gen_hsa_insns_for_store): Use hsa_type_packed_p.
22955         * hsa-brig.c (emit_basic_insn): Likewise.
22957 2016-02-26  Martin Jambor  <mjambor@suse.cz>
22959         pr hsa/69674
22960         * hsa-gen.c (gen_hsa_phi_from_gimple_phi): Use proper hsa type for
22961         pointers.
22962         (gen_hsa_addr): Allow integer constants in TMR_INDEX2.
22964 2016-02-26  Martin Jambor  <mjambor@suse.cz>
22966         * hsa.h (is_a_helper): New overload for hsa_op_immed for
22967         hsa_op_with_type operands.
22968         (hsa_unsigned_type_for_type): Declare.
22969         * hsa.c (hsa_unsigned_type_for_type): New function.
22970         * hsa-gen.c (gen_hsa_binary_operation): Use hsa_unsigned_type_for_type.
22971         (gen_hsa_insns_for_operation_assignment): Satisfy constrains of
22972         the finalizer.  Do not emit extra move.
22974 2016-02-26  Martin Jambor  <mjambor@suse.cz>
22976         * hsa-gen.c (gen_hsa_ternary_atomic_for_builtin): Fail in presence of
22977         atomic operations in private segment.
22979 2016-02-26  Martin Jambor  <mjambor@suse.cz>
22981         * omp-low.c (grid_find_ungridifiable_statement): Store problematic
22982         statements to wi->info.  Also disallow omp simd constructs.
22983         (grid_target_follows_gridifiable_pattern): Use wi.info to dump reason
22984         for not gridifying.  Dump special string for omp_for.
22986 2016-02-26  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
22988         PR target/69245
22989         * config/aarch64/aarch64.c (aarch64_set_current_function):
22990         Save/restore target globals when switching to
22991         target_option_default_node.
22993 2016-02-26  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
22995         PR target/69613
22996         * config/aarch64/aarch64.c (aarch64_shift_truncation_mask):
22997         Return 0 if !SHIFT_COUNT_TRUNCATED.
22999 2016-02-26  Jakub Jelinek  <jakub@redhat.com>
23000             Eric Botcazou  <ebotcazou@adacore.com>
23002         PR rtl-optimization/69891
23003         * dse.c (scan_insn): If we can't figure out memset arguments
23004         or they are non-constant, call clear_rhs_from_active_local_stores.
23006 2016-02-26  Martin Liska  <mliska@suse.cz>
23008         * doc/extend.texi: Mention clog10, clog10f an clog10l
23009         in Builtins section.
23011 2016-02-26  Martin Liska  <mliska@suse.cz>
23013         * dwarf2out.c (new_loc_descr): Replace ENABLE_CHECKING with
23014         CHECKING_P.
23015         (resolve_args_picking_1): Likewise.
23016         * dwarf2out.h (struct GTY): Likewise.
23018 2016-02-26  Martin Liska  <mliska@suse.cz>
23020         * hsa-gen.c (generate_hsa): Replace ENABLE_CHECKING macro
23021         with flag_checking.
23022         * hsa-regalloc.c (linear_scan_regalloc): Likewise.
23024 2016-02-26  Markus Trippelsdorf  <markus@trippelsdorf.de>
23025             Martin Liska  <mliska@suse.cz>
23027         * doc/install.texi: Mention --enable-valgrind-annotations.
23029 2016-02-26  Richard Biener  <rguenther@suse.de>
23031         PR tree-optimization/69551
23032         * tree-ssa-structalias.c (get_constraint_for_ssa_var): When
23033         looking through aliases adjust DECL_PT_UID to refer to the
23034         ultimate alias target.
23036 2016-02-25  Martin Liska  <mliska@suse.cz>
23038         PR middle-end/69919
23039         * alloc-pool.c (after_memory_report): New variable.
23040         * alloc-pool.h (base_pool_allocator ::release): Do not use
23041         the infrastructure if after_memory_report.
23042         * toplev.c (toplev::main): Mark after memory report.
23044 2016-02-25  Richard Biener  <rguenther@suse.de>
23046         PR tree-optimization/48795
23047         * tree-vrp.c (check_array_ref): Use array_at_struct_end_p.
23049 2016-02-25  Ilya Verbin  <ilya.verbin@intel.com>
23051         PR driver/68463
23052         * config/gnu-user.h (CRTOFFLOADBEGIN): Define.  Add crtoffloadbegin.o if
23053         offloading is enabled and -fopenacc or -fopenmp is specified.
23054         (CRTOFFLOADEND): Likewise.
23055         (GNU_USER_TARGET_STARTFILE_SPEC): Add CRTOFFLOADBEGIN.
23056         (GNU_USER_TARGET_ENDFILE_SPEC): Add CRTOFFLOADEND.
23057         * lto-wrapper.c (offloadbegin, offloadend): Remove static vars.
23058         (offload_objects_file_name): New static var.
23059         (tool_cleanup): Remove offload_objects_file_name file.
23060         (find_offloadbeginend): Replace with ...
23061         (find_crtoffloadtable): ... this.
23062         (run_gcc): Remove offload_argc and offload_argv.
23063         Get offload_objects_file_name from -foffload-objects=... option.
23064         Read names of object files with offload from this file, pass them to
23065         compile_images_for_offload_targets.  Don't call find_offloadbeginend and
23066         don't pass offloadbegin and offloadend to the linker.  Don't pass
23067         offload non-LTO files to the linker, because now they're not claimed.
23069 2016-02-25  Jan Hubicka  <hubicka@ucw.cz>
23071         PR ipa/69630
23072         * ipa-devirt.c (possible_polymorphic_call_targets): Do not ICE
23073         on builtin_unreachable.
23075 2016-02-25  Jakub Jelinek  <jakub@redhat.com>
23077         PR rtl-optimization/69896
23078         * regcprop.c: Include cfgrtl.h.
23079         (copyprop_hardreg_forward_1): If noop_p insn uses narrower
23080         than remembered mode, either delete it (if noop_move_p), or
23081         treat like copy_p but not noop_p instruction.
23083 2016-02-24  Jakub Jelinek  <jakub@redhat.com>
23085         PR debug/69705
23086         * dwarf2out.c (gen_variable_die): Work around buggy LTO
23087         - allow NULL decl for Fortran DW_TAG_common_block variables.
23089 2016-02-24  Jason Merrill  <jason@redhat.com>
23091         * common.opt (flifetime-dse): Add -flifetime-dse=1.
23093 2016-02-24  Richard Biener  <rguenther@suse.de>
23094             Jakub Jelinek  <jakub@redhat.com>
23096         PR middle-end/69760
23097         * tree-scalar-evolution.c (interpret_rhs_expr): Re-write
23098         conditionally executed ops to well-defined overflow behavior.
23100 2016-02-24  Jakub Jelinek  <jakub@redhat.com>
23102         PR middle-end/69915
23103         * tree.c (build_vector_from_ctor): Fix handling of VECTOR_CST
23104         elements.
23106 2016-02-24  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
23108         PR rtl-optimization/69886
23109         * gcse.c (can_assign_to_reg_without_clobbers_p): Accept mode
23110         argument.  Use it when checking validity of set instructions.
23111         (want_to_gcse_p): Pass mode to can_assign_to_reg_without_clobbers_p.
23112         (compute_ld_motion_mems): Update can_assign_to_reg_without_clobbers_p
23113         callsite.
23114         * rtl.h (can_assign_to_reg_without_clobbers_p): Update prototype.
23115         * store-motion.c (find_moveable_store): Update
23116         can_assign_to_reg_without_clobbers_p callsite.
23118 2016-02-24  Richard Biener  <rguenther@suse.de>
23120         PR middle-end/68963
23121         * tree-ssa-loop-niter.c (derive_constant_upper_bound_ops): Fix
23122         bogus check.
23123         (record_nonwrapping_iv): Do not fall back to the low/high bound
23124         for non-constant IV bases if the stmt is not always executed.
23126 2016-02-24  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
23128         * config/arm/arm-cores.def (cortex-a32): New entry.
23129         * config/arm/arm-tables.opt: Regenerate.
23130         * config/arm/arm-tune.md: Regenerate.
23131         * config/arm/bpabi.h (BE8_LINK_SPEC): Add mcpu=cortex-a32.
23132         * config/arm/t-aprofile: Handle mcpu=cortex-a32.
23133         * doc/invoke.texi (ARM Options): Document cortex-a32 as value
23134         for -mcpu and -mtune.
23136 2016-02-24  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
23138         PR target/69875
23139         * config/arm/arm.h (TARGET_HAVE_LPAE): Define.
23140         * config/arm/unspecs.md (VUNSPEC_LDRD_ATOMIC): New value.
23141         * config/arm/sync.md (arm_atomic_loaddi2_ldrd): New pattern.
23142         (atomic_loaddi_1): Delete.
23143         (atomic_loaddi): Rewrite expander using the above changes.
23145 2016-02-24  Jakub Jelinek  <jakub@redhat.com>
23147         PR c/69918
23148         * params.def (PARAM_MAX_SSA_NAME_QUERY_DEPTH): Bump default from
23149         2 to 3.
23151 2016-02-24  Jakub Jelinek  <jakub@redhat.com>
23152             Richard Biener  <rguenth@suse.de>
23154         PR middle-end/69909
23155         * expr.c (expand_expr_real_1) <normal_inner_ref>: Avoid
23156         set_mem_attributes if tem is SSA_NAME which got expanded
23157         as a MEM.
23159 2016-02-24  Richard Biener  <rguenther@suse.de>
23161         PR tree-optimization/69907
23162         * tree-vect-stmts.c (vectorizable_load): Check for gaps at the
23163         end of permutations for BB vectorization.
23165 2016-02-24  Christian Bruel  <christian.bruel@st.com>
23167         * config/arm/arm-c.c (arm_option_override): Initialize
23168         target_option_current_node.
23169         * config/arm/arm.c (arm_pragma_target_parse): Replace
23170         build_target_option_node call by target_option_current_node.
23171         Set target_option_current_node.
23172         Fix comments.
23174 2016-02-23  David Edelsohn  <dje.gcc@gmail.com>
23176         PR target/69810
23177         * config/rs6000/rs6000.md (zero_extendqi<mode>2_dot): Convert from
23178         define_insn_and_split to define_insn.
23179         (zero_extendqi<mode>2_dot2): Same.
23180         (extendqi<mode>2_dot): Same.
23181         (extendqi<mode>2_dot2): Same.
23183 2016-02-23  Evandro Menezes  <e.menezes@samsung.com>
23185         * config/arm/exynos-m1.md: Change cost of STP, fix bypass for stores
23186         and add bypass for AES{D,E} and AESMC pairs.
23187         * config/aarch64/aarch64.c (exynosm1_tunings): Enable fusion of AES{D,E}
23188         and AESMC pairs.
23190 2016-02-23  Evandro Menezes  <e.menezes@samsung.com>
23192         * config/aarch64/aarch64.c (exynosm1_tunings): Enable the Newton
23193         series for reciprocal square root in Exynos M1.
23195 2016-02-23  Martin Sebor  <msebor@redhat.com>
23197         PR c/69759
23198         * doc/extend.texi (Other Builtins): Document __builtin_alloca and
23199         __builtin_alloca_with_align.
23201 2016-02-23  Richard Henderson  <rth@redhat.com>
23203         * config/i386/i386-c.c (ix86_target_macros): Remove __SEG_TLS.
23204         (ix86_register_pragmas): Remove __seg_tls.
23205         * config/i386/i386-protos.h (ADDR_SPACE_SEG_TLS): Remove.
23206         * config/i386/i386.c (ix86_print_operand_address_as): Don't handle it.
23207         (ix86_addr_space_subset_p, TARGET_ADDR_SPACE_SUBSET_P): Remove.
23208         (ix86_addr_space_convert, TARGET_ADDR_SPACE_CONVERT): Remove.
23209         (ix86_addr_space_debug, TARGET_ADDR_SPACE_DEBUG): Remove.
23210         * doc/extend.texi (__seg_tls): Remove item.
23212 2016-02-23  Richard Biener  <rguenther@suse.de>
23214         * alloc-pool.h (struct allocation_object): Make id member
23215         conditional on CHECKING_P again.
23216         (get_instance): Adjust.
23217         (base_pool_allocator): Likewise.
23219 2016-02-23  Thomas Schwinge  <thomas@codesourcery.com>
23221         * tree-parloops.c (create_parallel_loop, gen_parallel_loop)
23222         (parallelize_loops): In OpenACC kernels mode, set n_threads to
23223         zero.
23224         (pass_parallelize_loops::gate): In OpenACC kernels mode, gate on
23225         flag_openacc.
23226         * tree-ssa-loop.c (gate_oacc_kernels): Likewise.
23228 2016-02-23  Richard Biener  <rguenther@suse.de>
23230         * mem-stats.h (struct mem_usage): Use PRIu64 for printing size_t.
23231         * bitmap.h (struct bitmap_usage): Likewise.
23232         (bitmap_move): Declare.
23233         * bitmap.c (register_overhead): Take size_t argument.
23234         (bitmap_move): New function.
23235         * df-problems.c (df_rd_transfer_function): Use bitmap_move
23236         to properly account overhead.
23237         * tree.c (free_node): Use tree_size.
23239 2016-02-23  Jakub Jelinek  <jakub@redhat.com>
23241         PR c++/69902
23242         * fold-const.c (fold_truth_not_expr): Propagate TREE_NO_WARNING
23243         when inverting comparison.
23245         PR c/69900
23246         * common.opt (Wunreachable-code): Add Warning flag.
23248 2016-02-23  Mark Wielaard  <mjw@redhat.com>
23249             Jakub Jelinek  <jakub@redhat.com>
23251         PR c/69911
23252         * cgraphunit.c (check_global_declaration): Check main_input_filename
23253         and DECL_SOURCE_FILE are not NULL.
23255 2016-02-23  Martin Jambor  <mjambor@suse.cz>
23257         PR tree-optimization/69666
23258         * tree-sra.c (sra_modify_assign): Do not attempt to create
23259         default_def replacements for unscalarizable regions.
23261 2016-02-20  Mark Wielaard  <mjw@redhat.com>
23263         PR c/28901
23264         * cgraphunit.c (check_global_declaration): Check level of
23265         warn_unused_const_variable and main_input_filename.
23266         * doc/invoke.texi (Warning Options): Add -Wunused-const-variable=.
23267         (-Wunused-variable): For C implies -Wunused-const-variable=1.
23268         (-Wunused-const-variable): Explain levels 1 and 2.
23270 2016-02-22  Jakub Jelinek  <jakub@redhat.com>
23272         PR target/69888
23273         * config/i386/i386.c (decide_alg): Ensure we don't recurse with
23274         identical arguments.  Formatting and spelling fixes.
23276         PR target/69885
23277         * doc/md.texi (ashl@var{m}3): Document that mode of operand 2 must
23278         be specified.
23280         PR target/69894
23281         PR target/69895
23282         * config/m68k/t-opts (OPTIONS_H_EXTRA): Add m68k-microarchs.def
23283         and m68k-devices.def.
23284         * config/c6x/t-c6x (OPTIONS_H_EXTRA): Add c6x-isas.def.
23285         * config/aarch64/t-aarch64 (OPTIONS_H_EXTRA): Add aarch64-arches.def.
23287 2016-02-22  Cesar Philippidis  <cesar@codesourcery.com>
23289         * config/nvptx/nvptx.c (nvptx_gen_shuffle): Add support for QImode
23290         and HImode registers.
23292 2016-02-22  Richard Biener  <rguenther@suse.de>
23294         PR tree-optimization/69882
23295         * tree-vect-slp.c (vect_attempt_slp_rearrange_stmts): Properly
23296         preserve permutations present because of gaps.
23297         (vect_supported_load_permutation_p): Always continue checking
23298         permutations after vect_attempt_slp_rearrange_stmts.
23300 2016-02-22  Bin Cheng  <bin.cheng@arm.com>
23302         * tree-vect-loop.c (vect_estimate_min_profitable_iters): Dump
23303         min_profitable_estimate, rather than min_profitable_iters.
23305 2016-02-22  Jakub Jelinek  <jakub@redhat.com>
23307         PR target/69885
23308         * config/m68k/m68k.md (ashldi3, ashrdi3, lshrdi3): Use
23309         SImode for last match_operand.
23311 2016-02-22  Martin Liska  <mliska@suse.cz>
23313         * hsa-gen.c (gen_hsa_clrsb): In case of zero value,
23314         return bitsize - 1 as the return value.
23316 2016-02-22  Oleg Endo  <olegendo@gcc.gnu.org>
23318         PR target/69806
23319         PR target/54089
23320         * config/sh/sh.c (sh_lshrsi_clobbers_t_reg_p, sh_dynamicalize_shift_p):
23321         Handle negative shift counts.
23322         * config/sh/sh.md (ashlsi3, lshrsi3_n, lshrsi3_n_clobbers_t): Don't use
23323         force_reg on the shift constant.
23324         (lshrsi3): Likewise.  Expand into lshrsi3_n* instead of lshrsi3_d.
23325         (lshrsi3_d): Handle negative shift counts.
23327 2016-02-22  Richard Biener  <rguenther@suse.de>
23328             Tom de Vries  <tom@codesourcery.com>
23330         * graph.c: Include dumpfile.h.
23331         (print_graph_cfg): Split into three overloads.
23332         * gdbhooks.py (class DotFn): Add and instantiate, adding command dot-fn.
23334 2016-02-22  Tom de Vries  <tom@codesourcery.com>
23336         * gdbhooks.py (class DumpFn): Add and instantiate, adding command
23337         dump-fn.
23339 2016-02-22  Richard Biener  <rguenther@suse.de>
23341         PR ipa/37448
23342         * ipa-inline-transform.c (inline_call): When not updating
23343         overall summaries adjust self size by the growth estimate.
23344         * ipa-inline.c (inline_to_all_callers_1): Add to the callers
23345         hash-set, do not update overall summaries here.  Renamed from ...
23346         (inline_to_all_callers): ... this which is now wrapping the
23347         above and performing delayed overall summary update.
23348         (early_inline_small_functions): Delay updating of the overall
23349         summary.
23351 2016-02-21  Markus Trippelsdorf  <markus@trippelsdorf.de>
23353         * tree-chkp.c (chkp_mark_invalid_bounds_walker): Initialize
23354         variable.
23356 2016-02-19  Jakub Jelinek  <jakub@redhat.com>
23358         PR driver/69805
23359         * gcc.c (LINK_COMMAND_SPEC, GOMP_SELF_SPECS): Use
23360         :%* in %:gt() argument.
23361         (greater_than_spec_func): Adjust for expecting only numbers,
23362         if there are more than two numbers, compare the last two.
23364 2016-02-19  Jonathan Wakely  <jwakely@redhat.com>
23366         * doc/invoke.texi (C++ Dialect Options): Clarify interaction of
23367         -Wnarrowing with -std.
23369 2016-02-19  Jakub Jelinek  <jakub@redhat.com>
23371         PR c++/69851
23372         * expr.c (store_field): Don't use bit-field path if exp is
23373         COMPONENT_REF with TREE_ADDRESSABLE type, where TYPE_SIZE is
23374         different from bitsize, but DECL_SIZE of FIELD_DECL is bitsize
23375         and the assignment can be performed by bitwise copy.  Formatting
23376         fix.
23378         PR middle-end/69838
23379         * lra.c (lra_process_new_insns): If non-call exceptions are enabled,
23380         call copy_reg_eh_region_note_forward on before and/or after sequences
23381         and remove note from insn if it no longer can throw.
23383         PR target/69820
23384         * config/i386/sse.md (VI_512): Only include V64QImode and V32HImode
23385         if TARGET_AVX512BW.
23387 2016-02-19  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
23389         * config/s390/vector.md: Add missing commutative operand markers
23390         to the patterns which qualify for one.
23391         * config/s390/vx-builtins.md: Likewise.
23393 2016-02-19  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
23395         * config/s390/vector.md (VI, VI_QHS): Add single element vector
23396         types to mode iterators.
23397         (vec_double): ... and mode attribute.
23398         * config/s390/vx-builtins.md (non_vec_int): Likewise.
23400 2016-02-19  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
23402         * config/s390/vector.md ("<ti*>add<mode>3", "<ti*>sub<mode>3"):
23403         Change the predicate of op2 from nonimmediate to general and let
23404         reload fix it if necessary.
23406 2016-02-19  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
23408         * config/s390/vecintrin.h (vec_sub_u128): Define missing macro.
23410 2016-02-19  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
23412         * config/s390/s390.c (s390_expand_vcond): Use the compare operand
23413         mode.
23415 2016-02-19  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
23417         * config/s390/s390-protos.h: Add s390_expand_vec_movstr prototype.
23418         * config/s390/s390.c (s390_expand_vec_movstr): New function.
23419         * config/s390/s390.md ("movstr<P:mode>"): Call
23420         s390_expand_vec_movstr.
23422 2016-02-19  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
23424         * config/s390/s390.md: Add missing output modifier for operand 1
23425         to print it as address properly.
23427 2016-02-19  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
23429         * config/s390/2827.md: Rename ooo_* insn attributes to zEC12_*.
23430         * config/s390/2964.md: New file.
23431         * config/s390/s390.c (s390_get_sched_attrmask): Use the right set
23432         of insn grouping attributes depending on the CPU level.
23433         (s390_get_unit_mask): New function.
23434         (s390_sched_score): Remove the OOO from the scheduling macros.
23435         Add loop to calculate a score for the instruction mix.
23436         (s390_sched_reorder): Likewise plus improve debug output.
23437         (s390_sched_variable_issue): Rename macros as above.  Calculate
23438         the unit distances after actually scheduling an insn.  Improve
23439         debug output.
23440         (s390_sched_init): Clear last_scheduled_unit_distance array.
23441         * config/s390/s390.md: Include 2964.md.
23443 2016-02-18  Jakub Jelinek  <jakub@redhat.com>
23445         PR target/69671
23446         * config/i386/sse.md (*<floatsuffix>floatv2div2sf2_mask_1,
23447         *avx512vl_<code>v2div2qi2_mask_1, *avx512vl_<code><mode>v4qi2_mask_1,
23448         *avx512vl_<code><mode>v8qi2_mask_1, *avx512vl_<code><mode>v4hi2_mask_1,
23449         *avx512vl_<code>v2div2hi2_mask_1, *avx512vl_<code>v2div2si2_mask_1,
23450         *avx512f_<code>v8div16qi2_mask_1): New insns.
23452 2016-02-18  Michael Meissner  <meissner@linux.vnet.ibm.com>
23454         PR target/68404
23455         * config/rs6000/predicates.md (fusion_gpr_addis): Revert
23456         2016-02-09 change.
23458         * config/rs6000/rs6000.md (fusion_gpr_load_<mode>): Remove
23459         earlyclobber from target.  Use wF constraint for fused memory
23460         address.
23461         (fusion_gpr_<P:mode>_<GPR_FUSION:mode>_load): Likewise.
23463 2016-02-18  Jakub Jelinek  <jakub@redhat.com>
23464             Martin Liska  <mliska@suse.cz>
23466         PR sanitizer/69863
23467         * cfgexpand.c (asan_sanitize_stack_p): New function.
23468         (partition_stack_vars): Use the function.
23469         (expand_stack_vars): Likewise.
23470         (defer_stack_allocation): Likewise.
23471         (expand_used_vars): Likewise.
23473 2016-02-18  Richard Biener  <rguenther@suse.de>
23475         PR middle-end/69553
23476         * fold-const.c (operand_equal_p): Properly compare offsets for
23477         IMAGPART_EXPR and ARRAY_REF.
23479 2016-02-18  Nick Clifton  <nickc@redhat.com>
23481         PR target/62254
23482         PR target/69610
23483         * config/arm/arm.c (arm_option_override_internal): Disable
23484         interworking if the target does not support thumb instructions.
23485         (arm_reload_in_hi): Handle the case where a register to register
23486         move needs reloading because there is no simple pattern to handle
23487         it.
23488         (arm_reload_out_hi): Likewise.
23490 2016-02-18  Richard Biener  <rguenther@suse.de>
23492         PR middle-end/69854
23493         * match.pd: Don't use fold_binary or fold_unary for folding
23494         constants.
23496 2016-02-17  Jakub Jelinek  <jakub@redhat.com>
23498         PR c++/69850
23499         * gimplify.c (gimplify_cond_expr): Call gimple_set_no_warning
23500         on the cond_stmt from TREE_NO_WARNING on COND_EXPR_COND.
23501         * gimple-ssa-nonnull-compare.c (do_warn_nonnull_compare): Don't
23502         warn on gimple_no_warning_p statements.
23504 2016-02-17  Jonathan Wakely  <jwakely@redhat.com>
23506         * doc/extend.texi (C++ Attributes): Correct description of
23507         warn_unused type attribute.
23509 2016-02-17  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
23511         * config/rs6000/altivec.md (*altivec_lvxl_<mode>_internal): Output
23512         correct instruction.
23514 2016-02-17  Richard Biener  <rguenther@suse.de>
23516         PR rtl-optimization/69609
23517         * bb-reorder.c (struct bbro_basic_block_data): Add priority member.
23518         (find_traces_1_round): When ending a trace update cached priority
23519         of successors.
23520         (bb_to_key): Use cached priority when available.
23521         (copy_bb): Initialize cached priority.
23522         (reorder_basic_blocks_software_trace_cache): Likewise.
23524 2016-02-17  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
23526         PR target/69161
23527         * config/aarch64/predicates.md (aarch64_comparison_operator_mode):
23528         New predicate.
23529         (aarch64_comparison_operator): Break overly long line into two.
23530         (aarch64_comparison_operation): Likewise.
23531         * config/aarch64/aarch64.md (cstorecc4): Use
23532         aarch64_comparison_operator_mode instead of
23533         aarch64_comparison_operator.
23534         (cstore<mode>4): Likewise.
23535         (aarch64_cstore<mode>): Likewise.
23536         (*cstoresi_insn_uxtw): Likewise.
23537         (cstore<mode>_neg): Likewise.
23538         (*cstoresi_neg_uxtw): Likewise.
23540 2016-02-17  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
23542         PR target/69161
23543         * config/arm/predicates.md (arm_comparison_operator_mode):
23544         New predicate.
23545         * config/arm/arm.md (*mov_scc): Use arm_comparison_operator_mode
23546         instead of arm_comparison_operator.
23547         (*mov_negscc): Likewise.
23548         (*mov_notscc): Likewise.
23549         * config/arm/thumb2.md (*thumb2_mov_scc): Likewise.
23550         (*thumb2_mov_negscc): Likewise.
23551         (*thumb2_mov_negscc_strict_it): Likewise.
23552         (*thumb2_mov_notscc): Likewise.
23553         (*thumb2_mov_notscc_strict_it): Likewise.
23555 2016-02-17  Wilco Dijkstra  <wdijkstr@arm.com>
23557         * config/aarch64/aarch64.c (aarch64_internal_mov_immediate):
23558         Add missing return.
23560 2016-02-17  Eric Botcazou  <ebotcazou@adacore.com>
23562         * config/visium/visium.c (machine_libfunc_index): New enum.
23563         (machine_libfuncs): New structure.
23564         (visium_libfuncs): New static variable.
23565         (TARGET_INIT_LIBFUNCS): Define to...
23566         (visium_init_libfuncs): ...this.  New function.
23567         (expand_block_move_4): Use the appropriate libfunc.
23568         (expand_block_move_2): Likewise.
23569         (expand_block_move_1): Likewise.
23570         (expand_block_set_4): Likewise.
23571         (expand_block_set_2): Likewise.
23572         (expand_block_set_1): Likewise.
23573         (visium_trampoline_init): Likewise.
23575 2016-02-17  Nick Clifton  <nickc@redhat.com>
23577         * config/msp430/msp430.c (msp430_mcu_data): Sync with data from
23578         TI's devices.csv file as of March 2016.
23580 2016-02-16  Kelvin Nilsen  <kelvin@gcc.gnu.org>
23582         PR Target/48344
23583         * opts-global.c (handle_common_deferred_options): Introduce and
23584         initialize two global variables to remember command-line options
23585         specifying a stack-limiting register.
23586         * opts.h: Add extern declarations of the two new global variables.
23587         * emit-rtl.c (init_emit_once): Initialize the stack_limit_rtx
23588         variable based on the values of the two new global variables.
23590 2016-02-16  Jakub Jelinek  <jakub@redhat.com>
23592         PR c/69835
23593         * common.opt (Wnonnull-compare): New warning.
23594         * doc/invoke.texi (-Wnonnull): Remove text about comparison
23595         of arguments against NULL.
23596         (-Wnonnull-compare): Document.
23597         * Makefile.in (OBJS): Add gimple-ssa-nonnull-compare.o.
23598         * tree-pass.h (make_pass_warn_nonnull_compare): Declare.
23599         * passes.def (pass_warn_nonnull_compare): Add.
23600         * gimple-ssa-nonnull-compare.c: New file.
23602 2016-02-16  James Greenhalgh  <james.greenhalgh@arm.com>
23604         * config/aarch64/aarch64.c (cortexa57_tunings): Remove
23605         AARCH64_EXTRA_TUNE_RECIP_SQRT.
23607 2016-02-16  James Greenhalgh  <james.greenhalgh@arm.com>
23609         * config/aarch64/aarch64.c (use_rsqrt_p): Always use software
23610         reciprocal sqrt for -mlow-precision-recip-sqrt.
23612 2016-02-16  James Greenhalgh  <james.greenhalgh@arm.com>
23613             Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>
23615         * config/aarch64/aarch64.c (aarch64_expand_vector_init): Refactor,
23616         always use lane loads to construct non-constant vectors.
23618 2016-02-16  James Greenhalgh  <james.greenhalgh@arm.com>
23620         * config/aarch64/aarch64.md
23621         (arch64_sqrdml<SQRDMLH_AS:rdma_as>h_lane<mode>): Fix register
23622         constraints for operand 3.
23623         (aarch64_sqrdml<SQRDMLH_AS:rdma_as>h_laneq<mode>): Likewise.
23625 2016-02-16  Jakub Jelinek  <jakub@redhat.com>
23626             Richard Biener  <rguenther@suse.de>
23628         PR tree-optimization/69820
23629         * tree-vect-patterns.c (type_conversion_p): Return false if
23630         *orig_type is unsigned single precision or boolean.
23631         (vect_recog_dot_prod_pattern, vect_recog_widen_mult_pattern):
23632         Formatting fix.
23634 2016-02-16  Jakub Jelinek  <jakub@redhat.com>
23636         PR rtl-optimization/69764
23637         PR rtl-optimization/69771
23638         * optabs.c (expand_binop): Ensure for shift optabs invalid CONST_INT
23639         op1 is valid for GET_MODE_INNER (mode) and force it into a reg.
23641 2016-02-16  Richard Biener  <rguenther@suse.de>
23643         PR tree-optimization/69776
23644         * tree-ssa-alias.c (indirect_ref_may_alias_decl_p): Get alias
23645         sets from caller.
23646         (indirect_refs_may_alias_p): Likewise.
23647         (refs_may_alias_p_1): Pass alias sets as from ao_ref.
23648         * tree-ssa-sccvn.c (vn_reference_lookup): Also adjust vr alias-set
23649         according to tbaa_p.
23650         * tree-ssa-dom.c (lookup_avail_expr): Add tbaa_p flag.
23651         (optimize_stmt): For redundant store discovery do not allow tbaa.
23653 2016-02-16  Bernd Schmidt  <bschmidt@redhat.com>
23655         PR tree-optimization/69714
23656         * tree-ssa-math-opts.c (find_bswap_or_nop): Revert previous change.
23657         Return NULL if we have irrelevant high bytes on BIG_ENDIAN.
23659 2016-02-16  Claudiu Zissulescu  <claziss@synopsys.com>
23661         * config/arc/arc-modes.def (CC_FPU, CC_FPU_UNEQ): New modes.
23662         * config/arc/arc-opts.h (FPU_SP, FPU_SF, FPU_SC, FPU_SD, FPU_DP)
23663         (FPU_DF, FPU_DC, FPU_DD, FXP_DP): Define.
23664         * config/arc/arc.c (arc_init): Check FPU options.
23665         (get_arc_condition_code): Handle new CC_FPU* modes.
23666         (arc_select_cc_mode): Likewise.
23667         (arc_conditional_register_usage): Allow 64 bit datum into even-odd
23668         register pair only. Allow access for ARCv2 accumulator.
23669         (gen_compare_reg): Whenever we have FPU support use FPU compare
23670         instructions.
23671         (arc_reorg): Don't generate brcc insns when FPU compare
23672         instructions are involved.
23673         * config/arc/arc.h (TARGET_DPFP): Add TARGET_FP_DPAX condition.
23674         (TARGET_OPTFPE): Add condition when ARC EM can use optimized
23675         floating point emulation.
23676         (ACC_REG_FIRST, ACC_REG_LAST, ACCL_REGNO, ACCH_REGNO): Define.
23677         (REVERSE_CONDITION): Add new CC_FPU* modes.
23678         (TARGET_FP_SP_BASE): Define.
23679         (TARGET_FP_DP_BASE): Likewise.
23680         (TARGET_FP_SP_FUSED): Likewise.
23681         (TARGET_FP_DP_FUSED): Likewise.
23682         (TARGET_FP_SP_CONV): Likewise.
23683         (TARGET_FP_DP_CONV): Likewise.
23684         (TARGET_FP_SP_SQRT): Likewise.
23685         (TARGET_FP_DP_SQRT): Likewise.
23686         (TARGET_FP_DP_AX): Likewise.
23687         * config/arc/arc.md (ARCV2_ACC): New constant.
23688         (type): New fpu type attribute.
23689         (SDF): Conditional iterator.
23690         (cstore<mode>, cbranch<mode>): Change expand condition.
23691         (addsf3, subsf3, mulsf3, adddf3, subdf3, muldf3): New expands,
23692         handles FPU/FPX cases as well.
23693         * config/arc/arc.opt (mfpu): New option.
23694         * config/arc/fpx.md (addsf3_fpx, subsf3_fpx, mulsf3_fpx):
23695         Renamed.
23696         (adddf3, muldf3, subdf3): Removed.
23697         * config/arc/predicates.md (proper_comparison_operator): Recognize
23698         CC_FPU* modes.
23699         * config/arc/fpu.md: New file.
23700         * doc/invoke.texi (ARC Options): Document mfpu option.
23702 2016-02-16  Richard Biener  <rguenther@suse.de>
23704         PR rtl-optimization/69291
23705         * ifcvt.c (noce_try_store_flag_constants): Re-instantiate
23706         noce_operand_ok check.
23708 2016-02-16  Tom de Vries  <tom@codesourcery.com>
23710         PR lto/67709
23711         * omp-low.c (simd_clone_create): Remove call to
23712         symtab->call_cgraph_insertion_hooks.
23714 2016-02-16  Jakub Jelinek  <jakub@redhat.com>
23716         PR tree-optimization/69802
23717         * tree-ssa-reassoc.c (update_range_test): If op is
23718         SSA_NAME_IS_DEFAULT_DEF, give up unless tem is a positive
23719         op == 1 test of precision 1 integral op, otherwise handle
23720         that case as op itself.  Fix up formatting.
23721         (optimize_range_tests_to_bit_test, optimize_range_tests): Fix
23722         up formatting.
23724 2016-02-16  Richard Biener  <rguenther@suse.de>
23726         PR tree-optimization/69586
23727         * tree-vrp.c (register_edge_assert_for_2): Handle all integral
23728         types for conversion sources.
23730 2016-02-16  Richard Biener  <rguenther@suse.de>
23732         PR middle-end/69801
23733         * fold-const.c (operand_equal_p): For COND_EXPR zero operand
23734         mask OEP_ADDRESS_OF.
23736 2016-02-16  Alan Modra  <amodra@gmail.com>
23738         PR target/68973
23739         * config/rs6000/rs6000.md (reload_vsx_from_gprsf): Rewrite splitter.
23740         (p8_mtvsrd_df, p8_mtvsrd_sf): New.
23741         (p8_mtvsrd_1, p8_mtvsrd_2): Delete.
23742         (p8_mtvsrwz): New.
23743         (p8_mtvsrwz_1, p8_mtvsrwz_2): Delete.
23744         (p8_xxpermdi_<mode>): Take two DF inputs rather than one TF.
23745         (p8_fmrgow_<mode>): Likewise.
23746         (reload_vsx_from_gpr<mode>): Make clobber IF.  Adjust for above
23747         changes.
23748         (reload_fpr_from_gpr<mode>): Similarly. Use "d" for op0 constraint.
23749         (reload_vsx_from_gprsf): Use p8_mtvsrd_sf rather than attempting
23750         to use movdi_internal64.  Remove op0_di.
23751         * config/rs6000/vsx.md (vsx_xscvspdpn_directmove): Make op1 SFmode.
23753 2016-02-15  Evandro Menezes  <e.menezes@samsung.com>
23755         Add support for the FCCMP insn types
23757         * config/aarch64/aarch64.md (fccmp): Change insn type.
23758         (fccmpe): Likewise.
23759         * config/aarch64/thunderx.md (thunderx_fcmp): Add "fccmp{s,d}" types.
23760         * config/arm/cortex-a53.md (cortex_a53_fpalu): Likewise.
23761         * config/arm/cortex-a57.md (cortex_a57_fp_cmp): Likewise.
23762         * config/arm/xgene1.md (xgene1_fcmp): Likewise.
23763         * config/arm/exynos-m1.md (exynos_m1_fp_ccmp): New insn reservation.
23764         * config/arm/types.md (fccmps): Add new insn type.
23765         (fccmpd): Likewise.
23767 2016-02-15  Bernd Edlinger  <bernd.edlinger@hotmail.de>
23769         * alias.c (get_alias_set): Fix a typo in comment.
23771 2016-02-15  Richard Biener  <rguenther@suse.de>
23773         PR tree-optimization/69595
23774         * match.pd: Complete range test simplification to true.
23776 2016-02-15  Bernd Schmidt  <bschmidt@redhat.com>
23778         PR rtl-optimization/69648
23779         * lra-constraints.c (update_ebb_live_info): Don't remove sets of
23780         pic_offset_table_rtx.
23782         PR rtl-optimization/69752
23783         * ira.c (update_equiv_regs): When looking for more than a single SET,
23784         also take other side effects into account.
23786 2016-02-15  Marcin Kościelnicki  <koriakin@0x04.net>
23788         * config/s390/s390.c (s390_function_profiler): Add a new sequence
23789         for z900+ CPUs in 31-bit mode.
23791 2016-02-15  Marcin Kościelnicki  <koriakin@0x04.net>
23793         * common/config/s390/s390-common.c (s390_supports_split_stack):
23794         New function.
23795         (TARGET_SUPPORTS_SPLIT_STACK): New macro.
23796         * config/s390/s390-protos.h: Add s390_expand_split_stack_prologue.
23797         * config/s390/s390.c (struct machine_function): New field
23798         split_stack_varargs_pointer.
23799         (s390_register_info): Mark r12 as clobbered if it'll be used as temp
23800         in s390_emit_prologue.
23801         (s390_emit_prologue): Use r12 as temp if r1 is taken by split-stack
23802         vararg pointer.
23803         (morestack_ref): New global.
23804         (SPLIT_STACK_AVAILABLE): New macro.
23805         (s390_expand_split_stack_prologue): New function.
23806         (s390_live_on_entry): New function.
23807         (s390_va_start): Use split-stack vararg pointer if appropriate.
23808         (s390_asm_file_end): Emit the split-stack note sections.
23809         (TARGET_EXTRA_LIVE_ON_ENTRY): New macro.
23810         * config/s390/s390.md (UNSPEC_STACK_CHECK): New unspec.
23811         (UNSPECV_SPLIT_STACK_CALL): New unspec.
23812         (UNSPECV_SPLIT_STACK_DATA): New unspec.
23813         (split_stack_prologue): New expand.
23814         (split_stack_space_check): New expand.
23815         (split_stack_data): New insn.
23816         (split_stack_call): New expand.
23817         (split_stack_call_*): New insn.
23818         (split_stack_cond_call): New expand.
23819         (split_stack_cond_call_*): New insn.
23821 2016-02-15  Richard Biener  <rguenther@suse.de>
23823         PR tree-optimization/69783
23824         * tree-vect-data-refs.c (vect_prune_runtime_alias_test_list):
23825         Add trivially correct cases.
23827 2016-02-15  Tom de Vries  <tom@codesourcery.com>
23829         PR lto/69655
23830         * lto-cgraph.c (input_offload_tables): Add and handle bool parameter
23831         do_force_output.
23832         * lto-streamer.h (input_offload_tables): Add and handle bool parameter.
23834 2016-02-15  Richard Biener  <rguenther@suse.de>
23836         PR tree-optimization/69776
23837         * tree-ssa-sccvn.h (vn_reference_lookup): Adjust prototype.
23838         * tree-ssa-sccvn.c (vn_reference_lookup): Add parameter to
23839         indicate whether we can use TBAA to disambiguate against stores.
23840         Use alias-set zero if not.
23841         (visit_reference_op_store): Do not use TBAA when looking up
23842         redundant stores.
23843         * tree-ssa-pre.c (compute_avail): Use TBAA here.
23844         (eliminate_dom_walker::before_dom_children): But not when looking
23845         up redundant stores.
23847 2016-02-14  John David Anglin  <danglin@gcc.gnu.org>
23849         * config/pa/pa.md (absqi2, absghi2, bswaphi2, bswapsi2, bswapdi2): New.
23851 2016-02-14  Venkataramanan Kumar  <venkataramanan.kumar@amd.com>
23853         *  config/i386/znver1.md
23854         (znver1_pop, znver1_pop_mem,
23855         znver1_load_imov_double_store,
23856         znver1_load_imov_direct_store,
23857         znver1_load_imov_direct_load,
23858         znver1_load_imov_double_load): Add new.
23859         (znver1_insn, znver1_insn_load): Add icmov type.
23860         (znver1_sseavx_fma,
23861         znver1_sseavx_fma_load,
23862         znver1_avx256_fma,
23863         znver1_avx256_fma_load): Fix pipe usage.
23865 2016-02-14  Alan Modra  <amodra@gmail.com>
23867         PR target/68973
23868         * reload.c (find_reloads_address_1): For pre/post-inc/dec
23869         with an invalid hard reg, reload just the reg not the entire
23870         pre/post-inc/dec address expression.
23872 2016-02-13  Oleg Endo  <olegendo@gcc.gnu.org>
23874         PR target/67260
23875         * config/sh/sh.md (sibcall_value_pcrel): Replace =&k scratch reg with
23876         fixed R1_REG scratch reg.
23877         (sibcall_value_pcrel_fdpic): Likewise.
23879 2016-02-13  Oleg Endo  <olegendo@gcc.gnu.org>
23881         PR target/67636
23882         PR target/64345
23883         * config/sh/sh.md (*zero_extract_3): New insn_and_split pattern.
23885 2016-02-12  Walter Lee  <walt@tilera.com>
23887         * config/tilepro/t-tilepro: Replace CC_FOR_BUILD with CXX_FOR_BUILD.
23888         * config/tilegx/t-tilegx: Likewise.
23890 2016-02-12  David Malcolm  <dmalcolm@redhat.com>
23892         PR other/69554
23893         * diagnostic-show-locus.c (struct line_span): New struct.
23894         (layout::get_first_line): Delete.
23895         (layout::get_last_line): Delete.
23896         (layout::get_num_line_spans): New member function.
23897         (layout::get_line_span): Likewise.
23898         (layout::print_heading_for_line_span_index_p): Likewise.
23899         (layout::get_expanded_location): Likewise.
23900         (layout::calculate_line_spans): Likewise.
23901         (layout::m_first_line): Delete.
23902         (layout::m_last_line): Delete.
23903         (layout::m_line_spans): New field.
23904         (layout::layout): Update comment.  Replace m_first_line and
23905         m_last_line with m_line_spans, replacing their initialization
23906         with a call to calculate_line_spans.
23907         (diagnostic_show_locus): When printing source lines and
23908         annotations, rather than looping over a single span
23909         of lines, instead loop over each line_span within
23910         the layout, with an inner loop over the lines within them.
23911         Call the context's start_span callback when changing line spans.
23912         * diagnostic.c (diagnostic_initialize): Initialize start_span.
23913         (diagnostic_build_prefix): Break out the building of the location
23914         part of the string into...
23915         (diagnostic_get_location_text): ...this new function, rewriting
23916         it from nested ternary expressions to a sequence of "if"
23917         statements.
23918         (default_diagnostic_start_span_fn): New function.
23919         * diagnostic.h (diagnostic_start_span_fn): New typedef.
23920         (diagnostic_context::start_span): New field.
23921         (default_diagnostic_start_span_fn): New prototype.
23923 2016-02-12  David Malcolm  <dmalcolm@redhat.com>
23925         PR driver/69779
23926         * gcc.c (driver::finalize): Fix cleanup of "specs".
23928 2016-02-12  David Malcolm  <dmalcolm@redhat.com>
23930         PR driver/69265
23931         PR driver/69453
23932         * gcc.c (driver::driver): Initialize m_option_suggestions.
23933         (driver::~driver): Clean up m_option_suggestions.
23934         (suggest_option): Convert to...
23935         (driver::suggest_option): ...this, and split out into
23936         driver::build_option_suggestions and find_closest_string.
23937         (driver::build_option_suggestions): New function, from
23938         first half of suggest_option.  Special-case
23939         OPT_fsanitize_ and OPT_fsanitize_recover_, making use of
23940         the sanitizer_opts array.  For options of enum types, add the
23941         various enum values to the candidate strings.
23942         (driver::handle_unrecognized_options): Remove "const".
23943         * gcc.h (driver::handle_unrecognized_options): Likewise.
23944         (driver::build_option_suggestions): New decl.
23945         (driver::suggest_option): New decl.
23946         (driver::m_option_suggestions): New field.
23947         * opts-common.c (add_misspelling_candidates): New function.
23948         * opts.c (sanitizer_opts): Remove decl of struct sanitizer_opts_s
23949         and make non-static.
23950         * opts.h (sanitizer_opts): New array decl.
23951         (add_misspelling_candidates): New function decl.
23952         * spellcheck.c (find_closest_string): New function.
23953         * spellcheck.h (find_closest_string): New function decl.
23955 2016-02-12  Jakub Jelinek  <jakub@redhat.com>
23957         PR rtl-optimization/69764
23958         PR rtl-optimization/69771
23959         * optabs.c (expand_binop_directly): For shift_optab_p, force
23960         convert_modes with VOIDmode if xop1 has VOIDmode.
23962 2016-02-12  Ilya Enkovich  <enkovich.gnu@gmail.com>
23964         PR target/69729
23965         * lto-streamer-out.c (lto_output): Use thunk.add_pointer_bounds_args
23966         to correctly determine instrumentation thunks.
23968 2016-02-12  Jakub Jelinek  <jakub@redhat.com>
23970         PR ipa/69241
23971         * ipa-split.c (split_function): If split part returns TREE_ADDRESSABLE
23972         type by reference, force lhs on the call.
23974         PR ipa/68672
23975         * ipa-split.c (split_function): Don't compute/use main_part_return_p.
23976         Compute retval and retbnd early in all cases if split_part_return_p
23977         and return_bb is not EXIT.  Remove all clobber stmts and reset
23978         all debug stmts that refer to SSA_NAMEs defined in split part,
23979         except if it is retval, in that case replace the old retval with the
23980         lhs of the call to the split part.
23982 2016-02-12  Kugan Vivekanandarajah  <kuganv@linaro.org>
23984         revert:
23985         2016-02-12  Kugan Vivekanandarajah  <kuganv@linaro.org>
23987         PR middle-end/66726
23988         * tree-ssa-reassoc.c (optimize_range_tests): Handle tcc_compare stmt
23989         whose result is used in PHI.
23990         (maybe_optimize_range_tests): Likewise.
23991         (final_range_test_p): Likweise.
23993 2016-02-12  Kugan Vivekanandarajah  <kuganv@linaro.org>
23995         PR middle-end/66726
23996         * tree-ssa-reassoc.c (optimize_range_tests): Handle tcc_compare stmt
23997         whose result is used in PHI.
23998         (maybe_optimize_range_tests): Likewise.
23999         (final_range_test_p): Likweise.
24001 2016-02-12  Jakub Jelinek  <jakub@redhat.com>
24003         * cgraph.c: Spelling fixes - behaviour -> behavior and
24004         neighbour -> neighbor.
24005         * target.def: Likewise.
24006         * sel-sched.c: Likewise.
24007         * config/mips/mips.c: Likewise.
24008         * config/arc/arc.md: Likewise.
24009         * config/arm/cortex-a57.md: Likewise.
24010         * config/arm/arm.c: Likewise.
24011         * config/arm/neon.md: Likewise.
24012         * config/arm/arm-c.c: Likewise.
24013         * config/vms/vms-c.c: Likewise.
24014         * config/s390/s390.c: Likewise.
24015         * config/i386/znver1.md: Likewise.
24016         * config/i386/i386.c: Likewise.
24017         * config/ia64/hpux-unix2003.h: Likewise.
24018         * config/msp430/msp430.md: Likewise.
24019         * config/rx/rx.c: Likewise.
24020         * config/rx/rx.md: Likewise.
24021         * config/aarch64/aarch64-simd.md: Likewise.
24022         * config/aarch64/aarch64.c: Likewise.
24023         * config/nvptx/nvptx.c: Likewise.
24024         * config/bfin/bfin.c: Likewise.
24025         * config/cris/cris.opt: Likewise.
24026         * config/rs6000/rs6000.c: Likewise.
24027         * target.h: Likewise.
24028         * spellcheck.c: Likewise.
24029         * ira-build.c: Likewise.
24030         * tree-inline.c: Likewise.
24031         * builtins.c: Likewise.
24032         * lra-constraints.c: Likewise.
24033         * explow.c: Likewise.
24034         * hwint.h: Likewise.
24035         * targhooks.c: Likewise.
24036         * tree-vect-data-refs.c: Likewise.
24037         * expr.c: Likewise.
24038         * doc/tm.texi: Likewise.
24039         * doc/extend.texi: Likewise.
24040         * doc/install.texi: Likewise.
24041         * doc/md.texi: Likewise.
24042         * tree-ssa-tail-merge.c: Likewise.
24043         * sched-int.h: Likewise.
24044         * match.pd: Likewise.
24045         * sched-ebb.c: Likewise.
24046         * target.def (omit_struct_return_reg): Likewise.
24047         * gimple-ssa-isolate-paths.c: Likewise.
24048         (find_implicit_erroneous_behaviour): Renamed to...
24049         (find_implicit_erroneous_behavior): ... this.
24050         (find_explicit_erroneous_behaviour): Renamed to...
24051         (find_explicit_erroneous_behavior): ... this.
24052         (gimple_ssa_isolate_erroneous_paths): Adjust caller.
24054 2016-02-11  Segher Boessenkool  <segher@kernel.crashing.org>
24056         PR rtl-optimization/64682
24057         PR rtl-optimization/69567
24058         PR rtl-optimization/69737
24059         * combine.c (distribute_notes) <REG_DEAD>: If the register is set
24060         in I2 as well, just lose it.
24062 2016-02-11  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
24064         * config/aarch64/aarch64.c (aarch64_last_printed_arch_string):
24065         New variable.
24066         (aarch64_last_printed_tune_string): Likewise.
24067         (aarch64_declare_function_name): Only output .arch assembler
24068         directive if it will be different from the previously output
24069         directive.  Same for .tune comment but only if -dA is set.
24070         (aarch64_start_file): New function.
24071         (TARGET_ASM_FILE_START): Define.
24073 2016-02-11  David Malcolm  <dmalcolm@redhat.com>
24075         PR plugins/69758
24076         * Makefile.in (PLUGIN_HEADERS): Add params.list.
24078 2016-02-11  Jakub Jelinek  <jakub@redhat.com>
24080         PR target/65313
24081         * tree-vect-slp.c (vect_schedule_slp_instance): Avoid
24082         -Wmaybe-uninitialized warning.
24084 2016-02-11  Oleg Endo  <olegendo@gcc.gnu.org>
24086         PR target/69713
24087         * config/sh/sh.md (casesi_worker_0): Add T_REG use.
24089 2016-02-11  Richard Biener  <rguenther@suse.de>
24091         PR rtl-optimization/69291
24092         * ifcvt.c (noce_try_store_flag_constants): Do not allow
24093         subexpressions affected by changing the result.
24095 2016-02-10  Vladimir Makarov  <vmakarov@redhat.com>
24097         PR target/69148
24098         * lra-constraints.c (curr_insn_transform): Find in/out operands
24099         for secondary memory moves.  Update dups.
24101 2016-02-10  Yuri Rumyantsev  <ysrumyan@gmail.com>
24103         PR tree-optimization/69652
24104         * tree-vect-loop.c (optimize_mask_stores): Move declaration of STMT1
24105         to nested loop, did source re-formatting, skip debug statements,
24106         add check on statement with volatile operand, remove dead scalar
24107         statements.
24109 2016-02-10  Jakub Jelinek  <jakub@redhat.com>
24110             Patrick Palka  <ppalka@gcc.gnu.org>
24112         PR ipa/69241
24113         PR c++/69649
24114         * gimplify.c (gimplify_modify_expr): Set lhs even for noreturn
24115         calls if the return type is TREE_ADDRESSABLE.
24116         * cgraphunit.c (cgraph_node::expand_thunk): Likewise.
24117         * ipa-split.c (split_function): Fix doubled "we" in comment.
24118         Use void return type for the split part even if
24119         !split_point->split_part_set_retval.
24121 2016-02-10  Bin Cheng  <bin.cheng@arm.com>
24123         PR tree-optimization/68021
24124         * tree-ssa-loop-ivopts.c (get_computation_aff): Set ratio to 1 if
24125         when computing the value of biv cand by itself.
24127 2016-02-10  Wilco Dijkstra  <wdijkstr@arm.com>
24129         * config/aarch64/aarch64.c (cortexa53_tunings): Enable AES fusion.
24130         (cortexa57_tunings): Likewise.
24131         (cortexa72_tunings): Likewise.
24132         (arch_macro_fusion_pair_p): Add support for AES fusion.
24133         * config/aarch64/aarch64-fusion-pairs.def: Add AES_AESMC entry.
24134         * config/arm/aarch-common.c (aarch_crypto_can_dual_issue):
24135         Allow virtual registers before reload so early scheduling works.
24136         * config/arm/cortex-a57.md (cortex_a57_crypto_simple): Use
24137         correct latency and pipeline.
24138         (cortex_a57_crypto_complex): Likewise.
24139         (cortex_a57_crypto_xor): Likewise.
24140         (define_bypass): Add AES bypass.
24142 2016-02-10  Richard Biener  <rguenther@suse.de>
24144         PR tree-optimization/69726
24145         * passes.def: Add DCE pass before late uninit.
24146         * match.pd: Add A ? B : (!A ? C : X) -> A ? B : C patterns to
24147         really fixup if-conversions job.
24149 2016-02-10  Wilco Dijkstra  <wdijkstr@arm.com>
24151         * config/arm/arm.c (arm_cortex_a53_tune): Enable AES fusion.
24152         (arm_cortex_a57_tune): Likewise.
24153         (aarch_macro_fusion_pair_p): Add support for AES fusion.
24154         * config/arm/arm-protos.h (fuse_ops): Add FUSE_AES_AESMC.
24156 2016-02-10  Eric Botcazou  <ebotcazou@adacore.com>
24158         * timevar.def (TV_PHASE_DBGINFO): Delete.
24159         (TV_PHASE_CHECK_DBGINFO): Likewise.
24160         * varpool.c (varpool_node::assemble_decl): Do not change timevar.
24162 2016-02-10  Richard Biener  <rguenther@suse.de>
24164         PR tree-optimization/69719
24165         * tree-vect-data-refs.c (vect_prune_runtime_alias_test_list):
24166         Adjust previous fix by ensuring that dr_a1 is left of dr_a2.
24168 2016-02-09  Andrew Pinski  <apinski@cavium.com>
24170         PR tree-opt/69282
24171         * optabs-tree.c (expand_vec_cond_expr_p): Don't early return if
24172         get_vcond_mask_icode returns false.
24174 2016-02-09  Michael Meissner  <meissner@linux.vnet.ibm.com>
24176         PR target/68404
24177         * config/rs6000/predicates.md (fusion_gpr_addis): Prevent fusing
24178         an ADDIS that adds a pointer to a large constant that sets the
24179         upper16 bits with a load operation.
24181 2016-02-09  Charles Baylis  <charles.baylis@linaro.org>
24183         PR target/68532
24184         * config/arm/arm.c (arm_evpc_neon_vzip): Allow for big endian lane
24185         order.
24186         * config/arm/arm_neon.h (vzipq_s8): Adjust shuffle patterns for big
24187         endian.
24188         (vzipq_s16): Likewise.
24189         (vzipq_s32): Likewise.
24190         (vzipq_f32): Likewise.
24191         (vzipq_u8): Likewise.
24192         (vzipq_u16): Likewise.
24193         (vzipq_u32): Likewise.
24194         (vzipq_p8): Likewise.
24195         (vzipq_p16): Likewise.
24197 2016-02-09  Charles Baylis  <charles.baylis@linaro.org>
24199         PR target/68532
24200         * config/arm/arm.c (neon_endian_lane_map): New function.
24201         (neon_vector_pair_endian_lane_map): New function.
24202         (arm_evpc_neon_vuzp): Allow for big endian lane order.
24203         * config/arm/arm_neon.h (vuzpq_s8): Adjust shuffle patterns for big
24204         endian.
24205         (vuzpq_s16): Likewise.
24206         (vuzpq_s32): Likewise.
24207         (vuzpq_f32): Likewise.
24208         (vuzpq_u8): Likewise.
24209         (vuzpq_u16): Likewise.
24210         (vuzpq_u32): Likewise.
24211         (vuzpq_p8): Likewise.
24212         (vuzpq_p16): Likewise.
24214 2016-02-11  Alexandre Oliva  <aoliva@redhat.com>
24216         PR target/69634
24217         * regstat.c (regstat_bb_compute_calls_crossed): Disregard
24218         debug insns.
24220 2016-02-09  Uros Bizjak  <ubizjak@gmail.com>
24222         * config/i386/i386.md (insv<mode>_1): Use gen_int_mode to
24223         truncate const_int operand 1 to QImode.
24225 2016-02-09  Eric Botcazou  <ebotcazou@adacore.com>
24227         * gimple-ssa-backprop.c (optimize_phi): Do not replace an argument
24228         corresponding to an abnormal edge.
24230 2016-02-09  Tom de Vries  <tom@codesourcery.com>
24232         PR tree-optimization/69599
24233         * tree-ssa-structalias.c (fndecl_maybe_in_other_partition): New
24234         function.
24235         (find_func_aliases_for_builtin_call, find_func_clobbers)
24236         (ipa_pta_execute):  Handle case that foo and foo._0 are not in same lto
24237         partition.
24239 2016-02-09  Richard Biener  <rguenther@suse.de>
24241         PR tree-optimization/69715
24242         * tree-ssa.c (execute_update_addresses_taken): Mark non-decl
24243         LHS on calls as non-rewritable.
24245 2016-02-09  Tom de Vries  <tom@codesourcery.com>
24247         PR lto/69707
24248         * lto-wrapper.c (append_diag_options): New function.
24249         (compile_offload_image): Call append_diag_options.
24251 2016-02-08  Sandra Loosemore  <sandra@codesourcery.com>
24253         PR other/69722
24254         * doc/extend.texi (Flag Output Operands): Correct sectioning.
24255         Minor copy-edit to fix verb tenses.
24257 2016-02-08  Jakub Jelinek  <jakub@redhat.com>
24259         PR tree-optimization/69209
24260         * ipa-split.c (split_function): If split part is not
24261         returning retval, retval has gimple type but is not
24262         gimple value, force it into a SSA_NAME first.
24264 2016-02-08  Nicklas Bo Jensen  <nbjensen@gmail.com>
24266         * doc/tree-ssa.texi (Preserving the virtual SSA form): Remove
24267         outdated section.
24269 2016-02-08  Jason Merrill  <jason@redhat.com>
24271         PR c++/69631
24272         * convert.c (convert_to_integer_1): Check dofold on truncation
24273         distribution.
24274         (convert_to_pointer_maybe_fold, convert_to_real_maybe_fold)
24275         (convert_to_integer_maybe_fold, convert_to_complex_maybe_fold):
24276         Rename from *_nofold.
24277         * convert.h (convert_to_pointer_nofold, convert_to_integer_nofold)
24278         (convert_to_real_nofold, convert_to_complex_nofold): New inlines.
24280 2016-02-08  Bernd Schmidt  <bschmidt@redhat.com>
24282         PR target/60410
24283         * tree.c (build_common_tree_nodes): Remove short_double argument.
24284         All callers changed.
24285         * tree.h (build_common_tree_nodes): Adjust declaration.
24286         * doc/invoke.texi (-fshort-double): Remove documentation.
24287         * config/mips/t-img-elf (MULTILIB_OPTIONS, MULTILIB_DIRNAMES,
24288         MULTILIB_EXCEPTIONS): Remove -fshort-double variant.
24289         * lto-wrapper.c (merge_and_complain, append_compiler_options)
24290         (append_linker_options): Don't handle OPT_fshort_double.
24292         PR rtl-optimization/68730
24293         * lra-remat.c (insn_to_cand_activation): New static variable.
24294         (lra_remat): Allocate and free it.
24295         (create_cand): New arg activation. Initialize a field in
24296         insn_to_cand_activation if it is nonnull.
24297         (create_cands): Pass the activation insn to create_cand when making
24298         a candidate involving an output reload.  Reorganize code a little.
24299         (do_remat): Keep track of active status of candidates in a separate
24300         bitmap.
24302 2016-02-08  Richard Biener  <rguenther@suse.de>
24304         PR tree-optimization/69719
24305         * tree-vect-data-refs.c (vect_prune_runtime_alias_test_list):
24306         Properly use absolute of the difference of the two offsets to
24307         compare or adjust the segment length.
24309 2016-02-08  Richard Biener  <rguenther@suse.de>
24310             Jeff Law  <law@redhat.com>
24312         PR target/68273
24313         * tree-ssanames.c (make_ssa_name_fn): Always use unqualified
24314         types for anonymous SSA names.
24316 2016-02-08   Richard Biener  <rguenther@suse.de>
24318         PR rtl-optimization/69274
24319         * ira.c (ira_setup_alts): Do not change recog_data.operand order.
24321 2016-02-08  Jeff Law  <law@redhat.com>
24323         PR tree-optimization/65917
24324         * tree-ssa-dom.c (record_temporary_equivalences): Record both
24325         equivalences from if (x == y) style conditionals.
24326         (loop_depth_of_name): Remove.
24327         (record_equality): Remove loop depth check.
24328         * tree-ssa-scopedtables.h (const_and_copies): Refine comments.
24329         (const_and_copies::record_const_or_copy_raw): New member function.
24330         * tree-ssa-scopedtables.c
24331         (const_and_copies::record_const_or_copy_raw): New, factored out of
24332         (const_and_copies::record_const_or_copy): Call new member function.
24334 2016-02-05  Jeff Law  <law@redhat.com>
24336         PR tree-optimization/68541
24337         * gimple-ssa-split-paths.c: Include tree-cfg.h and params.h.
24338         (count_stmts_in_block): New function.
24339         (poor_ifcvt_candidate_code): Likewise.
24340         (is_feasible_trace): Add some heuristics to determine when path
24341         splitting is profitable.
24342         (find_block_to_duplicate_for_splitting_paths): Make sure the graph
24343         is a diamond with a single exit.
24345 2016-02-05  Martin Sebor  <msebor@redhat.com>
24347         PR c++/69662
24348         * doc/invoke.texi: Update -Wplacement-new to take an optional
24349         argument.
24351 2016-02-06  Richard Henderson  <rth@redhat.com>
24353         PR c/69643
24354         * tree.c (tree_nop_conversion_p): Do not strip casts into or
24355         out of non-standard address spaces.
24357 2016-02-05  Jakub Jelinek  <jakub@redhat.com>
24359         PR rtl-optimization/69691
24360         * lra-eliminations.c (move_plus_up): Don't add the addend twice.
24362 2016-02-05  Pat Haugen  <pthaugen@us.ibm.com>
24364         * config/rs6000/crypto.md (crypto_vpermxor_<mode>): Correct insn type.
24365         * config/rs6000/rs6000.md (mov<mode>_hardfloat): Likewise.
24366         (*ieee128_mfvsrd_64bit): Likewise.
24367         (*ieee128_mfvsrd_32bit): Likewise.
24369 2016-02-05  Ilya Enkovich  <enkovich.gnu@gmail.com>
24371         PR target/69369
24372         Revert r232560:
24373         2016-01-19  Jan Hubicka  <hubicka@ucw.cz>
24375         * cgraphunit.c (cgraph_node::reset): Clear thunk info and
24376         instrumented_version.
24378 2016-01-05  Jeremy Bennett  <jeremy.bennett@embecosm.com>
24380         * doc/invoke.texi (Optimize Options): In table of --param options
24381         rename second occurrence of tracer-min-branch-ratio to
24382         tracer-min-branch-probability, rename
24383         tracer-min-branch-ratio-feedback to
24384         tracer-min-branch-probability-feedback and clarify description,
24385         rename sched-spec-state-edge-prob-cutoff to
24386         sched-state-edge-prob-cutoff, rename selsched-max-insns-to-rename
24387         to selsched-insns-to-rename, rename lto-minpartition to
24388         lto-min-partition, delete reorder-blocks-duplicate and
24389         reorder-blocks-duplicate-feedback.
24391 2016-02-05  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
24393         * config/s390/s390.c (s390_register_info_set_ranges): Remove
24394         superfluous loops.
24396 2016-02-05  Dominik Vogt  <vogt@linux.vnet.ibm.com>
24398         * doc/extend.texi: S/390: Correct some typos.
24400 2016-02-05  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
24402         * config/s390/s390.c (s390_emit_call): Add missing 64 bit check.
24404 2016-02-05  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
24406         PR target/69625
24407         * config/s390/s390.c (SAVE_SLOT_NONE, SAVE_SLOT_STACK): New defines.
24408         (s390_register_info_gprtofpr): Use new macros above.
24409         (s390_register_info_stdarg_fpr): Adjust max_fpr to better match
24410         its name.
24411         (s390_register_info_stdarg_gpr): Adjust max_gpr to better match
24412         its name.  Adjust restore and save gpr ranges.
24413         (s390_register_info_set_ranges): New function.
24414         (s390_register_info): Use new macros above.  Call
24415         s390_register_info_set_ranges.
24416         (s390_optimize_register_info): Likewise.
24417         (s390_hard_regno_rename_ok): Use new macros.
24418         (s390_hard_regno_scratch_ok): Likewise.
24419         (s390_emit_epilogue): Likewise.
24420         (s390_can_use_return_insn): Likewise.
24421         (s390_optimize_prologue): Likewise.
24422         * config/s390/s390.md (GPR2_REGNUM, GPR6_REGNUM): New constants.
24424 2016-02-05  Jakub Jelinek  <jakub@redhat.com>
24426         PR bootstrap/69677
24427         * config/i386/i386.c (convert_scalars_to_vector): Readd stack
24428         alignment fixes.
24429         (ix86_option_override_internal): Disable TARGET_STV even for
24430         -m{incoming,preferred}-stack-boundary=3.
24432 2016-02-03  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
24434         * config.gcc: Mark deprecated rtems targets as obsolete.
24436 2016-02-04  Segher Boessenkool  <segher@kernel.crashing.org>
24438         PR rtl-optimization/64682
24439         PR rtl-optimization/69567
24440         * combine.c (distribute_notes) <REG_DEAD>: Place the death note
24441         before I2 only if the register is both used and set in I2.
24443 2016-02-04  DJ Delorie  <dj@redhat.com>
24445         * config/msp430/msp430.c (msp430_start_function): Add function type.
24447 2016-02-04  Jakub Jelinek  <jakub@redhat.com>
24449         PR fortran/69368
24450         * tree-dfa.c (get_ref_base_and_extent): Remove unreachable code.
24452 2016-02-04  Uros Bizjak  <ubizjak@gmail.com>
24454         PR rtl-optimization/69577
24455         Revert:
24456         2015-10-29  Richard Henderson  <rth@redhat.com>
24458         PR target/68124
24459         PR rtl-opt/67609
24460         * config/i386/i386.c (ix86_cannot_change_mode_class): Tighten
24461         sse check to the exact conditions of PR 67609.
24463 2016-02-04  Michael Meissner  <meissner@linux.vnet.ibm.com>
24465         PR target/69667
24466         * config/rs6000/rs6000.md (mov<mode>_64bit_dm): Use 'd' constraint
24467         instead of 'ws', and 'wh' instead of 'wm' since TFmode/IFmode are
24468         not allowed into the traditional Altivec registers.
24469         (movtd_64bit_nodm): Likewise.
24470         (mov<mode>_32bit, FMOVE128_FPR iterator): Likewise.
24472 2016-02-04  David Malcolm  <dmalcolm@redhat.com>
24474         * config/aarch64/cortex-a57-fma-steering.c
24475         (aarch64_register_fma_steering): Remove "static" from arguments
24476         to register_pass.
24478 2016-02-04  Wilco Dijkstra  <wdijkstr@arm.com>
24480         PR target/69619
24481         * ccmp.c (expand_ccmp_expr_1): Avoid evaluating gs0/gs1
24482         twice when complex.
24484 2016-02-04  Mike Frysinger  <vapier@gentoo.org>
24486         * doc/invoke.texi: Delete -mno-fma4.
24488 2016-02-04  Richard Sandiford  <richard.sandiford@arm.com>
24490         PR rtl-optimization/69577
24491         * reginfo.c (record_subregs_of_mode): Add a partial_def parameter.
24492         (find_subregs_of_mode): Update accordingly.  Iterate over partial
24493         definitions.
24495 2016-02-04  Alan Lawrence  <alan.lawrence@arm.com>
24497         * config/arm/arm-protos.h (neon_reinterpret): Remove.
24498         * config/arm/arm.c (neon_reinterpret): Remove.
24499         * config/arm/arm_neon_builtins.def (vreinterpretv8qi, vreinterpretv4hi,
24500         vreinterpretv2si, vreinterpretv2sf, vreinterpretdi, vreinterpretv16qi,
24501         vreinterpretv8hi, vreinterpretv4si, vreinterpretv4sf, vreinterpretv2di,
24502         vreinterpretti): Remove.
24503         * config/arm/neon.md (neon_vreinterpretv8qi<mode>,
24504         neon_vreinterpretv4hi<mode>, neon_vreinterpretv2si<mode>,
24505         neon_vreinterpretv2sf<mode>, neon_vreinterpretdi<mode>,
24506         neon_vreinterpretti<mode>, neon_vreinterpretv16qi<mode>,
24507         neon_vreinterpretv8hi<mode>, neon_vreinterpretv4si<mode>,
24508         neon_vreinterpretv4sf<mode>, neon_vreinterpretv2di<mode>): Remove.
24509         * config/arm/arm_neon.h (vreinterpret_p8_p16, vreinterpret_p8_f32,
24510         vreinterpret_p8_p64, vreinterpret_p8_s64, vreinterpret_p8_u64,
24511         vreinterpret_p8_s8, vreinterpret_p8_s16, vreinterpret_p8_s32,
24512         vreinterpret_p8_u8, vreinterpret_p8_u16, vreinterpret_p8_u32,
24513         vreinterpret_p16_p8, vreinterpret_p16_f32, vreinterpret_p16_p64,
24514         vreinterpret_p16_s64, vreinterpret_p16_u64, vreinterpret_p16_s8,
24515         vreinterpret_p16_s16, vreinterpret_p16_s32, vreinterpret_p16_u8,
24516         vreinterpret_p16_u16, vreinterpret_p16_u32, vreinterpret_f32_p8,
24517         vreinterpret_f32_p16, vreinterpret_f32_p64, vreinterpret_f32_s64,
24518         vreinterpret_f32_u64, vreinterpret_f32_s8, vreinterpret_f32_s16,
24519         vreinterpret_f32_s32, vreinterpret_f32_u8, vreinterpret_f32_u16,
24520         vreinterpret_f32_u32, vreinterpret_p64_p8, vreinterpret_p64_p16,
24521         vreinterpret_p64_f32, vreinterpret_p64_s64, vreinterpret_p64_u64,
24522         vreinterpret_p64_s8, vreinterpret_p64_s16, vreinterpret_p64_s32,
24523         vreinterpret_p64_u8, vreinterpret_p64_u16, vreinterpret_p64_u32,
24524         vreinterpret_s64_p8, vreinterpret_s64_p16, vreinterpret_s64_f32,
24525         vreinterpret_s64_p64, vreinterpret_s64_u64, vreinterpret_s64_s8,
24526         vreinterpret_s64_s16, vreinterpret_s64_s32, vreinterpret_s64_u8,
24527         vreinterpret_s64_u16, vreinterpret_s64_u32, vreinterpret_u64_p8,
24528         vreinterpret_u64_p16, vreinterpret_u64_f32, vreinterpret_u64_p64,
24529         vreinterpret_u64_s64, vreinterpret_u64_s8, vreinterpret_u64_s16,
24530         vreinterpret_u64_s32, vreinterpret_u64_u8, vreinterpret_u64_u16,
24531         vreinterpret_u64_u32, vreinterpret_s8_p8, vreinterpret_s8_p16,
24532         vreinterpret_s8_f32, vreinterpret_s8_p64, vreinterpret_s8_s64,
24533         vreinterpret_s8_u64, vreinterpret_s8_s16, vreinterpret_s8_s32,
24534         vreinterpret_s8_u8, vreinterpret_s8_u16, vreinterpret_s8_u32,
24535         vreinterpret_s16_p8, vreinterpret_s16_p16, vreinterpret_s16_f32,
24536         vreinterpret_s16_p64, vreinterpret_s16_s64, vreinterpret_s16_u64,
24537         vreinterpret_s16_s8, vreinterpret_s16_s32, vreinterpret_s16_u8,
24538         vreinterpret_s16_u16, vreinterpret_s16_u32, vreinterpret_s32_p8,
24539         vreinterpret_s32_p16, vreinterpret_s32_f32, vreinterpret_s32_p64,
24540         vreinterpret_s32_s64, vreinterpret_s32_u64, vreinterpret_s32_s8,
24541         vreinterpret_s32_s16, vreinterpret_s32_u8, vreinterpret_s32_u16,
24542         vreinterpret_s32_u32, vreinterpret_u8_p8, vreinterpret_u8_p16,
24543         vreinterpret_u8_f32, vreinterpret_u8_p64, vreinterpret_u8_s64,
24544         vreinterpret_u8_u64, vreinterpret_u8_s8, vreinterpret_u8_s16,
24545         vreinterpret_u8_s32, vreinterpret_u8_u16, vreinterpret_u8_u32,
24546         vreinterpret_u16_p8, vreinterpret_u16_p16, vreinterpret_u16_f32,
24547         vreinterpret_u16_p64, vreinterpret_u16_s64, vreinterpret_u16_u64,
24548         vreinterpret_u16_s8, vreinterpret_u16_s16, vreinterpret_u16_s32,
24549         vreinterpret_u16_u8, vreinterpret_u16_u32, vreinterpret_u32_p8,
24550         vreinterpret_u32_p16, vreinterpret_u32_f32, vreinterpret_u32_p64,
24551         vreinterpret_u32_s64, vreinterpret_u32_u64, vreinterpret_u32_s8,
24552         vreinterpret_u32_s16, vreinterpret_u32_s32, vreinterpret_u32_u8,
24553         vreinterpret_u32_u16, vreinterpretq_p8_p16, vreinterpretq_p8_f32,
24554         vreinterpretq_p8_p64, vreinterpretq_p8_p128, vreinterpretq_p8_s64,
24555         vreinterpretq_p8_u64, vreinterpretq_p8_s8, vreinterpretq_p8_s16,
24556         vreinterpretq_p8_s32, vreinterpretq_p8_u8, vreinterpretq_p8_u16,
24557         vreinterpretq_p8_u32, vreinterpretq_p16_p8, vreinterpretq_p16_f32,
24558         vreinterpretq_p16_p64, vreinterpretq_p16_p128, vreinterpretq_p16_s64,
24559         vreinterpretq_p16_u64, vreinterpretq_p16_s8, vreinterpretq_p16_s16,
24560         vreinterpretq_p16_s32, vreinterpretq_p16_u8, vreinterpretq_p16_u16,
24561         vreinterpretq_p16_u32, vreinterpretq_f32_p8, vreinterpretq_f32_p16,
24562         vreinterpretq_f32_p64, vreinterpretq_f32_p128, vreinterpretq_f32_s64,
24563         vreinterpretq_f32_u64, vreinterpretq_f32_s8, vreinterpretq_f32_s16,
24564         vreinterpretq_f32_s32, vreinterpretq_f32_u8, vreinterpretq_f32_u16,
24565         vreinterpretq_f32_u32, vreinterpretq_p64_p8, vreinterpretq_p64_p16,
24566         vreinterpretq_p64_f32, vreinterpretq_p64_p128, vreinterpretq_p64_s64,
24567         vreinterpretq_p64_u64, vreinterpretq_p64_s8, vreinterpretq_p64_s16,
24568         vreinterpretq_p64_s32, vreinterpretq_p64_u8, vreinterpretq_p64_u16,
24569         vreinterpretq_p64_u32, vreinterpretq_p128_p8, vreinterpretq_p128_p16,
24570         vreinterpretq_p128_f32, vreinterpretq_p128_p64, vreinterpretq_p128_s64,
24571         vreinterpretq_p128_u64, vreinterpretq_p128_s8, vreinterpretq_p128_s16,
24572         vreinterpretq_p128_s32, vreinterpretq_p128_u8, vreinterpretq_p128_u16,
24573         vreinterpretq_p128_u32, vreinterpretq_s64_p8, vreinterpretq_s64_p16,
24574         vreinterpretq_s64_f32, vreinterpretq_s64_p64, vreinterpretq_s64_p128,
24575         vreinterpretq_s64_u64, vreinterpretq_s64_s8, vreinterpretq_s64_s16,
24576         vreinterpretq_s64_s32, vreinterpretq_s64_u8, vreinterpretq_s64_u16,
24577         vreinterpretq_s64_u32, vreinterpretq_u64_p8, vreinterpretq_u64_p16,
24578         vreinterpretq_u64_f32, vreinterpretq_u64_p64, vreinterpretq_u64_p128,
24579         vreinterpretq_u64_s64, vreinterpretq_u64_s8, vreinterpretq_u64_s16,
24580         vreinterpretq_u64_s32, vreinterpretq_u64_u8, vreinterpretq_u64_u16,
24581         vreinterpretq_u64_u32, vreinterpretq_s8_p8, vreinterpretq_s8_p16,
24582         vreinterpretq_s8_f32, vreinterpretq_s8_p64, vreinterpretq_s8_p128,
24583         vreinterpretq_s8_s64, vreinterpretq_s8_u64, vreinterpretq_s8_s16,
24584         vreinterpretq_s8_s32, vreinterpretq_s8_u8, vreinterpretq_s8_u16,
24585         vreinterpretq_s8_u32, vreinterpretq_s16_p8, vreinterpretq_s16_p16,
24586         vreinterpretq_s16_f32, vreinterpretq_s16_p64, vreinterpretq_s16_p128,
24587         vreinterpretq_s16_s64, vreinterpretq_s16_u64, vreinterpretq_s16_s8,
24588         vreinterpretq_s16_s32, vreinterpretq_s16_u8, vreinterpretq_s16_u16,
24589         vreinterpretq_s16_u32, vreinterpretq_s32_p8, vreinterpretq_s32_p16,
24590         vreinterpretq_s32_f16, vreinterpretq_s32_f32, vreinterpretq_s32_p64,
24591         vreinterpretq_s32_p128, vreinterpretq_s32_s64, vreinterpretq_s32_u64,
24592         vreinterpretq_s32_s8, vreinterpretq_s32_s16, vreinterpretq_s32_u8,
24593         vreinterpretq_s32_u16, vreinterpretq_s32_u32, vreinterpretq_u8_p8,
24594         vreinterpretq_u8_p16, vreinterpretq_u8_f32, vreinterpretq_u8_p64,
24595         vreinterpretq_u8_p128, vreinterpretq_u8_s64, vreinterpretq_u8_u64,
24596         vreinterpretq_u8_s8, vreinterpretq_u8_s16, vreinterpretq_u8_s32,
24597         vreinterpretq_u8_u16, vreinterpretq_u8_u32, vreinterpretq_u16_p8,
24598         vreinterpretq_u16_p16, vreinterpretq_u16_f32, vreinterpretq_u16_p64,
24599         vreinterpretq_u16_p128, vreinterpretq_u16_s64, vreinterpretq_u16_u64,
24600         vreinterpretq_u16_s8, vreinterpretq_u16_s16, vreinterpretq_u16_s32,
24601         vreinterpretq_u16_u8, vreinterpretq_u16_u32, vreinterpretq_u32_p8,
24602         vreinterpretq_u32_p16, vreinterpretq_u32_f32, vreinterpretq_u32_p64,
24603         vreinterpretq_u32_p128, vreinterpretq_u32_s64, vreinterpretq_u32_u64,
24604         vreinterpretq_u32_s8, vreinterpretq_u32_s16, vreinterpretq_u32_s32,
24605         vreinterpretq_u32_u8, vreinterpretq_u32_u16): Rewrite using casts.
24607 2016-02-04  Martin Liska  <mliska@suse.cz>
24609         PR sanitizer/69276
24610         * asan.c (has_stmt_been_instrumented_p): Instrument gimple calls
24611         that are gimple_store_p.
24612         (maybe_instrument_call): Likewise.
24614 2016-02-04  Bin Cheng  <bin.cheng@arm.com>
24616         * config/aarch64/aarch64.c (aarch64_legitimize_address): Force
24617         register scaling out of memory reference and comment why.
24619 2016-02-04  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
24621         PR target/65932
24622         PR target/67714
24623         * cse.c (cse_insn): Pass NULL to fold_rtx when initially
24624         folding the source of a SET.
24626 2016-02-04  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
24628         PR target/65932
24629         PR target/67714
24630         * config/arm/arm.c (arm_new_rtx_costs, MULT case): Properly extract
24631         the operands of the SIGN_EXTENDs from a SMUL[TB][TB] rtx.
24633 2016-02-04  Jim Wilson  <jim.wilson@linaro.org>
24635         PR target/65932
24636         PR target/67714
24637         * config/arm/arm.h (PROMOTE_MODE): Don't set UNSIGNEDP for QImode and
24638         HImode.
24640 2016-02-04  Christian Bruel  <christian.bruel@st.com>
24642         * config/arm/arm-c.c (arm_reset_previous_fndecl): Style fix and typo.
24643         * config/arm/arm.c (arm_set_current_function): Likewise.
24645 2016-02-04  Jakub Jelinek  <jakub@redhat.com>
24646             Ilya Enkovich  <enkovich.gnu@gmail.com>
24647             H.J. Lu  <hongjiu.lu@intel.com>
24649         PR target/69454
24650         * config/i386/i386.c (convert_scalars_to_vector): Remove
24651         stack alignment fixes.
24652         (ix86_option_override_internal): Disable TARGET_STV if stack
24653         might not be aligned enough.
24654         (ix86_minimum_alignment): Assert that TARGET_STV is false.
24656 2016-02-04  Victoria Stepanyan  <victoria.stepanyan@amd.com>
24658         * config/i386/x86-tune.def: Disable default prefetching
24659         for -march=znver1.
24661 2016-02-03  Michael Meissner  <meissner@linux.vnet.ibm.com>
24662             Vladimir Makarov  <vmakarov@redhat.com>
24664         PR target/69461
24665         * config/rs6000/rs6000.c (rs6000_legitimate_address_p): Fix thinko
24666         in validating fused toc addresses.
24668 2016-02-03  Jakub Jelinek  <jakub@redhat.com>
24670         PR c/69627
24671         * diagnostic-show-locus.c (layout::get_state_at_point): Don't read
24672         range->m_caret fields if range->m_show_caret_p is false.
24674         PR target/69644
24675         * config/rs6000/rs6000.c (rs6000_expand_atomic_compare_and_swap):
24676         Force oldval into register if it does not satisfy reg_or_short_operand
24677         predicate.  Fix up formatting.
24679 2016-02-03  Vladimir Makarov  <vmakarov@redhat.com>
24680             Alexandre Oliva  <aoliva@redhat.com>
24682         PR target/69461
24683         * lra-constraints.c (simplify_operand_subreg): Check additionally
24684         address validity after potential reloading.
24685         (process_address_1): Check insns validity.  In case of failure do
24686         nothing.
24688 2016-02-03  Kirill Yukhin  <kirill.yukhin@intel.com>
24690         PR target/69118
24691         * config/i386/sse.md (define_insn "avx512f_maskcmp<mode>3"):
24692         Fix target.
24694 2016-02-02  Jakub Jelinek  <jakub@redhat.com>
24696         * wide-int.cc (canonize_uhwi): New function.
24697         (wi::divmod_internal): Use it.
24699 2016-02-02  James Norris  <jnorris@codesourcery.com>
24701         * gimplify.c (omp_notice_variable): Add usage check.
24703 2016-02-02  Alexander Monakov  <amonakov@ispras.ru>
24705         * config/nvptx/nvptx.c (nvptx_print_operand): Treat LEU, GEU, LTU, GTU
24706         like LE, GE, LT, GT when emitting relational operator.
24708 2016-02-02  Wilco Dijkstra  <wdijkstr@arm.com>
24710         * ira-costs.c (find_costs_and_classes): Add extra argument.
24711         * target.def (ira_change_pseudo_allocno_class): Add parameter.
24712         * targhooks.h (ira_change_pseudo_allocno_class): Likewise.
24713         * targhooks.c (ira_change_pseudo_allocno_class): Likewise.
24714         * config/aarch64/aarch64.c (aarch64_ira_change_pseudo_allocno_class)
24715         Add best_class parameter, and return it if not ALL_REGS.
24716         * config/mips/mips.c (mips_ira_change_pseudo_allocno_class):
24717         Add parameter.
24718         * doc/tm.texi (TARGET_IRA_CHANGE_PSEUDO_ALLOCNO_CLASS):
24719         Update target hook.
24721 2016-02-02  Wilco Dijkstra  <wdijkstr@arm.com>
24723         * config/aarch64/aarch64.c
24724         (TARGET_IRA_CHANGE_PSEUDO_ALLOCNO_CLASS): New define.
24725         (aarch64_ira_change_pseudo_allocno_class): New function.
24727 2016-02-02  Uros Bizjak  <ubizjak@gmail.com>
24729         PR target/67032
24730         * config/i386/i386.c (geode_cost): Increase cost of MMX and SSE moves.
24732 2016-02-02  Senthil Kumar Selvaraj  <senthil_kumar.selvaraj@atmel.com>
24734         * config/avr/avr.c (avr_option_override): Set
24735         PARAM_ALLOW_STORE_DATA_RACES to 1.
24737 2016-02-02  Richard Biener  <rguenther@suse.de>
24739         PR tree-optimization/69595
24740         * match.pd: Add range test simplifications to true/false.
24742 2016-02-02  Thomas Schwinge  <thomas@codesourcery.com>
24744         * omp-builtins.def (BUILT_IN_GOACC_HOST_DATA): Remove.
24745         * omp-low.c (expand_omp_target): Use BUILT_IN_GOACC_DATA_START
24746         instead.
24748 2016-02-02  Richard Biener  <rguenther@suse.de>
24750         PR tree-optimization/69606
24751         * tree-ssa-math-opts.c (bswap_replace): Clear flow sensitive
24752         info on the result before moving a stmt.
24754 2016-02-02  Yuri Rumyantsev  <ysrumyan@gmail.com>
24756         PR middle-end/68542
24757         * config/i386/i386.c (ix86_expand_branch): Add support for conditional
24758         branch with vector comparison.
24759         * config/i386/sse.md (VI48_AVX): New mode iterator.
24760         (define_expand "cbranch<mode>4): Add support for conditional branch
24761         with vector comparison.
24762         * tree-vect-loop.c (optimize_mask_stores): New function.
24763         * tree-vect-stmts.c (vectorizable_mask_load_store): Initialize
24764         has_mask_store field of vect_info.
24765         * tree-vectorizer.c (vectorize_loops): Invoke optimaze_mask_stores for
24766         vectorized loops having masked stores after vec_info destroy.
24767         * tree-vectorizer.h (loop_vec_info): Add new has_mask_store field and
24768         correspondent macros.
24769         (optimize_mask_stores): Add prototype.
24771 2016-02-02  Alan Modra  <amodra@gmail.com>
24773         PR target/69548
24774         * config/rs6000/predicates.md (quad_int_reg_operand): Don't
24775         allow subregs.
24777 2016-02-02  Alan Modra  <amodra@gmail.com>
24779         PR target/68662
24780         * config/rs6000/rs6000.c (need_toc_init): New var, set it
24781         whenever toc_label_name used.
24782         (rs6000_file_start): Don't set up toc section here,
24783         (rs6000_output_function_epilogue): do so here instead,
24784         (rs6000_xcoff_file_start): and here.
24785         * config/rs6000/rs6000.md (load_toc_aix_si): Set need_toc_init.
24786         (load_toc_aix_di): Likewise.
24788 2016-02-01  Jakub Jelinek  <jakub@redhat.com>
24790         PR rtl-optimization/69592
24791         * rtlanal.c (nonzero_bits_binary_arith_p): New inline function.
24792         (cached_nonzero_bits): Use it instead of ARITHMETIC_P.
24793         (num_sign_bit_copies_binary_arith_p): New inline function.
24794         (cached_num_sign_bit_copies): Use it instead of ARITHMETIC_P.
24796 2016-02-01  Jeff Law  <law@redhat.com>
24798         PR tree-optimization/69580
24799         * params.def (FSM_MAXIMUM_PHI_ARGUMENTS): New param.
24800         * tree-ssa-threadbackward.c
24801         (fsm_find_control_statement_thread_paths): Do not try to walk
24802         through large PHI nodes.
24804 2016-02-01  Jakub Jelinek  <jakub@redhat.com>
24806         * ifcvt.c (bb_ok_for_noce_convert_multiple_sets): Return false
24807         when count is incremented above limit, don't analyze further
24808         insns afterwards.
24810         * omp-low.c (oacc_parse_default_dims): Avoid
24811         -Wsign-compare warning, make sure value fits into int
24812         rather than just unsigned int.
24814 2016-02-01  Bin Cheng  <bin.cheng@arm.com>
24816         PR tree-optimization/67921
24817         * fold-const.c (split_tree): New parameters.  Convert pointer
24818         type variable part to proper type before negating.
24819         (fold_binary_loc): Pass new arguments to split_tree.
24821 2016-02-01  Nathan Sidwell  <nathan@codesourcery.com>
24823         * config/nvptx/nvptx.c (PTX_GANG_DEFAULT): New.
24824         (nvptx_goacc_validate_dims): Extend to handle global defaults.
24825         * target.def (OACC_VALIDATE_DIMS): Extend documentation.
24826         * doc/tm.texti: Rebuilt.
24827         * doc/invoke.texi (fopenacc-dim): Document.
24828         * lto-wrapper.c (merge_and_complain): Add OPT_fopenacc_dim_ case.
24829         (append_compiler_options): Likewise.
24830         * omp-low.c (oacc_default_dims, oacc_min_dims): New.
24831         (oacc_parse_default_dims): New.
24832         (oacc_validate_dims): Add USED arg.  Select non-unity default when
24833         possible.
24834         (oacc_loop_fixed_partitions): Return mask of used partitions.
24835         (oacc_loop_auto_partitions): Emit dump info.
24836         (oacc_loop_partition): Return mask of used partitions.
24837         (execute_oacc_device_lower): Parse default dimension arg.  Adjust
24838         loop partitioning and validation calls.
24840 2016-02-01  Richard Biener  <rguenther@suse.de>
24842         PR middle-end/69556
24843         * match.pd: Guard (C1/X)*C2 -> (C1*C2)/X with single_use.
24845 2016-02-01  Richard Biener  <rguenther@suse.de>
24847         PR tree-optimization/69574
24848         * tree-chrec.c (hide_evolution_in_other_loops_than_loop): Instead
24849         of asserting return chrec_dont_know.
24851 2016-02-01  Martin Liska  <mliska@suse.cz>
24853         * mem-stats-traits.h: Add copyright header.
24854         * mem-stats.h: Likewise.
24856 2016-02-01  Richard Biener  <rguenther@suse.de>
24858         PR tree-optimization/69579
24859         * tree-ssa-loop-ivcanon.c (propagate_constants_for_unrolling):
24860         Do not propagate through abnormal PHI results.
24862 2016-02-01  Eric Botcazou  <ebotcazou@adacore.com>
24864         * postreload.c (reload_cse_simplify): Remove dead code.
24866 2016-02-01  Jakub Jelinek  <jakub@redhat.com>
24868         PR rtl-optimization/69570
24869         * ifcvt.c (bb_ok_for_noce_convert_multiple_sets): Return true only
24870         if there is more than one set, not if there is a single set.
24872 2016-02-01  Richard Henderson  <rth@redhat.com>
24874         PR rtl-opt/69535
24875         * combine.c (make_compound_operation): When looking through a
24876         subreg, make sure to re-extend to the width of the outer mode.
24878 2016-01-30  Jakub Jelinek  <jakub@redhat.com>
24880         PR tree-optimization/69546
24881         * wide-int.cc (wi::divmod_internal): For unsigned division
24882         where both operands fit into uhwi, if o1 is 1 and o0 has
24883         msb set, if divident_prec is larger than bits per hwi,
24884         clear another quotient word and return 2 instead of 1.
24885         Similarly for remainder with msb in HWI set, if dividend_prec
24886         is larger than bits per hwi.
24888 2016-01-29  Martin Jambor  <mjambor@suse.cz>
24890         * hsa-gen.c (get_memory_order_name): Mask with MEMMODEL_BASE_MASK.
24891         Use short lowercase names.
24892         (get_memory_order): Mask with MEMMODEL_BASE_MASK.  Support
24893         MEMMODEL_CONSUME with acquire semantics and MEMMODEL_SEQ_CST with
24894         acq_rel one.  Protect warning agains segfaults if
24895         get_memory_order_name returns NULL.
24896         (gen_hsa_ternary_atomic_for_builtin): Support with MEMMODEL_SEQ_CST
24897         with release semantics.  Do not warn if get_memory_order already did.
24898         (gen_hsa_insns_for_call): Support with MEMMODEL_SEQ_CST with acquire
24899         semantics.  Fix check for relaxed or acquire semantics.  Do not warn
24900         if get_memory_order already did.
24902 2016-01-29  Sebastian Pop  <s.pop@samsung.com>
24904         * doc/install.texi: Document that isl-0.16 is supported.
24906 2016-01-29  Vladimir Makarov  <vmakarov@redhat.com>
24908         PR target/69299
24909         * config/i386/constraints.md (Bm): Describe as special memory
24910         constraint.
24911         * doc/md.texi (DEFINE_SPECIAL_MEMORY_CONSTRAINT): Describe it.
24912         * genoutput.c (main): Process DEFINE_SPECIAL_MEMORY_CONSTRAINT.
24913         * genpreds.c (struct constraint_data): Add is_special_memory.
24914         (have_special_memory_constraints, special_memory_start): New
24915         static vars.
24916         (special_memory_end): Ditto.
24917         (add_constraint): Add new arg is_special_memory.  Add code to
24918         process its true value.  Update have_special_memory_constraints.
24919         (process_define_constraint): Pass the new arg.
24920         (process_define_register_constraint): Ditto.
24921         (choose_enum_order): Process special memory.
24922         (write_tm_preds_h): Generate enum const CT_SPECIAL_MEMORY and
24923         function insn_extra_special_memory_constraint.
24924         (main): Process DEFINE_SPECIAL_MEMORY_CONSTRAINT.
24925         * gensupport.c (process_rtx): Process
24926         DEFINE_SPECIAL_MEMORY_CONSTRAINT.
24927         * ira-costs.c (record_reg_classes): Process CT_SPECIAL_MEMORY.
24928         * ira-lives.c (single_reg_class): Use
24929         insn_extra_special_memory_constraint.
24930         * ira.c (ira_setup_alts): Process CT_SPECIAL_MEMORY.
24931         * lra-constraints.c (process_alt_operands): Ditto.
24932         (curr_insn_transform): Use insn_extra_special_memory_constraint.
24933         * recog.c (asm_operand_ok, preprocess_constraints): Process
24934         CT_SPECIAL_MEMORY.
24935         * reload.c (find_reloads): Ditto.
24936         * rtl.def (DEFINE_SPECIFAL_MEMORY_CONSTRAINT): New.
24937         * stmt.c (parse_input_constraint): Use
24938         insn_extra_special_memory_constraint.
24940 2016-01-29  H.J. Lu  <hongjiu.lu@intel.com>
24942         PR target/69530
24943         * lra-splill.c (lra_final_code_change): Revert r229087 by
24944         removing all sub-registers.
24946 2016-01-29  Steve Ellcey  <sellcey@imgtec.com>
24948         PR target/65604
24949         * config/mips/mips.c (mips_output_division): Check flag_delayed_branch.
24951 2016-01-29  Jakub Jelinek  <jakub@redhat.com>
24953         PR target/69551
24954         * config/i386/i386.c (ix86_expand_vector_set) <case V4SImode>: For
24955         SSE1, copy target into the temporary reg first before recursing
24956         on it.
24958 2016-01-29  H.J. Lu  <hongjiu.lu@intel.com>
24960         * config/i386/sse.md (sse2_cvtps2pd<mask_name>): Replace vBm
24961         with vm.
24963 2016-01-29  Jonathan Wakely  <jwakely@redhat.com>
24965         * ginclude/stdarg.h: Test __cplusplus instead of
24966         __GXX_EXPERIMENTAL_CXX0X__.
24968 2016-01-29  Richard Biener  <rguenther@suse.de>
24970         PR tree-optimization/69547
24971         * tree-ssa-dce.c (mark_aliased_reaching_defs_necessary_1):
24972         Do not mark clobbers necessary.
24973         (mark_all_reaching_defs_necessary_1): Likewise.
24975 2016-01-29  Dominik Vogt  <vogt@linux.vnet.ibm.com>
24977         * config/s390/s390-c.c (s390_resolve_overloaded_builtin): Format
24978         declaration name with %qs and print it in both error messages.
24979         Also fix indentation.
24981 2016-01-29  Dominik Vogt  <vogt@linux.vnet.ibm.com>
24983         PR other/69006
24984         * config/s390/s390-c.c (s390_resolve_overloaded_builtin): Remove
24985         trailing blank line from error message.
24987 2016-01-29  Jonathan Wakely  <jwakely@redhat.com>
24989         PR c++/69462
24990         * ginclude/float.h: Also provide FLT_EVAL_METHOD and DECIMAL_DIG
24991         for C++-11.
24993 2016-01-29  Richard Biener  <rguenther@suse.de>
24995         PR middle-end/69537
24996         * match.pd: Allow all integral types when simplifying a
24997         widening or sign-changing conversion.
24999 2016-01-28  Sebastian Pop  <s.pop@samsung.com>
25001         * graphite-isl-ast-to-gimple.c (get_rename_from_scev): Revert assert
25002         back to setting codegen_error to fail codegen.
25004 2016-01-28  Uros Bizjak  <ubizjak@gmail.com>
25006         PR target/69459
25007         * config/i386/constraints.md (C): Only accept constant zero operand.
25008         (BC): New constraint.
25009         * config/i386/sse.md (*mov<mode>_internal): Use BC constraint
25010         instead of C constraint.
25011         * doc/md.texi (Machine Constraints): Update description
25012         of C constraint.
25014 2016-01-28  Steve Ellcey  <sellcey@imgtec.com>
25016         PR target/68400
25017         * config/mips/mips.c (and_operands_ok): Add MIPS16 check.
25019 2016-01-28  Jakub Jelinek  <jakub@redhat.com>
25021         PR middle-end/69542
25022         * lra-remat.c (calculate_local_reg_remat_bb_data): Only consider
25023         non-debug insns.
25025 2016-01-28  Pat Haugen  <pthaugen@us.ibm.com>
25027         * config/rs6000/rs6000.c (output_cbranch): Don't statically predict
25028         branches if using guessed profile.
25030 2016-01-28  H.J. Lu  <hongjiu.lu@intel.com>
25032         * graphite-optimize-isl.c (optimize_isl): Fix dump.
25034 2016-01-28  Richard Henderson  <rth@redhat.com>
25036         PR target/69305
25037         * config/aarch64/aarch64-modes.def (CC_Cmode): New
25038         * config/aarch64/aarch64-protos.h: Update.
25039         * config/aarch64/aarch64.c (aarch64_zero_extend_const_eq): New.
25040         (aarch64_select_cc_mode): Add check for use of CC_Cmode.
25041         (aarch64_get_condition_code_1): Handle CC_Cmode.
25042         * config/aarch64/aarch64.md (addti3): Use adddi3_compareC.
25043         (*add<mode>3_compareC_cconly_imm): New.
25044         (*add<mode>3_compareC_cconly): New.
25045         (*add<mode>3_compareC_imm): New.
25046         (add<mode>3_compareC): New.
25047         (add<mode>3_carryin, *addsi3_carryin_uxtw): Sort compare operand
25048         to be first.  Use aarch64_carry_operation.
25049         (*add<mode>3_carryin_alt1, *addsi3_carryin_alt1_uxtw): Remove.
25050         (*add<mode>3_carryin_alt2, *addsi3_carryin_alt2_uxtw): Remove.
25051         (*add<mode>3_carryin_alt3, *addsi3_carryin_alt3_uxtw): Remove.
25052         (subti3): Use subdi3_compare1.
25053         (*sub<mode>3_compare0): Rename from sub<mode>3_compare0.
25054         (sub<mode>3_compare1): New.
25055         (*sub<mode>3_carryin0, *subsi3_carryin_uxtw): New.
25056         (*sub<mode>3_carryin): Use aarch64_borrow_operation.
25057         (*subsi3_carryin_uxtw): Likewise.
25058         (*ngc<mode>, *ngcsi_uxtw): Likewise.
25059         (*sub<mode>3_carryin_alt, *subsi3_carryin_alt_uxtw): New.
25060         * config/aarch64/iterators.md (DWI): New.
25061         * config/aarch64/predicates.md (aarch64_carry_operation): New.
25062         (aarch64_borrow_operation): New.
25064 2016-01-28  Abderrazek Zaafrani  <a.zaafrani@samsung.com>
25066         * graphite-optimize-isl.c (optimize_isl): Print a different debug
25067         message when isl does not return a valid schedule.
25069 2016-01-28  Sebastian Pop  <s.pop@samsung.com>
25071         * graphite-isl-ast-to-gimple.c (class translate_isl_ast_to_gimple):
25072         Remove comments from class declarations: they are already in the code
25073         close by the defs.
25075 2016-01-28  Sebastian Pop  <s.pop@samsung.com>
25077         * graphite-isl-ast-to-gimple.c (binary_op_to_tree): Call
25078         codegen_error_p.
25079         (ternary_op_to_tree): Same.
25080         (unary_op_to_tree): Same.
25081         (nary_op_to_tree): Same.
25082         (gcc_expression_from_isl_expr_op): Same.
25083         (gcc_expression_from_isl_expression): Same.
25084         (graphite_create_new_loop): Same.
25085         (graphite_create_new_loop_guard): Same.
25086         (build_iv_mapping): Same.
25087         (graphite_create_new_guard): Same.
25088         (translate_isl_ast_to_gimple::copy_loop_phi_nodes): Same.
25089         (translate_isl_ast_to_gimple::translate_pending_phi_nodes): Same.
25091 2016-01-28  Sebastian Pop  <s.pop@samsung.com>
25093         * graphite-isl-ast-to-gimple.c (get_rename_from_scev): Assert
25094         instead of setting codegen_error to fail codegen.
25096 2016-01-28  Jason Merrill  <jason@redhat.com>
25098         * tree.h (BINFO_FLAG_0): Rename from BINFO_MARKED.
25100 2016-01-28  Wilco Dijkstra  <wdijkstr@arm.com>
25102         * config/aarch64/aarch64.c (aarch64_if_then_else_costs):
25103         Remove CONST_INT_P check in CCMP cost calculation.
25105 2016-01-28  Wilco Dijkstra  <wdijkstr@arm.com>
25107         * config/aarch64/aarch64.c (generic_vector_cost):
25108         Set vec_permute_cost.
25109         (cortexa57_vector_cost): Likewise.
25110         (exynosm1_vector_cost): Likewise.
25111         (xgene1_vector_cost): Likewise.
25112         (aarch64_builtin_vectorization_cost): Use vec_permute_cost.
25113         * config/aarch64/aarch64-protos.h (cpu_vector_cost):
25114         Add vec_permute_cost entry.
25116 2016-01-28  Wilco Dijkstra  <wdijkstr@arm.com>
25118         * config/aarch64/aarch64.md (ccmp<mode>): Disassemble
25119         immediate as %1.
25120         (add<mode>3_compare0): Likewise.
25121         (addsi3_compare0_uxtw): Likewise.
25122         (add<mode>3nr_compare0): Likewise.
25123         (compare_neg<mode>): Likewise.
25124         (<optab><mode>3): Likewise.
25126 2016-01-28  Ilya Enkovich  <enkovich.gnu@gmail.com>
25128         * tree-vect-stmts.c (vectorizable_comparison): Add
25129         NULL check for vectype.
25131 2016-01-28  Richard Biener  <rguenther@suse.de>
25133         PR tree-optimization/69466
25134         * tree-vect-loop-manip.c (slpeel_duplicate_current_defs_from_edges):
25135         Account for PHIs we couldn't duplicate.
25137 2016-01-28  Martin Liska  <mliska@suse.cz>
25139         PR pch/68758
25140         * ggc-common.c (gt_pch_save): Use ENABLE_VALGRIND_ANNOTATIONS macro
25141         instead of ENABLE_VALGRIND_CHECKING.
25143 2016-01-27  Richard Henderson  <rth@redhat.com>
25145         PR rtl-opt/69447
25146         * lra-remat.c (subreg_regs): New.
25147         (dump_candidates_and_remat_bb_data): Dump it.
25148         (operand_to_remat): Reject if operand in subreg_regs.
25149         (set_bb_regs): Collect subreg_regs.
25150         (lra_remat): Init and free subreg_regs.  Compute
25151         calculate_local_reg_remat_bb_data before create_cands.
25153 2016-01-27  H.J. Lu  <hongjiu.lu@intel.com>
25155         PR target/68986
25156         * config/i386/i386.c (ix86_update_stack_boundary): Don't
25157         change stack_alignment_needed for __tls_get_addr call.
25159 2016-01-27  Segher Boessenkool  <segher@kernel.crashing.org>
25161         * config/rs6000/rs6000.c (print_operand): Rollback 's' removal.
25163 2016-01-27  Jeff Law  <law@redhat.com>
25165         PR tree-optimization/68398
25166         PR tree-optimization/69196
25167         * params.def (PARAM_FSM_SCALE_PATH_STMTS): New parameter.
25168         (PARAM_FSM_SCALE_PATH_BLOCKS): Likewise.
25169         * tree-ssa-threadbackward.c (fsm_find_control_statement_thread_paths):
25170         Only count PHIs in the last block in the path.  The others will
25171         const/copy propagate away.  Add heuristic to allow more irreducible
25172         subloops to be created when it is likely profitable to do so.
25174         * tree-ssa-threadbackward.c (fsm_find_control_statement_thread_paths):
25175         Fix typo in comment.  Use gsi_after_labels and remove the GIMPLE_LABEL
25176         check from within the loop.  Use gsi_next_nondebug rather than gsi_next.
25178 2016-01-27  Jakub Jelinek  <jakub@redhat.com>
25180         PR lto/69254
25181         * sanitizer.def: Add BEGIN_SANITIZER_BUILTINS and
25182         END_SANITIZER_BUILTINS markers using DEF_BUILTIN_STUB.
25183         * asan.c (DEF_BUILTIN_STUB): Temporarily define.
25184         * tree-streamer-in.c: Include asan.h.
25185         (streamer_get_builtin_tree): For builtins in sanitizer
25186         range call initialize_sanitizer_builtins and retry.
25188 2016-01-27  Ian Lance Taylor  <iant@google.com>
25190         * common.opt (fkeep-gc-roots-live): New undocumented option.
25191         * tree-ssa-loop-ivopts.c (add_candidate_1): If
25192         -fkeep-gc-roots-live, skip pointers.
25193         (add_iv_candidate_for_biv): Handle add_candidate_1 returning
25194         NULL.
25196 2016-01-27  Uros Bizjak  <ubizjak@gmail.com>
25198         PR target/69512
25199         * config/i386/i386.md (*zext<mode>_doubleword_and): New pattern.
25200         (*zext<mode>_doubleword): Disable for TARGET_ZERO_EXTEND_WITH_AND.
25202 2016-01-27  Thomas Klausner  <wiz@NetBSD.org>
25204         PR target/68380
25205         * configure.ac: NetBSD provides SSP in its C library.
25206         * configure: Updated.
25208 2016-01-27  Richard Biener  <rguenther@suse.de>
25210         PR tree-optimization/69166
25211         * tree-vect-loop.c (vect_is_simple_reduction): Always check
25212         reduction code for commutativity / associativity.
25214 2016-01-27  Martin Jambor  <mjambor@suse.cz>
25216         PR tree-optimization/69355
25217         * tree-sra.c (analyze_access_subtree): Correct hole detection when
25218         total_scalarization fails.
25220 2016-01-27  David Edelsohn  <dje.gcc@gmail.com>
25222         * config/rs6000/driver-rs6000.c (detect_processor_aix): Add
25223         power9.
25225 2016-01-27  Christian Bruel  <christian.bruel@st.com>
25227         PR target/69245
25228         * config/arm/arm-c.c (arm_pragma_target_parse): Add comments.
25229         Move arm_reset_previous_fndecl and set_target_option_current_node in
25230         the conditional part.  Call save_restore_target_globals.
25231         * config/arm/arm.c (arm_set_current_function):
25232         Refactor to better support #pragma target and attribute mix.
25233         Call save_restore_target_globals.
25234         * config/arm/arm-protos.h (save_restore_target_globals): New function.
25236 2016-01-27  Martin Liska  <mliska@suse.cz>
25238         * hsa.c (hsa_summary_t::link_functions): Create IPA_REF_ADDR
25239         reference for an HSA kernel and its host function.
25241 2016-01-27  Jakub Jelinek  <jakub@redhat.com>
25243         PR tree-optimization/69399
25244         * wide-int.h (wi::lrshift): For larger precisions, only
25245         use fast path if shift is known to be < HOST_BITS_PER_WIDE_INT.
25247 2016-01-27  Claudiu Zissulescu  <claziss@synopsys.com>
25249         * config/arc/predicates.md (proper_comparison_operator): Reject
25250         constant-constant comparison.
25252 2016-01-26  Tom de Vries  <tom@codesourcery.com>
25254         PR tree-optimization/69110
25255         * tree-data-ref.c (initialize_data_dependence_relation): Handle
25256         DR_NUM_DIMENSIONS == 0.
25258 2016-01-26  Abderrazek Zaafrani  <a.zaafrani@samsung.com>
25259             Sebastian Pop  <s.pop@samsung.com>
25261         * graphite-isl-ast-to-gimple.c (ternary_op_to_tree): Handle
25262         isl_ast_op_cond and isl_ast_op_select.
25263         (gcc_expression_from_isl_expr_op): Same.
25265 2016-01-26  Jason Merrill  <jason@redhat.com>
25267         PR c++/68782
25268         * tree.c (recompute_constructor_flags): Split out from
25269         build_constructor.
25270         (verify_constructor_flags): New.
25271         * tree.h: Declare them.
25273 2016-01-26  Iain Buclaw  <ibuclaw@gdcproject.org>
25275         PR rtl-optimization/69217
25276         * var-tracking.c (tracked_record_parameter_p): Don't segfault if there
25277         are no TYPE_FIELDS set for the record type.
25279 2016-01-26  Jakub Jelinek  <jakub@redhat.com>
25281         PR target/68662
25282         * config/rs6000/rs6000.c (rs6000_option_override_internal): Initialize
25283         toc_label_name unconditionally.
25284         (rs6000_emit_load_toc_table): Call ggc_strdup on toc_label_name for
25285         SYMBOL_REF string.  Use toc_label_name instead of constructing
25286         LCTOC1.
25287         (rs6000_elf_declare_function_name): Use toc_label_name instead of
25288         constructing LCTOC1.
25290 2016-01-26  Martin Sebor  <msebor@redhat.com>
25292         PR other/69477
25293         * doc/extend.texi (Common Type Attributes): Move text that talks about
25294         attribute packed from attribute aligned to the section discussing
25295         the former attribute for clarity.
25297 2016-01-26  Richard Henderson  <rth@redhat.com>
25299         PR middle-end/60908
25300         * trans-mem.c (tm_region_init): Mark entry block as visited.
25302 2016-01-26  David Malcolm  <dmalcolm@redhat.com>
25304         PR other/69006
25305         * diagnostic-show-locus.c (layout::print_source_line): Replace
25306         call to pp_newline with call to layout::print_newline.
25307         (layout::print_annotation_line): Likewise.
25308         (layout::move_to_column): Likewise.
25309         (layout::print_any_fixits): After printing any fixits, print a
25310         trailing newline, if necessary.
25311         (layout::print_newline): New method, resetting any colorization
25312         before a newline.
25313         (diagnostic_show_locus): Move the pp_newline to before the
25314         early bailout.  Remove dummy block enclosing the layout instance.
25315         * diagnostic.c (default_diagnostic_finalizer): Replace invocation
25316         of pp_newline_and_flush with pp_flush.
25317         (diagnostic_append_note): Delete use of pp_newline.
25318         (diagnostic_append_note_at_rich_loc): Delete.
25319         * diagnostic.h (diagnostic_append_note_at_rich_loc): Delete.
25320         * pretty-print.h (output_buffer_append_r): Reset buff->line_length
25321         when newline characters are added to the buffer.
25323 2016-01-26  Michael Matz  <matz@suse.de>
25325         * configure.ac (ac_cv_std_swap_in_utility): New test.
25326         * system.h (<algorithm>): Check HAVE_SWAP_IN_UTILITY as well.
25327         * configure: Regenerate.
25328         * config.in: Regenerate.
25330 2016-01-26  Claudiu Zissulescu  <claziss@synopsys.com>
25332         * config/arc/arc.md (cstoresi4): Force operand into register.
25333         (arcset<code>): Fix predicate.
25334         (arcsetltu): Likewise.
25335         (arcsetgeu): Likewise.
25336         (arcsethi): Likewise.
25337         (arcsetls): Likewise.
25339 2016-01-26  Jakub Jelinek  <jakub@redhat.com>
25341         PR tree-optimization/69483
25342         * gimple-fold.c (canonicalize_constructor_val): Return NULL
25343         if base has error_mark_node type.
25345 2016-01-26  Christophe Lyon  <christophe.lyon@linaro.org>
25347         PR target/68620
25348         * config/arm/arm.c (neon_valid_immediate): Handle FP16 vectors.
25349         * config/arm/arm_neon.h (__ARM_NUM_LANES, __arm_lane, arm_lanq):
25350         New helper macros.
25351         (vget_lane_f16): Handle big-endian.
25352         (vgetq_lane_f16): Likewise.
25353         (vset_lane_f16): Likewise.
25354         (vsetq_lane_f16): Likewise.
25355         * config/arm/iterators.md (VQXMOV): Add V8HF.
25356         (VDQ): Add V4HF and V8HF.
25357         (V_reg): Handle V4HF and V8HF.
25358         (Is_float_mode): Likewise.
25359         * config/arm/neon.md (movv4hf, movv8hf, neon_vdup_nv4hf,
25360         neon_vdup_nv8hf): New patterns.
25361         (vec_set<mode>_internal, vec_extract<mode>, neon_vld1_dup<mode>):
25362         Use VD_LANE iterator.
25363         (neon_vld1_dup<mode>): Use VQ2 iterator.
25365 2016-01-26  Nathan Sidwell  <nathan@acm.org>
25367         * omp-low.h (oacc_fn_attrib_kernels_p): Declare.
25368         (set_oacc_fn_attrib): Add IS_KERNEL arg.
25369         * omp-low.c (set_oacc_fn_attrib): Add IS_KERNEL arg.
25370         (oacc_fn_attrib_kernels_p, oacc_fn_attrib_level): New.
25371         (expand_omp_target): Pass is_kernel to set_oacc_fn_attrib.
25372         (oacc_validate_dims): Add LEVEL arg, don't return level.
25373         (new_oacc_loop_routine): Use oacc_fn_attrib_level, not
25374         oacc_validate_dims.
25375         (execute_oacc_device_lower): Adjust, add more dump output.
25376         * tree-ssa-loop.c (gate_oacc_kernels): Use
25377         oacc_fn_attrib_kernels_p.
25378         * tree-parloops.c (create_parallel_loop): Adjust
25379         set_oacc_fn_attrib call.
25381 2016-01-26  Jakub Jelinek  <jakub@redhat.com>
25383         PR lto/69254
25384         * lto-wrapper.c (merge_and_complain): Handle -fcilkplus.
25385         (append_compiler_options): Handle -fcilkplus.
25386         (append_linker_options): Ignore -fno-{openmp,openacc,cilkplus}.
25388 2016-01-26  Nick Clifton  <nickc@redhat.com>
25390         PR target/66655
25391         * config/i386/winnt.c (i386_pe_binds_local_p): If a function has
25392         been marked as DECL_ONE_ONLY but we do not the means to make it
25393         so, then do not allow it to bind locally.
25395 2016-01-26  Jakub Jelinek  <jakub@redhat.com>
25397         PR lto/69254
25398         * opts.h (parse_sanitizer_options): New prototype.
25399         * opts.c (sanitizer_opts): New array.
25400         (parse_sanitizer_options): New function.
25401         (common_handle_option): Use parse_sanitizer_options.
25403 2016-01-26  H.J. Lu  <hongjiu.lu@intel.com>
25405         PR target/68986
25406         * config/i386/i386.c (ix86_compute_frame_layout): Move stack
25407         alignment adjustment to ...
25408         (ix86_update_stack_boundary): Here.  Don't over-align stack for
25409         __tls_get_addr.
25410         (ix86_finalize_stack_realign_flags): Use stack_alignment_needed
25411         if __tls_get_addr is called.
25413 2016-01-26  Christian Bruel  <christian.bruel@st.com>
25415         * doc/sourcebuild.texi (arm_crypto_pragma_ok): Remove.
25417 2016-01-26  Eric Botcazou  <ebotcazou@adacore.com>
25419         * config/ia64/ia64.c (ia64_expand_vecint_compare): Use gen_int_mode.
25421 2016-01-26  Richard Biener  <rguenther@suse.de>
25423         PR middle-end/69467
25424         * match.pd: Guard X * CST CMP 0 pattern with single_use.
25426 2016-01-26  Richard Biener  <rguenther@suse.de>
25428         PR tree-optimization/69452
25429         * tree-ssa-loop-im.c (move_computations_dom_walker): Remove.
25430         (move_computations_dom_walker::before_dom_children): Rename
25431         to ...
25432         (move_computations_worker): This.
25433         (move_computations): Perform an RPO rather than a DOM walk.
25435 2016-01-26  Jakub Jelinek  <jakub@redhat.com>
25437         PR target/69442
25438         * combine.c (combine_instructions): For REG_EQUAL note with
25439         SET_DEST being ZERO_EXTRACT, also temporarily set SET_DEST
25440         to the underlying register.
25441         * doc/rtl.texi (REG_EQUAL): Document the behavior of
25442         REG_EQUAL/REG_EQUIV notes if SET_DEST is ZERO_EXTRACT.
25444 2016-01-26  Roger Ferrer Ibáñez  <rofirrim@gmail.com>
25446         PR target/67896
25447         * config/aarch64/aarch64-builtins.c
25448         (aarch64_init_simd_builtin_types): Do not set structural
25449         equality to __Poly{8,16,64,128}_t types.
25451 2016-01-26  Richard Sandiford  <richard.sandiford@arm.com>
25453         PR tree-optimization/69400
25454         * wide-int.cc (wi_pack): Take the precision as argument and
25455         perform canonicalization here rather than in the callers.
25456         Use the main loop to handle all full-width HWIs.  Add a
25457         zero HWI if in_len isn't a full result.
25458         (wi::divmod_internal): Update accordingly.
25459         (wi::mul_internal): Likewise.  Simplify.
25461 2016-01-25  Aditya Kumar  <aditya.k7@samsung.com>
25462             Sebastian Pop  <s.pop@samsung.com>
25464         * graphite-poly.c (apply_poly_transforms): Simplify.
25465         (print_isl_set): Use more readable format: ISL_YAML_STYLE_BLOCK.
25466         (print_isl_map): Same.
25467         (print_isl_union_map): Same.
25468         (print_isl_schedule): New.
25469         (debug_isl_schedule): New.
25470         * graphite-dependences.c (scop_get_reads): Do not call
25471         isl_union_map_add_map that is undocumented isl functionality.
25472         (scop_get_must_writes): Same.
25473         (scop_get_may_writes): Same.
25474         (scop_get_original_schedule): Remove.
25475         (scop_get_dependences): Do not call isl_union_map_compute_flow that
25476         is deprecated in isl 0.15.  Instead, use isl_union_access_* interface.
25477         (compute_deps): Remove.
25478         * graphite-isl-ast-to-gimple.c (print_schedule_ast): New.
25479         (debug_schedule_ast): New.
25480         (translate_isl_ast_to_gimple::scop_to_isl_ast): Call
25481         set_separate_option.
25482         (graphite_regenerate_ast_isl): Add dump.
25483         (translate_isl_ast_to_gimple::scop_to_isl_ast): Generate code
25484         from scop->transformed_schedule.
25485         (graphite_regenerate_ast_isl): Add more dump.
25486         * graphite-optimize-isl.c (optimize_isl): Set
25487         scop->transformed_schedule.  Check whether schedules are equal.
25488         (apply_poly_transforms): Move here.
25489         * graphite-poly.c (apply_poly_transforms): ... from here.
25490         (free_poly_bb): Static.
25491         (free_scop): Static.
25492         (pbb_number_of_iterations_at_time): Remove.
25493         (print_isl_ast): New.
25494         (debug_isl_ast): New.
25495         (debug_scop_pbb): New.
25496         * graphite-scop-detection.c (print_edge): Move.
25497         (print_sese): Move.
25498         * graphite-sese-to-poly.c (build_pbb_scattering_polyhedrons): Remove.
25499         (build_scop_scattering): Remove.
25500         (create_pw_aff_from_tree): Assert instead of bailing out.
25501         (add_condition_to_pbb): Remove unused code, do not fail.
25502         (add_conditions_to_domain): Same.
25503         (add_conditions_to_constraints): Remove.
25504         (build_scop_context): New.
25505         (add_iter_domain_dimension): New.
25506         (build_iteration_domains): Initialize pbb->iterators.
25507         Call add_conditions_to_domain.
25508         (nested_in): New.
25509         (loop_at): New.
25510         (index_outermost_in_loop): New.
25511         (index_pbb_in_loop): New.
25512         (outermost_pbb_in): New.
25513         (add_in_sequence): New.
25514         (add_outer_projection): New.
25515         (outer_projection_mupa): New.
25516         (add_loop_schedule): New.
25517         (build_schedule_pbb): New.
25518         (build_schedule_loop): New.
25519         (embed_in_surrounding_loops): New.
25520         (build_schedule_loop_nest): New.
25521         (build_original_schedule): New.
25522         (build_poly_scop): Call build_original_schedule.
25523         * graphite.h: Declare print_isl_schedule and debug_isl_schedule.
25524         (free_poly_dr): Remove.
25525         (struct poly_bb): Add iterators.  Remove schedule, transformed, saved.
25526         (free_poly_bb): Remove.
25527         (debug_loop_vec): Remove.
25528         (print_isl_ast): Declare.
25529         (debug_isl_ast): Declare.
25530         (scop_do_interchange): Remove.
25531         (scop_do_strip_mine): Remove.
25532         (scop_do_block): Remove.
25533         (flatten_all_loops): Remove.
25534         (optimize_isl): Remove.
25535         (pbb_number_of_iterations_at_time): Remove.
25536         (debug_scop_pbb): Declare.
25537         (print_schedule_ast): Declare.
25538         (debug_schedule_ast): Declare.
25539         (struct scop): Remove schedule.  Add original_schedule,
25540         transformed_schedule.
25541         (free_gimple_poly_bb): Remove.
25542         (print_generated_program): Remove.
25543         (debug_generated_program): Remove.
25544         (unify_scattering_dimensions): Remove.
25545         * sese.c (print_edge): ... here.
25546         (print_sese): ... here.
25547         (debug_edge): ... here.
25548         (debug_sese): ... here.
25549         * sese.h (print_edge): Declare.
25550         (print_sese): Declare.
25551         (dump_edge): Declare.
25552         (dump_sese): Declare.
25554 2016-01-25  Aditya Kumar  <aditya.k7@samsung.com>
25555             Sebastian Pop  <s.pop@samsung.com>
25557         * Makefile.in: Set ISLVER in site.exp.
25559 2016-01-25  Jakub Jelinek  <jakub@redhat.com>
25561         * omp-low.c (lower_omp_target) <case USE_DEVICE_PTR>: Set
25562         DECL_VALUE_EXPR of new_var even for the non-array case.  Look
25563         through DECL_VALUE_EXPR for expansion.
25565 2016-01-25  Bernd Edlinger  <bernd.edlinger@hotmail.de>
25567         * config/mips/mips.c (mips_compute_frame_info): Skip re-computing
25568         the frame info after reload completed.
25570 2016-01-25  Jeff Law  <law@redhat.com>
25572         PR tree-optimization/69196
25573         PR tree-optimization/68398
25574         * tree-ssa-threadupdate.h (enum bb_dom_status): Moved here from
25575         tree-ssa-threadupdate.c.
25576         (determine_bb_domination_status): Prototype
25577         * tree-ssa-threadupdate.c (enum bb_dom_status): Remove
25578         (determine_bb_domination_status): No longer static.
25579         (valid_jump_thread_path): Remove code to detect characteristics
25580         of the jump thread path not associated with correctness.
25581         * tree-ssa-threadbackward.c (fsm_find_control_statment_thread_paths):
25582         Correct test for thread path length.  Count PHIs for real operands as
25583         statements that need to be copied.  Do not count ASSERT_EXPRs.
25584         Look at all the blocks in the thread path.  Compute and selectively
25585         filter thread paths based on threading through the latch, threading
25586         a multiway branch or crossing a multiway branch.
25588 2016-01-25  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
25590         * config/rs6000/rs6000.c (rs6000_keep_leaf_when_profiled):  Add
25591         decl with __attribute__ ((unused)) annotation.
25593 2016-01-25  Ilya Enkovich  <enkovich.gnu@gmail.com>
25595         PR target/69421
25596         * tree-vect-stmts.c (vectorizable_condition): Check vectype
25597         of operands is compatible with a statement vectype.
25599 2016-01-25  Eric Botcazou  <ebotcazou@adacore.com>
25601         * doc/extend.texi (scalar_storage_order type attribute): Fix typo and
25602         improve wording for mixed storage order support.
25604 2016-01-25  Bilyan Borisov  <bilyan.borisov@arm.com>
25606         * config/aarch64/arm_neon.h (vcvt_s64_f64): New intrinsic.
25607         (vcvt_u64_f64): Likewise.
25608         (vcvta_s64_f64): Likewise.
25609         (vcvta_u64_f64): Likewise.
25610         (vcvtm_s64_f64): Likewise.
25611         (vcvtm_u64_f64): Likewise.
25612         (vcvtn_s64_f64): Likewise.
25613         (vcvtn_u64_f64): Likewise.
25614         (vcvtp_s64_f64): Likewise.
25615         (vcvtp_u64_f64): Likewise.
25617 2016-01-25  Claudiu Zissulescu  <claziss@synopsys.com>
25619         * config/arc/arc.c (TARGET_DWARF_REGISTER_SPAN): Define.
25620         (arc_init): Check validity mll64 option.
25621         (arc_save_restore): Use double load/store instruction.
25622         (arc_expand_movmem): Likewise.
25623         (arc_split_move): Don't split if we have double load/store
25624         instructions. Returns a boolean.
25625         (arc_process_double_reg_moves): Change function to return boolean
25626         instead of a sequence of instructions.
25627         (arc_dwarf_register_span): New function.
25628         * config/arc/arc-protos.h (arc_split_move): Change prototype.
25629         * config/arc/arc.h (TARGET_CPU_CPP_BUILTINS): Define __ARC_LL64__.
25630         * config/arc/arc.md (*movdi_insn): Emit ldd/std instructions.
25631         (*movdf_insn): Likewise.
25632         * config/arc/arc.opt (mll64): New option.
25633         * config/arc/predicates.md (even_register_operand): New predicate.
25634         * doc/invoke.texi (ARC Options): Add mll64 documentation.
25636 2016-01-25  Richard Biener  <rguenther@suse.de>
25638         PR lto/69393
25639         * dwarf2out.c (is_naming_typedef_decl): Not when DECL_NAMELESS.
25640         * tree-streamer-out.c (pack_ts_base_value_fields): Stream
25641         DECL_NAMELESS.
25642         * tree-streamer-in.c (unpack_ts_base_value_fields): Likewise.
25644 2016-01-25  Richard Biener  <rguenther@suse.de>
25646         PR tree-optimization/69376
25647         * tree-ssa-sccvn.h (struct vn_ssa_aux): Add range_info_anti_range_p
25648         flag.
25649         (VN_INFO_ANTI_RANGE_P): New inline.
25650         (VN_INFO_RANGE_TYPE): Likewise.
25651         * tree-ssa-sccvn.c (set_ssa_val_to): Also record and copy
25652         SSA_NAME_ANTI_RANGE_P.
25653         (free_scc_vn): Restore SSA_NAME_ANTI_RANGE_P.
25654         * tree-ssa-pre.c (eliminate_dom_walker::before_dom_children):
25655         Properly query VN_INFO_RANGE_TYPE.
25657 2016-01-25  Nick Clifton  <nickc@redhat.com>
25659         PR target/66655
25660         * config/i386/cygming.h (MAKE_DECL_ONE_ONLY): Remove definition.
25662 2016-01-23  Tom de Vries  <tom@codesourcery.com>
25664         PR tree-optimization/69426
25665         * tree-parloops.c (eliminate_local_variables_stmt): Handle vdef of
25666         removed clobber.
25668 2016-01-23  Jakub Jelinek  <jakub@redhat.com>
25670         * tree-ssanames.c (release_free_names_and_compact_live_names): Replace
25671         "the the" with "the" in the comments.
25672         * ipa-devirt.c (build_type_inheritance_graph,
25673         update_type_inheritance_graph): Likewise.
25674         * tree.c (build_function_type_list_1): Likewise.
25675         * cfgloopmanip.c (scale_loop_profile): Likewise.
25676         * tree-ssa-loop-ivopts.c (get_shiftadd_cost): Likewise.
25677         * gimple-ssa-split-paths.c
25678         (find_block_to_duplicate_for_splitting_paths): Likewise.
25679         * tree-sra.c (init_subtree_with_zero, clobber_subtree): Likewise.
25680         * expr.c (convert_move): Likewise.
25681         * var-tracking.c (vt_stack_adjustments): Likewise.
25682         * tree-vect-data-refs.c (vect_enhance_data_refs_alignment): Likewise.
25683         * tree-vrp.c (test_for_singularity): Likewise.
25685         * tree-vect-stmts.c (vectorizable_condition): Build a VEC_COND_EXPR
25686         directly instead of building a temporary tree.
25688         PR bootstrap/69434
25689         * genrecog.c: Define INCLUDE_ALGORITHM before including system.h,
25690         remove <algorithm> include.
25692 2016-01-22  Jakub Jelinek  <jakub@redhat.com>
25694         PR target/69432
25695         * config/i386/i386.c: Include dojump.h.
25696         (expand_small_movmem_or_setmem,
25697         expand_set_or_movmem_prologue_epilogue_by_misaligned_moves): Spelling
25698         fixes.
25699         (ix86_expand_set_or_movmem): Call do_pending_stack_adjust () early
25700         if dynamic_check != -1.
25702 2016-01-21  Jeff Law  <law@redhat.com>
25704         PR middle-end/69347
25705         * tree-ssa-dom.c (back_propagate_equivalences): Factored out of
25706         record_temporary_equivalences.  Rewritten to avoid unnecessary calls
25707         into dominated_by_p.
25708         (cprop_into_successor_phis): Avoid unnecessary tests.
25710 2016-01-22  Richard Henderson  <rth@redhat.com>
25712         PR target/69416
25713         * config/aarch64/aarch64.md (UNSPEC_NZCV): New.
25714         (ccmp<mode>, fccmp<mode>, fccmpe<mode>): Use it.
25716 2016-01-22  Michael Matz  <matz@suse.de>
25718         * system.h (string, algorithm): Include only conditionally.
25719         (new): Include always under C++.
25720         * bb-reorder.c (toplevel): Define INCLUDE_ALGORITHM.
25721         * final.c (toplevel): Ditto.
25722         * ipa-chkp.c (toplevel): Define INCLUDE_STRING.
25723         * genconditions.c (write_header): Make gencondmd.c define
25724         INCLUDE_STRING.
25725         * mem-stats.h (mem_usage::print_dash_line): Don't use std::string.
25727         * config/aarch64/aarch64.c (toplevel): Define INCLUDE_STRING.
25728         * common/config/aarch64/aarch64-common.c (toplevel): Ditto.
25730 2016-01-22  Christian Bruel  <christian.bruel@st.com>
25732         PR target/68674
25733         * expr.c (expand_expr_real_1): Reset DECL_MODE if VECTOR_TYPE_P changed.
25735 2016-01-22  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
25737         PR target/69403
25738         * config/arm/thumb2.md (*thumb2_ior_scc_strict_it): Convert to
25739         define_insn_and_split.  Ensure operands[1] and operands[0] do not
25740         get assigned the same register.
25742 2016-01-22  Kugan Vivekanandarajah  <kuganv@linaro.org>
25744         * ipa-prop.c (ipa_set_jf_constant): Remove redundant unshare_expr.
25746 2016-01-22  Christian Bruel  <christian.bruel@st.com>
25748         * config/arm/arm-c.c (arm_pragma_target_parse):
25749         Remove warn_builtin_macro_redefined overwrite.
25751 2016-01-22  Eric Botcazou  <ebotcazou@adacore.com>
25753         * ipa-inline.c (can_inline_edge_p): Back out overzealous check on
25754         flag_non_call_exceptions compatibility.
25756 2016-01-22  Jakub Jelinek  <jakub@redhat.com>
25758         PR debug/66668
25759         * dwarf2out.c (add_child_die_after): New function.
25760         (dwarf_qual_info_t): New type.
25761         (dwarf_qual_info): New variable.
25762         (qualified_die_p): New function.
25763         (modified_type_die): For -fdebug-types-section, ensure
25764         canonical order of qualifiers.  Put qualified DIEs adjacent
25765         to the corresponding non-qualified type DIE and search there
25766         for existing qualified DIEs.
25768 2016-01-22  Eric Botcazou  <ebotcazou@adacore.com>
25770         * doc/extend.texi (scalar_storage_order type attribute): Document
25771         restriction on type punning and aliasing, and remove future tense.
25773 2016-01-21  Roman Zhuykov  <zhroma@ispras.ru>
25775         PR target/69252
25776         * modulo-sched.c (optimize_sc): Allow branch-scheduling to add a new
25777         first stage.
25779 2016-01-21  Jeff Law  <law@redhat.com>
25781         PR middle-end/69347
25782         * tree-ssa-dom.c (dom_opt_dom_walker::thread_across_edge): Avoid
25783         useless call to record_temporary_equivalences.
25784         * tree-ssa-threadbackward.c (find_jump_threads_backwards): Just
25785         allocate 10 slots in the bb_path vector and let it grow as needed.
25786         (fsm_find_control_statement_thread_paths): Similarly for the next_path
25787         vector.
25789 2016-01-21  David Edelsohn  <dje.gcc@gmail.com>
25791         * configure.ac (gcc_cv_as_powerpc_mfcrf, gcc_cv_as_machine_directive):
25792         Detangle.
25793         * configure: Regenerate.
25795 2016-01-21  Pat Haugen  <pthaugen@us.ibm.com>
25797         * config/rs6000/aix71.h (ASM_CPU_SPEC): Add entry for Power9.
25798         * config/rs6000/driver-rs6000.c (struct asm_names): Likewise.
25800 2016-01-21  Bernd Schmidt  <bschmidt@redhat.com>
25802         PR middle-end/66178
25803         * expr.c (expand_expr_real_2) [PLUS_EXPR, MINUS_EXPR]: Don't
25804         drop EXPAND_INITIALIZER.
25805         * rtl.h (contains_symbolic_reference_p): Declare.
25806         * rtlanal.c (contains_symbolic_reference_p): New function.
25807         * simplify-rtx.c (simplify_binary_operation_1): Don't turn
25808         a subtraction into a NOT if symbolic constants are involved.
25810 2016-01-21  Anton Blanchard  <anton@samba.org>
25811             Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
25813         PR target/63354
25814         * config/rs6000/linux64.h (TARGET_KEEP_LEAF_WHEN_PROFILED): New
25815         #define.
25816         * config/rs6000/rs6000.c (rs6000_keep_leaf_when_profiled): New
25817         function.
25819 2016-01-21  Ajit Agarwal  <ajitkum@xilinx.com>
25821         * config/microblaze/microblaze.c
25822         (get_branch_target): New.
25823         (insert_wic_for_ilb_runout): New.
25824         (insert_wic): New.
25825         (microblaze_machine_dependent_reorg): New.
25826         (TARGET_MACHINE_DEPENDENT_REORG): Define macro.
25827         * config/microblaze/microblaze.md
25828         (UNSPEC_IPREFETCH): Define.
25829         (iprefetch): New pattern
25830         * config/microblaze/microblaze.opt
25831         (mxl-prefetch): New flag.
25833 2016-01-21  Ajit Agarwal  <ajitkum@xilinx.com>
25835         * config/microblaze/microblaze.h
25836         (FIXED_REGISTERS): Update in macro.
25837         (CALL_USED_REGISTERS): Update in macro.
25839 2016-01-21  Yuri Rumyantsev  <ysrumyan@gmail.com>
25841         PR rtl-optimization/68920
25842         * ifcvt.c (cond_move_process_if_block): Limit number of conditional
25843         moves.
25845 2016-01-21  Vladimir Makarov  <vmakarov@redhat.com>
25847         PR rtl-optimization/68990
25848         * lra-coalesce.c (lra_coalesce): Invalidate value for the result
25849         pseudo instead of inheritance ones.
25851 2016-01-21  Bernd Edlinger  <bernd.edlinger@hotmail.de>
25852             Nick Clifton  <nickc@redhat.com>
25854         PR target/69129
25855         PR target/69012
25856         * config/mips/mips.c (mips_compute_frame_info): Initialise
25857         args_size and hard_frame_pointer_offset fields of the frame
25858         structure before calling mips_global_pointer.
25860 2016-01-21  David Edelsohn  <dje.gcc@gmail.com>
25862         * configure.ac (gcc_cv_as_dwloc): Test support for debug frame section
25863         label reference.
25864         * configure: Regenerate.
25866 2016-01-21  Richard Biener  <rguenther@suse.de>
25868         * graphite-optimize-isl.c (get_schedule_map): Fix typo.
25870 2016-01-21  Marcin Kościelnicki  <koriakin@0x04.net>
25872         * config/s390/s390.c (s390_asm_declare_function_size): Add code
25873         to actually emit the .size directive.
25875 2016-01-21   Stefan Sørensen  <stefan.sorensen@spectralink.com>
25876              Jakub Jelinek  <jakub@redhat.com>
25878         PR target/69187
25879         PR target/65624
25880         * config/arm/arm-builtins.c (arm_expand_neon_builtin): Increase
25881         args array size by one to avoid buffer overflow.
25883 2016-01-21  Marcin Kościelnicki  <koriakin@0x04.net>
25885         * config/s390/s390.md (pool_section_start): Use switch_to_section
25886         to select proper read-only data section instead of hardcoding
25887         .rodata.
25888         (pool_section_end): Use switch_to_section to match the above.
25890 2016-01-21  Richard Biener  <rguenther@suse.de>
25892         PR tree-optimization/69378
25893         * tree-ssa-sccvn.c (dominated_by_p_w_unex): New function.
25894         (set_ssa_val_to): Use it for dominance checks taking into
25895         account not executable edges.
25897 2016-01-21  Jakub Jelinek  <jakub@redhat.com>
25899         PR c++/69355
25900         * tree-dfa.c (get_ref_base_and_extent): Use GET_MODE_BITSIZE (mode)
25901         for bitsize instead of GET_MODE_PRECISION (mode).
25903 2016-01-20  Martin Sebor  <msebor@redhat.com>
25905         PR c/52291
25906         * extend.texi (__sync Builtins): Clarify the semantics of
25907         __sync_fetch_and_OP built-ins on pointers.
25908         (__atomic Builtins): Same.
25910 2016-01-21  Aditya Kumar  <aditya.k7@samsung.com>
25911             Sebastian Pop  <s.pop@samsung.com>
25913         * graphite-isl-ast-to-gimple.c (enum phi_node_kind): New.
25914         (class translate_isl_ast_to_gimple): Use phi_node_kind instead of bool.
25915         (is_valid_rename): Same.
25916         (translate_isl_ast_to_gimple::get_rename): Same.
25917         (translate_isl_ast_to_gimple::rename_all_uses): Same.
25918         (translate_isl_ast_to_gimple::rename_uses): Same.
25919         (get_new_name): Check for close_phi nodes.
25920         (copy_loop_phi_args): Use phi_node_kind.
25921         (translate_isl_ast_to_gimple::copy_loop_close_phi_args): Same.
25922         (translate_isl_ast_to_gimple::copy_cond_phi_args): Same.
25924 2016-01-21  Aditya Kumar  <aditya.k7@samsung.com>
25925             Sebastian Pop  <s.pop@samsung.com>
25927         Revert commit r229783.
25928         * graphite-isl-ast-to-gimple.c (gcc_expression_from_isl_ast_expr_id):
25929         Remove use of parameter_rename_map.
25930         (copy_def): Remove.
25931         (copy_internal_parameters): Remove.
25932         (graphite_regenerate_ast_isl): Remove call to copy_internal_parameters.
25933         * sese.c (new_sese_info): Do not initialize parameter_rename_map.
25934         (free_sese_info): Do not free parameter_rename_map.
25935         (set_rename): Do not use parameter_rename_map.
25936         (rename_uses): Update call to set_rename.
25937         (graphite_copy_stmts_from_block): Do not use parameter_rename_map.
25938         * sese.h (parameter_rename_map_t): Remove.
25939         (struct sese_info_t): Remove field parameter_rename_map.
25941 2016-01-21  Aditya Kumar  <aditya.k7@samsung.com>
25942             Sebastian Pop  <s.pop@samsung.com>
25944         * graphite-isl-ast-to-gimple.c: Fix comment.
25945         * graphite-scop-detection.c (defined_in_loop_p): New.
25946         (canonicalize_loop_closed_ssa): Do not add close phi nodes for SSA
25947         names defined in loop.
25949 2016-01-21  Aditya Kumar  <aditya.k7@samsung.com>
25950             Sebastian Pop  <s.pop@samsung.com>
25952         * graphite-scop-detection.c (scop_detection::harmful_loop_in_region):
25953         Discard unstructured if-then-else regions.
25955 2016-01-21  Aditya Kumar  <aditya.k7@samsung.com>
25956             Sebastian Pop  <s.pop@samsung.com>
25958         * graphite-sese-to-poly.c (set_scop_parameter_dim): Remove.
25959         (cleanup_loop_iter_dom): Remove.
25960         (build_loop_iteration_domains): Remove.
25961         (build_scop_context): Remove.
25962         (build_scop_iteration_domain): Remove.
25963         (add_loop_constraints): New.
25964         (build_iteration_domains): New.
25965         (build_poly_scop): Call build_iteration_domains.
25967 2016-01-21  Aditya Kumar  <aditya.k7@samsung.com>
25968             Sebastian Pop  <s.pop@samsung.com>
25970         * graphite-scop-detection.c
25971         (scop_detection::harmful_loop_in_region): Free dom and loops.
25972         (scop_detection::loop_body_is_valid_scop): Free bbs.
25974 2016-01-21  Aditya Kumar  <aditya.k7@samsung.com>
25975             Sebastian Pop  <s.pop@samsung.com>
25977         * graphite-scop-detection.c (record_loop_in_sese): New.
25978         (gather_bbs::before_dom_children): Call record_loop_in_sese.
25979         (build_scops): Remove call to build_sese_loop_nests.
25980         * sese.c (sese_record_loop): Remove.
25981         (build_sese_loop_nests): Remove.
25982         (new_sese_info): Remove region->loops.
25983         (free_sese_info): Same.
25984         * sese.h (sese_contains_loop): Same.
25985         (build_sese_loop_nests): Remove.
25986         (sese_contains_loop): Remove.
25988 2016-01-21  Aditya Kumar  <aditya.k7@samsung.com>
25989             Sebastian Pop  <s.pop@samsung.com>
25991         * graphite-scop-detection.c (loop_is_valid_scop): Renamed
25992         loop_is_valid_in_scop.
25993         (scop_detection::harmful_stmt_in_region): Renamed
25994         harmful_loop_in_region.
25995         Call loop_is_valid_in_scop.
25997 2016-01-21  Aditya Kumar  <aditya.k7@samsung.com>
25998             Sebastian Pop  <s.pop@samsung.com>
26000         * graphite-isl-ast-to-gimple.c (translate_isl_ast): Also handle
26001         isl_ast_node_mark.
26003 2016-01-21  Aditya Kumar  <aditya.k7@samsung.com>
26004             Sebastian Pop  <s.pop@samsung.com>
26006         * graphite-poly.c (new_poly_bb): Remove use of PBB_IS_REDUCTION.
26007         * graphite.h (struct poly_bb): Remove field is_reduction.
26008         (PBB_IS_REDUCTION): Remove.
26010 2016-01-21  Aditya Kumar  <aditya.k7@samsung.com>
26011             Sebastian Pop  <s.pop@samsung.com>
26013         * graphite-dependences.c (constrain_domain): Add call to isl_*_coalesce.
26014         (add_pdr_constraints): Same.
26015         (scop_get_reads): Same.
26016         (scop_get_must_writes): Same.
26017         (scop_get_may_writes): Same.
26018         (scop_get_original_schedule): Same.
26019         (extend_schedule): Same.
26020         (apply_schedule_on_deps): Same.
26021         (carries_deps): Same.
26022         (compute_deps): Same.
26023         (scop_get_dependences): Same.
26024         * graphite-isl-ast-to-gimple.c
26025         (translate_isl_ast_to_gimple::generate_isl_schedule): Same.
26026         * graphite-optimize-isl.c (get_schedule_for_band): Same.
26027         (get_schedule_for_band_list): Same.
26028         (get_schedule_map): Same.
26029         (apply_schedule_map_to_scop): Same.
26030         * graphite-sese-to-poly.c (build_pbb_scattering_polyhedrons): Same.
26031         (build_loop_iteration_domains): Same.
26032         (add_condition_to_pbb): Same.
26033         (add_param_constraints): Same.
26034         (pdr_add_memory_accesses): Same.
26035         (pdr_add_data_dimensions): Same.
26037 2016-01-20  Sandra Loosemore  <sandra@codesourcery.com>
26039         * doc/invoke.texi (Instrumentation Options): Clarify -mmpx linking
26040         requirements.
26042 2016-01-20  Sandra Loosemore  <sandra@codesourcery.com>
26044         * common.opt (feliminate-dwarf2-dups): Replace references to
26045         "DWARF 2" with just "DWARF".
26046         * config/ia64/ia64.opt (mdwarf2-asm): Likewise.
26047         * doc/extend.texi: Likewise.
26048         * doc/cpp.texi: Likewise.
26049         * doc/invoke.texi: Likewise.
26050         (Option Summary): Add -gdwarf to list of Debugging Options.
26051         (Debugging Options): Document -gdwarf.
26052         * doc/contrib.texi: Spell "DWARF" like that.
26054 2016-01-21  Jakub Jelinek  <jakub@redhat.com>
26056         * omp-low.c (expand_omp_target): Avoid -Wmaybe-uninitialized
26057         warning.  Fix up formatting.
26059         PR middle-end/67653
26060         * gimplify.c (gimplify_asm_expr): Warn if it is too late to
26061         attempt to mark memory input operand addressable and
26062         call prepare_gimple_addressable in that case.  Don't adjust
26063         input_location for diagnostics, use error_at instead.
26065 2016-01-20  Peter Bergner  <bergner@vnet.ibm.com>
26067         * config/rs6000/ppc-auxv.h: New file.
26068         * config/rs6000/rs6000-builtin.def (cpu_init): Add new builtin.
26069         (cpu_is): Likewise.
26070         (cpu_supports): Likewise.
26071         * config/rs6000/rs6000.c: include "ppc-auxv.h".
26072         (cpu_is_info): New variable.
26073         (cpu_supports_info): Likewise.
26074         (tcb_verification_symbol): Likewise.
26075         (cpu_builtin_p): Likewise.
26076         (cpu_expand_builtin): New function.
26077         (rs6000_expand_ternop_builtin): Add support for CPU builtin functions.
26078         (rs6000_init_builtins): Likewise.
26079         (rs6000_elf_file_end): Emit HWCAP in TCB verification symbol.
26080         * config/rs6000/rs6000.h (TLS_REGNUM): New define.
26081         * configure.ac (gcc_cv_libc_provides_hwcap_in_tcb): New test.
26082         * configure: Regenerate.
26083         * config.in: Likewise.
26084         * doc/extend.texi (PowerPC Built-in Functions): Document
26085         __builtin_cpu_init, __builtin_cpu_is and __builtin_cpu_supports.
26087 2016-01-20  David Edelsohn  <dje.gcc@gmail.com>
26089         PR target/68609
26090         * config/rs6000/rs6000.c (rs6000_emit_swsqrt): Add vector sqrt
26091         domain check.
26092         * config/rs6000/vector.md (sqrt<mode>2): Call rs6000_emit_swsqrt
26093         for V4SFmode.
26095 2016-01-20  Richard Henderson  <rth@redhat.com>
26097         PR bootstrap/69343
26098         PR bootstrap/69339
26099         PR tree-opt/68964
26100         Revert:
26101         * tree.c (tm_define_builtin): New.
26102         (find_tm_vector_type): New.
26103         (build_tm_vector_builtins): New.
26104         (build_common_builtin_nodes): Call it.
26106 2016-01-20  Christophe Lyon  <christophe.lyon@linaro.org>
26108         * doc/sourcebuild.texi (arm_crypto_pragma_ok): Document new entry.
26109         (arm_fp_ok): Likewise.
26110         (arm_fp): Likewise.
26111         (arm_crypto): Likewise.
26113 2016-01-20  Ilya Enkovich  <enkovich.gnu@gmail.com>
26114             Richard Biener  <rguenther@suse.de>
26116         PR tree-optimization/69328
26117         * tree-vect-stmts.c (vect_is_simple_cond): Check compared
26118         vectors have same number of elements.
26119         (vectorizable_condition): Fix masked version recognition.
26121 2016-01-20  Richard Biener  <rguenther@suse.de>
26123         PR tree-optimization/69345
26124         * tree-ssa-sccvn.h (VN_INFO_RANGE_INFO): New inline function.
26125         (VN_INFO_PTR_INFO): Likewise.
26126         * tree-ssa-sccvn.c (set_ssa_val_to): Avoid clearing points-to
26127         info when it is equal between non-dominating SSA names.
26128         * tree-ssa-pre.c (eliminate_dom_walker::before_dom_children):
26129         Make sure to look at original SSA infos.
26131 2016-01-20  Jeff Law  <law@redhat.com>
26133         PR target/25114
26134         * config/m68k/predicates.md (pow2_m1_operand): New predicate
26135         extracted from ...
26136         (reg_or_pow2_m1_operand): Call pow2_m1_operand.
26137         (pc_or_label_operand): New predicate.
26138         * config/m68k/m68k.md: Add new peephole2 patterns for GTU/LEU
26139         tests for small integers that are 2^n - 1.
26141 2016-01-20  Jonathan Wakely  <jwakely@redhat.com>
26143         * doc/invoke.texi (Options Summary): Add '.' after @xref.
26145 2016-01-19  Jeff Law  <law@redhat.com>
26147         PR middle-end/69347
26148         * tree-ssa-threadbackwards.c
26149         (fsm_find_control_statement_thread_paths): Do not try to lookup
26150         FSM paths for SSA_NAMEs appearing in abnormal PHIs.
26152 2016-01-20  Kugan Vivekanandarajah  <kuganv@linaro.org>
26154         * doc/lto.texi: Remove text that says only Gold has linker plugin
26155         support.
26157 2016-01-19  Eric Botcazou  <ebotcazou@adacore.com>
26159         * dwarf2out.c (need_endianity_attribute_p): New inline predicate.
26160         (base_type_die): Add REVERSE parameter and attach DW_AT_endianity to
26161         the DIE accordingly.
26162         (modified_type_die): Add REVERSE parameter and pass it recursively,
26163         as well as to base_type_die.  Adjust presence check accordingly.
26164         (base_type_for_mode): Adjust call to modified_type_die.
26165         (add_type_attribute): Add REVERSE parameter and pass it to
26166         modified_type_die.
26167         (generic_parameter_die): Adjust call to add_type_attribute.
26168         (add_scalar_info): Likewise.
26169         (add_subscript_info): Likewise.
26170         (gen_array_type_die): Likewise.
26171         (gen_descr_array_type_die): Likewise.
26172         (gen_entry_point_die): Likewise.
26173         (gen_enumeration_type_die): Likewise.
26174         (gen_formal_parameter_die): Likewise.
26175         (gen_subprogram_die): Likewise.
26176         (gen_variable_die ): Likewise.
26177         (gen_const_die): Likewise.
26178         (gen_field_die): Likewise.
26179         (gen_pointer_type_die): Likewise.
26180         (gen_reference_type_die): Likewise.
26181         (gen_ptr_to_mbr_type_die): Likewise.
26182         (gen_inheritance_die): Likewise.
26183         (gen_subroutine_type_die): Likewise.
26184         (gen_typedef_die): Likewise.
26185         (force_type_die): Adjust call to modified_type_die.
26187 2016-01-19  Sandra Loosemore  <sandra@codesourcery.com>
26189         * doc/standards.texi: Copy-editing for grammar, markup, and sentence
26190         flow throughout the file.  Fix broken link to Objective-C 2.0
26191         documentation.
26192         * doc/invoke.texi: More copy-editing; fix numerous typos and spelling
26193         errors.
26195 2016-01-19  Wilco Dijkstra  <wdijkstr@arm.com>
26197         * ccmp.c (expand_ccmp_expr_1): Avoid spurious unused warnings.
26199 2016-01-19  Jan Hubicka  <hubicka@ucw.cz>
26201         PR ipa/66223
26202         * ipa-devirt.c (is_cxa_pure_virtual_p): New function.
26203         (maybe_record_node): Record cxa_pure_virtual as the only possible
26204         target if there are not ohter candidates.
26205         (possible_polymorphic_call_target_p): Accept cxa_pure_virtual.
26207 2016-01-19  Richard Biener  <rguenther@suse.de>
26209         * hsa-gen.c (get_memory_order_name): Use MEMMODEL_ constants.
26210         (get_memory_order): Likewise.
26212 2016-01-19  Kirill Yukhin  <kirill.yukhin@intel.com>
26214         * tree-vect-stmts.c (vectorizable_store): Check
26215         rhs vectype.
26217 2016-01-19  David Malcolm  <dmalcolm@redhat.com>
26219         PR jit/68446
26220         * gcc.c (driver::decode_argv): Add call to
26221         init_opts_obstack before init_options_struct.
26222         * opts.c (init_opts_obstack): Remove idempotency.
26223         (init_options_struct): Replace call to init_opts_obstack
26224         with a gcc_assert to verify that it has already been called.
26225         * toplev.c (toplev::main): Add call to init_opts_obstack before
26226         calls to init_options_struct.
26227         (toplev::finalize): Move cleanup of opts_obstack next to
26228         cleanup of save_decoded_options, clearing the latter, and
26229         save_decoded_options_count.
26231 2016-01-19  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
26233         PR target/69135
26234         * config/arm/vfp.md (l<vrint_pattern><su_optab><mode>si2): Set "conds"
26235         attribute to unconditional.  Remove %? from output template.
26237 2015-01-19  Wilco Dijkstra  <wdijkstr@arm.com>
26238             Jiong Wang  <jiong.wang@arm.com>
26240         * ccmp.c (expand_ccmp_expr_1): Cost the instruction sequences
26241         generated from different expand order.
26243 2015-01-19  Wilco Dijkstra  <wdijkstr@arm.com>
26245         * /config/aarch64/aarch64.c (aarch64_if_then_else_costs):
26246         Add support for CCMP costing.
26248 2015-01-19  Wilco Dijkstra  <wdijkstr@arm.com>
26250         * ccmp.c (ccmp_candidate_p): Remove integer-only restriction.
26251         * config/aarch64/aarch64.md (fccmp<mode>): New pattern.
26252         (fccmpe<mode>): Likewise.
26253         (fcmp): Rename to fcmp and globalize pattern.
26254         (fcmpe): Likewise.
26255         * config/aarch64/aarch64.c (aarch64_gen_ccmp_first): Add FP support.
26256         (aarch64_gen_ccmp_next): Add FP support.
26258 2015-01-19  Wilco Dijkstra  <wdijkstr@arm.com>
26260         * target.def (gen_ccmp_first): Update documentation.
26261         (gen_ccmp_next): Likewise.
26262         * doc/tm.texi (gen_ccmp_first): Update documentation.
26263         (gen_ccmp_next): Likewise.
26264         * ccmp.c (expand_ccmp_expr): Extract cmp_code from return value of
26265         expand_ccmp_expr_1.  Improve comments.
26266         * config/aarch64/aarch64.md (ccmp_and): Use if_then_else for ccmp.
26267         (ccmp_ior<mode>): Remove pattern.
26268         (cmp<mode>): Remove expand.
26269         (cmp): Globalize pattern.
26270         (cstorecc4): Use cc_register.
26271         (mov<mode>cc): Remove ccmp_cc_register check.
26272         * config/aarch64/aarch64.c (aarch64_get_condition_code_1):
26273         Simplify after removal of CC_DNE/* modes.
26274         (aarch64_ccmp_mode_to_code): Remove.
26275         (aarch64_print_operand): Remove 'K' case.  Merge 'm' and 'M' cases.
26276         In 'k' case use integer as condition.
26277         (aarch64_nzcv_codes): Remove inverted cases.
26278         (aarch64_code_to_ccmode): Remove.
26279         (aarch64_gen_ccmp_first): Use cmp pattern directly.  Return the correct
26280         comparison with CC register to be used in folowing CCMP/branch/CSEL.
26281         (aarch64_gen_ccmp_next): Use previous comparison and mode in CCMP
26282         pattern.  Return the comparison with CC register.  Invert conditions
26283         when bitcode is OR.
26284         * config/aarch64/aarch64-modes.def: Remove CC_DNE/* modes.
26285         * config/aarch64/predicates.md (ccmp_cc_register): Remove.
26287 2016-01-19  Jan Hubicka  <hubicka@ucw.cz>
26289         * cgraphunit.c (cgraph_node::reset): Clear thunk info and
26290         instrumented_version.
26292 2016-01-19  Richard Biener  <rguenther@suse.de>
26294         PR tree-optimization/69336
26295         * tree-ssa-scopedtables.c (avail_expr_hash): Handle all
26296         handled components with get_ref_base_and_extent.
26297         (equal_mem_array_ref_p): Adjust.
26299 2016-01-19  Jakub Jelinek  <jakub@redhat.com>
26301         PR debug/65779
26302         * shrink-wrap.c: Include valtrack.h.
26303         (move_insn_for_shrink_wrap): Add DEBUG argument.  If
26304         MAY_HAVE_DEBUG_INSNS, call dead_debug_add on DEBUG_INSNs
26305         in between insn and where it will be moved to.  Call
26306         dead_debug_insert_temp.
26307         (prepare_shrink_wrap): Adjust caller.  Call dead_debug_local_init
26308         first and dead_debug_local_finish at the end.
26309         For uses and defs bitmap, handle all regs in between REGNO and
26310         END_REGNO, not just the first one.
26312 2016-01-19  Richard Biener  <rguenther@suse.de>
26314         PR tree-optimization/69352
26315         * tree-ssa-scopedtables.c (avail_expr_hash): Check for size == -1.
26316         (equal_mem_array_ref_p): Constrain size and max size properly.
26317         Compare the reverse flag.
26319 2016-01-19  Bernd Schmidt  <bschmidt@redhat.com>
26321         * ira.c (ira): Update regstat data if we deleted insns.
26323 2016-01-19  Jakub Jelinek  <jakub@redhat.com>
26325         PR rtl-optimization/68955
26326         PR rtl-optimization/64557
26327         * dse.c (record_store, check_mem_read_rtx): Don't call get_addr
26328         here.  Fix up formatting.
26329         * alias.c (get_addr): Handle VALUE +/- CONST_SCALAR_INT_P.
26331 2016-01-19  Jan Hubicka  <hubicka@ucw.cz>
26333         PR lto/69133
26334         * cgraphunit.c (cgraph_node::expand_thunk): When forcing gimple
26335         assume that the node has body.
26336         * cgraph.c (cgraph_node::get_untransformed_body): Use gimple_body_p
26337         check.
26339 2016-01-19  Jan Hubicka  <hubicka@ucw.cz>
26341         * lto-streamer-out.c (lto_output): Do not stream instrumentation
26342         thunks.
26344 2016-01-19  Jan Hubicka  <hubicka@ucw.cz>
26346         * symtab.c (symtab_node::asm_name): Do not call printable name directly.
26347         (symtab_node::name): Report name as unnamed if DECL_NAME is not set.
26349 2016-01-19  Martin Jambor  <mjambor@suse.cz>
26350             Martin Liska  <mliska@suse.cz>
26351             Michael Matz  <matz@suse.de>
26353         * Makefile.in (OBJS): Add new source files.
26354         (GTFILES): Add hsa.c.
26355         * common.opt (disable_hsa): New variable.
26356         (-Whsa): New warning.
26357         * config.in (ENABLE_HSA): New.
26358         * configure.ac: Treat hsa differently from other accelerators.
26359         (OFFLOAD_TARGETS): Define ENABLE_OFFLOADING according to
26360         $enable_offloading.
26361         (ENABLE_HSA): Define ENABLE_HSA according to $enable_hsa.
26362         * doc/install.texi (Configuration): Document --with-hsa-runtime,
26363         --with-hsa-runtime-include, --with-hsa-runtime-lib and
26364         --with-hsa-kmt-lib.
26365         * doc/invoke.texi (-Whsa): Document.
26366         (hsa-gen-debug-stores): Likewise.
26367         * lto-wrapper.c (compile_images_for_offload_targets): Do not attempt
26368         to invoke offload compiler for hsa acclerator.
26369         * opts.c (common_handle_option): Determine whether HSA offloading
26370         should be performed.
26371         * params.def (PARAM_HSA_GEN_DEBUG_STORES): New parameter.
26372         * builtin-types.def (BT_FN_VOID_UINT_PTR_INT_PTR): New.
26373         (BT_FN_VOID_INT_OMPFN_SIZE_PTR_PTR_PTR_UINT_PTR_INT_INT): Removed.
26374         (BT_FN_VOID_INT_OMPFN_SIZE_PTR_PTR_PTR_UINT_PTR_PTR): New.
26375         * gimple-low.c (lower_stmt): Also handle GIMPLE_OMP_GRID_BODY.
26376         * gimple-pretty-print.c (dump_gimple_omp_for): Also handle
26377         GF_OMP_FOR_KIND_GRID_LOOP.
26378         (dump_gimple_omp_block): Also handle GIMPLE_OMP_GRID_BODY.
26379         (pp_gimple_stmt_1): Likewise.
26380         * gimple-walk.c (walk_gimple_stmt): Likewise.
26381         * gimple.c (gimple_build_omp_grid_body): New function.
26382         (gimple_copy): Also handle GIMPLE_OMP_GRID_BODY.
26383         * gimple.def (GIMPLE_OMP_GRID_BODY): New.
26384         * gimple.h (enum gf_mask): Added GF_OMP_PARALLEL_GRID_PHONY,
26385         GF_OMP_FOR_KIND_GRID_LOOP, GF_OMP_FOR_GRID_PHONY and
26386         GF_OMP_TEAMS_GRID_PHONY.
26387         (gimple_statement_omp_single_layout): Updated comments.
26388         (gimple_build_omp_grid_body): New function.
26389         (gimple_has_substatements): Also handle GIMPLE_OMP_GRID_BODY.
26390         (gimple_omp_for_grid_phony): New function.
26391         (gimple_omp_for_set_grid_phony): Likewise.
26392         (gimple_omp_parallel_grid_phony): Likewise.
26393         (gimple_omp_parallel_set_grid_phony): Likewise.
26394         (gimple_omp_teams_grid_phony): Likewise.
26395         (gimple_omp_teams_set_grid_phony): Likewise.
26396         (gimple_return_set_retbnd): Also handle GIMPLE_OMP_GRID_BODY.
26397         * omp-builtins.def (BUILT_IN_GOMP_OFFLOAD_REGISTER): New.
26398         (BUILT_IN_GOMP_OFFLOAD_UNREGISTER): Likewise.
26399         (BUILT_IN_GOMP_TARGET): Updated type.
26400         * omp-low.c: Include symbol-summary.h, hsa.h and params.h.
26401         (adjust_for_condition): New function.
26402         (get_omp_for_step_from_incr): Likewise.
26403         (extract_omp_for_data): Moved parts to adjust_for_condition and
26404         get_omp_for_step_from_incr.
26405         (build_outer_var_ref): Handle GIMPLE_OMP_GRID_BODY.
26406         (fixup_child_record_type): Bail out if receiver_decl is NULL.
26407         (scan_sharing_clauses): Handle OMP_CLAUSE__GRIDDIM_.
26408         (scan_omp_parallel): Do not create child functions for phony
26409         constructs.
26410         (check_omp_nesting_restrictions): Handle GIMPLE_OMP_GRID_BODY.
26411         (scan_omp_1_op): Checking assert we are not remapping to
26412         ERROR_MARK.  Also also handle GIMPLE_OMP_GRID_BODY.
26413         (parallel_needs_hsa_kernel_p): New function.
26414         (expand_parallel_call): Register apprpriate parallel child
26415         functions as HSA kernels.
26416         (grid_launch_attributes_trees): New type.
26417         (grid_attr_trees): New variable.
26418         (grid_create_kernel_launch_attr_types): New function.
26419         (grid_insert_store_range_dim): Likewise.
26420         (grid_get_kernel_launch_attributes): Likewise.
26421         (get_target_argument_identifier_1): Likewise.
26422         (get_target_argument_identifier): Likewise.
26423         (get_target_argument_value): Likewise.
26424         (push_target_argument_according_to_value): Likewise.
26425         (get_target_arguments): Likewise.
26426         (expand_omp_target): Call get_target_arguments instead of looking
26427         up for teams and thread limit.
26428         (grid_expand_omp_for_loop): New function.
26429         (grid_arg_decl_map): New type.
26430         (grid_remap_kernel_arg_accesses): New function.
26431         (grid_expand_target_kernel_body): New function.
26432         (expand_omp): Call it.
26433         (lower_omp_for): Do not emit phony constructs.
26434         (lower_omp_taskreg): Do not emit phony constructs but create for them
26435         a temporary variable receiver_decl.
26436         (lower_omp_taskreg): Do not emit phony constructs.
26437         (lower_omp_teams): Likewise.
26438         (lower_omp_grid_body): New function.
26439         (lower_omp_1): Call it.
26440         (grid_reg_assignment_to_local_var_p): New function.
26441         (grid_seq_only_contains_local_assignments): Likewise.
26442         (grid_find_single_omp_among_assignments_1): Likewise.
26443         (grid_find_single_omp_among_assignments): Likewise.
26444         (grid_find_ungridifiable_statement): Likewise.
26445         (grid_target_follows_gridifiable_pattern): Likewise.
26446         (grid_remap_prebody_decls): Likewise.
26447         (grid_copy_leading_local_assignments): Likewise.
26448         (grid_process_kernel_body_copy): Likewise.
26449         (grid_attempt_target_gridification): Likewise.
26450         (grid_gridify_all_targets_stmt): Likewise.
26451         (grid_gridify_all_targets): Likewise.
26452         (execute_lower_omp): Call grid_gridify_all_targets.
26453         (make_gimple_omp_edges): Handle GIMPLE_OMP_GRID_BODY.
26454         * tree-core.h (omp_clause_code): Added OMP_CLAUSE__GRIDDIM_.
26455         (tree_omp_clause): Added union field dimension.
26456         * tree-pretty-print.c (dump_omp_clause): Handle OMP_CLAUSE__GRIDDIM_.
26457         * tree.c (omp_clause_num_ops): Added number of arguments of
26458         OMP_CLAUSE__GRIDDIM_.
26459         (omp_clause_code_name): Added name of OMP_CLAUSE__GRIDDIM_.
26460         (walk_tree_1): Handle OMP_CLAUSE__GRIDDIM_.
26461         * tree.h (OMP_CLAUSE_GRIDDIM_DIMENSION): New.
26462         (OMP_CLAUSE_SET_GRIDDIM_DIMENSION): Likewise.
26463         (OMP_CLAUSE_GRIDDIM_SIZE): Likewise.
26464         (OMP_CLAUSE_GRIDDIM_GROUP): Likewise.
26465         * passes.def: Schedule pass_ipa_hsa and pass_gen_hsail.
26466         * tree-pass.h (make_pass_gen_hsail): Declare.
26467         (make_pass_ipa_hsa): Likewise.
26468         * ipa-hsa.c: New file.
26469         * lto-section-in.c (lto_section_name): Add hsa section name.
26470         * lto-streamer.h (lto_section_type): Add hsa section.
26471         * timevar.def (TV_IPA_HSA): New.
26472         * hsa-brig-format.h: New file.
26473         * hsa-brig.c: New file.
26474         * hsa-dump.c: Likewise.
26475         * hsa-gen.c: Likewise.
26476         * hsa.c: Likewise.
26477         * hsa.h: Likewise.
26478         * toplev.c (compile_file): Call hsa_output_brig.
26479         * hsa-regalloc.c: New file.
26481 2016-01-18  Jeff Law  <law@redhat.com>
26483         PR tree-optimization/69320
26484         * tree-ssa-dom.c (record_edge_info): For comparisons against a boolean
26485         ranged object, do nothing if the RHS constant is not [0..1].
26486         (optimize_stmt): Comparing a boolean ranged object against a
26487         constant outside [0..1] results in a compile-time constant.
26489         * tree-ssanames.c (ssa_name_has_boolean_range): Remove unnecessary
26490         test.
26492 2016-01-18  Sandra Loosemore  <sandra@codesourcery.com>
26494         * doc/invoke.texi (Invoking GCC): Add new section to menu.
26495         (Option Summary): Update to reflect new section and moved options.
26496         (C++ Dialect Options): Move -fstats to new section.
26497         (Debugging Options): Move all dump, statistics, and other GCC
26498         developer options to new section.  Rewrite section introduction
26499         and re-order remaining options to put the more basic ones first.
26500         (Optimization Options): Move -fira-verbose and -flto-report* to
26501         new section.
26502         (Developer Options): New section incorporating moved options.
26503         * doc/cppopts.texi (-dM): Update cross-reference.
26505 2016-01-18  Richard Henderson  <rth@redhat.com>
26507         PR target/69176
26508         * config/aarch64/aarch64.md (add<GPI>3): Move long immediate
26509         operands to pseudo only if CSE is expected.  Split long immediate
26510         operands only after reload, and for the stack pointer.
26511         (*add<GPI>3_pluslong): Remove.
26512         (*addsi3_aarch64, *adddi3_aarch64): Merge into...
26513         (*add<GPI>3_aarch64): ... here.  Add r/rk/Upl alternative.
26514         (*addsi3_aarch64_uxtw): Add r/rk/Upl alternative.
26515         (*add<GPI>3 peepholes): New.
26516         (*add<GPI>3 splitters): New.
26517         * config/aarch64/constraints.md (Upl): New.
26518         * config/aarch64/predicates.md (aarch64_pluslong_strict_immedate): New.
26520 2016-01-18  Richard Biener  <rguenther@suse.de>
26522         PR tree-optimization/69297
26523         * tree-vect-slp.c (vect_bb_slp_scalar_cost): Count each scalar
26524         stmt at most once.
26525         (vect_bb_vectorization_profitable_p): Clear visited flag again.
26527 2016-01-18  Yuri Rumyantsev  <ysrumyan@gmail.com>
26529         PR middle-end/68542
26530         * fold-const.c (fold_binary_op_with_conditional_arg): Bail out for case
26531         of mixind vector and scalar types.
26532         (fold_relational_const): Add handling of vector
26533         comparison with boolean result.
26534         * tree-cfg.c (verify_gimple_comparison): Add argument CODE, allow
26535         comparison of vector operands with boolean result for EQ/NE only.
26536         (verify_gimple_assign_binary): Adjust call for verify_gimple_comparison.
26537         (verify_gimple_cond): Likewise.
26538         * tree-vrp.c (extract_code_and_val_from_cond_with_ops): Modify check on
26539         valid type of VAL.
26541 2016-01-18  Joseph Myers  <joseph@codesourcery.com>
26543         * config/mips/mips.h (ISA_HAS_PAIRED_SINGLE): Require
26544         !TARGET_OCTEON.
26546 2016-01-18  Richard Biener  <rguenther@suse.de>
26548         PR middle-end/69308
26549         * gimple.c (gimple_could_trap_p_1): Handle GIMPLE_COND.
26551 2016-01-18  Tom de Vries  <tom@codesourcery.com>
26553         * passes.def: Add pass_parallelize_loops to pass_oacc_kernels.
26555 2016-01-18  Tom de Vries  <tom@codesourcery.com>
26557         * omp-low.c (set_oacc_fn_attrib): Make extern.
26558         * omp-low.h (set_oacc_fn_attrib): Declare.
26559         * tree-parloops.c (struct reduction_info): Add reduc_addr field.
26560         (create_call_for_reduction_1): Handle case that reduc_addr is non-NULL.
26561         (create_parallel_loop, gen_parallel_loop, try_create_reduction_list):
26562         Add and handle function parameter oacc_kernels_p.
26563         (find_reduc_addr, get_omp_data_i_param): New function.
26564         (ref_conflicts_with_region, oacc_entry_exit_ok_1)
26565         (oacc_entry_exit_single_gang, oacc_entry_exit_ok): New function.
26566         (parallelize_loops): Add and handle function parameter oacc_kernels_p.
26567         Calculate dominance info.  Skip loops that are not in a kernels region
26568         in oacc_kernels_p mode.  Skip inner loops of parallelized loops.
26569         (pass_parallelize_loops::execute): Call parallelize_loops with
26570         oacc_kernels_p argument.
26571         (pass_parallelize_loops::clone, pass_parallelize_loops::set_pass_param):
26572         New member function.
26573         (pass_parallelize_loops::bool oacc_kernels_p): New member var.
26574         * passes.def: Add argument to pass_parallelize_loops instantation.
26576 2016-01-18  Tom de Vries  <tom@codesourcery.com>
26578         * tree-parloops.c (pass_parallelize_loops::execute): Allow
26579         pass_parallelize_loops to be run outside the loop pipeline.
26581 2016-01-18  Alan Lawrence  <alan.lawrence@arm.com>
26583         * tree-scalar-evolution.c (follow_copies_to_constant): New.
26584         (analyze_initial_condition, analyze_scalar_evolution_1): Call previous.
26586 2016-01-18  Alan Lawrence  <alan.lawrence@arm.com>
26588         PR target/63679
26589         * tree-ssa-scopedtables.c (avail_expr_hash): Hash MEM_REF and ARRAY_REF
26590         using get_ref_base_and_extent.
26591         (equal_mem_array_ref_p): New.
26592         (hashable_expr_equal_p): Add call to previous.
26594 2016-01-18  Alan Lawrence  <alan.lawrence@arm.com>
26596         PR target/63679
26597         * tree-sra.c (disqualified_constants, constant_decl_p): New.
26598         (sra_initialize): Allocate disqualified_constants.
26599         (sra_deinitialize): Free disqualified_constants.
26600         (disqualify_candidate): Update disqualified_constants when appropriate.
26601         (create_access): Scan for constant-pool entries as we go along.
26602         (scalarizable_type_p): Add check against type_contains_placeholder_p.
26603         (maybe_add_sra_candidate): Allow constant-pool entries.
26604         (load_assign_lhs_subreplacements): Bind debug for constant pool vars.
26605         (initialize_constant_pool_replacements): New.
26606         (sra_modify_assign): Avoid mangling assignments created by previous,
26607         and don't generate writes into constant pool.
26608         (sra_modify_function_body): Call initialize_constant_pool_replacements.
26610 2016-01-18  Ilya Enkovich  <enkovich.gnu@gmail.com>
26612         * config/i386/i386.c (scalar_to_vector_candidate_p): Support
26613         andnot instruction.
26614         (scalar_chain::convert_op): Likewise.
26615         * config/i386/i386.md (*andndi3_doubleword): New.
26617 2016-01-18  Richard Biener  <rguenther@suse.de>
26619         PR tree-optimization/69170
26620         * tree-vect-slp.c (vect_build_slp_tree): Verify we are not
26621         building a vector from scalar results of a pattern stmt.
26623 2016-01-18  Jakub Jelinek  <jakub@redhat.com>
26625         * haifa-sched.c (autopref_multipass_init): Work around
26626         -Wmaybe-uninitialized warning.
26628 2016-01-18  Thomas Preud'homme  <thomas.preudhomme@arm.com>
26630         * config/arm/arm.c (thumb1_reorg): Check that the comparison is
26631         against the constant 0.
26633 2016-01-17  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
26635         PR tree-optimization/68799
26636         * gimple-ssa-strength-reduction.c (create_phi_basis): Directly
26637         look up phi candidates in the statement-candidate map.
26638         (phi_add_costs): Likewise.
26639         (record_phi_increments): Likewise.
26640         (phi_incr_cost): Likewise.
26641         (ncd_with_phi): Likewise.
26642         (all_phi_incrs_profitable): Likewise.
26644 2016-01-17  Jakub Jelinek  <jakub@redhat.com>
26646         * omp-low.c (mark_loops_in_oacc_kernels_region): Work around
26647         -Wmaybe-uninitialized warning.
26649 2016-01-16  Sandra Loosemore  <sandra@codesourcery.com>
26651         * doc/invoke.texi (Invoking GCC): Add new section to menu.
26652         (Option Summary): Update to reflect new section and moved options.
26653         (C++ Dialect Options): Move -fvtable-verify and related options.
26654         (Debugging Options): Move Sanitizer, Pointer Bounds Checker,
26655         and profiling-related options.
26656         (Optimization Options): Move profile generation options and
26657         -fstack-protector and related options.
26658         (Instrumentation Options): New section incorporating moved options.
26659         (Code Generation Options): Move -finstrument-functions and
26660         related options, -fstack-check, -fstack-limit*, and -fbounds-check.
26662 2016-01-16  Tom de Vries  <tom@codesourcery.com>
26664         * passes.def: Move pass_expand_omp_ssa out of pass_parallelize_loops.
26666 2016-01-16  Tom de Vries  <tom@codesourcery.com>
26668         * omp-low.c (expand_omp_atomic_fetch_op):  Release defs of update stmt.
26670 2016-01-16  Richard Sandiford  <richard.sandiford@arm.com>
26672         * hash-table.h (hash_table::empty): Turn into an inline wrapper
26673         that checks whether the table is already empty.  Rename the
26674         original implementation to...
26675         (hash_table::empty_slot): ...this new private function.
26677 2016-01-15  David Malcolm  <dmalcolm@redhat.com>
26679         PR diagnostic/68899
26680         * diagnostic-show-locus.c (layout::print_source_line): Move x
26681         offset of line until after call to
26682         get_line_width_without_trailing_whitespace.
26684 2016-01-15  Jeff Law  <law@redhat.com>
26686         PR tree-optimization/69270
26687         * tree-ssanames.c (ssa_name_has_boolean_range): Moved here from
26688         tree-ssa-dom.c.  Improve test for [0..1] ranve from VRP.
26689         * tree-ssa-dom.c (ssa_name_has_boolean_range): Remove.
26690         * tree-ssanames.h (ssa_name_has_boolean_range): Prototype.
26691         * tree-ssa-uncprop.c (associate_equivalences_with_edges): Use
26692         ssa_name_has_boolean_range and constant_boolean_node.
26694 2016-01-15  Vladimir Makarov  <vmakarov@redhat.com>
26696         PR rtl-optimization/69030
26697         * lra-spills.c (remove_pseudos): Check nrefs and make the function
26698         returning bool.
26699         (spill_pseudos): Delete debug insn for dead pseudo.
26700         (lra_spill): Initiate spill_hard_reg and slots memory separately.
26702 2016-01-15  Jiong Wang  <jiong.wang@arm.com>
26704         * config/aarch64/aarch64-builtins.c (aarch64_types_unopus_qualifiers):
26705         New.
26706         (TYPES_UNOPUS): Likewise.
26707         * config/aarch64/aarch64-simd-builtins.def (lbtruncuv2sf): Correct
26708         builtin type, from UNOP to UNOPUS.
26709         (lbtruncuv4sf): Likewise.
26710         (lbtruncuv2df): Likewise.
26711         (lrounduv2sf): Likewise.
26712         (lrounduv4sf): Likewise.
26713         (lrounduv2df): Likewise.
26714         (lroundusf): Likewise.
26715         (lroundusf): Likewise.
26716         (lceiluv2sf): Likewise.
26717         (lceiluv4sf): Likewise.
26718         (lceiluv2df): Likewise.
26719         (lceilusf): Likewise.
26720         (lceiludf): Likewise.
26721         (lflooruv2sf): Likewise.
26722         (lflooruv4sf): Likewise.
26723         (lflooruv2df): Likewise.
26724         (lfloorusf): Likewise.
26725         (lfloorudf): Likewise.
26726         (lfrintnuv2sf): Likewise.
26727         (lfrintnuv4sf): Likewise.
26728         (lfrintnuv2df): Likewise.
26729         (lfrintnusf): Likewise.
26730         (lfrintnudf): Likewise.
26731         * config/aarch64/arm_neon.h (vcvt_u32_f32): Remove unncessary type
26732         conversion.
26733         (vcvtq_u32_f32): Likewise.
26734         (vcvtq_u64_f64): Likewise.
26735         (vcvta_u32_f32): Likewise.
26736         (vcvtaq_u32_f32): Likewise.
26737         (vcvtaq_u64_f64): Likewise.
26738         (vcvtm_u32_f32): Likewise.
26739         (vcvtmq_u32_f32): Likewise.
26740         (vcvtmq_u64_f64): Likewise.
26741         (vcvtn_u32_f32): Likwise.
26742         (vcvtnq_u32_f32): Likewise.
26743         (vcvtnq_u64_f64): Likewise.
26744         (vcvtp_u32_f32): Likewise.
26745         (vcvtpq_u32_f32): Likewise.
26746         (vcvtpq_u64_f64): Likewise.
26747         (vcvtmd_u64_f64): Likewise.
26748         (vcvtms_u32_f32): Likewise.
26749         (vcvtad_u64_f64): Likewise.
26750         (vcvtas_u32_f32): Likewise.
26751         (vcvtnd_u64_f64): Likewise.
26752         (vcvtns_u32_f32): Likewise.
26753         (vcvtpd_u64_f64): Likewise.
26754         (vcvtps_u32_f32): Likewise.
26756 2016-01-15  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
26758         * config/aarch64/aarch64.c (aarch64_if_then_else_costs): Handle
26759         CSEL of zero_extended registers.
26761 2016-01-15  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
26763         * config/aarch64/aarch64.c (aarch64_rtx_costs, COMPARE case):
26764         Handle COMPARE of ZERO_EXTRACT against zero form of TST-immediate.
26766 2016-01-15  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
26768         * config/aarch64/aarch64.c (aarch64_process_one_target_attr): Return
26769         false when argument string is not found in the attributes table
26770         at all.
26772 2016-01-15  David Edelsohn  <dje.gcc@gmail.com>
26774         PR target/68609
26775         * config/rs6000/rs6000.c (rs6000_emit_msub): Delete.
26776         (rs6000_emit_swsqrt): Convert to Goldschmidt's Algorithm
26777         * config/rs6000/rs6000.md (sqrt<mode>2): Limit swsqrt to high
26778         precision estimate.
26780 2016-01-15  Richard Biener  <rguenther@suse.de>
26782         PR tree-optimization/66856
26783         * tree-vect-loop.c (vect_transform_loop): Free SLP instances here.
26784         * tree-vect-slp.c (vect_free_slp_tree): Decrement stmt reference count.
26785         (vect_create_new_slp_node): Increment stmt reference count.
26786         (vect_get_and_check_slp_defs): Make sure stmts are nor already in
26787         an SLP tree before swapping operands.
26788         (vect_build_slp_tree): Likewise.
26789         (destroy_bb_vec_info): Free stmt info after SLP instances.
26790         * tree-vect-stmts.c (new_stmt_vec_info): Initialize reference count.
26791         * tree-vectorizer.h (struct _stmt_vec_info): Add num_slp_uses field.
26792         (STMT_VINFO_NUM_SLP_USES): New macro.
26794 2016-01-15  Richard Biener  <rguenther@suse.de>
26796         PR debug/69137
26797         * dwarf2out.c (add_linkage_name_raw): New function split out from ...
26798         (add_linkage_name): ... here.
26799         (gen_typedef_die): Use add_linkage_name_raw instead of
26800         add_linkage_attr to delay DECL_ASSEMBLER_NAME computation
26801         if necessary.
26803 2016-01-15  Cesar Philippidis  <cesar@codesourcery.com>
26805         * gimplify.c (oacc_default_clause): Decode reference and pointer
26806         types for both kernels and parallel regions.
26808 2016-01-15  Richard Sandiford  <richard.sandiford@arm.com>
26810         PR middle-end/69246
26811         * calls.c (emit_call_1): Force n_popped to zero for sibcalls.
26813 2016-01-15  Ilya Enkovich  <enkovich.gnu@gmail.com>
26815         * config/i386/i386.c (scalar_chain::compute_convert_gain): Fix typo.
26816         (convert_scalars_to_vector): Likewise.
26818 2016-01-15  Jonathan Wakely  <jwakely@redhat.com>
26820         * doc/extend.texi (Type Traits): Fix grammar.
26822 2016-01-15  Martin Jambor  <mjambor@suse.cz>
26824         * tree-inline.c (remap_decl): Use existing dclarations if
26825         remapping a type and prevent_decl_creation_for_types.
26826         (replace_locals_stmt): Do an initial remapping of non-VLA typed
26827         decls first.  Do real remapping with
26828         prevent_decl_creation_for_types set.
26829         * tree-inline.h (copy_body_data): New field
26830         prevent_decl_creation_for_types, moved remap_var_for_cilk to avoid
26831         padding.
26833 2016-01-15  Dominik Vogt  <vogt@linux.vnet.ibm.com>
26835         * config/s390/s390.opt (mmvcle): More verbose help text.
26837 2016-01-15  Dominik Vogt  <vogt@linux.vnet.ibm.com>
26839         * config/s390/s390.opt: Add period to -mzvector option text.
26841 2016-01-15  Richard Biener  <rguenther@suse.de>
26843         PR tree-optimization/68961
26844         * tree-vect-slp.c (vect_analyze_slp_cost_1): Consider cost
26845         of invariants in stores again.
26847 2016-01-15  Sebastian Huber  <sebastian.huber@embedded-brains.de>
26849         * config/arm/t-rtems: Add cortex-m7/fpv5-d16 multilib.
26851 2016-01-15  Ilya Enkovich  <enkovich.gnu@gmail.com>
26853         * config/i386/i386.c (ix86_expand_branch): Don't split
26854         DI mode xor instruction to SI mode.
26856 2016-01-15  Jan Hubicka  <hubicka@ucw.cz>
26858         PR ipa/68148
26859         * ipa-icf.c (sem_function::merge): Virtual functions may become
26860         reachable even if they address is not taken and there are no
26861         idrect calls.
26863 2016-01-15  Jan Hubicka  <hubicka@ucw.cz>
26865         * lto-streamer-out.c (subtract_estimated_size): New function.
26866         (get_symbol_initial_value): Use it.
26868 2016-01-15  Christian Bruel  <christian.bruel@st.com>
26870         PR target/65837
26871         * config/arm/arm-builtins.c (ARM_BUILTIN_CRYPTO_BASE): New enum tag.
26872         (arm_init_neon_builtins_internal): Rename arm_init_neon_builtins,
26873         (arm_init_crypto_builtins_internal): Rename arm_init_crypto_builtins.
26874         use add_builtin_function_ext_scope instead of add_builtin_function.
26875         (neon_set_p, neon_crypto_set_p): Remove.
26876         (arm_init_builtins): Always call arm_init_neon_builtins and
26877         arm_init_crypto_builtins.
26878         (arm_expand_builtin): Check that builtins are allowed for the arch.
26879         * config/arm/arm-protos.h (arm_init_neon_builtins): Remove prototype.
26880         * config/arm/arm.c (arm_valid_target_attribute_tree): Remove
26881         arm_init_neon_builtins call.
26883 2016-01-15  Richard Biener  <rguenther@suse.de>
26885         PR tree-optimization/69117
26886         * tree-ssa-sccvn.h (struct vn_ssa_aux): Add info member.
26887         * tree-ssa-sccvn.c (set_ssa_val_to): Save and adjust SSA name info
26888         of the leader conservatively.
26889         (free_scc_vn): Restore original SSA name infos.
26891 2016-01-14  Jeff Law  <law@redhat.com>
26893         PR tree-optimization/69270
26894         * tree-ssa-dom.c (ssa_name_has_boolean_range): If the type has a
26895         single bit of precision, verify it's also unsigned.
26896         (record_edge_info): Use constant_boolean_node rather than fold_convert
26897         to convert boolean_true/boolean_false to the right type.
26899 2016-01-14  Richard Henderson  <rth@redhat.com>
26901         PR rtl-opt/69014
26902         * loop-doloop.c (record_reg_sets): New.
26903         (doloop_optimize): Reject the transform if the sequence
26904         clobbers registers live at the end of the loop block.
26905         (doloop_optimize_loops): Enable df_live if needed.
26907 2016-01-14  Michael Meissner  <meissner@linux.vnet.ibm.com>
26909         * config/rs6000/rs6000-builtin.def: Revert 2016-01-13 change.
26910         * config/rs6000/rs6000.c: Likewise.
26911         * config/rs6000/rs6000.h: Likewise.
26912         * config/rs6000/rs6000.md: Likewise.
26913         * doc/extend.texi: Likewsie.
26915 2016-01-14  Jeff Law  <law@redhat.com>
26917         * tree-ssa-dom.c (ssa_name_has_boolean_range): Fix comment
26918         typo.
26920 2016-01-14  Richard Henderson  <rth@redhat.com>
26922         PR c/69272
26923         PR tree-opt/68964
26924         * trans-mem.c (tm_log_emit_stmt): Fix unit size to bit size.
26925         * tree.c (build_tm_vector_builtins): Use builtin_decl_explicit_p
26926         instead of builtin_decl_declared_p to test for declaration.
26928 2016-01-14  Nicklas Bo Jensen  <nbjensen@gmail.com>
26930         * doc/loop.texi (Loop Analysis and Representation): Document
26931         loop_depth function.
26933 2016-01-14  Tom de Vries  <tom@codesourcery.com>
26935         PR tree-optimization/68773
26936         * omp-low.c (expand_omp_target): Don't set force_output.
26937         * varpool.c (varpool_node::get_create): Same.
26938         * lto-cgraph.c (input_offload_tables): Mark entries in offload_vars and
26939         offload_funcs with force_output.
26941 2016-01-14  Jakub Jelinek  <jakub@redhat.com>
26943         PR debug/69244
26944         * lra-eliminations.c (move_plus_up): Don't change anything if either
26945         the outer or inner subreg mode is not MODE_INT.
26946         * dwarf2out.c (mem_loc_descriptor): For SUBREG, if outer mode is
26947         integral <= DWARF2_ADDR_SIZE, convert to untyped afterwards.
26949 2016-01-14  Alan Lawrence  <alan.lawrence@arm.com>
26951         * doc/md.texi (reduc_smin_@var{m}, reduc_smax_@var{m},
26952         reduc_umin_@var{m}, reduc_umax_@var{m}, reduc_splus_@var{m},
26953         reduc_uplus_@var{m}): Remove.
26954         * expr.c (expand_expr_real_2): Remove expansion path for
26955         reduc_[us](min|max|plus) optabs.
26956         * optabs-tree.c (scalar_reduc_to_vector): Remove.
26957         * optabs-tree.h (scalar_reduc_to_vector): Remove.
26958         * optabs.def (reduc_smax_optab, reduc_smin_optab, reduc_splus_optab,
26959         reduc_umax_optab, reduc_umin_optab, reduc_uplus_optab): Remove.
26960         * tree-vect-loop.c (vectorizable_reduction): Remove test for
26961         reduc_[us](min|max|plus) optabs.
26963 2016-01-14  Alan Lawrence  <alan.lawrence@arm.com>
26965         * config/mips/mips-ps-3d.md (reduc_splus_v2sf): Remove.
26966         (reduc_plus_scal_v2sf): New.
26967         (reduc_smax_v2sf): Rename to...
26968         (reduc_smax_scal_v2sf): ...here, make result SFmode, add vec_extract.
26969         (reduc_smin_v2sf): Rename to...
26970         (reduc_smin_scal_v2sf): ...here, make result SFmode, add vec_extract.
26972 2016-01-14  Jan Hubicka  <hubicka@ucw.cz>
26974         * alias.c (compare_base_symbol_refs): New function.
26975         (rtx_equal_for_memref_p, base_alias_check, memrefs_conflict_p): Use
26976         it.
26978 2016-01-14  Jakub Jelinek  <jakub@redhat.com>
26980         PR middle-end/68146
26981         PR tree-optimization/69155
26982         * tree-complex.c: Include cfganal.h.
26983         (phis_to_revisit): New variable.
26984         (extract_component): Add phiarg_p argument.  Assert that returned
26985         SSA_NAME has non-NULL SSA_NAME_DEF_STMT unless phiarg_p is true.
26986         (update_phi_components): Partly rewrite to use loop over real/imag
26987         components instead of code duplication.  If extract_component returns
26988         SSA_NAME with NULL SSA_NAME_DEF_STMT, store SSA_NAME_VAR or
26989         create_tmp_reg into the PHI node instead, and mention the phi triplet
26990         in phis_to_revisit.
26991         (tree_lower_complex): Walk bbs in rpo order.  Adjust phis recorded
26992         in phis_to_revisit at the end.
26994 2016-01-14  Richard Biener  <rguenther@suse.de>
26996         PR tree-optimization/68060
26997         * tree-vect-loop.c (vect_is_simple_reduction): Check the
26998         outer loop reduction is only used in the inner loop before
26999         detecting a double reduction.
27001 2016-01-14  Jakub Jelinek  <jakub@redhat.com>
27003         PR target/68269
27004         * combine.c (expand_field_assignment): Punt if compute_mode is
27005         unsupported scalar mode.
27007 2016-01-14  Richard Biener  <rguenther@suse.de>
27009         PR tree-optimization/66856
27010         * tree-vect-slp.c (vect_build_slp_tree): Refactor to build
27011         SLP node only if it built successfully.
27012         (vect_analyze_slp_instance): Adjust.
27014 2016-01-14  Jeff Law  <law@redhat.com>
27016         PR tree-optimization/69270
27017         * tree-ssa-dom.c (ssa_name_has_boolean_range): New function.
27018         (record_edge_info): Use it.  Convert boolean_{true,false}_node
27019         to the type of op0.
27021 2016-01-13  Jan Hubicka  <hubicka@ucw.cz>
27023         PR ipa/66487
27024         * ipa-polymorphic-call.c (inlined_polymorphic_ctor_dtor_block_p):
27025         use block_ultimate_origin
27026         (noncall-stmt_may_be_vtbl_ptr_store): Likewise.
27028 2016-01-13  Sandra Loosemore  <sandra@codesourcery.com>
27030         * doc/invoke.texi (Submodel Options): Rename section to
27031         "Machine-Dependent Options" to better reflect its content.
27032         Rewrite introductory text to remove archaic CPU names.
27033         Update references.
27035 2016-01-13  Sandra Loosemore  <sandra@codesourcery.com>
27037         * doc/invoke.texi (Code Gen Options): Move section up in file,
27038         before target-specific options.  Update menu and option summary
27039         to reflect the new section ordering.
27041 2016-01-13  Jonathan Wakely  <jwakely@redhat.com>
27043         * doc/invoke.texi (C Dialect Options): Adjust -std default for C++.
27044         (C++ Dialect Options): Add cross-reference to -std option.
27045         * doc/standards.texi (C++ Language): Document C++14 support.
27047 2016-01-13  Michael Meissner  <meissner@linux.vnet.ibm.com>
27049         * config/rs6000/rs6000-builtin.def (BU_FLOAT128_2): Add support
27050         for pack/unpack functions for __ibm128.
27051         (PACK_IF): Likewise.
27052         (UNPACK_IF): Likewise.
27054         * config/rs6000/rs6000.c (rs6000_builtin_mask_calculate): Add
27055         support for __ibm128 pack/unpack functions.
27056         (rs6000_invalid_builtin): Likewise.
27057         (rs6000_init_builtins): Likewise.
27058         (rs6000_opt_masks): Likewise.
27060         * config/rs6000/rs6000.h (MASK_FLOAT128): Add short name.
27061         (RS6000_BTM_FLOAT128): Add support for __ibm128 pack/unpack
27062         functions
27063         (RS6000_BTM_COMMON): Likewise.
27065         * config/rs6000/rs6000.md (f128_vsx): New mode attribute.
27066         (unpack<mode>): Use FMOVE128_FPR iterator instead of FMOVE128, to
27067         disallow __builtin_{pack,unpack}_longdouble if long double is IEEE
27068         128-bit floating point.  Add support for the double values to be
27069         in Altivec registers for TF/IF packing and unpacking, but restrict
27070         TD packing sub-fields to be FPR registers.  Don't allow overlapped
27071         register support for packing.  Allow pack inputs to be memory
27072         locations.  Don't build generator functions for unpack<mode>_dm
27073         and unpack<mode>_nodm.
27074         (unpack<mode>_dm): Likewise.
27075         (unpack<mode>_nodm): Likewise.
27076         (pack<mode>): Likewise.
27078         * config/rs6000/rs6000-builtin.def (__builtin_pack_ibm128): Add
27079         built-in functions to pack/unpack explicit __ibm128 values.
27080         (__builtin_unpack_ibm128): Likewise.
27082         * doc/extend.texi (PowerPC Built-in Functions): Document
27083         __builtin_pack_ibm128 and __builtin_unpack_ibm128.
27085 2016-01-13  Bernd Schmidt  <bschmidt@redhat.com>
27087         PR c/66208
27088         * c-common.c (check_function_nonnull): Remove unnecessary declaration.
27089         Add new arg loc and pass it down as context.
27090         (check_nonnull_arg): Don't mark ctx arg as unused. Use it as a pointer
27091         to the location to use for the warning.
27092         (check_function_arguments): New arg loc.  All callers changed.  Pass
27093         it to check_function_nonnull.
27094         * c-common.h (check_function_arguments): Adjust declaration.
27096 2016-01-13  Jakub Jelinek  <jakub@redhat.com>
27098         PR tree-optimization/69156
27099         * gimple.c (validate_type): Removed.
27100         (gimple_builtin_call_types_compatible_p): Use
27101         useless_type_conversion_p instead of validate_type.
27102         * value-prof.c (gimple_stringop_fixed_value): Fold
27103         icall_size to correct type.
27105 2016-01-13  Jonathan Wakely  <jwakely@redhat.com>
27107         * doc/extend.texi (__atomic Builtins): Clarify compare_exchange
27108         effects.
27110 2016-01-13  Richard Henderson  <rth@redhat.com>
27112         PR tree-opt/68964
27113         * target.def (builtin_tm_load, builtin_tm_store): Remove.
27114         * config/i386/i386.c (ix86_builtin_tm_load): Remove.
27115         (ix86_builtin_tm_store): Remove.
27116         (TARGET_VECTORIZE_BUILTIN_TM_LOAD): Remove.
27117         (TARGET_VECTORIZE_BUILTIN_TM_STORE): Remove.
27118         * doc/tm.texi.in (TARGET_VECTORIZE_BUILTIN_TM_LOAD): Remove.
27119         (TARGET_VECTORIZE_BUILTIN_TM_STORE): Remove.
27120         * doc/tm.texi: Rebuild.
27122         * gtm-builtins.def (BUILT_IN_TM_MEMCPY_RNWT): New.
27123         (BUILT_IN_TM_MEMCPY_RTWN): New.
27124         * trans-mem.c (tm_log_emit_stmt): Rearrange code for better
27125         fallback from vector to integer helpers.
27126         (build_tm_load): Handle vector types directly, instead of
27127         via target hook.
27128         (build_tm_store): Likewise.
27129         (expand_assign_tm): Prepare for register types not handled by
27130         the above.  Copy them to memory and use memcpy.
27131         * tree.c (tm_define_builtin): New.
27132         (find_tm_vector_type): New.
27133         (build_tm_vector_builtins): New.
27134         (build_common_builtin_nodes): Call it.
27136 2016-01-13  Uros Bizjak  <ubizjak@gmail.com>
27138         * config/i386/i386.h (TARGET_FLT_EVAL_METHOD): Return -1 for
27139         TARGET_SSE_MATH without TARGET_SSE2.  Rewrite.
27141 2016-01-13  Tom de Vries  <tom@codesourcery.com>
27143         PR tree-optimization/69169
27144         * tree-ssa-structalias.c (create_variable_info_for_1): Add and handle
27145         handled_struct_type param.
27146         (create_variable_info_for, intra_create_variable_infos): Call
27147         create_variable_info_for_1 with extra arg.
27149 2016-01-13  Yvan Roux  <yvan.roux@linaro.org>
27151         * config/arm/arm-arches.def: Remove spurious whitespace in "armv8.1-a"
27152         and "armv8.1-a+crc" entries.
27154 2016-01-13  Alexander Fomin  <alexander.fomin@intel.com>
27156         PR target/69228
27157         * config/i386/sse.md (define_expand "avx512pf_gatherpf<mode>sf"):
27158         Change first operand predicate from register_or_constm1_operand
27159         to register_operand.
27160         (define_expand "avx512pf_gatherpf<mode>df"): Likewise.
27161         (define_expand "avx512pf_scatterpf<mode>sf"): Likewise.
27162         (define_expand "avx512pf_scatterpf<mode>df"): Likewise.
27163         (define_insn "*avx512pf_gatherpf<mode>sf"): Remove.
27164         (define_insn "*avx512pf_gatherpf<mode>df"): Likewise.
27165         (define_insn "*avx512pf_scatterpf<mode>sf"): Likewise.
27166         (define_insn "*avx512pf_scatterpf<mode>df"): Likewise.
27167         * config/i386/i386.c (ix86_expand_builtin): Remove first operand
27168         comparison with constm1_rtx from vec_prefetch_gen part.
27170 2016-01-13  Richard Biener  <rguenther@suse.de>
27172         PR tree-optimization/69013
27173         * tree-ssa-uninit.c (prune_uninit_phi_opnds_in_unrealizable_paths):
27174         Exchange assert for a test.
27176 2016-01-13  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
27178         PR target/69247
27179         * config/s390/s390.md (bswaphi splitter): Use simplify_gen_subreg.
27181 2016-01-13  Richard Biener  <rguenther@suse.de>
27183         PR tree-optimization/69242
27184         * tree-ssa-sccvn.c (visit_reference_op_load): Replace bogus
27185         assert with a check.
27187 2016-01-13  Richard Biener  <rguenther@suse.de>
27189         PR tree-optimization/69186
27190         * tree-vect-data-refs.c (vect_enhance_data_refs_alignment):
27191         Properly guard vect_update_misalignment_for_peel call.
27193 2016-01-12  Jeff Law  <law@redhat.com>
27195         PR tree-optimization/pr67755
27196         * tree-ssa-threadupdate.c (struct ssa_local_info_t): Add new field
27197         "need_profile_correction".
27198         (thread_block_1): Initialize new field to false by default.  If we
27199         have multiple thread paths through a common joiner to different
27200         final targets, then set new field to true.
27201         (compute_path_counts): Only do count adjustment when it's really
27202         needed.
27204 2016-01-12  Sandra Loosemore  <sandra@codesourcery.com>
27206         * doc/invoke.texi (Spec Files): Move section down in file, past
27207         all command-line option descriptions.
27209 2016-01-12  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
27211         PR middle-end/54809
27212         * doc/gty.texi: Remove documentation of mark_hook.
27213         * gengtype.c (struct write_types_data): Remove code to support
27214         mark_hook attribute.
27215         (walk_type): Likewise.
27216         (write_func_for_structure): Likewise.
27218 2016-01-12  Sandra Loosemore  <sandra@codesourcery.com>
27220         * doc/invoke.texi (Option Summary) Move -no-canonical-prefixes to
27221         Directory Options, and -specs= to Overall Options.
27222         (Overall Options): Adjust similarly.  Reorder to group related
27223         options together.  Make -specs= cross-reference the spec file details.
27224         (Directory Options): Adjust similarly.
27226 2016-01-12  Jeff Law  <law@redhat.com>
27228         * tree-ssa-threadupdate.c: Various whitespace and typo fixes.
27230 2016-01-12  Olivier Hainque  <hainque@adacore.com>
27232         * gcc.c (spec_undefvar_allowed): New global.
27233         (process_command): Set to true when running for --version or --help,
27234         alone or together.
27235         (getenv_spec_function): When the variable is not defined, use the
27236         variable name as the variable value if we're allowed not to issue
27237         a fatal error.
27239 2016-01-12  Bin Cheng  <bin.cheng@arm.com>
27241         PR tree-optimization/68911
27242         * tree-vrp.c (adjust_range_with_scev): Check overflow in range
27243         information computed for expression "init + nit * step".
27245 2016-01-12  Sandra Loosemore  <sandra@codesourcery.com>
27247         * doc/invoke.texi (Invoking GCC): Copy-edit.  Incorporate information
27248         about name of GCC executable.  Remove deleted node from menu.
27249         (Directory Options) <-B>: Remove cross-reference to deleted node.
27250         (Target Options): Delete section.
27252 2016-01-12  Christian Bruel  <christian.bruel@st.com>
27254         PR target/69180
27255         * config/arm/arm-c.c (arm_pragma_target_parse): Set NODE_CONDITIONAL
27256         for __ARM_NEON_FP, __ARM_FP, _ARM_FEATURE_LDREX.
27258 2016-01-12  Jakub Jelinek  <jakub@redhat.com>
27260         PR target/69198
27261         * config/i386/i386.c (ix86_expand_special_args_builtin): Ensure
27262         aligned_mem is properly set for AVX512-VL floating point masked
27263         stores.
27265         PR target/69175
27266         * ifcvt.c (cond_exec_process_if_block): When removing the last
27267         insn from then_bb, remove also any possible barriers that follow it.
27269 2016-01-12  H.J. Lu  <hongjiu.lu@intel.com>
27271         PR target/68456
27272         PR target/69226
27273         * config/i386/iamcu.h (SIZE_TYPE): New macro.
27274         (PTRDIFF_TYPE): Likewise.
27275         (WCHAR_TYPE): Likewise.
27276         (WCHAR_TYPE_SIZE): Likewise.
27277         (STDINT_LONG32): Likewise.
27279 2016-01-12  Richard Biener  <rguenther@suse.de>
27281         PR tree-optimization/69053
27282         * tree-vect-loop.c (get_initial_def_for_reduction): Properly
27283         convert initial value for cond reductions.
27285 2016-01-12  Richard Biener  <rguenther@suse.de>
27287         PR tree-optimization/69007
27288         * tree-vect-patterns.c (vect_vect_recog_func_ptrs): Move
27289         widen_sum after dot_prod and sad.
27291 2016-01-12  Richard Biener  <rguenther@suse.de>
27293         PR tree-optimization/69168
27294         * tree-vect-loop.c (vect_analyze_loop_2): Reset both main and
27295         pattern stmt SLP type.
27296         * tree-vect-slp.c (vect_detect_hybrid_slp_stmts): Patterns may
27297         end up unused so cope with that case.
27299 2016-01-12  Richard Biener  <rguenther@suse.de>
27301         PR tree-optimization/69157
27302         * tree-vect-stmts.c (vectorizable_mask_load_store): Check
27303         stmts def type only during analyze phase.
27304         (vectorizable_call): Likewise.
27305         (vectorizable_simd_clone_call): Likewise.
27306         (vectorizable_conversion): Likewise.
27307         (vectorizable_assignment): Likewise.
27308         (vectorizable_shift): Likewise.
27309         (vectorizable_operation): Likewise.
27310         (vectorizable_store): Likewise.
27311         (vectorizable_load): Likewise.
27313 2016-01-12  Richard Biener  <rguenther@suse.de>
27315         PR tree-optimization/69174
27316         * tree-vect-stmts.c (vect_mark_relevant): Remove excessive vertical
27317         space.
27318         (vectorizable_load): Properly compute the number of loads needed
27319         for permuted strided SLP loads and do not spuriously assign
27320         to SLP_TREE_VEC_STMTS.
27322 2016-01-12  Andris Pavenis  <andris.pavenis@iki.fi>
27324         * config/i386/djgpp.h (PREFERRED_DEBUGGING_TYPE): Define to DWARF2
27325         (TARGET_ASM_OUTPUT_IDENT): Define to default_asm_output_ident_directive
27326         (MD_EXEC_PREFIX): Remove.
27327         (MD_STARTFILE_PREFIX) Removee.
27328         (FILE_NAME_ABSOLUTE_P): Remove.
27329         (CPP_SPEC): Do not read macros from sys/version.h.
27330         (LINK_COMMAND_SPEC): Remove.
27331         (LOCAL_INCLUDE_DIR): Remove.
27332         (TARGET_ASM_NAMED_SECTION): Define to i386_djgpp_asm_named_section
27333         (TARGET_OS_CPP_BUILTINS): Add DJGPP (non ISO only), __DJGPP, __DJGPP__, unix.
27334         (POST_LINK_SPEC): Define to invoke stubify after linker
27335         (LIBSTDCXX): Remove define
27336         (DBX_REGISTER_NUMBER): Define to svr4_dbx_register_map.
27337         (DEFAULT_PCC_STRUCT_RETURN): Define to 1.
27338         (SUBTARGET_OVERRIDE_OPTIONS): Remove warning about -mbnu2210.
27339         (SUBTARGET_OVERRIDE_OPTIONS): Ignore -fPIC and generate message.
27340         (SUBTARGET_OVERRIDE_OPTIONS): Default to DWARF2 debugging info.
27341         (IX86_MAYBE_NO_LIBGCC_TFMODE): Remove.
27342         (i386_djgpp_asm_named_section): Add propotype of new procedure
27344         * config/i386/xm-djgpp.h (NATIVE_SYSTEM_HEADER_DIR): Define.
27345         (MD_EXEC_PREFIX): Define (moved from config/i386/djgpp.h).
27346         (STANDARD_STARTFILE_PREFIX_1): Define (moved from MD_STARTFILE_PREFIX
27347         in config/i386/djgpp.h).
27348         (STANDARD_STARTFILE_PREFIX_2): Define identical to
27349         STANDARD_STARTFILE_PREFIX_1.
27350         (LOCAL_INCLUDE_DIR): Define (moved from config/i386/djgpp.h).
27351         (GCC_DRIVER_HOST_INITIALIZATION): Fix reporting fatal
27352         installation errors.
27353         (MAX_OFILE_ALIGNMENT): Define to 128.
27354         (HAVE_FTW_H): Undefine as DJGPP do not have nftw, but have ftw.h.
27356         * config/i386/djgpp.c: New file. Add implementation of
27357         i386_djgpp_asm_named_section.
27359         * config/i386/djgpp.opt: Remove obsolete option -mbnu210.
27361         * config/i386/t-djgpp: New file. Add djgpp.o to EXTRA_OBJS.
27362         Add rule for building djgpp.o.
27364 2016-01-11  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
27366         * config/rs6000/rs6000.c (v2df_reduction_p): New function.
27367         (rtx_is_swappable_p): Reductions are swappable.
27368         (insn_is_swappable_p): V2DF reductions are swappable.
27370 2016-01-11  John David Anglin  <danglin@gcc.gnu.org>
27372         * config/pa/pa.c (pa_emit_move_sequence): Handle floating point
27373         reloads for other unsupported memory operands.
27375 2016-01-12  Kugan Vivekanandarajah  <kuganv@linaro.org>
27376             Jim Wilson  <jim.wilson@linaro.org>
27378         PR target/69194
27379         * config/arm/arm-builtins.c (arm_expand_neon_args): Call
27380         copy_to_mode_reg instead of force_reg.
27382 2016-01-11  H.J. Lu  <hongjiu.lu@intel.com>
27384         PR target/69225
27385         * config/i386/i386.h (TARGET_FLT_EVAL_METHOD): Set to 2 only if
27386         TARGET_80387 is true.
27388 2016-01-11  Jakub Jelinek  <jakub@redhat.com>
27390         PR target/69071
27391         * lra-eliminations.c (move_plus_up): Only move plus up
27392         if subreg of the constant can be simplified into constant
27393         and use the simplified subreg of the constant instead of
27394         the original constant.
27396         * fold-const.c (fold_convertible_p): Don't return true
27397         for conversion of VECTOR_TYPE to same sized integral type.
27398         (fold_convert_loc): Fix up formatting.  Fold conversion of
27399         VECTOR_TYPE to same sized integral type using VIEW_CONVERT_EXPR
27400         instead of NOP_EXPR.
27402         PR tree-optimization/69214
27403         * tree-vrp.c (simplify_cond_using_ranges): Don't propagate
27404         innerop into a comparison if SSA_NAME_OCCURS_IN_ABNORMAL_PHI.
27405         Formatting fix.
27407         PR tree-optimization/69207
27408         * tree-vect-slp.c (vect_get_constant_vectors): For
27409         VECTOR_BOOLEAN_TYPE_P, assert op has integral type instead of
27410         fold_convertible_p to vector_type's element type, and always
27411         use VCE for non-VECTOR_BOOLEAN_TYPE_P.
27413 2016-01-11  Richard Biener  <rguenther@suse.de>
27415         PR tree-optimization/69173
27416         * tree-vect-loop.c (vect_fixup_scalar_cycles_with_patterns): Only
27417         fixup the cycle if all stmts are in a pattern.
27419 2016-01-11  Uros Bizjak  <ubizjak@gmail.com>
27421         PR middle-end/68999
27422         * alias.c (base_alias_check): Move check for addresses with
27423         alignment ANDs before the call for compare_base_decls.
27424         (memrefs_conflict_p): Return -1 for different decls
27425         that went through alignment adjustments.
27427 2016-01-11  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
27429         PR rtl-optimization/68796
27430         * config/aarch64/aarch64.md (*and<mode>_compare0): New pattern.
27431         * config/aarch64/aarch64.c (aarch64_select_cc_mode): Handle HImode
27432         and QImode comparisons against zero with CC_NZmode.
27433         * config/aarch64/iterators.md (short_mask): New mode_attr.
27435 2016-01-11  H.J. Lu  <hongjiu.lu@intel.com>
27437         * config/i386/sse.md (<avx512>_load<mode>_mask): Remove snprintf.
27438         (<avx512>_store<mode>_mask): Likewise.
27440 2016-01-11  Bernd Schmidt  <bschmidt@redhat.com>
27441             Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
27443         PR rtl-optimization/68841
27444         * ifcvt.c (struct noce_if_info): Add orig_x field.
27445         (bbs_ok_for_cmove_arith): Add to_rename parameter.
27446         Don't record conflicts on to_rename if it's present.
27447         Allow memory destinations in sets.
27448         (noce_try_cmove_arith): Call bbs_ok_for_cmove_arith even on simple
27449         blocks, passing orig_x to the checks.
27450         (noce_process_if_block): Set if_info->orig_x appropriately.
27452 2016-01-11  Tom de Vries  <tom@codesourcery.com>
27454         PR tree-optimization/69069
27455         * tree-parloops.c (create_parallel_loop): Add missing phi args.
27457 2016-01-11  Yuri Rumyantsev  <ysrumyan@gmail.com>
27459         PR rtl-optimization/68920
27460         * config/i386/i386.c (ix86_option_override_internal): Restrict number
27461         of conditional moves for  RTL if-conversion to 1 for
27462         TARGET_ONE_IF_CONV_INSN.
27463         * config/i386/i386.h (TARGET_ONE_IF_CONV_INSN): New macros.
27464         * config/i386/x86-tune.def (X86_TUNE_ONE_IF_CONV_INSN): New macros.
27465         * params.def (PARAM_MAX_RTL_IF_CONVERSION_INSNS) : Introduce new
27466         parameter to restirct number of conditional moves for
27467         RTL if-conversion.
27468         * doc/invoke.texi (max-rtl-if-conversion-insns): Document it.
27469         * ifcvt.c (bb_ok_for_noce_convert_multiple_sets): Limit number of
27470         conditionl moves.
27472 2016-01-11  Alexandre Oliva  <aoliva@redhat.com>
27474         PR bootstrap/69123
27475         * var-tracking.c (drop_overlapping_mem_locs): Operate on all
27476         onepart vars.  Fix typo in comment.  Fix reversed condition in
27477         unshare test.
27478         (dataflow_set_remove_mem_locs): Operate on all onepart vars.
27480         PR bootstrap/69123
27481         * var-tracking.c (dump_onepart_variable_differences): New.
27482         (dataflow_set_different): If a detailed dump is requested,
27483         delay early returns and dump differences between onepart
27484         variables present before and after, and added variables.
27486 2016-01-11  Ilya Enkovich  <enkovich.gnu@gmail.com>
27488         PR target/69010
27489         * expr.c (expand_expr_real_1): For boolean vector constants
27490         with a scalar mode use const_scalar_mask_from_tree.
27491         (const_scalar_mask_from_tree): New.
27492         * optabs.c (expand_vec_cond_mask_expr): Use mask mode
27493         assigned to a mask type to handle constants.
27495 2016-01-11  Martin Jambor  <mjambor@suse.cz>
27497         PR ipa/69044
27498         * ipa-cp.c (estimate_local_effects): Do not clone for removal of
27499         useless parameters if we cannot change function signature.
27501 2016-01-11  Martin Jambor  <mjambor@suse.cz>
27503         PR ipa/66616
27504         * cgraphclones.c (duplicate_thunk_for_node): Copy can_change_signature
27505         flag.
27507 2016-01-11  Tom de Vries  <tom@codesourcery.com>
27509         PR tree-optimization/69109
27510         * tree-parloops.c (try_transform_to_exit_first_loop_alt): Don't allow
27511         latch with phi.
27513 2016-01-11  Tom de Vries  <tom@codesourcery.com>
27515         PR tree-optimization/69108
27516         * tree-parloops.c (gather_scalar_reductions): Handle case that outer phi
27517         res is not used in a phi.
27519 2016-01-11  Yury Gribov  <y.gribov@samsung.com>
27521         PR 67425
27522         * common.opt (frandom-seed): Fix parameter name.
27523         * doc/invoke.texi (frandom-seed): Ditto and describe parameter.
27525 2016-01-11  Tom de Vries  <tom@codesourcery.com>
27527         PR tree-optimization/69058
27528         * tree-parloops.c (pass_parallelize_loops::execute): Return 0 if libgomp
27529         not supported.
27531 2016-01-11  Andrew Burgess  <andrew.burgess@embecosm.com>
27533         * config/arc/arc.opt (mdiv-rem): Add period to the end.
27534         (mcode-density): Likewise.
27536 2016-01-10  Tom de Vries  <tom@codesourcery.com>
27538         PR tree-optimization/69062
27539         * tree-parloops.c (loop_has_phi_with_address_arg): New function.
27540         (parallelize_loops): Don't paralelize loop that has phi with address
27541         arg.
27543 2016-01-10  Tom de Vries  <tom@codesourcery.com>
27545         PR tree-optimization/69039
27546         * tree-parloops.c (try_create_reduction_list): Only allow single exit
27547         phi for reduction.
27549 2016-01-09  John David Anglin  <danglin@gcc.gnu.org>
27551         PR middle-end/68743
27552         * match.pd: Require target has function_c99_misc before doing
27553         truncl(extend(x)) and trunc(extend(x)) -> extend(truncf(x)), etc.
27555 2016-01-09  Gerald Pfeifer  <gerald@pfeifer.com>
27557         * configure.ac (isl_options_set_schedule_serialize_sccs): Also
27558         use GMPINC.
27559         * configure: Regenerate.
27561 2016-01-09  Jakub Jelinek  <jakub@redhat.com>
27563         PR middle-end/50865
27564         PR tree-optimization/69097
27565         * fold-const.h (expr_not_equal_to): New prototype.
27566         * fold-const.c: Include stringpool.h and tree-ssanames.h.
27567         (expr_not_equal_to): New function.
27568         * match.pd (X % -Y is the same as X % Y): Don't optimize
27569         unless X is known not to be equal to minimum or Y is known
27570         not to be equal to -1.
27571         * tree-vrp.c (simplify_div_or_mod_using_ranges): Add GSI argument.
27572         fold TRUNC_MOD_EXPR if the second argument is not a power of two.
27573         (simplify_stmt_using_ranges): Adjust caller.
27574         (vrp_finalize): Call set_value_range on SSA_NAMEs before calling
27575         substitute_and_fold.
27577 2016-01-09  Jan Hubicka  <hubicka@ucw.cz>
27579         * ipa-icf.c (sem_item_optimizer::merge_classes): Do not ICE on VAR_DECL
27580         w/o DECL_NAME.
27582 2016-01-08  Jakub Jelinek  <jakub@redhat.com>
27584         PR tree-optimization/69167
27585         * gimple-fold.c (replace_stmt_with_simplification): Also punt if
27586         new SSA_NAME_OCCURS_IN_ABNORMAL_PHI SSA_NAMEs appear in operands of
27587         ops[0] comparison.
27588         * gimple-match-head.c (maybe_push_res_to_seq): Likewise.
27590 2016-01-08  Alan Lawrence  <alan.lawrence@arm.com>
27591             Richard Biener  <rguenther@suse.de>
27593         PR tree-optimization/68707
27594         * tree-vect-slp.c (vect_analyze_slp_instance): Cancel permuted SLP
27595         instances that can be handled via vect_load_lanes.
27597 2016-01-08  Uros Bizjak  <ubizjak@gmail.com>
27599         * symtab.c (symtab_node::equal_address_to): Return -1 instead of 2
27600         if we can't determine address equivalence.
27601         * alias.c (compare_base_decl): Update for changed return value of
27602         symtab_node::equal_address_to.
27604 2016-01-08  Jason Merrill  <jason@redhat.com>
27606         PR c++/68983
27607         PR c++/67557
27608         * function.c (assign_temp): Guard against TREE_ADDRESSABLE types here.
27609         * expr.c (store_field): Not here.
27610         * tree-cfgcleanup.c (fixup_noreturn_call): Don't clear LHS of a
27611         call with TREE_ADDRESSABLE type.
27612         * tree-cfg.c (verify_gimple_call): Adjust.
27614 2016-01-08  Olivier Hainque  <hainque@adacore.com>
27616         * config/vxworks.h (VXWORKS_LIBGCC_SPEC): Don't link shared RTPs with
27617         libc_internal.
27619 2016-01-08  Alan Lawrence  <alan.lawrence@arm.com>
27621         * gcc.target/rs6000/paired.md (reduc_smax_v2sf): Rename to...
27622         (reduc_smax_scal_v2sf): ...here, make result SFmode, extract element.
27623         (reduc_smin_v2sf): Rename to...
27624         (reduc_smin_scal_v2sf): ...here, make result SFmode, extract element.
27625         (reduc_splus_v2sf): Rename to...
27626         (reduc_plus_scal_v2sf): ...here, make result SFmode, extract element.
27628 2016-01-08  Jakub Jelinek  <jakub@redhat.com>
27630         PR tree-optimization/69162
27631         * gimplify.c (gimplify_va_arg_expr): Encode original type of
27632         valist argument in another argument.
27633         (gimplify_modify_expr): Adjust for the above change.  Cleanup.
27634         * tree-stdarg.c (expand_ifn_va_arg_1): Use new 3rd argument
27635         to determine the va_list type, build a MEM_REF instead of
27636         build_fold_indirect_ref.
27638         PR tree-optimization/69172
27639         * gimple-fold.c (gimple_fold_builtin_memory_chk): Pass type to
27640         gimple_build.
27642 2016-01-08  Thomas Preud'homme  <thomas.preudhomme@arm.com>
27644         PR tree-optimization/67781
27645         * tree-ssa-math-opts.c (find_bswap_or_nop): Zero out bytes in cmpxchg
27646         and cmpnop in two steps: first the ones not accessed in original
27647         gimple expression in a endian independent way and then the ones not
27648         accessed in the final result in an endian-specific way.
27650 2016-01-08  Jakub Jelinek  <jakub@redhat.com>
27652         PR tree-optimization/69083
27653         * tree-vect-slp.c (vect_get_constant_vectors): For
27654         VECTOR_BOOLEAN_TYPE_P assert op is fold_convertible_p to vector_type's
27655         element type.  If op is fold_convertible_p to vector_type's element
27656         type, use NOP_EXPR instead of VCE.
27658 2016-01-08  Segher Boessenkool  <segher@kernel.crashing.org>
27660         PR rtl-optimization/67778
27661         PR rtl-optimization/68634
27662         PR rtl-optimization/68909
27663         * shrink-wrap.c (try_shrink_wrapping): Add comment.  Don't pop
27664         block from the stack until done with it.  Remove a superfluous
27665         bitmap set.  Remove a superfluous bitmap test.
27667 2016-01-07  Martin Sebor  <msebor@redhat.com>
27669         PR c/68966
27670         * doc/extend.texi (__atomic Builtins, __sync Builtins): Document
27671         constraint on the type of arguments.
27673 2016-01-07  Andreas Tobler  <andreast@gcc.gnu.org>
27675         * config/arm/freebsd.h: Rename SUBTARGET_OVERRIDE_OPTIONS to
27676         SUBTARGET_OVERRIDE_INTERNAL_OPTIONS. Adjust to check
27677         unaligned_access on the gcc_options set.
27678         * config/arm/arm.c (arm_option_override_internal): Use
27679         SUBTARGET_OVERRIDE_INTERNAL_OPTIONS.
27681 2016-01-07  Uros Bizjak  <ubizjak@gmail.com>
27683         PR target/69140
27684         * config/i386/i386.c (ix86_frame_pointer_required): Enable
27685         frame pointer for TARGET_64BIT_MS_ABI when stack is misaligned.
27687 2016-01-07  Uros Bizjak  <ubizjak@gmail.com>
27689         Revert
27690         2016-01-06  Uros Bizjak  <ubizjak@gmail.com>
27692         PR target/69140
27693         * config/i386/i386.c (ix86_expand_prologue): Declare fs.sp_valid
27694         depending on frame_pointer_needed before remaining integer and SSE
27695         registers are saved.
27697 2016-01-07  Sandra Loosemore  <sandra@codesourcery.com>
27699         PR 1078
27700         * doc/extend.texi (Nvidia PDX Function Attributes): New section.
27702 2016-01-07  H.J. Lu  <hongjiu.lu@intel.com>
27704         PR target/69171
27705         * config/i386/sse.md (<sse>_sqrt<mode>2<mask_name><round_name>):
27706         Use the "xBm" constraint.
27707         (float<sseintvecmodelower><mode>2<mask_name><round_name):
27708         Likewise.
27709         (sse_cvtsi2ss<round_name>): Use round_nimm_scalar_predicate.
27710         (sse_cvtsi2ssq<round_name>): Likewise.
27711         (sse_cvtss2si<round_name>): Likewise.
27712         (sse_cvtss2siq<round_name>): Likewise.
27713         (sse2_cvtsi2sdq<round_name>): Likewise.
27714         (sse2_cvtsd2si<round_name>): Likewise.
27715         (sse2_cvtsd2siq<round_name>): Likewise.
27716         * config/i386/subst.md (round_nimm_scalar_predicate): New
27717         predicate.
27719 2015-12-15  Bernd Schmidt  <bschmidt@redhat.com>
27721         PR middle-end/67639
27722         * varasm.c (make_decl_rtl): Mark invalid register vars as
27723         DECL_EXTERNAL.
27725         PR rtl-optimization/66206
27726         * bt-load.c (find_btr_use): Change first arg to be a pointer to an rtx.
27727         All callers changed.
27729 2016-01-07  Jakub Jelinek  <jakub@redhat.com>
27731         PR tree-optimization/69141
27732         * tree-ssa-pre.c: Include langhooks.h.
27733         (eliminate_dom_walker::before_dom_children): Use
27734         lang_hooks.decl_printable_name instead of
27735         cgraph_node::get ()->name ().
27737         PR middle-end/68960
27738         * gimple-expr.c (copy_var_decl): If var has DECL_USER_ALIGN set, copy
27739         it and DECL_ALIGN too.
27741 2016-01-06  Robert Suchanek  <robert.suchanek@imgtec.com>
27743         * config/mips/mips-ftypes.def: Sort to lexicographical order.
27745 2016-01-06  Uros Bizjak  <ubizjak@gmail.com>
27747         PR target/69140
27748         * config/i386/i386.c (ix86_expand_prologue): Declare fs.sp_valid
27749         depending on frame_pointer_needed before remaining integer and SSE
27750         registers are saved.
27752 2015-01-06  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
27754         * config/rs6000/vsx.md (*p9_vecload_<mode>): Replace VSX_M
27755         mode iterator with VSX_M2.
27756         (*p9_vecstore_<mode>): Likewise.
27757         (*vsx_le_permute_<mode>): Restrict to !TARGET_P9_VECTOR.
27758         (*vsx_le_perm_load_<mode> for VSX_LE_128): Likewise.
27759         (*vsx_le_perm_store_<mode> for VSX_LE_128): Likewise.
27760         (define_split for VSX_LE128 stores): Likewise.
27761         (define_peephole2 for TImode LE swaps): Likewise.
27762         (define_split for VSX_LE128 post-reload stores): Likewise.
27764 2016-01-06  Marek Polacek  <polacek@redhat.com>
27766         PR sanitizer/69099
27767         * convert.c (convert_to_integer_1): Adjust call to
27768         ubsan_instrument_float_cast.  Use NULL_TREE instead of NULL.
27769         * ubsan.c (ubsan_instrument_float_cast): Drop the ARG parameter.  Use
27770         EXPR instead of ARG.
27771         * ubsan.h (ubsan_instrument_float_cast): Adjust declaration.
27773 2016-01-05  Sandra Loosemore  <sandra@codesourcery.com>
27775         PR 1078
27776         * doc/extend.texi (RL78 Variable Attributes): New section.
27778 2016-01-05  Marek Polacek  <polacek@redhat.com>
27780         PR c/69104
27781         * builtins.c (get_memmodel): Use expansion point location rather than
27782         the input location.  Call warning_at rather than warning.
27783         (expand_builtin_atomic_compare_exchange): Likewise.
27784         (expand_builtin_atomic_load): Likewise.
27785         (expand_builtin_atomic_store): Likewise.
27786         (expand_builtin_atomic_clear): Likewise.
27788 2016-01-05  H.J. Lu  <hongjiu.lu@intel.com>
27790         PR target/68991
27791         * config/i386/i386.c (ix86_expand_vector_logical_operator):
27792         Replace nonimmediate_operand with vector_operand.
27793         * config/i386/predicates.md (vector_operand): New predicate.
27794         (general_vector_operand): Replace nonimmediate_operand with
27795         vector_operand.
27796         * config/i386/sse.md: Replace nonimmediate_operand with
27797         vector_operand and m constraint with Bm constraint on SSE
27798         patterns with 16-byte memory operand.
27799         * config/i386/subst.md (round_nimm_predicate): Replace
27800         nonimmediate_operand with vector_operand.
27801         (round_saeonly_nimm_predicate): Likewise.
27802         (round_saeonly_nimm_scalar_predicate): New.
27804 2016-01-05  H.J. Lu  <hongjiu.lu@intel.com>
27806         PR target/68991
27807         * config/i386/constraints.md (Bm): New constraint.
27808         * config/i386/predicates.md (vector_memory_operand): New
27809         predicate.
27810         * config/i386/sse.md: Replace xm with xBm in plusminus and
27811         any_logic patterns.
27813 2016-01-05  Sandra Loosemore  <sandra@codesourcery.com>
27815         PR 1078
27816         * doc/extend.texi (V850 Function Attributes): New section.
27817         (V850 Variable Attributes): New section.
27819 2016-01-05  Sandra Loosemore  <sandra@codesourcery.com>
27821         PR 1078
27822         * doc/extend.texi (MicroBlaze Function Attributes): Document
27823         interrupt_handler and fast_interrupt attributes.
27825 2016-01-05  Sergei Trofimovich  <siarheit@google.com>
27827         PR other/60465
27828         * config/ia64/ia64.c (ia64_expand_load_address): Use gprel64
27829         for local symbolic operands.
27830         * config/ia64/predicates.md (local_symbolic_operand64): New
27831         predicate.
27833 2016-01-05  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
27835         PR rtl-optimization/68651
27836         * combine.c (combine_simplify_rtx): Canonicalize x + x into
27837         x << 1.
27839 2016-01-05  Nathan Sidwell  <nathan@acm.org>
27841         * alias.c (compare_base_decls): Use symtab_node::get.
27843 2016-01-05  Nick Clifton  <nickc@redhat.com>
27845         PR target/68770
27846         * ira-costs.c (copy_cost): Initialise the t_icode field of the
27847         secondary_reload_info structure.
27849         PR target/66655
27850         * config/i386/cygming.h (MAKE_DECL_ONE_ONLY): Define to use weak
27851         decls if weak support is available.
27853 2016-01-04  Martin Sebor  <msebor@redhat.com>
27855         * doc/invoke.texi (Warning Options): Document -Winvalid-memory-model.
27857 2016-01-04  Michael Meissner  <meissner@linux.vnet.ibm.com>
27859         * config/rs6000/rs6000-cpus.def (ISA_3_0_MASKS_SERVER): Add
27860         OPTION_MASK_P9_DFORM.
27862         * config/rs6000/constraints.md (wo constraint): New constraint for
27863         ISA 3.0 (power9).
27865         * config/rs6000/rs6000.c (rs6000_debug_reg_global): Add support
27866         for wo constraint.
27867         (rs6000_init_hard_regno_mode_ok): Likewise.
27869         * config/rs6000/rs6000.h (r6000_reg_class_enum): Add support for
27870         wo constraint.
27872         * config/rs6000/altivec.md (altivec_vperm_<mode>): Clean up vperm
27873         expanders not to have constraints.  Add support for ISA 3.0 xxperm
27874         instruction.  Add support for fusing xxlor with xxperm.
27875         (altivec_vperm_<mode>_internal): Likewise.
27876         (altivec_vperm_v8hiv16qi): Likewise.
27877         (altivec_vperm_<mode>v16q): Likewise.
27878         (altivec_vperm_<mode>_uns): Likewise.
27879         (vperm_v8hiv4si): Likewise.
27880         (vperm_v16qiv8hi): Likewise.
27882         * doc/md.texi (RS/6000 constraints): Document wo constraint.
27884 2016-01-04  Jakub Jelinek  <jakub@redhat.com>
27886         Update copyright years.
27888         * gcc.c (process_command): Update copyright notice dates.
27889         * gcov-dump.c (print_version): Ditto.
27890         * gcov.c (print_version): Ditto.
27891         * gcov-tool.c (print_version): Ditto.
27892         * gengtype.c (create_file): Ditto.
27893         * doc/cpp.texi: Bump @copying's copyright year.
27894         * doc/cppinternals.texi: Ditto.
27895         * doc/gcc.texi: Ditto.
27896         * doc/gccint.texi: Ditto.
27897         * doc/gcov.texi: Ditto.
27898         * doc/install.texi: Ditto.
27899         * doc/invoke.texi: Ditto.
27901 2016-01-04  Eric Botcazou  <ebotcazou@adacore.com>
27903         * config/arm/arm.c (aapcs_vfp_allocate_return_reg): Treat all integer
27904         modes larger than TImode as TImode if NEON is not enabled.
27906 2016-01-04  Eric Botcazou  <ebotcazou@adacore.com>
27908         PR target/69100
27909         * config/sparc/sparc.h (FUNCTION_ARG_REGNO_P): Return true in 64-bit
27910         mode for %f0-%f31 only if TARGET_FPU.
27912 2016-01-04  Eric Botcazou  <ebotcazou@adacore.com>
27914         PR target/69072
27915         * config/sparc/sparc.c (scan_record_type): Take into account subfields
27916         to compute the PACKED_P predicate.
27917         (function_arg_record_value): Minor tweaks.
27919 2016-01-04  Thomas Preud'homme  <thomas.preudhomme@arm.com>
27921         * doc/install.texi (--with-multilib-list): Describe the meaning of the
27922         option for arm*-*-* targets.
27924 2016-01-03  Sandra Loosemore  <sandra@codesourcery.com>
27926         * doc/extend.texi (Common Function Attributes): Move docs for
27927         MSP430-specific attributes to....
27928         (MSP430 Function Attributes): ...here.  Delete the redundant
27929         entries and copy-edit the remaining text.
27930         (MSP430 Variable Attributes): Use uniform format for index
27931         entries and add a cross-reference to the corresponding function
27932         attribute docs.
27934 2016-01-03  Vladimír Čunát  <vcunat@gmail.com>
27936         * doc/invoke.texi (RS/6000 and PowerPC Options): Fix
27937         -finite-math typo.
27938         (x86 Options): Likewise.
27940 2016-01-01  Sandra Loosemore  <sandra@codesourcery.com>
27942         PR 1078
27944         * extend.texi (Common Function Attributes) <no_stack_limit>: New.
27945         * invoke.texi (Code Gen Options) <-fno-stack-limit>: Add pointer
27946         to corresponding attribute.
27948 2016-01-01  Sandra Loosemore  <sandra@codesourcery.com>
27950         * doc/extend.texi (Common Function Attributes) <noplt>: Move
27951         to correct alphabetization of table.  Copy-edit and correct
27952         markup.
27953         <stack_protect>: Likewise.
27954         <target_clones>: Likewise.
27955         <simd>: Likewise.
27956         * doc/invoke.texi (Optimize Options) <-fstack-protector-explicit>:
27957         Correct punctuation.
27958         (Code Gen Options) <-fno-plt>: Copy-edit.
27960 2016-01-01  Bernd Edlinger  <bernd.edlinger@hotmail.de>
27962         PR target/68917
27963         * config/tilegx/tilegx.md (clzsi2): Don't create DI subregs of
27964         SI values.  Explicitly convert SI to DI and vice-versa.
27966 2016-01-01  Jakub Jelinek  <jakub@redhat.com>
27968         PR tree-optimization/69070
27969         * tree-ssa-math-opts.c (gimple_expand_builtin_pow): Only test
27970         REAL_VALUE_ISSIGNALING_NAN on arg0 if arg0 is a REAL_CST.
27972         PR sanitizer/69055
27973         * ubsan.c (ubsan_instrument_float_cast): Call
27974         initialize_sanitizer_builtins.
27976         PR target/69015
27977         * ifcvt.c (find_cond_trap): Give up if returnjump_p (jump).
27979 Copyright (C) 2016 Free Software Foundation, Inc.
27981 Copying and distribution of this file, with or without modification,
27982 are permitted in any medium without royalty provided the copyright
27983 notice and this notice are preserved.