Some fixes for profile test cases for autofdo
[official-gcc.git] / gcc / ChangeLog
blob134db049278c76744da1fad46dfd01dabc0c73a6
1 2016-07-13  Andi Kleen  <ak@linux.intel.com>
3         * value-prof.c (gimple_value_profile_transformations): Don't run
4         when auto_profile is on.
6 2016-07-13  Andi Kleen  <ak@linux.intel.com>
8         * auto-profile.c (update_inlined_ind_target,
9         afdo_indirect_call): Print information to dump file.
11 2016-07-13  Andrew Burgess  <andrew.burgess@embecosm.com>
13         * genrecog.c (special_predicate_operand_p): New function.
14         (predicate_name): Move function.
15         (validate_pattern): Don't warn about missing mode for all
16         define_special_predicate predicates.
18 2016-07-13  Bin Cheng  <bin.cheng@arm.com>
20         * tree-vect-data-refs.c (vect_no_alias_p): New function.
21         (vect_prune_runtime_alias_test_list): Call vect_no_alias_p to
22         resolve alias checks which are known at compilation time.
23         Truncate vector LOOP_VINFO_MAY_ALIAS_DDRS(loop_vinfo) if all
24         alias checks are resolved.  Move dump info for too many runtime
25         alias checks to here...
26         * tree-vect-loop.c (vect_analyze_loop_2): ...From here.
28 2016-07-13  Richard Biener  <rguenther@suse.de>
30         PR tree-optimization/24574
31         * tree-ssa-phiopt.c (absorbing_element_p): Pass in argument
32         position and add shift, rotate, divison and modulo support
33         for left zero.
34         (value_replacement): Pass in argument position to absorbing_element_p.
36 2016-07-13  Ilya Enkovich  <ilya.enkovich@intel.com>
38         PR ipa/71633
39         * ipa-inline-transform.c (inline_call): Support
40         instrumented thunks.
42 2016-07-13  Thomas Preud'homme  <thomas.preudhomme@arm.com>
44         * config/arm/arm.h (TARGET_HAVE_CBZ): Define.
45         (TARGET_IDIV): Set for all Thumb targets provided they have hardware
46         divide feature.
47         * config/arm/arm.md (divsi3): New unpredicable alternative for ARMv8-M
48         Baseline.  Make initial alternative TARGET_32BIT only.
49         (udivsi3): Likewise.
50         * config/arm/thumb1.md (thumb1_cbz): New define_insn.
51         * doc/sourcebuild.texi (arm_thumb1_cbz_ok): Document new effective
52         target.
54 2016-07-13  Thomas Preud'homme  <thomas.preudhomme@arm.com>
56         * config/arm/arm.h (TARGET_HAVE_MOVT): Include ARMv8-M as having MOVT.
57         * config/arm/arm.c (arm_arch_name): (const_ok_for_op): Check MOVT/MOVW
58         availability with TARGET_HAVE_MOVT.
59         (thumb_legitimate_constant_p): Strip the high part of a label_ref.
60         (thumb1_rtx_costs): Also return 0 if setting a half word constant and
61         MOVW is available and replace (unsigned HOST_WIDE_INT) INTVAL by
62         UINTVAL.
63         (thumb1_size_rtx_costs): Make set of half word constant also cost 1
64         extra instruction if MOVW is available.  Use a cost variable
65         incremented by COSTS_N_INSNS (1) when the condition match rather than
66         returning an arithmetic expression based on COSTS_N_INSNS.  Make
67         constant with bottom half word zero cost 2 instruction if MOVW is
68         available.
69         * config/arm/arm.md (define_attr "arch"): Add v8mb.
70         (define_attr "arch_enabled"): Set to yes if arch value is v8mb and
71         target is ARMv8-M Baseline.
72         (arm_movt): New unpredicable alternative for ARMv8-M Baseline.
73         (arm_movtas_ze): Likewise.
74         * config/arm/thumb1.md (thumb1_movdi_insn): Add ARMv8-M Baseline only
75         alternative for constants satisfying j constraint.
76         (thumb1_movsi_insn): Likewise.
77         (movsi splitter for K alternative): Tighten condition to not trigger
78         if movt is available and j constraint is satisfied.
79         (Pe immediate splitter): Likewise.
80         (thumb1_movhi_insn): Add ARMv8-M Baseline only alternative for
81         constant fitting in an halfword to use MOVW.
82         * doc/sourcebuild.texi (arm_thumb1_movt_ok): Document new ARM
83         effective target.
85 2016-07-13  Richard Biener  <rguenther@suse.de>
87         PR middle-end/71104
88         * gimplify.c (gimplify_modify_expr): Gimplify the RHS before
89         gimplifying the LHS.  Make sure to gimplify a returning twice
90         call LHS without using SSA names.
92 2016-07-12  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
94         * tree-data-ref.c (find_data_references_in_stmt): Remove
95         unnecessary call to vec::release.
96         (graphite_find_data_references_in_stmt): Likewise.
97         * tree-ssa-alias.c (nonoverlapping_component_refs_of_decl_p): Likewise.
98         * tree-vect-stmts.c (vectorizable_condition): Likewise.
100 2016-07-12  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
102         * cfgexpand.c (expand_used_vars): Make the type of a local variable auto_vec.
103         * genmatch.c (lower_for): Likewise.
104         * haifa-sched.c (haifa_sched_init): Likewise.
105         (add_to_speculative_block): Likewise.
106         (create_check_block_twin): Likewise.
107         * predict.c (handle_missing_profiles): Likewise.
108         * tree-data-ref.c (loop_nest_has_data_refs): Likewise.
109         * tree-diagnostic.c (maybe_unwind_expanded_macro_loc): Likewise.
110         * tree-ssa-loop-niter.c (discover_iteration_bound_by_body_walk): Likewise.
111         (maybe_lower_iteration_bound): Likewise.
112         * tree-ssa-sccvn.c (DFS): Likewise.
113         * tree-stdarg.c (reachable_at_most_once): Likewise.
114         * tree-vect-stmts.c (vectorizable_conversion): Likewise.
115         (vectorizable_store): Likewise.
117 2016-07-12  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
119         * tree-ssa-sccvn.c (sccvn_dom_walker::~sccvn_dom_walker): remove.
120         (sccvn_dom_walker): make cond_stack an auto_vec.
122 2016-07-12  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
124         * ree.c (struct ext_state): Make type of members auto_vec.
125         (find_and_remove_re): Adjust.
127 2016-07-12  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
129         * cfgexpand.c (struct stack_vars_data): Make type of fields
130         auto_vec.
131         (expand_used_vars): Adjust.
133 2016-07-12  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
135         * ipa.c (record_cdtor_fn): Adjust.
136         (build_cdtor_fns): Likewise.
137         (ipa_cdtor_merge): Make static_ctors and static_dtors local
138         variables.
140 2016-07-12  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
142         * genextract.c (struct accum_extract): Add constructor and make
143         members auto_vec.
144         (gen_insn): Adjust.
146 2016-07-12  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
148         * tree.c (struct free_lang_data_d): Add constructor and change
149         types of members to ones that automatically manage resources.
150         (fld_worklist_push): Adjust.
151         (find_decls_types): Likewise.
152         (find_decls_types_in_eh_region): Likewise.
153         (free_lang_data_in_cgraph): Stop manually creating and
154         destroying members of free_lang_data_d.
156 2016-07-13  Uros Bizjak  <ubizjak@gmail.com>
158         PR rtl-optimization/68961
159         * config/i386/sse.md (movsd/movhpd to movupd peephole2s): Add new
160         peephole variant.  Use sse_reg_operand predicates.
162 2016-07-12  Uros Bizjak  <ubizjak@gmail.com>
164         * config/i386/predicates.md (x86_64_immediate_operand)
165         <case CONST_INT>: Remove unneeded truncation to DImode.
166         <case CONST>: Ditto.
167         (x86_64_zext_immediate_operand) <case CONST>: Ditto.
169 2016-07-12  Michael Meissner  <meissner@linux.vnet.ibm.com>
171         PR target/71805
172         * config/rs6000/altivec.md (altivec_vperm_<mode>_internal):
173         The xxperm and xxpermr instructions require that the 2nd input
174         operand overlap with the output operand, and not the 1st.
175         (altivec_vperm_v8hiv16qi): Likewise.
176         (altivec_vperm_<mode>_uns_internal): Likewise.
177         (altivec_vpermr_<mode>_internal): Likewise.
178         (vperm_v8hiv4si): Likewise.
179         (vperm_v16qiv8hi): Likewise.
181 2016-07-12  Martin Liska  <mliska@suse.cz>
183         * params.def: Add avg-loop niter.
184         * tree-ssa-loop-ivopts.c (avg_loop_niter): Use the param.
185         * cfgloopanal.c (expected_loop_iterations_unbounded): Likewise.
186         * doc/invoke.texi: Document the new parameter.
188 2016-07-12  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
190         PR middle-end/71700
191         * expr.c (store_constructor): Mask sign-extended bits when widening
192         sub-word constructor element at the start of a word.
194 2016-07-12  Martin Liska  <mliska@suse.cz>
196         * Makefile.in: Append rule for params-options.h.
197         * params-options.h: New file.
199 2016-07-12  Martin Liska  <mliska@suse.cz>
201         * ira-build.c (mark_loops_for_removal): Properly iterate
202         loops.
204 2016-07-12  Steven Bosscher  <steven@gcc.gnu.org>
205             Richard Biener  <rguenther@suse.de>
207         PR tree-optimization/23286
208         PR tree-optimization/70159
209         * doc/invoke.texi: Document -fcode-hoisting.
210         * common.opt (fcode-hoisting): New flag.
211         * opts.c (default_options_table): Enable -fcode-hoisting at -O2+.
212         * tree-ssa-pre.c (pre_stats): Add hoist_insert.
213         (do_regular_insertion): Rename to ...
214         (do_pre_regular_insertion): ... this and amend general comments
215         on insertion strathegy.
216         (do_partial_partial_insertion): Rename to ...
217         (do_pre_partial_partial_insertion): ... this.
218         (do_hoist_insertion): New function.
219         (insert_aux): Take flags on whether to do PRE and/or hoist insertion
220         and call do_hoist_insertion properly.
221         (insert): Adjust.
222         (pass_pre::gate): Enable also if -fcode-hoisting is enabled.
223         (pass_pre::execute): Register hoist_insert stats.
225 2016-07-12  Jakub Jelinek  <jakub@redhat.com>
227         PR middle-end/71716
228         * gimple-fold.c (optimize_atomic_compare_exchange_p): Return false
229         for SCALAR_FLOAT_TYPE_P type of expected var, or if TYPE_PRECISION
230         is different from mode's bitsize.  Small cleanup.
232 2016-07-12  Richard Biener  <rguenther@suse.de>
234         PR rtl-optimization/68961
235         * fwprop.c (propagate_rtx): Allow SUBREGs of VEC_CONCAT and CONCAT
236         to simplify to a non-constant.
238 2016-07-11  Jakub Jelinek  <jakub@redhat.com>
240         PR middle-end/71758
241         * omp-low.c (expand_omp_target): Gimplify device.
243         PR tree-optimization/71823
244         * tree-vect-stmts.c (vectorizable_operation): Use vect_get_vec_defs
245         to get vec_oprnds2 from op2.
247 2016-07-11  Uros Bizjak  <ubizjak@gmail.com>
249         * config/i386/predicates.md (x86_64_immediate_operand) <case CONST>:
250         Hoist common subexpressions.
251         (x86_64_zext_immediate_operand) <case CONST>: Ditto.
253 2016-07-11  Pat Haugen  <pthaugen@us.ibm.com>
255         PR target/71800
256         * config/rs6000/rs6000.md (stfiwx): Change constraint to 'wu' to
257         prevent generation of 'stxsiwx' on pre Power8 hardware.
259 2016-07-11  David Malcolm  <dmalcolm@redhat.com>
261         * input.c: Include cpplib.h.
262         (selftest::temp_source_file): New class.
263         (selftest::temp_source_file::temp_source_file): New ctor.
264         (selftest::temp_source_file::~temp_source_file): New dtor.
265         (selftest::should_have_column_data_p): New function.
266         (selftest::test_should_have_column_data_p): New function.
267         (selftest::temp_line_table): New class.
268         (selftest::temp_line_table::temp_line_table): New ctor.
269         (selftest::temp_line_table::~temp_line_table): New dtor.
270         (selftest::test_accessing_ordinary_linemaps): Add case_ param; use
271         it to create a temp_line_table.
272         (selftest::assert_loceq): Only verify LOCATION_COLUMN for
273         locations that are known to have column data.
274         (selftest::line_table_case): New struct.
275         (selftest::test_reading_source_line): Move tempfile handling
276         to class temp_source_file.
277         (ASSERT_TOKEN_AS_TEXT_EQ): New macro.
278         (selftest::assert_token_loc_eq): New function.
279         (ASSERT_TOKEN_LOC_EQ): New macro.
280         (selftest::test_lexer): New function.
281         (selftest::boundary_locations): New array.
282         (selftest::input_c_tests): Call test_should_have_column_data_p.
283         Loop over a test matrix of interesting values of location and
284         default_range_bits, calling test_lexer on each case in the matrix.
285         Move call to test_accessing_ordinary_linemaps into the matrix.
286         * selftest.h (ASSERT_EQ): Reimplement in terms of...
287         (ASSERT_EQ_AT): New macro.
289 2016-07-11  H.J. Lu  <hongjiu.lu@intel.com>
291         PR target/71801
292         * config/i386/i386.c (timode_scalar_chain::fix_debug_reg_uses):
293         Don't convert TImode in debug insn.
295 2016-07-11  Bernd Edlinger  <bernd.edlinger@hotmail.de>
297         Convert TYPE_ALIGN_OK to a TYPE_LANG_FLAG.
298         * tree-core.h (tree_base::nothrow_flag): Adjust comment.
299         (tree_type_common::lang_flag_7): New.
300         (tree_type_common::spare): Reduce size.
301         * tree.h (TYPE_ALIGN_OK): Remove.
302         (TYPE_LANG_FLAG_7): New.
303         (get_inner_reference): Adjust header.
304         * print-tree.c (print_node): Adjust.
305         * expr.c (get_inner_reference): Remove parameter keep_aligning.
306         (get_bit_range, expand_assignment, expand_expr_addr_expr_1): Adjust
307         calls to get_inner_reference.
308         (expand_expr_real_1): Adjust call to get_inner_reference.  Remove
309         handling of TYPE_ALIGN_OK.
310         * builtins.c (get_object_alignment_2): Adjust call to
311         get_inner_reference.  Remove handling of VIEW_CONVERT_EXPR.
312         * emit-rtl.c (set_mem_attributes_minus_bitpos): Remove handling of
313         TYPE_ALIGN_OK.
314         * asan.c (instrument_derefs): Adjust calls to get_inner_reference.
315         * cfgexpand.c (expand_debug_expr): Likewise.
316         * dbxout.c (dbxout_expand_expr): Likewise.
317         * dwarf2out.c (loc_list_for_address_of_addr_expr_of_indirect_ref,
318         loc_list_from_tree, fortran_common): Likewise.
319         * fold-const.c (optimize_bit_field_compare,
320         decode_field_reference, fold_unary_loc, fold_comparison,
321         split_address_to_core_and_offset): Likewise.
322         * gimple-laddress.c (execute): Likewise.
323         * gimple-ssa-strength-reduction.c (slsr_process_ref): Likewise.
324         * gimplify.c (gimplify_scan_omp_clauses): Likewise.
325         * hsa-gen.c (gen_hsa_addr): Likewise.
326         * simplifx-rtx.c (delegitimize_mem_from_attrs): Likewise.
327         * tsan.c (instrument_expr): Likewise.
328         * ubsan.c (instrument_bool_enum_load, instrument_object_size): Likewise.
329         * tree.c (verify_type_variant): Remove handling of TYPE_ALIGN_OK.
330         * tree-affine.c (tree_to_aff_combination,
331         get_inner_reference_aff): Adjust calls to get_inner_reference.
332         * tree-data-ref.c (split_constant_offset_1,
333         dr_analyze_innermost): Likewise.
334         * tree-scalar-evolution.c (interpret_rhs_expr): Likewise.
335         * tree-sra.c (ipa_sra_check_caller): Likewise.
336         * tree-ssa-loop-ivopts.c (split_address_cost): Likewise.
337         * tree-ssa-math-opts.c (find_bswap_or_nop_load,
338         bswap_replace): Likewise.
339         * tree-vect-data-refs.c (vect_check_gather,
340         vect_analyze_data_refs): Likewise.
341         * config/mips/mips.c (r10k_safe_mem_expr_p): Likewise.
342         * config/pa/pa.c (pa_emit_move_sequence): Remove handling of
343         TYPE_ALIGN_OK.
345 2016-07-11  David Malcolm  <dmalcolm@redhat.com>
347         * Makefile.in (selftest-valgrind): New phony target.
348         * function-tests.c (selftest::build_cfg): Delete pass instances
349         created by the test.
350         (selftest::convert_to_ssa): Likewise.
351         (selftest::test_expansion_to_rtl): Likewise.
352         * tree-cfg.c (selftest::test_linear_chain): Release dominator
353         vectors.
354         (selftest::test_diamond): Likewise.
356 2016-07-11  Richard Biener  <rguenther@suse.de>
358         PR tree-optimization/71816
359         * tree-ssa-pre.c (compute_avail): Adjust alignment of ref rather
360         than replacing all of its operands.
362 2016-07-11  Alan Modra  <amodra@gmail.com>
364         * config/rs6000/rs6000.md (UNSPEC_DOLOOP): New unspec.
365         (ctr<mode>): Add unspec.
366         (ctr<mode>_internal*): Likewise.
368 2016-07-08  James Bowman  <james.bowman@ftdichip.com>
370         * config/ft32/ft32.c (ft32_elf_encode_section_info): New function.
371         * config/ft32/ft32.h (ASM_OUTPUT_SYMBOL_REF): New function.
373 2016-07-08  Vladimir Makarov  <vmakarov@redhat.com>
375         PR rtl-optimization/71621
376         * lra-constraints.c (process_alt_operands): Check combination of
377         reg class and mode.
379 2016-07-08  Jason Merrill  <jason@redhat.com>
380             Richard Biener  <rguenther@suse.de>
382         P0145: Refining Expression Order for C++.
383         * gimplify.c (initial_rhs_predicate_for): New.
384         (gimplfy_modify_expr): Gimplify RHS before LHS.
386 2016-07-08  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
388         PR target/71297
389         * config/rs6000/rs6000-c.c (altivec_resolve_overloaded_builtin):
390         Allow standard error handling to take over when a wrong number
391         of arguments is presented to __builtin_vec_ld () or
392         __builtin_vec_st ().
394 2016-07-08  Jiong Wang  <jiong.wang@arm.com>
396         * config/aarch64/aarch64-simd-builtins.def (smax): Remove float
397         variants.
398         (smin): Likewise.
399         (fmax): New entry.
400         (fmin): Likewise.
401         * config/aarch64/arm_neon.h (vmaxnm_f32): Use
402         __builtin_aarch64_fmaxv2sf.
403         (vmaxnmq_f32): Likewise.
404         (vmaxnmq_f64): Likewise.
405         (vminnm_f32): Likewise.
406         (vminnmq_f32): Likewise.
407         (vminnmq_f64): Likewise.
409 2016-07-08  Michael Meissner  <meissner@linux.vnet.ibm.com>
411         PR target/71806
412         * config/rs6000/rs6000-cpus.def (ISA_3_0_MASKS_SERVER): Do not
413         enable -mfloat128-hardware by default.
414         (ISA_3_0_MASKS_IEEE): New macro to give all of the VSX options
415         that IEEE 128-bit hardware support needs.
416         * config/rs6000/rs6000.c (rs6000_option_override_internal): If
417         -mcpu=power9 -mfloat128, enable -mfloat128-hardware by default.
418         Use ISA_3_0_MASKS_IEEE as the set of options that IEEE 128-bit
419         floating point requires.
420         * doc/invoke.texi (RS/6000 and PowerPC Options): Document
421         -mfloat128 and -mfloat128-hardware changes.
423 2016-07-08  Alan Hayward  <alan.hayward@arm.com>
425         PR tree-optimization/71667
426         * tree-vect-loop.c (vectorizable_live_operation): ignore DEBUG stmts
428 2016-07-08  Martin Liska  <mliska@suse.cz>
430         PR middle-end/71606
431         * fold-const.c (fold_convertible_p): As COMPLEX_TYPE
432         folding produces SAVE_EXPRs, thus return false for the type.
434 2016-07-07  Martin Liska  <mliska@suse.cz>
436         * file-find.c (remove_prefix): New function.
437         * file-find.h (remove_prefix): Declare the function.
438         * gcc-ar.c (main): Skip a folder of the wrapper if
439         a wrapped binary would point to the same file.
441 2016-07-07  Jan Hubicka  <jh@suse.cz>
443         * tree-scalar-evolution.c (iv_can_overflow_p): export.
444         * tree-scalar-evolution.h (iv_can_overflow_p): Declare.
445         * tree-ssa-loop-ivopts.c (alloc_iv): Use it.
447 2016-07-07  Ilya Enkovich  <ilya.enkovich@intel.com>
449         PR ipa/71624
450         * ipa-inline-analysis.c (compute_inline_parameters): Set
451         local.can_change_signature to false for intrumentation
452         thunk callees.
454 2016-07-07  Thomas Preud'homme  <thomas.preudhomme@arm.com>
456         * config/arm/arm.h (TARGET_USE_MOVT): Check MOVT/MOVW availability
457         with TARGET_HAVE_MOVT.
458         (TARGET_HAVE_MOVT): Define.
459         * config/arm/arm.c (const_ok_for_op): Check MOVT/MOVW
460         availability with TARGET_HAVE_MOVT.
461         * config/arm/arm.md (arm_movt): Use TARGET_HAVE_MOVT to check MOVT
462         availability.
463         (addsi splitter): Use TARGET_THUMB && TARGET_HAVE_MOVT rather than
464         TARGET_THUMB2.
465         (symbol_refs movsi splitter): Remove TARGET_32BIT check.
466         (arm_movtas_ze): Use TARGET_HAVE_MOVT to check MOVT availability.
467         * config/arm/constraints.md (define_constraint "j"): Use
468         TARGET_HAVE_MOVT to check MOVT availability.
470 2016-07-07  Thomas Preud'homme  <thomas.preudhomme@arm.com>
472         * config/arm/arm-protos.h: Reindent FL_FOR_* macro definitions.
474 2016-07-07  Thomas Preud'homme  <thomas.preudhomme@arm.com>
476         * config/arm/arm-arches.def (armv8-m.base): Define new architecture.
477         (armv8-m.main): Likewise.
478         (armv8-m.main+dsp): Likewise.
479         * config/arm/arm-protos.h (FL_FOR_ARCH8M_BASE): Define.
480         (FL_FOR_ARCH8M_MAIN): Likewise.
481         * config/arm/arm-tables.opt: Regenerate.
482         * config/arm/bpabi.h: Add armv8-m.base, armv8-m.main and
483         armv8-m.main+dsp to BE8_LINK_SPEC.
484         * config/arm/arm.h (TARGET_HAVE_LDACQ): Exclude ARMv8-M.
485         (enum base_architecture): Add BASE_ARCH_8M_BASE and BASE_ARCH_8M_MAIN.
486         * config/arm/arm.c (arm_arch_name): Increase size to work with ARMv8-M
487         Baseline and Mainline.
488         (arm_option_override_internal): Also disable arm_restrict_it when
489         !arm_arch_notm.  Update comment for -munaligned-access to also cover
490         ARMv8-M Baseline.
491         (arm_file_start): Increase buffer size for printing architecture name.
492         * doc/invoke.texi: Document architectures armv8-m.base, armv8-m.main
493         and armv8-m.main+dsp.
494         (mno-unaligned-access): Clarify that this is disabled by default for
495         ARMv8-M Baseline architectures as well.
497 2016-07-07  Thomas Preud'homme  <thomas.preudhomme@arm.com>
499         * config/arm/elf.h: Use __ARM_ARCH_ISA_THUMB and __ARM_ARCH_ISA_ARM to
500         decide whether to prevent some libgcc routines being included for some
501         multilibs rather than __ARM_ARCH_6M__ and add comment to indicate the
502         link between this condition and the one in
503         libgcc/config/arm/lib1func.S.
505 2016-07-07  Richard Biener  <rguenther@suse.de>
507         * tree-ssa-pre.c: Include alias.h.
508         (compute_avail): If we have multiple VN_REFERENCEs with the
509         same hashtable entry adjust that to make it a valid replacement
510         for all of them with respect to alignment and aliasing
511         when doing insertion.
512         * tree-ssa-sccvn.h (vn_reference_operands_for_lookup): Declare.
513         * tree-ssa-sccvn.c (vn_reference_operands_for_lookup): New function.
515 2016-07-06  Segher Boessenkool  <segher@kernel.crashing.org>
517         PR target/70098
518         PR target/71763
519         * config/rs6000/rs6000.md (*ctr<mode>_internal1, *ctr<mode>_internal2,
520         *ctr<mode>_internal5, *ctr<mode>_internal6): Add *wi to the output
521         constraint.
523 2016-07-06  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
525         * var-tracking.c (struct adjust_mem_data): Make side_effects a vector.
526         (adjust_mems): Adjust.
527         (adjust_insn): Likewise.
528         (prepare_call_arguments): Likewise.
530 2016-07-06  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
532         * gcse.c (struct ls_expr): Make stores field a vector.
533         (ldst_entry): Adjust.
534         (free_ldst_entry): Likewise.
535         (print_ldst_list): Likewise.
536         (compute_ld_motion_mems): Likewise.
537         (update_ld_motion_stores): Likewise.
539 2016-07-06  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
541         * gcse.c (struct ls_expr): Remove loads field.
542         (ldst_entry): Adjust.
543         (free_ldst_entry): Likewise.
544         (print_ldst_list): Likewise.
545         (compute_ld_motion_mems): Likewise.
547 2016-07-06  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
549         * store-motion.c (struct st_expr): Make antic_stores a vector.
550         (st_expr_entry): Adjust.
551         (free_st_expr_entry): Likewise.
552         (print_store_motion_mems): Likewise.
553         (find_moveable_store): Likewise.
554         (compute_store_table): Likewise.
555         (remove_reachable_equiv_notes): Likewise.
556         (replace_store_insn): Likewise.
557         (build_store_vectors): Likewise.
559 2016-07-06  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
561         * config/arm/driver-arm.c (arm_cpu_table): Add entries for cortex-a32,
562         cortex-a35, cortex-a53, cortex-a57, cortex-a72, cortex-a73.
564 2016-07-06  Yuri Rumyantsev  <ysrumyan@gmail.com>
566         PR tree-optimization/71518
567         * tree-vect-data-refs.c (vect_compute_data_ref_alignment): Adjust
568         misalign also for outer loops with negative step.
570 2016-07-06  Wilco Dijkstra  <wdijkstr@arm.com>
572         * config/arm/cortex-a53.md: Use final_presence_set for in-order.
573         (cortex_a53_shift): Add mov_shift.
574         (cortex_a53_shift_reg): Add new reservation for register shifts.
575         (cortex_a53_alu): Remove bfm.
576         (cortex_a53_alu_shift): Add bfm, remove mov_shift.
577         (cortex_a53_alu_extr): Add new reservation for EXTR.
578         (bypasses): Improve bypass modelling.
580 2016-07-06  Senthil Kumar Selvaraj  <senthil_kumar.selvaraj@atmel.com>
582         PR target/50739
583         * config/avr/avr.c (avr_asm_select_section): Strip off
584         SECTION_DECLARED from flags when calling get_section.
586 2016-07-06  Richard Sandiford  <richard.sandiford@arm.com>
588         * tree-vectorizer.h (vect_memory_access_type): Add
589         VMAT_INVARIANT, VMAT_CONTIGUOUS_DOWN and VMAT_CONTIGUOUS_REVERSED.
590         * tree-vect-stmts.c (compare_step_with_zero): New function.
591         (perm_mask_for_reverse): Move further up file.
592         (get_group_load_store_type): Stick to VMAT_ELEMENTWISE if the
593         step is negative.
594         (get_negative_load_store_type): New function.
595         (get_load_store_type): Call it.  Add an ncopies argument.
596         (vectorizable_mask_load_store): Update call accordingly and
597         remove tests for negative steps.
598         (vectorizable_store, vectorizable_load): Likewise.  Handle new
599         memory_access_types.
601 2016-07-06  Richard Sandiford  <richard.sandiford@arm.com>
603         * tree-vectorizer.h (vect_memory_access_type): New enum.
604         (_stmt_vec_info): Add a memory_access_type field.
605         (STMT_VINFO_MEMORY_ACCESS_TYPE): New macro.
606         (vect_model_store_cost): Take an access type instead of a boolean.
607         (vect_model_load_cost): Likewise.
608         * tree-vect-slp.c (vect_analyze_slp_cost_1): Update calls to
609         vect_model_store_cost and vect_model_load_cost.
610         * tree-vect-stmts.c (vec_load_store_type): New enum.
611         (vect_model_store_cost): Take an access type instead of a
612         store_lanes_p boolean.  Simplify tests.
613         (vect_model_load_cost): Likewise, but for load_lanes_p.
614         (get_group_load_store_type, get_load_store_type): New functions.
615         (vectorizable_store): Use get_load_store_type.  Record the access
616         type in STMT_VINFO_MEMORY_ACCESS_TYPE.
617         (vectorizable_load): Likewise.
618         (vectorizable_mask_load_store): Likewise.  Replace is_store
619         variable with vls_type.
621 2016-07-06  Richard Sandiford  <richard.sandiford@arm.com>
623         * tree-vectorizer.h (vect_grouped_load_supported): Add a
624         single_element_p parameter.
625         * tree-vect-data-refs.c (vect_grouped_load_supported): Likewise.
626         Check the PR65518 case here rather than in vectorizable_load.
627         * tree-vect-loop.c (vect_analyze_loop_2): Update call accordignly.
628         * tree-vect-stmts.c (vectorizable_load): Likewise.
630 2016-07-06  Richard Sandiford  <richard.sandiford@arm.com>
632         * tree-vectorizer.h (gather_scatter_info): New structure.
633         (vect_check_gather_scatter): Return a bool rather than a decl.
634         Replace return-by-pointer arguments with a single
635         gather_scatter_info *.
636         * tree-vect-data-refs.c (vect_check_gather_scatter): Likewise.
637         (vect_analyze_data_refs): Update call accordingly.
638         * tree-vect-stmts.c (vect_mark_stmts_to_be_vectorized): Likewise.
639         (vectorizable_mask_load_store): Likewise.  Also record the
640         offset dt and vectype in the gather_scatter_info.
641         (vectorizable_store): Likewise.
642         (vectorizable_load): Likewise.
644 2016-07-06  Richard Sandiford  <richard.sandiford@arm.com>
646         * tree-vect-stmts.c (vect_model_store_cost): For non-SLP
647         strided groups, use the cost of N scalar accesses instead
648         of ncopies vector accesses.
649         (vect_model_load_cost): Likewise.
651 2016-07-06  Richard Sandiford  <richard.sandiford@arm.com>
653         * tree-vect-stmts.c (vect_cost_group_size): Delete.
654         (vect_model_store_cost): Avoid calling it.  Use first_stmt_p
655         variable to indicate when once-per-group costs are being used.
656         (vect_model_load_cost): Likewise.  Fix comment and misindented code.
658 2016-07-06  Richard Sandiford  <richard.sandiford@arm.com>
660         * tree-vect-stmts.c (vectorizable_load): Remove unnecessary
661         peeling-for-gaps condition.
663 2016-07-06  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
665         * config/s390/s390.c (s390_expand_vec_init): Force initializer
666         element to register if it doesn't match general_operand.
668 2016-07-05  Michael Meissner  <meissner@linux.vnet.ibm.com>
669             Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
671         * config/rs6000/rs6000-protos.h (rs6000_split_signbit): New
672         prototype.
673         * config/rs6000/rs6000.c (rs6000_split_signbit): New function.
674         * config/rs6000/rs6000.md (UNSPEC_SIGNBIT): New constant.
675         (SIGNBIT): New mode iterator.
676         (Fsignbit): New mode attribute.
677         (signbit<mode>2): Change operand1 to match FLOAT128 instead of
678         IBM128; dispatch to gen_signbit{kf,tf}2_dm for __float128
679         when direct moves are available.
680         (signbit<mode>2_dm): New define_insn_and_split).
681         (signbit<mode>2_dm2): New define_insn.
683 2016-07-05  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
685         PR rtl-optimization/71594
686         * ifcvt.c (noce_convert_multiple_sets): Wrap new_val or old_val
687         into subregs of appropriate mode before trying to emit a conditional
688         move.
690 2016-07-05  Jan Hubicka  <jh@suse.cz>
692         * tree-scalar-evolution.c (iv_can_overflow_p): New function.
693         (simple_iv): Use it.
695 2016-07-05  Jan Hubicka  <jh@suse.cz>
697         * tree-ssa-loop-niter.c (nowrap_type_p): Use ANY_INTEGRAL_TYPE_P.
699 2016-07-05  Jiong Wang  <jiong.wang@arm.com>
701         * lra-constraints.c (process_alt_operands): Don't add spilling cost for
702         "offmemok".
704 2016-07-05  Jan Hubicka  <jh@suse.cz>
706         * tree-scalar-evoluiton.c (simple_iv): Use nowrap_type to check if
707         IV can overflow.
709 2016-07-05  Richard Biener  <rguenther@suse.de>
711         * gimple-ssa-split-paths.c (find_block_to_duplicate_for_splitting_pa):
712         Handle empty else block.
713         (is_feasible_trace): Likewise.
714         (split_paths): Likewise.
716 2016-07-05  Richard Biener  <rguenther@suse.de>
718         * tree-loop-distribution.c (distribute_loop): Fix issue with
719         the cost model loop.
721 2016-07-05  Christophe Lyon  <christophe.lyon@linaro.org>
723         * config/arm/neon-testgen.ml: Delete.
724         * config/arm/neon.ml: Delete.
726 2016-07-04  Jakub Jelinek  <jakub@redhat.com>
728         PR c++/71739
729         * tree.c (attribute_value_equal): Use get_attribute_name instead of
730         directly using TREE_PURPOSE.
732 2016-07-04  Jiong Wang  <jiong.wang@arm.com>
734         * config/aarch64/aarch64.h: Rename "ARMv8.1" to "ARMv8.1-A".
735         * config/aarch64/aarch64_neon.h: Likewise.
736         * config/aarch64/arm_neon.h: Likewise.
737         * config/aarch64/atomics.md: Likewise.
738         * config/aarch64/aarch64-simd-builtins.def: Likewise.
739         * doc/invoke.texi: Likewise.
741 2016-07-04  Dominik Vogt  <vogt@linux.vnet.ibm.com>
743         * config/s390/s390.md: Add "z13" cpu_facility.
744         ("*mov<mode>cc"): Add support for z13 instructions lochi and locghi.
745         * config/s390/predicates.md ("loc_operand"): New predicate for "load on
746         condition" type instructions.
748 2016-07-04  Dominik Vogt  <vogt@linux.vnet.ibm.com>
749             Jeff Law  <law@redhat.com>
751         * explow.c (allocate_dynamic_stack_space): Simplify knowing that
752         MUST_ALIGN was always true and extra_align ist always BITS_PER_UNIT.
754 2016-07-04  Yuri Rumyantsev  <ysrumyan@gmail.com>
756         * config/i386/i386.c (ix86_expand_vec_perm): Add handle one-operand
757         permutation for TARGET_AVX512F.
758         (ix86_expand_vec_one_operand_perm_avx512): New function.
759         (expand_vec_perm_1): Invoke introduced function.
760         * tree-vect-loop.c (vect_transform_loop): Clear-up safelen value since
761         it may be not valid after vectorization.
763 2016-07-04  Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>
765         PR target/63874
766         * config/aarch64/aarch64.c (aarch64_classify_symbol): Fix
767         typo in comment.  Only force to memory if it is a weak
768         external reference.
770 2016-07-04  Matthew Wahab  <matthew.wahab@arm.com>
771             Jiong Wang  <jiong.wang@arm.com>
773         * config/aarch64/aarch64-arches.def: Add "armv8.2-a".
774         * config/aarch64/aarch64.h (AARCH64_FL_V8_2): New.
775         (AARCH64_FL_F16): New.
776         (AARCH64_FL_FOR_ARCH8_2): New.
777         (AARCH64_ISA_8_2): New.
778         (AARCH64_ISA_F16): New.
779         (TARGET_FP_F16INST): New.
780         (TARGET_SIMD_F16INST): New.
781         * config/aarch64/aarch64-option-extensions.def ("fp16"): New entry.
782         ("fp"): Disabling "fp" also disables "fp16".
783         * config/aarch64/aarch64-c.c (arch64_update_cpp_builtins):
784         Conditionally define __ARM_FEATURE_FP16_SCALAR_ARITHMETIC
785         and __ARM_FEATURE_FP16_VECTOR_ARITHMETIC.
786         * doc/invoke.texi (AArch64 Options): Document "armv8.2-a" and "fp16".
788 2016-07-04  Jan Beulich  <jbeulich@suse.com>
790         * gcc.c (default_compilers["@c-header"]): Conditionalize "-o".
792 2016-07-01  Michael Meissner  <meissner@linux.vnet.ibm.com>
794         PR target/71720
795         * config/rs6000/vsx.md (vsx_splat_v4sf_internal): When splitting
796         the insns, use an insn form that does not adjust the offset on
797         little endian systems.
799 2016-07-01  Jan Beulich  <jbeulich@suse.com>
801         * varasm.c (get_variable_section): Validate initializer in
802         named .bss-like sections.
804 2016-07-01  Kelvin Nilsen  <kelvin@gcc.gnu.org>
806         * config/rs6000/altivec.md (*altivec_vpermr_<mode>_internal):
807         Exchange the order of the second and third operands in the vpermr
808         instruction tmeplate.
810 2016-07-01  Peter Bergner  <bergner@vnet.ibm.com>
812         PR target/71698
813         * config/rs6000/rs6000.c (rs6000_secondary_reload_simple_move):
814         Disallow TDmode values.
816 2016-07-01  Alan Modra  <amodra@gmail.com>
818         PR rtl-optimization/71709
819         * ira-lives.c (find_call_crossed_cheap_reg): Exit loop on arg reg
820         being set, not referenced.
822 2016-07-01  Yuri Rumyantsev  <ysrumyan@gmail.com>
824         PR tree-optimization/70729
825         * tree-vectorizer.c (adjust_simduid_builtins): Nullify safelen field
826         of loop since it can be not valid after transformation.
828 2016-07-01  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
830         * config/arm/arm.c (thumb_reload_in_hi): Delete.
831         * config/arm/arm-protos.h (thumb_reload_in_hi): Delete prototype.
833 2016-07-01  Eric Botcazou  <ebotcazou@adacore.com>
835         * config/arm/arm.c (arm_function_ok_for_sibcall): Add another check
836         for NULL decl.
838 2016-06-30  Michael Meissner  <meissner@linux.vnet.ibm.com>
840         PR target/71677
841         * config/rs6000/constraints.md (wY constraint): New constraint to
842         match the requirements for the LXSD and STXSD instructions.
843         * config/rs6000/predicates.md (offsettable_mem_14bit_operand): New
844         predicate to match the requirements for the LXSD and STXSD
845         instructions.
846         * config/rs6000/rs6000.md (mov<mode>_hardfloat32, FMOVE64 case):
847         Use constaint wY for LXSD/STXSD instructions instead of 'o' or 'Y'
848         to make sure that the bottom 2 bits of offset are 0, the address
849         form is offsettable, and no updating is done in the address mode.
850         (mov<mode>_hardfloat64, FMOVE64 case): Likewise.
851         (movdi_internal32): Likewise
852         (movdi_internal64): Likewise.
854 2016-06-30  Jakub Jelinek  <jakub@redhat.com>
856         PR tree-optimization/71707
857         * tree-ssa-strlen.c (get_stridx_plus_constant): Handle already present
858         strinfo even for ADDR_EXPR ptr.
860 2016-06-30  Kelvin Nilsen  <kelvin@gcc.gnu.org>
862         * config/rs6000/altivec.md (darn_32): Change the condition to
863         TARGET_P9_MISC instead of TARGET_MODULO.
864         (darn_raw): Replace TARGET_MODULO with TARGET_P9_MISC in the
865         condition expression.
866         (darn): Replace TARGET_MODULO with TARGET_P9_MISC in the
867         condition expression.
868         * config/rs6000/dfp.md (UNSPEC_DTSTSFI): New unspec constant.
869         (DFP_TEST): New code iterator.
870         (dfptstsfi_<code>_mode>): New define_expand.
871         (*dfp_sgnfcnc_<mode>): New define_insn.
872         * config/rs6000/rs6000-builtin.def (BU_P9_MISC_0): Move this macro
873         definition next to BU_P9_MISC_1 definition and change the MASK
874         value to RS6000_BTM_P9_MISC.
875         (BU_P9_MISC_1): Change the MASK value to RS6000_BTM_P9_MISC.
876         (BU_P9_64BIT_MISC_0): Likewise.
877         (BU_P9_DFP_MISC_0): New macro definition.
878         (BU_P9_DFP_MISC_1): New macro definition.
879         (BU_P9_DFP_MISC_2): New macro definition.
880         (BU_P9_DFP_OVERLOAD_1): New macro definition.
881         (BU_P9_DFP_OVERLOAD_2): New macro definition.
882         (BU_P9_DFP_OVERLOAD_3): New macro definition.
883         (TSTSFI_LT_DD): New BU_P9_DFP_MISC_2.
884         (TSTSFI_LT_TD): Likewise.
885         (TSTSFI_EQ_DD): Likewise.
886         (TSTSFI_EQ_TD): Likewise.
887         (TSTSFI_GT_DD): Likewise.
888         (TSTSFI_GT_TD): Likewise.
889         (TSTSFI_OV_DD): Likewise.
890         (TSTSFI_OV_TD): Likewise.
891         (TSTSFI_LT): New BU_P9_DFP_OVERLOAD_2.
892         (TSTSFI_LT_DD): Likewise.
893         (TSTSFI_LT_TD): Likewise.
894         (TSTSFI_EQ): Likewise.
895         (TSTSFI_EQ_DD): Likewise.
896         (TSTSFI_EQ_TD): Likewise.
897         (TSTSFI_GT): Likewise.
898         (TSTSFI_GT_DD): Likewise.
899         (TSTSFI_GT_TD): Likewise.
900         (TSTSFI_OV): Likewise.
901         (TSTSFI_OV_DD): Likewise.
902         (TSTSFI_OV_TD): Likewise.
903         * config/rs6000/rs6000-c.c (altivec_overloaded_builtins): Add
904         overloaded test significance functions.
905         * config/rs6000/rs6000-cpus.def (ISA_3_0_MASKS_SERVER): Add
906         OPTION_MASK_P9_MISC into the representation of this mask.
907         (POWERPC_MASKS): Add OPTION_MASK_P9_MISC into the representation
908         of this mask.
909         * config/rs6000/rs6000.c (rs6000_builtin_mask_calculate): Set the
910         RS6000_BTM_P9_MISC flag in the return value if TARGET_P9_MISC is
911         non-zero.
912         (rs6000_expand_binop_builtin): Enforce that argument 0 of the exp
913         argument is a 6-bit unsigned literal value if the icode argument
914         represents a DFP test significance built-in call.
915         (rs6000_invalid_builtin): Add support for the RS6000_BTM_P9_MISC
916         flag used independently and in combination with the
917         RS6000_BTM_64BIT flag.
918         (rs6000_opt_masks): Add entry for power9-misc command-line option.
919         (rs6000_builtin_mask_names): Add entry for power9-misc
920         command-line option.
921         * config/rs6000/rs6000.h: Redefine TARGET_P9_MISC as 0 if
922         HAVE_AS_POWER9 is not a defined macro.  Define MASK_P9_MISC and
923         RS6000_BTM_P9_MISC macros.
924         * config/rs6000/rs6000.opt: Add support for the -mpower9-misc
925         option and change the description of the -mpower9-vector option to
926         enable only vector instructions, removing its erroneously claimed
927         support for scalar instructions.
928         * doc/extend.texi (PowerPC AltiVec Built-in Functions): Document
929         the ISA 3.0 digital floating point test significance built-in
930         functions.
932 2016-06-30  Wilco Dijkstra  <wdijkstr@arm.com>
934         * config/aarch64/aarch64.c (cortexa35_tunings):
935         Enable AES fusion.  Use cortexa57_branch_cost.
936         (cortexa53_tunings): Use cortexa57_branch_cost.
937         (cortexa72_tunings): Use cortexa57_branch_cost.
938         Use AUTOPREFETCHER_WEAK.
939         (cortexa73_tunings): Use cortexa57_branch_cost.
941 2016-06-30  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
942             James Greenhalgh  <james.greenhalgh@arm.com>
944         * config/aarch64/arm_neon.h (vcopyq_lane_f32, vcopyq_lane_f64,
945         vcopyq_lane_p8, vcopyq_lane_p16, vcopyq_lane_s8, vcopyq_lane_s16,
946         vcopyq_lane_s32, vcopyq_lane_s64, vcopyq_lane_u8, vcopyq_lane_u16,
947         vcopyq_lane_u32, vcopyq_lane_u64): Reimplement in C.
948         (vcopy_lane_f32, vcopy_lane_f64, vcopy_lane_p8, vcopy_lane_p16,
949         vcopy_lane_s8, vcopy_lane_s16, vcopy_lane_s32, vcopy_lane_s64,
950         vcopy_lane_u8, vcopy_lane_u16, vcopy_lane_u32, vcopy_lane_u64,
951         vcopy_laneq_f32, vcopy_laneq_f64, vcopy_laneq_p8, vcopy_laneq_p16,
952         vcopy_laneq_s8, vcopy_laneq_s16, vcopy_laneq_s32, vcopy_laneq_s64,
953         vcopy_laneq_u8, vcopy_laneq_u16, vcopy_laneq_u32, vcopy_laneq_u64,
954         vcopyq_laneq_f32, vcopyq_laneq_f64, vcopyq_laneq_p8, vcopyq_laneq_p16,
955         vcopyq_laneq_s8, vcopyq_laneq_s16, vcopyq_laneq_s32, vcopyq_laneq_s64,
956         vcopyq_laneq_u8, vcopyq_laneq_u16, vcopyq_laneq_u32, vcopyq_laneq_u64):
957         New intrinsics.
959 2016-06-30  James Greenhalgh  <james.greenhalgh@arm.com>
960             Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
962         * config/aarch64/aarch64-simd.md (*aarch64_simd_vec_copy_lane<mode>):
963         New define_insn.
964         (*aarch64_simd_vec_copy_lane_<vswap_width_name><mode>): Likewise.
966 2016-06-30  David Malcolm  <dmalcolm@redhat.com>
968         PR driver/71651
969         * gcc.c (driver::build_option_suggestions): Pass "option" to
970         add_misspelling_candidates.
971         * opts-common.c (add_misspelling_candidates): Add "option" param;
972         use it to avoid adding negated forms for options marked with
973         RejectNegative.
974         * opts.h (add_misspelling_candidates): Add "option" param.
976 2016-06-30  Jakub Jelinek  <jakub@redhat.com>
978         PR middle-end/71693
979         * fold-const.c (fold_binary_loc) <case RROTATE_EXPR>: Cast
980         TREE_OPERAND (arg0, 0) and TREE_OPERAND (arg0, 1) to type
981         first when permuting bitwise operation with rotate.  Cast
982         TREE_OPERAND (arg0, 0) to type when cancelling two rotations.
984 2016-06-29  David Malcolm  <dmalcolm@redhat.com>
986         * opts.c (handle_param): Use find_param_fuzzy to offer suggestions
987         for misspelled param names.
988         * params.c: Include spellcheck.h.
989         (find_param_fuzzy): New function.
990         * params.h (find_param_fuzzy): New prototype.
991         * spellcheck.c (struct edit_distance_traits<const char *>): Move to...
992         * spellcheck.h (struct edit_distance_traits<const char *>):
993         ...here.
995 2016-06-29  Michael Meissner  <meissner@linux.vnet.ibm.com>
997         * config/rs6000/predicates.md (const_0_to_7_operand): New
998         predicate, recognize 0..7.
999         * config/rs6000/rs6000.c (rs6000_expand_vector_extract): Add
1000         support for doing extracts from V16QImode, V8HImode, V4SImode
1001         under ISA 3.0.
1002         * config/rs6000/vsx.md (VSX_EXTRACT_I): Mode iterator for ISA 3.0
1003         vector extract support.
1004         (VSX_EXTRACT_PREDICATE): Mode attribute to validate element number
1005         for ISA 3.0 vector extract.
1006         (VSX_EX): Constraints to use for ISA 3.0 vector extract.
1007         (vsx_extract_<mode>, VSX_EXTRACT_I): Add support for doing
1008         extracts of a constant element number from small integer vectors
1009         on 64-bit ISA 3.0 systems.
1010         (vsx_extract_<mode>_di): Likewise.
1011         * config/rs6000/rs6000.h (TARGET_VEXTRACTUB): New target macro to
1012         say when we can do ISA 3.0 vector extracts.
1013         * config/rs6000/rs6000.md (stfiwx): Allow DImode in Altivec
1014         registers, using the stxsiwx instruction.
1016 2016-06-29  Jim Wilson  <jim.wilson@linaro.org>
1018         * config/aarch64/aarch64-cores.def (qdf24xx): Use qdf24xx tuning.
1019         * config/aarch64/aarch64.c (qdf24xx_addrcost_table,
1020         qdf24xx_regmove_cost, qdf24xx_tunings): New.
1021         * config/arm/aarch64-cost-tables.h (qdf24xx_extra_costs): New.
1022         * config/arm/arm-cores.def (qdf24xx): Use qdf24xx tuning.
1023         * config/arm/arm.c (arm_qdf24xx_tune): New.
1025 2016-06-29  Wilco Dijkstra  <wdijkstr@arm.com>
1027         * config/aarch64/aarch64.c (cortexa53_tunings):
1028         Increase loop alignment to 8.  Set function alignment to 16.
1029         (cortexa35_tunings): Likewise.
1030         (cortexa57_tunings): Increase loop alignment to 8.
1031         (cortexa72_tunings): Likewise.
1032         (cortexa73_tunings): Likewise.
1034 2016-06-29  Matthew Wahab  <matthew.wahab@arm.com>
1036         * doc/sourcebuild.texi (Effective-Target keywords): Add entries
1037         for arm_fp16_ok and arm_fp16_hw.
1038         (Add Options): Add entries for arm_fp16, arm_fp16_ieee and
1039         arm_fp16_alternative.
1041 2016-06-29  Ilya Enkovich  <ilya.enkovich@intel.com>
1043         PR tree-optimization/71655
1044         * tree-vect-stmts.c (vectorizable_comparison): Swap definition
1045         types when swapping operands.
1047 2016-06-29  Martin Liska  <mliska@suse.cz>
1049         PR middle-end/71585
1050         * common.opt (flag_stack_protect): Mark the flag as optimization flag.
1051         * ipa-inline-transform.c (inline_call): Remove unnecessary call
1052         of build_optimization_node.
1054 2016-06-29  Yuri Rumyantsev  <ysrumyan@gmail.com>
1056         PR tree-optimization/70729
1057         * tree-ssa-loop-im.c (ref_indep_loop_p_1): Consider memory reference as
1058         independent in loops having positive safelen value.
1059         * tree-vect-loop.c (vect_transform_loop): Clear-up safelen value since
1060         it may be not valid after vectorization.
1062 2016-06-29  Jakub Jelinek  <jakub@redhat.com>
1064         PR tree-optimization/71625
1065         * tree-ssa-strlen.c (get_addr_stridx): Add PTR argument.  Assume list
1066         is sorted by ascending list->offset.  If PTR is non-NULL and there is
1067         previous strinfo, call get_stridx_plus_constant.
1068         (get_stridx): Pass exp as second argument to get_addr_stridx.
1069         (addr_stridxptr): Add missing list = list->next, so that there can be
1070         more than one entries in the list.  Bump limit from 16 to 32.  Ensure
1071         the list is sorted by ascending list->offset.
1072         (get_stridx_plus_constant): Adjust so that it can be also called with
1073         ADDR_EXPR instead of SSA_NAME as PTR.
1074         (handle_char_store): Pass NULL_TREE as second argument to
1075         get_addr_stridx.
1077 2016-06-29  Richard Biener  <rguenther@suse.de>
1079         PR rtl-optimization/68961
1080         * simplify-rtx.c (simplify_subreg): Handle VEC_CONCAT like CONCAT.
1082 2016-06-29  Richard Biener  <rguenther@suse.de>
1084         PR middle-end/71002
1085         * alias.c (component_uses_parent_alias_set_from): Handle
1086         type punning through union accesses by using the union alias set.
1087         * gimple.c (gimple_get_alias_set): Remove union type punning case.
1089 2016-07-29  Richard Biener  <rguenther@suse.de>
1091         * match.pd ((T)(T2)x -> (T)x): Remove restriction on final
1092         precision not matching mode precision.
1094 2016-06-28  John David Anglin  <danglin@gcc.gnu.org>
1096         * config/pa/pa.md (call_symref_64bit_post_reload): Don't call
1097         pa_output_arg_descriptor.
1098         (call_val_symref_64bit_post_reload): Likewise.
1099         (call_val_powf_64bit_post_reload): Likewise.
1100         (sibcall_internal_symref_64bit): Likewise.
1101         (sibcall_value_internal_symref_64bit): Likewise.
1103 2016-06-28  Jakub Jelinek  <jakub@redhat.com>
1105         PR middle-end/71626
1106         * config/i386/i386.c (ix86_expand_vector_move): For SUBREG of
1107         a constant, force its SUBREG_REG into memory or register instead
1108         of whole op1.
1110 2016-06-28  Pitchumani Sivanupandi  <pitchumani.s@atmel.com>
1112         PR target/58655
1113         * config/avr/avr.opt (-mfract-convert-truncate): Update description.
1114         * doc/invoke.texi (AVR Options): Document it.
1116 2016-06-28  Walter Lee  <walt@tilera.com>
1118         * config/tilegx/linux.h: Do not include arch/icache.h
1119         (CLEAR_INSN_CACHE): Provide inlined definition directly.
1120         * config/tilepro/linux.h: Do not include arch/icache.h
1121         (CLEAR_INSN_CACHE): Provide inlined definition directly.
1123 2016-06-28  Wilco Dijkstra  <wdijkstr@arm.com>
1125         * tree-ssa-math-opts.c (find_bswap_or_nop_1): Adjust bitnumbering
1126         for big-endian BIT_FIELD_REF.
1128 2016-06-28  Pat Haugen  <pthaugen@us.ibm.com>
1130         * config/rs6000/rs6000.md ('type' attribute): Add htmsimple/dfp types.
1131         ('size' attribute): Add '128'.
1132         Include power9.md.
1133         (*mov<mode>_hardfloat32, *mov<mode>_hardfloat64, *movdi_internal32,
1134         *movdi_internal64, *movdf_update1): Set size attribute to '64'.
1135         (add<mode>3, sub<mode>3, mul<mode>3, div<mode>3, sqrt<mode>2,
1136         copysign<mode>3, neg<mode>2_hw, abs<mode>2_hw, *nabs<mode>2_hw,
1137         *fma<mode>4_hw, *fms<mode>4_hw, *nfma<mode>4_hw, *nfms<mode>4_hw,
1138         extend<SFDF:mode><IEEE128:mode>2_hw, trunc<mode>df2_hw,
1139         *xscvqp<su>wz_<mode>, *xscvqp<su>dz_<mode>, *xscv<su>dqp_<mode>,
1140         *trunc<mode>df2_odd): Set size attribute to '128'.
1141         (*cmp<mode>_hw): Change type to veccmp and set size attribute to '128'.
1142         * config/rs6000/power6.md (power6-fp): Include dfp type.
1143         * config/rs6000/power7.md (power7-fp): Likewise.
1144         * config/rs6000/power8.md (power8-fp): Likewise.
1145         * config/rs6000/power9.md: New file.
1146         * config/rs6000/t-rs6000 (MD_INCLUDES): Add power9.md.
1147         * config/rs6000/htm.md (*tabort, *tabort<wd>c, *tabort<wd>ci,
1148         *trechkpt, *treclaim, *tsr, *ttest): Change type attribute to
1149         htmsimple.
1150         * config/rs6000/dfp.md (extendsddd2, truncddsd2, extendddtd2,
1151         trunctddd2, adddd3, addtd3, subdd3, subtd3, muldd3, multd3, divdd3,
1152         divtd3, *cmpdd_internal1, *cmptd_internal1, floatdidd2, floatditd2,
1153         ftruncdd2, fixdddi2, ftrunctd2, fixtddi2, dfp_ddedpd_<mode>,
1154         dfp_denbcd_<mode>, dfp_dxex_<mode>, dfp_diex_<mode>, dfp_dscli_<mode>,
1155         dfp_dscri_<mode>): Change type attribute to dfp.
1156         * config/rs6000/crypto.md (crypto_vshasigma<CR_char>): Change type
1157         attribute to vecsimple.
1158         * config/rs6000/rs6000.c (power9_cost): Update costs, cache size
1159         and prefetch streams.
1160         (rs6000_option_override_internal): Remove temporary code setting
1161         tuning to power8.  Don't set rs6000_sched_groups for power9.
1162         (last_scheduled_insn): Change to rtx_insn *.
1163         (divide_cnt, vec_load_pendulum): New variables.
1164         (rs6000_adjust_cost): Add Power9 to test for store->load separation.
1165         (rs6000_issue_rate): Set issue rate for Power9.
1166         (is_power9_pairable_vec_type): New.
1167         (power9_sched_reorder2): New.
1168         (rs6000_sched_reorder2): Call new function for Power9 specific
1169         reordering.
1170         (insn_must_be_first_in_group): Remove Power9.
1171         (insn_must_be_last_in_group): Likewise.
1172         (force_new_group): Likewise.
1173         (rs6000_sched_init): Fix initialization of last_scheduled_insn.
1174         Initialize divide_cnt/vec_load_pendulum.
1175         (_rs6000_sched_context, rs6000_init_sched_context,
1176         rs6000_set_sched_context): Handle context save/restore of new
1177         variables.
1179 2016-06-28  Richard Biener  <rguenther@suse.de>
1181         * tree-ssa-alias.c (nonoverlapping_component_refs_of_decl_p):
1182         Properly handle DECL_BIT_FIELD_REPRESENTATIVE occuring as
1183         COMPONENT_REF operand.
1184         (nonoverlapping_component_refs_p): Likewise.
1185         * stor-layout.c (start_bitfield_representative): Mark
1186         DECL_BIT_FIELD_REPRESENTATIVE as DECL_NONADDRESSABLE_P.
1188 2016-06-28  Jakub Jelinek  <jakub@redhat.com>
1190         * Makefile.in: Don't cat ../stage_current if it does not exist.
1192         * doc/extend.texi (__builtin_add_overflow_p): Clarify behavior when
1193         last argument is a bit-field.
1195         PR rtl-optimization/71673
1196         * internal-fn.c (expand_arith_overflow_result_store): Use
1197         OPTAB_LIB_WIDEN instead of OPTAB_DIRECT as last argument to
1198         expand_simple_binop.
1200         PR middle-end/66867
1201         * builtins.c (expand_ifn_atomic_compare_exchange_into_call,
1202         expand_ifn_atomic_compare_exchange): New functions.
1203         * internal-fn.c (expand_ATOMIC_COMPARE_EXCHANGE): New function.
1204         * tree.h (build_call_expr_internal_loc): Rename to ...
1205         (build_call_expr_internal_loc_array): ... this.  Fix up type of
1206         last argument.
1207         * internal-fn.def (ATOMIC_COMPARE_EXCHANGE): New internal fn.
1208         * predict.c (expr_expected_value_1): Handle IMAGPART_EXPR of
1209         ATOMIC_COMPARE_EXCHANGE result.
1210         * builtins.h (expand_ifn_atomic_compare_exchange): New prototype.
1211         * gimple-fold.h (optimize_atomic_compare_exchange_p,
1212         fold_builtin_atomic_compare_exchange): New prototypes.
1213         * gimple-fold.c (optimize_atomic_compare_exchange_p,
1214         fold_builtin_atomic_compare_exchange): New functions..
1215         * tree-ssa.c (execute_update_addresses_taken): If
1216         optimize_atomic_compare_exchange_p, ignore &var in 2nd argument
1217         of call when finding addressable vars, and if such var becomes
1218         non-addressable, call fold_builtin_atomic_compare_exchange.
1220 2016-06-27  Segher Boessenkool  <segher@kernel.crashing.org>
1222         PR target/71670
1223         * config/rs6000/rs6000.md (ashdi3_extswsli_dot): Use
1224         gen_ashdi3_extswsli_dot2 instead of gen_ashdi3_extswsli_dot.
1226 2016-06-27  Pat Haugen  <pthaugen@us.ibm.com>
1228         * config/rs6000/rs6000.md ('type' attribute): Add
1229         veclogical,veccmpfx,vecexts,vecmove insn types.
1230         (*abs<mode>2_fpr, *nabs<mode>2_fpr, *neg<mode>2_fpr, *extendsfdf2_fpr,
1231         copysign<mode>3_fcpsgn, trunc<mode>df2_internal1, neg<mode>2_internal,
1232         p8_fmrgow_<mode>, pack<mode>): Change type to fpsimple.
1233         (*xxsel<mode>, copysign<mode>3_hard, neg<mode>2_hw, abs<mode>2_hw,
1234         *nabs<mode>2_hw): Change type to vecmove.
1235         (*and<mode>3_internal, *bool<mode>3_internal, *boolc<mode>3_internal,
1236         *boolcc<mode>3_internal, *eqv<mode>3_internal,
1237         *one_cmpl<mode>3_internal, *ieee_128bit_vsx_neg<mode>2_internal,
1238         *ieee_128bit_vsx_abs<mode>2_internal,
1239         *ieee_128bit_vsx_nabs<mode>2_internal, extendkftf2, trunctfkf2,
1240         *ieee128_mfvsrd_64bit, *ieee128_mfvsrd_32bit, *ieee128_mtvsrd_64bit,
1241         *ieee128_mtvsrd_32bit): Change type to veclogical.
1242         (mov<mode>_hardfloat, *mov<mode>_hardfloat32, *mov<mode>_hardfloat64,
1243         *movdi_internal32, *movdi_internal64): Update insn types.
1244         * config/rs6000/vsx.md (*vsx_le_undo_permute_<mode>,
1245         vsx_extract_<mode>): Change type to veclogical.
1246         (*vsx_xxsel<mode>, *vsx_xxsel<mode>_uns): Change type to vecmove.
1247         (vsx_sign_extend_qi_<mode>, *vsx_sign_extend_hi_<mode>,
1248         *vsx_sign_extend_si_v2di): Change type to vecexts.
1249         * config/rs6000/altivec.md (*altivec_mov<mode>, *altivec_movti): Change
1250         type to veclogical.
1251         (*altivec_eq<mode>, *altivec_gt<mode>, *altivec_gtu<mode>,
1252         *altivec_vcmpequ<VI_char>_p, *altivec_vcmpgts<VI_char>_p,
1253         *altivec_vcmpgtu<VI_char>_p): Change type to veccmpfx.
1254         (*altivec_vsel<mode>, *altivec_vsel<mode>_uns): Change type to vecmove.
1255         * config/rs6000/dfp.md (*negdd2_fpr, *absdd2_fpr, *nabsdd2_fpr,
1256         negtd2, *abstd2_fpr, *nabstd2_fpr): Change type to fpsimple.
1257         * config/rs6000/40x.md (ppc405-float): Add fpsimple.
1258         * config/rs6000/440.md (ppc440-fp): Add fpsimple.
1259         * config/rs6000/476.md (ppc476-fp): Add fpsimple.
1260         * config/rs6000/601.md (ppc601-fp): Add fpsimple.
1261         * config/rs6000/603.md (ppc603-fp): Add fpsimple.
1262         * config/rs6000/6xx.md (ppc604-fp): Add fpsimple.
1263         * config/rs6000/7xx.md (ppc750-fp): Add fpsimple.
1264         (ppc7400-vecsimple): Add veclogical, vecmove, veccmpfx.
1265         * config/rs6000/7450.md (ppc7450-fp): Add fpsimple.
1266         (ppc7450-vecsimple): Add veclogical, vecmove.
1267         (ppc7450-veccmp): Add veccmpfx.
1268         * config/rs6000/8540.md (ppc8540_simple_vector): Add veclogical,
1269         vecmove.
1270         (ppc8540_vector_compare): Add veccmpfx.
1271         * config/rs6000/a2.md (ppca2-fp): Add fpsimple.
1272         * config/rs6000/cell.md (cell-fp): Add fpsimple.
1273         (cell-vecsimple): Add veclogical, vecmove.
1274         (cell-veccmp): Add veccmpfx.
1275         * config/rs6000/e300c2c3.md (ppce300c3_fp): Add fpsimple.
1276         * config/rs6000/e6500.md (e6500_vecsimple): Add veclogical, vecmove,
1277         veccmpfx.
1278         * config/rs6000/mpc.md (mpccore-fp): Add fpsimple.
1279         * config/rs6000/power4.md (power4-fp): Add fpsimple.
1280         (power4-vecsimple): Add veclogical, vecmove.
1281         (power4-veccmp): Add veccmpfx.
1282         * config/rs6000/power5.md (power5-fp): Add fpsimple.
1283         * config/rs6000/power6.md (power6-fp): Add fpsimple.
1284         (power6-vecsimple): Add veclogical, vecmove.
1285         (power6-veccmp): Add veccmpfx.
1286         * config/rs6000/power7.md (power7-fp): Add fpsimple.
1287         (power7-vecsimple): Add veclogical, vecmove, veccmpfx.
1288         * config/rs6000/power8.md (power8-fp): Add fpsimple.
1289         (power8-vecsimple): Add veclogical, vecmove, veccmpfx.
1290         * config/rs6000/rs64.md (rs64a-fp): Add fpsimple.
1291         * config/rs6000/titan.md (titan_fp): Add fpsimple.
1292         * config/rs6000/xfpu.md (fp-default, fp-addsub-s, fp-addsub-d): Add
1293         fpsimple.
1294         * config/rs6000/rs6000.c (rs6000_adjust_cost): Add TYPE_FPSIMPLE.
1296 2016-06-27  Peter Bergner  <bergner@vnet.ibm.com>
1298         PR target/71656
1299         * config/rs6000/rs6000-cpus.def (ISA_3_0_MASKS_SERVER): Add
1300         OPTION_MASK_P9_DFORM_VECTOR.
1301         * config/rs6000/rs6000.c (rs6000_option_override_internal): Do not
1302         disable -mpower9-dform-vector when using reload.
1303         (quad_address_p): Remove 'gpr_p' argument and all associated code.
1304         New 'strict' argument.  Update all callers.  Add strict addressing
1305         support.
1306         (rs6000_legitimate_offset_address_p): Remove call to
1307         virtual_stack_registers_memory_p.
1308         (rs6000_legitimize_reload_address): Add quad address support.
1309         (rs6000_legitimate_address_p): Move call to quad_address_p above
1310         call to virtual_stack_registers_memory_p.  Adjust quad_address_p args
1311         to account for new strict usage.
1312         (rs6000_output_move_128bit): Adjust quad_address_p args to account
1313         for new strict usage.
1314         * config/rs6000/predicates.md (quad_memory_operand): Likewise.
1316 2016-06-26  Uros Bizjak  <ubizjak@gmail.com>
1318         PR target/70902
1319         PR target/71453
1320         PR target/71555
1321         PR target/71596
1322         PR target/71657
1323         * config/i386/i386.c (ix86_spill_class): Disable condition to
1324         always return NO_REGS.
1326 2016-06-26  Jan Hubicka  <hubicka@ucw.cz>
1328         * predict.c: Include gimple-pretty-print.h
1329         (predicted_by_loop_heuristics_p): Check also
1330         PRED_LOOP_EXIT_WITH_RECURSION
1331         (predict_loops): Find self recursive calls and use special purpose
1332         predictors for them; dump log about decisions.
1333         (pass_profile::execute): Dump info about #of iterations.
1334         * predict.def (PRED_LOOP_EXIT_WITH_RECURSION,
1335         (PRED_LOOP_GUARD_WITH_RECURSION): New predictors.
1337 2016-06-26  John David Anglin  <danglin@gcc.gnu.org>
1339         * config/pa/pa.c (pa_output_indirect_call): Rework to combine
1340         output_asm_insn calls and shorten long lines.  Output .CALL
1341         argument descriptor using pa_output_arg_descriptor.  Add various
1342         inline $$dyncall and other optimizations.
1343         (pa_attr_length_indirect_call): Adjust ordering and lengths.
1345 2016-06-25  Jakub Jelinek  <jakub@redhat.com>
1347         PR tree-optimization/71643
1348         * tree-ssa-tail-merge.c (find_clusters_1): Ignore basic blocks with
1349         EH preds.
1351         * tree-ssa-tail-merge.c (deps_ok_for_redirect_from_bb_to_bb): Don't
1352         leak a bitmap if dep_bb is NULL.
1354         PR tree-optimization/71631
1355         * tree-ssa-reassoc.c (reassociate_bb): Pass true as last argument
1356         to rewrite_expr_tree even if negate_result, move new_lhs var
1357         declaration and initialization earlier, for powi_result set afterwards
1358         new_lhs to lhs.  For negate_result, use new_lhs instead of tmp
1359         if new_lhs != lhs, and don't shadow gsi var.
1361 2016-06-24  Jan Hubicka  <hubicka@ucw.cz>
1363         * predict.c (predict_paths_leading_to, predict_paths_leading_to_edge):
1364         Add in_loop parameter.
1365         (predict_loops): Add loop guard heuristics.
1366         * predict.def (PRED_LOOP_GUARD): New heuristics.
1368 2016-06-24  Jan Hubicka  <hubicka@ucw.cz>
1370         * predict.c: Include ipa-utils.h
1371         (tree_bb_level_prediction): Predict recursive calls.
1372         (tree_estimate_probability_bb): Skip inexpensive calls for call
1373         predictor.
1374         * predict.def (PRED_RECURSIVE_CALL): New.
1376 2016-06-24  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
1378         * config/rs6000/rs6000-builtin.def (BU_FLOAT128_2): New #define.
1379         (BU_FLOAT128_1): Likewise.
1380         (FABSQ): Likewise.
1381         (COPYSIGNQ): Likewise.
1382         (RS6000_BUILTIN_NANQ): Likewise.
1383         (RS6000_BUILTIN_NANSQ): Likewise.
1384         (RS6000_BUILTIN_INFQ): Likewise.
1385         (RS6000_BUILTIN_HUGE_VALQ): Likewise.
1386         * config/rs6000/rs6000.c (rs6000_fold_builtin): New prototype.
1387         (TARGET_FOLD_BUILTIN): New #define.
1388         (rs6000_builtin_mask_calculate): Add TARGET_FLOAT128 entry.
1389         (rs6000_invalid_builtin): Add handling for RS6000_BTM_FLOAT128.
1390         (rs6000_fold_builtin): New target hook implementation, handling
1391         folding of 128-bit NaNs and infinities.
1392         (rs6000_init_builtins): Initialize const_str_type_node; ensure all
1393         entries are filled in to avoid problems during bootstrap
1394         self-test; define builtins for 128-bit NaNs and infinities.
1395         (rs6000_opt_mask): Add entry for float128.
1396         * config/rs6000/rs6000.h (RS6000_BTM_FLOAT128): New #define.
1397         (RS6000_BTM_COMMON): Include RS6000_BTM_FLOAT128.
1398         (rs6000_builtin_type_index): Add RS6000_BTI_const_str.
1399         (const_str_type_node): New #define.
1400         * config/rs6000/rs6000.md (copysign<mode>3 for IEEE128): Convert
1401         to a define_expand that dispatches to either copysign<mode>3_soft
1402         or copysign<mode>3_hard.
1403         (copysign<mode>3_hard): Rename from copysign<mode>3.
1404         (copysign<mode>3_soft): New define_insn.
1405         * doc/extend.texi: Document new builtins.
1407 2016-06-24  Jakub Jelinek  <jakub@redhat.com>
1409         * cfgloop.c (flow_loop_dump): Cast nit to uint64_t and print it using
1410         PRIu64 instead of lu.
1412 2016-06-24  Eric Botcazou  <ebotcazou@adacore.com>
1414         PR debug/71642
1415         * tree-inline.c (remap_decl): When fixing up DECL_ORIGINAL_TYPE, just
1416         copy the type name.
1418 2016-06-24  Jakub Jelinek  <jakub@redhat.com>
1420         PR tree-optimization/71647
1421         * omp-low.c (lower_rec_input_clauses): Convert
1422         omp_clause_aligned_alignment (c) to size_type_node for the
1423         last argument of __builtin_assume_aligned.
1425 2016-06-24  H.J. Lu  <hongjiu.lu@intel.com>
1427         * configure.ac (calling ___tls_get_addr via GOT): New
1428         assembler/linker check.
1429         (HAVE_AS_IX86_TLS_GET_ADDR_GOT): New.  Defined to 1 if 32-bit
1430         assembler and linker supports calling ___tls_get_addr via GOT.
1431         Otherise, defined to 0.
1432         * config.in: Regenerated.
1433         * configure: Likewise.
1434         * config/i386/constraints.md (Yb): New constraint.
1435         * config/i386/i386.h (reg_class): Add TLS_GOTBASE_REGS.
1436         (REG_CLASS_NAMES): Likewise.
1437         (REG_CLASS_CONTENTS): Likewise.
1438         * config/i386/i386.md (*tls_global_dynamic_32_gnu): Replace
1439         the b constraint with the Yb constraint.  Call ___tls_get_addr
1440         via GOT for GNU TLS with -fno-plt if HAVE_AS_IX86_TLS_GET_ADDR_GOT
1441         is 1.
1442         (*tls_local_dynamic_base_32_gnu): Likewise.
1443         (*tls_global_dynamic_64_<mode>): Call _tls_get_addr via GOT for
1444         GNU TLS with -fno-plt if HAVE_AS_IX86_TLS_GET_ADDR_GOT is 1.
1445         (*tls_local_dynamic_base_64_<mode>): Likewise.
1447 2016-06-24  Martin Liska  <mliska@suse.cz>
1449         * cfgloop.c (flow_loop_dump): Dump average number of loop iterations.
1450         * cfgloop.h: Change 'struct loop' to 'const struct loop' for a
1451         few functions.
1452         * cfgloopanal.c (expected_loop_iterations_unbounded): Set a new
1453         argument to true if the expected number of iterations is
1454         loop-based.
1456 2016-06-24  Uros Bizjak  <ubizjak@gmail.com>
1458         * configure.ac (HAVE_AS_GOTOF_IN_DATA): Use $as_ix86_gas_32_opt to
1459         assemble for 32bit target.
1460         (HAVE_AS_IX86_TLSGDPLT): Use $as_ix86_gas_32_opt to assemble
1461         and $ld_ix86_gld_32_opt to link for 32bit target.
1462         (HAVE_AS_IX86_TLSLDMPLT): Ditto.
1463         * configure: Regenerate.
1465 2016-06-24  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
1467         * config/arm/arm.c (int_log2): Delete definition and prototype.
1468         (shift_op): Use exact_log2 instead of int_log2.
1469         (vfp3_const_double_for_fract_bits): Likewise.
1471 2016-06-24  Jakub Jelinek  <jakub@redhat.com>
1473         * internal-fn.c (expand_arith_set_overflow): New function.
1474         (expand_addsub_overflow, expand_neg_overflow, expand_mul_overflow):
1475         Use it.
1476         (expand_arith_overflow_result_store): Likewise.  Handle precision
1477         smaller than mode precision.
1478         * tree-vrp.c (extract_range_basic): For imag part, handle
1479         properly signed 1-bit precision result.
1480         * doc/extend.texi (__builtin_add_overflow): Document that last
1481         argument can't be pointer to enumerated or boolean type.
1482         (__builtin_add_overflow_p): Document that last argument can't
1483         have enumerated or boolean type.
1485 2016-06-23  Michael Meissner  <meissner@linux.vnet.ibm.com>
1486             Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
1488         * config/rs6000/predicates.md (splat_input_operand): Rework.
1489         Don't allow constants, since the insns that use this predicate
1490         don't support constants.  Constants are handled by other insns
1491         that are created via combine.  During and after register
1492         allocation, only allow indexed or indirect addresses, and not
1493         general addresses.  Only allow modes supported by the hardware.
1494         * config/rs6000/rs6000.c (xxsplitb_constant_p): Update usage
1495         comment.  Move check for using VSPLTIS<x> to a common location,
1496         instead of doing it in two different places.
1498 2016-06-23  Jocelyn Mayer  <l_indien@magic.fr>
1500         * config/i386/driver-i386.c (host_detect_local_cpu): Set
1501         PROCESSOR_PENTIUMPRO for signature_CENTAUR_ebx family >= 9.
1502         <case PROCESSOR_PENTIMUMPRO>: Pass c7 or nehemiah for
1503         signature_CENTAUR_ebx.
1505 2016-06-23  H.J. Lu  <hongjiu.lu@intel.com>
1507         PR target/66232
1508         PR target/67400
1509         * configure.ac (as_ix86_tls_ldm_opt): Renamed to ...
1510         (as_ix86_gas_32_opt): This.
1511         (ld_ix86_tls_ldm_opt): Renamed to ...
1512         (ld_ix86_gld_32_opt): This.
1513         (R_386_TLS_LDM reloc): Updated.
1514         (R_386_GOT32X reloc): New assembler/linker check.
1515         (HAVE_AS_IX86_GOT32X): New.  Defined to 1 if 32-bit assembler and
1516         linker support "jmp *_start@GOT" and "cmpl $0, bar@GOT".  Otherise,
1517         defined to 0.
1518         * config.in: Regenerated.
1519         * configure: Likewise.
1520         * config/i386/i386.c (ix86_force_load_from_GOT_p): Return
1521         true if HAVE_AS_IX86_GOT32X is 1 in 32-bit mode.
1522         (ix86_legitimate_address_p): Allow UNSPEC_GOT for -fno-plt
1523         if ix86_force_load_from_GOT_p returns true.
1524         (ix86_print_operand_address_as): Also support UNSPEC_GOT if
1525         ix86_force_load_from_GOT_p returns true.
1526         (ix86_expand_move): Generate UNSPEC_GOT in 32-bit mode to load
1527         the external function address via the GOT slot.
1528         (ix86_nopic_noplt_attribute_p): Check both TARGET_64BIT and
1529         HAVE_AS_IX86_GOT32X before returning false.
1530         (ix86_output_call_insn): Generate "%!jmp/call\t*%p0@GOT" in
1531         32-bit mode if ix86_nopic_noplt_attribute_p returns true.
1533 2016-06-23  Eric Botcazou  <ebotcazou@adacore.com>
1535         * tree-inline.c (remap_decl): Preserve DECL_ORIGINAL_TYPE invariant.
1537 2016-06-23  Andi Kleen  <ak@linux.intel.com>
1539         * Makefile.in: Regenerate.
1540         * doc/install.texi: Document autoprofiledbootstrap.
1542 2016-06-23  Andi Kleen  <ak@linux.intel.com>
1544         * config/i386/gcc-auto-profile: New file.
1546 2016-06-23  Martin Liska  <mliska@suse.cz>
1548         PR middle-end/71619
1549         * predict.c (predict_loops): Revert the hunk that was removed
1550         in r237103.
1552 2016-06-23  Jakub Sejdak  <jakub.sejdak@phoesys.com>
1554         * config.gcc: Add support for arm*-*-phoenix* targets.
1555         * config/arm/t-phoenix: New.
1556         * config/phoenix.h: New.
1558 2016-06-23  Uros Bizjak  <ubizjak@gmail.com>
1559             H.J. Lu  <hongjiu.lu@intel.com>
1561         PR target/67400
1562         * config/i386/i386-protos.h (ix86_force_load_from_GOT_p): New.
1563         * config/i386/i386.c (ix86_force_load_from_GOT_p): New function.
1564         (ix86_legitimate_constant_p): Do not allow UNSPEC_GOTPCREL if
1565         ix86_force_load_from_GOT_p returns true.
1566         (ix86_legitimate_address_p): Allow UNSPEC_GOTPCREL if
1567         ix86_force_load_from_GOT_p returns true.
1568         (ix86_print_operand_address_as): Support UNSPEC_GOTPCREL if
1569         ix86_force_load_from_GOT_p returns true.
1570         (ix86_expand_move): Load the external function address via the
1571         GOT slot if ix86_force_load_from_GOT_p returns true.
1572         * config/i386/predicates.md (x86_64_immediate_operand): Return
1573         false for SYMBOL_REFs where ix86_force_load_from_GOT_p returns true.
1574         (x86_64_zext_immediate_operand): Ditto.
1576 2016-06-22  Uros Bizjak  <ubizjak@gmail.com>
1578         * config/i386/i386.c (ix86_expand_move): Simplify SYMBOL_REF handling.
1580 2016-06-22  David Malcolm  <dmalcolm@redhat.com>
1582         PR c/70339
1583         * diagnostic-core.h (pedwarn_at_rich_loc): New prototype.
1584         * diagnostic.c (pedwarn_at_rich_loc): New function.
1585         * spellcheck.h (best_match::best_match): Add a
1586         "best_distance_so_far" optional parameter.
1587         (best_match::set_best_so_far): New method.
1588         (best_match::get_best_distance): New accessor.
1589         (best_match::get_best_candidate_length): New accessor.
1591 2016-06-22  Nick Clifton  <nickc@redhat.com>
1593         * dwarf2out.c (scompare_loc_descriptor): Use SCALAR_INT_MODE_P() in
1594         place of GET_MODE_CLASS() == MODE_INT, so that partial integer
1595         modes are accepted as well.
1596         (ucompare_loc_descriptor): Likewise.
1597         (minmax_loc_descriptor): Likewise.
1598         (clz_loc_descriptor): Likewise.
1599         (popcount_loc_descriptor): Likewise.
1600         (bswap_loc_descriptor): Likewise.
1601         (rotate_loc_descriptor): Likewise.
1602         (mem_loc_descriptor): Likewise.
1603         (loc_descriptor): Likewise.
1605 2016-06-22  David Malcolm  <dmalcolm@redhat.com>
1607         * common.opt (fdiagnostics-parseable-fixits): New option.
1608         * diagnostic.c: Include "selftest.h".
1609         (print_escaped_string): New function.
1610         (print_parseable_fixits): New function.
1611         (diagnostic_report_diagnostic): Call print_parseable_fixits.
1612         (selftest::assert_print_escaped_string): New function.
1613         (ASSERT_PRINT_ESCAPED_STRING_STREQ): New macro.
1614         (selftest::test_print_escaped_string): New function.
1615         (selftest::test_print_parseable_fixits_none): New function.
1616         (selftest::test_print_parseable_fixits_insert): New function.
1617         (selftest::test_print_parseable_fixits_remove): New function.
1618         (selftest::test_print_parseable_fixits_replace): New function.
1619         (selftest::diagnostic_c_tests): New function.
1620         * diagnostic.h (struct diagnostic_context): Add field
1621         "parseable_fixits_p".
1622         * doc/invoke.texi (Diagnostic Message Formatting Options): Add
1623         -fdiagnostics-parseable-fixits.
1624         (-fdiagnostics-parseable-fixits): New option.
1625         * opts.c (common_handle_option): Handle
1626         -fdiagnostics-parseable-fixits.
1627         * selftest-run-tests.c (selftest::run_tests): Call
1628         selftest::diagnostic_c_tests.
1629         * selftest.h (selftest::diagnostic_c_tests): New prototype.
1631 2016-06-22  Ilya Enkovich  <ilya.enkovich@intel.com>
1633         PR tree-optimization/71488
1634         * tree-vect-patterns.c (vect_recog_mask_conversion_pattern): Support
1635         comparison of boolean vectors.
1636         * tree-vect-stmts.c (vectorizable_comparison): Vectorize comparison
1637         of boolean vectors using bitwise operations.
1639 2016-06-22  Andreas Schwab  <schwab@suse.de>
1641         * config/aarch64/aarch64-protos.h (aarch64_elf_asm_named_section):
1642         Remove declaration.
1644 2016-06-22  Eric Botcazou  <ebotcazou@adacore.com>
1646         * function.c (assign_parm_setup_reg): Prevent sharing in another case.
1648 2016-06-22  Bernd Edlinger  <bernd.edlinger@hotmail.de>
1650         * config/i386/i386.c (print_reg): Emit an error message on attempt to
1651         print FLAGS_REG.
1653 2016-06-22  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
1655         * config/arm/arm.c (arm_cortex_a73_tune): New struct.
1656         * config/arm/arm-cores.def (cortex-a73): New entry.
1657         (cortex-a73.cortex-a35): Likewise.
1658         (cortex-a73.cortex-a53): Likewise.
1659         * config/arm/arm-tables.opt: Regenerate.
1660         * config/arm/arm-tune.md: Likewise.
1661         * config/arm/bpabi.h (BE8_LINK_SPEC): Handle mcpu=cortex-a73,
1662         mcpu=cortex-a73.cortex-a35 and mcpu=cortex-a73.cortex-a53.
1663         * config/arm/t-aprofile: Handle mcpu=cortex-a73,
1664         mcpu=cortex-a73.cortex-a35 and mcpu=cortex-a73.cortex-a53.
1665         * doc/invoke.texi (ARM Options): Document cortex-a73,
1666         cortex-a73.cortex-a35 and cortex-a73.cortex-a53.
1668 2016-06-22  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
1670         * config/aarch64/aarch64.c (cortexa73_tunings): New struct.
1671         * config/aarch64/aarch64-cores.def (cortex-a73): New entry.
1672         (cortex-a73.cortex-a35): Likewise.
1673         (cortex-a73.cortex-a53): Likewise.
1674         * config/aarch64/aarch64-tune.md: Regenerate.
1675         * doc/invoke.texi (AArch64 Options): Document cortex-a73,
1676         cortex-a73.cortex-a35 and cortex-a73.cortex-a53 arguments to
1677         -mcpu and -mtune.
1679 2016-06-22  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
1681         * configure.ac (gcc_cv_as_compress_debug): Remove
1682         --compress-debug-sections as extra as switch.
1683         Handle gas --compress-debug-sections=type.
1684         (gcc_cv_ld_compess_debug): Remove bogus ld_date check.
1685         Handle gld --compress-debug-sections=type.
1686         * configure: Regenerate.
1688 2016-06-21  Andrew Burgess  <andrew.burgess@embecosm.com>
1690         * bb-reorder.c (pass_partition_blocks::gate): Update comment.
1692 2016-06-21  John David Anglin  <danglin@gcc.gnu.org>
1694         * gcov-tool.c (profile_rewrite): Use int64_t instead of long long.
1695         (do_rewrite): likewise.
1697 2016-06-21  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
1699         * common/config/mep/mep-common.c: Remove.
1700         * config.gcc: Remove mep-* support.
1701         * config/mep/constraints.md: Remove.
1702         * config/mep/default.h: Remove.
1703         * config/mep/intrinsics.h: Remove.
1704         * config/mep/intrinsics.md: Remove.
1705         * config/mep/ivc2-template.h: Remove.
1706         * config/mep/mep-c5.cpu: Remove.
1707         * config/mep/mep-core.cpu: Remove.
1708         * config/mep/mep-default.cpu: Remove.
1709         * config/mep/mep-ext-cop.cpu: Remove.
1710         * config/mep/mep-intrin.h: Remove.
1711         * config/mep/mep-ivc2.cpu: Remove.
1712         * config/mep/mep-pragma.c: Remove.
1713         * config/mep/mep-protos.h: Remove.
1714         * config/mep/mep.c: Remove.
1715         * config/mep/mep.cpu: Remove.
1716         * config/mep/mep.h: Remove.
1717         * config/mep/mep.md: Remove.
1718         * config/mep/mep.opt: Remove.
1719         * config/mep/predicates.md: Remove.
1720         * config/mep/t-mep: Remove.
1721         * doc/install.texi: Remove mep-* documentation.
1722         * doc/md.texi: Likewise.
1724 2016-06-21  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
1726         * config.gcc: Remove support for avr-rtems.
1727         * config/avr/gen-avr-mmcu-specs.c: Likewise.
1728         * config/avr/rtems.h: Remove.
1729         * config/avr/t-rtems: Remove.
1731 2016-06-21  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
1733         * config.gcc: Remove m32r-rtems support.
1734         * config/m32r/rtems.h: Remove.
1736 2016-06-21  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
1738         * config.gcc: Remove h8300-rtems support.
1739         * config/h8300/rtems.h: Remove.
1740         * config/h8300/t-rtems: Remove.
1742 2016-06-21  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
1744         * config.gcc: Remove support for knetbsd.
1745         * configure.ac: Likewise.
1746         * config/i386/knetbsd-gnu.h: Remove.  * config/i386/knetbsd-gnu64.h: Remove.
1747         * config/knetbsd-gnu.h: Remove.
1748         * configure: Regenerate.
1750 2016-06-21  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
1752         * config.gcc: Remove support for openbsd 2 and 3.
1753         * config/openbsd-oldgas.h: Remove.
1755 2016-06-21  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
1757         * config.gcc: Remove interix support.
1758         * config/i386/i386-interix.h: Remove.
1759         * config/i386/interix.opt: Remove.
1760         * config/i386/t-interix: Remove.
1761         * configure: Regenerate.
1762         * configure.ac: Remove interix support.
1763         * doc/install.texi: Remove interix documentation.
1765 2016-06-21  Kelvin Nilsen  <kelvin@gcc.gnu.org>
1767         * config/rs6000/rs6000.h: Add conditional preprocessing directives
1768         to disable Power9-specific compiler features if HAVE_AS_POWER9 is
1769         not defined.
1771 2016-06-21  Eric Botcazou  <ebotcazou@adacore.com>
1773         * tree.c (verify_type_variant): Skip TYPE_SIZE and TYPE_SIZE_UNIT if
1774         they are both PLACEHOLDER_EXPRs.
1776 2016-06-21  Michael Meissner  <meissner@linux.vnet.ibm.com>
1778         * stor-layout.c (layout_type): Move setting complex MODE to
1779         layout_type, instead of setting it ahead of time by the caller.
1780         * tree.c (build_complex_type): Likewise.
1782 2016-06-21  Martin Liska  <mliska@suse.cz>
1784         * predict.c (force_edge_cold): Replace imposisble with
1785         impossible.
1787 2016-06-21  Ilya Verbin  <ilya.verbin@intel.com>
1789         * config/i386/i386.c (ix86_emit_swsqrtsf): Emit vrsqrt28ps.
1790         * config/i386/sse.md (define_expand "rsqrtv16sf2"): New.
1792 2016-06-21  Ilya Verbin  <ilya.verbin@intel.com>
1794         * config/i386/i386.c (ix86_emit_swdivsf): Emit vrcp28ps.
1796 2016-06-21  H.J. Lu  <hongjiu.lu@intel.com>
1797             Ilya Enkovich  <ilya.enkovich@intel.com>
1799         PR target/71549
1800         * config/i386/i386.c (timode_scalar_chain::fix_debug_reg_uses):
1801         New member function to convert V1TImode register to SUBREG
1802         TImode in debug insn.
1803         (timode_scalar_chain::convert_insn): Call fix_debug_reg_uses
1804         after changing register mode to V1TImode.
1806 2016-06-21  Virendra Pathak  <virendra.pathak@broadcom.com>
1808         * config/aarch64/aarch64-cores.def (vulcan): New core.
1809         * config/aarch64/aarch64-tune.md: Regenerate.
1810         * doc/invoke.texi: Document vulcan as an available option.
1812 2016-06-21  Eric Botcazou  <ebotcazou@adacore.com>
1814         * cse.c (canon_asm_operands): New function extracted from...
1815         (canonicalize_insn): ...here.  Call it to canonicalize an ASM_OPERANDS
1816         either standalone or member of a PARALLEL.
1818 2016-06-21  Georg-Johann Lay  <avr@gjlay.de>
1820         PR target/30417
1821         * config/avr/gen-avr-mmcu-specs.c (print_mcu):
1822         [*link_data_start]: Wrap -Tdata into %{!Tdata:...}.
1823         [*link_text_start]: Wrap -Ttext into %{!Ttext:...}.
1825 2016-06-21  Georg-Johann Lay  <avr@gjlay.de>
1827         PR target/71103
1828         * config/avr/avr.md (movqi): Only handle loading subreg:qi of
1829         constant addresses if can_create_pseudo_p.
1831 2016-06-21  Jakub Jelinek  <jakub@redhat.com>
1833         PR tree-optimization/71588
1834         * tree-ssa-strlen.c (valid_builtin_call): New function.
1835         (adjust_last_stmt, handle_builtin_memset, strlen_optimize_stmt): Use
1836         it.
1838 2016-06-20  Jakub Jelinek  <jakub@redhat.com>
1840         PR middle-end/71581
1841         * tree-ssa-uninit.c (warn_uninit): If EXPR and VAR are NULL,
1842         see if T isn't anonymous SSA_NAME with COMPLEX_EXPR created
1843         for conversion of scalar user var to complex type and use the
1844         underlying SSA_NAME_VAR in that case.  If EXPR is still NULL,
1845         punt.
1847         PR rtl-optimization/71591
1848         * toplev.c (toplev::run_self_tests): If no_backend, complain and
1849         don't run any tests.
1851 2016-06-20  Hans-Peter Nilsson  <hp@axis.com>
1853         PR target/71571
1854         * config/cris/cris.c (cris_asm_output_mi_thunk): Add missing "ba"
1855         delay-slot "nop" for PIC with CRIS v32.  Also add missing leading
1856         space for PIC with non-v32 and the common non-PIC "jump".
1858 2016-06-20  Jakub Jelinek  <jakub@redhat.com>
1860         PR target/71559
1861         * config/i386/i386.c (ix86_fp_cmp_code_to_pcmp_immediate): Fix up
1862         returned values and add UN*/LTGT/*ORDERED cases with values matching
1863         D operand modifier on vcmp for AVX.
1865 2016-06-20  Wilco Dijkstra  <wdijkstr@arm.com>
1867         * config/aarch64/aarch64.opt
1868         (mpc-relative-literal-loads): Rename internal option name.
1869         * config/aarch64/aarch64.c
1870         (aarch64_nopcrelative_literal_loads): Rename to
1871         aarch64_pcrelative_literal_loads.
1872         (aarch64_expand_mov_immediate): Likewise.
1873         (aarch64_secondary_reload): Likewise.
1874         (aarch64_can_use_per_function_literal_pools_p): Likewise.
1875         (aarch64_override_options_after_change_1): Rename and simplify logic.
1876         (aarch64_classify_symbol): Merge large model checks into switch,
1877         remove pc-relative load check.
1879 2016-06-20  James Greenhalgh  <james.greenhalgh@arm.com>
1881         * config/arm/aarch-cost-tables.h (cortexa53_extra_costs): Make FP
1882         costs relative to the cost of a register move.
1884 2016-06-20  James Greenhalgh  <james.greenhalgh@arm.com>
1886         * config/aarch64/arm_neon.h (vcvt_n_f64_s64): New.
1887         (vcvt_n_f64_u64): Likewise.
1888         (vcvt_n_s64_f64): Likewise.
1889         (vcvt_n_u64_f64): Likewise.
1890         (vcvt_f64_s64): Likewise.
1891         (vrecpe_f64): Likewise.
1892         (vcvt_f64_u64): Likewise.
1893         (vrecps_f64): Likewise.
1895 2016-06-20  James Greenhalgh  <james.greenhalgh@arm.com>
1897         * config/aarch64/aarch64.md
1898         (<FCVT_F2FIXED:fcvt_fixed_insn><GPF:mode>3): Add attributes to
1899         iterators.
1900         (<FCVT_FIXED2F:fcvt_fixed_insn><GPI:mode>3): Likewise.  Correct
1901         attributes.
1902         * config/aarch64/aarch64-builtins.c
1903         (aarch64_types_binop_uss_qualifiers): Delete.
1904         (TYPES_BINOP_USS): Likewise.
1905         (aarch64_types_binop_sus_qualifiers): Likewise.
1906         (TYPES_BINOP_SUS): Likewise.
1907         (aarch64_types_fcvt_from_unsigned_qualifiers): New.
1908         (TYPES_FCVTIMM_SUS): Likewise.
1909         * config/aarch64/aarch64-simd-builtins.def (scvtf): Use SHIFTIMM
1910         rather than BINOP.
1911         (ucvtf): Use FCVTIMM_SUS rather than BINOP_SUS.
1912         (fcvtzs): Use SHIFTIMM rather than BINOP.
1913         (fcvtzu): Use SHIFTIMM_USS rather than BINOP_USS.
1915 2016-06-20  James Greenhalgh  <james.greenhalgh@arm.com>
1917         * config/arm/aarch-cost-tables.h (cortexa57_extra_costs): Make FP
1918         costs relative to the cost of a register move.
1920 2016-06-20  Wilco Dijkstra  <wdijkstr@arm.com>
1922         * config/aarch64/aarch64.c (aarch64_modes_tieable_p):
1923         Allow scalar/single vector modes to be tieable.
1925 2016-06-20  Wilco Dijkstra  <wdijkstr@arm.com>
1927         * config/arm/cortex-a57.md (cortex_a57_fp_cpys): Add fcsel.
1929 2016-06-20  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
1931         * params.def (PARAM_ALIGN_LOOP_ITERATIONS): Use "alignment" instead of
1932         "alignement".
1933         * tree.h (TYPE_ALIGN): Likewise.
1935 2016-06-20  Georg-Johann Lay  <avr@gjlay.de>
1937         PR target/71103
1938         * config/avr/avr.md (movqi): Handle loading subreg:qi (const).
1940 2016-06-20  Georg-Johann Lay  <avr@gjlay.de>
1942         * config/avr/avr.c (avr_print_operand): Fix "format not a string
1943         literal" build warnings.
1944         (avr_print_operand_address): Dito.
1946 2016-06-19  David Edelsohn  <dje.gcc@gmail.com>
1948         PR target/71375
1949         * config/rs6000/aix51.h (TARGET_EXTRA_BUILTINS): Define as 0.
1950         * config/rs6000/aix43.h (TARGET_EXTRA_BUILTINS): Same.
1952 2016-06-18  John David Anglin  <danglin@gcc.gnu.org>
1954         * config/pa/pa.h (TARGET_LONG_PIC_PCREL_CALL): Remove.
1956 2016-06-18  Eric Botcazou  <ebotcazou@adacore.com>
1958         PR bootstrap/71435
1959         * reload1.c (reload): Pass 0 to finish_spills when called because
1960         update_eliminables_and_spill returns true and remove did_spill.
1961         (finish_spills): Adjust comment and document GLOBAL parameter.
1963 2016-06-17  DJ Delorie  <dj@redhat.com>
1965         PR target/71338
1966         * config/rl78/rl78-expand.c (umulqihi3): Enable for G10.
1967         * config/rl78/rl78-virtual.c (umulhi3_shift_virt): Likewise.
1968         (umulqihi3_virt): Likewise.
1969         * config/rl78/rl78-real.c (umulhi3_shift_real): Likewise.
1970         (umulqihi3_real): Likewise.
1972 2016-06-17  Martin Liska  <mliska@suse.cz>
1974         * tree-ssa-reassoc.c (transform_add_to_multiply): Use auto_vec.
1976 2016-06-17  Martin Liska  <mliska@suse.cz>
1978         * predict.def: PRED_LOOP_EXIT from 92 to 85.
1980 2016-06-17  James Greenhalgh  <james.greenhalgh@arm.com>
1982         * config/arm/arm_neon.h (vadd_f32): replace __FAST_MATH with
1983         __FAST_MATH__.
1984         (vaddq_f32): Likewise.
1985         (vmul_f32): Likewise.
1986         (vmulq_f32): Likewise.
1987         (vsub_f32): Likewise.
1988         (vsubq_f32): Likewise.
1990 2016-06-17  Bin Cheng  <bin.cheng@arm.com>
1992         PR tree-optimization/71347
1993         * tree-ssa-loop-ivopts.c (determine_group_iv_cost_address): Compute
1994         cost for all uses in group.
1996 2016-06-17 Bin Cheng  <bin.cheng@arm.com>
1998         * tree-vect-loop.c (vect_create_epilog_for_reduction): Only
1999         insert gimple seq if it's not empty.
2001 2016-06-17  Bin Cheng  <bin.cheng@arm.com>
2003         * tree-vectorizer.h (struct dr_with_seg_len): Remove class
2004         member OFFSET.
2005         * tree-vect-data-refs.c (operator ==): Handle DR_OFFSET directly,
2006         rather than OFFSET.
2007         (comp_dr_with_seg_len_pair): Ditto.
2008         (vect_prune_runtime_alias_test_list): Ditto.  Also Canonicalize
2009         struct dr_with_seg_len_pair against DR_OFFSET.
2010         * tree-vect-loop-manip.c (vect_create_cond_for_alias_checks): Handle
2011         DR_OFFSET directly.
2013 2016-06-17  Szabolcs Nagy  <szabolcs.nagy@arm.com>
2015         * config/aarch64/geniterators.sh: Handle parenthesised conditions.
2017 2016-06-16  John David Anglin  <danglin@gcc.gnu.org>
2019         * config/pa/pa.c (pa_output_pic_pcrel_sequence): New.
2020         (pa_output_lbranch): Use pa_output_pic_pcrel_sequence.
2021         (pa_output_millicode_call): Likewise.
2022         (pa_output_call): Likewise.
2023         (pa_output_indirect_call): Likewise.
2024         (pa_asm_output_mi_thunk): Likewise.
2026 2016-06-16  Bernhard Reutner-Fischer  <aldot@gcc.gnu.org>
2028         * doc/invoke.texi (x86 Options): Fix -mno-fp-ret-in-387 typo.
2030 2016-06-16  Martin Liska  <mliska@suse.cz>
2032         * predict.c (combine_predictions_for_insn): When we find a first
2033         match predictor, we should consider just predictors with
2034         PRED_FLAG_FIRST_MATCH.  Print either first match (if any) or
2035         DS theory predictor.
2036         (combine_predictions_for_bb): Likewise.
2038 2016-06-16  Jakub Jelinek  <jakub@redhat.com>
2040         * gimplify.c (gimplify_scan_omp_clauses): Handle COMPONENT_REFs
2041         with base of reference to struct.
2043 2016-06-16  Uros Bizjak  <ubizjak@gmail.com>
2045         * doc/invoke.texi (x86 Options): Document -m80387 and -mhard-float.
2047 2016-06-16  Senthil Kumar Selvaraj  <senthil_kumar.selvaraj@atmel.com>
2049         PR target/71151
2050         * config/avr/avr.c (avr_asm_init_sections): Remove setup of
2051         progmem_swtable_section.
2052         (progmem_swtable_section): Remove.
2053         (avr_asm_function_rodata_section): Remove.
2054         (TARGET_ASM_FUNCTION_RODATA_SECTION): Remove.
2055         * config/avr/avr.h (JUMP_TABLES_IN_TEXT_SECTION: Define to 1.
2057 2016-06-16  Jocelyn Mayer  <l_indien@magic.fr>
2059         * config/i386/driver-i386.c (host_detect_local_cpu): Set
2060         PROCESSOR_K8 for signature_CENTAUR_ebx with has_longmode.
2061         <case PROCESSOR_K8>: Pass nano-3000, nano, eden-x2 or k8 for
2062         signature_CENTAUR_ebx.
2063         * config/i386/i386.c (ix86_option_override_internal): Add
2064         definitions for VIA c7, samuel-2, nehemiah, esther, eden-x2, eden-x4,
2065         nano, nano-1000, nano-2000, nano-3000, nano-x2 and nano-x4.
2066         * doc/invoke.texi (x86 Options): Document new VIA -march entries.
2068 2016-06-16  Martin Liska  <mliska@suse.cz>
2070         * predict.def: Add fortran loop preheader predictor.
2071         * gimple-fold.c (gimple_fold_stmt_to_constant_1): Properly
2072         fold IFN_BUILTIN_EXPECT with a known constant argument.
2074 2016-06-16  Martin Liska  <mliska@suse.cz>
2076         * predict.def: Add 'Fortran' to display text of all
2077         PRED_FORTRAN_* predictors.
2079 2016-06-16  Uros Bizjak  <ubizjak@gmail.com>
2081         PR target/71242
2082         * config/ia64/ia64.c (enum ia64_builtins) [IA64_BUILTIN_NANQ]: New.
2083         [IA64_BUILTIN_NANSQ]: Ditto.
2084         (ia64_fold_builtin): New function.
2085         (TARGET_FOLD_BUILTIN): New define.
2086         (ia64_init_builtins) Declare const_string_type node.
2087         Add __builtin_nanq and __builtin_nansq builtin functions.
2088         (ia64_expand_builtin): Handle IA64_BUILTIN_NANQ and IA64_BUILTIN_NANSQ.
2090 2016-06-16  Nick Clifton  <nickc@redhat.com>
2092         * config/msp430/msp430-opts.h (msp430_hwmult_types): Add
2093         MSP430_HWMULT_ prefix to enum values.
2094         (msp430_regions): Add MSP430_REGION_ prefix to enum values.
2095         * config/msp430/msp430.c: Update use of enum values.
2096         * config/msp430/msp430.md: Likewise.
2097         * config/msp430/msp430.opt: Likewise.
2099 2016-06-16  Jan Hubicka  <hubicka@ucw.cz>
2101         * tree-ssa-loop-ivcanon.c (tree_estimate_loop_size): Fix estimation
2102         of comparsions in the last iteration.
2104 2016-06-16  Claudiu Zissulescu  <claziss@synopsys.com>
2105             Joern Rennecke  <joern.rennecke@embecosm.com>
2107         * config/arc/arc.c (arc_print_operand_address): Handle pc-relative
2108         addresses.
2109         (arc_needs_pcl_p): Add GOTOFFPC.
2110         (arc_legitimate_pic_addr_p): Likewise.
2111         (arc_output_pic_addr_const): Likewise.
2112         (arc_legitimize_pic_address): Generate a pc-relative address using
2113         GOTOFFPC.
2114         (arc_output_libcall): Use @pcl syntax.
2115         (arc_delegitimize_address_0): Delegitimize ARC_UNSPEC_GOTOFFPC.
2116         * config/arc/arc.md ("unspec"): Add ARC_UNSPEC_GOTOFFPC.
2117         (*movsi_insn): Use @pcl syntax.
2118         (doloop_begin_i): Likewise.
2120 2016-06-16  Martin Liska  <mliska@suse.cz>
2122         * predict.def: Define a new predictor.
2124 2016-06-16  Claudiu Zissulescu  <claziss@synopsys.com>
2126         * config/arc/arc.opt (mtp-regno): Update text.
2128 2016-06-16  Renlin Li  <renlin.li@arm.com>
2130         * config/aarch64/aarch64.c (aarch64_legitimize_address): Fix a typo.
2132 2016-06-16  Jakub Jelinek  <jakub@redhat.com>
2134         PR target/71554
2135         * config/i386/i386.md (setcc + movzbl peephole2): Use reg_set_p.
2136         (setcc + and peephole2): Likewise.
2138         PR rtl-optimization/71532
2139         * cse.c (cse_insn): For const/pure calls, invalidate argument passing
2140         memory slots.
2142 2016-06-15  Michael Meissner  <meissner@linux.vnet.ibm.com>
2144         * config/rs6000/vsx.md (VSINT_84): Add DImode to enable loading
2145         DImode constants with XXSPLTIB in vector registers.
2146         (vsx_extract_<mode>, V2DImode/V2DFmode): Combine both
2147         vsx_extract_<mode>_internal{1,2} into a single insn that handles
2148         direct move (both ISA 2.07 and ISA 3.0 versions), and optimizes
2149         extraction of the element at the top of the register as a scalar
2150         value.
2151         (vsx_extract_<mode>_internal1): Likewise.
2152         (vsx_extract_<mode>_internal2): Likewise.
2153         * config/rs6000/constraints.md (wi constraint): Remove a comment
2154         about DImode not being allowed in Altivec registers.
2155         (wB constraint): New constraint for constants that can be
2156         generated in Altivec registers with VSPLTISW/VUPKHSW.
2157         * config/rs6000/predicates.md (xxspltib_constant_split): Update
2158         comments.
2159         (xxspltib_constant_nosplit): Likewise.
2160         * config/rs6000/rs6000-cpus.def (ISA_2_6_MASKS_SERVER): Add
2161         support for -mupper-regs-di to enable DImode to go into Altivec
2162         registers.
2163         (POWERPC_MASKS): Likewise.
2164         (power7 cpu): Likewise.
2165         * config/rs6000/rs6000.opt (-mupper-regs-di): Likewise.
2166         * config/rs6000/rs6000.c (rs6000_hard_regno_mode_ok): Add support
2167         for DImode being allowed in Altivec registers.  Update wi/wj
2168         constraints.  Set scalar_in_vmx_p flag.
2169         (rs6000_option_override_internal): Add checks for -mupper-regs-di.
2170         (xxspltib_constant_p): Allow CONST_INT's with VOIDmode.  Don't
2171         return true if we could use VSPLTISW/VUPKHSW instead of XXSPLTIB.
2172         (rs6000_opt_masks): Add -mupper-regs-di.
2173         * config/rs6000/rs6000.md (lfiwax): Update clobbers that don't use
2174         direct move to use wi and not wj.
2175         (lfiwzx): Likewise.
2176         (floatsi<mode>2_lfiwax_mem): Combine alternatives into a single
2177         alternative.
2178         (floatunssi<mode>2_lfiwzx_mem): Likewise.
2179         (fix_trunc<mode>di2_fctidz): Change second alternative to allow
2180         any VSX register, instead of just Altivec registers, to allow
2181         either operand to be an Altivec register or both.
2182         (fixuns_trunc<mode>di2_fctiduz): Likewise.
2183         (movdi_internal32): Add support for -mupper-regs-di.  Add support
2184         to load constants via XXSPLTIB or VSPLTISW.  Add spacing to allow
2185         the alternatives and attributes to be lined up to be easier to
2186         read.
2187         (movdi_internal64): Likewise.
2188         (64-bit DImode splitters): Change predicates to only split loading
2189         up GPR registers.  Add splits for using XXSPLTIB or VSPLTISW to
2190         load constants in ISA 3.0 or ISA 2.07 respectively.
2191         * doc/invoke.texi (RS/6000 and PowerPC Options): Document
2192         -mupper-regs-di.  Update -mupper-regs-df and -mupper-regs-sf to
2193         mention -mcpu=power9 sets these options.
2194         * doc/md.texi (PowerPC and IBM RS6000 constraints): Document the
2195         wB constraint.
2197 2016-06-15  Pitchumani Sivanupandi  <pitchumani.s@atmel.com>
2199         PR target/67353
2200         * config/avr/avr.c (avr_set_current_function): Warn misspelled
2201         interrupt/ signal handler if -Wmisspelled-isr flag is enabled.
2202         * config/avr/avr.opt (Wmisspelled-isr): New warning flag. Enabled
2203         by default to warn misspelled interrupt/ signal handler.
2204         * doc/invoke.texi (AVR Options): Document it. Update description
2205         for -nodevicelib option.
2207 2016-06-15  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
2209         * config/aarch64/aarch64-simd.md (aarch64_<sur>shll_n<mode>): Clean
2210         up parentheses.  Use GET_MODE_UNIT_BITSIZE.
2211         (aarch64_<sur>shll2_n<mode>): Likewise.
2213 2016-06-15  Ilya Enkovich  <ilya.enkovich@intel.com>
2215         PR middle-end/71529
2216         * ipa-chkp.c (chkp_build_instrumented_fndecl): Fix
2217         DECL_CONTEXT for copied arguments.
2219 2016-06-15  Alan Hayward  <alan.hayward@arm.com>
2221         PR tree-optimization/71483
2222         * tree-vect-loop.c (vectorizable_live_operation): Pick correct index
2223         for slp
2225 2016-06-15  Martin Liska  <mliska@suse.cz>
2227         * predict.c (tree_predict_by_opcode): Call predict_edge_def
2228         instead of predict_edge w/o a probability.
2230 2016-06-15  Alan Hayward  <alan.hayward@arm.com>
2232         PR tree-optimization/71439
2233         * tree-vect-loop.c (vect_analyze_loop_operations): Additional check for
2234         live PHIs.
2236 2016-06-15  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
2238         * ifcvt.c (bb_ok_for_noce_multiple_sets): Allow simple lowpart
2239         register subregs in SET_SRC.
2241 2016-06-15  Richard Biener  <rguenther@suse.de>
2243         * tree-vect-stmts.c (vectorizable_store): Remove strided grouped
2244         store restrictions.
2246 2016-06-15  Richard Biener  <rguenther@suse.de>
2248         * tree-vect-data-refs.c (vect_analyze_data_ref_dependence): Do
2249         not consider dependences between accesses that belong to the
2250         same group.
2251         (vect_analyze_data_ref_dependences): Do not analyze read-read
2252         or self-dependences.
2254 2016-06-14  David Malcolm  <dmalcolm@redhat.com>
2256         * spellcheck-tree.c: Include spellcheck-tree.h rather than
2257         spellcheck.h.
2258         (find_closest_identifier): Reimplement in terms of
2259         best_match<tree,tree>.
2260         * spellcheck-tree.h: New file.
2261         * spellcheck.c (struct edit_distance_traits<const char *>): New
2262         struct.
2263         (find_closest_string): Reimplement in terms of
2264         best_match<const char *, const char *>.
2265         * spellcheck.h (levenshtein_distance): Move prototype of tree-based
2266         overload to spellcheck-tree.h.
2267         (find_closest_identifier): Likewise.
2268         (struct edit_distance_traits<T>): New template.
2269         (class best_match): New class.
2271 2016-06-14  David Malcolm  <dmalcolm@redhat.com>
2273         * selftest-run-tests.c (selftest::run_tests): Call
2274         selftest::spellcheck_tree_c_tests.
2275         * selftest.h (selftest::spellcheck_tree_c_tests): New decl.
2276         * spellcheck-tree.c: Include selftest.h and stringpool.h.
2277         (selftest::test_find_closest_identifier): New function.
2278         (selftest::spellcheck_tree_c_tests): New function.
2279         * spellcheck.c (selftest::test_find_closest_string): Verify that
2280         the order of the vec does not affect the results for this case.
2281         (selftest::test_data): New array.
2282         (selftest::test_metric_conditions): New function.
2283         (selftest::spellcheck_c_tests): Add a test of case-comparison.
2284         Call selftest::test_metric_conditions.
2286 2016-06-14  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
2288         * config/rs6000/rs6000-builtin.def (commentary): Typo.
2289         (BU_P9_MISC_1): Likewise.
2290         (BU_P9_64BIT_MISC_0): Likewise.
2291         (BU_P9_MISC_0): Likewise.
2293 2016-06-14  David Malcolm  <dmalcolm@redhat.com>
2295         * gcc-rich-location.c
2296         (gcc_rich_location::add_fixit_misspelled_id): New method.
2297         * gcc-rich-location.h
2298         (gcc_rich_location::add_fixit_misspelled_id): Add decl.
2300 2016-06-14  Andreas Tobler  <andreast@gcc.gnu.org>
2302         * config/arm/freebsd.h: Only enable unaligned access for armv6 on
2303         FreeBSD 11 and above.
2305 2016-06-14  Uros Bizjak  <ubizjak@gmail.com>
2307         * config/i386/i386.md (signbittf2): Emit sse_movmskps for TARGET_SSE.
2309 2016-06-14  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
2311         * expmed.h: Close parenthesis in "at your option" in copyright
2312         boilerplate.
2313         * lower-subreg.h: Likewise.
2315 2016-06-14  Richard Biener  <rguenther@suse.de>
2317         PR middle-end/71526
2318         * genmatch.c (expr::gen_transform): Use in_type for comparisons
2319         if available.
2321 2015-06-14  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
2323         * config/aarch64/aarch64.c (aarch64_mask_and_shift_for_ubfiz_p):
2324         New function.
2325         (aarch64_rtx_costs): Use it.  Rewrite CONST_INT_P (op1) case to handle
2326         mask+shift version.
2327         * config/aarch64/aarch64-protos.h (aarch64_mask_and_shift_for_ubfiz_p):
2328         New prototype.
2329         * config/aarch64/aarch64.md (*andim_ashift<mode>_bfiz): Replace
2330         matching condition with aarch64_mask_and_shift_for_ubfiz_p.
2332 2016-06-14  Richard Biener  <rguenther@suse.de>
2334         PR tree-optimization/71522
2335         * tree-ssa.c (non_rewritable_lvalue_p): Do not rewrite non-float
2336         copying into float copying.
2338 2016-06-14  Jakub Jelinek  <jakub@redhat.com>
2340         PR tree-optimization/71520
2341         * tree-ssa-tail-merge.c (find_duplicate): Handle labels.
2342         (replace_block_by): Move user labels from bb1 to bb2.
2344 2016-06-14  Richard Biener  <rguenther@suse.de>
2346         PR middle-end/71310
2347         PR bootstrap/71510
2348         * expr.h (get_bit_range): Declare.
2349         * expr.c (get_bit_range): Export.
2350         * fold-const.c (optimize_bit_field_compare): Use get_bit_range and
2351         word_mode again to constrain the bitfield access.
2353 2016-06-14  Richard Biener  <rguenther@suse.de>
2355         PR tree-optimization/71521
2356         * tree-vrp.c (extract_range_from_binary_expr_1): Guard
2357         division int_const_binop against zero divisor.
2359 2016-06-13  Uros Bizjak  <ubizjak@gmail.com>
2361         * config/i386/i386.md (signbittf2): New expander.
2362         * config/i386/sse.md (ptesttf2): New insn pattern.
2364 2016-06-13  David Malcolm  <dmalcolm@redhat.com>
2366         PR bootstrap/71481
2367         * input.c (selftest::test_reading_source_line): Avoid reading from
2368         __FILE__ by creating a tempfile with known content and reading
2369         from that instead.
2371 2016-06-13  David Malcolm  <dmalcolm@redhat.com>
2373         * pretty-print.c (assert_pp_format_colored): Skip the test if
2374         GCC_COLORS is set.
2375         (test_pp_format): Remove comment about GCC_COLORS.
2377 2016-06-13  David Malcolm  <dmalcolm@redhat.com>
2379         * input.c (test_reading_source_line): Use SELFTEST_LOCATION.
2380         * pretty-print.c (assert_pp_format_va): Add location param and use
2381         it with ASSERT_STREQ_AT.
2382         (assert_pp_format): Add location param and pass it to
2383         assert_pp_format_va.
2384         (assert_pp_format_colored): Likewise.
2385         (ASSERT_PP_FORMAT_1): New.
2386         (ASSERT_PP_FORMAT_2): New.
2387         (ASSERT_PP_FORMAT_3): New.
2388         (test_pp_format): Provide SELFTEST_LOCATION throughout, either
2389         explicitly, or implicitly via the above macros.
2390         * selftest.c (selftest::pass): Use a selftest::location rather
2391         than file and line.
2392         (selftest::fail): Likewise.  Print the function name.
2393         (selftest::fail_formatted): Likewise.
2394         (selftest::assert_streq): Use a selftest::location rather than
2395         file and line.
2396         * selftest.h (selftest::location): New struct.
2397         (SELFTEST_LOCATION): New macro.
2398         (selftest::pass): Accept a const location & rather than file
2399         and line.
2400         (selftest::fail): Likewise.
2401         (selftest::fail_formatted): Likewise.
2402         (selftest::assert_streq): Likewise.
2403         (ASSERT_TRUE): Update for above changes, using SELFTEST_LOCATION.
2404         (ASSERT_FALSE): Likewise.
2405         (ASSERT_EQ): Likewise.
2406         (ASSERT_NE): Likewise.
2407         (ASSERT_STREQ): Likewise.
2408         (ASSERT_PRED1): Likewise.
2409         (ASSERT_STREQ_AT): New macro.
2411 2016-06-13  David Malcolm  <dmalcolm@redhat.com>
2413         * selftest.c (selftest::fail_formatted): New function.
2414         (selftest::assert_streq): New function.
2415         * selftest.h (selftests::fail_formatted): New decl.
2416         (selftest::assert_streq): New decl.
2417         (ASSERT_STREQ): Reimplement in terms of selftest::assert_streq.
2419 2016-06-13  Jeff Law  <law@redhat.com>
2421         PR tree-optimization/71403
2422         * tree-ssa-threadbackward.c
2423         (convert_and_register_jump_thread_path): No longer accept reference
2424         to path.  Do not pop items off the path anymore.
2425         (fsm_find_control_statement_thread_paths): Do not allow threading
2426         to a deeper loop nest.  Pop the last item off the path here rather
2427         than in convert_and_register_jump_thread_path.
2429 2016-06-13  Evandro Menezes  <e.menezes@samsung.com>
2430             Wilco Dijkstra  <Wilco.Dijkstra@arm.com>
2432         [AArch64] Emit division using the Newton series
2434         * config/aarch64/aarch64-protos.h
2435         (cpu_approx_modes): Add new member "division".
2436         (aarch64_emit_approx_div): Declare new function.
2437         * config/aarch64/aarch64.c
2438         (generic_approx_modes): New member "division".
2439         (exynosm1_approx_modes): Likewise.
2440         (xgene1_approx_modes): Likewise.
2441         (aarch64_emit_approx_div): Define new function.
2442         * config/aarch64/aarch64.md ("div<mode>3"): New expansion.
2443         * config/aarch64/aarch64-simd.md ("div<mode>3"): Likewise.
2444         * config/aarch64/aarch64.opt (-mlow-precision-div): Add new option.
2445         * doc/invoke.texi (-mlow-precision-div): Describe new option.
2447 2016-06-13  Evandro Menezes  <e.menezes@samsung.com>
2448             Wilco Dijkstra  <wilco.dijkstra@arm.com>
2450         [AArch64] Emit square root using the Newton series
2452         * config/aarch64/aarch64-protos.h
2453         (aarch64_emit_approx_rsqrt): Replace with new function
2454         "aarch64_emit_approx_sqrt".
2455         (cpu_approx_modes): New member "sqrt".
2456         * config/aarch64/aarch64.c
2457         (generic_approx_modes): New member "sqrt".
2458         (exynosm1_approx_modes): Likewise.
2459         (xgene1_approx_modes): Likewise.
2460         (aarch64_emit_approx_rsqrt): Replace with new function
2461         "aarch64_emit_approx_sqrt".
2462         (aarch64_override_options_after_change_1): Handle new option.
2463         * config/aarch64/aarch64-simd.md
2464         (rsqrt<mode>2): Use new function instead.
2465         (sqrt<mode>2): New expansion and insn definitions.
2466         * config/aarch64/aarch64.md: Likewise.
2467         * config/aarch64/aarch64.opt
2468         (mlow-precision-sqrt): Add new option description.
2469         * doc/invoke.texi (mlow-precision-sqrt): Likewise.
2471 2016-06-13  Evandro Menezes  <e.menezes@samsung.com>
2473         [AArch64] Add more choices for the reciprocal square root approximation
2475         Allow a target to prefer such operation depending on the operation mode.
2477         * config/aarch64/aarch64-protos.h
2478         (AARCH64_APPROX_MODE): New macro.
2479         (AARCH64_APPROX_{NONE,ALL}): Likewise.
2480         (cpu_approx_modes): New structure.
2481         (tune_params): New member "approx_modes".
2482         * config/aarch64/aarch64-tuning-flags.def
2483         (AARCH64_EXTRA_TUNE_APPROX_RSQRT): Remove macro.
2484         * config/aarch64/aarch64.c
2485         (generic_approx_modes): New core "cpu_approx_modes" structure.
2486         (exynosm1_approx_modes): Likewise.
2487         (xgene1_approx_modes): Likewise.
2488         (generic_tunings): New member "approx_modes".
2489         (cortexa35_tunings): Likewise.
2490         (cortexa53_tunings): Likewise.
2491         (cortexa57_tunings): Likewise.
2492         (cortexa72_tunings): Likewise.
2493         (exynosm1_tunings): Likewise.
2494         (thunderx_tunings): Likewise.
2495         (xgene1_tunings): Likewise.
2496         (use_rsqrt_p): New argument for the mode and use new member from
2497         "tune_params".
2498         (aarch64_builtin_reciprocal): Devise mode from builtin.
2499         (aarch64_optab_supported_p): New argument for the mode.
2500         * doc/invoke.texi (-mlow-precision-recip-sqrt): Reword description.
2502 2016-06-13  Kelvin Nilsen  <kelvin@gcc.gnu.org>
2504         * config/rs6000/rs6000.h (RS6000_BTM_COMMON): Add the
2505         RS6000_BTM_MODULO flag into the set of flags that are considered
2506         to be part of the common configuration.
2508 2016-06-13  Kelvin Nilsen  <kelvin@gcc.gnu.org>
2510         * config/rs6000/altivec.h (vec_absd): New macro for vector absolute
2511         difference unsigned.
2512         (vec_absdb): New macro for vector absolute difference unsigned
2513         byte.
2514         (vec_absdh): New macro for vector absolute difference unsigned
2515         half-word.
2516         (vec_absdw): New macro for vector absolute difference unsigned word.
2517         * config/rs6000/altivec.md (UNSPEC_VADU): New value.
2518         (vadu<mode>3): New insn.
2519         (*p9_vadu<mode>3): New insn.
2520         * config/rs6000/rs6000-builtin.def (vadub): New built-in
2521         definition.
2522         (vaduh): New built-in definition.
2523         (vaduw): New built-in definition.
2524         (vadu): New overloaded built-in definition.
2525         (vadub): New overloaded built-in definition.
2526         (vaduh): New overloaded built-in definition.
2527         (vaduw): New overloaded built-in definition.
2528         * config/rs6000/rs6000-c.c (altivec_overloaded_builtins): Add
2529         overloaded vector absolute difference unsigned functions.
2530         * doc/extend.texi (PowerPC AltiVec Built-in Functions): Document
2531         the ISA 3.0 vector absolute difference unsigned built-in functions.
2533 2016-06-13  Eric Botcazou  <ebotcazou@adacore.com>
2535         * tree-ssa-sccvn.c (vn_reference_lookup_3): Use a uniform test and
2536         update shared_lookup_references only once after changing operands.
2538 2016-06-13  Thomas Schwinge  <thomas@codesourcery.com>
2540         PR middle-end/71373
2541         * tree-nested.c (convert_nonlocal_omp_clauses)
2542         (convert_local_omp_clauses): Document missing OMP_CLAUSE_*.
2544         * tree-cfg.c (edge_to_cases_cleanup): Fix CASE_CHAIN typo.
2545         * tree.def (CASE_LABEL_EXPR): Likewise.
2547 2016-06-13  Bernd Edlinger  <bernd.edlinger@hotmail.de>
2549         PR bootstrap/71481
2550         * input.c (test_builtins): Fix an assertion.
2552 2016-06-13  Uros Bizjak  <ubizjak@gmail.com>
2554         * config/i386/i386.md (paritydi2): Use ix86_expand_setcc.
2555         (paritysi2): Ditto.
2556         (isinfxf2): Ditto.
2557         (isinf<mode>2): Ditto.
2559 2016-06-13  Uros Bizjak  <ubizjak@gmail.com>
2561         * ggc-tests.c (test_finalization): Only test need_finalization_p
2562         for GCC_VERSION >= 4003.
2564 2016-06-13  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
2566         * config/s390/vecintrin.h: Fix file description in comment.
2568 2016-06-13  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
2570         * config/s390/s390-builtin-types.def: Change builtin type naming
2571         scheme to match builtin-types.def.
2573 2016-06-13  Marc Glisse  <marc.glisse@inria.fr>
2575         * fold-const.c (optimize_minmax_comparison): Remove.
2576         (fold_comparison): Remove call to the above.
2577         * match.pd (MIN (X, Y) == X, MIN (X, 5) == 0, MIN (X, C1) < C2):
2578         New transformations.
2580 2016-06-13  Alan Hayward  <alan.hayward@arm.com>
2582         PR tree-optimization/71416
2583         * tree-vect-loop.c (vectorizable_live_operation): Let worklist have
2584         multiple entries
2586 2016-06-13  Martin Liska  <mliska@suse.cz>
2588         * predict.c (enum predictor_reason): Prefix enum with REASON_.
2589         (combine_predictions_for_insn): Likewise.
2590         (prune_predictions_for_bb): Likewise.
2591         (combine_predictions_for_bb): Likewise.
2593 2016-06-13  Richard Biener  <rguenther@suse.de>
2595         PR tree-optimization/71505
2596         * tree-vect-data-refs.c (vect_analyze_data_ref_accesses): Make
2597         assert match comment.
2599 2016-06-13  Marek Polacek  <polacek@redhat.com>
2601         PR middle-end/71476
2602         * gimplify.c (maybe_warn_switch_unreachable): Factored out of
2603         gimplify_switch_expr.
2604         (warn_switch_unreachable_r): New function.
2606 2016-06-13  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
2608         PR target/71379
2609         * config/s390/s390.c (s390_expand_builtin): Increase MAX_ARGS by
2610         one.
2612 2016-06-13  Richard Biener  <rguenther@suse.de>
2614         PR middle-end/64516
2615         * fold-const.c (fold_unary_loc): Preserve alignment when
2616         folding a VIEW_CONVERT_EXPR into a MEM_REF.
2618 2016-06-13  Martin Liska  <mliska@suse.cz>
2620         PR sanitizer/71458
2621         * toplev.c (process_options): Do not enable -fcheck-pointer-bounds
2622         w/ -fsanitize=bounds.
2624 2016-06-12  Uros Bizjak  <ubizjak@gmail.com>
2626         * config/i386/i386.c (ix86_init_builtins): Calculate
2627         FLOAT128_FTYPE_CONST_STRING function type only once.
2628         * doc/extend.texi (x86 Built-in Functions): Update text, __float128
2629         built-in functions are available for x86-32 and x86-64 targets.
2631 2016-06-12  Uros Bizjak  <ubizjak@gmail.com>
2633         PR target/71241
2634         * config/i386/i386.i386-builtin-types.def (CONST_STRING):
2635         New primitive type.
2636         (FLOAT128_FTYPE_CONST_STRING): New function type.
2637         * config/i386/i386.c (enum ix86_builtins) [IX86_BUILTIN_NANQ]: New.
2638         [IX86_BUILTIN_NANSQ]: Ditto.
2639         (ix86_fold_builtin): Handle IX86_BUILTIN_NANQ and IX86_BUILTIN_NANSQ.
2640         (ix86_init_builtin_types): Declare const_string_type_node.
2641         (ix86_init_builtins): Add __builtin_nanq and __builtin_nansq
2642         builtin functions.
2643         (ix86_expand_builtin): Handle IX86_BUILTIN_NANQ and IX86_BUILTIN_NANSQ.
2644         * doc/extend.texi (x86 Built-in Functions): Document
2645         __builtin_nanq and __builtin_nansq.
2647 2016-06-11  Jiong Wang  <jiong.wang@arm.com>
2649         PR target/71061
2650         * config/arm/arm-protos.h (arm_attr_length_pop_multi): New declaration.
2651         * config/arm/arm.c (arm_attr_length_pop_multi): New function to return
2652         length for pop patterns.
2653         (arm_attr_length_push_multi): Update comments.
2654         * config/arm/arm.md (*load_multiple_with_writeback): Set "length"
2655         attribute.
2656         (*pop_multiple_with_writeback_and_return): Likewise.
2657         (*pop_multiple_with_return): Likewise.
2659 2016-06-11  Segher Boessenkool  <segher@kernel.crashing.org>
2661         PR middle-end/71310
2662         * fold-const.c (optimize_bit_field_compare): Don't try to use
2663         word_mode unconditionally for reading the bit field, look at
2664         DECL_BIT_FIELD_REPRESENTATIVE instead.
2666 2016-06-11  Kugan Vivekanandarajah  <kuganv@linaro.org>
2668         PR middle-end/71478
2669         * tree-ssa-reassoc.c (reassociate_bb): Remove (-1) from ops list for
2670         vector integer type.
2672 2016-06-10  Jakub Jelinek  <jakub@redhat.com>
2674         PR middle-end/71494
2675         * tree-nested.c (convert_nonlocal_reference_stmt): For GIMPLE_GOTO
2676         without LABEL_DECL, set *handled_ops_p to false instead of true.
2678 2016-06-10  Martin Sebor  <msebor@redhat.com>
2680         PR c/71392
2681         * builtin-attrs.def (ATTR_NOTHROW_NONNULL_LEAF_LIST): New macro.
2682         (ATTR_NOTHROW_NONNULL_TYPEGENERIC_LEAF): Same.
2683         * builtins.def (BUILT_IN_SADD_OVERFLOW, BUILT_IN_SADDL_OVERFLOW): Use
2684         them.
2685         (BUILT_IN_SADDLL_OVERFLOW, BUILT_IN_SSUB_OVERFLOW): Same.
2686         (BUILT_IN_SSUBL_OVERFLOW, BUILT_IN_SSUBLL_OVERFLOW): Same.
2687         (BUILT_IN_SMUL_OVERFLOW, BUILT_IN_SMULL_OVERFLOW): Same.
2688         (BUILT_IN_SMULLL_OVERFLOW, BUILT_IN_UADD_OVERFLOW): Same.
2689         (BUILT_IN_UADDL_OVERFLOW, BUILT_IN_UADDLL_OVERFLOW): Same.
2690         (BUILT_IN_USUB_OVERFLOW, BUILT_IN_USUBL_OVERFLOW): Same.
2691         (BUILT_IN_USUBLL_OVERFLOW, BUILT_IN_UMUL_OVERFLOW): Same.
2692         (BUILT_IN_UMULL_OVERFLOW, BUILT_IN_UMULLL_OVERFLOW): Same.
2694 2016-06-10  Bernd Edlinger  <bernd.edlinger@hotmail.de>
2696         * config/arm/arm.h (pool_vector_label,
2697         return_used_this_function): Remove.
2699 2016-06-10  Jeff Law  <law@redhat.com>
2701         PR tree-optimization/71335
2702         * tree-ssa-threadbackward.c (profitable_jump_thread_path): Filter out
2703         zero length paths here.
2704         (convert_and_register_jump_thread_path): Remove hacks related to
2705         duplicated blocks in the jump thread path.
2706         (fsm_find_control_statement_thread_paths): Avoid putting the same
2707         block on the thread path twice, but ensure the thread path is
2708         unchanged from the caller's point of view.
2710 2016-06-10  Jan Hubicka  <hubicka@ucw.cz>
2712         * predict.c (predict_loops): Remove PRED_LOOP_BRANCH.
2713         * predict.def (PRED_LOOP_BRANCH): Remove.
2715 2016-06-10  David Malcolm  <dmalcolm@redhat.com>
2717         * Makefile.in (OBJS): Add ggc-tests.o.
2718         (GTFILES): Add ggc-tests.c.
2719         * ggc-tests.c: New file.
2720         * selftest-run-tests.c (selftest::run_tests): Call
2721         selftest::ggc_tests_c_tests.
2722         * selftest.h (selftest::ggc_tests_c_tests): New prototype.
2724 2016-06-10  Alexander Monakov  <amonakov@ispras.ru>
2726         * match.pd (-1 / B < A): Use :c to avoid pattern duplication.
2728 2016-06-10  Maxim Ostapenko  <m.ostapenko@samsung.com>
2730         PR sanitizer/71480
2731         * varasm.c (place_block_symbol): Adjust alignment for asan protected
2732         STRING_CSTs even if TREE_CONSTANT_POOL_ADDRESS_P.
2734 2016-06-10  Jan Hubicka  <hubicka@ucw.cz>
2736         * profile.c: Include cfgloop.h.
2737         (branch_prob): Compute estimated number of iterations.
2738         * tree-ssa-loop-niter.c (estimate_numbers_of_iterations_loop): Do not
2739         recompute estimate number of iterations from profile.
2741 2016-06-10  Bernd Edlinger  <bernd.edlinger@hotmail.de>
2743         PR inline-asm/68843
2744         * reg-stack.c (check_asm_stack_operands): Explicit input arguments
2745         must be grouped on top of stack.  Don't force early clobber
2746         on ordinary reg outputs.
2748 2016-06-10  Richard Biener  <rguenther@suse.de>
2750         * targhooks.c (default_builtin_vectorization_cost): Adjust
2751         vec_construct cost.
2753 2016-06-10  Richard Biener  <rguenther@suse.de>
2755         * gimple-fold.c (gimple_fold_builtin_memory_op): Make sure
2756         to fold the RHS to a constant if possible.
2758 2016-06-10  Thomas Schwinge  <thomas@codesourcery.com>
2760         PR middle-end/71373
2761         * tree-nested.c (convert_nonlocal_omp_clauses)
2762         (convert_local_omp_clauses): Handle OMP_CLAUSE_ASYNC,
2763         OMP_CLAUSE_WAIT, OMP_CLAUSE_INDEPENDENT, OMP_CLAUSE_AUTO,
2764         OMP_CLAUSE__CACHE_, OMP_CLAUSE_TILE.
2766         * gimplify.c (gimplify_adjust_omp_clauses): Discard
2767         OMP_CLAUSE_TILE.
2768         * omp-low.c (scan_sharing_clauses): Don't expect OMP_CLAUSE_TILE.
2770         * omp-low.c (scan_sharing_clauses): Don't expect
2771         OMP_CLAUSE__CACHE_.
2773 2016-06-10  Alan Hayward  <alan.hayward@arm.com>
2775         PR tree-optimization/71407
2776         PR tree-optimization/71416
2777         * tree-vect-loop.c (vectorizable_live_operation): Use vectype for
2778         BIT_FIELD_REF type.
2780 2016-06-10  Richard Biener  <rguenther@suse.de>
2782         PR middle-end/71477
2783         * cfgloop.c (alloc_loop): Initialize nb_iterations_likely_upper_bound.
2785 2016-06-09  Eric Botcazou  <ebotcazou@adacore.com>
2787         * df-problems.c (df_note_bb_compute): Guard use of DF_INSN_INFO_GET.
2789 2016-06-09  Vladimir Makarov  <vmakarov@redhat.com>
2790             Jiong Wang  <jiong.wang@arm.com>
2792         PR rtl-optimization/70751
2793         * lra-constraints.c (process_alt_operands): Recognize Non-pseudo
2794         spilled into memory.
2796 2016-06-09  Jonathan Yong  <10walls@gmail.com>
2798         Revert:
2799         2015-09-21  Jonathan Yong  <10walls@gmail.com>
2801         * config/i386/cygwin.h (STARTFILE_SPEC): Explicitly search
2802         sysroot/usr/lib/32api for additional win32 libraries,
2803         fixes failing Cygwin bootstrapping.
2805 2016-06-09  Marcin Baczyński  <marbacz@gmail.com>
2807         * diagnostic.h (diagnostic_line_cutoff, diagnostic_flush_buffer):
2808         Delete.
2810 2016-06-09  David Malcolm  <dmalcolm@redhat.com>
2812         PR bootstrap/71471
2813         * pretty-print.c (pp_indent): Specify that %p is printed in a
2814         host-dependent manner.
2815         (test_pp_format): Remove the test for %p.
2817 2016-06-09  Maciej W. Rozycki  <macro@imgtec.com>
2819         * config/mips/mips.c (mips_output_jump): Fix formatting.
2821 2016-06-09  Richard Biener  <rguenther@suse.de>
2823         PR tree-optimization/71462
2824         * tree-ssa-loop-manip.c (find_uses_to_rename): Guard against
2825         removed blocks.
2827 2016-06-09  Martin Liska  <mliska@suse.cz>
2829         * predict.c (dump_prediction): Add new argument.
2830         (enum predictor_reason): New enum.
2831         (struct predictor_hash): New struct.
2832         (predictor_hash::hash): New function.
2833         (predictor_hash::equal): Likewise.
2834         (not_removed_prediction_p): New function.
2835         (prune_predictions_for_bb): Likewise.
2836         (combine_predictions_for_bb): Prune predictions.
2838 2016-06-09  Martin Liska  <mliska@suse.cz>
2840         * predict.c (filter_predictions): New function.
2841         (remove_predictions_associated_with_edge): Use the filter
2842         function.
2843         (equal_edge_p): New function.
2845 2016-06-09  Stefan Bruens  <stefan.bruens@rwth-aachen.de>
2847         * doc/invoke.texi (ARM Options): Use lexicographical ordering.
2848         Correct usage of @samp vs @option, add @samp where appropriate.
2849         Add -march={armv6k,armv6z,arm6zk}, remove -march=ep9312.
2850         Add armv6s-m and document it, as it is no official ARM name.
2852 2016-06-09  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
2854         * ifcvt.c (struct noce_if_info): Add transform_name field.
2855         (noce_try_move): Set if_info->transform_name to the function name.
2856         (noce_try_ifelse_collapse): Likewise.
2857         (noce_try_store_flag): Likewise.
2858         (noce_try_inverse_constants): Likewise.
2859         (noce_try_store_flag_constants): Likewise.
2860         (noce_try_addcc): Likewise.
2861         (noce_try_store_flag_mask): Likewise.
2862         (noce_try_cmove): Likewise.
2863         (noce_try_cmove_arith): Likewise.
2864         (noce_try_minmax): Likewise.
2865         (noce_try_abs): Likewise.
2866         (noce_try_sign_mask): Likewise.
2867         (noce_try_bitop): Likewise.
2868         (noce_convert_multiple_sets): Likewise.
2869         (noce_process_if_block): Print if_info->transform_name to
2870         dump_file if transformation succeeded.
2872 2016-06-09  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
2874         * config/arm/cortex-a57.md (cortex_a57_alu):
2875         Handle csel type.
2877 2016-06-08  Martin Sebor  <msebor@redhat.com>
2878             Jakub Jelinek  <jakub@redhat.com>
2880         PR c++/70507
2881         PR c/68120
2882         * builtins.def (BUILT_IN_ADD_OVERFLOW_P, BUILT_IN_SUB_OVERFLOW_P,
2883         BUILT_IN_MUL_OVERFLOW_P): New builtins.
2884         * builtins.c: Include gimple-fold.h.
2885         (fold_builtin_arith_overflow): Handle
2886         BUILT_IN_{ADD,SUB,MUL}_OVERFLOW_P.
2887         (fold_builtin_3): Likewise.
2888         * doc/extend.texi (Integer Overflow Builtins): Document
2889         __builtin_{add,sub,mul}_overflow_p.
2891 2016-06-08  Jose E. Marchesi  <jose.marchesi@oracle.com>
2893         * config/sparc/driver-sparc.c (cpu_names): Fix the entry for the
2894         SPARC-M7 and add an entry for SPARC-S7 cpus (Sonoma).
2896 2016-06-08  Alan Lawrence  <alan.lawrence@arm.com>
2898         * config/aarch64/aarch64.c (aarch64_function_arg_alignment):
2899         Rewrite, looking one level down for records and arrays.
2901 2016-06-08  David Malcolm  <dmalcolm@redhat.com>
2903         * pretty-print.c: Include "selftest.h".
2904         (pp_format): Fix comment.
2905         (identifier_to_locale): Likewise.
2906         (selftest::test_basic_printing): New function.
2907         (selftest::assert_pp_format): New function.
2908         (selftest::test_pp_format): New function.
2909         (selftest::pretty_print_c_tests): New function.
2910         * selftest-run-tests.c (selftest::run_tests): Call
2911         selftest::pretty_print_c_tests.
2912         * selftest.h (pretty_print_c_tests): New declaration.
2914 2016-06-07  Jan Hubicka  <hubicka@ucw.cz>
2916         * invoke.texi (max-loop-headers-insns): Document.
2917         * params.def (PARAM_MAX_LOOP_HEADER_INSNS): New.
2918         * tree-ssa-loop-ch.c (should_duplicate_loop_header_p): Update comment.
2919         (ch_base::copy_headers): Use PARAM_MAX_LOOP_HEADER_INSNS.
2921 2016-06-08  Richard Biener  <rguenther@suse.de>
2923         * tree-vect-stmts.c (vectorizable_load): Remove restrictions
2924         on strided SLP loads and fall back to scalar loads in case
2925         we can't chunk them.
2927 2016-06-08  Richard Biener  <rguenther@suse.de>
2929         PR tree-optimization/71452
2930         * tree-ssa.c (non_rewritable_lvalue_p): Make sure that the
2931         type used for the SSA rewrite has enough precision to cover
2932         the dynamic type of the location.
2934 2016-06-08  Jakub Jelinek  <jakub@redhat.com>
2935             Richard Biener  <rguenther@suse.de>
2937         PR c++/71448
2938         * fold-const.c (fold_comparison): Handle CONSTANT_CLASS_P (base0)
2939         the same as DECL_P (base0) for indirect_base0.  Use equality_code
2940         in one further place.
2942 2016-06-08  Richard Sandiford  <richard.sandiford@arm.com>
2944         * expmed.c (store_bit_field_1): Do not restrict a multiword op0
2945         to one word if the field is known to overlap other words.
2946         (extract_bit_field_1): Likewise.
2947         (store_split_bit_field): Remove compensating code.
2948         (extract_split_bit_field): Likewise.
2950 2016-06-08  Bernd Schmidt  <bschmidt@redhat.com>
2952         PR debug/71432
2953         PR ada/71413
2954         * tree-ssa-strlen.c (handle_builtin_memcmp): Ignore debug insns.
2956 2016-06-08  Jiong Wang  <jiong.wang@arm.com>
2958         * config/aarch64/aarch64-builtins.def (faddp): New builtins for modes in
2959         VDQF.
2960         * config/aarch64/aarch64-simd.md (aarch64_faddp<mode>): New.
2961         (arch64_addpv4sf): Delete.
2962         (reduc_plus_scal_v4sf): Use "gen_aarch64_faddpv4sf" instead of
2963         "gen_aarch64_addpv4sf".
2964         * config/aarch64/arm_neon.h (vpadd_f32): Remove inline assembly.  Use
2965         builtin.
2966         (vpadds_f32): Likewise.
2967         (vpaddq_f32): Likewise.
2968         (vpaddq_f64): Likewise.
2970 2016-06-08  Jiong Wang  <jiong.wang@arm.com>
2972         * config/aarch64/aarch64-builtins.def (fabd): New builtins for modes
2973         VALLF.
2974         * config/aarch64/aarch64-simd.md (fabd<mode>_3): Extend modes from VDQF
2975         to VALLF.  Rename to "fabd<mode>3".
2976         "*fabd_scalar<mode>3): Delete.
2977         * config/aarch64/arm_neon.h (vabds_f32): Remove inline assembly.
2978         Use builtin.
2979         (vabdd_f64): Likewise.
2980         (vabd_f32): Likewise.
2981         (vabd_f64): Likewise.
2982         (vabdq_f32): Likewise.
2983         (vabdq_f64): Likewise.
2985 2016-06-08  Jiong Wang  <jiong.wang@arm.com>
2987         * config/aarch64/aarch64-builtins.def (rsqrts): New builtins for modes
2988         VALLF.
2989         * config/aarch64/aarch64-simd.md (aarch64_rsqrts_<mode>3): Rename to
2990         "aarch64_rsqrts<mode>".
2991         * config/aarch64/aarch64.c (get_rsqrts_type): Update gen* name.
2992         * config/aarch64/arm_neon.h (vrsqrtss_f32): Remove inline assembly.  Use
2993         builtin.
2994         (vrsqrtsd_f64): Likewise.
2995         (vrsqrts_f32): Likewise.
2996         (vrsqrts_f64): Likewise.
2997         (vrsqrtsq_f32): Likewise.
2998         (vrsqrtsq_f64): Likewise.
3000 2016-06-08  Jiong Wang  <jiong.wang@arm.com>
3002         * config/aarch64/aarch64-builtins.def (rsqrte): New builtins for modes
3003         VALLF.
3004         * config/aarch64/aarch64-simd.md (aarch64_rsqrte_<mode>2): Rename to
3005         "aarch64_rsqrte<mode>".
3006         * config/aarch64/aarch64.c (get_rsqrte_type): Update gen* name.
3007         * config/aarch64/arm_neon.h (vrsqrts_f32): Remove inline assembly.  Use
3008         builtin.
3009         (vrsqrted_f64): Likewise.
3010         (vrsqrte_f32): Likewise.
3011         (vrsqrte_f64): Likewise.
3012         (vrsqrteq_f32): Likewise.
3013         (vrsqrteq_f64): Likewise.
3015 2016-06-08  Jiong Wang  <jiong.wang@arm.com>
3017         * config/aarch64/aarch64-builtins.def (scvtf): Register vector modes.
3018         (ucvtf): Likewise.
3019         (fcvtzs): Likewise.
3020         (fcvtzu): Likewise.
3021         * config/aarch64/aarch64-simd.md
3022         (<FCVT_F2FIXED:fcvt_fixed_insn><VDQF:mode>3): New.
3023         (<FCVT_FIXED2F:fcvt_fixed_insn><VDQ_SDI:mode>3): Likewise.
3024         * config/aarch64/arm_neon.h (vcvt_n_f32_s32): Remove inline assembly.
3025         Use builtin.
3026         (vcvt_n_f32_u32): Likewise.
3027         (vcvt_n_s32_f32): Likewise.
3028         (vcvt_n_u32_f32): Likewise.
3029         (vcvtq_n_f32_s32): Likewise.
3030         (vcvtq_n_f32_u32): Likewise.
3031         (vcvtq_n_f64_s64): Likewise.
3032         (vcvtq_n_f64_u64): Likewise.
3033         (vcvtq_n_s32_f32): Likewise.
3034         (vcvtq_n_s64_f64): Likewise.
3035         (vcvtq_n_u32_f32): Likewise.
3036         (vcvtq_n_u64_f64): Likewise.
3037         * config/aarch64/iterators.md (VDQ_SDI): New mode iterator.
3038         (VSDQ_SDI): Likewise.
3039         (fcvt_target): Support V4DI, V4SI and V2SI.
3040         (FCVT_TARGET): Likewise.
3042 2016-06-08  Jiong Wang  <jiong.wang@arm.com>
3044         * config/aarch64/aarch64-builtins.c (TYPES_BINOP_USS): New
3045         (TYPES_BINOP_SUS): Likewise.
3046         (aarch64_simd_builtin_data): Update include file name.
3047         (aarch64_builtins): Likewise.
3048         * config/aarch64/aarch64-simd-builtins.def (scvtf): New entries
3049         for conversion between scalar float-point and fixed-point.
3050         (ucvtf): Likewise.
3051         (fcvtzs): Likewise.
3052         (fcvtzu): Likewise.
3053         * config/aarch64/aarch64.md
3054         (<FCVT_F2FIXED:fcvt_fixed_insn><GPF:mode>3: New
3055         pattern for conversion between scalar float to fixed-pointer.
3056         (<FCVT_FIXED2F:fcvt_fixed_insn><GPI:mode>: Likewise.
3057         (UNSPEC_FCVTZS): New UNSPEC enumeration.
3058         (UNSPEC_FCVTZU): Likewise.
3059         (UNSPEC_SCVTF): Likewise.
3060         (UNSPEC_UCVTF): Likewise.
3061         * config/aarch64/arm_neon.h (vcvtd_n_f64_s64): Remove inline assembly.
3062         Use builtin.
3063         (vcvtd_n_f64_u64): Likewise.
3064         (vcvtd_n_s64_f64): Likewise.
3065         (vcvtd_n_u64_f64): Likewise.
3066         (vcvtd_n_f32_s32): Likewise.
3067         (vcvts_n_f32_u32): Likewise.
3068         (vcvtd_n_s32_f32): Likewise.
3069         (vcvts_n_u32_f32): Likewise.
3070         * config/aarch64/iterators.md (fcvt_target): Support integer to float
3071         mapping.
3072         (FCVT_TARGET): Likewise.
3073         (FCVT_FIXED2F): New iterator.
3074         (FCVT_F2FIXED): Likewise.
3075         (fcvt_fixed_insn): New define_int_attr.
3077 2016-06-07  Jan Hubicka  <hubicka@ucw.cz>
3079         * predict.c (pass_strip_predict_hints::execute): Cleanup CFG if
3080         some statements was removed.
3082 2016-06-08  Alan Hayward  <alan.hayward@arm.com>
3084         * tree-vect-data-refs.c (vect_analyze_data_refs): Remove debug newline.
3085         * tree-vect-loop-manip.c (slpeel_make_loop_iterate_ntimes): likewise.
3086         (vect_can_advance_ivs_p): likewise.
3087         (vect_update_ivs_after_vectorizer): likewise.
3088         * tree-vect-loop.c (vect_determine_vectorization_factor): likewise.
3089         (vect_analyze_scalar_cycles_1): likewise.
3090         (vect_analyze_loop_operations): likewise.
3091         (report_vect_op): likewise.
3092         (vect_is_slp_reduction): likewise.
3093         (vect_is_simple_reduction): likewise.
3094         (get_initial_def_for_induction): likewise.
3095         (vect_transform_loop): likewise.
3096         * tree-vect-patterns.c (vect_recog_dot_prod_pattern): likewise.
3097         (vect_recog_sad_pattern): likewise.
3098         (vect_recog_widen_sum_pattern): likewise.
3099         (vect_recog_widening_pattern): likewise.
3100         (vect_recog_divmod_pattern): likewise.
3101         * tree-vect-slp.c (vect-build-slp_tree_1): likewise.
3102         (vect_analyze_slp_instance): likewise.
3103         (vect_transform_slp_perm_load): likewise.
3104         (vect_schedule_slp_instance): likewise.
3106 2016-06-07  Jan Hubicka  <hubicka@ucw.cz>
3108         * predict.c (predict_iv_comparison): Mention that heuristics is broken.
3109         (return_prediction): PRED_CONST_RETURN predict return as not taken.
3110         * predict.def (PRED_CONTINUE): Change hitrate 50->67
3111         (PRED_LOOP_BRANCH): Document predictor as broken.
3112         (PRED_LOOP_EXIT): Change hitrate 91->92.
3113         (PRED_LOOP_EXTRA_EXIT): Change hitrate 91->83.
3114         (PRED_POINTER, PRED_TREE_POINTER): Change hitrate 85->70.
3115         (PRED_OPCODE_POSITIVE): Change hitrate 79->64.
3116         (PRED_OPCODE_NONEQUAL): Change hitrate 91->66.
3117         (PRED_TREE_OPCODE_POSITIVE): Change hitrate 73->64
3118         (PRED_TREE_OPCODE_NONEQUAL): Chnage hitrate 72->66
3119         (PRED_CALL): Chane hitrate 71->67.
3120         (PRED_TREE_EARLY_RETURN): Document issues, change hitrate 61->54.
3121         (PRED_GOTO): Document as unused right now.
3122         (PRED_CONST_RETURN): Change hitrate 67->69
3123         (PRED_NEGATIVE_RETURN): Change hitrate 96->98
3124         (PRED_NULL_RETURN): Change hitrate 91->90.
3125         (PRED_LOOP_IV_COMPARE_GUESS): Change hitrate to 98.
3126         (PRED_FORTRAN_FAIL_ALLOC): Change hitrate to 62; document issues.
3127         (PRED_FORTRAN_SIZE_ZERO): Change hitrate to 99.
3129 2016-06-07  Bill Seurer  <seurer@linux.vnet.ibm.com>
3131         * config/rs6000/altivec.h: Add __builtin_vec_mul.
3132         * config/rs6000/rs6000-builtin.def (vec_mul): Change vec_mul to a
3133         special case Altivec builtin.
3134         * config/rs6000/rs6000-c.c (altivec_overloaded_builtins): Remove
3135         VSX_BUILTIN_VEC_MUL (replaced with special case code).
3136         * config/rs6000/rs6000-c.c (altivec_resolve_overloaded_builtin): Add
3137         code for ALTIVEC_BUILTIN_VEC_MUL.
3138         * config/rs6000/rs6000.c (altivec_init_builtins): Add definition
3139         for __builtin_vec_mul.
3141 2016-06-07  Peter Bergner  <bergner@vnet.ibm.com>
3143         * doc/invoke.texi (RS/6000 and PowerPC Options): Document -mhtm and
3144         -mno-htm.
3146 2016-06-07  David Malcolm  <dmalcolm@redhat.com>
3148         * spellcheck.c (selftest::test_find_closest_string): New function.
3149         (spellcheck_c_tests): Call the above.
3151 2016-06-07  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
3153         * simplify-rtx.c (simplify_cond_clz_ctz): Delete 'mode' local variable.
3155 2016-06-07  Jakub Jelinek  <jakub@redhat.com>
3157         * config/i386/sse.md (avx_vec_concat<mode>): Add v=v,vm and
3158         Yv=Yv,C alternatives.
3160 2016-06-07  Richard Biener  <rguenther@suse.de>
3162         PR c/61564
3163         * common.opt (ffast-math): Make Optimization.
3165 2016-06-07  Simon Dardis  <simon.dardis@imgtec.com>
3166             Prachi Godbole  <prachi.godbole@imgtec.com>
3168         * config/mips/p5600.md (p5600_fpu_fadd): Remove checking for
3169         `fabs' and `fneg' type attributes.
3170         (p5600_fpu_fabs): Add `fmove' to the comment.
3172 2016-06-07  Jan Hubicka  <hubicka@ucw.cz>
3174         * gimple.c: Include builtins.h
3175         (gimple_inexpensive_call_p): New function.
3176         * gimple.h (gimple_inexpensive_call_p): Declare.
3177         * tree-ssa-loop-ch.c (should_duplicate_loop_header_p): Use it.
3178         * tree-ssa-loop-ivcanon.c (tree_estimate_loop_size): Likewise;
3179         fix formatting.
3181 2016-06-07  Paolo Carlini  <paolo.carlini@oracle.com>
3183         * diagnostic.c (diagnostic_impl, diagnostic_n_impl): New.
3184         (inform, inform_at_rich_loc, inform_n, warning, warning_at,
3185         warning_at_rich_loc, warning_n, pedwarn, permerror,
3186         permerror_at_rich_loc, error, error_n, error_at, error_at_rich_loc,
3187         sorry, fatal_error, internal_error, internal_error_no_backtrace):
3188         Use the above.
3190 2016-06-07  Richard Biener  <rguenther@suse.de>
3192         PR tree-optimization/71428
3193         * tree-ssa-math-opts.c (perform_symbolic_merge): Properly distinguish
3194         BIT_FIELD_REF op vs. load.
3196 2016-06-07  Richard Biener  <rguenther@suse.de>
3198         PR middle-end/71423
3199         * match.pd ((X | ~Y) -> Y <= X): Properly invert the comparison
3200         for signed ops.
3202 2016-06-06  John David Anglin  <danglin@gcc.gnu.org>
3204         * config/pa/pa.md (call): Generate indirect long calls to non-local
3205         functions on TARGET_64BIT.
3206         (call_value): Likewise.
3208 2016-06-06  John David Anglin  <danglin@gcc.gnu.org>
3210         * config/pa/pa.md (call_val_reg_64bit): Remove "reg: DI " clobber from
3211         pattern and subsequent splitters.
3212         (call_val_reg_64bit_post_reload): Likewise.
3214 2016-06-07  Kugan Vivekanandarajah  <kuganv@linaro.org>
3216         PR middle-end/71408
3217         * tree-ssa-reassoc.c (zero_one_operation): Fix NEGATE_EXPR operand for
3218         propagate_op_to_single_use.
3220 2016-06-07  Kugan Vivekanandarajah  <kuganv@linaro.org>
3222         PR middle-end/71281
3223         * tree-ssa-reassoc.c (reassociate_bb): Set uid for negate stmt.
3225 2016-06-07  Uros Bizjak  <ubizjak@gmail.com>
3227         * config/i386/i386.h (enum ix86_enitity): Add X86_DIRFLAG.
3228         (enum x86_dirflag_state): New enum.
3229         (NUM_MODES_FOR_MODE_SWITCHING): Add X86_DIRFLAG_ANY.
3230         (machine_function): Remove needs_cld.
3231         (ix86_current_function_needs_cld): Remove.
3232         * config/i386/i386.c (ix86_set_func_type): Set
3233         ix86_optimize_mode_switching[X86_DIRFLAG] to 1.
3234         (ix86_expand_prologue): Do not emit CLD here.
3235         (ix86_dirflag_mode_needed): New function.
3236         (ix86_dirflag_mode_entry): Ditto.
3237         (ix86_mode_needed): Handle X86_DIRFLAG entity.
3238         (ix86_mode_after): Ditto.
3239         (ix86_mode_entry): Ditto.
3240         (ix86_mode_exit): Ditto.
3241         (ix86_emit_mode_set): Ditto.
3242         * config/i386/i386.md (strmov_singleop): Set
3243         ix86_optimize_mode_switching[X86_DIRFLAG] to 1 for TARGET_CLD.
3244         Do not set ix86_current_function_needs_cld.
3245         (rep_mov): Ditto.
3246         (strset_singleop): Ditto.
3247         (rep_stos): Ditto.
3248         (cmpstrnqi_nz_1): Ditto.
3249         (cmpstrnqi_1): Ditto.
3250         (strlenqi_1): Ditto.
3252 2016-06-06  Jakub Jelinek  <jakub@redhat.com>
3254         PR tree-optimization/71259
3255         * tree-vect-slp.c (vect_get_constant_vectors): For
3256         VECTOR_BOOLEAN_TYPE_P, return all ones constant instead of
3257         one for constant op, and use COND_EXPR for non-constant.
3259 2016-06-06  David Malcolm  <dmalcolm@redhat.com>
3261         * Makefile.in (OBJS): Add function-tests.o,
3262         hash-map-tests.o, hash-set-tests.o, rtl-tests.o,
3263         selftest-run-tests.o.
3264         (OBJS-libcommon): Add selftest.o.
3265         (OBJS-libcommon-target): Add selftest.o.
3266         (all.internal): Add "selftest".
3267         (all.cross): Likewise.
3268         (selftest): New phony target.
3269         (s-selftest): New target.
3270         (selftest-gdb): New phony target.
3271         (COLLECT2_OBJS): Add selftest.o.
3272         * bitmap.c: Include "selftest.h".
3273         (selftest::test_gc_alloc): New function.
3274         (selftest::test_set_range): New function.
3275         (selftest::test_clear_bit_in_middle): New function.
3276         (selftest::test_copying): New function.
3277         (selftest::test_bitmap_single_bit_set_p): New function.
3278         (selftest::bitmap_c_tests): New function.
3279         * common.opt (fself-test): New.
3280         * diagnostic-show-locus.c: Include "selftest.h".
3281         (make_range): New function.
3282         (test_range_contains_point_for_single_point): New function.
3283         (test_range_contains_point_for_single_line): New function.
3284         (test_range_contains_point_for_multiple_lines): New function.
3285         (assert_eq): New function.
3286         (test_get_line_width_without_trailing_whitespace): New function.
3287         (selftest::diagnostic_show_locus_c_tests): New function.
3288         * et-forest.c: Include "selftest.h".
3289         (selftest::test_single_node): New function.
3290         (selftest::test_simple_tree): New function.
3291         (selftest::test_disconnected_nodes): New function.
3292         (selftest::et_forest_c_tests): New function.
3293         * fold-const.c: Include "selftest.h".
3294         (selftest::assert_binop_folds_to_const): New function.
3295         (selftest::assert_binop_folds_to_nonlvalue): New function.
3296         (selftest::test_arithmetic_folding): New function.
3297         (selftest::fold_const_c_tests): New function.
3298         * function-tests.c: New file.
3299         * gimple.c: Include "selftest.h".
3300         Include "gimple-pretty-print.h".
3301         (selftest::verify_gimple_pp): New function.
3302         (selftest::test_assign_single): New function.
3303         (selftest::test_assign_binop): New function.
3304         (selftest::test_nop_stmt): New function.
3305         (selftest::test_return_stmt): New function.
3306         (selftest::test_return_without_value): New function.
3307         (selftest::gimple_c_tests): New function.
3308         * hash-map-tests.c: New file.
3309         * hash-set-tests.c: New file.
3310         * input.c: Include "selftest.h".
3311         (selftest::assert_loceq): New function.
3312         (selftest::test_accessing_ordinary_linemaps): New function.
3313         (selftest::test_unknown_location): New function.
3314         (selftest::test_builtins): New function.
3315         (selftest::test_reading_source_line): New function.
3316         (selftest::input_c_tests): New function.
3317         * rtl-tests.c: New file.
3318         * selftest-run-tests.c: New file.
3319         * selftest.c: New file.
3320         * selftest.h: New file.
3321         * spellcheck.c: Include "selftest.h".
3322         (selftest::levenshtein_distance_unit_test_oneway): New function,
3323         adapted from testsuite/gcc.dg/plugin/levenshtein_plugin.c.
3324         (selftest::levenshtein_distance_unit_test): Likewise.
3325         (selftest::spellcheck_c_tests): Likewise.
3326         * toplev.c: Include selftest.h.
3327         (toplev::run_self_tests): New.
3328         (toplev::main): Handle -fself-test.
3329         * toplev.h (toplev::run_self_tests): New.
3330         * tree.c: Include "selftest.h".
3331         (selftest::test_integer_constants): New function.
3332         (selftest::test_identifiers): New function.
3333         (selftest::test_labels): New function.
3334         (selftest::tree_c_tests): New function.
3335         * tree-cfg.c: Include "selftest.h".
3336         (selftest::push_fndecl): New function.
3337         (selftest::test_linear_chain): New function.
3338         (selftest::test_diamond): New function.
3339         (selftest::test_fully_connected): New function.
3340         (selftest::tree_cfg_c_tests): New function.
3341         * vec.c: Include "selftest.h".
3342         (selftest::safe_push_range): New function.
3343         (selftest::test_quick_push): New function.
3344         (selftest::test_safe_push): New function.
3345         (selftest::test_truncate): New function.
3346         (selftest::test_safe_grow_cleared): New function.
3347         (selftest::test_pop): New function.
3348         (selftest::test_safe_insert): New function.
3349         (selftest::test_ordered_remove): New function.
3350         (selftest::test_unordered_remove): New function.
3351         (selftest::test_block_remove): New function.
3352         (selftest::reverse_cmp): New function.
3353         (selftest::test_qsort): New function.
3354         (selftest::vec_c_tests): New function.c.
3355         * wide-int.cc: Include selftest.h and wide-int-print.h.
3356         (selftest::from_int <wide_int>): New function.
3357         (selftest::from_int <offset_int>): New function.
3358         (selftest::from_int <widest_int>): New function.
3359         (selftest::assert_deceq): New function.
3360         (selftest::assert_hexeq): New function.
3361         (selftest::test_printing <VALUE_TYPE>): New function template.
3362         (selftest::test_ops <VALUE_TYPE>): New function template.
3363         (selftest::test_comparisons <VALUE_TYPE>): New function template.
3364         (selftest::run_all_wide_int_tests <VALUE_TYPE>): New function
3365         template.
3366         (selftest::wide_int_cc_tests): New function.
3368 2016-06-06  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
3370         PR middle-end/37780
3371         * ifcvt.c (noce_try_ifelse_collapse): New function.
3372         Declare prototype.
3373         (noce_process_if_block): Call noce_try_ifelse_collapse.
3374         * simplify-rtx.c (simplify_cond_clz_ctz): New function.
3375         (simplify_ternary_operation): Use the above to simplify
3376         conditional CLZ/CTZ expressions.
3378 2016-06-06  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
3380         PR middle-end/37780
3381         * config/aarch64/aarch64.md (ctz<mode>2): Convert to
3382         define_insn_and_split.
3384 2016-06-06  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
3386         PR middle-end/37780
3387         * config/arm/arm.md (ctzsi2): Convert to define_insn_and_split.
3389 2016-06-06  Bernd Edlinger  <bernd.edlinger@hotmail.de>
3391         PR c/24414
3392         * cfgexpand.c (expand_asm_loc): Remove handling for ADDR_EXPR.
3393         Implicitly clobber memory for basic asm with non-empty assembler
3394         string.  Use targetm.md_asm_adjust also here.
3395         * compare-elim.c (arithmetic_flags_clobber_p): Use asm_noperands here.
3396         * final.c (final_scan_insn): Handle basic asm in PARALLEL block.
3397         * gimple.c (gimple_asm_clobbers_memory_p): Handle basic asm with
3398         non-empty assembler string.
3399         * ira.c (compute_regs_asm_clobbered): Use asm_noperands here.
3400         * recog.c (asm_noperands): Handle basic asm in PARALLEL block.
3401         (decode_asm_operands): Handle basic asm in PARALLEL block.
3402         (extract_insn): Handle basic asm in PARALLEL block.
3403         * doc/extend.texi: Mention new behavior of basic asm.
3404         * config/ia64/ia64 (rtx_needs_barrier): Handle ASM_INPUT here.
3405         * config/pa/pa.c (branch_to_delay_slot_p, branch_needs_nop_p,
3406         branch_needs_nop_p): Use asm_noperands.
3408 2016-06-06  Jose E. Marchesi  <jose.marchesi@oracle.com>
3410         * config/sparc/sparc.md (cpu): Add niagara7 cpu type.
3411         Include the M7 SPARC DFA scheduler.
3412         New attribute v3pipe.
3413         Annotate insns with v3pipe where appropriate.
3414         Define cpu_feature vis4.
3415         Add lzd instruction type and set it on clzdi_sp64 and clzsi_sp64.
3416         Add (V8QI "8") to vbits.
3417         Add insns {add,sub}v8qi3
3418         Add insns ss{add,sub}v8qi3
3419         Add insns us{add,sub}{v8qi,v4hi}3
3420         Add insns {min,max}{v8qi,v4hi,v2si}3
3421         Add insns {minu,maxu}{v8qi,v4hi,v2si}3
3422         Add insns fpcmp{le,gt,ule,ug,ule,ugt}{8,16,32}_vis.
3423         * config/sparc/niagara4.md: Add a comment explaining the
3424         discrepancy between the documented latenty numbers and the
3425         implemented ones.
3426         * config/sparc/niagara7.md: New file.
3427         * configure.ac (HAVE_AS_SPARC5_VIS4): Define if the assembler
3428         supports SPARC5 and VIS 4.0 instructions.
3429         * configure: Regenerate.
3430         * config.in: Likewise.
3431         * config.gcc: niagara7 is a supported cpu in sparc*-*-* targets.
3432         * config/sparc/sol2.h (ASM_CPU32_DEFAUILT_SPEC): Set for
3433         TARGET_CPU_niagara7.
3434         (ASM_CPU64_DEFAULT_SPEC): Likewise.
3435         (CPP_CPU_SPEC): Handle niagara7.
3436         (ASM_CPU_SPEC): Likewise.
3437         * config/sparc/sparc-opts.h (processor_type): Add
3438         PROCESSOR_NIAGARA7.
3439         (mvis4): New option.
3440         * config/sparc/sparc.h (TARGET_CPU_niagara7): Define.
3441         (AS_NIAGARA7_FLAG): Define.
3442         (ASM_CPU64_DEFAULT_SPEC): Set for niagara7.
3443         (CPP_CPU64_DEFAULT_SPEC): Likewise.
3444         (CPP_CPU_SPEC): Handle niagara7.
3445         (ASM_CPU_SPEC): Likewise.
3446         * config/sparc/sparc.c (niagara7_costs): Define.
3447         (sparc_option_override): Handle niagara7 and adjust cache-related
3448         parameters with better values for niagara cpus.  Also support VIS4.
3449         (sparc32_initialize_trampoline): Likewise.
3450         (sparc_use_sched_lookahead): Likewise.
3451         (sparc_issue_rate): Likewise.
3452         (sparc_register_move_cost): Likewise.
3453         (dump_target_flag_bits): Support VIS4.
3454         (sparc_vis_init_builtins): Likewise.
3455         (sparc_builtins): Likewise.
3456         * config/sparc/sparc-c.c (sparc_target_macros): Define __VIS__ for
3457         VIS4 4.0.
3458         * config/sparc/driver-sparc.c (cpu_names): Add SPARC-M7 and
3459         UltraSparc M7.
3460         * config/sparc/sparc.opt (sparc_processor_type): New value
3461         niagara7.
3462         * config/sparc/visintrin.h (__attribute__): Prototypes for the
3463         VIS4 builtins.
3464         * doc/invoke.texi (SPARC Options): Document -mcpu=niagara7 and
3465         -mvis4.
3466         * doc/extend.texi (SPARC VIS Built-in Functions): Document the
3467         VIS4 builtins.
3469 2016-06-06  Jonathan Wakely  <jwakely@redhat.com>
3471         * doc/sourcebuild.texi (Directives): Remove extra closing braces.
3473 2016-06-06  Richard Biener  <rguenther@suse.de>
3475         PR tree-optimization/71398
3476         * tree-ssa-loop-ivcanon.c (unloop_loops): First unloop, then
3477         remove edges.
3479 2016-06-05  James Bowman  <james.bowman@ftdichip.com>
3481         * config/ft32/ft32.c (ft32_setup_incoming_varargs,
3482         ft32_expand_prolog, ft32_expand_epilogue):
3483         Handle pretend_args.
3484         * config/ft32/ft32.h: Remove OUTGOING_REG_PARM_STACK_SPACE.
3485         * config/ft32/ft32.md: Add pretend_returner.
3487 2016-06-06  Uros Bizjak  <ubizjak@gmail.com>
3489         PR target/71389
3490         * config/i386/i386.c (ix86_avx256_split_vector_move_misalign):
3491         Copy op1 RTX to avoid invalid sharing.
3492         (ix86_expand_vector_move_misalign): Ditto.
3494 2016-06-05  John David Anglin  <danglin@gcc.gnu.org>
3496         * expr.c (move_by_pieces_d::generate): Mark mode parameter with
3497         ATTRIBUTE_UNUSED.
3499 2016-06-05  Jan Hubicka  <hubicka@ucw.cz>
3501         * predict.c (predicted_by_loop_heuristics_p): New function.
3502         (predict_iv_comparison): Use it.
3503         (predict_loops): Walk from innermost loops; do not predict edges
3504         leaving multiple loops multiple times; implement
3505         PRED_LOOP_ITERATIONS_MAX heuristics.
3506         * predict.def (PRED_LOOP_ITERATIONS_MAX): New predictor.
3508 2016-06-05  Jan Hubicka  <hubicka@ucw.cz>
3510         * cfg.c (check_bb_profile): Do not report mismatched profiles when
3511         only edges out of BB are EH edges.
3513 2016-06-04  Martin Sebor  <msebor@redhat.com>
3514             Marcin Baczyński  <marbacz@gmail.com>
3516         PR c/48116
3517         * doc/invoke.texi (-Wreturn-type): Mention not warning on return with
3518         a void expression in a void function.
3520 2016-06-03  Jan Hubicka  <hubicka@ucw.cz>
3522         * tree-ssa-loop-ch.c (should_duplicate_loop_header_p): Do not check
3523         aux; dump reasons of decisions.
3524         (should_duplicate_loop_header_p): Likewise.
3525         (do_while_loop_p): Likewise.
3526         (ch_base::copy_headers): Dump asi num insns duplicated.
3528 2016-06-04  Jakub Jelinek  <jakub@redhat.com>
3530         PR tree-optimization/71405
3531         * tree-ssa.c (execute_update_addresses_taken): For clobber with
3532         incompatible type, build a new clobber with the right type instead
3533         of building a VIEW_CONVERT_EXPR around it.
3535 2016-06-04  Oleg Endo  <olegendo@gcc.gnu.org>
3537         PR tree-optimization/52171
3538         * config/sh/sh.c (sh_use_by_pieces_infrastructure_p): Use
3539         by_pieces_ninsns instead of move_by_pieces_ninsns.
3541 2016-06-04  Oleg Endo  <olegendo@gcc.gnu.org>
3543         * config/sh/sh.c (sh_print_operand_address): Don't use hardcoded 'r0'
3544         for reg+reg addressing mode.
3546 2016-06-03  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
3548         * rs6000-c.c (c/c-tree.h): Add #include.
3549         (altivec_resolve_overloaded_builtin): Handle ARRAY_TYPE arguments
3550         in C++ when found in the base position of vec_ld or vec_st.
3552 2016-06-03  Jan Hubicka  <hubicka@ucw.cz>
3554         * tree-ssa-loop-niter.c (estimate_numbers_of_iterations_loop): Avoid
3555         use of profile unless profile status is PROFILE_READ.
3556         * profile.c (compute_branch_probabilities): Set profile status
3557         only after reporting predictor hitrates.
3559 2016-06-03  Joseph Myers  <joseph@codesourcery.com>
3561         PR target/71276
3562         PR target/71277
3563         * common.opt (ffp-int-builtin-inexact): New option.
3564         * doc/invoke.texi (-fno-fp-int-builtin-inexact): Document.
3565         * doc/md.texi (floor@var{m}2, btrunc@var{m}2, round@var{m}2)
3566         (ceil@var{m}2): Document dependence on this option.
3567         * ipa-inline-transform.c (inline_call): Handle
3568         flag_fp_int_builtin_inexact.
3569         * ipa-inline.c (can_inline_edge_p): Likewise.
3570         * config/i386/i386.md (rintxf2): Do not test
3571         flag_unsafe_math_optimizations.
3572         (rint<mode>2_frndint): New define_insn.
3573         (rint<mode>2): Do not test flag_unsafe_math_optimizations for 387
3574         or !flag_trapping_math for SSE.  Just use gen_rint<mode>2_frndint
3575         for 387 instead of extending and truncating.
3576         (frndintxf2_<rounding>): Test flag_fp_int_builtin_inexact ||
3577         !flag_trapping_math instead of flag_unsafe_math_optimizations.
3578         Change to frndint<mode>2_<rounding>.
3579         (frndintxf2_<rounding>_i387): Likewise.  Change to
3580         frndint<mode>2_<rounding>_i387.
3581         (<rounding_insn>xf2): Likewise.
3582         (<rounding_insn><mode>2): Test flag_fp_int_builtin_inexact ||
3583         !flag_trapping_math instead of flag_unsafe_math_optimizations for
3584         x87.  Test TARGET_ROUND || !flag_trapping_math ||
3585         flag_fp_int_builtin_inexact instead of !flag_trapping_math for
3586         SSE.  Use ROUND_NO_EXC in constant operand of
3587         gen_sse4_1_round<mode>2.  Just use gen_frndint<mode>2_<rounding>
3588         for 387 instead of extending and truncating.
3590 2016-06-03  H.J. Lu  <hongjiu.lu@intel.com>
3591             Julia Koval  <julia.koval@intel.com>
3593         PR target/66960
3594         PR target/67630
3595         PR target/67634
3596         PR target/67841
3597         PR target/68037
3598         PR target/68618
3599         PR target/68661
3600         PR target/69575
3601         PR target/69596
3602         PR target/69734
3603         * config/i386/i386-protos.h (ix86_epilogue_uses): New prototype.
3604         * config/i386/i386.c (ix86_conditional_register_usage): Preserve
3605         all registers, except for function return registers if there are
3606         no caller-saved registers.
3607         (ix86_set_func_type): New function.
3608         (ix86_set_current_function): Call ix86_set_func_type to set
3609         no_caller_saved_registers and func_type.  Call reinit_regs if
3610         caller-saved registers are changed.  Don't allow MPX, SSE, MMX
3611         nor x87 instructions in interrupt handler nor function with
3612         no_caller_saved_registers attribute.
3613         (ix86_function_ok_for_sibcall): Return false if there are no
3614         caller-saved registers.
3615         (type_natural_mode): Don't warn ABI change for MMX in interrupt
3616         handler.
3617         (ix86_function_arg_advance): Skip for callee in interrupt handler.
3618         (ix86_function_arg): Return special arguments in interrupt handler.
3619         (ix86_promote_function_mode): Promote pointer to word_mode only
3620         for normal functions.
3621         (ix86_can_use_return_insn_p): Don't use `ret' instruction in
3622         interrupt handler.
3623         (ix86_epilogue_uses): New function.
3624         (ix86_hard_regno_scratch_ok): Likewise.
3625         (ix86_save_reg): Preserve all registers in interrupt handler
3626         after reload.  Preserve all registers, except for function return
3627         registers, if there are no caller-saved registers after reload.
3628         (find_drap_reg): Always use callee-saved register if there are
3629         no caller-saved registers.
3630         (ix86_minimum_incoming_stack_boundary): Return MIN_STACK_BOUNDARY
3631         for interrupt handler.
3632         (ix86_expand_prologue): Don't allow DRAP in interrupt handler.
3633         Emit cld instruction if stringops are used in interrupt handler
3634         or interrupt handler isn't a leaf function.
3635         (ix86_expand_epilogue): Generate interrupt return for interrupt
3636         handler and pop the 'ERROR_CODE' off the stack before interrupt
3637         return in exception handler.
3638         (ix86_expand_call): Disallow calling interrupt handler directly.
3639         If there are no caller-saved registers, mark all registers that
3640         are clobbered by the call which returns as clobbered.
3641         (ix86_handle_no_caller_saved_registers_attribute): New function.
3642         (ix86_handle_interrupt_attribute): Likewise.
3643         (ix86_attribute_table): Add interrupt and no_caller_saved_registers
3644         attributes.
3645         (TARGET_HARD_REGNO_SCRATCH_OK): Likewise.
3646         * config/i386/i386.h (ACCUMULATE_OUTGOING_ARGS): Use argument
3647         accumulation in interrupt function if stack may be realigned to
3648         avoid DRAP.
3649         (EPILOGUE_USES): New.
3650         (function_type): New enum.
3651         (machine_function): Add func_type and no_caller_saved_registers.
3652         * config/i386/i386.md (UNSPEC_INTERRUPT_RETURN): New.
3653         (interrupt_return): New pattern.
3654         * doc/extend.texi: Document x86 interrupt and
3655         no_caller_saved_registers attributes.
3657 2016-06-03  Bernd Schmidt  <bschmidt@redhat.com>
3659         PR tree-optimization/52171
3660         * builtins.c (expand_cmpstrn_or_cmpmem): Delete, moved elsewhere.
3661         (expand_builtin_memcmp): New arg RESULT_EQ.  All callers changed.
3662         Look for constant strings.  Move some code to emit_block_cmp_hints
3663         and use it.
3664         * builtins.def (BUILT_IN_MEMCMP_EQ): New.
3665         * defaults.h (COMPARE_MAX_PIECES): New macro.
3666         * expr.c (move_by_pieces_d, store_by_pieces_d): Remove old structs.
3667         (move_by_pieces_1, store_by_pieces_1, store_by_pieces_2): Remvoe.
3668         (clear_by_pieces_1): Don't declare.  Move definition before use.
3669         (can_do_by_pieces): New static function.
3670         (can_move_by_pieces): Use it.  Return bool.
3671         (by_pieces_ninsns): Renamed from move_by_pieces_ninsns.  New arg
3672         OP.  All callers changed.  Handle COMPARE_BY_PIECES.
3673         (class pieces_addr); New.
3674         (pieces_addr::pieces_addr, pieces_addr::decide_autoinc,
3675         pieces_addr::adjust, pieces_addr::increment_address,
3676         pieces_addr::maybe_predec, pieces_addr::maybe_postinc): New member
3677         functions for it.
3678         (class op_by_pieces_d): New.
3679         (op_by_pieces_d::op_by_pieces_d, op_by_pieces_d::run): New member
3680         functions for it.
3681         (class move_by_pieces_d, class compare_by_pieces_d,
3682         class store_by_pieces_d): New subclasses of op_by_pieces_d.
3683         (move_by_pieces_d::prepare_mode, move_by_pieces_d::generate,
3684         move_by_pieces_d::finish_endp, store_by_pieces_d::prepare_mode,
3685         store_by_pieces_d::generate, store_by_pieces_d::finish_endp,
3686         compare_by_pieces_d::generate, compare_by_pieces_d::prepare_mode,
3687         compare_by_pieces_d::finish_mode): New member functions.
3688         (compare_by_pieces, emit_block_cmp_via_cmpmem): New static
3689         functions.
3690         (expand_cmpstrn_or_cmpmem): Moved here from builtins.c.
3691         (emit_block_cmp_hints): New function.
3692         (move_by_pieces, store_by_pieces, clear_by_pieces): Rewrite to just
3693         use the newly defined classes.
3694         * expr.h (by_pieces_constfn): New typedef.
3695         (can_store_by_pieces, store_by_pieces): Use it in arg declarations.
3696         (emit_block_cmp_hints, expand_cmpstrn_or_cmpmem): Declare.
3697         (move_by_pieces_ninsns): Don't declare.
3698         (can_move_by_pieces): Change return value to bool.
3699         * target.def (TARGET_USE_BY_PIECES_INFRASTRUCTURE_P): Update docs.
3700         (compare_by_pieces_branch_ratio): New hook.
3701         * target.h (enum by_pieces_operation): Add COMPARE_BY_PIECES.
3702         (by_pieces_ninsns): Declare.
3703         * targethooks.c (default_use_by_pieces_infrastructure_p): Handle
3704         COMPARE_BY_PIECES.
3705         (default_compare_by_pieces_branch_ratio): New function.
3706         * targhooks.h (default_compare_by_pieces_branch_ratio): Declare.
3707         * doc/tm.texi.in (STORE_MAX_PIECES, COMPARE_MAX_PIECES): Document.
3708         * doc/tm.texi: Regenerate.
3709         * tree-ssa-strlen.c: Include "builtins.h".
3710         (handle_builtin_memcmp): New static function.
3711         (strlen_optimize_stmt): Call it for BUILT_IN_MEMCMP.
3712         * tree.c (build_common_builtin_nodes): Create __builtin_memcmp_eq.
3714 2016-06-03  Alan Hayward  <alan.hayward@arm.com>
3716         * tree-vect-stmts.c (vect_stmt_relevant_p): Do not vectorize non live
3717         relevant stmts which are simple and invariant.
3718         * tree-vect-loop.c (vectorizable_live_operation): Check relevance
3719         instead of simple and invariant
3721 2016-06-03  Alan Hayward  <alan.hayward@arm.com>
3723         * tree-vect-loop.c (vect_analyze_loop_operations): Allow live stmts.
3724         (vectorizable_reduction): Check for new relevant state.
3725         (vectorizable_live_operation): vectorize live stmts using
3726         BIT_FIELD_REF.  Remove special case for gimple assigns stmts.
3727         * tree-vect-stmts.c (is_simple_and_all_uses_invariant): New function.
3728         (vect_stmt_relevant_p): Check for stmts which are only used live.
3729         (process_use): Use of a stmt does not inherit it's live value.
3730         (vect_mark_stmts_to_be_vectorized): Simplify relevance inheritance.
3731         (vect_analyze_stmt): Check for new relevant state.
3732         * tree-vectorizer.h (vect_relevant): New entry for a stmt which is used
3733         outside the loop, but not inside it.
3735 2016-06-03  Alan Hayward  <alan.hayward@arm.com>
3737         * tree-vectorizer.h (vect_get_vec_def_for_operand_1): New.
3738         * tree-vect-stmts.c (vect_get_vec_def_for_operand_1): New.
3739         (vect_get_vec_def_for_operand): Split out code.
3741 2016-06-03  Segher Boessenkool  <segher@kernel.crashing.org>
3743         * config/rs6000/rs6000.md (define_peepholes for two mfcr's): Delete.
3745 2016-06-03  Alan Hayward  <alan.hayward@arm.com>
3747         * tree-vect-stmts.c (vectorizable_call) Remove GOMP_SIMD_LANE code.
3749 2016-06-03  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
3751         * config/arm/thumb1.md (*thumb1_mulsi3): Fix typos in comment.
3753 2016-06-03  Jakub Jelinek  <jakub@redhat.com>
3755         PR middle-end/71387
3756         * cgraph.c (cgraph_edge::redirect_call_stmt_to_callee): If redirecting
3757         to noreturn e->callee->decl that has void return type and void
3758         arguments, adjust gimple_call_fntype and remove lhs even if it had
3759         previously addressable type.
3761 2016-06-02  Jeff Law  <law@redhat.com>
3763         PR tree-optimization/71328
3764         * tree-ssa-threadupdate.c (duplicate_thread_path): Fix off-by-one
3765         error when checking for a jump back onto the copied path.
3767 2016-06-02  David Malcolm  <dmalcolm@redhat.com>
3769         * config/microblaze/microblaze.c (get_branch_target): Add return
3770         NULL_RTX for the non-CALL_P case.
3771         (insert_wic_for_ilb_runout): Remove unused local "wic_addr1".
3772         (insert_wic): Remove unused local "j".
3774 2016-06-02  Martin Liska  <mliska@suse.cz>
3776         * predict.def: Fix typo in PRED_FORTRAN_FAIL_IO display name.
3778 2016-06-02  H.J. Lu  <hongjiu.lu@intel.com>
3779             Julia Koval  <julia.koval@intel.com>
3781         * function.c (assign_parm_setup_stack): Force source into a
3782         register if needed.
3783         * target.def (function_incoming_arg): Update documentation to
3784         allow arbitrary address computation based on hard register.
3785         * doc/tm.texi: Regenerated.
3787 2016-06-02  Martin Liska  <mliska@suse.cz>
3789         * predict.c (combine_predictions_for_bb): Fix first match in
3790         cases where a first predictor contains more than one occurence
3791         in list of predictors.  Take the best value in such case.
3793 2016-06-02  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
3795         PR rtl-optimization/71295
3796         * rtlanal.c (subreg_get_info): If taking a subreg at the requested
3797         offset would go over the size of the inner mode reject it.
3799 2016-06-02  Jakub Jelinek  <jakub@redhat.com>
3801         * config/i386/sse.md (*vec_concatv4si): Use v=v,v instead of
3802         x=x,x and v=v,m instead of x=x,m.
3804         * config/i386/sse.md (*vec_concatv2si_sse4_1): Add avx512dq v=Yv,rm
3805         alternative.  Change x=x,x alternative to v=Yv,Yv and x=rm,C
3806         alternative to v=rm,C.
3808         * config/i386/sse.md (*vec_concatv2di): Add x86_avx512dq v=Yv,rm
3809         alternative.  Change x=xm,C alternative to v=vm,C, x=x,x alternative
3810         to v=Yv,Yv and x=x,m to v=v,m.  Use maybe_evex prefix attribute
3811         instead of vex for the last two above mentioned alternatives.
3813 2016-06-02  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
3815         PR target/70830
3816         * config/arm/arm.c (arm_output_multireg_pop): Guard "pop" on update.
3818 2016-06-02  Segher Boessenkool  <segher@kernel.crashing.org>
3820         * config/rs6000/dfp.md (trunctddd2): Correct the "length" attribute.
3822 2016-06-01  David Malcolm  <dmalcolm@redhat.com>
3824         * config/rl78/rl78.c (rl78_expand_prologue): Convert local
3825         from int to unsigned.
3827 2016-05-31  Michael Meissner  <meissner@linux.vnet.ibm.com>
3829         * config/rs6000/vsx.md (vsx_splat_<mode>, V2DI/V2DF): Simplify
3830         alternatives, eliminating preferred register class.  Add support
3831         for the MTVSRDD instruction in ISA 3.0.
3832         (vsx_splat_v4si_internal): Use splat_input_operand instead of
3833         reg_or_indexed_operand.
3834         (vsx_splat_v4sf_internal): Likewise.
3836 2016-05-31  Michael Meissner  <meissner@linux.vnet.ibm.com>
3838         PR target/71186
3839         * config/rs6000/vsx.md (xxspltib_<mode>_nosplit): Add alternatives
3840         for loading up all 0's or all 1's.
3842 2016-06-01  Thomas Preud'homme  <thomas.preudhomme@arm.com>
3844         * doc/sourcebuild.texi (arm_acq_rel): Document new effective target.
3846 2016-06-01  Eduard Sanou  <dhole@openmailbox.org>
3848         * doc/cppenv.texi: Note that the `%s` in `date` is a non-standard
3849         extension.
3850         * gcc.c (driver_handle_option): Call set_source_date_epoch_envvar.
3851         * gcc.c (set_source_date_epoch_envvar): New function, sets
3852         the SOURCE_DATE_EPOCH environment variable to the current time.
3854 2016-06-01  Eric Botcazou  <ebotcazou@adacore.com>
3856         * tree-vect-loop.c (vect_determine_vectorization_factor): Also compute
3857         the factor for live Phi nodes.
3859 2016-06-01  Jan Hubicka  <hubicka@ucw.cz>
3861         * loop-dolop.c (doloop_optimize): Us likely max iteration bound.
3862         * tree-parloops.c (parallelize_loops): likewise.
3863         * tree-ssa-loop-unswitch.c (tree_unswitch_single_loop,
3864         tree_unswitch_outer_loop): likewise.
3866 2016-06-01  Jakub Jelinek  <jakub@redhat.com>
3868         PR middle-end/71371
3869         * gimplify.c (gimplify_omp_for): Temporarily clear gimplify_omp_ctxp
3870         around creation of the temporary.
3872 2016-06-01  Richard Biener  <rguenther@suse.de>
3874         PR tree-optimization/71366
3875         * tree-ssa-loop-ivcanon.c (edges_to_remove): New global.
3876         (unloop_loops): Move removing edges here ...
3877         (try_unroll_loop_completely): ... from here.
3878         (try_peel_loop): ... and here.
3879         (tree_unroll_loops_completely_1): Track parent loops via
3880         bitmap of header BBs.
3881         (tree_unroll_loops_completely): Adjust for that.
3883 2016-06-01  Kelvin Nilsen  <kelvin@gcc.gnu.org>
3885         * config/rs6000/altivec.h (vec_slv): New macro.
3886         (vec_srv): New macro.
3887         * config/rs6000/altivec.md (UNSPEC_VSLV): New value.
3888         (UNSPEC_VSRV): New value.
3889         (vslv): New insn.
3890         (vsrv): New insn.
3891         * config/rs6000/rs6000-builtin.def (vslv): New builtin definition.
3892         (vsrv): New builtin definition.
3893         * config/rs6000/rs6000-c.c (P9V_BUILTIN_VSLV): Macro expansion to
3894         define argument types for new builtin.
3895         (P9V_BUILTIN_VSRV): Macro expansion to define argument types for
3896         new builtin.
3897         * doc/extend.texi: Document the new vec_vslv and vec_srv built-in
3898         functions.
3900 2016-06-01  Uros Bizjak  <ubizjak@gmail.com>
3901             Jocelyn Mayer  <l_indien@magic.fr>
3903         PR target/67310
3904         * config/i386/driver-i386.c (host_detect_local_cpu): Correctly
3905         detect processor family for signature_CENTAUR_ebx.
3906         <case PROCESSOR_I486>: Pass c3, winchip2 or winchip-c6 for
3907         signature_CENTAUR_ebx.
3908         <case PROCESSOR _PENTIUMPRO>: Pass c3-2 for signature_CENTAUR_ebx.
3909         <default>: Pass x86-64 for has_longmode.
3911 2016-06-01  Nathan Sidwell  <nathan@acm.org>
3913         * config/nvptx/nvptx.c (nvptx_assemble_undefined_decl): Reject
3914         undefined weak.
3916 2016-06-01  Richard Biener  <rguenther@suse.de>
3918         PR tree-optimization/71261
3919         * tree-vect-patterns.c (check_bool_pattern): Gather a hash-set
3920         of stmts successfully put in the bool pattern.  Remove
3921         single-use restriction.
3922         (adjust_bool_pattern_cast): Add cast at the use site via the
3923         pattern def sequence.
3924         (adjust_bool_pattern): Remove recursion, maintain a hash-map
3925         of patterned defs.  Use the pattern def seqence instead of
3926         multiple independent patterns.
3927         (sort_after_uid): New qsort compare function.
3928         (adjust_bool_stmts): New function to process stmts in the bool
3929         pattern in IL order.
3930         (vect_recog_bool_pattern): Adjust.
3931         * tree-if-conv.c (ifcvt_split_def_stmt): Remove.
3932         (ifcvt_walk_pattern_tree): Likewise.
3933         (stmt_is_root_of_bool_pattern): Likewise.
3934         (ifcvt_repair_bool_pattern): Likewise.
3935         (tree_if_conversion): Do not call ifcvt_repair_bool_pattern.
3937 2016-06-01  Jan Hubicka  <hubicka@ucw.cz>
3939         * loop-unroll.c (decide_unroll_constant_iterations,
3940         decide_unroll_runtime_iterations, decide_unroll_stupid): Use
3941         likely upper bounds.
3942         * loop-iv.c (find_simple_exit): Dump likely upper bounds.
3944 2016-06-01  Thomas Schwinge  <thomas@codesourcery.com>
3946         * tree-core.h (enum omp_clause_code): Remove
3947         OMP_CLAUSE_DEVICE_RESIDENT.  Adjust all users.
3949 2016-06-01  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
3951         * config/arm/sync.md (arm_store_exclusive<mode>):
3952         Use 'H' output modifier on operands[2] rather than creating a new
3953         entry in out-of-bounds memory of the operands array.
3954         (arm_store_release_exclusivedi): Likewise.
3956 2016-06-01  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
3958         * config/arm/arm.c (arm_fusion_enabled_p): New function.
3959         * config/arm/arm-protos.h (arm_fusion_enabled_p): Declare prototype.
3960         * config/arm/crypto.md (crypto_<crypto_pattern>, CRYPTO_UNARY):
3961         Add "=w,0" alternative.  Enable it when AES/AESMC fusion is enabled.
3963 2016-06-01  Eric Botcazou  <ebotcazou@adacore.com>
3965         * tree-vect-loop.c (vect_determine_vectorization_factor): Also take
3966         into account live statements for mask producers.
3968 2016-06-01  Richard Biener  <rguenther@suse.de>
3970         PR tree-optimization/71311
3971         * match.pd (@0 < @1 && @0 < @2 -> @0 < min(@1,@2)): Add :c and
3972         restrict to non-INTEGER_CST @0.
3974 2016-06-01  Richard Biener  <rguenther@suse.de>
3976         * match.pd ((A & B) - (A & ~B) -> B - (A ^ B)): Add missing :c.
3977         (relational patterns): Use :c to avoid pattern duplications.
3979 2016-06-01  Richard Biener  <rguenther@suse.de>
3981         * genmatch.c (comparison_code_p): New predicate.
3982         (swap_tree_comparison): New function.
3983         (commutate): Add for_vec parameter to append new for entries.
3984         Support commutating relational operators by swapping it alongside
3985         operands.
3986         (lower_commutative): Adjust.
3987         (dt_simplify::gen): Do not pass artificial operators to gen
3988         functions.
3989         (decision_tree::gen): Do not add artificial operators as parameters.
3990         (parser::parse_expr): Verify operator commutativity when :c is
3991         applied.  Allow :C to override this.
3992         * match.pd: Adjust patterns to use :C instead of :c where required.
3994 2016-06-01  Patrick Palka  <ppalka@gcc.gnu.org>
3996         PR tree-optimization/71077
3997         * tree-ssa-threadedge.c (simplify_control_stmt_condition_1): In
3998         the combining step, use boolean_false_node and boolean_true_node
3999         as the designated false/true return values.
4001 2016-05-31  Jan Hubicka  <hubicka@ucw.cz>
4003         * predict.def (PRED_LOOP_EXTRA_EXIT): Define.
4004         * predict.c (predict_iv_comparison): Also check PRED_LOOP_EXTRA_EXIT.
4005         (predict_extra_loop_exits): Use PRED_LOOP_EXTRA_EXIT instead of
4006         PRED_LOOP_EXIT.
4008 2016-05-31  Jan Hubicka  <hubicka@ucw.cz>
4010         * doc/invoke.texi (-frename-registers): Drop -fpeel-loops from list
4011         of flags impliying the register renaming.
4012         * toplev.c (process_options): Do not imply flag_rename_registers with
4013         loop peeling.
4015 2016-05-31  Oleg Endo  <olegendo@gcc.gnu.org>
4017         * config/sh/sh.h (ASM_OUTPUT_SYMBOL_REF): Remove macro and use the
4018         default implementation.
4020 2016-05-31  Nathan Sidwell  <nathan@acm.org>
4022         * dwarf2out.c (cur_line_info_table): Add GTY marker.
4024 2016-05-31  Oleg Endo  <olegendo@gcc.gnu.org>
4026         * config/sh/constraints.md (b): Remove constraint.
4027         * config/sh/predicates.md (arith_reg_operand): Remove
4028         TARGET_REGISTER_P.
4029         * config/sh/sh-modes.def (PDI): Remove.
4030         * config/sh/sh.c (sh_target_reg_class,
4031         sh_optimize_target_register_callee_saved): Remove functions.
4032         (sh_option_override): Don't set MASK_SAVE_ALL_TARGET_REGS.
4033         (sh_expand_epilogue): Update comment.
4034         (sh_hard_regno_mode_ok, sh_register_move_cost, calc_live_regs,
4035         sh_secondary_reload): Remove TARGET_REGS related code.
4036         * config/sh/sh.h (FIRST_TARGET_REG, LAST_TARGET_REG,
4037         TARGET_REGISTER_P): Remove macros.
4038         (SH_DBX_REGISTER_NUMBER, REG_ALLOC_ORDER): Remove target regs.
4039         * config/sh/sh.md (PR_MEDIA_REG, T_MEDIA_REG, FR23_REG, TR0_REG,
4040         TR1_REG, TR2_REG): Remove constants.
4041         * config/sh/sh.opt (SAVE_ALL_TARGET_REGS): Remove.
4043 2016-05-31  Oleg Endo  <olegendo@gcc.gnu.org>
4045         * config/sh/sh.md (adddi3, subdi3, negdi2, abs<mode>2): Remove
4046         define_expand patterns.
4047         (adddi3_compact): Rename to adddi3.
4048         (subdi3_compact): Rename to subdi3.
4049         (*negdi2): Rename to negdi2.
4050         (*abs<mode>2): Rename to abs<mode>2.
4052 2016-05-31  Oleg Endo  <olegendo@gcc.gnu.org>
4054         * config/rx/rx.md (FETCHOP_NO_MINUS): New code iterator.
4055         (atomic_<fetchop_name>_fetchsi): Extract minus operator into ...
4056         (atomic_sub_fetchsi): ... this new pattern.
4057         (mvtc): Add CC_REG clobber.
4059 2016-05-31  Marek Polacek  <polacek@redhat.com>
4061         * gimplify.c (gimplify_switch_expr): Also handle GIMPLE_TRY.
4063 2016-05-31  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
4065         * config/aarch64/aarch64.c (aarch_macro_fusion_pair_p): Use
4066         aarch64_fusion_enabled_p to check for fusion capabilities.
4068 2016-05-31  Richard Biener  <rguenther@suse.de>
4070         PR tree-optimization/71352
4071         * tree-ssa-reassoc.c (zero_one_operation): Handle op equal to
4072         minus one and a negate.
4074 2016-05-31  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
4076         * config/aarch64/aarch64.c (aarch64_simd_attr_length_move): Delete.
4077         * config/aarch64/aarch64-protos.h (aarch64_simd_attr_length_move):
4078         Delete prototype.
4079         * config/aarch64/iterators.md (insn_count): Add descriptive comment.
4080         * config/aarch64/aarch64-simd.md (*aarch64_mov<mode>, VSTRUCT modes):
4081         Remove use of aarch64_simd_attr_length_move, set length attribute
4082         directly.
4083         (*aarch64_be_movoi): Likewise.
4084         (*aarch64_be_movci): Likewise.
4085         (*aarch64_be_movxi): Likewise.
4087 2016-05-31  Jan Hubicka  <hubicka@ucw.cz>
4089         * loop-init.c (gate): Do not enale RTL loop unroller with -fpeel-loops.
4090         It no longer does that.
4091         * toplev.c (process_options): Do not enable flag_web with -fpeel-loops.
4093 2016-05-31  Wladimir J. van der Laan  <laanwj@gmail.com>
4095         * config/aarch64/arm_neon.h (vdupb_laneq_s8): Remove spurious
4096         attribute __unused__.
4098 2016-05-31  Thomas Preud'homme  <thomas.preudhomme@arm.com>
4100         * config/arm/arm-protos.h (arm_arch_thumb1): Declare.
4101         * config/arm/arm.c (arm_arch_thumb1): Define.
4102         (arm_option_override): Initialize arm_arch_thumb1.
4103         * config/arm/arm.h (arm_arch_thumb1): Declare.
4104         (TARGET_ARM_ARCH_ISA_THUMB): Use arm_arch_thumb to determine if target
4105         support Thumb-1 ISA.
4107 2016-05-31  Kirill Yukhin  <kirill.yukhin@intel.com>
4109         PR target/71346
4110         * config/i386/sse.md (define_insn_and_split "*vec_extractv4sf_0"): Use
4111         `Yv' for scalar operand.
4113 2016-05-31  Tom de Vries  <tom@codesourcery.com>
4115         PR tree-optimization/69068
4116         * graphite-isl-ast-to-gimple.c (copy_bb_and_scalar_dependences): Handle
4117         phis with more than two args.
4119 2016-05-30  Andreas Tobler  <andreast@gcc.gnu.org>
4121         * config.gcc: Move hard float support for arm*hf*-*-freebsd* into
4122         armv6*-*-freebsd* for FreeBSD 11. Eliminate the arm*hf*-*-freebsd*
4123         target.
4125 2016-05-30  Jose E. Marchesi  <jose.marchesi@oracle.com>
4127         * config.gcc (sparc*-*-*): Support cpu_32, cpu_64, tune_32 and
4128         tune_64.
4129         * doc/install.texi (--with-cpu-32, --with-cpu-64): Document
4130         support on SPARC.
4131         * config/sparc/linux64.h (OPTION_DEFAULT_SPECS): Add entries for
4132         cpu_32, cpu_64, tune_32 and tune_64.
4133         * config/sparc/sol2.h (OPTION_DEFAULT_SPECS): Likewise.
4135 2016-05-30  Uros Bizjak  <ubizjak@gmail.com>
4137         * config/i386/sync.md (mfence_nosse): Use "lock orl $0, -4(%esp)".
4139 2016-05-30  Andi Kleen  <ak@linux.intel.com>
4141         * auto-profile.c (read_profile): Replace asserts with errors
4142         when file does not exist.
4143         * gcov-io.c (gcov_read_words): Dito.
4145 2016-05-30  Jan Hubicka  <hubicka@ucw.cz>
4147         * tree-cfg.c (print_loop): Print likely upper bounds.
4149 2016-05-30  Jan Hubicka  <hubicka@ucw.cz>
4151         * doc/invoke.texi (-fpeel-loops,-O3): Update documentation.
4152         * opts.c (default_options): Enable peel loops at -O3.
4153         * tree-ssa-loop-ivcanon.c (peeled_loops): New static var.
4154         (try_peel_loop): Do not re-peel already peeled loops;
4155         use likely upper bounds; fix profile updating.
4156         (pass_complete_unroll::execute): Initialize peeled_loops.
4158 2016-05-30  Martin Liska  <mliska@suse.cz>
4160         * tree-ssa-loop-ivopts.c (get_computation_cost_at): Scale
4161         computed costs by frequency of BB they belong to.
4162         (get_scaled_computation_cost_at): New function.
4164 2016-05-30  Alexander Monakov  <amonakov@ispras.ru>
4165             Marc Glisse  <marc.glisse@inria.fr>
4167         PR tree-optimization/71289
4168         * match.pd (-1 / B < A, A > -1 / B): New transformations.
4170 2016-05-30  Jan Hubicka  <hubicka@ucw.cz>
4172         * tree-vect-loop.c (vect_transform_loop): Update likely bounds.
4174 2016-05-30  Jan Hubicka  <hubicka@ucw.cz>
4176         * tree-ssa-loop-ivcanon.c (try_peel_loop): Correctly set wont_exit
4177         for peeled copies; avoid underflow when updating estimates; correctly
4178         scale loop profile.
4180 2016-05-30  Kugan Vivekanandarajah  <kuganv@linaro.org>
4182         * tree-ssa-reassoc.ci (swap_ops_for_binary_stmt): Fix typo from commit
4183         r236875. Corrected oe3 to oe2 as obvious.
4185 2016-05-30  Kugan Vivekanandarajah  <kuganv@linaro.org>
4187         PR middle-end/71269
4188         PR middle-end/71252
4189         * tree-ssa-reassoc.c (insert_stmt_before_use): Use find_insert_point so
4190         that inserted stmt will not dominate stmts that defines its operand.
4191         (rewrite_expr_tree): Add stmt_to_insert before adding the use stmt.
4192         (rewrite_expr_tree_parallel): Likewise.
4194 2016-05-30  Kugan Vivekanandarajah  <kuganv@linaro.org>
4196         PR middle-end/71252
4197         * tree-ssa-reassoc.c (swap_ops_for_binary_stmt): Fix swap such that
4198         all fields including stmt_to_insert are swapped.
4200 2016-05-30  Jan Hubicka  <hubicka@ucw.cz>
4202         * predict.h (force_edge_cold): Declare.
4203         * predict.c (force_edge_cold): New function.
4204         * tree-ssa-loop-ivcanon.c (try_unroll_loop_completely): Fix profile
4205         updating.
4206         (canonicalize_loop_induction_variables): Fix formating.
4208 2016-05-30  Eric Botcazou  <ebotcazou@adacore.com>
4210         * config/visium/visium.c (visium_split_double_add): Minor tweaks.
4211         (visium_expand_copysign): Use gen_int_mode directly.
4212         (visium_compute_frame_size): Minor tweaks.
4214 2016-05-30  Jan Hubicka  <hubicka@ucw.cz>
4216         * tree-vect-loop.c (vect_analyze_loop_2): Use
4217         likely_max_stmt_executions_int.
4219 2016-05-30  Tom de Vries  <tom@codesourcery.com>
4221         PR tree-optimization/69067
4222         * graphite-isl-ast-to-gimple.c (get_def_bb_for_const): Remove assert.
4224 2016-05-29  Uros Bizjak  <ubizjak@gmail.com>
4226         PR target/71245
4227         * config/i386/sync.md (define_peephole2 atomic_storedi_fpu):
4228         New peepholes to remove unneeded fild/fistp pairs.
4229         (define_peephole2 atomic_loaddi_fpu): Ditto.
4231 2016-05-27  Jan Hubicka  <hubicka@ucw.cz>
4233         * predict.c (maybe_hot_frequency_p): Avoid division.
4235 2016-05-28  Gerald Pfeifer  <gerald@pfeifer.com>
4237         * doc/install.texi: Use https for shop.fsf.org.
4239 2016-05-27  Jan Hubicka  <hubicka@ucw.cz>
4241         * tree-ssa-loop-ivopts.c (estimated_stmt_executions_int): Use
4242         likely_max_stmt_executions_int.
4244 2016-05-27  Jan Hubicka  <hubicka@ucw.cz>
4246         * tree-ssa-loop-prefetch.c (loop_prefetch_arrays): Use
4247         likely_max_stmt_executions_int.
4249 2016-05-27  Jan Hubicka  <hubicka@ucw.cz>
4251         * profile.c (compute_branch_probabilities): Do not report hitrates
4252         here.
4253         (branch_prob): Report hitrates here.
4254         * predict.c (gimple_predict_edge): Do not assert profile status;
4255         fix formatting issues.
4257 2016-05-27  Jan Hubicka  <hubicka@ucw.cz>
4259         * predict.c (edge_predicted_by_p): New function.
4260         (predict_paths_for_bb): Do not put multiple predictions of the same type
4261         on one edge.
4263 2016-05-27  Jan Hubicka  <hubicka@ucw.cz>
4265         * tree-ssa-loop-niter.c (number_of_iterations_exit): Revert accidental
4266         commit.
4268 2016-05-28  Alan Modra  <amodra@gmail.com>
4270         * dominance.c (verify_dominators): Don't segfault on NULL imm_bb.
4272 2016-05-28  Alan Modra  <amodra@gmail.com>
4274         PR rtl-optimization/71275
4275         * ira.c (ira): Free dominance info.
4277 2016-05-27  Gerald Pfeifer  <gerald@pfeifer.com>
4279         * doc/sourcebuild.texi: New address for upstream Go repository.
4281 2016-05-27  Thomas Preud'homme  <thomas.preudhomme@arm.com>
4283         * config/arm/arm.h (TARGET_ARM_V6M): Remove.
4284         (TARGET_ARM_V7M): Likewise.
4286 2016-05-26  Jeff Law  <law@redhat.com>
4288         * tree-ssa-threadedge.c: Remove include of tree-ssa-threadbackward.h.
4289         (thread_across_edge): Remove calls to find_jump_threads_backwards.
4290         * passes.def: Add jump threading passes before DOM/VRP.
4291         * tree-ssa-threadbackward.c (find_jump_threads_backwards): Change
4292         argument to a basic block from an edge.  Remove tests which are
4293         handled elsewhere.
4294         (pass_data_thread_jumps, class pass_thread_jumps): New.
4295         (pass_thread_jumps::gate, pass_thread_jumps::execute): New.
4296         (make_pass_thread_jumps): Likewise.
4297         * tree-pass.h (make_pass_thread_jumps): Declare.
4299 2016-05-27  Eric Botcazou  <ebotcazou@adacore.com>
4301         * config/visium/visium-protos.h (split_double_move): Rename into...
4302         (visium_split_double_move): ...this.
4303         (visium_split_double_add): Declare.
4304         * config/visium/visium.c (split_double_move): Rename into...
4305         (visium_split_double_move): ...this.
4306         (visium_split_double_add): New function.
4307         (visium_expand_copysign): Renumber operands for consistency.
4308         * config/visium/visium.md (DImode move splitter): Adjust to renaming.
4309         (DFmode move splitter): Likewise.
4310         (*addi3_insn): Split by means of visium_split_double_add.
4311         (*adddi3_insn_flags): Delete.
4312         (*plus_plus_sltu<subst_arith>): New insn.
4313         (*subdi3_insn): Split by means of visium_split_double_add.
4314         (subdi3_insn_flags): Delete.
4315         (*minus_minus_sltu<subst_arith>): New insn.
4316         (*negdi2_insn): Split by means of visium_split_double_add.
4317         (*negdi2_insn_flags): Delete.
4319 2016-05-27  Ulrich Weigand  <uweigand@de.ibm.com>
4321         * configure.ac: Treat a --with-headers option without argument
4322         the same as the default (i.e. consult sys-include directory).
4323         * configure: Regenerate.
4325 2016-05-27  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
4327         * config/aarch64/aarch64.c (aarch64_fusion_enabled_p): New function.
4328         * config/aarch64/aarch64-protos.h (aarch64_fusion_enabled_p): Declare
4329         prototype.
4330         * config/aarch64/aarch64-simd.md (aarch64_crypto_aes<aesmc_op>v16qi):
4331         Add "=w,0" alternative.  Enable it when AES/AESMC fusion is enabled.
4333 2016-05-27  Jiong Wang  <jiong.wang@arm.com>
4335         PR target/63596
4336         * config/aarch64/aarch64.c (aarch64_expand_builtin_va_start): Honor
4337         tree-stdarg analysis results.
4338         (aarch64_setup_incoming_varargs): Likewise.
4340 2016-05-27  Jiong Wang  <jiong.wang@arm.com>
4342         * config/aarch64/aarch64.c (aarch64_build_builtin_va_list): Initialize
4343         va_list_gpr_counter_field and va_list_fpr_counter_field.
4345 2016-05-27  Wilco Dijkstra  <wdijkstr@arm.com>
4347         PR67609
4348         * config/aarch64/aarch64.h (CANNOT_CHANGE_MODE_CLASS): Remove.
4349         * config/aarch64/aarch64.c
4350         (aarch64_cannot_change_mode_class): Remove function.
4351         * config/aarch64/aarch64-protos.h
4352         (aarch64_cannot_change_mode_class): Remove.
4354 2016-05-27  Jan Hubicka  <hubicka@ucw.cz>
4356         * cfgloop.c (record_niter_bound): Record likely upper bounds.
4357         (likely_max_stmt_executions_int, get_likely_max_loop_iterations,
4358         get_likely_max_loop_iterations_int): New.
4359         * cfgloop.h (struct loop): Add nb_iterations_likely_upper_bound,
4360         any_likely_upper_bound.
4361         (get_likely_max_loop_iterations_int, get_likely_max_loop_iterations):
4362         Declare.
4363         * cfgloopmanip.c (copy_loop_info): Copy likely upper bounds.
4364         * loop-unroll.c (unroll_loop_constant_iterations): Update likely
4365         upper bound.
4366         (unroll_loop_constant_iterations): Likewise.
4367         (unroll_loop_runtime_iterations): Likewise.
4368         * lto-streamer-in.c (input_cfg): Stream likely upper bounds.
4369         * lto-streamer-out.c (output_cfg): Likewise.
4370         * tree-ssa-loop-ivcanon.c (try_peel_loop): Update likely upper
4371         bounds.
4372         (canonicalize_loop_induction_variables): Dump likely upper bounds.
4373         * tree-ssa-loop-niter.c (record_estimate): Record likely upper bounds.
4374         (likely_max_loop_iterations): New.
4375         (likely_max_loop_iterations_int): New.
4376         (likely_max_stmt_executions): New.
4377         * tree-ssa-loop-niter.h (likely_max_loop_iterations,
4378         likely_max_loop_iterations_int, likely_max_stmt_executions_int,
4379         likely_max_stmt_executions): Declare.
4381 2016-05-27  Marek Polacek  <polacek@redhat.com>
4383         PR middle-end/71308
4384         * gimple-fold.c (gimple_fold_call): Check that LHS is not null.
4386 2016-05-27  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
4388         * config/s390/s390.md (2x risbg splitters): Use
4389         reg_overlap_mentioned_p instead of rtx_equal_p.
4391 2016-05-27  Dominik Vogt  <vogt@linux.vnet.ibm.com>
4393         * combine.c (make_compound_operation): Take known zero bits into
4394         account when checking for possible zero_extend.
4396 2016-05-27  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
4398         * config/aarch64/aarch64.md (ashl<mode>3, SHORT modes):
4399         Use const_int_operand for operand 2 predicate.  Simplify expand code
4400         as a result.
4402 2016-05-27  Ilya Enkovich  <ilya.enkovich@intel.com>
4404         PR middle-end/71279
4405         * fold-const.c (fold_ternary_loc): Don't fold VEC_COND_EXPR
4406         into comparison.
4408 2016-05-27  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
4410         * config/aarch64/aarch64-modes.def (CC_ZESWP, CC_SESWP): Delete.
4411         * config/aarch64/aarch64.c (aarch64_select_cc_mode): Remove condition
4412         that returns CC_SESWPmode and CC_ZESWPmode.
4413         (aarch64_get_condition_code_1): Remove handling of CC_SESWPmode
4414         and CC_SESWPmode.
4415         (aarch64_rtx_costs): Likewise.
4417 2016-05-26  Michael Meissner  <meissner@linux.vnet.ibm.com>
4419         * config/rs6000/rs6000.c (rs6000_emit_p9_fp_minmax): New function
4420         for ISA 3.0 min/max support.
4421         (rs6000_emit_p9_fp_cmove): New function for ISA 3.0 floating point
4422         conditional move support.
4423         (rs6000_emit_cmove): Call rs6000_emit_p9_fp_minmax and
4424         rs6000_emit_p9_fp_cmove if the ISA 3.0 instructions are
4425         available.
4426         * config/rs6000/rs6000.md (SFDF2): New iterator to allow doing
4427         conditional moves where the comparison type is different from move
4428         type.
4429         (fp_minmax): New code iterator for smin/smax.
4430         (minmax): New code attributes for min/max.
4431         (SMINMAX): Likewise.
4432         (smax<mode>3): Combine min, max insns into one insn using the
4433         fp_minmax code iterator.  Add support for ISA 3.0 min/max
4434         instructions that don't need -ffast-math.
4435         (s<minmax><mode>3): Likewise.
4436         (smax<mode>3_vsx): Likewise.
4437         (smin<mode>3): Likewise.
4438         (s<minmax><mode>3_vsx): Likewise.
4439         (smin<mode>3_vsx): Likewise.
4440         (pre-VSX min/max splitters): Likewise.
4441         (s<minmax><mode>3_fpr): Likewise.
4442         (movsfcc): Rewrite floating point conditional moves to combine
4443         SFmode/DFmode into a single insn.
4444         (mov<mode>cc): Likewise.
4445         (movdfcc): Likewise.
4446         (fselsfsf4): Combine FSEL cases into a single insn, using SFDF and
4447         SFDF2 iterators to handle all combinations.
4448         (fseldfsf4): Likewise.
4449         (fsel<SFDF:mode><SFDF2:mode>4): Likewise.
4450         (fseldfdf4): Likewise.
4451         (fselsfdf4): Likewise.
4452         (mov<SFDF:mode><SFDF2:mode>cc_p9): Add support for the ISA 3.0
4453         comparison instructions that set a 0/-1 mask, and use it for
4454         floating point conditional move via XXSEL.
4455         (fpmask<mode>): Likewise.
4456         (xxsel<mode>): Likewise.
4457         * config/rs6000/predicates.md (min_max_operator): Delete, no
4458         longer used.
4459         (fpmask_comparison_operaton): New insn for ISA 3.0 comparison
4460         instructions that generate a 0/-1 mask for use with XXSEL.
4461         * config/rs6000/rs6000.h (TARGET_MINMAX_SF): New helper macros to
4462         say whether floating point min/max is available, either through
4463         FSEL, ISA 2.06 min/max, and ISA 3.0 min/max instrucitons.
4464         (TARGET_MINMAX_DF): Likewise.
4466 2016-05-27  Alan Modra  <amodra@gmail.com>
4468         PR rtl-optimization/71275
4469         * ira.c (ira): Call loop_optimizer_init to set up bb_loop_depth
4470         for update_equiv_regs and combine_and_move_insns.
4472 2016-05-26  Uros Bizjak  <ubizjak@gmail.com>
4474         * config/i386/i386.md (*movqi_internal) <attr "isa">: Use
4475         if_then_else or cond RTXes to calculate attribute value.
4476         * config/i386/mmx.md (*vec_extractv2sf_1) <attr "prefix_rep">: Ditto.
4477         <attr "length_immediate>: Ditto.
4478         (*vec_extractv2sf_1) <attr "length_immediate">: Ditto.
4479         * config/i386/sse.md (sse_loadlps) <attr "length_immediate">: Ditto.
4480         (*vec_concatv2sf_sse4_1) <attr "isa">: Ditto.
4481         <attr "type">: Ditto.
4482         <attr "prefix_data16">: Ditto.
4483         <attr "prefix_extra">: Ditto.
4484         <attr "length_immediate">: Ditto.
4485         <attr "prefix">: Ditto.
4486         (vec_set<mode>_0) <attr "isa">: Ditto.
4487         <attr "prefix_extra">: Ditto.
4488         <attr "length_immediate">: Ditto.
4489         <attr "prefix">: Ditto.
4490         (*vec_interleave_highv2df) <attr "prefix_data16">: Ditto.
4491         (*vec_interleave_lowv2df) <attr "prefix_data16">: Ditto.
4492         (sse2_storelpd) <attr "prefix_data16">: Ditto.
4493         (sse2_loadhpd) <attr "prefix_data16">: Ditto.
4494         (sse2_loadlpd) <attr "prefix_data16">: Ditto.
4495         <attr "length_immediate">: Ditto.
4496         <attr "prefix">: Ditto.
4497         (sse2_movsd) <attr "length_immediate">: Ditto.
4498         <attr "prefix">: Ditto.
4499         (vec_concatv2df)  <attr "isa">: Ditto.
4500         <attr "prefix">: Ditto.
4501         (*vec_extractv4si) <attr "prefix_extra">: Ditto.
4502         (*vec_extractv2di_1) <attr "isa">: Ditto.
4503         <attr "type">: Ditto.
4504         <attr "length_immediate">: Ditto.
4505         <attr "prefix_rex">: Ditto.
4506         <attr "prefix_extra">: Ditto.
4507         (*vec_concatv2si_sse4_1) <attr "type">: Ditto.
4508         <attr "prefix_extra">: Ditto.
4509         <attr "length_immediate">: Ditto.
4510         (vec_concatv2di) <attr "isa">: Ditto.
4511         <attr "prefix_extra">: Ditto.
4512         <attr "length_immediate">: Ditto.
4513         <attr "prefix">: Ditto.
4515 2016-05-26  Martin Liska  <mliska@suse.cz>
4517         * tree-ssa-loop-ivopts.c (comp_cost::infinite_cost_p): New
4518         function.
4519         (operator+): Likewise.
4520         (operator-): Likewise.
4521         (comp_cost::operator+=): Likewise.
4522         (comp_cost::operator-=): Likewise.
4523         (comp_cost::operator/=): Likewise.
4524         (comp_cost::operator*=): Likewise.
4525         (operator<): Likewise.
4526         (operator==): Likewise.
4527         (operator<=): Likewise.
4528         (new_cost): Remove.
4529         (infinite_cost_p): Likewise.
4530         (add_costs): Likewise.
4531         (sub_costs): Likewise.
4532         (compare_costs): Likewise.
4533         (set_group_iv_cost): Use the newly introduced functions.
4534         (get_address_cost): Likewise.
4535         (get_shiftadd_cost): Likewise.
4536         (force_expr_to_var_cost): Likewise.
4537         (split_address_cost): Likewise.
4538         (ptr_difference_cost): Likewise.
4539         (difference_cost): Likewise.
4540         (get_computation_cost_at): Likewise.
4541         (determine_group_iv_cost_generic): Likewise.
4542         (determine_group_iv_cost_address): Likewise.
4543         (determine_group_iv_cost_cond): Likewise.
4544         (autoinc_possible_for_pair): Likewise.
4545         (determine_group_iv_costs): Likewise.
4546         (cheaper_cost_pair): Likewise.
4547         (iv_ca_recount_cost): Likewise.
4548         (iv_ca_set_no_cp): Likewise.
4549         (iv_ca_set_cp): Likewise.
4550         (iv_ca_cost): Likewise.
4551         (iv_ca_new): Likewise.
4552         (iv_ca_dump): Likewise.
4553         (iv_ca_narrow): Likewise.
4554         (iv_ca_prune): Likewise.
4555         (iv_ca_replace): Likewise.
4556         (try_add_cand_for): Likewise.
4557         (try_improve_iv_set): Likewise.
4558         (find_optimal_iv_set): Likewise.
4560 2016-05-26  Richard Sandiford  <richard.sandiford@arm.com>
4562         * tree-ssa-loop-ivopts.c (loop_body_includes_call): Don't assume
4563         that internal functions will clobber all caller-saved registers.
4565 2016-05-26  Wilco Dijkstra  <wdijkstr@arm.com>
4567         * config/aarch64/aarch64.c (aarch64_case_values_threshold):
4568         Return a better case_values_threshold when optimizing.
4570 2016-05-26  Wilco Dijkstra  <wdijkstr@arm.com>
4572         * config/aarch64/aarch64-simd.md (aarch64_combinez):
4573         Add ? to integer variant.
4574         (aarch64_combinez_be): Likewise.
4576 2016-05-26  Jakub Jelinek  <jakub@redhat.com>
4578         * config/i386/sse.md (*vcvtps2ph_store<mask_name>): Use v constraint
4579         instead of x constraint.
4580         (vcvtps2ph256<mask_name>): Likewise.
4582         * config/i386/sse.md (*ssse3_palignr<mode>_perm): Add avx512bw
4583         alternative.  Formatting fix.
4585         * config/i386/sse.md
4586         (<mask_codefor>avx512vl_shuf_<shuffletype>32x4_1<mask_name>): Rename
4587         to ...
4588         (avx512vl_shuf_<shuffletype>32x4_1<mask_name>): ... this.
4589         (*avx_vperm_broadcast_v4sf): Use v constraint instead of x.  Use
4590         maybe_evex prefix instead of vex.
4591         (*avx_vperm_broadcast_<mode>): Use v constraint instead of x.  Handle
4592         EXT_REX_SSE_REG_P (op0) case in the splitter.
4594 2016-05-25  Jeff Law  <law@redhat.com>
4596         PR tree-optimization/71272
4597         * tree-ssa-threadbackward.c (convert_and_register_jump_thread_path):
4598         Update comments.  Add test for empty path.
4600 2016-05-25  Bill Seurer  <seurer@linux.vnet.ibm.com>
4602         * config/rs6000/altivec.h (vec_cmpne): Add #define for vec_cmpne.
4603         * config/rs6000/rs6000-builtin.def (vec_cmpne): Add vec_cmpne as a
4604         special case builtin.
4605         * config/rs6000/rs6000-c.c (altivec_resolve_overloaded_builtin): Add
4606         code for ALTIVEC_BUILTIN_VEC_CMPNE.
4607         * config/rs6000/rs6000.c (altivec_init_builtins): Add definition
4608         for __builtin_vec_cmpne.
4610 2016-05-25  Eric Botcazou  <ebotcazou@adacore.com>
4612         * tree-ssa-phiopt.c (factor_out_conditional_conversion): Remove
4613         redundant test and bail out if the type of the new operand is not
4614         a GIMPLE register type after stripping a VIEW_CONVERT_EXPR.
4616 2016-05-25  Uros Bizjak  <ubizjak@gmail.com>
4618         * config/i386/i386.opt (ix86_target_flags_explicit): Remove.
4619         (x_ix86_target_flags_explicit): Remove.
4620         * config/i386/i386.c (ix86_function_specific_save): Do not copy
4621         x_ix86_target_flags_explicit.
4622         (ix86_function_specific_restore): Ditto.
4624 2016-05-25  Uros Bizjak  <ubizjak@gmail.com>
4625             H.J. Lu  <hongjiu.lu@intel.com>
4627         PR target/70738
4628         * common/config/i386/i386-common.c
4629         (OPTION_MASK_ISA_GENERAL_REGS_ONLY_UNSET): New.
4630         (ix86_handle_option) <case OPT_mgeneral_regs_only>: Disable
4631         MPX, MMX, SSE and x87 instructions for -mgeneral-regs-only.
4632         * config/i386/i386.opt (ix86_target_flags): Add new Variable.
4633         (-mgeneral-regs-only): Add new option.
4634         * config/i386/i386.c (ix86_option_override_internal): Don't enable
4635         x87 instructions if only general registers are allowed.
4636         (ix86_target_string): Add ix86_flags argument. Handle additional
4637         flags options through ix86_flags argument.  Update all callers.
4638         * doc/invoke.texi (x86 Options): Document -mgeneral-regs-only.
4640 2016-05-25  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
4642         PR rtl-optimization/66940
4643         * ifcvt.c (noce_get_alt_condition): Check that incrementing or
4644         decrementing desired_val will not overflow before performing these
4645         operations.
4647 2016-05-25  Ilya Verbin  <ilya.verbin@intel.com>
4649         * config/i386/i386-builtin-types.def: Add V16SI_FTYPE_V16SF,
4650         V8DF_FTYPE_V8DF_ROUND, V16SF_FTYPE_V16SF_ROUND, V16SI_FTYPE_V16SF_ROUND.
4651         * config/i386/i386.c (enum ix86_builtins): Add
4652         IX86_BUILTIN_CVTPS2DQ512_MASK, IX86_BUILTIN_FLOORPS512,
4653         IX86_BUILTIN_FLOORPD512, IX86_BUILTIN_CEILPS512, IX86_BUILTIN_CEILPD512,
4654         IX86_BUILTIN_TRUNCPS512, IX86_BUILTIN_TRUNCPD512,
4655         IX86_BUILTIN_CVTPS2DQ512, IX86_BUILTIN_VEC_PACK_SFIX512,
4656         IX86_BUILTIN_FLOORPS_SFIX512, IX86_BUILTIN_CEILPS_SFIX512,
4657         IX86_BUILTIN_ROUNDPS_AZ_SFIX512.
4658         (builtin_description bdesc_args): Add __builtin_ia32_floorps512,
4659         __builtin_ia32_ceilps512, __builtin_ia32_truncps512,
4660         __builtin_ia32_floorpd512, __builtin_ia32_ceilpd512,
4661         __builtin_ia32_truncpd512, __builtin_ia32_cvtps2dq512,
4662         __builtin_ia32_vec_pack_sfix512, __builtin_ia32_roundps_az_sfix512,
4663         __builtin_ia32_floorps_sfix512, __builtin_ia32_ceilps_sfix512.
4664         Change IX86_BUILTIN_CVTPS2DQ512 to IX86_BUILTIN_CVTPS2DQ512_MASK for
4665         __builtin_ia32_cvtps2dq512_mask.
4666         (ix86_expand_args_builtin): Handle V8DF_FTYPE_V8DF_ROUND,
4667         V16SF_FTYPE_V16SF_ROUND, V16SI_FTYPE_V16SF_ROUND, V16SI_FTYPE_V16SF.
4668         (ix86_builtin_vectorized_function): Handle builtins mentioned above.
4669         * config/i386/sse.md
4670         (<mask_codefor>avx512f_fix_notruncv16sfv16si<mask_name><round_name>):
4671         Rename to ...
4672         (avx512f_fix_notruncv16sfv16si<mask_name><round_name>): ... this.
4673         (<mask_codefor>avx512f_cvtpd2dq512<mask_name><round_name>): Rename
4674         to ...
4675         (avx512f_cvtpd2dq512<mask_name><round_name>): ... this.
4676         (avx512f_vec_pack_sfix_v8df): New define_expand.
4677         (avx512f_roundpd512): Rename to ...
4678         (avx512f_round<castmode>512): ... this.  Change iterator.
4679         (avx512f_roundps512_sfix): New define_expand.
4680         (round<mode>2_sfix): Change iterator.
4682 2016-05-25  Nick Clifton  <nickc@redhat.com>
4684         * config/msp430/msp430.c (msp430_attr): Produce an error if a
4685         static interrupt handler is detected.
4686         * config/msp430/msp430.h (LIB_SPEC): Do not use msp430.ld as the
4687         default linker script.
4688         * config/msp430/msp430.md (movpsihi2_lo): New pattern for loading
4689         the low part of a symbolic pointer.
4691 2016-05-25  Richard Biener  <rguenther@suse.de>
4693         PR tree-optimization/71261
4694         * tree-if-conv.c (ifcvt_split_def_stmt): Walk uses on the
4695         interesting stmt instead of immediate uses when looking
4696         for the use operand to replace.
4698 2016-05-25  Martin Liska  <mliska@suse.cz>
4700         * ipa-inline.c (edge_badness): Use 'w/' instead of 'w'.
4702 2016-05-25  Richard Biener  <rguenther@suse.de>
4704         PR tree-optimization/71264
4705         * tree-vect-stmts.c (vect_init_vector): Properly deal with
4706         vector type val.
4708 2016-05-25  Martin Liska  <mliska@suse.cz>
4710         PR tree-optimization/71239
4711         * tree.c (array_at_struct_end_p): Do not call operand_equal_p
4712         if DECL_SIZE is NULL.
4714 2016-05-25  Richard Biener  <rguenther@suse.de>
4716         * timevar.def (TV_TREE_LOOP_IFCVT): Add.
4717         * tree-if-conv.c (pass_data_if_conversion): Use it.
4719 2016-05-25  Bernd Edlinger  <bernd.edlinger@hotmail.de>
4721         * cgraph.c (cgraph_node::get_availability): Fix typo in comment.
4722         * symtab.c (symtab_node::binds_to_current_def_p): Likewise.
4723         * varpool.c (varpool_node::get_availability): Likewise.
4725 2016-05-24  Michael Meissner  <meissner@linux.vnet.ibm.com>
4727         * config/rs6000/altivec.md (VNEG iterator): New iterator for
4728         VNEGW/VNEGD instructions.
4729         (p9_neg<mode>2): New insns for ISA 3.0 VNEGW/VNEGD.
4730         (neg<mode>2): Add expander for V2DImode added in ISA 2.07, and
4731         support for ISA 3.0 VNEGW/VNEGD instructions.
4733 2016-05-24  Cesar Philippidis  <cesar@codesourcery.com>
4735         * gimplify.c (omp_notice_variable): Use zero-length arrays for data
4736         pointers inside OACC_DATA regions.
4737         (gimplify_scan_omp_clauses): Prune firstprivate clause associated
4738         with OACC_DATA, OACC_ENTER_DATA and OACC_EXIT data regions.
4739         (gimplify_adjust_omp_clauses): Fix typo in comment.
4741 2016-05-24  Michael Meissner  <meissner@linux.vnet.ibm.com>
4743         * config/rs6000/altivec.md (VParity): New mode iterator for vector
4744         parity built-in functions.
4745         (p9v_ctz<mode>2): Add support for ISA 3.0 vector count trailing
4746         zeros.
4747         (p9v_parity<mode>2): Likewise.
4748         * config/rs6000/vector.md (VEC_IP): New mode iterator for vector
4749         parity.
4750         (ctz<mode>2): ISA 3.0 expander for vector count trailing zeros.
4751         (parity<mode>2): ISA 3.0 expander for vector parity.
4752         * config/rs6000/rs6000-builtin.def (BU_P9_MISC_1): New macros for
4753         power9 built-ins.
4754         (BU_P9_64BIT_MISC_0): Likewise.
4755         (BU_P9_MISC_0): Likewise.
4756         (BU_P9V_AV_1): Likewise.
4757         (BU_P9V_AV_2): Likewise.
4758         (BU_P9V_AV_3): Likewise.
4759         (BU_P9V_AV_P): Likewise.
4760         (BU_P9V_VSX_1): Likewise.
4761         (BU_P9V_OVERLOAD_1): Likewise.
4762         (BU_P9V_OVERLOAD_2): Likewise.
4763         (BU_P9V_OVERLOAD_3): Likewise.
4764         (VCTZB): Add vector count trailing zeros support.
4765         (VCTZH): Likewise.
4766         (VCTZW): Likewise.
4767         (VCTZD): Likewise.
4768         (VPRTYBD): Add vector parity support.
4769         (VPRTYBQ): Likewise.
4770         (VPRTYBW): Likewise.
4771         (VCTZ): Add overloaded vector count trailing zeros support.
4772         (VPRTYB): Add overloaded vector parity support.
4773         * config/rs6000/rs6000-c.c (altivec_overloaded_builtins): Add
4774         overloaded vector count trailing zeros and parity instructions.
4775         * config/rs6000/rs6000.md (wd mode attribute): Add V1TI and TI for
4776         vector parity support.
4777         * config/rs6000/altivec.h (vec_vctz): Add ISA 3.0 vector count
4778         trailing zeros support.
4779         (vec_cntlz): Likewise.
4780         (vec_vctzb): Likewise.
4781         (vec_vctzd): Likewise.
4782         (vec_vctzh): Likewise.
4783         (vec_vctzw): Likewise.
4784         (vec_vprtyb): Add ISA 3.0 vector parity support.
4785         (vec_vprtybd): Likewise.
4786         (vec_vprtybw): Likewise.
4787         (vec_vprtybq): Likewise.
4788         * doc/extend.texi (PowerPC AltiVec Built-in Functions): Document
4789         the ISA 3.0 vector count trailing zeros and vector parity built-in
4790         functions.
4792 2016-05-24  Kugan Vivekanandarajah  <kuganv@linaro.org>
4794         * tree-ssa-reassoc.c (sort_by_operand_rank): Skip checking gimple_bb
4795         when there is stmt_to_insert.
4797 2016-05-24  Martin Sebor  <msebor@redhat.com>
4799         PR c++/71147
4800         * tree.h (complete_or_array_type_p): New inline function.
4802 2016-05-24  Jakub Jelinek  <jakub@redhat.com>
4804         * config/i386/i386.h (TARGET_AVOID_4BYTE_PREFIXES): Define.
4805         * config/i386/constraints.md (Yr): Test TARGET_AVOID_4BYTE_PREFIXES
4806         rather than X86_TUNE_AVOID_4BYTE_PREFIXES.
4808         * config/i386/sse.md (<sse4_1>_round<ssemodesuffix><avxsizesuffix>):
4809         Limit 1st alternative to noavx isa, split 2nd alternative into one
4810         noavx and one avx alternative, use *x and Bm in the former and
4811         x and m in the latter.
4813         * config/i386/sse.md (vec_set<mode>_0): Use sse4_noavx isa instead
4814         of sse4 for the first alternative, drop %v from the template
4815         and d operand modifier.  Split second alternative into one sse4_noavx
4816         and one avx alternative, use *x instead of *v in the former and v
4817         instead of *v in the latter.
4818         (*sse4_1_extractps): Use noavx isa instead of * for the first
4819         alternative, drop %v from the template.  Split second alternative into
4820         one noavx and one avx alternative, use *x instead of *v in the
4821         former and v instead of *v in the latter.
4822         (<vi8_sse4_1_avx2_avx512>_movntdqa): Guard the first 2 alternatives
4823         with noavx and the last one with avx.
4824         (sse4_1_phminposuw): Guard first alternative with noavx isa,
4825         split the second one into one noavx and one avx alternative,
4826         use *x and Bm in the former and x and m in the latter one.
4827         (<sse4_1>_ptest<mode>): Use noavx instead of * for the first two
4828         alternatives.
4830         * config/i386/sse.md (sse4_1_<code>v8qiv8hi2<mask_name>): Limit
4831         first two alternatives to noavx, use *x instead of *v in the second
4832         one, add avx alternative without *.
4833         (sse4_1_<code>v4qiv4si2<mask_name>, sse4_1_<code>v4hiv4si2<mask_name>,
4834         sse4_1_<code>v2qiv2di2<mask_name>, sse4_1_<code>v2hiv2di2<mask_name>,
4835         sse4_1_<code>v2siv2di2<mask_name>): Likewise.
4837 2016-05-24  Jeff Law  <law@redhat.com>
4839         * tree-ssa-threadbackwards.c (convert_and_register_jump_thread_path):
4840         New function, extracted from...
4841         (fsm_find_control_statement_thread_paths): Here.  Use the new function.
4842         Allow simple copies and constant initializations in the SSA chain.
4844 2016-05-24  Marek Polacek  <polacek@redhat.com>
4846         PR c/71249
4847         * gimplify.c (gimplify_switch_expr): Look into the innermost lexical
4848         scope.
4850 2016-05-24  Jakub Jelinek  <jakub@redhat.com>
4852         PR c++/71257
4853         * tree-vect-stmts.c (vectorizable_simd_clone_call): Handle
4854         SIMD_CLONE_ARG_TYPE_LINEAR_REF_CONSTANT_STEP like
4855         SIMD_CLONE_ARG_TYPE_LINEAR_CONSTANT_STEP.  Add
4856         SIMD_CLONE_ARG_TYPE_LINEAR_VAL_CONSTANT_STEP and
4857         SIMD_CLONE_ARG_TYPE_LINEAR_UVAL_CONSTANT_STEP cases explicitly.
4859 2016-05-24  Richard Biener  <rguenther@suse.de>
4861         PR tree-optimization/71240
4862         * tree-ssa-math-opts.c (init_symbolic_number): Verify the source
4863         has integral type.
4865 2016-05-24  Richard Biener  <rguenther@suse.de>
4867         PR tree-optimization/71230
4868         * tree-ssa-reassoc.c (zero_one_operation): Handle negate special ops.
4870 2016-05-24  Richard Sandiford  <richard.sandiford@arm.com>
4872         * tree-vectorizer.h (vectorizable_comparison): Delete.
4873         * tree-vect-loop.c (vectorizable_reduction): Remove redundant
4874         PURE_SLP_STMT check.
4875         * tree-vect-stmts.c (vectorizable_call): Likewise.
4876         (vectorizable_simd_clone_call): Likewise.
4877         (vectorizable_conversion): Likewise.
4878         (vectorizable_assignment): Likewise.
4879         (vectorizable_shift): Likewise.
4880         (vectorizable_operation): Likewise.
4881         (vectorizable_load): Likewise.
4882         (vectorizable_condition): Likewise.
4883         (vectorizable_store): Likewise.  Assert that we don't have
4884         hybrid SLP.
4885         (vectorizable_comparison): Make static.  Remove redundant
4886         PURE_SLP_STMT check.
4887         (vect_transform_stmt): Assert that we always have an slp_node
4888         if PURE_SLP_STMT.
4890 2016-05-24  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
4892         * config/arm/neon.md (ashldi3_neon):  Replace comparison of INTVAL of
4893         operands[2] against 1 with comparison against CONST1_RTX.
4894         (<shift>di3_neon): Likewise.
4895         * config/arm/predicates.md (const0_operand): Replace with comparison
4896         against CONST0_RTX.
4898 2016-05-24  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
4900         * config/arm/arm.md (ashldi3): Replace comparison of INTVAL of
4901         operands[2] against 1 with comparison against CONST1_RTX.
4902         (ashrdi3): Likewise.
4903         (lshrdi3): Likewise.
4904         (ashlsi3): Replace cast of INTVAL to unsigned HOST_WIDE_INT with
4905         UINTVAL.
4906         (ashrsi3): Likewise.
4907         (lshrsi3): Likewise.
4908         (rotrsi3): Likewise.
4909         (define_split above *compareqi_eq0): Likewise.
4910         (define_split above "prologue"): Likewise.
4911         * config/arm/arm.c (thumb1_size_rtx_costs): Likewise.
4912         * config/arm/predicates.md (shift_operator): Likewise.
4913         (shift_nomul_operator): Likewise.
4914         (sat_shift_operator): Likewise.
4915         (thumb1_cmp_operand): Likewise.
4916         (const_neon_scalar_shift_amount_operand): Replace manual range
4917         check with IN_RANGE.
4918         * config/arm/thumb1.md (define_peephole2 above *thumb_subdi3):
4919         Replace cast of INTVAL to unsigned HOST_WIDE_INT with UINTVAL.
4921 2016-05-24  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
4923         * config/arm/arm.md (andsi3): Replace cast of 1 to HOST_WIDE_INT
4924         with HOST_WIDE_INT_1.
4925         (insv): Likewise.
4926         * config/arm/arm.c (optimal_immediate_sequence): Replace cast of
4927         1 to unsigned HOST_WIDE_INT with HOST_WIDE_INT_1U.
4928         (arm_canonicalize_comparison): Likewise.
4929         (thumb1_rtx_costs): Replace cast of 1 to HOST_WIDE_INT with
4930         HOST_WIDE_INT_1.
4931         (thumb1_size_rtx_costs): Likewise.
4932         (vfp_const_double_index): Replace cast of 1 to unsigned
4933         HOST_WIDE_INT with HOST_WIDE_INT_1U.
4934         (get_jump_table_size): Replace cast of 1 to HOST_WIDE_INT with
4935         HOST_WIDE_INT_1.
4936         (arm_asan_shadow_offset): Replace cast of 1 to unsigned
4937         HOST_WIDE_INT with HOST_WIDE_INT_1U.
4938         * config/arm/neon.md (vec_set<mode>): Replace cast of 1 to
4939         HOST_WIDE_INT with HOST_WIDE_INT_1.
4941 2016-05-24  Marek Polacek  <polacek@redhat.com>
4943         * tree-cfg.h (should_remove_lhs_p): New predicate.
4944         * cgraph.c (cgraph_edge::redirect_call_stmt_to_callee): Use it.
4945         * gimplify.c (gimplify_modify_expr): Likewise.
4946         * tree-cfg.c (verify_gimple_call): Likewise.
4947         * tree-cfgcleanup.c (fixup_noreturn_call): Likewise.
4948         * gimple-fold.c: Include "tree-cfg.h".
4949         (gimple_fold_call): Use should_remove_lhs_p.
4951 2016-05-24  Richard Biener  <rguenther@suse.de>
4953         PR tree-optimization/71253
4954         * cfganal.h (control_dependences): Make robust against edge
4955         and BB removal.
4956         (control_dependences::control_dependences): Remove edge_list argument.
4957         (control_dependences::get_edge): Remove.
4958         (control_dependences::get_edge_src): Add.
4959         (control_dependences::get_edge_dest): Likewise.
4960         (control_dependences::m_el): Make a vector of edge src/dest index.
4961         * cfganal.c (control_dependences::find_control_dependence): Adjust.
4962         (control_dependences::control_dependences): Likewise.
4963         (control_dependences::~control_dependence): Likewise.
4964         (control_dependences::get_edge): Remove.
4965         (control_dependences::get_edge_src): Add.
4966         (control_dependences::get_edge_dest): Likewise.
4967         * tree-ssa-dce.c (mark_control_dependent_edges_necessary): Use
4968         get_edge_src.
4969         (perform_tree_ssa_dce): Adjust.
4970         * tree-loop-distribution.c (create_edge_for_control_dependence): Use
4971         get_edge_src.
4972         (pass_loop_distribution::execute): Adjust.  Do loop destroying
4973         conditional on changed.
4975 2016-05-24  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
4977         PR target/69857
4978         * config/arm/arm.c (gen_operands_ldrd_strd): Remove bogus early
4979         return.  Reindent transformation comment and mention the ARM state
4980         behavior.
4982 2016-05-24  Kugan Vivekanandarajah  <kuganv@linaro.org>
4984         PR middle-end/71252
4985         * tree-ssa-reassoc.c (rewrite_expr_tree_parallel): Add stmt_to_insert
4986         after build_and_add_sum creates new use stmt.
4988 2016-05-24  Richard Sandiford  <richard.sandiford@arm.com>
4990         * tree-vect-stmts.c (vectorizable_load): Reorder checks so that
4991         load_lanes/grouped_load classification comes first.  Don't check
4992         whether the vectorization factor is a multiple of the group size
4993         for load_lanes.
4995 2016-05-24  Richard Sandiford  <richard.sandiford@arm.com>
4997         * tree-vect-data-refs.c (vect_analyze_group_access_1): Set
4998         GROUP_GAP for single-element interleaving.
4999         * tree-vect-stmts.c (vectorizable_load): Remove force_peeling
5000         variable.
5002 2016-05-24  Richard Biener  <rguenther@suse.de>
5004         PR middle-end/70434
5005         PR c/69504
5006         * tree-ssa.c (non_rewritable_mem_ref_base): Make sure to mark
5007         bases which are accessed with non-invariant indices.
5008         * gimple-fold.c (maybe_canonicalize_mem_ref_addr): Re-write
5009         constant index ARRAY_REFs of vectors into BIT_FIELD_REFs.
5011 2016-05-24  Kugan Vivekanandarajah  <kuganv@linaro.org>
5013         PR middle-end/71170
5014         * tree-ssa-reassoc.c (struct operand_entry): Add field stmt_to_insert.
5015         (add_to_ops_vec): Add stmt_to_insert.
5016         (add_repeat_to_ops_vec): Init stmt_to_insert.
5017         (insert_stmt_before_use): New.
5018         (transform_add_to_multiply): Remove mult_stmt insertion and add it
5019         to ops vector.
5020         (get_ops): Init stmt_to_insert.
5021         (maybe_optimize_range_tests): Likewise.
5022         (rewrite_expr_tree): Insert stmt_to_insert before use stmt.
5023         (rewrite_expr_tree_parallel): Likewise.
5024         (reassociate_bb): Likewise.
5026 2016-05-23  Michael Meissner  <meissner@linux.vnet.ibm.com>
5028         PR target/71201
5029         * config/rs6000/altivec.md (altivec_vperm_<mode>_internal): Drop
5030         ISA 3.0 xxperm fusion alternative.
5031         (altivec_vperm_v8hiv16qi): Likewise.
5032         (altivec_vperm_<mode>_uns_internal): Likewise.
5033         (vperm_v8hiv4si): Likewise.
5034         (vperm_v16qiv8hi): Likewise.
5036 2016-05-23  Michael Meissner  <meissner@linux.vnet.ibm.com>
5037             Kelvin Nilsen  <kelvin@gcc.gnu.org>
5039         * config/rs6000/rs6000.c (rs6000_expand_vector_set): Generate
5040         vpermr/xxpermr on ISA 3.0.
5041         (altivec_expand_vec_perm_le): Likewise.
5042         * config/rs6000/altivec.md (UNSPEC_VPERMR): New unspec.
5043         (altivec_vpermr_<mode>_internal): Add VPERMR/XXPERMR support for
5044         ISA 3.0.
5046 2016-05-23  Uros Bizjak  <ubizjak@gmail.com>
5048         * config/i386/i386.h (IS_STACK_MODE): Enable for
5049         TARGET_MIX_SSE_I387.  Rewrite using X87_FLOAT_MODE_P and
5050         SSE_FLOAT_MODE_P macros.
5051         * config/i386/i386.c (ix86_preferred_reload_class): Use
5052         IS_STACK_MODE, INTEGER_CLASS_P, FLOAT_CLASS_P and Q_CLASS_P macros.
5053         Cleanup regclass processing for CONST_DOUBLE_P.
5054         (ix86_preferred_output_reload_class): Use IS_STACK_MODE macro.
5055         (ix86_rtx_costs): Remove redundant TARGET_80387 check
5056         with IS_STACK_MODE macro.
5057         * config/i386/i386.md: Replace SSE_FLOAT_MODE_P (DFmode)
5058         with TARGET_SSE2.
5059         (*movdf_internal): Use IS_STACK_MODE macro.
5060         (*movsf_internal): Ditto.
5062 2016-05-23  Marc Glisse  <marc.glisse@inria.fr>
5064         * match.pd (a * (1 << b), ~x & ~y, ~X ^ ~Y, (X ^ Y) ^ Y, ~ (-A),
5065         ~ (A - 1), ~(~X >> Y), ~(~X >>r Y)): Relax constraints.
5067 2016-05-23  Jeff Law  <law@redhat.com>
5069         * tree-ssa-threadbackward.c (profitable_jump_thread_path): New function
5070         extracted from ...
5071         (fsm_find_control_statement_thread_paths): Call it.
5073 2016-05-23  Martin Jambor  <mjambor@suse.cz>
5075         PR ipa/71234
5076         * ipa-cp.c (ipa_get_indirect_edge_target_1): Only check value of
5077         from_global_constant if t is not NULL.
5079 2016-05-23  Marek Polacek  <polacek@redhat.com>
5081         PR c/49859
5082         * common.opt (Wswitch-unreachable): New option.
5083         * doc/invoke.texi: Document -Wswitch-unreachable.
5084         * gimplify.c (gimplify_switch_expr): Implement the -Wswitch-unreachable
5085         warning.
5087 2016-05-23  Bin Cheng  <bin.cheng@arm.com>
5089         * tree-ssa-address.c (copy_ref_info): Check NULL TMR_STEP when
5090         TMR_INDEX is non-NULL.
5092 2016-05-23  Richard Biener  <rguenther@suse.de>
5094         PR tree-optimization/71230
5095         * tree-ssa-reassoc.c (acceptable_pow_call): Move initial condition...
5096         (try_special_add_to_ops): ... here.  Always test for single-use.
5098 2016-05-23  Martin Jambor  <mjambor@suse.cz>
5100         * hsa-gen.c (gen_hsa_insns_for_switch_stmt): Create an empty
5101         default block if a PHI node in the original one would be resized.
5103 2016-05-23  Venkataramanan Kumar  <venkataramanan.kumar@amd.com>
5105         PR tree-optimization/58135
5106         * tree-vect-slp.c: When group size is not multiple
5107         of vector size, allow splitting of store group at
5108         vector boundary.
5110 2016-05-23  Christophe Lyon  <christophe.lyon@linaro.org>
5112         * config/arm/arm_neon.h (vtst_p16, vtstq_p16): New.
5114 2016-05-22  Jakub Jelinek  <jakub@redhat.com>
5116         * config/i386/sse.md (vec_set_lo_<mode><mask_name>,
5117         vec_set_hi_<mode><mask_name>): Add && <mask_avx512dq_condition>
5118         condition.  For !TARGET_AVX512DQ, emit 32x4 instruction instead
5119         of 64x2.
5121         * config/i386/sse.md (vec_set_lo_v16hi, vec_set_hi_v16hi,
5122         vec_set_lo_v32qi, vec_set_hi_v32qi): Add alternative with
5123         v constraint instead of x and vinserti32x4 insn.
5125         * config/i386/sse.md (i128vldq): New mode iterator.
5126         (avx2_vbroadcasti128_<mode>, avx_vbroadcastf128_<mode>): Add
5127         avx512dq and avx512vl alternatives.
5129         * config/i386/sse.md (avx2_vec_dupv4df): Use v instead of x
5130         constraint, use maybe_evex prefix instead of vex.
5131         (vec_dupv4sf): Use v constraint instead of x for output
5132         operand except for noavx alternative, use Yv constraint
5133         instead of x for input.  Use maybe_evex prefix instead of vex.
5134         (*vec_dupv4si): Likewise.
5135         (*vec_dupv2di): Likewise.
5137 2016-05-22  Kugan Vivekanandarajah  <kuganv@linaro.org>
5139         PR middle-end/40921
5140         * tree-ssa-reassoc.c (try_special_add_to_ops): New.
5141         (linearize_expr_tree): Call try_special_add_to_ops.
5142         (reassociate_bb): Convert MULT_EXPR by (-1) to NEGATE_EXPR.
5144 2016-05-21  Senthil Kumar Selvaraj  <senthil_kumar.selvaraj@atmel.com>
5146         * config/avr/avr.c (avr_expand_prologue): Add INCOMING_FRAME_SP_OFFSET
5147         to computed stack_usage.
5149 2016-05-21  Pitchumani Sivanupandi  <pitchumani.s@atmel.com>
5151         PR target/71103
5152         * config/avr/avr.md (define_expand "mov<mode>"): If the source
5153         operand is subreg (symbol_ref) then move the symbol ref to register.
5155 2016-05-21  Jan Hubicka  <hubicka@ucw.cz>
5157         * tree.c (array_at_struct_end_p): Look through MEM_REF.
5159 2016-05-21  Kugan Vivekanandarajah  <kuganv@linaro.org>
5161         PR middle-end/71179
5162         * tree-ssa-reassoc.c (transform_add_to_multiply): Disallow float
5163         VECTOR type.
5165 2016-05-20  Eric Botcazou  <ebotcazou@adacore.com>
5167         * tree-vrp.c (compare_values_warnv): Simplify handling of symbolic
5168         ranges by calling get_single_symbol and tidy up.  Look more closely
5169         into NAME + CST1 vs CST2 comparisons if type overflow is undefined.
5171 2016-05-20  Jeff Law  <law@redhat.com>
5173         * bitmap.c (bitmap_find_bit): Remove useless test.
5175 2016-05-20  Segher Boessenkool  <segher@kernel.crashing.org>
5177         * function.c (thread_prologue_and_epilogue_insns): Commit the
5178         insertion of the epilogue.
5180 2016-05-20  Martin Jambor  <mjambor@suse.cz>
5182         PR tree-optimization/70884
5183         * tree-sra.c (initialize_constant_pool_replacements): Do not check
5184         should_scalarize_away_bitmap and cannot_scalarize_away_bitmap bits.
5185         (sort_and_splice_var_accesses): Do not consider multiple scalar reads
5186         of constant pool data as a reason for scalarization.
5188 2016-05-20  Eric Botcazou  <ebotcazou@adacore.com>
5190         * config/arm/arm.c (arm_expand_prologue): Set the stack usage to 0
5191         for naked functions.
5192         (thumb1_expand_prologue): Likewise.
5194 2016-05-20  Nathan Sidwell  <nathan@acm.org>
5196         * config/nvptx/nptx.c (nvptx_option_override): Only set
5197         flag_toplevel_reorder, if not explicitly specified.  Set
5198         flag_no_common, unless explicitly specified.
5200 2016-05-20  David Malcolm  <dmalcolm@redhat.com>
5202         * calls.c (can_implement_as_sibling_call_p): Mark param
5203         reg_parm_stack_space with ATTRIBUTE_UNUSED.
5205 2016-05-20  Uros Bizjak  <ubizjak@gmail.com>
5207         * config/i386/i386.c (ix86_rtx_costs) <case CONST_DOUBLE>:
5208         Use IS_STACK_MODE when calculating cost of standard 80387 constants.
5209         Fallthru to CONST_VECTOR case to calculate cost of standard SSE
5210         constants.
5211         <case CONST_WIDE_INT>: Calculate cost of (MEM (SYMBOL_REF)).
5212         (ix86_legitimate_constant_p): Use CASE_CONST_SCALAR_INT
5213         and CASE_CONST_ANY.
5215 2016-05-20  Cesar Philippidis  <cesar@codesourcery.com>
5217         * config/nvptx/nvptx.md (sincossf3): New pattern.
5219 2016-05-20  David Malcolm  <dmalcolm@redhat.com>
5221         * calls.c (maybe_complain_about_tail_call): New function.
5222         (initialize_argument_information): Call
5223         maybe_complain_about_tail_call when clearing *may_tailcall.
5224         (can_implement_as_sibling_call_p): Call
5225         maybe_complain_about_tail_call when returning false.
5226         (expand_call): Read CALL_EXPR_MUST_TAIL_CALL and, if set,
5227         ensure try_tail_call is set.  Call maybe_complain_about_tail_call
5228         if tail-call optimization fails.
5229         * cfgexpand.c (expand_call_stmt): Initialize
5230         CALL_EXPR_MUST_TAIL_CALL from gimple_call_must_tail_p.
5231         * gimple-pretty-print.c (dump_gimple_call): Dump
5232         gimple_call_must_tail_p.
5233         * gimple.c (gimple_build_call_from_tree): Call
5234         gimple_call_set_must_tail with the value of
5235         CALL_EXPR_MUST_TAIL_CALL.
5236         * gimple.h (enum gf_mask): Add GF_CALL_MUST_TAIL_CALL.
5237         (gimple_call_set_must_tail): New function.
5238         (gimple_call_must_tail_p): New function.
5239         * print-tree.c (print_node): Update printing of TREE_STATIC
5240         to reflect its use for CALL_EXPR_MUST_TAIL_CALL.
5241         * tree-core.h (struct tree_base): Add MUST_TAIL_CALL to the
5242         trailing comment listing applicable flags.
5243         * tree.h (CALL_EXPR_MUST_TAIL_CALL): New macro.
5245 2016-05-20  David Malcolm  <dmalcolm@redhat.com>
5247         * calls.c (expand_call): Move "Rest of purposes for tail call
5248         optimizations to fail" to...
5249         (can_implement_as_sibling_call_p): ...this new function, and
5250         split into multiple "if" statements.
5252 2016-05-20  Jan Hubicka  <hubicka@ucw.cz>
5254         * cfgloop.h (expected_loop_iterations_unbounded,
5255         expected_loop_iterations): Unconstify.
5256         * cfgloopanal.c (expected_loop_iterations_unbounded): Sanity check the
5257         profile with known upper bound; return 3 when profile is absent.
5258         (expected_loop_iterations): Update.
5260 2016-05-20  Jan Hubicka  <hubicka@ucw.cz>
5262         * loop-doloop.c (doloop_optimize): Use get_estimated_loop_iterations_int
5263         and get_max_loop_iterations_int.
5265 2016-05-20  Jan Hubicka  <hubicka@ucw.cz>
5267         * tree-ssa-loop-niter.c (idx_infer_loop_bounds): We can not produce
5268         realistic upper bounds here.
5270 2016-05-20  Jakub Jelinek  <jakub@redhat.com>
5272         PR c++/71210
5273         * gimple-fold.c (gimple_fold_call): Do not remove lhs of noreturn
5274         calls if the LHS is variable length or has addressable type.
5275         If targets[0]->decl is a noreturn call with void return type and
5276         zero arguments, adjust fntype and remove lhs in that case.
5278 2016-05-20  Marc Glisse  <marc.glisse@inria.fr>
5280         PR tree-optimization/71079
5281         PR tree-optimization/71206
5282         * match.pd ((X ^ Y) ^ (X ^ Z)): Convert the arguments.
5284 2016-05-20  Prathamesh Kulkarni  <prathamesh.kulkarni@linaro.org>
5286         * tree-vectorizer.c (get_vec_alignment_for_decl): New static function.
5287         (get_vec_alignment_for_array_decl): Likewise.
5288         (get_vec_alignment_for_record_decl): Likewise.
5289         (increase_alignment::execute): Move code to find alignment to
5290         get_vec_alignment_for_array_decl and call get_vec_alignment_for_decl.
5291         (type_align_map): New hash_map.
5293 2016-05-20  Richard Guenther  <rguenther@suse.de>
5295         PR tree-optimization/29756
5296         * tree.def (BIT_INSERT_EXPR): New tcc_expression tree code.
5297         * expr.c (expand_expr_real_2): Handle BIT_INSERT_EXPR.
5298         * fold-const.c (operand_equal_p): Likewise.
5299         (fold_ternary_loc): Add constant folding of BIT_INSERT_EXPR.
5300         * gimplify.c (gimplify_expr): Handle BIT_INSERT_EXPR.
5301         * tree-inline.c (estimate_operator_cost): Likewise.
5302         * tree-pretty-print.c (dump_generic_node): Likewise.
5303         * tree-ssa-operands.c (get_expr_operands): Likewise.
5304         * cfgexpand.c (expand_debug_expr): Likewise.
5305         * gimple-pretty-print.c (dump_ternary_rhs): Likewise.
5306         * gimple.c (get_gimple_rhs_num_ops): Handle BIT_INSERT_EXPR.
5307         * tree-cfg.c (verify_gimple_assign_ternary): Verify BIT_INSERT_EXPR.
5308         * tree-ssa.c (non_rewritable_lvalue_p): We can rewrite
5309         vector inserts using BIT_FIELD_REF or MEM_REF on the lhs.
5310         (execute_update_addresses_taken): Do it.
5312 2016-05-20  Richard Biener  <rguenther@suse.de>
5314         PR tree-optimization/71185
5315         * tree-ssa-loop-prefetch.c (gather_memory_references): Drop
5316         register operations.
5318 2016-05-20  Richard Biener  <rguenther@suse.de>
5320         * tree-if-conv.c (add_bb_predicate_gimplified_stmts): Use
5321         gimple_seq_add_seq_without_update.
5322         (release_bb_predicate): Assert we have no operands to free.
5323         (if_convertible_loop_p_1): Calculate post dominators later.
5324         Do not free BB predicates here.
5325         (combine_blocks): Do not recompute BB predicates.
5326         (version_loop_for_if_conversion): Save BB predicates around
5327         loop versioning.
5329 2016-05-19  Segher Boessenkool  <segher@kernel.crashing.org>
5331         * function.c (make_epilogue_seq): Remove epilogue_end parameter.
5332         (thread_prologue_and_epilogue_insns): Remove bb_flags.  Restructure
5333         code.  Ignore sibcalls on EDGE_IGNORE edges.
5334         * shrink-wrap.c (handle_simple_exit): New function.  Set EDGE_IGNORE
5335         on edges for sibcalls that run without prologue.  The rest of the
5336         function is combined from...
5337         (fix_fake_fallthrough_edge): ... this, and ...
5338         (try_shrink_wrapping): ... a part of this.  Remove the bb_with
5339         function argument, make it a local variable.
5341 2016-05-19  Sandra Loosemore  <sandra@codesourcery.com>
5343         * config/i386/cygming.h (DWARF2_UNWIND_INFO): Allow
5344         --disable-sjlj-exceptions for TARGET_BI_ARCH to select DWARF-2 EH
5345         for 32-bit mode and SEH for 64-bit.
5346         * config/i386/mingw32.h (SHARED_LIBGCC_UNDEFS_SPEC): Handle
5347         TARGET_64BIT_DEFAULT.
5349 2016-05-19  Ryan Burn  <contact@rnburn.com>
5351         * Makefile.in (GTFILES): Add cilk.h and cilk-common.c.
5352         * gengtype.c (open_base_files): Add cilk.h to ifiles.
5354 2016-05-19  Uros Bizjak  <ubizjak@gmail.com>
5356         * sched-deps.c (sched_analyze_2) <case TRAP_IF>: Also
5357         force pending loads from memory.
5359 2016-05-19  Kelvin Nilsen  <kelvin@gcc.gnu.org>
5361         * config/rs6000/altivec.md (UNSPEC_DARN): New unspec constant.
5362         (UNSPEC_DARN_32): New unspec constant.
5363         (UNSPEC_DARN_RAW): New unspec constant.
5364         (darn_32): New instruction.
5365         (darn_raw): New instruction.
5366         (darn): New instruction.
5367         * config/rs6000/rs6000-builtin.def (RS6000_BUILTIN_0): Add
5368         support and documentation for this macro.
5369         (BU_P9_MISC_1): New macro definition.
5370         (BU_P9_64BIT_MISC_0): New macro definition.
5371         (BU_P9_MISC_0): New macro definition.
5372         (darn_32): New builtin definition.
5373         (darn_raw): New builtin definition.
5374         (darn): New builtin definition.
5375         * config/rs6000/rs6000.c: Add #define RS6000_BUILTIN_0 and #undef
5376         RS6000_BUILTIN_0 directives to surround each occurrence of
5377         #include "rs6000-builtin.def".
5378         (rs6000_builtin_mask_calculate): Add in the RS6000_BTM_MODULO and
5379         RS6000_BTM_64BIT flags to the returned mask, depending on
5380         configuration.
5381         (def_builtin): Correct an error in the assignments made to the
5382         debugging variable attr_string.
5383         (rs6000_expand_builtin): Add support for no-operand built-in
5384         functions.
5385         (builtin_function_type): Remove fatal_error assertion that is no
5386         longer valid.
5387         (rs6000_common_init_builtins): Add support for no-operand built-in
5388         functions.
5389         * config/rs6000/rs6000.h (RS6000_BTM_MODULO): New macro
5390         definition.
5391         (RS6000_BTM_PURE): Enhance comment to clarify intent of this flag
5392         definition.
5393         (RS6000_BTM_64BIT): New macro definition.
5394         * doc/extend.texi: Document __builtin_darn (void),
5395         __builtin_darn_raw (void), and __builtin_darn_32 (void) built-in
5396         functions.
5398 2016-05-19  Jan Hubicka  <hubicka@ucw.cz>
5400         * tree-vect-loop.c (vect_analyze_loop_2): Use also
5401         max_loop_iterations_int.
5403 2016-05-19  Marek Polacek  <polacek@redhat.com>
5405         PR tree-optimization/71031
5406         * tree-vrp.c (extract_range_from_binary_expr_1): Turn assert into a
5407         condition and adjust the code a bit.
5409 2016-05-19  Martin Liska  <mliska@suse.cz>
5411         * tree-vect-stmts.c (vectorizable_simd_clone_call): Utilize
5412         auto_vec instead of vec.
5414 2016-05-19  Martin Liska  <mliska@suse.cz>
5416         * tree-parloops.c (oacc_entry_exit_ok): Release a vector.
5418 2016-05-19  Martin Liska  <mliska@suse.cz>
5420         * tree-if-conv.c (ifcvt_repair_bool_pattern): Utilize auto_vecs.
5422 2016-05-19  Martin Liska  <mliska@suse.cz>
5424         * ipa-pure-const.c (set_function_state): Remove an existing
5425         funct_state.
5426         (remove_node_data): Do not free it as it's released
5427         in set_function_state.
5429 2016-05-19  Martin Liska  <mliska@suse.cz>
5431         * tree-vect-slp.c (vect_attempt_slp_rearrange_stmts): Release
5432         bitmap.
5434 2016-05-19  Martin Liska  <mliska@suse.cz>
5436         * omp-simd-clone.c (simd_clone_adjust): Release vector.
5438 2016-05-19  Martin Liska  <mliska@suse.cz>
5440         * tree-ssa-reassoc.c (eliminate_duplicate_pair): Truncate
5441         an auto_vec instead of re-creating it.
5443 2016-05-19  Martin Liska  <mliska@suse.cz>
5445         * tree-ssa-loop-prefetch.c (determine_loop_nest_reuse): Use
5446         auto_vec instead of vec.
5448 2016-05-19  Martin Liska  <mliska@suse.cz>
5450         * lto-section-in.c (lto_get_section_data): Call
5451         lto_check_version with additional argument.
5452         * lto-streamer.c (lto_check_version): Add new argument.
5453         * lto-streamer.h (lto_check_version): Likewise.
5455 2016-05-19  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
5457         * config/arm/arm.c (arm_new_rtx_costs, SIGN_EXTEND case):
5458         Don't add cost of inner memory when handling sign-extended loads.
5460 2016-05-19  Ilya Enkovich  <ilya.enkovich@intel.com>
5462         PR rtl-optimization/71148
5463         * cse.c (cse_main): Free dominance info.
5464         (rest_of_handle_cse): Don't free dominance info.
5465         (rest_of_handle_cse2): Likewise.
5466         (rest_of_handle_cse_after_global_opts): Likewise.
5468 2016-05-19  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
5470         PR target/71056
5471         * config/arm/arm-builtins.c (arm_builtin_vectorized_function): Return
5472         NULL_TREE early if NEON is not available.  Remove now redundant check
5473         in ARM_CHECK_BUILTIN_MODE.
5475 2016-05-19  Maxim Ostapenko  <m.ostapenko@samsung.com>
5477         PR sanitizer/64354
5478         * cppbuiltin.c (define_builtin_macros_for_compilation_flags): Add new
5479         builtin __SANITIZE_THREAD__ macros for fsanitize=thread switch.
5480         * doc/cpp.texi: Document new macros.
5482 2016-05-19 Bin Cheng  <bin.cheng@arm.com>
5484         PR tree-optimization/69848
5485         * tree-vect-loop.c (vectorizable_reduction): Don't factor
5486         comparison expr out of VEC_COND_EXPR for COND_REDUCTION.
5488 2016-05-19  Segher Boessenkool  <segher@kernel.crashing.org>
5490         * function.c (thread_prologue_and_epilogue_insn): Move the
5491         "goto epilogue_done" one block later.
5493 2016-05-19  Richard Biener  <rguenther@suse.de>
5495         PR tree-optimization/70729
5496         * passes.def: Move LIM pass before PRE.  Remove no longer
5497         required copyprop and move first DCE out of the loop pipeline.
5499 2016-05-18  David Malcolm  <dmalcolm@redhat.com>
5501         PR driver/69265
5502         * Makefile.in (GCC_OBJS): Move spellcheck.o to...
5503         (OBJS-libcommon-target): ...here.
5504         * opts-common.c: Include spellcheck.h.
5505         (cmdline_handle_error): Build a vec of valid options and use it
5506         to suggest provide hints for misspelled arguments.
5508 2016-05-18  Jakub Jelinek  <jakub@redhat.com>
5510         PR c++/71100
5511         * cgraph.c (cgraph_edge::redirect_call_stmt_to_callee): Don't drop
5512         lhs if it has TREE_ADDRESSABLE type.
5514 2016-05-18  Uros Bizjak  <ubizjak@gmail.com>
5516         PR target/71145
5517         * config/alpha/alpha.md (trap): Add (use (reg:DI 29)).
5518         (*exception_receiver_1): Return "#" for TARGET_EXPLICIT_RELOCS.
5520 2016-05-18  Martin Jambor  <mjambor@suse.cz>
5522         PR ipa/69708
5523         * ipa-cp.c (ipa_get_jf_pass_through_result): Allow non-ip constant
5524         input for NOP_EXPR pass-through functions.
5525         * ipa-prop.c (ipa_compute_jump_functions_for_edge): Allow
5526         aggregate global constant VAR_DECLs in constant jump functions.
5528 2016-05-18  Martin Jambor  <mjambor@suse.cz>
5530         PR ipa/69708
5531         * ipa-prop.c (parm_preserved_before_stmt_p): Return true for loads
5532         from TREE_READONLY parameters.
5534 2016-05-18  Martin Jambor  <mjambor@suse.cz>
5536         PR ipa/69708
5537         * cgraph.h (cgraph_indirect_call_info): New field
5538         guaranteed_unmodified.
5539         * ipa-cp.c (ipa_get_indirect_edge_target_1): Also pass parameter value
5540         to ipa_find_agg_cst_for_param, check guaranteed_unmodified when
5541         appropriate.
5542         * ipa-inline-analysis.c (evaluate_conditions_for_known_args): Also
5543         pass the parameter value to ipa_find_agg_cst_for_param.
5544         * ipa-prop.c (ipa_load_from_parm_agg): New parameter
5545         guaranteed_unmodified, store AA results there instead of bailing out
5546         if present.
5547         (ipa_note_param_call): Also initialize guaranteed_unmodified flag.
5548         (ipa_analyze_indirect_call_uses): Also set guaranteed_unmodified flag.
5549         (find_constructor_constant_at_offset): New function.
5550         (ipa_find_agg_cst_from_init): Likewise.
5551         (ipa_find_agg_cst_for_param): Also seearch for aggregate values in
5552         static initializers of contants, report back through a new paameter
5553         from_global_constant if that was the case.
5554         (try_make_edge_direct_simple_call): Also pass parameter value to
5555         ipa_find_agg_cst_for_param, check guaranteed_unmodified when
5556         appropriate.
5557         (ipa_write_indirect_edge_info): Stream new flag guaranteed_unmodified.
5558         (ipa_read_indirect_edge_info): Likewise.
5559         * ipa-prop.h (ipa_find_agg_cst_for_param): Update declaration.
5560         (ipa_load_from_parm_agg): Likewise.
5562 2016-05-18  Jiong Wang  <jiong.wang@arm.com>
5564         PR rtl-optimization/71150
5565         * lra-constraint (process_addr_reg): Guard "in_class_p" with REG_P
5566         check.
5568 2016-05-18  Michael Meissner  <meissner@linux.vnet.ibm.com>
5570         PR target/70915
5571         * config/rs6000/constraints.md (wE constraint): New constraint
5572         for a vector constant that can be loaded with XXSPLTIB.
5573         (wM constraint): New constraint for a vector constant of a 1's.
5574         (wS constraint): New constraint for a vector constant that can be
5575         loaded with XXSPLTIB and a vector sign extend instruction.
5576         * config/rs6000/predicates.md (xxspltib_constant_split): New
5577         predicates for wE/wS constraints.
5578         (xxspltib_constant_nosplit): Likewise.
5579         (easy_vector_constant): Add support for constants that can be
5580         loaded via XXSPLTIB.
5581         (all_ones_constant): New predicate for vector constant with all
5582         1's set.
5583         (splat_input_operand): Add support for ISA 3.0 word splat operations.
5584         * config/rs6000/rs6000.c (xxspltib_constant_p): New function to
5585         return if a constant can be loaded with the ISA 3.0 XXSPLTIB
5586         instruction and possibly with a sign extension.
5587         (output_vec_const_move): Add support for XXSPLTIB. If we are
5588         loading up 0/-1 into Altivec registers, prefer using VSPLTISW
5589         instead of XXLXOR/XXLORC.
5590         (rs6000_expand_vector_init): Add support for ISA 3.0 word splat
5591         operations.
5592         (rs6000_legitimize_reload_address): Likewise.
5593         (rs6000_output_move_128bit): Use output_vec_const_move to emit
5594         constants.
5595         * config/rs6000/vsx.md (VSX_M): Add TImode (if -mvsx-timode) and
5596         combine VSX_M and VSX_M2 into one iterator.
5597         (VSX_M2): Likewise.
5598         (VSINT_84): New iterators for loading constants with XXSPLTIB.
5599         (VSINT_842): Likewise.
5600         (UNSPEC_VSX_SIGN_EXTEND): New UNSPEC.
5601         (xxspltib_v16qi): New insns to load up constants with the ISA 3.0
5602         XXSPLTIB instruction.
5603         (xxspltib_<mode>_nosplit): Likewise.
5604         (xxspltib_<mode>_split): New insn to load up constants with
5605         XXSPLTIB and a sign extend instruction.
5606         (vsx_mov<mode>): Replace single move that handled all vector types
5607         with separate 32-bit and 64-bit moves.  Combine the movti_<bit>
5608         moves (when -mvsx-timode is in effect) into the main vector
5609         moves.  Eliminate separate moves for <VSr> <VSa>, where the
5610         preferred register class (<VSr>) is listed first, and the
5611         secondary register class (<VSa>) is listed second with a '?' to
5612         discourage use.  Prefer loading 0/-1 in any VSX register for ISA
5613         3.0, and Altivec registers for ISA 2.06/2.07 (PR target/70915) so
5614         that if the register was involved in a slow operation, the
5615         clear/set operation does not wait for the slow operation to
5616         finish.  Adjust the length attributes for 32-bit mode.  Use
5617         rs6000_output_move_128bit and drop the use of the string
5618         instructions for 32-bit movti when -mvsx-timode is in effect.  Use
5619         spacing so that the alternatives and attributes don't generate
5620         long lines, and put things in columns, so that it is easier to
5621         match up the operands and attributes with the insn alternatives.
5622         (vsx_mov<mode>_64bit): Likewise.
5623         (vsx_mov<mode>_32bit): Likewise.
5624         (vsx_movti_64bit): Fold movti into normal vector moves.
5625         (vsx_movti_32bit): Likewise.
5626         (vsx_splat_<mode>, V4SI/V4SF modes): Add support for ISA 3.0 word
5627         splat instructions.
5628         (vsx_splat_v4si_internal): Likewise.
5629         (vsx_splat_v4sf_internal): Likewise.
5630         (vector fusion peepholes): Use VSX_M instead of VSX_M2.
5631         (vsx_sign_extend_qi_<mode>): New ISA 3.0 instructions to sign
5632         extend vector elements.
5633         (vsx_sign_extend_hi_<mode>): Likewise.
5634         (vsx_sign_extend_si_v2di): Likewise.
5635         * config/rs6000/rs6000-protos.h (xxspltib_constant_p): Add
5636         declaration.
5637         * doc/md.texi (PowerPC constraints): Document the wE, wM, and wS
5638         constraints.  Add trailing period to wL documentation.
5640 2016-05-18  Richard Sandiford  <richard.sandiford@arm.com>
5642         PR middle-end/71020
5643         * tree-dfa.h (replace_abnormal_ssa_names): Declare.
5644         * tree-dfa.c (replace_abnormal_ssa_names): New function.
5645         * tree-call-cdce.c: Include tree-dfa.h.
5646         (can_guard_call_p): New function, extracted from...
5647         (can_use_internal_fn): ...here.
5648         (shrink_wrap_one_built_in_call_with_conds): Remove failure path
5649         and return void.
5650         (shrink_wrap_one_built_in_call): Likewise.
5651         (use_internal_fn): Likewise.
5652         (shrink_wrap_conditional_dead_built_in_calls): Update accordingly
5653         and return void.  Call replace_abnormal_ssa_names.
5654         (pass_call_cdce::execute): Check can_guard_call_p during the
5655         initial walk.  Assume shrink_wrap_conditional_dead_built_in_calls
5656         will always change something.
5658 2016-05-18  Martin Jambor  <mjambor@suse.cz>
5660         PR ipa/70646
5661         * ipa-prop.c (determine_locally_known_aggregate_parts): Bail out early
5662         if parameter PARAM_IPA_MAX_AGG_ITEMS is zero.
5664 2016-05-18  Martin Jambor  <mjambor@suse.cz>
5666         PR ipa/70646
5667         * ipa-inline.h (condition): New field size.
5668         * ipa-inline-analysis.c (add_condition): New parameter SIZE, use it
5669         for comaprison and store it into the new condition.
5670         (evaluate_conditions_for_known_args): Use condition size to check
5671         access sizes for all but CHANGED conditions.
5672         (unmodified_parm_1): New parameter size_p, store access size into it.
5673         (unmodified_parm): Likewise.
5674         (unmodified_parm_or_parm_agg_item): Likewise.
5675         (eliminated_by_inlining_prob): Pass NULL to unmodified_parm as size_p.
5676         (set_cond_stmt_execution_predicate): Extract access sizes and store
5677         them to conditions.
5678         (set_switch_stmt_execution_predicate): Likewise.
5679         (will_be_nonconstant_expr_predicate): Likewise.
5680         (will_be_nonconstant_predicate): Likewise.
5681         (inline_read_section): Stream condition size.
5682         (inline_write_summary): Likewise.
5684 2016-05-18  Richard Biener  <rguenther@suse.de>
5686         * tree-ssa-loop-im.c (determine_max_movement): Properly add
5687         condition cost to PHI cost instead of total_cost.
5689 2016-05-18  Martin Liska  <mliska@suse.cz>
5691         PR fortran/70856
5692         * ipa-icf.c (sem_variable::merge): Set DECL_PT_UID for
5693         merged variables.
5695 2016-05-18  Richard Biener  <rguenther@suse.de>
5697         * lto-streamer.h (LTO_major_version): Bump to 6.
5699 2016-05-18  Segher Boessenkool  <segher@kernel.crashing.org>
5701         * function.c (make_split_prologue_seq, make_prologue_seq,
5702         make_epilogue_seq): New functions, factored out from...
5703         (thread_prologue_and_epilogue_insns): Here.
5705 2016-05-18  Segher Boessenkool  <segher@kernel.crashing.org>
5707         * function.c (rest_of_handle_thread_prologue_and_epilogue): Call
5708         cleanup_cfg with CLEANUP_EXPENSIVE after shrink-wrapping instead
5709         of before.  Add a comment.
5711 2016-05-18 Bin Cheng  <bin.cheng@arm.com>
5713         * tree-ssa-loop-ivopts.c (get_computation_cost_at): Check invariant
5714         expression pointer, not pointer to the pointer.
5716 2016-05-18  Jakub Jelinek  <jakub@redhat.com>
5718         * config/i386/sse.md (pbroadcast_evex_isa): New mode attr.
5719         (avx2_pbroadcast<mode>): Add another alternative with v instead
5720         of x constraints in it, using <pbroadcast_evex_isa> isa.
5721         (avx2_pbroadcast<mode>_1): Similarly, add two such alternatives.
5723         * config/i386/sse.md (<ssse3_avx2>_palignr<mode>): Use
5724         constraint x instead of v in second alternative, add avx512bw
5725         alternative.
5727         * config/i386/sse.md (<ssse3_avx2>_pshufb<mode>3<mask_name>): Use
5728         constraint x instead of v in second alternative, add avx512bw
5729         alternative.
5731         * config/i386/sse.md (*<ssse3_avx2>_pmulhrsw<mode>3<mask_name>): Use
5732         constraint x instead of v in second alternative, add avx512bw
5733         alternative.
5735         * config/i386/sse.md (avx2_pmaddubsw256, ssse3_pmaddubsw128): Add
5736         avx512bw alternative.
5738 2016-05-18  Kirill Yukhin  <kirill.yukhin@intel.com>
5740         * config/i386/sse.md (define_insn "*andnot<mode>3"): Extend static
5741         array to 128 chars.
5742         (define_insn "*andnottf3"): Ditto.
5743         (define_insn "*<code><mode>3"/any_logic): Ditto.
5744         (define_insn "*<code>tf3"/any_logic): Ditto.
5745         (define_insn "sse2_storehpd"): Use Yv constraint for scalar
5746         operand to block AVX-512VL insn variant emit when it is not enabled.
5748 2016-05-18  Kirill Yukhin  <kirill.yukhin@intel.com>
5750         * config/i386/sse.md (define_insn "*vec_concatv2sf_sse4_1"): Use 'Yv'
5751         constraint fot SF mode.
5753 2016-05-18  Petr Murzin  <petr.murzin@intel.com>
5754             Kirill Yukhin  <kirill.yukhin@intel.com>
5756         * config/i386/sse.md (define_insn "srcp14<mode>"): Use proper operand
5757         modifiers.
5758         (define_insn "rsqrt14<mode>"): Ditto.
5759         (define_insn "<mask_codefor>avx512dq_cvtps2qqv2di<mask_name>"): Ditto.
5760         (define_insn "<fixsuffix>fix_truncv2sfv2di2<mask_name>"): Ditto.
5761         (define_insn "avx512f_<code>v8div16qi2_mask_store"): Ditto.
5762         (define_insn "vec_set_hi_<mode><mask_name>"): Ditto.
5763         (define_insn "<mask_codefor>avx512dq_broadcast<mode><mask_name>"):
5764         Ditto.
5765         (define_insn "*avx512f_gatherdi<mode>"): Ditto.
5766         (define_insn "*avx512f_scatterdi<mode>"): Ditto.
5767         * config/i386/i386.c (ix86_print_operand): Expand check for size
5768         override codes for Intel syntax.
5770 2016-05-18  Richard Biener  <rguenther@suse.de>
5772         PR tree-optimization/71168
5773         * tree-loop-distribution.c (distribute_loop): Move *destroy_p
5774         initialization earlier.
5776 2016-05-18  James Greenhalgh  <james.greenhalgh@arm.com>
5778         * config/aarch64/aarch64-simd.md
5779         (aarch64_reduc_plus_internal<mode>): Rename to...
5780         (reduc_plus_scal): ...This, and remove previous implementation.
5782 2016-05-18  Richard Biener  <rguenther@suse.de>
5784         * passes.def: Put late dse and cd_dce in canonical order.
5786 2016-05-17  Jan Hubicka  <hubicka@ucw.cz>
5788         * ipa-inline-transform.c (preserve_function_body_p): Look for
5789         first non-thunk clone.
5790         (save_function_body): Save into first non-thunk.
5791         * lto-cgraph.c (lto_output_edge): When streaming thunk do not look
5792         up call stmt id.
5793         (lto_output_node): Inline thunks don't need body in every
5794         partition.
5795         * lto-streamer-in.c: Do not fixup thunk clones.
5796         * cgraphclones.c (cgraph_node::create_edge_including_clone): Skip
5797         thunks.
5798         * tree-inline.c (copy_bb): Be prepared for target node to be new after
5799         folding suceeds.
5801 2016-05-17  Kugan Vivekanandarajah  <kuganv@linaro.org>
5803         PR middle-end/63586
5804         * tree-ssa-reassoc.c (transform_add_to_multiply): New.
5805         (reassociate_bb): Call transform_add_to_multiply.
5807 2016-05-17  Kugan Vivekanandarajah  <kuganv@linaro.org>
5809         * config/aarch64/aarch64.c (all_extensions): Removed unused
5810         static variable.
5812 2016-05-17  Nathan Sidwell  <nathan@acm.org>
5814         * config/nvptx/nvptx.c (nvptx_function_arg_boundary): New.
5815         (TARGET_FUNCTION_ARG_BOUNDARY): Override.
5817 2016-05-17  Mikhail Maltsev  <maltsevm@gmail.com>
5819         PR tree-optimization/54579
5820         PR middle-end/55299
5821         * match.pd (~(~X >> Y), ~(~X >>r Y), ~(~X <<r Y)): New patterns.
5823 2016-05-17  Marek Polacek  <polacek@redhat.com>
5825         PR ipa/71146
5826         * tree-inline.c (expand_call_inline): Call
5827         maybe_remove_unused_call_args.
5829 2016-05-17  Jim Wilson  <jim.wilson@linaro.org>
5831         * doc/cpp.texi (__GNUC__): Major version changes are no longer rare.
5832         * doc/invoke.texi (-mnan=2008): Change signalling to signaling.
5833         * doc/md.texi (fmin@var{m}3): Likewise.
5835 2016-05-17  Marc Glisse  <marc.glisse@inria.fr>
5837         * match.pd (X & C): New transformation.
5839 2016-05-17  Marc Glisse  <marc.glisse@inria.fr>
5841         * match.pd (~X & Y): New transformation.
5843 2016-05-17  Marc Glisse  <marc.glisse@inria.fr>
5845         * tree-vrp.c (simplify_truth_ops_using_ranges): Set range
5846         information for new SSA_NAME.
5847         (simplify_conversion_using_ranges): Get range through get_range_info
5848         instead of get_value_range.
5850 2016-05-17  Jiong Wang  <jiong.wang@arm.com>
5852         * config/aarch64/arm_neon.h (vmvn_s8): Reimplement using C operator.
5853         Remove inline assembly.
5854         (vmvn_s16): Likewise.
5855         (vmvn_s32): Likewise.
5856         (vmvn_u8): Likewise.
5857         (vmvn_u16): Likewise.
5858         (vmvn_u32): Likewise.
5859         (vmvnq_s8): Likewise.
5860         (vmvnq_s16): Likewise.
5861         (vmvnq_s32): Likewise.
5862         (vmvnq_u8): Likewise.
5863         (vmvnq_u16): Likewise.
5864         (vmvnq_u32): Likewise.
5865         (vmvn_p8): Likewise.
5866         (vmvnq_p16): Likewise.
5868 2016-05-17  Jiong Wang  <jiong.wang@arm.com>
5870         * config/aarch64/aarch64-simd.md (vmul_n_f32): Remove inline assembly.
5871         Use builtin.
5872         (vmul_n_s16): Likewise.
5873         (vmul_n_s32): Likewise.
5874         (vmul_n_u16): Likewise.
5875         (vmul_n_u32): Likewise.
5876         (vmulq_n_f32): Likewise.
5877         (vmulq_n_f64): Likewise.
5878         (vmulq_n_s16): Likewise.
5879         (vmulq_n_s32): Likewise.
5880         (vmulq_n_u16): Likewise.
5881         (vmulq_n_u32): Likewise.
5883 2016-05-17  Jiong Wang  <jiong.wang@arm.com>
5885         * config/aarch64/aarch64-simd.md (*aarch64_mul3_elt_to_128df): Extend
5886         to all supported modes.  Rename to "*aarch64_mul3_elt_from_dup".
5888 2016-05-17  Jiong Wang  <jiong.wang@arm.com>
5890         * config/aarch64/aarch64-simd.md (*aarch64_fma4_elt_to_128df): Rename
5891         to *aarch64_fma4_elt_from_dup<mode>.
5892         (*aarch64_fnma4_elt_to_128df): Rename to
5893         *aarch64_fnma4_elt_from_dup<mode>.
5894         * config/aarch64/arm_neon.h (vfma_n_f64): New.
5895         (vfms_n_f32): Likewise.
5896         (vfms_n_f64): Likewise.
5897         (vfmsq_n_f32): Likewise.
5898         (vfmsq_n_f64): Likewise.
5900 2016-05-17  Gerald Pfeifer  <gerald@pfeifer.com>
5902         * wide-int.h: Change fixed_wide_int_storage from class to struct.
5904 2016-05-17  Richard Biener  <rguenther@suse.de>
5906         PR tree-optimization/71132
5907         * tree-loop-distribution.c (create_rdg_cd_edges): Pass in loop.
5908         Only add control dependences for blocks in the loop.
5909         (build_rdg): Adjust.
5910         (generate_code_for_partition): Return whether loop should
5911         be destroyed and delay that.
5912         (distribute_loop): Likewise.
5913         (pass_loop_distribution::execute): Record loops to be destroyed
5914         and perform delayed destroying of loops.
5916 2016-05-17  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
5918         PR target/70809
5919         * config/aarch64/aarch64-simd.md (aarch64_vmls<mode>): Delete.
5921 2016-05-17  James Greenhalgh  <james.greenhalgh@arm.com>
5923         * config/aarch64/aarch64-elf.h (ASM_OUTPUT_DEF): Delete.
5925 2016-05-17  Ilya Enkovich  <ilya.enkovich@intel.com>
5927         PR target/71114
5928         * config/i386/i386.c (dimode_scalar_chain::convert_op): Fix
5929         insertion point for instructions generated by validize_mem.
5931 2016-05-17  James Greenhalgh  <james.greenhalgh@arm.com>
5933         * config/aarch64/aarch64.c (SHIFT_COUNT_TRUNCATED): Wrap definition
5934         in brackets.
5936 2016-05-17  James Greenhalgh  <james.greenhalgh@arm.com>
5938         * config/aarch64/aarch64.c
5939         (aarch64_output_simd_mov_immediate): Make "buf_size" a variable
5940         rather than a macro.
5942 2016-05-16  Wilco Dijkstra  <wdijkstr@arm.com>
5944         * doc/invoke.texi (AArch64 Options): Various updates.
5946 2016-05-16  Jan Hubicka  <hubicka@ucw.cz>
5948         * ipa-inline-analysis.c (compute_inline_parameters): Disable inlinig
5949         into instrumentation thunks.
5950         * cif-code.def (CIF_CHKP): New.
5952 2016-05-16  Uros Bizjak  <ubizjak@gmail.com>
5954         * config/i386/xopintrin.h: Correct "unsinged" typo in the comments.
5956 2016-05-16  Martin Jambor  <mjambor@suse.cz>
5958         * hsa-gen.c (fillup_for_decl): Increase alignment to natural one.
5959         (get_symbol_for_decl): Sorry if a global symbol in under-aligned.
5961 2016-05-16  Marek Polacek  <polacek@redhat.com>
5963         * gimple.c (maybe_remove_unused_call_args): Fix typos in the
5964         commentary.
5966 2016-05-16  Martin Jambor  <mjambor@suse.cz>
5968         PR hsa/70857
5969         * omp-low.c (grid_expand_target_grid_body): Copy RESULT_DECL of
5970         the outlined kernel function.
5972 2016-05-16  Robert Suchanek  <robert.suchanek@imgtec.com>
5974         * config/mips/mips.h (ISA_HAS_LSA): Enable for -mmsa.
5975         (ISA_HAS_DLSA): Ditto.
5977 2016-05-16  Matthew Fortune  <matthew.fortune@imgtec.com>
5979         * config/mips/m5100.md (m51_int_load): Update the latency to 2.
5981 2016-05-16  Nathan Sidwell  <nathan@acm.org>
5983         * config/nvptx/nvptx.c (nvptx_mangle_decl_assembler_name): Revert.
5984         (nvptx_name_replacement): Restore.  Add comment.
5985         (write_fn_proto, write_fn_proto_from_insn,
5986         nvptx_output_call_insn): Restore
5987         (TARGET_MANGLE_DECL_ASSEMBLER_NAME): Delete.
5989 2016-05-16  Wilco Dijkstra  <wdijkstr@arm.com>
5991         * config/aarch64/aarch64.md
5992         (add<mode>3_compareC_cconly_imm): Remove use of %w.
5993         (add<mode>3_compareC_imm): Likewise.
5994         (<optab>si3_uxtw): Split into register and immediate variants.
5995         (andsi3_compare0_uxtw): Likewise.
5996         (and<mode>3_compare0): Likewise.
5997         (and<mode>3nr_compare0): Likewise.
5998         (stack_protect_test_<mode>): Don't use %x for memory operands.
6000 2016-05-16  Matthew Fortune  <matthew.fortune@imgtec.com>
6002         * config/mips/mips-cpus.def (p5600): Add multi-line brackets.
6004 2016-05-16  Wilco Dijkstra  <wdijkstr@arm.com>
6006         * config/aarch64/aarch64.md (aarch64_ashl_sisd_or_int_<mode>3):
6007         Split integer shifts into shift_reg and bfm.
6008         (aarch64_lshr_sisd_or_int_<mode>3): Likewise.
6009         (aarch64_ashr_sisd_or_int_<mode>3): Likewise.
6010         (ror<mode>3_insn): Likewise.
6011         (<optab>si3_insn_uxtw): Likewise.
6012         (<optab><mode>3_insn): Change to rotate_imm.
6013         (extr<mode>5_insn_alt): Likewise.
6014         (extrsi5_insn_uxtw): Likewise.
6015         (extrsi5_insn_uxtw_alt): Likewise.
6017 2016-05-16  Matthew Wahab  <matthew.wahab@arm.com>
6019         * doc/tm.texi: Regenerate.
6020         * doc/tm.texi.in (TARGET_INVALID_PARAMETER_TYPE): Remove.
6021         (TARGET_INVALID_RETURN_TYPE): Remove.
6022         * system.h: Poison TARGET_INVALID_PARAMETER_TYPE and
6023         TARGET_INVALID_RETURN_TYPE.
6024         * target.def (invalid_parameter_type): Remove.
6025         (invalid_return_type): Remove.
6027 2016-05-16  Jan Hubicka  <hubicka@ucw.cz>
6029         * ipa-inline-analysis.c (compute_inline_parameters): Be more reailistic
6030         on estimating thunk bodies; do not set inline_failed to CIF_THUNK for
6031         calls from thunk.
6032         * ipa-inline-transform.c (inline_call): When inlining into thunk produce
6033         gimple body.
6034         (preserve_function_body_p): No need to preserve function body
6035         * cif-codes.def (CIF_THUNK): Remove.
6036         * cgraphclones.c (duplicate_thunk_for_node): Thunks calls are inlinable.
6038 2016-05-16  Jan Hubicka  <hubicka@ucw.cz>
6040         * tree-inline.c (expand_call_inline): recurse after inlining thunk.
6042 2016-05-16  Jan Hubicka  <hubicka@ucw.cz>
6044         * tree.c (free_lang_data_in_decl): Also set target/optimization flags
6045         for thunks.
6047 2016-05-16  Jan Hubicka  <hubicka@ucw.cz>
6049         * ipa-inline.c (report_inline_failed_reason): Look into thunks, too
6050         (inline_small_functions): Do not look for function symbol when
6051         resetting caches.
6053 2016-05-16  Jan Hubicka  <hubicka@ucw.cz>
6055         * lto-cgraph.c (compute_ltrans_boundary, output_symtab): Fix handling
6056         of inline thunks
6058 2016-05-16  Matthew Wahab  <matthew.wahab@arm.com>
6059             Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>
6060             Jiong Wang  <jiong.wang@arm.com>
6062         * config/arm/arm-c.c (arm_cpu_builtins): Use def_or_undef_macro
6063         for __ARM_FP16_FORMAT_IEEE and __ARM_FP16_FORMAT_ALTERNATIVE.
6064         Define __ARM_FP16_ARGS when appropriate.
6065         * config/arm/arm.c (arm_invalid_parameter_type): Remove
6066         declaration.
6067         (arm_invalid_return_type): Likewise.
6068         (TARGET_INVALID_PARAMETER_TYPE): Remove.
6069         (TARGET_INVALID_RETURN_TYPE): Remove.
6070         (aapcs_vfp_sub_candidate): Allow HFmode.
6071         (aapcs_vfp_allocate): Add comment.  Support HFmode.
6072         (aapcs_vfp_allocate_return_reg): Likewise.
6073         (struct aapcs_cp_arg_layout): Slightly reword comments for
6074         is_return_candidate and allocate_return_reg.
6075         (output_mov_vfp): Update assert.
6076         (arm_hard_regno_mode_ok): Remove comment, update HF-mode
6077         condition.
6078         (arm_invalid_parameter_type): Remove.
6079         (amr_invalid_return_type): Remove.
6080         * config/arm/arm.h (TARGET_NEON_FP16): Fix definition.
6081         * config/arm/arm.md (*arm32_movhf): Disable for TARGET_VFP.
6082         * config/arm/vfp.md (*movhf_vfp): Enable for TARGET_VFP.
6084 2016-05-16  Matthew Wahab  <matthew.wahab@arm.com>
6086         * config/aarch64/aarch64.h (LEGITIMIZE_RELOAD_ADDRESS): Remove.
6087         * config/aarch64/arch64-protos.h
6088         (aarch64_legitimize_reload_address): Remove.
6089         * config/aarch64/aarch64.c (aarch64_legitimize_reload_address):
6090         Remove.
6092 2016-05-16  Eric Botcazou  <ebotcazou@adacore.com>
6094         * configure.ac: Add ACX_NONCANONICAL_HOST.
6095         * configure: Regenerate.
6096         * Makefile.in: Set host_noncanonical.
6098 2016-05-14  Uros Bizjak  <ubizjak@gmail.com>
6100         PR target/71097
6101         * config/i386/i386.md (*movtf_internal): Before register allocation,
6102         do not allow FP constants for CM_MEDIUM memory model, allow only
6103         standard FP constants for CM_LARGE and CM_LARGE_PIC models.
6104         (*movxf_internal): Ditto.
6105         (*movdf_internal): Ditto.
6106         (*movsf_internal): Ditto.
6108 2016-05-13  Segher Boessenkool  <segher@kernel.crashing.org>
6110         PR rtl-optimization/67483
6111         * combine.c (make_compound_operation): Don't call extract_left_shift
6112         with negative shift amounts.
6114 2016-05-13  Jakub Jelinek  <jakub@redhat.com>
6116         PR bootstrap/71071
6117         * fold-const.c (fold_checksum_tree): Allow modification
6118         of TYPE_ALIAS_SET during folding.
6120         * config/i386/i386.c (ix86_compute_frame_layout, ix86_expand_prologue,
6121         ix86_expand_split_stack_prologue): Use HOST_WIDE_INT_C macro.
6122         (ix86_split_to_parts): Likewise.  Fix up formatting.
6124 2016-05-13  H.J. Lu  <hongjiu.lu@intel.com>
6126         * tree-ssa-loop-ivopts.c (create_new_ivs): Cast to
6127         unsigned HOST_WIDE_INT with HOST_WIDE_INT_PRINT_UNSIGNED in
6128         printf format.
6130 2016-05-13  Nathan Sidwell  <nathan@acm.org>
6132         * config/nvptx/nvptx.c (nvptx_mangle_decl_assembler_name): New.
6133         (nvptx_name_replacement): Delete.
6134         (write_fn_proto, write_fn_proto_from_insn,
6135         nvptx_output_call_insn): Remove nvptx_name_replacement call.
6136         (TARGET_MANGLE_DECL_ASSEMBLER_NAME): Override.
6137         * langhooks.c (add_builtin_funcction_common): Call
6138         targetm.mangle_decl_assembler_name.
6140         * config/nvptx/nvptx.c (write_fn_proto): Handle
6141         BUILT_IN_ATOMIC_COMPARE_EXCHANGE_n oddity.
6143 2016-05-13  Martin Liska  <mliska@suse.cz>
6145         * tree-ssa-loop-ivopts.c (create_new_ivs): Use HOST_WIDE_INT_PRINT_DEC
6146         and PRIu64 in printf format.
6148 2016-05-13  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
6150         * tree-ssa-loop-ivanon.c (try_unroll_loop_completely): Typo fix in
6151         comment.
6153 2016-05-13  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
6155         * tree-ssa-loop-ivcanon.c (try_unroll_loop_completely):
6156         Change --param max-completely-peeled-times to
6157         --param max-completely-peel-times in dump file printing.
6159 2016-05-13  Richard Biener  <rguenther@suse.de>
6161         PR tree-optimization/42587
6162         * tree-ssa-math-opts.c (perform_symbolic_merge): Handle BIT_FIELD_REF.
6163         (find_bswap_or_nop_1): Likewise.
6164         (bswap_replace): Likewise.
6166 2016-05-13  Martin Liska  <mliska@suse.cz>
6168         * tree-vect-patterns.c (vect_recog_mask_conversion_pattern):
6169         Initialize a variable with default value.
6171 2016-05-13  Martin Liska  <mliska@suse.cz>
6173         * doc/invoke.texi: Enhance explanation of error recovery
6174         of sanitizers.
6176 2016-05-13  Martin Liska  <mliska@suse.cz>
6178         * tree-ssa-loop-ivopts.c (avg_loop_niter): Fix coding style.
6179         (struct cost_pair): Change inv_expr_id (int) to inv_expr
6180         (iv_inv_expr_ent *).
6181         (struct iv_inv_expr_ent): Comment struct fields.
6182         (sort_iv_inv_expr_ent): New function.
6183         (struct ivopts_data): Rename inv_expr_id to max_inv_expr_id.
6184         (struct iv_ca): Replace used_inv_expr and num_used_inv_expr with
6185         a hash_map between iv_inv_expr_ent and number of usages.
6186         (niter_for_exit): Fix coding style.
6187         (tree_ssa_iv_optimize_init): Use renamed variable.
6188         (determine_base_object): Fix coding style.
6189         (alloc_iv): Likewise.
6190         (find_interesting_uses_outside): Likewise.
6191         (add_candidate_1): Likewise.
6192         (add_standard_iv_candidates): Likewise.
6193         (set_group_iv_cost): Replace inv_expr_id with inv_expr.
6194         (prepare_decl_rtl): Fix coding style.
6195         (get_address_cost): Likewise.
6196         (get_shiftadd_cost): Likewise.
6197         (force_expr_to_var_cost): Likewise.
6198         (compare_aff_trees): Likewise.
6199         (get_expr_id): Restructure the function.
6200         (get_loop_invariant_expr_id): Renamed to
6201         get_loop_invariant_expr.
6202         (get_computation_cost_at): Replace usage of inv_expr_id with
6203         inv_expr.
6204         (get_computation_cost): Likewise.
6205         (determine_group_iv_cost_generic): Likewise.
6206         (determine_group_iv_cost_address): Likewise.
6207         (iv_period): Fix coding style.
6208         (iv_elimination_compare_lt): Likewise.
6209         (may_eliminate_iv): Likewise.
6210         (determine_group_iv_cost_cond):  Replace usage of inv_expr_id with
6211         inv_expr.
6212         (determine_group_iv_costs): Dump invariant expressions.
6213         (iv_ca_recount_cost): Use the newly added hash_map.
6214         (iv_ca_set_remove_invariants): Fix coding style.
6215         (iv_ca_set_add_invariants): Fix coding style.
6216         (iv_ca_set_no_cp): Utilize the newly added hash_map for used
6217         invariants.
6218         (iv_ca_set_cp): Likewise.
6219         (iv_ca_new): Initialize the newly added hash_map and remove
6220         initialization of fields.
6221         (iv_ca_free): Delete the hash_map.
6222         (iv_ca_dump): Dump invariant expressions.
6223         (iv_ca_extend): Fix coding style.
6224         (try_add_cand_for): Likewise.
6225         (create_new_ivs): Dump information about # of avg iterations and
6226         # of used invariant expressions.
6227         (rewrite_use_compare): Fix coding style.
6228         (free_loop_data): Set default value for max_inv_expr_id.
6230 2016-05-13  Ilya Enkovich  <ilya.enkovich@intel.com>
6232         * cse.c (rest_of_handle_cse): Use cleanup_cfg
6233         returned value cse_cfg_altered computation.
6234         (rest_of_handle_cse2): Likewise.
6235         (rest_of_handle_cse_after_global_opts): Likewise.
6237 2016-05-13  Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>
6239         PR target/53440
6240         * config/arm/arm.c (arm32_output_mi_thunk): New.
6241         (arm_output_mi_thunk): Rename to arm_thumb1_mi_thunk. Rework
6242         to split Thumb1 vs TARGET_32BIT functionality.
6243         (arm_thumb1_mi_thunk): New.
6245 2016-05-13  Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>
6247         * config/aarch64/aarch64.c (TARGET_OMIT_STRUCT_RETURN_REG): Set
6248         to true.
6250 2016-05-13  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
6252         PR target/71080
6253         * config/i386/i386.c (ix86_in_large_data_p): Guard against NULL exp.
6255 2016-05-13  Eric Botcazou  <ebotcazou@adacore.com>
6257         * builtins.c (expand_builtin_memcmp): Do not emit the call here.
6258         (expand_builtin_trap): Emit a regular call.
6259         (set_builtin_user_assembler_name): Remove obsolete cases.
6260         * dse.c (scan_insn): Adjust.
6261         * except.c: Include calls.h.
6262         (sjlj_emit_function_enter): If DONT_USE_BUILTIN_SETJMP is defined,
6263         emit a regular call to setjmp.
6264         * expr.c (emit_block_move_hints): Call emit_block_copy_via_libcall.
6265         (block_move_libcall_safe_for_call_parm): Use memcpy builtin.
6266         (emit_block_move_via_libcall): Delete.
6267         (block_move_fn): Delete.
6268         (init_block_move_fn): Likewise.
6269         (emit_block_move_libcall_fn): Likewise.
6270         (emit_block_op_via_libcall): New function.
6271         (set_storage_via_libcall): Tidy up and use memset builtin.
6272         (block_clear_fn): Delete.
6273         (init_block_clear_fn): Likewise.
6274         (clear_storage_libcall_fn): Likewise.
6275         (expand_assignment): Call emit_block_move_via_libcall.
6276         Do not include gt-expr.h.
6277         * expr.h (emit_block_op_via_libcall): Declare.
6278         (emit_block_copy_via_libcall): New inline function.
6279         (emit_block_move_via_libcall): Likewise.
6280         (emit_block_comp_via_libcall): Likewise.
6281         (block_clear_fn): Delete.
6282         (init_block_move_fn): Likewise.
6283         (init_block_clear_fn): Likewise.
6284         (emit_block_move_via_libcall): Likewise.
6285         (set_storage_via_libcall): Add default parameter value.
6286         * libfuncs.h (enum libfunc_index): Remove obsolete values.
6287         (abort_libfunc): Delete.
6288         (memcpy_libfunc): Likewise.
6289         (memmove_libfunc): Likewise.
6290         (memcmp_libfunc): Likewise.
6291         (memset_libfunc): Likewise.
6292         (setbits_libfunc): Likewise.
6293         (setjmp_libfunc): Likewise.
6294         (longjmp_libfunc): Likewise.
6295         (profile_function_entry_libfunc): Likewise.
6296         (profile_function_exit_libfunc): Likewise.
6297         (gcov_flush_libfunc): Likewise.
6298         * optabs-libfuncs.c (build_libfunc_function): Set DECL_ARTIFICIAL
6299         and DECL_VISIBILITY on the declaration.
6300         (init_optabs): Do not initialize obsolete libfuncs.
6301         * optabs.c (prepare_cmp_insn): Call emit_block_comp_via_libcall.
6302         * tree-core.h (ECF_RET1): Define.
6303         (ECF_TM_PURE): Adjust.
6304         (ECF_TM_BUILTIN): Likewise.
6305         * tree.c (set_call_expr_flags): Deal with ECF_RET1.
6306         (build_common_builtin_nodes): Initialize abort builtin.
6307         Add ECF_RET1 on memcpy, memmove and memset builtins.
6308         Pass final flags for alloca and alloca_with_align builtins.
6309         * config/alpha/alpha.c (alpha_init_libfuncs): Do not initialize
6310         obsolete builtins.
6311         * config/ia64/ia64.c (ia64_vms_init_libfuncs): Likewise.
6312         * config/i386/i386.c (ix86_expand_set_or_movmem): Adjust call to
6313         set_storage_via_libcall and call emit_block_copy_via_libcall.
6315 2016-05-12  Uros Bizjak  <ubizjak@gmail.com>
6317         * config/i386/i386.md (*call_got_x32): Change operand 0 to
6318         DImode before it is passed to ix86_output_call_operand.
6319         (*call_value_got_x32): Ditto for operand 1.
6321 2016-05-12  Jiong Wang  <jiong.wang@arm.com>
6323         PR rtl-optimization/70904
6324         * lra-constraint.c (process_addr_reg): Relax the restriction on subreg
6325         reload for wide mode.
6327 2016-05-12  Marek Polacek  <polacek@redhat.com>
6329         PR c/70756
6330         * langhooks-def.h (lhd_incomplete_type_error): Adjust declaration.
6331         * langhooks.c (lhd_incomplete_type_error): Add location parameter.
6332         * langhooks.h (incomplete_type_error): Likewise.
6333         * tree.c (size_in_bytes_loc): Renamed from size_in_bytes.  Add location
6334         parameter, pass it down to incomplete_type_error.
6335         * tree.h (size_in_bytes): New inline overload.
6336         (size_in_bytes_loc): Renamed from size_in_bytes.
6338 2016-05-12  Richard Biener  <rguenther@suse.de>
6340         PR tree-optimization/71059
6341         * tree-ssa-pre.c (phi_translate_1): Fully fold translated
6342         nary before looking up or entering the expression into the VN
6343         hashes.
6344         * tree-ssa-sccvn.c (vn_nary_build_or_lookup): Fix comment typo.
6345         Make sure to re-use NARYs without result as inserted by
6346         phi-translation.
6348 2016-05-12  Richard Biener  <rguenther@suse.de>
6350         PR tree-optimization/71062
6351         * tree-ssa-alias.h (struct pt_solution): Add vars_contains_restrict
6352         field.
6353         * tree-ssa-structalias.c (set_uids_in_ptset): Set
6354         vars_contains_restrict if the var is a restrict tag.
6355         * tree-ssa-alias.c (ptrs_compare_unequal): If vars_contains_restrict
6356         do not disambiguate pointers against it.
6357         (dump_points_to_solution): Re-structure and adjust for new
6358         vars_contains_restrict flag.
6359         * gimple-pretty-print.c (pp_points_to_solution): Likewise.
6361 2016-05-12  Martin Liska  <mliska@suse.cz>
6363         * doc/invoke.texi: Explain connection between
6364         -fsanitize-recover=address and ASAN_OPTIONS="halt_on_error=1".
6366 2016-05-12  Ilya Enkovich  <ilya.enkovich@intel.com>
6368         PR tree-optimization/71006
6369         * tree-vect-loop.c (vect_determine_vectorization_factor): Don't
6370         consider COND_EXPR as a mask producer.
6372 2016-05-12  Marek Polacek  <polacek@redhat.com>
6374         PR driver/71063
6375         * opts.c (common_handle_option): Detect missing argument for --help^.
6377 2016-05-12  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
6379         PR target/70830
6380         * config/arm/arm.c (arm_output_multireg_pop): Avoid POP instruction
6381         when popping the PC and within an interrupt handler routine.
6382         Add missing tab to output of "ldmfd".
6383         (output_return_instruction): Output LDMFD with SP update rather
6384         than POP when returning from interrupt handler.
6386 2016-05-12  Jakub Jelinek  <jakub@redhat.com>
6388         * config/i386/i386.md (isa): Add x64_avx512dq, enable if
6389         TARGET_64BIT && TARGET_AVX512DQ.
6390         * config/i386/sse.md (*vec_extract<mode>): Add avx512bw alternatives.
6391         (*vec_extract<PEXTR_MODE12:mode>_zext): Add avx512bw alternative.
6392         (*vec_extract<ssevecmodelower>_0, *vec_extractv4si_0_zext,
6393         *vec_extractv2di_0_sse): Use v constraint instead of x constraint.
6394         (*vec_extractv4si): Add avx512dq and avx512bw alternatives.
6395         (*vec_extractv4si_zext): Add avx512dq alternative.
6396         (*vec_extractv2di_1): Add x64_avx512dq and avx512bw alternatives,
6397         use v instead of x constraint in other alternatives where possible.
6399         * config/i386/sse.md (sse2_loadld): Use v instead of x
6400         constraint in alternatives 0,1,4.
6402         * config/i386/sse.md (pinsr_evex_isa): New mode attr.
6403         (<sse2p4_1>_pinsr<ssemodesuffix>): Add 2 alternatives with
6404         v constraints instead of x and <pinsr_evex_isa> isa attribute.
6406         PR target/71019
6407         * config/i386/sse.md (<sse2_avx2>_packssdw<mask_name>,
6408         <sse4_1_avx2>_packusdw<mask_name>): Make sure EVEX encoded insn
6409         is not emitted unless TARGET_AVX512BW.
6410         (<sse2_avx2>_packuswb<mask_name>, <sse2_avx2>_packsswb<mask_name>):
6411         Likewise.  For TARGET_AVX512BW, use "=v" constraint instead of "=x"
6412         for the result operand.
6414         * config/i386/sse.md (*vec_setv4sf_sse4_1, sse4_1_insertps): Use v
6415         constraint instead of x in avx alternatives.  Use maybe_evex instead
6416         of vex prefix.
6418         * config/i386/constraints.md (Yv): New constraint.
6419         * config/i386/i386.h (VALID_AVX512VL_128_REG_MODE): Allow
6420         TFmode and V1TImode in xmm16+ registers for TARGET_AVX512VL.
6421         * config/i386/i386.md (avx512fvecmode): New mode attr.
6422         (*pushtf): Use v constraint instead of x.
6423         (*movtf_internal): Likewise.  For TARGET_AVX512VL and
6424         xmm16+ registers, use vmovdqu64 or vmovdqa64 instructions.
6425         (*absneg<mode>2): Use Yv constraint instead of x constraint.
6426         (*absnegtf2_sse): Likewise.
6427         (copysign<mode>3_const, copysign<mode>3_var): Likewise.
6428         * config/i386/sse.md (*andnot<mode>3): Add avx512vl and
6429         avx512f alternatives.
6430         (*andnottf3, *<code><mode>3, *<code>tf3): Likewise.
6432 2016-05-12  Richard Biener  <rguenther@suse.de>
6434         PR tree-optimization/71060
6435         * tree-data-ref.c (initialize_data_dependence_relation): Do not
6436         require exact match of DR_BASE_OBJECT but only matching address and
6437         type.
6439 2016-05-12  Richard Biener  <rguenther@suse.de>
6441         PR tree-optimization/70986
6442         * cfganal.c: Include cfgloop.h.
6443         (dfs_find_deadend): Prefer to take edges exiting loops.
6445 2016-05-11  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
6447         * gcc.target/powerpc/pr70963.c: Require at least power8 at both
6448         compile and run time.
6450 2016-05-11  Mikhail Maltsev  <maltsevm@gmail.com>
6452         PR c/43651
6453         * doc/invoke.texi (Wduplicate-decl-specifier): Document new option.
6455 2016-05-11  Uros Bizjak  <ubizjak@gmail.com>
6457         * config/i386/i386.c (legitimize_pic_address): Use
6458         copy_to_suggested_reg instead of gen_movsi.
6460 2016-05-11  Michael Meissner  <meissner@linux.vnet.ibm.com>
6462         * config/rs6000/predicates.md (quad_memory_operand): Move most of
6463         the code into quad_address_p and call it to share code with
6464         vsx_quad_dform_memory_operand.
6465         (vsx_quad_dform_memory_operand): New predicate for ISA 3.0 vector
6466         d-form support.
6467         * config/rs6000/rs6000.opt (-mlra): Switch to being an option mask
6468         bit instead of being a separate word.  Split -mpower9-dform into
6469         two switches, -mpower9-dform-scalar and -mpower9-dform-vector.
6470         * config/rs6000/rs6000.c (RELOAD_REG_QUAD_OFFSET): New addr_mask
6471         for the register class supporting 128-bit quad word memory offsets.
6472         (mode_supports_vsx_dform_quad): Helper function to return if the
6473         register class uses quad word memory offsets.
6474         (rs6000_debug_addr_mask): Add support for quad word memory offsets.
6475         (rs6000_debug_reg_global): Always print if we are using LRA or not.
6476         (rs6000_setup_reg_addr_masks): If ISA 3.0 vector d-form
6477         instructions are enabled, set up the appropriate addr_masks for
6478         128-bit types.
6479         (rs6000_init_hard_regno_mode_ok): wb constraint is now based on
6480         -mpower9-dform-scalar, instead of -mpower9-dform.
6481         (rs6000_option_override_internal): Split -mpower9-dform into two
6482         switches, -mpower9-dform-scalar and -mpower9-dform-vector.  The
6483         -mpower9-dform switch sets or clears both.  If we are not using
6484         the LRA register allocator, do not enable -mpower9-dform-vector by
6485         default.  If we are using LRA, enable -mpower9-dform-vector and
6486         -mvsx-timode if it is appropriate.  Issue a warning if either
6487         -mpower9-dform-vector or -mvsx-timode are explicitly used without
6488         enabling LRA.
6489         (quad_address_offset_p): New helper function to return if the
6490         offset is legal for quad word memory instructions.
6491         (quad_address_p): New function to determin if GPR or vector
6492         register quad word memory addresses are legal.
6493         (mem_operand_gpr): Validate quad word address offsets.
6494         (reg_offset_addressing_ok_p): Add support for ISA 3.0 vector
6495         d-form (register + offset) instructions.
6496         (offsettable_ok_by_alignment): Likewise.
6497         (rs6000_legitimate_offset_address_p): Likewise.
6498         (legitimate_lo_sum_address_p): Likewise.
6499         (rs6000_legitimize_address): Likewise.
6500         (rs6000_legitimize_reload_address): Add more debug statements for
6501         -mdebug=addr.
6502         (rs6000_legitimate_address_p): Add support for ISA 3.0 vector
6503         d-form instructions.
6504         (rs6000_secondary_reload_memory): Add support for ISA 3.0 vector
6505         d-form instructions.  Distinguish different cases in debug
6506         output. (rs6000_secondary_reload_inner): Add support for ISA 3.0 vector
6507         d-form instructions.
6508         (rs6000_preferred_reload_class): Likewise.
6509         (rs6000_output_move_128bit): Add support for ISA 3.0 d-form
6510         instructions.  If ISA 3.0 is available, generate lxvx/stxvx instead
6511         of the ISA 2.06 indexed memory instructions.
6512         (rs6000_emit_prologue): If we have ISA 3.0 d-form instructions,
6513         use them to save/restore the saved vector registers instead of
6514         using Altivec instructions.
6515         (rs6000_emit_epilogue): Likewise.
6516         (rs6000_lra_p): Use TARGET_LRA instead of the old option word.
6517         (rs6000_opt_masks): Split -mpower9-dform into
6518         -mpower9-dform-scalar and -mpower9-dform-vector.
6519         (rs6000_print_options_internal): Print -mno-<switch> if <switch>
6520         was not selected.
6521         * config/rs6000/vsx.md (p9_vecload_<mode>): Delete hack to emit
6522         ISA 3.0 vector indexed memory instructions, and fold the code into
6523         the normal mov<mode> patterns.
6524         (p9_vecstore_<mode>): Likewise.
6525         (vsx_mov<mode>): Add support for ISA 3.0 vector d-form
6526         instructions.
6527         (vsx_movti_64bit): Likewise.
6528         (vsx_movti_32bit): Likewise.
6529         * config/rs6000/constraints.md (wO constraint): New constraint for
6530         ISA 3.0 vector d-form support.
6531         * config/rs6000/rs6000-cpus.def (ISA_3_0_MASKS_SERVER): Use
6532         -mpower9-dform-scalar instead of -mpower9-dform.  Add note not to
6533         include -mpower9-dform-vector until we switch over to LRA.
6534         (POWERPC_MASKS): Add -mlra. Split -mpower9-dform into two.
6535         switches, -mpower9-dform-scalar and -mpower9-dform-vector.
6536         * config/rs6000/rs6000-protos.h (quad_address_p): Add declaration.
6537         * doc/invoke.texi (RS/6000 and PowerPC Options): Add documentation
6538         for -mpower9-dform and -mlra.
6539         * doc/md.texi (wO constraint): Document wO constraint.
6541 2016-05-11  Alexander Monakov  <amonakov@ispras.ru>
6543         * genattr.c (main): Change 'rtx' to 'rtx_insn *' in prototypes of
6544         'insn_latency', 'maximal_insn_latency', 'min_insn_conflict_delay'.
6545         * genautomata.c (output_internal_insn_code_evaluation): Simplify.
6546         Move handling of non-insn arguments inline into the sole user:
6547         (output_trans_func): ...here.
6548         (output_min_insn_conflict_delay_func): Change 'rtx' to 'rtx_insn *'
6549         in emitted function prototype.
6550         (output_internal_insn_latency_func): Ditto.  Simplify.
6551         (output_internal_maximal_insn_latency_func): Ditto.  Delete
6552         always-unused argument.
6553         (output_insn_latency_func): Ditto.
6554         (output_maximal_insn_latency_func): Ditto.
6556 2016-05-11  Richard Biener  <rguenther@suse.de>
6558         PR tree-optimization/71055
6559         * tree-ssa-sccvn.c (vn_reference_lookup_3): When native-interpreting
6560         sth with precision not equal to access size verify we don't chop
6561         off bits.
6563 2016-05-11  Richard Biener  <rguenther@suse.de>
6565         PR debug/71057
6566         * dwarf2out.c (retry_incomplete_types): Set early_dwarf.
6567         (dwarf2out_finish): Move retry_incomplete_types call ...
6568         (dwarf2out_early_finish): ... here.
6570 2016-05-11  Richard Biener  <rguenther@suse.de>
6572         PR middle-end/71002
6573         * alias.c (reference_alias_ptr_type): Preserve alias-set zero
6574         if the langhook insists on it.
6575         * fold-const.c (make_bit_field_ref): Add arg for the original
6576         reference and preserve its alias-set.
6577         (decode_field_reference): Take exp by reference and adjust it
6578         to the original memory reference.
6579         (optimize_bit_field_compare): Adjust callers.
6580         (fold_truth_andor_1): Likewise.
6581         * gimplify.c (gimplify_expr): Adjust in-SSA form test.
6583 2016-05-11  Ilya Enkovich  <ilya.enkovich@intel.com>
6585         PR middle-end/70807
6586         * cfgrtl.h (delete_insn_and_edges): Now return bool.
6587         * cfgrtl.c (delete_insn_and_edges): Likewise.
6588         * config/i386/i386.c (convert_scalars_to_vector): Remove
6589         redundant code.
6590         * cse.c (cse_insn): Compute cse_cfg_altered.
6591         (delete_trivially_dead_insns): Likewise.
6592         (cse_cc_succs): Likewise.
6593         (rest_of_handle_cse): Free dominance info if required.
6594         (rest_of_handle_cse2): Likewise.
6595         (rest_of_handle_cse_after_global_opts): Likewise.
6597 2016-05-11  Alan Modra  <amodra@gmail.com>
6599         * config/rs6000/rs6000.c (is_complex_IBM_long_double,
6600         abi_v4_pass_in_fpr): New functions.
6601         (rs6000_function_arg_boundary): Exclude complex IBM long double
6602         from 64-bit alignment when ABI_V4.
6603         (rs6000_function_arg, rs6000_function_arg_advance_1,
6604         rs6000_gimplify_va_arg): Use abi_v4_pass_in_fpr.
6606 2016-05-10  Segher Boessenkool  <segher@kernel.crashing.org>
6608         PR rtl-optimization/71028
6609         * cfgcleanup.c (try_optimize_cfg): Do not flip a conditional
6610         jump with just a return in the fallthrough block if the branch
6611         block contains just a return as well.
6613 2016-05-10  Marc Glisse  <marc.glisse@inria.fr>
6615         * fold-const.c (fold_binary_loc) [(X ^ Y) & Y]: Remove and merge with...
6616         * match.pd ((X & Y) ^ Y): ... this.
6617         ((X & Y) & Y, (X | Y) | Y, (X ^ Y) ^ Y, (X & Y) & (X & Z), (X | Y)
6618         | (X | Z), (X ^ Y) ^ (X ^ Z)): New transformations.
6620 2016-05-10  David Malcolm  <dmalcolm@redhat.com>
6622         * read-md.c (require_char_ws): New function.
6623         (read_string): Simplify using require_char_ws.
6624         (handle_constants): Likewise.
6625         (handle_enum): Likewise.
6626         (handle_file): Likewise.
6627         * read-md.h (require_char_ws): New declaration.
6628         * read-rtl.c (read_conditions): Simplify using require_char_ws.
6629         (read_mapping): Likewise.
6630         (read_rtx_code): Likewise.
6631         (read_nested_rtx): Likewise.
6633 2016-05-10  James Norris  <jnorris@codesourcery.com>
6635         * config/rs6000/sysv4.h (CRTOFFLOADBEGIN): Define. Add crtoffloadbegin.o
6636         if offloading is enabled and -fopenacc or -fopenmp is specified.
6637         (CRTOFFLOADEND): Likewise.
6638         (STARTFILE_LINUX_SPEC): Add CRTOFFLOADBEGIN.
6639         (ENDFILE_LINUX_SPEC): Add CRTOFFLOADEND.
6641 2016-05-10  Uros Bizjak  <ubizjak@gmail.com>
6643         * config/i386/i386.c (legitimize_pic_address): Merge 64-bit and 32-bit
6644         gotoff_operand code paths.  Use copy_to_suggested_regs and
6645         expand_simple_binop where appropriate.  Cleanup.
6647 2016-05-10  Ilya Enkovich  <ilya.enkovich@intel.com>
6649         PR target/70799
6650         * config/i386/i386.c (dimode_scalar_to_vector_candidate_p): Allow
6651         integer constants.
6652         (dimode_scalar_chain::vector_const_cost): New.
6653         (dimode_scalar_chain::compute_convert_gain): Handle constants.
6654         (dimode_scalar_chain::convert_op): Likewise.
6655         (dimode_scalar_chain::convert_insn): Likewise.
6657 2016-05-10  Pierre-Marie de Rodat  <derodat@adacore.com>
6659         * dwarf2out.c (resolve_args_picking_1): Consider DW_OP_neg as an
6660         unary operation, not a binary one.
6662 2016-05-10  Ilya Enkovich  <ilya.enkovich@intel.com>
6664         PR middle-end/70877
6665         * tree-chkp.c (chkp_add_bounds_to_call_stmt): Handle
6666         calls with type casted fndecl.
6668 2016-05-10  Ilya Enkovich  <ilya.enkovich@intel.com>
6670         PR tree-optimization/70786
6671         * tree-chkp.c (chkp_find_bounds_1): Support WITH_SIZE_EXPR.
6672         * calls.c (initialize_argument_information): Bind bounds
6673         with corresponding args passed by reference.
6675 2016-05-10  Jakub Jelinek  <jakub@redhat.com>
6677         PR target/70927
6678         * config/i386/sse.md (<sse>_andnot<mode>3<mask_name>),
6679         *<code><mode>3<mask_name>): For !TARGET_AVX512DQ and EVEX encoding,
6680         use vp*[dq] instead of v*p[sd] instructions and adjust mode attribute
6681         accordingly.
6683 2016-05-10  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
6685         PR target/70963
6686         * config/rs6000/vsx.md (vsx_xvcvdpsxds_scale): Generate correct
6687         code for a zero scale factor.
6688         (vsx_xvcvdpuxds_scale): Likewise.
6690 2016-05-10  David Malcolm  <dmalcolm@redhat.com>
6692         * diagnostic-show-locus.c (layout::layout): Call show_ruler
6693         if show_ruler_p was set on the context.
6694         (layout::show_ruler): New method.
6695         * diagnostic.h (struct diagnostic_context): Add field
6696         "show_ruler_p".
6698 2016-05-10  Richard Biener  <rguenther@suse.de>
6700         PR tree-optimization/71039
6701         * tree-ssa-phiprop.c: Include tree-ssa-loop.h.
6702         (chk_uses): New function.
6703         (propagate_with_phi): Verify we can safely replicate the lhs of an
6704         aggregate assignment on all incoming edges.
6706 2016-05-10  Oleg Endo  <olegendo@gcc.gnu.org>
6708         * config/rx/rx-protos.h (is_interrupt_func, is_fast_interrupt_func):
6709         Forward declare.
6710         (rx_atomic_sequence): New class.
6711         * config/rx/rx.c (rx_print_operand): Use symbolic names for PSW bits.
6712         (is_interrupt_func, is_fast_interrupt_func): Make non-static and
6713         non-inline.
6714         (rx_atomic_sequence::rx_atomic_sequence,
6715         rx_atomic_sequence::~rx_atomic_sequence): New functions.
6716         * config/rx/rx.md (CTRLREG_PSW, CTRLREG_USP, CTRLREG_FPSW, CTRLREG_CPEN,
6717         CTRLREG_BPSW, CTRLREG_BPC, CTRLREG_ISP, CTRLREG_FINTV,
6718         CTRLREG_INTB): New constants.
6719         (FETCHOP): New code iterator.
6720         (fethcop_name, fetchop_name2): New iterator code attributes.
6721         (QIHI): New mode iterator.
6722         (atomic_exchange<mode>, atomic_exchangesi, xchg_mem<mode>,
6723         atomic_fetch_<fetchop_name>si, atomic_fetch_nandsi,
6724         atomic_<fetchop_name>_fetchsi, atomic_nand_fetchsi): New patterns.
6726 2016-05-10  Martin Liska  <mliska@suse.cz>
6728         * tree-inline.c (remap_dependence_clique): Do not remap
6729         debugging statements.
6731 2016-05-10  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
6733         * config/s390/s390.md ("*vec_cmp<insn_cmp>df_cconly")
6734         ("*fixuns_truncdfdi2_z13")
6735         ("*fixuns_trunc<FP:mode><GPR:mode>2_z196")
6736         ("*fix_truncdfdi2_bfp_z13", "*floatunsdidf2_z13")
6737         ("*extendsfdf2_z13"): Replace TARGET_Z13 with TARGET_VX.
6739 2016-05-10  Richard Biener  <rguenther@suse.de>
6741         PR tree-optimization/70497
6742         PR tree-optimization/28367
6743         * tree-ssa-sccvn.c (vn_nary_build_or_lookup): New function
6744         split out from ...
6745         (visit_reference_op_load): ... here.
6746         (vn_reference_lookup_3): Use it to handle subreg-like accesses
6747         with simplified BIT_FIELD_REFs.
6748         * tree-ssa-pre.c (eliminate_insert): Handle inserting BIT_FIELD_REFs.
6749         * tree-complex.c (extract_component): Handle BIT_FIELD_REFs
6750         correctly.
6752 2016-05-10  Pierre-Marie de Rodat  <derodat@adacore.com>
6754         * dwarf2out.c (add_abstract_origin_attribute): Adjust
6755         documentation comment.  For BLOCK nodes, add a
6756         DW_AT_abstract_origin attribute that points to the DIE generated
6757         for the origin BLOCK.
6758         (gen_lexical_block_die): Call add_abstract_origin_attribute for
6759         blocks from inlined functions.
6761 2016-05-10  Alan Modra  <amodra@gmail.com>
6763         PR target/70947
6764         * config/rs6000/rs6000.c (rs6000_expand_split_stack_prologue): Stop
6765         regrename modifying insns saving lr before __morestack call.
6766         * config/rs6000/rs6000.md (split_stack_return): Similarly for
6767         insns restoring lr after __morestack call.
6769 2016-05-09  Jakub Jelinek  <jakub@redhat.com>
6771         * config/i386/i386.md (set_got, set_got_labelled, lwp_llwpcb,
6772         lwp_lwpval<mode>3, lwp_lwpins<mode>3): Remove constraints from
6773         expanders.
6774         * config/i386/sse.md (vec_interleave_high<mode>,
6775         vec_interleave_low<mode>, <avx512>_vpermi2var<mode>3_maskz,
6776         <avx512>_vpermt2var<mode>3_maskz): Likewise.
6778 2016-05-04  Aaron Sawdey  <acsawdey@linux.vnet.ibm.com>
6780         * config/rs6000/rs6000.c (rs6000_reassociation_width): Add
6781         function for TARGET_SCHED_REASSOCIATION_WIDTH to enable
6782         parallel reassociation for power8 and forward.
6784 2016-05-09  Uros Bizjak  <ubizjak@gmail.com>
6786         * config/i386/i386.md (absneg splitters with general regs): Use
6787         general_reg_operand predicate.
6788         (btsq peephole2): Use x86_64_immediate_operand to check if new
6789         value is suitable for immediate operand.  Generate emitted insn
6790         using RTL expressions.
6791         (btcq peephole2): Ditto.
6792         (btrq peephole2): Ditto.  Generate correct immediate operand
6793         for AND masking.
6795 2016-05-09  Richard Sandiford  <richard.sandiford@arm.com>
6797         * cfgexpand.c (expand_debug_expr): Fix address offset for negative
6798         bitpos.
6800 2016-05-09  Richard Sandiford  <richard.sandiford@arm.com>
6802         * tree-affine.c (wide_int_constant_multiple_p): Add missing
6803         pointer dereference.
6805 2016-05-09  Richard Biener  <rguenther@suse.de>
6807         PR tree-optimization/70985
6808         * match.pd (BIT_FIELD_REF -> (type)): Disable on GIMPLE when
6809         op0 isn't a gimple register.
6811 2016-05-09  Prachi Godbole  <prachi.godbole@imgtec.com>
6813         * config/mips/i6400.md (i6400_fpu_intadd, i6400_fpu_logic)
6814         (i6400_fpu_div, i6400_fpu_cmp, i6400_fpu_float, i6400_fpu_store)
6815         (i6400_fpu_long_pipe, i6400_fpu_logic_l, i6400_fpu_float_l)
6816         (i6400_fpu_mult): New cpu units.
6817         (i6400_msa_add_d, i6400_msa_int_add, i6400_msa_short_logic3)
6818         (i6400_msa_short_logic2, i6400_msa_short_logic, i6400_msa_move)
6819         (i6400_msa_cmp, i6400_msa_short_float2, i6400_msa_div_d)
6820         (i6400_msa_div_w, i6400_msa_div_h, i6400_msa_div_b)
6821         (i6400_msa_copy, i6400_msa_branch, i6400_fpu_msa_store)
6822         (i6400_fpu_msa_load, i6400_fpu_msa_move, i6400_msa_long_logic1)
6823         (i6400_msa_long_logic2, i6400_msa_mult, i6400_msa_long_float2)
6824         (i6400_msa_long_float4, i6400_msa_long_float5)
6825         (i6400_msa_long_float8, i6400_msa_fdiv_df)
6826         (i6400_msa_fdiv_sf): New reservations.
6827         * config/mips/p5600.md (p5600_fpu_intadd, p5600_fpu_cmp)
6828         (p5600_fpu_float, p5600_fpu_logic_a, p5600_fpu_logic_b)
6829         (p5600_fpu_div, p5600_fpu_logic, p5600_fpu_float_a)
6830         (p5600_fpu_float_b, p5600_fpu_float_c, p5600_fpu_float_d)
6831         (p5600_fpu_mult, p5600_fpu_fdiv, p5600_fpu_load): New cpu units.
6832         (msa_short_int_add, msa_short_logic, msa_short_logic_move_v)
6833         (msa_short_cmp, msa_short_float2, msa_short_logic3)
6834         (msa_short_store4, msa_long_load, msa_short_store)
6835         (msa_long_logic, msa_long_float2, msa_long_float4)
6836         (msa_long_float5, msa_long_float8, msa_long_mult)
6837         (msa_long_fdiv, msa_long_div): New reservations.
6839 2016-05-09  Robert Suchanek  <robert.suchanek@imgtec.com>
6840             Sameera Deshpande  <sameera.deshpande@imgtec.com>
6841             Matthew Fortune  <matthew.fortune@imgtec.com>
6842             Graham Stott  <graham.stott@imgtec.com>
6843             Chao-ying Fu  <chao-ying.fu@imgtec.com>
6845         * config.gcc: Add MSA header file for mips*-*-* target.
6846         * config/mips/constraints.md (YI, YC, YZ, Unv5, Uuv5, Usv5, Uuv6)
6847         (Ubv8i, Urv8):  New constraints.
6848         * config/mips/mips-ftypes.def: Add function types for MSA
6849         builtins.
6850         * config/mips/mips-modes.def (V16QI, V8HI, V4SI, V2DI, V4SF)
6851         (V2DF, V32QI, V16HI, V8SI, V4DI, V8SF, V4DF): New modes.
6852         * config/mips/mips-msa.md: New file.
6853         * config/mips/mips-protos.h
6854         (mips_split_128bit_const_insns): New prototype.
6855         (mips_msa_idiv_insns): Likewise.
6856         (mips_split_128bit_move): Likewise.
6857         (mips_split_128bit_move_p): Likewise.
6858         (mips_split_msa_copy_d): Likewise.
6859         (mips_split_msa_insert_d): Likewise.
6860         (mips_split_msa_fill_d): Likewise.
6861         (mips_expand_msa_branch): Likewise.
6862         (mips_const_vector_same_val_p): Likewise.
6863         (mips_const_vector_same_bytes_p): Likewise.
6864         (mips_const_vector_same_int_p): Likewise.
6865         (mips_const_vector_shuffle_set_p): Likewise.
6866         (mips_const_vector_bitimm_set_p): Likewise.
6867         (mips_const_vector_bitimm_clr_p): Likewise.
6868         (mips_msa_vec_parallel_const_half): Likewise.
6869         (mips_msa_output_division): Likewise.
6870         (mips_ldst_scaled_shift): Likewise.
6871         (mips_expand_vec_cond_expr): Likewise.
6872         * config/mips/mips.c (enum mips_builtin_type): Add
6873         MIPS_BUILTIN_MSA_TEST_BRANCH.
6874         (mips_gen_const_int_vector_shuffle): New prototype.
6875         (mips_const_vector_bitimm_set_p): New function.
6876         (mips_const_vector_bitimm_clr_p): Likewise.
6877         (mips_const_vector_same_val_p): Likewise.
6878         (mips_const_vector_same_bytes_p): Likewise.
6879         (mips_const_vector_same_int_p): Likewise.
6880         (mips_const_vector_shuffle_set_p): Likewise.
6881         (mips_symbol_insns): Forbid loading symbols via immediate for
6882         MSA.
6883         (mips_valid_offset_p): Limit offset to 10-bit for MSA loads and
6884         stores.
6885         (mips_valid_lo_sum_p): Forbid loadings symbols via %lo(base) for
6886         MSA.
6887         (mips_lx_address_p): Add support load indexed address for MSA.
6888         (mips_address_insns): Add calculation of instructions needed for
6889         stores and loads for MSA.
6890         (mips_const_insns): Move CONST_DOUBLE below CONST_VECTOR.  Handle
6891         CONST_VECTOR for MSA and let it fall through.
6892         (mips_ldst_scaled_shift): New function.
6893         (mips_subword_at_byte): Likewise.
6894         (mips_msa_idiv_insns): Likewise.
6895         (mips_legitimize_move): Validate MSA moves.
6896         (mips_rtx_costs): Add UNGE, UNGT, UNLE, UNLT cases.  Add
6897         calculation of costs for MSA division.
6898         (mips_split_move_p): Check if MSA moves need splitting.
6899         (mips_split_move): Split MSA moves if necessary.
6900         (mips_split_128bit_move_p): New function.
6901         (mips_split_128bit_move): Likewise.
6902         (mips_split_msa_copy_d): Likewise.
6903         (mips_split_msa_insert_d): Likewise.
6904         (mips_split_msa_fill_d): Likewise.
6905         (mips_output_move): Handle MSA moves.
6906         (mips_expand_msa_branch): New function.
6907         (mips_print_operand): Add 'E', 'B', 'w', 'v' and 'V' modifiers.
6908         Reinstate 'y' modifier.
6909         (mips_file_start): Add MSA .gnu_attribute.
6910         (mips_hard_regno_mode_ok_p): Allow TImode and 128-bit vectors in
6911         FPRs.
6912         (mips_hard_regno_nregs): Always return 1 for MSA supported mode.
6913         (mips_class_max_nregs): Add register size for MSA supported mode.
6914         (mips_cannot_change_mode_class): Allow conversion between MSA
6915         vector modes and TImode.
6916         (mips_mode_ok_for_mov_fmt_p): Allow MSA to use move.v
6917         instruction.
6918         (mips_secondary_reload_class): Force MSA loads/stores via memory.
6919         (mips_preferred_simd_mode): Add preffered modes for MSA.
6920         (mips_vector_mode_supported_p): Add MSA supported modes.
6921         (mips_autovectorize_vector_sizes): New function.
6922         (mips_msa_output_division): Likewise.
6923         (MSA_BUILTIN, MIPS_BUILTIN_DIRECT_NO_TARGET)
6924         (MSA_NO_TARGET_BUILTIN, MSA_BUILTIN_TEST_BRANCH): New macros.
6925         (CODE_FOR_msa_adds_s_b, CODE_FOR_msa_adds_s_h)
6926         (CODE_FOR_msa_adds_s_w, CODE_FOR_msa_adds_s_d)
6927         (CODE_FOR_msa_adds_u_b, CODE_FOR_msa_adds_u_h)
6928         (CODE_FOR_msa_adds_u_w, CODE_FOR_msa_adds_u_du
6929         (CODE_FOR_msa_addv_b, CODE_FOR_msa_addv_h, CODE_FOR_msa_addv_w)
6930         (CODE_FOR_msa_addv_d, CODE_FOR_msa_and_v, CODE_FOR_msa_bmnz_v)
6931         (CODE_FOR_msa_bmnzi_b, CODE_FOR_msa_bmz_v, CODE_FOR_msa_bmzi_b)
6932         (CODE_FOR_msa_bnz_v, CODE_FOR_msa_bz_v, CODE_FOR_msa_bsel_v)
6933         (CODE_FOR_msa_bseli_b, CODE_FOR_msa_ceqi_h, CODE_FOR_msa_ceqi_w)
6934         (CODE_FOR_msa_ceqi_d, CODE_FOR_msa_clti_s_b)
6935         (CODE_FOR_msa_clti_s_h, CODE_FOR_msa_clti_s_w)
6936         (CODE_FOR_msa_clti_s_d, CODE_FOR_msa_clti_u_b)
6937         (CODE_FOR_msa_clti_u_h, CODE_FOR_msa_clti_u_w)
6938         (CODE_FOR_msa_clti_u_d, CODE_FOR_msa_clei_s_b)
6939         (CODE_FOR_msa_clei_s_h, CODE_FOR_msa_clei_s_w)
6940         (CODE_FOR_msa_clei_s_d, CODE_FOR_msa_clei_u_b)
6941         (CODE_FOR_msa_clei_u_h, CODE_FOR_msa_clei_u_w)
6942         (CODE_FOR_msa_clei_u_d, CODE_FOR_msa_div_s_b)
6943         (CODE_FOR_msa_div_s_h, CODE_FOR_msa_div_s_w)
6944         (CODE_FOR_msa_div_s_d, CODE_FOR_msa_div_u_b)
6945         (CODE_FOR_msa_div_u_h, CODE_FOR_msa_div_u_w)
6946         (CODE_FOR_msa_div_u_d, CODE_FOR_msa_fadd_w, CODE_FOR_msa_fadd_d)
6947         (CODE_FOR_msa_fexdo_w, CODE_FOR_msa_ftrunc_s_w)
6948         (CODE_FOR_msa_ftrunc_s_d, CODE_FOR_msa_ftrunc_u_w)
6949         (CODE_FOR_msa_ftrunc_u_d, CODE_FOR_msa_ffint_s_w)
6950         (CODE_FOR_msa_ffint_s_d, CODE_FOR_msa_ffint_u_w)
6951         (CODE_FOR_msa_ffint_u_d, CODE_FOR_msa_fsub_w)
6952         (CODE_FOR_msa_fsub_d, CODE_FOR_msa_fmsub_d, CODE_FOR_msa_fmadd_w)
6953         (CODE_FOR_msa_fmadd_d, CODE_FOR_msa_fmsub_w, CODE_FOR_msa_fmul_w)
6954         (CODE_FOR_msa_fmul_d, CODE_FOR_msa_fdiv_w, CODE_FOR_msa_fdiv_d)
6955         (CODE_FOR_msa_fmax_w, CODE_FOR_msa_fmax_d, CODE_FOR_msa_fmax_a_w)
6956         (CODE_FOR_msa_fmax_a_d, CODE_FOR_msa_fmin_w, CODE_FOR_msa_fmin_d)
6957         (CODE_FOR_msa_fmin_a_w, CODE_FOR_msa_fmin_a_d)
6958         (CODE_FOR_msa_fsqrt_w, CODE_FOR_msa_fsqrt_d)
6959         (CODE_FOR_msa_max_s_b, CODE_FOR_msa_max_s_h)
6960         (CODE_FOR_msa_max_s_w, CODE_FOR_msa_max_s_d)
6961         (CODE_FOR_msa_max_u_b, CODE_FOR_msa_max_u_h)
6962         (CODE_FOR_msa_max_u_w, CODE_FOR_msa_max_u_d)
6963         (CODE_FOR_msa_min_s_b, CODE_FOR_msa_min_s_h)
6964         (CODE_FOR_msa_min_s_w, CODE_FOR_msa_min_s_d)
6965         (CODE_FOR_msa_min_u_b, CODE_FOR_msa_min_u_h)
6966         (CODE_FOR_msa_min_u_w, CODE_FOR_msa_min_u_d)
6967         (CODE_FOR_msa_mod_s_b, CODE_FOR_msa_mod_s_h)
6968         (CODE_FOR_msa_mod_s_w, CODE_FOR_msa_mod_s_d)
6969         (CODE_FOR_msa_mod_u_b, CODE_FOR_msa_mod_u_h)
6970         (CODE_FOR_msa_mod_u_w, CODE_FOR_msa_mod_u_d)
6971         (CODE_FOR_msa_mod_s_b, CODE_FOR_msa_mod_s_h)
6972         (CODE_FOR_msa_mod_s_w, CODE_FOR_msa_mod_s_d)
6973         (CODE_FOR_msa_mod_u_b, CODE_FOR_msa_mod_u_h)
6974         (CODE_FOR_msa_mod_u_w, CODE_FOR_msa_mod_u_d)
6975         (CODE_FOR_msa_mulv_b, CODE_FOR_msa_mulv_h, CODE_FOR_msa_mulv_w)
6976         (CODE_FOR_msa_mulv_d, CODE_FOR_msa_nlzc_b, CODE_FOR_msa_nlzc_h)
6977         (CODE_FOR_msa_nlzc_w, CODE_FOR_msa_nlzc_d, CODE_FOR_msa_nor_v)
6978         (CODE_FOR_msa_or_v, CODE_FOR_msa_ori_b, CODE_FOR_msa_nori_b)
6979         (CODE_FOR_msa_pcnt_b, CODE_FOR_msa_pcnt_h, CODE_FOR_msa_pcnt_w)
6980         (CODE_FOR_msa_pcnt_d, CODE_FOR_msa_xor_v, CODE_FOR_msa_xori_b)
6981         (CODE_FOR_msa_sll_b, CODE_FOR_msa_sll_h, CODE_FOR_msa_sll_w)
6982         (CODE_FOR_msa_sll_d, CODE_FOR_msa_slli_b, CODE_FOR_msa_slli_h)
6983         (CODE_FOR_msa_slli_w, CODE_FOR_msa_slli_d, CODE_FOR_msa_sra_b)
6984         (CODE_FOR_msa_sra_h, CODE_FOR_msa_sra_w, CODE_FOR_msa_sra_d)
6985         (CODE_FOR_msa_srai_b, CODE_FOR_msa_srai_h, CODE_FOR_msa_srai_w)
6986         (CODE_FOR_msa_srai_d, CODE_FOR_msa_srl_b, CODE_FOR_msa_srl_h)
6987         (CODE_FOR_msa_srl_w, CODE_FOR_msa_srl_d, CODE_FOR_msa_srli_b)
6988         (CODE_FOR_msa_srli_h, CODE_FOR_msa_srli_w, CODE_FOR_msa_srli_d)
6989         (CODE_FOR_msa_subv_b, CODE_FOR_msa_subv_h, CODE_FOR_msa_subv_w)
6990         (CODE_FOR_msa_subv_d, CODE_FOR_msa_subvi_b, CODE_FOR_msa_subvi_h)
6991         (CODE_FOR_msa_subvi_w, CODE_FOR_msa_subvi_d, CODE_FOR_msa_move_v)
6992         (CODE_FOR_msa_vshf_b, CODE_FOR_msa_vshf_h, CODE_FOR_msa_vshf_w)
6993         (CODE_FOR_msa_vshf_d, CODE_FOR_msa_ilvod_d, CODE_FOR_msa_ilvev_d)
6994         (CODE_FOR_msa_pckod_d, CODE_FOR_msa_pckdev_d, CODE_FOR_msa_ldi_b)
6995         (CODE_FOR_msa_ldi_hi, CODE_FOR_msa_ldi_w)
6996         (CODE_FOR_msa_ldi_d): New code_aliasing macros.
6997         (mips_builtins): Add MSA sll_b, sll_h, sll_w, sll_d, slli_b,
6998         slli_h, slli_w, slli_d, sra_b, sra_h, sra_w, sra_d, srai_b,
6999         srai_h, srai_w, srai_d, srar_b, srar_h, srar_w, srar_d, srari_b,
7000         srari_h, srari_w, srari_d, srl_b, srl_h, srl_w, srl_d, srli_b,
7001         srli_h, srli_w, srli_d, srlr_b, srlr_h, srlr_w, srlr_d, srlri_b,
7002         srlri_h, srlri_w, srlri_d, bclr_b, bclr_h, bclr_w, bclr_d,
7003         bclri_b, bclri_h, bclri_w, bclri_d, bset_b, bset_h, bset_w,
7004         bset_d, bseti_b, bseti_h, bseti_w, bseti_d, bneg_b, bneg_h,
7005         bneg_w, bneg_d, bnegi_b, bnegi_h, bnegi_w, bnegi_d, binsl_b,
7006         binsl_h, binsl_w, binsl_d, binsli_b, binsli_h, binsli_w,
7007         binsli_d, binsr_b, binsr_h, binsr_w, binsr_d, binsri_b, binsri_h,
7008         binsri_w, binsri_d, addv_b, addv_h, addv_w, addv_d, addvi_b,
7009         addvi_h, addvi_w, addvi_d, subv_b, subv_h, subv_w, subv_d,
7010         subvi_b, subvi_h, subvi_w, subvi_d, max_s_b, max_s_h, max_s_w,
7011         max_s_d, maxi_s_b, maxi_s_h, maxi_s_w, maxi_s_d, max_u_b,
7012         max_u_h, max_u_w, max_u_d, maxi_u_b, maxi_u_h, maxi_u_w,
7013         maxi_u_d, min_s_b, min_s_h, min_s_w, min_s_d, mini_s_b, mini_s_h,
7014         mini_s_w, mini_s_d, min_u_b, min_u_h, min_u_w, min_u_d, mini_u_b,
7015         mini_u_h, mini_u_w, mini_u_d, max_a_b, max_a_h, max_a_w, max_a_d,
7016         min_a_b, min_a_h, min_a_w, min_a_d, ceq_b, ceq_h, ceq_w, ceq_d,
7017         ceqi_b, ceqi_h, ceqi_w, ceqi_d, clt_s_b, clt_s_h, clt_s_w,
7018         clt_s_d, clti_s_b, clti_s_h, clti_s_w, clti_s_d, clt_u_b,
7019         clt_u_h, clt_u_w, clt_u_d, clti_u_b, clti_u_h, clti_u_w,
7020         clti_u_d, cle_s_b, cle_s_h, cle_s_w, cle_s_d, clei_s_b, clei_s_h,
7021         clei_s_w, clei_s_d, cle_u_b, cle_u_h, cle_u_w, cle_u_d, clei_u_b,
7022         clei_u_h, clei_u_w, clei_u_d, ld_b, ld_h, ld_w, ld_d, st_b, st_h,
7023         st_w, st_d, sat_s_b, sat_s_h, sat_s_w, sat_s_d, sat_u_b, sat_u_h,
7024         sat_u_w, sat_u_d, add_a_b, add_a_h, add_a_w, add_a_d, adds_a_b,
7025         adds_a_h, adds_a_w, adds_a_d, adds_s_b, adds_s_h, adds_s_w,
7026         adds_s_d, adds_u_b, adds_u_h, adds_u_w, adds_u_d, ave_s_b,
7027         ave_s_h, ave_s_w, ave_s_d, ave_u_b, ave_u_h, ave_u_w, ave_u_d,
7028         aver_s_b, aver_s_h, aver_s_w, aver_s_d, aver_u_b, aver_u_h,
7029         aver_u_w, aver_u_d, subs_s_b, subs_s_h, subs_s_w, subs_s_d,
7030         subs_u_b, subs_u_h, subs_u_w, subs_u_d, subsuu_s_b, subsuu_s_h,
7031         subsuu_s_w, subsuu_s_d, subsus_u_b, subsus_u_h, subsus_u_w,
7032         subsus_u_d, asub_s_b, asub_s_h, asub_s_w, asub_s_d, asub_u_b,
7033         asub_u_h, asub_u_w, asub_u_d, mulv_b, mulv_h, mulv_w, mulv_d,
7034         maddv_b, maddv_h, maddv_w, maddv_d, msubv_b, msubv_h, msubv_w,
7035         msubv_d, div_s_b, div_s_h, div_s_w, div_s_d, div_u_b, div_u_h,
7036         div_u_w, div_u_d, hadd_s_h, hadd_s_w, hadd_s_d, hadd_u_h,
7037         hadd_u_w, hadd_u_d, hsub_s_h, hsub_s_w, hsub_s_d, hsub_u_h,
7038         hsub_u_w, hsub_u_d, mod_s_b, mod_s_h, mod_s_w, mod_s_d, mod_u_b,
7039         mod_u_h, mod_u_w, mod_u_d, dotp_s_h, dotp_s_w, dotp_s_d,
7040         dotp_u_h, dotp_u_w, dotp_u_d, dpadd_s_h, dpadd_s_w, dpadd_s_d,
7041         dpadd_u_h, dpadd_u_w, dpadd_u_d, dpsub_s_h, dpsub_s_w, dpsub_s_d,
7042         dpsub_u_h, dpsub_u_w, dpsub_u_d, sld_b, sld_h, sld_w, sld_d,
7043         sldi_b, sldi_h, sldi_w, sldi_d, splat_b, splat_h, splat_w,
7044         splat_d, splati_b, splati_h, splati_w, splati_d, pckev_b,
7045         pckev_h, pckev_w, pckev_d, pckod_b, pckod_h, pckod_w, pckod_d,
7046         ilvl_b, ilvl_h, ilvl_w, ilvl_d, ilvr_b, ilvr_h, ilvr_w, ilvr_d,
7047         ilvev_b, ilvev_h, ilvev_w, ilvev_d, ilvod_b, ilvod_h, ilvod_w,
7048         ilvod_d, vshf_b, vshf_h, vshf_w, vshf_d, and_v, andi_b, or_v,
7049         ori_b, nor_v, nori_b, xor_v, xori_b, bmnz_v, bmnzi_b, bmz_v,
7050         bmzi_b, bsel_v, bseli_b, shf_b, shf_h, shf_w, bnz_v, bz_v,
7051         fill_b, fill_h, fill_w, fill_d, pcnt_b, pcnt_h, pcnt_w,
7052         pcnt_d, nloc_b, nloc_h, nloc_w, nloc_d, nlzc_b, nlzc_h, nlzc_w,
7053         nlzc_d, copy_s_b, copy_s_h, copy_s_w, copy_s_d, copy_u_b,
7054         copy_u_h, copy_u_w, copy_u_d, insert_b, insert_h, insert_w,
7055         insert_d, insve_b, insve_h, insve_w, insve_d, bnz_b, bnz_h,
7056         bnz_w, bnz_d, bz_b, bz_h, bz_w, bz_d, ldi_b, ldi_h, ldi_w, ldi_d,
7057         fcaf_w, fcaf_d, fcor_w, fcor_d, fcun_w, fcun_d, fcune_w, fcune_d,
7058         fcueq_w, fcueq_d, fceq_w, fceq_d, fcne_w, fcne_d, fclt_w, fclt_d,
7059         fcult_w, fcult_d, fcle_w, fcle_d, fcule_w, fcule_d, fsaf_w,
7060         fsaf_d, fsor_w, fsor_d, fsun_w, fsun_d, fsune_w, fsune_d,
7061         fsueq_w, fsueq_d, fseq_w, fseq_d, fsne_w, fsne_d, fslt_w,
7062         fslt_d, fsult_w, fsult_d, fsle_w, fsle_d, fsule_w, fsule_d,
7063         fadd_w, fadd_d, fsub_w, fsub_d, fmul_w, fmul_d, fdiv_w, fdiv_d,
7064         fmadd_w, fmadd_d, fmsub_w, fmsub_d, fexp2_w, fexp2_d, fexdo_h,
7065         fexdo_w, ftq_h, ftq_w, fmin_w, fmin_d, fmin_a_w, fmin_a_d,
7066         fmax_w, fmax_d, fmax_a_w, fmax_a_d, mul_q_h, mul_q_w, mulr_q_h,
7067         mulr_q_w, madd_q_h, madd_q_w, maddr_q_h, maddr_q_w, msub_q_h,
7068         msub_q_w, msubr_q_h, msubr_q_w, fclass_w, fclass_d, fsqrt_w,
7069         fsqrt_d, frcp_w, frcp_d, frint_w, frint_d, frsqrt_w, frsqrt_d,
7070         flog2_w, flog2_d, fexupl_w, fexupl_d, fexupr_w, fexupr_d, ffql_w,
7071         ffql_d, ffqr_w, ffqr_d, ftint_s_w, ftint_s_d, ftint_u_w,
7072         ftint_u_d, ftrunc_s_w, ftrunc_s_d, ftrunc_u_w, ftrunc_u_d,
7073         ffint_s_w, ffint_s_d, ffint_u_w, ffint_u_d, ctcmsa, cfcmsa,
7074         move_v builtins.
7075         (mips_get_builtin_decl_index): New array.
7076         (MIPS_ATYPE_QI, MIPS_ATYPE_HI, MIPS_ATYPE_V2DI, MIPS_ATYPE_V4SI)
7077         (MIPS_ATYPE_V8HI, MIPS_ATYPE_V16QI, MIPS_ATYPE_V2DF)
7078         (MIPS_ATYPE_V4SF, MIPS_ATYPE_UV2DI, MIPS_ATYPE_UV4SI)
7079         (MIPS_ATYPE_UV8HI, MIPS_ATYPE_UV16QI): New.
7080         (mips_init_builtins): Initialize mips_get_builtin_decl_index
7081         array.
7082         (TARGET_VECTORIZE_BUILTIN_VECTORIZED_FUNCTION): Define target
7083         hook.
7084         (mips_expand_builtin_insn): Prepare operands for
7085         CODE_FOR_msa_addvi_b, CODE_FOR_msa_addvi_h, CODE_FOR_msa_addvi_w,
7086         CODE_FOR_msa_addvi_d, CODE_FOR_msa_clti_u_b,
7087         CODE_FOR_msa_clti_u_h, CODE_FOR_msa_clti_u_w,
7088         CODE_FOR_msa_clti_u_d, CODE_FOR_msa_clei_u_b,
7089         CODE_FOR_msa_clei_u_h, CODE_FOR_msa_clei_u_w,
7090         CODE_FOR_msa_clei_u_d, CODE_FOR_msa_maxi_u_b,
7091         CODE_FOR_msa_maxi_u_h, CODE_FOR_msa_maxi_u_w,
7092         CODE_FOR_msa_maxi_u_d, CODE_FOR_msa_mini_u_b,
7093         CODE_FOR_msa_mini_u_h, CODE_FOR_msa_mini_u_w,
7094         CODE_FOR_msa_mini_u_d, CODE_FOR_msa_subvi_b,
7095         CODE_FOR_msa_subvi_h, CODE_FOR_msa_subvi_w, CODE_FOR_msa_subvi_d,
7096         CODE_FOR_msa_ceqi_b, CODE_FOR_msa_ceqi_h, CODE_FOR_msa_ceqi_w,
7097         CODE_FOR_msa_ceqi_d, CODE_FOR_msa_clti_s_b,
7098         CODE_FOR_msa_clti_s_h, CODE_FOR_msa_clti_s_w,
7099         CODE_FOR_msa_clti_s_d, CODE_FOR_msa_clei_s_b,
7100         CODE_FOR_msa_clei_s_h, CODE_FOR_msa_clei_s_w,
7101         CODE_FOR_msa_clei_s_d, CODE_FOR_msa_maxi_s_b,
7102         CODE_FOR_msa_maxi_s_h, CODE_FOR_msa_maxi_s_w,
7103         CODE_FOR_msa_maxi_s_d, CODE_FOR_msa_mini_s_b,
7104         CODE_FOR_msa_mini_s_h, CODE_FOR_msa_mini_s_w,
7105         CODE_FOR_msa_mini_s_d, CODE_FOR_msa_andi_b, CODE_FOR_msa_ori_b,
7106         CODE_FOR_msa_nori_b, CODE_FOR_msa_xori_b, CODE_FOR_msa_bmzi_b,
7107         CODE_FOR_msa_bmnzi_b, CODE_FOR_msa_bseli_b, CODE_FOR_msa_fill_b,
7108         CODE_FOR_msa_fill_h, CODE_FOR_msa_fill_w, CODE_FOR_msa_fill_d,
7109         CODE_FOR_msa_ilvl_b, CODE_FOR_msa_ilvl_h, CODE_FOR_msa_ilvl_w,
7110         CODE_FOR_msa_ilvl_d, CODE_FOR_msa_ilvr_b, CODE_FOR_msa_ilvr_h,
7111         CODE_FOR_msa_ilvr_w, CODE_FOR_msa_ilvr_d, CODE_FOR_msa_ilvev_b,
7112         CODE_FOR_msa_ilvev_h, CODE_FOR_msa_ilvev_w, CODE_FOR_msa_ilvod_b,
7113         CODE_FOR_msa_ilvod_h, CODE_FOR_msa_ilvod_w, CODE_FOR_msa_pckev_b,
7114         CODE_FOR_msa_pckev_h, CODE_FOR_msa_pckev_w, CODE_FOR_msa_pckod_b,
7115         CODE_FOR_msa_pckod_h, CODE_FOR_msa_pckod_w, CODE_FOR_msa_slli_b,
7116         CODE_FOR_msa_slli_h, CODE_FOR_msa_slli_w, CODE_FOR_msa_slli_d,
7117         CODE_FOR_msa_srai_b, CODE_FOR_msa_srai_h, CODE_FOR_msa_srai_w,
7118         CODE_FOR_msa_srai_d, CODE_FOR_msa_srli_b, CODE_FOR_msa_srli_h,
7119         CODE_FOR_msa_srli_w, CODE_FOR_msa_srli_d, CODE_FOR_msa_insert_b,
7120         CODE_FOR_msa_insert_h, CODE_FOR_msa_insert_w,
7121         CODE_FOR_msa_insert_d, CODE_FOR_msa_insve_b,
7122         CODE_FOR_msa_insve_h, CODE_FOR_msa_insve_w, CODE_FOR_msa_insve_d,
7123         CODE_FOR_msa_shf_b, CODE_FOR_msa_shf_h, CODE_FOR_msa_shf_w,
7124         CODE_FOR_msa_shf_w_f, CODE_FOR_msa_vshf_b, CODE_FOR_msa_vshf_h,
7125         CODE_FOR_msa_vshf_w, CODE_FOR_msa_vshf_d.
7126         (mips_expand_builtin): Add case for MIPS_BULTIN_MSA_TEST_BRANCH.
7127         (mips_set_compression_mode): Disallow MSA with MIPS16 code.
7128         (mips_option_override): -mmsa requires -mfp64 and -mhard-float.
7129         These are set implicitly and an error is reported if overridden.
7130         (mips_expand_builtin_msa_test_branch): New function.
7131         (mips_expand_msa_shuffle): Likewise.
7132         (MAX_VECT_LEN): Increase maximum length of a vector to 16 bytes.
7133         (TARGET_SCHED_REASSOCIATION_WIDTH): Define target hook.
7134         (TARGET_VECTORIZE_AUTOVECTORIZE_VECTOR_SIZES): Likewise.
7135         (mips_expand_vec_unpack): Add support for MSA.
7136         (mips_expand_vector_init): Likewise.
7137         (mips_expand_vi_constant): Use CONST0_RTX (element_mode)
7138         instead of const0_rtx.
7139         (mips_msa_vec_parallel_const_half): New function.
7140         (mips_gen_const_int_vector): Likewise.
7141         (mips_gen_const_int_vector_shuffle): Likewise.
7142         (mips_expand_msa_cmp): Likewise.
7143         (mips_expand_vec_cond_expr): Likewise.
7144         * config/mips/mips.h
7145         (TARGET_CPU_CPP_BUILTINS): Add __mips_msa and __mips_msa_width.
7146         (OPTION_DEFAULT_SPECS): Ignore --with-fp-32 if -mmsa is
7147         specified.
7148         (ASM_SPEC): Pass mmsa and mno-msa to the assembler.
7149         (ISA_HAS_MSA): New macro.
7150         (UNITS_PER_MSA_REG): Likewise.
7151         (BITS_PER_MSA_REG): Likewise.
7152         (BIGGEST_ALIGNMENT): Redefine using ISA_HAS_MSA.
7153         (MSA_REG_FIRST): New macro.
7154         (MSA_REG_LAST): Likewise.
7155         (MSA_REG_NUM): Likewise.
7156         (MSA_REG_P): Likewise.
7157         (MSA_REG_RTX_P): Likewise.
7158         (MSA_SUPPORTED_MODE_P): Likewise.
7159         (HARD_REGNO_CALL_PART_CLOBBERED): Redefine using TARGET_MSA.
7160         (ADDITIONAL_REGISTER_NAMES): Add named registers $w0-$w31.
7161         * config/mips/mips.md: Include mips-msa.md.
7162         (alu_type): Add simd_add.
7163         (mode): Add V2DI, V4SI, V8HI, V16QI, V2DF, V4SF.
7164         (type): Add simd_div, simd_fclass, simd_flog2, simd_fadd,
7165         simd_fcvt, simd_fmul, simd_fmadd, simd_fdiv, simd_bitins,
7166         simd_bitmov, simd_insert, simd_sld, simd_mul, simd_fcmp,
7167         simd_fexp2, simd_int_arith, simd_bit, simd_shift, simd_splat,
7168         simd_fill, simd_permute, simd_shf, simd_sat, simd_pcnt,
7169         simd_copy, simd_branch, simd_cmsa, simd_fminmax, simd_logic,
7170         simd_move, simd_load, simd_store.  Choose "multi" for moves
7171         for "qword_mode".
7172         (qword_mode): New attribute.
7173         (insn_count): Add instruction count for quad moves.
7174         Increase the count for MIPS SIMD division.
7175         (UNITMODE): Add UNITMODEs for vector types.
7176         (addsub): New code iterator.
7177         * config/mips/mips.opt (mmsa): New option.
7178         * config/mips/msa.h: New file.
7179         * config/mips/mti-elf.h: Don't infer -mfpxx if -mmsa is
7180         specified.
7181         * config/mips/mti-linux.h: Likewise.
7182         * config/mips/predicates.md
7183         (const_msa_branch_operand): New constraint.
7184         (const_uimm3_operand): Likewise.
7185         (const_uimm4_operand): Likewise.
7186         (const_uimm5_operand): Likewise.
7187         (const_uimm8_operand): Likewise.
7188         (const_imm5_operand): Likewise.
7189         (aq10b_operand): Likewise.
7190         (aq10h_operand): Likewise.
7191         (aq10w_operand): Likewise.
7192         (aq10d_operand): Likewise.
7193         (const_m1_operand): Likewise.
7194         (reg_or_m1_operand): Likewise.
7195         (const_exp_2_operand): Likewise.
7196         (const_exp_4_operand): Likewise.
7197         (const_exp_8_operand): Likewise.
7198         (const_exp_16_operand): Likewise.
7199         (const_vector_same_val_operand): Likewise.
7200         (const_vector_same_simm5_operand): Likewise.
7201         (const_vector_same_uimm5_operand): Likewise.
7202         (const_vector_same_uimm6_operand): Likewise.
7203         (const_vector_same_uimm8_operand): Likewise.
7204         (par_const_vector_shf_set_operand): Likewise.
7205         (reg_or_vector_same_val_operand): Likewise.
7206         (reg_or_vector_same_simm5_operand): Likewise.
7207         (reg_or_vector_same_uimm6_operand): Likewise.
7208         * doc/extend.texi (MIPS SIMD Architecture Functions): New
7209         section.
7210         * doc/invoke.texi (-mmsa): Document new option.
7212 2016-05-09  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
7214         * configure.ac (enable_vtable_verify): Handle --enable-vtable-verify.
7215         * configure: Regenerate.
7216         * config.in: Regenerate.
7217         * gcc.c (VTABLE_VERIFICATION_SPEC) [!ENABLE_VTABLE_VERIFY]: Error
7218         on -fvtable-verify.
7219         * config/sol2.h [!ENABLE_VTABLE_VERIFY] (STARTFILE_VTV_SPEC): Define.
7220         (ENDFILE_VTV_SPEC): Define.
7222 2016-05-09  Kaushik Phatak  <kaushik.phatak@kpit.com>
7224         * config/rl78/rl78.c (rl78_expand_prologue): Save the MDUC related
7225         registers in all interrupt handlers if necessary.
7226         (rl78_option_override): Add warning.
7227         (MUST_SAVE_MDUC_REGISTERS): New macro.
7228         (rl78_expand_epilogue): Restore the MDUC registers if necessary.
7229         * config/rl78/rl78.c (check_mduc_usage): New function.
7230         (mduc_regs): New structure to hold MDUC register data.
7231         * config/rl78/rl78.md (is_g13_muldiv_insn): New attribute.
7232         (mulsi3_g13): Add is_g13_muldiv_insn attribute.
7233         (udivmodsi4_g13): Add is_g13_muldiv_insn attribute.
7234         (mulhi3_g13): Add is_g13_muldiv_insn attribute.
7235         * config/rl78/rl78.opt (msave-mduc-in-interrupts): New option.
7236         * doc/invoke.texi (RL78 Options): Add -msave-mduc-in-interrupts.
7238 2016-05-09  Bin Cheng  <bin.cheng@arm.com>
7240         * tree-if-conv.c (tree-ssa-loop.h): Include header file.
7241         (tree-ssa-loop-niter.h): Ditto.
7242         (idx_within_array_bound, ref_within_array_bound): New functions.
7243         (ifcvt_memrefs_wont_trap): Check if array ref is within bound.
7244         Factor out check on writable base object to ...
7245         (base_object_writable): ... here.
7247 2016-05-09  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
7249         * config/arm/arm.md (probe_stack): Add modes to set source
7250         and destination.
7252 2016-05-09  Bernd Schmidt  <bschmidt@redhat.com>
7254         * regrename.c (base_reg_class_for_rename): New static function.
7255         (scan_rtx_address, scan_rtx): Use it instead of base_reg_class.
7257 2016-05-08  Jan Hubicka  <hubicka@ucw.cz>
7259         * cgraph.c (thunk_adjust): Export.
7260         * cgraphclones.c (cgraph_node::create_clone): Clone thunk info.
7261         * cgraphunit.c (thunk_adjust): Export.
7262         (cgraph_node::assemble_thunks_and_aliases): Do not assemble inlined
7263         thunks.
7264         * ipa-inline-analyssi.c (compute_inline_parameters): Thunks are
7265         inlinable.
7266         * tree-inline.c (expand_call_inline): Expand thunks inline.
7268 2016-05-08  Uros Bizjak  <ubizjak@gmail.com>
7270         PR target/70998
7271         * config/i386/sse.md (*sse2_vd_cvtsd2ss): New insn pattern.
7272         (*sse2_vd_cvtss2sd): Ditto.
7273         * config/i386/i386.md
7274         (TARGET_SSE_PARTIAL_REG_DEPENDENCY float_truncate df->sf splitter):
7275         Generate *sse2_vd_cvtsd2ss pattern.
7276         (TARGET_SSE_PARTIAL_REG_DEPENDENCY float_extend sf->df splitter):
7277         Generate *sse2_vd_cvtss2sd pattern.
7279 2016-05-08  Oleg Endo  <olegendo@gcc.gnu.org>
7281         * config/sh/sh.h (GET_SH_ARG_CLASS): Convert macro into ...
7282         * config/sh/sh.c (get_sh_arg_class): ... this new function.  Update its
7283         users.
7285 2016-05-08  Oleg Endo  <olegendo@gcc.gnu.org>
7287         * config/sh/sh-protos.h (sh_media_register_for_return): Remove.
7288         * config/sh/sh.c: Define and declare variables on first use throughout
7289         the file.
7290         (current_function_interrupt): Change to bool type.
7291         (frame_insn): Rename to emit_frame_insn and update users.
7292         (push_regs): Use bool for 'interrupt_handler' argument.
7293         (save_schedule_s): Remove.
7294         (TARGET_ASM_UNALIGNED_DI_OP, TARGET_ASM_ALIGNED_DI_OP): Remove.
7295         (sh_option_override): Don't nullify targetm.asm_out.aligned_op.di and
7296         targetm.asm_out.unaligned_op.di.
7297         (gen_far_branch): Remove redundant forward declaration.
7298         (sh_media_register_for_return, MAX_SAVED_REGS, save_entry_s, save_entry,
7299         MAX_TEMPS, save_schedule_ssave_schedule): Remove.
7300         (sh_set_return_address, sh_function_ok_for_sibcall,
7301         scavenge_reg): Update comments.
7302         (sh_builtin_saveregs): Use TRAGET_FPU_ANY condition.
7303         (sh2a_get_function_vector_number, sh2a_function_vector_p): Use for loop.
7304         (sh_attr_renesas_p): Remove unnecessary parentheses.
7305         (branch_dest): Simplify.
7306         * config/sh/sh.h (sh_args): Remove byref, byref_regs, stack_regs fields.
7307         Change force_mem, prototype_p, outgoing, renesas_abi fields to bool.
7308         (CUMULATIVE_ARGS): Change macro to typedef.
7309         (current_function_interrupt): Change to bool type.
7310         (sh_arg_class, sh_args, CUMULATIVE_ARGS, current_function_interrupt):
7311         Surround with __cplusplus ifdef.
7312         (sh_compare_op0, sh_compare_op1): Remove.
7313         (EPILOGUE_USES): Use TARGET_FPU_ANY condition.
7315 2016-05-07  Jim Wilson  <jim.wilson@linaro.org>
7317         * config/arm/arm.md: (arch): Add neon.
7318         (arch_enabled): Return yes for arch neon when TARGET_NEON.
7319         * config/arm/vfp.md (movdf_vfp): Add w/G as alternative 3.  Add
7320         neon_move as type for alt 3.  Add arch attr enabling alt 3 for neon.
7321         Emit vmov.i64 for alt 3.  Renumber alternatives 3 to 8.  Adjust
7322         attributes for alt renumbering.  Mark alt 3 as non-predicable.
7323         (thumb2_movdf_vfp): Likewise.
7325 2016-05-07  Uros Bizjak  <ubizjak@gmail.com>
7327         * config/i386/i386.md (*addqi_1): Add preferred_for_speed attribute
7328         to disparage alternatives 3 and 4 for TARGET_PARTIAL_REG_STALL targets.
7329         (*andqi_1): Add preferred_for_speed attribute to disparage
7330         alternative 2 for TARGET_PARTIAL_REG_STALL targets.
7331         (*<code>qi_1): Ditto.
7332         (*one_cmplqi2_1): Add preferred_for_speed attribute to disparage
7333         alternative 1 for TARGET_PARTIAL_REG_STALL targets.
7334         (*ashlqi3_1): Ditto.
7335         (*swap<mode>): Merge from *swap<mode>_1 and *swap<mode>_2 patterns.
7336         Add preferred_for_size attribute to disparage alternative 0 and
7337         preferred_for_speed attribute to disparage alternative 1 for
7338         TARGET_PARTIAL_REG_STALL targets.
7340 2016-05-07  Tom de Vries  <tom@codesourcery.com>
7342         PR tree-optimization/70956
7343         * graphite-scop-detection.c (build_cross_bb_scalars_def): Handle NULL
7344         def.
7346 2016-05-07  Oleg Endo  <olegendo@gcc.gnu.org>
7348         * config/sh/sh-protos.h (sh_cbranch_distance): Declare new function.
7349         * config/sh/sh.c (sh_cbranch_distance): Implement it.
7350         * config/sh/sh.md (branch_zero): Remove define_attr.
7351         (define_delay): Disable delay slot if branch distance is one insn.
7353 2016-05-06  Uros Bizjak  <ubizjak@gmail.com>
7355         * config/i386/i386.md (LEAMODE): New mode attribute.
7356         (plus to LEA splitter): Rewrite splitter using LEAMODE mode attribute.
7357         (ashift to LEA splitter): Rewrte splitter using SWI mode iterator
7358         and LEAMODE mode attribute.  Use VOIDmode const_0_to_3_operand as
7359         operand 2 predicate.
7360         (*lea<mode>_general_2): Use VOIDmode for const248_operand.
7361         (*lea<mode>_general_3): Ditto.
7362         (*lea<mode>_general_4): Use VOIDmode for const_0_to_3_operand.
7364 2016-05-06  Jakub Jelinek  <jakub@redhat.com>
7366         * genmddump.c (main): Convert argv from char ** to const char **.
7368 2016-05-06  David Malcolm  <dmalcolm@redhat.com>
7370         * coretypes.h (OVERRIDE): New macro.
7371         (FINAL): New macro.
7373 2016-05-06  Eric Botcazou  <ebotcazou@adacore.com>
7375         * tree-ssa-coalesce.c (gimple_can_coalesce_p): In the optimized case,
7376         allow coalescing if the types are compatible.
7378 2016-05-06  David Malcolm  <dmalcolm@redhat.com>
7380         * pass_manager.h (pass_manager::register_pass_name): New method.
7381         (pass_manager::get_pass_by_name): New method.
7382         (pass_manager::create_pass_tab): New method.
7383         (pass_manager::m_name_to_pass_map): New field.
7384         * passes.c (name_to_pass_map): Delete global in favor of field
7385         "m_name_to_pass_map" of pass_manager.
7386         (register_pass_name): Rename from a function to...
7387         (pass_manager::register_pass_name): ...this method, updating
7388         for renaming of global "name_to_pass_map" to field
7389         "m_name_to_pass_map".
7390         (create_pass_tab): Rename from a function to...
7391         (pass_manager::create_pass_tab): ...this method, updating
7392         for renaming of global "name_to_pass_map" to field.
7393         (get_pass_by_name): Rename from a function to...
7394         (pass_manager::get_pass_by_name): ...this method.
7395         (enable_disable_pass): Convert use of get_pass_by_name to
7396         a method call, locating the pass_manager singleton.
7398 2016-05-06  David Malcolm  <dmalcolm@redhat.com>
7400         * genattr-common.c (main): Convert argv from char ** to const char **.
7401         * genattr.c (main): Likewise.
7402         * genattrtab.c (main): Likewise.
7403         * genautomata.c (initiate_automaton_gen): Likewise.
7404         (main): Likewise.
7405         * gencodes.c (main): Likewise.
7406         * genconditions.c (main): Likewise.
7407         * genconfig.c (main): Likewise.
7408         * genconstants.c (main): Likewise.
7409         * genemit.c (main): Likewise.
7410         * genenums.c (main): Likewise.
7411         * genextract.c (main): Likewise.
7412         * genflags.c (main): Likewise.
7413         * genmddeps.c (main): Likewise.
7414         * genopinit.c (main): Likewise.
7415         * genoutput.c (main): Likewise.
7416         * genpeep.c (main): Likewise.
7417         * genpreds.c (main): Likewise.
7418         * genrecog.c (main): Likewise.
7419         * gensupport.c (init_rtx_reader_args_cb): Likewise.
7420         (init_rtx_reader_args): Likewise.
7421         * gensupport.h (init_rtx_reader_args_cb): Likewise.
7422         (init_rtx_reader_args): Likewise.
7423         * gentarget-def.c (main): Likewise.
7424         * read-md.c (read_md_files): Likewise.
7425         * read-md.h (read_md_files): Likewise.
7427 2016-05-06  Uros Bizjak  <ubizjak@gmail.com>
7429         * config/i386/i386.md (int cmove peephole2s): Use general_reg_operand
7430         instead of register_and_not_any_fp_reg_operand as operand 0 predicate.
7431         * config/i386/predicates.md (register_and_not_any_fp_reg_operand):
7432         Remove unused predicate.
7433         (register_and_not_fp_reg_operand): Ditto.
7435 2016-05-06  Martin Liska  <mliska@suse.cz>
7437         * tree-if-conv.c (ifcvt_split_critical_edges): Use auto_vec
7438         instead of vec as the vector is local to the function.
7440 2016-05-06  Jakub Jelinek  <jakub@redhat.com>
7442         * config/i386/sse.md (*<code>v8hi3, *<code>v16qi3): Add
7443         avx512bw alternative.
7445         * config/i386/sse.md (<mask_codefor>ashr<mode>3<mask_name>): Move
7446         before the ashr<mode>3 pattern.
7448         * config/i386/sse.md (*avx2_pmaddwd, *sse2_pmaddwd): Use
7449         v instead of x in vex or maybe_vex alternatives, use
7450         maybe_evex instead of vex in prefix.
7452         * config/i386/sse.md (*vec_extractv4sf_0, *sse4_1_extractps,
7453         *vec_extractv4sf_mem, vec_extract_lo_v16hi, vec_extract_hi_v16hi,
7454         vec_extract_lo_v32qi, vec_extract_hi_v32qi): Use v instead of x
7455         in vex or maybe_vex alternatives, use maybe_evex instead of vex
7456         in prefix.
7458         * config/i386/sse.md (*vec_concatv2sf_sse4_1, *vec_concatv4sf): Use
7459         v instead of x in vex or maybe_vex alternatives, use
7460         maybe_evex instead of vex in prefix.
7462         * config/i386/sse.md (sse_shufps_<mode>, sse_storehps, sse_loadhps,
7463         sse_storelps, sse_movss, avx2_vec_dup<mode>, avx2_vec_dupv8sf_1,
7464         sse2_shufpd_<mode>, sse2_storehpd, sse2_storelpd, sse2_loadhpd,
7465         sse2_loadlpd, sse2_movsd): Use v instead of x in vex or maybe_vex
7466         alternatives, use maybe_evex instead of vex in prefix.
7468         * config/i386/sse.md (vec_interleave_lowv4sf,
7469         *vec_interleave_highv2df, *vec_interleave_lowv2df): Use
7470         v instead of x in vex or maybe_vex alternatives, use
7471         maybe_evex instead of vex in prefix.
7473         * config/i386/sse.md (sse_movhlps, sse_movlhps): Use
7474         v instead of x in vex or maybe_vex alternatives, use
7475         maybe_evex instead of vex in prefix.
7477         * config/i386/sse.md (*avx_cvtpd2dq256_2, *avx_cvtps2pd256_2): Use
7478         v constraint instead of x.
7480 2016-05-06  Nathan Sidwell  <nathan@codesourcery.com>
7482         * gimple.c (gimple_call_same_target_p): Unique functions are eq.
7483         * tree-ssa-tail-merge.c (same_succ::equal): Check pointer eq
7484         equality first.
7486 2016-05-06  Richard Biener  <rguenther@suse.de>
7488         PR tree-optimization/70948
7489         * tree-ssa-structalias.c (find_func_aliases_for_builtin_call):
7490         Properly clobber all fields of va_list for __builtin_va_start.
7492 2016-05-06  Yuri Rumyantsev  <ysrumyan@gmail.com>
7494         PR debug/70935
7495         * tree-ssa-loop-unswitch.c (find_loop_guard): Reject guard edge with
7496         loop latch destination.
7498 2016-05-06  Martin Liska  <mliska@suse.cz>
7500         * tree-ssa-uninit.c: Apply manual changes
7501         to the GNU coding style.
7502         (prune_uninit_phi_opnds): Rename from
7503         prune_uninit_phi_opnds_in_unrealizable_paths.
7505 2016-05-06  Oleg Endo  <olegendo@gcc.gnu.org>
7507         * config/sh/sh.opt (madjust-unroll, minvalid-symbols, msoft-atomic,
7508         mspace): Remove deprecated options.
7509         * doc/invoke.texi (SH options): Remove -mspace.
7511 2016-05-06  Oleg Endo  <olegendo@gcc.gnu.org>
7513         * config/sh/sh.md (ic_invalidate_line_sh4a): Fix insn length.
7515 2016-05-06  Oleg Endo  <olegendo@gcc.gnu.org>
7517         * config/sh/sh.md (*cmpeqsi_t): Remove combine insn pattern and similar
7518         corresponding combine split pattern.
7520 2016-05-06  Oleg Endo  <olegendo@gcc.gnu.org>
7522         PR target/58219
7523         * config/sh/predicates.md (long_displacement_mem_operand): New.
7524         * config/sh/sh.md (movsi_i): Allow for SH2A, disallow for any FPU.
7525         Add movi20, movi20s alternatives.  Adjust length attribute for
7526         alternatives.
7527         (movsi_ie): Allow for any FPU.  Adjust length attribute for
7528         alternatives.
7529         (movsi_i_lowpart): Add movi20, movi20s alternatives.  Adjust length
7530         attribute for alternatives.
7531         (*mov<mode>): Use long_displacement_mem_operand for length attribute.
7532         (*movdi_i, movdf_k, movdf_i4, movsf_i, movsf_ie, movsf_ie_ra): Adjust
7533         length attribute for alternatives.
7535 2016-05-06  Richard Biener  <rguenther@suse.de>
7537         PR tree-optimization/70960
7538         * tree-if-conv.c (ifcvt_walk_pattern_tree): Handle non-SSA ops.
7540 2016-05-06  Oleg Endo  <olegendo@gcc.gnu.org>
7542         PR target/52933
7543         * config/sh/sh.md (*cmp_div0s_7, *cmp_div0s_8): Add div0s variants.
7544         * config/sh/sh.c (sh_rtx_costs): Add another div0s case.
7546 2016-05-06  Marek Polacek  <polacek@redhat.com>
7548         PR sanitizer/70875
7549         * ubsan.c (get_ubsan_type_info_for_type): Remove assert.
7551 2016-05-06  Oleg Endo  <olegendo@gcc.gnu.org>
7553         PR target/54089
7554         * config/sh/sh.md (*rotcr): Add another variant.
7556 2016-05-06  Richard Biener  <rguenther@suse.de>
7558         PR middle-end/70931
7559         * dwarf2out.c (native_encode_initializer): Skip zero-sized fields.
7561 2016-05-06  Richard Biener  <rguenther@suse.de>
7563         PR middle-end/70941
7564         * fold-const.c (split_tree): Always convert to the original type
7565         before negating.
7567 2016-05-06  Richard Biener  <rguenther@suse.de>
7569         * fwprop.c (fwprop): Remove duplicate cleanup_cfg call.
7570         (fwprop_addr): Likewise.
7572 2016-05-06  Uros Bizjak  <ubizjak@gmail.com>
7574         PR target/70873
7575         * config/i386/i386-protos.h (ix86_standard_x87sse_constant_load_p):
7576         New prototype.
7577         * config/i386/i386.c (ix86_standard_x87sse_constant_load_p): New.
7578         * config/i386/i386.md (push mem splitter): Use find_constant_src in
7579         the splitter condition.
7580         (FP load splitter): Use ix86_standard_x87sse_constant_load_p in
7581         the splitter condition.
7582         (FP float_extend load splitter): Ditto.
7584 2016-05-05  Uros Bizjak  <ubizjak@gmail.com>
7586         * config/i386/i386.md (peehole2 patterns): Change true_regnum
7587         to REGNO in all peephole2 patterns.
7588         (post-reload splitters): Change true_regnum to REGNO in
7589         post-reload splitters.
7590         (zero_extend splitters): Use general_reg_operand and
7591         nonimmediate_gr_operand predicates.
7593 2016-05-05  Jakub Jelinek  <jakub@redhat.com>
7595         * config/i386/sse.md (<avx512>_fmadd_<mode>_mask3<round_name>): Use
7596         v constraint instead of x.
7598 2016-05-05  Alan Modra  <amodra@gmail.com>
7600         PR target/68662
7601         * config/rs6000/sysv4.h (SUBTARGET_OVERRIDE_OPTIONS): Don't
7602         set OPTION_MASK_RELOCATABLE when flag_pic == 2.  Set
7603         TARGET_NO_FP_IN_TOC for -mrelocatable.
7604         (MINIMAL_TOC_SECTION_ASM_OP): Remove redundant
7605         TARGET_RELOCATABLE test.
7606         (ASM_OUTPUT_SPECIAL_POOL_ENTRY_P): Likewise.
7607         (ASM_PREFERRED_EH_DATA_FORMAT): Likewise.
7608         * config/rs6000/linux64.h (MINIMAL_TOC_SECTION_ASM_OP): Likewise.
7609         (ASM_OUTPUT_SPECIAL_POOL_ENTRY_P): Likewise.
7610         (ASM_PREFERRED_EH_DATA_FORMAT): Likewise.
7611         * config/rs6000/freebsd64.h (MINIMAL_TOC_SECTION_ASM_OP): Likewise.
7612         (ASM_OUTPUT_SPECIAL_POOL_ENTRY_P): Likewise.
7613         (ASM_PREFERRED_EH_DATA_FORMAT): Likewise.
7614         * config/rs6000/predicates.md (easy_fp_constant): Likewise.
7615         * config/rs6000/rs6000.c (rs6000_elf_output_toc_section_asm_op):
7616         Likewise.
7617         (rs6000_assemble_integer): Update TARGET_RELOCATABLE test.
7618         (rs6000_stack_info): Likewise.
7619         (rs6000_elf_asm_out_constructor): Likewise.
7620         (rs6000_elf_asm_out_destructor): Likewise.
7621         (rs6000_elf_declare_function_name): Likewise.
7622         * config/rs6000/rs6000.md (load_toc_aix_di): Likewise.
7623         * config/rs6000/rs6000.h (MASK_RELOCATABLE, MASK_MINIMAL_TOC):
7624         Don't define.
7626 2016-05-05  Alan Modra  <amodra@gmail.com>
7628         * config/rs6000/rs6000.c (rs6000_frame_related): Rewrite.
7630 2016-05-05  Alan Modra  <amodra@gmail.com>
7632         * config/rs6000/rs6000.c (rs6000_savres_strategy): Don't use
7633         out-of-line gpr restore for one or two regs if that would add
7634         a save of lr.
7636 2016-05-04  Uros Bizjak  <ubizjak@gmail.com>
7638         PR target/70873
7639         * config/i386/i386.md
7640         (TARGET_SSE_PARTIAL_REG_DEPENDENCY float_extend sf->df peephole2):
7641         Change to post-epilogue_completed late splitter.  Use sse_reg_operand
7642         as operand 0 predicate.
7643         (TARGET_SSE_PARTIAL_REG_DEPENDENCY float_truncate df->sf peephole2):
7644         Ditto.
7645         (TARGET_SSE_PARTIAL_REG_DEPENDENCY float {si,di}->{sf,df} peephole2):
7646         Ditto.  Emit the pattern using RTX.
7648         (TARGET_USE_VECTOR_FP_CONVERTS float_extend sf->df splitter):
7649         Use sse_reg_opreand as operand 0 predicate.  Do not use true_regnum in
7650         the post-reload splitter.  Use lowpart_subreg instead of gen_rtx_REG.
7651         (TARGET_USE_VECTOR_FP_CONVERTS float_truncate df->sf splitter):
7652         Ditto.
7653         (TARGET_USE_VECTOR_CONVERTS float si->{sf,df} splitter): Use
7654         sse_reg_operand as operand 0 predicate.
7656         (TARGET_SPLIT_MEM_OPND_FOR_FP_CONVERTS float_extend sf->df peephole2):
7657         Use sse_reg_opreand as operand 0 predicate.  Use lowpart_subreg
7658         instead of gen_rtx_REG.
7659         (TARGET_SPLIT_MEM_OPND_FOR_FP_CONVERTS float_truncate sf->df peephole2):
7660         Ditto.
7662 2016-05-04  Segher Boessenkool  <segher@kernel.crashing.org>
7664         * function.c (emit_use_return_register_into_block): Delete.
7665         (gen_return_pattern): Delete.
7666         (emit_return_into_block): Delete.
7667         (active_insn_between): Delete.
7668         (convert_jumps_to_returns): Delete.
7669         (emit_return_for_exit): Delete.
7670         (thread_prologue_and_epilogue_insns): Delete all code dealing with
7671         simple_return for shrink-wrapped blocks.
7672         * shrink-wrap.c (try_shrink_wrapping): Insert simple_return at the
7673         end of blocks that need one.
7674         (get_unconverted_simple_return): Delete.
7675         (convert_to_simple_return): Delete.
7676         * shrink-wrap.c (get_unconverted_simple_return): Delete declaration.
7677         (convert_to_simple_return): Ditto.
7679 2016-05-04  Segher Boessenkool  <segher@kernel.crashing.org>
7681         * cfgcleanup.c (bb_is_just_return): New function.
7682         (try_optimize_cfg): Simplify jumps to return, branches to return,
7683         and branches around return.
7685 2016-05-04  Segher Boessenkool  <segher@kernel.crashing.org>
7687         * cfgcleanup.c (try_simplify_condjump): Don't try to simplify a
7688         branch to a return.
7690 2016-05-04  Jakub Jelinek  <jakub@redhat.com>
7692         PR c++/70906
7693         PR c++/70933
7694         * tree-core.h (enum operand_equal_flag): Add OEP_HASH_CHECK.
7695         * tree.c (inchash::add_expr): If !IS_EXPR_CODE_CLASS (tclass),
7696         assert flags & OEP_HASH_CHECK, instead of asserting it
7697         never happens.  Handle TARGET_EXPR.
7698         * fold-const.c (operand_equal_p): For hash verification,
7699         or in OEP_HASH_CHECK into flags.
7701 2016-05-04  Eric Botcazou  <ebotcazou@adacore.com>
7703         * tree-ssa-coalesce.c (gimple_can_coalesce_p): Fix reference in head
7704         comment.
7705         (compute_samebase_partition_bases): Fix typo.
7707 2016-05-04  Jakub Jelinek  <jakub@redhat.com>
7709         * config/i386/sse.md (vec_interleave_highv8sf,
7710         vec_interleave_lowv8sf, vec_interleave_highv4df,
7711         vec_interleave_lowv4df): Remove constraints from expanders.
7713         * config/i386/sse.md (sse2_movq128): Use v constraint instead of x.
7715 2016-05-04  Jan Hubicka  <hubicka@ucw.cz>
7717         * tree-inline.c (expand_call_inline): Fix path dealing with
7718         making lhs of call statement undefined.
7720 2016-05-04  Jan Hubicka  <hubicka@ucw.cz>
7722         * cgraph.c (cgraph_node::call_for_symbol_thunks_and_aliases):
7723         Check availability on NODE, too.
7724         * cgraph.h (symtab_node::call_for_symbol_and_aliases): Likewise.
7725         (cgraph_node::call_for_symbol_and_aliases): Likewise.
7726         (varpool_node::call_for_symbol_and_aliase): Likewise.
7727         * ipa-pure-const.c (add_new_function): Analyze all bodies.
7728         (propagate_pure_const): Propagate across interposable functions, too.
7729         (skip_function_for_local_pure_const): Do not skip interposable bodies
7730         with aliases.
7731         (pass_local_pure_const::execute): Update.
7733 2016-05-04  Marek Polacek  <polacek@redhat.com>
7735         * doc/invoke.texi: Document -Wdangling-else.
7737 2016-05-04  Thomas Preud'homme  <thomas.preudhomme@arm.com>
7739         * config.gcc: Error out when conflicting multilib is detected.  Do not
7740         loop over multilibs since no combination is legal.
7742 2016-05-04  Alan Modra  <amodra@gmail.com>
7744         * config/rs6000/rs6000.h (PIC_OFFSET_TABLE_REGNUM): Correct.
7745         * config/rs6000/sysv4.h (TARGET_TOC): Simplify.
7746         * config/rs6000/rs6000.c (rs6000_elf_output_toc_section_asm_op):
7747         Align .toc.
7749 2016-05-04  Matthew Fortune  <matthew.fortune@imgtec.com>
7751         * config/mips/mips-cpus.def (p5600): Avoid IMADD by default.
7752         Clean up p5600 comments.
7754 2016-05-04  Richard Biener  <rguenther@suse.de>
7756         * match.pd: Add BIT_FIELD_REF canonicalizations and vector
7757         constructor simplifications.
7758         * fold-const.c (fold_ternary_loc): Remove duplicate functionality here.
7760 2016-05-04  Oleg Endo  <olegendo@gcc.gnu.org>
7762         * config/sh/predicates (post_inc_mem, pre_dec_mem): New predicates.
7763         * config/sh/sh-protos.h (sh_find_set_of_reg): Return null result if
7764         result.set_rtx is null instead of aborting.
7765         * config/sh/sh.h (USE_LOAD_POST_INCREMENT, USE_STORE_PRE_DECREMENT):
7766         Always enable.
7767         (USE_LOAD_PRE_DECREMENT, USE_STORE_POST_INCREMENT): Enable for SH2A.
7768         * config/sh/sh.md (*extend<mode>si2_predec, *mov<mode>_load_predec,
7769         *mov<mode>_store_postinc): New patterns.
7771 2016-05-04  Marc Glisse  <marc.glisse@inria.fr>
7773         * match.pd ((A | B) & (A | C)): Generalize to BIT_XOR_EXPR.  Mark
7774         as commutative.  Check both conversions are NOP.
7775         ((A & B) OP (C & B)): Remove.
7777 2016-05-04  Alan Modra  <amodra@gmail.com>
7779         * combine.c (simplify_set): Correct WORD_REGISTER_OPERATIONS test.
7781 2016-05-04  Alan Modra  <amodra@gmail.com>
7783         PR target/70866
7784         * config/rs6000/rs6000.c (rs6000_stack_info): Don't set cr_save_p
7785         when cr2,3,4 are all fixed regs.
7787 2016-05-04  Bernd Schmidt  <bschmidt@redhat.com>
7789         PR rtl-optimization/57193
7790         * opts.c (default_options_table): Revert OPT_frename_registers change.
7791         * doc/invoke.texi (-frename-registers, -O2): Likewise.
7793 2016-05-03  Martin Sebor  <msebor@redhat.com>
7795         PR c++/66561
7796         * builtins.c (fold_builtin_FILE): New function.
7797         (fold_builtin_FUNCTION, fold_builtin_LINE): New functions.
7798         (fold_builtin_0): Call them.
7799         * gimplify.c (gimplify_call_expr): Remove the handling of
7800         BUILT_IN_FILE, BUILT_IN_FUNCTION, and BUILT_IN_LINE.
7802         PR c++/66561
7803         * doc/extend.texi (Other Builtins): Update __builtin_FILE,
7804         __builtin_FUNCTION, and __builtin_LINE to reflect they yield
7805         constants.
7807         PR c++/66639
7808         * doc/extend.texi (Function Names as Strings): Update __func__,
7809         __FUNCTION__, __PRETTY_FUNCTION__ to reflect they evaluate to
7810         constants.
7812 2016-05-03  Jakub Jelinek  <jakub@redhat.com>
7813             Richard Biener  <rguenther@suse.de>
7815         PR tree-optimization/70916
7816         * tree-if-conv.c: Include cfganal.h.
7817         (pass_if_conversion::execute): Call connect_infinite_loops_to_exit
7818         and remove_fake_exit_edges around the optimization pass.
7820 2016-05-03  Jan Hubicka  <hubicka@ucw.cz>
7822         * cgraph.c (symbol_table::create_edge): Set inline_failed.
7823         (cgraph_edge::make_direct): Likewise.
7824         (cgraph_edge::dump_edge_flags): Dump call_stmt_cannot_inline_p.
7825         * cgraphclones.c (duplicate_thunk_for_node): Set inline_failed.
7826         * cif-code.def (CIF_LTO_MISMATCHED_DECLARATIONS): New code
7827         (CIF_THUNK): New code.
7828         * ipa-inline-analysis.c (initialize_inline_failed): Preserve
7829         CIF_FINAL_ERROR codes; do not deal with call_stmt_cannot_inline_p.
7830         (compute_inline_parameters): Set inline_failed for thunks.
7831         (inline_analyze_function): Cleanup.
7832         * ipa-inline.c (can_inline_edge_p): Do not deal with
7833         call_stmt_cannot_inline_p.
7834         (can_early_inline_edge_p): Likewise.
7835         (early_inliner): Initialize inline_failed.
7836         * lto-cgraph.c (lto_output_edge): Sanity check inline_failed.
7838 2016-05-03  Uros Bizjak  <ubizjak@gmail.com>
7840         * config/i386/predicates.md (x87nonimm_ssenomem_operand): Rename
7841         from nonimm_ssenomem_operand.
7842         (nonimm_ssenomem_operand): New predicate.
7843         * config/i386/i386.md (extendsfdf2): Use nonimm_ssenomem_operand
7844         as operand 0 predicate.
7845         (*extendsfdf2): Merge from *extendsfdf2_mixed and *extendsfdf2_i387.
7846         Disable unsupported alternatives using "enabled" attribute.
7847         Use register_ssemem_operand as operand 0 predicate.
7848         (*fop_<mode>_1): Use x87nonimm_ssenomem_operand as operand 1 predicate.
7850 2016-05-03  Marek Polacek  <polacek@redhat.com>
7852         PR c/70859
7853         * input.c (expansion_point_location): New function.
7854         * input.h (expansion_point_location): Declare.
7856 2016-05-03  Pierre-Marie de Rodat  <derodat@adacore.com>
7858         * dwarf2out.c (resolve_args_picking_1): Replace the frame_offset
7859         occurence with frame_offset_ ones.
7861 2016-05-03  Alan Modra  <amodra@gmail.com>
7863         PR rtl-optimization/70890
7864         * ira.c (combine_and_move_insns): When moving def_insn, remove
7865         equivs on use_insn.
7867 2016-05-03  Dominik Vogt  <vogt@linux.vnet.ibm.com>
7869         * config/s390/s390.md ("*r<noxa>sbg_<mode>_sll")
7870         ("*r<noxa>sbg_<mode>_srl"): New define_insns.
7871         ("*r<noxa>sbg_<mode>_srl_bitmask"): Rename by adding "_bitmask".
7872         ("*r<noxa>sbg_<mode>_sll_bitmask"): Likewise.
7874 2016-05-03  Alan Modra  <amodra@gmail.com>
7876         * config/rs6000/rs6000.c (rs6000_savres_strategy): Correct condition
7877         for SAVE_MULTIPLE/STORE_MULTIPLE.
7879 2016-05-03  Jakub Jelinek  <jakub@redhat.com>
7881         * config/i386/i386.md (*truncdfsf_mixed, *truncdfsf_i387,
7882         *truncxfsf2_mixed, *truncxfdf2_mixed): Use v constraint instead of x.
7884 2016-05-03  Richard Biener  <rguenther@suse.de>
7886         * gimplify.h (get_initialized_tmp_var): Add allow_ssa parameter
7887         default true.
7888         (gimplify_arg): Likewise.
7889         * gimplify.c (gimplify_expr): Add overload with allow_ssa parameter,
7890         re-writing the result to a decl if required.
7891         (internal_get_tmp_var): Add allow_ssa parameter
7892         and override into_ssa with it.
7893         (get_formal_tmp_var): Adjust.
7894         (get_initialized_tmp_var): Add allow_ssa parameter.
7895         (gimplify_arg): Add allow_ssa parameter and avoid generating
7896         SSA names for the result false.
7897         (gimplify_call_expr): If the call may return twice do not
7898         gimplify parameters into SSA.
7899         (prepare_gimple_addressable): Do not allow an SSA name as temporary.
7900         (gimplify_modify_expr): Adjust assert.  For noreturn calls
7901         with a SSA name LHS adjust its def.
7902         (gimplify_save_expr): Do not allow an SSA name as save-expr result.
7903         (gimplify_one_sizepos): Do not allow an SSA name as a sizepos.
7904         (gimplify_body): Init GIMPLE SSA data structures and gimplify into-SSA.
7905         (gimplify_scan_omp_clauses): Make sure OMP_CLAUSE_SIZE is not
7906         an SSA name.  Likewise for OMP_CLAUSE_REDUCTION operands.
7907         (gimplify_omp_for): Likewise for OMP_CLAUSE_DECL.  Likewise
7908         for OMP_FOR_COND,  OMP_FOR_INCR and OMP_CLAUSE_LINEAR_STEP.
7909         (optimize_target_teams): Do not allow SSA names for clause operands.
7910         (gimplify_expr): Likewise for where we mark the result addressable.
7911         * passes.def (pass_init_datastructures): Remove.
7912         * tree-into-ssa.c (mark_def_sites): Ignore existing SSA names.
7913         (rewrite_stmt): Likewise.
7914         * tree-inline.c (initialize_cfun): Properly transfer SSA state.
7915         (replace_locals_op): Replace SSA names.
7916         (copy_gimple_seq_and_replace_locals): Init src_cfun.
7917         * gimple-low.c (lower_builtin_setjmp): Deal with SSA.
7918         * cgraph.c (release_function_body): Free CFG annotations only
7919         when we have a CFG.  Simplify.
7920         * gimple-fold.c (gimplify_and_update_call_from_tree): Use
7921         force_gimple_operand instead of get_initialized_tmp_var.
7922         * tree-pass.h (make_pass_init_datastructures): Remove.
7923         * tree-ssa.c (execute_init_datastructures): Remove.
7924         (pass_data_init_datastructures): Likewise.
7925         (class pass_init_datastructures): Likewise.
7926         (make_pass_init_datastructures): Likewise.
7927         * omp-low.c (create_omp_child_function): Init SSA data structures.
7928         (grid_expand_target_grid_body): Likewise.
7929         * tree-cfg.c (move_block_to_fn): Double-check the DEF is an SSA
7930         name before adding it to names_to_release.
7931         (remove_bb): Always release SSA defs.
7932         * tree-ssa-ccp.c (get_default_value): Check SSA_NAME_VAR
7933         before dereferencing it.
7934         * cgraphunit.c (init_lowered_empty_function): Always
7935         int SSA data structures.
7936         * tree-ssanames.c (release_defs): Remove assert that we are in
7937         SSA form.
7938         * trans-mem.c (diagnose_tm_1): Handle SSA name function.
7940 2016-05-03  Jakub Jelinek  <jakub@redhat.com>
7941             Uros Bizjak  <ubizjak@gmail.com>
7943         PR rtl-optimization/70467
7944         * config/i386/predicates.md (x86_64_hilo_int_operand,
7945         x86_64_hilo_general_operand): New predicates.
7946         * config/i386/constraints.md (Wd): New constraint.
7947         * config/i386/i386.md (mode attr di): Use Wd instead of e.
7948         (general_hilo_operand): New mode attr.
7949         (add<mode>3, sub<mode>3): Use <general_hilo_operand>
7950         instead of <general_operand>.
7951         (*add<dwi>3_doubleword, *sub<dwi>3_doubleword): Use
7952         x86_64_hilo_general_operand instead of <general_operand>.
7954 2016-05-03  Jakub Jelinek  <jakub@redhat.com>
7956         PR tree-optimization/70916
7957         * tree-if-conv.c (constant_or_ssa_name): Removed.
7958         (fold_build_cond_expr): Use is_gimple_val instead of
7959         constant_or_ssa_name.
7961         PR tree-optimization/70916
7962         * tree-vect-patterns.c (vect_recog_mask_conversion_pattern): Give up
7963         if COND_EXPR rhs1 is neither SSA_NAME nor COMPARISON_CLASS_P.
7965         PR target/49244
7966         * tree-ssa-ccp.c: Include stor-layout.h and optabs-query.h.
7967         (optimize_atomic_bit_test_and): New function.
7968         (pass_fold_builtins::execute): Use it.
7969         * optabs.def (atomic_bit_test_and_set_optab,
7970         atomic_bit_test_and_complement_optab,
7971         atomic_bit_test_and_reset_optab): New optabs.
7972         * internal-fn.def (ATOMIC_BIT_TEST_AND_SET,
7973         ATOMIC_BIT_TEST_AND_COMPLEMENT, ATOMIC_BIT_TEST_AND_RESET): New ifns.
7974         * builtins.h (expand_ifn_atomic_bit_test_and): New prototype.
7975         * builtins.c (expand_ifn_atomic_bit_test_and): New function.
7976         * internal-fn.c (expand_ATOMIC_BIT_TEST_AND_SET,
7977         expand_ATOMIC_BIT_TEST_AND_COMPLEMENT,
7978         expand_ATOMIC_BIT_TEST_AND_RESET): New functions.
7979         * doc/md.texi (atomic_bit_test_and_set@var{mode},
7980         atomic_bit_test_and_complement@var{mode},
7981         atomic_bit_test_and_reset@var{mode}): Document.
7982         * config/i386/sync.md (atomic_bit_test_and_set<mode>,
7983         atomic_bit_test_and_complement<mode>,
7984         atomic_bit_test_and_reset<mode>): New expanders.
7985         (atomic_bit_test_and_set<mode>_1,
7986         atomic_bit_test_and_complement<mode>_1,
7987         atomic_bit_test_and_reset<mode>_1): New insns.
7989 2016-05-03  Richard Sandiford  <richard.sandiford@arm.com>
7991         PR rtl-optimization/70687
7992         * combine.c (change_zero_ext): Check for scalar modes.  Use wide_int
7993         instead of unsigned HOST_WIDE_INT.
7995 2016-05-03  Bernd Schmidt  <bschmidt@redhat.com>
7997         PR rtl-optimization/44281
7998         * hard-reg-set.h (struct target_hard_regs): New field
7999         x_fixed_nonglobal_reg_set.
8000         (fixed_nonglobal_reg_set): New macro.
8001         * reginfo.c (init_reg_sets_1): Initialize it.
8002         * ira.c (setup_alloc_regs): Use fixed_nonglobal_reg_set instead
8003         of fixed_reg_set.
8004         * df-scan.c (df_insn_refs_collect): Asms may reference global regs.
8006 2016-05-03  Bin Cheng  <bin.cheng@arm.com>
8008         PR tree-optimization/56541
8009         * doc/invoke.texi (@item max-tree-if-conversion-phi-args): New item.
8010         * params.def (PARAM_MAX_TREE_IF_CONVERSION_PHI_ARGS): new param.
8011         * tree-if-conv.c (MAX_PHI_ARG_NUM): new macro.
8012         (any_complicated_phi): new static variable.
8013         (aggressive_if_conv): delete.
8014         (if_convertible_phi_p): support phis with more than two arguments.
8015         (if_convertible_bb_p): remvoe check on aggressive_if_conv and
8016         critical pred edges.
8017         (ifcvt_split_critical_edges): support phis with more than two
8018         arguments by checking new parameter.  only split critical edges
8019         if needed.
8020         (tree_if_conversion): handle simd pragma marked loop using new
8021         local variable aggressive_if_conv.  check any_complicated_phi.
8023 2016-05-03  Bin Cheng  <bin.cheng@arm.com>
8025         * tree-ssa-loop-ivopts.c (get_computation_cost_at): Check depends_on
8026         before using it.
8028 2016-05-03  Bin Cheng  <bin.cheng@arm.com>
8030         * tree-ssa-loop-ivopts.c (get_computation_cost_at): Don't clobber
8031         cbase.
8033 2016-05-03  Oleg Endo  <olegendo@gcc.gnu.org>
8035         * config/sh/sh.md (udivsi3, divsi3, mulsi3): Simplify.
8036         (mulhisi3, umulhisi3, (smulsi3_highpart, umulsi3_highpart): Convert to
8037         define_insn_and_split.
8038         (mulsi3_i): New define_insn_and_split.
8039         (mulsi3_call): Convert to define_insn.
8040         (mulsidi3, mulsidi3_compact, umulsidi3, umulsidi3_compact):
8041         Remove constraints.
8043 2016-05-02  Michael Meissner  <meissner@linux.vnet.ibm.com>
8045         * machmode.h (mode_complex): Add support to give the complex mode
8046         for a given mode.
8047         (GET_MODE_COMPLEX_MODE): Likewise.
8048         * stor-layout.c (layout_type): For COMPLEX_TYPE, use the mode
8049         stored by build_complex_type and gfc_build_complex_type instead of
8050         trying to figure out the appropriate mode based on the size. Raise
8051         an assertion error, if the type was not set.
8052         * genmodes.c (struct mode_data): Add field for the complex type of
8053         the given type.
8054         (blank_mode): Likewise.
8055         (make_complex_modes): Remember the complex mode created in the
8056         base type.
8057         (emit_mode_complex): Write out the mode_complex array to map a
8058         type mode to the complex version.
8059         (emit_insn_modes_c): Likewise.
8060         * tree.c (build_complex_type): Set the complex type to use before
8061         calling layout_type.
8062         * config/rs6000/rs6000.c (rs6000_hard_regno_nregs_internal): Add
8063         support for __float128 complex datatypes.
8064         (rs6000_hard_regno_mode_ok): Likewise.
8065         (rs6000_setup_reg_addr_masks): Likewise.
8066         (rs6000_complex_function_value): Likewise.
8067         * config/rs6000/rs6000.h (FLOAT128_IEEE_P): Likewise.
8068         __float128 and __ibm128 complex.
8069         (FLOAT128_IBM_P): Likewise.
8070         (ALTIVEC_ARG_MAX_RETURN): Likewise.
8071         * doc/extend.texi (Additional Floating Types): Document that
8072         -mfloat128 must be used to enable __float128.  Document complex
8073         __float128 and __ibm128 support.
8075 2016-05-02  Jakub Jelinek  <jakub@redhat.com>
8077         PR target/49244
8078         * gimple.c (gimple_builtin_call_types_compatible_p): Allow
8079         char/short arguments promoted to int because of promote_prototypes.
8081 2016-05-02  Uros Bizjak  <ubizjak@gmail.com>
8083         * config/i386/predicates.md (register_ssemem_operand): New predicate.
8084         * config/i386/i386.md (*cmpi<FPCMP:unord><MODEF:mode>): Merge from
8085         *cmpi<FPCMP:unord><MODEF:mode>_mixed and
8086         *cmpi<FPCMP:unord><X87MODEF:mode>_i387.  Disable unsupported
8087         alternatives using "enabled" attribute.  Use register_ssemem_operand
8088         as operand 1 predicate.
8089         (*cmpi<unord>xf_i387): Split XFmode pattern from
8090         *cmpi<FPCMP:unord><X87MODEF:mode>_i387.
8091         (*absneg<mode>2): Merge from *absneg<mode>2_mixed and
8092         *absneg<mode>2_i387.  Disable unsupported alternatives using
8093         "enabled" attribute.
8094         (*absnegxf2_i387): Split XFmode pattern from *absneg<mode>2_i387.
8096 2016-05-02  Nathan Sidwell  <nathan@codesourcery.com>
8098         * omp-low.c (lower_oacc_head_tail): Assert there is at least one
8099         marker.
8100         (oacc_loop_process): Check mask for loop termination.
8102 2016-05-02  Jan Hubicka  <hubicka@ucw.cz>
8104         * cif-code.def (CIF_THUNK): Add.
8105         * ipa-inline-analsysis.c (evaluate_conditions_for_known_args): Revert
8106         accidental change.
8108 2016-05-02  Jan Hubicka  <hubicka@ucw.cz>
8110         * ipa-inline-analysis.c (reset_inline_summary): Clear fp_expressions
8111         (dump_inline_summary): Dump it.
8112         (fp_expression_p): New predicate.
8113         (estimate_function_body_sizes): Use it.
8114         (inline_merge_summary): Merge fp_expressions.
8115         (inline_read_section): Read fp_expressions.
8116         (inline_write_summary): Write fp_expressions.
8117         * ipa-inline.c (can_inline_edge_p): Permit inlining across fp math
8118         codegen boundary if either caller or callee is !fp_expressions.
8119         * ipa-inline.h (inline_summary): Add fp_expressions.
8120         * ipa-inline-transform.c (inline_call): When inlining !fp_expressions
8121         to fp_expressions be sure the fp generation flags are updated.
8123 2016-05-02  Jakub Jelinek  <jakub@redhat.com>
8125         PR rtl-optimization/70467
8126         * cse.c (cse_insn): Handle no-op MEM moves after folding.
8128         PR rtl-optimization/70467
8129         * ipa-pure-const.c (check_call): Handle internal calls even in
8130         ipa mode like in local mode.
8132 2016-05-02  Bernd Edlinger  <bernd.edlinger@hotmail.de>
8134         * doc/install.texi: Document supported in-tree gmp/mpfr/mpc versions.
8136 2016-05-02  Marc Glisse  <marc.glisse@inria.fr>
8138         * match.pd (X u< X, X u> X): New transformations.
8140 2016-05-02  Marc Glisse  <marc.glisse@inria.fr>
8142         * flag-types.h (enum warn_strict_overflow_code): Move ...
8143         * coretypes.h: ... here.
8144         * fold-const.h (fold_overflow_warning): Declare.
8145         * fold-const.c (fold_overflow_warning): Make non-static.
8146         (fold_comparison): Move the transformation of X +- C1 CMP C2
8147         into X CMP C2 -+ C1 ...
8148         * match.pd: ... here.
8149         * gimple-fold.c (fold_stmt_1): Protect with
8150         fold_defer_overflow_warnings.
8152 2016-05-02  Nathan Sidwell  <nathan@codesourcery.com>
8154         * omp-low.c (struct oacc_loop): Add 'inner' field.
8155         (new_oacc_loop_raw): Initialize it to zero.
8156         (oacc_loop_fixed_partitions): Initialize it.
8157         (oacc_loop_auto_partitions): Partition outermost loop to outermost
8158         available partitioning.
8160 2016-05-02  Claudiu Zissulescu  <claziss@synopsys.com>
8162         * config/arc/arc.md (mulsidi3): Change operand 0 predicate to
8163         register_operand.
8164         (umulsidi3): Likewise.
8165         (indirect_jump): Fix jump instruction assembly patterns.
8167 2016-05-02  Thomas Schwinge  <thomas@codesourcery.com>
8169         PR target/70860
8170         * config/nvptx/nvptx.c (nvptx_libcall_value): Handle NULL cfun.
8171         (nvptx_function_value): Assert non-NULL cfun.
8173 2016-05-02  Eric Botcazou  <ebotcazou@adacore.com>
8175         PR rtl-optimization/70886
8176         * sched-deps.c (estimate_dep_weak): Canonicalize cselib values.
8178         * cselib.h (rtx_equal_for_cselib_1): Declare.
8179         (rtx_equal_for_cselib_p: New inline function.
8180         * cselib.c (rtx_equal_for_cselib_p): Delete.
8181         (rtx_equal_for_cselib_1): Make public.
8183 2016-05-02  Uros Bizjak  <ubizjak@gmail.com>
8185         * config/i386/predicates.md (nonimm_ssenomem_operand): New predicate.
8186         (register_mixssei387nonimm_operand): Remove predicate.
8187         * config/i386/i386.md (*fop_<mode>_comm): Merge from
8188         *fop_<mode>_comm_mixed and *fop_<mode>_comm_i387.  Disable unsupported
8189         alternatives using "enabled" attribute.  Also check X87_ENABLE_ARITH
8190         for TARGET_MIX_SSE_I387 alternatives.
8191         (*fop_<mode>_1): Merge from *fop_<mode>_1_mixed and *fop_<mode>_1_i387.
8192         Disable unsupported alternatives using "enabled" attribute.  Use
8193         nonimm_ssenomem_operand as operand 1 predicate.  Also check
8194         X87_ENABLE_ARITH for TARGET_MIX_SSE_I387 alternatives.
8196 2016-05-02  Richard Sandiford  <richard.sandiford@arm.com>
8198         * tree.c (cst_and_fits_in_hwi): Simplify.
8200 2016-05-02  Richard Sandiford  <richard.sandiford@arm.com>
8202         * tree.h (wi::to_wide): New function.
8203         * expr.c (expand_expr_real_1): Use wi::to_wide.
8204         * fold-const.c (int_const_binop_1): Likewise.
8205         (extract_muldiv_1): Likewise.
8207 2016-05-02  Richard Sandiford  <richard.sandiford@arm.com>
8209         * wide-int.h: Update offset_int and widest_int documentation.
8210         (WI_SIGNED_SHIFT_RESULT): New macro.
8211         (wi::binary_shift): Define signed_shift_result_type for
8212         shifts on offset_int- and widest_int-like types.
8213         (generic_wide_int): Support <<= and >>= if << and >> are supported.
8214         * tree.h (int_bit_position): Use shift operators instead of wi::
8215          shifts.
8216         * alias.c (adjust_offset_for_component_ref): Likewise.
8217         * expr.c (get_inner_reference): Likewise.
8218         * fold-const.c (fold_comparison): Likewise.
8219         * gimple-fold.c (fold_nonarray_ctor_reference): Likewise.
8220         * gimple-ssa-strength-reduction.c (restructure_reference): Likewise.
8221         * tree-dfa.c (get_ref_base_and_extent): Likewise.
8222         * tree-ssa-alias.c (indirect_ref_may_alias_decl_p): Likewise.
8223         (stmt_kills_ref_p): Likewise.
8224         * tree-ssa-ccp.c (bit_value_binop_1): Likewise.
8225         * tree-ssa-math-opts.c (find_bswap_or_nop_load): Likewise.
8226         * tree-ssa-sccvn.c (copy_reference_ops_from_ref): Likewise.
8227         (ao_ref_init_from_vn_reference): Likewise.
8229 2016-05-02  Richard Sandiford  <richard.sandiford@arm.com>
8231         * wide-int.h: Update offset_int and widest_int documentation.
8232         (WI_SIGNED_BINARY_PREDICATE_RESULT): New macro.
8233         (wi::binary_traits): Allow ordered comparisons between offset_int and
8234         offset_int, between widest_int and widest_int, and between either
8235         of these types and basic C types.
8236         (operator <, <=, >, >=): Define for the same combinations.
8237         * tree.h (tree_int_cst_lt): Use comparison operators instead
8238         of wi:: comparisons.
8239         (tree_int_cst_le): Likewise.
8240         * gimple-fold.c (fold_array_ctor_reference): Likewise.
8241         (fold_nonarray_ctor_reference): Likewise.
8242         * gimple-ssa-strength-reduction.c (record_increment): Likewise.
8243         * tree-affine.c (aff_comb_cannot_overlap_p): Likewise.
8244         * tree-parloops.c (try_transform_to_exit_first_loop_alt): Likewise.
8245         * tree-sra.c (completely_scalarize): Likewise.
8246         * tree-ssa-alias.c (stmt_kills_ref_p): Likewise.
8247         * tree-ssa-reassoc.c (extract_bit_test_mask): Likewise.
8248         * tree-vrp.c (extract_range_from_binary_expr_1): Likewise.
8249         (check_for_binary_op_overflow): Likewise.
8250         (search_for_addr_array): Likewise.
8251         * ubsan.c (ubsan_expand_objsize_ifn): Likewise.
8253 2016-05-02  Claudiu Zissulescu  <claziss@synopsys.com>
8255         * config/arc/arc.c (arc_preferred_simd_mode): Remove enum keyword.
8256         (arc_save_restore): Likewise.
8257         (arc_dwarf_register_span): Likewise.
8258         (arc_output_pic_addr_const): Initialize suffix variable.
8260 2016-05-02  Martin Liska  <mliska@suse.cz>
8262         * symbol-summary.h (function_summary::function_summary):
8263         Remove checking assert for all cgraph nodes.
8264         (function_summary::get): Check summary_uid.
8265         (symtab_insertion): Check summary_uid.
8267 2016-05-02  Claudiu Zissulescu  <claziss@synopsys.com>
8269         * config/arc/arc-protos.h (compact_memory_operand_p): Declare.
8270         * config/arc/arc.c (arc_output_commutative_cond_exec): Consider
8271         bmaskn instruction.
8272         (arc_dwarf_register_span): Remove enum keyword.
8273         (compact_memory_operand_p): New function.
8274         * config/arc/arc.h (reg_class): Add code density register classes.
8275         (REG_CLASS_NAMES): Likewise.
8276         (REG_CLASS_CONTENTS): Likewise.
8277         * config/arc/arc.md (*movqi_insn): Add code density instructions.
8278         (*movhi_insn, *movsi_insn, *movsf_insn): Likewise.
8279         (*extendhisi2_i, andsi3_i, cmpsi_cc_insn_mixed): Likewise.
8280         (*cmpsi_cc_c_insn, *movsi_ne): Likewise.
8281         * config/arc/constraints.md (C2p, Uts, Cm1, Cm3, Ucd): New
8282         constraints.
8283         (h, Rcd, Rsd, Rzd): New register constraints.
8284         (T): Use compact_memory_operand_p function.
8285         * config/arc/predicates.md (compact_load_memory_operand): Remove.
8287 2016-05-02  Oleg Endo  <olegendo@gcc.gnu.org>
8289         * config/sh/sh.md (*negnegt, *movtt): Remove.
8291 2016-05-02  Marek Polacek  <polacek@redhat.com>
8292             Tom de Vries  <tom@codesourcery.com>
8294         PR tree-optimization/70700
8295         * tree-ssa-structalias.c (dump_pred_graph): Fix getting varinfo for ids
8296         bigger than FIRST_REF_NODE.
8298 2016-05-02  Oleg Endo  <olegendo@gcc.gnu.org>
8300         PR target/52898
8301         * config/sh/sh.c (sh_option_override): Remove TARGET_CBRANCHDI4,
8302         TARGET_CMPEQDI_T.
8303         (prepare_cbranch_operands): Don't use scratch register.  Assume that
8304         function is used when pseudos can be created.
8305         (expand_cbranchdi4): Likewise.  Remove unused TARGET_CMPEQDI_T paths.
8306         * config/sh/sh.md (cbranchsi4): Allow only when pseudos can be created.
8307         (cbranchdi4, cbranchdi4_i): Simplify to single cbranchdi4
8308         define_expand.  Allow it only when pseudos can be created.
8309         * config/sh/sh.opt (mcbranchdi, mcmpeqdi): Delete.
8311 2016-05-01  Uros Bizjak  <ubizjak@gmail.com>
8313         * config/i386/constraints.md (BC): Only allow -1 operands.
8314         * config/i386/sse.md (mov<mode>_internal): Add (v,C) alternative.
8315         Add "enabled" attribute.  Update XI mode attribute calculation.
8316         * config/i386/i386.md (*movxi_internal_avx512f): Add (v,C) alternative.
8317         (*movoi_internal_avx): Update XI mode attribute calculation.
8318         (*movti_internal): Ditto.
8320 2016-05-01  Oleg Endo  <olegendo@gcc.gnu.org>
8322         * config/sh/sh.md (push, pop, ic_invalidate_line, cstoresi4, cstoredi4,
8323         cstoresf4, cstoredf4, fix_truncsfsi2): Remove constraints.
8325 2016-05-01  Eric Botcazou  <ebotcazou@adacore.com>
8327         * config/rs6000/rs6000.c (altivec_expand_lv_builtin): Do not use switch
8328         statement on instruction code.  Remove trailing spaces.
8329         (altivec_expand_stv_builtin): Likewise.
8331 2016-05-01  Oleg Endo  <olegendo@gcc.gnu.org>
8333         * config/sh/sh.h (TARGET_SH4): Remove and use default implementation.
8334         (TARGET_FPU_DOUBLE): Simplify.
8335         (BASE_ARG_REG, DOUBLE_TYPE_SIZE, OPTIMIZE_MODE_SWITCHING): Replace
8336         'TARGET_SH4 || TARGET_SH2A_DOUBLE' conditions with 'TARGET_FPU_DOUBLE'.
8337         * config/sh/sh.c: Replace 'TARGET_SH4 || TARGET_SH2A_DOUBLE' conditions
8338         with 'TARGET_FPU_DOUBLE'.
8339         * config/sh/sh.md: Likewise.
8341 2016-05-01  Yoshinori Sato  <ysato@users.sourceforge.jp>
8343         * config/sh/linux.h (SH_DIV_STRATEGY_DEFAULT,
8344         SH_DIV_STR_FOR_SIZE): Remove.
8345         * config/sh/netbsd-elf.h (SH_DIV_STRATEGY_DEFAULT,
8346         SH_DIV_STR_FOR_SIZE): Remove.
8348 2016-05-01  Oleg Endo  <olegendo@gcc.gnu.org>
8350         * config/sh/predicates.md (any_register_operand, zero_extend_operand,
8351         logical_reg_operand): Delete.
8352         (arith_operand, arith_reg_dest, arith_or_int_operand, cmpsi_operand,
8353         arith_reg_or_0_operand, arith_reg_or_0_or_1_operand, logical_operand,
8354         logical_and_operand, movsrc_no_disp_mem_operand): Rewrite using
8355         match_operand and match_test.
8356         (sh_const_vec, sh_1el_vec): Remove redundant checks.  Declare local
8357         variables on their first use.  Return bool values.
8358         * config/sh/sh.h (LOAD_EXTEND_OP): Update comment.
8359         * config/sh/sh.md (andsi3, iorsi3): Use arith_reg_dest for result and
8360         arith_reg_operand for input operand.  Remove empty constraints.
8361         (xorsi3): Delete.
8362         (*xorsi3_compact): Rename to xorsi3.
8363         (zero_extend<mode>si2): Use arith_reg_operand for input operand.
8364         (*zero_extend<mode>si2_disp_mem): Update comment.
8365         (mov_nop): Delete.
8367 2016-04-30  Oleg Endo  <olegendo@gcc.gnu.org>
8369         * config/sh/t-sh: Remove SH5 support.
8370         * config.gcc: Likewise.
8371         * configure: Likewise.
8373 2016-04-30  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
8375         * config/darwin.h (LINK_COMMAND_SPEC_A): Handle -fcilkplus.
8377 2016-04-30  Oleg Endo  <olegendo@gcc.gnu.org>
8379         * config/sh/sh.c (register_sh_passes, sh_option_override,
8380         sh_print_operand, prepare_move_operands,
8381         sh_can_follow_jump): Remove TARGET_SH1 checks.
8382         * config/sh/sh.h (TARGET_VARARGS_PRETEND_ARGS, VALID_REGISTER_P,
8383         PROMOTE_MODE): Likewise.
8384         * config/sh/sh.md (adddi3, addsi3, subdi3, subsi3, andsi3,
8385         movdi): Likewise.
8387 2016-04-30  Alan Modra  <amodra@gmail.com>
8389         * config/rs6000/rs6000.c (rs6000_savres_strategy): Force inline
8390         restoring when fixed_reg_p, but allow out-of-line or stmw save.
8391         Check for user regs later to avoid unnecessary looping over regs.
8392         Merge user reg check with non-saved reg check.  Don't force
8393         inline VR restore when static chain used.
8394         (rs6000_frame_related): Omit eh_frame info for user regs when
8395         saving.
8396         (fixed_regs_p): Delete.
8398 2016-04-30  Alan Modra  <amodra@gmail.com>
8400         * config/rs6000/rs6000.c (SAVRES_MULTIPLE): Replace with..
8401         (SAVE_STRATEGY, REST_STRATEGY): ..this.  Renumber and sort enum.
8402         Update all uses.
8404 2016-04-30  Alan Modra  <amodra@gmail.com>
8406         PR target/69645
8407         * config/rs6000/rs6000.c (fixed_reg_p): New function.
8408         (fixed_regs_p): Rename from global_regs_p.  Call fixed_reg_p.
8409         Update all uses.
8411 2016-04-30  Alan Modra  <amodra@gmail.com>
8413         * config/rs6000/rs6000.c (rs6000_conditional_register_usage):
8414         Remove redundant PIC_OFFSET_TABLE_REGNUM test.  Replace with
8415         flag_pic test for Darwin.
8417 2016-04-30  Alan Modra  <amodra@gmail.com>
8419         * regs.h (struct reg_info_t): Delete freq_calls_crossed and
8420         throw_calls_crossed.
8421         (REG_FREQ_CALLS_CROSSED): Delete.
8422         (REG_N_THROWING_CALLS_CROSSED): Delete.
8423         * regstat.c (regstat_bb_compute_ri): Don't calculate
8424         REG_FREQ_CALLS_CROSSED and REG_N_THROWING_CALLS_CROSSED.
8425         (dump_reg_info): Don't print call cross frequency.
8426         * ira.c (combine_and_move_insns): Don't set REG_FREQ_CALLS_CROSSED
8427         and REG_N_THROWING_CALLS_CROSSED.
8429 2016-04-30  Alan Modra  <amodra@gmail.com>
8431         * regs.h (struct reg_info_t): Delete live_length.
8432         (REG_LIVE_LENGTH): Delete macro.
8433         * regstat.c (regstat_bb_compute_ri): Delete artificial_uses,
8434         local_live, local_processed and local_live_last_luid params.
8435         Replace bb_index param with bb.  Don't set REG_LIVE_LENGTH.
8436         Formatting fixes.
8437         (regstat_compute_ri): Adjust for above.  Don't set
8438         REG_LIVE_LENGTH.
8439         (dump_reg_info): Don't print live length.
8440         * ira.c (update_equiv_regs): Replace test of REG_LIVE_LENGTH
8441         with test of setjmp_crosses.  Don't set REG_LIVE_LENGTH.
8442         Localize loop_depth var.
8444 2016-04-30  Alan Modra  <amodra@gmail.com>
8446         * ira.c (enum valid_equiv): New.
8447         (validate_equiv_mem): Return enum.
8448         (update_equiv_mem): Create replacement in more cases.
8449         (add_store_equivs): Update validate_equiv_mem call.
8451 2016-04-30  Alan Modra  <amodra@gmail.com>
8453         * ira.c (combine_and_move_insns): Rather than scanning insns,
8454         use DF infrastucture to find use and def insns.
8456 2016-04-30  Alan Modra  <amodra@gmail.com>
8458         ira.c (combine_and_move_insns): Move invariant conditions..
8459         (ira.c): ..to here.  Call combine_and_move_insns before
8460         add_store_equivs.  Call grow_reg_equivs later.  Allocate
8461         req_equiv later using max_reg_num() rather than global max_regno.
8462         (contains_replace_regs): Delete.
8463         (add_store_equivs): Remove contains_replace_regs test.
8465 2016-04-30  Alan Modra  <amodra@gmail.com>
8467         * ira.c (struct equiv_mem_data): New.
8468         (equiv_mem, equiv_mem_modified): Delete static vars.
8469         (validate_equiv_mem_from_store): Use "data" param to communicate..
8470         (validate_equiv_mem): ..from here.
8472 2016-04-30  Alan Modra  <amodra@gmail.com>
8474         * ira.c (add_store_equivs, combine_and_move_insns): New functions,
8475         split out from..
8476         (update_reg_equivs): ..here.  Move allocation and freeing of
8477         reg_equiv, and calls to grow_reg_equivs, init_alias_analysis,
8478         end_alias_analysis to..
8479         (ira): ..here.
8481 2016-04-30  Alan Modra  <amodra@gmail.com>
8483         * ira.c (pdx_subregs): Delete.
8484         (struct equivalence): Add pdx_subregs field.
8485         (set_paradoxical_subreg): Remove pdx_subregs param.  Update
8486         pdx_subregs access.
8487         (update_equiv_regs): Don't create or free pdx_subregs.  Update
8488         pdx_subregs access.
8490 2016-04-29  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
8492         * config/rs6000/altivec.h: Change definitions of vec_xl and
8493         vec_xst.
8494         * config/rs6000/rs6000-builtin.def (LD_ELEMREV_V2DF): New.
8495         (LD_ELEMREV_V2DI): New.
8496         (LD_ELEMREV_V4SF): New.
8497         (LD_ELEMREV_V4SI): New.
8498         (LD_ELEMREV_V8HI): New.
8499         (LD_ELEMREV_V16QI): New.
8500         (ST_ELEMREV_V2DF): New.
8501         (ST_ELEMREV_V2DI): New.
8502         (ST_ELEMREV_V4SF): New.
8503         (ST_ELEMREV_V4SI): New.
8504         (ST_ELEMREV_V8HI): New.
8505         (ST_ELEMREV_V16QI): New.
8506         (XL): New.
8507         (XST): New.
8508         * config/rs6000/rs6000-c.c (altivec_overloaded_builtins): Add
8509         descriptions for VSX_BUILTIN_VEC_XL and VSX_BUILTIN_VEC_XST.
8510         * config/rs6000/rs6000.c (rs6000_builtin_mask_calculate): Map from
8511         TARGET_P9_VECTOR to RS6000_BTM_P9_VECTOR.
8512         (altivec_expand_builtin): Add handling for
8513         VSX_BUILTIN_ST_ELEMREV_<MODE> and VSX_BUILTIN_LD_ELEMREV_<MODE>.
8514         (rs6000_invalid_builtin): Add error-checking for
8515         RS6000_BTM_P9_VECTOR.
8516         (altivec_init_builtins): Define builtins used to implement vec_xl
8517         and vec_xst.
8518         (rs6000_builtin_mask_names): Define power9-vector.
8519         * config/rs6000/rs6000.h (MASK_P9_VECTOR): Define.
8520         (RS6000_BTM_P9_VECTOR): Define.
8521         (RS6000_BTM_COMMON): Include RS6000_BTM_P9_VECTOR.
8522         * config/rs6000/vsx.md (vsx_ld_elemrev_v2di): New define_insn.
8523         (vsx_ld_elemrev_v2df): Likewise.
8524         (vsx_ld_elemrev_v4sf): Likewise.
8525         (vsx_ld_elemrev_v4si): Likewise.
8526         (vsx_ld_elemrev_v8hi): Likewise.
8527         (vsx_ld_elemrev_v16qi): Likewise.
8528         (vsx_st_elemrev_v2df): Likewise.
8529         (vsx_st_elemrev_v2di): Likewise.
8530         (vsx_st_elemrev_v4sf): Likewise.
8531         (vsx_st_elemrev_v4si): Likewise.
8532         (vsx_st_elemrev_v8hi): Likewise.
8533         (vsx_st_elemrev_v16qi): Likewise.
8534         * doc/extend.texi: Add prototypes for vec_xl and vec_xst.  Correct
8535         grammar.
8537 2016-04-29  Patrick Palka  <ppalka@gcc.gnu.org>
8539         * tree-ssa-threadedge.c (simplify_control_stmt_condition): Split
8540         out into ...
8541         (simplify_control_stmt_condition_1): ... here.  Recurse into
8542         BIT_AND_EXPRs and BIT_IOR_EXPRs.
8544 2016-04-29  David Edelsohn  <dje.gcc@gmail.com>
8546         PR target/69810
8547         * config/rs6000/rs6000.md (EXTQI): Don't allow extension to HImode.
8548         (zero_extendqi<mode>2_dot): Revert earlier conversion from
8549         define_insn_and_split to define_insn.
8550         (zero_extendqi<mode>2_dot2): Same.
8551         (extendqi<mode>2_dot): Same.
8552         (extendqi<mode>2_dot2): Same.
8554 2016-04-29  Uros Bizjak  <ubizjak@gmail.com>
8556         * config/i386/i386.md (unspec): Add UNSPEC_PROBE_STACK.
8557         (probe_stack): New expander.
8558         (probe_stack_<mode>): New insn pattern.
8560 2016-04-29  Uros Bizjak  <ubizjak@gmail.com>
8562         * config/i386/i386.md
8563         (operations with memory inputs setting flags peephole2):
8564         Remove uneeded REG_P checks.  Cleanup pattern generation.
8566 2016-04-29  Ilya Enkovich  <ilya.enkovich@intel.com>
8568         * tree-vect-loop.c (vect_transform_loop): Fix
8569         nb_iterations_upper_bound computation for vectorized loop.
8571 2016-04-29  Marek Polacek  <polacek@redhat.com>
8572             Jakub Jelinek  <jakub@redhat.com>
8574         PR sanitizer/70342
8575         * fold-const.c (tree_single_nonzero_warnv_p): For TARGET_EXPR, use
8576         TARGET_EXPR_SLOT as a base.
8578 2016-04-29  Andrew Burgess  <andrew.burgess@embecosm.com>
8580         * config/arc/arc.md (*loadqi_update): Replace use of 'rI' constraint
8581         with 'rCm2' constraints to limit possible immediate size.
8582         (*load_zeroextendqisi_update): Likewise.
8583         (*load_signextendqisi_update): Likewise.
8584         (*loadhi_update): Likewise.
8585         (*load_zeroextendhisi_update): Likewise.
8586         (*load_signextendhisi_update): Likewise.
8587         (*loadsi_update): Likewise.
8588         (*loadsf_update): Likewise.
8590 2016-04-29  Uros Bizjak  <ubizjak@gmail.com>
8592         * config/i386/predicates.md (constm1_operand): Fix comparison.
8594 2016-04-29  Claudiu Zissulescu  <claziss@synopsys.com>
8596         * testsuite/gcc.target/arc/ieee_eq.c: New test.
8598 2016-04-29  Oleg Endo  <olegendo@gcc.gnu.org>
8600         * common/config/sh/sh-common.c (sh_option_optimization_table): Remove
8601         remaining SH5 related settings.
8602         * config/sh/sh-protos.h (shmedia_cleanup_truncate,
8603         shmedia_prepare_call_address): Delete.
8604         * config/sh/sh.c (sh_print_operand, output_stack_adjust,
8605         DWARF_CIE_DATA_ALIGNMENT, LOCAL_ALIGNMENT): Update comments.
8606         * config/sh/sh.h (SUBTARGET_ASM_RELAX_SPEC,
8607         UNSUPPORTED_SH2A): Remove m5 checks.
8608         (sh_divide_strategy_e): Remove SH5 division strategies.
8609         (TARGET_PTRMEMFUNC_VBIT_LOCATION): Remove and use default.
8610         * config/sh/sh.md (divsf3): Reinstate define_expand pattern.
8612 2016-04-29  Dominik Vogt  <vogt@linux.vnet.ibm.com>
8614         * config/s390/s390.c (s390_rtx_costs): Update documentation.
8616 2016-04-29  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
8618         * config/s390/2964.md ("z13_unit_fxu", "z13_0"): Remove lder.
8619         * config/s390/s390.md ("movsi_larl", "*movsi_esa", "mov<mode>"):
8620         Change lder to ldr.
8621         * config/s390/vector.md ("mov<mode>"): Likewise.
8623 2016-04-29  Ulrich Weigand  <uweigand@de.ibm.com>
8625         * config/s390/constraints.md ("U", "W"): Invoke
8626         s390_mem_constraint with "ZR" and "ZT".
8627         * config/s390/s390.c (s390_check_qrst_address): Reject invalid
8628         addresses when using LRA.  Accept also short displacements for S
8629         and T constraints.  Do not check for long displacement target for
8630         S and T constraints.
8631         (s390_mem_constraint): Remove handling of U and W constraints.
8632         * config/s390/s390.md (various patterns): Remove the short
8633         displacement constraints (Q and R) if a long displacement
8634         constraint is present.  Add longdisp as required CPU capability.
8635         * config/s390/vector.md: Likewise.
8636         * config/s390/vx-builtins.md: Likewise.
8638 2016-04-29  Senthil Kumar Selvaraj  <senthil_kumar.selvaraj@atmel.com>
8640         PR target/60040
8641         * reload1.c (reload): Call finish_spills before
8642         restarting reload loop. Skip select_reload_regs
8643         if update_eliminables_and_spill returns true.
8645 2016-04-29  Claudiu Zissulescu  <claziss@synopsys.com>
8647         * config/arc/arc.h (UNSIGNED_INT12, UNSIGNED_INT16): Define.
8648         * config/arc/arc.md (umulhisi3): Use arc_short_operand predicate.
8649         (umulhisi3_imm): Update predicates and constraint letters.
8650         (umulhisi3_reg): Declare instruction as commutative.
8651         * config/arc/constraints.md (J12, J16): New constraints.
8652         * config/arc/predicates.md (short_unsigned_const_operand): New
8653         predicate.
8654         (arc_short_operand): Likewise.
8655         * testsuite/gcc.target/arc/umulsihi3_z.c: New file.
8657 2016-04-29  Richard Biener  <rguenther@suse.de>
8659         PR tree-optimization/13962
8660         PR tree-optimization/65686
8661         * tree-ssa-alias.h (ptrs_compare_unequal): Declare.
8662         * tree-ssa-alias.c (ptrs_compare_unequal): New function
8663         using PTA to compare pointers.
8664         * match.pd: Add pattern for pointer equality compare simplification
8665         using ptrs_compare_unequal.
8667 2016-04-29  Richard Biener  <rguenther@suse.de>
8669         * stor-layout.c (layout_type): Do not build a pointer-to-element
8670         type for arrays.
8672 2016-04-29  Uros Bizjak  <ubizjak@gmail.com>
8674         * config/i386/i386.md (Load+RegOp to Mov+MemOp peephole2):
8675         Use SWI mode iterator.  Use general_reg_operand predicate.
8676         (Load+RegOp to Mov+MemOp peephole2 with vector regs): Split
8677         peephole to MMX and SSE part.  Use mmx_reg_operand and sse_reg_operand
8678         predicates.
8680 2016-04-29  Jakub Jelinek  <jakub@redhat.com>
8682         PR middle-end/70843
8683         * fold-const.c (operand_equal_p): Don't verify hash value equality
8684         if arg0 == arg1.
8685         * tree.c (inchash::add_expr): Handle STATEMENT_LIST.  Ignore BLOCK
8686         and OMP_CLAUSE.
8688 2016-04-28  Jakub Jelinek  <jakub@redhat.com>
8690         PR target/70858
8691         * config/i386/i386.c (bdesc_special_args): Add | OPTION_MASK_ISA_64BIT
8692         to __builtin_ia32_lwpval64 and __builtin_ia32_lwpins64.
8693         (bdesc_args): Add | OPTION_MASK_ISA_64BIT to __builtin_ia32_bextr_u64,
8694         __builtin_ia32_bextri_u64, __builtin_ia32_bzhi_di,
8695         __builtin_ia32_pdep_di and __builtin_ia32_pext_di.
8697 2016-04-28  Segher Boessenkool  <segher@kernel.crashing.org>
8699         * config/rs6000/rs6000.c (compute_save_world_info): Rename info_ptr
8700         to info.  Don't initialize separate fields to 0.  Clean up
8701         formatting a bit.
8703 2016-04-28  Uros Bizjak  <ubizjak@gmail.com>
8705         * config/i386/i386.md (peephole2s for operations with memory inputs):
8706         Use SWI mode iterator.
8707         (peephole2s for operations with memory outputs): Ditto.
8708         Do not check for stack checking probe.
8710         (probe_stack): Remove expander.
8712 2016-04-28  Joern Rennecke  <joern.rennecke@embecosm.com>
8713             Andrew Burgess  <andrew.burgess@embecosm.com>
8715         * config/arc/arc.c (arc_print_operand): Print integer 'H' / 'L'
8716         operands as 32-bits.
8718 2016-04-28  Jason Merrill  <jason@redhat.com>
8720         * gdbinit.in: Skip line-map.h.
8722 2016-04-28  Joern Rennecke  <joern.rennecke@embecosm.com>
8723             Andrew Burgess  <andrew.burgess@embecosm.com>
8725         * config/arc/arc.c (arc_conditional_register_usage): Take
8726         TARGET_RRQ_CLASS into account.
8727         (arc_print_operand): Support printing 'p' and 's' operands.
8728         * config/arc/arc.h (TARGET_NPS_BITOPS_DEFAULT): Provide default
8729         as 0.
8730         (TARGET_RRQ_CLASS): Define.
8731         (IS_POWEROF2_OR_0_P): Define.
8732         * config/arc/arc.md (*movsi_insn): Add w/Clo, w/Chi, and w/Cbi
8733         alternatives.
8734         (*tst_movb): New define_insn.
8735         (*tst): Avoid recognition if it could prevent '*tst_movb'
8736         combination; replace c/CnL with c/Chs alternative.
8737         (*tst_bitfield_tst): New define_insn.
8738         (*tst_bitfield_asr): New define_insn.
8739         (*tst_bitfield): New define_insn.
8740         (andsi3_i): Add Rrq variant.
8741         (extzv): New define_expand.
8742         (insv): New define_expand.
8743         (*insv_i): New define_insn.
8744         (*movb): New define_insn.
8745         (*movb_signed): New define_insn.
8746         (*movb_high): New define_insn.
8747         (*movb_high_signed): New define_insn.
8748         (*movb_high_signed + 1): New define_split pattern.
8749         (*mrgb): New define_insn.
8750         (*mrgb + 1): New define_peephole2 pattern.
8751         (*mrgb + 2): New define_peephole2 pattern.
8752         * config/arc/arc.opt (mbitops): New option for nps400, uses
8753         TARGET_NPS_BITOPS_DEFAULT.
8754         * config/arc/constraints.md (q): Make register class conditional.
8755         (Rrq): New register constraint.
8756         (Chs): New constraint.
8757         (Clo): New constraint.
8758         (Chi): New constraint.
8759         (Cbf): New constraint.
8760         (Cbn): New constraint.
8761         (C18): New constraint.
8762         (Cbi): New constraint.
8764 2016-04-28  Segher Boessenkool  <segher@kernel.crashing.org>
8766         * cfganal.c (bitmap_intersection_of_succs): Delete assert checking
8767         dst->popcount.
8768         (bitmap_intersection_of_preds): Ditto.
8769         (bitmap_union_of_succs): Ditto.
8770         (bitmap_union_of_preds): Ditto.
8771         * sbitmap.c (do_popcount): Delete.
8772         (BITMAP_DEBUGGING): Delete.
8773         (sbitmap_verify_popcount): Delete.
8774         (sbitmap_alloc): Don't initialize the popcount field.
8775         (sbitmap_alloc_with_popcount): Delete.
8776         (sbitmap_resize): Don't resize the popcount array.
8777         (sbitmap_vector_alloc): Don't initialize the popcount field.
8778         (bitmap_copy): Don't copy the popcount array.
8779         (bitmap_clear): Don't clear the popcount array.
8780         (bitmap_clear): Delete the popcount array handling.
8781         (bitmap_ior_and_compl): Delete the popcount assert.
8782         (bitmap_not): Ditto.
8783         (bitmap_and_compl): Ditto.
8784         (bitmap_and): Delete the popcount array handling.
8785         (bitmap_xor): Ditto.
8786         (bitmap_ior): Ditto.
8787         (bitmap_or_and): Delete the popcount assert.
8788         (bitmap_and_or): Ditto.
8789         (popcount_table): Delete.
8790         (sbitmap_elt_popcount): Delete.
8791         * sbitmap.h (simple_bitmap_def): Delete the popcount field.
8792         (bitmap_set_bit): Delete the popcount assert.
8793         (bitmap_clear_bit): Ditto.
8794         (sbitmap_free): Don't free the popcount array.
8795         (sbitmap_alloc_with_popcount): Delete declaration.
8796         (sbitmap_popcount): Ditto.
8798 2016-04-28  Joern Rennecke  <joern.rennecke@embecosm.com>
8799             Andrew Burgess  <andrew.burgess@embecosm.com>
8801         * config/arc/arc.h (SYMBOL_FLAG_CMEM): Define.
8802         (TARGET_NPS_CMEM_DEFAULT): Provide default definition.
8803         * config/arc/arc.c (arc_address_cost): Return 0 for cmem_address.
8804         (arc_encode_section_info): Set SYMBOL_FLAG_CMEM where indicated.
8805         * config/arc/arc.opt (mcmem): New option.
8806         * config/arc/arc.md (*extendqihi2_i): Add r/Uex alternative,
8807         supply length for r/m alternative.
8808         (*extendqisi2_ac): Likewise.
8809         (*extendhisi2_i): Add r/Uex alternative, supply length for r/m and
8810         r/Uex alternative.
8811         (movqi_insn): Add r/Ucm and Ucm/?Rac alternatives.
8812         (movhi_insn): Likewise.
8813         (movsi_insn): Add r/Ucm,Ucm/w alternatives.
8814         (*zero_extendqihi2_i): Add r/Ucm alternative.
8815         (*zero_extendqisi2_ac): Likewise.
8816         (*zero_extendhisi2_i): Likewise.
8817         * config/arc/constraints.md (Uex): New memory constraint.
8818         (Ucm): New define_constraint.
8819         * config/arc/predicates.md (long_immediate_loadstore_operand):
8820         Return 0 for MEM with cmem_address address.
8821         (cmem_address_0): New predicates.
8822         (cmem_address_1): Likewise.
8823         (cmem_address_2): Likewise.
8824         (cmem_address): Likewise.
8826 2016-04-28  Segher Boessenkool  <segher@kernel.crashing.org>
8828         * config/rs6000/rs6000.c (machine_function): Rename
8829         insn_chain_scanned_p to spe_insn_chain_scanned_p.
8830         (rs6000_stack_info): Adjust.
8832 2016-04-28  Joern Rennecke  <joern.rennecke@embecosm.com>
8833             Andrew Burgess  <andrew.burgess@embecosm.com>
8835         * config/arc/constraints.md (Usd): Convert to define_constraint.
8836         (Us<): Likewise.
8837         (Us>): Likewise.
8839 2016-04-28  Jakub Jelinek  <jakub@redhat.com>
8841         PR target/70821
8842         * config/i386/sync.md (define_peephole2 *atomic_fetch_add_cmp<mode>):
8843         Add new peephole2 where the first insn is *mov<mode>_or instead of
8844         *mov<mode>_internal.
8846 2016-04-28  Segher Boesssenkool  <segher@kernel.crashing.org>
8848         * tracer.c (bb_seen): Make static.
8850 2016-04-28  Andrew Burgess  <andrew.burgess@embecosm.com>
8852         * common/config/arc/arc-common.c (arc_handle_option): Add NPS400
8853         support, setup defaults.
8854         * config/arc/arc-opts.h (enum processor_type): Add NPS400.
8855         * config/arc/arc.c (arc_init): Add NPS400 support.
8856         * config/arc/arc.h (CPP_SPEC): Add NPS400 defines.
8857         (TARGET_ARC700): NPS400 is also an ARC700.
8858         * config/arc/arc.opt: Add NPS400 options to -mcpu=.
8860 2016-04-28  Segher Boessenkool  <segher@kernel.crashing.org>
8862         PR target/70668
8863         * config/nds32/nds32.md (casesi): Don't access the operands array
8864         out of bounds.
8866 2016-04-28  Uros Bizjak  <ubizjak@gmail.com>
8868         * config/i386/i386.md (zeroing peephole2): Use general_reg_operand.
8869         (or $-1,reg peephole2): Ditto.
8870         (strict_low_part zeroing peephole2): Use SWI12 mode iterator.
8872 2016-04-28  Markus Trippelsdorf  <markus@trippelsdorf.de>
8874         * doc/extend.texi (Common Function Attributes) [optimize]:
8875         Discourage use of the optimize attribute.
8877 2016-04-28  Bill Seurer  <seurer@linux.vnet.ibm.com>
8879         * config/rs6000/rs6000-builtin.def (vec_adde): Change vec_adde to a
8880         special case builtin.
8881         * config/rs6000/rs6000-c.c (altivec_overloaded_builtins): Remove
8882         ALTIVEC_BUILTIN_VEC_ADDE.
8883         * config/rs6000/rs6000-c.c (altivec_resolve_overloaded_builtin): Add
8884         support for ALTIVEC_BUILTIN_VEC_ADDE.
8885         * config/rs6000/rs6000.c (altivec_init_builtins): Add definition
8886         for __builtin_vec_adde.
8888 2016-04-28  Jakub Jelinek  <jakub@redhat.com>
8890         * config/i386/i386.md (sse4_1_round<mode>2): Add avx512f alternative.
8891         * config/i386/sse.md (sse4_1_round<ssescalarmodesuffix>): Likewise.
8893 2016-04-28  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
8895         PR testsuite/70595
8896         * doc/sourcebuild.texi (Effective-Target Keywords, Other
8897         attributes): Document cilkplus_runtime.
8899 2016-04-28  Martin Jambor  <mjambor@suse.cz>
8901         * tree-cfg.c (verify_expr): Verify that local declarations belong to
8902         this function.  Call verify_expr on MEM_REFs and bases of other
8903         handled_components.
8905 2016-04-28  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
8907         * internal-fn.c (expand_arith_overflow): Convert preprocessor check
8908         for WORD_REGISTER_OPERATIONS to runtime check.
8910 2016-04-28  Claudiu Zissulescu  <claziss@synopsys.com>
8912         * config/arc/arc.h (ASM_SPEC): Pass mfpuda to assembler.
8914 2016-04-28  Claudiu Zissulescu  <claziss@synopsys.com>
8916         * config/arc/arc.c (arc_process_double_reg_moves): Fix for
8917         big-endian compilation.
8918         * config/arc/arc.md (addf3): Likewise.
8919         (subdf3): Likewise.
8920         (muldf3): Likewise.
8922 2016-04-28  Richard Biener  <rguenther@suse.de>
8924         PR tree-optimization/70840
8925         * match.pd: powi(-x, y) and powi(|x|,y) -> powi(x,y) if y is even;
8926         Fix pow(copysign(x, y), z) -> pow(x, z) and add powi variant;
8927         Mark x * pow(x,c) -> pow(x,c+1) commutative.
8928         Add powi(x,y) * powi(z,y) -> powi(x*z,y).
8930 2015-04-28  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
8932         * config/aarch64/aarch64.h (WORD_REGISTER_OPERATIONS): Define to 0
8933         and explain why in a comment.
8935 2016-04-28  Claudiu Zissulescu  <claziss@synopsys.com>
8937         * config/arc/arc.md (cpu_facility): Add fpx variant.
8938         (subdf3): Prohibit use reverse sub when assist operations option
8939         is enabled.
8940         * config/arc/fpx.md (subdf3_insn, *dsubh_peep2_insn): Allow drsub
8941         instructions only when FPX is enabled.
8942         * testsuite/gcc.target/arc/trsub.c: New test.
8944 2016-04-28  Uros Bizjak  <ubizjak@gmail.com>
8946         * config/i386/i386.md (*fop_<mode>_1_mixed): Do not check for
8947         mult_operator when calculating "type" attribute.
8948         (*fop_<mode>_1_i387): Ditto.
8949         (*fop_xf_1_i387): Ditto.
8950         (x87 stack loads peephole2): Add "reg = op (mem, reg)" peephole2.
8951         Use std::swap to swap operands.  Use RTL expressions to generate
8952         converted pattern.
8954 2016-04-28  Claudiu Zissulescu  <claziss@synopsys.com>
8955             Joern Rennecke  <joern.rennecke@embecosm.com>
8957         * config/arc/arc-protos.h (arc_legitimize_pic_address): Remove
8958         declaration.
8959         (emit_pic_move): Remove.
8960         (arc_eh_uses, insn_is_tls_gd_dispatch): Declare.
8961         * config/arc/arc.c (emit_pic_move): Removed.
8962         (TARGET_HAVE_TLS): Define.
8963         (arc_conditional_register_usage): Test for arc_tp_regno.
8964         (arc_print_operand, arc_print_operand_address): Handle TLS
8965         unspecs.
8966         (arc_needs_pcl_p): New function.
8967         (arc_legitimate_pc_offset_p): Use arc_needs_pcl_p.
8968         (arc_legitimate_pic_addr_p): Handle TLS unspecs.
8969         (arc_raw_symbolic_reference_mentioned_p): Likewise.
8970         (arc_get_tp, arc_emit_call_tls_get_addr): New function.
8971         (arc_legitimize_tls_address): Likewise.
8972         (DTPOFF_ZERO_SYM): Define.
8973         (arc_legitimize_pic_address): Make it static, handle TLS cases.
8974         (arc_output_pic_addr_const): Print TLS unspecs.
8975         (prepare_pic_move): New function, replaces emit_pic_move.
8976         (arc_legitimate_constant_p): Handle TLS unspecs.
8977         (arc_legitimate_address_p): Likewise.
8978         (arc_rewrite_small_data_p): Use assert for TLS constants.
8979         (prepare_move_operands): Use prepare_pic_move.
8980         (arc_legitimize_address): Legitimize tls addresses.
8981         (arc_epilogue_uses): Check for arc_tp_regno.
8982         (arc_eh_uses, insn_is_tls_gd_dispatch): New function.
8983         * config/arc/arc.h [DEFAULT_LIBC != LIBC_UCLIBC] (EXTRA_SPECS):
8984         Define.
8985         [DEFAULT_LIBC != LIBC_UCLIBC] (ARC_TLS_EXTRA_START_SPEC):
8986         Likewise.
8987         [DEFAULT_LIBC != LIBC_UCLIBC] (STARTFILE_SPEC): Add
8988         %(arc_tls_extra_start_spec).
8989         (TARGET_CPU_CPP_BUILTINS): Define __ARC_TLS_REGNO__.
8990         (REGNO_OK_FOR_BASE_P): Check for arc_tp_regno.
8991         (EH_USES): Define.
8992         (INSN_REFERENCES_ARE_DELAYED): Use insn_is_tls_gd_dispatch.
8993         * config/arc/arc.md (UNSPEC_TLS_GD, UNSPEC_TLS_LD, UNSPEC_TLS_IE)
8994         (UNSPEC_TLS_OFF): Add.
8995         (R10_REG): Define.
8996         (tls_load_tp_soft, tls_gd_load, tls_gd_get_addr, tls_gd_dispatch)
8997         (get_thread_pointersi): New patterns.
8998         * config/arc/arc.opt (mtp-regno): New option.
8999         * config/arc/predicates.md (move_src_operand): Handle TLS symbols.
9000         (move_dest_operand): Likewise.
9001         * configure: Regenerate.
9002         * configure.ac: Add arc*-*-* case to test for tls.
9003         * doc/invoke.texi (ARC options): Document mtp-regno.
9005 2016-04-28  Claudiu Zissulescu  <claziss@synopsys.com>
9007         * config/arc/arc.c (arc_vector_mode_supported_p): Add support for
9008         the new ARC HS SIMD instructions.
9009         (arc_preferred_simd_mode): New function.
9010         (arc_autovectorize_vector_sizes): Likewise.
9011         (TARGET_VECTORIZE_PREFERRED_SIMD_MODE)
9012         (TARGET_VECTORIZE_AUTOVECTORIZE_VECTOR_SIZES): Define.
9013         (arc_init_reg_tables): Accept new ARC HS SIMD modes.
9014         (arc_init_builtins): Add new SIMD builtin types.
9015         (arc_split_move): Handle 64 bit vector moves.
9016         * config/arc/arc.h (TARGET_PLUS_DMPY, TARGET_PLUS_MACD)
9017         (TARGET_PLUS_QMACW): Define.
9018         * config/arc/builtins.def (QMACH, QMACHU, QMPYH, QMPYHU, DMACH)
9019         (DMACHU, DMPYH, DMPYHU, DMACWH, DMACWHU, VMAC2H, VMAC2HU, VMPY2H)
9020         (VMPY2HU, VADDSUB2H, VSUBADD2H, VADDSUB, VSUBADD, VADDSUB4H)
9021         (VSUBADD4H): New builtins.
9022         * config/arc/simdext.md: Add new ARC HS SIMD instructions.
9023         * testsuite/gcc.target/arc/builtin_simdarc.c: New file.
9025 2016-04-28  Eduard Sanou  <dhole@openmailbox.org>
9026             Matthias Klose  <doko@debian.org>
9028         * doc/cppenv.texi: Document SOURCE_DATE_EPOCH environment variable.
9030 2016-04-28  Richard Biener  <rguenther@suse.de>
9032         PR middle-end/70777
9033         * fold-const.c (fold_binary_loc): Remove x*x to pow(x,2.0)
9034         canonicalization.
9036 2016-04-28  Oleg Endo  <olegendo@gcc.gnu.org>
9038         * common/config/sh/sh-common.c: Remove SH5 support.
9039         * config/sh/constraints.md: Likewise.
9040         * config/sh/config/sh/elf.h: Likewise.
9041         * config/sh/linux.h: Likewise.
9042         * config/sh/netbsd-elf.h: Likewise.
9043         * config/sh/predicates.md: Likewise.
9044         * config/sh/sh-c.c: Likewise.
9045         * config/sh/sh-protos.h: Likewise.
9046         * config/sh/sh.c: Likewise.
9047         * config/sh/sh.h: Likewise.
9048         * config/sh/sh.md: Likewise.
9049         * config/sh/sh.opt: Likewise.
9050         * config/sh/sync.md: Likewise.
9051         * config/sh/sh64.h: Delete.
9052         * config/sh/shmedia.h: Likewise.
9053         * config/sh/shmedia.md: Likewise.
9054         * config/sh/sshmedia.h: Likewise.
9055         * config/sh/t-netbsd-sh5-64: Likewise.
9056         * config/sh/t-sh64: Likewise.
9057         * config/sh/ushmedia.h: Likewise.
9059 2016-04-28  Uros Bizjak  <ubizjak@gmail.com>
9061         * config/i386/i386.md (sign_extend to memory peephole2s): Use
9062         general_reg_operand instead of register_operand predicate.
9064 2016-04-27  Prathamesh Kulkarni  <prathamesh.kulkarni@linaro.org>
9066         * params.def (MIN_PARTITION_SIZE): Set default value to 10000.
9068 2016-04-27  Marc Glisse  <marc.glisse@inria.fr>
9070         * match.pd (A - B > A, A + B < A): New transformations.
9072 2016-04-27  Patrick Palka  <ppalka@gcc.gnu.org>
9074         * genattrtab.c (write_test_expr): New parameter EMIT_PARENS
9075         which defaults to true.  Emit an outer pair of parentheses only if
9076         EMIT_PARENS.  When continuing a chain of && or || (or & or |),
9077         don't emit parentheses for the right-hand operand.
9079 2016-04-27  Jeff Law  <law@redhat.com>
9081         * tree-ssa-dom.c (record_temporary_equivalences): Fix typo in comment.
9083 2016-04-27  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
9085         * config/rs6000/altivec.md (altivec_lvx_<mode>): Remove.
9086         (altivec_lvx_<mode>_internal): Document.
9087         (altivec_lvx_<mode>_2op): New define_insn.
9088         (altivec_lvx_<mode>_1op): Likewise.
9089         (altivec_lvx_<mode>_2op_si): Likewise.
9090         (altivec_lvx_<mode>_1op_si): Likewise.
9091         (altivec_stvx_<mode>): Remove.
9092         (altivec_stvx_<mode>_internal): Document.
9093         (altivec_stvx_<mode>_2op): New define_insn.
9094         (altivec_stvx_<mode>_1op): Likewise.
9095         (altivec_stvx_<mode>_2op_si): Likewise.
9096         (altivec_stvx_<mode>_1op_si): Likewise.
9097         * config/rs6000/rs6000-c.c (altivec_resolve_overloaded_builtin):
9098         Expand vec_ld and vec_st during parsing.
9099         * config/rs6000/rs6000.c (altivec_expand_lvx_be): Commentary
9100         changes.
9101         (altivec_expand_stvx_be): Likewise.
9102         (altivec_expand_lv_builtin): Expand lvx built-ins to expose the
9103         address-masking behavior in RTL.
9104         (altivec_expand_stv_builtin): Expand stvx built-ins to expose the
9105         address-masking behavior in RTL.
9106         (altivec_expand_builtin): Change builtin code arguments for calls
9107         to altivec_expand_stv_builtin and altivec_expand_lv_builtin.
9108         (insn_is_swappable_p): Avoid incorrect swap optimization in the
9109         presence of lvx/stvx patterns.
9110         (alignment_with_canonical_addr): New function.
9111         (alignment_mask): Likewise.
9112         (find_alignment_op): Likewise.
9113         (recombine_lvx_pattern): Likewise.
9114         (recombine_stvx_pattern): Likewise.
9115         (recombine_lvx_stvx_patterns): Likewise.
9116         (rs6000_analyze_swaps): Perform a pre-pass to recognize lvx and
9117         stvx patterns from expand.
9118         * config/rs6000/vector.md (vector_altivec_load_<mode>): Use new
9119         expansions.
9120         (vector_altivec_store_<mode>): Likewise.
9122 2016-04-26  Evandro Menezes  <e.menezes@samsung.com>
9124         * config/aarch64/aarch64.md
9125         (*movhf_aarch64): Add "movi %0, #0" to zero up register and
9126         remove the "fp" attributes.
9127         (*movsf_aarch64): Add "movi %0, #0" to zero up register and
9128         add the "simd" attributes.
9129         (*movdf_aarch64): Likewise.
9130         (*movtf_aarch64): Remove the "fp" attributes.
9131         * testsuite/gcc.target/aarch64/fmovf-zero-reg.c: Update accordingly.
9132         * testsuite/gcc.target/aarch64/fmovd-zero-reg.c: Likewise.
9134 2016-04-27  David Malcolm  <dmalcolm@redhat.com>
9136         * emit-rtl.c (maybe_set_first_label_num): Strengthen param from
9137         rtx to rtx_code_label *.
9138         * rtl.h (maybe_set_first_label_num): Likewise.
9140 2016-04-27  David Malcolm  <dmalcolm@redhat.com>
9142         * df-core.c (df_add_problem): Make the problem param be const.
9143         (df_remove_problem): Make local "problem" be const.
9144         * df-problems.c (problem_RD): Make const.
9145         (problem_LR): Likewise.
9146         (problem_LIVE): Likewise.
9147         (problem_MIR): Likewise.
9148         (problem_CHAIN): Likewise.
9149         (problem_WORD_LR): Likewise.
9150         (problem_NOTE): Likewise.
9151         (problem_MD): Likewise.
9152         * df-scan.c (problem_SCAN): Likewise.
9153         * df.h (struct df_problem): Make field "dependent_problem" be
9154         const.
9155         (struct dataflow): Likewise for field "problem".
9156         (df_add_problem): Make param const.
9158 2016-04-27  Uros Bizjak  <ubizjak@gmail.com>
9160         * config/i386/i386.c (ix86_spill_class): Enable for TARGET_SSE2 when
9161         inter-unit moves to/from vector registers are enabled.  Do not disable
9162         for TARGET_MMX.
9164 2016-04-27  David Malcolm  <dmalcolm@redhat.com>
9166         * df.h (DF_SCAN, DF_LR, DF_LIVE, DF_RD, DF_CHAIN, DF_WORD_LR,
9167         DF_NOTE, DF_MD, DF_MIR, DF_LAST_PROBLEM_PLUS1): Convert from
9168         #define to...
9169         (enum df_problem_id): ...this new enum.
9170         (struct df_problem): Convert field "id" from "int" to
9171         enum df_problem_id.
9173 2016-04-27  David Malcolm  <dmalcolm@redhat.com>
9175         * rtl.def: Update comment for "things in the instruction chain" to
9176         reflect the removal of the leading "i" field for INSN_UID in
9177         r210360.  Fix bogus apostrophe.
9179 2016-04-27  Uros Bizjak  <ubizjak@gmail.com>
9181         * config/i386/i386.md
9182         (lea arith with mem operand + setcc peephole2): Set operator mode.
9184 2016-04-27  H.J. Lu  <hongjiu.lu@intel.com>
9186         PR target/70155
9187         * config/i386/i386.c (scalar_to_vector_candidate_p): Renamed to ...
9188         (dimode_scalar_to_vector_candidate_p): This.
9189         (timode_scalar_to_vector_candidate_p): New function.
9190         (scalar_to_vector_candidate_p): Likewise.
9191         (timode_check_non_convertible_regs): Likewise.
9192         (timode_remove_non_convertible_regs): Likewise.
9193         (remove_non_convertible_regs): Likewise.
9194         (remove_non_convertible_regs): Renamed to ...
9195         (dimode_remove_non_convertible_regs): This.
9196         (scalar_chain::~scalar_chain): Make it virtual.
9197         (scalar_chain::compute_convert_gain): Make it pure virtual.
9198         (scalar_chain::mark_dual_mode_def): Likewise.
9199         (scalar_chain::convert_insn): Likewise.
9200         (scalar_chain::convert_registers): Likewise.
9201         (scalar_chain::add_to_queue): Make it protected.
9202         (scalar_chain::emit_conversion_insns): Likewise.
9203         (scalar_chain::replace_with_subreg): Likewise.
9204         (scalar_chain::replace_with_subreg_in_insn): Likewise.
9205         (scalar_chain::convert_op): Likewise.
9206         (scalar_chain::convert_reg): Likewise.
9207         (scalar_chain::make_vector_copies): Likewise.
9208         (scalar_chain::convert_registers): New pure virtual function.
9209         (class dimode_scalar_chain): New class.
9210         (class timode_scalar_chain): Likewise.
9211         (scalar_chain::mark_dual_mode_def): Renamed to ...
9212         (dimode_scalar_chain::mark_dual_mode_def): This.
9213         (timode_scalar_chain::mark_dual_mode_def): New function.
9214         (timode_scalar_chain::convert_insn): Likewise.
9215         (dimode_scalar_chain::convert_registers): Likewise.
9216         (scalar_chain::compute_convert_gain): Renamed to ...
9217         (dimode_scalar_chain::compute_convert_gain): This.
9218         (scalar_chain::replace_with_subreg): Renamed to ...
9219         (dimode_scalar_chain::replace_with_subreg): This.
9220         (scalar_chain::replace_with_subreg_in_insn): Renamed to ...
9221         (dimode_scalar_chain::replace_with_subreg_in_insn): This.
9222         (scalar_chain::make_vector_copies): Renamed to ...
9223         (dimode_scalar_chain::make_vector_copies): This.
9224         (scalar_chain::convert_reg): Renamed to ...
9225         (dimode_scalar_chain::convert_reg ): This.
9226         (scalar_chain::convert_op): Renamed to ...
9227         (dimode_scalar_chain::convert_op): This.
9228         (scalar_chain::convert_insn): Renamed to ...
9229         (dimode_scalar_chain::convert_insn): This.
9230         (scalar_chain::convert): Call convert_registers.
9231         (convert_scalars_to_vector): Change to scalar_chain pointer to
9232         use timode_scalar_chain in 64-bit mode and dimode_scalar_chain
9233         in 32-bit mode.  Delete scalar_chain pointer.  Call
9234         free_dominance_info in 64-bit mode.
9235         (pass_stv::gate): Remove TARGET_64BIT check.
9236         (ix86_option_override): Put the 64-bit STV pass before the CSE
9237         pass.
9239 2016-04-27  Pierre-Marie de Rodat  <derodat@adacore.com>
9241         * dwarf2out.h (struct dw_loc_descr_node): Remove the
9242         dw_loc_frame_offset field.
9243         * dwarf2out.c (new_loc_descr): Likewise.
9244         (resolve_args_picking_1): Turn the VISITED hash set into a
9245         FRAME_OFFSET hash map. Use it to associate a frame offset to
9246         visited nodes. Remove uses of the CHECKING_P macro.
9247         (resolve_args_picking): Update call to resolve_args_picking_1.
9249 2016-04-27  Martin Liska  <mliska@suse.cz>
9251         * tree-ssa-loop-ivopts.c (iv_ca_dump): Fix level of indentation.
9252         (free_loop_data): Release vuses of groups.
9254 2016-04-27  Bin Cheng  <bin.cheng@arm.com>
9256         * tree-ssa-loop-ivopts.c (struct iv): Use pointer to struct iv_use
9257         instead of redundant use_id and boolean have_use_for.
9258         (struct iv_use): Change sub_id into group_id.  Remove field next.
9259         Move fields: related_cands, n_map_members, cost_map and selected
9260         to ...
9261         (struct iv_group): ... here.  New structure.
9262         (struct iv_common_cand): Use structure declaration directly.
9263         (struct ivopts_data, iv_ca, iv_ca_delta): Rename fields.
9264         (MAX_CONSIDERED_USES): Rename macro to ...
9265         (MAX_CONSIDERED_GROUPS): ... here.
9266         (n_iv_uses, iv_use, n_iv_cands, iv_cand): Delete.
9267         (dump_iv, dump_use, dump_cand): Refactor format of dump information.
9268         (dump_uses): Rename to ...
9269         (dump_groups): ... here.  Update all uses.
9270         (tree_ssa_iv_optimize_init, alloc_iv): Update all uses.
9271         (find_induction_variables): Refactor format of dump information.
9272         (record_sub_use): Delete.
9273         (record_use): Update all uses.
9274         (record_group): New function.
9275         (record_group_use, find_interesting_uses_op): Call above functions.
9276         Update all uses.
9277         (find_interesting_uses_cond): Ditto.
9278         (group_compare_offset): New function.
9279         (split_all_small_groups): Rename to ...
9280         (split_small_address_groups_p): ... here.  Update all uses.
9281         (split_address_groups):  Update all uses.
9282         (find_interesting_uses): Refactor format of dump information.
9283         (add_candidate_1): Update all uses.  Remove redundant check on iv,
9284         base and step.
9285         (add_candidate, record_common_cand): Remove redundant assert.
9286         (add_iv_candidate_for_biv): Update use.
9287         (add_iv_candidate_derived_from_uses): Update all uses.
9288         (add_iv_candidate_for_groups, record_important_candidates): Ditto.
9289         (alloc_use_cost_map): Ditto.
9290         (set_use_iv_cost, get_use_iv_cost): Rename to ...
9291         (set_group_iv_cost, get_group_iv_cost): ... here.  Update all uses.
9292         (determine_use_iv_cost_generic): Ditto.
9293         (determine_group_iv_cost_generic): Ditto.
9294         (determine_use_iv_cost_address): Ditto.
9295         (determine_group_iv_cost_address): Ditto.
9296         (determine_use_iv_cost_condition): Ditto.
9297         (determine_group_iv_cost_cond): Ditto.
9298         (determine_use_iv_cost): Ditto.
9299         (determine_group_iv_cost): Ditto.
9300         (set_autoinc_for_original_candidates): Update all uses.
9301         (find_iv_candidates): Update all uses.  Refactor dump information.
9302         (determine_use_iv_costs): Ditto.
9303         (determine_iv_costs): Ditto.
9304         (iv_ca_cand_for_use): Rename to ...
9305         (iv_ca_cand_for_group): ... here.  Update all uses.
9306         (iv_ca_add_use, iv_ca_add_group): Ditto.
9307         (iv_ca_set_cp, iv_ca_cost, iv_ca_delta_add): Update all uses.
9308         (iv_ca_delta_join, iv_ca_delta_reverse, iv_ca_delta_free): Ditto.
9309         (iv_ca_new, iv_ca_dump, iv_ca_extend, iv_ca_narrow): Ditto.
9310         (iv_ca_prune, cheaper_cost_with_cand, iv_ca_replace): Ditto.
9311         (try_add_cand_for, try_improve_iv_set, find_optimal_iv_set): Ditto.
9312         (create_new_iv, adjust_iv_update_pos): Ditto.
9313         (rewrite_use_address): Delete.
9314         (rewrite_use_address_1): Rename to ...
9315         (rewrite_use_address): ... here.
9316         (rewrite_use_compare): Update all uses.
9317         (rewrite_use): Delete.
9318         (rewrite_uses): Rename to ...
9319         (rewrite_groups): ... here.  Update all uses.
9320         (remove_unused_ivs, free_loop_data): Update all uses.
9321         (tree_ssa_iv_optimize_finalize, tree_ssa_iv_optimize_loop): Ditto.
9323 2016-04-27  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
9325         * rtlanal.c (nonzero_bits1): Convert preprocessor check
9326         for WORD_REGISTER_OPERATIONS to runtime check.
9328 2016-04-27  Richard Biener  <rguenther@suse.de>
9330         PR ipa/70760
9331         * tree-ssa-structalias.c (find_func_aliases_for_call): Use
9332         aggregate_value_p to determine if a function result is
9333         returned by reference.
9334         (ipa_pta_execute): Functions having their address taken are
9335         not automatically nonlocal.
9337 2016-04-27  Jakub Jelinek  <jakub@redhat.com>
9339         PR sanitizer/70683
9340         * tree-core.h (enum operand_equal_flag): Add OEP_NO_HASH_CHECK.
9341         * fold-const.c (operand_equal_p): If flag_checking and
9342         OEP_NO_HASH_CHECK is not set in flag, recurse with OEP_NO_HASH_CHECK
9343         and if it returns non-zero, assert iterative_hash_expr on both
9344         args is the same.
9346 2016-04-27  Bernd Schmidt  <bschmidt@redhat.com>
9348         * doc/invoke.texi (-frename-registers): Also enabled at -Os.
9350 2016-04-27  Nick Clifton  <nickc@redhat.com>
9352         PR middle-end/49889
9353         * varasm.c (merge_weak): Generate an error if an attempt is made
9354         to convert a non-weak static function into a weak, public function.
9356 2016-04-27  Prathamesh Kulkarni  <prathamesh.kulkarni@linaro.org>
9358         * params.def (MAX_PARTITION_SIZE): New param.
9359         * doc/invoke.texi: Document lto-max-partition.
9361 2016-04-27  Richard Biener  <rguenther@suse.de>
9363         PR ipa/70785
9364         * tree-ssa-structalias.c (refered_from_nonlocal_fn): New
9365         function cummulating used_from_other_partition, externally_visible
9366         and force_output from aliases.
9367         (refered_from_nonlocal_var): Likewise.
9368         (ipa_pta_execute): Use call_for_symbol_and_aliases to cummulate
9369         node flags properly.
9371 2016-04-27  Bernd Schmidt  <bschmidt@redhat.com>
9373         * doc/invoke.texi (Warning Options): Add -Wmemset-elt-size.
9374         (-Wmemset-elt-size): New item.
9376 2016-04-27  Eric Botcazou  <ebotcazou@adacore.com>
9378         PR ada/70759
9379         * stor-layout.h (internal_reference_types): Delete.
9380         * stor-layout.c (reference_types_internal): Likewise.
9381         (internal_reference_types): Likewise.
9382         (layout_type) <REFERENCE_TYPE>: Adjust.
9384 2016-04-27  Jakub Jelinek  <jakub@redhat.com>
9386         PR sanitizer/70683
9387         * tree.h (inchash::add_expr): Add FLAGS argument.
9388         * tree.c (inchash::add_expr): Likewise.  If not OEP_ADDRESS_OF,
9389         use STRIP_NOPS first.  For INTEGER_CST assert not OEP_ADDRESS_OF.
9390         For REAL_CST and !HONOR_SIGNED_ZEROS (t) hash +/- 0 the same.
9391         Formatting fix.  Adjust recursive calls.  For tcc_comparison,
9392         if swap_tree_comparison (code) is smaller than code, hash that
9393         and arguments in the other order.  Hash CONVERT_EXPR the same
9394         as NOP_EXPR.  For OEP_ADDRESS_OF hash MEM_REF with 0 offset
9395         of ADDR_EXPR of decl as the decl itself.  Add or remove
9396         OEP_ADDRESS_OF from recursive flags as needed.  For
9397         FMA_EXPR, WIDEN_MULT_{PLUS,MINUS}_EXPR hash the first two
9398         operands commutatively and only the third one normally.
9399         For internal CALL_EXPR hash in CALL_EXPR_IFN.
9401 2016-04-27  Sebastian Huber  <sebastian.huber@embedded-brains.de>
9403         * config/rtems.h (LIB_SPEC): Add -latomic.
9405 2016-04-27  Joel Sherrill  <joel@rtems.org>
9407         * config/microblaze/rtems.h: Redefine LINK_SPEC to avoid
9408         xilink.ld and flags not relevant to RTEMS.
9410 2016-04-26  Zhouyi Zhou  <yizhouzhou@ict.ac.cn>
9412         * toplev.c (backend_init_target): Avoid calling init_reload when using
9413         LRA.
9415 2016-04-26  Jakub Jelinek  <jakub@redhat.com>
9417         * reorg.c (try_merge_delay_insns): Declare i and j inside the
9418         for loops rather than one for the whole function.
9420 2016-04-26  Marc Glisse  <marc.glisse@inria.fr>
9422         * match.pd (X + CST CMP X): New transformation.
9424 2016-04-26  Marc Glisse  <marc.glisse@inria.fr>
9426         * genmatch.c (write_predicate): Add ATTRIBUTE_UNUSED.
9427         * fold-const.c (fold_binary_loc): Remove 2 transformations
9428         superseded by match.pd.
9429         * match.pd (x+x -> x*2): Generalize to integers.
9431 2016-04-26  Bernd Schmidt  <bschmidt@redhat.com>
9433         * config/i386/i386.md (operation on memory peephole): Duplicate an
9434         existing peephole and adapt it to match lea rather than an operation
9435         that clobbers CC.
9437         PR rtl-optimization/57193
9438         * opts.c (default_options_table): Add OPT_frename_registers at -O2
9439         and above.
9440         * doc/invoke.texi (-frename-registers, -O2): Update documentation.
9442 2016-04-26  Bin Cheng  <bin.cheng@arm.com>
9444         * tree-if-conv.c (any_pred_load_store): New static variable.
9445         (if_convertible_gimple_assign_stmt_p): Remove parameter.  Use
9446         any_pred_load_store instead of and_mask_load_store.
9447         (if_convertible_stmt_p, if_convertible_loop_p_1): Ditto.
9448         (if_convertible_loop_p, insert_gimplified_predicates): Ditto.
9449         (combine_blocks, tree_if_conversion): Ditto.
9451 2016-04-26  Bin Cheng  <bin.cheng@arm.com>
9453         PR tree-optimization/70771
9454         PR tree-optimization/70775
9455         * tree-if-conv.c (if_convertible_phi_p): Remove check on special
9456         virtual PHI nodes.  Delete parameter.
9457         (if_convertible_loop_p_1): Delete argument to above function.
9458         (predicate_all_scalar_phis): Delete code handling single-argument
9459         PHIs.
9460         (tree_if_conversion): Mark and update virtual SSA.
9462 2016-04-26  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
9464         PR target/61821
9465         * config/i386/i386.c (LARGECOMM_SECTION_ASM_OP): Define default.
9466         (x86_elf_aligned_common): Rename to ...
9467         (x86_elf_aligned_decl_common): ... this.
9468         Add decl arg.  Switch to .lbss for largecomm object.  Use
9469         LARGECOMM_SECTION_ASM_OP.
9470         * config/i386/i386-protos.h (x86_elf_aligned_common): Reflect
9471         renaming.
9472         * config/i386/x86-64.h (ASM_OUTPUT_ALIGNED_COMMON): Rename to ...
9473         (ASM_OUTPUT_ALIGNED_DECL_COMMON): ... this.
9474         Pass new decl arg.
9475         * config/i386/sol2.h (ASM_OUTPUT_ALIGNED_COMMON): Likewise.
9476         [!USE_GAS] (LARGECOMM_SECTION_ASM_OP): Define.
9478 2016-04-26  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
9480         PR target/59407
9481         * config/i386/i386.c (SECTION_LARGE): Define.
9482         (x86_64_elf_select_section): Set it for large data/bss sections.
9483         Only clear SECTION_WRITE for .lrodata.
9484         (x86_64_elf_section_type_flags): Set SECTION_LARGE for large
9485         data/bss sections.
9486         * config/i386/sol2.h (MACH_DEP_SECTION_ASM_FLAG): Define.
9487         * varasm.c (default_elf_asm_named_section): Grow flagchars.
9488         [MACH_DEP_SECTION_ASM_FLAG] Emit MACH_DEP_SECTION_ASM_FLAG for
9489         SECTION_MACH_DEP.
9490         * doc/tm.texi.in (Sections, MACH_DEP_SECTION_ASM_FLAG): Describe.
9491         * doc/tm.texi: Regenerate.
9493 2016-04-26  Jakub Jelinek  <jakub@redhat.com>
9495         PR bootstrap/70704
9496         * configure.ac (--enable-checking): Document extra flag, for
9497         non-release builds default to --enable-checking=yes,extra.
9498         If misc checking and extra checking, define CHECKING_P to 2 instead
9499         of 1.
9500         * common.opt (fchecking=): Add.
9501         * doc/invoke.texi (-fchecking=): Document.
9502         * doc/install.texi: Document --enable-checking changes.
9503         * configure: Regenerated.
9504         * config.in: Regenerated.
9506 2016-04-25  Uros Bizjak  <ubizjak@gmail.com>
9508         * config/i386/i386.md (*movxi_internal_avx512f): Use insn type
9509         attribute instead of which_alternative.
9510         * config/i386/sse.md (*mov<mode>_internal): Ditto.
9511         Use EXT_REX_SSE_REG_P where appropriate.
9513 2016-04-25  Uros Bizjak  <ubizjak@gmail.com>
9515         * config/i386/predicates.md (const0_operand): Do not match
9516         const_wide_int code.
9517         (const1_operand): Ditto.
9519 2016-04-25  Uros Bizjak  <ubizjak@gmail.com>
9521         * config/i386/i386.md (*movoi_internal_avx): Set mode attribute to XI
9522         for SSE constm1 operands and TARGET_AVX512VL.
9523         (*movti_internal): Ditto.
9524         (*mov<mode>_or): Use constm1_operand predicate.
9525         * config/i386/sse.md (*mov<mode>_internal): Set mode attribute to XI
9526         for SSE vector_all_ones operands and TARGET_AVX512VL.
9527         * config/i386/predicates.md (constm1_operand): New predicate.
9528         * config/i386/i386.c (standard_sse_constant_opcode): Simplify
9529         emission of constant -1 load.
9531 2016-04-25  Jason Merrill  <jason@redhat.com>
9533         * gdbinit.in: Skip is-a.h.
9535         * attribs.c (register_scoped_attributes): Fix logic.
9536         * attribs.h: Declare register_scoped_attributes.
9538 2016-04-25  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
9540         * config/rs6000/rs6000-builtin.def: Correct pasto error for
9541         stxvd2x and stxvw4x built-in functions.
9543 2016-04-25  DJ Delorie  <dj@redhat.com>
9545         * config/msp430/msp430.md (ashlhi3): Optimize one bit shifts.
9546         (ashrhi3): Likewise.
9547         (lshrhi3): Likewise.
9549 2016-04-25  Richard Biener  <rguenther@suse.de>
9551         PR tree-optimization/70780
9552         * tree-ssa-pre.c (compute_antic_aux): Also return true if the block
9553         wasn't visited yet.
9554         (compute_antic): Mark blocks with abnormal preds as visited as
9555         they have a final empty antic-in solution already.
9557 2016-04-25  Michael Collison  <michael.collison@linaro.org>
9559         * ChangeLog(2016-04-25): Fix ChangeLog formatting.
9561 2016-04-25  Michael Collison  <michael.collison@linaro.org>
9563         * config/arm/neon.md (widen_<us>sum<mode>): New patterns where
9564         mode is VQI to improve mixed mode vectorization.
9565         * config/arm/neon.md (vec_sel_widen_ssum_lo<VQI:mode><VW:mode>3): New
9566         define_insn to match low half of signed vaddw.
9567         * config/arm/neon.md (vec_sel_widen_ssum_hi<VQI:mode><VW:mode>3): New
9568         define_insn to match high half of signed vaddw.
9569         * config/arm/neon.md (vec_sel_widen_usum_lo<VQI:mode><VW:mode>3): New
9570         define_insn to match low half of unsigned vaddw.
9571         * config/arm/neon.md (vec_sel_widen_usum_hi<VQI:mode><VW:mode>3): New
9572         define_insn to match high half of unsigned vaddw.
9573         * config/arm/arm.c (arm_simd_vect_par_cnst_half): New function.
9574         (arm_simd_check_vect_par_cnst_half_p): Likewise.
9575         * config/arm/arm-protos.h (arm_simd_vect_par_cnst_half): Prototype
9576         for new function.
9577         (arm_simd_check_vect_par_cnst_half_p): Likewise.
9578         * config/arm/predicates.md (vect_par_constant_high): Support
9579         big endian and simplify by calling
9580         arm_simd_check_vect_par_cnst_half
9581         (vect_par_constant_low): Likewise.
9583 2016-04-25  Uros Bizjak  <ubizjak@gmail.com>
9585         * config/i386/i386.md (*lea<mode>_general_4): Use const_0_to_3_operand
9586         predicate for operand 2.
9588 2016-04-24  Uros Bizjak  <ubizjak@gmail.com>
9589             H.J. Lu  <hongjiu.lu@intel.com>
9591         * config/i386/i386-protos.h (standard_sse_constant_p): Add
9592         machine_mode argument.
9593         * config/i386/i386.c (standard_sse_constant_p): Return 2 for
9594         constm1_rtx operands.  For VOIDmode constants, get mode from
9595         pred_mode.  Check mode size if the mode is supported by ABI.
9596         (standard_sse_constant_opcode): Do not use standard_constant_p.
9597         Strictly check ABI support for all-ones operands.
9598         (ix86_legitimate_constant_p): Handle TImode, OImode and XImode
9599         immediates. Update calls to standard_sse_constant_p.
9600         (ix86_expand_vector_move): Update calls to standard_sse_constant_p.
9601         (ix86_rtx_costs): Ditto.
9602         * config/i386/i386.md (*movxi_internal_avx512f): Use
9603         nonimmediate_or_sse_const_operand instead of vector_move_operand.
9604         Use (v,BC) alternative instead of (v,C). Use register_operand
9605         checks instead of MEM_P.
9606         (*movoi_internal_avx): Use nonimmediate_or_sse_const_operand instead
9607         of vector_move_operand.  Add (v,BC) alternative and corresponding avx2
9608         isa attribute.  Use register_operand checks instead of MEM_P.
9609         (*movti_internal): Use nonimmediate_or_sse_const_operand for
9610         TARGET_SSE.  Improve TARGET_SSE insn constraint.  Add (v,BC)
9611         alternative and corresponding sse2 isa attribute.
9612         (*movtf_internal, *movdf_internal, *movsf_interal): Update calls
9613         to standard_sse_constant_p.
9614         (FP constant splitters): Ditto.
9615         * config/i386/constraints.md (BC): Do not use standard_sse_constant_p.
9616         (C): Ditto.
9617         * config/i386/predicates.md (constm1_operand): Remove.
9618         (nonimmediate_or_sse_const_operand): Rewrite using RTX.
9619         * config/i386/sse.md (*<avx512>_cvtmask2<ssemodesuffix><mode>): Use
9620         vector_all_ones_operand instead of constm1_operand.
9622 2016-04-24  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
9624         * print-rtl.c (print_rtx_insn_vec): New function.
9625         * print-rtl.h: New prototype.
9626         * store-motion.c (struct st_expr): Make avail_stores a vector.
9627         (st_expr_entry): Adjust.
9628         (free_st_expr_entry): Likewise.
9629         (print_store_motion_mems): Likewise.
9630         (find_moveable_store): Likewise.
9631         (compute_store_table): Likewise.
9632         (delete_store): Likewise.
9633         (build_store_vectors): Likewise.
9635 2016-04-24  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
9637         * reorg.c (try_merge_delay_insns): Make merged_insns a vector.
9639 2016-04-24  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
9641         * vec.h (vec_safe_contains): New function.
9642         (vec::contains): Likewise.
9643         (vec::begin): Likewise.
9644         (vec::end): Likewise.
9646 2016-04-23  Jakub Jelinek  <jakub@redhat.com>
9648         PR sanitizer/70712
9649         * cfgexpand.c (expand_stack_vars): Fix typo.
9651 2016-04-22  Szabolcs Nagy  <szabolcs.nagy@arm.com>
9653         * system.h (list, map, set, vector): Include conditionally.
9654         * auto-profile.c (INCLUDE_MAP, INCLUDE_SET): Define.
9655         * graphite-isl-ast-to-gimple.c (INCLUDE_MAP): Define.
9656         * ipa-icf.c (INCLUDE_LIST): Define.
9657         * config/aarch64/cortex-a57-fma-steering.c (INCLUDE_LIST): Define.
9658         * config/sh/sh.c (INCLUDE_VECTOR): Define.
9659         * config/sh/sh_treg_combine.cc (INCLUDE_ALGORITHM): Define.
9660         (INCLUDE_LIST, INCLUDE_VECTOR): Define.
9661         * cp/logic.cc (INCLUDE_LIST): Define.
9662         * fortran/trans-common.c (INCLUDE_MAP): Define.
9664 2016-04-22  Szabolcs Nagy  <szabolcs.nagy@arm.com>
9666         * auto-profile.c: Remove <string.h> include.
9667         * ipa-icf-gimple.c: Remove <list> include.
9668         * diagnostic.c: Remove <new> include.
9669         * genmatch.c: Likewise.
9670         * pretty-print.c: Likewise.
9671         * toplev.c: Likewise
9672         * c/c-objc-common.c: Likewise.
9673         * cp/error.c: Likewise.
9674         * fortran/error.c: Likewise.
9676 2016-04-22  Richard Biener  <rguenther@suse.de>
9678         * lto-streamer-in.c (input_ssa_names): Do not allocate
9679         GIMPLE_NOP for all SSA names.
9680         * lto-streamer-out.c (output_ssa_names): Do not output
9681         SSA names that should have been released.
9683 2016-04-22  Richard Biener  <rguenther@suse.de>
9685         PR tree-optimization/70740
9686         * tree-ssa-phiprop.c (propagate_with_phi): Handle inserted
9687         VDEF.
9689 2016-04-21  H.J. Lu  <hongjiu.lu@intel.com>
9691         PR target/70750
9692         * config/i386/predicates.md (call_insn_operand): Replace
9693         sibcall_memory_operand with memory_operand.
9695 2016-04-21  Patrick Palka  <ppalka@gcc.gnu.org>
9697         * tree-vrp.c (register_edge_assert_for_2): Remove redundant
9698         has_single_use() tests.
9699         (register_edge_assert_for_1): Likewise.
9700         (find_assert_locations_1): Check the liveness bitmap instead of
9701         checking has_single_use().
9703 2016-04-21  Kirill Yukhin  <kirill.yukhin@intel.com>
9705         PR target/70728
9706         * config/i386/sse.md (define_insn "<shift_insn><mode>3<mask_name>"):
9707         Extract AVX-512BW constraint from AVX.
9709 2016-04-21  Richard Biener  <rguenther@suse.de>
9711         PR tree-optimization/70725
9712         * tree-if-conv.c (if_convertible_phi_p): Adjust guard
9713         for phi_convertible_by_degenerating_args.
9714         (predicate_all_scalar_phis): Handle single-argument PHIs.
9716 2016-04-21  Richard Biener  <rguenther@suse.de>
9718         PR middle-end/70747
9719         * fold-const.c (fold_comparison): Return properly typed
9720         constant boolean.
9722 2016-04-21  Bin Cheng  <bin.cheng@arm.com>
9724         PR tree-optimization/70715
9725         * tree-ssa-loop-niter.c (loop_exits_before_overflow): Check equality
9726         after expanding BASE using expand_simple_operations.
9728 2016-04-21  Marc Glisse  <marc.glisse@inria.fr>
9730         * match.pd (min(-x, -y), max(-x, -y), min(~x, ~y), max(~x, ~y)):
9731         New transformations.
9733 2016-04-21  Marc Glisse  <marc.glisse@inria.fr>
9735         * match.pd (min(int_max, x), max(int_min, x)): New transformations.
9737 2016-04-20  Jan Hubicka  <jh@suse.cz>
9739         * ipa-inline.c (can_inline_edge_p): Pass caller info to
9740         ultiimate_alias_target.
9741         (update_callee_keys): Likewise.
9742         (lookup_recursive_calls): Likewise.
9743         (speculation_useful_p): Likewise.
9745 2016-04-20  Jan Hubicka  <jh@suse.cz>
9747         PR ipa/70018
9748         * cgraph.c (cgraph_set_nothrow_flag_1): Rename to ...
9749         (set_nothrow_flag_1): ... this; handle interposition correctly;
9750         recurse on aliases and thunks.
9751         (cgraph_node::set_nothrow_flag): New.
9752         * ipa-pure-const.c (ignore_edge_for_nothrow): Ignore calls to
9753         functions compiled with non-call exceptions that binds to current
9754         def.
9755         (propagate_nothrow): Be safe WRT interposition.
9756         * cgraph.h (set_nothrow_flag): Update prototype.
9758 2016-04-18  Jan Hubicka  <jh@suse.cz>
9760         * tree-ssa-loop-unswitch.c (tree_unswitch_single_loop): Use also
9761         max_loop_iterations_int.
9762         (tree_unswitch_outer_loop): Likewise.
9764 2016-04-20  Bin Cheng  <bin.cheng@arm.com>
9766         PR tree-optimization/69489
9767         * tree-if-conv.c (phi_convertible_by_degenerating_args): New.
9768         (if_convertible_phi_p): Call phi_convertible_by_degenerating_args.
9769         Revise dump message.
9770         (if_convertible_bb_p): Remove check on edge count of basic block's
9771         predecessors.
9773 2016-04-20  Bin Cheng  <bin.cheng@arm.com>
9775         PR tree-optimization/56625
9776         PR tree-optimization/69489
9777         * tree-data-ref.h (DR_INNERMOST): New macro.
9778         * tree-if-conv.c (innermost_loop_behavior_hash): New class for
9779         hashing struct innermost_loop_behavior.
9780         (ref_DR_map): Remove.
9781         (innermost_DR_map): New map.
9782         (baseref_DR_map): Revise comment.
9783         (hash_memrefs_baserefs_and_store_DRs_read_written_info): Store DR
9784         to innermost_DR_map accroding to its innermost loop behavior.
9785         (ifcvt_memrefs_wont_trap): Get DR from innermost_DR_map according
9786         to its innermost loop behavior.
9787         (if_convertible_loop_p_1): Remove intialization for ref_DR_map.
9788         Add initialization for innermost_DR_map.  Record memory reference
9789         in DR_BASE_ADDRESS if the reference is compound one or it doesn't
9790         have innermost loop behavior.
9791         (if_convertible_loop_p): Remove release for ref_DR_map.  Release
9792         innermost_DR_map.
9794 2016-04-20  Uros Bizjak  <ubizjak@gmail.com>
9796         * config/i386/i386.md (*lea<mode>_general_1): Rename from
9797         *lea_general_1.  Use explicit SWI12 mode interator.
9798         (*lea<mode>_general_2): Rename from *lea_general_2.
9799         Use explicit SWI12 mode interator.
9800         (*lea<mode>_general_3): Rename from *lea_general_3.
9801         Use explicit SWI12 mode interator.
9802         (*lea<SWI12:mode>_general_4): Split from *lea_general_4.
9803         Use explicit SWI12 mode interator.
9804         (*lea<SWI48:mode>_general_4): Split from *lea_general_4.
9805         Use explicit SWI48 mode interator.
9807 2016-04-20  H.J. Lu  <hongjiu.lu@intel.com>
9809         * config/i386/i386.c (ix86_avx256_split_vector_move_misalign):
9810         Short-cut unaligned load and store cases.  Handle all integer
9811         vector modes.
9812         (ix86_expand_vector_move_misalign): Short-cut unaligned load
9813         and store cases.  Call ix86_avx256_split_vector_move_misalign
9814         directly without checking mode class.
9816 2016-04-20  Andrew Pinski  <apinski@cavium.com>
9817             Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
9819         PR target/64971
9820         * config/aarch64/aarch64.md (sibcall): Force call
9821         address to be DImode for ILP32.
9822         (sibcall_value): Likewise.
9824 2016-04-20  H.J. Lu  <hongjiu.lu@intel.com>
9826         * doc/invoke.texi: Replace -skip-rax-setup with -mskip-rax-setup.
9828 2016-04-20  Richard Biener  <rguenther@suse.de>
9830         * gimple-match.h (maybe_build_generic_op): Adjust prototype.
9831         * gimple-match-head.c (maybe_build_generic_op): Pass all ops
9832         by reference, clear op1 and op2 when GENERICizing BIT_FIELD_REF.
9833         (maybe_push_res_to_seq): Adjust.
9834         * gimple-fold.c (maybe_build_generic_op): Likewise.
9836 2016-04-20  Marek Polacek  <polacek@redhat.com>
9838         * tree-if-conv.c (is_false_predicate): For NULL_TREE return false
9839         rather than true.
9841 2016-04-20  Ilya Enkovich  <ilya.enkovich@intel.com>
9843         * config/i386/sse.md (vec_unpacks_lo_hi): Always
9844         use kmovw to support AVX512F target.
9846 2016-04-20  Bin Cheng  <bin.cheng@arm.com>
9848         * tree-scalar-evolution.c (interpret_rhs_expr): Handle BIT_AND_EXPR.
9850 2016-04-20  Marek Polacek  <polacek@redhat.com>
9852         PR tree-optimization/70725
9853         * tree-if-conv.c (is_false_predicate): New function.
9854         (predicate_mem_writes): Use it.
9856 2016-04-20  Richard Biener  <rguenther@suse.de>
9858         PR tree-optimization/70726
9859         * tree-vect-stmts.c (vectorizable_shift): Do not use scalar
9860         shift amounts from a pattern stmt operand.
9862 2016-04-20  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
9864         PR target/70674
9865         * config/s390/s390.c (s390_restore_gprs_from_fprs): Pick the new
9866         stack_restore_from_fpr pattern when restoring r15.
9867         (s390_optimize_prologue): Strip away the memory barrier in the
9868         parallel when trying to get rid of restore insns.
9869         * config/s390/s390.md ("stack_restore_from_fpr"): New insn
9870         definition for loading the stack pointer from an FPR.  Compared to
9871         the normal move insn this pattern includes a full memory barrier.
9873 2016-04-19  Jakub Jelinek  <jakub@redhat.com>
9875         PR middle-end/70680
9876         * gimplify.c (gimplify_omp_for): Call omp_notice_variable for
9877         implicitly linear or lastprivate iterator on the outer context.
9879 2016-04-19  H.J. Lu  <hongjiu.lu@intel.com>
9881         * config/i386/i386.c (ix86_legitimate_combined_insn): Remove
9882         alignment check.
9883         * config/i386/i386.md (ssememalign): Removed.
9884         * config/i386/sse.md: Remove ssememalign attribute from patterns.
9886 2016-04-19  H.J. Lu  <hongjiu.lu@intel.com>
9888         PR target/69201
9889         * config/i386/avx512bwintrin.h (_mm512_mask_loadu_epi16): Pass
9890         const short * to __builtin_ia32_loaddquhi512_mask.
9891         (_mm512_maskz_loadu_epi16): Likewise.
9892         (_mm512_mask_storeu_epi16): Pass short * to
9893         __builtin_ia32_storedquhi512_mask.
9894         (_mm512_mask_loadu_epi8): Pass const char * to
9895         __builtin_ia32_loaddquqi512_mask.
9896         (_mm512_maskz_loadu_epi8): Likewise.
9897         (_mm512_mask_storeu_epi8): Pass char * to
9898         __builtin_ia32_storedquqi512_mask.
9899         * config/i386/avx512fintrin.h (_mm512_loadu_pd): Pass
9900         const double * to __builtin_ia32_loadupd512_mask.
9901         (_mm512_mask_loadu_pd): Likewise.
9902         (_mm512_maskz_loadu_pd): Likewise.
9903         (_mm512_storeu_pd): Pass double * to
9904         __builtin_ia32_storeupd512_mask.
9905         (_mm512_mask_storeu_pd): Likewise.
9906         (_mm512_loadu_ps): Pass const float * to
9907         __builtin_ia32_loadups512_mask.
9908         (_mm512_mask_loadu_ps): Likewise.
9909         (_mm512_maskz_loadu_ps): Likewise.
9910         (_mm512_storeu_ps): Pass float * to
9911         __builtin_ia32_storeups512_mask.
9912         (_mm512_mask_storeu_ps): Likewise.
9913         (_mm512_mask_loadu_epi64): Pass const long long * to
9914         __builtin_ia32_loaddqudi512_mask.
9915         (_mm512_maskz_loadu_epi64): Likewise.
9916         (_mm512_mask_storeu_epi64): Pass long long *
9917         to __builtin_ia32_storedqudi512_mask.
9918         (_mm512_loadu_si512): Pass const int * to
9919         __builtin_ia32_loaddqusi512_mask.
9920         (_mm512_mask_loadu_epi32): Likewise.
9921         (_mm512_maskz_loadu_epi32): Likewise.
9922         (_mm512_storeu_si512): Pass int * to
9923         __builtin_ia32_storedqusi512_mask.
9924         (_mm512_mask_storeu_epi32): Likewise.
9925         * config/i386/avx512vlbwintrin.h (_mm256_mask_storeu_epi8): Pass
9926         char * to __builtin_ia32_storedquqi256_mask.
9927         (_mm_mask_storeu_epi8): Likewise.
9928         (_mm256_mask_loadu_epi16): Pass const short * to
9929         __builtin_ia32_loaddquhi256_mask.
9930         (_mm256_maskz_loadu_epi16): Likewise.
9931         (_mm_mask_loadu_epi16): Pass const short * to
9932         __builtin_ia32_loaddquhi128_mask.
9933         (_mm_maskz_loadu_epi16): Likewise.
9934         (_mm256_mask_loadu_epi8): Pass const char * to
9935         __builtin_ia32_loaddquqi256_mask.
9936         (_mm256_maskz_loadu_epi8): Likewise.
9937         (_mm_mask_loadu_epi8): Pass const char * to
9938         __builtin_ia32_loaddquqi128_mask.
9939         (_mm_maskz_loadu_epi8): Likewise.
9940         (_mm256_mask_storeu_epi16): Pass short * to.
9941         __builtin_ia32_storedquhi256_mask.
9942         (_mm_mask_storeu_epi16): Pass short * to.
9943         __builtin_ia32_storedquhi128_mask.
9944         * config/i386/avx512vlintrin.h (_mm256_mask_loadu_pd): Pass
9945         const double * to __builtin_ia32_loadupd256_mask.
9946         (_mm256_maskz_loadu_pd): Likewise.
9947         (_mm_mask_loadu_pd): Pass onst double * to
9948         __builtin_ia32_loadupd128_mask.
9949         (_mm_maskz_loadu_pd): Likewise.
9950         (_mm256_mask_storeu_pd): Pass double * to
9951         __builtin_ia32_storeupd256_mask.
9952         (_mm_mask_storeu_pd): Pass double * to
9953         __builtin_ia32_storeupd128_mask.
9954         (_mm256_mask_loadu_ps): Pass const float * to
9955         __builtin_ia32_loadups256_mask.
9956         (_mm256_maskz_loadu_ps): Likewise.
9957         (_mm_mask_loadu_ps): Pass const float * to
9958         __builtin_ia32_loadups128_mask.
9959         (_mm_maskz_loadu_ps): Likewise.
9960         (_mm256_mask_storeu_ps): Pass float * to
9961         __builtin_ia32_storeups256_mask.
9962         (_mm_mask_storeu_ps): ass float * to
9963         __builtin_ia32_storeups128_mask.
9964         (_mm256_mask_loadu_epi64): Pass const long long * to
9965         __builtin_ia32_loaddqudi256_mask.
9966         (_mm256_maskz_loadu_epi64): Likewise.
9967         (_mm_mask_loadu_epi64): Pass const long long * to
9968         __builtin_ia32_loaddqudi128_mask.
9969         (_mm_maskz_loadu_epi64): Likewise.
9970         (_mm256_mask_storeu_epi64): Pass long long * to
9971         __builtin_ia32_storedqudi256_mask.
9972         (_mm_mask_storeu_epi64): Pass long long * to
9973         __builtin_ia32_storedqudi128_mask.
9974         (_mm256_mask_loadu_epi32): Pass const int * to
9975         __builtin_ia32_loaddqusi256_mask.
9976         (_mm256_maskz_loadu_epi32): Likewise.
9977         (_mm_mask_loadu_epi32): Pass const int * to
9978         __builtin_ia32_loaddqusi128_mask.
9979         (_mm_maskz_loadu_epi32): Likewise.
9980         (_mm256_mask_storeu_epi32): Pass int * to
9981         __builtin_ia32_storedqusi256_mask.
9982         (_mm_mask_storeu_epi32): Pass int * to
9983         __builtin_ia32_storedqusi128_mask.
9984         * config/i386/i386-builtin-types.def (PCSHORT): New.
9985         (PINT64): Likewise.
9986         (V64QI_FTYPE_PCCHAR_V64QI_UDI): Likewise.
9987         (V32HI_FTYPE_PCSHORT_V32HI_USI): Likewise.
9988         (V32QI_FTYPE_PCCHAR_V32QI_USI): Likewise.
9989         (V16SF_FTYPE_PCFLOAT_V16SF_UHI): Likewise.
9990         (V8DF_FTYPE_PCDOUBLE_V8DF_UQI): Likewise.
9991         (V16SI_FTYPE_PCINT_V16SI_UHI): Likewise.
9992         (V16HI_FTYPE_PCSHORT_V16HI_UHI): Likewise.
9993         (V16QI_FTYPE_PCCHAR_V16QI_UHI): Likewise.
9994         (V8SF_FTYPE_PCFLOAT_V8SF_UQI): Likewise.
9995         (V8DI_FTYPE_PCINT64_V8DI_UQI): Likewise.
9996         (V8SI_FTYPE_PCINT_V8SI_UQI): Likewise.
9997         (V8HI_FTYPE_PCSHORT_V8HI_UQI): Likewise.
9998         (V4DF_FTYPE_PCDOUBLE_V4DF_UQI): Likewise.
9999         (V4SF_FTYPE_PCFLOAT_V4SF_UQI): Likewise.
10000         (V4DI_FTYPE_PCINT64_V4DI_UQI): Likewise.
10001         (V4SI_FTYPE_PCINT_V4SI_UQI): Likewise.
10002         (V2DF_FTYPE_PCDOUBLE_V2DF_UQI): Likewise.
10003         (V2DI_FTYPE_PCINT64_V2DI_UQI): Likewise.
10004         (VOID_FTYPE_PDOUBLE_V8DF_UQI): Likewise.
10005         (VOID_FTYPE_PDOUBLE_V4DF_UQI): Likewise.
10006         (VOID_FTYPE_PDOUBLE_V2DF_UQI): Likewise.
10007         (VOID_FTYPE_PFLOAT_V16SF_UHI): Likewise.
10008         (VOID_FTYPE_PFLOAT_V8SF_UQI): Likewise.
10009         (VOID_FTYPE_PFLOAT_V4SF_UQI): Likewise.
10010         (VOID_FTYPE_PINT64_V8DI_UQI): Likewise.
10011         (VOID_FTYPE_PINT64_V4DI_UQI): Likewise.
10012         (VOID_FTYPE_PINT64_V2DI_UQI): Likewise.
10013         (VOID_FTYPE_PINT_V16SI_UHI): Likewise.
10014         (VOID_FTYPE_PINT_V8SI_UHI): Likewise.
10015         (VOID_FTYPE_PINT_V4SI_UHI): Likewise.
10016         (VOID_FTYPE_PSHORT_V32HI_USI): Likewise.
10017         (VOID_FTYPE_PSHORT_V16HI_UHI): Likewise.
10018         (VOID_FTYPE_PSHORT_V8HI_UQI): Likewise.
10019         (VOID_FTYPE_PCHAR_V64QI_UDI): Likewise.
10020         (VOID_FTYPE_PCHAR_V32QI_USI): Likewise.
10021         (VOID_FTYPE_PCHAR_V16QI_UHI): Likewise.
10022         (V64QI_FTYPE_PCV64QI_V64QI_UDI): Removed.
10023         (V32HI_FTYPE_PCV32HI_V32HI_USI): Likewise.
10024         (V32QI_FTYPE_PCV32QI_V32QI_USI): Likewise.
10025         (V16HI_FTYPE_PCV16HI_V16HI_UHI): Likewise.
10026         (V16QI_FTYPE_PCV16QI_V16QI_UHI): Likewise.
10027         (V8HI_FTYPE_PCV8HI_V8HI_UQI): Likewise.
10028         (VOID_FTYPE_PV32HI_V32HI_USI): Likewise.
10029         (VOID_FTYPE_PV16HI_V16HI_UHI): Likewise.
10030         (VOID_FTYPE_PV8HI_V8HI_UQI): Likewise.
10031         (VOID_FTYPE_PV64QI_V64QI_UDI): Likewise.
10032         (VOID_FTYPE_PV32QI_V32QI_USI): Likewise.
10033         (VOID_FTYPE_PV16QI_V16QI_UHI): Likewise.
10034         * config/i386/i386.c (ix86_emit_save_reg_using_mov): Don't
10035         use UNSPEC_STOREU.
10036         (ix86_emit_restore_sse_regs_using_mov): Don't use UNSPEC_LOADU.
10037         (ix86_avx256_split_vector_move_misalign): Don't use unaligned
10038         load nor store.
10039         (ix86_expand_vector_move_misalign): Likewise.
10040         (bdesc_special_args): Use CODE_FOR_movvNXY_internal and pointer
10041         to scalar function prototype for unaligned load/store builtins.
10042         (ix86_expand_special_args_builtin): Updated.
10043         * config/i386/sse.md (UNSPEC_LOADU): Removed.
10044         (UNSPEC_STOREU): Likewise.
10045         (VI_ULOADSTORE_BW_AVX512VL): Likewise.
10046         (VI_ULOADSTORE_F_AVX512VL): Likewise.
10047         (ssescalarsize): Handle V4TI, V2TI and V1TI.
10048         (<sse>_loadu<ssemodesuffix><avxsizesuffix><mask_name>): Likewise.
10049         (*<sse>_loadu<ssemodesuffix><avxsizesuffix><mask_name>): Likewise.
10050         (<sse>_storeu<ssemodesuffix><avxsizesuffix>): Likewise.
10051         (<avx512>_storeu<ssemodesuffix><avxsizesuffix>_mask): Likewise.
10052         (<sse2_avx_avx512f>_loaddqu<mode><mask_name>): Likewise.
10053         (*<sse2_avx_avx512f>_loaddqu<mode><mask_name>"): Likewise.
10054         (sse2_avx_avx512f>_storedqu<mode>): Likewise.
10055         (<avx512>_storedqu<mode>_mask): Likewise.
10056         (*sse4_2_pcmpestr_unaligned): Likewise.
10057         (*sse4_2_pcmpistr_unaligned): Likewise.
10058         (*mov<mode>_internal): Renamed to ...
10059         (mov<mode>_internal): This.  Remove check of AVX and IAMCU on
10060         misaligned operand.  Replace vmovdqu64 with vmovdqu<ssescalarsize>.
10061         (movsd/movhpd to movupd peephole): Don't use UNSPEC_LOADU.
10062         (movlpd/movhpd to movupd peephole): Don't use UNSPEC_STOREU.
10064 2016-04-19  Richard Biener  <rguenther@suse.de>
10066         PR tree-optimization/70171
10067         * tree-ssa-phiprop.c: Include stor-layout.h.
10068         (phiprop_insert_phi): Handle the aggregate copy case.
10069         (propagate_with_phi): Likewise.
10071 2016-04-19  Uros Bizjak  <ubizjak@gmail.com>
10073         * config/i386/i386.c (ix86_decompose_address): Use lowpart_subreg
10074         instead of simplify_gen_subreg (... , 0).
10075         (ix86_delegitimize_address): Ditto.
10076         (ix86_split_divmod): Ditto.
10077         (ix86_split_copysign_const): Ditto.
10078         (ix86_split_copysign_var): Ditto.
10079         (ix86_expand_args_builtin): Ditto.
10080         (ix86_expand_round_builtin): Ditto.
10081         (ix86_expand_special_args_builtin): Ditto.
10082         * config/i386/i386.md (TARGET_USE_VECTOR_FP_CONVERTS splitters): Ditto.
10083         (TARGET_SSE_PARTIAL_REG_DEPENDENCY splitters and peephole2s): Ditto.
10084         (udivmodqi4): Ditto.
10085         (absneg splitters): Ditto.
10086         (*jcc_bt<mode>_1): Ditto.
10088 2016-04-19  Richard Biener  <rguenther@suse.de>
10090         PR tree-optimization/70724
10091         * tree-ssa-sccvn.c (scc_vn_restore_ssa_info): Split SSA info
10092         restoring out from ...
10093         (free_scc_vn): ... here.
10094         * tree-ssa-sccvn.h (scc_vn_restore_ssa_info): Declare.
10095         * tres-ssa-pre.c (pass_pre::execute): Restore SSA info before
10096         tail merging.
10097         (pass_fre::execute): Restore SSA info.
10099 2016-04-19  Richard Biener  <rguenther@suse.de>
10101         * gimple-walk.h (struct walk_stmt_info): Add stmt member.
10102         * gimple-walk.c (walk_gimple_op): Initialize it.
10103         (walk_gimple_asm): Set wi->is_lhs before each callback invocation.
10104         * tree-inline.c (remap_gimple_op_r): Set SSA_NAME_DEF_STMT when
10105         remapping SSA names of defs.
10106         (copy_bb): Remove walk over all SSA defs and SSA_NAME_DEF_STMT
10107         adjustment.
10109 2016-04-18  Vladimir Makarov  <vmakarov@redhat.com>
10111         PR middle-end/70689
10112         * lra-constraints.c (equiv_substition_p): New.
10113         (process_alt_operands): Use it.
10114         (swap_operands): Swap it.
10115         (curr_insn_transform): Update it.
10117 2016-04-18  Michael Matz  <matz@suse.de>
10119         * tree.h (TYPE_ALIGN, DECL_ALIGN): Return shifted amount.
10120         (SET_TYPE_ALIGN, SET_DECL_ALIGN): New.
10121         * tree-core.h (tree_type_common.align): Use bit-field.
10122         (tree_type_common.spare): New.
10123         (tree_decl_common.off_align): Make smaller.
10124         (tree_decl_common.align): Use bit-field.
10126         * expr.c (expand_expr_addr_expr_1): Use SET_TYPE_ALIGN.
10127         * omp-low.c (install_var_field): Use SET_DECL_ALIGN.
10128         (scan_sharing_clauses): Ditto.
10129         (finish_taskreg_scan): Use SET_DECL_ALIGN and SET_TYPE_ALIGN.
10130         (omp_finish_file): Ditto.
10131         * stor-layout.c (do_type_align): Use SET_DECL_ALIGN.
10132         (layout_decl): Ditto.
10133         (relayout_decl): Ditto.
10134         (finalize_record_size): Use SET_TYPE_ALIGN.
10135         (finalize_type_size): Ditto.
10136         (finish_builtin_struct): Ditto.
10137         (layout_type): Ditto.
10138         (initialize_sizetypes): Ditto.
10139         * targhooks.c (std_gimplify_va_arg_expr): Use SET_TYPE_ALIGN.
10140         * tree-nested.c (insert_field_into_struct): Use SET_TYPE_ALIGN.
10141         (lookup_field_for_decl): Use SET_DECL_ALIGN.
10142         (get_chain_field): Ditto.
10143         (get_trampoline_type): Ditto.
10144         (get_nl_goto_field): Ditto.
10145         * tree-streamer-in.c (unpack_ts_decl_common_value_fields): Use
10146         SET_DECL_ALIGN.
10147         (unpack_ts_type_common_value_fields): Use SET_TYPE_ALIGN.
10148         * gimple-expr.c (copy_var_decl): Use SET_DECL_ALIGN.
10149         * tree.c (make_node_stat): Use SET_DECL_ALIGN and SET_TYPE_ALIGN.
10150         (build_qualified_type): Use SET_TYPE_ALIGN.
10151         (build_aligned_type, build_range_type_1): Ditto.
10152         (build_atomic_base): Ditto.
10153         (build_common_tree_nodes): Ditto.
10154         * cfgexpand.c (align_local_variable): Use SET_DECL_ALIGN.
10155         (expand_one_stack_var_at): Ditto.
10156         * coverage.c (build_var): Use SET_DECL_ALIGN.
10157         * except.c (init_eh): Ditto.
10158         * function.c (assign_parm_setup_block): Ditto.
10159         * symtab.c (increase_alignment_1): Ditto.
10160         * tree-ssa-ccp.c (fold_builtin_alloca_with_align): Ditto.
10161         * tree-vect-stmts.c (ensure_base_align): Ditto.
10162         * varasm.c (align_variable): Ditto.
10163         (assemble_variable): Ditto.
10164         (build_constant_desc): Ditto.
10165         (output_constant_def_contents): Ditto.
10167         * config/arm/arm.c (arm_relayout_function): Use SET_DECL_ALIGN.
10168         * config/avr/avr.c (avr_adjust_type_node): Use SET_TYPE_ALIGN.
10169         * config/mips/mips.c (mips_std_gimplify_va_arg_expr): Ditto.
10170         * config/msp430/msp430.c (msp430_gimplify_va_arg_expr): Ditto.
10171         * config/spu/spu.c (spu_build_builtin_va_list): Use SET_DECL_ALIGN.
10173 2016-04-18  H.J. Lu  <hongjiu.lu@intel.com>
10175         PR target/70708
10176         * config/i386/sse.md (sse2_loadlpd): Accept load from "xm" and
10177         replace %vmovsd with "%vmovq".
10178         (vec_concatv2df): Likewise.
10180 2016-04-18  Uros Bizjak  <ubizjak@gmail.com>
10182         * config/i386/mmx.md (*vec_extractv2sf_0): Use gen_lowpart.
10183         (*vec_extractv2si_0): Ditto.
10184         * config/i386/sse.md (*vec_extractv4sf_0): Ditto.
10185         (zero_extended_scalar_load_operand splitters): Ditto.
10186         (vec_extract splitters): Ditto.
10187         (*vec_extractv4si_0_zext): Ditto.
10188         (avx_<castmode><avxsizesuffix>_<castmode>): Use gen_lowpart
10189         and lowpart_subreg.
10190         (avx512f_<castmode><avxsizesuffix>_<castmode>): Ditto.
10191         (avx512f_<castmode><avxsizesuffix>_256<castmode>): Ditto.
10192         (*sse4_1_extractps): Use lowpart_subreg.
10193         * config/i386/i386.md (x87 floatsplitter): Use gen_lowpart.
10195 2016-04-18  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
10197         * doc/install.texi (Specific, i?86-*-solaris2.10): Update gas and
10198         gld requirements.
10199         (Specific, *-*-solaris2*): Update Solaris 11 bundled gcc versions.
10200         Mention Solaris 11 packaging changes.
10201         Update gas and gld requirements.
10202         Remove reference to pre-Solaris 10 bug.
10203         (Specific, sparc-sun-solaris2*): Remove reference to pre-Solaris 10
10204         systems and bugs.
10205         (Specific, sparc64-*-solaris2*): Remove reference to bootstrap
10206         with cc.
10208 2016-04-17  Jan Hubicka  <jh@suse.cz>
10210         * tree-ssa-loop-ivopts.c (avg_loop_niter): Use also
10211         max_loop_iterations_int.
10213 2016-04-18  Richard Biener  <rguenther@suse.de>
10215         PR tree-optimization/43434
10216         * tree-ssa-structalias.c (struct vls_data): New.
10217         (visit_loadstore): Handle all pointer-based accesses.
10218         (compute_dependence_clique): Compute a bitmap of restrict tags
10219         assigned bases and pass it to visit_loadstore.
10221 2016-04-18  Matthew Wahab  <matthew.wahab@arm.com>
10223         PR target/70711
10224         * config/arm/bpabi.h (BE8_LINK_SPEC): Add entries for armv8+crc,
10225         armv8.1-a and armv8.1-a+crc.
10227 2016-04-18  Richard Biener  <rguenther@suse.de>
10229         PR tree-optimization/70701
10230         * tree-ssa-sccvn.c (vn_reference_lookup_3): Resolve fully constant
10231         references after translating through a memcpy.
10233 2016-04-18  Richard Biener  <rguenther@suse.de>
10235         * tree-ssa-pre.c (postorder, postorder_num): Make locals ...
10236         (compute_antic): ... here.  For partial antic use regular
10237         postorder and scrap iteration.
10238         (compute_partial_antic_aux): Remove unused return value.
10239         (init_pre): Do not allocate postorder.
10240         (fini_pre): Do not free postorder.
10242 2016-04-18  Richard Biener  <rguenther@suse.de>
10244         PR middle-end/37870
10245         * expmed.c (extract_bit_field_1): Remove broken case
10246         using a wider MODE_INT mode.
10248 2016-04-18  Segher Boessenkool  <segher@kernel.crashing.org>
10250         * has-brig.c (lendian16): Don't try to use __builtin_bswap16
10251         unless compiling with at least GCC-4.8.
10253 2016-04-17  Jan Hubicka  <jh@suse.cz>
10255         PR bootstrap/70706
10256         * graphite.c (graphite_finalize): Update call to
10257         tree_estimate_probability.
10258         * predict.h (tree_estimate_probability): Update prototype.
10260 2016-04-17  Jan Hubicka  <jh@suse.cz>
10262         * predict.c (combine_predictions_for_bb): Add dry_run parmaeter.
10263         (tree_estimate_probability): Likewise.
10264         (pass_profile::execute): Update.
10265         (report_predictor_hitrates): New function.
10266         * profile.c (compute_branch_probabilities): Use it.
10267         * predict.h (report_predictor_hitrates): Declare.
10269 2016-04-17  Jan Hubicka  <jh@suse.cz>
10271         PR ipa/70018
10272         * cgraph.h (cgraph_node::set_const_flag,
10273         cgraph_node::set_pure_flag): Update prototype to return bool;
10274         update comment.
10275         * cgraph.c (cgraph_node::call_for_symbol_thunks_and_aliases): Thunks
10276         of interposable symbol are interposable, too.
10277         (cgraph_set_const_flag_1): Rename to ...
10278         (set_const_flag_1): ... this one; change to self recursive function
10279         instead of call_for_symbol_thunks_and_aliases. Handle correctly
10280         clearnig the flag in all variants and also virtual thunks of const
10281         functions are pure; track if any change was done.
10282         (cgraph_node::set_const_flag): Update.
10283         (struct set_pure_flag_info): New struct.
10284         (cgraph_set_pure_flag_1): Rename to ...
10285         (set_pure_flag_1): ... this one; take set_pure_flag_info parameter
10286         rather than pointer encoded flags; track if any changes was done;
10287         handle correctly clearning flag and setting flag of aliases already
10288         declared const.
10289         (cgraph_node::set_pure_flag): Update.
10290         (cgraph_node::set_nothrow_flag): Handle correctly clearning the flag.
10292 2016-04-17  Tom de Vries  <tom@codesourcery.com>
10294         PR other/70433
10295         * pretty-print.c (pp_write_text_as_dot_label_to_stream): Escape
10296         backslash in label.
10298 2016-04-17  Tom de Vries  <tom@codesourcery.com>
10300         * pretty-print.c (pp_write_text_as_dot_label_to_stream): Classify chars
10301         '{}<> ' as escape-for-record.
10303 2016-04-17  Tom de Vries  <tom@codesourcery.com>
10305         * pretty-print.c (pp_write_text_as_dot_label_to_stream): Simplify loop
10306         structure.
10308 2016-04-17  Tom de Vries  <tom@codesourcery.com>
10310         PR other/70185
10311         * tree-pass.h (class opt_pass): Remove graph_dump_initialized member.
10312         * dumpfile.h (struct dump_file_info): Add graph_dump_initialized field.
10313         * dumpfile.c (dump_files): Initialize graph_dump_initialized field.
10314         * passes.c (finish_optimization_passes): Only call
10315         finish_graph_dump_file if dfi->graph_dump_initialized.
10316         (execute_function_dump, pass_init_dump_file): Use
10317         dfi->graph_dump_initialized instead of pass->graph_dump_initialized.
10319 2016-04-17  Tom de Vries  <tom@codesourcery.com>
10321         PR tree-optimization/70256
10322         * tree-ssa-structalias.c (dump_varinfo, debug_varinfo, dump_varmap)
10323         (debug_varmap): New function.
10325 2016-04-17  Tom de Vries  <tom@codesourcery.com>
10327         PR other/70183
10328         * passes.c (pass_manager::register_pass): Propagate pflags.
10330 2016-04-17  Tom de Vries  <tom@codesourcery.com>
10332         PR other/68875
10333         * pass_manager.h (TERMINATE_PASS_LIST): Add pass argument.
10334         * passes.c (pass_manager::pass_manager): Declare and init p_start in
10335         INSERT_PASSES_AFTER.  Add pass parameter to TERMINATE_PASS_LIST, and
10336         check if it's equal to p_start.
10337         * passes.def: Add arguments to TERMINATE_PASS_LISTs.
10339 2016-04-15  Jan Hubicka  <jh@suse.cz>
10341         PR ipa/70018
10342         * cgraph.c (cgraph_set_const_flag_1): Only set as pure if
10343         function does not bind to current def.
10344         * ipa-pure-const.c (worse_state): Add FROM and TO parameters;
10345         handle conservatively calls to functions that does not need to bind
10346         to current def.
10347         (check_call): Update call of worse_state.
10348         (ignore_edge_for_nothrow): Update.
10349         (ignore_edge_for_pure_const): Likewise.
10350         (propagate_pure_const): Update calls to worse_state.
10351         (skip_function_for_local_pure_const): Reformat comments.
10353 2016-04-15  Jan Hubicka  <jh@suse.cz>
10355         PR ipa/70018
10356         * cgraph.c (cgraph_node::get_availability): Add REF parameter.
10357         (cgraph_node::function_symbol): Likewise.
10358         (cgraph_node::function_or_virtual_thunk_symbol): Likewise.
10359         * cgraph.h (symtab_node::get_availabbility): Add REF parameter.
10360         (symtab_node::ultimate_alias_target): Add REF parameter.
10361         (symtab_node::binds_to_current_def_p): Declare.
10362         (symtab_node;:ultimate_alias_target_1): Add REF parameter.
10363         (cgraph_node::function_symbol): Likewise.
10364         (cgraph_node::function_or_virtual_thunk_symbol): Likewise.
10365         (cgraph_node::get_availability): Likewise.
10366         (cgraph_edge::binds_to_current_def_p): New inline function.
10367         (varpool_node::get_availability): Add REF parameter.
10368         (varpool_node::ultimate_alias_target): Likewise.
10369         * symtab.c (symtab_node::ultimate_alias_target_1): Likewise.
10370         (symtab_node::binds_to_current_def_p): Likewise.
10371         * varpool.c (varpool_node::get_availability): Likewise.
10373 2016-04-15  Kirill Yukhin  <kirill.yukhin@intel.com>
10375         PR target/70662
10376         * config/i386/sse.md(define_insn "<avx512>_vec_dup<mode><mask_name>"):
10377         Fix mode size check.
10379 2016-04-15  Jakub Jelinek  <jakub@redhat.com>
10381         * BASE-VER: Set to 7.0.0.
10383 2016-04-15  Alexander Monakov  <amonakov@ispras.ru>
10385         * config/nvptx/nvptx.opt (moptimize): Add a period at end of help text.
10387 2016-04-15  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
10389         * doc/invoke.texi (ARM Options): Add note on deprecation of pre-ARMv4T
10390         architecture revisions.
10392 2016-04-15  Bernd Schmidt  <bschmidt@redhat.com>
10394         * config/i386/i386-protos.h (ix86_using_red_zone): Declare.
10395         * config/i386/i386.c (ix86_using_red_zone): No longer static.
10396         * config/i386/i386.md (stack decrement to push peepholes): Guard
10397         with !x86_using_red_zone ().
10399 2016-04-15  Jakub Jelinek  <jakub@redhat.com>
10401         PR c++/70675
10402         * tree-pretty-print.c (do_niy): Add FLAGS argument, pass it down
10403         to dump_generic_node.
10404         (NIY): Pass also flags to do_niy.
10406 2016-04-15  Thomas Schwinge  <thomas@codesourcery.com>
10408         * omp-low.c (simd_clone_struct_alloc, simd_clone_struct_copy)
10409         (simd_clone_vector_of_formal_parm_types)
10410         (simd_clone_clauses_extract, simd_clone_compute_base_data_type)
10411         (simd_clone_mangle, simd_clone_create)
10412         (simd_clone_adjust_return_type, create_tmp_simd_array)
10413         (simd_clone_adjust_argument_types, simd_clone_init_simd_arrays)
10414         (struct modify_stmt_info, ipa_simd_modify_stmt_ops)
10415         (ipa_simd_modify_function_body, simd_clone_linear_addend)
10416         (simd_clone_adjust, expand_simd_clones, ipa_omp_simd_clone)
10417         (pass_data_omp_simd_clone, class pass_omp_simd_clone)
10418         (pass_omp_simd_clone::gate, make_pass_omp_simd_clone): Move into...
10419         * omp-simd-clone.c: ... this new file.
10420         (simd_clone_vector_of_formal_parm_types): Make it static.
10421         * Makefile.in (OBJS): Add omp-simd-clone.o.
10423 2016-04-15  Kirill Yukhin  <kirill.yukhin@intel.com>
10425         PR target/70662
10426         * config/i386/sse.md: Use proper memory operand modifiers.
10429 2016-04-15  Richard Biener  <rguenther@suse.de>
10430         Alan Modra  <amodra@gmail.com>
10432         PR tree-optimization/70130
10433         * tree-vect-data-refs.c (vect_supportable_dr_alignment): Detect
10434         when alignment stays not the same and no not use the realign
10435         scheme then.
10437 2016-04-14  Michael Meissner  <meissner@linux.vnet.ibm.com>
10439         PR target/70669
10440         * config/rs6000/rs6000.c (rs6000_init_hard_regno_mode_ok): Add
10441         direct move handlers for KFmode. Change TFmode handlers test from
10442         FLOAT128_IEEE_P to FLOAT128_VECTOR_P.
10444 2016-04-14  Jakub Jelinek  <jakub@redhat.com>
10446         PR c++/70594
10447         * ipa-utils.h (polymorphic_ctor_dtor_p): New prototype.
10448         * ipa-polymorphic-call.c (polymorphic_ctor_dtor_p): New function.
10449         (inlined_polymorphic_ctor_dtor_block_p): Use it.
10450         * tree-ssa-live.c (remove_unused_scope_block_p): When
10451         in_ctor_dtor_block, avoid discarding not just BLOCKs with
10452         BLOCK_ABSTRACT_ORIGIN being FUNCTION_DECL, but even when
10453         block_ultimate_origin is FUNCTION_DECL.
10454         (remove_unused_locals): If current_function_decl is
10455         polymorphic_ctor_dtor_p, pass initial true to
10456         remove_unused_scope_block_p' is_ctor_dtor_block.
10458 2016-04-14  Martin Sebor  <msebor@redhat.com>
10460         PR c++/69517
10461         PR c++/70019
10462         PR c++/70588
10463         * doc/extend.texi (Variable Length): Revert.
10465 2016-04-14  Marek Polacek  <polacek@redhat.com>
10466             Jan Hubicka  <hubicka@ucw.cz>
10468         PR c++/70029
10469         * tree.c (verify_type): Disable the canonical type of main variant
10470         check.
10472 2016-04-14  Jason Merrill  <jason@redhat.com>
10474         * cfgexpand.c, expr.c: Revert previous change.
10476 2016-04-14  Cesar Philippidis  <cesar@codesourcery.com>
10478         PR middle-end/70643
10479         * omp-low.c (lower_oacc_reductions): Check for TREE_CONSTANT
10480         when building a mem ref for the incoming reduction variable.
10482 2016-04-14  Richard Biener  <rguenther@suse.de>
10484         PR tree-optimization/70614
10485         * tree-scalar-evolution.c (analyze_evolution_in_loop): Terminate
10486         loop if the evolution dropped to chrec_dont_know.
10487         (interpret_condition_phi): Likewise.
10489 2016-04-14  Richard Biener  <rguenther@suse.de>
10491         PR tree-optimization/70623
10492         * tree-ssa-pre.c (changed_blocks): Make global ...
10493         (compute_antic): ... local here.  Move and fix worklist
10494         handling here.  Do not clear EDGE_DFS_BACK or call mark_dfs_back_edges.
10495         (compute_antic_aux): Add dumping for MAX assumed succs.  Remove
10496         worklist handling, dump when ANTIC_IN changed.
10497         (compute_partial_antic_aux): Remove worklist handling.
10498         (init_pre): Do not compute post dominators.  Add a comment about
10499         the CFG order chosen.
10500         (fini_pre): Do not free post dominators.
10502 2016-04-13  Martin Sebor  <msebor@redhat.com>
10504         PR c++/69517
10505         PR c++/70019
10506         PR c++/70588
10507         * doc/extend.texi (Variable Length): Document C++ specifics.
10509 2016-04-13  Jakub Jelinek  <jakub@redhat.com>
10511         PR c++/70641
10512         * ipa-pure-const.c (pass_nothrow::execute): Call maybe_clean_eh_stmt
10513         on all recursive call stmts.  Return TODO_cleanup_cfg if any dead
10514         eh edges have been purged.
10516         PR c++/70594
10517         * tree-sra.c (create_access_replacement,
10518         get_replaced_param_substitute): Set DECL_NAMELESS on repl if it
10519         gets fancy name.
10520         * tree-pretty-print.c (dump_fancy_name): New function.
10521         (dump_decl_name, dump_generic_node): Use it.
10523 2016-04-13  Jason Merrill  <jason@redhat.com>
10525         * cfgexpand.c (pass_expand::execute): Handle attribute "abi warning".
10526         * expr.c (expand_expr_real_1): Likewise.
10528 2016-04-13  Ilya Enkovich  <ilya.enkovich@intel.com>
10530         * config/i386/i386.md (kunpckhi): Swap operands.
10531         (kunpcksi): Likewise.
10532         (kunpckdi): Likewise.
10533         * config/i386/sse.md (vec_pack_trunc_qi): Likewise.
10534         (vec_pack_trunc_<mode>): Likewise.
10536 2016-04-13  Jakub Jelinek  <jakub@redhat.com>
10538         PR debug/70628
10539         * explow.c (convert_memory_address_addr_space_1): Formatting fix.
10541         PR middle-end/70633
10542         * gimplify.c (gimplify_init_constructor): Clear TREE_STATIC if
10543         gimplification turns some element into non-constant.
10545         PR debug/70628
10546         * rtl.h (convert_memory_address_addr_space_1): New prototype.
10547         * explow.c (convert_memory_address_addr_space_1): No longer static,
10548         add NO_EMIT argument and don't call convert_modes if true, pass
10549         it down recursively, remove break after return.
10550         (convert_memory_address_addr_space): Adjust caller.
10551         * simplify-rtx.c (simplify_unary_operation_1): Call
10552         convert_memory_address_addr_space_1 instead of convert_memory_address,
10553         if it returns NULL, don't simplify.
10555 2016-04-12  Eric Botcazou  <ebotcazou@adacore.com>
10557         PR target/70630
10558         * config/sparc/sparc.c (sparc_compute_frame_size): Add parentheses.
10560 2016-04-12  Jakub Jelinek  <jakub@redhat.com>
10562         * config/i386/i386.c (ix86_simd_clone_compute_vecsize_and_simdlen):
10563         Bump the upper SIMDLEN limits, so that if the return type or
10564         characteristic type if the return type is void can be passed in
10565         all available SSE2/AVX/AVX2/AVX512-F registers, the SIMDLEN is
10566         allowed.
10568 2016-04-12  Michael Meissner  <meissner@linux.vnet.ibm.com>
10570         PR target/70640
10571         * config/rs6000/rs6000.md (ieee_128bit_vsx_neg<mode>2_internal):
10572         Do not use "=" constraint on an input constraint.
10573         (ieee_128bit_vsx_abs<mode>2_internal): Likewise.
10574         (ieee_128bit_vsx_nabs<mode>2_internal): Likewise.
10575         (ieee_128bit_vsx_nabs<mode>2): Correct splitter so that it
10576         generates (neg (abs ...)) instead of (abs ...).
10578 2016-04-12  Jakub Jelinek  <jakub@redhat.com>
10580         PR rtl-optimization/70596
10581         * lra-spills.c (spill_pseudos): Don't delete debug insns, instead
10582         just invalidate LRA data and reset them.  Adjust dump wording.
10584 2016-04-12  Martin Liska  <mliska@suse.cz>
10586         Revert
10587         2016-03-30  Jan Hubicka  <hubicka@ucw.cz>
10589         * tree-ssa-loop-niter.c (idx_infer_loop_bounds): We can't get realistic
10590         estimates here.
10591         * tree-ssa-loop-unswitch.c (tree_unswitch_single_loop): Use also
10592         max_loop_iterations_int.
10593         (tree_unswitch_outer_loop): Likewise.
10594         * tree-ssa-loop-ivopts.c (avg_loop_niter): Likewise.
10595         * tree-vect-loop.c (vect_analyze_loop_2): Likewise.
10597 2016-04-12  Tom de Vries  <tom@codesourcery.com>
10599         PR tree-optimization/68756
10600         * graphite-isl-ast-to-gimple.c (copy_cond_phi_args): Use new_expr
10601         instead of new_name.
10603 2016-04-12  Jakub Jelinek  <jakub@redhat.com>
10605         PR tree-optimization/70602
10606         * tree-sra.c (generate_subtree_copies): Don't write anything into
10607         constant pool decls.
10609         * omp-low.c (lower_omp_target): Use GOMP_MAP_FIRSTPRIVATE_INT
10610         regardless whether there are depend clauses or not.
10612 2016-04-11  Michael Meissner  <meissner@linux.vnet.ibm.com>
10614         PR target/70381
10615         * config/rs6000/rs6000.c (rs6000_opt_masks): Disable using the
10616         target attribute and pragma from changing the -mfloat128
10617         and -mfloat128-hardware options.
10619         * doc/extend.texi (Additional Floating Types): Document PowerPC
10620         __float128 restrictions.
10622 2016-04-11  James Greenhalgh  <james.greenhalgh@arm.com>
10624         PR target/70133
10625         * config/aarch64/driver-aarch64.c
10626         (aarch64_get_extension_string_for_isa_flags): New.
10627         (arch_extension): Rename to...
10628         (aarch64_arch_extension): ...This.
10629         (ext_to_feat_string): Rename to...
10630         (aarch64_extensions): ...This.
10631         (aarch64_core_data): Keep track of architecture extension flags.
10632         (cpu_data): Rename to...
10633         (aarch64_cpu_data): ...This.
10634         (aarch64_arch_driver_info): Keep track of architecture extension
10635         flags.
10636         (get_arch_name_from_id): Rename to...
10637         (get_arch_from_id): ...This, change return type.
10638         (host_detect_local_cpu): Update and reformat for renames, handle
10639         extensions through common infrastructure.
10641 2016-04-11  James Greenhalgh  <james.greenhalgh@arm.com>
10643         PR target/70133
10644         * config/aarch64/aarch64-common.c (aarch64_option_extension): Keep
10645         track of a canonical flag name.
10646         (all_extensions): Likewise.
10647         (arch_to_arch_name): Also track extension flags enabled by the arch.
10648         (all_architectures): Likewise.
10649         (aarch64_parse_extension): Move to here.
10650         (aarch64_get_extension_string_for_isa_flags): Take a new argument,
10651         rework.
10652         (aarch64_rewrite_selected_cpu): Update for above change.
10653         * config/aarch64/aarch64-option-extensions.def: Rework the way flags
10654         are handled, such that the single explicit value enabled by an
10655         extension is kept seperate from the implicit values it also enables.
10656         * config/aarch64/aarch64-protos.h (aarch64_parse_opt_result): Move
10657         to here.
10658         (aarch64_parse_extension): New.
10659         * config/aarch64/aarch64.c (aarch64_parse_opt_result): Move from
10660         here to config/aarch64/aarch64-protos.h.
10661         (aarch64_parse_extension): Move from here to
10662         common/config/aarch64/aarch64-common.c.
10663         (aarch64_option_print): Update.
10664         (aarch64_declare_function_name): Likewise.
10665         (aarch64_start_file): Likewise.
10666         * config/aarch64/driver-aarch64.c (arch_extension): Keep track of
10667         the canonical flag for extensions.
10668         * config.gcc (aarch64*-*-*): Extend regex for capturing extension
10669         flags.
10671 2016-04-11  James Greenhalgh  <james.greenhalgh@arm.com>
10673         * config/aarch64/aarch64.h (AARCH64_FL_FOR_ARCH8_1): Also add
10674         AARCH64_FL_CRC.
10676 2016-04-09  Tom de Vries  <tom@codesourcery.com>
10678         PR tree-optimization/68953
10679         * graphite-sese-to-poly.c (pdr_add_memory_accesses): Order accesses from
10680         first to last subscript.
10682 2016-04-09  Jakub Jelinek  <jakub@redhat.com>
10684         PR tree-optimization/70586
10685         * tree-ssa-ifcombine.c (bb_no_side_effects_p): Return false
10686         for any calls.
10688 2016-04-08  Cesar Philippidis  <cesar@codesourcery.com>
10690         PR lto/70289
10691         PR ipa/70348
10692         PR tree-optimization/70373
10693         PR middle-end/70533
10694         PR middle-end/70534
10695         PR middle-end/70535
10696         * gimplify.c (gimplify_adjust_omp_clauses): Add or adjust data
10697         clauses for acc parallel reductions as necessary.  Error on those
10698         that are private.
10699         * omp-low.c (scan_sharing_clauses): Don't install variables which
10700         are used in acc parallel reductions.
10701         (lower_rec_input_clauses): Remove dead code.
10702         (lower_oacc_reductions): Add support for reference reductions.
10703         (lower_reduction_clauses): Remove dead code.
10704         (lower_omp_target): Don't remap variables appearing in acc parallel
10705         reductions.
10706         * tree.h (OMP_CLAUSE_MAP_IN_REDUCTION): New macro.
10708 2016-04-08  Jakub Jelinek  <jakub@redhat.com>
10710         PR middle-end/70593
10711         * tree-ssa-coalesce.c (build_ssa_conflict_graph): For stmt
10712         with multiple SSA_NAME defs, force the outputs other than first
10713         to be live before calling live_track_process_def on each output.
10715         PR rtl-optimization/70574
10716         * fwprop.c (forward_propagate_and_simplify): Don't add
10717         REG_EQUAL note if DF_REF_REG (use) is a paradoxical subreg.
10718         (try_fwprop_subst): Don't add REG_EQUAL note if there are any
10719         paradoxical subregs within *loc.
10721 2016-04-08  Thomas Schwinge  <thomas@codesourcery.com>
10723         * config/arc/arc.h (LINK_COMMAND_SPEC): Use gt to ignore
10724         -ftree-parallelize-loops={0,1}.
10725         * config/darwin.h (LINK_COMMAND_SPEC_A): Likewise.
10726         * config/i386/mingw32.h (GOMP_SELF_SPECS): Likewise.
10727         * config/ia64/hpux.h (LIB_SPEC): Likewise.
10728         * config/pa/pa-hpux11.h (LIB_SPEC): Likewise.
10729         * config/pa/pa64-hpux.h (LIB_SPEC): Likewise.
10731 2016-04-08  Maxim Ostapenko  <m.ostapenko@samsung.com>
10733         PR sanitizer/70541
10734         * asan.c (instrument_derefs): If we get unknown location, extract it
10735         with EXPR_LOCATION.
10736         (maybe_instrument_call): Instrument gimple_call's arguments if needed.
10738 2016-04-08  Tom de Vries  <tom@codesourcery.com>
10740         * omp-low.c (lower_omp_target): Set TREE_NO_WARNING for oacc
10741         implicit firstprivate clause.
10743 2016-04-08  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
10745         PR target/70566
10746         * config/arm/thumb2.md (tst + branch-> lsls + branch
10747         peephole below *orsi_not_shiftsi_si): Require that condition
10748         register is dead after the peephole.
10749         (second peephole after the above): Likewise.
10751 2016-04-08  Alan Modra  <amodra@gmail.com>
10753         PR target/70117
10754         * builtins.c (fold_builtin_classify): For IBM extended precision,
10755         look at just the high-order double to test for NaN.
10756         (fold_builtin_interclass_mathfn): Similarly for Inf.  For isnormal
10757         test just the high double for Inf but both doubles for subnormal
10758         limit.
10760 2016-04-07  Jakub Jelinek  <jakub@redhat.com>
10762         * cgraph.h (struct cgraph_simd_clone): Add mask_mode field.
10763         * omp-low.c (simd_clone_init_simd_arrays, simd_clone_adjust): Handle
10764         node->simdclone->mask_mode != VOIDmode masks.
10765         (simd_clone_adjust_argument_types): Likewise.  Move sc var definition
10766         earlier, use it instead of node->simdclone.
10767         * config/i386/i386.c (ix86_simd_clone_compute_vecsize_and_simdlen):
10768         Set clonei->mask_mode.
10770 2016-04-06  Patrick Palka  <ppalka@gcc.gnu.org>
10772         PR c/70436
10773         * parser.c (cp_parser_iteration_statement): New parameter IF_P.
10774         Pass it through to cp_parser_already_scoped_statement.
10775         (cp_parser_already_scoped_statement): New parameter IF_P.  Pass
10776         it through to cp_parser_statement.
10777         (cp_parser_statement): Pass IF_P through to
10778         cp_parser_iteration_statement.
10779         (cp_parser_pragma): Adjust call to
10780         cp_parser_iteration_statement.
10782 2016-04-06  Patrick Palka  <ppalka@gcc.gnu.org>
10784         PR c/70436
10785         * gimplify.c (gimplify_omp_ordered): Add explicit braces to
10786         resolve a future -Wparentheses warning.
10787         * omp-low.c (scan_sharing_clauses): Likewise.
10788         * tree-parloops.c (eliminate_local_variables): Likewise.
10790 2016-04-06  Vladimir Makarov  <vmakarov@redhat.com>
10792         PR rtl-optimization/70398
10793         * lra-constraints.c (process_address_1): Check zero scale and code
10794         for reloading with zero scale.
10796 2016-04-06  Uros Bizjak  <ubizjak@gmail.com>
10798         * config/i386/sse.md (shuffletype): Add V32HI and V4TI modes.
10799         (ssescalarsize): Add V8SF, V4SF, V4DF and V2DF modes.
10801 2016-04-06  Jakub Jelinek  <jakub@redhat.com>
10803         * config/i386/i386.c (ix86_simd_clone_compute_vecsize_and_simdlen):
10804         Add support for AVX512F clones, include them by default for
10805         exported OpenMP declare simd functions.  For AVX2 allow simdlen 32
10806         and use it if charasteric type is 8-bit, for AVX512F allow simdlen
10807         up to 128.
10809         PR middle-end/70550
10810         * tree.h (OMP_CLAUSE_FIRSTPRIVATE_IMPLICIT): Define.
10811         * gimplify.c (gimplify_adjust_omp_clauses_1): Set it for implicit
10812         firstprivate clauses.
10813         * omp-low.c (lower_send_clauses): Set TREE_NO_WARNING for
10814         OMP_CLAUSE_FIRSTPRIVATE_IMPLICIT !by_ref vars in task contexts.
10815         (lower_omp_target): Set TREE_NO_WARNING for
10816         non-addressable possibly uninitialized vars which are copied into
10817         addressable temporaries or copied for GOMP_MAP_FIRSTPRIVATE_INT.
10819 2016-04-05  John David Anglin  <danglin@gcc.gnu.org>
10821         * config/pa/predicates.md (integer_store_memory_operand): Accept
10822         REG+D operands with a large offset when reload_in_progress is true.
10823         (floating_point_store_memory_operand): Likewise.
10825 2016-04-05  Jakub Jelinek  <jakub@redhat.com>
10827         PR c++/70336
10828         * match.pd (nested int casts): Limit to GIMPLE.
10830 2016-04-05  Jan Hubicka  <hubicka@ucw.cz>
10832         PR ipa/66223
10833         * ipa-devirt.c (maybe_record_node): Fix comment; use
10834         SANITIZE_UNREACHABLE instead of SANITIZE_UNDEFINED.
10836 2016-04-05  Jakub Jelinek  <jakub@redhat.com>
10838         PR rtl-optimization/70542
10839         * ree.c (add_removable_extension): For VECTOR_MODE_P punt
10840         if there are any uses other than insn or debug insns.
10842 2016-04-05  Marc Glisse  <marc.glisse@inria.fr>
10843             Jakub Jelinek  <jakub@redhat.com>
10845         PR tree-optimization/70509
10846         * simplify-rtx.c (simplify_binary_operation_1) <case VEC_SELECT>:
10847         Shift HOST_WIDE_INT_1U instead of 1.
10849 2016-04-05  Zdenek Sojka  <zsojka@seznam.cz>
10851         PR tree-optimization/70509
10852         * tree-ssa-forwprop.c (simplify_bitfield_ref): Use bitsize_int instead
10853         of the vector base type for index.
10855 2016-04-05  Uros Bizjak  <ubizjak@gmail.com>
10857         PR target/70510
10858         * config/i386/sse.md (iptr): Add V64QI, V32HI, V16SI and V8DI modes.
10860 2016-04-05  Richard Biener  <rguenther@suse.de>
10862         PR tree-optimization/70526
10863         * tree-sra.c (build_ref_for_offset): Use prev_base to
10864         extract the alias pointer type.
10866 2016-04-05  Richard Biener  <rguenther@suse.de>
10868         * dse.c (struct store_info): Remove alias_set member.
10869         (struct read_info_type): Likewise.
10870         (clear_alias_group, clear_alias_mode_table, clear_alias_mode_holder,
10871         spill_deleted, clear_alias_set_lookup): Remove.
10872         (get_group_info): Remove dead base == NULL_RTX case.
10873         (dse_step0): Remove initialization of removed variables.
10874         (delete_dead_store_insn): Reomve alias set dumping.
10875         (free_read_records): Remove alias_set handling.
10876         (canon_address): Remove alias_set_out parameter.
10877         (record_store): Remove spill_alias_set, it's always zero.
10878         (check_mem_read_rtx): Likewise.
10879         (dse_step2): Rename from ...
10880         (dse_step2_nospill): ... this.  Adjust.
10881         (scan_stores): Rename from ...
10882         (scan_stores_nospill): ... this.
10883         (scan_reads): Rename from ...
10884         (scan_reads_nospill): ... this.
10885         (scan_stores_spill, scan_reads_spill): Remove.
10886         (dse_step3_scan): Remove for_spills argument which is always false.
10887         (dse_step3): Likewise.
10888         (dse_step5): Rename from ...
10889         (dse_step5_nospill): ... this.  Remove alias_set handling.
10890         (rest_of_handle_dse): Adjust.
10892 2016-04-05  Jakub Jelinek  <jakub@redhat.com>
10894         PR target/70525
10895         * config/i386/sse.md (*andnot<mode>3): Simplify assertions.
10896         Use vpandn<ssemodesuffix> for V16SI/V8DImode, vpandnq for
10897         V32HI/V64QImode, don't use <mask_operand3_1>, fix up formatting.
10898         (*andnot<mode>3_mask): Remove insn with VI12_AVX512VL iterator.
10900 2016-04-05  Richard Biener  <rguenther@suse.de>
10902         PR middle-end/70499
10903         * gimplify-me.c (gimple_regimplify_operands): Do not rewrite
10904         non-register type temporaries into SSA.
10906 2016-04-04  Jan Hubicka  <hubicka@ucw.cz>
10908         PR ipa/66223
10909         * ipa-devirt.c (maybe_record_node): Do not optimize cxa_pure_virtual
10910         calls when sanitizing.
10911         (possible_polymorphic_call_target_p): Fix formatting.
10913 2016-04-04  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
10914             Jakub Jelinek <jakub@redhat.com>
10916         PR middle-end/70457
10917         * tree-inline.c (estimate_num_insn): Use gimple_call_builtin_p
10918         to ensure a call statement is compatible with a built-in's
10919         prototype.
10920         * tree-ssa-math-opts.c (pass_optimize_windening_mul::execute):
10921         Likewise.
10923 2016-04-04  Richard Biener  <rguenther@suse.de>
10925         PR rtl-optimization/70484
10926         * rtl.h (canon_output_dependence): Declare.
10927         * alias.c (canon_output_dependence): New function.
10928         * dse.c (record_store): Use canon_output_dependence rather
10929         than canon_true_dependence.
10931 2016-03-30  Jan Hubicka  <hubicka@ucw.cz>
10933         PR ipa/68881
10934         * cgraph.h (symtab_node::copy_visibility_from): New function.
10935         * symtab.c (symtab_node::copy_visibility_from): New function.
10936         * ipa-visibility.c (optimize_weakref): New function.
10937         (function_and_variable_visibility): Use it.
10939 2016-04-04  Martin Liska  <mliska@suse.cz>
10941         PR hsa/70402
10942         * hsa-gen.c (gen_hsa_insns_for_switch_stmt): Guard index
10943         value that is really in range handled by SBR instruction.
10944         * hsa-brig.c (emit_switch_insn): Do not emit unconditional jump.
10945         * hsa-dump.c (dump_hsa_insn_1): Do not dump default BB.
10946         * hsa.h (hsa_insn_sbr::m_default_bb): Remove field.
10948 2016-04-03  Oleg Endo  <olegendo@gcc.gnu.org>
10950         PR target/70416
10951         PR target/67391
10952         * config/sh/sh.md (*addsi3): Allow pattern when reload_in_progress is
10953         set, but not for SP_REG operands.
10955 2016-04-02  Martin Sebor  <msebor@redhat.com>
10957         PR c++/67376
10958         * fold-const.c (maybe_nonzero_address): New function.
10959         (fold_comparison): Call it.  Fold equality and relational
10960         expressions involving null pointers.
10961         (tree_single_nonzero_warnv_p): Call maybe_nonzero_address.
10963 2016-03-31  Evandro Menezes  <e.menezes@samsung.com>
10965         Fix the predicate "aarch64_simd_reg_or_zero" to correctly validate
10966         the "Y" constraint (scalar FP 0.0 immediate).
10968         * config/aarch64/predicates.md (aarch64_simd_reg_or_zero):
10969         Add the "const_double" to the list of operand constraints.
10971 2016-04-01  Jakub Jelinek  <jakub@redhat.com>
10973         PR rtl-optimization/70467
10974         * config/i386/i386.md (*add<dwi>3_doubleword, *sub<dwi>3_doubleword):
10975         If low word of the last operand is 0, just emit addition/subtraction
10976         for the high word.
10978 2016-04-01  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
10980         PR target/70404
10981         * config/s390/s390.c (s390_expand_insv): Check for everything
10982         constant instead of just VOIDmode stuff.
10984 2016-04-01  Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>
10986         PR target/70496
10987         * config/arm/arm.h (ASM_APP_OFF): Handle TARGET_ARM and TARGET_THUMB.
10989 2016-04-01  Nathan Sidwell  <nathan@acm.org>
10991         * tree.def (TRY_CATCH_EXPR): Correct documentation.
10993 2016-03-31  Vladimir Makarov  <vmakarov@redhat.com>
10995         PR rtl-optimization/70461
10996         * ira-color.c (allocno_copy_cost_saving): Use allocno class if it
10997         is necessary.
10999 2016-03-31  Martin Liska  <mliska@suse.cz>
11001         PR hsa/70399
11002         * hsa-brig.c (hsa_op_immed::emit_to_buffer): Emit either
11003         a tree value or an immediate integer value to a buffer
11004         that is eventually copied to a BRIG section.
11005         (emit_immediate_operand): Call the function here.
11006         * hsa-dump.c (dump_hsa_immed): Remove checking assert.
11007         * hsa-gen.c (hsa_op_immed::hsa_op_immed): Remove initialization
11008         of class' fields that are removed.
11009         (hsa_op_immed::~hsa_op_immed): Remove deinitialization.
11010         * hsa.h (class hsa_op_immed): Remove m_brig_repr and
11011         m_brig_repr_size fields.
11013 2016-03-31  Martin Liska  <mliska@suse.cz>
11015         PR hsa/70391
11016         * hsa-gen.c (hsa_function_representation::update_dominance): New
11017         function.
11018         (convert_addr_to_flat_segment): Likewise.
11019         (gen_hsa_memory_set): New alignment argument.
11020         (gen_hsa_ctor_assignment): Likewise.
11021         (gen_hsa_insns_for_single_assignment): Provide alignment
11022         to gen_hsa_ctor_assignment.
11023         (gen_hsa_insns_for_direct_call): Add new argument.
11024         (expand_lhs_of_string_op): New function.
11025         (expand_string_operation_builtin): Likewise.
11026         (expand_memory_copy): New function.
11027         (expand_memory_set): New function.
11028         (gen_hsa_insns_for_call): Use HOST_WIDE_INT.
11029         (convert_switch_statements): Change signature.
11030         (generate_hsa): Use a return value of the function.
11031         (pass_gen_hsail::execute): Do not call
11032         convert_switch_statements here.
11033         * hsa-regalloc.c (hsa_regalloc): Call update_dominance.
11034         * hsa.h (hsa_function_representation::m_modified_cfg): New flag.
11035         (hsa_function_representation::update_dominance): New function.
11037 2016-03-31  Martin Liska  <mliska@suse.cz>
11039         PR hsa/70391
11040         * hsa-brig.c (emit_directive_variable): Emit alignment
11041         according to hsa_symbol::m_align.
11042         * hsa-dump.c (hsa_byte_alignment): Move the function to another file.
11043         (dump_hsa_symbol): Dump alignment of HSA symbols.
11044         * hsa-gen.c (get_symbol_for_decl): Set-up alignment of a symbol.
11045         (gen_hsa_addr_with_align): New function.
11046         (hsa_bitmemref_alignment): Use newly added function.
11047         (gen_hsa_insns_for_load): Likewise.
11048         (gen_hsa_insns_for_store): Likewise.
11049         (gen_hsa_memory_copy): New argument added.
11050         (gen_hsa_insns_for_single_assignment): Respect
11051         alignment for assignments processed via gen_hsa_memory_copy.
11052         (gen_hsa_insns_for_direct_call): Likewise.
11053         (gen_hsa_insns_for_return): Likewise.
11054         (gen_function_def_parameters): Set default alignment.
11055         * hsa.c (hsa_object_alignment): New function.
11056         (hsa_byte_alignment): Pasted function.
11057         * hsa.h (hsa_symbol::m_align): New field.
11059 2016-03-31  Bin Cheng  <bin.cheng@arm.com>
11061         * tree-ssa-loop-ivopts.c (get_computation_cost_at): Initialize
11062         scratch field for goto case.
11064 2016-03-31  James Greenhalgh  <james.greenhalgh@arm.com>
11066         * config/arm/linux-elf.h (ASM_OUTPUT_DEF): Delete.
11068 2016-03-31  Ilya Enkovich  <enkovich.gnu@gmail.com>
11070         PR target/70442
11071         * config/i386/i386.c (scalar_chain::convert_op): Fix description.
11072         (scalar_chain::convert_insn): Call convert_op for reg
11073         moves to handle undefined registers.
11075 2016-03-31  Nathan Sidwell  <nathan@acm.org>
11077         PR c++/70393
11078         * varasm.c (output_constructor_regular_field): Flush bitfield earlier.
11079         Assert we don't want to move backwards.
11081 2016-03-31  Kirill Yukhin  <kirill.yukhin@intel.com>
11083         PR target/70453
11084         * config/i386/sse.md (define_mode_attr shuffletype): Fix typo.
11086 2016-03-31  Jakub Jelinek  <jakub@redhat.com>
11088         PR rtl-optimization/70460
11089         * ira.c (indirect_jump_optimize): Don't substitute LABEL_REF
11090         with operand from REG_LABEL_OPERAND, instead substitute
11091         SET_SRC or REG_EQUAL note content if it is a LABEL_REF.
11092         Don't do anything for REG_NON_LOCAL_GOTO jumps.
11094 2016-03-31  Martin Liska  <mliska@suse.cz>
11096         * passes.c (execute_one_pass): Do not call
11097         todo_after for a discarded function.
11099 2016-03-31  Bin Cheng  <bin.cheng@arm.com>
11101         * tree-ssa-loop-ivopts.c (struct comp_cost): New scrach field.
11102         (no_cost, infinite_cost): Initialize the new field.
11103         (get_computation_cost_at): Record setup cost.
11104         (determine_use_iv_cost_address): Skip cost computation for sub
11105         uses if we can estimate it without losing accuracy.
11107 2016-03-30  Jan Hubicka  <hubicka@ucw.cz>
11109         * tree-ssa-loop-niter.c (idx_infer_loop_bounds): We can't get realistic
11110         estimates here.
11111         * tree-ssa-loop-unswitch.c (tree_unswitch_single_loop): Use also
11112         max_loop_iterations_int.
11113         (tree_unswitch_outer_loop): Likewise.
11114         * tree-ssa-loop-ivopts.c (avg_loop_niter): Likewise.
11115         * tree-vect-loop.c (vect_analyze_loop_2): Likewise.
11117 2016-03-30  Richard Biener  <rguenther@suse.de>
11119         PR middle-end/70450
11120         * fold-const.c (extract_muldiv_1): Fix thinko in wide_int::from usage.
11122 2016-03-30  Jakub Jelinek  <jakub@redhat.com>
11124         PR target/70421
11125         * config/i386/i386.c (ix86_expand_vector_set): Fix up argument order
11126         in gen_blendm expander.
11128 2016-03-30  Nick Clifton  <nickc@redhat.com>
11130         PR target/62254
11131         * config/arm/arm.c (arm_reload_out_hi): Add code to handle the
11132         case where we are already provided with an SImode SUBREG.
11134 2016-03-30  H.J. Lu  <hongjiu.lu@intel.com>
11136         PR target/70439
11137         * config/i386/i386.c (ix86_expand_epilogue): Properly check
11138         conflict between DRAP register and __builtin_eh_return.
11140 2016-03-30  Michael Matz  <matz@suse.de>
11141             Richard Biener  <rguenther@suse.de>
11143         PR ipa/12392
11144         * ipa-polymorphic-call.c (struct type_change_info): Change
11145         speculative to an unsigned allowing to limit the work we do.
11146         (csftc_abort_walking_p): New inline function..
11147         (check_stmt_for_type_change): Limit the number of may-defs
11148         skipped for speculative devirtualization to
11149         max-speculative-devirt-maydefs.
11150         * params.def (max-speculative-devirt-maydefs): New param.
11151         * doc/invoke.texi (--param max-speculative-devirt-maydefs): Document.
11153 2016-03-30  Mike Stump  <mrs@gcc.gnu.org>
11155         PR target/63890
11156         * config/i386/i386.h (ACCUMULATE_OUTGOING_ARGS): Use when profiling
11157         and TARGET_MACHO.
11159 2016-03-30  Patrick Palka  <ppalka@gcc.gnu.org>
11161         PR tree-optimization/59124
11162         * tree-vrp.c (register_edge_assert_for_2): For NAME != CST1
11163         where NAME = A +- CST2 add the assertion A != (CST1 -+ CST2).
11165 2016-03-29  Jeff Law  <law@redhat.com>
11167         * tree-ssa-coalesce.c (struct ssa_conflicts): Fix typo in comment.
11169 2016-03-10  Jan Hubicka  <hubicka@ucw.cz>
11171         * tree-ssa-loop-ivcanon.c (try_peel_loop): Change type of peel
11172         to HOST_WIDE_INT.
11174 2016-03-29  Thomas Schwinge  <thomas@codesourcery.com>
11176         * config/gnu.h (CPP_SPEC, LIB_SPEC): Don't override.
11177         * config/i386/gnu.h (STARTFILE_SPEC): Use gcrt1.o instead of
11178         gcrt0.o if linking dynamically.
11180 2016-03-10  Jan Hubicka  <hubicka@ucw.cz>
11182         PR ipa/70283
11183         * ipa-devirt.c (methods_equal_p): New function.
11184         (compare_virtual_tables): Use it.
11185         * cgraph.h (symbol_table::symbol_suffix_separator): Declare.
11186         * cgraphclones.c (clone_function_name_1): Use
11187         symbol_table::symbol_suffix_separator.
11188         * coverage.c (build_var): Likewise.
11189         * symtab.c (symbol_table::symbol_suffix_separator): New.
11191 2016-03-29  Jakub Jelinek  <jakub@redhat.com>
11193         PR rtl-optimization/70429
11194         * combine.c (simplify_shift_const_1): For ASHIFTRT don't optimize
11195         (cst1 >> count) >> cst2 into (cst1 >> cst2) >> count if
11196         mode != result_mode.
11198         PR c++/70353
11199         * tree-inline.c (remap_decls): Don't add_local_decl if cfun is null.
11201         PR tree-optimization/70405
11202         * ssa-iterators.h (num_imm_uses): Add missing braces.
11204 2016-03-29  Vladimir Makarov  <vmakarov@redhat.com>
11206         PR rtl-optimization/68695
11207         * ira-color.c (allocno_copy_cost_saving): New.
11208         (improve_allocation): Use it.
11210 2016-03-29  Richard Henderson  <rth@redhat.com>
11212         PR middle-end/70355
11213         * lower-subreg.c (simplify_subreg_concatn): Reject paradoxical subregs.
11215 2016-03-29  Richard Biener  <rguenther@suse.de>
11217         PR middle-end/70424
11218         * ipa-prop.c (ipa_compute_jump_functions_for_edge): Always
11219         use alignment returned by get_pointer_alignment_1 if it is
11220         bigger than BITS_PER_UNIT.
11221         * builtins.c (get_pointer_alignment_1): Do not return true
11222         for alignment extracted from SSA info.
11224 2016-03-28  James Bowman  <james.bowman@ftdichip.com>
11226         * config/ft32/ft32.opt (mnodiv): New.
11227         * config/ft32/ft32.md (*divsi3, *modsi3): Qualify with TARGET_NODIV.
11228         * doc/invoke.texi (FT32 Options -mnodiv): New.
11230 2016-03-28  Kirill Yukhin  <kirill.yukhin@intel.com>
11232         PR target/70406
11233         * config/i386/i386.md (define_split, andn): Fix modes.
11235 2016-03-26  Richard Biener  <rguenther@suse.de>
11236             Prathamesh Kulkarni  <prathamesh.kulkarni@linaro.org>
11238         PR ipa/70366
11239         * ipa-inline-transform.c (inline_call): Pass opts_for_fn (to->decl)
11240         instead of
11241         TREE_OPTIMIZATION (DECL_FUNCTION_SPECIFIC_OPTIMIZATION (to->decl))
11242         as 2nd argument to cl_optimization_restore().
11244 2016-03-25  Richard Henderson  <rth@redhat.com>
11246         PR target/70120
11247         * config/aarch64/aarch64.c (aarch64_asm_output_pool_epilogue): New.
11248         * config/aarch64/aarch64-protos.h: Declare it.
11249         * config/aarch64/aarch64.h (ASM_OUTPUT_POOL_EPILOGUE): New.
11251 2016-03-25  Alan Modra  <amodra@gmail.com>
11253         PR target/70052
11254         * config/rs6000/constraints.md (j): Simplify.
11255         * config/rs6000/predicates.md (easy_fp_constant): Exclude
11256         decimal float 0.D.
11257         * config/rs6000/rs6000.md (zero_fp): New mode_attr.
11258         (mov<mode>_hardfloat, mov<mode>_hardfloat32, mov<mode>_hardfloat64,
11259          mov<mode>_64bit_dm, mov<mode>_32bit): Use zero_fp in place of j
11260         in all constraint alternatives.
11261         (movtd_64bit_nodm): Delete "j" constraint alternative.
11263 2016-03-24  Aldy Hernandez  <aldyh@redhat.com>
11265         * tree-ssa-propagate.c: Enhance docs for
11266         SSA_PROP_NOT_INTERESTING.
11268 2016-03-24  Aldy Hernandez  <aldyh@redhat.com>
11270         * doc/extend.texi: Fix typo in documentation to pure attribute.
11272 2016-03-24  John David Anglin  <danglin@gcc.gnu.org>
11274         PR target/70319
11275         * config/pa/pa.md (bswapdi2): Use a scratch register.
11277 2016-03-24  Richard Henderson  <rth@redhat.com>
11279         PR middle-end/69845
11280         * fold-const.c (extract_muldiv_1): Correct test for multiplication
11281         overflow.
11283 2016-03-24  Uros Bizjak  <ubizjak@gmail.com>
11285         * config/i386/i386.md (*anddi3_doubleword): Generate AND insn
11286         using ix86_expand_binary_operator instead of gen_andsi3.
11288 2016-03-24  Richard Biener  <rguenther@suse.de>
11290         PR tree-optimization/70396
11291         * tree-vect-stmts.c (vectorizable_comparison): Use
11292         get_vectype_for_scalar_type.
11294 2016-03-24  Richard Biener  <rguenther@suse.de>
11296         PR middle-end/70370
11297         * gimplify.c (gimplify_asm_expr): Handle !allows_mem outputs
11298         with register bases.
11300 2016-03-24  Richard Biener  <rguenther@suse.de>
11302         PR tree-optimization/70372
11303         * tree-ssa-reassoc.c (eliminate_plus_minus_pair): Use
11304         build_all_ones_cst to also handle vector types correctly.
11306 2016-03-23  Michael Meissner  <meissner@linux.vnet.ibm.com>
11308         PR target/70381
11309         * config/rs6000/rs6000-cpus.def (ISA_2_6_MASKS_SERVER): Do not set
11310         -mfloat128 here.
11312 2016-03-23  Marek Polacek  <polacek@redhat.com>
11314         PR c++/69884
11315         * doc/invoke.texi: Document -Wignored-attributes.
11317 2016-03-23  Bin Cheng  <bin.cheng@arm.com>
11319         PR tree-optimization/69042
11320         * params.def (PARAM_IV_CONSIDER_ALL_CANDIDATES_BOUND): Increase the
11321         parameter from 30 to 40.
11323 2016-03-23  Bin Cheng  <bin.cheng@arm.com>
11325         PR tree-optimization/69042
11326         * tree-ssa-loop-ivopts.c (add_iv_candidate_for_use): Add IV cand
11327         for use with constant offset stripped in base.
11329 2016-03-23  Richard Biener  <rguenther@suse.de>
11331         PR middle-end/70251
11332         * match.pd (A + (B vcmp C ? 1 : 0) -> A - (B vcmp C)): Adjust
11333         mode compatibility check.
11334         (A - (B vcmp C ? 1 : 0) -> A + (B vcmp C)): Likewise.
11336 2016-03-23  Jeff Law  <law@redhat.com>
11338         PR tree-optimization/64058
11339         * tree-ssa-coalesce.c (struct coalesce_pair): Add new field
11340         CONFLICT_COUNT.
11341         (struct ssa_conflicts): Move up earlier in the file.
11342         (conflicts_, var_map_): New static variables.
11343         (initialize_conflict_count): New function to initialize the
11344         CONFLICT_COUNT field for each conflict pair.
11345         (compare_pairs): Lazily initialize the conflict count and use it
11346         as the first tie-breaker.
11347         (sort_coalesce_list): Add new arguments conflicts, map.  Initialize
11348         and wipe conflicts_ and map_ around the call to qsort.  Remove
11349         special case for 2 coalesce pairs.
11350         * bitmap.c (bitmap_count_unique_bits): New function.
11351         (bitmap_count_bits_in_word): New function, extracted from
11352         bitmap_count_bits.
11353         (bitmap_count_bits): Use bitmap_count_bits_in_word.
11354         * bitmap.h (bitmap_count_unique_bits): Declare it.
11356 2016-03-23  Ilya Enkovich  <enkovich.gnu@gmail.com>
11358         PR target/69917
11359         * config/i386/sol2.h (ASM_OUTPUT_DEF_FROM_DECLS): Follow
11360         transparent alias chain for decl assembler name.
11361         * config/sol2.c (solaris_assemble_visibility): Likewise.
11363 2016-03-23  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
11365         * config/arm/arm1020e.md (1020call_op): Reduce reservation
11366         duration.
11367         (v10_fdivs): Likewise.
11368         (v10_fdivd): Likewise.
11370 2016-03-23  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
11372         PR driver/70132
11373         * config/arm/driver-arm.c (host_detect_local_cpu): Reorder exit logic
11374         to not call fclose twice on file.
11376 2016-03-23  Jakub Jelinek  <jakub@redhat.com>
11378         PR tree-optimization/70354
11379         * tree-vect-patterns.c (vect_recog_vector_vector_shift_pattern): If
11380         oprnd0 is wider than oprnd1 and there is a cast from the wider
11381         type to oprnd1, mask it with the mask of the narrower type.
11383         PR target/70321
11384         * config/i386/i386.md (*anddi3_doubleword, *<code>di3_doubleword):
11385         Optimize TARGET_STV splitters, if high or low word of last argument
11386         is 0 or -1.
11388 2016-03-22  Jeff Law  <law@redhat.com>
11390         PR target/70232
11391         tree-ssa-threadbackward.c
11392         (fsm_find_control_statement_thread_paths): Correctly distinguish
11393         between old style jump threads vs FSM jump threads.
11395 2016-03-22  Ilya Enkovich  <enkovich.gnu@gmail.com>
11397         PR target/70302
11398         * config/i386/i386.c (scalar_chain::convert_op): Support
11399         uninitialized register usage case.
11401 2016-03-22  Richard Biener  <rguenther@suse.de>
11403         PR middle-end/70251
11404         * genmatch.c (gen_transform): Adjust last parameter to a three-state
11405         int...
11406         (capture::gen_transform): ... to change behavior when substituting
11407         a condition into cond or not-cond expr context.
11408         (dt_simplify::gen_1): Adjust.
11409         * gimple-match-head.c: Include gimplify.h for unshare_expr.
11410         * match.pd (A + (B vcmp C ? 1 : 0) -> A - (B vcmp C)): Revert
11411         last change and instead change to
11412         A + (B vcmp C ? 1 : 0) -> A - (B vcmp C ? -1 : 0).
11413         (A - (B vcmp C ? 1 : 0) -> A + (B vcmp C)): Likewise.
11415 2016-03-22  Anthony Green  <green@moxielogic.com>
11417         * config/moxie/moxiebox.h (CC1_SPEC): Define.  Fix endianness
11418         issue for moxiebox targets.
11419         (CC1PLUS_SPEC): Ditto.
11421 2016-03-22  Richard Biener  <rguenther@suse.de>
11423         PR middle-end/70333
11424         * fold-const.c (extract_muldiv_1): Properly perform multiplication
11425         in the wide type.
11427 2016-03-22  Kirill Yukhin  <kirill.yukhin@intel.com>
11429         * config/i386/i386.c (def_builtin): Remove duplicated functionality.
11431 2016-03-22  Kirill Yukhin  <kirill.yukhin@intel.com>
11433         PR target/70325
11434         * config/i386/i386.c (def_builtin): Handle
11435         OPTION_MASK_ISA_AVX512VL to be and-ed with other
11436         bits.
11437         (const struct builtin_description bdesc_special_args[]):
11438         Remove duplicate ISA bits.
11440 2016-03-22  Jakub Jelinek  <jakub@redhat.com>
11442         PR target/70329
11443         * config/i386/i386.c (ix86_expand_vecop_qihi): Don't bother computing
11444         d.perm[i] for i >= d.nelt.  If not full_interleave, compute d.perm[i]
11445         in a way that works also for AVX512BW.
11447         PR target/70300
11448         * config/i386/i386.md (cvtsd2ss splitter): Unpack in destination
11449         instead of source if operands[1] is xmm16 and above and
11450         !TARGET_AVX512VL.  Use avx512f_vec_dupv16sf_1 instead of
11451         vec_interleave_lowv4sf if we need to unpack xmm16 and above.
11453         PR c++/70295
11454         * gimplify.c (gimplify_modify_expr): Call gimple_set_no_warning
11455         on assign if (*from_p) is a comparison, set it to
11456         TREE_NO_WARNING (*from_p).
11458 2016-03-21  Jakub Jelinek  <jakub@redhat.com>
11460         PR middle-end/70326
11461         * lra.c (restore_scratches): Ignore deleted insns.
11463 2016-03-21  Marc Glisse  <marc.glisse@inria.fr>
11464             Jakub Jelinek  <jakub@redhat.com>
11466         PR tree-optimization/70317
11467         * match.pd (cmp @0 @0): Pass @0 instead of TYPE_MODE (TREE_TYPE (@0))
11468         to HONOR_NANS.
11470 2016-03-21  Uros Bizjak  <ubizjak@gmail.com>
11472         PR target/70327
11473         * config/i386/i386.md (movxi): Use ix86_expand_vector_move instead
11474         of ix86_expand_move.
11475         (movoi): Ditto.
11476         (movti): Use general_operand for operand 1 predicate.
11478 2016-03-21  Martin Liska  <mliska@suse.cz>
11480         * hsa-dump.c (dump_hsa_insn_1): dump default branch of SBR
11481         insns.
11482         (dump_hsa_symbol): Dump BRIG offset of hsa_symbols.
11484 2016-03-21  Martin Liska  <mliska@suse.cz>
11486         PR ipa/70306
11487         * ipa-icf.c (sem_function::parse): Skip static
11488         constructors and destructors.
11490 2016-03-21  Jakub Jelinek  <jakub@redhat.com>
11492         PR target/70296
11493         * config/rs6000/rs6000-c.c (rs6000_macro_to_expand): If IDENT is
11494         function-like macro, peek following token(s) if it is followed
11495         by CPP_OPEN_PAREN token with optional padding in between, and
11496         if not, don't treat it like a macro.
11498 2016-03-21  Thomas Schwinge  <thomas@codesourcery.com>
11499             Alexander Monakov  <amonakov@ispras.ru>
11501         * config/nvptx/nvptx.c (nvptx_option_override): Don't emit sorry
11502         for the stabs debug format.
11504 2016-03-21  Richard Biener  <rguenther@suse.de>
11506         PR tree-optimization/70310
11507         * tree-vect-generic.c (expand_vector_condition): Fold the built
11508         condition.
11510 2016-03-21  Kirill Yukhin  <kirill.yukhin@intel.com>
11512         PR target/70293
11513         * config/i386/sse.md: (define_insn "*vec_dup<mode>"/AVX2):
11514         Block third alternative for AVX-512VL target,
11516 2016-03-21  Martin Liska  <mliska@suse.cz>
11518         PR hsa/70234
11519         * hsa-brig.c (emit_function_directives): Mark unemitted
11520         global variables for emission.
11521         * hsa-gen.c (hsa_symbol::hsa_symbol): Initialize a new flag.
11522         (get_symbol_for_decl): Likewise.
11523         * hsa.h (struct hsa_symbol): New flag.
11525 2016-03-21  Richard Biener  <rguenther@suse.de>
11527         PR tree-optimization/70288
11528         * tree-ssa-loop-ivcanon.c (tree_estimate_loop_size): Make sure
11529         we do not estimate unsimplified all-constant conditionals or
11530         switches as optimized away.
11532 2016-03-21  Andrey Belevantsev  <abel@ispras.ru>
11534         PR rtl-optimization/69102
11535         * sched-deps.c (sched_analyze_insn): Do not set last_args_size field
11536         when we have a readonly dependency context.
11538 2016-03-18  Jeff Law  <law@redhat.com>
11540         PR rtl-optimization/70263
11541         * ira.c (memref_used_between_p): Assert we found END in the insn chain.
11542         (update_equiv_regs): When trying to move a store to after the insn
11543         that sets the source of the store, make sure the store occurs after
11544         the insn that sets the source of the store.  When successful note
11545         the REG_EQUIV note created in the dump file.
11547 2016-03-16  David Wohlferd  <dw@LimeGreenSocks.com>
11548             Bernd Schmidt  <bschmidt@redhat.com>
11550         * doc/extend.texi: Document more potential problems with basic asms.
11552 2016-03-18  Bernd Schmidt  <bschmidt@redhat.com>
11554         PR rtl-optimization/70278
11555         * lra-constraints.c (split_reg): Handle the case where biggest_mode is
11556         VOIDmode.
11558 2016-03-18  Jason Merrill  <jason@redhat.com>
11560         * calls.c (load_register_parameters): Fix zero size sibcall logic.
11562 2016-03-18  Kirill Yukhin  <kirill.yukhin@intel.com>
11564         * config/i386/sse.md: Use vpbroadcastq for broadcasting DF
11565         values to 128b regs.
11567 2016-03-18  Ilya Enkovich  <enkovich.gnu@gmail.com>
11569         PR tree-optimization/70252
11570         * tree-vect-stmts.c (supportable_widening_operation): Check resulting
11571         boolean vector has a proper number of elements.
11572         (supportable_narrowing_operation): Likewise.
11574 2016-03-18  Tom de Vries  <tom@codesourcery.com>
11576         PR ipa/70269
11577         * cgraph.c (cgraph_node::get_body): Set dump_file to NULL after save.
11579 2016-03-18  Jakub Jelinek  <jakub@redhat.com>
11581         * reload1.c (emit_input_reload_insns): Use simplify_replace_rtx
11582         instead of replace_rtx for DEBUG_INSNs.
11584 2016-03-18  Venkataramanan Kumar  <venkataramanan.kumar@amd.com>
11586         * config/i386/znver1.md : Fix latencies of FP/SSE/AVX
11587         load type reservations.
11589 2016-03-17  John David Anglin  <danglin@gcc.gnu.org>
11591         PR target/70188
11592         * config/pa/constraints.md: Revert 2015-02-13 change.  Use
11593         define_constraint for "Q" and "T" constraints.
11595 2016-03-17  Evandro Menezes  <e.menezes@samsung.com>
11597         Tweak the pipeline model for Exynos M1
11599         * config/aarch64/aarch64.c (exynosm1_tunings):  Enable weak prefetching
11600         model.
11602 2016-03-17  David Malcolm  <dmalcolm@redhat.com>
11604         PR c/70264
11605         * diagnostic-show-locus.c (compatible_locations_p): Handle the case
11606         where one or both locations aren't within a line_map.
11608 2016-03-17  H.J. Lu  <hongjiu.lu@intel.com>
11610         PR driver/70192
11611         * opts.c (finish_options): Don't set flag_pie to the default if
11612         -fpic, -fPIC, -fno-pic or -fno-PIC is used.  Set flag_pic to 0
11613         if it is -1.
11615 2016-03-17  Joern Rennecke  <joern.rennecke@embecosm.com>
11617         * config/i386/i386.md (*movv4qicc_insn+1..36): Pass
11618         true as ALL_REGS argument to replace_rtx.
11620 2016-03-17  Richard Biener  <rguenther@suse.de>
11622         PR debug/70271
11623         * dwarf2out.c (dwarf2out_early_finish): Process deferred_asm_name
11624         last.
11626 2016-03-17  Jakub Jelinek  <jakub@redhat.com>
11628         PR target/70245
11629         * rtl.h (replace_rtx): Add ALL_REGS argument.
11630         * rtlanal.c (replace_rtx): Likewise.  If true, use REGNO
11631         equality and assert mode is the same, instead of just rtx pointer
11632         equality.
11633         * config/i386/i386.md (mov + arithmetics with load peephole): Pass
11634         true as ALL_REGS argument to replace_rtx.
11636 2016-03-17  Ilya Enkovich  <enkovich.gnu@gmail.com>
11638         * match.pd (A + (B vcmp C ? 1 : 0) -> A - (B vcmp C)): Apply
11639         for boolean vector with vector mode only.
11640         (A - (B vcmp C ? 1 : 0) -> A + (B vcmp C)): Likewise.
11642 2016-03-17  Nick Clifton  <nickc@redhat.com>
11644         PR target/70162
11645         * config/rx/rx.c (rx_print_integer): Print negative constants in
11646         decimal.
11648 2016-03-17  Jakub Jelinek  <jakub@redhat.com>
11650         PR target/70261
11651         * rtlanal.c (replace_rtx): Revert 2016-03-16 change.
11653 2016-03-16  Richard Henderson  <rth@redhat.com>
11654             Richard Biener  <rguenth@suse.de>
11656         PR middle-end/70240
11657         PR middle-end/68215
11658         PR tree-opt/68714
11659         * gimplify.c (gimplify_expr) [VEC_COND_EXPR]: Gimplify the
11660         first operand as is_gimple_condexpr.
11662         PR middle-end/70240
11663         PR middle-end/68215
11664         Revert r231575
11665         2015-12-11  Eric Botcazou  <ebotcazou@adacore.com>
11666         * tree-vect-generic.c (tree_vec_extract): Remove GSI parameter.
11667         Do not gimplify the result.
11668         (do_unop): Adjust call to tree_vec_extract.
11669         (do_binop): Likewise.
11670         (do_compare): Likewise.
11671         (do_plus_minus): Likewise.
11672         (do_negate): Likewise.
11673         (expand_vector_condition): Likewise.
11674         (do_cond): Likewise.
11676 2016-03-16  Richard Henderson  <rth@redhat.com>
11678         PR target/70048
11679         * config/aarch64/aarch64.c (virt_or_elim_regno_p): New.
11680         (aarch64_classify_address): Use it.
11681         (aarch64_legitimize_address): Force all subexpressions of PLUS
11682         into registers.  Simplify as (sfp+const)+reg or (reg+reg)+const.
11684 2016-03-16  Jakub Jelinek  <jakub@redhat.com>
11685             Richard Biener  <rguenth@suse.de>
11687         PR target/70245
11688         * rtlanal.c (replace_rtx): For REG, if from is a REG,
11689         return to even if only REGNO is equal, and assert
11690         mode is the same.
11692 2016-03-11  Jeff Law  <law@redhat.com>
11694         PR rtl-optimization/70224
11695         * reorg.c (relax_delay_slots): Pass right argument to CROSSING_JUMP_P.
11697 2016-03-16  Richard Henderson  <rth@redhat.com>
11699         PR middle-end/70199
11700         * function.h (struct function): Add has_forced_label_in_static.
11701         * gimplify.c (force_labels_r): Set it.
11702         * lto-streamer-in.c (input_struct_function_base): Read it.
11703         * lto-streamer-out.c (output_struct_function_base): Write it.
11704         * tree-inline.c (has_label_address_in_static_1): Remove.
11705         (copy_forbidden): Remove fndecl parameter; test
11706         has_forced_label_in_static.
11707         (inline_forbidden_p): Update call to copy_forbidden.
11708         (tree_versionable_function_p): Likewise.
11709         * ipa-chkp.c (chkp_instrumentable_p): Likewise.
11710         (chkp_versioning): Likewise.
11711         * tree-inline.h (copy_forbidden): Update decl.
11713 2016-03-16  Marek Polacek  <polacek@redhat.com>
11715         PR c/70093
11716         * cgraphunit.c (cgraph_node::expand_thunk): Also build call to the
11717         function being thunked if the result type doesn't have fixed size.
11718         * gimplify.c (gimplify_modify_expr): Also set LHS if the result type
11719         doesn't have fixed size.
11721 2016-03-16  Bin Cheng  <bin.cheng@arm.com>
11723         * tree-vect-loop.c (vect_analyze_loop_2): Fix wrong dump info by
11724         reporting malformed loop nest.
11726 2016-03-16  Tom de Vries  <tom@codesourcery.com>
11728         PR lto/70187
11729         * ipa-devirt.c (possible_polymorphic_call_targets): Move
11730         nodes.length () == 1 test to before first nodes[0] access.
11732 2016-03-16  Tom de Vries  <tom@codesourcery.com>
11734         PR tree-optimization/68715
11735         * graphite-scop-detection.c (scop_detection::merge_sese): Add missing
11736         single_pred_p test.
11738 2016-03-16  Tom de Vries  <tom@codesourcery.com>
11740         PR tree-optimization/68809
11741         * graphite-scop-detection.c (same_close_phi_node): Test if result types
11742         are the same.
11744 2016-03-16  Carlos O'Donell  <carlos@redhat.com>
11745             Sandra Loosemore  <sandra@codesourcery.com>
11747         * doc/extend.texi (Common Function Attributes): Describe ifunc impact
11748         on leaf attribute. Mention ELF interposition problems.
11750 2016-03-16  Alan Modra  <amodra@gmail.com>
11752         PR rtl-optimization/69195
11753         PR rtl-optimization/47992
11754         * ira.c (indirect_jump_optimize): Ignore artificial defs.
11755         Add comments.
11757 2016-03-15  Eric Botcazou  <ebotcazou@adacore.com>
11759         PR bootstrap/69513
11760         * dwarf2out.c (flush_limbo_die_list): Really flush the limbo list.
11762 2016-03-15  Senthil Kumar Selvaraj  <senthil_kumar.selvaraj@atmel.com>
11764         * config/avr/avr.md (rotl<mode>3): Set mode for operand 2.
11766 2016-03-15  Jakub Jelinek  <jakub@redhat.com>
11768         PR rtl-optimization/70222
11769         * combine.c (simplify_shift_const_1): For A >> B >> C LSHIFTRT
11770         optimization if mode is different from result_mode, queue up masking
11771         of the result in outer_op.  Formatting fix.
11773         PR middle-end/70239
11774         * tree-ssa-sccvn.c (VN_INFO_GET): Use safe_grow_cleared instead
11775         of safe_grow.
11777 2016-03-15  Andrey Belevantsev  <abel@ispras.ru>
11779         PR rtl-optimization/69032
11780         * sel-sched-ir.c (get_seqno_by_preds): Include both insn and head when
11781         looping backwards over basic block insns.
11783 2016-03-15  Andrey Belevantsev  <abel@ispras.ru>
11785         PR target/66660
11786         * sel-sched-ir.c (merge_expr): Avoid changing the speculative pattern
11787         to non-speculative when propagating trap bits.
11789 2016-03-15  Andrey Belevantsev  <abel@ispras.ru>
11791         PR rtl-optimization/63384
11792         * sel-sched.c (invoke_aftermath_hooks): Do not decrease issue_more on
11793         DEBUG_INSN_P insns.
11795 2016-03-15  Andrey Belevantsev  <abel@ispras.ru>
11797         PR target/64411
11798         * sched-deps.c (get_implicit_reg_pending_clobbers): New function,
11799         factored out from ...
11800         (sched_analyze_insn): ... here.
11801         * sched-int.h (get_implicit_reg_pending_clobbers): Declare it.
11802         * sel-sched-ir.c (setup_id_implicit_regs): New function, use
11803         get_implicit_reg_pending_clobbers in it.
11804         (setup_id_reg_sets): Use setup_id_implicit_regs.
11805         (deps_init_id): Ditto.
11807 2016-03-15  Tom de Vries  <tom@codesourcery.com>
11809         PR ipa/70161
11810         * cgraph.c (cgraph_node::get_body): Save, reset and restore
11811         dump_file_name.
11812         * passes.c (execute_one_ipa_transform_pass): Add missing argument to
11813         execute_function_dump.
11814         (execute_one_pass): Don't dump function if it will be dumped after ipa
11815         transform.
11817 2016-03-15  Segher Boessenkool  <segher@kernel.crashing.org>
11819         * genrecog.c (match_pattern_2): If pred is NULL don't call
11820         safe_predicate_mode on it.
11822 2016-03-14  Jakub Jelinek  <jakub@redhat.com>
11824         PR middle-end/70219
11825         * lra-constraints.c (delete_move_and_clobber): Change assertion
11826         to also allow dregno == 0.
11828 2016-03-14  Richard Henderson  <rth@redhat.com>
11830         PR tree-opt/68714
11831         * tree-ssa-reassoc.c (ovce_extract_ops, optimize_vec_cond_expr): New.
11832         (can_reassociate_p): Allow ANY_INTEGRAL_TYPE_P.
11833         (reassociate_bb): Use optimize_vec_cond_expr; avoid
11834         optimize_range_tests, attempt_builtin_copysign and attempt_builtin_powi
11835         on vectors.
11837 2016-03-14  Bernd Schmidt  <bschmidt@redhat.com>
11839         PR target/70083
11840         * lra-lives.c (process_bb_lives): Also update biggest mode for hard
11841         regs.
11842         (lra_create_live_ranges_1): initialize hard register biggest_mode to
11843         VOIDmode.
11844         * lra-constraints.c (split_reg): For hard regs, try to find the
11845         biggest single-register mode used in the function.
11847 2016-03-14  Richard Biener  <rguenther@suse.de>
11849         PR tree-optimization/56365
11850         * tree-ssa-phiopt.c (minmax_replacement): Handle alternate
11851         constants to compare against.
11853 2016-03-14  Segher Boessenkool  <segher@kernel.crashing.org>
11855         PR target/70098
11856         * config/rs6000/rs6000.md (*ctr<mode>_internal1, *ctr<mode>_internal2,
11857         *ctr<mode>_internal5, *ctr<mode>_internal6): Also allow "d" as output.
11858         (define_split for the GPR case): Use int_reg_operand instead of
11859         gpc_reg_operand for the output.
11861 2016-03-14  Tom de Vries  <tom@codesourcery.com>
11863         PR tree-optimization/70045
11864         * graphite-isl-ast-to-gimple.c (graphite_create_new_loop_guard): Unshare
11865         create_empty_if_region_on_edge argument.
11867 2016-03-13  Eric Botcazou  <ebotcazou@adacore.com>
11869         * config/arm/vxworks.h (STACK_CHECK_STATIC_BUILTIN): Define.
11870         (STACK_CHECK_PROTECT): Likewise.
11871         * config/i386/vxworks.h (STACK_CHECK_STATIC_BUILTIN): Likewise
11872         (STACK_CHECK_PROTECT): Likewise.
11873         * config/rs6000/vxworks.h (STACK_CHECK_STATIC_BUILTIN): Likewise
11874         (STACK_CHECK_PROTECT): Likewise.
11875         * config/rs6000/vxworksae.h (STACK_CHECK_PROTECT): Likewise.
11876         * config/sparc/vxworks.h (STACK_CHECK_STATIC_BUILTIN): Likewise.
11877         (STACK_CHECK_PROTECT): Likewise.
11879 2016-03-12  Andrey Belevantsev  <abel@ispras.ru>
11881         PR rtl-optimization/69307
11882         * sel-sched.c (choose_best_pseudo_reg): Properly check for hard
11883         registers in modes that span more than one register.
11885 2016-03-12  Vladimir Makarov  <vmakarov@redhat.com>
11887         PR target/69614
11888         * lra-constraints.c (delete_move_and_clobber): New.
11889         (remove_inheritance_pseudos): Use it.
11891 2016-03-12  Eric Botcazou  <ebotcazou@adacore.com>
11893         PR ada/70017
11894         * calls.c (emit_library_call_value_1): Clear the ECF_NOTHROW flag if
11895         the libcall is LCT_THROW.
11896         * explow.c (probe_stack_range): Pass LCT_THROW to emit_library_call
11897         for the checking routine.
11899 2016-03-11  Michael Meissner  <meissner@linux.vnet.ibm.com>
11901         PR target/70131
11902         * config/rs6000/rs6000.md (round32<mode>2_fprs): Do not do the
11903         optimization if we have direct move.
11904         (roundu32<mode>2_fprs): Likewise.
11906 2016-03-11  Bernd Schmidt  <bschmidt@redhat.com>
11908         PR target/70123
11909         * lra-remat.c (operand_to_remat): Disallow hard regs in the value t
11910         be rematerialized.
11911         (reg_overlap_for_remat_p): Renamed from input_regno_present_p.
11912         Arguments swapped.  All callers changed.  Take reg_renumber into
11913         account, and Calculate and compare register ranges for hard regs.
11915 2016-03-11  Jeff Law  <law@redhat.com>
11917         PR tree-optimization/70190
11918         * tree-ssa-threadbackward.c (fsm_find_control_statement_thread_paths):
11919         Handle cases where we can not extract the taken edge, even though we
11920         found a constant value.
11922         PR tree-optimization/64058
11923         * tree-ssa-coalesce.c (struct coalesce_pair): Add new field INDEX.
11924         (num_coalesce_pairs): Move up earlier in file.
11925         (find_coalesce_pair): Initialize the INDEX field for each pair
11926         discovered.
11927         (compare_pairs): No longer sort on the elements in each pair.
11928         Instead break ties with the index of the coalesce pair.
11930 2016-03-11  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
11932         PR target/70002
11933         * config/aarch64/aarch64-protos.h
11934         (aarch64_save_restore_target_globals): New prototype.
11935         * config/aarch64/aarch64-c.c (aarch64_pragma_target_parse):
11936         Call the above when popping pragma.
11937         * config/aarch64/aarch64.c (aarch64_save_restore_target_globals):
11938         New function.
11939         (aarch64_set_current_function): Rewrite using the above.
11941 2016-03-11  Jakub Jelinek  <jakub@redhat.com>
11943         PR tree-optimization/70177
11944         * gimple-expr.h (extract_ops_from_tree_1): Renamed to ...
11945         (extract_ops_from_tree): ... this.  In the 2 argument
11946         overload remove _1 suffix.
11947         * gimple-expr.c (extract_ops_from_tree_1): Renamed to ...
11948         (extract_ops_from_tree): ... this.
11949         * gimple.c (gimple_build_assign, gimple_assign_set_rhs_from_tree):
11950         Adjust callers.
11951         * tree-ssa-loop-niter.c (derive_constant_upper_bound): Likewise.
11952         * tree-ssa-forwprop.c (defcodefor_name): Call 3 operand
11953         extract_ops_from_tree instead of 2 operand one.
11955 2016-03-11  Alan Lawrence  <alan.lawrence@arm.com>
11957         PR tree-optimization/70013
11958         * tree-sra.c (analyze_access_subtree): Also set grp_unscalarized_data
11959         for constant-pool entries.
11961 2016-03-11  Jakub Jelinek  <jakub@redhat.com>
11963         PR rtl-optimization/70174
11964         * expmed.c (store_bit_field_using_insv): Use gen_lowpart_if_possible
11965         followed by gen_lowpart on force_reg instead of just gen_lowpart.
11967         PR tree-optimization/70169
11968         * tree-ssa-loop.c (gen_lsm_tmp_name): Handle FUNCTION_DECL and
11969         LABEL_DECL like VAR_DECL.  Emit nothing instead of gcc_unreachable
11970         for unknown codes.
11972 2016-03-11  Ilya Enkovich  <enkovich.gnu@gmail.com>
11973             Jakub Jelinek  <jakub@redhat.com>
11975         PR target/70160
11976         * config/i386/i386.c (scalar_chain::convert_reg): Skip uses
11977         of uninitialized values.
11979 2016-03-11  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
11981         * config/s390/s390.md ("trunctddd2"): Turn former define_insn into
11982         define_expand.
11983         ("*trunctddd2"): New pattern definition.
11984         ("trunctdsd2"): Set prep_for_short_prec rounding mode for the
11985         TD->DD truncation.
11987 2016-03-11  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
11989         * config/s390/s390.md (BFP_RND_*, DFP_RND_*): Add new constant
11990         definitions for BFP and DFP rounding modes.
11991         ("fixuns_truncdddi2", "fixuns_trunctddi2")
11992         ("fixuns_trunc<BFP:mode><GPR:mode>2", "fixuns_trunc<mode>si2")
11993         ("fix_trunc<DSF:mode><GPR:mode>2", "fix_trunc<mode>di2")
11994         ("fix_trunctf<mode>2"): Use the new constants instead of magic
11995         numbers.
11997 2016-03-11  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
11999         * config/s390/constraints.md: Adjust comment.
12000         ("Y"): Adjust comment.  Rename s390_decompose_shift_count to
12001         s390_decompose_addrstyle_without_index.
12002         * config/s390/predicates.md (shift_count_or_setmem_operand):
12003         Rename to setmem_operand.
12004         * config/s390/s390-protos.h
12005         (s390_decompose_shift_count): Rename to
12006         s390_decompose_addrstyle_without_index.
12007         * config/s390/s390.c (s390_decompose_shift_count)
12008         (s390_mem_constraint, print_shift_count_operand)
12009         (print_operand_address, print_operand): Rename
12010         s390_decompose_shift_count to
12011         s390_decompose_addrstyle_without_index and rename
12012         print_shift_count_operand to print_addrstyle_operand troughout the
12013         file.
12014         * config/s390/s390.md ("setmem_long_<P:mode>", "*setmem_long")
12015         ("*setmem_long_and", "*setmem_long_31z", "*setmem_long_and_31z"):
12016         Rename shift_count_or_setmem_operand to setmem_operand.
12017         * config/s390/vx-builtins.md ("vec_insert<mode>")
12018         ("vec_promote<mode>"): Replace shift_count_or_setmem_operand with
12019         nonmemory_operand.
12021 2016-03-10  Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>
12023         PR target/70168
12024         * config/rs6000/rs6000.c (rs6000_expand_atomic_compare_and_swap):
12025         Handle overlapping retval and newval.
12027 2016-03-10  Nick Clifton  <nickc@redhat.com>
12029         PR target/7044
12030         * config/aarch64/aarch64.c
12031         (aarch64_override_options_after_change_1): When forcing
12032         flag_omit_frame_pointer to be true, use a special value that can
12033         be detected if this function is called again, thus preventing
12034         flag_omit_leaf_frame_pointer from being forced to be false.
12036 2016-03-10  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
12038         * common/config/aarch64/aarch64-common.c (aarch64_handle_option):
12039         Set x_flag_omit_leaf_frame_pointer when handling
12040         -momit-leaf-frame-pointer.
12042 2016-03-10  Jan Hubicka  <hubicka@ucw.cz>
12044         PR lto/69589
12045         * cgraph.c (cgraph_node::dump): Dump split_part and
12046         indirect_call_target.
12047         * cgraph.h (cgraph_node): Add indirect_call_target flag.
12048         * ipa.c (has_addr_references_p): Cleanup.
12049         (is_indirect_call_target_p): New.
12050         (walk_polymorphic_call_targets): Do not mark virtuals that may be
12051         called indirectly as local.
12052         (symbol_table::remove_unreachable_nodes): Compute indirect_call_target.
12054 2016-03-10  Jan Hubicka  <hubicka@ucw.cz>
12056         PR ipa/69630
12057         * ipa-devirt.c (possible_polymorphic_call_targets): Do not ICE
12058         on cxa_pure_virtual.
12060 2016-03-10  Jan Hubicka  <hubicka@ucw.cz>
12062         PR lto/69589
12063         * tree.c (free_lang_data_in_decl): Clear visibility of TYPE_DECL.
12065 2016-03-10  Jan Hubicka  <hubicka@ucw.cz>
12067         PR lto/69589
12068         * tree.c (need_assembler_name_p): Only record main variant type names.
12070 2016-03-10  Christophe Lyon  <christophe.lyon@linaro.org>
12072         PR target/70113.
12073         * config/aarch64/aarch64.h (TARGET_FIX_ERR_A53_843419_DEFAULT):
12074         Always define to 0 or 1.
12075         (TARGET_FIX_ERR_A53_843419): New macro.
12076         * config/aarch64/aarch64-elf-raw.h
12077         (TARGET_FIX_ERR_A53_843419_DEFAULT): Update for above changes.
12078         * config/aarch64/aarch64-linux.h: Likewise.
12079         * config/aarch64/aarch64.c
12080         (aarch64_override_options_after_change_1): Do not default
12081         aarch64_nopcrelative_literal_loads to true if Cortex-A53 erratum
12082         843419 is on.
12083         (aarch64_attributes): Handle fix-cortex-a53-843419.
12084         (aarch64_can_inline_p): Likewise.
12085         * config/aarch64/aarch64.opt (aarch64_fix_a53_err843419): Save.
12087 2016-03-10  Alan Lawrence  <alan.lawrence@arm.com>
12088         Jakub Jelinek <jakub@redhat.com>
12090         * common.opt (funconstrained-commons, flag_unconstrained_commons): New.
12091         * tree.c (array_at_struct_end_p): Do not limit to size of decl for
12092         DECL_COMMONS if flag_unconstrained_commons is set.
12093         * tree-dfa.c (get_ref_base_and_extent): Likewise.
12094         * doc/invoke.texi (Optimize Options): Add -funconstrained-commons.
12095         (funconstrained-commons): Document.
12097 2016-03-10  Christophe Lyon  <christophe.lyon@linaro.org>
12099         * config/aarch64/t-aarch64 (OPTIONS_H_EXTRA): Add
12100         aarch64-fusion-pairs.def and aarch64-tuning-flags.def
12102 2016-03-10  Ilya Enkovich  <enkovich.gnu@gmail.com>
12104         * tree-vect-stmts.c (vectorizable_mask_load_store): Check mask
12105         has a proper number of elements.
12107 2016-03-10  Alan Modra  <amodra@gmail.com>
12109         PR rtl-optimization/69195
12110         PR rtl-optimization/47992
12111         * ira.c (recorded_label_ref): Delete.
12112         (update_equiv_regs): Return void.
12113         (indirect_jump_optimize): New function.
12114         (ira): Call indirect_jump_optimize and delete_trivially_dead_insns
12115         before regstat_compute_ri.  Don't rebuild_jump_labels here.
12116         Delete update_regstat.
12118 2016-03-10  Richard Biener  <rguenther@suse.de>
12120         PR tree-optimization/70128
12121         * tree-ssa-structalias.c (set_uids_in_ptset): Set
12122         vars_contains_nonlocal for any FUNCTION_DECL or LABEL_DECL.
12124 2016-03-09  Jakub Jelinek  <jakub@redhat.com>
12126         PR tree-optimization/70152
12127         * tree-sra.c (replace_removed_params_ssa_names): Copy over
12128         SSA_NAME_OCCURS_IN_ABNORMAL_PHI from old_name to new_name.
12130         PR target/70086
12131         * config/i386/i386.md (truncdfsf2 splitter): Use gen_vec_concatv2df
12132         instead of gen_sse2_loadlpd.
12133         * config/i386/sse.md (*vec_concatv2df): Rename to...
12134         (vec_concatv2df): ... this.
12136         PR tree-optimization/70127
12137         * fold-const.c (operand_equal_p): Revert the 2015-10-28 change.
12139 2016-03-09  David Malcolm  <dmalcolm@redhat.com>
12141         PR c/68473
12142         PR c++/70105
12143         * diagnostic-show-locus.c (compatible_locations_p): New function.
12144         (layout::layout): Sanitize ranges using compatible_locations_p.
12146 2016-03-09  David Malcolm  <dmalcolm@redhat.com>
12148         PR c/68473
12149         PR c++/70105
12150         * diagnostic-show-locus.c (layout_range::layout_range): Replace
12151         location_range param with three const expanded_locations * and a
12152         bool.
12153         (layout::layout): Replace call to
12154         rich_location::lazily_expand_location with get_expanded_location.
12155         Extract the range and perform location expansion here, passing
12156         the results to the layout_range ctor.
12157         * diagnostic.c (source_range::debug): Delete.
12158         * diagnostic.h (diagnostic_expand_location): Reimplement in terms
12159         of rich_location::get_expanded_location.
12160         * gcc-rich-location.c (get_range_for_expr): Delete.
12161         (gcc_rich_location::add_expr): Reimplement to avoid the
12162         rich_location::add_range overload that took a location_range,
12163         passing a location_t instead.
12165 2016-03-09  Richard Biener  <rguenther@suse.de>
12166         Jakub Jelinek  <jakub@redhat.com>
12168         PR tree-optimization/70138
12169         * tree-vect-loop-manip.c (vect_update_ivs_after_vectorizer):
12170         Also skip vect_double_reduction_def.
12172 2016-03-09  Jakub Jelinek  <jakub@redhat.com>
12174         PR target/70049
12175         * config/i386/sse.md (*vec_extract<mode>): Use %0 instead of %k0
12176         if the operand is "m".
12178 2016-03-09  Nathan Sidwell  <nathan@acm.org>
12180         * config/nvptx/nvptx.c (nvptx_option_override): Don't kill debug level.
12182 2016-03-09  Venkataramanan Kumar  <venkataramanan.kumar@amd.com>
12184         * config/i386/i386.c (processor_target_table): Fix cost table
12185         intialization order for znver1.
12187 2016-03-08  Jakub Jelinek  <jakub@redhat.com>
12189         * ipa-polymorphic-call.c (walk_ssa_copies): Fix spelling
12190         - becuase -> because.
12191         * ipa-reference.c (ignore_module_statics): Likewise.
12192         * cgraph.c (cgraph_node::get_body): Likewise.
12193         * ipa-inline.c (early_inliner): Likewise.
12194         * ipa-devirt.c (types_same_for_odr): Likewise.
12195         * tree-streamer-out.c (pack_ts_type_common_value_fields): Likewise.
12196         * config/i386/i386.h (ACCUMULATE_OUTGOING_ARGS): Likewise.
12198 2016-03-08  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
12200         * tree-ssa-math-opts.c: Fix typo in comment.
12202 2016-03-08  Jakub Jelinek  <jakub@redhat.com>
12204         PR target/70110
12205         * config/i386/i386.c (scalar_chain::make_vector_copies,
12206         scalar_chain::convert_reg): Call end_sequence in between
12207         get_insns and emit_conversion_insns rather than after both
12208         calls.
12210 2016-03-07  Uros Bizjak  <ubizjak@gmail.com>
12212         PR target/70064
12213         * config/i386/i386.h (machine_function): Add
12214         pc_thunk_call_expanded flag.
12215         (ix86_pc_thunk_call_expanded): New define.
12216         * config/i386/i386.md (set_got, set_got_labelled): New expanders.
12217         (*set_got): Rename insn pattern from set_got.
12218         (*set_got_labelled): Rename inst pattern from set_got_labelled.
12219         * config/i386/i386.c (ix86_compute_frame_layout): Use
12220         ix86_pc_thunk_call_expanded to prevent red-zone.
12222 2016-03-07  Martin Jambor  <mjambor@suse.cz>
12224         * hsa.h (hsa_get_ctor_statements): Declare.
12225         (hsa_get_dtor_statements): Likewise.
12226         (hsa_get_kernel_dispatch_type): Likewise.
12227         * hsa.c (hsa_get_ctor_statements): New function.
12228         (hsa_get_dtor_statements): Likewise.
12229         (hsa_get_kernel_dispatch_type): Likewise.
12230         * hsa-brig.c (hsa_cdtor_statements): Removed.
12231         (hsa_output_libgomp_mapping): Use hsa_get_ctor_statements and
12232         hsa_get_dtor_statements.
12233         * hsa-gen.c (hsa_kernel_dispatch_type): Removed.
12234         (get_hsa_kernel_dispatch_offset): Use hsa_get_kernel_dispatch_type.
12236 2016-03-07  Andre Vieira  <andre.simoesdiasvieira@arm.com>
12238         * config/arm/arm-cores.def (cortex-r8): New.
12239         * config/arm/arm-tables.opt (cortex-r8): Regenerate.
12240         * config/arm/arm-tune.md: Likewise.
12241         * doc/invoke.texi: Add cortex-r8 to list of cpu values.
12243 2016-03-07  Martin Sebor  <msebor@redhat.com>
12245         PR rtl-optimization/19705
12246         * doc/invoke.texi (Options That Control Optimization): Clarify
12247         -fno-branch-count-reg.
12249 2016-02-26  Richard Biener  <rguenther@suse.de>
12250             Jeff Law  <law@redhat.com>
12252         PR tree-optimization/69740
12253         * cfghooks.c (remove_edge): Request loop fixups if we delete
12254         an edge that might turn an irreducible loop into a natural
12255         loop.
12256         * cfgloop.h (check_verify_loop_structure): Clear LOOPS_NEED_FIXUP.
12257         Move after definition of loops_state_clear.
12259 2016-03-07  Bin Cheng  <bin.cheng@arm.com>
12261         PR rtl-optimization/69052
12262         * rtlanal.c (commutative_operand_precedence): Set higher precedence
12263         to CONST_WIDE_INT.
12265 2016-03-07  Tom de Vries  <tom@codesourcery.com>
12267         PR tree-optimization/70116
12268         * tree-ssa-tail-merge.c (merge_stmts_p): New function, handling
12269         is_tm_ending stmts and ubsan/asan internal functions.
12270         (find_duplicate): Use it.  Don't test is_tm_ending here.
12272 2016-03-07  Richard Biener  <rguenther@suse.de>
12274         PR tree-optimization/70115
12275         * tree-ssa-loop-ivcanon.c (propagate_into_all_uses): Remove.
12276         (propagate_constants_for_unrolling): Use replace_uses_by.
12278 2016-03-07  Nathan Sidwell  <nathan@codesourcery.com>
12280         PR middle-end/69916
12281         * omp-low.c (struct oacc_loop): Add ifns.
12282         (new_oacc_loop_raw): Initialize it.
12283         (finish_oacc_loop): Clear mask & flags if no ifns.
12284         (oacc_loop_discover_walk): Count IFN_GOACC_LOOP calls.
12285         (oacc_loop_xform_loop): Add ifns arg & adjust.
12286         (oacc_loop_process): Adjust oacc_loop_xform_loop call.
12288 2016-03-07  Richard Henderson  <rth@redhat.com>
12290         PR rtl-opt/70061
12291         * tree-outofssa.c (emit_partition_copy): Flush pending stack adjust.
12292         (insert_value_copy_on_edge): Likewise.
12294 2016-03-07  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
12296         * config/arm/arm_neon.h: Show error if using with soft-float ABI.
12298 2016-03-07  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
12300         PR target/62281
12301         * config/i386/sol2.h (STACK_REALIGN_DEFAULT): Define.
12303 2016-03-05  Venkataramanan Kumar  <Venkataramanan.kumar@amd.com>
12305         * config/i386/i386.c (znver1_cost): Fix Multiply cost.
12307 2016-03-05  Venkataramanan Kumar  <Venkataramanan.kumar@amd.com>
12309         Fix sseimul type attribute.
12310         * config/i386/znver1.md
12311         (znver1_sseimul, znver1_sseimul_avx256, znver1_sseimul_load,
12312         znver1_sseimul_avx256_load) : Fix the type attribute.
12313         (znver1_sseimul_di, znver1_sseimul_load_di): Fix type attribute,
12314         pipe usage and latency.
12316 2016-03-05  Jakub Jelinek  <jakub@redhat.com>
12318         PR c++/70084
12319         * tree-inline.c (copy_tree_body_r): When cancelling ADDR_EXPR
12320         of INDIRECT_REF and ADDR_EXPR changed type, fold_convert it
12321         to the right type.
12323 2016-03-04  Bernd Schmidt  <bschmidt@redhat.com>
12325         PR c/69973
12326         * targhooks.c (default_vector_alignment): Limit to MAX_OFILE_ALIGNMENT.
12328         PR rtl-optimization/69941
12329         * postreload.c (reload_combine_recognize_pattern): Ensure all uses of
12330         the reg share its mode.
12332 2016-03-04  Jeff Law  <law@redhat.com>
12334         PR tree-optimization/69196
12335         * tree-ssa-threadbackward.c (fsm_find_control_statement_thread_paths):
12336         If the both SSA_NAMEs are anonymous, then consider them unassociated
12337         and include the PHI in the statement count.
12339 2016-03-05  Tom de Vries  <tom@codesourcery.com>
12341         * omp-low.c (check_omp_nesting_restrictions): Check for non-oacc
12342         construct in oacc routine.  Check for oacc region in oacc routine.
12344 2016-03-04  Jakub Jelinek  <jakub@redhat.com>
12346         PR target/70062
12347         * config/i386/i386.c (decide_alg): Add RECUR argument.  Revert
12348         2016-02-22 changes, instead don't recurse if RECUR is already true.
12349         Don't change *dynamic_check if RECUR.  Adjust recursive caller
12350         to pass true to the new argument.
12351         (ix86_expand_set_or_movmem): Adjust decide_alg caller.
12353         PR target/70059
12354         * config/i386/sse.md (vec_set_lo_<mode><mask_name>,
12355         <extract_type_2>_vinsert<shuffletype><extract_suf_2>_mask): Formatting
12356         fixes.
12357         (vec_set_hi_<mode><mask_name>): Likewise.  Swap VEC_CONCAT operands.
12359 2016-03-04  Bernd Schmidt  <bschmidt@redhat.com>
12361         PR rtl-optimization/57676
12362         * lra-assigns.c (lra_assign): Guard test for maximum iterations
12363         with flag_checking.
12365 2016-03-04  Ilya Enkovich  <enkovich.gnu@gmail.com>
12367         * tree-vect-patterns.c (search_type_for_mask): Handle
12368         comparison of booleans.
12370 2016-03-04  Jakub Jelinek  <jakub@redhat.com>
12372         * doc/extend.texi (__builtin_alloca, __builtin_alloca_with_align):
12373         Fix @xref usage.
12375         PR debug/69947
12376         * dwarf2out.c (prune_unused_types_walk_loc_descr): Handle
12377         all other ops that have dw_val_class_die_ref operands,
12378         and DW_OP_GNU_entry_value.
12380 2016-03-03  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
12382         PR rtl-optimization/69904
12383         * config/arm/arm.c (arm_cannot_copy_insn_p):
12384         Return true for load-exclusive instructions.
12386 2016-03-03  Jakub Jelinek  <jakub@redhat.com>
12388         PR target/70021
12389         * tree-vect-stmts.c (vect_mark_relevant): Remove USED_IN_PATTERN
12390         argument, if STMT_VINFO_IN_PATTERN_P (stmt_info), always mark
12391         the pattern no matter if it is used just by non-pattern, pattern
12392         or mix thereof.
12393         (process_use, vect_mark_stmts_to_be_vectorized): Adjust callers.
12394         * tree-vect-patterns.c (vect_recog_vector_vector_shift_pattern): If
12395         oprnd1 def_stmt is in pattern, don't look through it.
12397 2016-03-03  Marek Polacek  <polacek@redhat.com>
12399         PR middle-end/70050
12400         * match.pd (X % -Y): Add INTEGRAL_TYPE_P check.
12402 2016-03-03  Martin Liska  <mliska@suse.cz>
12404         PR tree-optimization/70043
12405         * tree-vect-loop.c (optimize_mask_stores): Move iterator to
12406         previous statement if we see a debug statement.
12408 2016-03-03  Richard Biener  <rguenther@suse.de>
12410         PR tree-optimization/55936
12411         * tree-vrp.c (compare_name_with_value): Add use_equiv_p
12412         parameter and guard unsafe equivalence use.
12413         (vrp_evaluate_conditional_warnv_with_ops): Always use
12414         safe equivalences but not via the quadratic compare_names
12415         helper.
12417 2016-03-03  Michael Collison  <michael.collison@linaro.org>
12419         PR target/70014
12420         * config/arm/arm.md (*subsi3_carryin_const): Change predicate
12421         for operand 1 to s_register_operand. Change predicate for operand
12422         2 to arm_not_immediate_operand.
12424 2016-03-02  H.J. Lu  <hongjiu.lu@intel.com>
12426         * doc/tm.texi: Regenerated.
12428 2016-03-02  Richard Henderson  <rth@redhat.com>
12430         PR rtl-opt/67145
12431         * simplify-rtx.c (simplify_plus_minus): Allow reassoc without
12432         simplification when all args are positive non-fixed registers.
12434 2016-03-02  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
12436         * target.def (lra_p): Specify that new ports should use LRA.
12438 2016-03-02  Jakub Jelinek  <jakub@redhat.com>
12440         PR libgomp/69555
12441         * gimplify.c (gimplify_decl_expr): For decls with REFERENCE_TYPE, also
12442         gimplify_type_sizes the type they refer to.
12443         (omp_notice_variable): Handle reference vars to VLAs.
12444         * omp-low.c (lower_omp_target): Emit setup of OMP_CLAUSE_PRIVATE
12445         reference to VLA decls in the second pass instead of first pass.
12447 2016-03-02  Tom de Vries  <tom@codesourcery.com>
12449         PR tree-optimization/68659
12450         * graphite-isl-ast-to-gimple.c (collect_all_ssa_names): Handle
12451         new_expr == NULL_TREE.
12452         (get_new_name): Handle ADDR_EXPR.
12454 2016-03-02  Bin Cheng  <bin.cheng@arm.com>
12456         PR rtl-optimization/69052
12457         * loop-invariant.c (canonicalize_address): New function.
12458         (inv_can_prop_to_addr_use): Check validity of address expression
12459         which is canonicalized by above function.
12461 2016-03-02  Alan Modra  <amodra@gmail.com>
12463         PR ipa/69990
12464         * ipa-icf.c (sem_variable::merge): Do not merge an alias with
12465         larger alignment.
12467 2016-03-02  Jakub Jelinek  <jakub@redhat.com>
12469         PR target/70028
12470         * config/i386/i386.md (kmovw): Move m constraint to 2nd alternative.
12471         (*movhi_internal): Put mask moves from and to memory separately
12472         from moves from/to GPRs.
12474 2016-03-02  Richard Biener  <rguenther@suse.de>
12476         * genmatch.c (dt_node::gen_kids): Fix match code-gen for embedded
12477         GENERIC expressions in GIMPLE.
12479 2016-03-02  Richard Biener  <rguenther@suse.de>
12481         * config/i386/i386.c (type_natural_mode): Fix typo.
12483 2016-03-02  Nick Clifton  <nickc@redhat.com>
12485         * config.gcc (mep-*-elf): Add newlib-stdint.h to tm_file.
12487 2016-03-02  Richard Biener  <rguenther@suse.de>
12488             Uros Bizjak  <ubizjak@gmail.com>
12490         PR target/67278
12491         * config/i386/i386.c (type_natural_mode): Handle XFmode vectors.
12493 2016-03-02  Richard Biener  <rguenther@suse.de>
12495         PR middle-end/67278
12496         * tree-cfg.c (verify_expr): Adjust BIT_FIELD_REF case.
12498 2016-03-02  Marek Polacek  <polacek@redhat.com>
12500         PR c/67854
12501         * gimplify.c (gimplify_va_arg_expr): Use expanded location for the
12502         "is promoted to" warning.
12504 2016-03-01  DJ Delorie  <dj@redhat.com>
12506         * config.gcc: Deprecate mep-*.
12508 2016-03-01  Vladimir Makarov  <vmakarov@redhat.com>
12510         PR middle-end/70025
12511         * lra-constraints.c (regno_val_use_in): New.
12512         (match_reload): Use it instead of regno_use_in.
12514 2016-03-01  Eric Botcazou  <ebotcazou@adacore.com>
12516         PR rtl-optimization/70007
12517         * gcse.c (compute_ld_motion_mems): Tidy up and also invalidate memory
12518         references present in REG_EQUAL notes attached to non-SET patterns.
12520 2016-03-01  Jeff Law  <law@redhat.com>
12522         PR tree-optimization/69196
12523         * tree-ssa-threadbackward.c (fsm_find_control_statement_thread_paths):
12524         Appropriately clamp the number of statements to copy when the
12525         thread path does not traverse a loop backedge.
12527         PR tree-optimization/69196
12528         * tree-ssa-threadbackward.c (fsm_find_control_statement_thread_paths):
12529         Do count some PHIs in the thread path against the insn count.  Decrease
12530         final statement count by one as the control statement in the last
12531         block will get removed.  Remove special cased code for handling PHIs
12532         in the last block.
12534 2016-03-01  Uros Bizjak  <ubizjak@gmail.com>
12536         PR target/70027
12537         * config/i386/i386.c (ix86_output_call_insn): Add -masm=intel
12538         asm dialect alternatives to explicit GOTPCREL calls.
12540 2016-03-01  Eric Botcazou  <ebotcazou@adacore.com>
12542         PR ada/70017
12543         * ira.c (do_reload): Issue warning for generic stack checking here...
12544         * reload1.c (reload): ...instead of here and streamline it.
12546 2016-03-01  Nick Clifton  <nickc@redhat.com>
12548         * config.gcc (cr16-*-elf): Add newlib-stdint.h to tm_file.
12550 2016-03-01  Richard Biener  <rguenther@suse.de>
12552         PR tree-optimization/69983
12553         * tree-chrec.c (eq_evolutions_p): Handle conversions, compare
12554         types and fall back to operand_equal_p.
12556 2016-03-01  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
12558         Revert
12559         2016-03-01  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
12561         * config/s390/constraints.md ("jm8"): New constraint.
12562         * config/s390/predicates.md ("const_int_8bitset_operand"): New
12563         predicate.
12564         * config/s390/s390.md ("*setmem_long", "*setmem_long_and"): Merge
12565         into ...
12566         ("*setmem_long<setmem_and>"): New pattern.
12567         ("*setmem_long_31z", "*setmem_long_and_31z"): Merge
12568         into ...
12569         ("*setmem_long_31z<setmem_and>"): New pattern.
12570         * config/s390/subst.md ("setmem_31z_subst", "setmem_and_subst"):
12571         New substitution rules with the required attributes.
12574 2016-03-01  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
12576         Revert
12577         2016-03-01  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
12579         * gensupport.c (process_substs_on_one_elem): Split loop to
12580         complete mark_operands_used_in_match_dup on all expressions in the
12581         vector first.
12582         (adjust_operands_numbers): Inline into process_substs_on_one_elem
12583         and remove function.
12585 2016-03-01  Richard Biener  <rguenther@suse.de>
12587         PR middle-end/70022
12588         * fold-const.c (fold_indirect_ref_1): Fix range checking for
12589         vector BIT_FIELD_REF extract.
12591 2016-03-01  Richard Biener  <rguenther@suse.de>
12593         PR tree-optimization/69994
12594         * tree-ssa-reassoc.c (ops_equal_values_p): Handle missing case.
12596 2016-03-01  Ilya Enkovich  <enkovich.gnu@gmail.com>
12598         PR tree-optimization/69956
12599         * tree-vect-stmts.c (supportable_widening_operation): Support
12600         multi-step conversion of boolean vectors.
12601         (supportable_narrowing_operation): Likewise.
12603 2016-03-01  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
12605         * config/s390/s390.c (s390_decompose_address): Don't accept SImode
12606         anymore.
12608 2016-03-01  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
12610         * config/s390/subst.md (DSI_VI): New mode iterator.
12611         ("addr_style_op_subst"): Use DSI_VI instead of DSI.
12612         * config/s390/vector.md ("vec_set<mode>"): Move expander before
12613         the insn definition.
12614         ("*vec_set<mode>"): Change predicate and add alternative to
12615         support only either register or const_int operands as element
12616         selector.
12617         ("*vec_set<mode>_plus"): New pattern to support reg + const_int
12618         operands.
12619         ("vec_extract<mode>"): New expander.
12620         ("*vec_extract<mode>"): New insn definition supporting reg and
12621         const_int element selectors.
12622         ("*vec_extract<mode>_plus"): New insn definition supporting
12623         reg+const_int element selectors.
12624         ("rotl<mode>3", "ashl<mode>3", "ashr<mode>3"): Merge into the
12625         following expander+insn definition.
12626         ("<vec_shifts_name><mode>3"): New expander.
12627         ("*<vec_shifts_name><mode>3<addr_style_op>"): New insn definition.
12629 2016-03-01  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
12631         * config/s390/s390.md ("*tabort_1"): Change predicate to
12632         nonmemory_operand.  Add a second alternative to cover
12633         register as well as const int operands.
12634         ("*tabort_1_plus"): New pattern definition.
12636 2016-03-01  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
12638         * config/s390/s390.md ("*ashrdi3_cc_31")
12639         ("*ashrdi3_cconly_31""*ashrdi3_cc_31_and")
12640         ("*ashrdi3_cconly_31_and", "*ashrdi3_31_and", "*ashrdi3_31"):
12641         Merge insn definitions into ...
12642         ("*ashrdi3_31<addr_style_op_cc><masked_op_cc><setcc><cconly>"):
12643         New pattern definition.
12644         ("*ashr<mode>3_cc", "*ashr<mode>3_cconly", "ashr<mode>3", )
12645         ("*ashr<mode>3_cc_and", "*ashr<mode>3_cconly_and")
12646         ("*ashr<mode>3_and"): Merge insn definitions into ...
12647         ("*ashr<mode>3<addr_style_op_cc><masked_op_cc><setcc><cconly>"):
12648         New pattern definition.
12649         * config/s390/subst.md ("addr_style_op_cc_subst")
12650         ("masked_op_cc_subst", "setcc_subst", "cconly_subst"): New
12651         substitutions patterns plus attributes.
12652         Add ashiftrt to SUBST iterator.
12654 2016-03-01  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
12656         * config/s390/s390.md ("<shift><mode>3"): Change predicate of
12657         op2 to nonmemory_operand.
12658         ("*<shift>di3_31", "*<shift>di3_31_and"):
12659         Merge into single pattern definition ...
12660         ("*<shift>di3_31<addr_style_op><masked_op>"): New pattern.
12661         ("*<shift><mode>3", "*<shift><mode>3_and"): Merge into single
12662         pattern definition ...
12663         ("*<shift><mode>3<addr_style_op><masked_op>"): New pattern.
12664         * config/s390/subst.md: Add ashift and lshiftrt to SUBST
12665         iterator.
12667 2016-03-01  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
12669         * config/s390/predicates.md (const_int_6bitset_operand): New
12670         predicate.
12671         * config/s390/s390.md: Include subst.md.
12672         ("rotl<mode>3"): New expander.
12673         ("rotl<mode>3", "*rotl<mode>3_and"): Merge insn definitions into
12674         ...
12675         ("*rotl<mode>3<addr_style_op><masked_op>"): New insn definition.
12676         * config/s390/subst.md: New file.
12678 2016-03-01  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
12680         * config/s390/s390.md ("op_type", "atype", "length" attributes):
12681         Remove RRR type.  It doesn't really exist.
12682         ("RRer", "f0", "v0", "vf", "vd", "op1", "Rf"): Remove mode
12683         attributes.
12684         ("BFP", "DFP", "nDSF", "nDFDI"): Add mode attributes.
12685         ("*cmp<mode>_ccs", "floatdi<mode>2", "add<mode>3")
12686         ("*add<mode>3_cc", "*add<mode>3_cconly", "sub<mode>3")
12687         ("*sub<mode>3_cc", "*sub<mode>3_cconly", "mul<mode>3")
12688         ("fma<mode>4", "fms<mode>4", "div<mode>3", "*neg<mode>2")
12689         ("*abs<mode>2", "*negabs<mode>2", "sqrt<mode>2"): Override
12690         `enabled' attribute.
12692 2016-03-01  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
12694         * gensupport.c (process_substs_on_one_elem): Split loop to
12695         complete mark_operands_used_in_match_dup on all expressions in the
12696         vector first.
12697         (adjust_operands_numbers): Inline into process_substs_on_one_elem
12698         and remove function.
12700 2016-02-29  Eric Botcazou  <ebotcazou@adacore.com>
12702         PR target/69706
12703         * config/sparc/sparc.c (NWORDS_UP): Rename to...
12704         (CEIL_NWORDS): ...this.  Use CEIL macro.
12705         (compute_fp_layout): Adjust to above renaming.
12706         (function_arg_union_value): Likewise.
12707         (sparc_arg_partial_bytes): Likewise.
12708         (sparc_function_arg_advance): Likewise.
12710 2016-02-29  Jeff Law  <law@redhat.com>
12712         PR tree-optimization/70005
12713         * tree-ssa-uncprop.c (associate_equivalences_with_edges): Handle case
12714         where an object with a boolean range is compared against a value
12715         outside [0..1].
12717         PR tree-optimization/69999
12718         * gimple-ssa-split-paths.c (split_paths): When duplicating a block
12719         with an outgoing edge marked with EDGE_IRREDUCIBLE_LOOP, schedule
12720         loop cleanups.
12722 2016-02-29  Richard Biener  <rguenther@suse.de>
12724         PR tree-optimization/69994
12725         * tree-ssa-reassoc.c (gimple_nop_conversion_p): New function.
12726         (get_unary_op): Look through nop conversions.
12727         (ops_equal_values_p): New function, look for equality diregarding
12728         nop conversions.
12729         (eliminate_plus_minus_pair): Use ops_equal_values_p
12730         (repropagate_negates): Do not use get_unary_op here.
12732 2016-02-29  Martin Liska  <mliska@suse.cz>
12734         * system.h: Poison ENABLE_CHECKING macro.
12736 2016-02-29  Martin Liska  <mliska@suse.cz>
12738         * hsa-gen.c (gen_body_from_gimple): Dump only if TDF_DETAILS
12739         is presented in dump flags.
12740         * hsa-regalloc.c (linear_scan_regalloc): Likewise.
12741         (hsa_regalloc): Likewise.
12743 2016-02-19  Richard Biener  <rguenther@suse.de>
12745         PR tree-optimization/69980
12746         * tree-vect-slp.c (vect_attempt_slp_rearrange_stmts): Update
12747         permutation of those we need to keep.
12749 2016-02-29  Eric Botcazou  <ebotcazou@adacore.com>
12751         PR target/69706
12752         * config/sparc/sparc.c (ROUND_ADVANCE): Rename to...
12753         (NWORDS_UP): ...this
12754         (init_cumulative_args): Minor tweaks.
12755         (sparc_promote_function_mode): Likewise.
12756         (scan_record_type): Delete.
12757         (traverse_record_type): New function template.
12758         (classify_data_t): New structure type.
12759         (classify_registers): New inline function.
12760         (function_arg_slotno): In 64-bit mode, bail out early if FP slots are
12761         exhausted.  Instantiate traverse_record_type on classify_registers and
12762         deal with the case of a structure passed in slot #15 with no FP field
12763         in the first word.
12764         (assign_data_t): New structure type.
12765         (compute_int_layout): New static function.
12766         (compute_fp_layout): Likewise.
12767         (count_registers): New inline function.
12768         (assign_int_registers): New static function.
12769         (assign_fp_registers): Likewise.
12770         (assign_registers): New inline function.
12771         (function_arg_record_value_1): Delete.
12772         (function_arg_record_value_2): Likewise.
12773         (function_arg_record_value_3): Likewise.
12774         (function_arg_record_value): Adjust to above changes.  Instantiate
12775         traverse_record_type on count_registers to first count the number of
12776         registers to be used and then on assign_registers to assign them.
12777         (function_arg_union_value): Adjust to above renaming.
12778         (sparc_function_arg_1); Minor tweaks.  Remove commented out code.
12779         (sparc_arg_partial_bytes): Adjust to above renaming.  Deal with the
12780         case of a structure passed in slot #15
12781         (sparc_function_arg_advance): Likewise.
12782         (function_arg_padding): Minor tweak.
12784 2016-02-29  Richard Biener  <rguenther@suse.de>
12786         PR tree-optimization/69720
12787         * tree-vect-loop.c (get_initial_def_for_reduction): Avoid
12788         the adjustment_def path for possibly vectorized defs.
12789         (vect_create_epilog_for_reduction): Handle vectorized initial
12790         defs properly.
12792 2016-02-28  Eric Botcazou  <ebotcazou@adacore.com>
12794         * config/i386/cygming.h (STACK_REALIGN_DEFAULT): Define.
12796 2016-02-27  Jeff Law  <law@redhat.com>
12798         Revert
12799         2016-02-26  Richard Biener  <rguenther@suse.de>
12800                     Jeff Law  <law@redhat.com>
12802         PR tree-optimization/69740
12803         * cfghooks.c (remove_edge): Request loop fixups if we delete
12804         an edge that might turn an irreducible loop into a natural
12805         loop.
12807 2016-02-27  Jakub Jelinek  <jakub@redhat.com>
12809         PR rtl-optimization/69896
12810         * tree-vect-generic.c (get_compute_type): Avoid single element
12811         vector types.
12813 2016-02-26  Evandro Menezes  <e.menezes@samsung.com>
12815         Rename the AArch64 tuning option and related functions to enable the
12816         Newton series for the reciprocal square root to reflect its
12817         approximative characteristic.
12819         * config/aarch64/aarch64-protos.h (aarch64_emit_swrsqrt): Rename
12820         function to "aarch64_emit_approx_rsqrt".
12821         * config/aarch64/aarch64-tuning-flags.def: Rename tuning flag to
12822         AARCH64_EXTRA_TUNE_APPROX_RSQRT.
12823         * config/aarch64/aarch64.c (exynosm1_tunigs): Use new flag name.
12824         (xgene1_tunings): Likewise.
12825         (use_rsqrt_p): Likewise.
12826         (aarch64_emit_swrsqrt): Use new function name.
12827         * config/aarch64/aarch64-simd.md (aarch64_rsqrts_*): Likewise.
12828         * config/aarch64/aarch64.opt (mlow-precision-recip-sqrt): Reword the
12829         text explaining this option.
12830         * doc/invoke.texi (-mlow-precision-recip-sqrt): Likewise.
12832 2016-02-26  Jakub Jelinek  <jakub@redhat.com>
12834         PR target/69969
12835         * config/rs6000/rs6000.c (rs6000_option_override_internal): Don't
12836         complain about -mallow-movmisalign without -mvsx if
12837         TARGET_ALLOW_MOVMISALIGN was not set explicitly.
12839 2016-02-26  Joel Sherrill  <joel@rtems.org>
12841         * config.gcc: Add x86_64-*-rtems*.
12842         * config/i386/rtems-64.h: New file.
12844 2016-02-26  Joel Sherrill  <joel@rtems.org>
12846         * config.gcc: Add aarch64-*-rtems*.
12847         * config/aarch64/rtems.h: New file.
12849 2016-02-26  Segher Boessenkool  <segher@kernel.crashing.org>
12851         PR target/69946
12852         * config/rs6000/rs6000.c (rs6000_insn_for_shift_mask): Print rlwinm
12853         shift amount using %h.  Add comment.
12855 2016-02-26  Richard Biener  <rguenther@suse.de>
12856             Jeff Law  <law@redhat.com>
12858         PR tree-optimization/69740
12859         * cfghooks.c (remove_edge): Request loop fixups if we delete
12860         an edge that might turn an irreducible loop into a natural
12861         loop.
12863 2016-02-26  Martin Jambor  <mjambor@suse.cz>
12865         PR middle-end/69920
12866         * tree-sra.c (sra_modify_assign): Do not remove loads of
12867         uninitialized aggregates to SSA_NAMEs.
12869 2016-02-26  Richard Henderson  <rth@redhat.com>
12871         PR target/69709
12872         * config/s390/s390.md (risbg and risbgn splitters): Allocate new
12873         pseudo in case the target rtx matches the source of the left
12874         shift.
12876 2016-02-26  Martin Jambor  <mjambor@suse.cz>
12878         PR hsa/69568
12879         * hsa.h (hsa_type_packed_p): Declare.
12880         * hsa.c (hsa_type_packed_p): New function.
12881         * hsa-gen.c (mem_type_for_type): Use unsigned type for packed
12882         loads.
12883         (gen_hsa_insns_for_store): Use hsa_type_packed_p.
12884         * hsa-brig.c (emit_basic_insn): Likewise.
12886 2016-02-26  Martin Jambor  <mjambor@suse.cz>
12888         pr hsa/69674
12889         * hsa-gen.c (gen_hsa_phi_from_gimple_phi): Use proper hsa type for
12890         pointers.
12891         (gen_hsa_addr): Allow integer constants in TMR_INDEX2.
12893 2016-02-26  Martin Jambor  <mjambor@suse.cz>
12895         * hsa.h (is_a_helper): New overload for hsa_op_immed for
12896         hsa_op_with_type operands.
12897         (hsa_unsigned_type_for_type): Declare.
12898         * hsa.c (hsa_unsigned_type_for_type): New function.
12899         * hsa-gen.c (gen_hsa_binary_operation): Use hsa_unsigned_type_for_type.
12900         (gen_hsa_insns_for_operation_assignment): Satisfy constrains of
12901         the finalizer.  Do not emit extra move.
12903 2016-02-26  Martin Jambor  <mjambor@suse.cz>
12905         * hsa-gen.c (gen_hsa_ternary_atomic_for_builtin): Fail in presence of
12906         atomic operations in private segment.
12908 2016-02-26  Martin Jambor  <mjambor@suse.cz>
12910         * omp-low.c (grid_find_ungridifiable_statement): Store problematic
12911         statements to wi->info.  Also disallow omp simd constructs.
12912         (grid_target_follows_gridifiable_pattern): Use wi.info to dump reason
12913         for not gridifying.  Dump special string for omp_for.
12915 2016-02-26  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
12917         PR target/69245
12918         * config/aarch64/aarch64.c (aarch64_set_current_function):
12919         Save/restore target globals when switching to
12920         target_option_default_node.
12922 2016-02-26  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
12924         PR target/69613
12925         * config/aarch64/aarch64.c (aarch64_shift_truncation_mask):
12926         Return 0 if !SHIFT_COUNT_TRUNCATED.
12928 2016-02-26  Jakub Jelinek  <jakub@redhat.com>
12929             Eric Botcazou  <ebotcazou@adacore.com>
12931         PR rtl-optimization/69891
12932         * dse.c (scan_insn): If we can't figure out memset arguments
12933         or they are non-constant, call clear_rhs_from_active_local_stores.
12935 2016-02-26  Martin Liska  <mliska@suse.cz>
12937         * doc/extend.texi: Mention clog10, clog10f an clog10l
12938         in Builtins section.
12940 2016-02-26  Martin Liska  <mliska@suse.cz>
12942         * dwarf2out.c (new_loc_descr): Replace ENABLE_CHECKING with
12943         CHECKING_P.
12944         (resolve_args_picking_1): Likewise.
12945         * dwarf2out.h (struct GTY): Likewise.
12947 2016-02-26  Martin Liska  <mliska@suse.cz>
12949         * hsa-gen.c (generate_hsa): Replace ENABLE_CHECKING macro
12950         with flag_checking.
12951         * hsa-regalloc.c (linear_scan_regalloc): Likewise.
12953 2016-02-26  Markus Trippelsdorf  <markus@trippelsdorf.de>
12954             Martin Liska  <mliska@suse.cz>
12956         * doc/install.texi: Mention --enable-valgrind-annotations.
12958 2016-02-26  Richard Biener  <rguenther@suse.de>
12960         PR tree-optimization/69551
12961         * tree-ssa-structalias.c (get_constraint_for_ssa_var): When
12962         looking through aliases adjust DECL_PT_UID to refer to the
12963         ultimate alias target.
12965 2016-02-25  Martin Liska  <mliska@suse.cz>
12967         PR middle-end/69919
12968         * alloc-pool.c (after_memory_report): New variable.
12969         * alloc-pool.h (base_pool_allocator ::release): Do not use
12970         the infrastructure if after_memory_report.
12971         * toplev.c (toplev::main): Mark after memory report.
12973 2016-02-25  Richard Biener  <rguenther@suse.de>
12975         PR tree-optimization/48795
12976         * tree-vrp.c (check_array_ref): Use array_at_struct_end_p.
12978 2016-02-25  Ilya Verbin  <ilya.verbin@intel.com>
12980         PR driver/68463
12981         * config/gnu-user.h (CRTOFFLOADBEGIN): Define.  Add crtoffloadbegin.o if
12982         offloading is enabled and -fopenacc or -fopenmp is specified.
12983         (CRTOFFLOADEND): Likewise.
12984         (GNU_USER_TARGET_STARTFILE_SPEC): Add CRTOFFLOADBEGIN.
12985         (GNU_USER_TARGET_ENDFILE_SPEC): Add CRTOFFLOADEND.
12986         * lto-wrapper.c (offloadbegin, offloadend): Remove static vars.
12987         (offload_objects_file_name): New static var.
12988         (tool_cleanup): Remove offload_objects_file_name file.
12989         (find_offloadbeginend): Replace with ...
12990         (find_crtoffloadtable): ... this.
12991         (run_gcc): Remove offload_argc and offload_argv.
12992         Get offload_objects_file_name from -foffload-objects=... option.
12993         Read names of object files with offload from this file, pass them to
12994         compile_images_for_offload_targets.  Don't call find_offloadbeginend and
12995         don't pass offloadbegin and offloadend to the linker.  Don't pass
12996         offload non-LTO files to the linker, because now they're not claimed.
12998 2016-02-25  Jan Hubicka  <hubicka@ucw.cz>
13000         PR ipa/69630
13001         * ipa-devirt.c (possible_polymorphic_call_targets): Do not ICE
13002         on builtin_unreachable.
13004 2016-02-25  Jakub Jelinek  <jakub@redhat.com>
13006         PR rtl-optimization/69896
13007         * regcprop.c: Include cfgrtl.h.
13008         (copyprop_hardreg_forward_1): If noop_p insn uses narrower
13009         than remembered mode, either delete it (if noop_move_p), or
13010         treat like copy_p but not noop_p instruction.
13012 2016-02-24  Jakub Jelinek  <jakub@redhat.com>
13014         PR debug/69705
13015         * dwarf2out.c (gen_variable_die): Work around buggy LTO
13016         - allow NULL decl for Fortran DW_TAG_common_block variables.
13018 2016-02-24  Jason Merrill  <jason@redhat.com>
13020         * common.opt (flifetime-dse): Add -flifetime-dse=1.
13022 2016-02-24  Richard Biener  <rguenther@suse.de>
13023             Jakub Jelinek  <jakub@redhat.com>
13025         PR middle-end/69760
13026         * tree-scalar-evolution.c (interpret_rhs_expr): Re-write
13027         conditionally executed ops to well-defined overflow behavior.
13029 2016-02-24  Jakub Jelinek  <jakub@redhat.com>
13031         PR middle-end/69915
13032         * tree.c (build_vector_from_ctor): Fix handling of VECTOR_CST
13033         elements.
13035 2016-02-24  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
13037         PR rtl-optimization/69886
13038         * gcse.c (can_assign_to_reg_without_clobbers_p): Accept mode
13039         argument.  Use it when checking validity of set instructions.
13040         (want_to_gcse_p): Pass mode to can_assign_to_reg_without_clobbers_p.
13041         (compute_ld_motion_mems): Update can_assign_to_reg_without_clobbers_p
13042         callsite.
13043         * rtl.h (can_assign_to_reg_without_clobbers_p): Update prototype.
13044         * store-motion.c (find_moveable_store): Update
13045         can_assign_to_reg_without_clobbers_p callsite.
13047 2016-02-24  Richard Biener  <rguenther@suse.de>
13049         PR middle-end/68963
13050         * tree-ssa-loop-niter.c (derive_constant_upper_bound_ops): Fix
13051         bogus check.
13052         (record_nonwrapping_iv): Do not fall back to the low/high bound
13053         for non-constant IV bases if the stmt is not always executed.
13055 2016-02-24  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
13057         * config/arm/arm-cores.def (cortex-a32): New entry.
13058         * config/arm/arm-tables.opt: Regenerate.
13059         * config/arm/arm-tune.md: Regenerate.
13060         * config/arm/bpabi.h (BE8_LINK_SPEC): Add mcpu=cortex-a32.
13061         * config/arm/t-aprofile: Handle mcpu=cortex-a32.
13062         * doc/invoke.texi (ARM Options): Document cortex-a32 as value
13063         for -mcpu and -mtune.
13065 2016-02-24  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
13067         PR target/69875
13068         * config/arm/arm.h (TARGET_HAVE_LPAE): Define.
13069         * config/arm/unspecs.md (VUNSPEC_LDRD_ATOMIC): New value.
13070         * config/arm/sync.md (arm_atomic_loaddi2_ldrd): New pattern.
13071         (atomic_loaddi_1): Delete.
13072         (atomic_loaddi): Rewrite expander using the above changes.
13074 2016-02-24  Jakub Jelinek  <jakub@redhat.com>
13076         PR c/69918
13077         * params.def (PARAM_MAX_SSA_NAME_QUERY_DEPTH): Bump default from
13078         2 to 3.
13080 2016-02-24  Jakub Jelinek  <jakub@redhat.com>
13081             Richard Biener  <rguenth@suse.de>
13083         PR middle-end/69909
13084         * expr.c (expand_expr_real_1) <normal_inner_ref>: Avoid
13085         set_mem_attributes if tem is SSA_NAME which got expanded
13086         as a MEM.
13088 2016-02-24  Richard Biener  <rguenther@suse.de>
13090         PR tree-optimization/69907
13091         * tree-vect-stmts.c (vectorizable_load): Check for gaps at the
13092         end of permutations for BB vectorization.
13094 2016-02-24  Christian Bruel  <christian.bruel@st.com>
13096         * config/arm/arm-c.c (arm_option_override): Initialize
13097         target_option_current_node.
13098         * config/arm/arm.c (arm_pragma_target_parse): Replace
13099         build_target_option_node call by target_option_current_node.
13100         Set target_option_current_node.
13101         Fix comments.
13103 2016-02-23  David Edelsohn  <dje.gcc@gmail.com>
13105         PR target/69810
13106         * config/rs6000/rs6000.md (zero_extendqi<mode>2_dot): Convert from
13107         define_insn_and_split to define_insn.
13108         (zero_extendqi<mode>2_dot2): Same.
13109         (extendqi<mode>2_dot): Same.
13110         (extendqi<mode>2_dot2): Same.
13112 2016-02-23  Evandro Menezes  <e.menezes@samsung.com>
13114         * config/arm/exynos-m1.md: Change cost of STP, fix bypass for stores
13115         and add bypass for AES{D,E} and AESMC pairs.
13116         * config/aarch64/aarch64.c (exynosm1_tunings): Enable fusion of AES{D,E}
13117         and AESMC pairs.
13119 2016-02-23  Evandro Menezes  <e.menezes@samsung.com>
13121         * config/aarch64/aarch64.c (exynosm1_tunings): Enable the Newton
13122         series for reciprocal square root in Exynos M1.
13124 2016-02-23  Martin Sebor  <msebor@redhat.com>
13126         PR c/69759
13127         * doc/extend.texi (Other Builtins): Document __builtin_alloca and
13128         __builtin_alloca_with_align.
13130 2016-02-23  Richard Henderson  <rth@redhat.com>
13132         * config/i386/i386-c.c (ix86_target_macros): Remove __SEG_TLS.
13133         (ix86_register_pragmas): Remove __seg_tls.
13134         * config/i386/i386-protos.h (ADDR_SPACE_SEG_TLS): Remove.
13135         * config/i386/i386.c (ix86_print_operand_address_as): Don't handle it.
13136         (ix86_addr_space_subset_p, TARGET_ADDR_SPACE_SUBSET_P): Remove.
13137         (ix86_addr_space_convert, TARGET_ADDR_SPACE_CONVERT): Remove.
13138         (ix86_addr_space_debug, TARGET_ADDR_SPACE_DEBUG): Remove.
13139         * doc/extend.texi (__seg_tls): Remove item.
13141 2016-02-23  Richard Biener  <rguenther@suse.de>
13143         * alloc-pool.h (struct allocation_object): Make id member
13144         conditional on CHECKING_P again.
13145         (get_instance): Adjust.
13146         (base_pool_allocator): Likewise.
13148 2016-02-23  Thomas Schwinge  <thomas@codesourcery.com>
13150         * tree-parloops.c (create_parallel_loop, gen_parallel_loop)
13151         (parallelize_loops): In OpenACC kernels mode, set n_threads to
13152         zero.
13153         (pass_parallelize_loops::gate): In OpenACC kernels mode, gate on
13154         flag_openacc.
13155         * tree-ssa-loop.c (gate_oacc_kernels): Likewise.
13157 2016-02-23  Richard Biener  <rguenther@suse.de>
13159         * mem-stats.h (struct mem_usage): Use PRIu64 for printing size_t.
13160         * bitmap.h (struct bitmap_usage): Likewise.
13161         (bitmap_move): Declare.
13162         * bitmap.c (register_overhead): Take size_t argument.
13163         (bitmap_move): New function.
13164         * df-problems.c (df_rd_transfer_function): Use bitmap_move
13165         to properly account overhead.
13166         * tree.c (free_node): Use tree_size.
13168 2016-02-23  Jakub Jelinek  <jakub@redhat.com>
13170         PR c++/69902
13171         * fold-const.c (fold_truth_not_expr): Propagate TREE_NO_WARNING
13172         when inverting comparison.
13174         PR c/69900
13175         * common.opt (Wunreachable-code): Add Warning flag.
13177 2016-02-23  Mark Wielaard  <mjw@redhat.com>
13178             Jakub Jelinek  <jakub@redhat.com>
13180         PR c/69911
13181         * cgraphunit.c (check_global_declaration): Check main_input_filename
13182         and DECL_SOURCE_FILE are not NULL.
13184 2016-02-23  Martin Jambor  <mjambor@suse.cz>
13186         PR tree-optimization/69666
13187         * tree-sra.c (sra_modify_assign): Do not attempt to create
13188         default_def replacements for unscalarizable regions.
13190 2016-02-20  Mark Wielaard  <mjw@redhat.com>
13192         PR c/28901
13193         * cgraphunit.c (check_global_declaration): Check level of
13194         warn_unused_const_variable and main_input_filename.
13195         * doc/invoke.texi (Warning Options): Add -Wunused-const-variable=.
13196         (-Wunused-variable): For C implies -Wunused-const-variable=1.
13197         (-Wunused-const-variable): Explain levels 1 and 2.
13199 2016-02-22  Jakub Jelinek  <jakub@redhat.com>
13201         PR target/69888
13202         * config/i386/i386.c (decide_alg): Ensure we don't recurse with
13203         identical arguments.  Formatting and spelling fixes.
13205         PR target/69885
13206         * doc/md.texi (ashl@var{m}3): Document that mode of operand 2 must
13207         be specified.
13209         PR target/69894
13210         PR target/69895
13211         * config/m68k/t-opts (OPTIONS_H_EXTRA): Add m68k-microarchs.def
13212         and m68k-devices.def.
13213         * config/c6x/t-c6x (OPTIONS_H_EXTRA): Add c6x-isas.def.
13214         * config/aarch64/t-aarch64 (OPTIONS_H_EXTRA): Add aarch64-arches.def.
13216 2016-02-22  Cesar Philippidis  <cesar@codesourcery.com>
13218         * config/nvptx/nvptx.c (nvptx_gen_shuffle): Add support for QImode
13219         and HImode registers.
13221 2016-02-22  Richard Biener  <rguenther@suse.de>
13223         PR tree-optimization/69882
13224         * tree-vect-slp.c (vect_attempt_slp_rearrange_stmts): Properly
13225         preserve permutations present because of gaps.
13226         (vect_supported_load_permutation_p): Always continue checking
13227         permutations after vect_attempt_slp_rearrange_stmts.
13229 2016-02-22  Bin Cheng  <bin.cheng@arm.com>
13231         * tree-vect-loop.c (vect_estimate_min_profitable_iters): Dump
13232         min_profitable_estimate, rather than min_profitable_iters.
13234 2016-02-22  Jakub Jelinek  <jakub@redhat.com>
13236         PR target/69885
13237         * config/m68k/m68k.md (ashldi3, ashrdi3, lshrdi3): Use
13238         SImode for last match_operand.
13240 2016-02-22  Martin Liska  <mliska@suse.cz>
13242         * hsa-gen.c (gen_hsa_clrsb): In case of zero value,
13243         return bitsize - 1 as the return value.
13245 2016-02-22  Oleg Endo  <olegendo@gcc.gnu.org>
13247         PR target/69806
13248         PR target/54089
13249         * config/sh/sh.c (sh_lshrsi_clobbers_t_reg_p, sh_dynamicalize_shift_p):
13250         Handle negative shift counts.
13251         * config/sh/sh.md (ashlsi3, lshrsi3_n, lshrsi3_n_clobbers_t): Don't use
13252         force_reg on the shift constant.
13253         (lshrsi3): Likewise.  Expand into lshrsi3_n* instead of lshrsi3_d.
13254         (lshrsi3_d): Handle negative shift counts.
13256 2016-02-22  Richard Biener  <rguenther@suse.de>
13257             Tom de Vries  <tom@codesourcery.com>
13259         * graph.c: Include dumpfile.h.
13260         (print_graph_cfg): Split into three overloads.
13261         * gdbhooks.py (class DotFn): Add and instantiate, adding command dot-fn.
13263 2016-02-22  Tom de Vries  <tom@codesourcery.com>
13265         * gdbhooks.py (class DumpFn): Add and instantiate, adding command
13266         dump-fn.
13268 2016-02-22  Richard Biener  <rguenther@suse.de>
13270         PR ipa/37448
13271         * ipa-inline-transform.c (inline_call): When not updating
13272         overall summaries adjust self size by the growth estimate.
13273         * ipa-inline.c (inline_to_all_callers_1): Add to the callers
13274         hash-set, do not update overall summaries here.  Renamed from ...
13275         (inline_to_all_callers): ... this which is now wrapping the
13276         above and performing delayed overall summary update.
13277         (early_inline_small_functions): Delay updating of the overall
13278         summary.
13280 2016-02-21  Markus Trippelsdorf  <markus@trippelsdorf.de>
13282         * tree-chkp.c (chkp_mark_invalid_bounds_walker): Initialize
13283         variable.
13285 2016-02-19  Jakub Jelinek  <jakub@redhat.com>
13287         PR driver/69805
13288         * gcc.c (LINK_COMMAND_SPEC, GOMP_SELF_SPECS): Use
13289         :%* in %:gt() argument.
13290         (greater_than_spec_func): Adjust for expecting only numbers,
13291         if there are more than two numbers, compare the last two.
13293 2016-02-19  Jonathan Wakely  <jwakely@redhat.com>
13295         * doc/invoke.texi (C++ Dialect Options): Clarify interaction of
13296         -Wnarrowing with -std.
13298 2016-02-19  Jakub Jelinek  <jakub@redhat.com>
13300         PR c++/69851
13301         * expr.c (store_field): Don't use bit-field path if exp is
13302         COMPONENT_REF with TREE_ADDRESSABLE type, where TYPE_SIZE is
13303         different from bitsize, but DECL_SIZE of FIELD_DECL is bitsize
13304         and the assignment can be performed by bitwise copy.  Formatting
13305         fix.
13307         PR middle-end/69838
13308         * lra.c (lra_process_new_insns): If non-call exceptions are enabled,
13309         call copy_reg_eh_region_note_forward on before and/or after sequences
13310         and remove note from insn if it no longer can throw.
13312         PR target/69820
13313         * config/i386/sse.md (VI_512): Only include V64QImode and V32HImode
13314         if TARGET_AVX512BW.
13316 2016-02-19  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
13318         * config/s390/vector.md: Add missing commutative operand markers
13319         to the patterns which qualify for one.
13320         * config/s390/vx-builtins.md: Likewise.
13322 2016-02-19  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
13324         * config/s390/vector.md (VI, VI_QHS): Add single element vector
13325         types to mode iterators.
13326         (vec_double): ... and mode attribute.
13327         * config/s390/vx-builtins.md (non_vec_int): Likewise.
13329 2016-02-19  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
13331         * config/s390/vector.md ("<ti*>add<mode>3", "<ti*>sub<mode>3"):
13332         Change the predicate of op2 from nonimmediate to general and let
13333         reload fix it if necessary.
13335 2016-02-19  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
13337         * config/s390/vecintrin.h (vec_sub_u128): Define missing macro.
13339 2016-02-19  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
13341         * config/s390/s390.c (s390_expand_vcond): Use the compare operand
13342         mode.
13344 2016-02-19  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
13346         * config/s390/s390-protos.h: Add s390_expand_vec_movstr prototype.
13347         * config/s390/s390.c (s390_expand_vec_movstr): New function.
13348         * config/s390/s390.md ("movstr<P:mode>"): Call
13349         s390_expand_vec_movstr.
13351 2016-02-19  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
13353         * config/s390/s390.md: Add missing output modifier for operand 1
13354         to print it as address properly.
13356 2016-02-19  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
13358         * config/s390/2827.md: Rename ooo_* insn attributes to zEC12_*.
13359         * config/s390/2964.md: New file.
13360         * config/s390/s390.c (s390_get_sched_attrmask): Use the right set
13361         of insn grouping attributes depending on the CPU level.
13362         (s390_get_unit_mask): New function.
13363         (s390_sched_score): Remove the OOO from the scheduling macros.
13364         Add loop to calculate a score for the instruction mix.
13365         (s390_sched_reorder): Likewise plus improve debug output.
13366         (s390_sched_variable_issue): Rename macros as above.  Calculate
13367         the unit distances after actually scheduling an insn.  Improve
13368         debug output.
13369         (s390_sched_init): Clear last_scheduled_unit_distance array.
13370         * config/s390/s390.md: Include 2964.md.
13372 2016-02-18  Jakub Jelinek  <jakub@redhat.com>
13374         PR target/69671
13375         * config/i386/sse.md (*<floatsuffix>floatv2div2sf2_mask_1,
13376         *avx512vl_<code>v2div2qi2_mask_1, *avx512vl_<code><mode>v4qi2_mask_1,
13377         *avx512vl_<code><mode>v8qi2_mask_1, *avx512vl_<code><mode>v4hi2_mask_1,
13378         *avx512vl_<code>v2div2hi2_mask_1, *avx512vl_<code>v2div2si2_mask_1,
13379         *avx512f_<code>v8div16qi2_mask_1): New insns.
13381 2016-02-18  Michael Meissner  <meissner@linux.vnet.ibm.com>
13383         PR target/68404
13384         * config/rs6000/predicates.md (fusion_gpr_addis): Revert
13385         2016-02-09 change.
13387         * config/rs6000/rs6000.md (fusion_gpr_load_<mode>): Remove
13388         earlyclobber from target.  Use wF constraint for fused memory
13389         address.
13390         (fusion_gpr_<P:mode>_<GPR_FUSION:mode>_load): Likewise.
13392 2016-02-18  Jakub Jelinek  <jakub@redhat.com>
13393             Martin Liska  <mliska@suse.cz>
13395         PR sanitizer/69863
13396         * cfgexpand.c (asan_sanitize_stack_p): New function.
13397         (partition_stack_vars): Use the function.
13398         (expand_stack_vars): Likewise.
13399         (defer_stack_allocation): Likewise.
13400         (expand_used_vars): Likewise.
13402 2016-02-18  Richard Biener  <rguenther@suse.de>
13404         PR middle-end/69553
13405         * fold-const.c (operand_equal_p): Properly compare offsets for
13406         IMAGPART_EXPR and ARRAY_REF.
13408 2016-02-18  Nick Clifton  <nickc@redhat.com>
13410         PR target/62254
13411         PR target/69610
13412         * config/arm/arm.c (arm_option_override_internal): Disable
13413         interworking if the target does not support thumb instructions.
13414         (arm_reload_in_hi): Handle the case where a register to register
13415         move needs reloading because there is no simple pattern to handle
13416         it.
13417         (arm_reload_out_hi): Likewise.
13419 2016-02-18  Richard Biener  <rguenther@suse.de>
13421         PR middle-end/69854
13422         * match.pd: Don't use fold_binary or fold_unary for folding
13423         constants.
13425 2016-02-17  Jakub Jelinek  <jakub@redhat.com>
13427         PR c++/69850
13428         * gimplify.c (gimplify_cond_expr): Call gimple_set_no_warning
13429         on the cond_stmt from TREE_NO_WARNING on COND_EXPR_COND.
13430         * gimple-ssa-nonnull-compare.c (do_warn_nonnull_compare): Don't
13431         warn on gimple_no_warning_p statements.
13433 2016-02-17  Jonathan Wakely  <jwakely@redhat.com>
13435         * doc/extend.texi (C++ Attributes): Correct description of
13436         warn_unused type attribute.
13438 2016-02-17  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
13440         * config/rs6000/altivec.md (*altivec_lvxl_<mode>_internal): Output
13441         correct instruction.
13443 2016-02-17  Richard Biener  <rguenther@suse.de>
13445         PR rtl-optimization/69609
13446         * bb-reorder.c (struct bbro_basic_block_data): Add priority member.
13447         (find_traces_1_round): When ending a trace update cached priority
13448         of successors.
13449         (bb_to_key): Use cached priority when available.
13450         (copy_bb): Initialize cached priority.
13451         (reorder_basic_blocks_software_trace_cache): Likewise.
13453 2016-02-17  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
13455         PR target/69161
13456         * config/aarch64/predicates.md (aarch64_comparison_operator_mode):
13457         New predicate.
13458         (aarch64_comparison_operator): Break overly long line into two.
13459         (aarch64_comparison_operation): Likewise.
13460         * config/aarch64/aarch64.md (cstorecc4): Use
13461         aarch64_comparison_operator_mode instead of
13462         aarch64_comparison_operator.
13463         (cstore<mode>4): Likewise.
13464         (aarch64_cstore<mode>): Likewise.
13465         (*cstoresi_insn_uxtw): Likewise.
13466         (cstore<mode>_neg): Likewise.
13467         (*cstoresi_neg_uxtw): Likewise.
13469 2016-02-17  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
13471         PR target/69161
13472         * config/arm/predicates.md (arm_comparison_operator_mode):
13473         New predicate.
13474         * config/arm/arm.md (*mov_scc): Use arm_comparison_operator_mode
13475         instead of arm_comparison_operator.
13476         (*mov_negscc): Likewise.
13477         (*mov_notscc): Likewise.
13478         * config/arm/thumb2.md (*thumb2_mov_scc): Likewise.
13479         (*thumb2_mov_negscc): Likewise.
13480         (*thumb2_mov_negscc_strict_it): Likewise.
13481         (*thumb2_mov_notscc): Likewise.
13482         (*thumb2_mov_notscc_strict_it): Likewise.
13484 2016-02-17  Wilco Dijkstra  <wdijkstr@arm.com>
13486         * config/aarch64/aarch64.c (aarch64_internal_mov_immediate):
13487         Add missing return.
13489 2016-02-17  Eric Botcazou  <ebotcazou@adacore.com>
13491         * config/visium/visium.c (machine_libfunc_index): New enum.
13492         (machine_libfuncs): New structure.
13493         (visium_libfuncs): New static variable.
13494         (TARGET_INIT_LIBFUNCS): Define to...
13495         (visium_init_libfuncs): ...this.  New function.
13496         (expand_block_move_4): Use the appropriate libfunc.
13497         (expand_block_move_2): Likewise.
13498         (expand_block_move_1): Likewise.
13499         (expand_block_set_4): Likewise.
13500         (expand_block_set_2): Likewise.
13501         (expand_block_set_1): Likewise.
13502         (visium_trampoline_init): Likewise.
13504 2016-02-17  Nick Clifton  <nickc@redhat.com>
13506         * config/msp430/msp430.c (msp430_mcu_data): Sync with data from
13507         TI's devices.csv file as of March 2016.
13509 2016-02-16  Kelvin Nilsen  <kelvin@gcc.gnu.org>
13511         PR Target/48344
13512         * opts-global.c (handle_common_deferred_options): Introduce and
13513         initialize two global variables to remember command-line options
13514         specifying a stack-limiting register.
13515         * opts.h: Add extern declarations of the two new global variables.
13516         * emit-rtl.c (init_emit_once): Initialize the stack_limit_rtx
13517         variable based on the values of the two new global variables.
13519 2016-02-16  Jakub Jelinek  <jakub@redhat.com>
13521         PR c/69835
13522         * common.opt (Wnonnull-compare): New warning.
13523         * doc/invoke.texi (-Wnonnull): Remove text about comparison
13524         of arguments against NULL.
13525         (-Wnonnull-compare): Document.
13526         * Makefile.in (OBJS): Add gimple-ssa-nonnull-compare.o.
13527         * tree-pass.h (make_pass_warn_nonnull_compare): Declare.
13528         * passes.def (pass_warn_nonnull_compare): Add.
13529         * gimple-ssa-nonnull-compare.c: New file.
13531 2016-02-16  James Greenhalgh  <james.greenhalgh@arm.com>
13533         * config/aarch64/aarch64.c (cortexa57_tunings): Remove
13534         AARCH64_EXTRA_TUNE_RECIP_SQRT.
13536 2016-02-16  James Greenhalgh  <james.greenhalgh@arm.com>
13538         * config/aarch64/aarch64.c (use_rsqrt_p): Always use software
13539         reciprocal sqrt for -mlow-precision-recip-sqrt.
13541 2016-02-16  James Greenhalgh  <james.greenhalgh@arm.com>
13542             Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>
13544         * config/aarch64/aarch64.c (aarch64_expand_vector_init): Refactor,
13545         always use lane loads to construct non-constant vectors.
13547 2016-02-16  James Greenhalgh  <james.greenhalgh@arm.com>
13549         * config/aarch64/aarch64.md
13550         (arch64_sqrdml<SQRDMLH_AS:rdma_as>h_lane<mode>): Fix register
13551         constraints for operand 3.
13552         (aarch64_sqrdml<SQRDMLH_AS:rdma_as>h_laneq<mode>): Likewise.
13554 2016-02-16  Jakub Jelinek  <jakub@redhat.com>
13555             Richard Biener  <rguenther@suse.de>
13557         PR tree-optimization/69820
13558         * tree-vect-patterns.c (type_conversion_p): Return false if
13559         *orig_type is unsigned single precision or boolean.
13560         (vect_recog_dot_prod_pattern, vect_recog_widen_mult_pattern):
13561         Formatting fix.
13563 2016-02-16  Jakub Jelinek  <jakub@redhat.com>
13565         PR rtl-optimization/69764
13566         PR rtl-optimization/69771
13567         * optabs.c (expand_binop): Ensure for shift optabs invalid CONST_INT
13568         op1 is valid for GET_MODE_INNER (mode) and force it into a reg.
13570 2016-02-16  Richard Biener  <rguenther@suse.de>
13572         PR tree-optimization/69776
13573         * tree-ssa-alias.c (indirect_ref_may_alias_decl_p): Get alias
13574         sets from caller.
13575         (indirect_refs_may_alias_p): Likewise.
13576         (refs_may_alias_p_1): Pass alias sets as from ao_ref.
13577         * tree-ssa-sccvn.c (vn_reference_lookup): Also adjust vr alias-set
13578         according to tbaa_p.
13579         * tree-ssa-dom.c (lookup_avail_expr): Add tbaa_p flag.
13580         (optimize_stmt): For redundant store discovery do not allow tbaa.
13582 2016-02-16  Bernd Schmidt  <bschmidt@redhat.com>
13584         PR tree-optimization/69714
13585         * tree-ssa-math-opts.c (find_bswap_or_nop): Revert previous change.
13586         Return NULL if we have irrelevant high bytes on BIG_ENDIAN.
13588 2016-02-16  Claudiu Zissulescu  <claziss@synopsys.com>
13590         * config/arc/arc-modes.def (CC_FPU, CC_FPU_UNEQ): New modes.
13591         * config/arc/arc-opts.h (FPU_SP, FPU_SF, FPU_SC, FPU_SD, FPU_DP)
13592         (FPU_DF, FPU_DC, FPU_DD, FXP_DP): Define.
13593         * config/arc/arc.c (arc_init): Check FPU options.
13594         (get_arc_condition_code): Handle new CC_FPU* modes.
13595         (arc_select_cc_mode): Likewise.
13596         (arc_conditional_register_usage): Allow 64 bit datum into even-odd
13597         register pair only. Allow access for ARCv2 accumulator.
13598         (gen_compare_reg): Whenever we have FPU support use FPU compare
13599         instructions.
13600         (arc_reorg): Don't generate brcc insns when FPU compare
13601         instructions are involved.
13602         * config/arc/arc.h (TARGET_DPFP): Add TARGET_FP_DPAX condition.
13603         (TARGET_OPTFPE): Add condition when ARC EM can use optimized
13604         floating point emulation.
13605         (ACC_REG_FIRST, ACC_REG_LAST, ACCL_REGNO, ACCH_REGNO): Define.
13606         (REVERSE_CONDITION): Add new CC_FPU* modes.
13607         (TARGET_FP_SP_BASE): Define.
13608         (TARGET_FP_DP_BASE): Likewise.
13609         (TARGET_FP_SP_FUSED): Likewise.
13610         (TARGET_FP_DP_FUSED): Likewise.
13611         (TARGET_FP_SP_CONV): Likewise.
13612         (TARGET_FP_DP_CONV): Likewise.
13613         (TARGET_FP_SP_SQRT): Likewise.
13614         (TARGET_FP_DP_SQRT): Likewise.
13615         (TARGET_FP_DP_AX): Likewise.
13616         * config/arc/arc.md (ARCV2_ACC): New constant.
13617         (type): New fpu type attribute.
13618         (SDF): Conditional iterator.
13619         (cstore<mode>, cbranch<mode>): Change expand condition.
13620         (addsf3, subsf3, mulsf3, adddf3, subdf3, muldf3): New expands,
13621         handles FPU/FPX cases as well.
13622         * config/arc/arc.opt (mfpu): New option.
13623         * config/arc/fpx.md (addsf3_fpx, subsf3_fpx, mulsf3_fpx):
13624         Renamed.
13625         (adddf3, muldf3, subdf3): Removed.
13626         * config/arc/predicates.md (proper_comparison_operator): Recognize
13627         CC_FPU* modes.
13628         * config/arc/fpu.md: New file.
13629         * doc/invoke.texi (ARC Options): Document mfpu option.
13631 2016-02-16  Richard Biener  <rguenther@suse.de>
13633         PR rtl-optimization/69291
13634         * ifcvt.c (noce_try_store_flag_constants): Re-instantiate
13635         noce_operand_ok check.
13637 2016-02-16  Tom de Vries  <tom@codesourcery.com>
13639         PR lto/67709
13640         * omp-low.c (simd_clone_create): Remove call to
13641         symtab->call_cgraph_insertion_hooks.
13643 2016-02-16  Jakub Jelinek  <jakub@redhat.com>
13645         PR tree-optimization/69802
13646         * tree-ssa-reassoc.c (update_range_test): If op is
13647         SSA_NAME_IS_DEFAULT_DEF, give up unless tem is a positive
13648         op == 1 test of precision 1 integral op, otherwise handle
13649         that case as op itself.  Fix up formatting.
13650         (optimize_range_tests_to_bit_test, optimize_range_tests): Fix
13651         up formatting.
13653 2016-02-16  Richard Biener  <rguenther@suse.de>
13655         PR tree-optimization/69586
13656         * tree-vrp.c (register_edge_assert_for_2): Handle all integral
13657         types for conversion sources.
13659 2016-02-16  Richard Biener  <rguenther@suse.de>
13661         PR middle-end/69801
13662         * fold-const.c (operand_equal_p): For COND_EXPR zero operand
13663         mask OEP_ADDRESS_OF.
13665 2016-02-16  Alan Modra  <amodra@gmail.com>
13667         PR target/68973
13668         * config/rs6000/rs6000.md (reload_vsx_from_gprsf): Rewrite splitter.
13669         (p8_mtvsrd_df, p8_mtvsrd_sf): New.
13670         (p8_mtvsrd_1, p8_mtvsrd_2): Delete.
13671         (p8_mtvsrwz): New.
13672         (p8_mtvsrwz_1, p8_mtvsrwz_2): Delete.
13673         (p8_xxpermdi_<mode>): Take two DF inputs rather than one TF.
13674         (p8_fmrgow_<mode>): Likewise.
13675         (reload_vsx_from_gpr<mode>): Make clobber IF.  Adjust for above
13676         changes.
13677         (reload_fpr_from_gpr<mode>): Similarly. Use "d" for op0 constraint.
13678         (reload_vsx_from_gprsf): Use p8_mtvsrd_sf rather than attempting
13679         to use movdi_internal64.  Remove op0_di.
13680         * config/rs6000/vsx.md (vsx_xscvspdpn_directmove): Make op1 SFmode.
13682 2016-02-15  Evandro Menezes  <e.menezes@samsung.com>
13684         Add support for the FCCMP insn types
13686         * config/aarch64/aarch64.md (fccmp): Change insn type.
13687         (fccmpe): Likewise.
13688         * config/aarch64/thunderx.md (thunderx_fcmp): Add "fccmp{s,d}" types.
13689         * config/arm/cortex-a53.md (cortex_a53_fpalu): Likewise.
13690         * config/arm/cortex-a57.md (cortex_a57_fp_cmp): Likewise.
13691         * config/arm/xgene1.md (xgene1_fcmp): Likewise.
13692         * config/arm/exynos-m1.md (exynos_m1_fp_ccmp): New insn reservation.
13693         * config/arm/types.md (fccmps): Add new insn type.
13694         (fccmpd): Likewise.
13696 2016-02-15  Bernd Edlinger  <bernd.edlinger@hotmail.de>
13698         * alias.c (get_alias_set): Fix a typo in comment.
13700 2016-02-15  Richard Biener  <rguenther@suse.de>
13702         PR tree-optimization/69595
13703         * match.pd: Complete range test simplification to true.
13705 2016-02-15  Bernd Schmidt  <bschmidt@redhat.com>
13707         PR rtl-optimization/69648
13708         * lra-constraints.c (update_ebb_live_info): Don't remove sets of
13709         pic_offset_table_rtx.
13711         PR rtl-optimization/69752
13712         * ira.c (update_equiv_regs): When looking for more than a single SET,
13713         also take other side effects into account.
13715 2016-02-15  Marcin Kościelnicki  <koriakin@0x04.net>
13717         * config/s390/s390.c (s390_function_profiler): Add a new sequence
13718         for z900+ CPUs in 31-bit mode.
13720 2016-02-15  Marcin Kościelnicki  <koriakin@0x04.net>
13722         * common/config/s390/s390-common.c (s390_supports_split_stack):
13723         New function.
13724         (TARGET_SUPPORTS_SPLIT_STACK): New macro.
13725         * config/s390/s390-protos.h: Add s390_expand_split_stack_prologue.
13726         * config/s390/s390.c (struct machine_function): New field
13727         split_stack_varargs_pointer.
13728         (s390_register_info): Mark r12 as clobbered if it'll be used as temp
13729         in s390_emit_prologue.
13730         (s390_emit_prologue): Use r12 as temp if r1 is taken by split-stack
13731         vararg pointer.
13732         (morestack_ref): New global.
13733         (SPLIT_STACK_AVAILABLE): New macro.
13734         (s390_expand_split_stack_prologue): New function.
13735         (s390_live_on_entry): New function.
13736         (s390_va_start): Use split-stack vararg pointer if appropriate.
13737         (s390_asm_file_end): Emit the split-stack note sections.
13738         (TARGET_EXTRA_LIVE_ON_ENTRY): New macro.
13739         * config/s390/s390.md (UNSPEC_STACK_CHECK): New unspec.
13740         (UNSPECV_SPLIT_STACK_CALL): New unspec.
13741         (UNSPECV_SPLIT_STACK_DATA): New unspec.
13742         (split_stack_prologue): New expand.
13743         (split_stack_space_check): New expand.
13744         (split_stack_data): New insn.
13745         (split_stack_call): New expand.
13746         (split_stack_call_*): New insn.
13747         (split_stack_cond_call): New expand.
13748         (split_stack_cond_call_*): New insn.
13750 2016-02-15  Richard Biener  <rguenther@suse.de>
13752         PR tree-optimization/69783
13753         * tree-vect-data-refs.c (vect_prune_runtime_alias_test_list):
13754         Add trivially correct cases.
13756 2016-02-15  Tom de Vries  <tom@codesourcery.com>
13758         PR lto/69655
13759         * lto-cgraph.c (input_offload_tables): Add and handle bool parameter
13760         do_force_output.
13761         * lto-streamer.h (input_offload_tables): Add and handle bool parameter.
13763 2016-02-15  Richard Biener  <rguenther@suse.de>
13765         PR tree-optimization/69776
13766         * tree-ssa-sccvn.h (vn_reference_lookup): Adjust prototype.
13767         * tree-ssa-sccvn.c (vn_reference_lookup): Add parameter to
13768         indicate whether we can use TBAA to disambiguate against stores.
13769         Use alias-set zero if not.
13770         (visit_reference_op_store): Do not use TBAA when looking up
13771         redundant stores.
13772         * tree-ssa-pre.c (compute_avail): Use TBAA here.
13773         (eliminate_dom_walker::before_dom_children): But not when looking
13774         up redundant stores.
13776 2016-02-14  John David Anglin  <danglin@gcc.gnu.org>
13778         * config/pa/pa.md (absqi2, absghi2, bswaphi2, bswapsi2, bswapdi2): New.
13780 2016-02-14  Venkataramanan Kumar  <venkataramanan.kumar@amd.com>
13782         *  config/i386/znver1.md
13783         (znver1_pop, znver1_pop_mem,
13784         znver1_load_imov_double_store,
13785         znver1_load_imov_direct_store,
13786         znver1_load_imov_direct_load,
13787         znver1_load_imov_double_load): Add new.
13788         (znver1_insn, znver1_insn_load): Add icmov type.
13789         (znver1_sseavx_fma,
13790         znver1_sseavx_fma_load,
13791         znver1_avx256_fma,
13792         znver1_avx256_fma_load): Fix pipe usage.
13794 2016-02-14  Alan Modra  <amodra@gmail.com>
13796         PR target/68973
13797         * reloads.c (find_reloads_address_1): For pre/post-inc/dec
13798         with an invalid hard reg, reload just the reg not the entire
13799         pre/post-inc/dec address expression.
13801 2016-02-13  Oleg Endo  <olegendo@gcc.gnu.org>
13803         PR target/67260
13804         * config/sh/sh.md (sibcall_value_pcrel): Replace =&k scratch reg with
13805         fixed R1_REG scratch reg.
13806         (sibcall_value_pcrel_fdpic): Likewise.
13808 2016-02-13  Oleg Endo  <olegendo@gcc.gnu.org>
13810         PR target/67636
13811         PR target/64345
13812         * config/sh/sh.md (*zero_extract_3): New insn_and_split pattern.
13814 2016-02-12  Walter Lee  <walt@tilera.com>
13816         * config/tilepro/t-tilepro: Replace CC_FOR_BUILD with CXX_FOR_BUILD.
13817         * config/tilegx/t-tilegx: Likewise.
13819 2016-02-12  David Malcolm  <dmalcolm@redhat.com>
13821         PR other/69554
13822         * diagnostic-show-locus.c (struct line_span): New struct.
13823         (layout::get_first_line): Delete.
13824         (layout::get_last_line): Delete.
13825         (layout::get_num_line_spans): New member function.
13826         (layout::get_line_span): Likewise.
13827         (layout::print_heading_for_line_span_index_p): Likewise.
13828         (layout::get_expanded_location): Likewise.
13829         (layout::calculate_line_spans): Likewise.
13830         (layout::m_first_line): Delete.
13831         (layout::m_last_line): Delete.
13832         (layout::m_line_spans): New field.
13833         (layout::layout): Update comment.  Replace m_first_line and
13834         m_last_line with m_line_spans, replacing their initialization
13835         with a call to calculate_line_spans.
13836         (diagnostic_show_locus): When printing source lines and
13837         annotations, rather than looping over a single span
13838         of lines, instead loop over each line_span within
13839         the layout, with an inner loop over the lines within them.
13840         Call the context's start_span callback when changing line spans.
13841         * diagnostic.c (diagnostic_initialize): Initialize start_span.
13842         (diagnostic_build_prefix): Break out the building of the location
13843         part of the string into...
13844         (diagnostic_get_location_text): ...this new function, rewriting
13845         it from nested ternary expressions to a sequence of "if"
13846         statements.
13847         (default_diagnostic_start_span_fn): New function.
13848         * diagnostic.h (diagnostic_start_span_fn): New typedef.
13849         (diagnostic_context::start_span): New field.
13850         (default_diagnostic_start_span_fn): New prototype.
13852 2016-02-12  David Malcolm  <dmalcolm@redhat.com>
13854         PR driver/69779
13855         * gcc.c (driver::finalize): Fix cleanup of "specs".
13857 2016-02-12  David Malcolm  <dmalcolm@redhat.com>
13859         PR driver/69265
13860         PR driver/69453
13861         * gcc.c (driver::driver): Initialize m_option_suggestions.
13862         (driver::~driver): Clean up m_option_suggestions.
13863         (suggest_option): Convert to...
13864         (driver::suggest_option): ...this, and split out into
13865         driver::build_option_suggestions and find_closest_string.
13866         (driver::build_option_suggestions): New function, from
13867         first half of suggest_option.  Special-case
13868         OPT_fsanitize_ and OPT_fsanitize_recover_, making use of
13869         the sanitizer_opts array.  For options of enum types, add the
13870         various enum values to the candidate strings.
13871         (driver::handle_unrecognized_options): Remove "const".
13872         * gcc.h (driver::handle_unrecognized_options): Likewise.
13873         (driver::build_option_suggestions): New decl.
13874         (driver::suggest_option): New decl.
13875         (driver::m_option_suggestions): New field.
13876         * opts-common.c (add_misspelling_candidates): New function.
13877         * opts.c (sanitizer_opts): Remove decl of struct sanitizer_opts_s
13878         and make non-static.
13879         * opts.h (sanitizer_opts): New array decl.
13880         (add_misspelling_candidates): New function decl.
13881         * spellcheck.c (find_closest_string): New function.
13882         * spellcheck.h (find_closest_string): New function decl.
13884 2016-02-12  Jakub Jelinek  <jakub@redhat.com>
13886         PR rtl-optimization/69764
13887         PR rtl-optimization/69771
13888         * optabs.c (expand_binop_directly): For shift_optab_p, force
13889         convert_modes with VOIDmode if xop1 has VOIDmode.
13891 2016-02-12  Ilya Enkovich  <enkovich.gnu@gmail.com>
13893         PR target/69729
13894         * lto-streamer-out.c (lto_output): Use thunk.add_pointer_bounds_args
13895         to correctly determine instrumentation thunks.
13897 2016-02-12  Jakub Jelinek  <jakub@redhat.com>
13899         PR ipa/69241
13900         * ipa-split.c (split_function): If split part returns TREE_ADDRESSABLE
13901         type by reference, force lhs on the call.
13903         PR ipa/68672
13904         * ipa-split.c (split_function): Don't compute/use main_part_return_p.
13905         Compute retval and retbnd early in all cases if split_part_return_p
13906         and return_bb is not EXIT.  Remove all clobber stmts and reset
13907         all debug stmts that refer to SSA_NAMEs defined in split part,
13908         except if it is retval, in that case replace the old retval with the
13909         lhs of the call to the split part.
13911 2016-02-12  Kugan Vivekanandarajah  <kuganv@linaro.org>
13913         revert:
13914         2016-02-12  Kugan Vivekanandarajah  <kuganv@linaro.org>
13916         PR middle-end/66726
13917         * tree-ssa-reassoc.c (optimize_range_tests): Handle tcc_compare stmt
13918         whose result is used in PHI.
13919         (maybe_optimize_range_tests): Likewise.
13920         (final_range_test_p): Likweise.
13922 2016-02-12  Kugan Vivekanandarajah  <kuganv@linaro.org>
13924         PR middle-end/66726
13925         * tree-ssa-reassoc.c (optimize_range_tests): Handle tcc_compare stmt
13926         whose result is used in PHI.
13927         (maybe_optimize_range_tests): Likewise.
13928         (final_range_test_p): Likweise.
13930 2016-02-12  Jakub Jelinek  <jakub@redhat.com>
13932         * cgraph.c: Spelling fixes - behaviour -> behavior and
13933         neighbour -> neighbor.
13934         * target.def: Likewise.
13935         * sel-sched.c: Likewise.
13936         * config/mips/mips.c: Likewise.
13937         * config/arc/arc.md: Likewise.
13938         * config/arm/cortex-a57.md: Likewise.
13939         * config/arm/arm.c: Likewise.
13940         * config/arm/neon.md: Likewise.
13941         * config/arm/arm-c.c: Likewise.
13942         * config/vms/vms-c.c: Likewise.
13943         * config/s390/s390.c: Likewise.
13944         * config/i386/znver1.md: Likewise.
13945         * config/i386/i386.c: Likewise.
13946         * config/ia64/hpux-unix2003.h: Likewise.
13947         * config/msp430/msp430.md: Likewise.
13948         * config/rx/rx.c: Likewise.
13949         * config/rx/rx.md: Likewise.
13950         * config/aarch64/aarch64-simd.md: Likewise.
13951         * config/aarch64/aarch64.c: Likewise.
13952         * config/nvptx/nvptx.c: Likewise.
13953         * config/bfin/bfin.c: Likewise.
13954         * config/cris/cris.opt: Likewise.
13955         * config/rs6000/rs6000.c: Likewise.
13956         * target.h: Likewise.
13957         * spellcheck.c: Likewise.
13958         * ira-build.c: Likewise.
13959         * tree-inline.c: Likewise.
13960         * builtins.c: Likewise.
13961         * lra-constraints.c: Likewise.
13962         * explow.c: Likewise.
13963         * hwint.h: Likewise.
13964         * targhooks.c: Likewise.
13965         * tree-vect-data-refs.c: Likewise.
13966         * expr.c: Likewise.
13967         * doc/tm.texi: Likewise.
13968         * doc/extend.texi: Likewise.
13969         * doc/install.texi: Likewise.
13970         * doc/md.texi: Likewise.
13971         * tree-ssa-tail-merge.c: Likewise.
13972         * sched-int.h: Likewise.
13973         * match.pd: Likewise.
13974         * sched-ebb.c: Likewise.
13975         * target.def (omit_struct_return_reg): Likewise.
13976         * gimple-ssa-isolate-paths.c: Likewise.
13977         (find_implicit_erroneous_behaviour): Renamed to...
13978         (find_implicit_erroneous_behavior): ... this.
13979         (find_explicit_erroneous_behaviour): Renamed to...
13980         (find_explicit_erroneous_behavior): ... this.
13981         (gimple_ssa_isolate_erroneous_paths): Adjust caller.
13983 2016-02-11  Segher Boessenkool  <segher@kernel.crashing.org>
13985         PR rtl-optimization/64682
13986         PR rtl-optimization/69567
13987         PR rtl-optimization/69737
13988         * combine.c (distribute_notes) <REG_DEAD>: If the register is set
13989         in I2 as well, just lose it.
13991 2016-02-11  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
13993         * config/aarch64/aarch64.c (aarch64_last_printed_arch_string):
13994         New variable.
13995         (aarch64_last_printed_tune_string): Likewise.
13996         (aarch64_declare_function_name): Only output .arch assembler
13997         directive if it will be different from the previously output
13998         directive.  Same for .tune comment but only if -dA is set.
13999         (aarch64_start_file): New function.
14000         (TARGET_ASM_FILE_START): Define.
14002 2016-02-11  David Malcolm  <dmalcolm@redhat.com>
14004         PR plugins/69758
14005         * Makefile.in (PLUGIN_HEADERS): Add params.list.
14007 2016-02-11  Jakub Jelinek  <jakub@redhat.com>
14009         PR target/65313
14010         * tree-vect-slp.c (vect_schedule_slp_instance): Avoid
14011         -Wmaybe-uninitialized warning.
14013 2016-02-11  Oleg Endo  <olegendo@gcc.gnu.org>
14015         PR target/69713
14016         * config/sh/sh.md (casesi_worker_0): Add T_REG use.
14018 2016-02-11  Richard Biener  <rguenther@suse.de>
14020         PR rtl-optimization/69291
14021         * ifcvt.c (noce_try_store_flag_constants): Do not allow
14022         subexpressions affected by changing the result.
14024 2016-02-10  Vladimir Makarov  <vmakarov@redhat.com>
14026         PR target/69148
14027         * lra-constraints.c (curr_insn_transform): Find in/out operands
14028         for secondary memory moves.  Update dups.
14030 2016-02-10  Yuri Rumyantsev  <ysrumyan@gmail.com>
14032         PR tree-optimization/69652
14033         * tree-vect-loop.c (optimize_mask_stores): Move declaration of STMT1
14034         to nested loop, did source re-formatting, skip debug statements,
14035         add check on statement with volatile operand, remove dead scalar
14036         statements.
14038 2016-02-10  Jakub Jelinek  <jakub@redhat.com>
14039             Patrick Palka  <ppalka@gcc.gnu.org>
14041         PR ipa/69241
14042         PR c++/69649
14043         * gimplify.c (gimplify_modify_expr): Set lhs even for noreturn
14044         calls if the return type is TREE_ADDRESSABLE.
14045         * cgraphunit.c (cgraph_node::expand_thunk): Likewise.
14046         * ipa-split.c (split_function): Fix doubled "we" in comment.
14047         Use void return type for the split part even if
14048         !split_point->split_part_set_retval.
14050 2016-02-10  Bin Cheng  <bin.cheng@arm.com>
14052         PR tree-optimization/68021
14053         * tree-ssa-loop-ivopts.c (get_computation_aff): Set ratio to 1 if
14054         when computing the value of biv cand by itself.
14056 2016-02-10  Wilco Dijkstra  <wdijkstr@arm.com>
14058         * config/aarch64/aarch64.c (cortexa53_tunings): Enable AES fusion.
14059         (cortexa57_tunings): Likewise.
14060         (cortexa72_tunings): Likewise.
14061         (arch_macro_fusion_pair_p): Add support for AES fusion.
14062         * config/aarch64/aarch64-fusion-pairs.def: Add AES_AESMC entry.
14063         * config/arm/aarch-common.c (aarch_crypto_can_dual_issue):
14064         Allow virtual registers before reload so early scheduling works.
14065         * config/arm/cortex-a57.md (cortex_a57_crypto_simple): Use
14066         correct latency and pipeline.
14067         (cortex_a57_crypto_complex): Likewise.
14068         (cortex_a57_crypto_xor): Likewise.
14069         (define_bypass): Add AES bypass.
14071 2016-02-10  Richard Biener  <rguenther@suse.de>
14073         PR tree-optimization/69726
14074         * passes.def: Add DCE pass before late uninit.
14075         * match.pd: Add A ? B : (!A ? C : X) -> A ? B : C patterns to
14076         really fixup if-conversions job.
14078 2016-02-10  Wilco Dijkstra  <wdijkstr@arm.com>
14080         * config/arm/arm.c (arm_cortex_a53_tune): Enable AES fusion.
14081         (arm_cortex_a57_tune): Likewise.
14082         (aarch_macro_fusion_pair_p): Add support for AES fusion.
14083         * config/arm/arm-protos.h (fuse_ops): Add FUSE_AES_AESMC.
14085 2016-02-10  Eric Botcazou  <ebotcazou@adacore.com>
14087         * timevar.def (TV_PHASE_DBGINFO): Delete.
14088         (TV_PHASE_CHECK_DBGINFO): Likewise.
14089         * varpool.c (varpool_node::assemble_decl): Do not change timevar.
14091 2016-02-10  Richard Biener  <rguenther@suse.de>
14093         PR tree-optimization/69719
14094         * tree-vect-data-refs.c (vect_prune_runtime_alias_test_list):
14095         Adjust previous fix by ensuring that dr_a1 is left of dr_a2.
14097 2016-02-09  Andrew Pinski  <apinski@cavium.com>
14099         PR tree-opt/69282
14100         * optabs-tree.c (expand_vec_cond_expr_p): Don't early return if
14101         get_vcond_mask_icode returns false.
14103 2016-02-09  Michael Meissner  <meissner@linux.vnet.ibm.com>
14105         PR target/68404
14106         * config/rs6000/predicates.md (fusion_gpr_addis): Prevent fusing
14107         an ADDIS that adds a pointer to a large constant that sets the
14108         upper16 bits with a load operation.
14110 2016-02-09  Charles Baylis  <charles.baylis@linaro.org>
14112         PR target/68532
14113         * config/arm/arm.c (arm_evpc_neon_vzip): Allow for big endian lane
14114         order.
14115         * config/arm/arm_neon.h (vzipq_s8): Adjust shuffle patterns for big
14116         endian.
14117         (vzipq_s16): Likewise.
14118         (vzipq_s32): Likewise.
14119         (vzipq_f32): Likewise.
14120         (vzipq_u8): Likewise.
14121         (vzipq_u16): Likewise.
14122         (vzipq_u32): Likewise.
14123         (vzipq_p8): Likewise.
14124         (vzipq_p16): Likewise.
14126 2016-02-09  Charles Baylis  <charles.baylis@linaro.org>
14128         PR target/68532
14129         * config/arm/arm.c (neon_endian_lane_map): New function.
14130         (neon_vector_pair_endian_lane_map): New function.
14131         (arm_evpc_neon_vuzp): Allow for big endian lane order.
14132         * config/arm/arm_neon.h (vuzpq_s8): Adjust shuffle patterns for big
14133         endian.
14134         (vuzpq_s16): Likewise.
14135         (vuzpq_s32): Likewise.
14136         (vuzpq_f32): Likewise.
14137         (vuzpq_u8): Likewise.
14138         (vuzpq_u16): Likewise.
14139         (vuzpq_u32): Likewise.
14140         (vuzpq_p8): Likewise.
14141         (vuzpq_p16): Likewise.
14143 2016-02-11  Alexandre Oliva  <aoliva@redhat.com>
14145         PR target/69634
14146         * regstat.c (regstat_bb_compute_calls_crossed): Disregard
14147         debug insns.
14149 2016-02-09  Uros Bizjak  <ubizjak@gmail.com>
14151         * config/i386/i386.md (insv<mode>_1): Use gen_int_mode to
14152         truncate const_int operand 1 to QImode.
14154 2016-02-09  Eric Botcazou  <ebotcazou@adacore.com>
14156         * gimple-ssa-backprop.c (optimize_phi): Do not replace an argument
14157         corresponding to an abnormal edge.
14159 2016-02-09  Tom de Vries  <tom@codesourcery.com>
14161         PR tree-optimization/69599
14162         * tree-ssa-structalias.c (fndecl_maybe_in_other_partition): New
14163         function.
14164         (find_func_aliases_for_builtin_call, find_func_clobbers)
14165         (ipa_pta_execute):  Handle case that foo and foo._0 are not in same lto
14166         partition.
14168 2016-02-09  Richard Biener  <rguenther@suse.de>
14170         PR tree-optimization/69715
14171         * tree-ssa.c (execute_update_addresses_taken): Mark non-decl
14172         LHS on calls as non-rewritable.
14174 2016-02-09  Tom de Vries  <tom@codesourcery.com>
14176         PR lto/69707
14177         * lto-wrapper.c (append_diag_options): New function.
14178         (compile_offload_image): Call append_diag_options.
14180 2016-02-08  Sandra Loosemore  <sandra@codesourcery.com>
14182         PR other/69722
14183         * doc/extend.texi (Flag Output Operands): Correct sectioning.
14184         Minor copy-edit to fix verb tenses.
14186 2016-02-08  Jakub Jelinek  <jakub@redhat.com>
14188         PR tree-optimization/69209
14189         * ipa-split.c (split_function): If split part is not
14190         returning retval, retval has gimple type but is not
14191         gimple value, force it into a SSA_NAME first.
14193 2016-02-08  Nicklas Bo Jensen  <nbjensen@gmail.com>
14195         * doc/tree-ssa.texi (Preserving the virtual SSA form): Remove
14196         outdated section.
14198 2016-02-08  Jason Merrill  <jason@redhat.com>
14200         PR c++/69631
14201         * convert.c (convert_to_integer_1): Check dofold on truncation
14202         distribution.
14203         (convert_to_pointer_maybe_fold, convert_to_real_maybe_fold)
14204         (convert_to_integer_maybe_fold, convert_to_complex_maybe_fold):
14205         Rename from *_nofold.
14206         * convert.h (convert_to_pointer_nofold, convert_to_integer_nofold)
14207         (convert_to_real_nofold, convert_to_complex_nofold): New inlines.
14209 2016-02-08  Bernd Schmidt  <bschmidt@redhat.com>
14211         PR target/60410
14212         * tree.c (build_common_tree_nodes): Remove short_double argument.
14213         All callers changed.
14214         * tree.h (build_common_tree_nodes): Adjust declaration.
14215         * doc/invoke.texi (-fshort-double): Remove documentation.
14216         * config/mips/t-img-elf (MULTILIB_OPTIONS, MULTILIB_DIRNAMES,
14217         MULTILIB_EXCEPTIONS): Remove -fshort-double variant.
14218         * lto-wrapper.c (merge_and_complain, append_compiler_options)
14219         (append_linker_options): Don't handle OPT_fshort_double.
14221         PR rtl-optimization/68730
14222         * lra-remat.c (insn_to_cand_activation): New static variable.
14223         (lra_remat): Allocate and free it.
14224         (create_cand): New arg activation. Initialize a field in
14225         insn_to_cand_activation if it is nonnull.
14226         (create_cands): Pass the activation insn to create_cand when making
14227         a candidate involving an output reload.  Reorganize code a little.
14228         (do_remat): Keep track of active status of candidates in a separate
14229         bitmap.
14231 2016-02-08  Richard Biener  <rguenther@suse.de>
14233         PR tree-optimization/69719
14234         * tree-vect-data-refs.c (vect_prune_runtime_alias_test_list):
14235         Properly use absolute of the difference of the two offsets to
14236         compare or adjust the segment length.
14238 2016-02-08  Richard Biener  <rguenther@suse.de>
14239             Jeff Law  <law@redhat.com>
14241         PR target/68273
14242         * tree-ssanames.c (make_ssa_name_fn): Always use unqualified
14243         types for anonymous SSA names.
14245 2016-02-08   Richard Biener  <rguenther@suse.de>
14247         PR rtl-optimization/69274
14248         * ira.c (ira_setup_alts): Do not change recog_data.operand order.
14250 2016-02-08  Jeff Law  <law@redhat.com>
14252         PR tree-optimization/65917
14253         * tree-ssa-dom.c (record_temporary_equivalences): Record both
14254         equivalences from if (x == y) style conditionals.
14255         (loop_depth_of_name): Remove.
14256         (record_equality): Remove loop depth check.
14257         * tree-ssa-scopedtables.h (const_and_copies): Refine comments.
14258         (const_and_copies::record_const_or_copy_raw): New member function.
14259         * tree-ssa-scopedtables.c
14260         (const_and_copies::record_const_or_copy_raw): New, factored out of
14261         (const_and_copies::record_const_or_copy): Call new member function.
14263 2016-02-05  Jeff Law  <law@redhat.com>
14265         PR tree-optimization/68541
14266         * gimple-ssa-split-paths.c: Include tree-cfg.h and params.h.
14267         (count_stmts_in_block): New function.
14268         (poor_ifcvt_candidate_code): Likewise.
14269         (is_feasible_trace): Add some heuristics to determine when path
14270         splitting is profitable.
14271         (find_block_to_duplicate_for_splitting_paths): Make sure the graph
14272         is a diamond with a single exit.
14274 2016-02-05  Martin Sebor  <msebor@redhat.com>
14276         PR c++/69662
14277         * doc/invoke.texi: Update -Wplacement-new to take an optional
14278         argument.
14280 2016-02-06  Richard Henderson  <rth@redhat.com>
14282         PR c/69643
14283         * tree.c (tree_nop_conversion_p): Do not strip casts into or
14284         out of non-standard address spaces.
14286 2016-02-05  Jakub Jelinek  <jakub@redhat.com>
14288         PR rtl-optimization/69691
14289         * lra-eliminations.c (move_plus_up): Don't add the addend twice.
14291 2016-02-05  Pat Haugen  <pthaugen@us.ibm.com>
14293         * config/rs6000/crypto.md (crypto_vpermxor_<mode>): Correct insn type.
14294         * config/rs6000/rs6000.md (mov<mode>_hardfloat): Likewise.
14295         (*ieee128_mfvsrd_64bit): Likewise.
14296         (*ieee128_mfvsrd_32bit): Likewise.
14298 2016-02-05  Ilya Enkovich  <enkovich.gnu@gmail.com>
14300         PR target/69369
14301         Revert r232560:
14302         2016-01-19  Jan Hubicka  <hubicka@ucw.cz>
14304         * cgraphunit.c (cgraph_node::reset): Clear thunk info and
14305         instrumented_version.
14307 2016-01-05  Jeremy Bennett  <jeremy.bennett@embecosm.com>
14309         * doc/invoke.texi (Optimize Options): In table of --param options
14310         rename second occurrence of tracer-min-branch-ratio to
14311         tracer-min-branch-probability, rename
14312         tracer-min-branch-ratio-feedback to
14313         tracer-min-branch-probability-feedback and clarify description,
14314         rename sched-spec-state-edge-prob-cutoff to
14315         sched-state-edge-prob-cutoff, rename selsched-max-insns-to-rename
14316         to selsched-insns-to-rename, rename lto-minpartition to
14317         lto-min-partition, delete reorder-blocks-duplicate and
14318         reorder-blocks-duplicate-feedback.
14320 2016-02-05  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
14322         * config/s390/s390.c (s390_register_info_set_ranges): Remove
14323         superfluous loops.
14325 2016-02-05  Dominik Vogt  <vogt@linux.vnet.ibm.com>
14327         * doc/extend.texi: S/390: Correct some typos.
14329 2016-02-05  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
14331         * config/s390/s390.c (s390_emit_call): Add missing 64 bit check.
14333 2016-02-05  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
14335         PR target/69625
14336         * config/s390/s390.c (SAVE_SLOT_NONE, SAVE_SLOT_STACK): New defines.
14337         (s390_register_info_gprtofpr): Use new macros above.
14338         (s390_register_info_stdarg_fpr): Adjust max_fpr to better match
14339         its name.
14340         (s390_register_info_stdarg_gpr): Adjust max_gpr to better match
14341         its name.  Adjust restore and save gpr ranges.
14342         (s390_register_info_set_ranges): New function.
14343         (s390_register_info): Use new macros above.  Call
14344         s390_register_info_set_ranges.
14345         (s390_optimize_register_info): Likewise.
14346         (s390_hard_regno_rename_ok): Use new macros.
14347         (s390_hard_regno_scratch_ok): Likewise.
14348         (s390_emit_epilogue): Likewise.
14349         (s390_can_use_return_insn): Likewise.
14350         (s390_optimize_prologue): Likewise.
14351         * config/s390/s390.md (GPR2_REGNUM, GPR6_REGNUM): New constants.
14353 2016-02-05  Jakub Jelinek  <jakub@redhat.com>
14355         PR bootstrap/69677
14356         * config/i386/i386.c (convert_scalars_to_vector): Readd stack
14357         alignment fixes.
14358         (ix86_option_override_internal): Disable TARGET_STV even for
14359         -m{incoming,preferred}-stack-boundary=3.
14361 2016-02-03  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
14363         * config.gcc: Mark deprecated rtems targets as obsolete.
14365 2016-02-04  Segher Boessenkool  <segher@kernel.crashing.org>
14367         PR rtl-optimization/64682
14368         PR rtl-optimization/69567
14369         * combine.c (distribute_notes) <REG_DEAD>: Place the death note
14370         before I2 only if the register is both used and set in I2.
14372 2016-02-04  DJ Delorie  <dj@redhat.com>
14374         * config/msp430/msp430.c (msp430_start_function): Add function type.
14376 2016-02-04  Jakub Jelinek  <jakub@redhat.com>
14378         PR fortran/69368
14379         * tree-dfa.c (get_ref_base_and_extent): Remove unreachable code.
14381 2016-02-04  Uros Bizjak  <ubizjak@gmail.com>
14383         PR rtl-optimization/69577
14384         Revert:
14385         2015-10-29  Richard Henderson  <rth@redhat.com>
14387         PR target/68124
14388         PR rtl-opt/67609
14389         * config/i386/i386.c (ix86_cannot_change_mode_class): Tighten
14390         sse check to the exact conditions of PR 67609.
14392 2016-02-04  Michael Meissner  <meissner@linux.vnet.ibm.com>
14394         PR target/69667
14395         * config/rs6000/rs6000.md (mov<mode>_64bit_dm): Use 'd' constraint
14396         instead of 'ws', and 'wh' instead of 'wm' since TFmode/IFmode are
14397         not allowed into the traditional Altivec registers.
14398         (movtd_64bit_nodm): Likewise.
14399         (mov<mode>_32bit, FMOVE128_FPR iterator): Likewise.
14401 2016-02-04  David Malcolm  <dmalcolm@redhat.com>
14403         * config/aarch64/cortex-a57-fma-steering.c
14404         (aarch64_register_fma_steering): Remove "static" from arguments
14405         to register_pass.
14407 2016-02-04  Wilco Dijkstra  <wdijkstr@arm.com>
14409         PR target/69619
14410         * ccmp.c (expand_ccmp_expr_1): Avoid evaluating gs0/gs1
14411         twice when complex.
14413 2016-02-04  Mike Frysinger  <vapier@gentoo.org>
14415         * doc/invoke.texi: Delete -mno-fma4.
14417 2016-02-04  Richard Sandiford  <richard.sandiford@arm.com>
14419         PR rtl-optimization/69577
14420         * reginfo.c (record_subregs_of_mode): Add a partial_def parameter.
14421         (find_subregs_of_mode): Update accordingly.  Iterate over partial
14422         definitions.
14424 2016-02-04  Alan Lawrence  <alan.lawrence@arm.com>
14426         * config/arm/arm-protos.h (neon_reinterpret): Remove.
14427         * config/arm/arm.c (neon_reinterpret): Remove.
14428         * config/arm/arm_neon_builtins.def (vreinterpretv8qi, vreinterpretv4hi,
14429         vreinterpretv2si, vreinterpretv2sf, vreinterpretdi, vreinterpretv16qi,
14430         vreinterpretv8hi, vreinterpretv4si, vreinterpretv4sf, vreinterpretv2di,
14431         vreinterpretti): Remove.
14432         * config/arm/neon.md (neon_vreinterpretv8qi<mode>,
14433         neon_vreinterpretv4hi<mode>, neon_vreinterpretv2si<mode>,
14434         neon_vreinterpretv2sf<mode>, neon_vreinterpretdi<mode>,
14435         neon_vreinterpretti<mode>, neon_vreinterpretv16qi<mode>,
14436         neon_vreinterpretv8hi<mode>, neon_vreinterpretv4si<mode>,
14437         neon_vreinterpretv4sf<mode>, neon_vreinterpretv2di<mode>): Remove.
14438         * config/arm/arm_neon.h (vreinterpret_p8_p16, vreinterpret_p8_f32,
14439         vreinterpret_p8_p64, vreinterpret_p8_s64, vreinterpret_p8_u64,
14440         vreinterpret_p8_s8, vreinterpret_p8_s16, vreinterpret_p8_s32,
14441         vreinterpret_p8_u8, vreinterpret_p8_u16, vreinterpret_p8_u32,
14442         vreinterpret_p16_p8, vreinterpret_p16_f32, vreinterpret_p16_p64,
14443         vreinterpret_p16_s64, vreinterpret_p16_u64, vreinterpret_p16_s8,
14444         vreinterpret_p16_s16, vreinterpret_p16_s32, vreinterpret_p16_u8,
14445         vreinterpret_p16_u16, vreinterpret_p16_u32, vreinterpret_f32_p8,
14446         vreinterpret_f32_p16, vreinterpret_f32_p64, vreinterpret_f32_s64,
14447         vreinterpret_f32_u64, vreinterpret_f32_s8, vreinterpret_f32_s16,
14448         vreinterpret_f32_s32, vreinterpret_f32_u8, vreinterpret_f32_u16,
14449         vreinterpret_f32_u32, vreinterpret_p64_p8, vreinterpret_p64_p16,
14450         vreinterpret_p64_f32, vreinterpret_p64_s64, vreinterpret_p64_u64,
14451         vreinterpret_p64_s8, vreinterpret_p64_s16, vreinterpret_p64_s32,
14452         vreinterpret_p64_u8, vreinterpret_p64_u16, vreinterpret_p64_u32,
14453         vreinterpret_s64_p8, vreinterpret_s64_p16, vreinterpret_s64_f32,
14454         vreinterpret_s64_p64, vreinterpret_s64_u64, vreinterpret_s64_s8,
14455         vreinterpret_s64_s16, vreinterpret_s64_s32, vreinterpret_s64_u8,
14456         vreinterpret_s64_u16, vreinterpret_s64_u32, vreinterpret_u64_p8,
14457         vreinterpret_u64_p16, vreinterpret_u64_f32, vreinterpret_u64_p64,
14458         vreinterpret_u64_s64, vreinterpret_u64_s8, vreinterpret_u64_s16,
14459         vreinterpret_u64_s32, vreinterpret_u64_u8, vreinterpret_u64_u16,
14460         vreinterpret_u64_u32, vreinterpret_s8_p8, vreinterpret_s8_p16,
14461         vreinterpret_s8_f32, vreinterpret_s8_p64, vreinterpret_s8_s64,
14462         vreinterpret_s8_u64, vreinterpret_s8_s16, vreinterpret_s8_s32,
14463         vreinterpret_s8_u8, vreinterpret_s8_u16, vreinterpret_s8_u32,
14464         vreinterpret_s16_p8, vreinterpret_s16_p16, vreinterpret_s16_f32,
14465         vreinterpret_s16_p64, vreinterpret_s16_s64, vreinterpret_s16_u64,
14466         vreinterpret_s16_s8, vreinterpret_s16_s32, vreinterpret_s16_u8,
14467         vreinterpret_s16_u16, vreinterpret_s16_u32, vreinterpret_s32_p8,
14468         vreinterpret_s32_p16, vreinterpret_s32_f32, vreinterpret_s32_p64,
14469         vreinterpret_s32_s64, vreinterpret_s32_u64, vreinterpret_s32_s8,
14470         vreinterpret_s32_s16, vreinterpret_s32_u8, vreinterpret_s32_u16,
14471         vreinterpret_s32_u32, vreinterpret_u8_p8, vreinterpret_u8_p16,
14472         vreinterpret_u8_f32, vreinterpret_u8_p64, vreinterpret_u8_s64,
14473         vreinterpret_u8_u64, vreinterpret_u8_s8, vreinterpret_u8_s16,
14474         vreinterpret_u8_s32, vreinterpret_u8_u16, vreinterpret_u8_u32,
14475         vreinterpret_u16_p8, vreinterpret_u16_p16, vreinterpret_u16_f32,
14476         vreinterpret_u16_p64, vreinterpret_u16_s64, vreinterpret_u16_u64,
14477         vreinterpret_u16_s8, vreinterpret_u16_s16, vreinterpret_u16_s32,
14478         vreinterpret_u16_u8, vreinterpret_u16_u32, vreinterpret_u32_p8,
14479         vreinterpret_u32_p16, vreinterpret_u32_f32, vreinterpret_u32_p64,
14480         vreinterpret_u32_s64, vreinterpret_u32_u64, vreinterpret_u32_s8,
14481         vreinterpret_u32_s16, vreinterpret_u32_s32, vreinterpret_u32_u8,
14482         vreinterpret_u32_u16, vreinterpretq_p8_p16, vreinterpretq_p8_f32,
14483         vreinterpretq_p8_p64, vreinterpretq_p8_p128, vreinterpretq_p8_s64,
14484         vreinterpretq_p8_u64, vreinterpretq_p8_s8, vreinterpretq_p8_s16,
14485         vreinterpretq_p8_s32, vreinterpretq_p8_u8, vreinterpretq_p8_u16,
14486         vreinterpretq_p8_u32, vreinterpretq_p16_p8, vreinterpretq_p16_f32,
14487         vreinterpretq_p16_p64, vreinterpretq_p16_p128, vreinterpretq_p16_s64,
14488         vreinterpretq_p16_u64, vreinterpretq_p16_s8, vreinterpretq_p16_s16,
14489         vreinterpretq_p16_s32, vreinterpretq_p16_u8, vreinterpretq_p16_u16,
14490         vreinterpretq_p16_u32, vreinterpretq_f32_p8, vreinterpretq_f32_p16,
14491         vreinterpretq_f32_p64, vreinterpretq_f32_p128, vreinterpretq_f32_s64,
14492         vreinterpretq_f32_u64, vreinterpretq_f32_s8, vreinterpretq_f32_s16,
14493         vreinterpretq_f32_s32, vreinterpretq_f32_u8, vreinterpretq_f32_u16,
14494         vreinterpretq_f32_u32, vreinterpretq_p64_p8, vreinterpretq_p64_p16,
14495         vreinterpretq_p64_f32, vreinterpretq_p64_p128, vreinterpretq_p64_s64,
14496         vreinterpretq_p64_u64, vreinterpretq_p64_s8, vreinterpretq_p64_s16,
14497         vreinterpretq_p64_s32, vreinterpretq_p64_u8, vreinterpretq_p64_u16,
14498         vreinterpretq_p64_u32, vreinterpretq_p128_p8, vreinterpretq_p128_p16,
14499         vreinterpretq_p128_f32, vreinterpretq_p128_p64, vreinterpretq_p128_s64,
14500         vreinterpretq_p128_u64, vreinterpretq_p128_s8, vreinterpretq_p128_s16,
14501         vreinterpretq_p128_s32, vreinterpretq_p128_u8, vreinterpretq_p128_u16,
14502         vreinterpretq_p128_u32, vreinterpretq_s64_p8, vreinterpretq_s64_p16,
14503         vreinterpretq_s64_f32, vreinterpretq_s64_p64, vreinterpretq_s64_p128,
14504         vreinterpretq_s64_u64, vreinterpretq_s64_s8, vreinterpretq_s64_s16,
14505         vreinterpretq_s64_s32, vreinterpretq_s64_u8, vreinterpretq_s64_u16,
14506         vreinterpretq_s64_u32, vreinterpretq_u64_p8, vreinterpretq_u64_p16,
14507         vreinterpretq_u64_f32, vreinterpretq_u64_p64, vreinterpretq_u64_p128,
14508         vreinterpretq_u64_s64, vreinterpretq_u64_s8, vreinterpretq_u64_s16,
14509         vreinterpretq_u64_s32, vreinterpretq_u64_u8, vreinterpretq_u64_u16,
14510         vreinterpretq_u64_u32, vreinterpretq_s8_p8, vreinterpretq_s8_p16,
14511         vreinterpretq_s8_f32, vreinterpretq_s8_p64, vreinterpretq_s8_p128,
14512         vreinterpretq_s8_s64, vreinterpretq_s8_u64, vreinterpretq_s8_s16,
14513         vreinterpretq_s8_s32, vreinterpretq_s8_u8, vreinterpretq_s8_u16,
14514         vreinterpretq_s8_u32, vreinterpretq_s16_p8, vreinterpretq_s16_p16,
14515         vreinterpretq_s16_f32, vreinterpretq_s16_p64, vreinterpretq_s16_p128,
14516         vreinterpretq_s16_s64, vreinterpretq_s16_u64, vreinterpretq_s16_s8,
14517         vreinterpretq_s16_s32, vreinterpretq_s16_u8, vreinterpretq_s16_u16,
14518         vreinterpretq_s16_u32, vreinterpretq_s32_p8, vreinterpretq_s32_p16,
14519         vreinterpretq_s32_f16, vreinterpretq_s32_f32, vreinterpretq_s32_p64,
14520         vreinterpretq_s32_p128, vreinterpretq_s32_s64, vreinterpretq_s32_u64,
14521         vreinterpretq_s32_s8, vreinterpretq_s32_s16, vreinterpretq_s32_u8,
14522         vreinterpretq_s32_u16, vreinterpretq_s32_u32, vreinterpretq_u8_p8,
14523         vreinterpretq_u8_p16, vreinterpretq_u8_f32, vreinterpretq_u8_p64,
14524         vreinterpretq_u8_p128, vreinterpretq_u8_s64, vreinterpretq_u8_u64,
14525         vreinterpretq_u8_s8, vreinterpretq_u8_s16, vreinterpretq_u8_s32,
14526         vreinterpretq_u8_u16, vreinterpretq_u8_u32, vreinterpretq_u16_p8,
14527         vreinterpretq_u16_p16, vreinterpretq_u16_f32, vreinterpretq_u16_p64,
14528         vreinterpretq_u16_p128, vreinterpretq_u16_s64, vreinterpretq_u16_u64,
14529         vreinterpretq_u16_s8, vreinterpretq_u16_s16, vreinterpretq_u16_s32,
14530         vreinterpretq_u16_u8, vreinterpretq_u16_u32, vreinterpretq_u32_p8,
14531         vreinterpretq_u32_p16, vreinterpretq_u32_f32, vreinterpretq_u32_p64,
14532         vreinterpretq_u32_p128, vreinterpretq_u32_s64, vreinterpretq_u32_u64,
14533         vreinterpretq_u32_s8, vreinterpretq_u32_s16, vreinterpretq_u32_s32,
14534         vreinterpretq_u32_u8, vreinterpretq_u32_u16): Rewrite using casts.
14536 2016-02-04  Martin Liska  <mliska@suse.cz>
14538         PR sanitizer/69276
14539         * asan.c (has_stmt_been_instrumented_p): Instrument gimple calls
14540         that are gimple_store_p.
14541         (maybe_instrument_call): Likewise.
14543 2016-02-04  Bin Cheng  <bin.cheng@arm.com>
14545         * config/aarch64/aarch64.c (aarch64_legitimize_address): Force
14546         register scaling out of memory reference and comment why.
14548 2016-02-04  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
14550         PR target/65932
14551         PR target/67714
14552         * cse.c (cse_insn): Pass NULL to fold_rtx when initially
14553         folding the source of a SET.
14555 2016-02-04  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
14557         PR target/65932
14558         PR target/67714
14559         * config/arm/arm.c (arm_new_rtx_costs, MULT case): Properly extract
14560         the operands of the SIGN_EXTENDs from a SMUL[TB][TB] rtx.
14562 2016-02-04  Jim Wilson  <jim.wilson@linaro.org>
14564         PR target/65932
14565         PR target/67714
14566         * config/arm/arm.h (PROMOTE_MODE): Don't set UNSIGNEDP for QImode and
14567         HImode.
14569 2016-02-04  Christian Bruel  <christian.bruel@st.com>
14571         * config/arm/arm-c.c (arm_reset_previous_fndecl): Style fix and typo.
14572         * config/arm/arm.c (arm_set_current_function): Likewise.
14574 2016-02-04  Jakub Jelinek  <jakub@redhat.com>
14575             Ilya Enkovich  <enkovich.gnu@gmail.com>
14576             H.J. Lu  <hongjiu.lu@intel.com>
14578         PR target/69454
14579         * config/i386/i386.c (convert_scalars_to_vector): Remove
14580         stack alignment fixes.
14581         (ix86_option_override_internal): Disable TARGET_STV if stack
14582         might not be aligned enough.
14583         (ix86_minimum_alignment): Assert that TARGET_STV is false.
14585 2016-02-04  Victoria Stepanyan  <victoria.stepanyan@amd.com>
14587         * config/i386/x86-tune.def: Disable default prefetching
14588         for -march=znver1.
14590 2016-02-03  Michael Meissner  <meissner@linux.vnet.ibm.com>
14591             Vladimir Makarov  <vmakarov@redhat.com>
14593         PR target/69461
14594         * config/rs6000/rs6000.c (rs6000_legitimate_address_p): Fix thinko
14595         in validating fused toc addresses.
14597 2016-02-03  Jakub Jelinek  <jakub@redhat.com>
14599         PR c/69627
14600         * diagnostic-show-locus.c (layout::get_state_at_point): Don't read
14601         range->m_caret fields if range->m_show_caret_p is false.
14603         PR target/69644
14604         * config/rs6000/rs6000.c (rs6000_expand_atomic_compare_and_swap):
14605         Force oldval into register if it does not satisfy reg_or_short_operand
14606         predicate.  Fix up formatting.
14608 2016-02-03  Vladimir Makarov  <vmakarov@redhat.com>
14609             Alexandre Oliva  <aoliva@redhat.com>
14611         PR target/69461
14612         * lra-constraints.c (simplify_operand_subreg): Check additionally
14613         address validity after potential reloading.
14614         (process_address_1): Check insns validity.  In case of failure do
14615         nothing.
14617 2016-02-03  Kirill Yukhin  <kirill.yukhin@intel.com>
14619         PR target/69118
14620         * config/i386/sse.md (define_insn "avx512f_maskcmp<mode>3"):
14621         Fix target.
14623 2016-02-02  Jakub Jelinek  <jakub@redhat.com>
14625         * wide-int.cc (canonize_uhwi): New function.
14626         (wi::divmod_internal): Use it.
14628 2016-02-02  James Norris  <jnorris@codesourcery.com
14630         * gimplify.c (omp_notice_variable): Add usage check.
14632 2016-02-02  Alexander Monakov  <amonakov@ispras.ru>
14634         * config/nvptx/nvptx.c (nvptx_print_operand): Treat LEU, GEU, LTU, GTU
14635         like LE, GE, LT, GT when emitting relational operator.
14637 2016-02-02  Wilco Dijkstra  <wdijkstr@arm.com>
14639         * ira-costs.c (find_costs_and_classes): Add extra argument.
14640         * target.def (ira_change_pseudo_allocno_class): Add parameter.
14641         * targhooks.h (ira_change_pseudo_allocno_class): Likewise.
14642         * targhooks.c (ira_change_pseudo_allocno_class): Likewise.
14643         * config/aarch64/aarch64.c (aarch64_ira_change_pseudo_allocno_class)
14644         Add best_class parameter, and return it if not ALL_REGS.
14645         * config/mips/mips.c (mips_ira_change_pseudo_allocno_class):
14646         Add parameter.
14647         * doc/tm.texi (TARGET_IRA_CHANGE_PSEUDO_ALLOCNO_CLASS):
14648         Update target hook.
14650 2016-02-02  Wilco Dijkstra  <wdijkstr@arm.com>
14652         * config/aarch64/aarch64.c
14653         (TARGET_IRA_CHANGE_PSEUDO_ALLOCNO_CLASS): New define.
14654         (aarch64_ira_change_pseudo_allocno_class): New function.
14656 2016-02-02  Uros Bizjak  <ubizjak@gmail.com>
14658         PR target/67032
14659         * config/i386/i386.c (geode_cost): Increase cost of MMX and SSE moves.
14661 2016-02-02  Senthil Kumar Selvaraj  <senthil_kumar.selvaraj@atmel.com>
14663         * config/avr/avr.c (avr_option_override): Set
14664         PARAM_ALLOW_STORE_DATA_RACES to 1.
14666 2016-02-02  Richard Biener  <rguenther@suse.de>
14668         PR tree-optimization/69595
14669         * match.pd: Add range test simplifications to true/false.
14671 2016-02-02  Thomas Schwinge  <thomas@codesourcery.com>
14673         * omp-builtins.def (BUILT_IN_GOACC_HOST_DATA): Remove.
14674         * omp-low.c (expand_omp_target): Use BUILT_IN_GOACC_DATA_START
14675         instead.
14677 2016-02-02  Richard Biener  <rguenther@suse.de>
14679         PR tree-optimization/69606
14680         * tree-ssa-math-opts.c (bswap_replace): Clear flow sensitive
14681         info on the result before moving a stmt.
14683 2016-02-02  Yuri Rumyantsev  <ysrumyan@gmail.com>
14685         PR middle-end/68542
14686         * config/i386/i386.c (ix86_expand_branch): Add support for conditional
14687         branch with vector comparison.
14688         * config/i386/sse.md (VI48_AVX): New mode iterator.
14689         (define_expand "cbranch<mode>4): Add support for conditional branch
14690         with vector comparison.
14691         * tree-vect-loop.c (optimize_mask_stores): New function.
14692         * tree-vect-stmts.c (vectorizable_mask_load_store): Initialize
14693         has_mask_store field of vect_info.
14694         * tree-vectorizer.c (vectorize_loops): Invoke optimaze_mask_stores for
14695         vectorized loops having masked stores after vec_info destroy.
14696         * tree-vectorizer.h (loop_vec_info): Add new has_mask_store field and
14697         correspondent macros.
14698         (optimize_mask_stores): Add prototype.
14700 2016-02-02  Alan Modra  <amodra@gmail.com>
14702         PR target/69548
14703         * config/rs6000/predicates.md (quad_int_reg_operand): Don't
14704         allow subregs.
14706 2016-02-02  Alan Modra  <amodra@gmail.com>
14708         PR target/68662
14709         * config/rs6000/rs6000.c (need_toc_init): New var, set it
14710         whenever toc_label_name used.
14711         (rs6000_file_start): Don't set up toc section here,
14712         (rs6000_output_function_epilogue): do so here instead,
14713         (rs6000_xcoff_file_start): and here.
14714         * config/rs6000/rs6000.md (load_toc_aix_si): Set need_toc_init.
14715         (load_toc_aix_di): Likewise.
14717 2016-02-01  Jakub Jelinek  <jakub@redhat.com>
14719         PR rtl-optimization/69592
14720         * rtlanal.c (nonzero_bits_binary_arith_p): New inline function.
14721         (cached_nonzero_bits): Use it instead of ARITHMETIC_P.
14722         (num_sign_bit_copies_binary_arith_p): New inline function.
14723         (cached_num_sign_bit_copies): Use it instead of ARITHMETIC_P.
14725 2016-02-01  Jeff Law  <law@redhat.com>
14727         PR tree-optimization/69580
14728         * params.def (FSM_MAXIMUM_PHI_ARGUMENTS): New param.
14729         * tree-ssa-threadbackward.c
14730         (fsm_find_control_statement_thread_paths): Do not try to walk
14731         through large PHI nodes.
14733 2016-02-01  Jakub Jelinek  <jakub@redhat.com>
14735         * ifcvt.c (bb_ok_for_noce_convert_multiple_sets): Return false
14736         when count is incremented above limit, don't analyze further
14737         insns afterwards.
14739         * omp-low.c (oacc_parse_default_dims): Avoid
14740         -Wsign-compare warning, make sure value fits into int
14741         rather than just unsigned int.
14743 2016-02-01  Bin Cheng  <bin.cheng@arm.com>
14745         PR tree-optimization/67921
14746         * fold-const.c (split_tree): New parameters.  Convert pointer
14747         type variable part to proper type before negating.
14748         (fold_binary_loc): Pass new arguments to split_tree.
14750 2016-02-01  Nathan Sidwell  <nathan@codesourcery.com>
14752         * config/nvptx/nvptx.c (PTX_GANG_DEFAULT): New.
14753         (nvptx_goacc_validate_dims): Extend to handle global defaults.
14754         * target.def (OACC_VALIDATE_DIMS): Extend documentation.
14755         * doc/tm.texti: Rebuilt.
14756         * doc/invoke.texi (fopenacc-dim): Document.
14757         * lto-wrapper.c (merge_and_complain): Add OPT_fopenacc_dim_ case.
14758         (append_compiler_options): Likewise.
14759         * omp-low.c (oacc_default_dims, oacc_min_dims): New.
14760         (oacc_parse_default_dims): New.
14761         (oacc_validate_dims): Add USED arg.  Select non-unity default when
14762         possible.
14763         (oacc_loop_fixed_partitions): Return mask of used partitions.
14764         (oacc_loop_auto_partitions): Emit dump info.
14765         (oacc_loop_partition): Return mask of used partitions.
14766         (execute_oacc_device_lower): Parse default dimension arg.  Adjust
14767         loop partitioning and validation calls.
14769 2016-02-01  Richard Biener  <rguenther@suse.de>
14771         PR middle-end/69556
14772         * match.pd: Guard (C1/X)*C2 -> (C1*C2)/X with single_use.
14774 2016-02-01  Richard Biener  <rguenther@suse.de>
14776         PR tree-optimization/69574
14777         * tree-chrec.c (hide_evolution_in_other_loops_than_loop): Instead
14778         of asserting return chrec_dont_know.
14780 2016-02-01  Martin Liska  <mliska@suse.cz>
14782         * mem-stats-traits.h: Add copyright header.
14783         * mem-stats.h: Likewise.
14785 2016-02-01  Richard Biener  <rguenther@suse.de>
14787         PR tree-optimization/69579
14788         * tree-ssa-loop-ivcanon.c (propagate_constants_for_unrolling):
14789         Do not propagate through abnormal PHI results.
14791 2016-02-01  Eric Botcazou  <ebotcazou@adacore.com>
14793         * postreload.c (reload_cse_simplify): Remove dead code.
14795 2016-02-01  Jakub Jelinek  <jakub@redhat.com>
14797         PR rtl-optimization/69570
14798         * ifcvt.c (bb_ok_for_noce_convert_multiple_sets): Return true only
14799         if there is more than one set, not if there is a single set.
14801 2016-02-01  Richard Henderson  <rth@redhat.com>
14803         PR rtl-opt/69535
14804         * combine.c (make_compound_operation): When looking through a
14805         subreg, make sure to re-extend to the width of the outer mode.
14807 2016-01-30  Jakub Jelinek  <jakub@redhat.com>
14809         PR tree-optimization/69546
14810         * wide-int.cc (wi::divmod_internal): For unsigned division
14811         where both operands fit into uhwi, if o1 is 1 and o0 has
14812         msb set, if divident_prec is larger than bits per hwi,
14813         clear another quotient word and return 2 instead of 1.
14814         Similarly for remainder with msb in HWI set, if dividend_prec
14815         is larger than bits per hwi.
14817 2016-01-29  Martin Jambor  <mjambor@suse.cz>
14819         * hsa-gen.c (get_memory_order_name): Mask with MEMMODEL_BASE_MASK.
14820         Use short lowercase names.
14821         (get_memory_order): Mask with MEMMODEL_BASE_MASK.  Support
14822         MEMMODEL_CONSUME with acquire semantics and MEMMODEL_SEQ_CST with
14823         acq_rel one.  Protect warning agains segfaults if
14824         get_memory_order_name returns NULL.
14825         (gen_hsa_ternary_atomic_for_builtin): Support with MEMMODEL_SEQ_CST
14826         with release semantics.  Do not warn if get_memory_order already did.
14827         (gen_hsa_insns_for_call): Support with MEMMODEL_SEQ_CST with acquire
14828         semantics.  Fix check for relaxed or acquire semantics.  Do not warn
14829         if get_memory_order already did.
14831 2016-01-29  Sebastian Pop  <s.pop@samsung.com>
14833         * doc/install.texi: Document that isl-0.16 is supported.
14835 2016-01-29  Vladimir Makarov  <vmakarov@redhat.com>
14837         PR target/69299
14838         * config/i386/constraints.md (Bm): Describe as special memory
14839         constraint.
14840         * doc/md.texi (DEFINE_SPECIAL_MEMORY_CONSTRAINT): Describe it.
14841         * genoutput.c (main): Process DEFINE_SPECIAL_MEMORY_CONSTRAINT.
14842         * genpreds.c (struct constraint_data): Add is_special_memory.
14843         (have_special_memory_constraints, special_memory_start): New
14844         static vars.
14845         (special_memory_end): Ditto.
14846         (add_constraint): Add new arg is_special_memory.  Add code to
14847         process its true value.  Update have_special_memory_constraints.
14848         (process_define_constraint): Pass the new arg.
14849         (process_define_register_constraint): Ditto.
14850         (choose_enum_order): Process special memory.
14851         (write_tm_preds_h): Generate enum const CT_SPECIAL_MEMORY and
14852         function insn_extra_special_memory_constraint.
14853         (main): Process DEFINE_SPECIAL_MEMORY_CONSTRAINT.
14854         * gensupport.c (process_rtx): Process
14855         DEFINE_SPECIAL_MEMORY_CONSTRAINT.
14856         * ira-costs.c (record_reg_classes): Process CT_SPECIAL_MEMORY.
14857         * ira-lives.c (single_reg_class): Use
14858         insn_extra_special_memory_constraint.
14859         * ira.c (ira_setup_alts): Process CT_SPECIAL_MEMORY.
14860         * lra-constraints.c (process_alt_operands): Ditto.
14861         (curr_insn_transform): Use insn_extra_special_memory_constraint.
14862         * recog.c (asm_operand_ok, preprocess_constraints): Process
14863         CT_SPECIAL_MEMORY.
14864         * reload.c (find_reloads): Ditto.
14865         * rtl.def (DEFINE_SPECIFAL_MEMORY_CONSTRAINT): New.
14866         * stmt.c (parse_input_constraint): Use
14867         insn_extra_special_memory_constraint.
14869 2016-01-29  H.J. Lu  <hongjiu.lu@intel.com>
14871         PR target/69530
14872         * lra-splill.c (lra_final_code_change): Revert r229087 by
14873         removing all sub-registers.
14875 2016-01-29  Steve Ellcey  <sellcey@imgtec.com>
14877         PR target/65604
14878         * config/mips/mips.c (mips_output_division): Check flag_delayed_branch.
14880 2016-01-29  Jakub Jelinek  <jakub@redhat.com>
14882         PR target/69551
14883         * config/i386/i386.c (ix86_expand_vector_set) <case V4SImode>: For
14884         SSE1, copy target into the temporary reg first before recursing
14885         on it.
14887 2016-01-29  H.J. Lu  <hongjiu.lu@intel.com>
14889         * config/i386/sse.md (sse2_cvtps2pd<mask_name>): Replace vBm
14890         with vm.
14892 2016-01-29  Jonathan Wakely  <jwakely@redhat.com>
14894         * ginclude/stdarg.h: Test __cplusplus instead of
14895         __GXX_EXPERIMENTAL_CXX0X__.
14897 2016-01-29  Richard Biener  <rguenther@suse.de>
14899         PR tree-optimization/69547
14900         * tree-ssa-dce.c (mark_aliased_reaching_defs_necessary_1):
14901         Do not mark clobbers necessary.
14902         (mark_all_reaching_defs_necessary_1): Likewise.
14904 2016-01-29  Dominik Vogt  <vogt@linux.vnet.ibm.com>
14906         * config/s390/s390-c.c (s390_resolve_overloaded_builtin): Format
14907         declaration name with %qs and print it in both error messages.
14908         Also fix indentation.
14910 2016-01-29  Dominik Vogt  <vogt@linux.vnet.ibm.com>
14912         PR other/69006
14913         * config/s390/s390-c.c (s390_resolve_overloaded_builtin): Remove
14914         trailing blank line from error message.
14916 2016-01-29  Jonathan Wakely  <jwakely@redhat.com>
14918         PR c++/69462
14919         * ginclude/float.h: Also provide FLT_EVAL_METHOD and DECIMAL_DIG
14920         for C++-11.
14922 2016-01-29  Richard Biener  <rguenther@suse.de>
14924         PR middle-end/69537
14925         * match.pd: Allow all integral types when simplifying a
14926         widening or sign-changing conversion.
14928 2016-01-28  Sebastian Pop  <s.pop@samsung.com>
14930         * graphite-isl-ast-to-gimple.c (get_rename_from_scev): Revert assert
14931         back to setting codegen_error to fail codegen.
14933 2016-01-28  Uros Bizjak  <ubizjak@gmail.com>
14935         PR target/69459
14936         * config/i386/constraints.md (C): Only accept constant zero operand.
14937         (BC): New constraint.
14938         * config/i386/sse.md (*mov<mode>_internal): Use BC constraint
14939         instead of C constraint.
14940         * doc/md.texi (Machine Constraints): Update description
14941         of C constraint.
14943 2016-01-28  Steve Ellcey  <sellcey@imgtec.com>
14945         PR target/68400
14946         * config/mips/mips.c (and_operands_ok): Add MIPS16 check.
14948 2016-01-28  Jakub Jelinek  <jakub@redhat.com>
14950         PR middle-end/69542
14951         * lra-remat.c (calculate_local_reg_remat_bb_data): Only consider
14952         non-debug insns.
14954 2016-01-28  Pat Haugen  <pthaugen@us.ibm.com>
14956         * config/rs6000/rs6000.c (output_cbranch): Don't statically predict
14957         branches if using guessed profile.
14959 2016-01-28  H.J. Lu  <hongjiu.lu@intel.com>
14961         * graphite-optimize-isl.c (optimize_isl): Fix dump.
14963 2016-01-28  Richard Henderson  <rth@redhat.com>
14965         PR target/69305
14966         * config/aarch64/aarch64-modes.def (CC_Cmode): New
14967         * config/aarch64/aarch64-protos.h: Update.
14968         * config/aarch64/aarch64.c (aarch64_zero_extend_const_eq): New.
14969         (aarch64_select_cc_mode): Add check for use of CC_Cmode.
14970         (aarch64_get_condition_code_1): Handle CC_Cmode.
14971         * config/aarch64/aarch64.md (addti3): Use adddi3_compareC.
14972         (*add<mode>3_compareC_cconly_imm): New.
14973         (*add<mode>3_compareC_cconly): New.
14974         (*add<mode>3_compareC_imm): New.
14975         (add<mode>3_compareC): New.
14976         (add<mode>3_carryin, *addsi3_carryin_uxtw): Sort compare operand
14977         to be first.  Use aarch64_carry_operation.
14978         (*add<mode>3_carryin_alt1, *addsi3_carryin_alt1_uxtw): Remove.
14979         (*add<mode>3_carryin_alt2, *addsi3_carryin_alt2_uxtw): Remove.
14980         (*add<mode>3_carryin_alt3, *addsi3_carryin_alt3_uxtw): Remove.
14981         (subti3): Use subdi3_compare1.
14982         (*sub<mode>3_compare0): Rename from sub<mode>3_compare0.
14983         (sub<mode>3_compare1): New.
14984         (*sub<mode>3_carryin0, *subsi3_carryin_uxtw): New.
14985         (*sub<mode>3_carryin): Use aarch64_borrow_operation.
14986         (*subsi3_carryin_uxtw): Likewise.
14987         (*ngc<mode>, *ngcsi_uxtw): Likewise.
14988         (*sub<mode>3_carryin_alt, *subsi3_carryin_alt_uxtw): New.
14989         * config/aarch64/iterators.md (DWI): New.
14990         * config/aarch64/predicates.md (aarch64_carry_operation): New.
14991         (aarch64_borrow_operation): New.
14993 2016-01-28  Abderrazek Zaafrani  <a.zaafrani@samsung.com>
14995         * graphite-optimize-isl.c (optimize_isl): Print a different debug
14996         message when isl does not return a valid schedule.
14998 2016-01-28  Sebastian Pop  <s.pop@samsung.com>
15000         * graphite-isl-ast-to-gimple.c (class translate_isl_ast_to_gimple):
15001         Remove comments from class declarations: they are already in the code
15002         close by the defs.
15004 2016-01-28  Sebastian Pop  <s.pop@samsung.com>
15006         * graphite-isl-ast-to-gimple.c (binary_op_to_tree): Call
15007         codegen_error_p.
15008         (ternary_op_to_tree): Same.
15009         (unary_op_to_tree): Same.
15010         (nary_op_to_tree): Same.
15011         (gcc_expression_from_isl_expr_op): Same.
15012         (gcc_expression_from_isl_expression): Same.
15013         (graphite_create_new_loop): Same.
15014         (graphite_create_new_loop_guard): Same.
15015         (build_iv_mapping): Same.
15016         (graphite_create_new_guard): Same.
15017         (translate_isl_ast_to_gimple::copy_loop_phi_nodes): Same.
15018         (translate_isl_ast_to_gimple::translate_pending_phi_nodes): Same.
15020 2016-01-28  Sebastian Pop  <s.pop@samsung.com>
15022         * graphite-isl-ast-to-gimple.c (get_rename_from_scev): Assert
15023         instead of setting codegen_error to fail codegen.
15025 2016-01-28  Jason Merrill  <jason@redhat.com>
15027         * tree.h (BINFO_FLAG_0): Rename from BINFO_MARKED.
15029 2016-01-28  Wilco Dijkstra  <wdijkstr@arm.com>
15031         * config/aarch64/aarch64.c (aarch64_if_then_else_costs):
15032         Remove CONST_INT_P check in CCMP cost calculation.
15034 2016-01-28  Wilco Dijkstra  <wdijkstr@arm.com>
15036         * config/aarch64/aarch64.c (generic_vector_cost):
15037         Set vec_permute_cost.
15038         (cortexa57_vector_cost): Likewise.
15039         (exynosm1_vector_cost): Likewise.
15040         (xgene1_vector_cost): Likewise.
15041         (aarch64_builtin_vectorization_cost): Use vec_permute_cost.
15042         * config/aarch64/aarch64-protos.h (cpu_vector_cost):
15043         Add vec_permute_cost entry.
15045 2016-01-28  Wilco Dijkstra  <wdijkstr@arm.com>
15047         * config/aarch64/aarch64.md (ccmp<mode>): Disassemble
15048         immediate as %1.
15049         (add<mode>3_compare0): Likewise.
15050         (addsi3_compare0_uxtw): Likewise.
15051         (add<mode>3nr_compare0): Likewise.
15052         (compare_neg<mode>): Likewise.
15053         (<optab><mode>3): Likewise.
15055 2016-01-28  Ilya Enkovich  <enkovich.gnu@gmail.com>
15057         * tree-vect-stmts.c (vectorizable_comparison): Add
15058         NULL check for vectype.
15060 2016-01-28  Richard Biener  <rguenther@suse.de>
15062         PR tree-optimization/69466
15063         * tree-vect-loop-manip.c (slpeel_duplicate_current_defs_from_edges):
15064         Account for PHIs we couldn't duplicate.
15066 2016-01-28  Martin Liska  <mliska@suse.cz>
15068         PR pch/68758
15069         * ggc-common.c (gt_pch_save): Use ENABLE_VALGRIND_ANNOTATIONS macro
15070         instead of ENABLE_VALGRIND_CHECKING.
15072 2016-01-27  Richard Henderson  <rth@redhat.com>
15074         PR rtl-opt/69447
15075         * lra-remat.c (subreg_regs): New.
15076         (dump_candidates_and_remat_bb_data): Dump it.
15077         (operand_to_remat): Reject if operand in subreg_regs.
15078         (set_bb_regs): Collect subreg_regs.
15079         (lra_remat): Init and free subreg_regs.  Compute
15080         calculate_local_reg_remat_bb_data before create_cands.
15082 2016-01-27  H.J. Lu  <hongjiu.lu@intel.com>
15084         PR target/68986
15085         * config/i386/i386.c (ix86_update_stack_boundary): Don't
15086         change stack_alignment_needed for __tls_get_addr call.
15088 2016-01-27  Segher Boessenkool  <segher@kernel.crashing.org>
15090         * config/rs6000/rs6000.c (print_operand): Rollback 's' removal.
15092 2016-01-27  Jeff Law  <law@redhat.com>
15094         PR tree-optimization/68398
15095         PR tree-optimization/69196
15096         * params.def (PARAM_FSM_SCALE_PATH_STMTS): New parameter.
15097         (PARAM_FSM_SCALE_PATH_BLOCKS): Likewise.
15098         * tree-ssa-threadbackward.c (fsm_find_control_statement_thread_paths):
15099         Only count PHIs in the last block in the path.  The others will
15100         const/copy propagate away.  Add heuristic to allow more irreducible
15101         subloops to be created when it is likely profitable to do so.
15103         * tree-ssa-threadbackward.c (fsm_find_control_statement_thread_paths):
15104         Fix typo in comment.  Use gsi_after_labels and remove the GIMPLE_LABEL
15105         check from within the loop.  Use gsi_next_nondebug rather than gsi_next.
15107 2016-01-27  Jakub Jelinek  <jakub@redhat.com>
15109         PR lto/69254
15110         * sanitizer.def: Add BEGIN_SANITIZER_BUILTINS and
15111         END_SANITIZER_BUILTINS markers using DEF_BUILTIN_STUB.
15112         * asan.c (DEF_BUILTIN_STUB): Temporarily define.
15113         * tree-streamer-in.c: Include asan.h.
15114         (streamer_get_builtin_tree): For builtins in sanitizer
15115         range call initialize_sanitizer_builtins and retry.
15117 2016-01-27  Ian Lance Taylor  <iant@google.com>
15119         * common.opt (fkeep-gc-roots-live): New undocumented option.
15120         * tree-ssa-loop-ivopts.c (add_candidate_1): If
15121         -fkeep-gc-roots-live, skip pointers.
15122         (add_iv_candidate_for_biv): Handle add_candidate_1 returning
15123         NULL.
15125 2016-01-27  Uros Bizjak  <ubizjak@gmail.com>
15127         PR target/69512
15128         * config/i386/i386.md (*zext<mode>_doubleword_and): New pattern.
15129         (*zext<mode>_doubleword): Disable for TARGET_ZERO_EXTEND_WITH_AND.
15131 2016-01-27  Thomas Klausner  <wiz@NetBSD.org>
15133         PR target/68380
15134         * configure.ac: NetBSD provides SSP in its C library.
15135         * configure: Updated.
15137 2016-01-27  Richard Biener  <rguenther@suse.de>
15139         PR tree-optimization/69166
15140         * tree-vect-loop.c (vect_is_simple_reduction): Always check
15141         reduction code for commutativity / associativity.
15143 2016-01-27  Martin Jambor  <mjambor@suse.cz>
15145         PR tree-optimization/69355
15146         * tree-sra.c (analyze_access_subtree): Correct hole detection when
15147         total_scalarization fails.
15149 2016-01-27  David Edelsohn  <dje.gcc@gmail.com>
15151         * config/rs6000/driver-rs6000.c (detect_processor_aix): Add
15152         power9.
15154 2016-01-27  Christian Bruel  <christian.bruel@st.com>
15156         PR target/69245
15157         * config/arm/arm-c.c (arm_pragma_target_parse): Add comments.
15158         Move arm_reset_previous_fndecl and set_target_option_current_node in
15159         the conditional part.  Call save_restore_target_globals.
15160         * config/arm/arm.c (arm_set_current_function):
15161         Refactor to better support #pragma target and attribute mix.
15162         Call save_restore_target_globals.
15163         * config/arm/arm-protos.h (save_restore_target_globals): New function.
15165 2016-01-27  Martin Liska  <mliska@suse.cz>
15167         * hsa.c (hsa_summary_t::link_functions): Create IPA_REF_ADDR
15168         reference for an HSA kernel and its host function.
15170 2016-01-27  Jakub Jelinek  <jakub@redhat.com>
15172         PR tree-optimization/69399
15173         * wide-int.h (wi::lrshift): For larger precisions, only
15174         use fast path if shift is known to be < HOST_BITS_PER_WIDE_INT.
15176 2016-01-27  Claudiu Zissulescu  <claziss@synopsys.com>
15178         * config/arc/predicates.md (proper_comparison_operator): Reject
15179         constant-constant comparison.
15181 2016-01-26  Tom de Vries  <tom@codesourcery.com>
15183         PR tree-optimization/69110
15184         * tree-data-ref.c (initialize_data_dependence_relation): Handle
15185         DR_NUM_DIMENSIONS == 0.
15187 2016-01-26  Abderrazek Zaafrani  <a.zaafrani@samsung.com>
15188             Sebastian Pop  <s.pop@samsung.com>
15190         * graphite-isl-ast-to-gimple.c (ternary_op_to_tree): Handle
15191         isl_ast_op_cond and isl_ast_op_select.
15192         (gcc_expression_from_isl_expr_op): Same.
15194 2016-01-26  Jason Merrill  <jason@redhat.com>
15196         PR c++/68782
15197         * tree.c (recompute_constructor_flags): Split out from
15198         build_constructor.
15199         (verify_constructor_flags): New.
15200         * tree.h: Declare them.
15202 2016-01-26  Iain Buclaw  <ibuclaw@gdcproject.org>
15204         PR rtl-optimization/69217
15205         * var-tracking.c (tracked_record_parameter_p): Don't segfault if there
15206         are no TYPE_FIELDS set for the record type.
15208 2016-01-26  Jakub Jelinek  <jakub@redhat.com>
15210         PR target/68662
15211         * config/rs6000/rs6000.c (rs6000_option_override_internal): Initialize
15212         toc_label_name unconditionally.
15213         (rs6000_emit_load_toc_table): Call ggc_strdup on toc_label_name for
15214         SYMBOL_REF string.  Use toc_label_name instead of constructing
15215         LCTOC1.
15216         (rs6000_elf_declare_function_name): Use toc_label_name instead of
15217         constructing LCTOC1.
15219 2016-01-26  Martin Sebor  <msebor@redhat.com>
15221         PR other/69477
15222         * doc/extend.texi (Common Type Attributes): Move text that talks about
15223         attribute packed from attribute aligned to the section discussing
15224         the former attribute for clarity.
15226 2016-01-26  Richard Henderson  <rth@redhat.com>
15228         PR middle-end/60908
15229         * trans-mem.c (tm_region_init): Mark entry block as visited.
15231 2016-01-26  David Malcolm  <dmalcolm@redhat.com>
15233         PR other/69006
15234         * diagnostic-show-locus.c (layout::print_source_line): Replace
15235         call to pp_newline with call to layout::print_newline.
15236         (layout::print_annotation_line): Likewise.
15237         (layout::move_to_column): Likewise.
15238         (layout::print_any_fixits): After printing any fixits, print a
15239         trailing newline, if necessary.
15240         (layout::print_newline): New method, resetting any colorization
15241         before a newline.
15242         (diagnostic_show_locus): Move the pp_newline to before the
15243         early bailout.  Remove dummy block enclosing the layout instance.
15244         * diagnostic.c (default_diagnostic_finalizer): Replace invocation
15245         of pp_newline_and_flush with pp_flush.
15246         (diagnostic_append_note): Delete use of pp_newline.
15247         (diagnostic_append_note_at_rich_loc): Delete.
15248         * diagnostic.h (diagnostic_append_note_at_rich_loc): Delete.
15249         * pretty-print.h (output_buffer_append_r): Reset buff->line_length
15250         when newline characters are added to the buffer.
15252 2016-01-26  Michael Matz  <matz@suse.de>
15254         * configure.ac (ac_cv_std_swap_in_utility): New test.
15255         * system.h (<algorithm>): Check HAVE_SWAP_IN_UTILITY as well.
15256         * configure: Regenerate.
15257         * config.in: Regenerate.
15259 2016-01-26  Claudiu Zissulescu  <claziss@synopsys.com>
15261         * config/arc/arc.md (cstoresi4): Force operand into register.
15262         (arcset<code>): Fix predicate.
15263         (arcsetltu): Likewise.
15264         (arcsetgeu): Likewise.
15265         (arcsethi): Likewise.
15266         (arcsetls): Likewise.
15268 2016-01-26  Jakub Jelinek  <jakub@redhat.com>
15270         PR tree-optimization/69483
15271         * gimple-fold.c (canonicalize_constructor_val): Return NULL
15272         if base has error_mark_node type.
15274 2016-01-26  Christophe Lyon  <christophe.lyon@linaro.org>
15276         PR target/68620
15277         * config/arm/arm.c (neon_valid_immediate): Handle FP16 vectors.
15278         * config/arm/arm_neon.h (__ARM_NUM_LANES, __arm_lane, arm_lanq):
15279         New helper macros.
15280         (vget_lane_f16): Handle big-endian.
15281         (vgetq_lane_f16): Likewise.
15282         (vset_lane_f16): Likewise.
15283         (vsetq_lane_f16): Likewise.
15284         * config/arm/iterators.md (VQXMOV): Add V8HF.
15285         (VDQ): Add V4HF and V8HF.
15286         (V_reg): Handle V4HF and V8HF.
15287         (Is_float_mode): Likewise.
15288         * config/arm/neon.md (movv4hf, movv8hf, neon_vdup_nv4hf,
15289         neon_vdup_nv8hf): New patterns.
15290         (vec_set<mode>_internal, vec_extract<mode>, neon_vld1_dup<mode>):
15291         Use VD_LANE iterator.
15292         (neon_vld1_dup<mode>): Use VQ2 iterator.
15294 2016-01-26  Nathan Sidwell  <nathan@acm.org>
15296         * omp-low.h (oacc_fn_attrib_kernels_p): Declare.
15297         (set_oacc_fn_attrib): Add IS_KERNEL arg.
15298         * omp-low.c (set_oacc_fn_attrib): Add IS_KERNEL arg.
15299         (oacc_fn_attrib_kernels_p, oacc_fn_attrib_level): New.
15300         (expand_omp_target): Pass is_kernel to set_oacc_fn_attrib.
15301         (oacc_validate_dims): Add LEVEL arg, don't return level.
15302         (new_oacc_loop_routine): Use oacc_fn_attrib_level, not
15303         oacc_validate_dims.
15304         (execute_oacc_device_lower): Adjust, add more dump output.
15305         * tree-ssa-loop.c (gate_oacc_kernels): Use
15306         oacc_fn_attrib_kernels_p.
15307         * tree-parloops.c (create_parallel_loop): Adjust
15308         set_oacc_fn_attrib call.
15310 2016-01-26  Jakub Jelinek  <jakub@redhat.com>
15312         PR lto/69254
15313         * lto-wrapper.c (merge_and_complain): Handle -fcilkplus.
15314         (append_compiler_options): Handle -fcilkplus.
15315         (append_linker_options): Ignore -fno-{openmp,openacc,cilkplus}.
15317 2016-01-26  Nick Clifton  <nickc@redhat.com>
15319         PR target/66655
15320         * config/i386/winnt.c (i386_pe_binds_local_p): If a function has
15321         been marked as DECL_ONE_ONLY but we do not the means to make it
15322         so, then do not allow it to bind locally.
15324 2016-01-26  Jakub Jelinek  <jakub@redhat.com>
15326         PR lto/69254
15327         * opts.h (parse_sanitizer_options): New prototype.
15328         * opts.c (sanitizer_opts): New array.
15329         (parse_sanitizer_options): New function.
15330         (common_handle_option): Use parse_sanitizer_options.
15332 2016-01-26  H.J. Lu  <hongjiu.lu@intel.com>
15334         PR target/68986
15335         * config/i386/i386.c (ix86_compute_frame_layout): Move stack
15336         alignment adjustment to ...
15337         (ix86_update_stack_boundary): Here.  Don't over-align stack for
15338         __tls_get_addr.
15339         (ix86_finalize_stack_realign_flags): Use stack_alignment_needed
15340         if __tls_get_addr is called.
15342 2016-01-26  Christian Bruel  <christian.bruel@st.com>
15344         * doc/sourcebuild.texi (arm_crypto_pragma_ok): Remove.
15346 2016-01-26  Eric Botcazou  <ebotcazou@adacore.com>
15348         * config/ia64/ia64.c (ia64_expand_vecint_compare): Use gen_int_mode.
15350 2016-01-26  Richard Biener  <rguenther@suse.de>
15352         PR middle-end/69467
15353         * match.pd: Guard X * CST CMP 0 pattern with single_use.
15355 2016-01-26  Richard Biener  <rguenther@suse.de>
15357         PR tree-optimization/69452
15358         * tree-ssa-loop-im.c (move_computations_dom_walker): Remove.
15359         (move_computations_dom_walker::before_dom_children): Rename
15360         to ...
15361         (move_computations_worker): This.
15362         (move_computations): Perform an RPO rather than a DOM walk.
15364 2016-01-26  Jakub Jelinek  <jakub@redhat.com>
15366         PR target/69442
15367         * combine.c (combine_instructions): For REG_EQUAL note with
15368         SET_DEST being ZERO_EXTRACT, also temporarily set SET_DEST
15369         to the underlying register.
15370         * doc/rtl.texi (REG_EQUAL): Document the behavior of
15371         REG_EQUAL/REG_EQUIV notes if SET_DEST is ZERO_EXTRACT.
15373 2016-01-26  Roger Ferrer Ibáñez  <rofirrim@gmail.com>
15375         PR target/67896
15376         * config/aarch64/aarch64-builtins.c
15377         (aarch64_init_simd_builtin_types): Do not set structural
15378         equality to __Poly{8,16,64,128}_t types.
15380 2016-01-26  Richard Sandiford  <richard.sandiford@arm.com>
15382         PR tree-optimization/69400
15383         * wide-int.cc (wi_pack): Take the precision as argument and
15384         perform canonicalization here rather than in the callers.
15385         Use the main loop to handle all full-width HWIs.  Add a
15386         zero HWI if in_len isn't a full result.
15387         (wi::divmod_internal): Update accordingly.
15388         (wi::mul_internal): Likewise.  Simplify.
15390 2016-01-25  Aditya Kumar  <aditya.k7@samsung.com>
15391             Sebastian Pop  <s.pop@samsung.com>
15393         * graphite-poly.c (apply_poly_transforms): Simplify.
15394         (print_isl_set): Use more readable format: ISL_YAML_STYLE_BLOCK.
15395         (print_isl_map): Same.
15396         (print_isl_union_map): Same.
15397         (print_isl_schedule): New.
15398         (debug_isl_schedule): New.
15399         * graphite-dependences.c (scop_get_reads): Do not call
15400         isl_union_map_add_map that is undocumented isl functionality.
15401         (scop_get_must_writes): Same.
15402         (scop_get_may_writes): Same.
15403         (scop_get_original_schedule): Remove.
15404         (scop_get_dependences): Do not call isl_union_map_compute_flow that
15405         is deprecated in isl 0.15.  Instead, use isl_union_access_* interface.
15406         (compute_deps): Remove.
15407         * graphite-isl-ast-to-gimple.c (print_schedule_ast): New.
15408         (debug_schedule_ast): New.
15409         (translate_isl_ast_to_gimple::scop_to_isl_ast): Call
15410         set_separate_option.
15411         (graphite_regenerate_ast_isl): Add dump.
15412         (translate_isl_ast_to_gimple::scop_to_isl_ast): Generate code
15413         from scop->transformed_schedule.
15414         (graphite_regenerate_ast_isl): Add more dump.
15415         * graphite-optimize-isl.c (optimize_isl): Set
15416         scop->transformed_schedule.  Check whether schedules are equal.
15417         (apply_poly_transforms): Move here.
15418         * graphite-poly.c (apply_poly_transforms): ... from here.
15419         (free_poly_bb): Static.
15420         (free_scop): Static.
15421         (pbb_number_of_iterations_at_time): Remove.
15422         (print_isl_ast): New.
15423         (debug_isl_ast): New.
15424         (debug_scop_pbb): New.
15425         * graphite-scop-detection.c (print_edge): Move.
15426         (print_sese): Move.
15427         * graphite-sese-to-poly.c (build_pbb_scattering_polyhedrons): Remove.
15428         (build_scop_scattering): Remove.
15429         (create_pw_aff_from_tree): Assert instead of bailing out.
15430         (add_condition_to_pbb): Remove unused code, do not fail.
15431         (add_conditions_to_domain): Same.
15432         (add_conditions_to_constraints): Remove.
15433         (build_scop_context): New.
15434         (add_iter_domain_dimension): New.
15435         (build_iteration_domains): Initialize pbb->iterators.
15436         Call add_conditions_to_domain.
15437         (nested_in): New.
15438         (loop_at): New.
15439         (index_outermost_in_loop): New.
15440         (index_pbb_in_loop): New.
15441         (outermost_pbb_in): New.
15442         (add_in_sequence): New.
15443         (add_outer_projection): New.
15444         (outer_projection_mupa): New.
15445         (add_loop_schedule): New.
15446         (build_schedule_pbb): New.
15447         (build_schedule_loop): New.
15448         (embed_in_surrounding_loops): New.
15449         (build_schedule_loop_nest): New.
15450         (build_original_schedule): New.
15451         (build_poly_scop): Call build_original_schedule.
15452         * graphite.h: Declare print_isl_schedule and debug_isl_schedule.
15453         (free_poly_dr): Remove.
15454         (struct poly_bb): Add iterators.  Remove schedule, transformed, saved.
15455         (free_poly_bb): Remove.
15456         (debug_loop_vec): Remove.
15457         (print_isl_ast): Declare.
15458         (debug_isl_ast): Declare.
15459         (scop_do_interchange): Remove.
15460         (scop_do_strip_mine): Remove.
15461         (scop_do_block): Remove.
15462         (flatten_all_loops): Remove.
15463         (optimize_isl): Remove.
15464         (pbb_number_of_iterations_at_time): Remove.
15465         (debug_scop_pbb): Declare.
15466         (print_schedule_ast): Declare.
15467         (debug_schedule_ast): Declare.
15468         (struct scop): Remove schedule.  Add original_schedule,
15469         transformed_schedule.
15470         (free_gimple_poly_bb): Remove.
15471         (print_generated_program): Remove.
15472         (debug_generated_program): Remove.
15473         (unify_scattering_dimensions): Remove.
15474         * sese.c (print_edge): ... here.
15475         (print_sese): ... here.
15476         (debug_edge): ... here.
15477         (debug_sese): ... here.
15478         * sese.h (print_edge): Declare.
15479         (print_sese): Declare.
15480         (dump_edge): Declare.
15481         (dump_sese): Declare.
15483 2016-01-25  Aditya Kumar  <aditya.k7@samsung.com>
15484             Sebastian Pop  <s.pop@samsung.com>
15486         * Makefile.in: Set ISLVER in site.exp.
15488 2016-01-25  Jakub Jelinek  <jakub@redhat.com>
15490         * omp-low.c (lower_omp_target) <case USE_DEVICE_PTR>: Set
15491         DECL_VALUE_EXPR of new_var even for the non-array case.  Look
15492         through DECL_VALUE_EXPR for expansion.
15494 2016-01-25  Bernd Edlinger  <bernd.edlinger@hotmail.de>
15496         * config/mips/mips.c (mips_compute_frame_info): Skip re-computing
15497         the frame info after reload completed.
15499 2016-01-25  Jeff Law  <law@redhat.com>
15501         PR tree-optimization/69196
15502         PR tree-optimization/68398
15503         * tree-ssa-threadupdate.h (enum bb_dom_status): Moved here from
15504         tree-ssa-threadupdate.c.
15505         (determine_bb_domination_status): Prototype
15506         * tree-ssa-threadupdate.c (enum bb_dom_status): Remove
15507         (determine_bb_domination_status): No longer static.
15508         (valid_jump_thread_path): Remove code to detect characteristics
15509         of the jump thread path not associated with correctness.
15510         * tree-ssa-threadbackward.c (fsm_find_control_statment_thread_paths):
15511         Correct test for thread path length.  Count PHIs for real operands as
15512         statements that need to be copied.  Do not count ASSERT_EXPRs.
15513         Look at all the blocks in the thread path.  Compute and selectively
15514         filter thread paths based on threading through the latch, threading
15515         a multiway branch or crossing a multiway branch.
15517 2016-01-25  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
15519         * config/rs6000/rs6000.c (rs6000_keep_leaf_when_profiled):  Add
15520         decl with __attribute__ ((unused)) annotation.
15522 2016-01-25  Ilya Enkovich  <enkovich.gnu@gmail.com>
15524         PR target/69421
15525         * tree-vect-stmts.c (vectorizable_condition): Check vectype
15526         of operands is compatible with a statement vectype.
15528 2016-01-25  Eric Botcazou  <ebotcazou@adacore.com>
15530         * doc/extend.texi (scalar_storage_order type attribute): Fix typo and
15531         improve wording for mixed storage order support.
15533 2016-01-25  Bilyan Borisov  <bilyan.borisov@arm.com>
15535         * config/aarch64/arm_neon.h (vcvt_s64_f64): New intrinsic.
15536         (vcvt_u64_f64): Likewise.
15537         (vcvta_s64_f64): Likewise.
15538         (vcvta_u64_f64): Likewise.
15539         (vcvtm_s64_f64): Likewise.
15540         (vcvtm_u64_f64): Likewise.
15541         (vcvtn_s64_f64): Likewise.
15542         (vcvtn_u64_f64): Likewise.
15543         (vcvtp_s64_f64): Likewise.
15544         (vcvtp_u64_f64): Likewise.
15546 2016-01-25  Claudiu Zissulescu  <claziss@synopsys.com>
15548         * config/arc/arc.c (TARGET_DWARF_REGISTER_SPAN): Define.
15549         (arc_init): Check validity mll64 option.
15550         (arc_save_restore): Use double load/store instruction.
15551         (arc_expand_movmem): Likewise.
15552         (arc_split_move): Don't split if we have double load/store
15553         instructions. Returns a boolean.
15554         (arc_process_double_reg_moves): Change function to return boolean
15555         instead of a sequence of instructions.
15556         (arc_dwarf_register_span): New function.
15557         * config/arc/arc-protos.h (arc_split_move): Change prototype.
15558         * config/arc/arc.h (TARGET_CPU_CPP_BUILTINS): Define __ARC_LL64__.
15559         * config/arc/arc.md (*movdi_insn): Emit ldd/std instructions.
15560         (*movdf_insn): Likewise.
15561         * config/arc/arc.opt (mll64): New option.
15562         * config/arc/predicates.md (even_register_operand): New predicate.
15563         * doc/invoke.texi (ARC Options): Add mll64 documentation.
15565 2016-01-25  Richard Biener  <rguenther@suse.de>
15567         PR lto/69393
15568         * dwarf2out.c (is_naming_typedef_decl): Not when DECL_NAMELESS.
15569         * tree-streamer-out.c (pack_ts_base_value_fields): Stream
15570         DECL_NAMELESS.
15571         * tree-streamer-in.c (unpack_ts_base_value_fields): Likewise.
15573 2016-01-25  Richard Biener  <rguenther@suse.de>
15575         PR tree-optimization/69376
15576         * tree-ssa-sccvn.h (struct vn_ssa_aux): Add range_info_anti_range_p
15577         flag.
15578         (VN_INFO_ANTI_RANGE_P): New inline.
15579         (VN_INFO_RANGE_TYPE): Likewise.
15580         * tree-ssa-sccvn.c (set_ssa_val_to): Also record and copy
15581         SSA_NAME_ANTI_RANGE_P.
15582         (free_scc_vn): Restore SSA_NAME_ANTI_RANGE_P.
15583         * tree-ssa-pre.c (eliminate_dom_walker::before_dom_children):
15584         Properly query VN_INFO_RANGE_TYPE.
15586 2016-01-25  Nick Clifton  <nickc@redhat.com>
15588         PR target/66655
15589         * config/i386/cygming.h (MAKE_DECL_ONE_ONLY): Remove definition.
15591 2016-01-23  Tom de Vries  <tom@codesourcery.com>
15593         PR tree-optimization/69426
15594         * tree-parloops.c (eliminate_local_variables_stmt): Handle vdef of
15595         removed clobber.
15597 2016-01-23  Jakub Jelinek  <jakub@redhat.com>
15599         * tree-ssanames.c (release_free_names_and_compact_live_names): Replace
15600         "the the" with "the" in the comments.
15601         * ipa-devirt.c (build_type_inheritance_graph,
15602         update_type_inheritance_graph): Likewise.
15603         * tree.c (build_function_type_list_1): Likewise.
15604         * cfgloopmanip.c (scale_loop_profile): Likewise.
15605         * tree-ssa-loop-ivopts.c (get_shiftadd_cost): Likewise.
15606         * gimple-ssa-split-paths.c
15607         (find_block_to_duplicate_for_splitting_paths): Likewise.
15608         * tree-sra.c (init_subtree_with_zero, clobber_subtree): Likewise.
15609         * expr.c (convert_move): Likewise.
15610         * var-tracking.c (vt_stack_adjustments): Likewise.
15611         * tree-vect-data-refs.c (vect_enhance_data_refs_alignment): Likewise.
15612         * tree-vrp.c (test_for_singularity): Likewise.
15614         * tree-vect-stmts.c (vectorizable_condition): Build a VEC_COND_EXPR
15615         directly instead of building a temporary tree.
15617         PR bootstrap/69434
15618         * genrecog.c: Define INCLUDE_ALGORITHM before including system.h,
15619         remove <algorithm> include.
15621 2016-01-22  Jakub Jelinek  <jakub@redhat.com>
15623         PR target/69432
15624         * config/i386/i386.c: Include dojump.h.
15625         (expand_small_movmem_or_setmem,
15626         expand_set_or_movmem_prologue_epilogue_by_misaligned_moves): Spelling
15627         fixes.
15628         (ix86_expand_set_or_movmem): Call do_pending_stack_adjust () early
15629         if dynamic_check != -1.
15631 2016-01-21  Jeff Law  <law@redhat.com>
15633         PR middle-end/69347
15634         * tree-ssa-dom.c (back_propagate_equivalences): Factored out of
15635         record_temporary_equivalences.  Rewritten to avoid unnecessary calls
15636         into dominated_by_p.
15637         (cprop_into_successor_phis): Avoid unnecessary tests.
15639 2016-01-22  Richard Henderson  <rth@redhat.com>
15641         PR target/69416
15642         * config/aarch64/aarch64.md (UNSPEC_NZCV): New.
15643         (ccmp<mode>, fccmp<mode>, fccmpe<mode>): Use it.
15645 2016-01-22  Michael Matz  <matz@suse.de>
15647         * system.h (string, algorithm): Include only conditionally.
15648         (new): Include always under C++.
15649         * bb-reorder.c (toplevel): Define INCLUDE_ALGORITHM.
15650         * final.c (toplevel): Ditto.
15651         * ipa-chkp.c (toplevel): Define INCLUDE_STRING.
15652         * genconditions.c (write_header): Make gencondmd.c define
15653         INCLUDE_STRING.
15654         * mem-stats.h (mem_usage::print_dash_line): Don't use std::string.
15656         * config/aarch64/aarch64.c (toplevel): Define INCLUDE_STRING.
15657         * common/config/aarch64/aarch64-common.c (toplevel): Ditto.
15659 2016-01-22  Christian Bruel  <christian.bruel@st.com>
15661         PR target/68674
15662         * expr.c (expand_expr_real_1): Reset DECL_MODE if VECTOR_TYPE_P changed.
15664 2016-01-22  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
15666         PR target/69403
15667         * config/arm/thumb2.md (*thumb2_ior_scc_strict_it): Convert to
15668         define_insn_and_split.  Ensure operands[1] and operands[0] do not
15669         get assigned the same register.
15671 2016-01-22  Kugan Vivekanandarajah  <kuganv@linaro.org>
15673         * ipa-prop.c (ipa_set_jf_constant): Remove redundant unshare_expr.
15675 2016-01-22  Christian Bruel  <christian.bruel@st.com>
15677         * config/arm/arm-c.c (arm_pragma_target_parse):
15678         Remove warn_builtin_macro_redefined overwrite.
15680 2016-01-22  Eric Botcazou  <ebotcazou@adacore.com>
15682         * ipa-inline.c (can_inline_edge_p): Back out overzealous check on
15683         flag_non_call_exceptions compatibility.
15685 2016-01-22  Jakub Jelinek  <jakub@redhat.com>
15687         PR debug/66668
15688         * dwarf2out.c (add_child_die_after): New function.
15689         (dwarf_qual_info_t): New type.
15690         (dwarf_qual_info): New variable.
15691         (qualified_die_p): New function.
15692         (modified_type_die): For -fdebug-types-section, ensure
15693         canonical order of qualifiers.  Put qualified DIEs adjacent
15694         to the corresponding non-qualified type DIE and search there
15695         for existing qualified DIEs.
15697 2016-01-22  Eric Botcazou  <ebotcazou@adacore.com>
15699         * doc/extend.texi (scalar_storage_order type attribute): Document
15700         restriction on type punning and aliasing, and remove future tense.
15702 2016-01-21  Roman Zhuykov  <zhroma@ispras.ru>
15704         PR target/69252
15705         * modulo-sched.c (optimize_sc): Allow branch-scheduling to add a new
15706         first stage.
15708 2016-01-21  Jeff Law  <law@redhat.com>
15710         PR middle-end/69347
15711         * tree-ssa-dom.c (dom_opt_dom_walker::thread_across_edge): Avoid
15712         useless call to record_temporary_equivalences.
15713         * tree-ssa-threadbackward.c (find_jump_threads_backwards): Just
15714         allocate 10 slots in the bb_path vector and let it grow as needed.
15715         (fsm_find_control_statement_thread_paths): Similarly for the next_path
15716         vector.
15718 2016-01-21  David Edelsohn  <dje.gcc@gmail.com>
15720         * configure.ac (gcc_cv_as_powerpc_mfcrf, gcc_cv_as_machine_directive):
15721         Detangle.
15722         * configure: Regenerate.
15724 2016-01-21  Pat Haugen  <pthaugen@us.ibm.com>
15726         * config/rs6000/aix71.h (ASM_CPU_SPEC): Add entry for Power9.
15727         * config/rs6000/driver-rs6000.c (struct asm_names): Likewise.
15729 2016-01-21  Bernd Schmidt  <bschmidt@redhat.com>
15731         PR middle-end/66178
15732         * expr.c (expand_expr_real_2) [PLUS_EXPR, MINUS_EXPR]: Don't
15733         drop EXPAND_INITIALIZER.
15734         * rtl.h (contains_symbolic_reference_p): Declare.
15735         * rtlanal.c (contains_symbolic_reference_p): New function.
15736         * simplify-rtx.c (simplify_binary_operation_1): Don't turn
15737         a subtraction into a NOT if symbolic constants are involved.
15739 2016-01-21  Anton Blanchard  <anton@samba.org>
15740             Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
15742         PR target/63354
15743         * config/rs6000/linux64.h (TARGET_KEEP_LEAF_WHEN_PROFILED): New
15744         #define.
15745         * config/rs6000/rs6000.c (rs6000_keep_leaf_when_profiled): New
15746         function.
15748 2016-01-21  Ajit Agarwal  <ajitkum@xilinx.com>
15750         * config/microblaze/microblaze.c
15751         (get_branch_target): New.
15752         (insert_wic_for_ilb_runout): New.
15753         (insert_wic): New.
15754         (microblaze_machine_dependent_reorg): New.
15755         (TARGET_MACHINE_DEPENDENT_REORG): Define macro.
15756         * config/microblaze/microblaze.md
15757         (UNSPEC_IPREFETCH): Define.
15758         (iprefetch): New pattern
15759         * config/microblaze/microblaze.opt
15760         (mxl-prefetch): New flag.
15762 2016-01-21  Ajit Agarwal  <ajitkum@xilinx.com>
15764         * config/microblaze/microblaze.h
15765         (FIXED_REGISTERS): Update in macro.
15766         (CALL_USED_REGISTERS): Update in macro.
15768 2016-01-21  Yuri Rumyantsev  <ysrumyan@gmail.com>
15770         PR rtl-optimization/68920
15771         * ifcvt.c (cond_move_process_if_block): Limit number of conditional
15772         moves.
15774 2016-01-21  Vladimir Makarov  <vmakarov@redhat.com>
15776         PR rtl-optimization/68990
15777         * lra-coalesce.c (lra_coalesce): Invalidate value for the result
15778         pseudo instead of inheritance ones.
15780 2016-01-21  Bernd Edlinger  <bernd.edlinger@hotmail.de>
15781             Nick Clifton  <nickc@redhat.com>
15783         PR target/69129
15784         PR target/69012
15785         * config/mips/mips.c (mips_compute_frame_info): Initialise
15786         args_size and hard_frame_pointer_offset fields of the frame
15787         structure before calling mips_global_pointer.
15789 2016-01-21  David Edelsohn  <dje.gcc@gmail.com>
15791         * configure.ac (gcc_cv_as_dwloc): Test support for debug frame section
15792         label reference.
15793         * configure: Regenerate.
15795 2016-01-21  Richard Biener  <rguenther@suse.de>
15797         * graphite-optimize-isl.c (get_schedule_map): Fix typo.
15799 2016-01-21  Marcin Kościelnicki  <koriakin@0x04.net>
15801         * config/s390/s390.c (s390_asm_declare_function_size): Add code
15802         to actually emit the .size directive.
15804 2016-01-21   Stefan Sørensen  <stefan.sorensen@spectralink.com>
15805              Jakub Jelinek  <jakub@redhat.com>
15807         PR target/69187
15808         PR target/65624
15809         * config/arm/arm-builtins.c (arm_expand_neon_builtin): Increase
15810         args array size by one to avoid buffer overflow.
15812 2016-01-21  Marcin Kościelnicki  <koriakin@0x04.net>
15814         * config/s390/s390.md (pool_section_start): Use switch_to_section
15815         to select proper read-only data section instead of hardcoding
15816         .rodata.
15817         (pool_section_end): Use switch_to_section to match the above.
15819 2016-01-21  Richard Biener  <rguenther@suse.de>
15821         PR tree-optimization/69378
15822         * tree-ssa-sccvn.c (dominated_by_p_w_unex): New function.
15823         (set_ssa_val_to): Use it for dominance checks taking into
15824         account not executable edges.
15826 2016-01-21  Jakub Jelinek  <jakub@redhat.com>
15828         PR c++/69355
15829         * tree-dfa.c (get_ref_base_and_extent): Use GET_MODE_BITSIZE (mode)
15830         for bitsize instead of GET_MODE_PRECISION (mode).
15832 2016-01-20  Martin Sebor  <msebor@redhat.com>
15834         PR c/52291
15835         * extend.texi (__sync Builtins): Clarify the semantics of
15836         __sync_fetch_and_OP built-ins on pointers.
15837         (__atomic Builtins): Same.
15839 2016-01-21  Aditya Kumar  <aditya.k7@samsung.com>
15840             Sebastian Pop  <s.pop@samsung.com>
15842         * graphite-isl-ast-to-gimple.c (enum phi_node_kind): New.
15843         (class translate_isl_ast_to_gimple): Use phi_node_kind instead of bool.
15844         (is_valid_rename): Same.
15845         (translate_isl_ast_to_gimple::get_rename): Same.
15846         (translate_isl_ast_to_gimple::rename_all_uses): Same.
15847         (translate_isl_ast_to_gimple::rename_uses): Same.
15848         (get_new_name): Check for close_phi nodes.
15849         (copy_loop_phi_args): Use phi_node_kind.
15850         (translate_isl_ast_to_gimple::copy_loop_close_phi_args): Same.
15851         (translate_isl_ast_to_gimple::copy_cond_phi_args): Same.
15853 2016-01-21  Aditya Kumar  <aditya.k7@samsung.com>
15854             Sebastian Pop  <s.pop@samsung.com>
15856         Revert commit r229783.
15857         * graphite-isl-ast-to-gimple.c (gcc_expression_from_isl_ast_expr_id):
15858         Remove use of parameter_rename_map.
15859         (copy_def): Remove.
15860         (copy_internal_parameters): Remove.
15861         (graphite_regenerate_ast_isl): Remove call to copy_internal_parameters.
15862         * sese.c (new_sese_info): Do not initialize parameter_rename_map.
15863         (free_sese_info): Do not free parameter_rename_map.
15864         (set_rename): Do not use parameter_rename_map.
15865         (rename_uses): Update call to set_rename.
15866         (graphite_copy_stmts_from_block): Do not use parameter_rename_map.
15867         * sese.h (parameter_rename_map_t): Remove.
15868         (struct sese_info_t): Remove field parameter_rename_map.
15870 2016-01-21  Aditya Kumar  <aditya.k7@samsung.com>
15871             Sebastian Pop  <s.pop@samsung.com>
15873         * graphite-isl-ast-to-gimple.c: Fix comment.
15874         * graphite-scop-detection.c (defined_in_loop_p): New.
15875         (canonicalize_loop_closed_ssa): Do not add close phi nodes for SSA
15876         names defined in loop.
15878 2016-01-21  Aditya Kumar  <aditya.k7@samsung.com>
15879             Sebastian Pop  <s.pop@samsung.com>
15881         * graphite-scop-detection.c (scop_detection::harmful_loop_in_region):
15882         Discard unstructured if-then-else regions.
15884 2016-01-21  Aditya Kumar  <aditya.k7@samsung.com>
15885             Sebastian Pop  <s.pop@samsung.com>
15887         * graphite-sese-to-poly.c (set_scop_parameter_dim): Remove.
15888         (cleanup_loop_iter_dom): Remove.
15889         (build_loop_iteration_domains): Remove.
15890         (build_scop_context): Remove.
15891         (build_scop_iteration_domain): Remove.
15892         (add_loop_constraints): New.
15893         (build_iteration_domains): New.
15894         (build_poly_scop): Call build_iteration_domains.
15896 2016-01-21  Aditya Kumar  <aditya.k7@samsung.com>
15897             Sebastian Pop  <s.pop@samsung.com>
15899         * graphite-scop-detection.c
15900         (scop_detection::harmful_loop_in_region): Free dom and loops.
15901         (scop_detection::loop_body_is_valid_scop): Free bbs.
15903 2016-01-21  Aditya Kumar  <aditya.k7@samsung.com>
15904             Sebastian Pop  <s.pop@samsung.com>
15906         * graphite-scop-detection.c (record_loop_in_sese): New.
15907         (gather_bbs::before_dom_children): Call record_loop_in_sese.
15908         (build_scops): Remove call to build_sese_loop_nests.
15909         * sese.c (sese_record_loop): Remove.
15910         (build_sese_loop_nests): Remove.
15911         (new_sese_info): Remove region->loops.
15912         (free_sese_info): Same.
15913         * sese.h (sese_contains_loop): Same.
15914         (build_sese_loop_nests): Remove.
15915         (sese_contains_loop): Remove.
15917 2016-01-21  Aditya Kumar  <aditya.k7@samsung.com>
15918             Sebastian Pop  <s.pop@samsung.com>
15920         * graphite-scop-detection.c (loop_is_valid_scop): Renamed
15921         loop_is_valid_in_scop.
15922         (scop_detection::harmful_stmt_in_region): Renamed
15923         harmful_loop_in_region.
15924         Call loop_is_valid_in_scop.
15926 2016-01-21  Aditya Kumar  <aditya.k7@samsung.com>
15927             Sebastian Pop  <s.pop@samsung.com>
15929         * graphite-isl-ast-to-gimple.c (translate_isl_ast): Also handle
15930         isl_ast_node_mark.
15932 2016-01-21  Aditya Kumar  <aditya.k7@samsung.com>
15933             Sebastian Pop  <s.pop@samsung.com>
15935         * graphite-poly.c (new_poly_bb): Remove use of PBB_IS_REDUCTION.
15936         * graphite.h (struct poly_bb): Remove field is_reduction.
15937         (PBB_IS_REDUCTION): Remove.
15939 2016-01-21  Aditya Kumar  <aditya.k7@samsung.com>
15940             Sebastian Pop  <s.pop@samsung.com>
15942         * graphite-dependences.c (constrain_domain): Add call to isl_*_coalesce.
15943         (add_pdr_constraints): Same.
15944         (scop_get_reads): Same.
15945         (scop_get_must_writes): Same.
15946         (scop_get_may_writes): Same.
15947         (scop_get_original_schedule): Same.
15948         (extend_schedule): Same.
15949         (apply_schedule_on_deps): Same.
15950         (carries_deps): Same.
15951         (compute_deps): Same.
15952         (scop_get_dependences): Same.
15953         * graphite-isl-ast-to-gimple.c
15954         (translate_isl_ast_to_gimple::generate_isl_schedule): Same.
15955         * graphite-optimize-isl.c (get_schedule_for_band): Same.
15956         (get_schedule_for_band_list): Same.
15957         (get_schedule_map): Same.
15958         (apply_schedule_map_to_scop): Same.
15959         * graphite-sese-to-poly.c (build_pbb_scattering_polyhedrons): Same.
15960         (build_loop_iteration_domains): Same.
15961         (add_condition_to_pbb): Same.
15962         (add_param_constraints): Same.
15963         (pdr_add_memory_accesses): Same.
15964         (pdr_add_data_dimensions): Same.
15966 2016-01-20  Sandra Loosemore  <sandra@codesourcery.com>
15968         * doc/invoke.texi (Instrumentation Options): Clarify -mmpx linking
15969         requirements.
15971 2016-01-20  Sandra Loosemore  <sandra@codesourcery.com>
15973         * common.opt (feliminate-dwarf2-dups): Replace references to
15974         "DWARF 2" with just "DWARF".
15975         * config/ia64/ia64.opt (mdwarf2-asm): Likewise.
15976         * doc/extend.texi: Likewise.
15977         * doc/cpp.texi: Likewise.
15978         * doc/invoke.texi: Likewise.
15979         (Option Summary): Add -gdwarf to list of Debugging Options.
15980         (Debugging Options): Document -gdwarf.
15981         * doc/contrib.texi: Spell "DWARF" like that.
15983 2016-01-21  Jakub Jelinek  <jakub@redhat.com>
15985         * omp-low.c (expand_omp_target): Avoid -Wmaybe-uninitialized
15986         warning.  Fix up formatting.
15988         PR middle-end/67653
15989         * gimplify.c (gimplify_asm_expr): Warn if it is too late to
15990         attempt to mark memory input operand addressable and
15991         call prepare_gimple_addressable in that case.  Don't adjust
15992         input_location for diagnostics, use error_at instead.
15994 2016-01-20  Peter Bergner  <bergner@vnet.ibm.com>
15996         * config/rs6000/ppc-auxv.h: New file.
15997         * config/rs6000/rs6000-builtin.def (cpu_init): Add new builtin.
15998         (cpu_is): Likewise.
15999         (cpu_supports): Likewise.
16000         * config/rs6000/rs6000.c: include "ppc-auxv.h".
16001         (cpu_is_info): New variable.
16002         (cpu_supports_info): Likewise.
16003         (tcb_verification_symbol): Likewise.
16004         (cpu_builtin_p): Likewise.
16005         (cpu_expand_builtin): New function.
16006         (rs6000_expand_ternop_builtin): Add support for CPU builtin functions.
16007         (rs6000_init_builtins): Likewise.
16008         (rs6000_elf_file_end): Emit HWCAP in TCB verification symbol.
16009         * config/rs6000/rs6000.h (TLS_REGNUM): New define.
16010         * configure.ac (gcc_cv_libc_provides_hwcap_in_tcb): New test.
16011         * configure: Regenerate.
16012         * config.in: Likewise.
16013         * doc/extend.texi (PowerPC Built-in Functions): Document
16014         __builtin_cpu_init, __builtin_cpu_is and __builtin_cpu_supports.
16016 2016-01-20  David Edelsohn  <dje.gcc@gmail.com>
16018         PR target/68609
16019         * config/rs6000/rs6000.c (rs6000_emit_swsqrt): Add vector sqrt
16020         domain check.
16021         * config/rs6000/vector.md (sqrt<mode>2): Call rs6000_emit_swsqrt
16022         for V4SFmode.
16024 2016-01-20  Richard Henderson  <rth@redhat.com>
16026         PR bootstrap/69343
16027         PR bootstrap/69339
16028         PR tree-opt/68964
16029         Revert:
16030         * tree.c (tm_define_builtin): New.
16031         (find_tm_vector_type): New.
16032         (build_tm_vector_builtins): New.
16033         (build_common_builtin_nodes): Call it.
16035 2016-01-20  Christophe Lyon  <christophe.lyon@linaro.org>
16037         * doc/sourcebuild.texi (arm_crypto_pragma_ok): Document new entry.
16038         (arm_fp_ok): Likewise.
16039         (arm_fp): Likewise.
16040         (arm_crypto): Likewise.
16042 2016-01-20  Ilya Enkovich  <enkovich.gnu@gmail.com>
16043             Richard Biener  <rguenther@suse.de>
16045         PR tree-optimization/69328
16046         * tree-vect-stmts.c (vect_is_simple_cond): Check compared
16047         vectors have same number of elements.
16048         (vectorizable_condition): Fix masked version recognition.
16050 2016-01-20  Richard Biener  <rguenther@suse.de>
16052         PR tree-optimization/69345
16053         * tree-ssa-sccvn.h (VN_INFO_RANGE_INFO): New inline function.
16054         (VN_INFO_PTR_INFO): Likewise.
16055         * tree-ssa-sccvn.c (set_ssa_val_to): Avoid clearing points-to
16056         info when it is equal between non-dominating SSA names.
16057         * tree-ssa-pre.c (eliminate_dom_walker::before_dom_children):
16058         Make sure to look at original SSA infos.
16060 2016-01-20  Jeff Law  <law@redhat.com>
16062         PR target/25114
16063         * config/m68k/predicates.md (pow2_m1_operand): New predicate
16064         extracted from ...
16065         (reg_or_pow2_m1_operand): Call pow2_m1_operand.
16066         (pc_or_label_operand): New predicate.
16067         * config/m68k/m68k.md: Add new peephole2 patterns for GTU/LEU
16068         tests for small integers that are 2^n - 1.
16070 2016-01-20  Jonathan Wakely  <jwakely@redhat.com>
16072         * doc/invoke.texi (Options Summary): Add '.' after @xref.
16074 2016-01-19  Jeff Law  <law@redhat.com>
16076         PR middle-end/69347
16077         * tree-ssa-threadbackwards.c
16078         (fsm_find_control_statement_thread_paths): Do not try to lookup
16079         FSM paths for SSA_NAMEs appearing in abnormal PHIs.
16081 2016-01-20  Kugan Vivekanandarajah  <kuganv@linaro.org>
16083         * doc/lto.texi: Remove text that says only Gold has linker plugin
16084         support.
16086 2016-01-19  Eric Botcazou  <ebotcazou@adacore.com>
16088         * dwarf2out.c (need_endianity_attribute_p): New inline predicate.
16089         (base_type_die): Add REVERSE parameter and attach DW_AT_endianity to
16090         the DIE accordingly.
16091         (modified_type_die): Add REVERSE parameter and pass it recursively,
16092         as well as to base_type_die.  Adjust presence check accordingly.
16093         (base_type_for_mode): Adjust call to modified_type_die.
16094         (add_type_attribute): Add REVERSE parameter and pass it to
16095         modified_type_die.
16096         (generic_parameter_die): Adjust call to add_type_attribute.
16097         (add_scalar_info): Likewise.
16098         (add_subscript_info): Likewise.
16099         (gen_array_type_die): Likewise.
16100         (gen_descr_array_type_die): Likewise.
16101         (gen_entry_point_die): Likewise.
16102         (gen_enumeration_type_die): Likewise.
16103         (gen_formal_parameter_die): Likewise.
16104         (gen_subprogram_die): Likewise.
16105         (gen_variable_die ): Likewise.
16106         (gen_const_die): Likewise.
16107         (gen_field_die): Likewise.
16108         (gen_pointer_type_die): Likewise.
16109         (gen_reference_type_die): Likewise.
16110         (gen_ptr_to_mbr_type_die): Likewise.
16111         (gen_inheritance_die): Likewise.
16112         (gen_subroutine_type_die): Likewise.
16113         (gen_typedef_die): Likewise.
16114         (force_type_die): Adjust call to modified_type_die.
16116 2016-01-19  Sandra Loosemore  <sandra@codesourcery.com>
16118         * doc/standards.texi: Copy-editing for grammar, markup, and sentence
16119         flow throughout the file.  Fix broken link to Objective-C 2.0
16120         documentation.
16121         * doc/invoke.texi: More copy-editing; fix numerous typos and spelling
16122         errors.
16124 2016-01-19  Wilco Dijkstra  <wdijkstr@arm.com>
16126         * ccmp.c (expand_ccmp_expr_1): Avoid spurious unused warnings.
16128 2016-01-19  Jan Hubicka  <hubicka@ucw.cz>
16130         PR ipa/66223
16131         * ipa-devirt.c (is_cxa_pure_virtual_p): New function.
16132         (maybe_record_node): Record cxa_pure_virtual as the only possible
16133         target if there are not ohter candidates.
16134         (possible_polymorphic_call_target_p): Accept cxa_pure_virtual.
16136 2016-01-19  Richard Biener  <rguenther@suse.de>
16138         * hsa-gen.c (get_memory_order_name): Use MEMMODEL_ constants.
16139         (get_memory_order): Likewise.
16141 2016-01-19  Kirill Yukhin  <kirill.yukhin@intel.com>
16143         * tree-vect-stmts.c (vectorizable_store): Check
16144         rhs vectype.
16146 2016-01-19  David Malcolm  <dmalcolm@redhat.com>
16148         PR jit/68446
16149         * gcc.c (driver::decode_argv): Add call to
16150         init_opts_obstack before init_options_struct.
16151         * opts.c (init_opts_obstack): Remove idempotency.
16152         (init_options_struct): Replace call to init_opts_obstack
16153         with a gcc_assert to verify that it has already been called.
16154         * toplev.c (toplev::main): Add call to init_opts_obstack before
16155         calls to init_options_struct.
16156         (toplev::finalize): Move cleanup of opts_obstack next to
16157         cleanup of save_decoded_options, clearing the latter, and
16158         save_decoded_options_count.
16160 2016-01-19  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
16162         PR target/69135
16163         * config/arm/vfp.md (l<vrint_pattern><su_optab><mode>si2): Set "conds"
16164         attribute to unconditional.  Remove %? from output template.
16166 2015-01-19  Wilco Dijkstra  <wdijkstr@arm.com>
16167             Jiong Wang  <jiong.wang@arm.com>
16169         * ccmp.c (expand_ccmp_expr_1): Cost the instruction sequences
16170         generated from different expand order.
16172 2015-01-19  Wilco Dijkstra  <wdijkstr@arm.com>
16174         * /config/aarch64/aarch64.c (aarch64_if_then_else_costs):
16175         Add support for CCMP costing.
16177 2015-01-19  Wilco Dijkstra  <wdijkstr@arm.com>
16179         * ccmp.c (ccmp_candidate_p): Remove integer-only restriction.
16180         * config/aarch64/aarch64.md (fccmp<mode>): New pattern.
16181         (fccmpe<mode>): Likewise.
16182         (fcmp): Rename to fcmp and globalize pattern.
16183         (fcmpe): Likewise.
16184         * config/aarch64/aarch64.c (aarch64_gen_ccmp_first): Add FP support.
16185         (aarch64_gen_ccmp_next): Add FP support.
16187 2015-01-19  Wilco Dijkstra  <wdijkstr@arm.com>
16189         * target.def (gen_ccmp_first): Update documentation.
16190         (gen_ccmp_next): Likewise.
16191         * doc/tm.texi (gen_ccmp_first): Update documentation.
16192         (gen_ccmp_next): Likewise.
16193         * ccmp.c (expand_ccmp_expr): Extract cmp_code from return value of
16194         expand_ccmp_expr_1.  Improve comments.
16195         * config/aarch64/aarch64.md (ccmp_and): Use if_then_else for ccmp.
16196         (ccmp_ior<mode>): Remove pattern.
16197         (cmp<mode>): Remove expand.
16198         (cmp): Globalize pattern.
16199         (cstorecc4): Use cc_register.
16200         (mov<mode>cc): Remove ccmp_cc_register check.
16201         * config/aarch64/aarch64.c (aarch64_get_condition_code_1):
16202         Simplify after removal of CC_DNE/* modes.
16203         (aarch64_ccmp_mode_to_code): Remove.
16204         (aarch64_print_operand): Remove 'K' case.  Merge 'm' and 'M' cases.
16205         In 'k' case use integer as condition.
16206         (aarch64_nzcv_codes): Remove inverted cases.
16207         (aarch64_code_to_ccmode): Remove.
16208         (aarch64_gen_ccmp_first): Use cmp pattern directly.  Return the correct
16209         comparison with CC register to be used in folowing CCMP/branch/CSEL.
16210         (aarch64_gen_ccmp_next): Use previous comparison and mode in CCMP
16211         pattern.  Return the comparison with CC register.  Invert conditions
16212         when bitcode is OR.
16213         * config/aarch64/aarch64-modes.def: Remove CC_DNE/* modes.
16214         * config/aarch64/predicates.md (ccmp_cc_register): Remove.
16216 2016-01-19  Jan Hubicka  <hubicka@ucw.cz>
16218         * cgraphunit.c (cgraph_node::reset): Clear thunk info and
16219         instrumented_version.
16221 2016-01-19  Richard Biener  <rguenther@suse.de>
16223         PR tree-optimization/69336
16224         * tree-ssa-scopedtables.c (avail_expr_hash): Handle all
16225         handled components with get_ref_base_and_extent.
16226         (equal_mem_array_ref_p): Adjust.
16228 2016-01-19  Jakub Jelinek  <jakub@redhat.com>
16230         PR debug/65779
16231         * shrink-wrap.c: Include valtrack.h.
16232         (move_insn_for_shrink_wrap): Add DEBUG argument.  If
16233         MAY_HAVE_DEBUG_INSNS, call dead_debug_add on DEBUG_INSNs
16234         in between insn and where it will be moved to.  Call
16235         dead_debug_insert_temp.
16236         (prepare_shrink_wrap): Adjust caller.  Call dead_debug_local_init
16237         first and dead_debug_local_finish at the end.
16238         For uses and defs bitmap, handle all regs in between REGNO and
16239         END_REGNO, not just the first one.
16241 2016-01-19  Richard Biener  <rguenther@suse.de>
16243         PR tree-optimization/69352
16244         * tree-ssa-scopedtables.c (avail_expr_hash): Check for size == -1.
16245         (equal_mem_array_ref_p): Constrain size and max size properly.
16246         Compare the reverse flag.
16248 2016-01-19  Bernd Schmidt  <bschmidt@redhat.com>
16250         * ira.c (ira): Update regstat data if we deleted insns.
16252 2016-01-19  Jakub Jelinek  <jakub@redhat.com>
16254         PR rtl-optimization/68955
16255         PR rtl-optimization/64557
16256         * dse.c (record_store, check_mem_read_rtx): Don't call get_addr
16257         here.  Fix up formatting.
16258         * alias.c (get_addr): Handle VALUE +/- CONST_SCALAR_INT_P.
16260 2016-01-19  Jan Hubicka  <hubicka@ucw.cz>
16262         PR lto/69133
16263         * cgraphunit.c (cgraph_node::expand_thunk): When forcing gimple
16264         assume that the node has body.
16265         * cgraph.c (cgraph_node::get_untransformed_body): Use gimple_body_p
16266         check.
16268 2016-01-19  Jan Hubicka  <hubicka@ucw.cz>
16270         * lto-streamer-out.c (lto_output): Do not stream instrumentation
16271         thunks.
16273 2016-01-19  Jan Hubicka  <hubicka@ucw.cz>
16275         * symtab.c (symtab_node::asm_name): Do not call printable name directly.
16276         (symtab_node::name): Report name as unnamed if DECL_NAME is not set.
16278 2016-01-19  Martin Jambor  <mjambor@suse.cz>
16279             Martin Liska  <mliska@suse.cz>
16280             Michael Matz  <matz@suse.de>
16282         * Makefile.in (OBJS): Add new source files.
16283         (GTFILES): Add hsa.c.
16284         * common.opt (disable_hsa): New variable.
16285         (-Whsa): New warning.
16286         * config.in (ENABLE_HSA): New.
16287         * configure.ac: Treat hsa differently from other accelerators.
16288         (OFFLOAD_TARGETS): Define ENABLE_OFFLOADING according to
16289         $enable_offloading.
16290         (ENABLE_HSA): Define ENABLE_HSA according to $enable_hsa.
16291         * doc/install.texi (Configuration): Document --with-hsa-runtime,
16292         --with-hsa-runtime-include, --with-hsa-runtime-lib and
16293         --with-hsa-kmt-lib.
16294         * doc/invoke.texi (-Whsa): Document.
16295         (hsa-gen-debug-stores): Likewise.
16296         * lto-wrapper.c (compile_images_for_offload_targets): Do not attempt
16297         to invoke offload compiler for hsa acclerator.
16298         * opts.c (common_handle_option): Determine whether HSA offloading
16299         should be performed.
16300         * params.def (PARAM_HSA_GEN_DEBUG_STORES): New parameter.
16301         * builtin-types.def (BT_FN_VOID_UINT_PTR_INT_PTR): New.
16302         (BT_FN_VOID_INT_OMPFN_SIZE_PTR_PTR_PTR_UINT_PTR_INT_INT): Removed.
16303         (BT_FN_VOID_INT_OMPFN_SIZE_PTR_PTR_PTR_UINT_PTR_PTR): New.
16304         * gimple-low.c (lower_stmt): Also handle GIMPLE_OMP_GRID_BODY.
16305         * gimple-pretty-print.c (dump_gimple_omp_for): Also handle
16306         GF_OMP_FOR_KIND_GRID_LOOP.
16307         (dump_gimple_omp_block): Also handle GIMPLE_OMP_GRID_BODY.
16308         (pp_gimple_stmt_1): Likewise.
16309         * gimple-walk.c (walk_gimple_stmt): Likewise.
16310         * gimple.c (gimple_build_omp_grid_body): New function.
16311         (gimple_copy): Also handle GIMPLE_OMP_GRID_BODY.
16312         * gimple.def (GIMPLE_OMP_GRID_BODY): New.
16313         * gimple.h (enum gf_mask): Added GF_OMP_PARALLEL_GRID_PHONY,
16314         GF_OMP_FOR_KIND_GRID_LOOP, GF_OMP_FOR_GRID_PHONY and
16315         GF_OMP_TEAMS_GRID_PHONY.
16316         (gimple_statement_omp_single_layout): Updated comments.
16317         (gimple_build_omp_grid_body): New function.
16318         (gimple_has_substatements): Also handle GIMPLE_OMP_GRID_BODY.
16319         (gimple_omp_for_grid_phony): New function.
16320         (gimple_omp_for_set_grid_phony): Likewise.
16321         (gimple_omp_parallel_grid_phony): Likewise.
16322         (gimple_omp_parallel_set_grid_phony): Likewise.
16323         (gimple_omp_teams_grid_phony): Likewise.
16324         (gimple_omp_teams_set_grid_phony): Likewise.
16325         (gimple_return_set_retbnd): Also handle GIMPLE_OMP_GRID_BODY.
16326         * omp-builtins.def (BUILT_IN_GOMP_OFFLOAD_REGISTER): New.
16327         (BUILT_IN_GOMP_OFFLOAD_UNREGISTER): Likewise.
16328         (BUILT_IN_GOMP_TARGET): Updated type.
16329         * omp-low.c: Include symbol-summary.h, hsa.h and params.h.
16330         (adjust_for_condition): New function.
16331         (get_omp_for_step_from_incr): Likewise.
16332         (extract_omp_for_data): Moved parts to adjust_for_condition and
16333         get_omp_for_step_from_incr.
16334         (build_outer_var_ref): Handle GIMPLE_OMP_GRID_BODY.
16335         (fixup_child_record_type): Bail out if receiver_decl is NULL.
16336         (scan_sharing_clauses): Handle OMP_CLAUSE__GRIDDIM_.
16337         (scan_omp_parallel): Do not create child functions for phony
16338         constructs.
16339         (check_omp_nesting_restrictions): Handle GIMPLE_OMP_GRID_BODY.
16340         (scan_omp_1_op): Checking assert we are not remapping to
16341         ERROR_MARK.  Also also handle GIMPLE_OMP_GRID_BODY.
16342         (parallel_needs_hsa_kernel_p): New function.
16343         (expand_parallel_call): Register apprpriate parallel child
16344         functions as HSA kernels.
16345         (grid_launch_attributes_trees): New type.
16346         (grid_attr_trees): New variable.
16347         (grid_create_kernel_launch_attr_types): New function.
16348         (grid_insert_store_range_dim): Likewise.
16349         (grid_get_kernel_launch_attributes): Likewise.
16350         (get_target_argument_identifier_1): Likewise.
16351         (get_target_argument_identifier): Likewise.
16352         (get_target_argument_value): Likewise.
16353         (push_target_argument_according_to_value): Likewise.
16354         (get_target_arguments): Likewise.
16355         (expand_omp_target): Call get_target_arguments instead of looking
16356         up for teams and thread limit.
16357         (grid_expand_omp_for_loop): New function.
16358         (grid_arg_decl_map): New type.
16359         (grid_remap_kernel_arg_accesses): New function.
16360         (grid_expand_target_kernel_body): New function.
16361         (expand_omp): Call it.
16362         (lower_omp_for): Do not emit phony constructs.
16363         (lower_omp_taskreg): Do not emit phony constructs but create for them
16364         a temporary variable receiver_decl.
16365         (lower_omp_taskreg): Do not emit phony constructs.
16366         (lower_omp_teams): Likewise.
16367         (lower_omp_grid_body): New function.
16368         (lower_omp_1): Call it.
16369         (grid_reg_assignment_to_local_var_p): New function.
16370         (grid_seq_only_contains_local_assignments): Likewise.
16371         (grid_find_single_omp_among_assignments_1): Likewise.
16372         (grid_find_single_omp_among_assignments): Likewise.
16373         (grid_find_ungridifiable_statement): Likewise.
16374         (grid_target_follows_gridifiable_pattern): Likewise.
16375         (grid_remap_prebody_decls): Likewise.
16376         (grid_copy_leading_local_assignments): Likewise.
16377         (grid_process_kernel_body_copy): Likewise.
16378         (grid_attempt_target_gridification): Likewise.
16379         (grid_gridify_all_targets_stmt): Likewise.
16380         (grid_gridify_all_targets): Likewise.
16381         (execute_lower_omp): Call grid_gridify_all_targets.
16382         (make_gimple_omp_edges): Handle GIMPLE_OMP_GRID_BODY.
16383         * tree-core.h (omp_clause_code): Added OMP_CLAUSE__GRIDDIM_.
16384         (tree_omp_clause): Added union field dimension.
16385         * tree-pretty-print.c (dump_omp_clause): Handle OMP_CLAUSE__GRIDDIM_.
16386         * tree.c (omp_clause_num_ops): Added number of arguments of
16387         OMP_CLAUSE__GRIDDIM_.
16388         (omp_clause_code_name): Added name of OMP_CLAUSE__GRIDDIM_.
16389         (walk_tree_1): Handle OMP_CLAUSE__GRIDDIM_.
16390         * tree.h (OMP_CLAUSE_GRIDDIM_DIMENSION): New.
16391         (OMP_CLAUSE_SET_GRIDDIM_DIMENSION): Likewise.
16392         (OMP_CLAUSE_GRIDDIM_SIZE): Likewise.
16393         (OMP_CLAUSE_GRIDDIM_GROUP): Likewise.
16394         * passes.def: Schedule pass_ipa_hsa and pass_gen_hsail.
16395         * tree-pass.h (make_pass_gen_hsail): Declare.
16396         (make_pass_ipa_hsa): Likewise.
16397         * ipa-hsa.c: New file.
16398         * lto-section-in.c (lto_section_name): Add hsa section name.
16399         * lto-streamer.h (lto_section_type): Add hsa section.
16400         * timevar.def (TV_IPA_HSA): New.
16401         * hsa-brig-format.h: New file.
16402         * hsa-brig.c: New file.
16403         * hsa-dump.c: Likewise.
16404         * hsa-gen.c: Likewise.
16405         * hsa.c: Likewise.
16406         * hsa.h: Likewise.
16407         * toplev.c (compile_file): Call hsa_output_brig.
16408         * hsa-regalloc.c: New file.
16410 2016-01-18  Jeff Law  <law@redhat.com>
16412         PR tree-optimization/69320
16413         * tree-ssa-dom.c (record_edge_info): For comparisons against a boolean
16414         ranged object, do nothing if the RHS constant is not [0..1].
16415         (optimize_stmt): Comparing a boolean ranged object against a
16416         constant outside [0..1] results in a compile-time constant.
16418         * tree-ssanames.c (ssa_name_has_boolean_range): Remove unnecessary
16419         test.
16421 2016-01-18  Sandra Loosemore  <sandra@codesourcery.com>
16423         * doc/invoke.texi (Invoking GCC): Add new section to menu.
16424         (Option Summary): Update to reflect new section and moved options.
16425         (C++ Dialect Options): Move -fstats to new section.
16426         (Debugging Options): Move all dump, statistics, and other GCC
16427         developer options to new section.  Rewrite section introduction
16428         and re-order remaining options to put the more basic ones first.
16429         (Optimization Options): Move -fira-verbose and -flto-report* to
16430         new section.
16431         (Developer Options): New section incorporating moved options.
16432         * doc/cppopts.texi (-dM): Update cross-reference.
16434 2016-01-18  Richard Henderson  <rth@redhat.com>
16436         PR target/69176
16437         * config/aarch64/aarch64.md (add<GPI>3): Move long immediate
16438         operands to pseudo only if CSE is expected.  Split long immediate
16439         operands only after reload, and for the stack pointer.
16440         (*add<GPI>3_pluslong): Remove.
16441         (*addsi3_aarch64, *adddi3_aarch64): Merge into...
16442         (*add<GPI>3_aarch64): ... here.  Add r/rk/Upl alternative.
16443         (*addsi3_aarch64_uxtw): Add r/rk/Upl alternative.
16444         (*add<GPI>3 peepholes): New.
16445         (*add<GPI>3 splitters): New.
16446         * config/aarch64/constraints.md (Upl): New.
16447         * config/aarch64/predicates.md (aarch64_pluslong_strict_immedate): New.
16449 2016-01-18  Richard Biener  <rguenther@suse.de>
16451         PR tree-optimization/69297
16452         * tree-vect-slp.c (vect_bb_slp_scalar_cost): Count each scalar
16453         stmt at most once.
16454         (vect_bb_vectorization_profitable_p): Clear visited flag again.
16456 2016-01-18  Yuri Rumyantsev  <ysrumyan@gmail.com>
16458         PR middle-end/68542
16459         * fold-const.c (fold_binary_op_with_conditional_arg): Bail out for case
16460         of mixind vector and scalar types.
16461         (fold_relational_const): Add handling of vector
16462         comparison with boolean result.
16463         * tree-cfg.c (verify_gimple_comparison): Add argument CODE, allow
16464         comparison of vector operands with boolean result for EQ/NE only.
16465         (verify_gimple_assign_binary): Adjust call for verify_gimple_comparison.
16466         (verify_gimple_cond): Likewise.
16467         * tree-vrp.c (extract_code_and_val_from_cond_with_ops): Modify check on
16468         valid type of VAL.
16470 2016-01-18  Joseph Myers  <joseph@codesourcery.com>
16472         * config/mips/mips.h (ISA_HAS_PAIRED_SINGLE): Require
16473         !TARGET_OCTEON.
16475 2016-01-18  Richard Biener  <rguenther@suse.de>
16477         PR middle-end/69308
16478         * gimple.c (gimple_could_trap_p_1): Handle GIMPLE_COND.
16480 2016-01-18  Tom de Vries  <tom@codesourcery.com>
16482         * passes.def: Add pass_parallelize_loops to pass_oacc_kernels.
16484 2016-01-18  Tom de Vries  <tom@codesourcery.com>
16486         * omp-low.c (set_oacc_fn_attrib): Make extern.
16487         * omp-low.h (set_oacc_fn_attrib): Declare.
16488         * tree-parloops.c (struct reduction_info): Add reduc_addr field.
16489         (create_call_for_reduction_1): Handle case that reduc_addr is non-NULL.
16490         (create_parallel_loop, gen_parallel_loop, try_create_reduction_list):
16491         Add and handle function parameter oacc_kernels_p.
16492         (find_reduc_addr, get_omp_data_i_param): New function.
16493         (ref_conflicts_with_region, oacc_entry_exit_ok_1)
16494         (oacc_entry_exit_single_gang, oacc_entry_exit_ok): New function.
16495         (parallelize_loops): Add and handle function parameter oacc_kernels_p.
16496         Calculate dominance info.  Skip loops that are not in a kernels region
16497         in oacc_kernels_p mode.  Skip inner loops of parallelized loops.
16498         (pass_parallelize_loops::execute): Call parallelize_loops with
16499         oacc_kernels_p argument.
16500         (pass_parallelize_loops::clone, pass_parallelize_loops::set_pass_param):
16501         New member function.
16502         (pass_parallelize_loops::bool oacc_kernels_p): New member var.
16503         * passes.def: Add argument to pass_parallelize_loops instantation.
16505 2016-01-18  Tom de Vries  <tom@codesourcery.com>
16507         * tree-parloops.c (pass_parallelize_loops::execute): Allow
16508         pass_parallelize_loops to be run outside the loop pipeline.
16510 2016-01-18  Alan Lawrence  <alan.lawrence@arm.com>
16512         * tree-scalar-evolution.c (follow_copies_to_constant): New.
16513         (analyze_initial_condition, analyze_scalar_evolution_1): Call previous.
16515 2016-01-18  Alan Lawrence  <alan.lawrence@arm.com>
16517         PR target/63679
16518         * tree-ssa-scopedtables.c (avail_expr_hash): Hash MEM_REF and ARRAY_REF
16519         using get_ref_base_and_extent.
16520         (equal_mem_array_ref_p): New.
16521         (hashable_expr_equal_p): Add call to previous.
16523 2016-01-18  Alan Lawrence  <alan.lawrence@arm.com>
16525         PR target/63679
16526         * tree-sra.c (disqualified_constants, constant_decl_p): New.
16527         (sra_initialize): Allocate disqualified_constants.
16528         (sra_deinitialize): Free disqualified_constants.
16529         (disqualify_candidate): Update disqualified_constants when appropriate.
16530         (create_access): Scan for constant-pool entries as we go along.
16531         (scalarizable_type_p): Add check against type_contains_placeholder_p.
16532         (maybe_add_sra_candidate): Allow constant-pool entries.
16533         (load_assign_lhs_subreplacements): Bind debug for constant pool vars.
16534         (initialize_constant_pool_replacements): New.
16535         (sra_modify_assign): Avoid mangling assignments created by previous,
16536         and don't generate writes into constant pool.
16537         (sra_modify_function_body): Call initialize_constant_pool_replacements.
16539 2016-01-18  Ilya Enkovich  <enkovich.gnu@gmail.com>
16541         * config/i386/i386.c (scalar_to_vector_candidate_p): Support
16542         andnot instruction.
16543         (scalar_chain::convert_op): Likewise.
16544         * config/i386/i386.md (*andndi3_doubleword): New.
16546 2016-01-18  Richard Biener  <rguenther@suse.de>
16548         PR tree-optimization/69170
16549         * tree-vect-slp.c (vect_build_slp_tree): Verify we are not
16550         building a vector from scalar results of a pattern stmt.
16552 2016-01-18  Jakub Jelinek  <jakub@redhat.com>
16554         * haifa-sched.c (autopref_multipass_init): Work around
16555         -Wmaybe-uninitialized warning.
16557 2016-01-18  Thomas Preud'homme  <thomas.preudhomme@arm.com>
16559         * config/arm/arm.c (thumb1_reorg): Check that the comparison is
16560         against the constant 0.
16562 2016-01-17  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
16564         PR tree-optimization/68799
16565         * gimple-ssa-strength-reduction.c (create_phi_basis): Directly
16566         look up phi candidates in the statement-candidate map.
16567         (phi_add_costs): Likewise.
16568         (record_phi_increments): Likewise.
16569         (phi_incr_cost): Likewise.
16570         (ncd_with_phi): Likewise.
16571         (all_phi_incrs_profitable): Likewise.
16573 2016-01-17  Jakub Jelinek  <jakub@redhat.com>
16575         * omp-low.c (mark_loops_in_oacc_kernels_region): Work around
16576         -Wmaybe-uninitialized warning.
16578 2016-01-16  Sandra Loosemore  <sandra@codesourcery.com>
16580         * doc/invoke.texi (Invoking GCC): Add new section to menu.
16581         (Option Summary): Update to reflect new section and moved options.
16582         (C++ Dialect Options): Move -fvtable-verify and related options.
16583         (Debugging Options): Move Sanitizer, Pointer Bounds Checker,
16584         and profiling-related options.
16585         (Optimization Options): Move profile generation options and
16586         -fstack-protector and related options.
16587         (Instrumentation Options): New section incorporating moved options.
16588         (Code Generation Options): Move -finstrument-functions and
16589         related options, -fstack-check, -fstack-limit*, and -fbounds-check.
16591 2016-01-16  Tom de Vries  <tom@codesourcery.com>
16593         * passes.def: Move pass_expand_omp_ssa out of pass_parallelize_loops.
16595 2016-01-16  Tom de Vries  <tom@codesourcery.com>
16597         * omp-low.c (expand_omp_atomic_fetch_op):  Release defs of update stmt.
16599 2016-01-16  Richard Sandiford  <richard.sandiford@arm.com>
16601         * hash-table.h (hash_table::empty): Turn into an inline wrapper
16602         that checks whether the table is already empty.  Rename the
16603         original implementation to...
16604         (hash_table::empty_slot): ...this new private function.
16606 2016-01-15  David Malcolm  <dmalcolm@redhat.com>
16608         PR diagnostic/68899
16609         * diagnostic-show-locus.c (layout::print_source_line): Move x
16610         offset of line until after call to
16611         get_line_width_without_trailing_whitespace.
16613 2016-01-15  Jeff Law  <law@redhat.com>
16615         PR tree-optimization/69270
16616         * tree-ssanames.c (ssa_name_has_boolean_range): Moved here from
16617         tree-ssa-dom.c.  Improve test for [0..1] ranve from VRP.
16618         * tree-ssa-dom.c (ssa_name_has_boolean_range): Remove.
16619         * tree-ssanames.h (ssa_name_has_boolean_range): Prototype.
16620         * tree-ssa-uncprop.c (associate_equivalences_with_edges): Use
16621         ssa_name_has_boolean_range and constant_boolean_node.
16623 2016-01-15  Vladimir Makarov  <vmakarov@redhat.com>
16625         PR rtl-optimization/69030
16626         * lra-spills.c (remove_pseudos): Check nrefs and make the function
16627         returning bool.
16628         (spill_pseudos): Delete debug insn for dead pseudo.
16629         (lra_spill): Initiate spill_hard_reg and slots memory separately.
16631 2016-01-15  Jiong Wang  <jiong.wang@arm.com>
16633         * config/aarch64/aarch64-builtins.c (aarch64_types_unopus_qualifiers):
16634         New.
16635         (TYPES_UNOPUS): Likewise.
16636         * config/aarch64/aarch64-simd-builtins.def (lbtruncuv2sf): Correct
16637         builtin type, from UNOP to UNOPUS.
16638         (lbtruncuv4sf): Likewise.
16639         (lbtruncuv2df): Likewise.
16640         (lrounduv2sf): Likewise.
16641         (lrounduv4sf): Likewise.
16642         (lrounduv2df): Likewise.
16643         (lroundusf): Likewise.
16644         (lroundusf): Likewise.
16645         (lceiluv2sf): Likewise.
16646         (lceiluv4sf): Likewise.
16647         (lceiluv2df): Likewise.
16648         (lceilusf): Likewise.
16649         (lceiludf): Likewise.
16650         (lflooruv2sf): Likewise.
16651         (lflooruv4sf): Likewise.
16652         (lflooruv2df): Likewise.
16653         (lfloorusf): Likewise.
16654         (lfloorudf): Likewise.
16655         (lfrintnuv2sf): Likewise.
16656         (lfrintnuv4sf): Likewise.
16657         (lfrintnuv2df): Likewise.
16658         (lfrintnusf): Likewise.
16659         (lfrintnudf): Likewise.
16660         * config/aarch64/arm_neon.h (vcvt_u32_f32): Remove unncessary type
16661         conversion.
16662         (vcvtq_u32_f32): Likewise.
16663         (vcvtq_u64_f64): Likewise.
16664         (vcvta_u32_f32): Likewise.
16665         (vcvtaq_u32_f32): Likewise.
16666         (vcvtaq_u64_f64): Likewise.
16667         (vcvtm_u32_f32): Likewise.
16668         (vcvtmq_u32_f32): Likewise.
16669         (vcvtmq_u64_f64): Likewise.
16670         (vcvtn_u32_f32): Likwise.
16671         (vcvtnq_u32_f32): Likewise.
16672         (vcvtnq_u64_f64): Likewise.
16673         (vcvtp_u32_f32): Likewise.
16674         (vcvtpq_u32_f32): Likewise.
16675         (vcvtpq_u64_f64): Likewise.
16676         (vcvtmd_u64_f64): Likewise.
16677         (vcvtms_u32_f32): Likewise.
16678         (vcvtad_u64_f64): Likewise.
16679         (vcvtas_u32_f32): Likewise.
16680         (vcvtnd_u64_f64): Likewise.
16681         (vcvtns_u32_f32): Likewise.
16682         (vcvtpd_u64_f64): Likewise.
16683         (vcvtps_u32_f32): Likewise.
16685 2016-01-15  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
16687         * config/aarch64/aarch64.c (aarch64_if_then_else_costs): Handle
16688         CSEL of zero_extended registers.
16690 2016-01-15  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
16692         * config/aarch64/aarch64.c (aarch64_rtx_costs, COMPARE case):
16693         Handle COMPARE of ZERO_EXTRACT against zero form of TST-immediate.
16695 2016-01-15  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
16697         * config/aarch64/aarch64.c (aarch64_process_one_target_attr): Return
16698         false when argument string is not found in the attributes table
16699         at all.
16701 2016-01-15  David Edelsohn  <dje.gcc@gmail.com>
16703         PR target/68609
16704         * config/rs6000/rs6000.c (rs6000_emit_msub): Delete.
16705         (rs6000_emit_swsqrt): Convert to Goldschmidt's Algorithm
16706         * config/rs6000/rs6000.md (sqrt<mode>2): Limit swsqrt to high
16707         precision estimate.
16709 2016-01-15  Richard Biener  <rguenther@suse.de>
16711         PR tree-optimization/66856
16712         * tree-vect-loop.c (vect_transform_loop): Free SLP instances here.
16713         * tree-vect-slp.c (vect_free_slp_tree): Decrement stmt reference count.
16714         (vect_create_new_slp_node): Increment stmt reference count.
16715         (vect_get_and_check_slp_defs): Make sure stmts are nor already in
16716         an SLP tree before swapping operands.
16717         (vect_build_slp_tree): Likewise.
16718         (destroy_bb_vec_info): Free stmt info after SLP instances.
16719         * tree-vect-stmts.c (new_stmt_vec_info): Initialize reference count.
16720         * tree-vectorizer.h (struct _stmt_vec_info): Add num_slp_uses field.
16721         (STMT_VINFO_NUM_SLP_USES): New macro.
16723 2016-01-15  Richard Biener  <rguenther@suse.de>
16725         PR debug/69137
16726         * dwarf2out.c (add_linkage_name_raw): New function split out from ...
16727         (add_linkage_name): ... here.
16728         (gen_typedef_die): Use add_linkage_name_raw instead of
16729         add_linkage_attr to delay DECL_ASSEMBLER_NAME computation
16730         if necessary.
16732 2016-01-15  Cesar Philippidis  <cesar@codesourcery.com>
16734         * gimplify.c (oacc_default_clause): Decode reference and pointer
16735         types for both kernels and parallel regions.
16737 2016-01-15  Richard Sandiford  <richard.sandiford@arm.com>
16739         PR middle-end/69246
16740         * calls.c (emit_call_1): Force n_popped to zero for sibcalls.
16742 2016-01-15  Ilya Enkovich  <enkovich.gnu@gmail.com>
16744         * config/i386/i386.c (scalar_chain::compute_convert_gain): Fix typo.
16745         (convert_scalars_to_vector): Likewise.
16747 2016-01-15  Jonathan Wakely  <jwakely@redhat.com>
16749         * doc/extend.texi (Type Traits): Fix grammar.
16751 2016-01-15  Martin Jambor  <mjambor@suse.cz>
16753         * tree-inline.c (remap_decl): Use existing dclarations if
16754         remapping a type and prevent_decl_creation_for_types.
16755         (replace_locals_stmt): Do an initial remapping of non-VLA typed
16756         decls first.  Do real remapping with
16757         prevent_decl_creation_for_types set.
16758         * tree-inline.h (copy_body_data): New field
16759         prevent_decl_creation_for_types, moved remap_var_for_cilk to avoid
16760         padding.
16762 2016-01-15  Dominik Vogt  <vogt@linux.vnet.ibm.com>
16764         * config/s390/s390.opt (mmvcle): More verbose help text.
16766 2016-01-15  Dominik Vogt  <vogt@linux.vnet.ibm.com>
16768         * config/s390/s390.opt: Add period to -mzvector option text.
16770 2016-01-15  Richard Biener  <rguenther@suse.de>
16772         PR tree-optimization/68961
16773         * tree-vect-slp.c (vect_analyze_slp_cost_1): Consider cost
16774         of invariants in stores again.
16776 2016-01-15  Sebastian Huber  <sebastian.huber@embedded-brains.de>
16778         * config/arm/t-rtems: Add cortex-m7/fpv5-d16 multilib.
16780 2016-01-15  Ilya Enkovich  <enkovich.gnu@gmail.com>
16782         * config/i386/i386.c (ix86_expand_branch): Don't split
16783         DI mode xor instruction to SI mode.
16785 2016-01-15  Jan Hubicka  <hubicka@ucw.cz>
16787         PR ipa/68148
16788         * ipa-icf.c (sem_function::merge): Virtual functions may become
16789         reachable even if they address is not taken and there are no
16790         idrect calls.
16792 2016-01-15  Jan Hubicka  <hubicka@ucw.cz>
16794         * lto-streamer-out.c (subtract_estimated_size): New function.
16795         (get_symbol_initial_value): Use it.
16797 2016-01-15  Christian Bruel  <christian.bruel@st.com>
16799         PR target/65837
16800         * config/arm/arm-builtins.c (ARM_BUILTIN_CRYPTO_BASE): New enum tag.
16801         (arm_init_neon_builtins_internal): Rename arm_init_neon_builtins,
16802         (arm_init_crypto_builtins_internal): Rename arm_init_crypto_builtins.
16803         use add_builtin_function_ext_scope instead of add_builtin_function.
16804         (neon_set_p, neon_crypto_set_p): Remove.
16805         (arm_init_builtins): Always call arm_init_neon_builtins and
16806         arm_init_crypto_builtins.
16807         (arm_expand_builtin): Check that builtins are allowed for the arch.
16808         * config/arm/arm-protos.h (arm_init_neon_builtins): Remove prototype.
16809         * config/arm/arm.c (arm_valid_target_attribute_tree): Remove
16810         arm_init_neon_builtins call.
16812 2016-01-15  Richard Biener  <rguenther@suse.de>
16814         PR tree-optimization/69117
16815         * tree-ssa-sccvn.h (struct vn_ssa_aux): Add info member.
16816         * tree-ssa-sccvn.c (set_ssa_val_to): Save and adjust SSA name info
16817         of the leader conservatively.
16818         (free_scc_vn): Restore original SSA name infos.
16820 2016-01-14  Jeff Law  <law@redhat.com>
16822         PR tree-optimization/69270
16823         * tree-ssa-dom.c (ssa_name_has_boolean_range): If the type has a
16824         single bit of precision, verify it's also unsigned.
16825         (record_edge_info): Use constant_boolean_node rather than fold_convert
16826         to convert boolean_true/boolean_false to the right type.
16828 2016-01-14  Richard Henderson  <rth@redhat.com>
16830         PR rtl-opt/69014
16831         * loop-doloop.c (record_reg_sets): New.
16832         (doloop_optimize): Reject the transform if the sequence
16833         clobbers registers live at the end of the loop block.
16834         (doloop_optimize_loops): Enable df_live if needed.
16836 2016-01-14  Michael Meissner  <meissner@linux.vnet.ibm.com>
16838         * config/rs6000/rs6000-builtin.def: Revert 2016-01-13 change.
16839         * config/rs6000/rs6000.c: Likewise.
16840         * config/rs6000/rs6000.h: Likewise.
16841         * config/rs6000/rs6000.md: Likewise.
16842         * doc/extend.texi: Likewsie.
16844 2016-01-14  Jeff Law  <law@redhat.com>
16846         * tree-ssa-dom.c (ssa_name_has_boolean_range): Fix comment
16847         typo.
16849 2016-01-14  Richard Henderson  <rth@redhat.com>
16851         PR c/69272
16852         PR tree-opt/68964
16853         * trans-mem.c (tm_log_emit_stmt): Fix unit size to bit size.
16854         * tree.c (build_tm_vector_builtins): Use builtin_decl_explicit_p
16855         instead of builtin_decl_declared_p to test for declaration.
16857 2016-01-14  Nicklas Bo Jensen  <nbjensen@gmail.com>
16859         * doc/loop.texi (Loop Analysis and Representation): Document
16860         loop_depth function.
16862 2016-01-14  Tom de Vries  <tom@codesourcery.com>
16864         PR tree-optimization/68773
16865         * omp-low.c (expand_omp_target): Don't set force_output.
16866         * varpool.c (varpool_node::get_create): Same.
16867         * lto-cgraph.c (input_offload_tables): Mark entries in offload_vars and
16868         offload_funcs with force_output.
16870 2016-01-14  Jakub Jelinek  <jakub@redhat.com>
16872         PR debug/69244
16873         * lra-eliminations.c (move_plus_up): Don't change anything if either
16874         the outer or inner subreg mode is not MODE_INT.
16875         * dwarf2out.c (mem_loc_descriptor): For SUBREG, if outer mode is
16876         integral <= DWARF2_ADDR_SIZE, convert to untyped afterwards.
16878 2016-01-14  Alan Lawrence  <alan.lawrence@arm.com>
16880         * doc/md.texi (reduc_smin_@var{m}, reduc_smax_@var{m},
16881         reduc_umin_@var{m}, reduc_umax_@var{m}, reduc_splus_@var{m},
16882         reduc_uplus_@var{m}): Remove.
16883         * expr.c (expand_expr_real_2): Remove expansion path for
16884         reduc_[us](min|max|plus) optabs.
16885         * optabs-tree.c (scalar_reduc_to_vector): Remove.
16886         * optabs-tree.h (scalar_reduc_to_vector): Remove.
16887         * optabs.def (reduc_smax_optab, reduc_smin_optab, reduc_splus_optab,
16888         reduc_umax_optab, reduc_umin_optab, reduc_uplus_optab): Remove.
16889         * tree-vect-loop.c (vectorizable_reduction): Remove test for
16890         reduc_[us](min|max|plus) optabs.
16892 2016-01-14  Alan Lawrence  <alan.lawrence@arm.com>
16894         * config/mips/mips-ps-3d.md (reduc_splus_v2sf): Remove.
16895         (reduc_plus_scal_v2sf): New.
16896         (reduc_smax_v2sf): Rename to...
16897         (reduc_smax_scal_v2sf): ...here, make result SFmode, add vec_extract.
16898         (reduc_smin_v2sf): Rename to...
16899         (reduc_smin_scal_v2sf): ...here, make result SFmode, add vec_extract.
16901 2016-01-14  Jan Hubicka  <hubicka@ucw.cz>
16903         * alias.c (compare_base_symbol_refs): New function.
16904         (rtx_equal_for_memref_p, base_alias_check, memrefs_conflict_p): Use
16905         it.
16907 2016-01-14  Jakub Jelinek  <jakub@redhat.com>
16909         PR middle-end/68146
16910         PR tree-optimization/69155
16911         * tree-complex.c: Include cfganal.h.
16912         (phis_to_revisit): New variable.
16913         (extract_component): Add phiarg_p argument.  Assert that returned
16914         SSA_NAME has non-NULL SSA_NAME_DEF_STMT unless phiarg_p is true.
16915         (update_phi_components): Partly rewrite to use loop over real/imag
16916         components instead of code duplication.  If extract_component returns
16917         SSA_NAME with NULL SSA_NAME_DEF_STMT, store SSA_NAME_VAR or
16918         create_tmp_reg into the PHI node instead, and mention the phi triplet
16919         in phis_to_revisit.
16920         (tree_lower_complex): Walk bbs in rpo order.  Adjust phis recorded
16921         in phis_to_revisit at the end.
16923 2016-01-14  Richard Biener  <rguenther@suse.de>
16925         PR tree-optimization/68060
16926         * tree-vect-loop.c (vect_is_simple_reduction): Check the
16927         outer loop reduction is only used in the inner loop before
16928         detecting a double reduction.
16930 2016-01-14  Jakub Jelinek  <jakub@redhat.com>
16932         PR target/68269
16933         * combine.c (expand_field_assignment): Punt if compute_mode is
16934         unsupported scalar mode.
16936 2016-01-14  Richard Biener  <rguenther@suse.de>
16938         PR tree-optimization/66856
16939         * tree-vect-slp.c (vect_build_slp_tree): Refactor to build
16940         SLP node only if it built successfully.
16941         (vect_analyze_slp_instance): Adjust.
16943 2016-01-14  Jeff Law  <law@redhat.com>
16945         PR tree-optimization/69270
16946         * tree-ssa-dom.c (ssa_name_has_boolean_range): New function.
16947         (record_edge_info): Use it.  Convert boolean_{true,false}_node
16948         to the type of op0.
16950 2016-01-13  Jan Hubicka  <hubicka@ucw.cz>
16952         PR ipa/66487
16953         * ipa-polymorphic-call.c (inlined_polymorphic_ctor_dtor_block_p):
16954         use block_ultimate_origin
16955         (noncall-stmt_may_be_vtbl_ptr_store): Likewise.
16957 2016-01-13  Sandra Loosemore  <sandra@codesourcery.com>
16959         * doc/invoke.texi (Submodel Options): Rename section to
16960         "Machine-Dependent Options" to better reflect its content.
16961         Rewrite introductory text to remove archaic CPU names.
16962         Update references.
16964 2016-01-13  Sandra Loosemore  <sandra@codesourcery.com>
16966         * doc/invoke.texi (Code Gen Options): Move section up in file,
16967         before target-specific options.  Update menu and option summary
16968         to reflect the new section ordering.
16970 2016-01-13  Jonathan Wakely  <jwakely@redhat.com>
16972         * doc/invoke.texi (C Dialect Options): Adjust -std default for C++.
16973         (C++ Dialect Options): Add cross-reference to -std option.
16974         * doc/standards.texi (C++ Language): Document C++14 support.
16976 2016-01-13  Michael Meissner  <meissner@linux.vnet.ibm.com>
16978         * config/rs6000/rs6000-builtin.def (BU_FLOAT128_2): Add support
16979         for pack/unpack functions for __ibm128.
16980         (PACK_IF): Likewise.
16981         (UNPACK_IF): Likewise.
16983         * config/rs6000/rs6000.c (rs6000_builtin_mask_calculate): Add
16984         support for __ibm128 pack/unpack functions.
16985         (rs6000_invalid_builtin): Likewise.
16986         (rs6000_init_builtins): Likewise.
16987         (rs6000_opt_masks): Likewise.
16989         * config/rs6000/rs6000.h (MASK_FLOAT128): Add short name.
16990         (RS6000_BTM_FLOAT128): Add support for __ibm128 pack/unpack
16991         functions
16992         (RS6000_BTM_COMMON): Likewise.
16994         * config/rs6000/rs6000.md (f128_vsx): New mode attribute.
16995         (unpack<mode>): Use FMOVE128_FPR iterator instead of FMOVE128, to
16996         disallow __builtin_{pack,unpack}_longdouble if long double is IEEE
16997         128-bit floating point.  Add support for the double values to be
16998         in Altivec registers for TF/IF packing and unpacking, but restrict
16999         TD packing sub-fields to be FPR registers.  Don't allow overlapped
17000         register support for packing.  Allow pack inputs to be memory
17001         locations.  Don't build generator functions for unpack<mode>_dm
17002         and unpack<mode>_nodm.
17003         (unpack<mode>_dm): Likewise.
17004         (unpack<mode>_nodm): Likewise.
17005         (pack<mode>): Likewise.
17007         * config/rs6000/rs6000-builtin.def (__builtin_pack_ibm128): Add
17008         built-in functions to pack/unpack explicit __ibm128 values.
17009         (__builtin_unpack_ibm128): Likewise.
17011         * doc/extend.texi (PowerPC Built-in Functions): Document
17012         __builtin_pack_ibm128 and __builtin_unpack_ibm128.
17014 2016-01-13  Bernd Schmidt  <bschmidt@redhat.com>
17016         PR c/66208
17017         * c-common.c (check_function_nonnull): Remove unnecessary declaration.
17018         Add new arg loc and pass it down as context.
17019         (check_nonnull_arg): Don't mark ctx arg as unused. Use it as a pointer
17020         to the location to use for the warning.
17021         (check_function_arguments): New arg loc.  All callers changed.  Pass
17022         it to check_function_nonnull.
17023         * c-common.h (check_function_arguments): Adjust declaration.
17025 2016-01-13  Jakub Jelinek  <jakub@redhat.com>
17027         PR tree-optimization/69156
17028         * gimple.c (validate_type): Removed.
17029         (gimple_builtin_call_types_compatible_p): Use
17030         useless_type_conversion_p instead of validate_type.
17031         * value-prof.c (gimple_stringop_fixed_value): Fold
17032         icall_size to correct type.
17034 2016-01-13  Jonathan Wakely  <jwakely@redhat.com>
17036         * doc/extend.texi (__atomic Builtins): Clarify compare_exchange
17037         effects.
17039 2016-01-13  Richard Henderson  <rth@redhat.com>
17041         PR tree-opt/68964
17042         * target.def (builtin_tm_load, builtin_tm_store): Remove.
17043         * config/i386/i386.c (ix86_builtin_tm_load): Remove.
17044         (ix86_builtin_tm_store): Remove.
17045         (TARGET_VECTORIZE_BUILTIN_TM_LOAD): Remove.
17046         (TARGET_VECTORIZE_BUILTIN_TM_STORE): Remove.
17047         * doc/tm.texi.in (TARGET_VECTORIZE_BUILTIN_TM_LOAD): Remove.
17048         (TARGET_VECTORIZE_BUILTIN_TM_STORE): Remove.
17049         * doc/tm.texi: Rebuild.
17051         * gtm-builtins.def (BUILT_IN_TM_MEMCPY_RNWT): New.
17052         (BUILT_IN_TM_MEMCPY_RTWN): New.
17053         * trans-mem.c (tm_log_emit_stmt): Rearrange code for better
17054         fallback from vector to integer helpers.
17055         (build_tm_load): Handle vector types directly, instead of
17056         via target hook.
17057         (build_tm_store): Likewise.
17058         (expand_assign_tm): Prepare for register types not handled by
17059         the above.  Copy them to memory and use memcpy.
17060         * tree.c (tm_define_builtin): New.
17061         (find_tm_vector_type): New.
17062         (build_tm_vector_builtins): New.
17063         (build_common_builtin_nodes): Call it.
17065 2016-01-13  Uros Bizjak  <ubizjak@gmail.com>
17067         * config/i386/i386.h (TARGET_FLT_EVAL_METHOD): Return -1 for
17068         TARGET_SSE_MATH without TARGET_SSE2.  Rewrite.
17070 2016-01-13  Tom de Vries  <tom@codesourcery.com>
17072         PR tree-optimization/69169
17073         * tree-ssa-structalias.c (create_variable_info_for_1): Add and handle
17074         handled_struct_type param.
17075         (create_variable_info_for, intra_create_variable_infos): Call
17076         create_variable_info_for_1 with extra arg.
17078 2016-01-13  Yvan Roux  <yvan.roux@linaro.org>
17080         * config/arm/arm-arches.def: Remove spurious whitespace in "armv8.1-a"
17081         and "armv8.1-a+crc" entries.
17083 2016-01-13  Alexander Fomin  <alexander.fomin@intel.com>
17085         PR target/69228
17086         * config/i386/sse.md (define_expand "avx512pf_gatherpf<mode>sf"):
17087         Change first operand predicate from register_or_constm1_operand
17088         to register_operand.
17089         (define_expand "avx512pf_gatherpf<mode>df"): Likewise.
17090         (define_expand "avx512pf_scatterpf<mode>sf"): Likewise.
17091         (define_expand "avx512pf_scatterpf<mode>df"): Likewise.
17092         (define_insn "*avx512pf_gatherpf<mode>sf"): Remove.
17093         (define_insn "*avx512pf_gatherpf<mode>df"): Likewise.
17094         (define_insn "*avx512pf_scatterpf<mode>sf"): Likewise.
17095         (define_insn "*avx512pf_scatterpf<mode>df"): Likewise.
17096         * config/i386/i386.c (ix86_expand_builtin): Remove first operand
17097         comparison with constm1_rtx from vec_prefetch_gen part.
17099 2016-01-13  Richard Biener  <rguenther@suse.de>
17101         PR tree-optimization/69013
17102         * tree-ssa-uninit.c (prune_uninit_phi_opnds_in_unrealizable_paths):
17103         Exchange assert for a test.
17105 2016-01-13  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
17107         PR target/69247
17108         * config/s390/s390.md (bswaphi splitter): Use simplify_gen_subreg.
17110 2016-01-13  Richard Biener  <rguenther@suse.de>
17112         PR tree-optimization/69242
17113         * tree-ssa-sccvn.c (visit_reference_op_load): Replace bogus
17114         assert with a check.
17116 2016-01-13  Richard Biener  <rguenther@suse.de>
17118         PR tree-optimization/69186
17119         * tree-vect-data-refs.c (vect_enhance_data_refs_alignment):
17120         Properly guard vect_update_misalignment_for_peel call.
17122 2016-01-12  Jeff Law  <law@redhat.com>
17124         PR tree-optimization/pr67755
17125         * tree-ssa-threadupdate.c (struct ssa_local_info_t): Add new field
17126         "need_profile_correction".
17127         (thread_block_1): Initialize new field to false by default.  If we
17128         have multiple thread paths through a common joiner to different
17129         final targets, then set new field to true.
17130         (compute_path_counts): Only do count adjustment when it's really
17131         needed.
17133 2016-01-12  Sandra Loosemore  <sandra@codesourcery.com>
17135         * doc/invoke.texi (Spec Files): Move section down in file, past
17136         all command-line option descriptions.
17138 2016-01-12  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
17140         PR middle-end/54809
17141         * doc/gty.texi: Remove documentation of mark_hook.
17142         * gengtype.c (struct write_types_data): Remove code to support
17143         mark_hook attribute.
17144         (walk_type): Likewise.
17145         (write_func_for_structure): Likewise.
17147 2016-01-12  Sandra Loosemore  <sandra@codesourcery.com>
17149         * doc/invoke.texi (Option Summary) Move -no-canonical-prefixes to
17150         Directory Options, and -specs= to Overall Options.
17151         (Overall Options): Adjust similarly.  Reorder to group related
17152         options together.  Make -specs= cross-reference the spec file details.
17153         (Directory Options): Adjust similarly.
17155 2016-01-12  Jeff Law  <law@redhat.com>
17157         * tree-ssa-threadupdate.c: Various whitespace and typo fixes.
17159 2016-01-12  Olivier Hainque  <hainque@adacore.com>
17161         * gcc.c (spec_undefvar_allowed): New global.
17162         (process_command): Set to true when running for --version or --help,
17163         alone or together.
17164         (getenv_spec_function): When the variable is not defined, use the
17165         variable name as the variable value if we're allowed not to issue
17166         a fatal error.
17168 2016-01-12  Bin Cheng  <bin.cheng@arm.com>
17170         PR tree-optimization/68911
17171         * tree-vrp.c (adjust_range_with_scev): Check overflow in range
17172         information computed for expression "init + nit * step".
17174 2016-01-12  Sandra Loosemore  <sandra@codesourcery.com>
17176         * doc/invoke.texi (Invoking GCC): Copy-edit.  Incorporate information
17177         about name of GCC executable.  Remove deleted node from menu.
17178         (Directory Options) <-B>: Remove cross-reference to deleted node.
17179         (Target Options): Delete section.
17181 2016-01-12  Christian Bruel  <christian.bruel@st.com>
17183         PR target/69180
17184         * config/arm/arm-c.c (arm_pragma_target_parse): Set NODE_CONDITIONAL
17185         for __ARM_NEON_FP, __ARM_FP, _ARM_FEATURE_LDREX.
17187 2016-01-12  Jakub Jelinek  <jakub@redhat.com>
17189         PR target/69198
17190         * config/i386/i386.c (ix86_expand_special_args_builtin): Ensure
17191         aligned_mem is properly set for AVX512-VL floating point masked
17192         stores.
17194         PR target/69175
17195         * ifcvt.c (cond_exec_process_if_block): When removing the last
17196         insn from then_bb, remove also any possible barriers that follow it.
17198 2016-01-12  H.J. Lu  <hongjiu.lu@intel.com>
17200         PR target/68456
17201         PR target/69226
17202         * config/i386/iamcu.h (SIZE_TYPE): New macro.
17203         (PTRDIFF_TYPE): Likewise.
17204         (WCHAR_TYPE): Likewise.
17205         (WCHAR_TYPE_SIZE): Likewise.
17206         (STDINT_LONG32): Likewise.
17208 2016-01-12  Richard Biener  <rguenther@suse.de>
17210         PR tree-optimization/69053
17211         * tree-vect-loop.c (get_initial_def_for_reduction): Properly
17212         convert initial value for cond reductions.
17214 2016-01-12  Richard Biener  <rguenther@suse.de>
17216         PR tree-optimization/69007
17217         * tree-vect-patterns.c (vect_vect_recog_func_ptrs): Move
17218         widen_sum after dot_prod and sad.
17220 2016-01-12  Richard Biener  <rguenther@suse.de>
17222         PR tree-optimization/69168
17223         * tree-vect-loop.c (vect_analyze_loop_2): Reset both main and
17224         pattern stmt SLP type.
17225         * tree-vect-slp.c (vect_detect_hybrid_slp_stmts): Patterns may
17226         end up unused so cope with that case.
17228 2016-01-12  Richard Biener  <rguenther@suse.de>
17230         PR tree-optimization/69157
17231         * tree-vect-stmts.c (vectorizable_mask_load_store): Check
17232         stmts def type only during analyze phase.
17233         (vectorizable_call): Likewise.
17234         (vectorizable_simd_clone_call): Likewise.
17235         (vectorizable_conversion): Likewise.
17236         (vectorizable_assignment): Likewise.
17237         (vectorizable_shift): Likewise.
17238         (vectorizable_operation): Likewise.
17239         (vectorizable_store): Likewise.
17240         (vectorizable_load): Likewise.
17242 2016-01-12  Richard Biener  <rguenther@suse.de>
17244         PR tree-optimization/69174
17245         * tree-vect-stmts.c (vect_mark_relevant): Remove excessive vertical
17246         space.
17247         (vectorizable_load): Properly compute the number of loads needed
17248         for permuted strided SLP loads and do not spuriously assign
17249         to SLP_TREE_VEC_STMTS.
17251 2016-01-12  Andris Pavenis  <andris.pavenis@iki.fi>
17253         * config/i386/djgpp.h (PREFERRED_DEBUGGING_TYPE): Define to DWARF2
17254         (TARGET_ASM_OUTPUT_IDENT): Define to default_asm_output_ident_directive
17255         (MD_EXEC_PREFIX): Remove.
17256         (MD_STARTFILE_PREFIX) Removee.
17257         (FILE_NAME_ABSOLUTE_P): Remove.
17258         (CPP_SPEC): Do not read macros from sys/version.h.
17259         (LINK_COMMAND_SPEC): Remove.
17260         (LOCAL_INCLUDE_DIR): Remove.
17261         (TARGET_ASM_NAMED_SECTION): Define to i386_djgpp_asm_named_section
17262         (TARGET_OS_CPP_BUILTINS): Add DJGPP (non ISO only), __DJGPP, __DJGPP__, unix.
17263         (POST_LINK_SPEC): Define to invoke stubify after linker
17264         (LIBSTDCXX): Remove define
17265         (DBX_REGISTER_NUMBER): Define to svr4_dbx_register_map.
17266         (DEFAULT_PCC_STRUCT_RETURN): Define to 1.
17267         (SUBTARGET_OVERRIDE_OPTIONS): Remove warning about -mbnu2210.
17268         (SUBTARGET_OVERRIDE_OPTIONS): Ignore -fPIC and generate message.
17269         (SUBTARGET_OVERRIDE_OPTIONS): Default to DWARF2 debugging info.
17270         (IX86_MAYBE_NO_LIBGCC_TFMODE): Remove.
17271         (i386_djgpp_asm_named_section): Add propotype of new procedure
17273         * config/i386/xm-djgpp.h (NATIVE_SYSTEM_HEADER_DIR): Define.
17274         (MD_EXEC_PREFIX): Define (moved from config/i386/djgpp.h).
17275         (STANDARD_STARTFILE_PREFIX_1): Define (moved from MD_STARTFILE_PREFIX
17276         in config/i386/djgpp.h).
17277         (STANDARD_STARTFILE_PREFIX_2): Define identical to
17278         STANDARD_STARTFILE_PREFIX_1.
17279         (LOCAL_INCLUDE_DIR): Define (moved from config/i386/djgpp.h).
17280         (GCC_DRIVER_HOST_INITIALIZATION): Fix reporting fatal
17281         installation errors.
17282         (MAX_OFILE_ALIGNMENT): Define to 128.
17283         (HAVE_FTW_H): Undefine as DJGPP do not have nftw, but have ftw.h.
17285         * config/i386/djgpp.c: New file. Add implementation of
17286         i386_djgpp_asm_named_section.
17288         * config/i386/djgpp.opt: Remove obsolete option -mbnu210.
17290         * config/i386/t-djgpp: New file. Add djgpp.o to EXTRA_OBJS.
17291         Add rule for building djgpp.o.
17293 2016-01-11  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
17295         * config/rs6000/rs6000.c (v2df_reduction_p): New function.
17296         (rtx_is_swappable_p): Reductions are swappable.
17297         (insn_is_swappable_p): V2DF reductions are swappable.
17299 2016-01-11  John David Anglin  <danglin@gcc.gnu.org>
17301         * config/pa/pa.c (pa_emit_move_sequence): Handle floating point
17302         reloads for other unsupported memory operands.
17304 2016-01-12  Kugan Vivekanandarajah  <kuganv@linaro.org>
17305             Jim Wilson  <jim.wilson@linaro.org>
17307         PR target/69194
17308         * config/arm/arm-builtins.c (arm_expand_neon_args): Call
17309         copy_to_mode_reg instead of force_reg.
17311 2016-01-11  H.J. Lu  <hongjiu.lu@intel.com>
17313         PR target/69225
17314         * config/i386/i386.h (TARGET_FLT_EVAL_METHOD): Set to 2 only if
17315         TARGET_80387 is true.
17317 2016-01-11  Jakub Jelinek  <jakub@redhat.com>
17319         PR target/69071
17320         * lra-eliminations.c (move_plus_up): Only move plus up
17321         if subreg of the constant can be simplified into constant
17322         and use the simplified subreg of the constant instead of
17323         the original constant.
17325         * fold-const.c (fold_convertible_p): Don't return true
17326         for conversion of VECTOR_TYPE to same sized integral type.
17327         (fold_convert_loc): Fix up formatting.  Fold conversion of
17328         VECTOR_TYPE to same sized integral type using VIEW_CONVERT_EXPR
17329         instead of NOP_EXPR.
17331         PR tree-optimization/69214
17332         * tree-vrp.c (simplify_cond_using_ranges): Don't propagate
17333         innerop into a comparison if SSA_NAME_OCCURS_IN_ABNORMAL_PHI.
17334         Formatting fix.
17336         PR tree-optimization/69207
17337         * tree-vect-slp.c (vect_get_constant_vectors): For
17338         VECTOR_BOOLEAN_TYPE_P, assert op has integral type instead of
17339         fold_convertible_p to vector_type's element type, and always
17340         use VCE for non-VECTOR_BOOLEAN_TYPE_P.
17342 2016-01-11  Richard Biener  <rguenther@suse.de>
17344         PR tree-optimization/69173
17345         * tree-vect-loop.c (vect_fixup_scalar_cycles_with_patterns): Only
17346         fixup the cycle if all stmts are in a pattern.
17348 2016-01-11  Uros Bizjak  <ubizjak@gmail.com>
17350         PR middle-end/68999
17351         * alias.c (base_alias_check): Move check for addresses with
17352         alignment ANDs before the call for compare_base_decls.
17353         (memrefs_conflict_p): Return -1 for different decls
17354         that went through alignment adjustments.
17356 2016-01-11  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
17358         PR rtl-optimization/68796
17359         * config/aarch64/aarch64.md (*and<mode>_compare0): New pattern.
17360         * config/aarch64/aarch64.c (aarch64_select_cc_mode): Handle HImode
17361         and QImode comparisons against zero with CC_NZmode.
17362         * config/aarch64/iterators.md (short_mask): New mode_attr.
17364 2016-01-11  H.J. Lu  <hongjiu.lu@intel.com>
17366         * config/i386/sse.md (<avx512>_load<mode>_mask): Remove snprintf.
17367         (<avx512>_store<mode>_mask): Likewise.
17369 2016-01-11  Bernd Schmidt  <bschmidt@redhat.com>
17370             Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
17372         PR rtl-optimization/68841
17373         * ifcvt.c (struct noce_if_info): Add orig_x field.
17374         (bbs_ok_for_cmove_arith): Add to_rename parameter.
17375         Don't record conflicts on to_rename if it's present.
17376         Allow memory destinations in sets.
17377         (noce_try_cmove_arith): Call bbs_ok_for_cmove_arith even on simple
17378         blocks, passing orig_x to the checks.
17379         (noce_process_if_block): Set if_info->orig_x appropriately.
17381 2016-01-11  Tom de Vries  <tom@codesourcery.com>
17383         PR tree-optimization/69069
17384         * tree-parloops.c (create_parallel_loop): Add missing phi args.
17386 2016-01-11  Yuri Rumyantsev  <ysrumyan@gmail.com>
17388         PR rtl-optimization/68920
17389         * config/i386/i386.c (ix86_option_override_internal): Restrict number
17390         of conditional moves for  RTL if-conversion to 1 for
17391         TARGET_ONE_IF_CONV_INSN.
17392         * config/i386/i386.h (TARGET_ONE_IF_CONV_INSN): New macros.
17393         * config/i386/x86-tune.def (X86_TUNE_ONE_IF_CONV_INSN): New macros.
17394         * params.def (PARAM_MAX_RTL_IF_CONVERSION_INSNS) : Introduce new
17395         parameter to restirct number of conditional moves for
17396         RTL if-conversion.
17397         * doc/invoke.texi (max-rtl-if-conversion-insns): Document it.
17398         * ifcvt.c (bb_ok_for_noce_convert_multiple_sets): Limit number of
17399         conditionl moves.
17401 2016-01-11  Alexandre Oliva  <aoliva@redhat.com>
17403         PR bootstrap/69123
17404         * var-tracking.c (drop_overlapping_mem_locs): Operate on all
17405         onepart vars.  Fix typo in comment.  Fix reversed condition in
17406         unshare test.
17407         (dataflow_set_remove_mem_locs): Operate on all onepart vars.
17409         PR bootstrap/69123
17410         * var-tracking.c (dump_onepart_variable_differences): New.
17411         (dataflow_set_different): If a detailed dump is requested,
17412         delay early returns and dump differences between onepart
17413         variables present before and after, and added variables.
17415 2016-01-11  Ilya Enkovich  <enkovich.gnu@gmail.com>
17417         PR target/69010
17418         * expr.c (expand_expr_real_1): For boolean vector constants
17419         with a scalar mode use const_scalar_mask_from_tree.
17420         (const_scalar_mask_from_tree): New.
17421         * optabs.c (expand_vec_cond_mask_expr): Use mask mode
17422         assigned to a mask type to handle constants.
17424 2016-01-11  Martin Jambor  <mjambor@suse.cz>
17426         PR ipa/69044
17427         * ipa-cp.c (estimate_local_effects): Do not clone for removal of
17428         useless parameters if we cannot change function signature.
17430 2016-01-11  Martin Jambor  <mjambor@suse.cz>
17432         PR ipa/66616
17433         * cgraphclones.c (duplicate_thunk_for_node): Copy can_change_signature
17434         flag.
17436 2016-01-11  Tom de Vries  <tom@codesourcery.com>
17438         PR tree-optimization/69109
17439         * tree-parloops.c (try_transform_to_exit_first_loop_alt): Don't allow
17440         latch with phi.
17442 2016-01-11  Tom de Vries  <tom@codesourcery.com>
17444         PR tree-optimization/69108
17445         * tree-parloops.c (gather_scalar_reductions): Handle case that outer phi
17446         res is not used in a phi.
17448 2016-01-11  Yury Gribov  <y.gribov@samsung.com>
17450         PR 67425
17451         * common.opt (frandom-seed): Fix parameter name.
17452         * doc/invoke.texi (frandom-seed): Ditto and describe parameter.
17454 2016-01-11  Tom de Vries  <tom@codesourcery.com>
17456         PR tree-optimization/69058
17457         * tree-parloops.c (pass_parallelize_loops::execute): Return 0 if libgomp
17458         not supported.
17460 2016-01-11  Andrew Burgess  <andrew.burgess@embecosm.com>
17462         * config/arc/arc.opt (mdiv-rem): Add period to the end.
17463         (mcode-density): Likewise.
17465 2016-01-10  Tom de Vries  <tom@codesourcery.com>
17467         PR tree-optimization/69062
17468         * tree-parloops.c (loop_has_phi_with_address_arg): New function.
17469         (parallelize_loops): Don't paralelize loop that has phi with address
17470         arg.
17472 2016-01-10  Tom de Vries  <tom@codesourcery.com>
17474         PR tree-optimization/69039
17475         * tree-parloops.c (try_create_reduction_list): Only allow single exit
17476         phi for reduction.
17478 2016-01-09  John David Anglin  <danglin@gcc.gnu.org>
17480         PR middle-end/68743
17481         * match.pd: Require target has function_c99_misc before doing
17482         truncl(extend(x)) and trunc(extend(x)) -> extend(truncf(x)), etc.
17484 2016-01-09  Gerald Pfeifer  <gerald@pfeifer.com>
17486         * configure.ac (isl_options_set_schedule_serialize_sccs): Also
17487         use GMPINC.
17488         * configure: Regenerate.
17490 2016-01-09  Jakub Jelinek  <jakub@redhat.com>
17492         PR middle-end/50865
17493         PR tree-optimization/69097
17494         * fold-const.h (expr_not_equal_to): New prototype.
17495         * fold-const.c: Include stringpool.h and tree-ssanames.h.
17496         (expr_not_equal_to): New function.
17497         * match.pd (X % -Y is the same as X % Y): Don't optimize
17498         unless X is known not to be equal to minimum or Y is known
17499         not to be equal to -1.
17500         * tree-vrp.c (simplify_div_or_mod_using_ranges): Add GSI argument.
17501         fold TRUNC_MOD_EXPR if the second argument is not a power of two.
17502         (simplify_stmt_using_ranges): Adjust caller.
17503         (vrp_finalize): Call set_value_range on SSA_NAMEs before calling
17504         substitute_and_fold.
17506 2016-01-09  Jan Hubicka  <hubicka@ucw.cz>
17508         * ipa-icf.c (sem_item_optimizer::merge_classes): Do not ICE on VAR_DECL
17509         w/o DECL_NAME.
17511 2016-01-08  Jakub Jelinek  <jakub@redhat.com>
17513         PR tree-optimization/69167
17514         * gimple-fold.c (replace_stmt_with_simplification): Also punt if
17515         new SSA_NAME_OCCURS_IN_ABNORMAL_PHI SSA_NAMEs appear in operands of
17516         ops[0] comparison.
17517         * gimple-match-head.c (maybe_push_res_to_seq): Likewise.
17519 2016-01-08  Alan Lawrence  <alan.lawrence@arm.com>
17520             Richard Biener  <rguenther@suse.de>
17522         PR tree-optimization/68707
17523         * tree-vect-slp.c (vect_analyze_slp_instance): Cancel permuted SLP
17524         instances that can be handled via vect_load_lanes.
17526 2016-01-08  Uros Bizjak  <ubizjak@gmail.com>
17528         * symtab.c (symtab_node::equal_address_to): Return -1 instead of 2
17529         if we can't determine address equivalence.
17530         * alias.c (compare_base_decl): Update for changed return value of
17531         symtab_node::equal_address_to.
17533 2016-01-08  Jason Merrill  <jason@redhat.com>
17535         PR c++/68983
17536         PR c++/67557
17537         * function.c (assign_temp): Guard against TREE_ADDRESSABLE types here.
17538         * expr.c (store_field): Not here.
17539         * tree-cfgcleanup.c (fixup_noreturn_call): Don't clear LHS of a
17540         call with TREE_ADDRESSABLE type.
17541         * tree-cfg.c (verify_gimple_call): Adjust.
17543 2016-01-08  Olivier Hainque  <hainque@adacore.com>
17545         * config/vxworks.h (VXWORKS_LIBGCC_SPEC): Don't link shared RTPs with
17546         libc_internal.
17548 2016-01-08  Alan Lawrence  <alan.lawrence@arm.com>
17550         * gcc.target/rs6000/paired.md (reduc_smax_v2sf): Rename to...
17551         (reduc_smax_scal_v2sf): ...here, make result SFmode, extract element.
17552         (reduc_smin_v2sf): Rename to...
17553         (reduc_smin_scal_v2sf): ...here, make result SFmode, extract element.
17554         (reduc_splus_v2sf): Rename to...
17555         (reduc_plus_scal_v2sf): ...here, make result SFmode, extract element.
17557 2016-01-08  Jakub Jelinek  <jakub@redhat.com>
17559         PR tree-optimization/69162
17560         * gimplify.c (gimplify_va_arg_expr): Encode original type of
17561         valist argument in another argument.
17562         (gimplify_modify_expr): Adjust for the above change.  Cleanup.
17563         * tree-stdarg.c (expand_ifn_va_arg_1): Use new 3rd argument
17564         to determine the va_list type, build a MEM_REF instead of
17565         build_fold_indirect_ref.
17567         PR tree-optimization/69172
17568         * gimple-fold.c (gimple_fold_builtin_memory_chk): Pass type to
17569         gimple_build.
17571 2016-01-08  Thomas Preud'homme  <thomas.preudhomme@arm.com>
17573         PR tree-optimization/67781
17574         * tree-ssa-math-opts.c (find_bswap_or_nop): Zero out bytes in cmpxchg
17575         and cmpnop in two steps: first the ones not accessed in original
17576         gimple expression in a endian independent way and then the ones not
17577         accessed in the final result in an endian-specific way.
17579 2016-01-08  Jakub Jelinek  <jakub@redhat.com>
17581         PR tree-optimization/69083
17582         * tree-vect-slp.c (vect_get_constant_vectors): For
17583         VECTOR_BOOLEAN_TYPE_P assert op is fold_convertible_p to vector_type's
17584         element type.  If op is fold_convertible_p to vector_type's element
17585         type, use NOP_EXPR instead of VCE.
17587 2016-01-08  Segher Boessenkool  <segher@kernel.crashing.org>
17589         PR rtl-optimization/67778
17590         PR rtl-optimization/68634
17591         PR rtl-optimization/68909
17592         * shrink-wrap.c (try_shrink_wrapping): Add comment.  Don't pop
17593         block from the stack until done with it.  Remove a superfluous
17594         bitmap set.  Remove a superfluous bitmap test.
17596 2016-01-07  Martin Sebor  <msebor@redhat.com>
17598         PR c/68966
17599         * doc/extend.texi (__atomic Builtins, __sync Builtins): Document
17600         constraint on the type of arguments.
17602 2016-01-07  Andreas Tobler  <andreast@gcc.gnu.org>
17604         * config/arm/freebsd.h: Rename SUBTARGET_OVERRIDE_OPTIONS to
17605         SUBTARGET_OVERRIDE_INTERNAL_OPTIONS. Adjust to check
17606         unaligned_access on the gcc_options set.
17607         * config/arm/arm.c (arm_option_override_internal): Use
17608         SUBTARGET_OVERRIDE_INTERNAL_OPTIONS.
17610 2016-01-07  Uros Bizjak  <ubizjak@gmail.com>
17612         PR target/69140
17613         * config/i386/i386.c (ix86_frame_pointer_required): Enable
17614         frame pointer for TARGET_64BIT_MS_ABI when stack is misaligned.
17616 2016-01-07  Uros Bizjak  <ubizjak@gmail.com>
17618         Revert
17619         2016-01-06  Uros Bizjak  <ubizjak@gmail.com>
17621         PR target/69140
17622         * config/i386/i386.c (ix86_expand_prologue): Declare fs.sp_valid
17623         depending on frame_pointer_needed before remaining integer and SSE
17624         registers are saved.
17626 2016-01-07  Sandra Loosemore  <sandra@codesourcery.com>
17628         PR 1078
17629         * doc/extend.texi (Nvidia PDX Function Attributes): New section.
17631 2016-01-07  H.J. Lu  <hongjiu.lu@intel.com>
17633         PR target/69171
17634         * config/i386/sse.md (<sse>_sqrt<mode>2<mask_name><round_name>):
17635         Use the "xBm" constraint.
17636         (float<sseintvecmodelower><mode>2<mask_name><round_name):
17637         Likewise.
17638         (sse_cvtsi2ss<round_name>): Use round_nimm_scalar_predicate.
17639         (sse_cvtsi2ssq<round_name>): Likewise.
17640         (sse_cvtss2si<round_name>): Likewise.
17641         (sse_cvtss2siq<round_name>): Likewise.
17642         (sse2_cvtsi2sdq<round_name>): Likewise.
17643         (sse2_cvtsd2si<round_name>): Likewise.
17644         (sse2_cvtsd2siq<round_name>): Likewise.
17645         * config/i386/subst.md (round_nimm_scalar_predicate): New
17646         predicate.
17648 2015-12-15  Bernd Schmidt  <bschmidt@redhat.com>
17650         PR middle-end/67639
17651         * varasm.c (make_decl_rtl): Mark invalid register vars as
17652         DECL_EXTERNAL.
17654         PR rtl-optimization/66206
17655         * bt-load.c (find_btr_use): Change first arg to be a pointer to an rtx.
17656         All callers changed.
17658 2016-01-07  Jakub Jelinek  <jakub@redhat.com>
17660         PR tree-optimization/69141
17661         * tree-ssa-pre.c: Include langhooks.h.
17662         (eliminate_dom_walker::before_dom_children): Use
17663         lang_hooks.decl_printable_name instead of
17664         cgraph_node::get ()->name ().
17666         PR middle-end/68960
17667         * gimple-expr.c (copy_var_decl): If var has DECL_USER_ALIGN set, copy
17668         it and DECL_ALIGN too.
17670 2016-01-06  Robert Suchanek  <robert.suchanek@imgtec.com>
17672         * config/mips/mips-ftypes.def: Sort to lexicographical order.
17674 2016-01-06  Uros Bizjak  <ubizjak@gmail.com>
17676         PR target/69140
17677         * config/i386/i386.c (ix86_expand_prologue): Declare fs.sp_valid
17678         depending on frame_pointer_needed before remaining integer and SSE
17679         registers are saved.
17681 2015-01-06  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
17683         * config/rs6000/vsx.md (*p9_vecload_<mode>): Replace VSX_M
17684         mode iterator with VSX_M2.
17685         (*p9_vecstore_<mode>): Likewise.
17686         (*vsx_le_permute_<mode>): Restrict to !TARGET_P9_VECTOR.
17687         (*vsx_le_perm_load_<mode> for VSX_LE_128): Likewise.
17688         (*vsx_le_perm_store_<mode> for VSX_LE_128): Likewise.
17689         (define_split for VSX_LE128 stores): Likewise.
17690         (define_peephole2 for TImode LE swaps): Likewise.
17691         (define_split for VSX_LE128 post-reload stores): Likewise.
17693 2016-01-06  Marek Polacek  <polacek@redhat.com>
17695         PR sanitizer/69099
17696         * convert.c (convert_to_integer_1): Adjust call to
17697         ubsan_instrument_float_cast.  Use NULL_TREE instead of NULL.
17698         * ubsan.c (ubsan_instrument_float_cast): Drop the ARG parameter.  Use
17699         EXPR instead of ARG.
17700         * ubsan.h (ubsan_instrument_float_cast): Adjust declaration.
17702 2016-01-05  Sandra Loosemore  <sandra@codesourcery.com>
17704         PR 1078
17705         * doc/extend.texi (RL78 Variable Attributes): New section.
17707 2016-01-05  Marek Polacek  <polacek@redhat.com>
17709         PR c/69104
17710         * builtins.c (get_memmodel): Use expansion point location rather than
17711         the input location.  Call warning_at rather than warning.
17712         (expand_builtin_atomic_compare_exchange): Likewise.
17713         (expand_builtin_atomic_load): Likewise.
17714         (expand_builtin_atomic_store): Likewise.
17715         (expand_builtin_atomic_clear): Likewise.
17717 2016-01-05  H.J. Lu  <hongjiu.lu@intel.com>
17719         PR target/68991
17720         * config/i386/i386.c (ix86_expand_vector_logical_operator):
17721         Replace nonimmediate_operand with vector_operand.
17722         * config/i386/predicates.md (vector_operand): New predicate.
17723         (general_vector_operand): Replace nonimmediate_operand with
17724         vector_operand.
17725         * config/i386/sse.md: Replace nonimmediate_operand with
17726         vector_operand and m constraint with Bm constraint on SSE
17727         patterns with 16-byte memory operand.
17728         * config/i386/subst.md (round_nimm_predicate): Replace
17729         nonimmediate_operand with vector_operand.
17730         (round_saeonly_nimm_predicate): Likewise.
17731         (round_saeonly_nimm_scalar_predicate): New.
17733 2016-01-05  H.J. Lu  <hongjiu.lu@intel.com>
17735         PR target/68991
17736         * config/i386/constraints.md (Bm): New constraint.
17737         * config/i386/predicates.md (vector_memory_operand): New
17738         predicate.
17739         * config/i386/sse.md: Replace xm with xBm in plusminus and
17740         any_logic patterns.
17742 2016-01-05  Sandra Loosemore  <sandra@codesourcery.com>
17744         PR 1078
17745         * doc/extend.texi (V850 Function Attributes): New section.
17746         (V850 Variable Attributes): New section.
17748 2016-01-05  Sandra Loosemore  <sandra@codesourcery.com>
17750         PR 1078
17751         * doc/extend.texi (MicroBlaze Function Attributes): Document
17752         interrupt_handler and fast_interrupt attributes.
17754 2016-01-05  Sergei Trofimovich  <siarheit@google.com>
17756         PR other/60465
17757         * config/ia64/ia64.c (ia64_expand_load_address): Use gprel64
17758         for local symbolic operands.
17759         * config/ia64/predicates.md (local_symbolic_operand64): New
17760         predicate.
17762 2016-01-05  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
17764         PR rtl-optimization/68651
17765         * combine.c (combine_simplify_rtx): Canonicalize x + x into
17766         x << 1.
17768 2016-01-05  Nathan Sidwell  <nathan@acm.org>
17770         * alias.c (compare_base_decls): Use symtab_node::get.
17772 2016-01-05  Nick Clifton  <nickc@redhat.com>
17774         PR target/68770
17775         * ira-costs.c (copy_cost): Initialise the t_icode field of the
17776         secondary_reload_info structure.
17778         PR target/66655
17779         * config/i386/cygming.h (MAKE_DECL_ONE_ONLY): Define to use weak
17780         decls if weak support is available.
17782 2016-01-04  Martin Sebor  <msebor@redhat.com>
17784         * doc/invoke.texi (Warning Options): Document -Winvalid-memory-model.
17786 2016-01-04  Michael Meissner  <meissner@linux.vnet.ibm.com>
17788         * config/rs6000/rs6000-cpus.def (ISA_3_0_MASKS_SERVER): Add
17789         OPTION_MASK_P9_DFORM.
17791         * config/rs6000/constraints.md (wo constraint): New constraint for
17792         ISA 3.0 (power9).
17794         * config/rs6000/rs6000.c (rs6000_debug_reg_global): Add support
17795         for wo constraint.
17796         (rs6000_init_hard_regno_mode_ok): Likewise.
17798         * config/rs6000/rs6000.h (r6000_reg_class_enum): Add support for
17799         wo constraint.
17801         * config/rs6000/altivec.md (altivec_vperm_<mode>): Clean up vperm
17802         expanders not to have constraints.  Add support for ISA 3.0 xxperm
17803         instruction.  Add support for fusing xxlor with xxperm.
17804         (altivec_vperm_<mode>_internal): Likewise.
17805         (altivec_vperm_v8hiv16qi): Likewise.
17806         (altivec_vperm_<mode>v16q): Likewise.
17807         (altivec_vperm_<mode>_uns): Likewise.
17808         (vperm_v8hiv4si): Likewise.
17809         (vperm_v16qiv8hi): Likewise.
17811         * doc/md.texi (RS/6000 constraints): Document wo constraint.
17813 2016-01-04  Jakub Jelinek  <jakub@redhat.com>
17815         Update copyright years.
17817         * gcc.c (process_command): Update copyright notice dates.
17818         * gcov-dump.c (print_version): Ditto.
17819         * gcov.c (print_version): Ditto.
17820         * gcov-tool.c (print_version): Ditto.
17821         * gengtype.c (create_file): Ditto.
17822         * doc/cpp.texi: Bump @copying's copyright year.
17823         * doc/cppinternals.texi: Ditto.
17824         * doc/gcc.texi: Ditto.
17825         * doc/gccint.texi: Ditto.
17826         * doc/gcov.texi: Ditto.
17827         * doc/install.texi: Ditto.
17828         * doc/invoke.texi: Ditto.
17830 2016-01-04  Eric Botcazou  <ebotcazou@adacore.com>
17832         * config/arm/arm.c (aapcs_vfp_allocate_return_reg): Treat all integer
17833         modes larger than TImode as TImode if NEON is not enabled.
17835 2016-01-04  Eric Botcazou  <ebotcazou@adacore.com>
17837         PR target/69100
17838         * config/sparc/sparc.h (FUNCTION_ARG_REGNO_P): Return true in 64-bit
17839         mode for %f0-%f31 only if TARGET_FPU.
17841 2016-01-04  Eric Botcazou  <ebotcazou@adacore.com>
17843         PR target/69072
17844         * config/sparc/sparc.c (scan_record_type): Take into account subfields
17845         to compute the PACKED_P predicate.
17846         (function_arg_record_value): Minor tweaks.
17848 2016-01-04  Thomas Preud'homme  <thomas.preudhomme@arm.com>
17850         * doc/install.texi (--with-multilib-list): Describe the meaning of the
17851         option for arm*-*-* targets.
17853 2016-01-03  Sandra Loosemore  <sandra@codesourcery.com>
17855         * doc/extend.texi (Common Function Attributes): Move docs for
17856         MSP430-specific attributes to....
17857         (MSP430 Function Attributes): ...here.  Delete the redundant
17858         entries and copy-edit the remaining text.
17859         (MSP430 Variable Attributes): Use uniform format for index
17860         entries and add a cross-reference to the corresponding function
17861         attribute docs.
17863 2016-01-03  Vladimír Čunát  <vcunat@gmail.com>
17865         * doc/invoke.texi (RS/6000 and PowerPC Options): Fix
17866         -finite-math typo.
17867         (x86 Options): Likewise.
17869 2016-01-01  Sandra Loosemore  <sandra@codesourcery.com>
17871         PR 1078
17873         * extend.texi (Common Function Attributes) <no_stack_limit>: New.
17874         * invoke.texi (Code Gen Options) <-fno-stack-limit>: Add pointer
17875         to corresponding attribute.
17877 2016-01-01  Sandra Loosemore  <sandra@codesourcery.com>
17879         * doc/extend.texi (Common Function Attributes) <noplt>: Move
17880         to correct alphabetization of table.  Copy-edit and correct
17881         markup.
17882         <stack_protect>: Likewise.
17883         <target_clones>: Likewise.
17884         <simd>: Likewise.
17885         * doc/invoke.texi (Optimize Options) <-fstack-protector-explicit>:
17886         Correct punctuation.
17887         (Code Gen Options) <-fno-plt>: Copy-edit.
17889 2016-01-01  Bernd Edlinger  <bernd.edlinger@hotmail.de>
17891         PR target/68917
17892         * config/tilegx/tilegx.md (clzsi2): Don't create DI subregs of
17893         SI values.  Explicitly convert SI to DI and vice-versa.
17895 2016-01-01  Jakub Jelinek  <jakub@redhat.com>
17897         PR tree-optimization/69070
17898         * tree-ssa-math-opts.c (gimple_expand_builtin_pow): Only test
17899         REAL_VALUE_ISSIGNALING_NAN on arg0 if arg0 is a REAL_CST.
17901         PR sanitizer/69055
17902         * ubsan.c (ubsan_instrument_float_cast): Call
17903         initialize_sanitizer_builtins.
17905         PR target/69015
17906         * ifcvt.c (find_cond_trap): Give up if returnjump_p (jump).
17908 Copyright (C) 2016 Free Software Foundation, Inc.
17910 Copying and distribution of this file, with or without modification,
17911 are permitted in any medium without royalty provided the copyright
17912 notice and this notice are preserved.