2016-10-17 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / ChangeLog
blobad04a21c0b3c86ca414b392b09636ea2fa6b834a
1 2016-10-17  Richard Biener  <rguenther@suse.de>
3         * bb-reorder.c (reorder_basic_blocks_simple): Clear BB_VISITED
4         before using it.
6 2016-10-17  Prathamesh Kulkarni  <prathamesh.kulkarni@linaro.org>
8         PR tree-optimization/71636
9         * match.pd (x & ((1 << b) - 1) -> x & ~(~0 << b)): New pattern.
11 2016-10-17  Richard Biener  <rguenther@suse.de>
13         * gimplify.c (gimplify_function_tree): Do not move the outer
14         binds block.
16 2016-10-17  Jakub Jelinek  <jakub@redhat.com>
18         * langhooks.h (struct lang_hooks_for_decls): Remove
19         function_decl_explicit_p, function_decl_deleted_p and
20         function_decl_defaulted hooks.  Add decl_dwarf_attribute hook.
21         * langhooks-def.h (lhd_decl_dwarf_attribute): Declare.
22         (LANG_HOOKS_FUNCTION_DECL_EXPLICIT_P,
23         LANG_HOOKS_FUNCTION_DECL_DELETED_P,
24         LANG_HOOKS_FUNCTION_DECL_DEFAULTED): Remove.
25         (LANG_HOOKS_DECL_DWARF_ATTRIBUTE): Define.
26         (LANG_HOOKS_DECLS): Remove LANG_HOOKS_FUNCTION_DECL_EXPLICIT_P,
27         LANG_HOOKS_FUNCTION_DECL_DELETED_P and
28         LANG_HOOKS_FUNCTION_DECL_DEFAULTED.  Add
29         LANG_HOOKS_DECL_DWARF_ATTRIBUTE.
30         * langhooks.c (lhd_decl_dwarf_attribute): New function.
31         * dwarf2out.c (gen_subprogram_die): Use
32         lang_hooks.decls.decl_dwarf_attribute instead of
33         lang_hooks.decls.function_decl_*.
35 2016-10-16  Eric Botcazou  <ebotcazou@adacore.com>
37         PR ada/37139
38         PR ada/67205
39         * common.opt (-ftrampolines): New option.
40         * doc/invoke.texi (Code Gen Options): Document it.
41         * doc/tm.texi.in (Trampolines): Add TARGET_CUSTOM_FUNCTION_DESCRIPTORS.
42         * doc/tm.texi: Regenerate.
43         * builtins.def: Add init_descriptor and adjust_descriptor.
44         * builtins.c (expand_builtin_init_trampoline): Do not issue a warning
45         on platforms with descriptors.
46         (expand_builtin_init_descriptor): New function.
47         (expand_builtin_adjust_descriptor): Likewise.
48         (expand_builtin) <BUILT_IN_INIT_DESCRIPTOR>: New case.
49         <BUILT_IN_ADJUST_DESCRIPTOR>: Likewise.
50         * calls.c (prepare_call_address): Remove SIBCALLP parameter and add
51         FLAGS parameter.  Deal with indirect calls by descriptor and adjust.
52         Set STATIC_CHAIN_REG_P on the static chain register, if any.
53         (call_expr_flags): Set ECF_BY_DESCRIPTOR for calls by descriptor.
54         (expand_call): Likewise.  Move around call to prepare_call_address
55         and pass all flags to it.
56         * cfgexpand.c (expand_call_stmt): Reinstate CALL_EXPR_BY_DESCRIPTOR.
57         * gimple.h (enum gf_mask): New GF_CALL_BY_DESCRIPTOR value.
58         (gimple_call_set_by_descriptor): New setter.
59         (gimple_call_by_descriptor_p): New getter.
60         * gimple.c (gimple_build_call_from_tree): SetCALL_EXPR_BY_DESCRIPTOR.
61         (gimple_call_flags): Deal with GF_CALL_BY_DESCRIPTOR.
62         * langhooks.h (struct lang_hooks): Add custom_function_descriptors.
63         * langhooks-def.h (LANG_HOOKS_CUSTOM_FUNCTION_DESCRIPTORS): Define.
64         (LANG_HOOKS_INITIALIZER): Add LANG_HOOKS_CUSTOM_FUNCTION_DESCRIPTORS.
65         * rtl.h (STATIC_CHAIN_REG_P): New macro.
66         * rtlanal.c (find_first_parameter_load): Skip static chain registers.
67         * target.def (custom_function_descriptors): New POD hook.
68         * tree.h (FUNC_ADDR_BY_DESCRIPTOR): New flag on ADDR_EXPR.
69         (CALL_EXPR_BY_DESCRIPTOR): New flag on CALL_EXPR.
70         * tree-core.h (ECF_BY_DESCRIPTOR): New mask.
71         Document FUNC_ADDR_BY_DESCRIPTOR and CALL_EXPR_BY_DESCRIPTOR.
72         * tree.c (make_node_stat) <tcc_declaration>: Use FUNCTION_ALIGNMENT.
73         (build_common_builtin_nodes): Initialize init_descriptor and
74         adjust_descriptor.
75         * tree-nested.c: Include target.h.
76         (struct nesting_info): Add 'any_descr_created' field.
77         (get_descriptor_type): New function.
78         (lookup_element_for_decl): New function extracted from...
79         (create_field_for_decl): Likewise.
80         (lookup_tramp_for_decl): ...here.  Adjust.
81         (lookup_descr_for_decl): New function.
82         (convert_tramp_reference_op): Deal with descriptors.
83         (build_init_call_stmt): New function extracted from...
84         (finalize_nesting_tree_1): ...here.  Adjust and deal withdescriptors.
85         * defaults.h (FUNCTION_ALIGNMENT): Define.
86         (TRAMPOLINE_ALIGNMENT): Set to above instead of FUNCTION_BOUNDARY.
87         * config/i386/i386.h (TARGET_CUSTOM_FUNCTION_DESCRIPTORS): Define.
88         * config/ia64/ia64.h (TARGET_CUSTOM_FUNCTION_DESCRIPTORS): Likewise.
89         * config/rs6000/rs6000.h (TARGET_CUSTOM_FUNCTION_DESCRIPTORS):Likewise.
90         * config/sparc/sparc.h (TARGET_CUSTOM_FUNCTION_DESCRIPTORS): Likewise.
92 2016-10-16  Eric Botcazou  <ebotcazou@adacore.com>
94         * config/sparc/sparc.c (sparc_expand_vector_init): Only accept literal
95         constants in CONST_VECTORs.
97 2016-10-15  Eric Botcazou  <ebotcazou@adacore.com>
99         * config/sparc/sparc.c (sparc_expand_vec_perm_bmask): Use a scratch
100         register as destination of bmask.
101         (vector_init_bshuffle): Likewise.
102         * config/sparc/sparc.md (vec_perm_constv8qi): Likewise.
103         (bmaskdi_vis): Enable only in 64-bit mode.
105 2016-10-15  Segher Boessenkool  <segher@kernel.crashing.org>
107         * config/rs6000/rs6000.c (rs6000_get_separate_components): Do not
108         make LR a separately shrink-wrapped component unless savres_strategy
109         contains all of {SAVE,REST}_INLINE_{GPRS,FPRS,VRS}.  Do not wrap
110         GPRs unless both {SAVE,REST}_INLINE_GPRS.  Do not disallow all
111         wrapping when not both {SAVE,REST}_INLINE_GPRS.
113 2016-10-15  Eric Botcazou  <ebotcazou@adacore.com>
115         * optabs.c (expand_parity): Fix mode mismatch, add final conversion
116         and keep looping on failure.
118 2016-10-14  David Malcolm  <dmalcolm@redhat.com>
120         * print-rtl-function.c (print_edge): Omit "(flags)" when none are
121         set.
122         (print_rtx_function): Update example in comment for...
123         * print-rtl.c (print_rtx_operand_code_r): In compact mode, print
124         non-virtual pseudos with a '%' sigil followed by the regno, offset
125         by (LAST_VIRTUAL_REGISTER + 1), so that the first non-virtual
126         pseudo is dumped as "%0".
128 2016-10-14  Jakub Jelinek  <jakub@redhat.com>
130         PR middle-end/77959
131         * expr.c (expand_expr_real_1) <case CONST_DECL>: For EXPAND_WRITE
132         return a MEM.
134 2016-10-14  Eric Botcazou  <ebotcazou@adacore.com>
136         * config/sparc/sparc-passes.def: New file.
137         * config/sparc/t-sparc (PASSES_EXTRA): Add sparc-passes.def.
138         * config/sparc/sparc-protos.h (make_pass_work_around_errata): New.
139         * config/sparc/sparc.c (sparc_option_override): Don't register passes.
141 2016-10-14  Pat Haugen  <pthaugen@us.ibm.com>
143         * loop-unroll.c (unroll_loop_runtime_iterations): Condition initial
144         loop peel to loops with exit test at the beginning.
146 2016-10-14  Pat Haugen  <pthaugen@us.ibm.com>
148         PR rtl-optimization/68212
149         * cfgloopmanip.c (duplicate_loop_to_header_edge): Use preheader edge
150         frequency when computing scale factor for peeled copies.
151         * loop-unroll.c (unroll_loop_runtime_iterations): Fix freq/count
152         values for switch/peel blocks/edges.
154 2016-10-14  Pedro Alves  <palves@redhat.com>
156         * coretypes.h (OVERRIDE, FINAL): Delete, moved to include/ansidecl.h.
158 2016-10-14  Catherine Moore  <clm@codesourcery.com>
160         * gcc/config/mips/mips.c (mips_prepare_pch_save): Initialize
161         micromips_globals to zero.
163 2016-10-14  Richard Biener  <rguenther@suse.de>
165         PR tree-optimization/77979
166         * tree-vrp.c (compare_name_with_value): Handle released SSA names
167         in the equivalency sets.
168         (compare_names): Likewise.
170 2016-10-14  Martin Liska  <mliska@suse.cz>
172         * builtins.h(target_char_cst_p): Declare the function.
173         * builtins.c (fold_builtin_memchr): Remove.
174         (target_char_cst_p): Move the function from gimple-fold.c.
175         (fold_builtin_3): Do not call the function.
176         * gimple-fold.c (gimple_fold_builtin_memchr): New function.
177         (gimple_fold_builtin): Call the function.
178         * fold-const-call.c (fold_const_call_1): Handle CFN_BUILT_IN_MEMCHR.
180 2016-10-14  Martin Liska  <mliska@suse.cz>
182         * builtins.c (fold_builtin_strcmp): Remove function.
183         (fold_builtin_strncmp): Likewise.
184         (fold_builtin_2): Remove call of the function.
185         (fold_builtin_3): Likewise.
186         * fold-const-call.c (fold_const_call): Add constant folding
187         for CFN_BUILT_IN_STRCASECMP and CFN_BUILT_IN_STRNCASECMP.
188         * fold-const-call.h (build_cmp_result): Declare the function.
189         * gimple-fold.c (gimple_load_first_char): New function.
190         (gimple_fold_builtin_string_compare): Likewise.
191         (gimple_fold_builtin): Call the function.
193 2016-10-14  Nathan Sidwell  <nathan@acm.org>
195         * gcov-io.c (gcov_open): Deconstify 'mode'.
197 2016-10-14  Martin Liska  <mliska@suse.cz>
199         * fold-const.c (c_getstr): Support of properly \0-terminated
200         string constants.  New argument is added.
201         * fold-const.h: New argument is added.
203 2016-10-14  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
205         * config/aarch64/aarch64.c (aarch64_print_hint_for_core_or_arch):
206         New function.
207         (aarch64_print_hint_for_core): Likewise.
208         (aarch64_print_hint_for_arch): Likewise.
209         (aarch64_validate_march): Use it.  Fix indentation in type signature.
210         (aarch64_validate_mcpu): Use aarch64_print_hint_for_core_or_arch.
211         (aarch64_validate_mtune): Likewise.
212         (aarch64_handle_attr_arch): Likewise.
213         (aarch64_handle_attr_cpu): Likewise.
214         (aarch64_handle_attr_tune): Likewise.
216 2016-10-14  Prathamesh Kulkarni  <prathamesh.kulkarni@linaro.org>
218         * optabs.def: Remove optab function gen_int_libfunc for sdivmod_optab
219         and udivmod_optab.
221 2016-10-13  Andreas Schwab  <schwab@linux-m68k.org>
223         * config/m68k/m68k.c (m68k_option_override): Check
224         opt_fstack_limit_symbol_arg and opt_fstack_limit_register_no
225         instead of stack_limit_rtx.
227 2016-10-13  Jakub Jelinek  <jakub@redhat.com>
229         * dwarf2out.c (gen_member_die): Handle inline static data member
230         definitions.
232 2016-10-13  Nathan Sidwell  <nathan@acm.org>
234         * gcov-io.c (gcov_open): Fix documentation.  Simplify setting
235         gcov_var.mode.  Remove unnecessary fstat.
237 2016-10-13  Segher Boessenkool  <segher@kernel.crashing.org>
239         PR bootstrap/77962
240         * function.c (thread_prologue_and_epilogue_insns): Call all
241         make_*logue_seq in the same order as traditional.  Call them
242         all a second time if shrink_wrapped_separate.
244 2016-10-13  Marek Polacek  <polacek@redhat.com>
246         * Makefile.in (insn-attrtab.o-warn, insn-dfatab.o-warn,
247         insn-latencytab.o-warn, insn-output.o-warn, insn-emit.o-warn): Don't
248         use -Wno-error.
250 2016-10-13  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
252         PR tree-optimization/77937
253         * gimple-ssa-strength-reduction.c (analyze_increments): Set cost
254         to infinite when we have a pointer with an increment of -1.
256 2016-10-13  Thomas Preud'homme  <thomas.preudhomme@arm.com>
258         * coretypes.h: Move MEMMODEL_* macros and enum memmodel definition
259         into ...
260         * memmodel.h: This file.
261         * alias.c, asan.c, auto-inc-dec.c, bb-reorder.c, bt-load.c,
262           caller-save.c, calls.c, ccmp.c, cfgbuild.c, cfgcleanup.c,
263           cfgexpand.c, cfgloopanal.c, cfgrtl.c, cilk-common.c, combine.c,
264           combine-stack-adj.c, common/config/aarch64/aarch64-common.c,
265           common/config/arm/arm-common.c, common/config/bfin/bfin-common.c,
266           common/config/c6x/c6x-common.c, common/config/i386/i386-common.c,
267           common/config/ia64/ia64-common.c, common/config/nvptx/nvptx-common.c,
268           compare-elim.c, config/aarch64/aarch64-builtins.c,
269           config/aarch64/aarch64-c.c, config/aarch64/cortex-a57-fma-steering.c,
270           config/arc/arc.c, config/arc/arc-c.c, config/arm/arm-builtins.c,
271           config/arm/arm-c.c, config/avr/avr.c, config/avr/avr-c.c,
272           config/avr/avr-log.c, config/bfin/bfin.c, config/c6x/c6x.c,
273           config/cr16/cr16.c, config/cris/cris.c, config/darwin-c.c,
274           config/darwin.c, config/epiphany/epiphany.c,
275           config/epiphany/mode-switch-use.c,
276           config/epiphany/resolve-sw-modes.c, config/fr30/fr30.c,
277           config/frv/frv.c, config/ft32/ft32.c, config/h8300/h8300.c,
278           config/i386/i386-c.c, config/i386/winnt.c, config/iq2000/iq2000.c,
279           config/lm32/lm32.c, config/m32c/m32c.c, config/m32r/m32r.c,
280           config/m68k/m68k.c, config/mcore/mcore.c,
281           config/microblaze/microblaze.c, config/mmix/mmix.c,
282           config/mn10300/mn10300.c, config/moxie/moxie.c,
283           config/msp430/msp430.c, config/nds32/nds32-cost.c,
284           config/nds32/nds32-intrinsic.c, config/nds32/nds32-md-auxiliary.c,
285           config/nds32/nds32-memory-manipulation.c,
286           config/nds32/nds32-predicates.c, config/nds32/nds32.c,
287           config/nios2/nios2.c, config/nvptx/nvptx.c, config/pa/pa.c,
288           config/pdp11/pdp11.c, config/rl78/rl78.c, config/rs6000/rs6000-c.c,
289           config/rx/rx.c, config/s390/s390-c.c, config/s390/s390.c,
290           config/sh/sh.c, config/sh/sh-c.c, config/sh/sh-mem.cc,
291           config/sh/sh_treg_combine.cc, config/sol2.c, config/spu/spu.c,
292           config/stormy16/stormy16.c, config/tilegx/tilegx.c,
293           config/tilepro/tilepro.c, config/v850/v850.c, config/vax/vax.c,
294           config/visium/visium.c, config/vms/vms-c.c, config/xtensa/xtensa.c,
295           coverage.c, cppbuiltin.c, cprop.c, cse.c, cselib.c, dbxout.c, dce.c,
296           df-core.c, df-problems.c, df-scan.c, dojump.c, dse.c, dwarf2asm.c,
297           dwarf2cfi.c, dwarf2out.c, emit-rtl.c, except.c, explow.c, expmed.c,
298           expr.c, final.c, fold-const.c, function.c, fwprop.c, gcse.c,
299           ggc-page.c, haifa-sched.c, hsa-brig.c, hsa-gen.c, hw-doloop.c,
300           ifcvt.c, init-regs.c, internal-fn.c, ira-build.c, ira-color.c,
301           ira-conflicts.c, ira-costs.c, ira-emit.c, ira-lives.c, ira.c, jump.c,
302           loop-doloop.c, loop-invariant.c, loop-iv.c, loop-unroll.c,
303           lower-subreg.c, lra.c, lra-assigns.c, lra-coalesce.c,
304           lra-constraints.c, lra-eliminations.c, lra-lives.c, lra-remat.c,
305           lra-spills.c, mode-switching.c, modulo-sched.c, omp-low.c, passes.c,
306           postreload-gcse.c, postreload.c, predict.c, print-rtl-function.c,
307           recog.c, ree.c, reg-stack.c, regcprop.c, reginfo.c, regrename.c,
308           reload.c, reload1.c, reorg.c, resource.c, rtl-chkp.c, rtl-tests.c,
309           rtlanal.c, rtlhooks.c, sched-deps.c, sched-rgn.c, sdbout.c,
310           sel-sched-ir.c, sel-sched.c, shrink-wrap.c, simplify-rtx.c,
311           stack-ptr-mod.c, stmt.c, stor-layout.c, target-globals.c,
312           targhooks.c, toplev.c, tree-nested.c, tree-outof-ssa.c,
313           tree-profile.c, tree-ssa-coalesce.c, tree-ssa-ifcombine.c,
314           tree-ssa-loop-ivopts.c, tree-ssa-loop.c, tree-ssa-reassoc.c,
315           tree-ssa-sccvn.c, tree-vect-data-refs.c, ubsan.c, valtrack.c,
316           var-tracking.c, varasm.c: Include memmodel.h.
317         * genattrtab.c (write_header): Include memmodel.h in generated file.
318         * genautomata.c (main): Likewise.
319         * gengtype.c (open_base_files): Likewise.
320         * genopinit.c (main): Likewise.
321         * genconditions.c (write_header): Include memmodel.h earlier in
322         generated file.
323         * genemit.c (main): Likewise.
324         * genoutput.c (output_prologue): Likewise.
325         * genpeep.c (main): Likewise.
326         * genpreds.c (write_insn_preds_c): Likewise.
327         * genrecog.c (write_header): Likewise.
328         * Makefile.in (PLUGIN_HEADERS): Include memmodel.h
330 2016-10-13  David Malcolm  <dmalcolm@redhat.com>
332         * function-tests.c (selftest::test_expansion_to_rtl): Add "true"
333         for new "compact" param of print_rtx_function.  Check for "cinsn"
334         rather than "insn".
335         * print-rtl-function.c (flag_compact): New decl.
336         (print_rtx_function): Add param "compact" and use it to set
337         flag_compact, adding a description of the effect to the leading
338         comment, and updating the example output.
339         * print-rtl.c (flag_compact): New variable.
340         (print_rtx_operand_code_0): Omit the JUMP_LABEL reference in compact
341         mode.
342         (print_rtx_operand_code_i): When printing source locations, wrap
343         xloc.file in quotes.  Don't print INSN_CODEs in compact mode.
344         (print_rtx_operand_code_r): Don't print regnos for hard regs and
345         virtuals in compact mode.
346         (print_rtx_operand_code_u): Don't print insn UIDs in compact mode,
347         apart from in LABEL_REFs.
348         (print_rtx_operand): In case 'w', don't print in hex in compact mode.
349         Don't print basic block ids in compact mode.
350         (print_rtx):  In compact mode, prefix the code of insns with "c",
351         only print the INSN_UID of CODE_LABELs, and omit their LABEL_NUSES.
352         * print-rtl.h (print_rtx_function): Add "compact" param.
354 2016-10-13  Richard Earnshaw  <rearnsha@arm.com>
356         * arm.h (TARGET_VFP): Delete.
357         (TARGET_VFPD32): Remove references to TARGET_VFP.
358         (TARGET_VFP3, TARGET_VFP5): Likewise.
359         (TARGET_VFP_SINGLE, TARGET_VFP_DOUBLE): Likewise.
360         (TARGET_NEON_FP16): Likewise.
361         (TARGET_FMA): Likewise.
362         (TARGET_CRYPTO): Likewise.
363         (TARGET_NEON): Likewise.
364         (SECONDARY_OUTPUT_RELOAD_CLASS): Likewise.
365         (FUNCTION_ARG_REGNO_P): Likewise.
366         * arm.c (arm_option_check_internal): Likewise.
367         (arm_option_override): Likewise.
368         (use_return_insn): Likewise.
369         (arm_function_value_regno_p): Likewise.
370         (arm_apply_result_size): Likewise.
371         (use_vfp_abi): Likewise.
372         (arm_legitimate_address_outer_p): Likewise.
373         (thumb2_legitimate_address_p): Likewise.
374         (arm_legitimate_index_p): Likewise.
375         (thumb2_legitimate_index_p): Likewise.
376         (arm_legitimate_address): Likewise.
377         (arm_get_vfp_saved_size): Likewise.
378         (arm_emit_vfp_multi_reg_pop): Likewise.
379         (arm_get_frame_offsets): Likewise.
380         (arm_save_coproc_regs): Likewise.
381         (arm_hard_regno_mode_ok): Likewise.
382         (arm_expand_epilogue_apcs_frame): Likewise.
383         (arm_expand_epilogue): Likewise.
384         (arm_file_start): Likewise.
385         (arm_conditional_register_usage): Likewise.
386         (arm_validize_comparison): Use vfp_compare_operand directly.
387         * arm-builtins.c (arm_init_builtins): Remove references to TARGET_VFP.
388         (arm_expand_vfp_builtin): Use TARGET_HARD_FLOAT for detecting
389         unsupported usage.
390         (arm_atomic_assign_expand_fenv): Likewise.
391         * arm.md (divsf3): Likewise.
392         (arm_negsi2): Likewise.
393         (absdf2): Likewise.
394         (arm_movdi): Likewise.
395         (arm_movt): Likewise.
396         (cbranchsf4): Change predicate to vfp_compare_operand.
397         (cbranchdf4): Change predicate to vfp_compare_operand.
398         (cstorehf4): Change predicate to vfp_compare_operand.
399         (cstoresf4): Change predicate to vfp_compare_operand.
400         (cstoredf4): Change predicate to vfp_compare_operand.
401         (vfp_pop_multiple_with_writeback): Remove references to TARGET_VFP.
402         (movhi_insn_arch4, movhi_bytes): Likewise.
403         * constraints.md (Dt): Likewise.
404         (Dp): Likewise.
405         * iterators.md (SDF): Likewise.
406         * predicates.md (arm_float_compare_operand): Delete.
407         (const_double_vcvt_power_of_two_reciprocal): Remove references to
408         TARGET_VFP.
409         (const_double_vcvt_power_of_two): Likewise.
410         * thumb2.md thumb2_movsi_insn): Likewise.
411         * vfp.md (arm_movhi_vfp, thumb2_movhi_vfp): Likewise.
412         (movhf_vfp): Likewise.
413         (arm_movsi_vfp, thumb2_movsi_vfp): Likewise.
414         (movdi_vfp, movdi_vfp_cortexa8): Likewise.
415         (movsf_vfp, thumb2_movsf_vfp): Likewise.
416         (movdf_vfp, thumb2_movdf_vfp): Likewise.
417         (movsfcc_vfp, abssf2_vfp, negsf2_vfp, addsf3_vfp): Likewise.
418         (subsf3_vfp, divsf3_vfp): Likewise.
419         (mulsf3_vfp, mulsf3negsf_vfp, negmulsf3_vfp): Likewise.
420         (mulsf3addsf_vfp, (mulsf3subsf_vfp, mulsf3negsfaddsf_vfp): Likewise.
421         (mulsf3negsfsubsf_vfp): Likewise.
422         (truncsisf2_vfp, fixuns_truncsfsi2, floatsisf2_vfp): Likewise.
423         (floatunssisf2, sqrtsf2_vfp): Likewise.
424         (movcc_vfp): Likewise.
425         (cmpsf_split_vfp, cmpsf_trap_split_vfp): Likewise.
426         (cmpsf_vfp, cmpsf_trap_vfp): Likewise.
427         (push_multi_vfp): Likewise.
428         (set_fpscr, get_fpscr): Likewise.
429         * arm-c.c (arm_cpu_builtins): Unconditionally define __VFP_FP__.
431 2016-10-13  Richard Earnshaw  <rearnsha@arm.com>
433         * arm.h (TARGET_VFP): Unconditionally define to 1.
434         (arm_fpu_desc): Remove 'model' field.
435         (TARGET_FPU_MODEL): Delete.
436         * arm.c (all_fpus): Don't initialize the model field.
437         (arm_can_inline_p): Don't check the FPU model.
438         * arm-fpus.def: Remove redundant model field from all FPU
439         descriptions.
441 2016-10-13  Richard Biener  <rguenther@suse.de>
443         PR middle-end/77826
444         * genmatch.c (struct capture): Add value_match member.
445         (commutate): Preserve value_match.
446         (lower_opt_convert): Likewise.
447         (lower_cond): Likewise.
448         (replace_id): Likewise.
449         (struct dt_operand): Add value_match member.
450         (decision_tree::cmp_node): Compare it.
451         (decision_tree::insert_operand): Honor it when finding and
452         when appending a DT_MATCH.
453         (dt_operand::gen_match_op): Generate a type check after
454         operand_equal_p if ! value_match for both GENERIC and GIMPLE.
455         (parser::get_internal_capture_id): New helper.
456         (parser::finish_match_operand): New function lowering @@<id>.
457         (parser::parse_capture): Parse @@<id> as value-match.
458         (parser::parse_expr): Use get_internal_capture_id.
459         (parser::parse_simplify): Call finish_match_operand.
460         (walk_captures): New helper.
461         * match.pd (X - (X / Y) * Y -> X % Y): Use value-matching instead
462         of operand_equal_p.
463         ((X /[ex] A) * A -> X): Likewise.
464         ((X | Y) ^ X -> Y & ~ X): Handle constants properly by using
465         convert[12] and value-matching.
466         ((A | B) & (A | C) ->  A | (B & C)): Likewise.
467         ((X | Y) | Y -> X | Y): Likewise.
468         ((X ^ Y) ^ Y -> X): Likewise.
469         (A - (A & B) -> ~B & A): Likewise.
470         ((T)(P + A) - (T)P -> (T) A): Likewise.
471         ((T)P - (T)(P + A) -> -(T) A): Likewise.
472         ((T)(P + A) - (T)(P + B) -> (T)A - (T)B): Likewise.
473         * doc/match-and-simplify.texi: Amend capture section.
475 2016-10-13  Claudiu Zissulescu  <claziss@synopsys.com>
477         * config/arc/arc.md (umul_600): Remove predicated variant.
478         (umul64_600): Likewise.
480 2016-10-13  Claudiu Zissulescu  <claziss@synopsys.com>
482         * config/arc/arc.h (INSN_LENGTH_ALIGNMENT): Change.
484 2016-10-13  Bin Cheng  <bin.cheng@arm.com>
486         * tree-vect-loop.c (loop_niters_no_overflow): New func.
487         (vect_transform_loop): Call loop_niters_no_overflow.  Pass the
488         no-overflow information to vect_do_peeling_for_loop_bound and
489         vect_gen_vector_loop_niters.
491 2016-10-13  Bin Cheng  <bin.cheng@arm.com>
493         * tree-predcom.c (tree_predictive_commoning_loop): Skip loop that only
494         iterates 1 time.
496 2016-10-13  Bin Cheng  <bin.cheng@arm.com>
498         * tree-vect-loop-manip.c (adjust_vec_debug_stmts): Don't release
499         adjust_vec automatically.
500         (slpeel_add_loop_guard): Remove param cond_expr_stmt_list.  Rename
501         param exit_bb to guard_to.
502         (slpeel_checking_verify_cfg_after_peeling):
503         (set_prologue_iterations):
504         (create_lcssa_for_virtual_phi): New func which is factored out from
505         slpeel_tree_peel_loop_to_edge.
506         (slpeel_tree_peel_loop_to_edge):
507         (iv_phi_p): New func.
508         (vect_can_advance_ivs_p): Call iv_phi_p.
509         (vect_update_ivs_after_vectorizer): Call iv_phi_p.  Directly insert
510         new gimple stmts in basic block.
511         (vect_do_peeling_for_loop_bound):
512         (vect_do_peeling_for_alignment):
513         (vect_gen_niters_for_prolog_loop): Rename to...
514         (vect_gen_prolog_loop_niters): ...Rename from.  Change parameters and
515         adjust implementation.
516         (vect_update_inits_of_drs): Fix code style issue.  Convert niters to
517         sizetype if necessary.
518         (vect_build_loop_niters): Move to here from tree-vect-loop.c.  Change
519         it to external function.
520         (vect_gen_scalar_loop_niters, vect_gen_vector_loop_niters): New.
521         (vect_gen_vector_loop_niters_mult_vf): New.
522         (slpeel_update_phi_nodes_for_loops): New.
523         (slpeel_update_phi_nodes_for_guard1): Reimplement.
524         (find_guard_arg, slpeel_update_phi_nodes_for_guard2): Reimplement.
525         (slpeel_update_phi_nodes_for_lcssa, vect_do_peeling): New.
526         * tree-vect-loop.c (vect_build_loop_niters): Move to file
527         tree-vect-loop-manip.c
528         (vect_generate_tmps_on_preheader): Delete.
529         (vect_transform_loop): Rename vectorization_factor to vf.  Call
530         vect_do_peeling instead of vect_do_peeling-* functions.
531         * tree-vectorizer.h (vect_do_peeling): New decl.
532         (vect_build_loop_niters, vect_gen_vector_loop_niters): New decls.
533         (vect_do_peeling_for_loop_bound): Delete.
534         (vect_do_peeling_for_alignment): Delete.
536 2016-10-13  Bin Cheng  <bin.cheng@arm.com>
538         * tree-vect-loop-manip.c (slpeel_tree_duplicate_loop_to_edge_cfg): Put
539         duplicated loop after its preheader and after the original loop.
541 2016-10-13  Bin Cheng  <bin.cheng@arm.com>
543         * tree-vect-loop.c (vect_analyze_loop_2): Check and skip loop if it
544         has no enough iterations for LOOP_VINFO_PEELING_FOR_GAPS.
546 2016-10-13  Bin Cheng  <bin.cheng@arm.com>
548         * tree-vect-loop.c (vectorizable_live_operation): Support handling
549         for live variable outside loop but not in lcssa form.
551 2016-10-13  Bin Cheng  <bin.cheng@arm.com>
553         * cfg.c (reset_original_copy_tables): New func.
554         * cfg.h (reset_original_copy_tables): New decl.
556 2016-10-13  Jakub Jelinek  <jakub@redhat.com>
558         PR c/77946
559         * tree.h (FALLTHROUGH_LABEL_P): Use private_flag instead of
560         public_flag.
561         * varasm.c (default_binds_local_p_3): Formatting fix.
563 2016-10-13  Bin Cheng  <bin.cheng@arm.com>
565         * tree-vect-loop-manip.c (slpeel_can_duplicate_loop_p): Fix code
566         style issue.
567         (vect_do_peeling_for_loop_bound, vect_do_peeling_for_alignment):
568         Remove useless code.
570 2016-10-13  Martin Liska  <mliska@suse.cz>
572         PR tree-optimization/77943
573         * tree-ssa-tail-merge.c (merge_stmts_p): Do not merge BBs with
574         a different EH landing pads.
576 2016-10-13  Jakub Jelinek  <jakub@redhat.com>
578         PR target/77957
579         * hooks.h (hook_tree_void_null): Declare.
580         * hooks.c (hook_tree_void_null): New function.
581         * langhooks.c (lhd_return_null_tree_v): Remove.
582         * langhooks-def.h (lhd_return_null_tree_v): Remove.
583         * cfgexpand.c (stack_protect_prologue): If guard_decl is NULL,
584         set y to const0_rtx.
585         * function.c (stack_protect_epilogue): Likewise.
586         * config/tilepro/tilepro.c (TARGET_STACK_PROTECT_GUARD): Redefine
587         if TARGET_THREAD_SSP_OFFSET is defined.
588         * config/s390/s390.c (TARGET_STACK_PROTECT_GUARD): Likewise.
589         * config/sparc/sparc.c (TARGET_STACK_PROTECT_GUARD): Likewise.
590         * config/tilegx/tilegx.c (TARGET_STACK_PROTECT_GUARD): Likewise.
591         * config/rs6000/rs6000.c (TARGET_STACK_PROTECT_GUARD): Likewise.
592         * config/i386/i386.c (TARGET_STACK_PROTECT_GUARD): Likewise.
593         (ix86_stack_protect_guard): New function.
595 2016-10-13  Richard Biener  <rguenther@suse.de>
597         * dwarf2out.c (tree_add_const_value_attribute): Do not try
598         rtl_for_decl_init during early phase.
599         (gen_variable_die): Do not create locations during early phase.
600         (gen_label_die): Likewise.
601         (decls_for_scope): Do not waste time handling BLOCK_NONLOCALIZED_VARs
602         twice.
604 2016-10-12  Richard Biener  <rguenther@suse.de>
606         * tree-vrp.c (evrp_dom_walker::try_find_new_range): Renamed from
607         try_add_new_range and made to eturn new range.
608         (evrp_dom_walker::before_dom_children): Push op1 value range before
609         pushing op0 value range.
611 2016-10-12  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
613         PR tree-optimization/77937
614         * gimple-ssa-strength-reduction.c (analyze_increments): Use
615         POINTER_TYPE_P on the candidate type to determine whether
616         candidates in this chain require pointer arithmetic.
618 2016-10-12  Eric Botcazou  <ebotcazou@adacore.com>
620         * config/visium/visium.c (visium_gimplify_va_arg): Emit a big-endian
621         correction if the type is smaller than a word.
622         (visium_select_cc_mode): Add ... fall through ... comment.
624 2016-10-12  Segher Boessenkool  <segher@kernel.crashing.org>
626         * config/rs6000/rs6000.c (machine_function): Add new fields
627         gpr_is_wrapped_separately and lr_is_wrapped_separately.
628         (TARGET_SHRINK_WRAP_GET_SEPARATE_COMPONENTS,
629         TARGET_SHRINK_WRAP_COMPONENTS_FOR_BB,
630         TARGET_SHRINK_WRAP_DISQUALIFY_COMPONENTS,
631         TARGET_SHRINK_WRAP_EMIT_PROLOGUE_COMPONENTS,
632         TARGET_SHRINK_WRAP_EMIT_EPILOGUE_COMPONENTS,
633         TARGET_SHRINK_WRAP_SET_HANDLED_COMPONENTS): Define.
634         (rs6000_get_separate_components): New function.
635         (rs6000_components_for_bb): New function.
636         (rs6000_disqualify_components): New function.
637         (rs6000_emit_prologue_components): New function.
638         (rs6000_emit_epilogue_components): New function.
639         (rs6000_set_handled_components): New function.
640         (rs6000_emit_prologue): Don't emit LR save if lr_is_wrapped_separately.
641         Don't emit GPR saves if gpr_is_wrapped_separately for that register.
642         (restore_saved_lr): Don't restore LR if lr_is_wrapped_separately.
643         (rs6000_emit_epilogue): Don't emit GPR restores if
644         gpr_is_wrapped_separately for that register.  Don't make a
645         REG_CFA_RESTORE note for registers we did not restore, either.
647 2016-10-12  Segher Boessenkool  <segher@kernel.crashing.org>
649         * function.c (thread_prologue_and_epilogue_insns): Call
650         try_shrink_wrapping_separate.  Compute the prologue_seq afterwards,
651         if it has possibly changed.  Compute the split_prologue_seq and
652         epilogue_seq later, too.
653         * shrink-wrap.c: #include cfgbuild.h and insn-config.h.
654         (dump_components): New function.
655         (struct sw): New struct.
656         (SW): New function.
657         (init_separate_shrink_wrap): New function.
658         (fini_separate_shrink_wrap): New function.
659         (place_prologue_for_one_component): New function.
660         (spread_components): New function.
661         (disqualify_problematic_components): New function.
662         (emit_common_heads_for_components): New function.
663         (emit_common_tails_for_components): New function.
664         (insert_prologue_epilogue_for_components): New function.
665         (try_shrink_wrapping_separate): New function.
666         * shrink-wrap.h: Declare try_shrink_wrapping_separate.
668 2016-10-12  Segher Boessenkool  <segher@kernel.crashing.org>
670         * regrename.c (build_def_use): Invalidate chains that have a
671         REG_CFA_RESTORE on some instruction.
673 2016-10-12  Segher Boessenkool  <segher@kernel.crashing.org>
675         * dce.c (delete_unmarked_insns): Don't delete instructions with
676         a REG_CFA_RESTORE note.
678 2016-10-12  Segher Boessenkool  <segher@kernel.crashing.org>
680         * common.opt (-fshrink-wrap-separate): New flag.
681         * doc/invoke.texi: Document it.
682         * doc/tm.texi.in (Shrink-wrapping separate components): New subsection.
683         * doc/tm.texi: Regenerate.
684         * emit-rtl.h (struct rtl_data): New field shrink_wrapped_separate.
685         * target.def (shrink_wrap): New hook vector.
686         (get_separate_components, components_for_bb, disqualify_components,
687         emit_prologue_components, emit_epilogue_components,
688         set_handled_components): New hooks.
690 2016-10-12  Segher Boessenkool  <segher@kernel.crashing.org>
692         * config/rs6000/rs6000.c (rs6000_return_in_memory): Warn for
693         vector return by reference only if -Wpsabi.
694         (rs6000_pass_by_reference): Similarly, for argument passing.
696 2016-10-12  David Malcolm  <dmalcolm@redhat.com>
698         * function-tests.c: Include "print-rtl.h".
699         (selftest::test_expansion_to_rtl): Call print_rtx_function on the
700         function, and verify what is dumped.
701         * print-rtl-function.c (print_edge): New function.
702         (begin_any_block): New function.
703         (end_any_block): New function.
704         (can_have_basic_block_p): New function.
705         (print_rtx_function): Track the basic blocks of insns in the
706         chain, wrapping those that are within blocks within "(block)"
707         directives.  Remove the "(cfg)" directive.
709 2016-10-12  David Malcolm  <dmalcolm@redhat.com>
711         * selftest.c (selftest::read_file): New function.
712         (selftest::test_read_file): New function.
713         (selftest::selftest_c_tests): Call test_read_file.
714         * selftest.h (selftest::read_file): New decl.
716 2016-10-12  Richard Biener  <rguenther@suse.de>
718         PR debug/77947
719         * cgraphunit.c (analyze_functions): Preserve cgraph nodes
720         function context.
722 2016-10-12  Thomas Schwinge  <thomas@codesourcery.com>
724         * lto-streamer.c: Fix LTO_STREAMER_DEBUG build.
726         * dwarf2out.c (dwarf2_lineno_debug_hooks): Use
727         dwarf2out_assembly_start.
729         * Makefile.in (SELFTEST_FLAGS): Add -nostdinc.
731         * Makefile.in (SELFTEST_FLAGS): New variable.
732         (s-selftest, selftest-gdb, selftest-valgrind): Use it.
734         * vmsdbgout.c (vmsdbg_debug_hooks): Add filename parameter to
735         early_finish hook.
737 2016-10-12  Georg-Johann Lay  <avr@gjlay.de>
739         * rtl.h (struct rtx_def): Comment how RTX_FLAGS will be
740         dumped in RTL dumps.
742 2016-10-12  Martin Liska  <mliska@suse.cz>
744         * gimple-fold.c (create_tmp_reg_or_ssa_name): New function.
745         (gimple_fold_builtin_memory_op): Use the function.
746         (gimple_fold_builtin_strchr): Likewise.
747         (gimple_fold_builtin_strcat): Likewise.
748         (gimple_build): Likewise.
750 2016-10-12  Nathan Sidwell  <nathan@acm.org>
752         * diagnostic.c (diagnostc_report_diagnostic): Fix formatting.
754 2016-10-12  Pierre-Marie de Rodat  <derodat@adacore.com>
756         * dwarf2out.c (int_loc_descriptor): Generate opcodes for another
757         equivalent 32-bit constant (modulo 2**32) when that yields
758         smaller instructions.
759         (size_of_int_loc_descriptor): Update accordingly.
761 2016-10-12  Pierre-Marie de Rodat  <derodat@adacore.com>
763         * dwarf2out.c (dwarf2out_early_global_decl): For nested
764         functions, call dwarf2out_decl on the parent function first.
766 2016-10-12  Richard Biener  <rguenther@suse.de>
768         * match.pd ((X /[ex] A) * A -> X): Remove unnecessary constraint
769         on the conversion.
771 2016-10-12  Richard Biener  <rguenther@suse.de>
773         * tree-ssa-propagate.c
774         (substitute_and_fold_dom_walker::before_dom_children): Do not
775         ignore ASSERT_EXPRs but only preserve them.
776         * tree-vrp.c (remove_range_assertions): Deal with ASSERT_EXPRs
777         that have been propagated into.
778         (vrp_finalize): Enable DCE for substitute_and_fold.
780 2016-10-12  Richard Biener  <rguenther@suse.de>
782         PR tree-optimization/77920
783         * tree-vrp.c (simplify_div_or_mod_using_ranges): Simplify.
784         (simplify_min_or_max_using_ranges): Pass in gsi and use it.
785         (simplify_abs_using_ranges): Likewise.
786         (simplify_conversion_using_ranges): Likewise.
787         (simplify_stmt_using_ranges): Adjust.
789 2016-10-12  Jakub Jelinek  <jakub@redhat.com>
791         PR tree-optimization/77929
792         * tree-ssa-reassoc.c (optimize_range_tests_var_bound): Handle
793         (*ops)[ranges[i].idx]->op != ranges[i].exp case.
795 2016-10-12  Aaron Sawdey  <acsawdey@linux.vnet.ibm.com>
797         PR target/77934
798         * config/rs6000/vmx.md (vsx_concat_<mode>): The mtvsrdd instruction
799         needs a base register for arg 1.
801 2016-10-12  Jakub Jelinek  <jakub@redhat.com>
803         * common.opt (Wimplicit-fallthrough) Turn into alias to
804         -Wimplicit-fallthrough=3.  Remove EnabledBy.
805         (Wimplicit-fallthrough=): New option.
806         * gimplify.c (warn_implicit_fallthrough_r): Use
807         OPT_Wimplicit_fallthrough_ instead of OPT_Wimplicit_fallthrough.
808         * doc/invoke.texi (-Wimplicit-fallthrough): Document as alias
809         to -Wimplicit-fallthrough=3.
810         (-Wimplicit-fallthrough=): Document.
812 2016-10-11  Eric Botcazou  <ebotcazou@adacore.com>
814         * config/sparc/sparc.c (emit_scc_insn): Remove direct support for EQ
815         and GEU in DImode if TARGET_SUBXC.
816         * config/sparc/sparc.md (seqdi<W:mode>_zero): Remove TARGET_SUBXC.
817         (seqdi<W:mode>_zero_subxc): Delete.
818         (neg_seqdi<W:mode>_zero): Remove TARGET_VIS3.
819         (neg_seqdi<W:mode>_zero_vis3): Delete.
820         (plus_seqdi<W:mode>_zero): Likewise.
821         (minus_seqdi<W:mode>_zero): Likewise.
822         (plus_plus_sltu<W:mode>): Accept only register.
823         (addx<W:mode>): Likewise.
824         (plus_sltu<W:mode>_vis3): Likewise.
825         (plus_plus_sltu<W:mode>_vis3): Likewise.
826         (neg_sgeu<W:mode>_vis3): Delete.
827         (minus_sgeu<W:mode>_vis3): Likewise.
828         (addxc<W:mode>): Accept only registers.
829         (neg_sltu<W:mode>_subxc): Write %%g0 instead of 0.
830         (minus_neg_sltu<W:mode>_subxc): Accept only register.
831         (neg_plus_sltu<W:mode>_subxc): Likewise.
832         (minus_sltu<W:mode>_subxc): Write %%g0 instead of 0.
833         (minus_minus_sltu<W:mode>_subxc): Accept only register.
834         (sgeu<W:mode>_insn_subxc): Delete.
835         (plus_sgeu<W:mode>_subxc): Likewise.
836         (subxc<W:mode>): Accept only register.
837         (scc splitter): Split always GEU again.
839 2016-10-11  Jeff Law  <law@redhat.com>
841         PR tree-optimization/77424
842         * tree-ssa-threadupdate.c (thread_through_all_blocks): Remove
843         dead conditionals.  Assert that all e->aux fields are NULL.
845 2016-10-11  David Malcolm  <dmalcolm@redhat.com>
847         * print-rtl.c (print_rtx): Rename "i" to "idx".  Split out the
848         operand-printing "switch" statement into...
849         (print_rtx_operand_code_0): ...this new function, ...
850         (print_rtx_operand_code_e): ...this new function, ...
851         (print_rtx_operand_codes_E_and_V): ...this new function, ...
852         (print_rtx_operand_code_i): ...this new function, ...
853         (print_rtx_operand_code_r): ...this new function, ...
854         (print_rtx_operand_code_u): ...this new function, ...
855         (print_rtx_operand): ...and this new function.
857 2016-10-11  Uros Bizjak  <ubizjak@gmail.com>
859         * config/alpha/alpha-passes.def: New file.
860         * config/alpha/t-alpha: New file.
861         * config/alpha/alpha-protos.h (gcc::context, rtl_opt_pass): Declare.
862         (make_pass_handle_trap_shadows): New prototype.
863         (make_pass_align_insns): Ditto.
864         * config/alpha/alpha.c (alpha_option_override): Don't register
865         passes here.
866         * config.gcc (alpha*-*-*) Add alpha/t-alpha to tmake_file.
868 2016-10-11  Michael Meissner  <meissner@linux.vnet.ibm.com>
870         PR target/77924
871         * config/rs6000/rs6000.c (rs6000_init_builtins): Only create the
872         distinct __ibm128 IBM extended double type if long doubles are
873         128-bits and the default format for long double is IEEE 128-bit.
875 2016-10-11  Richard Biener  <rguenther@suse.de>
877         * dwarf2out.c (DEBUG_STR_OFFSETS_SECTION): Remove conditional.
878         (init_sections_and_labels): Use DEBUG_DWO_STR_OFFSETS_SECTION.
879         (verify_die): New function.
880         (dwarf2out_finish): Call it.
881         (output_line_info): Handle case of -gsplit-dwarf without
882         DWARF2_ASM_LINE_DEBUG_INFO.
884 2016-10-11  Richard Biener  <rguenther@suse.de>
886         PR debug/77931
887         * gimple-low.c (lower_gimple_bind): Handle arbitrary common
888         sub-chains of BLOCK_VARS and gimple_bind_vars.
890 2016-10-11  Venkataramanan Kumar  <Venkataramanan.kumar@amd.com>
892         * config/i386/znver1.md : Fix imov/imovx load type reservations.
894 2016-10-11  Eric Botcazou  <ebotcazou@adacore.com>
896         * config/sparc/sparc.opt (msubxc): New option.
897         * doc/invoke.texi (SPARC options): Document it and tidy up.
898         * doc/tm.texi.in (Condition Codes): Adjust SPARC example.
899         * doc/tm.texi: Regenerate.
900         * config/sparc/sparc-modes.def (CC_NOOV): Rename into...
901         (CCNZ): ...this.
902         (CCX_NOOV): Rename into...
903         (CCXNZ): ...this.
904         (CCC): New.
905         (CCXC): Likewise.
906         * config/sparc/predicates.m (fcc_register_operand): Simplify.
907         (fcc0_register_operand): Likewise.
908         (icc_register_operand): New.
909         (icc_or_fcc_register_operand): Simplify.
910         (nz_comparison_operator): New.
911         (c_comparison_operator): Likewise.
912         (noov_compare_operator): Rename into...
913         (icc_comparison_operator): ...this.  Use above predicates.
914         (noov_compare64_operator): Rename into...
915         (v9_comparison_operator): ...this and tidy up.
916         (fcc_comparison_operator): New.
917         (icc_or_fcc_comparison_operator): Likewise.
918         (v9_register_compare_operator): Rename info...
919         (v9_register_comparison_operator): ...this.
920         * config/sparc/sparc.c (TARGET_FIXED_CONDITION_CODE_REGS): Define.
921         (sparc_option_override): Remove redundant VIS masks and add MASK_SUBXC
922         for Niagara-7.
923         (sparc_fixed_condition_code_regs): New function.
924         (select_cc_mode): Remove ATTRIBUTE_UNUSED.  Adjust for CCNZ/CCXNZ
925         renaming and add support for CCC/CCXC.
926         (output_cbranch): Likewise.
927         (sparc_print_operand): Likewise.
928         (gen_v9_scc): Remove obsolete assertion.
929         (emit_scc_insn): Emit RTL directly for EQ and NE.  Add direct support
930         for EQ in DImode if TARGET_SUBXC.  Remove test on TARGET_VIS3 for GEU.
931         (output_cbcond): Remove bogus handling of CC modes.
932         (sparc_register_move_cost): Return 100 for NO_REGS.
933         * config/sparc/sparc.md (W): New mode iterator.
934         (length): Adjust for noov_compare64_operator renaming.
935         (cmpsi_sne): New instruction.
936         (cmpdi_sne): Likewise.
937         (seqdi_special): Delete.
938         (seqdi_special): Likewise.
939         (snesi<P:mode>_special): Likewise.
940         (snedi_special): Likewise.
941         (snedi_special_vis3): Likewise.
942         (snesi patterns): Use W iterator.
943         (snedi patterns): Likewise.  Add TARGET_SUBXC patterns.
944         (sltu patterns): Likewise.
945         (sgeu patterns): Likewise.
946         (scc splitter): Do not split GEU in DImode if TARGET_SUBXC.
947         (normal_branch): Use icc_comparison_operator predicate.
948         (inverted_branch): Likewise.
949         (cbcond_sp32): Use comparison_operator predicate.
950         (cbcond_sp64): Likewise.
951         (normal_int_branch_sp64): Adjust for renaming
952         (inverted_int_branch_sp64): Likewise.
953         (mov<I:mode>_cc_reg_sp64): Likewise.
954         (movsf_cc_reg_sp6): Likewise.
955         (movdf_cc_reg_sp64): Likewise.
956         (movtf_cc_reg_hq_sp64): Likewise.
957         (movtf_cc_reg_sp64): Likewise.
958         (mov<I:mode>_cc_v9): Use icc_or_fcc_comparison_operator predicate.
959         (movsf_cc_v9): Likewise.
960         (movdf_cc_v9): Likewise.
961         (movtf_cc_hq_v9): Likewise.
962         (movtf_cc_v9): Likewise.
963         (adddi3): Call gen_adddi3_sp32.
964         (adddi3_insn_sp32): Rename to...
965         (adddi3_sp32): ...this.  Accept only register_operand as operand #1
966         and use CCCmode for the carry.
967         (addx_extend_sp32): Use CCCmode for the carry.
968         (addx_extend_sp64): Delete.
969         (adddi3_extend_sp32): Use CCCmode for the carry.
970         (cmp_plus patterns): Use CCNZ/CCXNZ mode and add C variants.
971         (subdi3): Call gen_subdi3_sp32.
972         (subdi3_insn_sp32): Rename to...
973         (subdi3_sp32): ...this and use CCmode for the carry.
974         (subx_extend_sp32): Use CCCmode for the carry.
975         (subx_extend_sp64): Delete.
976         (subdi3_extend_sp32): Use CCmode for the carry.
977         (cmp_minus patterns): Use CCNZ/CCXNZ mode and add C variants.
978         (negdi3): Call gen_negdi3_sp32.
979         (negdi3_sp32): Use CCCmode for the carry.
980         (cmp_neg patterns): Use CCNZ/CCXNZ mode and add C variants.
981         (cmp_nz_ashift_1): Use CCNZ mode.
982         (cmp_nz_set_ashift_1): Likewise.
983         (ctrapsi4): Use comparison_operator predicate.
984         (ctrapdi4): Likewise.
985         (trapsi_insn): Use icc_comparison_operator predicate.
986         (trapdi_insn): Likewise.
987         (edge8 patterns): Use CCNZmode.
988         (edge16 patterns): Likewise.
989         (edge32 patterns): Likewise.
991 2016-10-11  Eric Botcazou  <ebotcazou@adacore.com>
993         * config/visium/visium-modes.def (CC_NOOV): Rename into...
994         (CCNZ): ...this.
995         (CC_BTST): Rename into...
996         (CCC): ...this.
997         * config/visium/predicates.md (real_add_operand): New.
998         (visium_btst_operator): Rename into...
999         (visium_equality_comparison_operator): ...this.
1000         (visium_noov_operator): Rename into...
1001         (visium_nz_comparison_operator): ...this.
1002         (visium_c_comparison_operator): New.
1003         (visium_branch_operator): Adjust and deal with all CC modes.
1004         * config/visium/visium.c (visium_adjust_cost): Adjust.
1005         (visium_split_double_add): Use the *_set_carry patterns.
1006         (visium_select_cc_mode): Add support for CCC mode and adjust.
1007         (output_cbranch): Adjust and use the carry-based operators for
1008         floating-point comparisons.
1009         * config/visium/visium.md (flags_subst_arith): Adjust.
1010         (addsi3_insn_set_carry): New instruction.
1011         (subsi3_insn_set_carry): Likewise.
1012         (negsi2_insn_set_carry): Likewise.
1013         (btst): Adjust.
1014         (cmp<mode>_sne): Likewise.
1015         (cbranch<mode>4): Use ordered_comparison_operator.
1016         (cbranch<mode>4_insn): Likewise.
1017         (cbranchsi4_btst_insn): Adjust.
1019 2016-10-11  Tom de Vries  <tom@codesourcery.com>
1021         PR middle-end/77558
1022         * builtins.c (std_canonical_va_list_type): Remove RECORD_TYPE
1023         special-casing.
1025 2016-10-11  Eric Botcazou  <ebotcazou@adacore.com>
1027         * tree.h (build_complex_type): Add second parameter with default.
1028         * tree.c (build_complex_type): Add NAMED second parameter and adjust
1029         recursive call.  Create a TYPE_DECL only if NAMED is true.
1030         (build_common_tree_nodes): Pass true in calls to build_complex_type.
1032 2016-10-11  Georg-Johann Lay  <avr@gjlay.de>
1034         New avr-passes.def to register AVR specific passes.
1036         * config/avr/avr-passes.def: New file.
1037         * config/avr/t-avr (PASSES_EXTRA): Add avr-passes.def.
1038         * config/avr/avr-protos.h (gcc::context, rtl_opt_pass): Declare.
1039         (make_avr_pass_recompute_note): New proto.
1040         * config/avr/avr.c (make_avr_pass_recompute_notes): New function.
1041         (avr_pass_recompute_notes): Use anonymous namespace.
1042         (avr_register_passes): Remove function...
1043         (avr_option_override): ...and its call.
1045 2016-10-11  Robert Suchanek  <robert.suchanek@imgtec.com>
1047         * config/mips/mips-cpus.def: Replace PTF_AVOID_BRANCHLIKELY with
1048         PTF_AVOID_BRANCHLIKELY_ALWAYS for generic architecture and with
1049         PTF_AVOID_BRANCHLIKELY_SPEED for others.
1050         (mips2, mips3, mips4): Add PTF_AVOID_BRANCHLIKELY_SIZE to tune
1051         flags.
1052         * config/mips/mips.c (mips_option_override): Enable the branch
1053         likely depending on the tune flags and optimization level.
1054         * config/mips/mips.h (PTF_AVOID_BRANCHLIKELY): Remove.
1055         (PTF_AVOID_BRANCHLIKELY_SPEED): Define.
1056         (PTF_AVOID_BRANCHLIKELY_SIZE): Likewise.
1057         (PTF_AVOID_BRANCHLIKELY_ALWAYS): Likewise.
1059 2016-10-11  Richard Biener  <rguenther@suse.de>
1061         * lto-streamer-out.c (collect_block_tree_leafs): New helper.
1062         (output_function): Properly stream the whole block tree.
1063         * lto-streamer-in.c (input_function): Likewise.
1065 2016-10-11  Marek Polacek  <polacek@redhat.com>
1067         * Makefile.in (C_COMMON_OBJS): Add c-family/c-warn.o.
1069 2016-10-11  Kugan Vivekanandarajah  <kuganv@linaro.org>
1071         * tree-vrp.c (evrp_dom_walker::try_add_new_range): New.
1072         (evrp_dom_walker::before_dom_children): Infer and push new value
1073         ranges for x in y < x.
1075 2016-10-10  Joseph Myers  <joseph@codesourcery.com>
1077         PR target/77586
1078         * config/ia64/ia64.c (ia64_libgcc_floating_mode_supported_p)
1079         (TARGET_LIBGCC_FLOATING_MODE_SUPPORTED_P): Remove.
1080         * config/ia64/elf.h (IA64_NO_LIBGCC_TFMODE): Likewise.
1081         * config/ia64/freebsd.h (IA64_NO_LIBGCC_TFMODE): Likewise.
1082         * config/ia64/vms.h (IA64_NO_LIBGCC_XFMODE)
1083         (IA64_NO_LIBGCC_TFMODE): Likewise.
1085 2016-10-11  Kugan Vivekanandarajah  <kuganv@linaro.org>
1087         * tree-vrp.c (vrp_intersect_ranges_1): Allocate bitmap before
1088           copying.
1090 2016-10-10  Andreas Tobler  <andreast@gcc.gnu.org>
1092         * config.gcc: Add aarch64-*-freebsd* support.
1093         * config.host: Likewise.
1094         * config/aarch64/aarch64-freebsd.h: New file.
1095         * config/aarch64/t-aarch64-freebsd: Ditto.
1097 2016-10-10  Jeff Law  <law@redhat.com>
1099         PR tree-optimization/71947
1100         * tree-ssa-dom.c (cprop_into_stmt): Avoid replacing A with B, then
1101         B with A within a single statement.
1103 2016-10-10  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
1105         PR tree-optimization/77824
1106         * gimple-ssa-strength-reduction.c (stmt_cost): Explicitly return
1107         zero cost for copies.
1108         (find_candidates_dom_walker::before_dom_children): Replace
1109         MODIFY_EXPR with SSA_NAME.
1110         (replace_mult_candidate): Likewise.
1111         (replace_profitable_candidates): Likewise.
1113 2016-10-10  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
1115         * config/s390/s390.h: Wrap more macros args in brackets and fix
1117 2016-10-10  Georg-Johann Lay  <avr@gjlay.de>
1119         * config/avr/gen-avr-mmcu-texi.c (string.h): Include.
1121 2016-10-10  Andreas Schwab  <schwab@suse.de>
1123         PR target/77738
1124         * config/ia64/ia64.md ("doloop_end"): Reject if mode of loop
1125         pseudo is not DImode.
1127 2016-10-10  Claudiu Zissulescu  <claziss@synopsys.com>
1129         * common/config/arc/arc-common.c (arc_option_optimization_table):
1130         Remove compact casesi option.
1131         * config/arc/arc.c (arc_override_options): Use compact casesi
1132         option only for pre-ARCv2 cores.
1133         * doc/invoke.texi (mcompact-casesi): Update text.
1135 2016-10-09  Aaron Sawdey  <acsawdey@linux.vnet.ibm.com>
1137         * config/rs6000/rs6000.h (TARGET_EFFICIENT_OVERLAPPING_UNALIGNED):
1138         Add macro to say we can efficiently handle overlapping unaligned
1139         loads.
1140         * config/rs6000/rs6000.c (expand_block_compare): Avoid generating
1141         poor code for processors older than p8.
1143 2016-10-09  Eric Botcazou  <ebotcazou@adacore.com>
1145         * gen-pass-instances.awk: Remove GNUism.
1147 2016-10-09  Prathamesh Kulkarni  <prathamesh.kulkarni@linaro.org>
1149         * ipa-prop.c (ipcp_transform_function): Set fields m_vr and bits to
1150         NULL of (*ipcp_transformations)][node->uid].
1152 2016-10-09  John David Anglin  <danglin@gcc.gnu.org>
1154         * config/pa/pa.h (BIGGEST_ALIGNMENT): Adjust comment.
1155         (MALLOC_ABI_ALIGNMENT): Define.
1157 2016-10-09  Jakub Jelinek  <jakub@redhat.com>
1159         * tree-ssa.c (target_for_debug_bind, verify_phi_args,
1160         ssa_undefined_value_p, maybe_optimize_var): Use VAR_P and/or
1161         VAR_OR_FUNCTION_DECL_P macros.
1162         * tree-chkp.c (chkp_register_var_initializer, chkp_make_static_bounds,
1163         chkp_get_bounds_for_decl_addr, chkp_parse_array_and_component_ref,
1164         chkp_find_bounds_1): Likewise.
1165         * ipa-polymorphic-call.c (decl_maybe_in_construction_p): Likewise.
1166         * hsa-gen.c (get_symbol_for_decl): Likewise.
1167         * cgraphunit.c (check_global_declaration, analyze_functions,
1168         handle_alias_pairs, thunk_adjust, cgraph_node::expand_thunk):
1169         Likewise.
1170         * gimple-fold.c (can_refer_decl_in_current_unit_p,
1171         canonicalize_constructor_val, gimple_get_virt_method_for_vtable):
1172         Likewise.
1173         * tree.c (set_decl_section_name, copy_node_stat,
1174         need_assembler_name_p, free_lang_data_in_decl, find_decls_types_r,
1175         merge_dllimport_decl_attributes, handle_dll_attribute,
1176         decl_init_priority_insert, auto_var_in_fn_p, array_at_struct_end_p,
1177         verify_type): Likewise.
1178         * gimple-ssa-isolate-paths.c (find_implicit_erroneous_behavior,
1179         find_explicit_erroneous_behavior): Likewise.
1180         * sdbout.c (sdbout_toplevel_data, sdbout_late_global_decl): Likewise.
1181         * ipa.c (process_references): Likewise.
1182         * tree-chkp-opt.c (chkp_get_check_result): Likewise.
1183         * varasm.c (get_block_for_decl, use_blocks_for_decl_p, make_decl_rtl,
1184         notice_global_symbol, assemble_variable, mark_decl_referenced,
1185         build_constant_desc, output_constant_def_contents, do_assemble_alias,
1186         make_decl_one_only, default_section_type_flags,
1187         categorize_decl_for_section, default_encode_section_info): Likewise.
1188         * trans-mem.c (requires_barrier): Likewise.
1189         * gimple-expr.c (mark_addressable): Likewise.
1190         * cfgexpand.c (add_scope_conflicts_1, expand_one_var,
1191         expand_used_vars_for_block, clear_tree_used, stack_protect_decl_p,
1192         expand_debug_expr): Likewise.
1193         * tree-dump.c (dequeue_and_dump): Likewise.
1194         * ubsan.c (instrument_bool_enum_load): Likewise.
1195         * tree-pretty-print.c (print_declaration): Likewise.
1196         * simplify-rtx.c (delegitimize_mem_from_attrs): Likewise.
1197         * tree-ssa-uninit.c (warn_uninitialized_vars): Likewise.
1198         * asan.c (asan_protect_global, instrument_derefs): Likewise.
1199         * tree-into-ssa.c (rewrite_stmt, maybe_register_def,
1200         pass_build_ssa::execute): Likewise.
1201         * var-tracking.c (var_debug_decl, track_expr_p): Likewise.
1202         * tree-ssa-loop-ivopts.c (force_expr_to_var_cost, split_address_cost):
1203         Likewise.
1204         * ipa-split.c (test_nonssa_use, consider_split, mark_nonssa_use):
1205         Likewise.
1206         * tree-inline.c (insert_debug_decl_map, remap_ssa_name,
1207         can_be_nonlocal, remap_decls, copy_debug_stmt,
1208         initialize_inlined_parameters, add_local_variables,
1209         reset_debug_binding, replace_locals_op): Likewise.
1210         * dse.c (can_escape): Likewise.
1211         * ipa-devirt.c (compare_virtual_tables, referenced_from_vtable_p):
1212         Likewise.
1213         * tree-diagnostic.c (default_tree_printer): Likewise.
1214         * tree-streamer-in.c (unpack_ts_decl_common_value_fields,
1215         unpack_ts_decl_with_vis_value_fields,
1216         lto_input_ts_decl_common_tree_pointers): Likewise.
1217         * builtins.c (builtin_save_expr, fold_builtin_expect,
1218         readonly_data_expr): Likewise.
1219         * tree-ssa-structalias.c (new_var_info, get_constraint_for_ssa_var,
1220         create_variable_info_for, set_uids_in_ptset, visit_loadstore):
1221         Likewise.
1222         * gimple-streamer-out.c (output_gimple_stmt): Likewise.
1223         * gimplify.c (force_constant_size, gimplify_bind_expr,
1224         gimplify_decl_expr, gimplify_var_or_parm_decl,
1225         gimplify_compound_lval, gimplify_init_constructor,
1226         gimplify_modify_expr, gimplify_asm_expr, gimplify_oacc_declare,
1227         gimplify_type_sizes): Likewise.
1228         * cgraphbuild.c (record_reference, record_type_list, mark_address,
1229         mark_load, mark_store, pass_build_cgraph_edges::execute): Likewise.
1230         * tree-ssa-live.c (mark_all_vars_used_1, remove_unused_scope_block_p,
1231         remove_unused_locals): Likewise.
1232         * tree-ssa-alias.c (ptr_deref_may_alias_decl_p, ptrs_compare_unequal,
1233         ref_maybe_used_by_call_p_1, call_may_clobber_ref_p_1): Likewise.
1234         * function.c (instantiate_expr, instantiate_decls_1,
1235         setjmp_vars_warning, add_local_decl): Likewise.
1236         * alias.c (ao_ref_from_mem, get_alias_set, compare_base_symbol_refs):
1237         Likewise.
1238         * tree-stdarg.c (find_va_list_reference, va_list_counter_struct_op,
1239         va_list_ptr_read, va_list_ptr_write, check_all_va_list_escapes,
1240         optimize_va_list_gpr_fpr_size): Likewise.
1241         * tree-nrv.c (pass_nrv::execute): Likewise.
1242         * tsan.c (instrument_expr): Likewise.
1243         * tree-ssa-dce.c (remove_dead_stmt): Likewise.
1244         * vtable-verify.c (verify_bb_vtables): Likewise.
1245         * tree-dfa.c (ssa_default_def, set_ssa_default_def,
1246         get_ref_base_and_extent): Likewise.
1247         * toplev.c (wrapup_global_declaration_1, wrapup_global_declaration_2):
1248         Likewise.
1249         * tree-sra.c (static bool constant_decl_p, find_var_candidates,
1250         analyze_all_variable_accesses): Likewise.
1251         * tree-nested.c (get_nonlocal_debug_decl,
1252         convert_nonlocal_omp_clauses, note_nonlocal_vla_type,
1253         note_nonlocal_block_vlas, convert_nonlocal_reference_stmt,
1254         get_local_debug_decl, convert_local_omp_clauses,
1255         convert_local_reference_stmt, nesting_copy_decl, remap_vla_decls):
1256         Likewise.
1257         * tree-vect-data-refs.c (vect_can_force_dr_alignment_p): Likewise.
1258         * stmt.c (decl_overlaps_hard_reg_set_p): Likewise.
1259         * dbxout.c (dbxout_late_global_decl, dbxout_type_fields,
1260         dbxout_symbol, dbxout_common_check): Likewise.
1261         * expr.c (expand_assignment, expand_expr_real_2, expand_expr_real_1,
1262         string_constant): Likewise.
1263         * hsa.c (hsa_get_declaration_name): Likewise.
1264         * passes.c (rest_of_decl_compilation): Likewise.
1265         * tree-ssanames.c (make_ssa_name_fn): Likewise.
1266         * tree-streamer-out.c (pack_ts_decl_common_value_fields,
1267         pack_ts_decl_with_vis_value_fields,
1268         write_ts_decl_common_tree_pointers): Likewise.
1269         * stor-layout.c (place_field): Likewise.
1270         * symtab.c (symtab_node::maybe_create_reference,
1271         symtab_node::verify_base, symtab_node::make_decl_local,
1272         symtab_node::copy_visibility_from,
1273         symtab_node::can_increase_alignment_p): Likewise.
1274         * dwarf2out.c (add_var_loc_to_decl, tls_mem_loc_descriptor,
1275         decl_by_reference_p, reference_to_unused, rtl_for_decl_location,
1276         fortran_common, add_location_or_const_value_attribute,
1277         add_scalar_info, add_linkage_name, set_block_abstract_flags,
1278         local_function_static, gen_variable_die, dwarf2out_late_global_decl,
1279         optimize_one_addr_into_implicit_ptr,
1280         optimize_location_into_implicit_ptr): Likewise.
1281         * gimple-low.c (record_vars_into): Likewise.
1282         * ipa-visibility.c (update_vtable_references): Likewise.
1283         * tree-ssa-address.c (fixed_address_object_p, copy_ref_info):
1284         Likewise.
1285         * lto-streamer-out.c (tree_is_indexable, get_symbol_initial_value,
1286         DFS::DFS_write_tree_body, write_symbol): Likewise.
1287         * langhooks.c (lhd_warn_unused_global_decl,
1288         lhd_set_decl_assembler_name): Likewise.
1289         * attribs.c (decl_attributes): Likewise.
1290         * except.c (output_ttype): Likewise.
1291         * varpool.c (varpool_node::get_create, ctor_for_folding,
1292         varpool_node::assemble_decl, varpool_node::create_alias): Likewise.
1293         * fold-const.c (fold_unary_loc): Likewise.
1294         * ipa-prop.c (ipa_compute_jump_functions_for_edge,
1295         ipa_find_agg_cst_from_init): Likewise.
1296         * omp-low.c (expand_omp_regimplify_p, expand_omp_taskreg,
1297         expand_omp_target, lower_omp_regimplify_p,
1298         grid_reg_assignment_to_local_var_p, grid_remap_prebody_decls,
1299         find_link_var_op): Likewise.
1300         * tree-chrec.c (chrec_contains_symbols): Likewise.
1301         * tree-cfg.c (verify_address, verify_expr, verify_expr_location_1,
1302         gimple_duplicate_bb, move_stmt_op, replace_block_vars_by_duplicates,
1303         execute_fixup_cfg): Likewise.
1305         PR tree-optimization/77901
1306         * tree-ssa-reassoc.c (optimize_range_tests_var_bound): Only optimize
1307         if ranges[i].exp is SSA_NAME when looking for >= and only when
1308         ranges[i].exp is NULL or SSA_NAME when looking for the other
1309         comparison.
1311 2016-10-09  Prathamesh Kulkarni  <prathamesh.kulkarni@linaro.org>
1313         * ipa-cp.c (ipcp_alignment_lattice): Remove.
1314         (ipcp_param_lattices): Remove field alignment.
1315         (print_all_lattices): Remove call to ipcp_alignment_lattice::print.
1316         (set_all_contains_variable): Remove call to
1317         ipcp_alignment_lattice::set_to_bottom.
1318         (initialize_node_lattices): Likewise.
1319         (propagate_alignment_accross_jump_function): Remove.
1320         (propagate_constants_accross_call): Remove call to
1321         propagate_alignment_accross_jump_function.
1322         (ipcp_store_alignment_results): Remove.
1323         (ipcp_driver): Remove call to ipcp_store_alignment_results.
1324         (propagate_bits_accross_jump_function): Handle ancestor jump function.
1325         * ipa-prop.c (ipa_print_node_jump_functions_for_edge): Remove
1326         pretty-printing of alignment jump function.
1327         (ipa_set_jf_unknown): Remove assignment to jfunc->alignment.known.
1328         (ipa_compute_jump_functions_for_edge): Adjust ipa_bits jump function for
1329         alignments and remove computing ipa_alignment jump function.
1330         (ipa_node_params_t::duplicate): Remove copying of src_trans->alignments.
1331         (ipa_write_jump_functions): Remove streaming for ipa_alignment.
1332         (ipa_read_jump_function): Remove reading of ipa_alignment.
1333         (write_ipcp_transformation_info): Remove streaming for alignment
1334         propagation summary.
1335         (read_ipcp_transformation_info): Remove reading of alignment
1336         propagation summary.
1337         (ipcp_update_alignments): Remove.
1338         (ipcp_update_bits): Adjust to set alignment for parameters of pointer
1339         type.
1340         (ipcp_transform_function): Remove call to ipcp_update_alignments()
1341         and remove assignment to (*ipcp_transformations)[node->uid].alignments.
1342         * ipa-prop.h (ipa_alignment): Remove.
1343         (ipa_jump_func): Remove field alignment.
1344         (ipcp_transformation_summary): Remove field alignments.
1345         * doc/invoke.texi: Mark fipa-cp-alignment as obsolete.
1346         * opts.c (default_options_table): Remove entry for fipa-cp-alignment.
1347         (enable_fdo_optimizations): Remove checking for fipa-cp-alignment.
1349 2016-10-08  Eric Botcazou  <ebotcazou@adacore.com>
1351         * config/sparc/sparc.h (FIXED_REGISTERS): Add %icc.
1353         * config/visium/visium.c (visium_expand_int_cstore): Revert latest
1354         change.
1355         (visium_expand_fp_cstore): Likewise.
1357 2016-10-08  Prathamesh Kulkarni  <prathamesh.kulkarni@linaro.org>
1359         * diagnostic-core.h (warning_at_rich_loc_n): Declare.
1360         * diagnostic.c (warning_at_rich_loc_n): New function.
1361         (diagnostic_n_impl_richloc): Likewise.
1362         (diagnostic_n_impl): Move most of the function to
1363         diagnostic_n_impl_richloc and call it.
1365 2016-10-08  Jakub Jelinek  <jakub@redhat.com>
1367         * gen-pass-instances.awk: Rewritten.
1368         * Makefile.in (pass-instances.def): Depend on $(PASSES_EXTRA), pass
1369         $(PASSES_EXTRA) after passes.def to the script.
1370         * config/i386/t-i386 (PASSES_EXTRA): Add i386-passes.def.
1371         * config/i386/i386-passes.def: New file.
1372         * config/i386/i386-protos.h (make_pass_insert_vzeroupper,
1373         make_pass_stv): Declare.
1374         * config/i386/i386.c (pass_stv::pass_stv): Initialize timode_p to
1375         false.
1376         (pass_stv::gate): Depending on timode_p member require TARGET_64BIT
1377         or !TARGET_64BIT.
1378         (pass_stv::clone, pass_stv::set_pass_param): New methods.
1379         (pass_stv::timode_p): New non-static data member.
1380         (ix86_option_override): Don't register passes here.
1382         * doc/invoke.texi: Document accepting Else, fallthrough.
1384         * doc/invoke.texi (-Wimplicit-fallthrough): Document FALLTHRU comment
1385         style changes.
1387         * doc/invoke.texi (-Wimplicit-fallthrough): Document the accepted
1388         FALLTHRU comment styles.
1390 2016-10-07  Andrew Pinski  <apinski@cavium.com>
1392         * config/aarch64/aarch64-arches.def (AARCH64_ARCH): #undef at the end.
1393         * config/aarch64/aarch64-cores.def (AARCH64_CORE): Likewise.
1394         * config/aarch64/aarch64-fusion-pairs.def (AARCH64_FUSION_PAIR):
1395         Likewise.
1396         * config/aarch64/aarch64-option-extensions.def (AARCH64_OPT_EXTENSION):
1397         Likewise.
1398         * config/aarch64/aarch64-tuning-flags.def (AARCH64_EXTRA_TUNING_OPTION):
1399         Likewise.
1400         * config/aarch64/aarch64-opts.h (AARCH64_CORE): Don't #undef here.
1401         (AARCH64_ARCH): Likewise.
1402         * common/config/aarch64/aarch64-common.c (AARCH64_OPT_EXTENSION):
1403         Likewise.
1404         (AARCH64_CORE): Likewise.
1405         (AARCH64_ARCH): Likewise.
1406         * config/aarch64/aarch64-protos.h (AARCH64_FUSION_PAIR): Likewise.
1407         (AARCH64_EXTRA_TUNING_OPTION): Likewise.
1408         * config/aarch64/aarch64.c (AARCH64_FUION_PAIR): Likewise.
1409         (AARCH64_EXTRA_TUNING_OPTION): Likewise.
1410         (AARCH64_ARCH): Likewise.
1411         (AARCH64_CORE): Likewise.
1412         * config/aarch64/aarch64.h (AARCH64_CORE): Likewise.
1413         * config/aarch64/driver-aarch64.c (AARCH64_OPT_EXTENSION): Likewise.
1414         (AARCH64_CORE): Likewise.
1415         (AARCH64_ARCH): Likewise.
1417 2016-10-06  Michael Meissner  <meissner@linux.vnet.ibm.com>
1419         * config/rs6000/rs6000-c.c (rs6000_cpu_cpp_builtins): Split
1420         -mfloat128 into -mfloat128-type that enables the IEEE 128-bit
1421         floating point type infrastructre, and -mfloat128 that enables the
1422         keyword.  Define __FLOAT128__ if -mfloat128, and __FLOAT128_TYPE__
1423         if -mfloat128-type.  Define __ibm128 to be long double by default.
1424         * config/rs6000/rs6000.c (rs6000_debug_reg_global): Print whether
1425         the IEEE 128-bit floating point type infrastructure should
1426         automatically be enabled.
1427         (rs6000_init_hard_regno_mode_ok): Switch to use -mfloat128-type
1428         instead of -mfloat128 to enable KFmode.
1429         (rs6000_option_override_internal): Split the option -mfloat128
1430         into -mfloat128-type and -mfloat128.  On Linux PowerPC 64-bit
1431         systems, automatically set -mfloat128-type, but don't enable it on
1432         other operating systems.  Move setting the long double size and
1433         IEEE quad support before the IEEE 128-bit floating point changes.
1434         (rs6000_init_builtins): Do not create a unique type for __ibm128
1435         if long double is IBM extended double, instead rely on __ibm128
1436         being defined as 'long double'.  If -mfloat128-type and not
1437         -mfloat128, create the KFmode type with an undocumented __ieee128
1438         keyword.
1439         (rs6000_init_libfuncs): Use -mfloat128-type instead of
1440         -mfloat128 for tests about the types, but keep tests for
1441         -mfloat128 to enable the keyword support.
1442         (rs6000_complex_function_value): Likewise.
1443         (rs6000_scalar_mode_supported_p): Likewise.
1444         (rs6000_floatn_mode): Likewise.
1445         (rs6000_c_mode_for_suffix): Likewise.
1446         (rs6000_opt_masks): Add -mfloat128-type.
1447         * config/rs6000/rs6000-cpus.def (POWERPC_MASKS): Add support for
1448         -mfloat128-type being split from -mfloat128.  Add
1449         -mfloat128-hardware, which was missing.
1450         * config/rs6000/rs6000.opt (-mfloat128): Split -mfloat128 into
1451         -mfloat128 and -mfloat128-type:
1452         (-mfloat128-type): Likewise.
1453         * config/rs6000/linux64.h (TARGET_FLOAT128_ENABLE_TYPE): Define so
1454         that 64-bit Linux systems with enable -mfloat128-type by default
1455         on VSX systems.
1456         * config/rs6000/rs6000.h (TARGET_FLOAT128_ENABLE_TYPE): Likewise.
1457         (FLOAT128_VECTOR_P): Switch IEEE 128-bit floating points to use
1458         -mfloat128-type instead of -mfloat128.
1459         (FLOAT128_2REG_P): Likewise.
1460         (MASK_FLOAT128_TYPE): Likewise.
1461         (ALTIVEC_ARG_MAX_RETURN): Likewise.
1462         (RS6000_BTM_FLOAT128): Likewise.
1463         (TARGET_FLOAT128): Poison old identifiers.
1464         (OPTION_MASK_FLOAT128): Likewise.
1465         (MASK_FLOAT128): Likewise.
1466         * config/rs6000/rs6000.md (FP): Likewise.
1467         (FLOAT128): Likewise.
1468         (fix_trunc<mode>di2): Likewise.
1469         (fixuns_trunc<IEEE128:mode><SDI:mode>2): Likewise.
1470         (floatdi<mode>2): Likewise.
1471         (floatuns<SDI:mode><IEEE128:mode>2): Likewise.
1472         (neg<mode>2, FLOAT128 iterator): Likewise.
1473         (abs<mode>2, FLOAT128 iterator): Likewise.
1474         (ieee_128bit_negative_zero): Likewise.
1475         (ieee_128bit_vsx_neg<mode>2): Likewise.
1476         (ieee_128bit_vsx_neg<mode>2_internal): Likewise.
1477         (ieee_128bit_vsx_abs<mode>2): Likewise.
1478         (ieee_128bit_vsx_abs<mode>2_internal): Likewise.
1479         (ieee_128bit_vsx_nabs<mode>2): Likewise.
1480         (ieee_128bit_vsx_nabs<mode>2_internal): Likewise.
1481         (extendiftf2): Likewise.
1482         (extendifkf2): Likewise.
1483         (extendtfkf2): Likewise.
1484         (trunciftf2): Likewise.
1485         (truncifkf2): Likewise.
1486         (trunckftf2): Likewise.
1487         (trunctfif2): Likewise.
1488         (extendkftf2): Likewise.
1489         (trunctfkf2): Likewise.
1491 2016-10-07  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
1493         * simplify-rtx.c (simplify_immed_subreg): Zero-initialize tmp array
1494         before merging in bytes to pass down to real_from_target.
1496 2016-10-07  Richard Biener  <rguenther@suse.de>
1498         * tree-ssa-propagate.c (replace_phi_args_in): Remove no longer
1499         required hack.
1500         (substitute_and_fold_dom_walker::before_dom_children):
1501         Substitute and fold before pass specific folding to avoid
1502         feeding that with SSA names that will be later released.
1503         * tree-ssa-ccp.c (get_value_for_expr): Guard for new SSA names
1504         introduced by folding and visited by evaluate_stmt called during
1505         ccp_fold_stmt.
1506         (likely_value): Likewise.
1507         (evaluate_stmt): Likewise.
1508         * tree-vrp.c (simplify_truth_ops_using_ranges): Fold modified stmt.
1509         (simplify_div_or_mod_using_ranges): Likewise.
1510         (simplify_min_or_max_using_ranges): Likewise.
1511         (simplify_abs_using_ranges): Likewise.
1512         (simplify_conversion_using_ranges): Likewise.
1513         (simplify_float_conversion_using_ranges): Likewise.
1514         (simplify_stmt_using_ranges): Likewise.
1516 2016-10-07  Marek Polacek  <polacek@redhat.com>
1518         * gimplify.c (should_warn_for_implicit_fallthrough): Check for
1519         FALLTHROUGH_LABEL_P here...
1520         (warn_implicit_fallthrough_r): ...not here.
1522 2016-10-07  Bernd Schmidt  <bschmidt@redhat.com>
1524         PR tree-optimization/77880
1525         * expr.c (by_pieces_ninsns): Use unsigned HOST_WIDE_INT where
1526         necessary.
1528 2016-10-07  Marek Polacek  <polacek@redhat.com>
1530         PR c++/77803
1531         * gimplify.c (last_stmt_in_scope): Add check for FALLTHROUGH ().
1533 2016-10-07  Richard Biener  <rguenther@suse.de>
1535         * bitmap.h: Document constraints on bitmap modification while
1536         iterating over it.
1538 2016-10-07  Richard Biener  <rguenther@suse.de>
1540         * bitmap.c (bitmap_elem_to_freelist): Set indx to -1.
1541         * bitmap.h (bmp_iter_set): When advancing to the next element
1542         check that we didn't remove the current one.
1543         (bmp_iter_and): Likewise.
1544         (bmp_iter_and_compl): Likewise.
1545         * tree-ssa.c (release_defs_bitset): Do not remove worklist bit
1546         we currently iterate on but keep a one-level queue.
1547         * sched-deps.c (remove_from_deps): Do not clear current bit
1548         but keep a one-level queue.
1550 2016-10-07  Jakub Jelinek  <jakub@redhat.com>
1552         PR tree-optimization/77664
1553         * tree-ssa-reassoc.c (update_range_test): Also clear low and high
1554         for the other ranges.
1555         (optimize_range_tests_diff): Fix up formatting.
1556         (optimize_range_tests_var_bound): New function.
1557         (optimize_range_tests): Use it.
1559 2016-10-07  Martin Liska  <mliska@suse.cz>
1561         * coverage.c (build_gcov_exit_decl): Fix priority what
1562         should be really 99.
1564 2016-10-07  Richard Biener  <rguenther@suse.de>
1566         * gimple-low.c (lower_gimple_bind): Clear DECL_CHAIN of
1567         vars in gimple_bind_vars but not in BLOCK_VARS.
1569 2016-10-07  Richard Biener  <rguenther@suse.de>
1571         PR tree-optimization/77879
1572         * tree-ssa-structalias.c (handle_const_call): Properly handle
1573         NRV return slots.
1574         (handle_pure_call): Likewise.
1576 2016-10-06  Aaron Sawdey  <acsawdey@linux.vnet.ibm.com>
1578         * config/rs6000/rs6000.c (rs6000_elf_asm_out_constructor)
1579         (rs6000_elf_asm_out_destructor): increase size of buf to avoid
1580         possible overflow.
1582 2016-10-06  Andrew Pinski  <apinski@cavium.com>
1584         * config/aarch64/aarch64-cores.def: Add a comment before each
1585         set of cores.
1587 2016-10-06  Kugan Vivekanandarajah  <kuganv@linaro.org>
1589         PR tree-optimization/77862
1590         * tree-vrp.c (add_equivalence): Use get_value_range so that
1591         num_vr_values is checked before accessing vr_values.
1593 2016-10-06  Kugan Vivekanandarajah  <kuganv@linaro.org>
1595         * tree-vrp.c (evrp_dom_walker::before_dom_children): Handle
1596           POINTER_TYPE_P.
1598 2016-10-05  Jeff Law  <law@redhat.com>
1600         PR tree-optimization/71661
1601         * tree-cfgcleanup.c (remove_forwarder_block_with_phi): Handle case when
1602         removal of a forwarder exposes a new natural loop.
1604 2016-10-06  Uros Bizjak  <ubizjak@gmail.com>
1606         * config/i386/sse.md (andnot<mode>3): Add FALLTHRU comments.
1607         Introduce ssesuffix variable.
1608         (<mask_codefor><code><mode>3<mask_name>): Ditto.
1609         (*<code><mode>3): Ditto.
1611 2016-10-06  Jan Hubicka  <hubicka@ucw.cz>
1613         * postreload.c (reload_cse_simplify): Skip also USE when detecting
1614         noop move.
1616 2016-10-06  Richard Biener  <rguenther@suse.de>
1618         PR tree-optimization/77855
1619         * tree-ssa-pre.c (prune_clobbered_mems): Queue exprs to remove
1620         instead of removing the current item while iterating over the set
1621         which is not safe.
1623 2016-10-06  James Clarke  <jrtc27@jrtc27.com>
1624             Eric Botcazou  <ebotcazou@adacore.com>
1626         PR target/77759
1627         * config/sparc/sparc.c (classify_data_t): Remove int_regs field.
1628         (classify_registers): Don't set it
1629         (function_arg_slotno): Don't initialize and test it.  Tidy up.
1631 2016-10-06  Richard Biener  <rguenther@suse.de>
1633         PR tree-optimization/77839
1634         * tree-ssa-sccvn.c (set_ssa_val_to): Forbid value -> constant value
1635         lattice transition.
1637 2016-10-06  Martin Liska  <mliska@suse.cz>
1639         * gcc.c: Set -fprofile-update=atomic when profiling is
1640         enabled and -pthread is set.  Warn when one combines
1641         -pthread and -fprofile-update=single for an app using
1642         profiling code.
1644 2016-10-06  Martin Liska  <mliska@suse.cz>
1646         PR bootstrap/77788
1647         * expmed.h (mul_highpart_cost_ptr): Add an gcc_assert.
1648         * gimple-ssa-strength-reduction.c (slsr_process_cast):
1649         Initialize a pointer to NULL.
1650         (slsr_process_copy): Likewise.
1651         * input.c (location_get_source_line): Likewise.
1652         * tree-ssa-ccp.c (optimize_atomic_bit_test_and): Likewise.
1654 2016-10-05  Andrew Senkevich  <andrew.senkevich@intel.com>
1656         * common/config/i386/i386-common.c (OPTION_MASK_ISA_PCOMMIT_UNSET,
1657         OPTION_MASK_ISA_PCOMMIT_SET): Deleted definitions.
1658         (ix86_handle_option): Deleted handle of OPT_mpcommit.
1659         * config.gcc: Deleted pcommitintrin.h
1660         * config/i386/pcommitintrin.h: Deleted file.
1661         * config/i386/cpuid.h (bit_PCOMMIT): Deleted.
1662         * config/i386/driver-i386.c (host_detect_local_cpu): Deleted pcommit
1663         detection.
1664         * config/i386/i386-c.c (ix86_target_macros_internal): Deleted define
1665         __PCOMMIT__.
1666         * config/i386/i386.c (ix86_target_string): Deleted -mpcommit.
1667         (PTA_PCOMMIT): Deleted define.
1668         (ix86_option_override_internal): Deleted handle of option.
1669         (ix86_valid_target_attribute_inner_p): Deleted pcommit.
1670         * config/i386/i386-builtin.def (IX86_BUILTIN_PCOMMIT,
1671         __builtin_ia32_pcommit): Deleted.
1672         * config/i386/i386.h (TARGET_PCOMMIT, TARGET_PCOMMIT_P): Deleted.
1673         * config/i386/i386.md (unspecv): Deleted UNSPECV_PCOMMIT.
1674         (pcommit): Deleted instruction.
1675         * config/i386/i386.opt: Mention -mpcommit deprecation.
1676         * config/i386/x86intrin.h: Deleted inclusion of pcommitintrin.h.
1678 2016-10-05  Uros Bizjak  <ubizjak@gmail.com>
1680         PR target/77874
1681         * config/i386/sse.md (<mask_codefor><code><mode>3<mask_name>):
1682         Remove wrong assert.
1683         (<floatsuffix>float<sseintvecmodelower><mode>2<mask_name><round_name>:
1684         Use <round_constraint> as operand 1 constraint.
1686 2016-10-05  Jakub Jelinek  <jakub@redhat.com>
1688         PR sanitizer/66343
1689         * ubsan.c (ubsan_create_data): Call initialize_sanitizer_builtins here.
1690         (ubsan_instrument_float_cast): And not here.
1692         PR sanitizer/66343
1693         * ubsan.c (ubsan_ids): New GTY(()) array.
1694         (ubsan_type_descriptor, ubsan_create_data): Use ubsan_ids
1695         instead of static local counters.
1697 2016-10-05  Martin Sebor  <msebor@redhat.com>
1699         PR bootstrap/77819
1700         * config/linux.h (TARGET_PRINTF_POINTER_FORMAT): Define macro.
1701         * config/linux.c (gnu_libc_printf_pointer_format): Remove.
1702         * targhooks.c [DEFAULT_LIBC == LIBC_UCLIBC) && SINGLE_LIBC]
1703         (default_printf_pointer_format): Define function.
1704         * targhooks.c (linux_printf_pointer_format): Define new function.
1705         * targhooks.h (linux_printf_pointer_format): Declare.
1706         (gnu_libc_printf_pointer_format): Remove declaration.
1708 2016-10-05  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
1710         * fold-const.c (native_encode_real): Fix logic for selecting offset
1711         to write to when BYTES_BIG_ENDIAN.
1713 2016-10-05  Wilco Dijkstra  <wdijkstr@arm.com>
1715         * builtins.c (fold_builtin_strchr): Remove function.
1716         (fold_builtin_strrchr): Likewise.
1717         (fold_builtin2): Remove strchr, index, strrchr, rindex cases.
1718         * gimple-fold.c (target_char_cst_p): New function.
1719         (gimple_fold_builtin_strchr) Add more foldings.
1720         (gimple_fold_builtin): Add index, strrchr, rindex cases.
1722 2016-10-05  Richard Biener  <rguenther@suse.de>
1724         PR middle-end/77863
1725         * genmatch.c (capture_info::walk_c_expr): Diagnose unknown
1726         capture ids in c-exprs.
1728 2016-10-05  Richard Biener  <rguenther@suse.de>
1730         PR middle-end/77826
1731         * genmatch.c (dt_operand::gen_match_op): Amend operand_equal_p
1732         with types_match for GIMPLE code gen to handle type mismatched
1733         constants properly.
1734         (dt_operand::gen): Adjust.
1735         * match.pd ((X /[ex] A) * A -> X): Properly handle converted
1736         and constant A.
1738 2016-10-05  Richard Biener  <rguenther@suse.de>
1740         * match.pd (copysign(x, CST) -> [-]abs (x)): New pattern.
1742 2016-10-05  Richard Biener  <rguenther@suse.de>
1744         PR middle-end/77842
1745         * genmatch.c (parser::parse_c_expr): Handle premature EOF.
1747 2016-10-05  Pierre-Marie de Rodat  <derodat@adacore.com>
1749         * dwarf2out.c (dwarf2out_imported_module_or_decl): Move DWARF
1750         version check to protect only DW_TAG_imported_module generation.
1752 2016-10-05  Richard Biener  <rguenther@suse.de>
1754         PR middle-end/55152
1755         * match.pd (min(a,-a) -> -abs(a)): New pattern.
1757 2016-10-04  Ian Lance Taylor  <iant@golang.org>
1759         * explow.c (allocate_dynamic_stack_space): Call
1760         do_pending_stack_adjust before handling flag_split_stack.
1762 2016-10-04  David Malcolm  <dmalcolm@redhat.com>
1764         * genattrtab.c (make_internal_attr): Supply dummy column number to
1765         file_location ctor.
1766         (main): Likewise.
1767         * genoutput.c (init_insn_for_nothing): Likewise.
1768         * gensupport.c (add_define_attr): Likewise.
1769         * read-md.c (message_at_1): Print column number.
1770         (fatal_with_file_and_line): Likewise.
1771         (rtx_reader::read_char): Track column numbers.
1772         (rtx_reader::unread_char): Likewise.
1773         (rtx_reader::rtx_reader): Initialize m_read_md_colno.
1774         (rtx_reader::handle_include): Stash and restore m_read_md_colno.
1775         (rtx_reader::handle_file): Initialize m_read_md_colno.
1776         (rtx_reader::get_current_location): Supply column number to
1777         file_location ctor.
1778         * read-md.h (struct file_location): Add field "colno".
1779         (file_location::file_location): Likewise.
1780         (rtx_reader::get_colno): New accessor.
1781         (rtx_reader::m_read_md_colno): New field.
1782         (rtx_reader::m_last_line_colno): New field.
1784 2016-10-04  Jakub Jelinek  <jakub@redhat.com>
1786         * doc/extend.texi (Java Exceptions): Remove.
1787         (java_interface): Remove.
1789 2016-10-04  Doug Gilmore  <doug.gilmore@imgtec.com>
1791         PR tree-optimization/77808
1792         * tree-ssa-loop-prefetch.c (issue_prefetch_ref): Check base_addr
1793         and addr are different before copying points-to information.
1795 2016-10-04  Uros Bizjak  <ubizjak@gmail.com>
1797         * config/i386/x86-tune.def (X86_TUNE_VECTORIZE_DOUBLE): Remove.
1798         * config/i386/i386.h (TARGET_VECTORIZE_DOUBLE): Remove.
1799         * config/i386/i386.c (ix86_add_stmt_cost): Use TARGET_BONNEL instead
1800         of !TARGET_VECTORIZE_DOUBLE when penalizing DFmode vector ops.
1802 2016-10-04  Richard Biener  <rguenther@suse.de>
1804         PR tree-optimization/77399
1805         * tree-ssa-forwprop.c (simplify_vector_constructor): Properly
1806         verify the target can convert.
1808 2016-10-04  Richard Biener  <rguenther@suse.de>
1810         PR middle-end/77833
1811         * explow.c (plus_constant): Verify the mode of the constant
1812         pool offset before calling plus_constant.
1814 2016-10-04  Richard Biener  <rguenther@suse.de>
1816         PR middle-end/77407
1817         * match.pd (X / abs (X) -> X < 0 ? -1 : 1): Drop vector
1818         type support, mark with :C.
1819         (X / -X -> -1): Mark with :C.
1821 2016-10-04  Jakub Jelinek  <jakub@redhat.com>
1823         * defaults.h (JCR_SECTION_NAME, TARGET_USE_JCR_SECTION): Remove.
1824         * system.h (JCR_SECTION_NAME, TARGET_USE_JCR_SECTION): Poison.
1825         * doc/tm.texi.in (TARGET_USE_JCR_SECTION): Remove.
1826         * doc/tm.texi: Regenerated.
1827         * config/i386/mingw32.h (TARGET_USE_JCR_SECTION): Remove.
1828         * config/i386/cygming.h (TARGET_USE_JCR_SECTION): Remove.
1829         * config/darwin.h (JCR_SECTION_NAME): Remove.
1830         * config/pa/pa64-hpux.h (JCR_SECTION_NAME): Remove.
1831         * config/rs6000/aix71.h (TARGET_USE_JCR_SECTION): Remove.
1832         * config/rs6000/aix51.h (TARGET_USE_JCR_SECTION): Remove.
1833         * config/rs6000/aix52.h (TARGET_USE_JCR_SECTION): Remove.
1834         * config/rs6000/aix53.h (TARGET_USE_JCR_SECTION): Remove.
1835         * config/rs6000/aix61.h (TARGET_USE_JCR_SECTION): Remove.
1837 2016-10-03  Prathamesh Kulkarni  <prathamesh.kulkarni@linaro.org>
1839         * ipa-cp.c (propagate_bits_accross_jump_function): Introduce space
1840         between "because" and "param" in dump message in call to fprintf.
1842 2016-10-03  Jeff Law  <law@redhat.com>
1844         PR tree-optimization/71550
1845         PR tree-optimization/71403
1846         * tree-ssa-threadbackward.c: Include tree-vectorizer.h
1847         (profitable_jump_thread_path): Also return boolean indicating if
1848         the realized path will create an irreducible loop.
1849         Remove loop depth tests from 71403.
1850         (fsm_find_control_statement_thread_paths): Remove loop depth tests
1851         from 71403.  If threading will create an irreducible loop, then
1852         throw away loop iteration and related information.
1854 2016-10-03  Uros Bizjak  <ubizjak@gmail.com>
1856         * configure.ac (strict_warn): Merge -Wmissing-format-attribute and
1857         -Woverloaded-virtual checks for warning options.
1858         * configure: Regenerate.
1860 2016-10-03  Bernd Edlinger  <bernd.edlinger@hotmail.de>
1862         PR preprocessor/77699
1863         * input.c (maybe_grow): Don't allocate one byte extra headroom.
1864         (get_next_line): Return false on error.
1865         (read_next_line): Removed, use get_next_line instead.
1866         (read_line_num): Don't copy the line.
1867         (location_get_source_line): Don't use static data.
1868         (selftest::test_reading_source_line): Add more test cases.
1870 2016-10-03  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
1872         Revert
1873         2016-09-30  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
1875         * ifcvt.c (noce_try_avoid_const_materialization): New function.
1876         (noce_process_if_block): Use it.
1878 2016-10-03  Bernd Edlinger  <bernd.edlinger@hotmail.de>
1880         * doc/invoke.texi: Update -Wint-in-bool-context.
1882 2016-10-02  Jakub Jelinek  <jakub@redhat.com>
1884         * dwarf2out.c (output_fde, output_call_frame_info,
1885         dwarf2out_do_cfi_startproc, set_indirect_string,
1886         gen_internal_sym, output_die, output_line_info): Use
1887         MAX_ARTIFICIAL_LABEL_BYTES as char array sizes for
1888         ASM_GENERATE_INTERNAL_LABEL output.
1890 2016-10-01  Richard Biener  <rguenther@suse.de>
1892         PR middle-end/77798
1893         * genmatch.c (get_operand_type): Add operand position arg
1894         and handle COND_EXPR comparison operand with fixed boolean_type_node.
1895         (expr::gen_transform): Adjust.
1896         (dt_simplify::gen_1): Likewise.
1898 2016-10-01  Jakub Jelinek  <jakub@redhat.com>
1900         * config/i386/sse.md (<mask_codefor><code><mode>): Add FALLTHRU
1901         comments.  Simplify asserts, remove unnecessary conditions.
1902         Formatting fixes.
1903         (*<code><mode>3): Likewise.
1905 2016-09-30  Jakub Jelinek  <jakub@redhat.com>
1907         * doc/invoke.texi (-Wregister): Document.
1909 2016-09-30  Bernd Edlinger  <bernd.edlinger@hotmail.de>
1911         * configure.ac: Split CHECKING_P into CHECKING_P and
1912         ENABLE_EXTRA_CHECKING.
1913         * configure: Regenerated.
1914         * config.in: Adjust commment of CHECKING_P.  Add ENABLE_EXTRA_CHECKING.
1915         * common.opt (flag_checking): Use CHECKING_P and ENABLE_EXTRA_CHECKING.
1917 2016-09-30  Prasad Ghangal  <prasad.ghangal@gmail.com>
1919         PR other/31566
1920         * gcc.c (process_command): For @filename handling, output
1921         the correct name if the file does not exist.
1923 2016-09-30  Marek Polacek  <polacek@redhat.com>
1925         * config/aarch64/aarch64-simd.md: Adjust fall through comments.
1926         * config/alpha/predicates.md: Likewise.
1928 2016-09-30  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
1930         * ifcvt.c (noce_try_avoid_const_materialization): New function.
1931         (noce_process_if_block): Use it.
1933 2016-09-30  Martin Liska  <mliska@suse.cz>
1935         * doc/invoke.texi: Document asan-use-after-return that
1936         it's disabled by default in runtime.
1938 2016-09-30  Richard Biener  <rguenther@suse.de>
1940         * tree-vrp.c (intersect_ranges): If we failed to handle
1941         the intersection choose a constant singleton range if available.
1943 2016-09-30  Richard Biener  <rguenther@suse.de>
1945         PR tree-optimization/77399
1946         * tree-ssa-forwprop.c (simplify_vector_constructor): Handle
1947         float <-> int conversions.
1949 2016-09-30  Alan Modra  <amodra@gmail.com>
1951         * config/rs6000/rs6000.c (rs6000_opt_vars): Revert last change.
1953 2016-09-29  Uros Bizjak  <ubizjak@gmail.com>
1955         * config/i386/driver-i386.c (host_detect_local_cpu): Check maximum
1956         ext_level before calling CPUID with 0x80000008.
1957         Simplify xgetbv checks.
1959 2016-09-29  David Malcolm  <dmalcolm@redhat.com>
1961         * Makefile.in (OBJS): Add print-rtl-function.o.
1962         * print-rtl-function.c: New file.
1963         * print-rtl.h (print_rtx_function): New decl.
1965 2016-09-29  Uros Bizjak  <ubizjak@gmail.com>
1967         PR target/77756
1968         * config/i386/cpuid.h (__get_cpuid_count): New.
1969         (__get_cpuid): Rename __level to __leaf.
1971 2016-09-29  Marek Polacek  <polacek@redhat.com>
1973         * genattrtab.c (write_attr_case): Also emit FALLTHRU marker.
1975 2016-09-29  Bernd Schmidt  <bschmidt@redhat.com>
1977         * builtins.c (expand_builtin_memcmp): don't swap args unless
1978         result is only being compared with zero.
1980 2016-09-29  Marek Polacek  <polacek@redhat.com>
1982         * dwarf2out.c (loc_descriptor): Add fall through comment.
1983         (add_const_value_attribute): Likewise.
1985 2016-09-29  Matthew Wahab  <matthew.wahab@arm.com>
1987         * config/arm/arm.md (*arm_movsi_insn): Replace "t2" arch attribute
1988         with "v6t2".  Move "arch" attribute above "pool_range".
1989         * config/arm/vfp.md (*arm_movhi_vfp): Replace "t2" arch attribute
1990         with "v6t2".
1991         (*thumb2_movhi_vfp): Likewise.
1992         (*arm_movhi_fp16): Likewise.
1993         (*thumb2_movhi_fp16): Likewise.
1994         (*arm_movsi_vfp): Remove "arch" attribute.
1995         (*thumb2_movsi_vfp): Likewise.
1997 2016-09-29  Martin Liska  <mliska@suse.cz>
1999         * doc/extend.texi: Remove limitation of Objective C for
2000         __attribute__((constructor)) and __attribute__((destructor)).
2002 2016-09-29  Richard Biener  <rguenther@suse.de>
2004         PR tree-optimization/77768
2005         * tree-ssa-pre.c (eliminate_dom_walker::before_dom_children):
2006         Handle stores to readonly memory when removing redundant stores.
2008 2016-09-29  Richard Biener  <rguenther@suse.de>
2010         PR middle-end/77407
2011         * match.pd: Add X / abs (X) -> X < 0 ? -1 : 1 and
2012         X / -X -> -1 simplifications.
2014 2016-09-29  Richard Biener  <rguenther@suse.de>
2016         PR middle-end/55152
2017         * match.pd: Add max(a,-a) -> abs(a) pattern.
2018         * tree-ssa-phiopt.c (minmax_replacement): Disable for
2019         HONOR_SIGNED_ZEROS types.
2021 2016-09-29  James Greenhalgh  <james.greenhalgh@arm.com>
2023         * defaults.h (TARGET_FLT_EVAL_METHOD_NON_DEFAULT): Remove.
2024         * system.h (TARGET_FLT_EVAL_METHOD_NON_DEFAULT): Poison.
2026 2016-09-29  Richard Biener  <rguenther@suse.de>
2028         * tree-vrp.c (set_defs_to_varying): New helper avoiding
2029         writing to vr_const_varying.
2030         (vrp_initialize): Call it.
2031         (vrp_visit_stmt): Likewise.
2032         (evrp_dom_walker::before_dom_children): Likewise.
2034 2016-09-29  Richard Biener  <rguenther@suse.de>
2036         * tree-vect-stmts.c (vectorizable_load): Avoid emitting vector
2037         constructors with vector elements.
2039 2016-09-29  Richard Biener  <rguenther@suse.de>
2041         PR tree-optimization/77768
2042         * tree-ssa-sccvn.c (visit_reference_op_store): Properly deal
2043         with stores to a place we know has a constant value.
2045 2016-09-29  Alan Modra  <amodra@gmail.com>
2047         * config/rs6000/sysv4.opt (mgnu-attribute): New option.
2048         * doc/invoke.texi: Document it.
2049         * config/rs6000/rs6000.c (HAVE_LD_PPC_GNU_ATTR_LONG_DOUBLE): Define.
2050         (rs6000_passes_float): Comment.
2051         (rs6000_passes_long_double): New static var.
2052         (call_ABI_of_interest): Return false unless rs6000_gnu_attr is set.
2053         (init_cumulative_args): Set up to emit fp .gnu_attribute for
2054         ELF 64-bit ABIs as well as 32-bit ELF.  Correct rs6000_passes_float
2055         to include fp values returned in vectors.
2056         Set rs6000_passes_long_double.
2057         (rs6000_function_arg_advance_1): Likewise for function args.
2058         (rs6000_elf_file_end): Emit fp .gnu_attribute for ELF 64-bit ABIs,
2059         and SPE.  Emit long double tag value too.
2060         (rs6000_opt_vars): Add gnu-attr.
2061         * configure.ac (HAVE_LD_PPC_GNU_ATTR_LONG_DOUBLE): New ppc32 test.
2062         * configure: Regenerate.
2063         * config.in: Regenerate.
2065 2016-09-28  Jakub Jelinek  <jakub@redhat.com>
2067         * gimple-ssa-sprintf.c (pass_sprintf_length::gate): Use x > 0 instead
2068         of 0 < x.
2069         (format_floating, format_string, format_directive,
2070         get_destination_size, pass_sprintf_length::handle_gimple_call):
2071         Likewise.
2073 2016-09-28  Jakub Jelinek  <jakub@redhat.com>
2075         * gimple-ssa-sprintf.c: Fix comment formatting.
2076         (format_integer): Use is_gimple_assign.
2077         (pass_sprintf_length::handle_gimple_call): Use gimple_call_builtin_p
2078         and gimple_call_fndecl.  Reorder case BUILT_IN_SPRINTF_CHK.  Fix up
2079         BUILT_IN_SNPRINTF_CHK comment.  Replace "to to" with "to" in comment.
2080         (pass_sprintf_length::execute): Use is_gimple_call.
2082 2016-09-28  Wilco Dijkstra  <wdijkstr@arm.com>
2084         * gimple-fold.c (gimple_fold_builtin): After failing to fold
2085         strchr, also try the generic folding.
2087 2016-09-28  Martin Sebor  <msebor@redhat.com>
2089         PR c/77762
2090         * gimple-ssa-sprintf.c (pass_sprintf_length::handle_gimple_call):
2091         Fix typos.
2093 2016-09-28  Martin Sebor  <msebor@redhat.com>
2095         PR middle-end/77683
2096         * gimple-ssa-sprintf.c (format_integer): Fail gracefully when
2097         length modifier is not expected.
2098         (format_floating): Ignore l length modifier and fail gracefuly
2099         when it isn't one of the other expected ones.
2101 2016-09-28  Martin Sebor  <msebor@redhat.com>
2103         PR bootstrap/77753
2104         * varasm.c (assemble_addr_to_section): Increase local buffer size.
2106 2016-09-27  Richard Biener  <rguenther@suse.de>
2108         * dwarf2out.c (cu_die_list): New global.
2109         (dwarf2out_finish): Walk cu_die_list instead of limbo DIEs.  Add
2110         main_comp_unit_die to cu_die_list if we created it.
2111         Move break_out_includes ...
2112         (dwarf2out_early_finish): ... here.  Push created CU DIEs onto
2113         the cu_die_list.
2115 2016-09-28  Richard Biener  <rguenther@suse.de>
2117         * dwarf2out.c (struct die_struct): Add removed flag.
2118         (lookup_type_die): If the DIE is marked as removed, clear
2119         TYPE_SYMTAB_DIE and return NULL.
2120         (lookup_decl_die): If the DIE is marked as removed, remove it
2121         from the hash and return NULL.
2122         (mark_removed): New helper.
2123         (prune_unused_types_prune): Call it for removed DIEs.
2124         (gen_subprogram_die): Move the premark_used_types call to after
2125         DIEs for the functions scopes are generated.
2126         (process_scope_var): Do not re-create pruned types or type decls.
2127         Make sure to also re-parent type decls.
2128         (dwarf2out_finish): Move unused type pruning and debug_types
2129         handling ...
2130         (dwarf2out_early_finish): ... here.
2132 2016-09-29  Claudiu Zissulescu  <claziss@synopsys.com>
2134         * config/arc/arc-c.c: New file.
2135         * config/arc/arc-c.def: Likewise.
2136         * config/arc/t-arc: Likewise.
2137         * config.gcc: Include arc-c.o as c and cpp object.
2138         * config/arc/arc-protos.h (arc_cpu_cpp_builtins): Add prototype.
2139         * config/arc/arc.h (TARGET_CPU_CPP_BUILTINS): Use
2140         arc_cpu_cpp_builtins.
2142 2016-09-29  Claudiu Zissulescu  <claziss@synopsys.com>
2144         * config/arc/arc.md (*rotrsi3_cnt1): New pattern.
2145         (*ashlsi2_cnt1, *lshrsi3_cnt1, *ashrsi3_cnt1): Likewise.
2147 2016-09-28  Nathan Sidwell  <nathan@acm.org>
2149         * gimple-pretty-print.c (dump_gimple_call_args): Simplify "' "
2150         printing.
2152 2016-09-28  Wilco Dijkstra  <wdijkstr@arm.com>
2154         PR tree-optimization/61056
2155         * gimple-fold.c (gimple_fold_builtin_strchr):
2156         New function to optimize strchr (s, 0) to strlen.
2157         (gimple_fold_builtin): Add BUILT_IN_STRCHR case.
2159 2016-09-27  Robin Dapp  <rdapp@linux.vnet.ibm.com>
2161         PR tree-optimization/77724
2162         * tree-vect-loop-manip.c (create_intersect_range_checks_index):
2163         Add tree_fits_shwi_p check.
2165 2016-09-27  Jakub Jelinek  <jakub@redhat.com>
2167         * auto-inc-dec.c (try_merge): Remove break after return.
2168         * cselib.c (autoinc_split): Likewise.
2169         * explow.c (promote_mode): Likewise.
2170         * fixed-value.c (fixed_arithmetic): Likewise.
2171         * hsa.c (hsa_internal_fn::get_arity): Likewise.
2172         * rtlanal.c (modified_between_p, modified_in_p): Likewise.
2173         * trans-mem.c (get_attrs_for): Likewise.
2174         * tree-if-conv.c (if_convertible_stmt_p): Likewise.
2175         * tree-vrp.c (simplify_stmt_using_ranges): Likewise.
2176         * config/aarch64/aarch64-builtins.c (aarch64_fold_builtin): Likewise.
2177         * config/aarch64/aarch64.c (aarch64_get_condition_code_1): Likewise.
2178         * config/c6x/c6x.c (c6x_get_unit_specifier): Likewise.
2179         * config/cr16/cr16.c (legitimate_pic_operand_p): Likewise.
2180         * config/cris/cris.c (cris_op_str): Likewise.
2181         * config/mn10300/mn10300.c (cc_flags_for_code): Likewise.
2182         * config/tilepro/tilepro.c (tilepro_emit_setcc_internal_di): Likewise.
2184 2016-09-27  Nathan Sidwell  <nathan@codesourcery.com>
2186         * internal-fn.h (IFN_UNIQUE_CODES, IFN_GOACC_LOOP_CODES,
2187         IFN_GOACC_REDUCTION_CODES): New.
2188         (enum ifn_unique_kind, enum ifn_goacc_loop_kind, enum
2189         ifn_goacc_reduction_kind): Use them.
2190         * gimple-pretty-print.c (dump_gimple_call_args): Decode first arg
2191         of internal functions, when applicable.
2193 2016-09-27  Maciej W. Rozycki  <macro@imgtec.com>
2195         * config/mips/constraints.md (d): Fix documentation.
2196         * doc/md.texi (Machine Constraints): Update accordingly.
2198 2016-09-27  Richard Biener  <rguenther@suse.de>
2200         * dwarf2out.c (dwarf2out_init): Move text_section_line_info,
2201         cur_line_info_table initialization ...
2202         (dwarf2out_assembly_start): ... here.
2204 2016-09-27  Matthew Wahab  <matthew.wahab@arm.com>
2206         * config/arm/arm.md (*arm_movsi_insn): Add "arch" attribute.
2207         * config/arm/vfp.md (*arm_movhi_vfp): Likewise.
2208         (*thumb2_movhi_vfp): Likewise.
2209         (*arm_movhi_fp16): Remove predication operand from VMOV.F16
2210         template.  Expand predicable attribute to mark VMOV.F16 as not
2211         predicable.  Add "arch" attribute.
2212         (*thumb2_movhi_fp16): Likewise.
2213         (*arm_movsi_vfp): Break a long line.  Add "arch" attribute.
2214         (*thumb2_movsi_vfp): Add "arch" attribute.
2216 2016-09-27  David Edelsohn  <dje.gcc@gmail.com>
2218         * config/rs6000/rs6000.c (rs6000_output_symbol): Don't modify
2219         VAR_DECL string.
2221 2016-09-27  Marek Polacek  <polacek@redhat.com>
2223         * config/ia64/ia64.c (ia64_print_operand): Adjust fall through
2224         comment.
2226         * config/c6x/c6x.h: Adjust fall through comment.
2227         * config/sh/sh.c (final_prescan_insn): Likewise.
2228         * config/visium/visium.c (visium_expand_int_cstore): Likewise.
2229         (visium_expand_fp_cstore): Likewise.
2231 2016-09-27  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
2233         * config/arm/arm.c (const_ok_for_op): Use "Fall through" comment form
2234         expected by -Wimplicit-fallthrough.
2235         (thumb1_size_rtx_costs): Likewise.
2236         (thumb2_reorg): Likewise.
2237         (tls_mentioned_p): Add "Fall through" comment.
2238         (thumb2_reorg): Likewise.
2239         * config/arm/arm-builtins.c (arm_expand_neon_args): Use "Fall through"
2240         comment form expected by -Wimplicit-fallthrough.
2242 2016-09-27  Martin Liska  <mliska@suse.cz>
2244         PR gcov-profile/46266
2245         * input.h (RESERVED_LOCATION_P): New macro.
2246         * profile.c (branch_prob): Use RESERVED_LOCATION_P and
2247         instread of comparison with UNKNOWN_LOCATION.
2249 2016-09-27  Richard Biener  <rguenther@suse.de>
2251         PR tree-optimization/77745
2252         * tree-ssa-pre.c (eliminate_dom_walker::before_dom_children):
2253         When removing redundant stores make sure to check compatibility
2254         of the TBAA state for downstream accesses.
2255         * tree-ssa-sccvn.c (visit_reference_op_store): Likewise for when
2256         value-numbering virtual operands for store matches.
2258 2016-09-27  Oleg Endo  <olegendo@gcc.gnu.org>
2260         PR target/51244
2261         * config/sh/sh.c (sh_rtx_costs): Fix return value of SET of movt and
2262         movrt patterns.  Match them before anything else in the SET case.
2264 2016-09-27  Martin Liska  <mliska@suse.cz>
2266         PR gcov-profile/7970
2267         PR gcov-profile/16855
2268         PR gcov-profile/44779
2269         * coverage.c (build_gcov_exit_decl): New function.
2270         (coverage_obj_init): Call the function and generate __gcov_exit
2271         destructor.
2272         * doc/gcov.texi: Document when __gcov_exit function is called.
2274 2016-09-27  Marek Polacek  <polacek@redhat.com>
2276         PR bootstrap/77751
2277         * Makefile.in (insn-attrtab.o-warn, insn-dfatab.o-warn,
2278         insn-latencytab.o-warn, insn-output.o-warn, insn-emit.o-warn): Use
2279         -Wno-error instead of -Wno-implicit-fallthrough.
2281 2016-09-27  Martin Liska  <mliska@suse.cz>
2283         PR bootstrap/77749
2284         * gcov-counter.def: Remove GCOV_COUNTER_V_DELTA.
2286 2016-09-27  Jakub Jelinek  <jakub@redhat.com>
2288         * combine.c (simplify_comparison): Add canonical FALLTHROUGH comments.
2289         * config/i386/i386.c (ix86_dep_by_shift_count_body): Add FALLTHROUGH
2290         comments.  Remove break after return.
2291         (ix86_fp_compare_code_to_integer, has_dispatch,
2292         ix86_simd_clone_usable): Remove break after return.
2294 2016-09-27  Bernd Edlinger  <bernd.edlinger@hotmail.de>
2296         PR rlt-optimization/77714
2297         * lra-eliminations.c (eliminate_regs_in_insn): Avoid alias on
2298         REG_EQUAL note.
2300 2016-09-27  Kugan Vivekanandarajah  <kuganv@linaro.org>
2302         PR ipa/77677
2303         * ipa-prop.c (ipa_compute_jump_functions_for_edge): Use
2304         extract_range_from_unary_expr to convert value_range.
2305         * tree-vrp.c (extract_range_from_unary_expr_1): Rename to.
2306         (extract_range_from_unary_expr): This.
2307         * tree-vrp.h (extract_range_from_unary_expr): Declare.
2309 2016-09-27  Segher Boessenkool  <segher@kernel.crashing.org>
2311         * config/rs6000/rs6000.md (movcc_internal1): Disparage using CTR or LR.
2313 2016-09-26  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
2315         * config/i386/i386.c (ix86_print_operand)
2316         [HAVE_AS_IX86_CMOV_SUN_SYNTAX]: Add gcc_fallthrough.
2317         * config/sparc/sparc.c (check_pic): Add fallthrough comment.
2318         (epilogue_renumber): Likewise.
2320 2016-09-26  Kugan Vivekanandarajah  <kuganv@linaro.org>
2322         PR middle-end/77719
2323         * tree-ssa-reassoc.c (make_new_ssa_for_def): Use gimple_get_lhs
2324         to get lhs instead of gimple_assign_lhs as stmt can be builtins too.
2326 2016-09-26  Thomas Preud'homme  <thomas.preudhomme@arm.com>
2328         * tree.h (memmodel_from_int, memmodel_base, is_mm_relaxed,
2329         is_mm_consume, is_mm_acquire, is_mm_release, is_mm_acq_rel,
2330         is_mm_seq_cst, is_mm_sync): Move to ...
2331         * memmodel.h: This.  New file.
2332         * builtins.c: Include memmodel.h.
2333         * optabs.c: Likewise.
2334         * tsan.c: Likewise.
2335         * config/aarch64/aarch64.c: Likewise.
2336         * config/alpha/alpha.c: Likewise.
2337         * config/arm/arm.c: Likewise.
2338         * config/i386/i386.c: Likewise.
2339         * config/ia64/ia64.c: Likewise.
2340         * config/mips/mips.c: Likewise.
2341         * config/rs6000/rs6000.c: Likewise.
2342         * config/sparc/sparc.c: Likewise.
2343         * genconditions.c: Include memmodel.h in generated file.
2344         * genemit.c: Likewise.
2345         * genoutput.c: Likewise.
2346         * genpeep.c: Likewise.
2347         * genpreds.c: Likewise.
2348         * genrecog.c: Likewise.
2350 2016-09-26  David Malcolm  <dmalcolm@redhat.com>
2352         * read-rtl.c (read_rtx_code): Rename local "i" to "idx", and use
2353         "c" instead when parsing characters.  Move operand parsing into...
2354         (read_rtx_operand): ...this new function, renaming "i" to "idx",
2355         and tightening the scope of various locals.
2357 2016-09-26  Liu Hao  <lh_mouse@126.com>
2359         * config/i386/cygming.h (ASM_OUTPUT_DWARF_OFFSET): Fix typo.
2361 2016-09-26  Marek Polacek  <polacek@redhat.com>
2363         * system.h: Use __has_attribute to check whether the fallthrough
2364         attribute is supported.
2366 2016-09-26  Marek Polacek  <polacek@redhat.com>
2368         * ipa-inline-analysis.c (find_foldable_builtin_expect): Use
2369         gimple_call_internal_p.
2370         * ipa-split.c (find_return_bb): Likewise.
2371         (execute_split_functions): Likewise.
2372         * omp-low.c (dump_oacc_loop_part): Likewise.
2373         (oacc_loop_xform_head_tail): Likewise.
2374         * predict.c (predict_loops): Likewise.
2375         * sanopt.c (pass_sanopt::execute): Likewise.
2376         * tree-cfg.c (get_abnormal_succ_dispatcher): Likewise.
2377         * tree-parloops.c (oacc_entry_exit_ok_1): Likewise.
2378         * tree-stdarg.c (gimple_call_ifn_va_arg_p): Remove function.
2379         (expand_ifn_va_arg_1): Use gimple_call_internal_p.
2380         (expand_ifn_va_arg): Likewise.
2381         * tree-vect-loop.c (vect_determine_vectorization_factor): Likewise.
2382         (optimize_mask_stores): Likewise.
2383         * tree-vect-stmts.c (vect_simd_lane_linear): Likewise.
2384         (vect_transform_stmt): Likewise.
2385         * tree-vectorizer.c (vect_loop_vectorized_call): Likewise.
2386         * tsan.c (instrument_memory_accesses): Likewise.
2388 2016-09-26  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
2389             Alexander Monakov  <amonakov@ispras.ru>
2391         * regrename.c (rename_chains): Check
2392         HARD_FRAME_POINTER_IS_FRAME_POINTER rather than
2393         HARD_FRAME_POINTER_REGNUM when picking unavailable registers.
2394         * sel-sched.c (mark_unavailable_hard_regs): Likewise.
2396 2016-09-26  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
2398         * config/s390/s390.c (s390_rtx_costs): Add /* fallthrough */.
2399         (s390_sched_score): Likewise.
2401 2016-09-26  Martin Liska  <mliska@suse.cz>
2403         * doc/gcov.texi: Update program output of gcov tool.
2405 2016-09-26  Martin Liska  <mliska@suse.cz>
2407         PR gcov-profile/23332
2408         * profile.c (instrument_values): Do not handle HIST_TYPE_CONST_DELTA.
2409         * tree-profile.c (gimple_gen_const_delta_profiler): Remove.
2410         * value-prof.c (dump_histogram_value): Do not handle
2411         HIST_TYPE_CONST_DELTA.
2412         (stream_in_histogram_value): Likewise.
2413         (gimple_find_values_to_profile): Likewise.
2414         * value-prof.h (enum hist_type): Likewise.
2416 2016-09-26  Martin Liska  <mliska@suse.cz>
2418         * common.opt: Exclude SANITIZE_UNREACHABLE and SANITIZE_RETURN
2419         from default sanitize recover values.
2420         * doc/invoke.texi: Fix documentation related to -fsanitize=leak,
2421         -fsanitize=address, -fsanitize=thread and -fsanitize-recover.
2422         * flag-types.h: Replace couple of 1 << x to 1UL << x, make it
2423         consistent.
2424         * opts.c (finish_options): Do a generic loop over options
2425         that can be recovered.
2426         (parse_sanitizer_options): Exclude SANITIZE_UNREACHABLE and
2427         SANITIZE_RETURN.
2428         (common_handle_option): Likewise.
2429         * opts.h: Declare can_recover to sanitizer_opts_s.
2431 2016-09-26  Andre Vieira  <andre.simoesdiasvieira@arm.com>
2433         * target.def(elf_flags_numeric): Change documentation to present tense.
2434         * doc/tm.texi: Regenerate.
2436 2016-09-26  Marek Polacek  <polacek@redhat.com>
2438         PR c/7652
2439         * Makefile.in (insn-attrtab.o-warn, insn-dfatab.o-warn,
2440         insn-latencytab.o-warn, insn-output.o-warn, insn-emit.o-warn): Add
2441         -Wno-switch-fallthrough.
2442         * builtins.c (expand_builtin_int_roundingfn_2): Add gcc_fallthrough.
2443         (expand_builtin): Likewise.
2444         * config/rs6000/rs6000.c (rs6000_builtin_vectorized_libmass): Likewise.
2445         * convert.c (convert_to_real_1): Likewise.
2446         (convert_to_integer_1): Likewise.
2447         * final.c (output_alternate_entry_point): Likewise.
2448         * genattrtab.c (make_canonical): Likewise.
2449         (write_test_expr): Likewise.
2450         * genpreds.c (validate_exp): Likewise.
2451         * gimple-ssa-strength-reduction.c
2452         (find_candidates_dom_walker::before_dom_children): Likewise.
2453         * godump.c (go_format_type): Likewise.
2454         * reload1.c (elimination_effects): Likewise.
2455         * resource.c (mark_referenced_resources): Likewise.
2456         (mark_set_resources): Likewise.
2457         * tree-ssa-loop-ivopts.c (find_deriving_biv_for_expr): Likewise.
2458         * varasm.c (output_addressed_constants): Likewise.
2460 2016-09-26  Marek Polacek  <polacek@redhat.com>
2462         PR c/7652
2463         * common.opt (Wimplicit-fallthrough): New option.
2464         * doc/extend.texi: Document statement attributes and the fallthrough
2465         attribute.
2466         * doc/invoke.texi: Document -Wimplicit-fallthrough.
2467         * gimple.h (gimple_call_internal_p): New function.
2468         * gimplify.c (struct gimplify_ctx): Add in_switch_expr.
2469         (struct label_entry): New struct.
2470         (find_label_entry): New function.
2471         (case_label_p): New function.
2472         (collect_fallthrough_labels): New function.
2473         (last_stmt_in_scope): New function.
2474         (should_warn_for_implicit_fallthrough): New function.
2475         (warn_implicit_fallthrough_r): New function.
2476         (maybe_warn_implicit_fallthrough): New function.
2477         (expand_FALLTHROUGH_r): New function.
2478         (expand_FALLTHROUGH): New function.
2479         (gimplify_switch_expr): Call maybe_warn_implicit_fallthrough and
2480         expand_FALLTHROUGH for the innermost GIMPLE_SWITCH.
2481         (gimplify_label_expr): New function.
2482         (gimplify_case_label_expr): Set location.
2483         (gimplify_expr): Call gimplify_label_expr.
2484         * internal-fn.c (expand_FALLTHROUGH): New function.
2485         * internal-fn.def (FALLTHROUGH): New internal function.
2486         * langhooks.c (lang_GNU_OBJC): New function.
2487         * langhooks.h (lang_GNU_OBJC): Declare.
2488         * system.h (gcc_fallthrough): Define.
2489         * tree-core.h: Add FALLTHROUGH_LABEL_P comment.
2490         * tree.h (FALLTHROUGH_LABEL_P): Define.
2492 2016-09-26  Richard Biener  <rguenther@suse.de>
2494         * dwarf2out.c (stripattributes): Remove unused function.
2495         (DEBUG_NORM_MACINFO_SECTION): Rename to DEBUG_MACINFO_SECTION.
2496         Push dwarf_split_debug_info handling into init_sections_and_labels.
2497         (DEBUG_NORM_MACRO_SECTION): Likewise to DEBUG_MACRO_SECTION.
2498         (DEBUG_MACRO_SECTION_FLAGS): Remove.
2499         (debug_macinfo_section_name): New global.
2500         (output_macinfo): Use debug_macinfo_section_name.
2501         (init_sections_and_labels): Split out section and label generation
2502         from dwarf2out_init.  Set debug_macinfo_section_name.
2503         (dwarf2out_init): Move text section label generation and emission
2504         to ...
2505         (dwarf2out_assembly_start): ... here.
2506         (dwarf2out_finish): Call init_sections_and_labels before DWARF
2507         output starts.
2509 2016-09-26  Richard Biener  <rguenther@suse.de>
2511         PR debug/77692
2512         * cgraphunit.c (analyze_functions): Before early removing
2513         global vars calls the late_global_decl debug handler mark
2514         the variable as readonly.
2516 2016-09-25  Oleg Endo  <olegendo@gcc.gnu.org>
2518         PR target/51244
2519         * config/sh/sh.c (sh_movt_set_dest, sh_movrt_set_dest): Add overloads.
2520         (sh_rtx_costs): Handle SET of movt and movrt patterns.
2521         * cnofig/sh/sh-protos.h (sh_movt_set_dest, sh_movrt_set_dest): Forward
2522         declare new overloads.
2523         * config/sh/sh.md (*cset_zero): Add variant that takes a treg_set_expr
2524         operand.
2526 2016-09-24  Aaron Sawdey  <acsawdey@linux.vnet.ibm.com>
2528         * config/rs6000/rs6000.c (expand_block_compare, do_load_for_compare):
2529         Change TARGET_LITTLE_ENDIAN to !BYTES_BIG_ENDIAN.
2531 2016-09-24  David Edelsohn  <dje.gcc@gmail.com>
2533         * configure.ac (gcc_cv_as_aix_dwloc): Fix typo in assembly fragment.
2534         * configure: Regenerate.
2536 2016-09-24  Marek Polacek  <polacek@redhat.com>
2538         PR c/77490
2539         * doc/invoke.texi: Document -Wbool-operation.
2541 2016-09-23  Aaron Sawdey  <acsawdey@linux.vnet.ibm.com>
2543         * config/rs6000/rs6000.md (cmpmemsi): New define_expand.
2544         * config/rs6000/rs6000.c (expand_block_compare): New function used by
2545         cmpmemsi pattern to do builtin expansion of memcmp ().
2546         (compute_current_alignment): Add helper function for
2547         expand_block_compare used to compute alignment as the compare proceeds.
2548         (select_block_compare_mode): Used by expand_block_compare to select
2549         the mode used for reading the next chunk of bytes in the compare.
2550         (do_load_for_compare): Used by expand_block_compare to emit the load
2551         insns for the compare.
2552         (rs6000_emit_dot_insn): Moved this function to avoid a forward
2553         reference from expand_block_compare ().
2554         * config/rs6000/rs6000-protos.h (expand_block_compare): Add a
2555         prototype for this function.
2556         * config/rs6000/rs6000.opt (mblock-compare-inline-limit): Add a new
2557         target option for controlling how much code inline expansion of
2558         memcmp() will be allowed to generate.
2560 2016-09-23  Jakub Jelinek  <jakub@redhat.com>
2562         * hooks.c (hook_bool_bool_false, hook_bool_bool_gcc_optionsp_false,
2563         hook_bool_mode_false, hook_bool_mode_true,
2564         hook_bool_mode_const_rtx_false, hook_bool_mode_const_rtx_true,
2565         hook_bool_mode_rtx_false, hook_bool_mode_rtx_true,
2566         hook_bool_const_rtx_insn_const_rtx_insn_true,
2567         hook_bool_mode_uhwi_false, hook_void_FILEptr_constcharptr,
2568         hook_bool_FILEptr_rtx_false, hook_bool_gsiptr_false,
2569         hook_bool_const_tree_hwi_hwi_const_tree_false,
2570         hook_bool_const_tree_hwi_hwi_const_tree_true,
2571         default_can_output_mi_thunk_no_vcall, hook_int_uint_mode_1,
2572         hook_int_const_tree_0, hook_int_const_tree_const_tree_1,
2573         hook_int_rtx_0, hook_int_rtx_bool_0, hook_void_tree,
2574         hook_void_constcharptr, hook_void_tree_treeptr, hook_void_int_int,
2575         hook_bool_tree_false, hook_bool_const_tree_false, hook_bool_tree_true,
2576         hook_bool_const_tree_true, hook_bool_tree_tree_false,
2577         hook_bool_tree_tree_true, hook_bool_tree_bool_false,
2578         hook_bool_rtx_insn_true, hook_bool_rtx_false,
2579         hook_bool_uintp_uintp_false,
2580         hook_bool_rtx_mode_int_int_intp_bool_false, hook_rtx_rtx_null,
2581         hook_rtx_tree_int_null, hook_uint_mode_0,
2582         hook_constcharptr_const_tree_null, hook_tree_tree_int_treep_bool_null,
2583         hook_tree_tree_tree_null, hook_tree_tree_tree_tree_null,
2584         hook_constcharptr_const_rtx_insn_null,
2585         hook_constcharptr_const_tree_const_tree_null,
2586         hook_constcharptr_int_const_tree_null,
2587         hook_constcharptr_int_const_tree_const_tree_null,
2588         hook_tree_const_tree_null, hook_bool_rtx_insn_int_false,
2589         hook_void_rtx_insn_int, hook_void_gcc_optionsp): For arguments with
2590         ATTRIBUTE_UNUSED, remove parameter name as well as ATTRIBUTE_UNUSED.
2592         * vec.h (vNULL): Extend comment to say = vNULL initialization
2593         isn't needed for static vars.
2595         * sel-sched-ir.c (sel_global_bb_info, sel_region_bb_info,
2596         loop_nests, s_i_d, last_added_blocks): Remove unnecessary
2597         = vNULL initialization of file scope vec.
2598         * passes.c (pass_tab, enabled_pass_uid_range_tab,
2599         disabled_pass_uid_range_tab): Likewise.
2600         * haifa-sched.c (sched_luids, h_i_d): Likewise.
2601         * tree-chkp-opt.c (check_infos): Likewise.
2602         * sel-sched.c (vec_av_set, vec_temp_moveop_nops): Likewise.
2604         * vec.h (vnull::operator vec): Add constexpr keyword for
2605         C++11 and later.
2607 2016-09-23  Doug Gilmore  <doug.gilmore@imgtec.com>
2609         PR tree-optimization/77654
2610         * tree-ssa-loop-prefetch.c (issue_prefetch_ref): Add call
2611         to duplicate_ssa_name_ptr_info.
2613 2016-09-23  David Malcolm  <dmalcolm@redhat.com>
2615         PR preprocessor/77672
2616         * input.c (selftest::test_lexer_string_locations_simple): Update
2617         test to expect location information of the terminator character
2618         at the location of the final closing quote.
2619         (selftest::test_lexer_string_locations_hex): Likewise.
2620         (selftest::test_lexer_string_locations_oct): Likewise.
2621         (selftest::test_lexer_string_locations_letter_escape_1): Likewise.
2622         (selftest::test_lexer_string_locations_letter_escape_2): Likewise.
2623         (selftest::test_lexer_string_locations_ucn4): Likewise.
2624         (selftest::test_lexer_string_locations_ucn8): Likewise.
2625         (selftest::test_lexer_string_locations_u8): Likewise.
2626         (selftest::test_lexer_string_locations_utf8_source): Likewise.
2627         (selftest::test_lexer_string_locations_concatenation_1): Likewise.
2628         (selftest::test_lexer_string_locations_concatenation_2): Likewise.
2629         (selftest::test_lexer_string_locations_concatenation_3): Likewise.
2630         (selftest::test_lexer_string_locations_macro): Likewise.
2631         (selftest::test_lexer_string_locations_long_line): Likewise.
2633 2016-09-23  Richard Biener  <rguenther@suse.de>
2635         * tree-ssa-sccvn.c (visit_reference_op_call): Value number
2636         virtual definition to virtual use if the call devirtualizes
2637         to a const or pure function.
2638         (visit_use): Also visit calls we can devirtualize to a
2639         const or pure function.
2641 2016-09-23  Richard Biener  <rguenther@suse.de>
2643         PR tree-optimization/77697
2644         * tree-ssa-forwprop.c (defcodefor_name): Remove bogus code,
2645         signal error if we have sth ternary or unhandled.
2647 2016-09-23  Matthew Wahab  <matthew.wahab@arm.com>
2649         * config/arm/arm_neon.h (vabd_f16): New.
2650         (vabdq_f16): New.
2651         (vabs_f16): New.
2652         (vabsq_f16): New.
2653         (vadd_f16): New.
2654         (vaddq_f16): New.
2655         (vcage_f16): New.
2656         (vcageq_f16): New.
2657         (vcagt_f16): New.
2658         (vcagtq_f16): New.
2659         (vcale_f16): New.
2660         (vcaleq_f16): New.
2661         (vcalt_f16): New.
2662         (vcaltq_f16): New.
2663         (vceq_f16): New.
2664         (vceqq_f16): New.
2665         (vceqz_f16): New.
2666         (vceqzq_f16): New.
2667         (vcge_f16): New.
2668         (vcgeq_f16): New.
2669         (vcgez_f16): New.
2670         (vcgezq_f16): New.
2671         (vcgt_f16): New.
2672         (vcgtq_f16): New.
2673         (vcgtz_f16): New.
2674         (vcgtzq_f16): New.
2675         (vcle_f16): New.
2676         (vcleq_f16): New.
2677         (vclez_f16): New.
2678         (vclezq_f16): New.
2679         (vclt_f16): New.
2680         (vcltq_f16): New.
2681         (vcltz_f16): New.
2682         (vcltzq_f16): New.
2683         (vcvt_f16_s16): New.
2684         (vcvt_f16_u16): New.
2685         (vcvt_s16_f16): New.
2686         (vcvt_u16_f16): New.
2687         (vcvtq_f16_s16): New.
2688         (vcvtq_f16_u16): New.
2689         (vcvtq_s16_f16): New.
2690         (vcvtq_u16_f16): New.
2691         (vcvta_s16_f16): New.
2692         (vcvta_u16_f16): New.
2693         (vcvtaq_s16_f16): New.
2694         (vcvtaq_u16_f16): New.
2695         (vcvtm_s16_f16): New.
2696         (vcvtm_u16_f16): New.
2697         (vcvtmq_s16_f16): New.
2698         (vcvtmq_u16_f16): New.
2699         (vcvtn_s16_f16): New.
2700         (vcvtn_u16_f16): New.
2701         (vcvtnq_s16_f16): New.
2702         (vcvtnq_u16_f16): New.
2703         (vcvtp_s16_f16): New.
2704         (vcvtp_u16_f16): New.
2705         (vcvtpq_s16_f16): New.
2706         (vcvtpq_u16_f16): New.
2707         (vcvt_n_f16_s16): New.
2708         (vcvt_n_f16_u16): New.
2709         (vcvtq_n_f16_s16): New.
2710         (vcvtq_n_f16_u16): New.
2711         (vcvt_n_s16_f16): New.
2712         (vcvt_n_u16_f16): New.
2713         (vcvtq_n_s16_f16): New.
2714         (vcvtq_n_u16_f16): New.
2715         (vfma_f16): New.
2716         (vfmaq_f16): New.
2717         (vfms_f16): New.
2718         (vfmsq_f16): New.
2719         (vmax_f16): New.
2720         (vmaxq_f16): New.
2721         (vmaxnm_f16): New.
2722         (vmaxnmq_f16): New.
2723         (vmin_f16): New.
2724         (vminq_f16): New.
2725         (vminnm_f16): New.
2726         (vminnmq_f16): New.
2727         (vmul_f16): New.
2728         (vmul_lane_f16): New.
2729         (vmul_n_f16): New.
2730         (vmulq_f16): New.
2731         (vmulq_lane_f16): New.
2732         (vmulq_n_f16): New.
2733         (vneg_f16): New.
2734         (vnegq_f16): New.
2735         (vpadd_f16): New.
2736         (vpmax_f16): New.
2737         (vpmin_f16): New.
2738         (vrecpe_f16): New.
2739         (vrecpeq_f16): New.
2740         (vrnd_f16): New.
2741         (vrndq_f16): New.
2742         (vrnda_f16): New.
2743         (vrndaq_f16): New.
2744         (vrndm_f16): New.
2745         (vrndmq_f16): New.
2746         (vrndn_f16): New.
2747         (vrndnq_f16): New.
2748         (vrndp_f16): New.
2749         (vrndpq_f16): New.
2750         (vrndx_f16): New.
2751         (vrndxq_f16): New.
2752         (vrsqrte_f16): New.
2753         (vrsqrteq_f16): New.
2754         (vrecps_f16): New.
2755         (vrecpsq_f16): New.
2756         (vrsqrts_f16): New.
2757         (vrsqrtsq_f16): New.
2758         (vsub_f16): New.
2759         (vsubq_f16): New.
2761 2016-09-23  Matthew Wahab  <matthew.wahab@arm.com>
2763         * config.gcc (extra_headers): Add arm_fp16.h
2764         * config/arm/arm_fp16.h: New.
2765         * config/arm/arm_neon.h: Include "arm_fp16.h".
2767 2016-09-23  Matthew Wahab  <matthew.wahab@arm.com>
2769         * config/arm/arm_neon_builtins.def (vadd): New (v8hf, v4hf
2770         variants).
2771         (vmulf): New (v8hf, v4hf variants).
2772         (vfma): New (v8hf, v4hf variants).
2773         (vfms): New (v8hf, v4hf variants).
2774         (vsub): New (v8hf, v4hf variants).
2775         (vcage): New (v8hf, v4hf variants).
2776         (vcagt): New (v8hf, v4hf variants).
2777         (vcale): New (v8hf, v4hf variants).
2778         (vcalt): New (v8hf, v4hf variants).
2779         (vceq): New (v8hf, v4hf variants).
2780         (vcgt): New (v8hf, v4hf variants).
2781         (vcge): New (v8hf, v4hf variants).
2782         (vcle): New (v8hf, v4hf variants).
2783         (vclt): New (v8hf, v4hf variants).
2784         (vceqz): New (v8hf, v4hf variants).
2785         (vcgez): New (v8hf, v4hf variants).
2786         (vcgtz): New (v8hf, v4hf variants).
2787         (vcltz): New (v8hf, v4hf variants).
2788         (vclez): New (v8hf, v4hf variants).
2789         (vabd): New (v8hf, v4hf variants).
2790         (vmaxf): New (v8hf, v4hf variants).
2791         (vmaxnm): New (v8hf, v4hf variants).
2792         (vminf): New (v8hf, v4hf variants).
2793         (vminnm): New (v8hf, v4hf variants).
2794         (vpmaxf): New (v4hf variant).
2795         (vpminf): New (v4hf variant).
2796         (vpadd): New (v4hf variant).
2797         (vrecps): New (v8hf, v4hf variants).
2798         (vrsqrts): New (v8hf, v4hf variants).
2799         (vabs): New (v8hf, v4hf variants).
2800         (vneg): New (v8hf, v4hf variants).
2801         (vrecpe): New (v8hf, v4hf variants).
2802         (vrnd): New (v8hf, v4hf variants).
2803         (vrnda): New (v8hf, v4hf variants).
2804         (vrndm): New (v8hf, v4hf variants).
2805         (vrndn): New (v8hf, v4hf variants).
2806         (vrndp): New (v8hf, v4hf variants).
2807         (vrndx): New (v8hf, v4hf variants).
2808         (vrsqrte): New (v8hf, v4hf variants).
2809         (vmul_lane): Add v4hf and v8hf variants.
2810         (vmul_n): Add v4hf and v8hf variants.
2811         (vext): New (v8hf, v4hf variants).
2812         (vcvts): New (v8hi, v4hi variants).
2813         (vcvts): New (v8hf, v4hf variants).
2814         (vcvtu): New (v8hi, v4hi variants).
2815         (vcvtu): New (v8hf, v4hf variants).
2816         (vcvts_n): New (v8hf, v4hf variants).
2817         (vcvtu_n): New (v8hi, v4hi variants).
2818         (vcvts_n): New (v8hi, v4hi variants).
2819         (vcvtu_n): New (v8hf, v4hf variants).
2820         (vbsl): New (v8hf, v4hf variants).
2821         (vcvtas): New (v8hf, v4hf variants).
2822         (vcvtau): New (v8hf, v4hf variants).
2823         (vcvtms): New (v8hf, v4hf variants).
2824         (vcvtmu): New (v8hf, v4hf variants).
2825         (vcvtns): New (v8hf, v4hf variants).
2826         (vcvtnu): New (v8hf, v4hf variants).
2827         (vcvtps): New (v8hf, v4hf variants).
2828         (vcvtpu): New (v8hf, v4hf variants).
2830 2016-09-23  Matthew Wahab  <matthew.wahab@arm.com>
2832         * config/arm/arm-builtins.c (hf_UP): New.
2833         (si_UP): New.
2834         (vfp_builtin_data): New.  Update comment.
2835         (enum arm_builtins): Include "arm_vfp_builtins.def".
2836         (ARM_BUILTIN_VFP_PATTERN_START): New.
2837         (arm_init_vfp_builtins): New.
2838         (arm_init_builtins): Add arm_init_vfp_builtins.
2839         (arm_expand_vfp_builtin): New.
2840         (arm_expand_builtins): Update for arm_expand_vfp_builtin.  Fix
2841         long line.
2842         * config/arm/arm_vfp_builtins.def: New file.
2843         * config/arm/t-arm (arm.o): Add arm_vfp_builtins.def.
2844         (arm-builtins.o): Likewise.
2846 2016-09-23  Kugan Vivekanandarajah  <kuganv@linaro.org>
2848         PR ipa/77677
2849         * ipa-cp.c (propagate_vr_accross_jump_function): Drop TREE_OVERFLOW
2850         from constant while creating value range.
2852 2016-09-23  Renlin Li  <renlin.li@arm.com>
2854         * ira.c (ira): Move ira_use_lra_p initialization code to ...
2855         (ira_init_once): Here.
2857 2016-09-23  Uros Bizjak  <ubizjak@gmail.com>
2858             Jakub Jelinek  <jakub@redhat.com>
2860         * hooks.h (hook_uint_uintp_false): Rename to...
2861         (hook_bool_uint_uintp_false): ... this.
2862         * hooks.c (hook_uint_uintp_false): Rename to...
2863         (hook_bool_uint_uintp_false): ... this.
2864         * target.def (elf_flags_numeric): Use hook_bool_uint_uintp_false
2865         instead of hook_uint_uintp_false.
2867 2016-09-23  Matthew Wahab  <matthew.wahab@arm.com>
2869         * config/arm/arm-builtins.c (arm_init_neon_builtin): New.
2870         (arm_init_builtins): Move body of a loop to the standalone
2871         function arm_init_neon_builtin.
2872         (arm_expand_neon_builtin_1): New.  Update comment.  Function body
2873         moved from arm_neon_builtin with some white-space fixes.
2874         (arm_expand_neon_builtin): Move code into the standalone function
2875         arm_expand_neon_builtin_1.
2877 2016-09-23  Matthew Wahab  <matthew.wahab@arm.com>
2879         * config/arm/iterators.md (VCVTHI): New.
2880         (NEON_VCMP): Add UNSPEC_VCLT and UNSPEC_VCLE.  Fix a long line.
2881         (NEON_VAGLTE): New.
2882         (VFM_LANE_AS): New.
2883         (VH_CVTTO): New.
2884         (V_reg): Add HF, V4HF and V8HF.  Fix white-space.
2885         (V_HALF): Add V4HF.  Fix white-space.
2886         (V_if_elem): Add HF, V4HF and V8HF.  Fix white-space.
2887         (V_s_elem): Likewise.
2888         (V_sz_elem): Fix white-space.
2889         (V_elem_ch): Likewise.
2890         (VH_elem_ch): New.
2891         (scalar_mul_constraint): Add V8HF and V4HF.
2892         (Is_float_mode): Fix white-space.
2893         (Is_d_reg): Add V4HF and V8HF.  Fix white-space.
2894         (q): Add HF.  Fix white-space.
2895         (float_sup): New.
2896         (float_SUP): New.
2897         (cmp_op_unsp): Add UNSPEC_VCALE and UNSPEC_VCALT.
2898         (neon_vfm_lane_as): New.
2899         * config/arm/neon.md (add<mode>3_fp16): New.
2900         (sub<mode>3_fp16): New.
2901         (mul<mode>3add<mode>_neon): New.
2902         (fma<VH:mode>4_intrinsic): New.
2903         (fmsub<VCVTF:mode>4_intrinsic): Fix white-space.
2904         (fmsub<VH:mode>4_intrinsic): New.
2905         (<absneg_str><mode>2): New.
2906         (neon_v<absneg_str><mode>): New.
2907         (neon_v<fp16_rnd_str><mode>): New.
2908         (neon_vrsqrte<mode>): New.
2909         (neon_vpaddv4hf): New.
2910         (neon_vadd<mode>): New.
2911         (neon_vsub<mode>): New.
2912         (neon_vmulf<mode>): New.
2913         (neon_vfma<VH:mode>): New.
2914         (neon_vfms<VH:mode>): New.
2915         (neon_vc<cmp_op><mode>): New.
2916         (neon_vc<cmp_op><mode>_fp16insn): New
2917         (neon_vc<cmp_op_unsp><mode>_fp16insn_unspec): New.
2918         (neon_vca<cmp_op><mode>): New.
2919         (neon_vca<cmp_op><mode>_fp16insn): New.
2920         (neon_vca<cmp_op_unsp><mode>_fp16insn_unspec): New.
2921         (neon_vc<cmp_op>z<mode>): New.
2922         (neon_vabd<mode>): New.
2923         (neon_v<maxmin>f<mode>): New.
2924         (neon_vp<maxmin>fv4hf: New.
2925         (neon_<fmaxmin_op><mode>): New.
2926         (neon_vrecps<mode>): New.
2927         (neon_vrsqrts<mode>): New.
2928         (neon_vrecpe<mode>): New (VH variant).
2929         (neon_vdup_lane<mode>_internal): New.
2930         (neon_vdup_lane<mode>): New.
2931         (neon_vcvt<sup><mode>): New (VCVTHI variant).
2932         (neon_vcvt<sup><mode>): New (VH variant).
2933         (neon_vcvt<sup>_n<mode>): New (VH variant).
2934         (neon_vcvt<sup>_n<mode>): New (VCVTHI variant).
2935         (neon_vcvt<vcvth_op><sup><mode>): New.
2936         (neon_vmul_lane<mode>): New.
2937         (neon_vmul_n<mode>): New.
2938         * config/arm/unspecs.md (UNSPEC_VCALE): New
2939         (UNSPEC_VCALT): New.
2940         (UNSPEC_VFMA_LANE): New.
2941         (UNSPECS_VFMS_LANE): New.
2943 2016-09-23  Dominik Vogt  <vogt@linux.vnet.ibm.com>
2945         * config/s390/s390.md ("*extzv<mode>_zEC12", "*extzv<mode>_z10")
2946         ("*extzv<mode><clobbercc_or_nocc>"):
2947         Correct a typo in a comment.
2948         Merged patterns.
2949         ("*insv<mode>_zEC12", "*insv<mode>_z10")
2950         ("*insv<mode><clobbercc_or_nocc>"): Ditto.
2951         ("*insv<mode>_zEC12_appendbitsleft")
2952         ("*insv<mode><clobbercc_or_nocc>_appendbitsleft")
2953         ("*insv<mode>_z10_appendbitsleft"): Ditto.
2954         ("*insv<mode>_zEC12_noshift", "*insv<mode>_z10_noshift")
2955         ("*insv<mode><clobbercc_or_nocc>_noshift"): Ditto.
2956         Provide pattern with operands switched.
2957         ("*pre_z10_extv<mode>"):
2958         Use new subst patterns.
2959         ("*extzvdi<clobbercc_or_nocc>_lshiftrt", "*<risbg_n>_ior_and_sr_ze")
2960         ("*extvsidi<clobbercc_or_nocc>", "*<risbg_n>_and_subregdi_rotr")
2961         ("*<risbg_n>_and_subregdi_rotl", "*<risbg_n>_di_and_rot")
2962         ("*insv_z10_noshift_cc", "*insv_z10_noshift_cconly")
2963         ("*<risbg_n>_<mode>_ior_and_lshiftrt")
2964         ("*<risbg_n>_sidi_ior_and_lshiftrt")
2965         ("*trunc_sidi_and_subreg_lshrt<clobbercc_or_nocc>"):
2966         New patterns.
2967         ("*extzv_<mode>_sll", "*extzv_<mode>_srl")
2968         ("*extzv_<mode>_srl<clobbercc_or_nocc>")
2969         ("*extzv_<mode>_sll<clobbercc_or_nocc>"): Renamed patterns, use risbgn
2970         on zEC12.
2971         ("SINT"): New mode_iterator with SI, HI, QI.
2972         * config/s390/subst.md ("clobbercc_or_nocc_subst", "z10_or_zEC12_cond")
2973         ("clobbercc_or_nocc", "risbg_n"): New constructs for risbg pattern
2974         duplication.
2976 2016-09-23  Dominik Vogt  <vogt@linux.vnet.ibm.com>
2978         * config/s390/predicates.md ("contiguous_bitmask_operand"): Adapt to
2979         new interface of s390_contiguous_bitmask_p.
2980         ("contiguous_bitmask_nowrap_operand"): New predicate.
2981         ("*anddi3_cc", "*anddi3_cconly", "*anddi3"): Replace NxxDq with NxxDw.
2982         * config/s390/constraints.md ("NxxDw", "NxxSq"): Adapt to new interface
2983         of s390_contiguous_bitmask_p.
2984         ("NxxDw"): Rename NxxDq constraint to NxxDw.
2985         ("NxxSw"): New constraint.
2986         * config/s390/s390.md ("*andsi3_zarch"): Enable bitmask wraparound.
2987         * config/s390/s390-protos.h (s390_contiguous_bitmask_p): Updated
2988         interface.
2989         (s390_contiguous_bitmask_nowrap_p): Export.
2990         * config/s390/s390.c (s390_contiguous_bitmask_nowrap_p): New name of
2991         former s390_contiguous_bitmask_p.
2992         (s390_contiguous_bitmask_p): Use s390_contiguous_bitmask_nowrap_p to
2993         detect contiguous bit ranges with wraparound.  Change signature to
2994         return START and END position instead of POS and LENGTH.
2995         (s390_contiguous_bitmask_vector_p): Remove extra code for continous bit
2996         ranges with wraparound.
2997         (s390_extzv_shift_ok): Use s390_contiguous_bitmask_nowrap_p.
2998         (s390_contiguous_bitmask_vector_p,s390_extzv_shift_ok,print_operand):
2999         Adapt to new signature of s390_contiguous_bitmask_p.
3001 2016-09-23  Bin Cheng  <bin.cheng@arm.com>
3003         * tree-vect-loop-manip.c (create_intersect_range_checks_index): New.
3004         (create_intersect_range_checks): New.
3005         (vect_create_cond_for_alias_checks): Call above function.
3007 2016-09-23  Matthew Wahab  <matthew.wahab@arm.com>
3009         * config/arm/iterators.md (Code iterators): Fix some white-space
3010         in the comments.
3011         (GLTE): New.
3012         (ABSNEG): New
3013         (FCVT): Moved from vfp.md.
3014         (VCVT_HF_US_N): New.
3015         (VCVT_SI_US_N): New.
3016         (VCVT_HF_US): New.
3017         (VCVTH_US): New.
3018         (FP16_RND): New.
3019         (absneg_str): New.
3020         (FCVTI32typename): Moved from vfp.md.
3021         (sup): Add UNSPEC_VCVTA_S, UNSPEC_VCVTA_U, UNSPEC_VCVTM_S,
3022         UNSPEC_VCVTM_U, UNSPEC_VCVTN_S, UNSPEC_VCVTN_U, UNSPEC_VCVTP_S,
3023         UNSPEC_VCVTP_U, UNSPEC_VCVT_HF_S_N, UNSPEC_VCVT_HF_U_N,
3024         UNSPEC_VCVT_SI_S_N, UNSPEC_VCVT_SI_U_N,  UNSPEC_VCVTH_S_N,
3025         UNSPEC_VCVTH_U_N, UNSPEC_VCVTH_S and UNSPEC_VCVTH_U.
3026         (vcvth_op): New.
3027         (fp16_rnd_str): New.
3028         (fp16_rnd_insn): New.
3029         * config/arm/unspecs.md (UNSPEC_VCVT_HF_S_N): New.
3030         (UNSPEC_VCVT_HF_U_N): New.
3031         (UNSPEC_VCVT_SI_S_N): New.
3032         (UNSPEC_VCVT_SI_U_N): New.
3033         (UNSPEC_VCVTH_S): New.
3034         (UNSPEC_VCVTH_U): New.
3035         (UNSPEC_VCVTA_S): New.
3036         (UNSPEC_VCVTA_U): New.
3037         (UNSPEC_VCVTM_S): New.
3038         (UNSPEC_VCVTM_U): New.
3039         (UNSPEC_VCVTN_S): New.
3040         (UNSPEC_VCVTN_U): New.
3041         (UNSPEC_VCVTP_S): New.
3042         (UNSPEC_VCVTP_U): New.
3043         (UNSPEC_VCVTP_S): New.
3044         (UNSPEC_VCVTP_U): New.
3045         (UNSPEC_VRND): New.
3046         (UNSPEC_VRNDA): New.
3047         (UNSPEC_VRNDI): New.
3048         (UNSPEC_VRNDM): New.
3049         (UNSPEC_VRNDN): New.
3050         (UNSPEC_VRNDP): New.
3051         (UNSPEC_VRNDX): New.
3052         * config/arm/vfp.md (<absneg_str>hf2): New.
3053         (neon_vabshf): New.
3054         (neon_v<fp16_rnd_str>hf): New.
3055         (neon_vrndihf): New.
3056         (addhf3): New.
3057         (subhf3): New.
3058         (divhf3): New.
3059         (mulhf3): New.
3060         (*mulsf3neghf_vfp): New.
3061         (*negmulhf3_vfp): New.
3062         (*mulsf3addhf_vfp): New.
3063         (*mulhf3subhf_vfp): New.
3064         (*mulhf3neghfaddhf_vfp): New.
3065         (*mulhf3neghfsubhf_vfp): New.
3066         (fmahf4): New.
3067         (neon_vfmahf): New.
3068         (fmsubhf4_fp16): New.
3069         (neon_vfmshf): New.
3070         (*fnmsubhf4): New.
3071         (*fnmaddhf4): New.
3072         (neon_vsqrthf): New.
3073         (neon_vrsqrtshf): New.
3074         (FCVT): Move to iterators.md.
3075         (FCVTI32typename): Likewise.
3076         (neon_vcvth<sup>hf): New.
3077         (neon_vcvth<sup>si): New.
3078         (neon_vcvth<sup>_nhf_unspec): New.
3079         (neon_vcvth<sup>_nhf): New.
3080         (neon_vcvth<sup>_nsi_unspec): New.
3081         (neon_vcvth<sup>_nsi): New.
3082         (neon_vcvt<vcvth_op>h<sup>si): New.
3083         (neon_<fmaxmin_op>hf): New.
3085 2016-09-23  Dominik Vogt  <vogt@linux.vnet.ibm.com>
3087         * config/s390/s390.md (bitoff, bitoff_plus): Neq mode attributes.
3088         ("*extzv<mode>_zEC12", "*insv<mode>_zEC12", "*insv<mode>_z10")
3089         ("*insv<mode>_zEC12_appendbitsleft")
3090         ("*insv<mode>_z10_appendbitsleft", "*r<noxa>sbg_<mode>_sll")
3091         ("*r<noxa>sbg_<mode>_srl"): Use new attributes.
3093 2016-09-23  Jakub Jelinek  <jakub@redhat.com>
3095         * ipa-cp.c (ipcp_store_vr_results): Avoid static local var zero.
3096         * sreal.h (sreal::min, sreal::max): Avoid static local vars,
3097         construct values without normalization.
3098         * tree-ssa-sccvn.c (vn_reference_lookup_3): Don't initialize
3099         static local lhs_ops to vNULL.
3101 2016-09-23  Matthew Wahab  <matthew.wahab@arm.com>
3102             Jiong Wang <jiong.wang@arm.com>
3104         * config/arm/arm.c (coproc_secondary_reload_class): Make HFmode
3105         available when FP16 instructions are available.
3106         (output_move_vfp): Add support for 16-bit data moves.
3107         (arm_validize_comparison): Fix some white-space.  Support HFmode
3108         by conversion to SFmode.
3109         * config/arm/arm.md (truncdfhf2): Fix a comment.
3110         (extendhfdf2): Likewise.
3111         (cstorehf4): New.
3112         (movsicc): Fix some white-space.
3113         (movhfcc): New.
3114         (movsfcc): Fix some white-space.
3115         (*cmovhf): New.
3116         * config/arm/vfp.md (*arm_movhi_vfp): Disable when VFP FP16
3117         instructions are available.
3118         (*thumb2_movhi_vfp): Likewise.
3119         (*arm_movhi_fp16): New.
3120         (*thumb2_movhi_fp16): New.
3121         (*movhf_vfp_fp16): New.
3122         (*movhf_vfp_neon): Disable when VFP FP16 instructions are available.
3123         (*movhf_vfp): Likewise.
3124         (extendhfsf2): Enable when VFP FP16 instructions are available.
3125         (truncsfhf2):  Enable when VFP FP16 instructions are available.
3127 2016-09-23  Martin Liska  <mliska@suse.cz>
3129         * config/s390/vx-builtins.md: Replace 'adress' with 'address'.
3131 2016-09-23  Matthew Wahab  <matthew.wahab@arm.com>
3133         * config/arm/arm.c (arm_evpc_neon_vuzp): Add support for V8HF and
3134         V4HF modes.
3135         (arm_evpc_neon_vtrn): Likewise.
3136         (arm_evpc_neon_vrev): Likewise.
3137         (arm_evpc_neon_vext): Likewise.
3138         * config/arm/arm_neon.h (vbsl_f16): New.
3139         (vbslq_f16): New.
3140         (vdup_n_f16): New.
3141         (vdupq_n_f16): New.
3142         (vdup_lane_f16): New.
3143         (vdupq_lane_f16): New.
3144         (vext_f16): New.
3145         (vextq_f16): New.
3146         (vmov_n_f16): New.
3147         (vmovq_n_f16): New.
3148         (vrev64_f16): New.
3149         (vrev64q_f16): New.
3150         (vtrn_f16): New.
3151         (vtrnq_f16): New.
3152         (vuzp_f16): New.
3153         (vuzpq_f16): New.
3154         (vzip_f16): New.
3155         (vzipq_f16): New.
3156         * config/arm/arm_neon_buillins.def (vdup_n): New (v8hf, v4hf variants).
3157         (vdup_lane): New (v8hf, v4hf variants).
3158         (vext): New (v8hf, v4hf variants).
3159         (vbsl): New (v8hf, v4hf variants).
3160         * config/arm/iterators.md (VDQWH): New.
3161         (VH): New.
3162         (V_double_vector_mode): Add V8HF and V4HF.  Fix white-space.
3163         (Scalar_mul_8_16): Fix white-space.
3164         (Is_d_reg): Add V4HF and V8HF.
3165         * config/arm/neon.md (neon_vdup_lane<mode>_internal): New.
3166         (neon_vdup_lane<mode>): New.
3167         (neon_vtrn<mode>_internal): Replace VDQW with VDQWH.
3168         (*neon_vtrn<mode>_insn): Likewise.
3169         (neon_vzip<mode>_internal): Likewise. Also fix white-space.
3170         (*neon_vzip<mode>_insn): Likewise
3171         (neon_vuzp<mode>_internal): Likewise.
3172         (*neon_vuzp<mode>_insn): Likewise
3173         * config/arm/vec-common.md (vec_perm_const<mode>): New.
3175 2016-09-23  Jiong Wang  <jiong.wang@arm.com>
3176             Matthew Wahab  <matthew.wahab@arm.com>
3178         * config/arm/arm.c (output_move_vfp): Weaken assert to allow HImode.
3179         (arm_hard_regno_mode_ok): Allow HImode values in VFP registers.
3180         * config/arm/arm.md (*movhi_bytes): Disable when VFP registers are
3181         available.  Also fix some white-space.
3182         * config/arm/vfp.md (*arm_movhi_vfp): New.
3183         (*thumb2_movhi_vfp): New.
3185 2016-09-23  Matthew Wahab  <matthew.wahab@arm.com>
3187         * config/arm/arm-c.c (arm_cpu_builtins): Define
3188         "__ARM_FEATURE_FP16_SCALAR_ARITHMETIC" and
3189         "__ARM_FEATURE_FP16_VECTOR_ARITHMETIC".
3191 2016-09-23  Matthew Wahab  <matthew.wahab@arm.com>
3193         * doc/sourcebuild.texi (ARM-specific attributes): Add anchor for
3194         arm_v8_1a_neon_ok.  Add entries for arm_v8_2a_fp16_scalar_ok,
3195         arm_v8_2a_fp16_scalar_hw, arm_v8_2a_fp16_neon_ok and
3196         arm_v8_2a_fp16_neon_hw.
3197         (Add options): Add entries for arm_v8_1a_neon, arm_v8_2a_scalar,
3198         arm_v8_2a_neon.
3200 2016-09-23  Matthew Wahab  <matthew.wahab@arm.com>
3202         * doc/sourcebuild.texi (ARM-specific attributes): Add entries for
3203         arm_fp16_alternative_ok and arm_fp16_none_ok.
3205 2016-09-23  Martin Liska  <mliska@suse.cz>
3207         * ipa-icf.c (sem_variable::merge): Replace adress with address.
3209 2016-09-23  Matthew Wahab  <matthew.wahab@arm.com>
3211         * config/arm/arm-arches.def ("armv8.1-a"): Add FL_CRC32.
3212         ("armv8.2-a"): New.
3213         ("armv8.2-a+fp16"): New.
3214         * config/arm/arm-protos.h (FL2_ARCH8_2): New.
3215         (FL2_FP16INST): New.
3216         (FL2_FOR_ARCH8_2A): New.
3217         * config/arm/arm-tables.opt: Regenerate.
3218         * config/arm/arm.c (arm_arch8_2): New.
3219         (arm_fp16_inst): New.
3220         (arm_option_override): Set arm_arch8_2 and arm_fp16_inst.  Check
3221         for incompatible fp16-format settings.
3222         * config/arm/arm.h (TARGET_VFP_FP16INST): New.
3223         (TARGET_NEON_FP16INST): New.
3224         (arm_arch8_2): Declare.
3225         (arm_fp16_inst): Declare.
3226         * config/arm/bpabi.h (BE8_LINK_SPEC): Add entries for
3227         march=armv8.2-a and march=armv8.2-a+fp16.
3228         * config/arm/t-aprofile (Arch Matches): Add entries for armv8.2-a
3229         and armv8.2-a+fp16.
3230         * doc/invoke.texi (ARM Options): Add "-march=armv8.1-a",
3231         "-march=armv8.2-a" and "-march=armv8.2-a+fp16".
3233 2016-09-23  Martin Liska  <mliska@suse.cz>
3235         * doc/extend.texi: Remove fused-madd from i386 target options.
3237 2016-09-23  Martin Liska  <mliska@suse.cz>
3239         * config/i386/i386.c (ix86_valid_target_attribute_inner_p):
3240         Handle movbe.
3242 2016-09-23  Martin Liska  <mliska@suse.cz>
3244         * config/i386/i386.c (ix86_valid_target_attribute_inner_p):
3245         Handle crc32.
3247 2016-09-23  Martin Liska  <mliska@suse.cz>
3249         PR target/71652
3250         * config/i386/i386.c (ix86_option_override_internal): Change
3251         signature and return false when there's an error related to
3252         arch string.
3253         (release_options_strings): New function.
3254         (ix86_valid_target_attribute_tree): Call the function.
3256 2016-09-23  Jakub Jelinek  <jakub@redhat.com>
3258         * hsa-gen.c (hsa_op_immed::hsa_op_immed Use CONSTRUCTOR_NELTS (...)
3259         instead of vec_safe_length (CONSTRUCTOR_ELTS (...)).
3260         (gen_hsa_ctor_assignment): Likewise.
3261         * print-tree.c (print_node): Likewise.
3262         * tree-dump.c (dequeue_and_dump): Likewise.
3263         * tree-sra.c (sra_modify_constructor_assign): Likewise.
3264         * expr.c (store_constructor): Likewise.
3265         * fold-const.c (operand_equal_p): Likewise.
3266         * tree-pretty-print.c (dump_generic_node): Likewise.
3267         * hsa-brig.c (hsa_op_immed::emit_to_buffer): Likewise.
3268         * ipa-icf-gimple.c (func_checker::compare_operand): Likewise.
3270 2016-09-23  Richard Biener  <rguenther@suse.de>
3272         * hooks.h (hook_uint_uintp_false): Declare.
3274 2016-09-22  Senthil Kumar Selvaraj  <senthil_kumar.selvaraj@atmel.com>
3276         * config/avr/avr.c (avr_rtx_costs_1): Handle DImode MULT.
3277         (avr_address_cost): Replace 61 with MAX_LD_OFFSET(mode).
3279 2016-09-22  Martin Sebor  <msebor@redhat.com>
3281         PR target/77676
3282         * gimple-ssa-sprintf.c (target_int_min, target_int_max): Use
3283         HOST_BITS_PER_WIDE_INT, make a static local variable auto.
3284         (target_int_min): Correct computation.
3285         (format_integer): Use long long as the argument for the ll length
3286         modifier.
3287         (format_floating): Use target_int_max().
3288         (get_string_length): Same.
3289         (format_string): Avoid setting the bounded flag for strings
3290         of unknown length.
3291         (try_substitute_return_value): Avoid setting range info when
3292         the result isn't bounded.
3293         * varasm.c (assemble_name): Increase buffer size.
3295 2016-09-22  Andre Vieira  <andre.simoesdiasvieira@arm.com>
3296             Terry Guo  <terry.guo@arm.com>
3298         * target.def (elf_flags_numeric): New target hook.
3299         * targhooks.h (default_asm_elf_flags_numeric): New.
3300         * varasm.c (default_asm_elf_flags_numeric): New.
3301         (default_elf_asm_named_section): Use new target hook.
3302         * config/arm/arm.opt (mpure-code): New.
3303         * config/arm/arm.h (SECTION_ARM_PURECODE): New.
3304         * config/arm/arm.c (arm_asm_init_sections): Add section
3305         attribute to default text section if -mpure-code.
3306         (arm_option_check_internal): Diagnose use of option with
3307         non supported targets and/or options.
3308         (arm_asm_elf_flags_numeric): New.
3309         (arm_function_section): New.
3310         (arm_elf_section_type_flags): New.
3311         * config/arm/elf.h (JUMP_TABLES_IN_TEXT_SECTION): Disable
3312         for -mpure-code.
3313         * gcc/doc/texi (TARGET_ASM_ELF_FLAGS_NUMERIC): New.
3314         * gcc/doc/texi.in (TARGET_ASM_ELF_FLAGS_NUMERIC): Likewise.
3316 2016-09-22  Jan Hubicka  <hubicka@ucw.cz>
3318         * regcprop.c (copyprop_hardreg_forward_1): Remove noop moves.
3320 2016-09-22  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
3322         * emit-rtl.c (next_cc0_user): Make argument type rtx_insn *.
3323         * rtl.h: Adjust prototype.
3325 2016-09-22  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
3327         * emit-rtl.c (next_active_insn): Change argument type to rtx_insn *.
3328         (prev_active_insn): Likewise.
3329         (active_insn_p): Likewise.
3330         * rtl.h: Adjust prototypes.
3331         * cfgcleanup.c (merge_blocks_move_successor_nojumps): Adjust.
3332         * config/arc/arc.md: Likewise.
3333         * config/pa/pa.c (branch_to_delay_slot_p): Likewise.
3334         (branch_needs_nop_p): Likewise.
3335         (use_skip_p): Likewise.
3336         * config/sh/sh.c (gen_block_redirect): Likewise.
3337         (split_branches): Likewise.
3338         * reorg.c (optimize_skip): Likewise.
3339         (fill_simple_delay_slots): Likewise.
3340         (fill_slots_from_thread): Likewise.
3341         (relax_delay_slots): Likewise.
3342         * resource.c (mark_target_live_regs): Likewise.
3344 2016-09-22  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
3346         * config/cris/cris.c (cris_asm_output_case_end): Change argument
3347         type to rtx_insn *.
3348         * emit-rtl.c (next_nonnote_nondebug_insn): Likewise.
3349         (prev_nonnote_nondebug_insn): Likewise.
3350         * config/cris/cris-protos.h: Adjust prototype.
3351         * rtl.h: Likewise.
3352         * jump.c (rtx_renumbered_equal_p): Adjust.
3354 2016-09-22  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
3356         * emit-rtl.c (prev_real_insn): Change argument type to rtx_insn *.
3357         * rtl.h: Adjust prototype.
3358         * config/sh/sh.md: Adjust.
3359         * dwarf2out.c (add_var_loc_to_decl): Likewise.
3361 2016-09-22  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
3363         * emit-rtl.c (next_nondebug_insn): Change argument type to rtx_insn *.
3364         (prev_nondebug_insn): Likewise.
3365         * loop-doloop.c (doloop_condition_get): Likewise.
3366         * rtl.h: Adjust prototype.
3367         * cfgloop.h: Likewise.
3369 2016-09-22  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
3371         * emit-rtl.c (next_nonnote_insn): Change argument type to rtx_insn *.
3372         (prev_nonnote_insn): Likewise.
3373         * jump.c (reversed_comparison_code_parts): Likewise.
3374         (reversed_comparison): Likewise.
3375         * rtl.h: Adjust prototypes.
3376         * config/arc/arc.md: Adjust.
3377         * cse.c (find_comparison_args): Likewise.
3378         * reorg.c (redundant_insn): Change return type to rtx_insn *.
3379         (fix_reg_dead_note): Change argument type to rtx_insn *.
3380         (delete_prior_computation): Likewise.
3381         (delete_computation): Likewise.
3382         (fill_slots_from_thread): Adjust.
3383         (relax_delay_slots): Likewise.
3384         * simplify-rtx.c (simplify_unary_operation_1): Likewise.
3385         (simplify_relational_operation_1): Likewise.
3386         (simplify_ternary_operation): Likewise.
3388 2016-09-22  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
3390         * config/arc/arc-protos.h (arc_label_align): Change type of
3391         variables from rtx to rtx_insn *.
3392         * config/arc/arc.c (arc_label_align): Likewise.
3393         * config/arm/arm.c (any_sibcall_could_use_r3): Likewise.
3394         * config/bfin/bfin.c (workaround_speculation): Likewise.
3395         * config/c6x/c6x.c (find_next_cycle_insn): Likewise.
3396         (find_last_same_clock): Likewise.
3397         (reorg_split_calls): Likewise.
3398         * config/cris/cris-protos.h (cris_cc0_user_requires_cmp): Likewise.
3399         * config/cris/cris.c (cris_cc0_user_requires_cmp): Likewise.
3400         * config/h8300/h8300-protos.h (same_cmp_preceding_p): Likewise.
3401         (same_cmp_following_p): Likewise.
3402         * config/h8300/h8300.c (same_cmp_preceding_p): Likewise.
3403         (same_cmp_following_p): Likwise.
3404         * config/m32r/m32r.c (m32r_expand_epilogue): Likewise.
3405         * config/nds32/nds32-protos.h (nds32_target_alignment): Likewise.
3406         * config/nds32/nds32.c (nds32_target_alignment): Likewise.
3407         * config/rl78/rl78.c (rl78_alloc_physical_registers_op2): Likewise.
3408         (rl78_alloc_physical_registers_cmp): Likewise.
3409         (rl78_alloc_physical_registers_umul): Likewise.
3410         (rl78_calculate_death_notes): Likewise.
3411         * config/s390/s390-protos.h (s390_label_align): Likewise.
3412         * config/s390/s390.c (s390_label_align): Likewise.
3413         * config/sh/sh.c (barrier_align): Likewise.
3414         * config/sparc/sparc-protos.h (emit_cbcond_nop): Likewise.
3415         * config/sparc/sparc.c (sparc_asm_function_epilogue): Likewise.
3416         (emit_cbcond_nop): Likewise.
3418 2016-09-22  Martin Liska  <mliska@suse.cz>
3420         PR ipa/77653
3421         * ipa-icf.c (sem_variable::merge): Yield merge operation if
3422         alias address matters, not necessarily address of original.
3424 2016-09-22  Richard Biener  <rguenther@suse.de>
3426         PR middle-end/77697
3427         * gimple-fold.c (fold_array_ctor_reference): Turn asserts into
3428         fold fails.
3430 2016-09-22  Richard Biener  <rguenther@suse.de>
3432         PR middle-end/77677
3433         * gimple-match-head.c (gimple_resimplify1): Drop TREE_OVERFLOW
3434         from constant folding results.
3435         (gimple_resimplify2): Likewise.
3436         (gimple_resimplify3): Likewise.
3438 2016-09-22  Richard Biener  <rguenther@suse.de>
3440         PR middle-end/77678
3441         * expr.c (expand_expr_real_1): Guard array access against negative
3442         offset.
3444 2016-09-22  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
3446         * gimple-ssa-sprintf.c (format_floating_max): Use GMP_RNDN instead
3447         of MPFR_RNDN.
3448         (format_floating): Likewise.
3450 2016-09-22  Jakub Jelinek  <jakub@redhat.com>
3452         PR fortran/77665
3453         * tree-inline.c (remap_gimple_stmt): Set has_simduid_loops
3454         for all IFN_GOMP_SIMD_* internal fns, not just for
3455         IFN_GOMP_SIMD_ORDERED_*.
3457 2016-09-21  Michael Meissner  <meissner@linux.vnet.ibm.com>
3459         PR target/77670
3460         * config/rs6000/predicates.md (invert_fpmask_comparison_operator):
3461         New predicate that matches the ISA 3.0 XSCMP{EQ,GT,GE}DP
3462         instructions when you want to invert the test.
3463         * config/rs6000/rs6000.md (fpmask<mode>): Use the arguments in the
3464         correct order for XXSEL.
3465         (mov<SFDF:mode><SFDF2:mode>cc_invert_p9): Define the inverted test
3466         for using XSCMP{EQ,GT,GE}DP.
3468 2016-09-21  David Malcolm  <dmalcolm@redhat.com>
3470         * genconstants.c (main): Introduce noop_reader and convert call
3471         to read_md_files to a method call.
3472         * genenums.c (main): Likewise.
3473         * genmddeps.c (main): Likewise.
3474         * genpreds.c (write_tm_constrs_h): Replace use of "in_fname" with
3475         rtx_reader_ptr->get_top_level_filename ().
3476         (write_tm_preds_h): Likewise.
3477         (write_insn_preds_c): Likewise.
3478         * gensupport.c (class gen_reader): New subclass of rtx_reader.
3479         (rtx_handle_directive): Convert to...
3480         (gen_reader::handle_unknown_directive): ...this.
3481         (init_rtx_reader_args_cb): Convert return type from bool to
3482         rtx_reader *.  Create a gen_reader instance, using it for the
3483         call to read_md_files.  Return it if no errors occur.
3484         (init_rtx_reader_args): Convert return type from bool to
3485         rtx_reader *.
3486         * gensupport.h (init_rtx_reader_args_cb): Likewise.
3487         (init_rtx_reader_args_cb): Likewise.
3488         * read-md.c (struct file_name_list): Move to class rtx_reader.
3489         (read_md_file): Delete in favor of rtx_reader::m_read_md_file.
3490         (read_md_filename): Delete in favor of
3491         rtx_reader::m_read_md_filename.
3492         (read_md_lineno): Delete in favor of rtx_reader::m_read_md_lineno.
3493         (in_fname): Delete in favor of rtx_reader::m_toplevel_fname.
3494         (base_dir): Delete in favor of rtx_reader::m_base_dir.
3495         (first_dir_md_include): Delete in favor of
3496         rtx_reader::m_first_dir_md_include.
3497         (last_dir_md_include_ptr): Delete in favor of
3498         rtx_reader::m_last_dir_md_include_ptr.
3499         (max_include_len): Delete.
3500         (rtx_reader_ptr): New.
3501         (fatal_with_file_and_line): Use get_filename and get_lineno
3502         accessors of rtx_reader_ptr.
3503         (require_char_ws): Likewise.
3504         (rtx_reader::read_char): New method, based on ::read_char.
3505         (rtx_reader::unread_char): New method, based on ::unread_char.
3506         (read_escape): Use get_filename and get_lineno accessors of
3507         rtx_reader_ptr.
3508         (read_braced_string): Use get_lineno accessor of rtx_reader_ptr.
3509         (read_string): Use get_filename and get_lineno accessors of
3510         rtx_reader_ptr.
3511         (rtx_reader::rtx_reader): New ctor.
3512         (rtx_reader::~rtx_reader): New dtor.
3513         (handle_include): Convert from a function to...
3514         (rtx_reader::handle_include): ...this method, converting
3515         handle_directive from a callback to a virtual function.
3516         (handle_file): Likewise, converting to...
3517         (rtx_reader::handle_file): ...this method.
3518         (handle_toplevel_file): Likewise, converting to...
3519         (rtx_reader::handle_toplevel_file): ...this method.
3520         (rtx_reader::get_current_location): New method.
3521         (parse_include): Convert from a function to...
3522         (rtx_reader::add_include_path): ...this method, dropping redundant
3523         update to unused max_include_len.
3524         (read_md_files): Convert from a function to...
3525         (rtx_reader::read_md_files): ...this method, converting
3526         handle_directive from a callback to a virtual function.
3527         (noop_reader::handle_unknown_directive): New method.
3528         * read-md.h (directive_handler_t): Delete this typedef.
3529         (in_fname): Delete.
3530         (read_md_file): Delete.
3531         (read_md_lineno): Delete.
3532         (read_md_filename): Delete.
3533         (class rtx_reader): New class.
3534         (rtx_reader_ptr): New decl.
3535         (class noop_reader): New subclass of rtx_reader.
3536         (read_char): Reimplement in terms of rtx_reader::read_char.
3537         (unread_char): Reimplement in terms of rtx_reader::unread_char.
3538         (read_md_files): Delete.
3539         * read-rtl.c (read_rtx_code): Update for deletion of globals
3540         read_md_filename and read_md_lineno.
3542 2016-09-21  Jason Merrill  <jason@redhat.com>
3544         * input.h (from_macro_definition_at): New.
3546 2016-09-21  Segher Boessenkool  <segher@kernel.crashing.org>
3548         * doc/rtl.texi (JUMP_LABEL): Document RETURN and SIMPLE_RETURN values.
3550 2016-09-21  Bernd Edlinger  <bernd.edlinger@hotmail.de>
3552         PR tree-optimization/77550
3553         * tree-vect-stmts.c (create_array_ref): Change parameters.
3554         (get_group_alias_ptr_type): New function.
3555         (vectorizable_store, vectorizable_load): Use get_group_alias_ptr_type.
3557 2016-09-21  Marek Polacek  <polacek@redhat.com>
3559         * gimple-ssa-sprintf.c (pass_sprintf_length::compute_format_length):
3560         Add falls through comment.
3562 2016-09-21  Richard Biener  <rguenther@suse.de>
3564         * dwarf2out.c (remove_child_with_prev): Clear child->die_sib.
3565         (replace_child): Likewise.
3566         (remove_child_TAG): Adjust.
3567         (move_marked_base_types): Likewise.
3568         (prune_unused_types_prune): Clear die_sib of removed children.
3570 2016-09-21  Georg-Johann Lay  <avr@gjlay.de>
3572         PR target/77326
3573         * config/avr/avr.c (avr_notice_update_cc) [CC_NONE]: If insn
3574         touches some regs mentioned in cc_status, do CC_STATUS_INIT.
3576 2016-09-21  Richard Biener  <rguenther@suse.de>
3578         PR tree-optimization/77648
3579         * tree-ssa-structalias.c (process_constraint): Handle all DEREF
3580         with complex RHS.
3581         (make_transitive_closure_constraints): Adjust comment.
3582         (make_any_offset_constraints): New function.
3583         (handle_rhs_call): Make sure to first expand a pointer to all
3584         subfields before transitively closing it.
3585         (handle_const_call): Likewise.  Properly expand returned
3586         pointers as well.
3587         (handle_pure_call): Likewise.
3589 2016-09-21  Richard Biener  <rguenther@suse.de>
3590             Jakub Jelinek  <jakub@redhat.com>
3592         PR tree-optimization/77621
3593         * tree-vect-data-refs.c (vect_analyze_data_ref_accesses): Split
3594         group at non-vectorizable stmts.
3596 2016-09-21  Kugan Vivekanandarajah  <kuganv@linaro.org>
3598         PR tree-optimization/72835
3599         * tree-ssa-reassoc.c (make_new_ssa_for_def): New.
3600         (make_new_ssa_for_all_defs): Likewise.
3601         (zero_one_operation): Replace all SSA_NAMEs defined in the chain.
3603 2016-09-20  Martin Sebor  <msebor@redhat.com>
3605         PR middle-end/49905
3606         * Makefile.in (OBJS): Add gimple-ssa-sprintf.o.
3607         * config/linux.h (TARGET_PRINTF_POINTER_FORMAT): Redefine.
3608         * config/linux.c (gnu_libc_printf_pointer_format): New function.
3609         * config/sol2.h (TARGET_PRINTF_POINTER_FORMAT): Same.
3610         * config/sol2.c (solaris_printf_pointer_format): New function.
3611         * doc/invoke.texi (-Wformat-length, -fprintf-return-value): New
3612         options.
3613         * doc/tm.texi.in (TARGET_PRINTF_POINTER_FORMAT): Document.
3614         * doc/tm.texi: Regenerate.
3615         * gimple-fold.h (get_range_strlen): New function.
3616         (get_maxval_strlen): Declare existing function.
3617         * gimple-fold.c (get_range_strlen): Add arguments and compute both
3618         maximum and minimum.
3619          (get_range_strlen): Define overload.
3620         (get_maxval_strlen): Adjust.
3621         * gimple-ssa-sprintf.c: New file and pass.
3622         * passes.def (pass_sprintf_length): Add new pass.
3623         * targhooks.h (default_printf_pointer_format): Declare new function.
3624         (gnu_libc_printf_pointer_format): Same.
3625         (solaris_libc_printf_pointer_format): Same.
3626         * targhooks.c (default_printf_pointer_format): Define new function.
3627         * tree-pass.h (make_pass_sprintf_length): Declare new function.
3628         * print-tree.c: Increase buffer size.
3630 2016-09-21  Kugan Vivekanandarajah  <kuganv@linaro.org>
3632         * tree-vrp.c (get_value_range): Teach PARM_DECL to use ipa-vrp results.
3634 2016-09-21  Kugan Vivekanandarajah  <kuganv@linaro.org>
3636         * common.opt: New option -fipa-vrp.
3637         * ipa-cp.c (ipa_get_vr_lat): New.
3638         (ipcp_vr_lattice::print): Likewise.
3639         (print_all_lattices): Call ipcp_vr_lattice::print.
3640         (ipcp_vr_lattice::meet_with): New.
3641         (ipcp_vr_lattice::meet_with_1): Likewise.
3642         (ipcp_vr_lattice::top_p): Likewise.
3643         (ipcp_vr_lattice::bottom_p): Likewsie.
3644         (ipcp_vr_lattice::set_to_bottom): Likewise.
3645         (set_all_contains_variable): Call VR set_to_bottom.
3646         (initialize_node_lattices): Init VR lattices.
3647         (propagate_vr_accross_jump_function): New.
3648         (propagate_constants_accross_call): Call
3649         propagate_vr_accross_jump_function.
3650         (ipcp_store_vr_results): New.
3651         (ipcp_driver): Handle VR.
3652         * ipa-prop.c (ipa_print_node_jump_functions_for_edge): Handle VR.
3653         (ipa_set_jf_unknown): Likewise.
3654         (ipa_compute_jump_functions_for_edge): Likewise.
3655         (ipa_node_params_t::duplicate): Likewise.
3656         (ipa_write_jump_function): Likewise.
3657         (ipa_read_jump_function): Likewise.
3658         (write_ipcp_transformation_info): Likewise.
3659         (read_ipcp_transformation_info): Likewise.
3660         (ipcp_update_vr): New.
3661         (ipcp_transform_function): Handle VR.
3662         * ipa-prop.h (struct ipa_vr): New.
3663         * cgraph.c: Include tree-vrp.h.
3664         * cgraphunit.c: Likewise.
3665         * ipa-utils.c: Likewise.
3666         * ipa.c: Likewise.
3667         * opts.c: Likewise.
3668         * toplev.c: Likewise.
3669         * ipa-devirt.c: Likewise.
3670         * ipa-inline-transform.c: Likewise.
3671         * ipa-inline.c: Likewise.
3672         * ipa-profile.c: Likewise.
3674 2016-09-21  Kugan Vivekanandarajah  <kuganv@linaro.org>
3676         * doc/invoke.texi: Document -fdump-tree-evrp.
3677         * passes.def: Define new pass_early_vrp.
3678         * timevar.def: Define new TV_TREE_EARLY_VRP.
3679         * tree-pass.h (make_pass_early_vrp): New.
3680         * tree-ssa-propagate.c: Make replace_uses_in non static.
3681         * tree-ssa-propagate.h: Export replace_uses_in.
3682         * tree-vrp.c (extract_range_for_var_from_comparison_expr): New.
3683         (extract_range_from_assert): Factor out
3684         extract_range_for_var_from_comparison_expr.
3685         (vrp_initialize_lattice): New.
3686         (vrp_initialize): Factor out vrp_initialize_lattice.
3687         (vrp_valueize): Fix it to reject complex value ranges.
3688         (vrp_free_lattice): New.
3689         (evrp_dom_walker::before_dom_children): Likewise.
3690         (evrp_dom_walker::after_dom_children): Likewise.
3691         (evrp_dom_walker::push_value_range): Likewise.
3692         (evrp_dom_walker::pop_value_range): Likewise.
3693         (execute_early_vrp): Likewise.
3694         (execute_vrp): Call vrp_initialize_lattice and vrp_free_lattice.
3695         (make_pass_early_vrp): New.
3697 2016-09-20  Uros Bizjak  <ubizjak@gmail.com>
3699         * config/i386/i386.md (mult->ashift peephole2s): Use pow2p_hwi
3700         instead of exact_log2.
3702 2016-09-20  Uros Bizjak  <ubizjak@gmail.com>
3704         PR target/77621
3705         * config/i386/i386.c (ix86_preferred_simd_mode) <case DFmode>:
3706         Don't return word_mode for !TARGET_VECTORIZE_DOUBLE.
3707         (ix86_add_stmt_cost): Penalize DFmode vector operations
3708         for !TARGET_VECTORIZE_DOUBLE.
3710 2016-09-20  Gerald Pfeifer  <gerald@pfeifer.com>
3712         * doc/invoke.texi (Warning Options): Simplify language.
3713         (Optimize Options): Complete sentence.
3715 2016-09-20  David Edelsohn  <dje.gcc@gmail.com>
3717         * dbxout.c (xcoff_debug_hooks):  Add filename parameter to
3718         early_finish hook.
3720 2016-09-20  Michael Meissner  <meissner@linux.vnet.ibm.com>
3722         PR target/71395
3723         * config/rs6000/rs6000.c (rs6000_expand_vector_init): For V4SF
3724         inits on power8 and above, use the VMRGEW instruction instead of a
3725         permute.
3727         * config/rs6000/altivec.md (UNSPEC_VMRGEW_DIRECT): New unspec.
3728         (p8_vmrgew_v4sf_direct): New VMRGEW insn for V4SF floating
3729         initialization.
3731 2016-09-20  Tamar Christina  <tamar.christina@arm.com>
3733         * config/aarch64/arm_neon.h
3734         (vst2_s64, vst2_u64, vst2_f64, vst2_s8): Add missing attributes.
3735         (vst3_s64, vst3_u64, vst3_f64, vst3_s8): Likewise.
3736         (vst4_s64, vst4_u64, vst4_f64, vst4_s8): Likewise.
3738 2016-09-20  Bernd Edlinger  <bernd.edlinger@hotmail.de>
3740         * config/var/vax.h (ELIMINABLE_REGS): Define.
3741         (INITIAL_ELIMINATION_OFFSET): Define.
3743 2016-09-20  Jakub Jelinek  <jakub@redhat.com>
3745         PR middle-end/77624
3746         * builtins.c (fold_builtin_atomic_always_lock_free): Only look through
3747         cast to void * if the cast is from some other pointer type.
3749 2016-09-20  Richard Biener  <rguenther@suse.de>
3751         PR tree-optimization/77646
3752         * tree-ssa-sccvn.c (visit_reference_op_call): Always value-number
3753         a VDEF.
3755 2016-09-20  Tamar Christina  <tamar.christina@arm.com>
3757         * config/aarch64/arm_neon.h: Add gnu_inline and artificial
3758         attributes to all inlined functions and make them extern.
3760 2016-09-20  Richard Biener  <rguenther@suse.de>
3762         * debug.h (gcc_debug_hooks): Add filename parameter to early_finish
3763         hook.
3764         * debug.c (do_nothing_debug_hooks): Adjust.
3765         * dbxout.c (dbx_debug_hooks): Likewise.
3766         * sdbout.c (sdb_debug_hooks): Likewise.
3767         * dwarf2out.c (dwarf2_lineno_debug_hooks): Likewise.
3768         (dwarf2out_finish): Move producer, filename and
3769         path annotation ...
3770         (dwarf2out_early_finish): ... here.  Remove in_lto_p special-casing.
3771         * cgraphunit.c (symbol_table::finalize_compilation_unit): Adjust.
3773 2016-09-19  Bernd Edlinger  <bernd.edlinger@hotmail.de>
3775         PR c++/77434
3776         * doc/invoke.texi: Document -Wint-in-bool-context.
3778         PR middle-end/77421
3779         * dwarf2out.c (output_loc_operands): Fix an assertion.
3781 2016-09-19  Joseph Myers  <joseph@codesourcery.com>
3783         * ginclude/float.h [__STDC_WANT_IEC_60559_BFP_EXT__]
3784         (CR_DECIMAL_DIG): New macro.
3786 2016-09-19  Joseph Myers  <joseph@codesourcery.com>
3788         * ginclude/stddef.h (max_align_t) [__i386__]: Add __float128
3789         element.
3791 2016-09-19  Vladimir Makarov  <vmakarov@redhat.com>
3793         PR rtl-optimization/77416
3794         * lra-remat.c (operand_to_remat): Process hard coded insn
3795         registers.
3797 2016-09-19  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
3799         * simplify-rtx.c (simplify_relational_operation_1): Add transformation
3800         (GTU (PLUS a C) (C - 1)) --> (LTU a -C).
3802 2016-09-19  Segher Boessenkool  <segher@kernel.crashing.org>
3804         * target.def (lra_p): Wordsmithing.
3805         * doc/tm.texi: Regenerate.
3807 2016-09-19  Jakub Jelinek  <jakub@redhat.com>
3808             Jan Hubicka  <jh@suse.cz>
3810         PR target/77587
3811         * cgraph.c (cgraph_node::rtl_info): Pass &avail to
3812         ultimate_alias_target call, return NULL if avail < AVAIL_AVAILABLE.
3813         Call ultimate_alias_target just once, not up to 4 times.
3815 2016-09-19  Richard Biener  <rguenther@suse.de>
3817         * dwarf2out.c (early_dwarf_finished): New global.
3818         (set_early_dwarf::set_early_dwarf): Assert early_dwarf_finished
3819         is false.
3820         (dwarf2out_early_finish): Set early_dwarf_finished at the end,
3821         if called from LTO exit early.
3822         (dwarf2out_late_global_decl): When being during the early
3823         debug phase do not add locations but only const value attributes.
3824         Adjust the way we generate early DIEs for LTO.
3826 2016-09-19  Richard Biener  <rguenther@suse.de>
3828         PR middle-end/77605
3829         * tree-data-ref.c (analyze_subscript_affine_affine): Use the
3830         proper niter to bound the loops.
3832 2016-09-19  Richard Biener  <rguenther@suse.de>
3834         PR tree-optimization/77514
3835         * tree-ssa-pre.c (create_expression_by_pieces): Optimize
3836         search for folded stmt.
3838 2016-09-17  Jan Hubicka  <hubicka@ucw.cz>
3840         * passes.def (pass_early_thread_jumps): Schedule after forwprop.
3841         * tree-pass.h (make_pass_early_thread_jumps): Declare.
3842         * tree-ssa-threadbackward.c (fsm_find_thread_path,
3843         fsm_find_thread_path, profitable_jump_thread_path,
3844         fsm_find_control_statement_thread_paths,
3845         find_jump_threads_backwards): Add speed_p parameter.
3846         (pass_data_early_thread_jumps): New pass.
3847         (make_pass_early_thread_jumps): New function.
3849 2016-09-17  Andreas Schwab  <schwab@suse.de>
3851         * config/ia64/ia64.h (ASM_OUTPUT_DWARF_OFFSET): Add cast.
3852         * config/i386/cygming.h (ASM_OUTPUT_DWARF_OFFSET): Likewise.
3854 2016-09-16  Eric Botcazou  <ebotcazou@adacore.com>
3856         * recog.c (rest_of_handle_split_after_reload): Delete.
3857         (pass_split_after_reload::gate): New method.
3858         (pass_split_after_reload::execute): Call split_all_insns directly.
3860 2016-09-16  Jonathan Wakely  <jwakely@redhat.com>
3862         * doc/extend.texi (Integer Overflow Builtins): Fix type of out
3863         parameters for functions taking long long arguments.
3865 2016-09-16  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
3867         PR target/77613
3868         * config/rs6000/rs6000.c (rtx_is_swappable_p): Add support for
3869         splat with truncate.
3871 2016-09-16  Jason Merrill  <jason@redhat.com>
3873         * hwint.h (least_bit_hwi, pow2_or_zerop, pow2p_hwi, ctz_or_zero):
3874         New.
3875         * hwint.c (exact_log2): Use pow2p_hwi.
3876         (ctz_hwi, ffs_hwi): Use least_bit_hwi.
3877         * alias.c (memrefs_conflict_p): Use pow2_or_zerop.
3878         * builtins.c (get_object_alignment_2, get_object_alignment)
3879         (get_pointer_alignment, fold_builtin_atomic_always_lock_free): Use
3880         least_bit_hwi.
3881         * calls.c (compute_argument_addresses, store_one_arg): Use
3882         least_bit_hwi.
3883         * cfgexpand.c (expand_one_stack_var_at): Use least_bit_hwi.
3884         * combine.c (force_to_mode): Use least_bit_hwi.
3885         (contains_muldiv, find_split_point, combine_simplify_rtx)
3886         (simplify_if_then_else, simplify_set, force_to_mode)
3887         (if_then_else_cond, simplify_and_const_int_1)
3888         (simplify_compare_const): Use pow2p_hwi.
3889         * cse.c (fold_rtx): Use pow2p_hwi.
3890         * emit-rtl.c (set_mem_attributes_minus_bitpos, adjust_address_1):
3891         Use least_bit_hwi.
3892         * expmed.c (synth_mult, expand_divmod): Use ctz_or_zero, ctz_hwi.
3893         (init_expmed_one_conv): Use pow2p_hwi.
3894         * expr.c (is_aligning_offset): Use pow2p_hwi.
3895         * fold-const.c (round_up_loc, round_down_loc): Use pow2_or_zerop.
3896         (fold_binary_loc): Use pow2p_hwi.
3897         * function.c (assign_parm_find_stack_rtl): Use least_bit_hwi.
3898         * gimple-fold.c (gimple_fold_builtin_memory_op): Use pow2p_hwi.
3899         * gimple-ssa-strength-reduction.c (replace_ref): Use least_bit_hwi.
3900         * hsa-gen.c (gen_hsa_addr_with_align, hsa_bitmemref_alignment):
3901         Use least_bit_hwi.
3902         * ifcvt.c (noce_try_store_flag_constants): Use pow2p_hwi.
3903         * ipa-cp.c (ipcp_alignment_lattice::meet_with_1): Use least_bit_hwi.
3904         * ipa-prop.c (ipa_modify_call_arguments): Use least_bit_hwi.
3905         * omp-low.c (oacc_loop_fixed_partitions)
3906         (oacc_loop_auto_partitions): Use least_bit_hwi.
3907         * rtlanal.c (nonzero_bits1): Use ctz_or_zero.
3908         * stor-layout.c (place_field): Use least_bit_hwi.
3909         * tree-pretty-print.c (dump_generic_node): Use pow2p_hwi.
3910         * tree-sra.c (build_ref_for_offset): Use least_bit_hwi.
3911         * tree-ssa-ccp.c (ccp_finalize): Use least_bit_hwi.
3912         * tree-ssa-math-opts.c (bswap_replace): Use least_bit_hwi.
3913         * tree-ssa-strlen.c (handle_builtin_memcmp): Use pow2p_hwi.
3914         * tree-vect-data-refs.c (vect_analyze_group_access_1)
3915         (vect_grouped_store_supported, vect_grouped_load_supported)
3916         (vect_permute_load_chain, vect_shift_permute_load_chain)
3917         (vect_transform_grouped_load): Use pow2p_hwi.
3918         * tree-vect-generic.c (expand_vector_divmod): Use ctz_or_zero.
3919         * tree-vect-patterns.c (vect_recog_divmod_pattern): Use ctz_or_zero.
3920         * tree-vect-stmts.c (vectorizable_mask_load_store): Use
3921         least_bit_hwi.
3922         * tsan.c (instrument_expr): Use least_bit_hwi.
3923         * var-tracking.c (negative_power_of_two_p): Use pow2_or_zerop.
3925 2016-09-16  Andreas Schwab  <schwab@suse.de>
3927         * config/ia64/ia64.h (ASM_OUTPUT_DWARF_OFFSET): Use parameter
3928         OFFSET, not offset.
3929         * config/i386/cygming.h (ASM_OUTPUT_DWARF_OFFSET): Likewise.
3931 2016-09-16  Jakub Jelinek  <jakub@redhat.com>
3933         PR target/77526
3934         * combine.c (rest_of_handle_combine): If any edges have been purged,
3935         free dominators if available.
3937 2016-09-16  Jakub Jelinek  <jakub@redhat.com>
3938             Eric Botcazou  <ebotcazou@adacore.com>
3940         PR middle-end/77594
3941         * internal-fn.c (expand_arith_overflow) <case MINUS_EXPR>: Don't fall
3942         through into expand_addsub_overflow after expand_neg_overflow.
3944 2016-09-15  David Malcolm  <dmalcolm@redhat.com>
3946         * diagnostic-show-locus.c
3947         (selftest::test_fixit_insert_containing_newline): New function.
3948         (selftest::test_fixit_replace_containing_newline): New function.
3949         (selftest::diagnostic_show_locus_c_tests): Call the above.
3951 2016-09-15  Bin Cheng  <bin.cheng@arm.com>
3953         PR tree-optimization/77503
3954         * tree-vect-loop.c (vectorizable_reduction): Record reduction
3955         code for CONST_COND_REDUCTION at analysis stage and use it at
3956         transform stage.
3957         * tree-vectorizer.h (struct _stmt_vec_info): New field.
3958         (STMT_VINFO_VEC_CONST_COND_REDUC_CODE): New macro.
3959         * tree-vect-stmts.c (new_stmt_vec_info): Initialize above new
3960         field.
3962 2016-09-15  Richard Biener  <rguenther@suse.de>
3964         PR middle-end/77544
3965         * fold-const.c (split_tree): Do not split constant ~X.
3967 2016-09-15  Jakub Jelinek  <jakub@redhat.com>
3969         PR rtl-optimization/77425
3970         * sched-int.h (sd_iterator_cond): Don't update it_ptr->linkp if list
3971         is NULL.
3973         PR middle-end/77475
3974         * config/i386/i386.c (ix86_parse_stringop_strategy_string): Simplify,
3975         use %qs instead of %s where desirable, use argument instead of arg in
3976         the diagnostic wording, add list of supported strategies and
3977         spellcheck hint.
3978         (ix86_option_override_internal): Emit target("m...") instead of
3979         option("m...") in the diagnostic.  Use %qs instead of %s in invalid
3980         -march/-mtune option diagnostic.  Add list of supported arches/tunings
3981         and spellcheck hint.  Remove prefix, suffix and sw variables, use
3982         main_args_p ? "..." : "..." in diagnostics to make translation
3983         possible.
3985 2016-09-15  Richard Biener  <rguenther@suse.de>
3987         * dwarf2asm.h (dw2_asm_output_offset): Add overload with
3988         extra offset argument.
3989         * dwarf2asm.c (dw2_asm_output_offset): Implement that.
3990         * doc/tm.texi.in (ASM_OUTPUT_DWARF_OFFSET): Adjust documentation
3991         to reflect new offset parameter.
3992         * doc/tm.texi: Regenerate.
3993         * config/darwin.h (ASM_OUTPUT_DWARF_OFFSET): Adjust.
3994         * config/darwin-protos.h (darwin_asm_output_dwarf_delta): Add
3995         offset argument.
3996         (darwin_asm_output_dwarf_offset): Likewise.
3997         * config/darwin.c (darwin_asm_output_dwarf_delta): Add offset
3998         argument.
3999         (darwin_asm_output_dwarf_offset): Pass offset argument through.
4000         * config/ia64/ia64.h (ASM_OUTPUT_DWARF_OFFSET): Adjust.
4001         * config/i386/cygmin.h (ASM_OUTPUT_DWARF_OFFSET): Likewise.
4003 2016-09-15  Chung-Lin Tang  <cltang@codesourcery.com>
4005         PR fortran/72743
4006         * ipa-icf.c (set_alias_uids): New function.
4007         (sem_variable::merge): Use set_alias_uids to set DECL_PT_UID of
4008         all the merged variable's referring aliases.
4010 2016-09-15  Richard Biener  <rguenther@suse.de>
4012         PR tree-optimization/77514
4013         * tree-ssa-pre.c (create_expression_by_pieces): Handle garbage
4014         only forced_stmts sequence.
4016 2016-09-15  Kugan Vivekanandarajah  <kuganv@linaro.org>
4018         * tree-ssanames.h (FOR_EACH_SSA_NAME): New.
4019         * cfgexpand.c (update_alias_info_with_stack_vars): Use
4020         FOR_EACH_SSA_NAME to iterate over SSA variables.
4021         (pass_expand::execute): Likewise.
4022         * omp-simd-clone.c (ipa_simd_modify_function_body): Likewise.
4023         * tree-cfg.c (dump_function_to_file): Likewise.
4024         * tree-into-ssa.c (pass_build_ssa::execute): Likewise.
4025         (update_ssa): Likewise.
4026         * tree-ssa-alias.c (dump_alias_info): Likewise.
4027         * tree-ssa-ccp.c (ccp_finalize): Likewise.
4028         * tree-ssa-coalesce.c (build_ssa_conflict_graph): Likewise.
4029         (create_outofssa_var_map): Likewise.
4030         (coalesce_ssa_name): Likewise.
4031         * tree-ssa-operands.c (dump_immediate_uses): Likewise.
4032         * tree-ssa-pre.c (compute_avail): Likewise.
4033         * tree-ssa-sccvn.c (init_scc_vn): Likewise.
4034         (scc_vn_restore_ssa_info): Likewise.
4035         (free_scc_vn): Likwise.
4036         (run_scc_vn): Likewise.
4037         * tree-ssa-structalias.c (compute_points_to_sets): Likewise.
4038         * tree-ssa-ter.c (new_temp_expr_table): Likewise.
4039         * tree-ssa-copy.c (fini_copy_prop): Likewise.
4040         * tree-ssa.c (verify_ssa): Likewise.
4042 2016-09-14  Matthew Fortune  <matthew.fortune@imgtec.com>
4044         * config.gcc (mips*-mti-elf*, mips*-mti-linux*): Set mips32r2
4045         and mips64r2 as default 32-bit and 64-bit architectures.
4046         (mips*-img-elf*, mips*-img-linux*): Set mips32r6 and mips64r6
4047         as default 32-bit and 64-bit architectures.
4049 2016-09-14  Pat Haugen  <pthaugen@us.ibm.com>
4051         * loop-unroll.c (unroll_loop_runtime_iterations): Set probability
4052         of succ edge.
4054 2016-09-14  Segher Boessenkool  <segher@kernel.crashing.org>
4056         * target.def (lra_p): Change commentary (for the manual) for the
4057         new default.
4058         * doc/tm.texi: Regenerate.
4060 2016-09-14  Segher Boessenkool  <segher@kernel.crashing.org>
4062         * config/aarch64/aarch64.c (TARGET_LRA_P): Delete macro.
4063         * config/arm/arm.c (TARGET_LRA_P): Delete macro.
4064         * config/i386/i386.c (TARGET_LRA_P): Delete macro.
4065         * config/nds32/nds32.c (TARGET_LRA_P): Delete macro.
4067 2016-09-14  Segher Boessenkool  <segher@kernel.crashing.org>
4069         * targhooks.c (default_lra_p): Return true instead of false.
4071 2016-09-14  Segher Boessenkool  <segher@kernel.crashing.org>
4073         * config/alpha/alpha.c (TARGET_LRA_P): New macro, defined to
4074         hook_bool_void_false.
4075         * config/avr/avr.c: Ditto.
4076         * config/bfin/bfin.c: Ditto.
4077         * config/c6x/c6x.c: Ditto.
4078         * config/cr16/cr16.c: Ditto.
4079         * config/cris/cris.c: Ditto.
4080         * config/epiphany/epiphany.c: Ditto.
4081         * config/fr30/fr30.c: Ditto.
4082         * config/frv/frv.c: Ditto.
4083         * config/h8300/h8300.c: Ditto.
4084         * config/ia64/ia64.c: Ditto.
4085         * config/iq2000/iq2000.c: Ditto.
4086         * config/lm32/lm32.c: Ditto.
4087         * config/m32c/m32c.c: Ditto.
4088         * config/m32r/m32r.c: Ditto.
4089         * config/m68k/m68k.c: Ditto.
4090         * config/mcore/mcore.c: Ditto.
4091         * config/microblaze/microblaze.c: Ditto.
4092         * config/mmix/mmix.c: Ditto.
4093         * config/mn10300/mn10300.c: Ditto.
4094         * config/moxie/moxie.c: Ditto.
4095         * config/msp430/msp430.c: Ditto.
4096         * config/nios2/nios2.c: Ditto.
4097         * config/nvptx/nvptx.c: Ditto.
4098         * config/pa/pa.c: Ditto.
4099         * config/pdp11/pdp11.c: Ditto.
4100         * config/rl78/rl78.c: Ditto.
4101         * config/sparc/sparc.c: Ditto.
4102         * config/spu/spu.c: Ditto.
4103         * config/stormy16/stormy16.c: Ditto.
4104         * config/tilegx/tilegx.c: Ditto.
4105         * config/tilepro/tilepro.c: Ditto.
4106         * config/v850/v850.c: Ditto.
4107         * config/vax/vax.c: Ditto.
4108         * config/visium/visium.c: Ditto.
4109         * config/xtensa/xtensa.c: Ditto.
4111 2016-09-14  Jakub Jelinek  <jakub@redhat.com>
4113         PR sanitizer/68260
4114         * tsan.c: Include target.h.
4115         (enum tsan_atomic_action): Add bool_clear and bool_test_and_set.
4116         (BOOL_CLEAR, BOOL_TEST_AND_SET): Define.
4117         (tsan_atomic_table): Add BUILT_IN_ATOMIC_CLEAR and
4118         BUILT_IN_ATOMIC_TEST_AND_SET entries.
4119         (instrument_builtin_call): Handle bool_clear and bool_test_and_set.
4121 2016-09-14  Bernd Edlinger  <bernd.edlinger@hotmail.de>
4122             Martin Liska  <mliska@suse.cz>
4124         PR middle-end/77574
4125         * predict.c (force_edge_cold): Add braces to a condition.
4127 2016-09-13  Bernd Edlinger  <bernd.edlinger@hotmail.de>
4129         PR rtl-optimization/77289
4130         * lra-constraints.c (get_final_hard_regno): Removed.
4131         (get_hard_regno): Add new parameter final_p.
4132         (get_reg_class): Directly call lra_get_elimination_hard_regno.
4133         (operands_match_p): Adjust call to get_hard_regno.
4134         (uses_hard_regs_p): Likewise.
4135         (process_alt_operands): Likewise.
4137 2016-09-13  Joe Seymour  <joe.s@somniumtech.com>
4139         PR target/70713
4140         * config/msp430/msp430.c (msp430_start_function): Emit an error
4141         if a function is both weak and specifies an interrupt number.
4143 2016-09-13  Jakub Jelinek  <jakub@redhat.com>
4145         PR tree-optimization/77454
4146         * tree-ssa-dom.c (optimize_stmt): Set modified flag on stmt after
4147         changing GIMPLE_COND.  Move update_stmt_if_modified call after this.
4148         Formatting fix.
4150 2016-09-13  Tamar Christina  <tamar.christina@arm.com>
4152         * config/aarch64/aarch64-builtins.c
4153         (aarch64_init_simd_builtins): Fix builtin type signature printing.
4155 2016-09-13  Uros Bizjak  <ubizjak@gmail.com>
4157         * config/alpha/alpha.c (alpha_pass_by_reference): Pass un-named
4158         SFmode and SCmode arguments by reference.
4160 2016-09-13  David Malcolm  <dmalcolm@redhat.com>
4162         * diagnostic-show-locus.c (selftest::test_one_liner_fixit_insert):
4163         Rename to...
4164         (selftest::test_one_liner_fixit_insert_before): ...this, and update
4165         for renaming of add_fixit_insert to add_fixit_insert_before.
4166         (selftest::test_one_liner_fixit_insert_after): New function.
4167         (selftest::test_one_liner_fixit_validation_adhoc_locations):
4168         Update for renaming of add_fixit_insert to add_fixit_insert_before.
4169         (selftest::test_one_liner_many_fixits): Likewise.
4170         (selftest::test_diagnostic_show_locus_one_liner): Update for
4171         renaming, call new test function.
4172         (selftest::test_diagnostic_show_locus_fixit_lines): Update for
4173         renaming of add_fixit_insert to add_fixit_insert_before.
4174         (selftest::test_fixit_consolidation): Likewise.
4175         * diagnostic.c (selftest::test_print_parseable_fixits_insert):
4176         Likewise.
4177         * edit-context.c (selftest::test_applying_fixits_insert): Rename to...
4178         (selftest::test_applying_fixits_insert_before): ...this.
4179         (selftest::test_applying_fixits_insert): Update for renaming of
4180         add_fixit_insert to add_fixit_insert_before.
4181         (selftest::test_applying_fixits_insert_after): New function.
4182         (selftest::test_applying_fixits_insert_after_at_line_end): New
4183         function.
4184         (selftest::test_applying_fixits_insert_after_failure): New function.
4185         (selftest::test_applying_fixits_multiple): Update for renaming of
4186         add_fixit_insert to add_fixit_insert_before.
4187         (selftest::change_line): Likewise.
4188         (selftest::test_applying_fixits_unreadable_file): Likewise.
4189         (selftest::test_applying_fixits_line_out_of_range): Likewise.
4190         (selftest::test_applying_fixits_column_validation): Likewise.
4191         (selftest::test_applying_fixits_column_validation): Likewise.
4192         (selftest::edit_context_c_tests): Update for renamed test function;
4193         call new test functions.
4195 2016-09-13  Pat Haugen  <pthaugen@us.ibm.com>
4197         PR tree-optimization/77536
4198         PR rtl-optimization/68212
4199         * config/rs6000/rs6000.md (div->recip splitter): Remove
4200         optimize_insn_for_speed_p condition.
4202 2016-09-13  Maciej W. Rozycki  <macro@imgtec.com>
4204         * optabs.c (prepare_cmp_insn): Update documentation comment.
4206 2016-09-13  Jakub Jelinek  <jakub@redhat.com>
4207             Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
4209         PR middle-end/77475
4210         * opts.h (candidates_list_and_hint): Declare.
4211         * opts-common.c (candidates_list_and_hint): New function.
4212         (cmdline_handle_error): Use it.
4214 2016-09-12  David Malcolm  <dmalcolm@redhat.com>
4216         * edit-context.c (edited_line::get_len): New accessor.
4217         (edited_file::print_diff): Split out hunk-printing into...
4218         (edited_file::print_diff_hunk): New method.
4219         (edited_file::print_diff_line): New method.
4221 2016-09-12  Andrew Pinski  <apinski@cavium.com>
4223         * config/aarch64/aarch64-tuning-flags.def (SLOW_UNALIGNED_LDPW):
4224         New tuning option.
4225         * config/aarch64/aarch64.c (thunderx_tunings): Enable
4226         AARCH64_EXTRA_TUNE_SLOW_UNALIGNED_LDPW.
4227         (aarch64_operands_ok_for_ldpstp): Return false if
4228         AARCH64_EXTRA_TUNE_SLOW_UNALIGNED_LDPW and the mode
4229         was SImode and the alignment is less than 8 byte.
4230         (aarch64_operands_adjust_ok_for_ldpstp): Likewise.
4232 2016-09-12  Orlando Arias  <oarias@knights.ucf.edu>
4234         PR target/77570
4235         * config/msp430/msp430.md (delay_cycles_32x): Fix pushm/popm.
4237 2016-09-12  Marek Polacek  <polacek@redhat.com>
4239         * doc/extend.texi: Use lowercase "boolean".
4240         * doc/invoke.texi: Likewise.
4241         * doc/md.texi: Likewise.
4242         * target.def: Likewise.
4243         * doc/tm.texi: Regenerated.
4245 2016-09-12  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
4247         PR middle-end/77426
4248         * expmed.c (synth_mult): Delete duplicate mode check.
4250 2016-09-10  Tom de Vries  <tom@codesourcery.com>
4252         PR C/71602
4253         * builtins.c (std_canonical_va_list_type): Strictly return non-null for
4254         va_list type only.
4255         * config/i386/i386.c (ix86_canonical_va_list_type): Same.
4256         * gimplify.c (gimplify_va_arg_expr): Handle &va_list.
4258 2016-09-09  Peter Bergner  <bergner@vnet.ibm.com>
4260         PR rtl-optimization/77289
4261         * lra-constraints.c (get_final_hard_regno): Add support for non hard
4262         register numbers.  Remove support for subregs.
4263         (get_hard_regno): Use SUBREG_P.  Don't call get_final_hard_regno().
4264         (get_reg_class): Delete removed get_final_hard_regno() argument.
4265         (uses_hard_regs_p): Call get_final_hard_regno().
4267 2016-09-09  Martin Sebor  <msebor@redhat.com>
4269         PR c/77520
4270         PR c/77521
4271         * pretty-print.c (pp_quoted_string): New function.
4272         (pp_format): Call it for %c and %s directives.
4274 2016-09-10  Bernd Edlinger  <bernd.edlinger@hotmail.de>
4276         * doc/tm.texi.in (INITIAL_FRAME_POINTER_OFFSET): Remove.
4277         (ELIMINABLE_REGS, TARGET_CAN_ELIMINATE,
4278         INITIAL_ELIMINATION_OFFSET) : Update documentation.
4279         * target.def (frame_pointer_required, can_eliminate): Likewise.
4280         * doc/tm.texi: Regenerated.
4281         * builtins.c (expand_builtin_setjmp_receiver): Remove #ifdef
4282         ELIMINABLE_REGS.
4283         * df-scan.c (df_hard_reg_init): Likewise.
4284         * ira.c (ira_setup_eliminable_regset): Likewise.
4285         * lra-eliminations.c (reg_eliminate_1, (update_reg_eliminate,
4286         init_elim_table): Likewise.
4287         * reload1.c (reg_eliminate_1, verify_initial_elim_offsets,
4288         set_initial_elim_offsets, update_eliminables,
4289         init_elim_table): Likewise.
4290         * rtlanal.c (get_initial_register_offset): Likewise.
4291         * config/ft32/ft32.h (INITIAL_FRAME_POINTER_OFFSET): Remove.
4292         * config/m32r/m32r.h (INITIAL_FRAME_POINTER_OFFSET): Likewise.
4293         * config/moxie/moxie.h (INITIAL_FRAME_POINTER_OFFSET): Likewise.
4294         * config/vax/vax.h (INITIAL_FRAME_POINTER_OFFSET): Likewise.
4295         * config/fr30/fr30.h: Fix comment.
4296         * config/frv/frv.c: Likewise.
4297         * config/frv/frv.h: Likewise.
4298         * config/ft32/ft32.h: Likewise.
4299         * config/visium/visium.h: Likewise.
4300         * config/pa/pa64-linux.h: Likewise.
4301         * config/v850/v850.h: Likewise.
4302         * config/cris/cris.c: Likewise.
4303         * config/ia64/ia64.h: Likewise.
4304         * config/moxie/moxie.h: Likewise.
4305         * config/m32r/m32r.h: Likewise.
4307 2016-09-10  Alexander Ivchenko  <alexander.ivchenko@intel.com>
4309         PR target/77267
4310         * config.in: Regenerate.
4311         * config/i386/linux-common.h (MPX_LD_AS_NEEDED_GUARD_PUSH):
4312         New macro.
4313         (MPX_LD_AS_NEEDED_GUARD_PUSH): Ditto.
4314         (LIBMPXWRAPPERS_SPEC): Remove "--no-whole-archive" from
4315         static-libmpxwrappers case.
4316         (LIBMPX_SPEC): Add guards with MPX_LD_AS_NEEDED_GUARD_PUSH and
4317         MPX_LD_AS_NEEDED_GUARD_POP.
4318         * configure: Regenerate.
4319         * configure.ac (HAVE_LD_PUSHPOPSTATE_SUPPORT): New variable.
4320         defined if linker support "--push-state"/"--pop-state".
4322 2016-09-09  Bernd Edlinger  <bernd.edlinger@hotmail.de>
4324         * doc/cpp.texi (__*_WIDTH__): Small wording fixes.
4326 2016-09-09  Joseph Myers  <joseph@codesourcery.com>
4328         * doc/cpp.texi (__SCHAR_WIDTH__, __SHRT_WIDTH__, __INT_WIDTH__)
4329         (__LONG_WIDTH__, __LONG_LONG_WIDTH__, __PTRDIFF_WIDTH__)
4330         (__SIG_ATOMIC_WIDTH__, __SIZE_WIDTH__, __WCHAR_WIDTH__)
4331         (__WINT_WIDTH__, __INT_LEAST8_WIDTH__, __INT_LEAST16_WIDTH__)
4332         (__INT_LEAST32_WIDTH__, __INT_LEAST64_WIDTH__)
4333         (__INT_FAST8_WIDTH__, __INT_FAST16_WIDTH__, __INT_FAST32_WIDTH__)
4334         (__INT_FAST64_WIDTH__, __INTPTR_WIDTH__, __INTMAX_WIDTH__):
4335         Document.
4336         * ginclude/stdint-gcc.h [__STDC_WANT_IEC_60559_BFP_EXT__]: Define
4337         width macros from TS 18661-1.
4338         * glimits.h [__STDC_WANT_IEC_60559_BFP_EXT__]: Likewise.
4340 2016-09-08  Jakub Jelinek  <jakub@redhat.com>
4342         PR fortran/77516
4343         * omp-low.c (lower_rec_simd_input_clauses): Use max_vf for non-positive
4344         OMP_CLAUSE_SAFELEN_EXPR.
4346 2016-09-07  David Malcolm  <dmalcolm@redhat.com>
4348         * Makefile.in (OBJS): Add substring-locations.o.
4349         * langhooks-def.h (class substring_loc): New forward decl.
4350         (lhd_get_substring_location): New decl.
4351         (LANG_HOOKS_GET_SUBSTRING_LOCATION): New macro.
4352         (LANG_HOOKS_INITIALIZER): Add LANG_HOOKS_GET_SUBSTRING_LOCATION.
4353         * langhooks.c (lhd_get_substring_location): New function.
4354         * langhooks.h (class substring_loc): New forward decl.
4355         (struct lang_hooks): Add field get_substring_location.
4356         * substring-locations.c: New file, taking definition of
4357         format_warning_va and format_warning_at_substring from
4358         c-family/c-format.c, making them non-static.
4359         * substring-locations.h (class substring_loc): Move class here
4360         from c-family/c-common.h.  Add and rewrite comments.
4361         (format_warning_va): New decl.
4362         (format_warning_at_substring): New decl.
4363         (get_source_location_for_substring): Add comment.
4365 2016-09-07  Eric Gallager  <egall@gwmail.gwu.edu>
4367         * config/i386/i386.c: Add 'U' suffix to processor feature bits
4368         to avoid -Wnarrowing warning.
4369         * config/i386/x86-tune.def: Likewise for DEF_TUNE selector bitmasks.
4370         * opts.c: Likewise for SANITIZER_OPT bitmasks.
4372 2016-09-07  Wilco Dijkstra  <wdijkstr@arm.com>
4374         * config/aarch64/aarch64.c (aarch64_legitimize_address):
4375         Avoid use of base_offset if offset already in range.
4377 2016-09-07  Kaz Kojima  <kkojima@gcc.gnu.org>
4379         * config/sh/sh-protos.h (struct sh_atomic_model,
4380         selected_atomic_model, TARGET_ATOMIC_ANY, TARGET_ATOMIC_STRICT,
4381         TARGET_ATOMIC_SOFT_GUSA, TARGET_ATOMIC_HARD_LLCS,
4382         TARGET_ATOMIC_SOFT_TCB, TARGET_ATOMIC_SOFT_IMASK): Move to...
4383         * config/sh/sh.h (struct sh_atomic_model,
4384         selected_atomic_model, TARGET_ATOMIC_ANY, TARGET_ATOMIC_STRICT,
4385         TARGET_ATOMIC_SOFT_GUSA, TARGET_ATOMIC_HARD_LLCS,
4386         TARGET_ATOMIC_SOFT_TCB, TARGET_ATOMIC_SOFT_IMASK): ...here.
4387         Guard with __cplusplus.
4389 2016-09-06  Jakub Jelinek  <jakub@redhat.com>
4391         PR target/69255
4392         * config/i386/i386.c (ix86_expand_builtin): For builtin with
4393         unsupported or unknown ISA, use expand_call.
4395 2016-09-06  Martin Liska  <mliska@suse.cz>
4397         PR gcov-profile/77378
4398         PR gcov-profile/77466
4399         * tree-profile.c (tree_profiling): Detect whether target can use
4400         -fprofile-update=atomic.
4402 2016-09-06  Richard Biener  <rguenther@suse.de>
4404         PR tree-optimization/77479
4405         * tree-vrp.c (update_value_range): Extend overflow handling to
4406         VARYING.
4408 2016-09-05  Jakub Jelinek  <jakub@redhat.com>
4410         PR target/77476
4411         * config/i386/i386.md (isa): Add x64_avx512bw.
4412         (*zero_extendsidi2): For alternative 11 use x64_avx512bw isa.
4413         (kmov_isa): New mode attr.
4414         (zero_extend<mode>di2): Use <kmov_isa> isa for the last alternative.
4415         (*zero_extend<mode>si2): Likewise.
4416         (*zero_extendqihi2): Use avx512dq isa for the last alternative.
4418 2016-09-05  Gerald Pfeifer  <gerald@pfeifer.com>
4420         * doc/invoke.texi (SPU Options): nops -> NOPs.
4421         (x86 Options): Ditto.
4423 2016-09-05  Jakub Jelinek  <jakub@redhat.com>
4425         PR middle-end/77475
4426         * toplev.c (process_options): Temporarily set input_location
4427         to UNKNOWN_LOCATION around targetm.target_option.override () call.
4429 2016-09-05  Uros Bizjak  <ubizjak@gmail.com>
4431         PR rtl-optimization/77452
4432         * explow.c (plus_constant) <case MEM>: Extract scalar constant from
4433         inner-mode reference to a CONST_VECTOR constant in the constant pool.
4435 2016-09-05  Marek Polacek  <polacek@redhat.com>
4437         PR c/77423
4438         * doc/invoke.texi: Update -Wlogical-not-parentheses documentation.
4440 2016-09-05  Jakub Jelinek  <jakub@redhat.com>
4442         PR other/77421
4443         * gensupport.c (alter_output_for_subst_insn): Remove redundant
4444         *insn_out == '*' test.  Don't copy unnecessary to yet another
4445         memory buffer, and don't leak it.
4447         PR rtl-optimization/77425
4448         * ipa-devirt.c (get_odr_type): Set val->id unconditionally.
4450 2016-09-03  Kirill Yukhin  <kirill.yukhin@intel.com>
4452         * ubsan.c (ubsan_use_new_style_p): Fix check for empty string.
4454 2016-09-02  David Malcolm  <dmalcolm@redhat.com>
4456         * common.opt (fdiagnostics-generate-patch): New option.
4457         * diagnostic.c: Include "edit-context.h".
4458         (diagnostic_initialize): Initialize context->edit_context_ptr.
4459         (diagnostic_finish): Delete context->edit_context_ptr.
4460         (diagnostic_report_diagnostic): Add fix-it hints from the
4461         diagnostic to context->edit_context_ptr, if any.
4462         * diagnostic.h (class edit_context): Add forward decl.
4463         (struct diagnostic_context): Add field "edit_context_ptr".
4464         * doc/invoke.texi (Diagnostic Message Formatting Options): Add
4465         -fdiagnostics-generate-patch.
4466         (-fdiagnostics-generate-patch): New item.
4467         * toplev.c: Include "edit-context.h".
4468         (process_options): Set global_dc->edit_context_ptr to a new
4469         edit_context if the options need one.
4470         (toplev::main): Handle -fdiagnostics-generate-patch by using
4471         global_dc->edit_context_ptr.
4473 2016-09-02  Jakub Jelinek  <jakub@redhat.com>
4475         PR c/65467
4476         * gimplify.c (gimplify_adjust_omp_clauses_1): Diagnose implicit
4477         map and firstprivate clauses on target construct for _Atomic
4478         qualified decls.
4479         (gimplify_adjust_omp_clauses): Diagnose explicit firstprivate clauses
4480         on target construct for _Atomic qualified decls.
4481         * omp-low.c (use_pointer_for_field): Return true for _Atomic qualified
4482         decls.
4483         * omp-simd-clone.c (simd_clone_clauses_extract): Warn and give up for
4484         _Atomic qualified arguments not mentioned in uniform clause.
4486 2016-09-02  David Malcolm  <dmalcolm@redhat.com>
4488         * Makefile.in (OBJS-libcommon): Add edit-context.o.
4489         * diagnostic-color.c (color_dict): Add "diff-filename",
4490         "diff-hunk", "diff-delete", and "diff-insert".
4491         (parse_gcc_colors): Update default value of GCC_COLORS in comment
4492         to reflect above changes.
4493         * doc/invoke.texi (-fdiagnostics-color): Update description of
4494         default GCC_COLORS, and of the supported capabilities.
4495         * edit-context.c: New file.
4496         * edit-context.h: New file.
4497         * input.c (struct fcache): Add field "missing_trailing_newline".
4498         (diagnostics_file_cache_forcibly_evict_file): Initialize it to
4499         true.
4500         (add_file_to_cache_tab): Likewise.
4501         (fcache::fcache): Likewise.
4502         (get_next_line): Update c->missing_trailing_newline.
4503         (location_missing_trailing_newline): New function.
4504         * input.h (location_missing_trailing_newline): New decl.
4505         * selftest-run-tests.c (selftest::run_tests): Call
4506         edit_context_c_tests.
4507         * selftest.h (edit_context_c_tests): New decl.
4509 2016-09-02  Jakub Jelinek  <jakub@redhat.com>
4510             Richard Biener  <rguenth@suse.de>
4512         PR tree-optimization/77444
4513         * tree-ssa-loop-ivopts.c (cand_value_at): For pointers use sizetype
4514         as steptype, remove redundant initialization.
4516 2016-09-02  Jakub Jelinek  <jakub@redhat.com>
4518         PR sanitizer/77396
4519         * sanopt.c: Include gimple-ssa.h, tree-phinodes.h and ssa-iterators.h.
4520         (sanopt_optimize_walker): Optimize away
4521         __asan_before_dynamic_init (...) followed by
4522         __asan_after_dynamic_init () without intervening memory loads/stores.
4523         * ipa-pure-const.c (special_builtin_state): Handle
4524         BUILT_IN_ASAN_BEFORE_DYNAMIC_INIT and
4525         BUILT_IN_ASAN_AFTER_DYNAMIC_INIT.
4527 2016-09-02  Prathamesh Kulkarni  <prathamesh.kulkarni@linaro.org>
4529         * cfg.c (free_original_copy_tables): Replace second assignment of
4530         bb_copy = NULL by bb_original = NULL.
4532 2016-09-02  Jakub Jelinek  <jakub@redhat.com>
4534         PR other/77421
4535         * config/i386/i386.c (ix86_expanded_args_builtin): Remove redundant
4536         assignment added in r216794.
4538 2016-09-02  David Malcolm  <dmalcolm@redhat.com>
4540         * Makefile.in (OBJS): Add typed-splay-tree.o.
4541         * selftest-run-tests.c (selftest::run_tests): Call
4542         typed_splay_tree_c_tests.
4543         * selftest.h (typed_splay_tree_c_tests): New decl.
4544         * typed-splay-tree.c: New file.
4545         * typed-splay-tree.h (typed_splay_tree::foreach_fn): New typedef.
4546         (typed_splay_tree::max): New method.
4547         (typed_splay_tree::min): New method.
4548         (typed_splay_tree::foreach): New method.
4549         (typed_splay_tree::closure): New struct.
4550         (typed_splay_tree::inner_foreach_fn): New function.
4552 2016-09-02  Prathamesh Kulkarni  <prathamesh.kulkarni@linaro.org>
4554         * ipa-cp.c (ipcp_store_bits_results): Change option name from
4555         -fipa-cp-bit to -fipa-bit-cp.
4557 2016-09-01  Martin Sebor  <msebor@redhat.com>
4559         PR tree-optimization/71831
4560         * tree-object-size.h: Return bool instead of the size and add
4561         argument for the size.
4562         * tree-object-size.c (compute_object_offset): Update signature.
4563         (addr_object_size): Same.
4564         (compute_builtin_object_size): Return bool instead of the size
4565         and add argument for the size.  Handle POINTER_PLUS_EXPR when
4566         optimization is disabled.
4567         (expr_object_size): Adjust.
4568         (plus_stmt_object_size): Adjust.
4569         (pass_object_sizes::execute): Adjust.
4570         * builtins.c (fold_builtin_object_size): Adjust.
4571         * doc/extend.texi (Object Size Checking): Update.
4572         * ubsan.c (instrument_object_size): Adjust.
4574 2016-09-01  Martin Sebor  <msebor@redhat.com>
4576         * genmatch.c (parser::parse_expr): Increase buffer size to guarantee
4577         it fits the output of the formatted function regardless of its
4578         arguments.
4579         * gcc/genmodes.c (parser::parse_expr): Same.
4580         * gimplify.c (gimplify_asm_expr): Same.
4581         * passes.c (pass_manager::register_one_dump_file): Same.
4582         * print-tree.c (print_node): Same.
4584 2016-09-01  Segher Boessenkool  <segher@kernel.crashing.org>
4586         * config/rs6000/altivec.md: Use VSCR_REGNO instead of 110 throughout.
4588 2016-09-01  Segher Boessenkool  <segher@kernel.crashing.org>
4590         * config/rs6000/altivec.md: Use VRSAVE_REGNO instead of 109 throughout.
4592 2016-09-01  Segher Boessenkool  <segher@kernel.crashing.org>
4594         * config/rs6000/altivec.md: Use CR6_REGNO instead of 74 throughout.
4595         * config/rs6000/vector.md: Ditto.
4596         * config/rs6000/vsx.md: Ditto.
4598 2016-09-01  Eric Botcazou  <ebotcazou@adacore.com>
4600         * ipa-inline-analysis.c (param_change_prob): Get to the base object
4601         first in all cases.
4603 2016-09-01  Segher Boessenkool  <segher@kernel.crashing.org>
4605         * config/rs6000/rs6000.md (*restore_gpregs_<mode>_r11,
4606         *restore_gpregs_<mode>_r12, *restore_gpregs_<mode>_r1,
4607         *return_and_restore_gpregs_<mode>_r11,
4608         *return_and_restore_gpregs_<mode>_r12,
4609         *return_and_restore_gpregs_<mode>_r1,
4610         *return_and_restore_fpregs_<mode>_r11,
4611         *return_and_restore_fpregs_<mode>_r12,
4612         *return_and_restore_fpregs_<mode>_r1): Use the hard register LR_REGNO
4613         directly instead of via the "l" constraint.  Renumber operands.
4614         Fix whitespace.
4616 2016-09-01  Segher Boessenkool  <segher@kernel.crashing.org>
4618         * config/rs6000/altivec.md (*save_world, *save_vregs_<mode>_r11,
4619         save_vregs_<mode>_r12, *restore_vregs_<mode>_r11,
4620         *restore_vregs_<mode>_r12): Use LR_REGNO instead of 65.
4621         * config/rs6000/darwin.md (load_macho_picbase, load_macho_picbase_si,
4622         load_macho_picbase_di, *call_indirect_nonlocal_darwin64,
4623         *call_nonlocal_darwin64, *call_value_indirect_nonlocal_darwin64,
4624         *call_value_nonlocal_darwin64, reload_macho_picbase,
4625         reload_macho_picbase_si, reload_macho_picbase_di): Ditto.
4626         * config/rs6000/rs6000.h (RETURN_ADDR_IN_PREVIOUS_FRAME): Ditto.
4627         * config/rs6000/rs6000.md (*save_gpregs_<mode>_r11,
4628         *save_gpregs_<mode>_r12, *save_gpregs_<mode>_r1,
4629         *save_fpregs_<mode>_r11, *save_fpregs_<mode>_r12,
4630         *save_fpregs_<mode>_r1): Ditto.
4631         * config/rs6000/spe.md (*save_gpregs_spe, *restore_gpregs_spe,
4632         *return_and_restore_gpregs_spe): Ditto.
4634 2016-09-01  Segher Boessenkool  <segher@kernel.crashing.org>
4636         * config/rs6000/rs6000.md
4637         (define_insn "*return_and_restore_fpregs_aix_<mode>_r11"): Delete
4638         the use of the link register.
4639         (define_insn "*return_and_restore_fpregs_aix_<mode>_r1"): Ditto.
4641 2016-09-01  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
4642             Michael Meissner  <meissner@linux.vnet.ibm.com>
4644         PR target/72827
4645         * config/rs6000/rs6000.c (rs6000_legitimize_address): Avoid
4646         reg+reg addressing for TImode.
4647         (rs6000_legitimate_address_p): Only allow register indirect
4648         addressing for TImode, even without TARGET_QUAD_MEMORY.
4650 2016-09-01  Richard Biener  <rguenther@suse.de>
4652         PR middle-end/77436
4653         * tree-chrec.c (tree_fold_binomial): Use widest_int, properly
4654         check whether the result fits the desired result type.
4656 2016-09-01  Nathan Sidwell  <nathan@acm.org>
4658         * config/nvptx/nvptx.md (cbranch<mode>4): Op 2 can be const.
4660 2016-09-01  Wilco Dijkstra  <wdijkstr@arm.com>
4662         * config/aarch64/aarch64.c (aarch64_legitimize_address_displacement):
4663         New function.
4664         (TARGET_LEGITIMIZE_ADDRESS_DISPLACEMENT): Define.
4666 2016-09-01  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
4668         * config/aarch64/aarch64.md (*ands<mode>_compare0): New pattern.
4669         * config/aarch64/aarch64.c (aarch64_select_cc_mode): Return CC_NZmode
4670         for comparisons of integer ZERO_EXTEND against zero.
4672 2016-09-01  Eric Botcazou  <ebotcazou@adacore.com>
4674         * config/i386/i386.c (ix86_option_override_internal): Also disable the
4675         STV pass if -mstackrealign is enabled.
4677 2016-08-31  Ilya Verbin  <iverbin@gmail.com>
4679         * config/i386/driver-i386.c (host_detect_local_cpu): Fix detection of
4680         AVX512IFMA.
4682 2016-08-31  David Malcolm  <dmalcolm@redhat.com>
4684         * diagnostic-show-locus.c (class layout): Add field m_fixit_hints.
4685         (layout_range::intersects_line_p): New method.
4686         (test_range_contains_point_for_single_point): Rename to...
4687         (test_layout_range_for_single_point): ...this, and add testing
4688         for layout_range::intersects_line_p.
4689         (test_range_contains_point_for_single_line): Rename to...
4690         (test_layout_range_for_single_line): ...this,  and add testing
4691         for layout_range::intersects_line_p.
4692         (test_range_contains_point_for_multiple_lines): Rename to...
4693         (test_layout_range_for_multiple_lines): ...this,  and add testing
4694         for layout_range::intersects_line_p.
4695         (layout::layout): Populate m_fixit_hints.
4696         (layout::get_expanded_location): Handle the case of a line-span
4697         for a fix-it hint.
4698         (layout::validate_fixit_hint_p): New method.
4699         (get_line_span_for_fixit_hint): New function.
4700         (layout::calculate_line_spans): Add spans for fixit-hints.
4701         (layout::should_print_annotation_line_p): New method.
4702         (layout::print_any_fixits): Drop param "richloc", instead using
4703         validated fixits in m_fixit_hints.  Add "const" to hint pointers.
4704         (diagnostic_show_locus): Avoid printing blank annotation lines.
4705         (selftest::test_diagnostic_context::test_diagnostic_context):
4706         Initialize show_column and start_span.
4707         (selftest::test_diagnostic_context::start_span_cb): New static
4708         function.
4709         (selftest::test_diagnostic_show_locus_fixit_lines): New function.
4710         (selftest::diagnostic_show_locus_c_tests): Update for function
4711         renamings.  Call test_diagnostic_show_locus_fixit_lines.
4713 2016-08-31  Marc Glisse  <marc.glisse@inria.fr>
4715         PR tree-optimization/73714
4716         * match.pd (a * (1 << b)): Revert change from 2016-05-23.
4718 2016-08-31  David Malcolm  <dmalcolm@redhat.com>
4720         * selftest.c: Move "namespace selftest {" to top of file,
4721         removing explicit "selftest::" qualifiers throughout.
4723 2016-08-31  Marc Glisse  <marc.glisse@inria.fr>
4725         * config/i386/avx512fintrin.h (__m512_u, __m512i_u, __m512d_u):
4726         New types.
4727         (_mm512_loadu_pd, _mm512_storeu_pd, _mm512_loadu_ps,
4728         _mm512_storeu_ps, _mm512_loadu_si512, _mm512_storeu_si512):
4729         Replace builtin with vector extension.
4730         * config/i386/avxintrin.h (__m256_u, __m256i_u, __m256d_u):
4731         New types.
4732         (_mm256_loadu_pd, _mm256_storeu_pd, _mm256_loadu_ps,
4733         _mm256_storeu_ps, _mm256_loadu_si256, _mm256_storeu_si256):
4734         Replace builtin with vector extension.
4735         * config/i386/emmintrin.h (__m128i_u, __m128d_u): New types.
4736         (_mm_loadu_pd, _mm_storeu_pd, _mm_loadu_si128, _mm_storeu_si128):
4737         Replace builtin with vector extension.
4738         * config/i386/xmmintrin.h (__m128_u): New type.
4739         (_mm_loadu_ps, _mm_storeu_ps): Replace builtin with vector extension.
4740         (_mm_load_ps, _mm_store_ps): Simplify.
4742 2016-08-31  Eric Botcazou  <ebotcazou@adacore.com>
4744         * config/arm/arm.c (thumb1_size_rtx_costs) <SET>: Add missing guard.
4746 2016-08-30  David Malcolm  <dmalcolm@redhat.com>
4748         * diagnostic-show-locus.c (colorizer::begin_state): Support more
4749         than 3 ranges per diagnostic by alternating between color 1 and
4750         color 2.
4751         (layout::layout): Replace use of rich_location::MAX_RANGES
4752         with richloc->get_num_locations ().
4753         (layout::calculate_line_spans): Replace use of
4754         rich_location::MAX_RANGES with m_layout_ranges.length ().
4755         (layout::print_annotation_line): Handle arbitrary numbers of
4756         ranges in caret-printing by defaulting to '^'.
4757         (selftest::test_one_liner_many_fixits): New function.
4758         (test_diagnostic_show_locus_one_liner): Call it.
4759         * diagnostic.c (diagnostic_initialize): Update for renaming
4760         of rich_location::MAX_RANGES to
4761         rich_location::STATICALLY_ALLOCATED_RANGES.
4762         * diagnostic.h (struct diagnostic_context): Likewise.
4764 2016-08-30  David Malcolm  <dmalcolm@redhat.com>
4766         * selftest.c (selftest::named_temp_file::named_temp_file): New
4767         ctor.
4768         (selftest::temp_source_file::~temp_source_file): Move to...
4769         (selftest::named_temp_file::~named_temp_file): ...here.
4770         (selftest::test_named_temp_file): New function.
4771         (selftest::selftest_c_tests): Call test_named_temp_file.
4772         * selftest.h (class named_temp_file): New class.
4773         (class temp_source_file): Convert to a subclass of named_temp_file.
4775 2016-08-30  Segher Boessenkool  <segher@kernel.crashing.org>
4777         * config/rs6000/rs6000.c (rs6000_emit_epilogue): Do not emit
4778         USEs of LR_REGNO in returns and sibcalls.
4779         (rs6000_output_mi_thunk): Similar.
4780         (rs6000_sibcall_aix): Similar.
4781         * config/rs6000/rs6000.md (sibcall, sibcall_value, sibcall_local32,
4782         sibcall_local64, sibcall_value_local32, sibcall_value_local64,
4783         sibcall_nonlocal_sysv<mode>, sibcall_value_nonlocal_sysv<mode>):
4784         Remove the USE of LR_REGNO from the patterns as well.  Delete an
4785         obsolete comment.
4786         (return_internal_<mode>): Delete.
4788 2016-08-30  Tamar Christina  <tamar.christina@arm.com>
4790         * gcc/config/aarch64/aarch64-simd.md
4791         (aarch64_ld2<mode>_dreg_le): New.
4792         (aarch64_ld2<mode>_dreg_be): New.
4793         (aarch64_ld2<mode>_dreg): Removed.
4794         (aarch64_ld3<mode>_dreg_le): New.
4795         (aarch64_ld3<mode>_dreg_be): New.
4796         (aarch64_ld3<mode>_dreg): Removed.
4797         (aarch64_ld4<mode>_dreg_le): New.
4798         (aarch64_ld4<mode>_dreg_be): New.
4799         (aarch64_ld4<mode>_dreg): Removed.
4800         (aarch64_ld<VSTRUCT:nregs><VDC:mode>): Wrapper around _le, _be.
4802 2016-08-30  David Malcolm  <dmalcolm@redhat.com>
4804         * diagnostic-show-locus.c (test_one_liner_fixit_insert): Remove
4805         redundant location param.
4806         (test_one_liner_fixit_remove): Likewise.
4807         (test_one_liner_fixit_replace): Likewise.
4808         (test_one_liner_fixit_replace_equal_secondary_range): Likewise.
4809         * gcc-rich-location.c
4810         (gcc_rich_location::add_fixit_misspelled_id): Eliminate call to
4811         get_range_from_loc.  Drop overload taking a const char *.
4812         * gcc-rich-location.h
4813         (gcc_rich_location::add_fixit_misspelled_id): Drop overload taking
4814         a const char *.
4816 2016-08-30  Szabolcs Nagy  <szabolcs.nagy@arm.com>
4818         * config/linux.c (linux_libc_has_function): Return true on musl.
4820 2016-08-30  Szabolcs Nagy  <szabolcs.nagy@arm.com>
4822         * config.gcc (*-*-*musl*): Disable gnu-indirect-function.
4824 2016-08-30  Eric Botcazou  <ebotcazou@adacore.com>
4826         * postreload-gcse.c (bb_has_well_behaved_predecessors): Tweak criterion
4827         used for abnormal egdes.
4829 2016-08-30  Jakub Jelinek  <jakub@redhat.com>
4831         PR tree-optimization/72866
4832         * tree-vect-patterns.c (search_type_for_mask): Turn into
4833         a small wrapper, move all code to ...
4834         (search_type_for_mask_1): ... this new function.  Add caching
4835         and adjust recursive calls.
4837         PR debug/77363
4838         * dwarf2out.c (modified_type_die): Use lookup_type_die (type)
4839         instead of lookup_type_die (type_main_variant (type)) even for array
4840         types.
4842         PR middle-end/77377
4843         * simplify-rtx.c (avoid_constant_pool_reference): For out of bounds
4844         constant pool reference return x instead of c.
4846 2016-08-29  Segher Boessenkool  <segher@kernel.crashing.org>
4848         * config/rs6000/rs6000.h (CALL_REALLY_USED_REGISTERS): Do not
4849         include MQ.
4851 2016-08-29  David Malcolm  <dmalcolm@redhat.com>
4853         * input.c
4854         (selftest::test_make_location_nonpure_range_endpoints): Fix
4855         header comment.
4857 2016-08-29  David Malcolm  <dmalcolm@redhat.com>
4859         * diagnostic-show-locus.c
4860         (selftest::test_one_liner_fixit_validation_adhoc_locations): New
4861         function.
4862         (selftest::test_diagnostic_show_locus_one_liner): Call it.
4863         * input.c (get_pure_location): Move to libcpp/line-map.c.
4864         * input.h (get_pure_location): Convert decl to an inline function
4865         calling implementation in libcpp.
4867 2016-08-29  Uros Bizjak  <ubizjak@gmail.com>
4869         PR target/77403
4870         * config/i386/sse.md (vec_set_lo_<mode><mask_name>): Fix assembler
4871         template for intel asm dialect.
4872         (vec_set_hi_<mode><mask_name>): Ditto.
4874 2016-08-29  David Malcolm  <dmalcolm@redhat.com>
4876         * selftest.h (selftest::fail): Add ATTRIBUTE_NORETURN.
4877         (selftest::fail_formatted): Likewise.
4879 2016-08-29  David Malcolm  <dmalcolm@redhat.com>
4881         * input.c (make_location): Call get_start and get_finish
4882         on the endpoints to avoid storing packed ranges or ad-hoc
4883         ranges in them.
4884         (selftest::test_make_location_nonpure_range_endpoints): New function.
4885         (selftest::input_c_tests): Call it.
4886         * input.h (get_start): New inline function.
4888 2016-08-29  Tom de Vries  <tom@codesourcery.com>
4890         PR c/77398
4891         * gimplify.c (gimplify_va_arg_expr): Replace first argument type error
4892         with assert.
4894 2016-08-29  Eric Botcazou  <ebotcazou@adacore.com>
4896         * Makefile.in (gcov-iov.h): Add dummy recipe.
4898 2016-08-29  Nathan Sidwell  <nathan@acm.org>
4900         * config/nvptx/nvptx.c: #include tree-vrp.h.
4902 2016-08-28  Eric Botcazou  <ebotcazou@adacore.com>
4904         PR target/77324
4905         * config/sparc/sparc.c (sparc_legitimate_address_p): Accept special
4906         HIGH+LO construct during reload.
4908 2016-08-28  Tom de Vries  <tom@codesourcery.com>
4910         PR lto/70955
4911         * config/i386/i386.c (ix86_build_builtin_va_list_64): Tag type with
4912         'sysv_abi va_list' attribute.
4913         (ix86_build_builtin_va_list): Tag type with 'ms_abi va_list' attribute.
4914         (ix86_canonical_va_list_type): Handle 'sysv_abi/ms_abi va_list'
4915         attributes.
4917 2016-08-27  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
4919         * emit-rtl.h (struct rtl_data): Make stack_slot_list a vector.
4920         * emit-rtl.c (unshare_all_rtl_1): Adjust.
4921         (unshare_all_rtl_again): Likewise.
4922         * function.c (assign_stack_local_1): Likewise.
4923         (assign_stack_temp_for_type): Likewise.
4925 2016-08-27  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
4927         * cfgbuild.c (make_edges): Adjust.
4928         * cfgrtl.c (can_delete_label_p): Likewise.
4929         * dwarf2cfi.c (create_trace_edges): Likewise.
4930         * except.c (sjlj_emit_dispatch_table): Likewise.
4931         * function.h (struct expr_status): make x_forced_labels a vector.
4932         * jump.c (rebuild_jump_labels_1): Adjust.
4933         * reload1.c (set_initial_label_offsets): Likewise.
4934         * stmt.c (force_label_rtx): Likewise.
4935         (expand_label): Likewise.
4937 2016-08-27  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
4939         * haifa-sched.c (fix_recovery_deps): Make ready_list a vector.
4941 2016-08-27  Patrick Palka  <ppalka@gcc.gnu.org>
4943         PR tree-optimization/71077
4944         PR tree-optimization/68542
4945         * fold-const.c (fold_relational_const): Fix folding of
4946         VECTOR_CST comparisons that have a scalar boolean result type.
4947         (selftest::test_vector_folding): New static function.
4948         (selftest::fold_const_c_tests): Call it.
4950 2016-08-27  Gerald Pfeifer  <gerald@pfeifer.com>
4952         * doc/extend.texi (SPU Built-in Functions): Remove stale
4953         references to material formerly at IBM and Sony.
4955 2016-08-26  David Edelsohn  <dje.gcc@gmail.com>
4957         PR target/77349
4958         * config/rs6000/xcoff.h (DWARF_OFFSET_SIZE): Define as PTR_SIZE.
4960 2016-08-26  David Malcolm  <dmalcolm@redhat.com>
4962         * diagnostic-show-locus.c
4963         (selftest::test_fixit_consolidation): New function.
4964         (selftest::diagnostic_show_locus_c_tests): Call it.
4965         * gcc-rich-location.h (gcc_rich_location): Eliminate unused
4966         constructor based on source_range.
4968 2016-08-26  David Malcolm  <dmalcolm@redhat.com>
4970         * diagnostic-color.c (color_dict): Add "fixit-insert" and
4971         "fixit-delete".
4972         (parse_gcc_colors): Update description of default GCC_COLORS.
4973         * diagnostic-show-locus.c (colorizer::set_fixit_hint): Delete.
4974         (colorizer::set_fixit_insert): New method.
4975         (colorizer::set_fixit_delete): New method.
4976         (colorizer::get_color_by_name): New method.
4977         (colorizer::STATE_FIXIT_INSERT): New constant.
4978         (colorizer::STATE_FIXIT_DELETE): New constant.
4979         (class colorizer): Drop "_cs" suffix from fields.  Delete "_ce"
4980         fields in favor of new field "m_stop_color".  Add fields
4981         "m_fixit_insert" and "m_fixit_delete".
4982         (colorizer::colorizer): Update for above changes.  Replace
4983         colorize_start calls with calls to get_color_by_name.
4984         (colorizer::begin_state): Handle STATE_FIXIT_INSERT and
4985         STATE_FIXIT_DELETE.  Update for field renamings.
4986         (colorizer::finish_state): Simplify by using m_stop_color,
4987         rather than multiple identical "*_ce" fields.
4988         (colorizer::get_color_by_name): New method.
4989         (layout::print_any_fixits): Print insertions and replacements
4990         using the "fixit-insert" color, and deletions using the
4991         "fixit-delete" color.
4992         * doc/invoke.texi (-fdiagnostics-color): Update description of
4993         default GCC_COLORS, and of the supported capabilities.
4995 2016-08-26  Max Filippov  <jcmvbkbc@gmail.com>
4997         * config/xtensa/xtensa.c (xtensa_expand_prologue): Update
4998         current_function_static_stack_size variable with the static
4999         stack frame size of the current function when
5000         flag_stack_usage_info is enabled.
5002 2016-08-26  Nathan Sidwell  <nathan@acm.org>
5004         * ipa-inline-analysis.c (inline_write_summary): Remove unnecessary
5005         assignment inside if condition.
5007 2016-08-26  Richard Biener  <rguenther@suse.de>
5009         PR tree-optimization/69047
5010         * tree-ssa.c (maybe_rewrite_mem_ref_base): Handle general bitfield
5011         extracts similar to what FRE does.
5012         (non_rewritable_mem_ref_base): Likewise.
5014 2016-08-26  Joseph Myers  <joseph@codesourcery.com>
5016         * config/i386/i386.c (ix86_libgcc_floating_mode_supported_p)
5017         (TARGET_LIBGCC_FLOATING_MODE_SUPPORTED_P): Remove.
5018         * config/i386/i386elf.h (IX86_MAYBE_NO_LIBGCC_TFMODE): Likewise.
5019         * config/i386/lynx.h (IX86_MAYBE_NO_LIBGCC_TFMODE): Likewise.
5020         * config/i386/netbsd-elf.h (IX86_MAYBE_NO_LIBGCC_TFMODE):
5021         Likewise.
5022         * config/i386/netbsd64.h (IX86_MAYBE_NO_LIBGCC_TFMODE): Likewise.
5023         * config/i386/nto.h (IX86_MAYBE_NO_LIBGCC_TFMODE): Likewise.
5024         * config/i386/openbsd.h (IX86_MAYBE_NO_LIBGCC_TFMODE): Likewise.
5025         * config/i386/rtemself.h (IX86_NO_LIBGCC_TFMODE): Likewise.
5026         * config/i386/vxworks.h (IX86_MAYBE_NO_LIBGCC_TFMODE): Likewise.
5028 2016-08-26  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
5030         PR target/70473
5031         * config/arm/cortex-a8-neon.md (cortex_a8_vfp_muld): Reduce
5032         reservation duration to 15 cycles.
5033         (cortex_a8_vfp_macs): Likewise.
5034         (cortex_a8_vfp_macd): Likewise.
5035         (cortex_a8_vfp_divs): Likewise.
5036         (cortex_a8_vfp_divd): Likewise.
5038 2016-08-26  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
5040         * config/arm/arm.c (arm_sets_movw_movt_fusible_p): New function.
5041         (aarch_macro_fusion_pair_p): Use above to avoid early return.
5043 2016-08-26  Prathamesh Kulkarni  <prathamesh.kulkarni@linaro.org>
5044             Martin Jambhor  <mjambor@suse.cz>
5046         * common.opt: New option -fipa-bit-cp.
5047         * doc/invoke.texi: Document -fipa-bit-cp.
5048         * opts.c (default_options_table): Add entry for -fipa-bit-cp.
5049         (enable_fdo_optimizations): Check for flag_ipa_bit_cp.
5050         * tree-ssa-ccp.h: New header file.
5051         * tree-ssa-ccp.c: Include tree-ssa-ccp.h
5052         (bit_value_binop_1): Change to bit_value_binop_1 and export it.
5053         Replace all occurences of tree parameter by two new params: signop, int.
5054         (bit_value_unop_1): Change to bit_value_unop and export it.
5055         Replace all occurences of tree parameter by two new params: signop,
5056         int.
5057         (bit_value_binop): Change call from bit_value_binop_1 to
5058         bit_value_binop.
5059         (bit_value_assume_aligned): Likewise.
5060         (bit_value_unop): Change call from bit_value_unop_1 to bit_value_unop.
5061         (do_ssa_ccp): Pass nonzero_p || flag_ipa_cp_bit instead of nonzero_p
5062         to ccp_finalize.
5063         (ccp_finalize): Skip processing if val->mask == 0.
5064         * ipa-cp.c: Include tree-ssa-ccp.h
5065         (ipcp_bits_lattice): New class.
5066         (ipcp_param_lattice (bits_lattice): New member.
5067         (print_all_lattices): Call ipcp_bits_lattice::print.
5068         (set_all_contains_variable): Call ipcp_bits_lattice::set_to_bottom.
5069         (initialize_node_lattices): Likewise.
5070         (propagate_bits_accross_jump_function): New function.
5071         (propagate_constants_accross_call): Call
5072         propagate_bits_accross_jump_function.
5073         (ipcp_propagate_stage): Store parameter types when in_lto_p is true.
5074         (ipcp_store_bits_results): New function.
5075         (ipcp_driver): Call ipcp_store_bits_results.
5076         * ipa-prop.h (ipa_bits): New struct.
5077         (ipa_jump_func): Add new member bits of type ipa_bits.
5078         (ipa_param_descriptor): Change decl to decl_or_type.
5079         (ipa_get_param): Change decl to decl_or_type and assert on
5080         PARM_DECL.
5081         (ipa_get_type): New function.
5082         (ipcp_transformation_summary): New member bits.
5083         * ipa-prop.c (ipa_get_param_decl_index_1): s/decl/decl_or_type.
5084         (ipa_populate_param_decls): Likewise.
5085         (ipa_dump_param): Likewise.
5086         (ipa_print_node_jump_functions_for_edge): Pretty-print ipa_bits jump
5087         function.
5088         (ipa_set_jf_unknown): Set ipa_bits::known to false.
5089         (ipa_compute_jump_functions_for_edge): Compute jump function for bits
5090         propagation.
5091         (ipa_node_params_t::duplicate): Copy src->bits into dst->bits.
5092         (ipa_write_jump_function): Add streaming for ipa_bits.
5093         (ipa_read_jump_function): Add support for reading streamed ipa_bits.
5094         (write_ipcp_transformation_info): Add streaming for ipa_bits
5095         summary for ltrans.
5096         (read_ipcp_transfomration_info): Add support for reading streamed
5097         ipa_bits.
5098         (ipcp_update_bits): New function.
5099         (ipcp_transform_function): Call ipcp_update_bits.
5101 2016-08-25  Szabolcs Nagy  <szabolcs.nagy@arm.com>
5103         * config/mips/linux.h (MUSL_DYNAMIC_LINKER32): Update.
5104         (MUSL_DYNAMIC_LINKER64, MUSL_DYNAMIC_LINKERN32): Update.
5106 2016-08-25  David Edelsohn  <dje.gcc@gmail.com>
5108         * multiple_target.c (pass_data_dispatcher_calls): Fix typo.
5110 2016-08-25  Richard Biener  <rguenther@suse.de>
5112         * dwarf2out.c (gen_remaining_tmpl_value_param_die_attributes):
5113         Only add locations in late dwarf.
5114         (gen_scheduled_generic_parms_dies): Do not set early dwarf here.
5115         (dwarf2out_early_finish): But do it here.
5117 2016-08-24  Michael Collison  <michael.collison@linaro.org>
5118             Michael Collison  <michael.collison@arm.com>
5120         * config/arm/arm-modes.def: Add new condition code mode CC_V
5121         to represent the overflow bit.
5122         * config/arm/arm.c (maybe_get_arm_condition_code):
5123         Add support for CC_Vmode.
5124         (arm_gen_unlikely_cbranch): New function to generate common
5125         rtl conditional branches for overflow patterns.
5126         * config/arm/arm-protos.h: Add prototype for
5127         arm_gen_unlikely_cbranch.
5128         * config/arm/arm.md (addv<mode>4, add<mode>3_compareV,
5129         addsi3_compareV_upper): New patterns to support signed
5130         builtin overflow add operations.
5131         (uaddv<mode>4, add<mode>3_compareC, addsi3_compareV_upper):
5132         New patterns to support unsigned builtin add overflow operations.
5133         (subv<mode>4, sub<mode>3_compare1): New patterns to support signed
5134         builtin overflow subtract operations,
5135         (usubv<mode>4): New patterns to support unsigned builtin subtract
5136         overflow operations.
5137         (negvsi3, negvdi3, negdi2_compare, negsi2_carryin_compare): New patterns
5138         to support builtin overflow negate operations.
5140 2016-08-24  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
5142         Revert
5143         2016-08-23  Dominik Vogt  <vogt@linux.vnet.ibm.com>
5145         * explow.c (get_dynamic_stack_size): Take known alignment of stack
5146         pointer + STACK_DYNAMIC_OFFSET into account when calculating the size
5147         needed.
5149 2016-08-24  Thomas Preud'homme  <thomas.preudhomme@arm.com>
5151         * doc/fragments.texi (MULTILIB_REUSE): Mention that only options in
5152         MULTILIB_OPTIONS should be used.  Small wording fixes.
5153         * genmultilib: Memorize set of all option combinations in
5154         combination_space.  Detect if RHS of MULTILIB_REUSE uses an option not
5155         found in MULTILIB_OPTIONS by checking if option set is listed in
5156         combination_space.  Output new and existing error message to stderr.
5158 2016-08-24  Thomas Preud'homme  <thomas.preudhomme@arm.com>
5160         * config/arm/t-aprofile (MULTILIB_MATCHES): Add mapping for
5161         -mcpu=cortex-a7, -mfpu=neon-fp16, -mfpu=fpv5-d16 and -mfpu=fp-armv8.
5162         Fix typo in -mfpu=vfpv3-d16-fp16 mapping.
5163         (MULTILIB_REUSE): Remove reuse rules for option set including
5164         -mfpu=fp-armv8 and -mfpu=vfpv4
5166 2016-08-24  Sebastian Huber  <sebastian.huber@embedded-brains.de>
5168         * config/arm/t-rtems: Add vfp multilib.
5170 2016-08-23  Ian Lance Taylor  <iant@golang.org>
5172         * config/s390/s390.c (s390_asm_file_start): Call
5173         default_file_start.
5175 2016-08-23  Michael Meissner  <meissner@linux.vnet.ibm.com>
5177         * config/rs6000/rs6000.c (rs6000_expand_vector_init): Set
5178         initialization of all 0's to the 0 constant, instead of directly
5179         generating XOR.  Add support for V4SImode vector initialization on
5180         64-bit systems with direct move, and rework the ISA 3.0 V4SImode
5181         initialization.  Change variables used in V4SFmode vector
5182         intialization.  For V4SFmode vector splat on ISA 3.0, make sure
5183         any memory addresses are in index form.  Add support for using
5184         VSPLTH/VSPLTB to initialize vector short and vector char vectors
5185         with all of the same element.
5186         (regno_or_subregno): New helper function to return a register
5187         number for either REG or SUBREG.
5188         (rs6000_adjust_vec_address): Do not generate ADDI <reg>,R0,<num>.
5189         Use regno_or_subregno where possible.
5190         (rs6000_split_v4si_init_di_reg): New helper function to build up a
5191         DImode value from two SImode values in order to generate V4SImode
5192         vector initialization on 64-bit systems with direct move.
5193         (rs6000_split_v4si_init): Split up the insns for a V4SImode vector
5194         initialization.
5195         (rtx_is_swappable_p): V4SImode vector initialization insn is not
5196         swappable.
5197         * config/rs6000/rs6000-protos.h (rs6000_split_v4si_init): Add
5198         declaration.
5199         * config/rs6000/vsx.md (VSX_SPLAT_I): New mode iterators and
5200         attributes to initialize V8HImode and V16QImode vectors with the
5201         same element.
5202         (VSX_SPLAT_COUNT): Likewise.
5203         (VSX_SPLAT_SUFFIX): Likewise.
5204         (UNSPEC_VSX_VEC_INIT): New unspec.
5205         (vsx_concat_v2sf): Eliminate using 'preferred' register classes.
5206         Allow SFmode values to come from Altivec registers.
5207         (vsx_init_v4si): New insn/split for V4SImode vector initialization
5208         on 64-bit systems with direct move.
5209         (vsx_splat_<mode>, VSX_W iterator): Rework V4SImode and V4SFmode
5210         vector initializations, to allow V4SImode vector initializations
5211         on 64-bit systems with direct move.
5212         (vsx_splat_v4si): Likewise.
5213         (vsx_splat_v4si_di): Likewise.
5214         (vsx_splat_v4sf): Likewise.
5215         (vsx_splat_v4sf_internal): Likewise.
5216         (vsx_xxspltw_<mode>, VSX_W iterator): Eliminate using 'preferred'
5217         register classes.
5218         (vsx_xxspltw_<mode>_direct, VSX_W iterator): Likewise.
5219         (vsx_vsplt<VSX_SPLAT_SUFFIX>_di): New insns to support
5220         initializing V8HImode and V16QImode vectors with the same
5221         element.
5222         * config/rs6000/rs6000.h (TARGET_DIRECT_MOVE_64BIT): Disallow
5223         optimization if -maltivec=be.
5225 2016-08-23  Christophe Lyon  <christophe.lyon@linaro.org>
5227         * config/arm/arm.md (arm_movqi_insn): Swap predicable_short_it
5228         attribute for alternatives 3 and 4.
5230 2016-08-23  David Malcolm  <dmalcolm@redhat.com>
5232         * selftest.c (selftest::assert_str_contains): New function.
5233         (selftest::test_assertions): Verify ASSERT_STR_CONTAINS.
5234         * selftest.h (selftest::assert_str_contains): New decl.
5235         (ASSERT_STR_CONTAINS): New macro.
5237 2016-08-23  Richard Biener  <rguenther@suse.de>
5239         PR tree-optimization/77286
5240         * tree-vect-loop.c (vect_analyze_loop_form_1): Do not modify
5241         the CFG here.
5242         (vect_transform_loop): Split exit edges of loop and scalar
5243         loop if required and at the appropriate time.
5245 2016-08-23  Dominik Vogt  <vogt@linux.vnet.ibm.com>
5247         * explow.c (get_dynamic_stack_size): Take known alignment of stack
5248         pointer + STACK_DYNAMIC_OFFSET into account when calculating the size
5249         needed.
5250         Correct a typo in a comment.
5252 2016-08-23  Dominik Vogt  <vogt@linux.vnet.ibm.com>
5254         * config/s390/s390.md ("*andc_split"): New splitter for and with
5255         complement.
5257 2016-08-23  Richard Biener  <rguenther@suse.de>
5259         PR tree-optimization/27336
5260         * tree-vrp.c (infer_value_range): Handle stmts that can throw
5261         by looking for a non-EH edge.
5262         (process_assert_insertions_for): Likewise.
5264 2016-08-23  Richard Biener  <rguenther@suse.de>
5266         PR middle-end/77305
5267         * statistics.c (statistics_counter_event): Robustify against
5268         NULL current_pass.
5270 2016-08-23  Venkataramanan Kumar  <venkataramanan.kumar@amd.com>
5272         * config/i386/i386.c (processor_alias_table): Enable PTA_PRFCHW
5273         for targets amdfam10 and barcelona.
5275 2016-08-22  Uros Bizjak  <ubizjak@gmail.com>
5277         * config/i386/i386.md (*zero_extendsidi2): Add (*r,*k) alternative.
5278         (zero_extend<mode>di2): Ditto.
5279         (*zero_extend<mode>si2): Ditto.
5280         (*zero_extendqihi2): Ditto.
5282 2016-08-22  Joseph Myers  <joseph@codesourcery.com>
5284         PR middle-end/77269
5285         * builtins.c (fold_builtin_classify): Use builtin_decl_explicit
5286         (BUILT_IN_SIGNBIT) to expand __builtin_isinf_sign.
5288 2016-08-22  Patrick Palka  <ppalka@gcc.gnu.org>
5290         * print-tree.c (print_node) [VECTOR_CST]: Coalesce the output of
5291         identical consecutive elements.
5292         [SSA_NAME]: Print the name's def stmt on its own line.  When printing
5293         the node's def stmt, avoid printing an unwanted trailing newline by
5294         replacing the call to print_gimple_stmt() with its inlined body and
5295         adjusting it to not set pp_needs_newline and to call pp_flush()
5296         instead of pp_newline_and_flush().
5298 2016-08-22  Joseph Myers  <joseph@codesourcery.com>
5300         * tree.h (CASE_FLT_FN_FLOATN_NX, float16_type_node)
5301         (float32_type_node, float64_type_node, float32x_type_node)
5302         (float128x_type_node): New macros.
5303         * builtin-types.def (BT_FLOAT16, BT_FLOAT32, BT_FLOAT64)
5304         (BT_FLOAT128, BT_FLOAT32X, BT_FLOAT64X, BT_FLOAT128X)
5305         (BT_FN_FLOAT16, BT_FN_FLOAT32, BT_FN_FLOAT64, BT_FN_FLOAT128)
5306         (BT_FN_FLOAT32X, BT_FN_FLOAT64X, BT_FN_FLOAT128X)
5307         (BT_FN_FLOAT16_FLOAT16, BT_FN_FLOAT32_FLOAT32)
5308         (BT_FN_FLOAT64_FLOAT64, BT_FN_FLOAT128_FLOAT128)
5309         (BT_FN_FLOAT32X_FLOAT32X, BT_FN_FLOAT64X_FLOAT64X)
5310         (BT_FN_FLOAT128X_FLOAT128X, BT_FN_FLOAT16_CONST_STRING)
5311         (BT_FN_FLOAT32_CONST_STRING, BT_FN_FLOAT64_CONST_STRING)
5312         (BT_FN_FLOAT128_CONST_STRING, BT_FN_FLOAT32X_CONST_STRING)
5313         (BT_FN_FLOAT64X_CONST_STRING, BT_FN_FLOAT128X_CONST_STRING)
5314         (BT_FN_FLOAT16_FLOAT16_FLOAT16, BT_FN_FLOAT32_FLOAT32_FLOAT32)
5315         (BT_FN_FLOAT64_FLOAT64_FLOAT64, BT_FN_FLOAT128_FLOAT128_FLOAT128)
5316         (BT_FN_FLOAT32X_FLOAT32X_FLOAT32X)
5317         (BT_FN_FLOAT64X_FLOAT64X_FLOAT64X)
5318         (BT_FN_FLOAT128X_FLOAT128X_FLOAT128X): New type definitions.
5319         * builtins.def (DEF_GCC_FLOATN_NX_BUILTINS): New macro.
5320         (copysign, fabs, huge_val, inf, nan, nans): Use it.
5321         * builtins.c (expand_builtin): Use CASE_FLT_FN_FLOATN_NX for fabs
5322         and copysign.
5323         (fold_builtin_0): Use CASE_FLT_FN_FLOATN_NX for inf and huge_val.
5324         (fold_builtin_1): Use CASE_FLT_FN_FLOATN_NX for fabs.
5325         * doc/extend.texi (Other Builtins): Document these built-in
5326         functions.
5327         * fold-const-call.c (fold_const_call): Use CASE_FLT_FN_FLOATN_NX
5328         for nan and nans.
5330 2016-08-22  Gerald Pfeifer  <gerald@pfeifer.com>
5332         * doc/install.texi (Binaries): www.opencsw.org now uses https.
5334 2016-08-22  Richard Biener  <rguenther@suse.de>
5336         * tree-ssa-forwprop.c (pass_forwprop::execute): Use RPO order.
5338 2016-08-21  Uros Bizjak  <ubizjak@gmail.com>
5340         PR target/77270
5341         * config/i386/i386.md (prefetch): When TARGET_PRFCHW or
5342         TARGET_PREFETCHWT1 are disabled, emit 3dNOW! write prefetches for
5343         non-SSE2 athlons only, otherwise prefer SSE prefetches.
5345 2016-08-20  Kugan Vivekanandarajah  <kuganv@linaro.org>
5347         * tree-vrp.c (vrp_visit_assignment_or_call): Changed to Return VR.
5348         (vrp_visit_cond_stmt): Just sets TAKEN_EDGE_P.
5349         (vrp_visit_switch_stmt): Likewise.
5350         (extract_range_from_stmt): Factored out from vrp_visit_stmt.
5351         (extract_range_from_phi_node): Factored out from vrp_visit_phi_stmt.
5352         (vrp_visit_stmt): Use extract_range_from_stmt.
5353         (vrp_visit_phi_node): Use extract_range_from_phi_node.
5355 2016-08-20  Kugan Vivekanandarajah  <kuganv@linaro.org>
5357         * Makefile.in: Add tree-vrp.h to GTFILES.
5358         * gengtype.c (open_base_files): Add tree-vrp.h.
5359         * asan.c: Add tree-vrp.h which now has the definition value_range_type.
5360         * builtins.c: Likewise.
5361         * fold-const.c: Likewise.
5362         * gimple-builder.c: Likewise.
5363         * gimple-laddress.c: Likewise.
5364         * hsa-gen.c: Likewise.
5365         * internal-fn.c: Likewise.
5366         * ssa.h: Likewise.
5367         * targhooks.c: Liewise,
5368         * tree-ssa-address.c: Likewise.
5369         * tree-ssanames.h (value_range_type: Move to tree-vrp.h.
5370         * tree-vrp.c (struct value_range): Move to tree-vrp.h
5371         * tree-vrp.h: New file.
5373 2016-08-20  Kugan Vivekanandarajah  <kuganv@linaro.org>
5375         PR tree-optimization/61839
5376         * tree-vrp.c (two_valued_val_range_p): New.
5377         (simplify_stmt_using_ranges): Convert CST BINOP VAR where VAR is
5378         two-valued to VAR == VAL1 ? (CST BINOP VAL1) : (CST BINOP VAL2).
5379         Also Convert VAR BINOP CST where VAR is two-valued to
5380         VAR == VAL1 ? (VAL1 BINOP CST) : (VAL2 BINOP CST).
5382 2016-08-19  David Malcolm  <dmalcolm@redhat.com>
5384         * diagnostic-show-locus.c
5385         (layout::annotation_line_showed_range_p): New method.
5386         (layout::print_any_fixits): Remove case fixit_hint::REMOVE.
5387         Reimplement case fixit_hint::REPLACE to cover removals, and
5388         replacements where the range of the replacement isn't one
5389         of the ranges in the rich_location.
5390         (test_one_liner_fixit_replace): Likewise.
5391         (selftest::test_one_liner_fixit_replace_non_equal_range): New
5392         function.
5393         (selftest::test_one_liner_fixit_replace_equal_secondary_range):
5394         New function.
5395         (selftest::test_diagnostic_show_locus_one_liner): Call the new
5396         functions.
5397         * diagnostic.c (print_parseable_fixits): Remove case
5398         fixit_hint::REMOVE.
5400 2016-08-19  Uros Bizjak  <ubizjak@gmail.com>
5402         PR target/77270
5403         * config/i386/i386.c (ix86_option_override_internal): Remove
5404         PTA_PRFCHW from entries that also have PTA_3DNOW flag.
5405         Enable SSE prefetch also for TARGET_PREFETCHWT1.
5406         Do not try to enable TARGET_PRFCHW ISA flag here.
5407         * config/i386/i386.md (prefetch): Enable also for TARGET_3DNOW.
5408         Rewrite expander function body.
5409         (*prefetch_3dnow): Enable for TARGET_3DNOW and TARGET_PREFETCHWT1.
5411 2016-08-19  Joseph Myers  <joseph@codesourcery.com>
5413         PR c/32187
5414         * tree-core.h (TI_COMPLEX_FLOAT16_TYPE)
5415         (TI_COMPLEX_FLOATN_NX_TYPE_FIRST, TI_COMPLEX_FLOAT32_TYPE)
5416         (TI_COMPLEX_FLOAT64_TYPE, TI_COMPLEX_FLOAT128_TYPE)
5417         (TI_COMPLEX_FLOAT32X_TYPE, TI_COMPLEX_FLOAT64X_TYPE)
5418         (TI_COMPLEX_FLOAT128X_TYPE, TI_FLOAT16_TYPE, TI_FLOATN_TYPE_FIRST)
5419         (TI_FLOATN_NX_TYPE_FIRST, TI_FLOAT32_TYPE, TI_FLOAT64_TYPE)
5420         (TI_FLOAT128_TYPE, TI_FLOATN_TYPE_LAST, TI_FLOAT32X_TYPE)
5421         (TI_FLOATNX_TYPE_FIRST, TI_FLOAT64X_TYPE, TI_FLOAT128X_TYPE)
5422         (TI_FLOATNX_TYPE_LAST, TI_FLOATN_NX_TYPE_LAST): New enum
5423         tree_index values.
5424         (NUM_FLOATN_TYPES, NUM_FLOATNX_TYPES, NUM_FLOATN_NX_TYPES): New
5425         macros.
5426         (struct floatn_type_info): New structure type.
5427         (floatn_nx_types): New variable declaration.
5428         * tree.h (FLOATN_TYPE_NODE, FLOATN_NX_TYPE_NODE)
5429         (FLOATNX_TYPE_NODE, float128_type_node, float64x_type_node)
5430         (COMPLEX_FLOATN_NX_TYPE_NODE): New macros.
5431         * tree.c (floatn_nx_types): New variable.
5432         (build_common_tree_nodes): Initialize _FloatN, _FloatNx and
5433         corresponding complex types.
5434         * target.def (floatn_mode): New hook.
5435         * targhooks.c: Include "real.h".
5436         (default_floatn_mode): New function.
5437         * targhooks.h (default_floatn_mode): New prototype.
5438         * doc/extend.texi (Floating Types): Document _FloatN and _FloatNx
5439         types.
5440         * doc/sourcebuild.texi (float@var{n}, float@var{n}x): Document new
5441         effective-target and dg-add-options keywords.
5442         (float@var{n}_runtime, float@var{n}x_runtime, floatn_nx_runtime):
5443         Document new effective-target keywords.
5444         * doc/tm.texi.in (TARGET_FLOATN_MODE): New @hook.
5445         * doc/tm.texi: Regenerate.
5446         * ginclude/float.h (LDBL_DECIMAL_DIG): Define to
5447         __LDBL_DECIMAL_DIG__, not __DECIMAL_DIG__.
5448         [__STDC_WANT_IEC_60559_TYPES_EXT__]: Define macros from TS
5449         18661-3.
5450         * real.h (struct real_format): Add field ieee_bits.
5451         * real.c (ieee_single_format, mips_single_format)
5452         (motorola_single_format, spu_single_format, ieee_double_format)
5453         (mips_double_format, motorola_double_format)
5454         (ieee_extended_motorola_format, ieee_extended_intel_96_format)
5455         (ieee_extended_intel_128_format)
5456         (ieee_extended_intel_96_round_53_format, ibm_extended_format)
5457         (mips_extended_format, ieee_quad_format, mips_quad_format)
5458         (vax_f_format, vax_d_format, vax_g_format, decimal_single_format)
5459         (decimal_double_format, decimal_quad_format, ieee_half_format)
5460         (arm_half_format, real_internal_format: Initialize ieee_bits
5461         field.
5462         * config/i386/i386.c (ix86_init_builtin_types): Do not initialize
5463         float128_type_node.  Set float80_type_node to float64x_type_node
5464         if appropriate and long_double_type_node not appropriate.
5465         * config/ia64/ia64.c (ia64_init_builtins): Likewise.
5466         * config/pdp11/pdp11.c (pdp11_f_format, pdp11_d_format):
5467         Initialize ieee_bits field.
5468         * config/rs6000/rs6000.c (TARGET_FLOATN_MODE): New macro.
5469         (rs6000_init_builtins): Set ieee128_float_type_node to
5470         float128_type_node.
5471         (rs6000_floatn_mode): New function.
5473 2016-08-19  Jakub Jelinek  <jakub@redhat.com>
5475         * config/i386/rdseedintrin.h (_rdseed16_step, _rdseed32_step,
5476         _rdseed64_step): Uglify argument names and/or local variable names
5477         in inline functions.
5478         * config/i386/rtmintrin.h (_xabort): Likewise.
5479         * config/i386/avx512vlintrin.h (_mm256_ternarylogic_epi64,
5480         _mm256_mask_ternarylogic_epi64, _mm256_maskz_ternarylogic_epi64,
5481         _mm256_ternarylogic_epi32, _mm256_mask_ternarylogic_epi32,
5482         _mm256_maskz_ternarylogic_epi32, _mm_ternarylogic_epi64,
5483         _mm_mask_ternarylogic_epi64, _mm_maskz_ternarylogic_epi64,
5484         _mm_ternarylogic_epi32, _mm_mask_ternarylogic_epi32,
5485         _mm_maskz_ternarylogic_epi32): Likewise.
5486         * config/i386/lwpintrin.h (__llwpcb, __lwpval32, __lwpval64,
5487         __lwpins32, __lwpins64): Likewise.
5488         * config/i386/avx2intrin.h (_mm_i32gather_pd, _mm_mask_i32gather_pd,
5489         _mm256_i32gather_pd, _mm256_mask_i32gather_pd, _mm_i64gather_pd,
5490         _mm_mask_i64gather_pd, _mm256_i64gather_pd, _mm256_mask_i64gather_pd,
5491         _mm_i32gather_ps, _mm_mask_i32gather_ps, _mm256_i32gather_ps,
5492         _mm256_mask_i32gather_ps, _mm_i64gather_ps, _mm_mask_i64gather_ps,
5493         _mm256_i64gather_ps, _mm256_mask_i64gather_ps, _mm_i32gather_epi64,
5494         _mm_mask_i32gather_epi64, _mm256_i32gather_epi64,
5495         _mm256_mask_i32gather_epi64, _mm_i64gather_epi64,
5496         _mm_mask_i64gather_epi64, _mm256_i64gather_epi64,
5497         _mm256_mask_i64gather_epi64, _mm_i32gather_epi32,
5498         _mm_mask_i32gather_epi32, _mm256_i32gather_epi32,
5499         _mm256_mask_i32gather_epi32, _mm_i64gather_epi32,
5500         _mm_mask_i64gather_epi32, _mm256_i64gather_epi32,
5501         _mm256_mask_i64gather_epi32): Likewise.
5502         * config/i386/pmm_malloc.h (_mm_malloc, _mm_free): Likewise.
5503         * config/i386/ia32intrin.h (__writeeflags): Likewise.
5504         * config/i386/pkuintrin.h (_wrpkru): Likewise.
5505         * config/i386/avx512pfintrin.h (_mm512_mask_prefetch_i32gather_pd,
5506         _mm512_mask_prefetch_i32gather_ps, _mm512_mask_prefetch_i64gather_pd,
5507         _mm512_mask_prefetch_i64gather_ps, _mm512_prefetch_i32scatter_pd,
5508         _mm512_prefetch_i32scatter_ps, _mm512_mask_prefetch_i32scatter_pd,
5509         _mm512_mask_prefetch_i32scatter_ps, _mm512_prefetch_i64scatter_pd,
5510         _mm512_prefetch_i64scatter_ps, _mm512_mask_prefetch_i64scatter_pd,
5511         _mm512_mask_prefetch_i64scatter_ps): Likewise.
5512         * config/i386/gmm_malloc.h (_mm_malloc, _mm_free): Likewise.
5513         * config/i386/avx512fintrin.h (_mm512_ternarylogic_epi64,
5514         _mm512_mask_ternarylogic_epi64, _mm512_maskz_ternarylogic_epi64,
5515         _mm512_ternarylogic_epi32, _mm512_mask_ternarylogic_epi32,
5516         _mm512_maskz_ternarylogic_epi32, _mm512_i32gather_ps,
5517         _mm512_mask_i32gather_ps, _mm512_i32gather_pd, _mm512_i64gather_ps,
5518         _mm512_i64gather_pd, _mm512_i32gather_epi32, _mm512_i32gather_epi64,
5519         _mm512_i64gather_epi32, _mm512_i64gather_epi64): Likewise.
5521         * config/i386/fxsrintrin.h (_fxsave): Remove return keyword in inlines
5522         returning void.
5523         (_fxrstor, _fxsave64, _fxrstor64): Likewise.
5524         * config/i386/xsaveintrin.h (_xsave, _xrstor, _xsave64, _xrstor64):
5525         Likewise.
5526         * config/i386/xsaveoptintrin.h (_xsaveopt, _xsaveopt64): Likewise.
5527         * config/i386/pkuintrin.h (_wrpkru): Likewise.  Add space after
5528         function name.
5529         (_rdpkru_u32): Add space after function name.
5531         * config/i386/t-i386 (i386-c.o): Don't depend on
5532         i386-builtin-types.inc.
5533         (i386.o): Depend on i386-builtin-types.inc.
5535 2016-08-19  Matthew Wahab  <matthew.wahab@arm.com>
5537         PR target/77281
5538         * config/arm/arm.c (neon_valid_immediate): Delete declaration.
5539         Use const_vec_duplicate to check for duplicated elements.
5541 2016-08-19  Richard Biener  <rguenther@suse.de>
5543         PR tree-optimization/77290
5544         * tree-ssa-pre.c (eliminate_dom_walker::before_dom_children):
5545         Fix flag_tree_parallelize_loops check.
5547 2016-08-19  Richard Biener  <rguenther@suse.de>
5549         * match.pd (x | 0 -> x): Add.
5551 2016-08-19  Richard Biener  <rguenther@suse.de>
5553         PR tree-optimization/77286
5554         * tree-vect-loop-manip.c (slpeel_duplicate_current_defs_from_edges):
5555         Deal with virtual PHIs being out-of-order.
5557 2016-08-18  David Malcolm  <dmalcolm@redhat.com>
5559         * doc/invoke.texi (fverbose-asm): Note that source code lines
5560         are emitted, and provide an example.
5561         * final.c (asm_show_source): New function.
5562         (final_scan_insn): Call asm_show_source.
5564 2016-08-18  David Malcolm  <dmalcolm@redhat.com>
5566         * diagnostic-show-locus.c (colorizer::colorizer): Replace diagnostic
5567         param with diagnostic_kind.
5568         (class colorizer): Similarly replace field m_diagnostic with
5569         m_diagnostic_kind.
5570         (colorizer::colorizer): Replace diagnostic
5571         param with diagnostic_kind.
5572         (colorizer::begin_state): Update for above field change.
5573         (layout::layout): Replace diagnostic param with rich_location *
5574         and diagnostic_kind.
5575         (diagnostic_show_locus): Replace diagnostic param with richloc
5576         and diagnostic_kind.
5577         (class selftest::test_diagnostic_context): New class.
5578         (selftest::test_diagnostic_show_locus_unknown_location): New
5579         function.
5580         (selftest::test_one_liner_simple_caret): New function.
5581         (selftest::test_one_liner_caret_and_range): New function.
5582         (selftest::test_one_liner_multiple_carets_and_ranges): New
5583         function.
5584         (selftest::test_one_liner_fixit_remove): New function.
5585         (selftest::test_one_liner_fixit_replace): New function.
5586         (selftest::test_diagnostic_show_locus_one_liner): New function.
5587         (selftest::diagnostic_show_locus_c_tests): Call the new test
5588         functions.
5589         * diagnostic.c (diagnostic_initialize): Initialize
5590         colorize_source_p, show_ruler_p and parseable_fixits_p.
5591         (default_diagnostic_finalizer): Update for change to
5592         diagnostic_show_locus.
5593         (diagnostic_append_note): Likewise.
5594         * diagnostic.h (diagnostic_show_locus): Replace
5595         const diagnostic_info * param with location * and diagnostic_t.
5597 2016-08-18  David Malcolm  <dmalcolm@redhat.com>
5599         * input.c (saved_line_table): New global.
5600         (class selftest::temp_line_table): Rename to line_table_test and
5601         move declaration to selftest.h, and drop field m_old_line_table.
5602         (selftest::temp_line_table::temp_line_table): Rename ctor to...
5603         (selftest::line_table_test::line_table_test): ...this.  Add a
5604         default ctor.  Store current value of line_table within
5605         saved_line_table.
5606         (selftest::temp_line_table::~temp_line_table): Rename dtor to...
5607         (selftest::line_table_test::~line_table_test): ...this, and
5608         restore line_table from the saved_line_table, rather than
5609         m_old_line_table.
5610         (selftest::test_accessing_ordinary_linemaps): Update for above
5611         renaming.
5612         (selftest::test_lexer): Likewise.
5613         (struct selftest::lexer_test): Likewise.
5614         (selftest::lexer_test::lexer_test): Likewise.
5615         (selftest::input_c_tests): Move the looping over test cases from
5616         here into...
5617         (selftest::for_each_line_table_case): New function.
5618         * input.h (saved_line_table): New decl.
5619         * selftest.h (struct selftest::line_table_case): New forward decl.
5620         (class selftest::line_table_test): New class, moved here from
5621         selftest::temp_line_table in input.c, and renamed.
5622         (selftest::for_each_line_table_case): New decl.
5624 2015-08-18  H.J. Lu  <hongjiu.lu@intel.com>
5626         PR target/72839
5627         * config/i386/i386.c (lakemont_cost): Set MOVE_RATIO to 17.
5629 2016-08-18  Chung-Lin Tang  <cltang@codesourcery.com>
5631         PR middle-end/70895
5632         * gimplify.c (omp_add_variable): Adjust/add variable mapping on
5633         enclosing parallel construct for reduction variables on OpenACC loop
5634         directives.
5636 2016-08-18  Pierre-Marie de Rodat  <derodat@adacore.com>
5638         * dwarf2out.c (copy_dwarf_procedure): Remove obsolete comment.
5639         (new_dwarf_proc_die): Emit DW_TAG_dwarf_procedure DIEs even for
5640         -gdwarf-3.
5641         (function_to_dwarf_procedure): Update comment.
5643 2016-08-18  David Malcolm  <dmalcolm@redhat.com>
5645         * input.c (diagnostics_file_cache_forcibly_evict_file): New
5646         function.
5647         * input.h (diagnostics_file_cache_forcibly_evict_file): New
5648         declaration.
5649         * selftest.c (selftest::temp_source_file::~temp_source_file):
5650         Evict m_filename from the diagnostic file cache.
5652 2016-08-18  Richard Biener  <rguenther@suse.de>
5654         * tree-pass.h (make_pass_materialize_all_clones): Declare.
5655         * ipa.c (pass_data_materialize_all_clones, pass_materialize_all_clones,
5656         make_pass_materialize_all_clones): New simple IPA pass encapsulating
5657         clone materialization.
5658         * passes.def (all_late_ipa_passes): Start with
5659         pass_materialize_all_clones.
5660         * cgraphunit.c (symbol_table::compile): Remove call to
5661         materialize_all_clones.
5662         * tree-into-ssa.c: Include statistics.h.
5663         (update_ssa): Count number of times we do incremental/rewrite
5664         SSA update.
5666 2016-08-18  Richard Biener  <rguenther@suse.de>
5668         PR tree-optimization/77282
5669         * tree-ssa-pre.c (eliminate_dom_walker::before_dom_children):
5670         When doing auto-parallelizing also prevent use of PHIs that
5671         carry dependences across loop backedges.
5673 2016-08-18  Tamar Christina  <tamar.christina@arm.com>
5674             Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>
5676         * varasm.c (default_use_anchors_for_symbol_p): Reject too large decls.
5678 2016-08-18  Richard Biener  <rguenther@suse.de>
5680         * ssa-iterators.h (ssa_vuse_operand): New inline.
5681         * tree-if-conv.c (ifc_temp_var): Update virtual operand.
5682         (predicate_all_scalar_phis): Use remove_phi_node to remove
5683         phi nodes predicated.  Delay removing virtual PHIs.
5684         (predicate_mem_writes): Update virtual operands.
5685         (combine_blocks): Likewise.  Propagate out remaining virtual PHIs.
5686         (tree_if_conversion): Do not rewrite virtual SSA form.
5687         * tree-phinodes.c (release_phi_node): Make static.
5688         * tree-phinodes.h (release_phi_node): Remove.
5690 2016-08-18  Jakub Jelinek  <jakub@redhat.com>
5692         * config/i386/i386.c (enum ix86_builtins): Remove IX86_BUILTIN_*
5693         codes that appear in bdesc_* arrays, instead include i386-builtin.def
5694         twice to define those.
5695         (bdesc_comi, bdesc_pcmpestr, bdesc_pcmpistr, bdesc_special_args,
5696         bdesc_args, bdesc_round_args, bdesc_mpx, bdesc_mpx_const,
5697         bdesc_multi_arg): Define by including i386-builtin.def the third time.
5698         * config/i386/i386-builtin.def: New file.
5700 2016-08-17  David Malcolm  <dmalcolm@redhat.com>
5702         * input.c (get_source_range_for_char): Rename to...
5703         (selftest::get_source_range_for_char): ...this, and move within
5704         the #if CHECKING_P guard.
5705         (get_num_source_ranges_for_substring): Rename to...
5706         (selftest::get_num_source_ranges_for_substring): ...this, move
5707         within the #if CHECKING_P guard, and make static.
5708         (selftest::assert_num_substring_ranges): Initialize
5709         actual_num_ranges.
5711 2016-08-18  Alan Modra  <amodra@gmail.com>
5713         PR rtl-optimization/72771
5714         * reload.c (find_reloads): Don't assume that a subreg mem is OK
5715         when find_reloads_toplev returns address_reloaded==-1.
5716         (alternative_allows_const_pool_ref): Update comment.
5718 2015-08-17  Alan Hayward  <alan.hayward@arm.com>
5720         PR tree-optimization/71752
5721         * tree-vect-loop.c (vectorizable_reduction): Keep SLP operand ordering.
5722         * tree-vect-slp.c (vect_get_slp_defs): Handle null operands.
5724 2016-08-17  Jakub Jelinek  <jakub@redhat.com>
5726         * gimple-fold.c (gimple_fold_call): Use gimple_call_noreturn_p
5727         instead of testing ECF_NORETURN bit in gimple_call_flags.
5728         * tree-cfg.c (make_edges_bb, execute_fixup_cfg): Likewise.
5729         * predict.c (tree_bb_level_predictions): Likewise.
5730         * gimple-low.c (gimple_stmt_may_fallthru): Likewise.
5732         PR middle-end/77259
5733         * tree-ssa-pre.c (eliminate_dom_walker::before_dom_children): If
5734         turning a call into __builtin_unreachable-like noreturn call, adjust
5735         gimple_call_set_fntype.
5736         * tree-cfgcleanup.c (fixup_noreturn_call): Remove lhs also if
5737         gimple_call_fntype has void return type.
5739 2016-08-17  Chung-Lin Tang  <cltang@codesourcery.com>
5741         * omp-low.c (lower_oacc_reductions): Adjust variable lookup to use
5742         maybe_lookup_decl, to handle nested acc loop directives.
5744 2016-08-17  Richard Biener  <rguenther@suse.de>
5746         PR tree-optimization/76490
5747         * tree-vrp.c (update_value_range): Preserve overflow infinities
5748         when intersecting with ranges from get_range_info.
5749         (operand_less_p): Handle overflow infinities correctly.
5750         (value_range_constant_singleton): Use vrp_operand_equal_p
5751         to handle overflow max/min correctly.
5752         (vrp_valueize): Likewise.
5753         (union_ranges): Likewise.
5754         (intersect_ranges): Likewise.
5755         (vrp_visit_phi_node): Improve iteration limitation to only
5756         apply when we'll possibly re-visit the PHI via a changed argument
5757         on the backedge.
5759 2016-08-17  Thomas Preud'homme  <thomas.preudhomme@arm.com>
5761         * config/arm/t-aprofile (MULTILIB_EXCEPTIONS): Rewrite into ...
5762         (MULTILIB_REQUIRED): This by specifying multilib needing to be built
5763         rather than those that should not be built.
5765 2016-08-17  Stanislaw Halik  <sthalik@misaki.pl>
5767         PR target/66488
5768         * config/i386/xm-mingw32.h (HOST_BITS_PER_PTR): Define if __x86_64__.
5770 2016-08-17  Richard Biener  <rguenther@suse.de>
5772         * tree-ssa.c: Include tree-cfg.h and tree-dfa.h.
5773         (verify_vssa): New function verifying virtual SSA form.
5774         (verify_ssa): Call it.
5775         * tree-ssa-loop-manip.c (slpeel_update_phi_nodes_for_guard2):
5776         Do not apply loop-closed SSA handling to virtuals.
5777         * ssa-iterators.h (op_iter_init): Handle GIMPLE_TRANSACTION.
5778         * tree-into-ssa.c (prepare_use_sites_for): Skip virtual SSA names
5779         when rewriting their symbol.
5780         (prepare_def_site_for): Likewise.
5781         * tree-chkp-opt.c (chkp_reduce_bounds_lifetime): Clear virtual
5782         operands of moved stmts.
5784 2016-08-17  Richard Biener  <rguenther@suse.de>
5786         PR tree-optimization/23855
5787         * tree-ssa-loop-unswitch.c: Include tree-ssa-loop-manip.h.
5788         (tree_unswitch_outer_loop): Iterate find_loop_guard as long as we
5789         find guards to hoist.  Do not update SSA form but rewrite virtuals
5790         into loop closed SSA.
5791         (find_loop_guard): Adjust to skip already hoisted guards.  Do
5792         not mark virtuals for renaming or update SSA form.
5794 2016-08-17  Martin Liska  <mliska@suse.cz>
5796         * coverage.c (get_gcov_type): Replace GCOV_TYPE_SIZE with
5797         a LONG_LONG_TYPE_SIZE comparison.
5798         * gcov-io.h: Remove macro definitions.
5799         * tree-profile.c (gimple_gen_edge_profiler): Replace usage
5800         of GCOV_TYPE_ATOMIC_FETCH_ADD with a LONG_LONG_TYPE_SIZE
5801         comparison.
5803 2016-08-16  Jakub Jelinek  <jakub@redhat.com>
5805         * config/i386/i386.c (enum ix86_builtins): Reorder enumerators, so
5806         that builtins not mentioned in bdesc_* arrays come first, then
5807         the ones mentioned in bdesc_* arrays in the order they appear in
5808         the arrays in between IX86_BUILTIN__BDESC_*_FIRST and
5809         IX86_BUILTIN__BDESC_*_LAST enumerator.
5810         (bdesc_mpx): Fix up a comment typo.
5811         (bdesc_multi_arg): Remove __builtin_ia32_vpcomne[bwdq] and
5812         __builtin_ia32_vpcomneu[bwdq] builtins.
5813         (BDESC_VERIFY, BDESC_VERIFYS): Define.
5814         (ix86_init_mmx_sse_builtins, ix86_init_mpx_builtins): Verify
5815         enum ix86_builtins ordering.
5816         (ix86_expand_builtin): Use enum ix86_builtins ordering assumption
5817         for direct bdesc_* array member access instead of searching all the
5818         arrays until an fcode match is found.
5820 2016-08-16  Uros Bizjak  <ubizjak@gmail.com>
5822         * config/i386/i386.md (*ashl<mode>3_mask): Rewrite define_insn
5823         pattern as define_insn_and_split.  Split insn before reload to
5824         ashl<mode>3_1.
5825         (*<shift_insn><mode>3_mask): Ditto.  Split insn before reload to
5826         <shift_insn><mode>3_1.
5827         (*<rotate_insn><mode>3_mask): Ditto.  Split insn before reload to
5828         <rotate_insn><mode>3_1.
5830 2016-08-16  David Malcolm  <dmalcolm@redhat.com>
5832         PR c/72857
5833         * input.c (get_source_range_for_substring): Rename to...
5834         (get_source_location_for_substring): ...this, adding param
5835         "caret_idx", and converting output param from source_range * to
5836         location_t *.
5837         (get_source_range_for_char): New function.
5838         (get_num_source_ranges_for_substring): Update comment to reflect
5839         above renaming.
5840         (assert_char_at_range): Update to use get_source_range_for_char
5841         rather than get_source_range_for_substring.
5842         (test_lexer_string_locations_concatenation_2): Likewise.
5843         * substring-locations.h (get_source_range_for_substring): Rename
5844         to...
5845         (get_source_location_for_substring): ...this, and adding param
5846         "caret_idx", and converting output param from source_range * to
5847         location_t *.
5849 2016-08-16  David Malcolm  <dmalcolm@redhat.com>
5851         * input.c (class selftest::temp_source_file): Move to
5852         selftest.h.
5853         (selftest::temp_source_file::temp_source_file): Move to
5854         selftest.c.
5855         (selftest::temp_source_file::~temp_source_file): Likewise.
5856         * selftest.c (selftest::temp_source_file::temp_source_file): Move
5857         here from input.c.
5858         (selftest::temp_source_file::~temp_source_file): Likewise.
5859         * selftest.h (class selftest::temp_source_file): Move here from
5860         input.c
5862 2016-08-16  Jakub Jelinek  <jakub@redhat.com>
5864         PR target/71910
5865         * tree-cfg.c (execute_fixup_cfg): Add node variable, use it.  Before
5866         inlining, add cgraph edge for the added __builtin_unreachable call.
5868         PR middle-end/67485
5869         * expmed.c (expand_mult_const): Change val_so_far's type to UHWI,
5870         only cast it to SHWI for the final comparison.
5872 2016-08-16  Martin Liska  <mliska@suse.cz>
5874         PR gcov-profile/36412
5875         * doc/gcov.texi: Document --hash-filenames(-x).
5876         * gcov.c (print_usage): Add the option.
5877         (process_args): Process the option, sort options alphabetically.
5878         (md5sum_to_hex): New function.
5879         (make_gcov_file_name): Do the md5sum and append it to a
5880         filename.
5882 2016-08-16  Bin Cheng  <bin.cheng@arm.com>
5884         PR tree-optimization/69848
5885         * config/aarch64/aarch64-simd.md (vcond<mode><mode>): Invert NE
5886         and swtich operands to avoid additional NOT instruction.
5887         (vcond<v_cmp_mixed><mode>): Ditto.
5888         (vcondu<mode><mode>, vcondu<mode><v_cmp_mixed>): Ditto.
5890 2016-08-16  Eric Botcazou  <ebotcazou@adacore.com>
5892         * doc/install.texi (*-*-solaris2*): Adjust latest change.
5894 2016-08-16  Richard Biener  <rguenther@suse.de>
5896         PR tree-optimization/76783
5897         * tree-ssa-propagate.c (ssa_prop_init): Use RPO order.  Clear
5898         BB visited flags at start.
5900 2016-08-16  Bin Cheng  <bin.cheng@arm.com>
5902         PR tree-optimization/72817
5903         PR tree-optimization/73450
5904         * tree-ssa-loop-niter.c (number_of_iterations_ne): Check
5905         multiple_of_p for adjusted IV.base.
5907 2016-08-15  Uros Bizjak  <ubizjak@gmail.com>
5909         PR target/72867
5910         * config/i386/sse.md (<code><mode>3<mask_name><round_saeonly_name>):
5911         Emit ieee_<ieee_maxmin><mode>3<mask_name><round_saeonly_name>
5912         for !flag_finite_math_only or flag_signed_zeros.
5913         (*<code><mode>3<mask_name><round_saeonly_name>): Rename from
5914         *<code><mode>3_finite<mask_name><round_saeonly_name>.  Do not
5915         depend on flag_finite_math_only.
5916         (ieee_<ieee_maxmin><mode>3<mask_name><round_saeonly_name>):
5917         New insn pattern.
5918         (*<code><mode>3<mask_name><round_saeonly_name>): Remove.
5919         (*ieee_smin<mode>3): Ditto.
5920         (*ieee_smax<mode>3): Ditto.
5921         * config/i386/mmx.md (mmx_<code>v2sf3): Emit
5922         mmx_ieee_<ieee_maxmin>v2sf3 for !flag_finite_math_only or
5923         flag_signed_zeros.
5924         (*mmx_<code>v2sf3): Rename from *mmx_<code>v2sf3_finite.  Do not
5925         depend on flag_finite_math_only.
5926         (mmx_ieee_<ieee_maxmin>v2sf3): New insn pattern.
5927         (*mmx_<code>v2sf3): Remove.
5928         * config/i386/subst.md (round_saeonly_mask_arg3): New subst attribute.
5929         * config/i386/i386.c (ix86_expand_sse_fp_mimnax): Check
5930         flag_signed_zeros instead of !flag_unsafe_math_optimizations.
5932 2016-08-15  Segher Boessenkool  <segher@kernel.crashing.org>
5934         PR rtl-optimization/73650
5935         * lra-constraints.c (simple_move_p): If the insn is multiple_sets
5936         it is not a simple move.
5938 2016-08-15  Martin Liska  <mliska@suse.cz>
5940         PR driver/72765
5941         * gcc.c (do_spec_1): Call save_string with the right size.
5942         (save_string): Do an assert about string we copy.
5944 2016-08-15  Richard Biener  <rguenther@suse.de>
5946         * ree.c (rest_of_handle_ree): Remove redundant timevar push/pop.
5947         * config/i386/i386.c (pass_data_insert_vzeroupper): Account to
5948         TV_MACH_DEP.
5949         (pass_data_stv): Likewise.
5951 2016-08-15  Richard Biener  <rguenther@suse.de>
5953         PR tree-optimization/73434
5954         * tree-ssa-sccvn.c (vn_reference_maybe_forwprop_address): Preserve
5955         TBAA info on the base when forwarding a non-invariant address.
5957 2016-08-15  Jakub Jelinek  <jakub@redhat.com>
5959         * dwarf2out.c (struct checksum_attributes): Add
5960         at_string_length_bit_size and at_string_length_byte_size fields.
5961         (collect_checksum_attributes): Handle DW_AT_string_length_bit_size
5962         and DW_AT_string_length_byte_size.
5963         (die_checksum_ordered): Handle at_string_length_bit_size and
5964         at_string_length_byte_size.
5965         (gen_array_type_die): For dwarf_version >= 5 emit
5966         DW_AT_string_length_byte_size instead of DW_AT_byte_size.
5967         (adjust_string_types): For dwarf_version >= 5 remove
5968         DW_AT_string_length_byte_size instead of DW_AT_byte_size.
5969         (resolve_addr): Likewise.
5971         PR debug/71906
5972         * dwarf2out.c (string_types): New variable.
5973         (gen_array_type_die): Change early_dwarf handling of
5974         DW_AT_string_length, create DW_OP_call4 referencing the
5975         length var temporarily.  Handle parameters that are pointers
5976         to string length.
5977         (adjust_string_types): New function.
5978         (gen_subprogram_die): Temporarily set string_types to local var,
5979         call adjust_string_types if needed.
5980         (non_dwarf_expression, copy_deref_exprloc, optimize_string_length):
5981         New functions.
5982         (resolve_addr): Adjust DW_AT_string_length if it is DW_OP_call4.
5984 2016-08-15  Eric Botcazou  <ebotcazou@adacore.com>
5986         * doc/install.texi (*-*-solaris2*): Fix version number and document
5987         requirement on GNU make for building libjava with the Solaris linker.
5989 2016-08-15  Martin Liska  <mliska@suse.cz>
5990             Jakub Jelinek  <jakub@redhat.com>
5992         PR tree-optimization/72824
5993         * tree-loop-distribution.c (const_with_all_bytes_same)
5994         <case VECTOR_CST>: Fix a typo.
5996 2016-08-14  Uros Bizjak  <ubizjak@gmail.com>
5998         PR target/76342
5999         * config/i386/avx512fintrin.h (_mm512_undefined_epi32):
6000         Renamed from _mm512_undefined_si512.
6001         (_mm_undefined_si512): New definition.
6003 2016-08-13  Richard Biener  <rguenther@suse.de>
6005         * tree-ssa-forwprop.c (pass_forwprop::execute): Propagate
6006         into PHIs and update the lattice for its def.
6008 2016-08-12  Jakub Jelinek  <jakub@redhat.com>
6010         PR c/71512
6011         * ubsan.c (instrument_si_overflow): Pass true instead of false
6012         to gsi_replace.
6013         (pass_ubsan::execute): Call gimple_purge_dead_eh_edges at the end
6014         of bbs.  Return TODO_cleanup_cfg if any returned true.
6016 2016-08-12  Michael Meissner  <meissner@linux.vnet.ibm.com>
6018         * config/rs6000/vsx.md (vsx_concat_<mode>): Add support for the
6019         ISA 3.0 MTVSRDD instruction.
6020         (vsx_splat_<mode>): Change cpu type of MTVSRDD instruction to
6021         vecperm.
6023 2016-08-12  Bernd Edlinger  <bernd.edlinger@hotmail.de>
6025         PR tree-optimization/71083
6026         * tree-predcom.c (ref_at_iteration): Use a COMPONENT_REF for the
6027         bitfield access when possible.
6029 2016-08-12  Patrick Palka  <ppalka@gcc.gnu.org>
6031         PR middle-end/71654
6032         * match.pd ((T)A CMP (T)B -> A CMP B): Allow (T)A to be a
6033         sign-changing cast from a shorter unsigned type to a wider
6034         signed type.
6036 2016-08-12  Jakub Jelinek  <jakub@redhat.com>
6038         * config/i386/sse.md (avx512dq_vextract<shuffletype>64x2_1_maskm,
6039         vec_extract_hi_<mode>_mask, vec_extract_lo_<mode>_mask,
6040         vec_extract_hi_<mode>_mask): Use Yk constraint instead of k.
6042 2016-08-12  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
6044         * config/rs6000/rs6000.c (rs6000_builtin_vectorization_cost):
6045         Correct costs for vec_construct.
6047 2016-08-12  Bin Cheng  <bin.cheng@arm.com>
6049         PR tree-optimization/69848
6050         * tree-vectorizer.h (enum vect_def_type): New condition reduction
6051         type CONST_COND_REDUCTION.
6052         * tree-vect-loop.c (vectorizable_reduction): Support new condition
6053         reudction type CONST_COND_REDUCTION.
6055 2016-08-12  Richard Biener  <rguenther@suse.de>
6057         PR tree-optimization/57326
6058         * tree-ssa-pre.c (fully_constant_expression): Handle simplification
6059         returning an SSA name.
6060         (phi_translate_1): When fully_constant_expression returns a NAME
6061         make sure we have a leader for it.
6063 2016-08-12  Martin Liska  <mliska@suse.cz>
6064             Adam Fineman  <afineman@afineman.com>
6066         * gcov.c (process_file): Create .gcov file when .gcda
6067         file is missing.
6069 2016-08-12  Marek Polacek  <polacek@redhat.com>
6071         PR c/7652
6072         * alias.c (find_base_value): Adjust fall through comment.
6073         * cfgexpand.c (expand_debug_expr): Likewise.
6074         * combine.c (find_split_point): Likewise.
6075         (expand_compound_operation): Likewise.  Add FALLTHRU.
6076         (make_compound_operation): Adjust fall through comment.
6077         (canon_reg_for_combine): Add FALLTHRU.
6078         (force_to_mode): Adjust fall through comment.
6079         (simplify_shift_const_1): Likewise.
6080         (simplify_comparison): Likewise.
6081         * config/aarch64/aarch64-builtins.c (aarch64_simd_expand_args): Add
6082         FALLTHRU.
6083         * config/aarch64/predicates.md: Likewise.
6084         * config/i386/i386.c (function_arg_advance_32): Likewise.
6085         (ix86_gimplify_va_arg): Likewise.
6086         (print_reg): Likewise.
6087         (ix86_print_operand): Likewise.
6088         (ix86_build_const_vector): Likewise.
6089         (ix86_expand_branch): Likewise.
6090         (ix86_sched_init_global): Adjust fall through comment.
6091         (ix86_expand_args_builtin): Add FALLTHRU.
6092         (ix86_expand_builtin): Likewise.
6093         (ix86_expand_vector_init_one_var): Likewise.
6094         * config/rs6000/rs6000.c (rs6000_emit_vector_compare_inner): Likewise.
6095         (rs6000_adjust_cost): Likewise.
6096         (insn_must_be_first_in_group): Likewise.
6097         * config/rs6000/rs6000.md: Likewise.  Adjust fall through comment.
6098         * dbxout.c (dbxout_symbol): Adjust fall through comment.
6099         * df-scan.c (df_uses_record): Likewise.
6100         * dojump.c (do_jump): Add FALLTHRU.
6101         * dwarf2out.c (mem_loc_descriptor): Likewise.  Adjust fall through
6102         comment.
6103         (resolve_args_picking_1): Adjust fall through comment.
6104         (loc_list_from_tree_1): Likewise.
6105         * expmed.c (make_tree): Likewise.
6106         * expr.c (expand_expr_real_2): Add FALLTHRU.
6107         (expand_expr_real_1): Likewise.  Adjust fall through comment.
6108         * fold-const.c (const_binop): Adjust fall through comment.
6109         (fold_truth_not_expr): Likewise.
6110         (fold_cond_expr_with_comparison): Add FALLTHRU.
6111         (fold_binary_loc): Likewise.
6112         (contains_label_1): Adjust fall through comment.
6113         (multiple_of_p): Likewise.
6114         * gcov-tool.c (process_args): Add FALLTHRU.
6115         * genattrtab.c (check_attr_test): Likewise.
6116         (write_test_expr): Likewise.
6117         * genconfig.c (walk_insn_part): Likewise.
6118         * genpreds.c (validate_exp): Adjust fall through comment.
6119         (needs_variable): Likewise.
6120         * gensupport.c (get_alternatives_number): Add FALLTHRU.
6121         (subst_dup): Likewise.
6122         * gimple-pretty-print.c (dump_gimple_assign): Likewise.
6123         * gimplify.c (gimplify_addr_expr): Adjust fall through comment.
6124         (gimplify_scan_omp_clauses): Add FALLTHRU.
6125         (goa_stabilize_expr): Likewise.
6126         * graphite-isl-ast-to-gimple.c (substitute_ssa_name): Adjust fall
6127         through comment.
6128         * hsa-gen.c (get_address_from_value): Likewise.
6129         * ipa-icf.c (sem_function::hash_stmt): Likewise.
6130         * ira.c (ira_setup_alts): Add FALLTHRU.
6131         * lra-eliminations.c (lra_eliminate_regs_1): Adjust fall through
6132         comment.
6133         * lto-streamer-out.c (lto_output_tree_ref): Add FALLTHRU.
6134         * opts.c (common_handle_option): Likewise.
6135         * read-rtl.c (read_rtx_code): Likewise.
6136         * real.c (round_for_format): Likewise.
6137         * recog.c (asm_operand_ok): Likewise.
6138         * reginfo.c (reg_scan_mark_refs): Adjust fall through comment.
6139         * reload1.c (set_label_offsets): Likewise.
6140         (eliminate_regs_1): Likewise.
6141         (reload_reg_reaches_end_p): Likewise.
6142         * rtlanal.c (commutative_operand_precedence): Add FALLTHRU.
6143         (rtx_cost): Likewise.
6144         * sched-rgn.c (is_exception_free): Likewise.
6145         * simplify-rtx.c (simplify_rtx): Adjust fall through comment.
6146         * stor-layout.c (int_mode_for_mode): Likewise.
6147         * toplev.c (print_to_asm_out_file): Likewise.
6148         (print_to_stderr): Likewise.
6149         * tree-cfg.c (gimple_verify_flow_info): Likewise.
6150         * tree-chrec.c (chrec_fold_plus_1): Add FALLTHRU.
6151         (chrec_fold_multiply): Likewise.
6152         (evolution_function_is_invariant_rec_p): Likewise.
6153         (for_each_scev_op): Likewise.
6154         * tree-data-ref.c (siv_subscript_p): Likewise.
6155         (get_references_in_stmt): Likewise.
6156         * tree.c (find_placeholder_in_expr): Adjust fall through comment.
6157         (substitute_in_expr): Likewise.
6158         (type_cache_hasher::equal): Likewise.
6159         (walk_type_fields): Likewise.
6160         * var-tracking.c (adjust_mems): Add FALLTHRU.
6161         (set_dv_changed): Adjust fall through comment.
6162         * varasm.c (default_function_section): Add FALLTHRU.
6164 2016-08-12  Marek Polacek  <polacek@redhat.com>
6166         PR c/7652
6167         * tree-complex.c (expand_complex_division): Add missing break.
6169 2016-08-12  Richard Biener  <rguenther@suse.de>
6171         * passes.c (execute_todo): Do not push/pop TV_TODO.
6172         (execute_one_ipa_transform_pass): Move timevar push/pop TODO execution.
6173         (execute_one_pass): Likewise.
6174         * common.opt (ftime-report-details): New switch.
6175         * doc/invoke.texi (ftime-report-details): Document.
6176         * timevar.h (timer::print_row): Adjust signature.
6177         (timer::all_zero): New static helper.
6178         (timer::child_map_t): New typedef.
6179         (timer::time_var_def): Add children field.
6180         * timevar.c (timer::named_items::print): Adjust.
6181         (timer::~timer): Free timevar recorded children.
6182         (timer::pop_internal): When -ftime-report-details record
6183         time spent in sub-timevars.
6184         (timer::print_row): Adjust.
6185         (timer::print): Print sub-timevar stats, use all_zero.
6186         * timevar.def (TV_TODO): Remove.
6188 2016-08-12  Richard Biener  <rguenther@suse.de>
6190         PR tree-optimization/72851
6191         * tree-ssa-propagate.c: Include cfganal.h.  Rewrite block and stmt
6192         worklists to use bitmaps indexed in execution order.
6193         (executable_blocks, cfg_blocks_num, cfg_blocks_tail, cfg_blocks_head,
6194         bb_in_list, interesting_ssa_edges, varying_ssa_edges): Remove.
6195         (cfg_blocks): Make a bitmap.
6196         (bb_to_cfg_order, cfg_order_to_bb, ssa_edge_worklist, uid_to_stmt):
6197         New globals.
6198         (cfg_blocks_empty_p): Adjust.
6199         (cfg_blocks_add): Likewise.
6200         (cfg_blocks_get): Likewise.
6201         (add_ssa_edge): Likewise.
6202         (add_control_edge): Likewise.
6203         (simulate_stmt): Likewise.
6204         (process_ssa_edge_worklist): Likewise.
6205         (simulate_block): Likewise.
6206         (ssa_prop_init): Compute PRE order and stmt UIDs.
6207         (ssa_prop_fini): Adjust.
6208         (ssa_propagate): Adjust.
6210 2016-08-12  Richard Biener  <rguenther@suse.de>
6212         * tree-vrp.c (vrp_visit_phi_node): Allow a last iteration if
6213         the currently executable edges have fixed ranges.  Always
6214         go through update_value_range.
6216 2016-08-12  Alexandre Oliva  <aoliva@redhat.com>
6218         PR debug/63240
6219         * langhooks-def.h
6220         (LANG_HOOKS_FUNCTION_DECL_EXPLICIT_P): Const_tree-ify.
6221         (LANG_HOOKS_FUNCTION_DECL_DELETED_P): Likewise.
6222         (LANG_HOOKS_FUNCTION_DECL_DEFAULTED): Set default.
6223         (LANG_HOOKS_DECLS): Add it.
6224         * langhooks.h (struct lang_hooks_for_decls): Add
6225         function_decl_defaulted.  Const_tree-ify
6226         function_decl_explicit_p and function_decl_deleted_p.
6227         * dwarf2out.c (gen_subprogram_die): Add DW_AT_defaulted
6228         attribute.  Add DW_AT_deleted instead of DW_AT_GNU_deleted,
6229         also at strict DWARF v5.
6231         PR debug/55641
6232         * dwarf2out.c (decl_quals): Don't map TREE_READONLY to
6233         TYPE_QUAL_CONST in reference-typed decls.
6235         PR debug/49366
6236         * dwarf2out.c (loc_list_from_tree_1): Expand some CONSTRUCTORs
6237         in DW_OP_pieces, just enough to handle pointers to member
6238         functions.
6239         (gen_remaining_tmpl_value_param_die_attribute): Use a location
6240         expression on DWARFv5 if a constant value doesn't work.
6242 2016-08-11  David Malcolm  <dmalcolm@redhat.com>
6244         * selftest-run-tests.c (selftest::run_tests): Call selftest_c_tests.
6245         * selftest.c (selftest::test_assertions): New function.
6246         (selftest::selftest_c_tests): New function.
6247         * selftest.h (selftest::selftest_c_tests): New declaration.
6249 2016-08-11  Richard Biener  <rguenther@suse.de>
6250             Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
6252         PR rtl-optimization/72855
6253         * df-core.c (df_verify): Turn off DF_VERIFY_SCHEDULED at end.
6255 2016-08-11  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
6257         PR target/72863
6258         * vsx.md (vsx_load_<mode>): For P8LE, emit swaps at expand time.
6259         (vsx_store_<mode>): Likewise.
6261 2015-08-11  H.J. Lu  <hongjiu.lu@intel.com>
6263         * config/i386/i386.c (timode_scalar_to_vector_candidate_p): Allow
6264         TImode CONST_WIDE_INT store.
6265         (timode_scalar_chain::convert_insn): Handle CONST_WIDE_INT store.
6267 2015-08-11  H.J. Lu  <hongjiu.lu@intel.com>
6269         * config/i386/i386.h (MOVE_MAX_PIECES): Use TImode in 64-bit
6270         mode if unaligned SSE load and store are optimal.
6272 2016-08-11  Bernd Edlinger  <bernd.edlinger@hotmail.de>
6274         PR tree-optimization/71083
6275         * tree-predcom.c (ref_at_iteration): Correctly align the
6276         reference type.
6278 2016-08-11  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
6280         * config/s390/s390-builtin-types.def: Add INT128 types.
6281         * config/s390/s390-builtins.def: Add INT128 variants for the add
6282         sub low-level builtins dealing with TImode.
6283         * config/s390/s390.c (s390_expand_builtin): Allow mode conversions
6284         via subreg when expanding a builtin.
6285         * config/s390/s390.md: Remove UNSPEC_VEC_ADDC_U128,
6286         UNSPEC_VEC_SUB_U128, and UNSPEC_VEC_SUBC_U128 constants.
6287         Fix comment.
6288         * config/s390/vecintrin.h: Adjust builtin names accordingly.
6289         * config/s390/vx-builtins.md ("vec_add_u128"): Remove expander.
6290         ("vec_addc<mode>", "vec_addc_u128"): Merge to
6291         "vacc<bhfgq>_<mode>".
6292         ("vec_adde_u128"): Rename to "vacq". Change mode to TImode.
6293         ("vec_addec_u128"): Rename to "vacccq". Change mode to TImode.
6294         ("vec_subc<mode>", "vec_subc_u128"): Merge to
6295         "vscbi<bhfgq>_<mode>".
6296         ("vec_sube_u128"): Rename to "vsbiq". Change mode to TImode.
6297         ("vec_subec_u128"): Rename to "vsbcbiq". Change mode to TImode.
6299 2016-08-11  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
6301         * config/s390/s390-builtins.def: Mark last operand of s390_vlvg*
6303 2016-08-11  Bin Cheng  <bin.cheng@arm.com>
6305         * config/aarch64/aarch64-simd.md (vcond<mode><mode>): Delete
6306         unused declaration.
6307         (vcond<v_cmp_mixed><mode>): Ditto.
6308         (vcondu<mode><mode>, vcondu<mode><v_cmp_mixed>): Ditto.
6310 2016-08-11  Bin Cheng  <bin.cheng@arm.com>
6312         * config/aarch64/aarch64-simd.md (vec_cmp<mode><v_cmp_result>): Init
6313         variable explicitly, also assert on it before use.
6315 2016-08-11  Richard Biener  <rguenther@suse.de>
6317         PR tree-optimization/72772
6318         * cfgloopmanip.c (create_preheader): Use split_edge if there
6319         is a single loop entry, avoiding degenerate PHIs.
6321 2016-08-11  Richard Biener  <rguenther@suse.de>
6323         * tree-ssa-threadbackward.c (pass_data_thread_jumps): Remove
6324         unconditional TODO_cleanup_cfg.
6325         (pass_thread_jumps::execute): Initialize loops, perform a CFG
6326         cleanup only if we threaded a jump.
6328 2016-08-11  Alan Modra  <amodra@gmail.com>
6330         PR target/71680
6331         * lra-constraints.c (simplify_operand_subreg): Allow subreg
6332         mode for mem when SLOW_UNALIGNED_ACCESS if inner mode is also
6333         slow.  Emit two reloads for slow mem case, first loading in
6334         fast innermode, then converting to required mode.
6336 2016-08-10  Kelvin Nilsen  <kelvin@gcc.gnu.org>
6338         * config/rs6000/altivec.h (vec_extract_exp): New macro.
6339         (vec_extract_sig): New macro.
6340         (vec_insert_exp): New macro.
6341         (vec_test_data_class): New macro.
6342         (scalar_extract_exp): New macro.
6343         (scalar_extract_sig): New macro.
6344         (scalar_insert_exp): New macro.
6345         (scalar_test_data_class): New macro.
6346         (scalar_test_neg): New macro.
6347         (scalar_cmp_exp_gt): New macro.
6348         (scalar_cmp_exp_lt): New macro.
6349         (scalar_cmp_exp_eq): New macro.
6350         (scalar_cmp_exp_unordered): New macro.
6351         * config/rs6000/predicates.md (u7bit_cint_operand): New predicate
6352         to enforce constraint that operand is a 7-bit unsigned literal.
6353         * config/rs6000/rs6000-builtin.def (BU_P9V_64BIT_VSX_1): New macro
6354         for power9 built-ins.
6355         (BU_P9V_VSX_2): Likewise.
6356         (BU_P9V_64BIT_VSX_2): Likewise.
6357         (VSEEDP): Add scalar extract exponent support.
6358         (VSEESP): Add scalar extract signature support.
6359         (VSTDCNDP): Add scalar test negative support.
6360         (VSTDCNSP): Likewise.
6361         (VSIEDP): Add scalar insert exponent support.
6362         (VSCEDPGT): Add scalar compare exponent greater than support.
6363         (VSCEDPLT): Add scalar compare exponent less than support.
6364         (VSCEDPEQ): Add scalar compare exponent test-for-equality support.
6365         (VSCEDPUO): Add scalar compare exponent test-for-unordered support.
6366         (VSTDCDP): Add scalar test data class support.
6367         (VSTDCSP): Likewise.
6368         (VSEEDP): Add overload support for scalar extract exponent
6369         operation.
6370         (VSESDP): Add overload support for scalar extract signature
6371         operation.
6372         (VSTDCN): Add overload support for scalar test negative
6373         operation.
6374         (VSTDCNDP): Add overload support for scalar test negative
6375         operation.
6376         (VSTDCNSP): Add overload support for scalar test negative
6377         operation.
6378         (VSIEDP): Add overload support for scalar insert exponent
6379         operation.
6380         (VSTDC): Add overload support for scalar test data class
6381         operation.
6382         (VSTDCDP): Add overload support for scalar test data class
6383         operation.
6384         (VSTDCSP): Add overload support for scalar test data class
6385         opreation.
6386         (VSCEDPGT): Add overload support for scalar compare exponent
6387         greater than operation.
6388         (VSCEDPLT): Add overload support for scalar compare exponent
6389         less than operation.
6390         (VSCEDPEQ): Add overload support for scalar compare exponent
6391         test-for-equality operation.
6392         (VSCEDPUO): Add overload support for scalar compare exponent
6393         test-for-unordered operation.
6394         (VEEDP): Add vector extract exponent support.
6395         (VEESP): Likewise.
6396         (VESDP): Add vector extract significand support.
6397         (VESSP): Likewise.
6398         (VIEDP): Add vector insert exponent support.
6399         (VIESP): Likewise.
6400         (VTDCDP): Add vector test data class support.
6401         (VTDCSP): Likewise.
6402         (VES): Add overload support for vector extract significand operation.
6403         (VESDP): Likewise.
6404         (VESSP): Likewise
6405         (VEE): Add overload support for vector extract exponent operation.
6406         (VEEDP): Likewise.
6407         (VEESP): Likewise.
6408         (VTDC): Add overload support for vector test data class operation.
6409         (VTDCDP): Likewise.
6410         (VTDCSP): Likewise.
6411         (VIE): Add overload support for vector insert exponent operation.
6412         (VIEDP): Likewise.
6413         (VIESP): Likewise.
6414         * config/rs6000/rs6000-c.c (altivec_overloaded_builtins): Add
6415         overloaded binary floating point functions.
6416         (altivec_resolve_overloaded_builtin): Improve error messages to
6417         distinguish between functions not supported in the current
6418         compiler configuration and functions that were invoked with an
6419         invalid parameter combination, and include the built-in function
6420         name in both error messages.
6421         * config/rs6000/rs6000-protos.h (rs6000_overloaded_builtin_name):
6422         New prototype.
6423         * config/rs6000/rs6000.c (rs6000_overloaded_builtin_name): New
6424         function.
6425         (rs6000_expand_binop_builtin): Add check to enforce that argument
6426         2 of the test data class operations is a 7-bit unsigned literal.
6427         (rs6000_invalid_builtin): Add code to issue an error message if a
6428         built-in function that requires the power9_vector and -m32
6429         command-line options is compiled without these options.
6430         * config/rs6000/vsx.md (UNSPEC_VSX_SXEXPDP): New value.
6431         (UNSPEC_VSX_SXSIGDP): New value.
6432         (UNSPEC_VSX_SXSIGPDP): New value.
6433         (UNSPEC_VSX_SIEXPDP): New value.
6434         (UNSPEC_VSX_SCMPEXPDP): New value.
6435         (UNSPEC_VSX_STSTDC): New value.
6436         (UNSPEC_VSX_VXEXP): New value.
6437         (UNSPEC_VSX_VXSIG): New value.
6438         (UNSPEC_VSX_VIEXP): New value.
6439         (UNSPEC_VSX_VTSTDC): New value.
6440         (xsxexpdp): New insn for scalar extract exponent.
6441         (xsxsigdp): New insn for scalar extract significand.
6442         (xsiexpdp): New insn for scalar insert exponent.
6443         (xscmpexpdp_<code>): New expansion for scalar compare exponents.
6444         (*xscmpexpdp): New insn for scalar compare exponents.
6445         (xststdc<Fvsx): New expansion for both single- and
6446         double-precision scalar test data class operations.
6447         (xststdcneg<Fvsx>): New expansion for both single- and
6448         double-precision scalar test for negative value operations.
6449         (*xststdc<Fvsx>): New insn for scalar test data class
6450         operation.
6451         (xvxexp<VSs>): New insn for single- and double-precision
6452         vector extract exponent operation.
6453         (xvxsig<VSs>): New insn for single- and double-precision
6454         vector extract significand operation.
6455         (xviexp<VSs>): New insn for single- and double-precision
6456         vector insert exponent operation.
6457         (xvtstdc<VSs>): New insn for single- and double-precision
6458         vector test data class operation.
6459         * doc/extend.texi (PowerPC AltiVec Built-in Functions): Document
6460         built-in functions to represent the Power9 binary floating-point
6461         support instructions.
6463 2016-08-10  bin cheng  <bin.cheng@arm.com>
6465         * doc/sourcebuild.texi (@item vect_cond_mixed): New item.
6467 2016-08-10  Alan Lawrence  <alan.lawrence@arm.com>
6468             Renlin Li  <renlin.li@arm.com>
6469             Bin Cheng  <bin.cheng@arm.com>
6471         * config/aarch64/iterators.md (V_cmp_mixed, v_cmp_mixed): New.
6472         * config/aarch64/aarch64-simd.md (<su><maxmin>v2di3): Call
6473         gen_vcondv2div2di instead of gen_aarch64_vcond_internalv2div2di.
6474         (aarch64_vcond_internal<mode><mode>): Delete pattern.
6475         (aarch64_vcond_internal<VDQF_COND:mode><VDQF:mode>): Ditto.
6476         (vcond<v_cmp_result><mode>): Ditto.
6477         (vcond<mode><mode>): Re-implement using vec_cmp and vcond_mask.
6478         (vcondu<mode><mode>): Ditto.
6479         (vcond<v_cmp_mixed><mode>): New pattern.
6480         (vcondu<mode><v_cmp_mixed>): New pattern.
6481         (aarch64_cmtst<mode>): Revise comment using aarch64_vcond instead
6482         of aarch64_vcond_internal.
6484 2016-08-10  Alan Lawrence  <alan.lawrence@arm.com>
6485             Renlin Li  <renlin.li@arm.com>
6486             Bin Cheng  <bin.cheng@arm.com>
6488         * config/aarch64/aarch64-simd.md (vec_cmp<mode><mode>): New pattern.
6489         (vec_cmp<mode><v_cmp_result>): New pattern.
6490         (vec_cmpu<mode><mode>): New pattern.
6491         (vcond_mask_<mode><v_cmp_result>): New pattern.
6493 2016-08-10  Yuri Rumyantsev  <ysrumyan@gmail.com>
6495         PR tree-optimization/71734
6496         * tree-ssa-loop-im.c (ref_indep_loop_p): Add new argument
6497         REF_LOOP, invoke ref_indep_loop_p_1.
6498         (outermost_indep_loop): Pass LOOP argumnet where REF was defined
6499         to ref_indep_loop_p.
6500         (ref_indep_loop_p_1): Fix commentary, add argument REF_LOOP,
6501         combine it with ref_indep_lopp_p_2, update SAFELEN if only REF
6502         is inside LOOP, do not cache dpendence value for loops with
6503         non-zero SAFELEN.
6504         (ref_indep_loop_p_2): Delete function.
6505         (can_sm_ref_p): Pass LOOP as additional argument to
6506         ref_indep_loop_p.
6508 2016-08-10  Michael Meissner  <meissner@linux.vnet.ibm.com>
6510         PR target/72853
6511         * config/rs6000/rs6000.c (mem_operand_ds_form): Add check for op
6512         being an offsettable address.
6514 2016-08-10  Martin Liska  <mliska@suse.cz>
6516         PR gcov-profile/58306
6517         * tree-profile.c (gimple_init_edge_profiler): Create conditionally
6518         atomic variants of profile update functions.
6520 2016-08-10  Martin Liska  <mliska@suse.cz>
6522         Cherry picked (and modified) from google-4_7 branch
6523         2012-12-26  Rong Xu  <xur@google.com>
6524         * common.opt (fprofile-update): Add new flag.
6525         * coretypes.h: Define enum profile_update.
6526         * doc/invoke.texi: Document -fprofile-update.
6527         * gcov-io.h: Declare GCOV_TYPE_ATOMIC_FETCH_ADD and
6528         GCOV_TYPE_ATOMIC_FETCH_ADD_FN.
6529         * tree-profile.c (gimple_init_edge_profiler): Generate
6530         also atomic profiler update.
6531         (gimple_gen_edge_profiler): Likewise.
6533 2016-08-10  David Malcolm  <dmalcolm@redhat.com>
6535         * toplev.c (finalize): Set aux_info_file, asm_out_file, and
6536         stack_usage_file to NULL after fclose calls.
6538 2016-08-10  Senthil Kumar Selvaraj  <senthil_kumar.selvaraj@atmel.com>
6540         PR target/71873
6541         * reload.c (push_reload): Compute subreg_in_class for
6542         subregs of constants and plus expressions. Remove special
6543         handling of SYMBOL_REFs.
6545 2016-08-10  Alan Modra  <amodra@gmail.com>
6547         PR target/71680
6548         * config/rs6000/rs6000.h (HARD_REGNO_CALLER_SAVE_MODE): Return
6549         SImode for TARGET_E500_DOUBLE when given SImode.
6551 2016-08-09  David Wohlferd  <dw@LimeGreenSocks.com>
6553         * config/i3836/avx512fintrin.h (_mm512_cvtsepi64_epi32): Remove
6554         unused variable __O.
6556 2016-08-09  Martin Liska  <mliska@suse.cz>
6558         * doc/gcov.texi: Change _gcov_dump to __gcov_dump and
6559         _gcov_reset to __gcov_reset.
6560         * doc/gcov-tool.texi: Fix typo.
6562 2016-08-09  Martin Liska  <mliska@suse.cz>
6564         * value-prof.c (gimple_divmod_values_to_profile): Do not
6565         instrument MOD histogram if a value is not a SSA name.
6567 2016-08-09  Martin Liska  <mliska@suse.cz>
6569         * value-prof.c (dump_histogram_value): Swap pow2 and non-pow2
6570         values.
6572 2016-08-09  Renlin Li  <renlin.li@arm.com>
6574         PR middle-end/64971
6575         * calls.c (prepare_call_address): Convert funexp to Pmode when
6576         necessary.
6577         * config/aarch64/aarch64.md (sibcall): Remove fix for PR 64971.
6578         (sibcall_value): Likewise.
6580 2016-08-09  Marek Polacek  <polacek@redhat.com>
6582         PR c/7652
6583         * cselib.c (cselib_expand_value_rtx_1): Add return.
6584         * gengtype.c (dbgprint_count_type_at): Likewise.
6585         * hsa-gen.c (gen_hsa_insn_for_internal_fn_call): Likewise.
6586         * reg-stack.c (get_true_reg): Restructure to avoid fallthrough warning.
6588 2016-08-09  Martin Jambor  <mjambor@suse.cz>
6590         PR ipa/71981
6591         * ipa-polymorphic-call.c (get_dynamic_type): Bail out gracefully
6592         if instance is a MEM_REF.
6594 2016-08-09  Uros Bizjak  <ubizjak@gmail.com>
6596         PR target/72843
6597         * config/i386/i386.md (*movtf_internal): Use
6598         lra_in_progress || reload_completed instead of !can_create_pseudo_p
6599         in the insn constraint.
6600         (*movxf_internal): Ditto.
6601         (*movdf_internal): Ditto.
6602         (*movsf_internal): Ditto.
6604 2016-08-09  Bin Cheng  <bin.cheng@arm.com>
6606         PR tree-optimization/72772
6607         * tree-ssa-loop-niter.c (loop_exits_before_overflow): Check equality
6608         for expanded base.
6610 2016-08-09  Bin Cheng  <bin.cheng@arm.com>
6612         PR tree-optimization/72772
6613         * tree-ssa-loop-niter.h (simplify_using_initial_conditions): Delete
6614         parameter STOP.
6615         * tree-ssa-loop-niter.c (tree_simplify_using_condition_1): Delete
6616         parameter STOP and update calls.  Move expand_simple_operations
6617         function call from here...
6618         (simplify_using_initial_conditions): ...to here.  Delete parameter
6619         STOP.
6620         (tree_simplify_using_condition): Delete parameter STOP.
6621         * tree-scalar-evolution.c (simple_iv_with_niters): Update call to
6622         simplify_using_initial_conditions.
6624 2016-08-09  Matthew Fortune  <matthew.fortune@imgtec.com>
6626         PR c/65345
6627         * config/mips/mips.c (mips_atomic_assign_expand_fenv):
6628         Use create_tmp_var_raw instead of create_tmp_var.
6630 2016-08-09  Richard Biener  <rguenther@suse.de>
6632         * tree-ssa-threadbackward.c (profitable_jump_thread_path):
6633         Treat same SSA names related.
6635 2016-08-09  Jakub Jelinek  <jakub@redhat.com>
6637         PR tree-optimization/72824
6638         * tree-loop-distribution.c (const_with_all_bytes_same): Verify
6639         real_zerop is not negative.
6641 2016-08-09  Richard Biener  <rguenther@suse.de>
6643         PR tree-optimization/71802
6644         * tree-cfgcleanup.c (cleanup_tree_cfg_bb): Make sure to catch
6645         all merge opportunities with the predecessor.
6647 2016-08-09  Richard Biener  <rguenther@suse.de>
6649         PR ipa/68273
6650         * ipa-prop.c (ipa_modify_formal_parameters): Build
6651         parameter types with natural alignment also for the
6652         over-aligned case.
6654 2016-08-08  Andi Kleen  <ak@linux.intel.com>
6656         * tree-vrp.c (get_single_symbol): Always initialize inv and neg.
6658 2016-08-08  David Malcolm  <dmalcolm@redhat.com>
6660         PR c/64955
6661         * langhooks-def.h (LANG_HOOKS_RUN_LANG_SELFTESTS): New default
6662         do-nothing langhook.
6663         (LANG_HOOKS_INITIALIZER): Add LANG_HOOKS_RUN_LANG_SELFTESTS.
6664         * langhooks.h (struct lang_hooks): Add run_lang_selftests.
6665         * selftest-run-tests.c: Include "tree.h" and "langhooks.h".
6666         (selftest::run_tests): Call lang_hooks.run_lang_selftests.
6668 2016-08-08  David Malcolm  <dmalcolm@redhat.com>
6670         PR bootstrap/72844
6671         * input.c: Ensure that HAVE_ICONV is defined.
6673 2016-08-08  Jakub Jelinek  <jakub@redhat.com>
6675         PR middle-end/72781
6676         * omp-low.c (lower_lastprivate_clauses): Set TREE_NO_WARNING on the
6677         private vars for lastprivate and for linear iterator.
6679         PR middle-end/68762
6680         * omp-simd-clone.c: Include varasm.h.
6681         (simd_clone_create): Copy over DECL_COMDAT, DECL_WEAK, DECL_EXTERNAL,
6682         DECL_VISIBILITY, DECL_VISIBILITY_SPECIFIED, DECL_DLLIMPORT_P and for
6683         DECL_ONE_ONLY call make_decl_one_only.  Fix up spelling in comment and
6684         update function name.
6686 2016-07-29  Pitchumani Sivanupandi  <pitchumani.s@atmel.com>
6688         * config/avr/driver-avr.c (specfiles_doc_url): Remove.
6689         (avr_diagnose_devicespecs_error): Remove.
6690         (avr_devicespecs_file): Remove composing absolute path for specfile
6691         and its verbose info. Remove conditions to check specs-file,
6693 2016-08-08  Jakub Jelinek  <jakub@redhat.com>
6695         PR rtl-optimization/72821
6696         * lra-spills.c (regno_in_use_p): Don't use BLOCK_FOR_INSN on barriers,
6697         just return false for them.
6699 2016-08-08  Alan Modra  <amodra@gmail.com>
6701         PR target/72771
6702         * config/rs6000/rs6000.c (toc_relative_expr_p): Allow (lo_sum (high))
6703         toc refs created during reload.  Update function comment.
6705 2016-08-08  Alan Modra  <amodra@gmail.com>
6707         PR target/72802
6708         * config/rs6000/rs6000.md (mov<mode>_hardfloat): Sort
6709         alternatives.  Put loads first, then stores, and reg/reg moves
6710         within same class later.  Delete attr length.
6712 2016-08-08  Alan Modra  <amodra@gmail.com>
6714         PR target/72802
6715         * config/rs6000/rs6000.c (mem_operand_gpr): Remove vsx dform test.
6716         (mem_operand_ds_form): New predicate.
6717         * config/rs6000/rs6000-protos.h (mem_operand_ds_form): Declare.
6718         * config/rs6000/constraints.md (wY): Use mem_operand_df_form.
6719         * config/rs6000/predicates.md (offsettable_mem_14bit_operand): Delete.
6720         * config/rs6000/rs6000.md (f32_lm2, f32_sm2): Use wY for SF.
6721         (extendsfdf2_fpr): Replace o constraint with wY.
6723 2016-08-07  Jan Hubicka  <hubicka@ucw.cz>
6725         * tree-ssa-threadbackward.c: Include tree-inline.h
6726         (profitable_jump_thread_path): Use estimate_num_insns to estimate
6727         size of copied block; for cold paths reduce duplication.
6728         (find_jump_threads_backwards): Remove redundant tests.
6729         (pass_thread_jumps::gate): Enable for -Os.
6731 2016-08-07  Jakub Jelinek  <jakub@redhat.com>
6733         PR c/72816
6734         * stor-layout.c (layout_decl): Fix up formatting.
6735         (relayout_decl): Allow DECL to be FIELD_DECL.
6737 2016-08-07  Alan Modra  <amodra@gmail.com>
6739         * config/rs6000/rs6000.md (fix_trunc<mode>si2): Fix mode of reg.
6741 2016-08-07  Kugan Vivekanandarajah  <kuganv@linaro.org>
6743         * data-streamer-in.c (streamer_read_wide_int): New.
6744         (streamer_read_widest_int): Renamed function.
6745         * data-streamer-out.c (streamer_write_wide_int): New
6746         (streamer_write_widest_int): Renamed function.
6747         * lto-streamer-in.c (streamer_read_wi): Renamed and moved to
6748         data-stream-in.c.
6749         (input_cfg): Call renamed function.
6750         * lto-streamer-out.c (streamer_write_wi): Renamed and moved to
6751         data-stream-out.c.
6752         (output_cfg): Call renamed function.
6753         * data-streamer.h: Add declarations.
6755 2016-08-08  Prathamesh Kulkarni  <prathamesh.kulkarni@linaro.org>
6757         * tree-ssa-ccp.c (extend_mask): New param sgn.
6758         Remove ORing with wi::mask.
6759         (get_default_value): Adjust call to extend_mask to pass sign.
6760         (evaluate_stmt): Likewise.
6762 2016-08-06  Jakub Jelinek  <jakub@redhat.com>
6764         * gcov.c (handle_cycle): Use INTTYPE_MAXIMUM (int64_t) instead of
6765         INT64_MAX.
6767 2016-08-06  Prathamesh Kulkarni  <prathamesh.kulkarni@linaro.org>
6769         * match.pd ((intptr_t) x eq/ne CST to x eq/ne (typeof x) cst): Disable
6770         transform if operand's type is pointer to function or method.
6772 2016-08-05  Patrick Palka  <ppalka@gcc.gnu.org>
6774         PR tree-optimization/18046
6775         * tree-ssa-threadedge.c: Include cfganal.h.
6776         (simplify_control_statement_condition): If simplifying a
6777         GIMPLE_SWITCH, replace the index operand of the GIMPLE_SWITCH
6778         with the dominating ASSERT_EXPR before handing it off to VRP.
6779         Mention that a CASE_LABEL_EXPR may be returned.
6780         (thread_around_empty_blocks): Adjust to handle
6781         simplify_control_statement_condition() returning a
6782         CASE_LABEL_EXPR.
6783         (thread_through_normal_block): Likewise.
6784         * tree-vrp.c (simplify_stmt_for_jump_threading): Simplify
6785         a switch statement by trying to determine which case label
6786         will be taken.
6788 2016-08-05  Vladimir Makarov  <vmakarov@redhat.com>
6790         PR rtl-optimization/69847
6791         * lra-constraints.c (process_invariant_for_inheritance): Save
6792         pattern instead of src.
6793         (remove_inheritance_pseudos): Use the pattern.  Add assert.
6795 2016-08-05  David Malcolm  <dmalcolm@redhat.com>
6797         * input.c (string_concat::string_concat): New constructor.
6798         (string_concat_db::string_concat_db): New constructor.
6799         (string_concat_db::record_string_concatenation): New method.
6800         (string_concat_db::get_string_concatenation): New method.
6801         (string_concat_db::get_key_loc): New method.
6802         (class auto_cpp_string_vec): New class.
6803         (get_substring_ranges_for_loc): New function.
6804         (get_source_range_for_substring): New function.
6805         (get_num_source_ranges_for_substring): New function.
6806         (class selftest::lexer_test_options): New class.
6807         (struct selftest::lexer_test): New struct.
6808         (class selftest::ebcdic_execution_charset): New class.
6809         (selftest::ebcdic_execution_charset::s_singleton): New variable.
6810         (selftest::lexer_test::lexer_test): New constructor.
6811         (selftest::lexer_test::~lexer_test): New destructor.
6812         (selftest::lexer_test::get_token): New method.
6813         (selftest::assert_char_at_range): New function.
6814         (ASSERT_CHAR_AT_RANGE): New macro.
6815         (selftest::assert_num_substring_ranges): New function.
6816         (ASSERT_NUM_SUBSTRING_RANGES): New macro.
6817         (selftest::assert_has_no_substring_ranges): New function.
6818         (ASSERT_HAS_NO_SUBSTRING_RANGES): New macro.
6819         (selftest::test_lexer_string_locations_simple): New function.
6820         (selftest::test_lexer_string_locations_ebcdic): New function.
6821         (selftest::test_lexer_string_locations_hex): New function.
6822         (selftest::test_lexer_string_locations_oct): New function.
6823         (selftest::test_lexer_string_locations_letter_escape_1): New function.
6824         (selftest::test_lexer_string_locations_letter_escape_2): New function.
6825         (selftest::test_lexer_string_locations_ucn4): New function.
6826         (selftest::test_lexer_string_locations_ucn8): New function.
6827         (selftest::uint32_from_big_endian): New function.
6828         (selftest::test_lexer_string_locations_wide_string): New function.
6829         (selftest::uint16_from_big_endian): New function.
6830         (selftest::test_lexer_string_locations_string16): New function.
6831         (selftest::test_lexer_string_locations_string32): New function.
6832         (selftest::test_lexer_string_locations_u8): New function.
6833         (selftest::test_lexer_string_locations_utf8_source): New function.
6834         (selftest::test_lexer_string_locations_concatenation_1): New
6835         function.
6836         (selftest::test_lexer_string_locations_concatenation_2): New
6837         function.
6838         (selftest::test_lexer_string_locations_concatenation_3): New
6839         function.
6840         (selftest::test_lexer_string_locations_macro): New function.
6841         (selftest::test_lexer_string_locations_stringified_macro_argument):
6842         New function.
6843         (selftest::test_lexer_string_locations_non_string): New function.
6844         (selftest::test_lexer_string_locations_long_line): New function.
6845         (selftest::test_lexer_char_constants): New function.
6846         (selftest::input_c_tests): Call the new test functions once per
6847         case within the line_table test matrix.
6848         * input.h (struct string_concat): New struct.
6849         (struct location_hash): New struct.
6850         (class string_concat_db): New class.
6851         * substring-locations.h: New header.
6853 2016-08-05  Patrick Palka  <ppalka@gcc.gnu.org>
6855         PR tree-optimization/72810
6856         * tree-vrp.c (simplify_switch_using_ranges): Avoid changing
6857         the type of the case labels when truncating.
6859 2016-08-05  James Greenhalgh  <james.greenhalgh@arm.com>
6861         PR Target/72819
6862         * config/aarch64/aarch64.h (aarch64_fp16_type_node): Declare.
6863         (aarch64_fp16_ptr_type_node): Likewise.
6864         * config/aarch64/aarch64-simd-builtins.c
6865         (aarch64_fp16_ptr_type_node): Define.
6866         (aarch64_init_fp16_types): New, refactored out of...
6867         (aarch64_init_builtins): ...here, update to call
6868         aarch64_init_fp16_types.
6869         * config/aarch64/aarch64.c (aarch64_gimplify_va_arg_expr): Handle
6870         HFmode.
6871         (aapcs_vfp_sub_candidate): Likewise.
6873 2016-08-05  Martin Liska  <mliska@suse.cz>
6874             Joshua Cranmer  <Pidgeot18@gmail.com>
6876         * gcov.c (line_t::has_block): New function.
6877         (enum loop_type): New enum.
6878         (handle_cycle): New function.
6879         (unblock): Likewise.
6880         (circuit): Likewise.
6881         (get_cycles_count): Likewise.
6882         (accumulate_line_counts): Use new loop detection algorithm.
6884 2016-08-05  Martin Liska  <mliska@suse.cz>
6886         * gcov.c (output_intermediate_file): Rename
6887         function_info::line_next to next_file_fn.
6888         (process_file): Likewise.
6889         (read_graph_file): Likewise.
6890         (accumulate_line_counts): Likewise.
6891         (output_lines): Likewise.
6893 2016-08-05  Richard Biener  <rguenther@suse.de>
6895         * tree-ssa-threadupdate.c (thread_block_1): Remove unnecessary
6896         restriction on threading to a loop header.
6898 2016-08-05  Richard Biener  <rguenther@suse.de>
6900         * tree-cfgcleanup.c (tree_forwarder_block_p): Use bb_loop_header_p.
6901         * cfghooks.c (force_nonfallthru): If we ended up splitting a latch
6902         adjust loop info accordingly.
6904 2016-08-05  Kugan Vivekanandarajah  <kuganv@linaro.org>
6906         * tree-vrp.c (extract_range_basic): Check cfun->after_inlining
6907         before folding call to __builtin_constant_p with parameters to false.
6909 2016-08-05  Alan Modra  <amodra@gmail.com>
6911         * config/rs6000/rs6000.c (rs6000_preferred_reload_class): Delete
6912         code accidentally committed 2016-05-02 providing class when given
6913         NO_REGS.
6915 2016-08-04  Patrick Palka  <ppalka@gcc.gnu.org>
6917         * tree-vrp.c (simplify_switch_using_ranges): Try to truncate
6918         the case label ranges that partially overlap with OP's value
6919         range.
6921 2016-08-04  Uros Bizjak  <ubizjak@gmail.com>
6923         PR target/72805
6924         * config/i386/avx512fintrin.h (_mm512_cmp_epi32_mask) [!__OPTIMIZE__]:
6925         Cast builtin function result to __mmask16 instead of __mmask8.
6926         (_mm512_cmp_epu32_mask) [!__OPTIMIZE__]: Ditto.
6927         (_mm512_mask_cmp_epi32_mask) [!__OPTIMIZE__]: Ditto.
6928         (_mm512_mask_cmp_epu32_mask) [!__OPTIMIZE__]: Ditto.
6930 2016-08-04  David Malcolm  <dmalcolm@redhat.com>
6932         * selftest.h (ASSERT_TRUE): Reimplement in terms of...
6933         (ASSERT_TRUE_AT): New macro.
6934         (ASSERT_FALSE): Reimplement in terms of...
6935         (ASSERT_FALSE_AT): New macro.
6936         (ASSERT_STREQ_AT): Fix typo in comment.
6938 2016-08-04  Patrick Palka  <ppalka@gcc.gnu.org>
6940         * gimple.c (preprocess_case_label_vec_for_gimple): When the case
6941         labels are exhaustive, designate the label with the widest
6942         range to be the default label.
6944 2016-08-04  Andrew Pinski  <apinski@cavium.com>
6946         * config/aarch64/aarch64.c (thunderx_vector_cost): New variable.
6947         (thunderx_tunings): Use thunderx_vector_cost instead of
6948         generic_vector_cost.
6950 2016-08-04  Martin Liska  <mliska@suse.cz>
6952         * gcov.c (main): Fix GNU coding style.
6953         (output_intermediate_file): Likewise.
6954         (process_file): Likewise.
6955         (generate_results): Likewise.
6956         (release_structures): Likewise.
6957         (create_file_names): Likewise.
6958         (find_source): Likewise.
6959         (read_graph_file): Likewise.
6960         (find_exception_blocks): Likewise.
6961         (canonicalize_name): Likewise.
6962         (make_gcov_file_name): Likewise.
6963         (mangle_name): Likewise.
6964         (accumulate_line_counts): Likewise.
6965         (output_branch_count): Likewise.
6966         (read_line): Likewise.
6968 2016-08-04  Bernd Edlinger  <bernd.edlinger@hotmail.de>
6970         PR rtl-optimization/71779
6971         * emit-rtl.c (set_reg_attrs_from_value): Only propagate REG_POINTER,
6972         if the value was sign-extended according to POINTERS_EXTEND_UNSIGNED
6973         or if it was truncated.
6975         PR rtl-optimization/70903
6976         * cse.c (cse_insn): If DEST is a paradoxical SUBREG, don't record DEST.
6978 2016-08-04  Kugan Vivekanandarajah  <kuganv@linaro.org>
6980         * tree-inline.c (remap_ssa_name): Check for POINTER_TYPE_P before
6981         accessing SSA_NAME_PTR_INFO.
6983 2016-08-04  Georg-Johann Lay  <avr@gjlay.de>
6985         PR 70677
6986         * common/config/avr/avr-common.c (avr_option_optimization_table)
6987         [OPT_LEVELS_ALL]: Turn off -fcaller-saves.
6989 2016-08-04  Georg-Johann Lay  <avr@gjlay.de>
6991         PR 55181
6992         * config/avr/avr.md: New pattern to work around do_store_flag
6993         generating shift instructions for bit extractions.
6995 2016-08-04  Kugan Vivekanandarajah  <kuganv@linaro.org>
6997         * tree-vrp.c (set_value_range): Use vrp_equiv_obstack with
6998         BITMAP_ALLOC.
6999         (add_equivalence): Likewise.
7000         (get_value_range): Allocate value range with vrp_value_range_pool.
7001         (vrp_initialize): Initialize vrp_equiv_obstack for equiv allocation.
7002         (vrp_finalize): Relase vrp_equiv_obstack and vrp_value_range_pool.
7004 2016-08-03  Peter Bergner  <bergner@vnet.ibm.com>
7006         * config/rs6000/rs6000.c (rs6000_option_override_internal): Make LRA
7007         the default for the rs6000 port.
7009 2016-08-03  Bernd Edlinger  <bernd.edlinger@hotmail.de>
7011         PR middle-end/71876
7012         * calls.c (special_function_p): Remove special handling of
7013         "setjmp_syscall", "qsetjmp", "longjmp", "siglongjmp" and the
7014         prefix "__x".  Recognize "savectx", "vfork" and "getcontext" only
7015         without prefix.  Remove potentially unsafe ECF_LEAF and ECF_NORETURN.
7017 2016-08-03  Vladimir Makarov  <vmakarov@redhat.com>
7019         PR middle-end/72778
7020         * lra-spills.c (regno_in_use_p): Check bb and regno modification.
7021         Don't stop on regular insns.
7023 2016-08-03  Nathan Sidwell  <nathan@codesourcery.com>
7025         * config/nvptx/nvptx.c (nvptx_declare_function_name): Round frame
7026         size to DImode boundary.
7027         (nvptx_propagate): Likewise.
7029 2016-08-03  Alan Modra  <amodra@gmail.com>
7031         * config/rs6000/rs6000.h (SLOW_UNALIGNED_ACCESS): Make scalar
7032         float access depend on TARGET_EFFICIENT_UNALIGNED_VSX.
7033         * config/rs6000/rs6000.opt (-mefficient-unaligned-vsx): Renamed
7034         from -mefficient-unaligned-vector.  Note that this affects fp too.
7036 2016-08-03  Alan Modra  <amodra@gmail.com>
7038         * config/rs6000/rs6000.c (rs6000_rtx_costs): Make unaligned mem
7039         cost more.
7041 2016-08-03  Alan Modra  <amodra@gmail.com>
7043         * config/rs6000/rs6000.md (fix_trunc<mode>si2): Force source operand
7044         to a reg.  Localize vars.
7046 2016-08-03  Alan Modra  <amodra@gmail.com>
7048         * config/rs6000/rs6000.opt: Remove negatives from help strings
7049         and comments.
7051 2016-08-03  Alan Modra  <amodra@gmail.com>
7053         * config/rs6000/rs6000.c (rs6000_secondary_reload_direct_move):
7054         Delete duplicated code.
7056 2016-08-02  Vladimir Makarov  <vmakarov@redhat.com>
7058         PR middle-end/72778
7059         * lra-spills.c (regno_in_use_p): New.
7060         (lra_final_code_change): Use it.
7062 2016-08-02  Vladimir Makarov  <vmakarov@redhat.com>
7064         PR rtl-optimization/69847
7065         * lra-int.h (struct lra-reg): Use restore_rtx instead of
7066         restore_regno.
7067         (lra_rtx_hash): New.
7068         * lra.c (initialize_lra_reg_info_element): Use restore_rtx instead
7069         of restore_regno.
7070         (lra_rtx_hash): Rename and move lra-remat.c::rtx_hash.
7071         * lra-remat.c (rtx_hash): Rename and Move to lra.c.
7072         * lra-spills.c (lra_final_code_change): Don't delete insn when the
7073         next insn is USE with the same reg as the current insn source.
7074         * lra-constraints.c (curr_insn_transform): Use restore_rtx instead
7075         of restore_regno.
7076         (lra_constraints_init): Call initiate_invariants.
7077         (lra_constraints_finish): Call finish_invariants.
7078         (struct invariant, invariant_t, invariant_ptr_t): New.
7079         (const_invariant_ptr_t, invariants, invariants_pool): New.
7080         (invariant_table, invariant_hash, invariant_eq_p): New.
7081         (insert_invariant, initiate_invariants, finish_invariants): New.
7082         (clear_invariants, invalid_invariant_regs): New.
7083         (inherit_reload_reg, split_reg, fix_bb_live_info): Use restore_rtx
7084         instead of restore_regno.
7085         (invariant_p, process_invariant_for_inheritance): New.
7086         (inherit_in_ebb): Implement invariant inheritance.
7087         (lra_inheritance): Initialize and finalize invalid_invariant_regs.
7088         (remove_inheritance_pseudos): Implement undoing invariant
7089         inheritance.
7090         (undo_optional_reloads, lra_undo_inheritance): Use restore_rtx
7091         instead of restore_regno.
7092         * lra-assigns.c (regno_live_length): New.
7093         (reload_pseudo_compare_func): Use regno_live_length.
7094         (assign_by_spills): Use restore_rtx instead of restore_regno.
7095         (lra_assign): Ditto.  Initiate regno_live_length.
7097 2016-02-08  James Greenhalgh  <james.greenhalgh@arm.com>
7099         * config/aarch64/arm_neon.h (vminnm_f64): Add back missing 'f' from
7100         __builtin_aarch64_fmindf.
7102 2016-08-02  Bin Cheng  <bin.cheng@arm.com>
7104         PR tree-optimization/34114
7105         * tree-ssa-loop-niter.c (number_of_iterations_ne): Prove no-overflow
7106         information for more control IVs.
7108 2016-08-02  Bin Cheng  <bin.cheng@arm.com>
7110         PR tree-optimization/34114
7111         * fold-const.c (multiple_of_p): Improve MULT_EXPR, PLUS_EXPR,
7112         PLUS_EXPR case.  Handle SSA_NAME case.
7114 2016-08-02  Tamar Christina  <tamar.christina@arm.com>
7116         * config/aarch64/aarch64-simd-builtins.def
7117         (__builtin_aarch64_fmindf): Change BUILTIN_VDQF to BUILTIN_VDQF_DF.
7118         (__builtin_aarch64_fmaxdf): Likewise.
7119         (__builtin_aarch64_smin_nandf): Likewise.
7120         (__builtin_aarch64_smax_nandf): Likewise.
7121         * config/aarch64/aarch64-simd.md (<fmaxmin><mode>3): Remove.
7122         * config/aarch64/aarch64.md (<fmaxmin><mode>3): Rename to...
7123         (<fmaxmin><mode>3): ...this.
7124         * config/aarch64/arm_neon.h (vmaxnm_f64): New.
7125         (vminnm_f64): Likewise.
7126         (vmin_f64): Likewise.
7127         (vmax_f64): Likewise.
7128         * config/aarch64/iterators.md (FMAXMIN): Merge with...
7129         (FMAXMIN_UNS): ...this.
7130         (fmaxmin): Merged with
7131         (fmaxmin_op): ...this...
7132         (maxmin_uns_op): ...in to this.
7134 2016-08-01  Michael Meissner  <meissner@linux.vnet.ibm.com>
7136         * config/rs6000/rs6000-c.c (altivec_resolve_overloaded_builtin):
7137         Add support for vec_extract on vector float, vector int, vector
7138         short, and vector char vector types.
7139         * config/rs6000/rs6000.c (rs6000_expand_vector_extract): Add
7140         vector float, vector int, vector short, and vector char
7141         optimizations on 64-bit ISA 2.07 systems for both constant and
7142         variable element numbers.
7143         (rs6000_split_vec_extract_var): Likewise.
7144         * config/rs6000/vsx.md (vsx_xscvspdp_scalar2): Allow SFmode to be
7145         Altivec registers on ISA 2.07 and above.
7146         (vsx_extract_v4sf): Delete alternative that hard coded element 0,
7147         which never was matched due to the split occuring before register
7148         allocation (and the code would not have worked on little endian
7149         systems if it did match).  Allow extracts to go to the Altivec
7150         registers if ISA 2.07 (power8).  Change from using "" around the
7151         C++ code to using {}'s.
7152         (vsx_extract_v4sf_<mode>_load): New insn to optimize vector float
7153         vec_extracts when the vector is in memory.
7154         (vsx_extract_v4sf_var): New insn to optimize vector float
7155         vec_extracts when the element number is variable on 64-bit ISA
7156         2.07 systems.
7157         (vsx_extract_<mode>, VSX_EXTRACT_I iterator): Add optimizations
7158         for 64-bit ISA 2.07 as well as ISA 3.0.
7159         (vsx_extract_<mode>_p9, VSX_EXTRACT_I iterator): Likewise.
7160         (vsx_extract_<mode>_p8, VSX_EXTRACT_I iterator): Likewise.
7161         (vsx_extract_<mode>_load, VSX_EXTRACT_I iterator): New insn to
7162         optimize vector int, vector short, and vector char vec_extracts
7163         when the vector is in memory.
7164         (vsx_extract_<mode>_var, VSX_EXTRACT_I iterator): New insn to
7165         optimize vector int, vector short, and vector char vec_extracts
7166         when the element number is variable.
7168 2016-08-01  Georg-Johann Lay  <avr@gjlay.de>
7170         PR target/71948
7171         * config/avr/avr.c (AVR_SYMBOL_FLAG_TINY_PM): Use a value that
7172         does not overlap with other symbol flags.
7174 2016-08-01  Wilco Dijkstra  <wdijkstr@arm.com>
7176         * config/aarch64/aarch64.h (aarch64_frame):
7177         Remove padding0 and hardfp_offset.  Add locals_offset,
7178         initial_adjust, callee_adjust, callee_offset and final_adjust.
7179         * config/aarch64/aarch64.c (aarch64_layout_frame):
7180         Remove unused padding0 and hardfp_offset initializations.
7181         Choose frame layout and set frame variables accordingly.
7182         Use INVALID_REGNUM instead of FIRST_PSEUDO_REGISTER.
7183         (aarch64_push_regs): Use INVALID_REGNUM, not FIRST_PSEUDO_REGISTER.
7184         (aarch64_pop_regs): Likewise.
7185         (aarch64_expand_prologue): Remove all decision code, just emit
7186         prolog according to frame variables.
7187         (aarch64_expand_epilogue): Remove all decision code, just emit
7188         epilog according to frame variables.
7189         (aarch64_initial_elimination_offset): Use offset to local/arg area.
7191 2015-08-01  H.J. Lu  <hongjiu.lu@intel.com>
7193         PR target/72748
7194         * config/i386/i386.c (timode_scalar_chain::convert_insn): Call
7195         fix_debug_reg_uses after changing source register mode to
7196         V1TImode if source register is undefined.
7198 2015-08-01  Alan Hayward  <alan.hayward@arm.com>
7200         PR tree-optimization/71818
7201         * tree-vect-loop-manip.c (vect_can_advance_ivs_p): Don't advance IVs
7202         with non invariant evolutions
7204 2016-08-01  Georg-Johann Lay  <avr@gjlay.de>
7206         PR target/72767
7207         * config/avr/avr.md (length) [branch]: Correct insn length
7208         attribute for forward branches.
7210 2016-08-01  Georg-Johann Lay  <avr@gjlay.de>
7212         * doc/extend.texi (AVR Built-in Functions): Document
7213         __builtin_avr_nops.
7214         * config/avr/builtins.def (NOPS): New.
7215         * config/avr/avr.c (avr_expand_nops): New static function.
7216         (avr_expand_builtin): Use it to handle AVR_BUILTIN_NOPS.
7218 2016-08-01  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
7220         * config/aarch64/aarch64.c (aarch64_classify_address): Use DImode when
7221         performing aarch64_offset_7bit_signed_scaled_p check for TImode LDP/STP
7222         addresses.
7224 2016-08-01  Virendra Pathak  <virendra.pathak@broadcom.com>
7226         * config/aarch64/aarch64.c (vulcan_tunings): Update
7227         vulcan L1 cache_line_size.
7229 2016-07-30  Michael Meissner  <meissner@linux.vnet.ibm.com>
7231         * config/rs6000/rs6000-protos.h (rs6000_adjust_vec_address): New
7232         function that takes a vector memory address, a hard register, an
7233         element number and a temporary base register, and recreates an
7234         address that points to the appropriate element within the vector.
7235         * config/rs6000/rs6000.c (rs6000_adjust_vec_address): Likewise.
7236         (rs6000_split_vec_extract_var): Add support for the target of a
7237         vec_extract with variable element number being a scalar memory
7238         location.
7239         (rtx_is_swappable_p): VLSO insns (UNSPEC_VSX_VSLOW) are not
7240         swappable.
7241         * config/rs6000/vsx.md (vsx_extract_<mode>_load): Replace
7242         vsx_extract_<mode>_load insn with a new insn that optimizes
7243         storing either element to a memory location, using scratch
7244         registers to pick apart the vector and reconstruct the address.
7245         (vsx_extract_<P:mode>_<VSX_D:mode>_load): Likewise.
7246         (vsx_extract_<mode>_store): Rework alternatives to more correctly
7247         support Altivec registers.  Add support for ISA 3.0 Altivec d-form
7248         store instruction.
7249         (vsx_extract_<mode>_var): Add support for extracting a variable
7250         element number from memory.
7252 2016-07-29  Georg-Johann Lay  <avr@gjlay.de>
7254         * config/avr/avr.c (avr_out_compare): Use const0_rtx instead of 0
7255         when testing for compares against constants of the form 0xabab.
7257 2016-07-29  Bin Cheng  <bin.cheng@arm.com>
7259         PR tree-optimization/57558
7260         * tree-vect-loop-manip.c (vect_create_cond_for_niters_checks): New
7261         function.
7262         (vect_loop_versioning): Support versioning with niter assumptions.
7263         * tree-vect-loop.c (tree-ssa-loop.h): Include header file.
7264         (vect_get_loop_niters): New parameter.  Reimplement to support
7265         assumptions in loop niter info.
7266         (vect_analyze_loop_form_1, vect_analyze_loop_form): Ditto.
7267         (new_loop_vec_info): Init LOOP_VINFO_NITERS_ASSUMPTIONS.
7268         (vect_estimate_min_profitable_iters): Use LOOP_REQUIRES_VERSIONING.
7269         Support loop versioning for niters.
7270         * tree-vectorizer.c (tree-ssa-loop-niter.h): Include header file.
7271         (vect_free_loop_info_assumptions): New function.
7272         (vectorize_loops): Free loop niter info for loops with flag
7273         LOOP_F_ASSUMPTIONS set if vectorization failed.
7274         * tree-vectorizer.h (struct _loop_vec_info): New field
7275         num_iters_assumptions.
7276         (LOOP_VINFO_NITERS_ASSUMPTIONS): New macro.
7277         (LOOP_REQUIRES_VERSIONING_FOR_NITERS): New macro.
7278         (LOOP_REQUIRES_VERSIONING): New macro.
7279         (vect_free_loop_info_assumptions): New decl.
7281 2016-07-29  Bin Cheng  <bin.cheng@arm.com>
7283         * cfgloop.h (struct loop): New field constraints.
7284         (LOOP_C_INFINITE, LOOP_C_FINITE): New macros.
7285         (loop_constraint_set, loop_constraint_clr, loop_constraint_set_p): New
7286         functions.
7287         * cfgloop.c (alloc_loop): Initialize new field.
7288         * cfgloopmanip.c (copy_loop_info): Copy constraints.
7289         * tree-ssa-loop-niter.c (number_of_iterations_exit_assumptions):
7290         Adjust niter analysis wrto loop constraints.
7291         * doc/loop.texi (@node Number of iterations): Add description for loop
7292         constraints.
7294 2016-07-29  Marek Polacek  <polacek@redhat.com>
7296         PR c/7652
7297         * config/i386/i386.c (ix86_expand_args_builtin): Add break.
7298         (ix86_expand_round_builtin): Likewise.
7300 2016-07-29  Segher Boessenkool  <segher@kernel.crashing.org>
7301             Georg-Johann Lay  <avr@gjlay.de>
7303         PR rtl-optimization/71976
7304         * combine.c (get_last_value): Return 0 if the argument for which
7305         the function is called has a wider mode than the recorded value.
7307 2016-07-29  Marek Polacek  <polacek@redhat.com>
7309         PR c/7652
7310         * config/rs6000/rs6000.c (altivec_expand_ld_builtin): Add break.
7311         (altivec_expand_st_builtin): Likewise.
7313 2016-07-29  Georg-Johann Lay  <avr@gjlay.de>
7315         * config/avr/avr.md (addqi3) [cc]: Revert glitch in insn attribute
7316         introduced in r238381.
7318 2016-07-29  Kugan Vivekanandarajah  <kuganv@linaro.org>
7320         PR middle-end/68217
7321         * tree-vrp.c (extract_range_from_binary_expr_1): In case of signed
7322         & sign-bit-CST, generate [-INF, 0] instead of [-INF, INF].
7324 2016-07-28  Michael Meissner  <meissner@linux.vnet.ibm.com>
7326         * config/rs6000/rs6000-protos.h (rs6000_split_vec_extract_var):
7327         New declaration.
7328         * config/rs6000/rs6000-c.c (altivec_resolve_overloaded_builtin):
7329         Add support for vec_extract of vector double or vector long having
7330         a variable element number on 64-bit ISA 2.07 systems or newer.
7331         * config/rs6000/rs6000.c (rs6000_expand_vector_extract):
7332         Likewise.
7333         (rs6000_split_vec_extract_var): New function to split a
7334         vec_extract built-in function with variable element number.
7335         (rtx_is_swappable_p): Variable vec_extracts and shifts are not
7336         swappable.
7337         * config/rs6000/vsx.md (UNSPEC_VSX_VSLO): New unspec.
7338         (UNSPEC_VSX_EXTRACT): Likewise.
7339         (vsx_extract_<mode>, VSX_D iterator): Fix constraints to allow
7340         direct move instructions to be generated on 64-bit ISA 2.07
7341         systems and newer, and to take advantage of the ISA 3.0 MFVSRLD
7342         instruction.
7343         (vsx_vslo_<mode>): New insn to do VSLO on V2DFmode and V2DImode
7344         arguments for vec_extract variable element.
7345         (vsx_extract_<mode>_var, VSX_D iterator): New insn to support
7346         vec_extract with variable element on V2DFmode and V2DImode
7347         vectors.
7348         * config/rs6000/rs6000.h (TARGET_VEXTRACTUB): Remove
7349         -mupper-regs-df requirement, since it isn't needed.
7350         (TARGET_DIRECT_MOVE_64BIT): New macro to say whether we can
7351         do direct moves on 64-bit systems, which allows optimization of
7352         vec_extract on 64-bit ISA 2.07 systems and newer.
7354 2016-07-28  Kristina Martsenko  <kristina.martsenko@arm.com>
7355 2016-07-28  Wilco Dijkstra  <wdijkstr@arm.com>
7357          * config/aarch64/aarch64.md
7358         (zero_extend<SHORT:mode><GPI:mode>2_aarch64): Change output
7359         statement and type.
7360         (<optab>qihi2_aarch64): Likewise, and split into two.
7361         (extendqihi2_aarch64): New.
7362         (zero_extendqihi2_aarch64): New.
7363         * config/aarch64/iterators.md (ldrxt): Remove.
7364         * config/aarch64/aarch64.c (aarch64_rtx_costs): Change cost of
7365         uxtb/uxth.
7367 2016-07-28  Kristina Martsenko  <kristina.martsenko@arm.com>
7369         * config/aarch64/aarch64.c (aarch64_rtx_costs): Fix cost of zero extend.
7371 2016-07-28  Wilco Dijkstra  <wdijkstr@arm.com>
7373         * config/aarch64/aarch64.c (aarch64_pushwb_pair_reg): Rename.
7374         (aarch64_push_reg): New function to push 1 or 2 registers.
7375         (aarch64_pop_reg): New function to pop 1 or 2 registers.
7376         (aarch64_expand_prologue): Use aarch64_push_regs.
7377         (aarch64_expand_epilogue): Use aarch64_pop_regs.
7379 2016-07-28  Yuri Rumyantsev  <ysrumyan@gmail.com>
7381         PR tree-optimization/71734
7382         * tree-ssa-loop-im.c (ref_indep_loop_p_1): Pass value of safelen
7383         attribute instead of REF_LOOP and use it.
7384         (ref_indep_loop_p_2): Use SAFELEN argument instead of REF_LOOP and
7385         set it for Loops having non-zero safelen attribute.
7386         (ref_indep_loop_p): Pass zero as initial value for safelen.
7388 2016-07-28  Ilya Enkovich  <ilya.enkovich@intel.com>
7390         PR middle-end/72657
7391         PR target/72683
7392         * tree-chkp.c (chkp_retbnd_call_by_val): Check for instrumentation
7393         call using chkp_gimple_call_builtin_p.
7394         (chkp_copy_bounds_for_assign): Likewise.
7396 2016-07-28  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
7398         * config/alpha/alpha.c (alpha_adjust_cost): Adjust.
7399         * config/arm/arm-protos.h (struct tune_params): Likewise.
7400         * config/arm/arm.c (xscale_sched_adjust_cost): Likewise.
7401         (cortex_a9_sched_adjust_cost): Likewise.
7402         (fa726te_sched_adjust_cost): Likewise.
7403         (arm_adjust_cost): Likewise.
7404         * config/bfin/bfin.c (bfin_adjust_cost): Likewise.
7405         * config/c6x/c6x.c (c6x_adjust_cost): Likewise.
7406         * config/epiphany/epiphany.c (epiphany_adjust_cost): Likewise.
7407         * config/i386/i386.c (ix86_adjust_cost): Likewise.
7408         * config/ia64/ia64.c: Likewise.
7409         * config/m68k/m68k.c: Likewise.
7410         * config/mep/mep.c (mep_adjust_cost): Likewise.
7411         * config/microblaze/microblaze.c (microblaze_adjust_cost):
7412         * Likewise.
7413         * config/mips/mips.c (mips_adjust_cost): Likewise.
7414         * config/mn10300/mn10300.c (mn10300_adjust_sched_cost):
7415         * Likewise.
7416         * config/pa/pa.c (pa_adjust_cost): Likewise.
7417         * config/rs6000/rs6000.c (rs6000_adjust_cost): Likewise.
7418         (rs6000_debug_adjust_cost): Likewise.
7419         * config/sh/sh.c (sh_adjust_cost): Likewise.
7420         * config/sparc/sparc.c (supersparc_adjust_cost): Likewise.
7421         (hypersparc_adjust_cost): Likewise.
7422         (sparc_adjust_cost): Likewise.
7423         * config/spu/spu.c (spu_sched_adjust_cost): Likewise.
7424         * config/tilegx/tilegx.c (tilegx_sched_adjust_cost): Likewise.
7425         * config/tilepro/tilepro.c (tilepro_sched_adjust_cost):
7426         * Likewise.
7427         * config/visium/visium.c (visium_adjust_cost): Likewise.
7428         * doc/tm.texi: Regenerate.
7429         * haifa-sched.c (dep_cost_1): Adjust.
7430         * target.def: Merge adjust_cost and adjust_cost_2.
7432 2016-07-28  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
7434         * haifa-sched.c (add_to_speculative_block): Make twins a vector.
7436 2016-07-28  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
7438         * store-motion.c (struct st_expr): Make pattern_regs a vector.
7439         (extract_mentioned_regs): Append to a vector instead of
7440         returning a rtx_expr_list.
7441         (st_expr_entry): Adjust.
7442         (free_st_expr_entry): Likewise.
7443         (store_ops_ok): Likewise.
7444         (store_killed_in_insn): Likewise.
7445         (find_moveable_store): Likewise.
7447 2016-07-28  Martin Liska  <mliska@suse.cz>
7449         PR gcov-profile/68025
7450         * tree-profile.c (tree_profiling): Respect
7451         no_profile_instrument_function attribute.
7452         * doc/extend.texi: Document no_profile_instrument_function
7453         attribute.
7455 2016-07-28  Martin Liska  <mliska@suse.cz>
7457         PR rtl-optimization/70944
7458         * combine.c (make_compound_operation):
7459         Do not allow make_compound_operation for vector mode
7461 2016-07-28  Kugan Vivekanandarajah  <kuganv@linaro.org>
7463         PR middle-end/71994
7464         * tree-ssa-reassoc.c (maybe_optimize_range_tests): Check tcc_comparison
7465          before calling get_ops.
7467 2016-07-27  Bernd Edlinger  <bernd.edlinger@hotmail.de>
7469         * defaults.h (LOG2_BITS_PER_UNIT): Move from here...
7470         * tree.h (LOG2_BITS_PER_UNIT): ...to here.
7471         (BITS_PER_UNIT_LOG): Remove.
7472         (int_bit_position): Use LOG2_BITS_PER_UNIT instead of BITS_PER_UNIT_LOG.
7473         * expr.c (expand_assignment): Likewise.
7474         * stor-layout.c (initialize_sizetypes): Likewise.
7476 2016-07-27  Michael Meissner  <meissner@linux.vnet.ibm.com>
7478         * config/rs6000/vector.md (vec_extract<mode>): Change the calling
7479         signature of rs6000_expand_vector_extract so that the element
7480         number is a RTX instead of a constant integer.
7481         * config/rs6000/rs6000-protos.h (rs6000_expand_vector_extract):
7482         Likewise.
7483         * config/rs6000/rs6000.c (rs6000_expand_vector_extract): Likewise.
7484         (altivec_expand_vec_ext_builtin): Likewise.
7485         * config/rs6000/altivec.md (reduc_plus_scal_<mode>): Likewise.
7486         * config/rs6000/vsx.md (vsx_extract_<mode>): Fix spelling of the
7487         MFVSRLD instruction.
7489 2016-07-27  David Malcolm  <dmalcolm@redhat.com>
7491         * input.c (get_pure_location): Move here from tree.c.
7492         (make_location): Likewise.  Add header comment.
7493         (selftest::test_accessing_ordinary_linemaps): Verify
7494         pure_location_p, make_location, get_location_from_adhoc_loc and
7495         get_range_from_loc.
7496         * input.h (get_pure_location): Move declaration here from tree.h.
7497         (get_finish): Likewise for inline function.
7498         (make_location): Likewise for declaration.
7499         * tree.c (get_pure_location): Move to input.c.
7500         (make_location): Likewise.
7501         * tree.h (get_pure_location): Move declaration to tree.h.
7502         (get_finish): Likewise for inline function.
7503         (make_location): Likewise for declaration.
7505 2016-07-27  Prathamesh Kulkarni  <prathamesh.kulkarni@linaro.org>
7507         PR middle-end/71078
7508         * match.pd (x / abs(x) -> copysign(1.0, x)): New pattern.
7510 2016-07-27  David Malcolm  <dmalcolm@redhat.com>
7512         * system.h (STATIC_ASSERT): Use static_assert if building
7513         with C++11 onwards.
7515 2016-07-27  Richard Biener  <rguenther@suse.de>
7517         PR tree-optimization/72517
7518         * tree-vect-data-refs.c (vect_analyze_data_ref_dependences):
7519         Revert change to not compute read-read dependences.
7521 2016-07-27  Richard Biener  <rguenther@suse.de>
7523         * predict.c (set_even_probabilities): Make nedges unsigned.
7525 2016-07-27  Martin Liska  <mliska@suse.cz>
7527         * predict.c (set_even_probabilities): Handle unlikely edges.
7528         (combine_predictions_for_bb): Likewise.
7530 2016-07-26  Michael Meissner  <meissner@linux.vnet.ibm.com>
7532         PR target/71869
7533         * config/rs6000/rs6000.c (rs6000_generate_compare): Rework
7534         __float128 support when we don't have hardware support, so that
7535         the IEEE built-in functions like isgreater, first call __unordkf3
7536         to make sure neither operand is a NaN, and if both operands are
7537         ordered, do the normal comparison.
7539 2016-07-26  Patrick Palka  <ppalka@gcc.gnu.org>
7541         * tree-vrp.c (dump_asserts_for): Print loc->expr instead of
7542         name.
7543         (extract_code_and_val_from_cond_with_ops): Verify that name is
7544         either cond_op0 or cond_op1.
7546 2016-07-26  Patrick Palka  <ppalka@gcc.gnu.org>
7548         PR tree-optimization/18046
7549         * genmodes.c (emit_mode_size_inline): Emit an assert that
7550         verifies that mode is a valid array index.
7551         (emit_mode_nuinits_inline): Likewise.
7552         (emit_mode_inner_inline): Likewise.
7553         (emit_mode_unit_size_inline): Likewise.
7554         (emit_mode_unit_precision_inline): Likewise.
7555         * tree-vrp.c: Include params.h.
7556         (find_switch_asserts): Register edge assertions for the default
7557         label which correspond to the anti-ranges of each case label.
7558         * params.def (PARAM_MAX_VRP_SWITCH_ASSERTIONS): New.
7559         * doc/invoke.texi: Document it.
7561 2016-07-26  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
7563         * gimple-ssa-strength-reduction.c (slsr_process_phi): Remove dead
7564         and unnecessary call to gimple_bb.
7566 2016-07-26  Richard Biener  <rguenther@suse.de>
7568         PR rtl-optimization/71984
7569         * simplify-rtx.c (simplify_subreg): Use GET_MODE_SIZE and prepare
7570         for VOIDmode.
7572 2016-07-26  Richard Biener  <rguenther@suse.de>
7574         PR middle-end/72517
7575         * expmed.c (extract_bit_field_1): Constrain the vector mode
7576         with element size matching the extraction mode size when
7577         choosing a better vector mode to do the extraction from.
7579 2016-07-26  Richard Biener  <rguenther@suse.de>
7580             Prathamesh Kulkarni  <prathamesh.kulkarni@linaro.org>
7582         PR middle-end/70920
7583         * match.pd ((intptr)x eq/ne CST to x eq/ne (typeof x) CST): New
7584         pattern.
7586 2016-07-26  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
7588         * tree-ssa-structalias.c (struct scc_info): Change types of
7589         members to auto_sbitmap and auto_vec.
7590         (scc_info::scc_info): New constructor.
7591         (scc_info::~scc_info): New destructor.
7592         (init_scc_info): Remove.
7593         (free_scc_info): Remove.
7594         (find_indirect_cycles): Adjust.
7595         (perform_var_substitution): Likewise.
7596         (free_var_substitution_info): Likewise.
7598 2016-07-26  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
7600         * tree-outof-ssa.c (struct elim_graph): Change type of members
7601         to auto_vec and auto_sbitmap.
7602         (elim_graph::elim_graph): New constructor.
7603         (delete_elim_graph): Remove.
7604         (expand_phi_nodes): Adjust.
7606 2016-07-26  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
7608         * tree-outof-ssa.c (struct elim_graph): Remove typedef.
7609         (new_elim_graph): Adjust.
7610         (clear_elim_graph): Likewise.
7611         (delete_elim_graph): Likewise.
7612         (elim_graph_size): Likewise.
7613         (elim_graph_add_node): Likewise.
7614         (elim_graph_add_edge): Likewise.
7615         (elim_graph_remove_succ_edge): Likewise.
7616         (eliminate_name): Likewise.
7617         (eliminate_build): Likewise.
7618         (elim_forward): Likewise.
7619         (elim_unvisited_predecessor): Likewise.
7620         (elim_backward): Likewise.
7621         (elim_create): Likewise.
7622         (eliminate_phi): Likewise.
7623         (expand_phi_nodes): Likewise.
7625 2016-07-26  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
7627         * bt-load.c (compute_out): Use auto_sbitmap class.
7628         (link_btr_uses): Likewise.
7629         * cfganal.c (mark_dfs_back_edges): Likewise.
7630         (post_order_compute): Likewise.
7631         (inverted_post_order_compute): Likewise.
7632         (pre_and_rev_post_order_compute_fn): Likewise.
7633         (single_pred_before_succ_order): Likewise.
7634         * cfgexpand.c (pass_expand::execute): Likewise.
7635         * cfgloop.c (verify_loop_structure): Likewise.
7636         * cfgloopmanip.c (fix_bb_placements): Likewise.
7637         (remove_path): Likewise.
7638         (update_dominators_in_loop): Likewise.
7639         * cfgrtl.c (break_superblocks): Likewise.
7640         * ddg.c (check_sccs): Likewise.
7641         (create_ddg_all_sccs): Likewise.
7642         * df-core.c (df_worklist_dataflow): Likewise.
7643         * dse.c (dse_step3): Likewise.
7644         * except.c (eh_region_outermost): Likewise.
7645         * function.c (thread_prologue_and_epilogue_insns): Likewise.
7646         * gcse.c (prune_expressions): Likewise.
7647         (prune_insertions_deletions): Likewise.
7648         * gimple-ssa-backprop.c (backprop::~backprop): Likewise.
7649         * graph.c (draw_cfg_nodes_no_loops): Likewise.
7650         * ira-lives.c (remove_some_program_points_and_update_live_ranges): Likewise.
7651         * lcm.c (compute_earliest): Likewise.
7652         (compute_farthest): Likewise.
7653         * loop-unroll.c (unroll_loop_constant_iterations): Likewise.
7654         (unroll_loop_runtime_iterations): Likewise.
7655         (unroll_loop_stupid): Likewise.
7656         * lower-subreg.c (decompose_multiword_subregs): Likewise.
7657         * lra-lives.c: Likewise.
7658         * lra.c (lra): Likewise.
7659         * modulo-sched.c (schedule_reg_moves): Likewise.
7660         (optimize_sc): Likewise.
7661         (get_sched_window): Likewise.
7662         (sms_schedule_by_order): Likewise.
7663         (check_nodes_order): Likewise.
7664         (order_nodes_of_sccs): Likewise.
7665         (order_nodes_in_scc): Likewise.
7666         * recog.c (split_all_insns): Likewise.
7667         * regcprop.c (pass_cprop_hardreg::execute): Likewise.
7668         * reload1.c (reload): Likewise.
7669         * sched-rgn.c (haifa_find_rgns): Likewise.
7670         (split_edges): Likewise.
7671         (compute_trg_info): Likewise.
7672         * sel-sched.c (init_seqno): Likewise.
7673         * store-motion.c (remove_reachable_equiv_notes): Likewise.
7674         * tree-into-ssa.c (update_ssa): Likewise.
7675         * tree-ssa-live.c (live_worklist): Likewise.
7676         * tree-ssa-loop-im.c (fill_always_executed_in): Likewise.
7677         * tree-ssa-loop-ivcanon.c (try_unroll_loop_completely):
7678         * Likewise.
7679         (try_peel_loop): Likewise.
7680         * tree-ssa-loop-manip.c (tree_transform_and_unroll_loop):
7681         * Likewise.
7682         * tree-ssa-pre.c (compute_antic): Likewise.
7683         * tree-ssa-reassoc.c (undistribute_ops_list): Likewise.
7684         * tree-stdarg.c (reachable_at_most_once): Likewise.
7685         * tree-vect-slp.c (vect_attempt_slp_rearrange_stmts): Likewise.
7686         * var-tracking.c (vt_find_locations): Likewise.
7688 2016-07-26  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
7690         * sbitmap.h (auto_sbitmap): New class.
7692 2016-07-26  Alan Modra  <amodra@gmail.com>
7694         PR target/72103
7695         * config/rs6000/rs6000.c (rs6000_secondary_reload): Initialize
7696         sri->t_icode.
7698 2016-07-25  David Malcolm  <dmalcolm@redhat.com>
7700         * input.c (selftest::temp_source_file::temp_source_file): Fix
7701         missing "%s" in fprintf.
7703 2016-07-25  John David Anglin  <danglin@gcc.gnu.org>
7705         PR middle-end/71732
7706         * cselib.c (cselib_process_insn): Invalidate argument slots for
7707         const/pure calls.
7709 2016-07-25  Jiong Wang  <jiong.wang@arm.com>
7711         * config/aarch64/arm_neon.h (vfmah_lane_f16, vfmah_laneq_f16,
7712         vfmsh_lane_f16, vfmsh_laneq_f16, vmulh_lane_f16, vmulh_laneq_f16,
7713         vmulxh_lane_f16, vmulxh_laneq_f16): New.
7715 2016-07-25  Jiong Wang  <jiong.wang@arm.com>
7717         * config/aarch64/aarch64-simd-builtins.def: Register new builtins.
7718         * config/aarch64/aarch64.md (fma, fnma): Support HF.
7719         * config/aarch64/arm_fp16.h (vfmah_f16, vfmsh_f16): New.
7721 2016-07-25  Jiong Wang  <jiong.wang@arm.com>
7723         * config/aarch64/aarch64-simd-builtins.def: Register new builtins.
7724         * config/aarch64/aarch64.md (<FCVT_F2FIXED:fcvt_fixed_insn>hf<mode>3):
7725         New.
7726         (<FCVT_FIXED2F:fcvt_fixed_insn><mode>hf3): Likewise.
7727         (add<mode>3): Likewise.
7728         (sub<mode>3): Likewise.
7729         (mul<mode>3): Likewise.
7730         (div<mode>3): Likewise.
7731         (*div<mode>3): Likewise.
7732         (<fmaxmin><mode>3): Extend to HF.
7733         * config/aarch64/aarch64-simd.md (aarch64_rsqrts<mode>): Likewise.
7734         (fabd<mode>3): Likewise.
7735         (<FCVT_F2FIXED:fcvt_fixed_insn><VHSDF_HSDF:mode>3): Likewise.
7736         (<FCVT_FIXED2F:fcvt_fixed_insn><VHSDI_HSDI:mode>3): Likewise.
7737         (aarch64_fmulx<mode>): Likewise.
7738         (aarch64_fac<optab><mode>): Likewise.
7739         (aarch64_frecps<mode>): Likewise.
7740         (<FCVT_F2FIXED:fcvt_fixed_insn>hfhi3): New.
7741         (<FCVT_FIXED2F:fcvt_fixed_insn>hihf3): Likewise.
7742         * config/aarch64/iterators.md (VHSDF_SDF): Delete.
7743         (VSDQ_HSDI): Support HI.
7744         (fcvt_target, FCVT_TARGET): Likewise.
7745         * config/aarch64/arm_fp16.h (vaddh_f16, vsubh_f16, vabdh_f16,
7746         vcageh_f16, vcagth_f16, vcaleh_f16, vcalth_f16, vceqh_f16, vcgeh_f16,
7747         vcgth_f16, vcleh_f16, vclth_f16, vcvth_n_f16_s16, vcvth_n_f16_s32,
7748         vcvth_n_f16_s64, vcvth_n_f16_u16, vcvth_n_f16_u32, vcvth_n_f16_u64,
7749         vcvth_n_s16_f16, vcvth_n_s32_f16, vcvth_n_s64_f16, vcvth_n_u16_f16,
7750         vcvth_n_u32_f16, vcvth_n_u64_f16, vdivh_f16, vmaxh_f16, vmaxnmh_f16,
7751         vminh_f16, vminnmh_f16, vmulh_f16, vmulxh_f16, vrecpsh_f16,
7752         vrsqrtsh_f16): New.
7754 2016-07-25  Jiong Wang  <jiong.wang@arm.com>
7756         * config.gcc (aarch64*-*-*): Install arm_fp16.h.
7757         * config/aarch64/aarch64-builtins.c (hi_UP): New.
7758         * config/aarch64/aarch64-simd-builtins.def: Register new builtins.
7759         * config/aarch64/aarch64-simd.md (aarch64_frsqrte<mode>): Extend to HF
7760         mode.
7761         (aarch64_frecp<FRECP:frecp_suffix><mode>): Likewise.
7762         (aarch64_cm<optab><mode>): Likewise.
7763         * config/aarch64/aarch64.md (<frint_pattern><mode>2): Likewise.
7764         (l<fcvt_pattern><su_optab><GPF:mode><GPI:mode>2): Likewise.
7765         (fix_trunc<GPF:mode><GPI:mode>2): Likewise.
7766         (sqrt<mode>2): Likewise.
7767         (*sqrt<mode>2): Likewise.
7768         (abs<mode>2): Likewise.
7769         (<optab><mode>hf2): New pattern for HF mode.
7770         (<optab>hihf2): Likewise.
7771         * config/aarch64/arm_neon.h: Include arm_fp16.h.
7772         * config/aarch64/iterators.md (GPF_F16, GPI_F16, VHSDF_HSDF): New.
7773         (w1, w2, v, s, q, Vmtype, V_cmp_result, fcvt_iesize, FCVT_IESIZE):
7774         Support HF mode.
7775         * config/aarch64/arm_fp16.h: New file.
7776         (vabsh_f16, vceqzh_f16, vcgezh_f16, vcgtzh_f16, vclezh_f16, vcltzh_f16,
7777         vcvth_f16_s16, vcvth_f16_s32, vcvth_f16_s64, vcvth_f16_u16,
7778         vcvth_f16_u32, vcvth_f16_u64, vcvth_s16_f16, vcvth_s32_f16,
7779         vcvth_s64_f16, vcvth_u16_f16, vcvth_u32_f16, vcvth_u64_f16,
7780         vcvtah_s16_f16, vcvtah_s32_f16, vcvtah_s64_f16, vcvtah_u16_f16,
7781         vcvtah_u32_f16, vcvtah_u64_f16, vcvtmh_s16_f16, vcvtmh_s32_f16,
7782         vcvtmh_s64_f16, vcvtmh_u16_f16, vcvtmh_u32_f16, vcvtmh_u64_f16,
7783         vcvtnh_s16_f16, vcvtnh_s32_f16, vcvtnh_s64_f16, vcvtnh_u16_f16,
7784         vcvtnh_u32_f16, vcvtnh_u64_f16, vcvtph_s16_f16, vcvtph_s32_f16,
7785         vcvtph_s64_f16, vcvtph_u16_f16, vcvtph_u32_f16, vcvtph_u64_f16,
7786         vnegh_f16, vrecpeh_f16, vrecpxh_f16, vrndh_f16, vrndah_f16, vrndih_f16,
7787         vrndmh_f16, vrndnh_f16, vrndph_f16, vrndxh_f16, vrsqrteh_f16,
7788         vsqrth_f16): New.
7790 2016-07-25  Jiong Wang  <jiong.wang@arm.com>
7792         * config/aarch64/aarch64-simd-builtins.def (reduc_smax_scal_,
7793         reduc_smin_scal_): Use VDQIF_F16.
7794         (reduc_smax_nan_scal_, reduc_smin_nan_scal_): Use VHSDF.
7795         * config/aarch64/aarch64-simd.md (reduc_<maxmin_uns>_scal_<mode>):
7796         Use VHSDF.
7797         (aarch64_reduc_<maxmin_uns>_internal<mode>): Likewise.
7798         * config/aarch64/iterators.md (VDQIF_F16): New.
7799         (vp): Support HF modes.
7800         * config/aarch64/arm_neon.h (vmaxv_f16, vmaxvq_f16, vminv_f16,
7801         vminvq_f16, vmaxnmv_f16, vmaxnmvq_f16, vminnmv_f16, vminnmvq_f16): New.
7803 2016-07-25  Jiong Wang  <jiong.wang@arm.com>
7805         * config/aarch64/aarch64-simd.md (*aarch64_mulx_elt_to_64v2df): Rename to
7806         "*aarch64_mulx_elt_from_dup<mode>".
7807         (*aarch64_mul3_elt<mode>): Update schedule type.
7808         (*aarch64_mul3_elt_from_dup<mode>): Likewise.
7809         (*aarch64_fma4_elt_from_dup<mode>): Likewise.
7810         (*aarch64_fnma4_elt_from_dup<mode>): Likewise.
7811         * config/aarch64/iterators.md (VMUL): Supprt half precision float modes.
7812         (f, fp): Support HF modes.
7813         * config/aarch64/arm_neon.h (vfma_lane_f16, vfmaq_lane_f16,
7814         vfma_laneq_f16, vfmaq_laneq_f16, vfma_n_f16, vfmaq_n_f16, vfms_lane_f16,
7815         vfmsq_lane_f16, vfms_laneq_f16, vfmsq_laneq_f16, vfms_n_f16,
7816         vfmsq_n_f16, vmul_lane_f16, vmulq_lane_f16, vmul_laneq_f16,
7817         vmulq_laneq_f16, vmul_n_f16, vmulq_n_f16, vmulx_lane_f16,
7818         vmulxq_lane_f16, vmulx_laneq_f16, vmulxq_laneq_f16): New.
7820 2016-07-25  Jiong Wang  <jiong.wang@arm.com>
7822         * config/aarch64/aarch64-simd-builtins.def: Register new builtins.
7823         * config/aarch64/aarch64-simd.md (fma<mode>4, fnma<mode>4): Extend to HF
7824         modes.
7825         * config/aarch64/arm_neon.h (vfma_f16, vfmaq_f16, vfms_f16,
7826         vfmsq_f16): New.
7828 2016-07-25  Jiong Wang  <jiong.wang@arm.com>
7830         * config/aarch64/aarch64-simd-builtins.def: Register new builtins.
7831         * config/aarch64/aarch64-simd.md
7832         (aarch64_rsqrts<mode>): Extend to HF modes.
7833         (fabd<mode>3): Likewise.
7834         (<FCVT_F2FIXED:fcvt_fixed_insn><VHSDF_SDF:mode>3): Likewise.
7835         (<FCVT_FIXED2F:fcvt_fixed_insn><VHSDI_SDI:mode>3): Likewise.
7836         (aarch64_<maxmin_uns>p<mode>): Likewise.
7837         (<su><maxmin><mode>3): Likewise.
7838         (<maxmin_uns><mode>3): Likewise.
7839         (<fmaxmin><mode>3): Likewise.
7840         (aarch64_faddp<mode>): Likewise.
7841         (aarch64_fmulx<mode>): Likewise.
7842         (aarch64_frecps<mode>): Likewise.
7843         (*aarch64_fac<optab><mode>): Rename to aarch64_fac<optab><mode>.
7844         (add<mode>3): Extend to HF modes.
7845         (sub<mode>3): Likewise.
7846         (mul<mode>3): Likewise.
7847         (div<mode>3): Likewise.
7848         (*div<mode>3): Likewise.
7849         * config/aarch64/aarch64.c (aarch64_emit_approx_div): Return false for
7850         HF, V4HF and V8HF.
7851         * config/aarch64/iterators.md (VDQ_HSDI, VSDQ_HSDI): New mode iterator.
7852         * config/aarch64/arm_neon.h (vadd_f16, vaddq_f16, vabd_f16, vabdq_f16,
7853         vcage_f16, vcageq_f16, vcagt_f16, vcagtq_f16, vcale_f16, vcaleq_f16,
7854         vcalt_f16, vcaltq_f16, vceq_f16, vceqq_f16, vcge_f16, vcgeq_f16,
7855         vcgt_f16, vcgtq_f16, vcle_f16, vcleq_f16, vclt_f16, vcltq_f16,
7856         vcvt_n_f16_s16, vcvtq_n_f16_s16, vcvt_n_f16_u16, vcvtq_n_f16_u16,
7857         vcvt_n_s16_f16, vcvtq_n_s16_f16, vcvt_n_u16_f16, vcvtq_n_u16_f16,
7858         vdiv_f16, vdivq_f16, vdup_lane_f16, vdup_laneq_f16, vdupq_lane_f16,
7859         vdupq_laneq_f16, vdups_lane_f16, vdups_laneq_f16, vmax_f16, vmaxq_f16,
7860         vmaxnm_f16, vmaxnmq_f16, vmin_f16, vminq_f16, vminnm_f16, vminnmq_f16,
7861         vmul_f16, vmulq_f16, vmulx_f16, vmulxq_f16, vpadd_f16, vpaddq_f16,
7862         vpmax_f16, vpmaxq_f16, vpmaxnm_f16, vpmaxnmq_f16, vpmin_f16, vpminq_f16,
7863         vpminnm_f16, vpminnmq_f16, vrecps_f16, vrecpsq_f16, vrsqrts_f16,
7864         vrsqrtsq_f16, vsub_f16, vsubq_f16): New.
7866 2016-07-25  Jiong Wang  <jiong.wang@arm.com>
7868         * config/aarch64/aarch64-builtins.c (TYPES_BINOP_USS): New.
7869         * config/aarch64/aarch64-simd-builtins.def: Register new builtins.
7870         * config/aarch64/aarch64-simd.md (aarch64_rsqrte<mode>): Extend to HF modes.
7871         (neg<mode>2): Likewise.
7872         (abs<mode>2): Likewise.
7873         (<frint_pattern><mode>2): Likewise.
7874         (l<fcvt_pattern><su_optab><VDQF:mode><fcvt_target>2): Likewise.
7875         (<optab><VDQF:mode><fcvt_target>2): Likewise.
7876         (<fix_trunc_optab><VDQF:mode><fcvt_target>2): Likewise.
7877         (ftrunc<VDQF:mode>2): Likewise.
7878         (<optab><fcvt_target><VDQF:mode>2): Likewise.
7879         (sqrt<mode>2): Likewise.
7880         (*sqrt<mode>2): Likewise.
7881         (aarch64_frecpe<mode>): Likewise.
7882         (aarch64_cm<optab><mode>): Likewise.
7883         * config/aarch64/aarch64.c (aarch64_emit_approx_sqrt): Return false for
7884         HF, V4HF and V8HF.
7885         * config/aarch64/iterators.md (VHSDF, VHSDF_DF, VHSDF_SDF): New.
7886         (VDQF_COND, fcvt_target, FCVT_TARGET, hcon): Extend mode attribute to HF modes.
7887         (stype): New.
7888         * config/aarch64/arm_neon.h (vdup_n_f16): New.
7889         (vdupq_n_f16): Likewise.
7890         (vld1_dup_f16): Use vdup_n_f16.
7891         (vld1q_dup_f16): Use vdupq_n_f16.
7892         (vabs_f16, vabsq_f16, vceqz_f16, vceqzq_f16, vcgez_f16, vcgezq_f16,
7893         vcgtz_f16, vcgtzq_f16, vclez_f16, vclezq_f16, vcltz_f16, vcltzq_f16,
7894         vcvt_f16_s16, vcvtq_f16_s16, vcvt_f16_u16, vcvtq_f16_u16, vcvt_s16_f16,
7895         vcvtq_s16_f16, vcvt_u16_f16, vcvtq_u16_f16, vcvta_s16_f16,
7896         vcvtaq_s16_f16, vcvta_u16_f16, vcvtaq_u16_f16, vcvtm_s16_f16,
7897         vcvtmq_s16_f16, vcvtm_u16_f16, vcvtmq_u16_f16, vcvtn_s16_f16,
7898         vcvtnq_s16_f16, vcvtn_u16_f16, vcvtnq_u16_f16, vcvtp_s16_f16,
7899         vcvtpq_s16_f16, vcvtp_u16_f16, vcvtpq_u16_f16, vneg_f16, vnegq_f16,
7900         vrecpe_f16, vrecpeq_f16, vrnd_f16, vrndq_f16, vrnda_f16, vrndaq_f16,
7901         vrndi_f16, vrndiq_f16, vrndm_f16, vrndmq_f16, vrndn_f16, vrndnq_f16,
7902         vrndp_f16, vrndpq_f16, vrndx_f16, vrndxq_f16, vrsqrte_f16, vrsqrteq_f16,
7903         vsqrt_f16, vsqrtq_f16): New.
7905 2016-07-25  Jiong Wang  <jiong.wang@arm.com>
7907         * config/aarch64/aarch64-simd.md
7908         (aarch64_<PERMUTE:perm_insn><PERMUTE:perm_hilo><mode>): Use VALL_F16.
7909         (aarch64_ext<mode>): Likewise.
7910         (aarch64_rev<REVERSE:rev_op><mode>): Likewise.
7911         * config/aarch64/aarch64.c (aarch64_evpc_trn, aarch64_evpc_uzp,
7912         aarch64_evpc_zip, aarch64_evpc_ext, aarch64_evpc_rev): Support V4HFmode
7913         and V8HFmode.
7914         * config/aarch64/arm_neon.h (__INTERLEAVE_LIST): Support float16x4_t,
7915         float16x8_t.
7916         (__aarch64_vdup_lane_f16, __aarch64_vdup_laneq_f16,
7917         __aarch64_vdupq_lane_f16, __aarch64_vdupq_laneq_f16, vbsl_f16,
7918         vbslq_f16, vdup_n_f16, vdupq_n_f16, vdup_lane_f16, vdup_laneq_f16,
7919         vdupq_lane_f16, vdupq_laneq_f16, vduph_lane_f16, vduph_laneq_f16,
7920         vext_f16, vextq_f16, vmov_n_f16, vmovq_n_f16, vrev64_f16, vrev64q_f16,
7921         vtrn1_f16, vtrn1q_f16, vtrn2_f16, vtrn2q_f16, vtrn_f16, vtrnq_f16,
7922         vuzp1_f16, vuzp1q_f16, vuzp2_f16, vuzp2q_f16, vzip1_f16, vzip2q_f16):
7923         New.
7924         (vmov_n_f16): Reimplement using vdup_n_f16.
7925         (vmovq_n_f16): Reimplement using vdupq_n_f16..
7927 2016-07-25  Jiong Wang  <jiong.wang@arm.com>
7929         * config/aarch64/aarch64.c (aarch64_add_constant): New parameter
7930         "frame_related_p".  Generate CFA annotation when it's necessary.
7931         (aarch64_expand_prologue): Use aarch64_add_constant.
7932         (aarch64_expand_epilogue): Likewise.
7933         (aarch64_output_mi_thunk): Pass "false" when calling
7934         aarch64_add_constant.
7936 2016-07-25  Jiong Wang  <jiong.wang@arm.com>
7938         * config/aarch64/aarch64.c (aarch64_add_constant): Optimize instruction
7939         sequences.
7941 2016-07-25  Jiong Wang  <jiong.wang@arm.com>
7943         * config/aarch64/aarch64.c (aarch64_add_constant): New parameter "mode".
7944         Use aarch64_internal_mov_immediate instead of aarch64_build_constant.
7945         (aarch64_output_mi_thunk): Pass Pmode when calling aarch64_add_constant.
7946         (aarch64_build_constant): Delete.
7948 2016-07-25  Alexander Monakov  <amonakov@ispras.ru>
7950         Revert
7951         2016-07-20  Alexander Monakov  <amonakov@ispras.ru>
7953         * config/nvptx/nvptx.c (nvptx_option_override): Do not set
7954         flag_toplevel_reorder.
7956 2016-07-25  Richard Biener  <rguenther@suse.de>
7958         * cgraph.c (cgraph_node::verify_node): Compare against builtin
7959         by using DECL_BUILT_IN_CLASS and DECL_FUNCTION_CODE.
7960         * tree-chkp.c (chkp_gimple_call_builtin_p): Likewise.
7961         * tree-streamer.h (streamer_handle_as_builtin_p): Remove.
7962         (streamer_get_builtin_tree): Likewise.
7963         (streamer_write_builtin): Likewise.
7964         * lto-streamer.h (LTO_builtin_decl): Remove.
7965         * lto-streamer-in.c (lto_read_tree_1): Remove assert.
7966         (lto_input_scc): Remove LTO_builtin_decl handling.
7967         (lto_input_tree_1): Liekwise.
7968         * lto-streamer-out.c (lto_output_tree_1): Remove special
7969         handling of builtins.
7970         (DFS::DFS): Likewise.
7971         * tree-streamer-in.c (streamer_get_builtin_tree): Remove.
7972         * tree-streamer-out.c (pack_ts_function_decl_value_fields): Remove
7973         assert.
7974         (streamer_write_builtin): Remove.
7976 2016-07-25  Martin Liska  <mliska@suse.cz>
7978         * lto-cgraph.c (input_symtab): Don't call get_working_sets
7979         if flag_auto_profile is set to true.
7981 2016-07-25  Martin Liska  <mliska@suse.cz>
7983         PR gcov-profile/71868
7984         * cfgloopanal.c (expected_loop_iterations_unbounded): When we
7985         have a function with multiple latches, count them all.
7987 2016-07-25  Martin Liska  <mliska@suse.cz>
7989         * tree-ssa-loop-niter.c (loop_only_exit_p): Release body array.
7991 2016-07-25  Martin Liska  <mliska@suse.cz>
7993         PR tree-optimization/71987
7994         * tree-ssa-reassoc.c (maybe_optimize_range_tests): Call get_ops
7995         just for SSA_NAMEs. Fix GNU coding style.
7997 2016-07-25  Martin Liska  <mliska@suse.cz>
7999         PR gcov-profile/64874
8000         * gcov-io.h: Update command about file format.
8001         * gcov-iov.c (main): Adapt the numbering scheme.
8003 2016-07-24  Kugan Vivekanandarajah  <kuganv@linaro.org>
8005         PR middle-end/66726
8006         * tree-ssa-reassoc.c (optimize_vec_cond_expr): Handle tcc_compare stmt
8007         whose result is used in PHI.
8008         (final_range_test_p): Likewise.
8009         (maybe_optimize_range_tests): Likewise.
8011 2016-07-22  Michael Meissner  <meissner@linux.vnet.ibm.com>
8013         * config/rs6000/rs6000-c.c (altivec_resolve_overloaded_builtin):
8014         Reformat two multi-line strings.
8016 2016-07-22  Martin Sebor  <msebor@redhat.com>
8018         * doc/extend.texi (Compound Literals): Add '@' missed in last commit.
8020 2016-07-22  Martin Sebor  <msebor@redhat.com>
8022         PR c/71560
8023         * doc/extend.texi (Compound Literals): Correct and clarify.
8024         (Cast to Union): Same.
8026 2016-07-22  Kelvin Nilsen  <kelvin@gcc.gnu.org>
8028         * config/rs6000/rs6000.c (rs6000_option_override_internal): Add
8029         comments to explain why certain error messages make mention of
8030         undocumented options.
8031         (rs6000_invalid_builtin): Change error messages to replace mention
8032         of undocumented options with mention of the -mcpu=power9 option
8033         that enables those undocumented options.
8034         * config/rs6000/rs6000.h (MASK_FLOAT128): New macro.
8035         (RS6000_BTM_FLOAT128): Use the new MASK_FLOAT128 macro in the
8036         definition of this macro to correct an existing error.
8037         * config/rs6000/rs6000.opt: Add the Undocumented qualifier to the
8038         mpower9-fusion, mpower9-vector, mpower9-dform, and mmodulo entries.
8039         * doc/extend.texi (PowerPC AltiVec Built-in Functions): Modify
8040         descriptions of built-in functions so that they depend on
8041         -mcpu=power9 instead of on the corresponding undocumented flags.
8042         * doc/invoke.texi (Option Summary):  Remove all mention of newly
8043         undocumented flags.
8044         (IBM RS/6000 and PowerPC Options): Likewise.
8045         * doc/md.texi (Constraints for Particuliar Machines): Remove all
8046         mention of newly undocumented flags.
8048 2016-07-22  Evgeny Stupachenko  <evstupac@gmail.com>
8050         * ipa-cp.c (determine_versionability): Do not create constprop clones,
8051         when target_clones attribute is set.
8053 2016-07-22  Bin Cheng  <bin.cheng@arm.com>
8055         * common.opt (funsafe-loop-optimizations): Mark ignore.
8056         * doc/invoke.texi (funsafe-loop-optimizations): Remove.
8057         * loop-iv.c (get_simple_loop_desc): Remove unsafe-loop-optimizations
8058         related code.
8059         * tree-ssa-loop-niter.c (finite_loop_p): Ditto.
8060         * config/bfin/bfin.c (bfin_can_use_doloop_p): Ditto.
8062 2016-07-22  Bin Cheng  <bin.cheng@arm.com>
8064         * tree-ssa-loop-niter.h (number_of_iterations_exit_assumptions): New
8065         Parameter.
8066         * tree-ssa-loop-niter.c (number_of_iterations_exit_assumptions): New
8067         Parameter.
8068         (number_of_iterations_exit): Warn missed loop optimization for
8069         possible infinite loops.
8071 2016-07-22  Segher Boessenkool  <segher@kernel.crashing.org>
8073         PR target/71216
8074         * config/rs6000/rs6000.c (rs6000_file_start): Fix condition for
8075         when to emit a ".machine" pseudo-op.
8077 2016-07-22  Martin Liska  <mliska@suse.cz>
8079         PR gcov-profile/69028
8080         PR gcov-profile/62047
8081         * coverage.c (coverage_compute_lineno_checksum): Do not
8082         calculate checksum for fns w/o xloc.file.
8083         (coverage_compute_profile_id): Likewise.
8085 2016-07-22  Georg-Johann Lay  <avr@gjlay.de>
8087         * config/avr/avr.c (TARGET_SECONDARY_RELOAD): Remove hook define...
8088         (avr_secondary_reload): ...and implementation.
8089         (avr_adjust_insn_length) [ADJUST_LEN_LPM]: Remove handling.
8090         * config/avr/avr.md (reload_in<mode>): Remove insns.
8091         (adjust_len) [lpm]: Remove insn attribute value.
8092         * config/avr/predicates.md (flash_operand): Remove insn predicate.
8094 2016-07-21  Bernd Edlinger  <bernd.edlinger@hotmail.de>
8096         PR middle-end/71876
8097         * builtin-attrs.def (ATTR_RT_NOTHROW_LEAF_LIST): New return twice
8098         attribute.
8099         * builtins.def (BUILT_IN_SETJMP): Use ATTR_RT_NOTHROW_LEAF_LIST here.
8100         * calls.c (special_function_p): Remove the special handling of the
8101         "__builtin_" prefix.
8103 2016-07-21  Bernd Edlinger  <bernd.edlinger@hotmail.de>
8105         PR middle-end/71876
8106         * calls.c (gimple_maybe_alloca_call_p): New function.  Return true
8107         if STMT may be an alloca call.
8108         (gimple_alloca_call_p, alloca_call_p): Return only true for the
8109         builtin alloca call.
8110         * calls.h (gimple_maybe_alloca_call_p): New function.
8111         * tree-inline.c (inline_forbidden_p_stmt): Use
8112         gimple_maybe_alloca_call_p here.
8114 2016-07-21  David Malcolm  <dmalcolm@redhat.com>
8116         * spellcheck-tree.c (best_macro_match::best_macro_match):
8117         Explictly specify the template arguments when invoking the base
8118         class constructor, to help older C++ compilers.
8120 2016-07-21  Jakub Jelinek  <jakub@redhat.com>
8122         PR sanitizer/71953
8123         * asan.c (asan_dynamic_init_call): Call asan_init_shadow_ptr_types
8124         before builtin_decl_implicit.
8126 2016-07-21  James Greenhalgh  <james.greenhalgh@arm.com>
8128         * optabs.c (emit_condiitonal_move): Short circuit for identical
8129         sources.
8131 2016-07-21  James Greenhalgh  <james.greenhalgh@arm.com>
8133         * ifcvt.c (noce_if_info): New fields: speed_p, original_cost,
8134         max_seq_cost.  Removed fields: then_cost, else_cost, branch_cost.
8135         (noce_conversion_profitable_p): New.
8136         (noce_try_store_flag_constants): Use it.
8137         (noce_try_addcc): Likewise.
8138         (noce_try_store_flag_mask): Likewise.
8139         (noce_try_cmove): Likewise.
8140         (noce_try_cmove_arith): Likewise.
8141         (bb_valid_for_noce_process_p): Add to the cost parameter rather than
8142         overwriting it.
8143         (noce_convert_multiple_sets): Move cost model to here, from...
8144         (bb_ok_for_noce_convert_multiple_sets) ...here.
8145         (noce_process_if_block): Update calls for above changes.
8146         (noce_find_if_block): Record new noce_if_info parameters.
8148 2016-07-21  James Greenhalgh  <james.greenhalgh@arm.com>
8150         * target.def (max_noce_ifcvt_seq_cost): New.
8151         * doc/tm.texi.in (TARGET_MAX_NOCE_IFCVT_SEQ_COST): Document it.
8152         * doc/tm.texi: Regenerate.
8153         * targhooks.h (default_max_noce_ifcvt_seq_cost): New.
8154         * targhooks.c (default_max_noce_ifcvt_seq_cost): New.
8155         * params.def (PARAM_MAX_RTL_IF_CONVERSION_PREDICTABLE_COST): New.
8156         (PARAM_MAX_RTL_IF_CONVERSION_UNPREDICTABLE_COST): Likewise.
8157         * doc/invoke.texi: Document new params.
8159 2016-07-21  Richard Biener  <rguenther@suse.de>
8161         PR tree-optimization/71947
8162         * tree-vrp.c (extract_range_from_assert): Singleton symbolic
8163         ranges have useful limit_vr information.
8165 2016-07-21  Richard Biener  <rguenther@suse.de>
8167         * function-tests.c (build_trivial_generic_function): Set
8168         BLOCK_SUPERCONTEXT of DECL_INITIAL.
8169         * omp-low.c (create_omp_child_function): Likewise.
8170         (grid_expand_target_grid_body): Likewise.
8171         * cgraphunit.c (init_lowered_empty_function): Likewise.
8172         (cgraph_node::expand_thunk): Likewise.
8173         * tree-parloops.c (create_loop_fn): Likewise.
8174         * ipa.c (cgraph_build_static_cdtor_1): Likewise.
8176 2016-07-21  Prathamesh Kulkarni  <prathamesh.kulkarni@linaro.org>
8178         * tree-ssa-strlen.c (strlen_dom_walker::before_dom_children): Fix typo
8179         in comment.
8181 2016-07-21  Georg-Johann Lay  <avr@gjlay.de>
8183         * config/avr/avr.md (any_extract, any_shiftrt): New code iterators.
8184         (*insv.extract, *insv.shiftrt, *insv.not-bit.0, *insv.not-bit.7)
8185         (*insv.xor-extract, *insv.xor1-bit.0): New insns.
8186         (adjust_len) [insv_notbit, insv_notbit_0, insv_notbit_7]: New
8187         values for insn attribute.
8188         * config/avr/avr.c (avr_out_insert_notbit): New function.
8189         (avr_adjust_insn_length): Handle ADJUST_LEN_INSV_NOTBIT,
8190         ADJUST_LEN_INSV_NOTBIT_0/_7.
8191         * config/avr/avr-protos.h (avr_out_insert_notbit): New proto.
8193 2016-07-21  Bin Cheng  <bin.cheng@arm.com>
8195         * tree-chrec.c (convert_affine_scev): New parameter.  Pass new arg.
8196         (chrec_convert_1, chrec_convert): Ditto.
8197         * tree-chrec.h (chrec_convert, convert_affine_scev): New parameter.
8198         * tree-scalar-evolution.c (interpret_rhs_expr): Pass new arg.
8199         * tree-vrp.c (adjust_range_with_scev): Ditto.
8200         * tree-ssa-loop-niter.c (idx_infer_loop_bounds): Ditto.
8201         (scev_var_range_cant_overflow): New function.
8202         (scev_probably_wraps_p): New parameter.  Call above function.
8203         * tree-ssa-loop-niter.h (scev_probably_wraps_p): New parameter.
8205 2016-07-21  Bin Cheng  <bin.cheng@arm.com>
8207         * tree-ssa-loop-niter.c (number_of_iterations_lt_to_ne): Clean up
8208         by removing computation of may_be_zero.
8210 2016-07-21  Jakub Jelinek  <jakub@redhat.com>
8212         * tree-object-size.c (unknown): Use HOST_WIDE_INT_M1U instead of -1.
8214 2016-07-21  Andrew Sutton  <andrew.n.sutton@gmail.com>
8216         Improving concepts performance and diagnostics.
8217         * timevar.def (TV_CONSTRAINT_SAT, TV_CONSTRAINT_SUB): New time vars
8218         for constraint satisfaction and subsumption.
8219         * timevar.h (auto_timevar): New constructor that matches the push/pop
8220         pattern of usage in pt.c.
8222 2016-07-20  Uros Bizjak  <ubizjak@gmail.com>
8224         * hwint.h (HOST_WIDE_INT_0): New define.
8225         (HOST_WIDE_INT_0U): Ditto.
8226         * double-int.c: Use HOST_WIDE_INT_0 instead of (HOST_WIDE_INT) 0.
8227         * dse.c: Use HOST_WIDE_INT_0U instead of (unsigned HOST_WIDE_INT) 0.
8228         * simplify-rtx.c: Ditto.
8229         * tree-object-size.c: Ditto.
8231 2016-07-20  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
8233         * config/s390/s390.c (s390_encode_section_info): Remove mode size
8234         check.
8236 2016-07-20  Uros Bizjak  <ubizjak@gmail.com>
8238         * cse.c: Use HOST_WIDE_INT_M1 instead of ~(HOST_WIDE_INT) 0.
8239         * combine.c: Use HOST_WIDE_INT_M1U instead of
8240         ~(unsigned HOST_WIDE_INT) 0.
8241         * double-int.h: Ditto.
8242         * dse.c: Ditto.
8243         * dwarf2asm.c:Ditto.
8244         * expmed.c: Ditto.
8245         * genmodes.c: Ditto.
8246         * match.pd: Ditto.
8247         * read-rtl.c: Ditto.
8248         * tree-ssa-loop-ivopts.c: Ditto.
8249         * tree-ssa-loop-prefetch.c: Ditto.
8250         * tree-vect-generic.c: Ditto.
8251         * tree-vect-patterns.c: Ditto.
8252         * tree.c: Ditto.
8254 2016-07-20  Georg-Johann Lay  <avr@gjlay.de>
8256         * gcc/config/avr.c (avr_legitimize_address) [AVR_TINY]: Force
8257         constant addresses outside [0,0xc0] into a register.
8258         (avr_out_movhi_r_mr_reg_no_disp_tiny): Pass insn.  And handle
8259         cases where the base address register is unused after.
8260         (avr_out_movhi_r_mr_reg_disp_tiny): Same.
8261         (avr_out_movhi_mr_r_reg_disp_tiny): Same.
8262         (avr_out_store_psi_reg_disp_tiny): Same.
8264 2016-07-20  Georg-Johann Lay  <avr@gjlay.de>
8266         Implement attribute progmem on reduced Tiny cores by adding
8267         flash offset 0x4000 to respective symbols.
8269         PR target/71948
8270         * doc/extend.texi (AVR Variable Attributes) [progmem]: Add
8271         documentation how it works on reduced Tiny cores.
8272         (AVR Named Address Spaces): No support for reduced Tiny.
8273         * config/avr/avr.c (AVR_SYMBOL_FLAG_TINY_PM): New macro.
8274         (avr_address_tiny_pm_p): New static function.
8275         (avr_print_operand_address) [AVR_TINY]: Add AVR_TINY_PM_OFFSET
8276         if the address is in progmem.
8277         (avr_assemble_integer): Same.
8278         (avr_encode_section_info) [AVR_TINY]: Set AVR_SYMBOL_FLAG_TINY_PM
8279         for symbol_ref in progmem.
8280         * config/avr/avr.h (AVR_TINY_PM_OFFSET): New macro.
8281         * config/avr/avr-c.c (avr_cpu_cpp_builtins): Use it instead of
8282         magic 0x4000 when built-in def'ing __AVR_TINY_PM_BASE_ADDRESS__.
8284 2016-07-20  Patrick Palka  <ppalka@gcc.gnu.org>
8286         * configure.ac (thin_archive_support): New variable.  AC_SUBST it.
8287         * configure: Regenerate.
8288         * Makefile.in (THIN_ARCHIVE_SUPPORT): New variable.
8289         (USE_THIN_ARCHIVES): New variable.
8290         (libbackend.a): If USE_THIN_ARCHIVES then pass T to ar to build
8291         this archive as a thin archive.
8293 2016-07-20  David Malcolm  <dmalcolm@redhat.com>
8295         * diagnostic-show-locus.c (diagnostic_show_locus): If this is the
8296         same location as last time, don't skip if we have fix-it hints.
8297         Clarify the skipping logic by converting it from one "if" clause
8298         to repeated "if" clauses.
8299         * spellcheck-tree.c: Include "cpplib.h".
8300         (find_closest_macro_cpp_cb): Move here from c/c-decl.c.
8301         (best_macro_match::best_macro_match): New constructor.
8302         * spellcheck-tree.h (struct edit_distance_traits<cpp_hashnode *>):
8303         Move here from c/c-decl.c.
8304         (class best_macro_match): Move here from c/c-decl.c, converting
8305         from a typedef to a subclass, gaining a ctor.
8307 2016-07-20  Georg-Johann Lay  <avr@gjlay.de>
8309         * config/avr/avr-protos.h (avr_addr_space_supported_p): New prototype.
8310         * config/avr/avr.c (TARGET_ADDR_SPACE_DIAGNOSE_USAGE): New hook
8311         define...
8312         (avr_addr_space_diagnose_usage): ...and implementation.
8313         (avr_addr_space_supported_p): New function.
8314         (avr_nonconst_pointer_addrspace, avr_pgm_check_var_decl): Only
8315         report bad address space usage if that space is supported.
8316         (avr_insert_attributes): Same.  No more complain about unsupported
8317         address spaces.
8318         * config/avr/avr-c.c (tm_p.h): Include it.
8319         (avr_cpu_cpp_builtins): Only define addr-space related built-in
8320         macro if avr_addr_space_supported_p.
8322 2016-07-20  Alexander Monakov  <amonakov@ispras.ru>
8324         * config/nvptx/nvptx.c (nvptx_option_override): Do not set
8325         flag_toplevel_reorder.
8327 2016-07-20  David Malcolm  <dmalcolm@redhat.com>
8329         * gcc-rich-location.c
8330         (gcc_rich_location::add_fixit_misspelled_id): New overload, taking
8331         a const char *.
8332         * gcc-rich-location.h
8333         (gcc_rich_location::add_fixit_misspelled_id): Likewise.
8335 2016-07-20  Georg-Johann Lay  <avr@gjlay.de>
8337         * target.def (addr_space): Add new diagnose_usage to hook vector.
8338         * targhooks.c (default_addr_space_diagnose_usage): Add default
8339         implementation and...
8340         * targhooks.h (default_addr_space_diagnose_usage): ... its prototype.
8341         * c/c-parser.c (c_lex_one_token) [CPP_NAME]: If the token
8342         is some address space, call targetm.addr_space.diagnose_usage.
8343         * doc/tm.texi.in (Named Address Spaces): Add anchor for
8344         TARGET_ADDR_SPACE_DIAGNOSE_USAGE documentation.
8345         * doc/tm.texi: Regenerate.
8347 2016-07-20  Martin Liska  <mliska@suse.cz>
8349         PR middle-end/71898
8350         * graphite-isl-ast-to-gimple.c (later_of_the_two):
8351         Properly handly PHI stmts.
8353 2016-07-20  Bin Cheng  <bin.cheng@arm.com>
8355         PR tree-optimization/71503
8356         PR tree-optimization/71683
8357         * tree-if-conv.c (gen_phi_arg_condition): Record true predicate
8358         and break.
8360 2016-07-20  Martin Liska  <mliska@suse.cz>
8362         * doc/invoke.texi (-fipa-ra): Document when the option is
8363         disabled. Fix a typo.
8365 2016-07-20  Martin Liska  <mliska@suse.cz>
8367         * Makefile.in: Include fibonacci_heap.c
8368         * fibonacci_heap.c: New file.
8369         * fibonacci_heap.h (fibonacci_heap::insert): Use insert_node.
8370         (fibonacci_heap::union_with): Fix deletion of the second heap.
8371         * selftest-run-tests.c (selftest::run_tests): Incorporate
8372         fibonacci heap tests.
8373         * selftest.h: Declare fibonacci_heap_c_tests.
8375 2016-07-20  Martin Liska  <mliska@suse.cz>
8377         * selftest-run-tests.c (selftest::run_tests): New function.
8378         * selftest.h (sreal_c_tests): Declare.
8379         * sreal.c (sreal_verify_basics): New function.
8380         (verify_aritmetics): Likewise.
8381         (sreal_verify_arithmetics): Likewise.
8382         (verify_shifting): Likewise.
8383         (sreal_verify_shifting): Likewise.
8384         (void sreal_c_tests): Likewise.
8386 2016-07-19  Jakub Jelinek  <jakub@redhat.com>
8388         PR rtl-optimization/71916
8389         * cfgrtl.c (contains_no_active_insn_p): Return false also for
8390         bb which have a single succ fake edge.
8392 2016-07-19  Aldy Hernandez  <aldyh@redhat.com>
8394         PR debug/71855
8395         * dwarf2out.c (gen_subprogram_die): Only call
8396         gen_unspecified_parameters_die while dumping early dwarf.
8398 2016-07-19  Jakub Jelinek  <jakub@redhat.com>
8400         PR middle-end/71874
8401         * gimple-fold.c (fold_builtin_memory_op): Use
8402         get_addr_base_and_unit_offset instead of get_ref_base_and_extent.
8404 2016-07-19  Uros Bizjak  <ubizjak@gmail.com>
8406         * builtins.c: Use HOST_WIDE_INT_1 instead of (HOST_WIDE_INT) 1,
8407         HOST_WIDE_INT_1U instead of (unsigned HOST_WIDE_INT) 1,
8408         HOST_WIDE_INT_M1 instead of (HOST_WIDE_INT) -1 and
8409         HOST_WIDE_INT_M1U instead of (unsigned HOST_WIDE_INT) -1.
8410         * combine.c: Ditto.
8411         * cse.c: Ditto.
8412         * dojump.c: Ditto.
8413         * double-int.c: Ditto.
8414         * dse.c: Ditto.
8415         * dwarf2out.c: Ditto.
8416         * expmed.c: Ditto.
8417         * expr.c: Ditto.
8418         * fold-const.c: Ditto.
8419         * function.c: Ditto.
8420         * fwprop.c: Ditto.
8421         * genmodes.c: Ditto.
8422         * hwint.c: Ditto.
8423         * hwint.h: Ditto.
8424         * ifcvt.c: Ditto.
8425         * loop-doloop.c: Ditto.
8426         * loop-invariant.c: Ditto.
8427         * loop-iv.c: Ditto.
8428         * match.pd: Ditto.
8429         * optabs.c: Ditto.
8430         * real.c: Ditto.
8431         * reload.c: Ditto.
8432         * rtlanal.c: Ditto.
8433         * simplify-rtx.c: Ditto.
8434         * stor-layout.c: Ditto.
8435         * toplev.c: Ditto.
8436         * tree-ssa-loop-ivopts.c: Ditto.
8437         * tree-vect-generic.c: Ditto.
8438         * tree-vect-patterns.c: Ditto.
8439         * tree.c: Ditto.
8440         * tree.h: Ditto.
8441         * ubsan.c: Ditto.
8442         * varasm.c: Ditto.
8443         * wide-int-print.cc: Ditto.
8444         * wide-int.cc: Ditto.
8445         * wide-int.h: Ditto.
8447 2016-07-19  David Malcolm  <dmalcolm@redhat.com>
8449         * selftest.c (selftest::assert_streq): Handle NULL values of
8450         val_actual and val_expected.
8452 2016-07-19  Martin Jambor  <mjambor@suse.cz>
8454         PR fortran/71688
8455         * trans-decl.c (gfc_generate_function_code): Use cgraph_get_create_node
8456         rather than cgraph_create_node to get a call graph node.
8458 2016-07-19  Richard Biener  <rguenther@suse.de>
8460         * gimple-fold.c (get_base_constructor): Add VIEW_CONVERT case,
8461         handle all tcc_constant bases and valueize SSA names.
8462         * tree-ssa-sccvn.c (fully_constant_vn_reference_p): Handle
8463         tcc_constant bases.
8465 2016-07-19  David Malcolm  <dmalcolm@redhat.com>
8467         * function-tests.c (selftest::verify_three_block_rtl_cfg): Verify
8468         the flags of the exit block and bb2, not just the entry block.
8470 2016-07-19  Richard Biener  <rguenther@suse.de>
8472         PR tree-optimization/71901
8473         * tree-ssa-sccvn.h (struct vn_reference_op_struct): Add
8474         align member, group stuff with the bitfield.
8475         (vn_ref_op_align_unit): New inline.
8476         * tree-ssa-sccvn.c (copy_reference_ops_from_ref): For ARRAY_REFs
8477         record element alignment and operand 3 unchanged.
8478         (ao_ref_init_from_vn_reference): Adjust.
8479         (valueize_refs_1): Likewise.
8480         * tree-ssa-pre.c (create_component_ref_by_pieces_1): Likewise.
8482 2016-07-19  Richard Biener  <rguenther@suse.de>
8484         PR tree-optimization/71908
8485         * tree-ssa-structalias.c (get_constraint_for_component_ref): Handle
8486         symbolic constants in a more reliable way.
8488 2016-07-19  Ilya Enkovich  <ilya.enkovich@intel.com>
8490         * tree-vect-loop-manip.c (vect_update_ivs_after_vectorizer): Update
8491         comment.
8492         (vect_update_inits_of_drs): Likewise.
8493         (vect_create_cond_for_alias_checks): Likewise.
8494         * tree-vect-loop.c (vect_get_known_peeling_cost): Likewise.
8496 2016-07-19  Richard Biener  <rguenther@suse.de>
8498         PR lto/71907
8499         * lto-streamer-out.c (DFS::DFS_write_tree_body): For blocks
8500         with an abstract origin that is not an inlined function outer
8501         scope add a self-reference as abstract origin.
8502         * tree-streamer-out.c (write_ts_block_tree_pointers): Likewise.
8504 2016-07-18  Michael Meissner  <meissner@linux.vnet.ibm.com>
8506         PR target/71493
8507         * config/rs6000/rs6000.c (rs6000_function_value): Fix
8508         unintentional System V.4 structure return breakage for structures
8509         with a single floating point element.
8511 2016-07-18  Yuri Rumyantsev  <ysrumyan@gmail.com>
8513         PR tree-optimization/71734
8514         * tree-ssa-loop-im.c (ref_indep_loop_p_1): Add REF_LOOP argument which
8515         contains REF, use it to check safelen, assume that safelen value
8516         must be greater 1, fix style.
8517         (ref_indep_loop_p_2): Add REF_LOOP argument.
8518         (ref_indep_loop_p): Pass LOOP as additional argument to
8519         ref_indep_loop_p_2.
8521 2016-07-18  Dominik Vogt  <vogt@linux.vnet.ibm.com>
8523         * cfgexpand.c (expand_stack_vars): Implement synamic stack space
8524         allocation in the prologue.
8525         * explow.c (get_dynamic_stack_base): New function to return an address
8526         expression for the dynamic stack base.
8527         (get_dynamic_stack_size): New function to do the required dynamic stack
8528         space size calculations.
8529         (allocate_dynamic_stack_space): Use new functions.
8530         (align_dynamic_address): Move some code from
8531         allocate_dynamic_stack_space to new function.
8532         * explow.h (get_dynamic_stack_base, get_dynamic_stack_size): Export.
8534 2016-07-18  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
8536         * config/s390/s390.c (s390_encode_section_info): Always set
8537         notaligned marker if mode size is 0 or no MEM_ALIGN info could be
8538         found.
8540 2016-07-18  Richard Biener  <rguenther@suse.de>
8542         PR tree-optimization/71893
8543         * tree-ssa-pre.c (create_component_ref_by_pieces_1): Compensate
8544         for sizetype cast added by array_ref_element_size.
8545         * tree-ssa-sccvn.c (copy_reference_ops_from_ref): Likewise.
8547 2016-07-16  John David Anglin  <danglin@gcc.gnu.org>
8549         * config/pa/pa.c (hppa_profile_hook): Allocate stack space for
8550         register parameters.  Remove code to initialize argument pointer
8551         on TARGET_64BIT.  Optimize call to _mcount when it can be reached
8552         using a pc-relative branch.  Cleanup conditional code.
8553         * config/pa/pa.md (call_mcount): New expander.
8554         (call_mcount_nonpic): New insn.
8555         (call_mcount_pic): New insn and split.
8556         (call_mcount_pic_post_reload): New insn.
8557         (call_mcount_64bit): New insn and split.
8558         (call_mcount_64bit_post_reload): New insn.
8560 2016-07-15  Georg-Johann Lay  <avr@gjlay.de>
8562         * config/avr/predicates.md (const_m255_to_m1_operand): New.
8563         * config/avr/constraints.md (Cn8, Ca1, Co1, Yx2): New constraints.
8564         * config/avr/avr.md (add<mode>3) <ALL1>: Fix set_vzn for +/-2.
8565         (*cmphi.zero-extend.0, *cmphi.zero-extend.1)
8566         (*usum_widenqihi3, *udiff_widenqihi3)
8567         (*addhi3_zero_extend.const): New combiner insns.
8568         (andqi3, iorqi3): Provide "l" (NO_LD_REGS) alternative if
8569         just 1 bit is affected.
8570         * config/avr/avr.c (avr_out_bitop) <QImode>: Don't access xop[3].
8571         (avr_out_compare) [EQ,NE]: Tweak comparing d-regs against -1.
8573 2016-07-15  Cesar Philippidis  <cesar@codesourcery.com>
8575         * omp-low.c (lower_omp_target): Mark data clauses with
8576         GOMP_MAP_FORCE_{PRESENT,TO,FROM,TOFROM} as potentially having
8577         zero-length subarrays.
8579 2016-07-15  Richard Biener  <rguenther@suse.de>
8581         PR tree-optimization/71881
8582         * tree-loop-distribution.c (destroy_loop): Remove blocks in
8583         reverse DOM order to make debug temp generation happy.
8585 2016-07-15  Richard Biener  <rguenther@suse.de>
8587         PR tree-optimization/71887
8588         * tree-ssa-phiopt.c (absorbing_element_p): Add rhs arg and
8589         verify it is not zero for division / modulo handling.
8590         (value_replacement): Adjust.
8592 2016-07-15  Virendra Pathak  <virendra.pathak@broadcom.com>
8593             Julian Brown  <julian@codesourcery.com>
8595         * config/aarch64/aarch64-cores.def: Update vulcan COSTS.
8596         * config/aarch64/aarch64-cost-tables.h
8597         (vulcan_extra_costs): New variable.
8598         * config/aarch64/aarch64.c
8599         (vulcan_addrcost_table): Likewise.
8600         (vulcan_regmove_cost): Likewise.
8601         (vulcan_vector_cost): Likewise.
8602         (vulcan_branch_cost): Likewise.
8603         (vulcan_tunings): Likewise.
8605 2016-07-15  Alexander Monakov  <amonakov@ispras.ru>
8607         * cgraphunit.c (cgraph_order_sort_kind): New entry ORDER_VAR_UNDEF.
8608         (output_in_order): Loop over undefined variables too.  Output them
8609         via assemble_undefined_decl.  Skip variables that correspond to hard
8610         registers or have value-exprs.
8611         * varpool.c (symbol_table::output_variables): Handle undefined
8612         variables together with defined ones.
8614 2016-07-15  Richard Biener  <rguenther@suse.de>
8616         * tree-ssa-pre.c (get_representative_for): Make sure to return
8617         the value number of SSA names.
8618         (phi_translate_1): get_representative_for cannot return NULL.
8619         (do_pre_regular_insertion): Remove redundant call to
8620         fully_constant_expression.
8621         (do_pre_partial_partial_insertion): Likewise.
8623 2016-07-15  Bin Cheng  <bin.cheng@arm.com>
8625         * tree-scalar-evolution.c (simple_iv_with_niters): New funcion.
8626         (derive_simple_iv_with_niters): New function.
8627         (simple_iv): Rewrite using simple_iv_with_niters.
8628         * tree-scalar-evolution.h (simple_iv_with_niters): New decl.
8629         * tree-ssa-loop-niter.c (number_of_iterations_exit_assumptions): New
8630         function.
8631         (number_of_iterations_exit): Rewrite using above function.
8632         * tree-ssa-loop-niter.h (number_of_iterations_exit_assumptions): New
8633         Decl.
8635 2016-07-15  Richard Biener  <rguenther@suse.de>
8637         * config/i386/i386.c (ix86_builtin_vectorization_cost): Adjust
8638         vec_construct cost.
8640 2016-07-14  Jakub Jelinek  <jakub@redhat.com>
8642         PR tree-optimization/71872
8643         * tree-data-ref.c (get_references_in_stmt): Ignore references
8644         with is_gimple_constant get_base_address.
8646 2016-07-14  Thomas Preud'homme  <thomas.preudhomme@arm.com>
8648         * config/arm/arm.h (TARGET_HAVE_LDACQ): Enable for ARMv8-M Mainline.
8649         (TARGET_HAVE_LDACQD): New macro.
8650         * config/arm/sync.md (atomic_loaddi): Use TARGET_HAVE_LDACQD rather
8651         than TARGET_HAVE_LDACQ.
8652         (arm_load_acquire_exclusivedi): Likewise.
8653         (arm_store_release_exclusivedi): Likewise.
8655 2016-07-14  Thomas Preud'homme  <thomas.preudhomme@arm.com>
8657         PR rtl-optimization/71878
8658         * lra-constraints.c (match_reload): Pass information about other
8659         output operands.  Create new unique register value if matching input
8660         operand shares same register value as output operand being considered.
8661         (curr_insn_transform): Record output operands already processed.
8663 2016-07-14  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
8665         PR target/65951
8666         PR tree-optimization/70923
8667         * tree-vect-patterns.c: Include mult-synthesis.h.
8668         (target_supports_mult_synth_alg): New function.
8669         (synth_lshift_by_additions): Likewise.
8670         (apply_binop_and_append_stmt): Likewise.
8671         (vect_synth_mult_by_constant): Likewise.
8672         (target_has_vecop_for_code): Likewise.
8673         (vect_recog_mult_pattern): Use above functions to synthesize vector
8674         multiplication by integer constants.
8676 2016-07-14  Alan Modra  <amodra@gmail.com>
8678         * gcc/config/rs6000/altivec.md (altivec_mov<mode>): Disparage
8679         gpr alternatives.  Correct '*' placement on Y,r alternative.
8680         Add '*' on operand 1 of r,r alternative.
8682 2016-07-14  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
8684         * expmed.c (mult_variant, choose_mult_variant): Move declaration to...
8685         * expmed.h: ... Here.
8687 2016-07-14  Jan Hubicka  <hubicka@ucw.cz>
8689         * gimple.h (stmt_can_terminate_bb_p): New function.
8690         * tree-cfg.c (need_fake_edge_p): Rename to ...
8691         (stmt_can_terminate_bb_p): ... this; return true if stmt can
8692         throw external; handle const and pure calls.
8693         * tree-ssa-loop-niter.c (loop_only_exit_p): Use it.
8695 2016-07-14  Richard Biener  <rguenther@suse.de>
8697         PR tree-optimization/71866
8698         * tree-ssa-pre.c (get_constant_for_value_id): Remove.
8699         (do_hoist_insertion): Avoid endless recursion when we
8700         didn't insert anything because we managed to simplify
8701         things down to a constant or SSA name.
8702         (fully_constant_expression): Re-write in terms of ...
8703         * tree-ssa-sccvn.h (vn_nary_simplify): ... this.  Declare.
8704         * tree-ssa-sccvn.c (vn_nary_simplify): New wrapper around
8705         vn_nary_build_or_lookup_1.
8706         (vn_nary_build_or_lookup_1): Added flag and renamed from ...
8707         (vn_nary_build_or_lookup): ... this which now wraps it.
8709 2016-07-14  Alan Modra  <amodra@gmail.com>
8711         PR target/71733
8712         * config/rs6000/rs6000.c (rs6000_option_override_internal): Deal
8713         with p9_vector override before power9-dform override.
8715 2016-07-13  Andi Kleen  <ak@linux.intel.com>
8717         * value-prof.c (gimple_value_profile_transformations): Don't run
8718         when auto_profile is on.
8720 2016-07-13  Andi Kleen  <ak@linux.intel.com>
8722         * auto-profile.c (update_inlined_ind_target,
8723         afdo_indirect_call): Print information to dump file.
8725 2016-07-13  Andrew Burgess  <andrew.burgess@embecosm.com>
8727         * genrecog.c (special_predicate_operand_p): New function.
8728         (predicate_name): Move function.
8729         (validate_pattern): Don't warn about missing mode for all
8730         define_special_predicate predicates.
8732 2016-07-13  Bin Cheng  <bin.cheng@arm.com>
8734         * tree-vect-data-refs.c (vect_no_alias_p): New function.
8735         (vect_prune_runtime_alias_test_list): Call vect_no_alias_p to
8736         resolve alias checks which are known at compilation time.
8737         Truncate vector LOOP_VINFO_MAY_ALIAS_DDRS(loop_vinfo) if all
8738         alias checks are resolved.  Move dump info for too many runtime
8739         alias checks to here...
8740         * tree-vect-loop.c (vect_analyze_loop_2): ...From here.
8742 2016-07-13  Richard Biener  <rguenther@suse.de>
8744         PR tree-optimization/24574
8745         * tree-ssa-phiopt.c (absorbing_element_p): Pass in argument
8746         position and add shift, rotate, divison and modulo support
8747         for left zero.
8748         (value_replacement): Pass in argument position to absorbing_element_p.
8750 2016-07-13  Ilya Enkovich  <ilya.enkovich@intel.com>
8752         PR ipa/71633
8753         * ipa-inline-transform.c (inline_call): Support
8754         instrumented thunks.
8756 2016-07-13  Thomas Preud'homme  <thomas.preudhomme@arm.com>
8758         * config/arm/arm.h (TARGET_HAVE_CBZ): Define.
8759         (TARGET_IDIV): Set for all Thumb targets provided they have hardware
8760         divide feature.
8761         * config/arm/arm.md (divsi3): New unpredicable alternative for ARMv8-M
8762         Baseline.  Make initial alternative TARGET_32BIT only.
8763         (udivsi3): Likewise.
8764         * config/arm/thumb1.md (thumb1_cbz): New define_insn.
8765         * doc/sourcebuild.texi (arm_thumb1_cbz_ok): Document new effective
8766         target.
8768 2016-07-13  Thomas Preud'homme  <thomas.preudhomme@arm.com>
8770         * config/arm/arm.h (TARGET_HAVE_MOVT): Include ARMv8-M as having MOVT.
8771         * config/arm/arm.c (arm_arch_name): (const_ok_for_op): Check MOVT/MOVW
8772         availability with TARGET_HAVE_MOVT.
8773         (thumb_legitimate_constant_p): Strip the high part of a label_ref.
8774         (thumb1_rtx_costs): Also return 0 if setting a half word constant and
8775         MOVW is available and replace (unsigned HOST_WIDE_INT) INTVAL by
8776         UINTVAL.
8777         (thumb1_size_rtx_costs): Make set of half word constant also cost 1
8778         extra instruction if MOVW is available.  Use a cost variable
8779         incremented by COSTS_N_INSNS (1) when the condition match rather than
8780         returning an arithmetic expression based on COSTS_N_INSNS.  Make
8781         constant with bottom half word zero cost 2 instruction if MOVW is
8782         available.
8783         * config/arm/arm.md (define_attr "arch"): Add v8mb.
8784         (define_attr "arch_enabled"): Set to yes if arch value is v8mb and
8785         target is ARMv8-M Baseline.
8786         (arm_movt): New unpredicable alternative for ARMv8-M Baseline.
8787         (arm_movtas_ze): Likewise.
8788         * config/arm/thumb1.md (thumb1_movdi_insn): Add ARMv8-M Baseline only
8789         alternative for constants satisfying j constraint.
8790         (thumb1_movsi_insn): Likewise.
8791         (movsi splitter for K alternative): Tighten condition to not trigger
8792         if movt is available and j constraint is satisfied.
8793         (Pe immediate splitter): Likewise.
8794         (thumb1_movhi_insn): Add ARMv8-M Baseline only alternative for
8795         constant fitting in an halfword to use MOVW.
8796         * doc/sourcebuild.texi (arm_thumb1_movt_ok): Document new ARM
8797         effective target.
8799 2016-07-13  Richard Biener  <rguenther@suse.de>
8801         PR middle-end/71104
8802         * gimplify.c (gimplify_modify_expr): Gimplify the RHS before
8803         gimplifying the LHS.  Make sure to gimplify a returning twice
8804         call LHS without using SSA names.
8806 2016-07-12  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
8808         * tree-data-ref.c (find_data_references_in_stmt): Remove
8809         unnecessary call to vec::release.
8810         (graphite_find_data_references_in_stmt): Likewise.
8811         * tree-ssa-alias.c (nonoverlapping_component_refs_of_decl_p): Likewise.
8812         * tree-vect-stmts.c (vectorizable_condition): Likewise.
8814 2016-07-12  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
8816         * cfgexpand.c (expand_used_vars): Make the type of a local
8817         variable auto_vec.
8818         * genmatch.c (lower_for): Likewise.
8819         * haifa-sched.c (haifa_sched_init): Likewise.
8820         (add_to_speculative_block): Likewise.
8821         (create_check_block_twin): Likewise.
8822         * predict.c (handle_missing_profiles): Likewise.
8823         * tree-data-ref.c (loop_nest_has_data_refs): Likewise.
8824         * tree-diagnostic.c (maybe_unwind_expanded_macro_loc): Likewise.
8825         * tree-ssa-loop-niter.c (discover_iteration_bound_by_body_walk):
8826         Likewise.
8827         (maybe_lower_iteration_bound): Likewise.
8828         * tree-ssa-sccvn.c (DFS): Likewise.
8829         * tree-stdarg.c (reachable_at_most_once): Likewise.
8830         * tree-vect-stmts.c (vectorizable_conversion): Likewise.
8831         (vectorizable_store): Likewise.
8833 2016-07-12  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
8835         * tree-ssa-sccvn.c (sccvn_dom_walker::~sccvn_dom_walker): remove.
8836         (sccvn_dom_walker): make cond_stack an auto_vec.
8838 2016-07-12  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
8840         * ree.c (struct ext_state): Make type of members auto_vec.
8841         (find_and_remove_re): Adjust.
8843 2016-07-12  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
8845         * cfgexpand.c (struct stack_vars_data): Make type of fields
8846         auto_vec.
8847         (expand_used_vars): Adjust.
8849 2016-07-12  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
8851         * ipa.c (record_cdtor_fn): Adjust.
8852         (build_cdtor_fns): Likewise.
8853         (ipa_cdtor_merge): Make static_ctors and static_dtors local
8854         variables.
8856 2016-07-12  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
8858         * genextract.c (struct accum_extract): Add constructor and make
8859         members auto_vec.
8860         (gen_insn): Adjust.
8862 2016-07-12  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
8864         * tree.c (struct free_lang_data_d): Add constructor and change
8865         types of members to ones that automatically manage resources.
8866         (fld_worklist_push): Adjust.
8867         (find_decls_types): Likewise.
8868         (find_decls_types_in_eh_region): Likewise.
8869         (free_lang_data_in_cgraph): Stop manually creating and
8870         destroying members of free_lang_data_d.
8872 2016-07-13  Uros Bizjak  <ubizjak@gmail.com>
8874         PR rtl-optimization/68961
8875         * config/i386/sse.md (movsd/movhpd to movupd peephole2s): Add new
8876         peephole variant.  Use sse_reg_operand predicates.
8878 2016-07-12  Uros Bizjak  <ubizjak@gmail.com>
8880         * config/i386/predicates.md (x86_64_immediate_operand)
8881         <case CONST_INT>: Remove unneeded truncation to DImode.
8882         <case CONST>: Ditto.
8883         (x86_64_zext_immediate_operand) <case CONST>: Ditto.
8885 2016-07-12  Michael Meissner  <meissner@linux.vnet.ibm.com>
8887         PR target/71805
8888         * config/rs6000/altivec.md (altivec_vperm_<mode>_internal):
8889         The xxperm and xxpermr instructions require that the 2nd input
8890         operand overlap with the output operand, and not the 1st.
8891         (altivec_vperm_v8hiv16qi): Likewise.
8892         (altivec_vperm_<mode>_uns_internal): Likewise.
8893         (altivec_vpermr_<mode>_internal): Likewise.
8894         (vperm_v8hiv4si): Likewise.
8895         (vperm_v16qiv8hi): Likewise.
8897 2016-07-12  Nathan Sidwell  <nathan@acm.org>
8899         * config/arm/arm.c (arm_option_override): Set MASK_SINGLE_PIC_BASE
8900         when -mno-pic-data-is-text-relative is in effect, by default.
8901         * doc/invoke.texi (mpic-data-is-text-relative): Document new
8902         behavior and clarify.
8904 2016-07-12  Martin Liska  <mliska@suse.cz>
8906         * params.def: Add avg-loop niter.
8907         * tree-ssa-loop-ivopts.c (avg_loop_niter): Use the param.
8908         * cfgloopanal.c (expected_loop_iterations_unbounded): Likewise.
8909         * doc/invoke.texi: Document the new parameter.
8911 2016-07-12  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
8913         PR middle-end/71700
8914         * expr.c (store_constructor): Mask sign-extended bits when widening
8915         sub-word constructor element at the start of a word.
8917 2016-07-12  Martin Liska  <mliska@suse.cz>
8919         * Makefile.in: Append rule for params-options.h.
8920         * params-options.h: New file.
8922 2016-07-12  Martin Liska  <mliska@suse.cz>
8924         * ira-build.c (mark_loops_for_removal): Properly iterate
8925         loops.
8927 2016-07-12  Steven Bosscher  <steven@gcc.gnu.org>
8928             Richard Biener  <rguenther@suse.de>
8930         PR tree-optimization/23286
8931         PR tree-optimization/70159
8932         * doc/invoke.texi: Document -fcode-hoisting.
8933         * common.opt (fcode-hoisting): New flag.
8934         * opts.c (default_options_table): Enable -fcode-hoisting at -O2+.
8935         * tree-ssa-pre.c (pre_stats): Add hoist_insert.
8936         (do_regular_insertion): Rename to ...
8937         (do_pre_regular_insertion): ... this and amend general comments
8938         on insertion strathegy.
8939         (do_partial_partial_insertion): Rename to ...
8940         (do_pre_partial_partial_insertion): ... this.
8941         (do_hoist_insertion): New function.
8942         (insert_aux): Take flags on whether to do PRE and/or hoist insertion
8943         and call do_hoist_insertion properly.
8944         (insert): Adjust.
8945         (pass_pre::gate): Enable also if -fcode-hoisting is enabled.
8946         (pass_pre::execute): Register hoist_insert stats.
8948 2016-07-12  Jakub Jelinek  <jakub@redhat.com>
8950         PR middle-end/71716
8951         * gimple-fold.c (optimize_atomic_compare_exchange_p): Return false
8952         for SCALAR_FLOAT_TYPE_P type of expected var, or if TYPE_PRECISION
8953         is different from mode's bitsize.  Small cleanup.
8955 2016-07-12  Richard Biener  <rguenther@suse.de>
8957         PR rtl-optimization/68961
8958         * fwprop.c (propagate_rtx): Allow SUBREGs of VEC_CONCAT and CONCAT
8959         to simplify to a non-constant.
8961 2016-07-11  Jakub Jelinek  <jakub@redhat.com>
8963         PR middle-end/71758
8964         * omp-low.c (expand_omp_target): Gimplify device.
8966         PR tree-optimization/71823
8967         * tree-vect-stmts.c (vectorizable_operation): Use vect_get_vec_defs
8968         to get vec_oprnds2 from op2.
8970 2016-07-11  Uros Bizjak  <ubizjak@gmail.com>
8972         * config/i386/predicates.md (x86_64_immediate_operand) <case CONST>:
8973         Hoist common subexpressions.
8974         (x86_64_zext_immediate_operand) <case CONST>: Ditto.
8976 2016-07-11  Pat Haugen  <pthaugen@us.ibm.com>
8978         PR target/71800
8979         * config/rs6000/rs6000.md (stfiwx): Change constraint to 'wu' to
8980         prevent generation of 'stxsiwx' on pre Power8 hardware.
8982 2016-07-11  David Malcolm  <dmalcolm@redhat.com>
8984         * input.c: Include cpplib.h.
8985         (selftest::temp_source_file): New class.
8986         (selftest::temp_source_file::temp_source_file): New ctor.
8987         (selftest::temp_source_file::~temp_source_file): New dtor.
8988         (selftest::should_have_column_data_p): New function.
8989         (selftest::test_should_have_column_data_p): New function.
8990         (selftest::temp_line_table): New class.
8991         (selftest::temp_line_table::temp_line_table): New ctor.
8992         (selftest::temp_line_table::~temp_line_table): New dtor.
8993         (selftest::test_accessing_ordinary_linemaps): Add case_ param; use
8994         it to create a temp_line_table.
8995         (selftest::assert_loceq): Only verify LOCATION_COLUMN for
8996         locations that are known to have column data.
8997         (selftest::line_table_case): New struct.
8998         (selftest::test_reading_source_line): Move tempfile handling
8999         to class temp_source_file.
9000         (ASSERT_TOKEN_AS_TEXT_EQ): New macro.
9001         (selftest::assert_token_loc_eq): New function.
9002         (ASSERT_TOKEN_LOC_EQ): New macro.
9003         (selftest::test_lexer): New function.
9004         (selftest::boundary_locations): New array.
9005         (selftest::input_c_tests): Call test_should_have_column_data_p.
9006         Loop over a test matrix of interesting values of location and
9007         default_range_bits, calling test_lexer on each case in the matrix.
9008         Move call to test_accessing_ordinary_linemaps into the matrix.
9009         * selftest.h (ASSERT_EQ): Reimplement in terms of...
9010         (ASSERT_EQ_AT): New macro.
9012 2016-07-11  H.J. Lu  <hongjiu.lu@intel.com>
9014         PR target/71801
9015         * config/i386/i386.c (timode_scalar_chain::fix_debug_reg_uses):
9016         Don't convert TImode in debug insn.
9018 2016-07-11  Bernd Edlinger  <bernd.edlinger@hotmail.de>
9020         Convert TYPE_ALIGN_OK to a TYPE_LANG_FLAG.
9021         * tree-core.h (tree_base::nothrow_flag): Adjust comment.
9022         (tree_type_common::lang_flag_7): New.
9023         (tree_type_common::spare): Reduce size.
9024         * tree.h (TYPE_ALIGN_OK): Remove.
9025         (TYPE_LANG_FLAG_7): New.
9026         (get_inner_reference): Adjust header.
9027         * print-tree.c (print_node): Adjust.
9028         * expr.c (get_inner_reference): Remove parameter keep_aligning.
9029         (get_bit_range, expand_assignment, expand_expr_addr_expr_1): Adjust
9030         calls to get_inner_reference.
9031         (expand_expr_real_1): Adjust call to get_inner_reference.  Remove
9032         handling of TYPE_ALIGN_OK.
9033         * builtins.c (get_object_alignment_2): Adjust call to
9034         get_inner_reference.  Remove handling of VIEW_CONVERT_EXPR.
9035         * emit-rtl.c (set_mem_attributes_minus_bitpos): Remove handling of
9036         TYPE_ALIGN_OK.
9037         * asan.c (instrument_derefs): Adjust calls to get_inner_reference.
9038         * cfgexpand.c (expand_debug_expr): Likewise.
9039         * dbxout.c (dbxout_expand_expr): Likewise.
9040         * dwarf2out.c (loc_list_for_address_of_addr_expr_of_indirect_ref,
9041         loc_list_from_tree, fortran_common): Likewise.
9042         * fold-const.c (optimize_bit_field_compare,
9043         decode_field_reference, fold_unary_loc, fold_comparison,
9044         split_address_to_core_and_offset): Likewise.
9045         * gimple-laddress.c (execute): Likewise.
9046         * gimple-ssa-strength-reduction.c (slsr_process_ref): Likewise.
9047         * gimplify.c (gimplify_scan_omp_clauses): Likewise.
9048         * hsa-gen.c (gen_hsa_addr): Likewise.
9049         * simplifx-rtx.c (delegitimize_mem_from_attrs): Likewise.
9050         * tsan.c (instrument_expr): Likewise.
9051         * ubsan.c (instrument_bool_enum_load, instrument_object_size): Likewise.
9052         * tree.c (verify_type_variant): Remove handling of TYPE_ALIGN_OK.
9053         * tree-affine.c (tree_to_aff_combination,
9054         get_inner_reference_aff): Adjust calls to get_inner_reference.
9055         * tree-data-ref.c (split_constant_offset_1,
9056         dr_analyze_innermost): Likewise.
9057         * tree-scalar-evolution.c (interpret_rhs_expr): Likewise.
9058         * tree-sra.c (ipa_sra_check_caller): Likewise.
9059         * tree-ssa-loop-ivopts.c (split_address_cost): Likewise.
9060         * tree-ssa-math-opts.c (find_bswap_or_nop_load,
9061         bswap_replace): Likewise.
9062         * tree-vect-data-refs.c (vect_check_gather,
9063         vect_analyze_data_refs): Likewise.
9064         * config/mips/mips.c (r10k_safe_mem_expr_p): Likewise.
9065         * config/pa/pa.c (pa_emit_move_sequence): Remove handling of
9066         TYPE_ALIGN_OK.
9068 2016-07-11  David Malcolm  <dmalcolm@redhat.com>
9070         * Makefile.in (selftest-valgrind): New phony target.
9071         * function-tests.c (selftest::build_cfg): Delete pass instances
9072         created by the test.
9073         (selftest::convert_to_ssa): Likewise.
9074         (selftest::test_expansion_to_rtl): Likewise.
9075         * tree-cfg.c (selftest::test_linear_chain): Release dominator
9076         vectors.
9077         (selftest::test_diamond): Likewise.
9079 2016-07-11  Richard Biener  <rguenther@suse.de>
9081         PR tree-optimization/71816
9082         * tree-ssa-pre.c (compute_avail): Adjust alignment of ref rather
9083         than replacing all of its operands.
9085 2016-07-11  Alan Modra  <amodra@gmail.com>
9087         * config/rs6000/rs6000.md (UNSPEC_DOLOOP): New unspec.
9088         (ctr<mode>): Add unspec.
9089         (ctr<mode>_internal*): Likewise.
9091 2016-07-08  James Bowman  <james.bowman@ftdichip.com>
9093         * config/ft32/ft32.c (ft32_elf_encode_section_info): New function.
9094         * config/ft32/ft32.h (ASM_OUTPUT_SYMBOL_REF): New function.
9096 2016-07-08  Vladimir Makarov  <vmakarov@redhat.com>
9098         PR rtl-optimization/71621
9099         * lra-constraints.c (process_alt_operands): Check combination of
9100         reg class and mode.
9102 2016-07-08  Jason Merrill  <jason@redhat.com>
9103             Richard Biener  <rguenther@suse.de>
9105         P0145: Refining Expression Order for C++.
9106         * gimplify.c (initial_rhs_predicate_for): New.
9107         (gimplfy_modify_expr): Gimplify RHS before LHS.
9109 2016-07-08  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
9111         PR target/71297
9112         * config/rs6000/rs6000-c.c (altivec_resolve_overloaded_builtin):
9113         Allow standard error handling to take over when a wrong number
9114         of arguments is presented to __builtin_vec_ld () or
9115         __builtin_vec_st ().
9117 2016-07-08  Jiong Wang  <jiong.wang@arm.com>
9119         * config/aarch64/aarch64-simd-builtins.def (smax): Remove float
9120         variants.
9121         (smin): Likewise.
9122         (fmax): New entry.
9123         (fmin): Likewise.
9124         * config/aarch64/arm_neon.h (vmaxnm_f32): Use
9125         __builtin_aarch64_fmaxv2sf.
9126         (vmaxnmq_f32): Likewise.
9127         (vmaxnmq_f64): Likewise.
9128         (vminnm_f32): Likewise.
9129         (vminnmq_f32): Likewise.
9130         (vminnmq_f64): Likewise.
9132 2016-07-08  Michael Meissner  <meissner@linux.vnet.ibm.com>
9134         PR target/71806
9135         * config/rs6000/rs6000-cpus.def (ISA_3_0_MASKS_SERVER): Do not
9136         enable -mfloat128-hardware by default.
9137         (ISA_3_0_MASKS_IEEE): New macro to give all of the VSX options
9138         that IEEE 128-bit hardware support needs.
9139         * config/rs6000/rs6000.c (rs6000_option_override_internal): If
9140         -mcpu=power9 -mfloat128, enable -mfloat128-hardware by default.
9141         Use ISA_3_0_MASKS_IEEE as the set of options that IEEE 128-bit
9142         floating point requires.
9143         * doc/invoke.texi (RS/6000 and PowerPC Options): Document
9144         -mfloat128 and -mfloat128-hardware changes.
9146 2016-07-08  Alan Hayward  <alan.hayward@arm.com>
9148         PR tree-optimization/71667
9149         * tree-vect-loop.c (vectorizable_live_operation): ignore DEBUG stmts
9151 2016-07-08  Martin Liska  <mliska@suse.cz>
9153         PR middle-end/71606
9154         * fold-const.c (fold_convertible_p): As COMPLEX_TYPE
9155         folding produces SAVE_EXPRs, thus return false for the type.
9157 2016-07-07  Martin Liska  <mliska@suse.cz>
9159         * file-find.c (remove_prefix): New function.
9160         * file-find.h (remove_prefix): Declare the function.
9161         * gcc-ar.c (main): Skip a folder of the wrapper if
9162         a wrapped binary would point to the same file.
9164 2016-07-07  Jan Hubicka  <jh@suse.cz>
9166         * tree-scalar-evolution.c (iv_can_overflow_p): export.
9167         * tree-scalar-evolution.h (iv_can_overflow_p): Declare.
9168         * tree-ssa-loop-ivopts.c (alloc_iv): Use it.
9170 2016-07-07  Ilya Enkovich  <ilya.enkovich@intel.com>
9172         PR ipa/71624
9173         * ipa-inline-analysis.c (compute_inline_parameters): Set
9174         local.can_change_signature to false for intrumentation
9175         thunk callees.
9177 2016-07-07  Thomas Preud'homme  <thomas.preudhomme@arm.com>
9179         * config/arm/arm.h (TARGET_USE_MOVT): Check MOVT/MOVW availability
9180         with TARGET_HAVE_MOVT.
9181         (TARGET_HAVE_MOVT): Define.
9182         * config/arm/arm.c (const_ok_for_op): Check MOVT/MOVW
9183         availability with TARGET_HAVE_MOVT.
9184         * config/arm/arm.md (arm_movt): Use TARGET_HAVE_MOVT to check MOVT
9185         availability.
9186         (addsi splitter): Use TARGET_THUMB && TARGET_HAVE_MOVT rather than
9187         TARGET_THUMB2.
9188         (symbol_refs movsi splitter): Remove TARGET_32BIT check.
9189         (arm_movtas_ze): Use TARGET_HAVE_MOVT to check MOVT availability.
9190         * config/arm/constraints.md (define_constraint "j"): Use
9191         TARGET_HAVE_MOVT to check MOVT availability.
9193 2016-07-07  Thomas Preud'homme  <thomas.preudhomme@arm.com>
9195         * config/arm/arm-protos.h: Reindent FL_FOR_* macro definitions.
9197 2016-07-07  Thomas Preud'homme  <thomas.preudhomme@arm.com>
9199         * config/arm/arm-arches.def (armv8-m.base): Define new architecture.
9200         (armv8-m.main): Likewise.
9201         (armv8-m.main+dsp): Likewise.
9202         * config/arm/arm-protos.h (FL_FOR_ARCH8M_BASE): Define.
9203         (FL_FOR_ARCH8M_MAIN): Likewise.
9204         * config/arm/arm-tables.opt: Regenerate.
9205         * config/arm/bpabi.h: Add armv8-m.base, armv8-m.main and
9206         armv8-m.main+dsp to BE8_LINK_SPEC.
9207         * config/arm/arm.h (TARGET_HAVE_LDACQ): Exclude ARMv8-M.
9208         (enum base_architecture): Add BASE_ARCH_8M_BASE and BASE_ARCH_8M_MAIN.
9209         * config/arm/arm.c (arm_arch_name): Increase size to work with ARMv8-M
9210         Baseline and Mainline.
9211         (arm_option_override_internal): Also disable arm_restrict_it when
9212         !arm_arch_notm.  Update comment for -munaligned-access to also cover
9213         ARMv8-M Baseline.
9214         (arm_file_start): Increase buffer size for printing architecture name.
9215         * doc/invoke.texi: Document architectures armv8-m.base, armv8-m.main
9216         and armv8-m.main+dsp.
9217         (mno-unaligned-access): Clarify that this is disabled by default for
9218         ARMv8-M Baseline architectures as well.
9220 2016-07-07  Thomas Preud'homme  <thomas.preudhomme@arm.com>
9222         * config/arm/elf.h: Use __ARM_ARCH_ISA_THUMB and __ARM_ARCH_ISA_ARM to
9223         decide whether to prevent some libgcc routines being included for some
9224         multilibs rather than __ARM_ARCH_6M__ and add comment to indicate the
9225         link between this condition and the one in
9226         libgcc/config/arm/lib1func.S.
9228 2016-07-07  Richard Biener  <rguenther@suse.de>
9230         * tree-ssa-pre.c: Include alias.h.
9231         (compute_avail): If we have multiple VN_REFERENCEs with the
9232         same hashtable entry adjust that to make it a valid replacement
9233         for all of them with respect to alignment and aliasing
9234         when doing insertion.
9235         * tree-ssa-sccvn.h (vn_reference_operands_for_lookup): Declare.
9236         * tree-ssa-sccvn.c (vn_reference_operands_for_lookup): New function.
9238 2016-07-06  Segher Boessenkool  <segher@kernel.crashing.org>
9240         PR target/70098
9241         PR target/71763
9242         * config/rs6000/rs6000.md (*ctr<mode>_internal1, *ctr<mode>_internal2,
9243         *ctr<mode>_internal5, *ctr<mode>_internal6): Add *wi to the output
9244         constraint.
9246 2016-07-06  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
9248         * var-tracking.c (struct adjust_mem_data): Make side_effects a vector.
9249         (adjust_mems): Adjust.
9250         (adjust_insn): Likewise.
9251         (prepare_call_arguments): Likewise.
9253 2016-07-06  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
9255         * gcse.c (struct ls_expr): Make stores field a vector.
9256         (ldst_entry): Adjust.
9257         (free_ldst_entry): Likewise.
9258         (print_ldst_list): Likewise.
9259         (compute_ld_motion_mems): Likewise.
9260         (update_ld_motion_stores): Likewise.
9262 2016-07-06  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
9264         * gcse.c (struct ls_expr): Remove loads field.
9265         (ldst_entry): Adjust.
9266         (free_ldst_entry): Likewise.
9267         (print_ldst_list): Likewise.
9268         (compute_ld_motion_mems): Likewise.
9270 2016-07-06  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
9272         * store-motion.c (struct st_expr): Make antic_stores a vector.
9273         (st_expr_entry): Adjust.
9274         (free_st_expr_entry): Likewise.
9275         (print_store_motion_mems): Likewise.
9276         (find_moveable_store): Likewise.
9277         (compute_store_table): Likewise.
9278         (remove_reachable_equiv_notes): Likewise.
9279         (replace_store_insn): Likewise.
9280         (build_store_vectors): Likewise.
9282 2016-07-06  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
9284         * config/arm/driver-arm.c (arm_cpu_table): Add entries for cortex-a32,
9285         cortex-a35, cortex-a53, cortex-a57, cortex-a72, cortex-a73.
9287 2016-07-06  Yuri Rumyantsev  <ysrumyan@gmail.com>
9289         PR tree-optimization/71518
9290         * tree-vect-data-refs.c (vect_compute_data_ref_alignment): Adjust
9291         misalign also for outer loops with negative step.
9293 2016-07-06  Wilco Dijkstra  <wdijkstr@arm.com>
9295         * config/arm/cortex-a53.md: Use final_presence_set for in-order.
9296         (cortex_a53_shift): Add mov_shift.
9297         (cortex_a53_shift_reg): Add new reservation for register shifts.
9298         (cortex_a53_alu): Remove bfm.
9299         (cortex_a53_alu_shift): Add bfm, remove mov_shift.
9300         (cortex_a53_alu_extr): Add new reservation for EXTR.
9301         (bypasses): Improve bypass modelling.
9303 2016-07-06  Senthil Kumar Selvaraj  <senthil_kumar.selvaraj@atmel.com>
9305         PR target/50739
9306         * config/avr/avr.c (avr_asm_select_section): Strip off
9307         SECTION_DECLARED from flags when calling get_section.
9309 2016-07-06  Richard Sandiford  <richard.sandiford@arm.com>
9311         * tree-vectorizer.h (vect_memory_access_type): Add
9312         VMAT_INVARIANT, VMAT_CONTIGUOUS_DOWN and VMAT_CONTIGUOUS_REVERSED.
9313         * tree-vect-stmts.c (compare_step_with_zero): New function.
9314         (perm_mask_for_reverse): Move further up file.
9315         (get_group_load_store_type): Stick to VMAT_ELEMENTWISE if the
9316         step is negative.
9317         (get_negative_load_store_type): New function.
9318         (get_load_store_type): Call it.  Add an ncopies argument.
9319         (vectorizable_mask_load_store): Update call accordingly and
9320         remove tests for negative steps.
9321         (vectorizable_store, vectorizable_load): Likewise.  Handle new
9322         memory_access_types.
9324 2016-07-06  Richard Sandiford  <richard.sandiford@arm.com>
9326         * tree-vectorizer.h (vect_memory_access_type): New enum.
9327         (_stmt_vec_info): Add a memory_access_type field.
9328         (STMT_VINFO_MEMORY_ACCESS_TYPE): New macro.
9329         (vect_model_store_cost): Take an access type instead of a boolean.
9330         (vect_model_load_cost): Likewise.
9331         * tree-vect-slp.c (vect_analyze_slp_cost_1): Update calls to
9332         vect_model_store_cost and vect_model_load_cost.
9333         * tree-vect-stmts.c (vec_load_store_type): New enum.
9334         (vect_model_store_cost): Take an access type instead of a
9335         store_lanes_p boolean.  Simplify tests.
9336         (vect_model_load_cost): Likewise, but for load_lanes_p.
9337         (get_group_load_store_type, get_load_store_type): New functions.
9338         (vectorizable_store): Use get_load_store_type.  Record the access
9339         type in STMT_VINFO_MEMORY_ACCESS_TYPE.
9340         (vectorizable_load): Likewise.
9341         (vectorizable_mask_load_store): Likewise.  Replace is_store
9342         variable with vls_type.
9344 2016-07-06  Richard Sandiford  <richard.sandiford@arm.com>
9346         * tree-vectorizer.h (vect_grouped_load_supported): Add a
9347         single_element_p parameter.
9348         * tree-vect-data-refs.c (vect_grouped_load_supported): Likewise.
9349         Check the PR65518 case here rather than in vectorizable_load.
9350         * tree-vect-loop.c (vect_analyze_loop_2): Update call accordignly.
9351         * tree-vect-stmts.c (vectorizable_load): Likewise.
9353 2016-07-06  Richard Sandiford  <richard.sandiford@arm.com>
9355         * tree-vectorizer.h (gather_scatter_info): New structure.
9356         (vect_check_gather_scatter): Return a bool rather than a decl.
9357         Replace return-by-pointer arguments with a single
9358         gather_scatter_info *.
9359         * tree-vect-data-refs.c (vect_check_gather_scatter): Likewise.
9360         (vect_analyze_data_refs): Update call accordingly.
9361         * tree-vect-stmts.c (vect_mark_stmts_to_be_vectorized): Likewise.
9362         (vectorizable_mask_load_store): Likewise.  Also record the
9363         offset dt and vectype in the gather_scatter_info.
9364         (vectorizable_store): Likewise.
9365         (vectorizable_load): Likewise.
9367 2016-07-06  Richard Sandiford  <richard.sandiford@arm.com>
9369         * tree-vect-stmts.c (vect_model_store_cost): For non-SLP
9370         strided groups, use the cost of N scalar accesses instead
9371         of ncopies vector accesses.
9372         (vect_model_load_cost): Likewise.
9374 2016-07-06  Richard Sandiford  <richard.sandiford@arm.com>
9376         * tree-vect-stmts.c (vect_cost_group_size): Delete.
9377         (vect_model_store_cost): Avoid calling it.  Use first_stmt_p
9378         variable to indicate when once-per-group costs are being used.
9379         (vect_model_load_cost): Likewise.  Fix comment and misindented code.
9381 2016-07-06  Richard Sandiford  <richard.sandiford@arm.com>
9383         * tree-vect-stmts.c (vectorizable_load): Remove unnecessary
9384         peeling-for-gaps condition.
9386 2016-07-06  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
9388         * config/s390/s390.c (s390_expand_vec_init): Force initializer
9389         element to register if it doesn't match general_operand.
9391 2016-07-05  Michael Meissner  <meissner@linux.vnet.ibm.com>
9392             Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
9394         * config/rs6000/rs6000-protos.h (rs6000_split_signbit): New
9395         prototype.
9396         * config/rs6000/rs6000.c (rs6000_split_signbit): New function.
9397         * config/rs6000/rs6000.md (UNSPEC_SIGNBIT): New constant.
9398         (SIGNBIT): New mode iterator.
9399         (Fsignbit): New mode attribute.
9400         (signbit<mode>2): Change operand1 to match FLOAT128 instead of
9401         IBM128; dispatch to gen_signbit{kf,tf}2_dm for __float128
9402         when direct moves are available.
9403         (signbit<mode>2_dm): New define_insn_and_split).
9404         (signbit<mode>2_dm2): New define_insn.
9406 2016-07-05  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
9408         PR rtl-optimization/71594
9409         * ifcvt.c (noce_convert_multiple_sets): Wrap new_val or old_val
9410         into subregs of appropriate mode before trying to emit a conditional
9411         move.
9413 2016-07-05  Jan Hubicka  <jh@suse.cz>
9415         * tree-scalar-evolution.c (iv_can_overflow_p): New function.
9416         (simple_iv): Use it.
9418 2016-07-05  Jan Hubicka  <jh@suse.cz>
9420         * tree-ssa-loop-niter.c (nowrap_type_p): Use ANY_INTEGRAL_TYPE_P.
9422 2016-07-05  Jiong Wang  <jiong.wang@arm.com>
9424         * lra-constraints.c (process_alt_operands): Don't add spilling cost for
9425         "offmemok".
9427 2016-07-05  Jan Hubicka  <jh@suse.cz>
9429         * tree-scalar-evoluiton.c (simple_iv): Use nowrap_type to check if
9430         IV can overflow.
9432 2016-07-05  Richard Biener  <rguenther@suse.de>
9434         * gimple-ssa-split-paths.c (find_block_to_duplicate_for_splitting_pa):
9435         Handle empty else block.
9436         (is_feasible_trace): Likewise.
9437         (split_paths): Likewise.
9439 2016-07-05  Richard Biener  <rguenther@suse.de>
9441         * tree-loop-distribution.c (distribute_loop): Fix issue with
9442         the cost model loop.
9444 2016-07-05  Christophe Lyon  <christophe.lyon@linaro.org>
9446         * config/arm/neon-testgen.ml: Delete.
9447         * config/arm/neon.ml: Delete.
9449 2016-07-04  Jakub Jelinek  <jakub@redhat.com>
9451         PR c++/71739
9452         * tree.c (attribute_value_equal): Use get_attribute_name instead of
9453         directly using TREE_PURPOSE.
9455 2016-07-04  Jiong Wang  <jiong.wang@arm.com>
9457         * config/aarch64/aarch64.h: Rename "ARMv8.1" to "ARMv8.1-A".
9458         * config/aarch64/aarch64_neon.h: Likewise.
9459         * config/aarch64/arm_neon.h: Likewise.
9460         * config/aarch64/atomics.md: Likewise.
9461         * config/aarch64/aarch64-simd-builtins.def: Likewise.
9462         * doc/invoke.texi: Likewise.
9464 2016-07-04  Dominik Vogt  <vogt@linux.vnet.ibm.com>
9466         * config/s390/s390.md: Add "z13" cpu_facility.
9467         ("*mov<mode>cc"): Add support for z13 instructions lochi and locghi.
9468         * config/s390/predicates.md ("loc_operand"): New predicate for "load on
9469         condition" type instructions.
9471 2016-07-04  Dominik Vogt  <vogt@linux.vnet.ibm.com>
9472             Jeff Law  <law@redhat.com>
9474         * explow.c (allocate_dynamic_stack_space): Simplify knowing that
9475         MUST_ALIGN was always true and extra_align ist always BITS_PER_UNIT.
9477 2016-07-04  Yuri Rumyantsev  <ysrumyan@gmail.com>
9479         * config/i386/i386.c (ix86_expand_vec_perm): Add handle one-operand
9480         permutation for TARGET_AVX512F.
9481         (ix86_expand_vec_one_operand_perm_avx512): New function.
9482         (expand_vec_perm_1): Invoke introduced function.
9483         * tree-vect-loop.c (vect_transform_loop): Clear-up safelen value since
9484         it may be not valid after vectorization.
9486 2016-07-04  Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>
9488         PR target/63874
9489         * config/aarch64/aarch64.c (aarch64_classify_symbol): Fix
9490         typo in comment.  Only force to memory if it is a weak
9491         external reference.
9493 2016-07-04  Matthew Wahab  <matthew.wahab@arm.com>
9494             Jiong Wang  <jiong.wang@arm.com>
9496         * config/aarch64/aarch64-arches.def: Add "armv8.2-a".
9497         * config/aarch64/aarch64.h (AARCH64_FL_V8_2): New.
9498         (AARCH64_FL_F16): New.
9499         (AARCH64_FL_FOR_ARCH8_2): New.
9500         (AARCH64_ISA_8_2): New.
9501         (AARCH64_ISA_F16): New.
9502         (TARGET_FP_F16INST): New.
9503         (TARGET_SIMD_F16INST): New.
9504         * config/aarch64/aarch64-option-extensions.def ("fp16"): New entry.
9505         ("fp"): Disabling "fp" also disables "fp16".
9506         * config/aarch64/aarch64-c.c (arch64_update_cpp_builtins):
9507         Conditionally define __ARM_FEATURE_FP16_SCALAR_ARITHMETIC
9508         and __ARM_FEATURE_FP16_VECTOR_ARITHMETIC.
9509         * doc/invoke.texi (AArch64 Options): Document "armv8.2-a" and "fp16".
9511 2016-07-04  Jan Beulich  <jbeulich@suse.com>
9513         * gcc.c (default_compilers["@c-header"]): Conditionalize "-o".
9515 2016-07-01  Michael Meissner  <meissner@linux.vnet.ibm.com>
9517         PR target/71720
9518         * config/rs6000/vsx.md (vsx_splat_v4sf_internal): When splitting
9519         the insns, use an insn form that does not adjust the offset on
9520         little endian systems.
9522 2016-07-01  Jan Beulich  <jbeulich@suse.com>
9524         * varasm.c (get_variable_section): Validate initializer in
9525         named .bss-like sections.
9527 2016-07-01  Kelvin Nilsen  <kelvin@gcc.gnu.org>
9529         * config/rs6000/altivec.md (*altivec_vpermr_<mode>_internal):
9530         Exchange the order of the second and third operands in the vpermr
9531         instruction tmeplate.
9533 2016-07-01  Peter Bergner  <bergner@vnet.ibm.com>
9535         PR target/71698
9536         * config/rs6000/rs6000.c (rs6000_secondary_reload_simple_move):
9537         Disallow TDmode values.
9539 2016-07-01  Alan Modra  <amodra@gmail.com>
9541         PR rtl-optimization/71709
9542         * ira-lives.c (find_call_crossed_cheap_reg): Exit loop on arg reg
9543         being set, not referenced.
9545 2016-07-01  Yuri Rumyantsev  <ysrumyan@gmail.com>
9547         PR tree-optimization/70729
9548         * tree-vectorizer.c (adjust_simduid_builtins): Nullify safelen field
9549         of loop since it can be not valid after transformation.
9551 2016-07-01  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
9553         * config/arm/arm.c (thumb_reload_in_hi): Delete.
9554         * config/arm/arm-protos.h (thumb_reload_in_hi): Delete prototype.
9556 2016-07-01  Eric Botcazou  <ebotcazou@adacore.com>
9558         * config/arm/arm.c (arm_function_ok_for_sibcall): Add another check
9559         for NULL decl.
9561 2016-06-30  Michael Meissner  <meissner@linux.vnet.ibm.com>
9563         PR target/71677
9564         * config/rs6000/constraints.md (wY constraint): New constraint to
9565         match the requirements for the LXSD and STXSD instructions.
9566         * config/rs6000/predicates.md (offsettable_mem_14bit_operand): New
9567         predicate to match the requirements for the LXSD and STXSD
9568         instructions.
9569         * config/rs6000/rs6000.md (mov<mode>_hardfloat32, FMOVE64 case):
9570         Use constaint wY for LXSD/STXSD instructions instead of 'o' or 'Y'
9571         to make sure that the bottom 2 bits of offset are 0, the address
9572         form is offsettable, and no updating is done in the address mode.
9573         (mov<mode>_hardfloat64, FMOVE64 case): Likewise.
9574         (movdi_internal32): Likewise
9575         (movdi_internal64): Likewise.
9577 2016-06-30  Jakub Jelinek  <jakub@redhat.com>
9579         PR tree-optimization/71707
9580         * tree-ssa-strlen.c (get_stridx_plus_constant): Handle already present
9581         strinfo even for ADDR_EXPR ptr.
9583 2016-06-30  Kelvin Nilsen  <kelvin@gcc.gnu.org>
9585         * config/rs6000/altivec.md (darn_32): Change the condition to
9586         TARGET_P9_MISC instead of TARGET_MODULO.
9587         (darn_raw): Replace TARGET_MODULO with TARGET_P9_MISC in the
9588         condition expression.
9589         (darn): Replace TARGET_MODULO with TARGET_P9_MISC in the
9590         condition expression.
9591         * config/rs6000/dfp.md (UNSPEC_DTSTSFI): New unspec constant.
9592         (DFP_TEST): New code iterator.
9593         (dfptstsfi_<code>_mode>): New define_expand.
9594         (*dfp_sgnfcnc_<mode>): New define_insn.
9595         * config/rs6000/rs6000-builtin.def (BU_P9_MISC_0): Move this macro
9596         definition next to BU_P9_MISC_1 definition and change the MASK
9597         value to RS6000_BTM_P9_MISC.
9598         (BU_P9_MISC_1): Change the MASK value to RS6000_BTM_P9_MISC.
9599         (BU_P9_64BIT_MISC_0): Likewise.
9600         (BU_P9_DFP_MISC_0): New macro definition.
9601         (BU_P9_DFP_MISC_1): New macro definition.
9602         (BU_P9_DFP_MISC_2): New macro definition.
9603         (BU_P9_DFP_OVERLOAD_1): New macro definition.
9604         (BU_P9_DFP_OVERLOAD_2): New macro definition.
9605         (BU_P9_DFP_OVERLOAD_3): New macro definition.
9606         (TSTSFI_LT_DD): New BU_P9_DFP_MISC_2.
9607         (TSTSFI_LT_TD): Likewise.
9608         (TSTSFI_EQ_DD): Likewise.
9609         (TSTSFI_EQ_TD): Likewise.
9610         (TSTSFI_GT_DD): Likewise.
9611         (TSTSFI_GT_TD): Likewise.
9612         (TSTSFI_OV_DD): Likewise.
9613         (TSTSFI_OV_TD): Likewise.
9614         (TSTSFI_LT): New BU_P9_DFP_OVERLOAD_2.
9615         (TSTSFI_LT_DD): Likewise.
9616         (TSTSFI_LT_TD): Likewise.
9617         (TSTSFI_EQ): Likewise.
9618         (TSTSFI_EQ_DD): Likewise.
9619         (TSTSFI_EQ_TD): Likewise.
9620         (TSTSFI_GT): Likewise.
9621         (TSTSFI_GT_DD): Likewise.
9622         (TSTSFI_GT_TD): Likewise.
9623         (TSTSFI_OV): Likewise.
9624         (TSTSFI_OV_DD): Likewise.
9625         (TSTSFI_OV_TD): Likewise.
9626         * config/rs6000/rs6000-c.c (altivec_overloaded_builtins): Add
9627         overloaded test significance functions.
9628         * config/rs6000/rs6000-cpus.def (ISA_3_0_MASKS_SERVER): Add
9629         OPTION_MASK_P9_MISC into the representation of this mask.
9630         (POWERPC_MASKS): Add OPTION_MASK_P9_MISC into the representation
9631         of this mask.
9632         * config/rs6000/rs6000.c (rs6000_builtin_mask_calculate): Set the
9633         RS6000_BTM_P9_MISC flag in the return value if TARGET_P9_MISC is
9634         non-zero.
9635         (rs6000_expand_binop_builtin): Enforce that argument 0 of the exp
9636         argument is a 6-bit unsigned literal value if the icode argument
9637         represents a DFP test significance built-in call.
9638         (rs6000_invalid_builtin): Add support for the RS6000_BTM_P9_MISC
9639         flag used independently and in combination with the
9640         RS6000_BTM_64BIT flag.
9641         (rs6000_opt_masks): Add entry for power9-misc command-line option.
9642         (rs6000_builtin_mask_names): Add entry for power9-misc
9643         command-line option.
9644         * config/rs6000/rs6000.h: Redefine TARGET_P9_MISC as 0 if
9645         HAVE_AS_POWER9 is not a defined macro.  Define MASK_P9_MISC and
9646         RS6000_BTM_P9_MISC macros.
9647         * config/rs6000/rs6000.opt: Add support for the -mpower9-misc
9648         option and change the description of the -mpower9-vector option to
9649         enable only vector instructions, removing its erroneously claimed
9650         support for scalar instructions.
9651         * doc/extend.texi (PowerPC AltiVec Built-in Functions): Document
9652         the ISA 3.0 digital floating point test significance built-in
9653         functions.
9655 2016-06-30  Wilco Dijkstra  <wdijkstr@arm.com>
9657         * config/aarch64/aarch64.c (cortexa35_tunings):
9658         Enable AES fusion.  Use cortexa57_branch_cost.
9659         (cortexa53_tunings): Use cortexa57_branch_cost.
9660         (cortexa72_tunings): Use cortexa57_branch_cost.
9661         Use AUTOPREFETCHER_WEAK.
9662         (cortexa73_tunings): Use cortexa57_branch_cost.
9664 2016-06-30  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
9665             James Greenhalgh  <james.greenhalgh@arm.com>
9667         * config/aarch64/arm_neon.h (vcopyq_lane_f32, vcopyq_lane_f64,
9668         vcopyq_lane_p8, vcopyq_lane_p16, vcopyq_lane_s8, vcopyq_lane_s16,
9669         vcopyq_lane_s32, vcopyq_lane_s64, vcopyq_lane_u8, vcopyq_lane_u16,
9670         vcopyq_lane_u32, vcopyq_lane_u64): Reimplement in C.
9671         (vcopy_lane_f32, vcopy_lane_f64, vcopy_lane_p8, vcopy_lane_p16,
9672         vcopy_lane_s8, vcopy_lane_s16, vcopy_lane_s32, vcopy_lane_s64,
9673         vcopy_lane_u8, vcopy_lane_u16, vcopy_lane_u32, vcopy_lane_u64,
9674         vcopy_laneq_f32, vcopy_laneq_f64, vcopy_laneq_p8, vcopy_laneq_p16,
9675         vcopy_laneq_s8, vcopy_laneq_s16, vcopy_laneq_s32, vcopy_laneq_s64,
9676         vcopy_laneq_u8, vcopy_laneq_u16, vcopy_laneq_u32, vcopy_laneq_u64,
9677         vcopyq_laneq_f32, vcopyq_laneq_f64, vcopyq_laneq_p8, vcopyq_laneq_p16,
9678         vcopyq_laneq_s8, vcopyq_laneq_s16, vcopyq_laneq_s32, vcopyq_laneq_s64,
9679         vcopyq_laneq_u8, vcopyq_laneq_u16, vcopyq_laneq_u32, vcopyq_laneq_u64):
9680         New intrinsics.
9682 2016-06-30  James Greenhalgh  <james.greenhalgh@arm.com>
9683             Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
9685         * config/aarch64/aarch64-simd.md (*aarch64_simd_vec_copy_lane<mode>):
9686         New define_insn.
9687         (*aarch64_simd_vec_copy_lane_<vswap_width_name><mode>): Likewise.
9689 2016-06-30  David Malcolm  <dmalcolm@redhat.com>
9691         PR driver/71651
9692         * gcc.c (driver::build_option_suggestions): Pass "option" to
9693         add_misspelling_candidates.
9694         * opts-common.c (add_misspelling_candidates): Add "option" param;
9695         use it to avoid adding negated forms for options marked with
9696         RejectNegative.
9697         * opts.h (add_misspelling_candidates): Add "option" param.
9699 2016-06-30  Jakub Jelinek  <jakub@redhat.com>
9701         PR middle-end/71693
9702         * fold-const.c (fold_binary_loc) <case RROTATE_EXPR>: Cast
9703         TREE_OPERAND (arg0, 0) and TREE_OPERAND (arg0, 1) to type
9704         first when permuting bitwise operation with rotate.  Cast
9705         TREE_OPERAND (arg0, 0) to type when cancelling two rotations.
9707 2016-06-29  David Malcolm  <dmalcolm@redhat.com>
9709         * opts.c (handle_param): Use find_param_fuzzy to offer suggestions
9710         for misspelled param names.
9711         * params.c: Include spellcheck.h.
9712         (find_param_fuzzy): New function.
9713         * params.h (find_param_fuzzy): New prototype.
9714         * spellcheck.c (struct edit_distance_traits<const char *>): Move to...
9715         * spellcheck.h (struct edit_distance_traits<const char *>):
9716         ...here.
9718 2016-06-29  Michael Meissner  <meissner@linux.vnet.ibm.com>
9720         * config/rs6000/predicates.md (const_0_to_7_operand): New
9721         predicate, recognize 0..7.
9722         * config/rs6000/rs6000.c (rs6000_expand_vector_extract): Add
9723         support for doing extracts from V16QImode, V8HImode, V4SImode
9724         under ISA 3.0.
9725         * config/rs6000/vsx.md (VSX_EXTRACT_I): Mode iterator for ISA 3.0
9726         vector extract support.
9727         (VSX_EXTRACT_PREDICATE): Mode attribute to validate element number
9728         for ISA 3.0 vector extract.
9729         (VSX_EX): Constraints to use for ISA 3.0 vector extract.
9730         (vsx_extract_<mode>, VSX_EXTRACT_I): Add support for doing
9731         extracts of a constant element number from small integer vectors
9732         on 64-bit ISA 3.0 systems.
9733         (vsx_extract_<mode>_di): Likewise.
9734         * config/rs6000/rs6000.h (TARGET_VEXTRACTUB): New target macro to
9735         say when we can do ISA 3.0 vector extracts.
9736         * config/rs6000/rs6000.md (stfiwx): Allow DImode in Altivec
9737         registers, using the stxsiwx instruction.
9739 2016-06-29  Jim Wilson  <jim.wilson@linaro.org>
9741         * config/aarch64/aarch64-cores.def (qdf24xx): Use qdf24xx tuning.
9742         * config/aarch64/aarch64.c (qdf24xx_addrcost_table,
9743         qdf24xx_regmove_cost, qdf24xx_tunings): New.
9744         * config/arm/aarch64-cost-tables.h (qdf24xx_extra_costs): New.
9745         * config/arm/arm-cores.def (qdf24xx): Use qdf24xx tuning.
9746         * config/arm/arm.c (arm_qdf24xx_tune): New.
9748 2016-06-29  Wilco Dijkstra  <wdijkstr@arm.com>
9750         * config/aarch64/aarch64.c (cortexa53_tunings):
9751         Increase loop alignment to 8.  Set function alignment to 16.
9752         (cortexa35_tunings): Likewise.
9753         (cortexa57_tunings): Increase loop alignment to 8.
9754         (cortexa72_tunings): Likewise.
9755         (cortexa73_tunings): Likewise.
9757 2016-06-29  Matthew Wahab  <matthew.wahab@arm.com>
9759         * doc/sourcebuild.texi (Effective-Target keywords): Add entries
9760         for arm_fp16_ok and arm_fp16_hw.
9761         (Add Options): Add entries for arm_fp16, arm_fp16_ieee and
9762         arm_fp16_alternative.
9764 2016-06-29  Ilya Enkovich  <ilya.enkovich@intel.com>
9766         PR tree-optimization/71655
9767         * tree-vect-stmts.c (vectorizable_comparison): Swap definition
9768         types when swapping operands.
9770 2016-06-29  Martin Liska  <mliska@suse.cz>
9772         PR middle-end/71585
9773         * common.opt (flag_stack_protect): Mark the flag as optimization flag.
9774         * ipa-inline-transform.c (inline_call): Remove unnecessary call
9775         of build_optimization_node.
9777 2016-06-29  Yuri Rumyantsev  <ysrumyan@gmail.com>
9779         PR tree-optimization/70729
9780         * tree-ssa-loop-im.c (ref_indep_loop_p_1): Consider memory reference as
9781         independent in loops having positive safelen value.
9782         * tree-vect-loop.c (vect_transform_loop): Clear-up safelen value since
9783         it may be not valid after vectorization.
9785 2016-06-29  Jakub Jelinek  <jakub@redhat.com>
9787         PR tree-optimization/71625
9788         * tree-ssa-strlen.c (get_addr_stridx): Add PTR argument.  Assume list
9789         is sorted by ascending list->offset.  If PTR is non-NULL and there is
9790         previous strinfo, call get_stridx_plus_constant.
9791         (get_stridx): Pass exp as second argument to get_addr_stridx.
9792         (addr_stridxptr): Add missing list = list->next, so that there can be
9793         more than one entries in the list.  Bump limit from 16 to 32.  Ensure
9794         the list is sorted by ascending list->offset.
9795         (get_stridx_plus_constant): Adjust so that it can be also called with
9796         ADDR_EXPR instead of SSA_NAME as PTR.
9797         (handle_char_store): Pass NULL_TREE as second argument to
9798         get_addr_stridx.
9800 2016-06-29  Richard Biener  <rguenther@suse.de>
9802         PR rtl-optimization/68961
9803         * simplify-rtx.c (simplify_subreg): Handle VEC_CONCAT like CONCAT.
9805 2016-06-29  Richard Biener  <rguenther@suse.de>
9807         PR middle-end/71002
9808         * alias.c (component_uses_parent_alias_set_from): Handle
9809         type punning through union accesses by using the union alias set.
9810         * gimple.c (gimple_get_alias_set): Remove union type punning case.
9812 2016-07-29  Richard Biener  <rguenther@suse.de>
9814         * match.pd ((T)(T2)x -> (T)x): Remove restriction on final
9815         precision not matching mode precision.
9817 2016-06-28  John David Anglin  <danglin@gcc.gnu.org>
9819         * config/pa/pa.md (call_symref_64bit_post_reload): Don't call
9820         pa_output_arg_descriptor.
9821         (call_val_symref_64bit_post_reload): Likewise.
9822         (call_val_powf_64bit_post_reload): Likewise.
9823         (sibcall_internal_symref_64bit): Likewise.
9824         (sibcall_value_internal_symref_64bit): Likewise.
9826 2016-06-28  Jakub Jelinek  <jakub@redhat.com>
9828         PR middle-end/71626
9829         * config/i386/i386.c (ix86_expand_vector_move): For SUBREG of
9830         a constant, force its SUBREG_REG into memory or register instead
9831         of whole op1.
9833 2016-06-28  Pitchumani Sivanupandi  <pitchumani.s@atmel.com>
9835         PR target/58655
9836         * config/avr/avr.opt (-mfract-convert-truncate): Update description.
9837         * doc/invoke.texi (AVR Options): Document it.
9839 2016-06-28  Walter Lee  <walt@tilera.com>
9841         * config/tilegx/linux.h: Do not include arch/icache.h
9842         (CLEAR_INSN_CACHE): Provide inlined definition directly.
9843         * config/tilepro/linux.h: Do not include arch/icache.h
9844         (CLEAR_INSN_CACHE): Provide inlined definition directly.
9846 2016-06-28  Wilco Dijkstra  <wdijkstr@arm.com>
9848         * tree-ssa-math-opts.c (find_bswap_or_nop_1): Adjust bitnumbering
9849         for big-endian BIT_FIELD_REF.
9851 2016-06-28  Pat Haugen  <pthaugen@us.ibm.com>
9853         * config/rs6000/rs6000.md ('type' attribute): Add htmsimple/dfp types.
9854         ('size' attribute): Add '128'.
9855         Include power9.md.
9856         (*mov<mode>_hardfloat32, *mov<mode>_hardfloat64, *movdi_internal32,
9857         *movdi_internal64, *movdf_update1): Set size attribute to '64'.
9858         (add<mode>3, sub<mode>3, mul<mode>3, div<mode>3, sqrt<mode>2,
9859         copysign<mode>3, neg<mode>2_hw, abs<mode>2_hw, *nabs<mode>2_hw,
9860         *fma<mode>4_hw, *fms<mode>4_hw, *nfma<mode>4_hw, *nfms<mode>4_hw,
9861         extend<SFDF:mode><IEEE128:mode>2_hw, trunc<mode>df2_hw,
9862         *xscvqp<su>wz_<mode>, *xscvqp<su>dz_<mode>, *xscv<su>dqp_<mode>,
9863         *trunc<mode>df2_odd): Set size attribute to '128'.
9864         (*cmp<mode>_hw): Change type to veccmp and set size attribute to '128'.
9865         * config/rs6000/power6.md (power6-fp): Include dfp type.
9866         * config/rs6000/power7.md (power7-fp): Likewise.
9867         * config/rs6000/power8.md (power8-fp): Likewise.
9868         * config/rs6000/power9.md: New file.
9869         * config/rs6000/t-rs6000 (MD_INCLUDES): Add power9.md.
9870         * config/rs6000/htm.md (*tabort, *tabort<wd>c, *tabort<wd>ci,
9871         *trechkpt, *treclaim, *tsr, *ttest): Change type attribute to
9872         htmsimple.
9873         * config/rs6000/dfp.md (extendsddd2, truncddsd2, extendddtd2,
9874         trunctddd2, adddd3, addtd3, subdd3, subtd3, muldd3, multd3, divdd3,
9875         divtd3, *cmpdd_internal1, *cmptd_internal1, floatdidd2, floatditd2,
9876         ftruncdd2, fixdddi2, ftrunctd2, fixtddi2, dfp_ddedpd_<mode>,
9877         dfp_denbcd_<mode>, dfp_dxex_<mode>, dfp_diex_<mode>, dfp_dscli_<mode>,
9878         dfp_dscri_<mode>): Change type attribute to dfp.
9879         * config/rs6000/crypto.md (crypto_vshasigma<CR_char>): Change type
9880         attribute to vecsimple.
9881         * config/rs6000/rs6000.c (power9_cost): Update costs, cache size
9882         and prefetch streams.
9883         (rs6000_option_override_internal): Remove temporary code setting
9884         tuning to power8.  Don't set rs6000_sched_groups for power9.
9885         (last_scheduled_insn): Change to rtx_insn *.
9886         (divide_cnt, vec_load_pendulum): New variables.
9887         (rs6000_adjust_cost): Add Power9 to test for store->load separation.
9888         (rs6000_issue_rate): Set issue rate for Power9.
9889         (is_power9_pairable_vec_type): New.
9890         (power9_sched_reorder2): New.
9891         (rs6000_sched_reorder2): Call new function for Power9 specific
9892         reordering.
9893         (insn_must_be_first_in_group): Remove Power9.
9894         (insn_must_be_last_in_group): Likewise.
9895         (force_new_group): Likewise.
9896         (rs6000_sched_init): Fix initialization of last_scheduled_insn.
9897         Initialize divide_cnt/vec_load_pendulum.
9898         (_rs6000_sched_context, rs6000_init_sched_context,
9899         rs6000_set_sched_context): Handle context save/restore of new
9900         variables.
9902 2016-06-28  Richard Biener  <rguenther@suse.de>
9904         * tree-ssa-alias.c (nonoverlapping_component_refs_of_decl_p):
9905         Properly handle DECL_BIT_FIELD_REPRESENTATIVE occuring as
9906         COMPONENT_REF operand.
9907         (nonoverlapping_component_refs_p): Likewise.
9908         * stor-layout.c (start_bitfield_representative): Mark
9909         DECL_BIT_FIELD_REPRESENTATIVE as DECL_NONADDRESSABLE_P.
9911 2016-06-28  Jakub Jelinek  <jakub@redhat.com>
9913         * Makefile.in: Don't cat ../stage_current if it does not exist.
9915         * doc/extend.texi (__builtin_add_overflow_p): Clarify behavior when
9916         last argument is a bit-field.
9918         PR rtl-optimization/71673
9919         * internal-fn.c (expand_arith_overflow_result_store): Use
9920         OPTAB_LIB_WIDEN instead of OPTAB_DIRECT as last argument to
9921         expand_simple_binop.
9923         PR middle-end/66867
9924         * builtins.c (expand_ifn_atomic_compare_exchange_into_call,
9925         expand_ifn_atomic_compare_exchange): New functions.
9926         * internal-fn.c (expand_ATOMIC_COMPARE_EXCHANGE): New function.
9927         * tree.h (build_call_expr_internal_loc): Rename to ...
9928         (build_call_expr_internal_loc_array): ... this.  Fix up type of
9929         last argument.
9930         * internal-fn.def (ATOMIC_COMPARE_EXCHANGE): New internal fn.
9931         * predict.c (expr_expected_value_1): Handle IMAGPART_EXPR of
9932         ATOMIC_COMPARE_EXCHANGE result.
9933         * builtins.h (expand_ifn_atomic_compare_exchange): New prototype.
9934         * gimple-fold.h (optimize_atomic_compare_exchange_p,
9935         fold_builtin_atomic_compare_exchange): New prototypes.
9936         * gimple-fold.c (optimize_atomic_compare_exchange_p,
9937         fold_builtin_atomic_compare_exchange): New functions..
9938         * tree-ssa.c (execute_update_addresses_taken): If
9939         optimize_atomic_compare_exchange_p, ignore &var in 2nd argument
9940         of call when finding addressable vars, and if such var becomes
9941         non-addressable, call fold_builtin_atomic_compare_exchange.
9943 2016-06-27  Segher Boessenkool  <segher@kernel.crashing.org>
9945         PR target/71670
9946         * config/rs6000/rs6000.md (ashdi3_extswsli_dot): Use
9947         gen_ashdi3_extswsli_dot2 instead of gen_ashdi3_extswsli_dot.
9949 2016-06-27  Pat Haugen  <pthaugen@us.ibm.com>
9951         * config/rs6000/rs6000.md ('type' attribute): Add
9952         veclogical,veccmpfx,vecexts,vecmove insn types.
9953         (*abs<mode>2_fpr, *nabs<mode>2_fpr, *neg<mode>2_fpr, *extendsfdf2_fpr,
9954         copysign<mode>3_fcpsgn, trunc<mode>df2_internal1, neg<mode>2_internal,
9955         p8_fmrgow_<mode>, pack<mode>): Change type to fpsimple.
9956         (*xxsel<mode>, copysign<mode>3_hard, neg<mode>2_hw, abs<mode>2_hw,
9957         *nabs<mode>2_hw): Change type to vecmove.
9958         (*and<mode>3_internal, *bool<mode>3_internal, *boolc<mode>3_internal,
9959         *boolcc<mode>3_internal, *eqv<mode>3_internal,
9960         *one_cmpl<mode>3_internal, *ieee_128bit_vsx_neg<mode>2_internal,
9961         *ieee_128bit_vsx_abs<mode>2_internal,
9962         *ieee_128bit_vsx_nabs<mode>2_internal, extendkftf2, trunctfkf2,
9963         *ieee128_mfvsrd_64bit, *ieee128_mfvsrd_32bit, *ieee128_mtvsrd_64bit,
9964         *ieee128_mtvsrd_32bit): Change type to veclogical.
9965         (mov<mode>_hardfloat, *mov<mode>_hardfloat32, *mov<mode>_hardfloat64,
9966         *movdi_internal32, *movdi_internal64): Update insn types.
9967         * config/rs6000/vsx.md (*vsx_le_undo_permute_<mode>,
9968         vsx_extract_<mode>): Change type to veclogical.
9969         (*vsx_xxsel<mode>, *vsx_xxsel<mode>_uns): Change type to vecmove.
9970         (vsx_sign_extend_qi_<mode>, *vsx_sign_extend_hi_<mode>,
9971         *vsx_sign_extend_si_v2di): Change type to vecexts.
9972         * config/rs6000/altivec.md (*altivec_mov<mode>, *altivec_movti): Change
9973         type to veclogical.
9974         (*altivec_eq<mode>, *altivec_gt<mode>, *altivec_gtu<mode>,
9975         *altivec_vcmpequ<VI_char>_p, *altivec_vcmpgts<VI_char>_p,
9976         *altivec_vcmpgtu<VI_char>_p): Change type to veccmpfx.
9977         (*altivec_vsel<mode>, *altivec_vsel<mode>_uns): Change type to vecmove.
9978         * config/rs6000/dfp.md (*negdd2_fpr, *absdd2_fpr, *nabsdd2_fpr,
9979         negtd2, *abstd2_fpr, *nabstd2_fpr): Change type to fpsimple.
9980         * config/rs6000/40x.md (ppc405-float): Add fpsimple.
9981         * config/rs6000/440.md (ppc440-fp): Add fpsimple.
9982         * config/rs6000/476.md (ppc476-fp): Add fpsimple.
9983         * config/rs6000/601.md (ppc601-fp): Add fpsimple.
9984         * config/rs6000/603.md (ppc603-fp): Add fpsimple.
9985         * config/rs6000/6xx.md (ppc604-fp): Add fpsimple.
9986         * config/rs6000/7xx.md (ppc750-fp): Add fpsimple.
9987         (ppc7400-vecsimple): Add veclogical, vecmove, veccmpfx.
9988         * config/rs6000/7450.md (ppc7450-fp): Add fpsimple.
9989         (ppc7450-vecsimple): Add veclogical, vecmove.
9990         (ppc7450-veccmp): Add veccmpfx.
9991         * config/rs6000/8540.md (ppc8540_simple_vector): Add veclogical,
9992         vecmove.
9993         (ppc8540_vector_compare): Add veccmpfx.
9994         * config/rs6000/a2.md (ppca2-fp): Add fpsimple.
9995         * config/rs6000/cell.md (cell-fp): Add fpsimple.
9996         (cell-vecsimple): Add veclogical, vecmove.
9997         (cell-veccmp): Add veccmpfx.
9998         * config/rs6000/e300c2c3.md (ppce300c3_fp): Add fpsimple.
9999         * config/rs6000/e6500.md (e6500_vecsimple): Add veclogical, vecmove,
10000         veccmpfx.
10001         * config/rs6000/mpc.md (mpccore-fp): Add fpsimple.
10002         * config/rs6000/power4.md (power4-fp): Add fpsimple.
10003         (power4-vecsimple): Add veclogical, vecmove.
10004         (power4-veccmp): Add veccmpfx.
10005         * config/rs6000/power5.md (power5-fp): Add fpsimple.
10006         * config/rs6000/power6.md (power6-fp): Add fpsimple.
10007         (power6-vecsimple): Add veclogical, vecmove.
10008         (power6-veccmp): Add veccmpfx.
10009         * config/rs6000/power7.md (power7-fp): Add fpsimple.
10010         (power7-vecsimple): Add veclogical, vecmove, veccmpfx.
10011         * config/rs6000/power8.md (power8-fp): Add fpsimple.
10012         (power8-vecsimple): Add veclogical, vecmove, veccmpfx.
10013         * config/rs6000/rs64.md (rs64a-fp): Add fpsimple.
10014         * config/rs6000/titan.md (titan_fp): Add fpsimple.
10015         * config/rs6000/xfpu.md (fp-default, fp-addsub-s, fp-addsub-d): Add
10016         fpsimple.
10017         * config/rs6000/rs6000.c (rs6000_adjust_cost): Add TYPE_FPSIMPLE.
10019 2016-06-27  Peter Bergner  <bergner@vnet.ibm.com>
10021         PR target/71656
10022         * config/rs6000/rs6000-cpus.def (ISA_3_0_MASKS_SERVER): Add
10023         OPTION_MASK_P9_DFORM_VECTOR.
10024         * config/rs6000/rs6000.c (rs6000_option_override_internal): Do not
10025         disable -mpower9-dform-vector when using reload.
10026         (quad_address_p): Remove 'gpr_p' argument and all associated code.
10027         New 'strict' argument.  Update all callers.  Add strict addressing
10028         support.
10029         (rs6000_legitimate_offset_address_p): Remove call to
10030         virtual_stack_registers_memory_p.
10031         (rs6000_legitimize_reload_address): Add quad address support.
10032         (rs6000_legitimate_address_p): Move call to quad_address_p above
10033         call to virtual_stack_registers_memory_p.  Adjust quad_address_p args
10034         to account for new strict usage.
10035         (rs6000_output_move_128bit): Adjust quad_address_p args to account
10036         for new strict usage.
10037         * config/rs6000/predicates.md (quad_memory_operand): Likewise.
10039 2016-06-26  Uros Bizjak  <ubizjak@gmail.com>
10041         PR target/70902
10042         PR target/71453
10043         PR target/71555
10044         PR target/71596
10045         PR target/71657
10046         * config/i386/i386.c (ix86_spill_class): Disable condition to
10047         always return NO_REGS.
10049 2016-06-26  Jan Hubicka  <hubicka@ucw.cz>
10051         * predict.c: Include gimple-pretty-print.h
10052         (predicted_by_loop_heuristics_p): Check also
10053         PRED_LOOP_EXIT_WITH_RECURSION
10054         (predict_loops): Find self recursive calls and use special purpose
10055         predictors for them; dump log about decisions.
10056         (pass_profile::execute): Dump info about #of iterations.
10057         * predict.def (PRED_LOOP_EXIT_WITH_RECURSION,
10058         (PRED_LOOP_GUARD_WITH_RECURSION): New predictors.
10060 2016-06-26  John David Anglin  <danglin@gcc.gnu.org>
10062         * config/pa/pa.c (pa_output_indirect_call): Rework to combine
10063         output_asm_insn calls and shorten long lines.  Output .CALL
10064         argument descriptor using pa_output_arg_descriptor.  Add various
10065         inline $$dyncall and other optimizations.
10066         (pa_attr_length_indirect_call): Adjust ordering and lengths.
10068 2016-06-25  Jakub Jelinek  <jakub@redhat.com>
10070         PR tree-optimization/71643
10071         * tree-ssa-tail-merge.c (find_clusters_1): Ignore basic blocks with
10072         EH preds.
10074         * tree-ssa-tail-merge.c (deps_ok_for_redirect_from_bb_to_bb): Don't
10075         leak a bitmap if dep_bb is NULL.
10077         PR tree-optimization/71631
10078         * tree-ssa-reassoc.c (reassociate_bb): Pass true as last argument
10079         to rewrite_expr_tree even if negate_result, move new_lhs var
10080         declaration and initialization earlier, for powi_result set afterwards
10081         new_lhs to lhs.  For negate_result, use new_lhs instead of tmp
10082         if new_lhs != lhs, and don't shadow gsi var.
10084 2016-06-24  Jan Hubicka  <hubicka@ucw.cz>
10086         * predict.c (predict_paths_leading_to, predict_paths_leading_to_edge):
10087         Add in_loop parameter.
10088         (predict_loops): Add loop guard heuristics.
10089         * predict.def (PRED_LOOP_GUARD): New heuristics.
10091 2016-06-24  Jan Hubicka  <hubicka@ucw.cz>
10093         * predict.c: Include ipa-utils.h
10094         (tree_bb_level_prediction): Predict recursive calls.
10095         (tree_estimate_probability_bb): Skip inexpensive calls for call
10096         predictor.
10097         * predict.def (PRED_RECURSIVE_CALL): New.
10099 2016-06-24  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
10101         * config/rs6000/rs6000-builtin.def (BU_FLOAT128_2): New #define.
10102         (BU_FLOAT128_1): Likewise.
10103         (FABSQ): Likewise.
10104         (COPYSIGNQ): Likewise.
10105         (RS6000_BUILTIN_NANQ): Likewise.
10106         (RS6000_BUILTIN_NANSQ): Likewise.
10107         (RS6000_BUILTIN_INFQ): Likewise.
10108         (RS6000_BUILTIN_HUGE_VALQ): Likewise.
10109         * config/rs6000/rs6000.c (rs6000_fold_builtin): New prototype.
10110         (TARGET_FOLD_BUILTIN): New #define.
10111         (rs6000_builtin_mask_calculate): Add TARGET_FLOAT128 entry.
10112         (rs6000_invalid_builtin): Add handling for RS6000_BTM_FLOAT128.
10113         (rs6000_fold_builtin): New target hook implementation, handling
10114         folding of 128-bit NaNs and infinities.
10115         (rs6000_init_builtins): Initialize const_str_type_node; ensure all
10116         entries are filled in to avoid problems during bootstrap
10117         self-test; define builtins for 128-bit NaNs and infinities.
10118         (rs6000_opt_mask): Add entry for float128.
10119         * config/rs6000/rs6000.h (RS6000_BTM_FLOAT128): New #define.
10120         (RS6000_BTM_COMMON): Include RS6000_BTM_FLOAT128.
10121         (rs6000_builtin_type_index): Add RS6000_BTI_const_str.
10122         (const_str_type_node): New #define.
10123         * config/rs6000/rs6000.md (copysign<mode>3 for IEEE128): Convert
10124         to a define_expand that dispatches to either copysign<mode>3_soft
10125         or copysign<mode>3_hard.
10126         (copysign<mode>3_hard): Rename from copysign<mode>3.
10127         (copysign<mode>3_soft): New define_insn.
10128         * doc/extend.texi: Document new builtins.
10130 2016-06-24  Jakub Jelinek  <jakub@redhat.com>
10132         * cfgloop.c (flow_loop_dump): Cast nit to uint64_t and print it using
10133         PRIu64 instead of lu.
10135 2016-06-24  Eric Botcazou  <ebotcazou@adacore.com>
10137         PR debug/71642
10138         * tree-inline.c (remap_decl): When fixing up DECL_ORIGINAL_TYPE, just
10139         copy the type name.
10141 2016-06-24  Jakub Jelinek  <jakub@redhat.com>
10143         PR tree-optimization/71647
10144         * omp-low.c (lower_rec_input_clauses): Convert
10145         omp_clause_aligned_alignment (c) to size_type_node for the
10146         last argument of __builtin_assume_aligned.
10148 2016-06-24  H.J. Lu  <hongjiu.lu@intel.com>
10150         * configure.ac (calling ___tls_get_addr via GOT): New
10151         assembler/linker check.
10152         (HAVE_AS_IX86_TLS_GET_ADDR_GOT): New.  Defined to 1 if 32-bit
10153         assembler and linker supports calling ___tls_get_addr via GOT.
10154         Otherise, defined to 0.
10155         * config.in: Regenerated.
10156         * configure: Likewise.
10157         * config/i386/constraints.md (Yb): New constraint.
10158         * config/i386/i386.h (reg_class): Add TLS_GOTBASE_REGS.
10159         (REG_CLASS_NAMES): Likewise.
10160         (REG_CLASS_CONTENTS): Likewise.
10161         * config/i386/i386.md (*tls_global_dynamic_32_gnu): Replace
10162         the b constraint with the Yb constraint.  Call ___tls_get_addr
10163         via GOT for GNU TLS with -fno-plt if HAVE_AS_IX86_TLS_GET_ADDR_GOT
10164         is 1.
10165         (*tls_local_dynamic_base_32_gnu): Likewise.
10166         (*tls_global_dynamic_64_<mode>): Call _tls_get_addr via GOT for
10167         GNU TLS with -fno-plt if HAVE_AS_IX86_TLS_GET_ADDR_GOT is 1.
10168         (*tls_local_dynamic_base_64_<mode>): Likewise.
10170 2016-06-24  Martin Liska  <mliska@suse.cz>
10172         * cfgloop.c (flow_loop_dump): Dump average number of loop iterations.
10173         * cfgloop.h: Change 'struct loop' to 'const struct loop' for a
10174         few functions.
10175         * cfgloopanal.c (expected_loop_iterations_unbounded): Set a new
10176         argument to true if the expected number of iterations is
10177         loop-based.
10179 2016-06-24  Uros Bizjak  <ubizjak@gmail.com>
10181         * configure.ac (HAVE_AS_GOTOF_IN_DATA): Use $as_ix86_gas_32_opt to
10182         assemble for 32bit target.
10183         (HAVE_AS_IX86_TLSGDPLT): Use $as_ix86_gas_32_opt to assemble
10184         and $ld_ix86_gld_32_opt to link for 32bit target.
10185         (HAVE_AS_IX86_TLSLDMPLT): Ditto.
10186         * configure: Regenerate.
10188 2016-06-24  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
10190         * config/arm/arm.c (int_log2): Delete definition and prototype.
10191         (shift_op): Use exact_log2 instead of int_log2.
10192         (vfp3_const_double_for_fract_bits): Likewise.
10194 2016-06-24  Jakub Jelinek  <jakub@redhat.com>
10196         * internal-fn.c (expand_arith_set_overflow): New function.
10197         (expand_addsub_overflow, expand_neg_overflow, expand_mul_overflow):
10198         Use it.
10199         (expand_arith_overflow_result_store): Likewise.  Handle precision
10200         smaller than mode precision.
10201         * tree-vrp.c (extract_range_basic): For imag part, handle
10202         properly signed 1-bit precision result.
10203         * doc/extend.texi (__builtin_add_overflow): Document that last
10204         argument can't be pointer to enumerated or boolean type.
10205         (__builtin_add_overflow_p): Document that last argument can't
10206         have enumerated or boolean type.
10208 2016-06-23  Michael Meissner  <meissner@linux.vnet.ibm.com>
10209             Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
10211         * config/rs6000/predicates.md (splat_input_operand): Rework.
10212         Don't allow constants, since the insns that use this predicate
10213         don't support constants.  Constants are handled by other insns
10214         that are created via combine.  During and after register
10215         allocation, only allow indexed or indirect addresses, and not
10216         general addresses.  Only allow modes supported by the hardware.
10217         * config/rs6000/rs6000.c (xxsplitb_constant_p): Update usage
10218         comment.  Move check for using VSPLTIS<x> to a common location,
10219         instead of doing it in two different places.
10221 2016-06-23  Jocelyn Mayer  <l_indien@magic.fr>
10223         * config/i386/driver-i386.c (host_detect_local_cpu): Set
10224         PROCESSOR_PENTIUMPRO for signature_CENTAUR_ebx family >= 9.
10225         <case PROCESSOR_PENTIMUMPRO>: Pass c7 or nehemiah for
10226         signature_CENTAUR_ebx.
10228 2016-06-23  H.J. Lu  <hongjiu.lu@intel.com>
10230         PR target/66232
10231         PR target/67400
10232         * configure.ac (as_ix86_tls_ldm_opt): Renamed to ...
10233         (as_ix86_gas_32_opt): This.
10234         (ld_ix86_tls_ldm_opt): Renamed to ...
10235         (ld_ix86_gld_32_opt): This.
10236         (R_386_TLS_LDM reloc): Updated.
10237         (R_386_GOT32X reloc): New assembler/linker check.
10238         (HAVE_AS_IX86_GOT32X): New.  Defined to 1 if 32-bit assembler and
10239         linker support "jmp *_start@GOT" and "cmpl $0, bar@GOT".  Otherise,
10240         defined to 0.
10241         * config.in: Regenerated.
10242         * configure: Likewise.
10243         * config/i386/i386.c (ix86_force_load_from_GOT_p): Return
10244         true if HAVE_AS_IX86_GOT32X is 1 in 32-bit mode.
10245         (ix86_legitimate_address_p): Allow UNSPEC_GOT for -fno-plt
10246         if ix86_force_load_from_GOT_p returns true.
10247         (ix86_print_operand_address_as): Also support UNSPEC_GOT if
10248         ix86_force_load_from_GOT_p returns true.
10249         (ix86_expand_move): Generate UNSPEC_GOT in 32-bit mode to load
10250         the external function address via the GOT slot.
10251         (ix86_nopic_noplt_attribute_p): Check both TARGET_64BIT and
10252         HAVE_AS_IX86_GOT32X before returning false.
10253         (ix86_output_call_insn): Generate "%!jmp/call\t*%p0@GOT" in
10254         32-bit mode if ix86_nopic_noplt_attribute_p returns true.
10256 2016-06-23  Eric Botcazou  <ebotcazou@adacore.com>
10258         * tree-inline.c (remap_decl): Preserve DECL_ORIGINAL_TYPE invariant.
10260 2016-06-23  Andi Kleen  <ak@linux.intel.com>
10262         * Makefile.in: Regenerate.
10263         * doc/install.texi: Document autoprofiledbootstrap.
10265 2016-06-23  Andi Kleen  <ak@linux.intel.com>
10267         * config/i386/gcc-auto-profile: New file.
10269 2016-06-23  Martin Liska  <mliska@suse.cz>
10271         PR middle-end/71619
10272         * predict.c (predict_loops): Revert the hunk that was removed
10273         in r237103.
10275 2016-06-23  Jakub Sejdak  <jakub.sejdak@phoesys.com>
10277         * config.gcc: Add support for arm*-*-phoenix* targets.
10278         * config/arm/t-phoenix: New.
10279         * config/phoenix.h: New.
10281 2016-06-23  Uros Bizjak  <ubizjak@gmail.com>
10282             H.J. Lu  <hongjiu.lu@intel.com>
10284         PR target/67400
10285         * config/i386/i386-protos.h (ix86_force_load_from_GOT_p): New.
10286         * config/i386/i386.c (ix86_force_load_from_GOT_p): New function.
10287         (ix86_legitimate_constant_p): Do not allow UNSPEC_GOTPCREL if
10288         ix86_force_load_from_GOT_p returns true.
10289         (ix86_legitimate_address_p): Allow UNSPEC_GOTPCREL if
10290         ix86_force_load_from_GOT_p returns true.
10291         (ix86_print_operand_address_as): Support UNSPEC_GOTPCREL if
10292         ix86_force_load_from_GOT_p returns true.
10293         (ix86_expand_move): Load the external function address via the
10294         GOT slot if ix86_force_load_from_GOT_p returns true.
10295         * config/i386/predicates.md (x86_64_immediate_operand): Return
10296         false for SYMBOL_REFs where ix86_force_load_from_GOT_p returns true.
10297         (x86_64_zext_immediate_operand): Ditto.
10299 2016-06-22  Uros Bizjak  <ubizjak@gmail.com>
10301         * config/i386/i386.c (ix86_expand_move): Simplify SYMBOL_REF handling.
10303 2016-06-22  David Malcolm  <dmalcolm@redhat.com>
10305         PR c/70339
10306         * diagnostic-core.h (pedwarn_at_rich_loc): New prototype.
10307         * diagnostic.c (pedwarn_at_rich_loc): New function.
10308         * spellcheck.h (best_match::best_match): Add a
10309         "best_distance_so_far" optional parameter.
10310         (best_match::set_best_so_far): New method.
10311         (best_match::get_best_distance): New accessor.
10312         (best_match::get_best_candidate_length): New accessor.
10314 2016-06-22  Nick Clifton  <nickc@redhat.com>
10316         * dwarf2out.c (scompare_loc_descriptor): Use SCALAR_INT_MODE_P() in
10317         place of GET_MODE_CLASS() == MODE_INT, so that partial integer
10318         modes are accepted as well.
10319         (ucompare_loc_descriptor): Likewise.
10320         (minmax_loc_descriptor): Likewise.
10321         (clz_loc_descriptor): Likewise.
10322         (popcount_loc_descriptor): Likewise.
10323         (bswap_loc_descriptor): Likewise.
10324         (rotate_loc_descriptor): Likewise.
10325         (mem_loc_descriptor): Likewise.
10326         (loc_descriptor): Likewise.
10328 2016-06-22  David Malcolm  <dmalcolm@redhat.com>
10330         * common.opt (fdiagnostics-parseable-fixits): New option.
10331         * diagnostic.c: Include "selftest.h".
10332         (print_escaped_string): New function.
10333         (print_parseable_fixits): New function.
10334         (diagnostic_report_diagnostic): Call print_parseable_fixits.
10335         (selftest::assert_print_escaped_string): New function.
10336         (ASSERT_PRINT_ESCAPED_STRING_STREQ): New macro.
10337         (selftest::test_print_escaped_string): New function.
10338         (selftest::test_print_parseable_fixits_none): New function.
10339         (selftest::test_print_parseable_fixits_insert): New function.
10340         (selftest::test_print_parseable_fixits_remove): New function.
10341         (selftest::test_print_parseable_fixits_replace): New function.
10342         (selftest::diagnostic_c_tests): New function.
10343         * diagnostic.h (struct diagnostic_context): Add field
10344         "parseable_fixits_p".
10345         * doc/invoke.texi (Diagnostic Message Formatting Options): Add
10346         -fdiagnostics-parseable-fixits.
10347         (-fdiagnostics-parseable-fixits): New option.
10348         * opts.c (common_handle_option): Handle
10349         -fdiagnostics-parseable-fixits.
10350         * selftest-run-tests.c (selftest::run_tests): Call
10351         selftest::diagnostic_c_tests.
10352         * selftest.h (selftest::diagnostic_c_tests): New prototype.
10354 2016-06-22  Ilya Enkovich  <ilya.enkovich@intel.com>
10356         PR tree-optimization/71488
10357         * tree-vect-patterns.c (vect_recog_mask_conversion_pattern): Support
10358         comparison of boolean vectors.
10359         * tree-vect-stmts.c (vectorizable_comparison): Vectorize comparison
10360         of boolean vectors using bitwise operations.
10362 2016-06-22  Andreas Schwab  <schwab@suse.de>
10364         * config/aarch64/aarch64-protos.h (aarch64_elf_asm_named_section):
10365         Remove declaration.
10367 2016-06-22  Eric Botcazou  <ebotcazou@adacore.com>
10369         * function.c (assign_parm_setup_reg): Prevent sharing in another case.
10371 2016-06-22  Bernd Edlinger  <bernd.edlinger@hotmail.de>
10373         * config/i386/i386.c (print_reg): Emit an error message on attempt to
10374         print FLAGS_REG.
10376 2016-06-22  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
10378         * config/arm/arm.c (arm_cortex_a73_tune): New struct.
10379         * config/arm/arm-cores.def (cortex-a73): New entry.
10380         (cortex-a73.cortex-a35): Likewise.
10381         (cortex-a73.cortex-a53): Likewise.
10382         * config/arm/arm-tables.opt: Regenerate.
10383         * config/arm/arm-tune.md: Likewise.
10384         * config/arm/bpabi.h (BE8_LINK_SPEC): Handle mcpu=cortex-a73,
10385         mcpu=cortex-a73.cortex-a35 and mcpu=cortex-a73.cortex-a53.
10386         * config/arm/t-aprofile: Handle mcpu=cortex-a73,
10387         mcpu=cortex-a73.cortex-a35 and mcpu=cortex-a73.cortex-a53.
10388         * doc/invoke.texi (ARM Options): Document cortex-a73,
10389         cortex-a73.cortex-a35 and cortex-a73.cortex-a53.
10391 2016-06-22  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
10393         * config/aarch64/aarch64.c (cortexa73_tunings): New struct.
10394         * config/aarch64/aarch64-cores.def (cortex-a73): New entry.
10395         (cortex-a73.cortex-a35): Likewise.
10396         (cortex-a73.cortex-a53): Likewise.
10397         * config/aarch64/aarch64-tune.md: Regenerate.
10398         * doc/invoke.texi (AArch64 Options): Document cortex-a73,
10399         cortex-a73.cortex-a35 and cortex-a73.cortex-a53 arguments to
10400         -mcpu and -mtune.
10402 2016-06-22  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
10404         * configure.ac (gcc_cv_as_compress_debug): Remove
10405         --compress-debug-sections as extra as switch.
10406         Handle gas --compress-debug-sections=type.
10407         (gcc_cv_ld_compess_debug): Remove bogus ld_date check.
10408         Handle gld --compress-debug-sections=type.
10409         * configure: Regenerate.
10411 2016-06-21  Andrew Burgess  <andrew.burgess@embecosm.com>
10413         * bb-reorder.c (pass_partition_blocks::gate): Update comment.
10415 2016-06-21  John David Anglin  <danglin@gcc.gnu.org>
10417         * gcov-tool.c (profile_rewrite): Use int64_t instead of long long.
10418         (do_rewrite): likewise.
10420 2016-06-21  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
10422         * common/config/mep/mep-common.c: Remove.
10423         * config.gcc: Remove mep-* support.
10424         * config/mep/constraints.md: Remove.
10425         * config/mep/default.h: Remove.
10426         * config/mep/intrinsics.h: Remove.
10427         * config/mep/intrinsics.md: Remove.
10428         * config/mep/ivc2-template.h: Remove.
10429         * config/mep/mep-c5.cpu: Remove.
10430         * config/mep/mep-core.cpu: Remove.
10431         * config/mep/mep-default.cpu: Remove.
10432         * config/mep/mep-ext-cop.cpu: Remove.
10433         * config/mep/mep-intrin.h: Remove.
10434         * config/mep/mep-ivc2.cpu: Remove.
10435         * config/mep/mep-pragma.c: Remove.
10436         * config/mep/mep-protos.h: Remove.
10437         * config/mep/mep.c: Remove.
10438         * config/mep/mep.cpu: Remove.
10439         * config/mep/mep.h: Remove.
10440         * config/mep/mep.md: Remove.
10441         * config/mep/mep.opt: Remove.
10442         * config/mep/predicates.md: Remove.
10443         * config/mep/t-mep: Remove.
10444         * doc/install.texi: Remove mep-* documentation.
10445         * doc/md.texi: Likewise.
10447 2016-06-21  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
10449         * config.gcc: Remove support for avr-rtems.
10450         * config/avr/gen-avr-mmcu-specs.c: Likewise.
10451         * config/avr/rtems.h: Remove.
10452         * config/avr/t-rtems: Remove.
10454 2016-06-21  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
10456         * config.gcc: Remove m32r-rtems support.
10457         * config/m32r/rtems.h: Remove.
10459 2016-06-21  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
10461         * config.gcc: Remove h8300-rtems support.
10462         * config/h8300/rtems.h: Remove.
10463         * config/h8300/t-rtems: Remove.
10465 2016-06-21  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
10467         * config.gcc: Remove support for knetbsd.
10468         * configure.ac: Likewise.
10469         * config/i386/knetbsd-gnu.h: Remove.  * config/i386/knetbsd-gnu64.h: Remove.
10470         * config/knetbsd-gnu.h: Remove.
10471         * configure: Regenerate.
10473 2016-06-21  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
10475         * config.gcc: Remove support for openbsd 2 and 3.
10476         * config/openbsd-oldgas.h: Remove.
10478 2016-06-21  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
10480         * config.gcc: Remove interix support.
10481         * config/i386/i386-interix.h: Remove.
10482         * config/i386/interix.opt: Remove.
10483         * config/i386/t-interix: Remove.
10484         * configure: Regenerate.
10485         * configure.ac: Remove interix support.
10486         * doc/install.texi: Remove interix documentation.
10488 2016-06-21  Kelvin Nilsen  <kelvin@gcc.gnu.org>
10490         * config/rs6000/rs6000.h: Add conditional preprocessing directives
10491         to disable Power9-specific compiler features if HAVE_AS_POWER9 is
10492         not defined.
10494 2016-06-21  Eric Botcazou  <ebotcazou@adacore.com>
10496         * tree.c (verify_type_variant): Skip TYPE_SIZE and TYPE_SIZE_UNIT if
10497         they are both PLACEHOLDER_EXPRs.
10499 2016-06-21  Michael Meissner  <meissner@linux.vnet.ibm.com>
10501         * stor-layout.c (layout_type): Move setting complex MODE to
10502         layout_type, instead of setting it ahead of time by the caller.
10503         * tree.c (build_complex_type): Likewise.
10505 2016-06-21  Martin Liska  <mliska@suse.cz>
10507         * predict.c (force_edge_cold): Replace imposisble with
10508         impossible.
10510 2016-06-21  Ilya Verbin  <ilya.verbin@intel.com>
10512         * config/i386/i386.c (ix86_emit_swsqrtsf): Emit vrsqrt28ps.
10513         * config/i386/sse.md (define_expand "rsqrtv16sf2"): New.
10515 2016-06-21  Ilya Verbin  <ilya.verbin@intel.com>
10517         * config/i386/i386.c (ix86_emit_swdivsf): Emit vrcp28ps.
10519 2016-06-21  H.J. Lu  <hongjiu.lu@intel.com>
10520             Ilya Enkovich  <ilya.enkovich@intel.com>
10522         PR target/71549
10523         * config/i386/i386.c (timode_scalar_chain::fix_debug_reg_uses):
10524         New member function to convert V1TImode register to SUBREG
10525         TImode in debug insn.
10526         (timode_scalar_chain::convert_insn): Call fix_debug_reg_uses
10527         after changing register mode to V1TImode.
10529 2016-06-21  Virendra Pathak  <virendra.pathak@broadcom.com>
10531         * config/aarch64/aarch64-cores.def (vulcan): New core.
10532         * config/aarch64/aarch64-tune.md: Regenerate.
10533         * doc/invoke.texi: Document vulcan as an available option.
10535 2016-06-21  Eric Botcazou  <ebotcazou@adacore.com>
10537         * cse.c (canon_asm_operands): New function extracted from...
10538         (canonicalize_insn): ...here.  Call it to canonicalize an ASM_OPERANDS
10539         either standalone or member of a PARALLEL.
10541 2016-06-21  Georg-Johann Lay  <avr@gjlay.de>
10543         PR target/30417
10544         * config/avr/gen-avr-mmcu-specs.c (print_mcu):
10545         [*link_data_start]: Wrap -Tdata into %{!Tdata:...}.
10546         [*link_text_start]: Wrap -Ttext into %{!Ttext:...}.
10548 2016-06-21  Georg-Johann Lay  <avr@gjlay.de>
10550         PR target/71103
10551         * config/avr/avr.md (movqi): Only handle loading subreg:qi of
10552         constant addresses if can_create_pseudo_p.
10554 2016-06-21  Jakub Jelinek  <jakub@redhat.com>
10556         PR tree-optimization/71588
10557         * tree-ssa-strlen.c (valid_builtin_call): New function.
10558         (adjust_last_stmt, handle_builtin_memset, strlen_optimize_stmt): Use
10559         it.
10561 2016-06-20  Jakub Jelinek  <jakub@redhat.com>
10563         PR middle-end/71581
10564         * tree-ssa-uninit.c (warn_uninit): If EXPR and VAR are NULL,
10565         see if T isn't anonymous SSA_NAME with COMPLEX_EXPR created
10566         for conversion of scalar user var to complex type and use the
10567         underlying SSA_NAME_VAR in that case.  If EXPR is still NULL,
10568         punt.
10570         PR rtl-optimization/71591
10571         * toplev.c (toplev::run_self_tests): If no_backend, complain and
10572         don't run any tests.
10574 2016-06-20  Hans-Peter Nilsson  <hp@axis.com>
10576         PR target/71571
10577         * config/cris/cris.c (cris_asm_output_mi_thunk): Add missing "ba"
10578         delay-slot "nop" for PIC with CRIS v32.  Also add missing leading
10579         space for PIC with non-v32 and the common non-PIC "jump".
10581 2016-06-20  Jakub Jelinek  <jakub@redhat.com>
10583         PR target/71559
10584         * config/i386/i386.c (ix86_fp_cmp_code_to_pcmp_immediate): Fix up
10585         returned values and add UN*/LTGT/*ORDERED cases with values matching
10586         D operand modifier on vcmp for AVX.
10588 2016-06-20  Wilco Dijkstra  <wdijkstr@arm.com>
10590         * config/aarch64/aarch64.opt
10591         (mpc-relative-literal-loads): Rename internal option name.
10592         * config/aarch64/aarch64.c
10593         (aarch64_nopcrelative_literal_loads): Rename to
10594         aarch64_pcrelative_literal_loads.
10595         (aarch64_expand_mov_immediate): Likewise.
10596         (aarch64_secondary_reload): Likewise.
10597         (aarch64_can_use_per_function_literal_pools_p): Likewise.
10598         (aarch64_override_options_after_change_1): Rename and simplify logic.
10599         (aarch64_classify_symbol): Merge large model checks into switch,
10600         remove pc-relative load check.
10602 2016-06-20  James Greenhalgh  <james.greenhalgh@arm.com>
10604         * config/arm/aarch-cost-tables.h (cortexa53_extra_costs): Make FP
10605         costs relative to the cost of a register move.
10607 2016-06-20  James Greenhalgh  <james.greenhalgh@arm.com>
10609         * config/aarch64/arm_neon.h (vcvt_n_f64_s64): New.
10610         (vcvt_n_f64_u64): Likewise.
10611         (vcvt_n_s64_f64): Likewise.
10612         (vcvt_n_u64_f64): Likewise.
10613         (vcvt_f64_s64): Likewise.
10614         (vrecpe_f64): Likewise.
10615         (vcvt_f64_u64): Likewise.
10616         (vrecps_f64): Likewise.
10618 2016-06-20  James Greenhalgh  <james.greenhalgh@arm.com>
10620         * config/aarch64/aarch64.md
10621         (<FCVT_F2FIXED:fcvt_fixed_insn><GPF:mode>3): Add attributes to
10622         iterators.
10623         (<FCVT_FIXED2F:fcvt_fixed_insn><GPI:mode>3): Likewise.  Correct
10624         attributes.
10625         * config/aarch64/aarch64-builtins.c
10626         (aarch64_types_binop_uss_qualifiers): Delete.
10627         (TYPES_BINOP_USS): Likewise.
10628         (aarch64_types_binop_sus_qualifiers): Likewise.
10629         (TYPES_BINOP_SUS): Likewise.
10630         (aarch64_types_fcvt_from_unsigned_qualifiers): New.
10631         (TYPES_FCVTIMM_SUS): Likewise.
10632         * config/aarch64/aarch64-simd-builtins.def (scvtf): Use SHIFTIMM
10633         rather than BINOP.
10634         (ucvtf): Use FCVTIMM_SUS rather than BINOP_SUS.
10635         (fcvtzs): Use SHIFTIMM rather than BINOP.
10636         (fcvtzu): Use SHIFTIMM_USS rather than BINOP_USS.
10638 2016-06-20  James Greenhalgh  <james.greenhalgh@arm.com>
10640         * config/arm/aarch-cost-tables.h (cortexa57_extra_costs): Make FP
10641         costs relative to the cost of a register move.
10643 2016-06-20  Wilco Dijkstra  <wdijkstr@arm.com>
10645         * config/aarch64/aarch64.c (aarch64_modes_tieable_p):
10646         Allow scalar/single vector modes to be tieable.
10648 2016-06-20  Wilco Dijkstra  <wdijkstr@arm.com>
10650         * config/arm/cortex-a57.md (cortex_a57_fp_cpys): Add fcsel.
10652 2016-06-20  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
10654         * params.def (PARAM_ALIGN_LOOP_ITERATIONS): Use "alignment" instead of
10655         "alignement".
10656         * tree.h (TYPE_ALIGN): Likewise.
10658 2016-06-20  Georg-Johann Lay  <avr@gjlay.de>
10660         PR target/71103
10661         * config/avr/avr.md (movqi): Handle loading subreg:qi (const).
10663 2016-06-20  Georg-Johann Lay  <avr@gjlay.de>
10665         * config/avr/avr.c (avr_print_operand): Fix "format not a string
10666         literal" build warnings.
10667         (avr_print_operand_address): Dito.
10669 2016-06-19  David Edelsohn  <dje.gcc@gmail.com>
10671         PR target/71375
10672         * config/rs6000/aix51.h (TARGET_EXTRA_BUILTINS): Define as 0.
10673         * config/rs6000/aix43.h (TARGET_EXTRA_BUILTINS): Same.
10675 2016-06-18  John David Anglin  <danglin@gcc.gnu.org>
10677         * config/pa/pa.h (TARGET_LONG_PIC_PCREL_CALL): Remove.
10679 2016-06-18  Eric Botcazou  <ebotcazou@adacore.com>
10681         PR bootstrap/71435
10682         * reload1.c (reload): Pass 0 to finish_spills when called because
10683         update_eliminables_and_spill returns true and remove did_spill.
10684         (finish_spills): Adjust comment and document GLOBAL parameter.
10686 2016-06-17  DJ Delorie  <dj@redhat.com>
10688         PR target/71338
10689         * config/rl78/rl78-expand.c (umulqihi3): Enable for G10.
10690         * config/rl78/rl78-virtual.c (umulhi3_shift_virt): Likewise.
10691         (umulqihi3_virt): Likewise.
10692         * config/rl78/rl78-real.c (umulhi3_shift_real): Likewise.
10693         (umulqihi3_real): Likewise.
10695 2016-06-17  Martin Liska  <mliska@suse.cz>
10697         * tree-ssa-reassoc.c (transform_add_to_multiply): Use auto_vec.
10699 2016-06-17  Martin Liska  <mliska@suse.cz>
10701         * predict.def: PRED_LOOP_EXIT from 92 to 85.
10703 2016-06-17  James Greenhalgh  <james.greenhalgh@arm.com>
10705         * config/arm/arm_neon.h (vadd_f32): replace __FAST_MATH with
10706         __FAST_MATH__.
10707         (vaddq_f32): Likewise.
10708         (vmul_f32): Likewise.
10709         (vmulq_f32): Likewise.
10710         (vsub_f32): Likewise.
10711         (vsubq_f32): Likewise.
10713 2016-06-17  Bin Cheng  <bin.cheng@arm.com>
10715         PR tree-optimization/71347
10716         * tree-ssa-loop-ivopts.c (determine_group_iv_cost_address): Compute
10717         cost for all uses in group.
10719 2016-06-17  Bin Cheng  <bin.cheng@arm.com>
10721         * tree-vect-loop.c (vect_create_epilog_for_reduction): Only
10722         insert gimple seq if it's not empty.
10724 2016-06-17  Bin Cheng  <bin.cheng@arm.com>
10726         * tree-vectorizer.h (struct dr_with_seg_len): Remove class
10727         member OFFSET.
10728         * tree-vect-data-refs.c (operator ==): Handle DR_OFFSET directly,
10729         rather than OFFSET.
10730         (comp_dr_with_seg_len_pair): Ditto.
10731         (vect_prune_runtime_alias_test_list): Ditto.  Also Canonicalize
10732         struct dr_with_seg_len_pair against DR_OFFSET.
10733         * tree-vect-loop-manip.c (vect_create_cond_for_alias_checks): Handle
10734         DR_OFFSET directly.
10736 2016-06-17  Szabolcs Nagy  <szabolcs.nagy@arm.com>
10738         * config/aarch64/geniterators.sh: Handle parenthesised conditions.
10740 2016-06-16  John David Anglin  <danglin@gcc.gnu.org>
10742         * config/pa/pa.c (pa_output_pic_pcrel_sequence): New.
10743         (pa_output_lbranch): Use pa_output_pic_pcrel_sequence.
10744         (pa_output_millicode_call): Likewise.
10745         (pa_output_call): Likewise.
10746         (pa_output_indirect_call): Likewise.
10747         (pa_asm_output_mi_thunk): Likewise.
10749 2016-06-16  Bernhard Reutner-Fischer  <aldot@gcc.gnu.org>
10751         * doc/invoke.texi (x86 Options): Fix -mno-fp-ret-in-387 typo.
10753 2016-06-16  Martin Liska  <mliska@suse.cz>
10755         * predict.c (combine_predictions_for_insn): When we find a first
10756         match predictor, we should consider just predictors with
10757         PRED_FLAG_FIRST_MATCH.  Print either first match (if any) or
10758         DS theory predictor.
10759         (combine_predictions_for_bb): Likewise.
10761 2016-06-16  Jakub Jelinek  <jakub@redhat.com>
10763         * gimplify.c (gimplify_scan_omp_clauses): Handle COMPONENT_REFs
10764         with base of reference to struct.
10766 2016-06-16  Uros Bizjak  <ubizjak@gmail.com>
10768         * doc/invoke.texi (x86 Options): Document -m80387 and -mhard-float.
10770 2016-06-16  Senthil Kumar Selvaraj  <senthil_kumar.selvaraj@atmel.com>
10772         PR target/71151
10773         * config/avr/avr.c (avr_asm_init_sections): Remove setup of
10774         progmem_swtable_section.
10775         (progmem_swtable_section): Remove.
10776         (avr_asm_function_rodata_section): Remove.
10777         (TARGET_ASM_FUNCTION_RODATA_SECTION): Remove.
10778         * config/avr/avr.h (JUMP_TABLES_IN_TEXT_SECTION: Define to 1.
10780 2016-06-16  Jocelyn Mayer  <l_indien@magic.fr>
10782         * config/i386/driver-i386.c (host_detect_local_cpu): Set
10783         PROCESSOR_K8 for signature_CENTAUR_ebx with has_longmode.
10784         <case PROCESSOR_K8>: Pass nano-3000, nano, eden-x2 or k8 for
10785         signature_CENTAUR_ebx.
10786         * config/i386/i386.c (ix86_option_override_internal): Add
10787         definitions for VIA c7, samuel-2, nehemiah, esther, eden-x2, eden-x4,
10788         nano, nano-1000, nano-2000, nano-3000, nano-x2 and nano-x4.
10789         * doc/invoke.texi (x86 Options): Document new VIA -march entries.
10791 2016-06-16  Martin Liska  <mliska@suse.cz>
10793         * predict.def: Add fortran loop preheader predictor.
10794         * gimple-fold.c (gimple_fold_stmt_to_constant_1): Properly
10795         fold IFN_BUILTIN_EXPECT with a known constant argument.
10797 2016-06-16  Martin Liska  <mliska@suse.cz>
10799         * predict.def: Add 'Fortran' to display text of all
10800         PRED_FORTRAN_* predictors.
10802 2016-06-16  Uros Bizjak  <ubizjak@gmail.com>
10804         PR target/71242
10805         * config/ia64/ia64.c (enum ia64_builtins) [IA64_BUILTIN_NANQ]: New.
10806         [IA64_BUILTIN_NANSQ]: Ditto.
10807         (ia64_fold_builtin): New function.
10808         (TARGET_FOLD_BUILTIN): New define.
10809         (ia64_init_builtins) Declare const_string_type node.
10810         Add __builtin_nanq and __builtin_nansq builtin functions.
10811         (ia64_expand_builtin): Handle IA64_BUILTIN_NANQ and IA64_BUILTIN_NANSQ.
10813 2016-06-16  Nick Clifton  <nickc@redhat.com>
10815         * config/msp430/msp430-opts.h (msp430_hwmult_types): Add
10816         MSP430_HWMULT_ prefix to enum values.
10817         (msp430_regions): Add MSP430_REGION_ prefix to enum values.
10818         * config/msp430/msp430.c: Update use of enum values.
10819         * config/msp430/msp430.md: Likewise.
10820         * config/msp430/msp430.opt: Likewise.
10822 2016-06-16  Jan Hubicka  <hubicka@ucw.cz>
10824         * tree-ssa-loop-ivcanon.c (tree_estimate_loop_size): Fix estimation
10825         of comparsions in the last iteration.
10827 2016-06-16  Claudiu Zissulescu  <claziss@synopsys.com>
10828             Joern Rennecke  <joern.rennecke@embecosm.com>
10830         * config/arc/arc.c (arc_print_operand_address): Handle pc-relative
10831         addresses.
10832         (arc_needs_pcl_p): Add GOTOFFPC.
10833         (arc_legitimate_pic_addr_p): Likewise.
10834         (arc_output_pic_addr_const): Likewise.
10835         (arc_legitimize_pic_address): Generate a pc-relative address using
10836         GOTOFFPC.
10837         (arc_output_libcall): Use @pcl syntax.
10838         (arc_delegitimize_address_0): Delegitimize ARC_UNSPEC_GOTOFFPC.
10839         * config/arc/arc.md ("unspec"): Add ARC_UNSPEC_GOTOFFPC.
10840         (*movsi_insn): Use @pcl syntax.
10841         (doloop_begin_i): Likewise.
10843 2016-06-16  Martin Liska  <mliska@suse.cz>
10845         * predict.def: Define a new predictor.
10847 2016-06-16  Claudiu Zissulescu  <claziss@synopsys.com>
10849         * config/arc/arc.opt (mtp-regno): Update text.
10851 2016-06-16  Renlin Li  <renlin.li@arm.com>
10853         * config/aarch64/aarch64.c (aarch64_legitimize_address): Fix a typo.
10855 2016-06-16  Jakub Jelinek  <jakub@redhat.com>
10857         PR target/71554
10858         * config/i386/i386.md (setcc + movzbl peephole2): Use reg_set_p.
10859         (setcc + and peephole2): Likewise.
10861         PR rtl-optimization/71532
10862         * cse.c (cse_insn): For const/pure calls, invalidate argument passing
10863         memory slots.
10865 2016-06-15  Michael Meissner  <meissner@linux.vnet.ibm.com>
10867         * config/rs6000/vsx.md (VSINT_84): Add DImode to enable loading
10868         DImode constants with XXSPLTIB in vector registers.
10869         (vsx_extract_<mode>, V2DImode/V2DFmode): Combine both
10870         vsx_extract_<mode>_internal{1,2} into a single insn that handles
10871         direct move (both ISA 2.07 and ISA 3.0 versions), and optimizes
10872         extraction of the element at the top of the register as a scalar
10873         value.
10874         (vsx_extract_<mode>_internal1): Likewise.
10875         (vsx_extract_<mode>_internal2): Likewise.
10876         * config/rs6000/constraints.md (wi constraint): Remove a comment
10877         about DImode not being allowed in Altivec registers.
10878         (wB constraint): New constraint for constants that can be
10879         generated in Altivec registers with VSPLTISW/VUPKHSW.
10880         * config/rs6000/predicates.md (xxspltib_constant_split): Update
10881         comments.
10882         (xxspltib_constant_nosplit): Likewise.
10883         * config/rs6000/rs6000-cpus.def (ISA_2_6_MASKS_SERVER): Add
10884         support for -mupper-regs-di to enable DImode to go into Altivec
10885         registers.
10886         (POWERPC_MASKS): Likewise.
10887         (power7 cpu): Likewise.
10888         * config/rs6000/rs6000.opt (-mupper-regs-di): Likewise.
10889         * config/rs6000/rs6000.c (rs6000_hard_regno_mode_ok): Add support
10890         for DImode being allowed in Altivec registers.  Update wi/wj
10891         constraints.  Set scalar_in_vmx_p flag.
10892         (rs6000_option_override_internal): Add checks for -mupper-regs-di.
10893         (xxspltib_constant_p): Allow CONST_INT's with VOIDmode.  Don't
10894         return true if we could use VSPLTISW/VUPKHSW instead of XXSPLTIB.
10895         (rs6000_opt_masks): Add -mupper-regs-di.
10896         * config/rs6000/rs6000.md (lfiwax): Update clobbers that don't use
10897         direct move to use wi and not wj.
10898         (lfiwzx): Likewise.
10899         (floatsi<mode>2_lfiwax_mem): Combine alternatives into a single
10900         alternative.
10901         (floatunssi<mode>2_lfiwzx_mem): Likewise.
10902         (fix_trunc<mode>di2_fctidz): Change second alternative to allow
10903         any VSX register, instead of just Altivec registers, to allow
10904         either operand to be an Altivec register or both.
10905         (fixuns_trunc<mode>di2_fctiduz): Likewise.
10906         (movdi_internal32): Add support for -mupper-regs-di.  Add support
10907         to load constants via XXSPLTIB or VSPLTISW.  Add spacing to allow
10908         the alternatives and attributes to be lined up to be easier to
10909         read.
10910         (movdi_internal64): Likewise.
10911         (64-bit DImode splitters): Change predicates to only split loading
10912         up GPR registers.  Add splits for using XXSPLTIB or VSPLTISW to
10913         load constants in ISA 3.0 or ISA 2.07 respectively.
10914         * doc/invoke.texi (RS/6000 and PowerPC Options): Document
10915         -mupper-regs-di.  Update -mupper-regs-df and -mupper-regs-sf to
10916         mention -mcpu=power9 sets these options.
10917         * doc/md.texi (PowerPC and IBM RS6000 constraints): Document the
10918         wB constraint.
10920 2016-06-15  Pitchumani Sivanupandi  <pitchumani.s@atmel.com>
10922         PR target/67353
10923         * config/avr/avr.c (avr_set_current_function): Warn misspelled
10924         interrupt/ signal handler if -Wmisspelled-isr flag is enabled.
10925         * config/avr/avr.opt (Wmisspelled-isr): New warning flag. Enabled
10926         by default to warn misspelled interrupt/ signal handler.
10927         * doc/invoke.texi (AVR Options): Document it. Update description
10928         for -nodevicelib option.
10930 2016-06-15  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
10932         * config/aarch64/aarch64-simd.md (aarch64_<sur>shll_n<mode>): Clean
10933         up parentheses.  Use GET_MODE_UNIT_BITSIZE.
10934         (aarch64_<sur>shll2_n<mode>): Likewise.
10936 2016-06-15  Ilya Enkovich  <ilya.enkovich@intel.com>
10938         PR middle-end/71529
10939         * ipa-chkp.c (chkp_build_instrumented_fndecl): Fix
10940         DECL_CONTEXT for copied arguments.
10942 2016-06-15  Alan Hayward  <alan.hayward@arm.com>
10944         PR tree-optimization/71483
10945         * tree-vect-loop.c (vectorizable_live_operation): Pick correct index
10946         for slp
10948 2016-06-15  Martin Liska  <mliska@suse.cz>
10950         * predict.c (tree_predict_by_opcode): Call predict_edge_def
10951         instead of predict_edge w/o a probability.
10953 2016-06-15  Alan Hayward  <alan.hayward@arm.com>
10955         PR tree-optimization/71439
10956         * tree-vect-loop.c (vect_analyze_loop_operations): Additional check for
10957         live PHIs.
10959 2016-06-15  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
10961         * ifcvt.c (bb_ok_for_noce_multiple_sets): Allow simple lowpart
10962         register subregs in SET_SRC.
10964 2016-06-15  Richard Biener  <rguenther@suse.de>
10966         * tree-vect-stmts.c (vectorizable_store): Remove strided grouped
10967         store restrictions.
10969 2016-06-15  Richard Biener  <rguenther@suse.de>
10971         * tree-vect-data-refs.c (vect_analyze_data_ref_dependence): Do
10972         not consider dependences between accesses that belong to the
10973         same group.
10974         (vect_analyze_data_ref_dependences): Do not analyze read-read
10975         or self-dependences.
10977 2016-06-14  David Malcolm  <dmalcolm@redhat.com>
10979         * spellcheck-tree.c: Include spellcheck-tree.h rather than
10980         spellcheck.h.
10981         (find_closest_identifier): Reimplement in terms of
10982         best_match<tree,tree>.
10983         * spellcheck-tree.h: New file.
10984         * spellcheck.c (struct edit_distance_traits<const char *>): New
10985         struct.
10986         (find_closest_string): Reimplement in terms of
10987         best_match<const char *, const char *>.
10988         * spellcheck.h (levenshtein_distance): Move prototype of tree-based
10989         overload to spellcheck-tree.h.
10990         (find_closest_identifier): Likewise.
10991         (struct edit_distance_traits<T>): New template.
10992         (class best_match): New class.
10994 2016-06-14  David Malcolm  <dmalcolm@redhat.com>
10996         * selftest-run-tests.c (selftest::run_tests): Call
10997         selftest::spellcheck_tree_c_tests.
10998         * selftest.h (selftest::spellcheck_tree_c_tests): New decl.
10999         * spellcheck-tree.c: Include selftest.h and stringpool.h.
11000         (selftest::test_find_closest_identifier): New function.
11001         (selftest::spellcheck_tree_c_tests): New function.
11002         * spellcheck.c (selftest::test_find_closest_string): Verify that
11003         the order of the vec does not affect the results for this case.
11004         (selftest::test_data): New array.
11005         (selftest::test_metric_conditions): New function.
11006         (selftest::spellcheck_c_tests): Add a test of case-comparison.
11007         Call selftest::test_metric_conditions.
11009 2016-06-14  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
11011         * config/rs6000/rs6000-builtin.def (commentary): Typo.
11012         (BU_P9_MISC_1): Likewise.
11013         (BU_P9_64BIT_MISC_0): Likewise.
11014         (BU_P9_MISC_0): Likewise.
11016 2016-06-14  David Malcolm  <dmalcolm@redhat.com>
11018         * gcc-rich-location.c
11019         (gcc_rich_location::add_fixit_misspelled_id): New method.
11020         * gcc-rich-location.h
11021         (gcc_rich_location::add_fixit_misspelled_id): Add decl.
11023 2016-06-14  Andreas Tobler  <andreast@gcc.gnu.org>
11025         * config/arm/freebsd.h: Only enable unaligned access for armv6 on
11026         FreeBSD 11 and above.
11028 2016-06-14  Uros Bizjak  <ubizjak@gmail.com>
11030         * config/i386/i386.md (signbittf2): Emit sse_movmskps for TARGET_SSE.
11032 2016-06-14  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
11034         * expmed.h: Close parenthesis in "at your option" in copyright
11035         boilerplate.
11036         * lower-subreg.h: Likewise.
11038 2016-06-14  Richard Biener  <rguenther@suse.de>
11040         PR middle-end/71526
11041         * genmatch.c (expr::gen_transform): Use in_type for comparisons
11042         if available.
11044 2015-06-14  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
11046         * config/aarch64/aarch64.c (aarch64_mask_and_shift_for_ubfiz_p):
11047         New function.
11048         (aarch64_rtx_costs): Use it.  Rewrite CONST_INT_P (op1) case to handle
11049         mask+shift version.
11050         * config/aarch64/aarch64-protos.h (aarch64_mask_and_shift_for_ubfiz_p):
11051         New prototype.
11052         * config/aarch64/aarch64.md (*andim_ashift<mode>_bfiz): Replace
11053         matching condition with aarch64_mask_and_shift_for_ubfiz_p.
11055 2016-06-14  Richard Biener  <rguenther@suse.de>
11057         PR tree-optimization/71522
11058         * tree-ssa.c (non_rewritable_lvalue_p): Do not rewrite non-float
11059         copying into float copying.
11061 2016-06-14  Jakub Jelinek  <jakub@redhat.com>
11063         PR tree-optimization/71520
11064         * tree-ssa-tail-merge.c (find_duplicate): Handle labels.
11065         (replace_block_by): Move user labels from bb1 to bb2.
11067 2016-06-14  Richard Biener  <rguenther@suse.de>
11069         PR middle-end/71310
11070         PR bootstrap/71510
11071         * expr.h (get_bit_range): Declare.
11072         * expr.c (get_bit_range): Export.
11073         * fold-const.c (optimize_bit_field_compare): Use get_bit_range and
11074         word_mode again to constrain the bitfield access.
11076 2016-06-14  Richard Biener  <rguenther@suse.de>
11078         PR tree-optimization/71521
11079         * tree-vrp.c (extract_range_from_binary_expr_1): Guard
11080         division int_const_binop against zero divisor.
11082 2016-06-13  Uros Bizjak  <ubizjak@gmail.com>
11084         * config/i386/i386.md (signbittf2): New expander.
11085         * config/i386/sse.md (ptesttf2): New insn pattern.
11087 2016-06-13  David Malcolm  <dmalcolm@redhat.com>
11089         PR bootstrap/71481
11090         * input.c (selftest::test_reading_source_line): Avoid reading from
11091         __FILE__ by creating a tempfile with known content and reading
11092         from that instead.
11094 2016-06-13  David Malcolm  <dmalcolm@redhat.com>
11096         * pretty-print.c (assert_pp_format_colored): Skip the test if
11097         GCC_COLORS is set.
11098         (test_pp_format): Remove comment about GCC_COLORS.
11100 2016-06-13  David Malcolm  <dmalcolm@redhat.com>
11102         * input.c (test_reading_source_line): Use SELFTEST_LOCATION.
11103         * pretty-print.c (assert_pp_format_va): Add location param and use
11104         it with ASSERT_STREQ_AT.
11105         (assert_pp_format): Add location param and pass it to
11106         assert_pp_format_va.
11107         (assert_pp_format_colored): Likewise.
11108         (ASSERT_PP_FORMAT_1): New.
11109         (ASSERT_PP_FORMAT_2): New.
11110         (ASSERT_PP_FORMAT_3): New.
11111         (test_pp_format): Provide SELFTEST_LOCATION throughout, either
11112         explicitly, or implicitly via the above macros.
11113         * selftest.c (selftest::pass): Use a selftest::location rather
11114         than file and line.
11115         (selftest::fail): Likewise.  Print the function name.
11116         (selftest::fail_formatted): Likewise.
11117         (selftest::assert_streq): Use a selftest::location rather than
11118         file and line.
11119         * selftest.h (selftest::location): New struct.
11120         (SELFTEST_LOCATION): New macro.
11121         (selftest::pass): Accept a const location & rather than file
11122         and line.
11123         (selftest::fail): Likewise.
11124         (selftest::fail_formatted): Likewise.
11125         (selftest::assert_streq): Likewise.
11126         (ASSERT_TRUE): Update for above changes, using SELFTEST_LOCATION.
11127         (ASSERT_FALSE): Likewise.
11128         (ASSERT_EQ): Likewise.
11129         (ASSERT_NE): Likewise.
11130         (ASSERT_STREQ): Likewise.
11131         (ASSERT_PRED1): Likewise.
11132         (ASSERT_STREQ_AT): New macro.
11134 2016-06-13  David Malcolm  <dmalcolm@redhat.com>
11136         * selftest.c (selftest::fail_formatted): New function.
11137         (selftest::assert_streq): New function.
11138         * selftest.h (selftests::fail_formatted): New decl.
11139         (selftest::assert_streq): New decl.
11140         (ASSERT_STREQ): Reimplement in terms of selftest::assert_streq.
11142 2016-06-13  Jeff Law  <law@redhat.com>
11144         PR tree-optimization/71403
11145         * tree-ssa-threadbackward.c
11146         (convert_and_register_jump_thread_path): No longer accept reference
11147         to path.  Do not pop items off the path anymore.
11148         (fsm_find_control_statement_thread_paths): Do not allow threading
11149         to a deeper loop nest.  Pop the last item off the path here rather
11150         than in convert_and_register_jump_thread_path.
11152 2016-06-13  Evandro Menezes  <e.menezes@samsung.com>
11153             Wilco Dijkstra  <Wilco.Dijkstra@arm.com>
11155         [AArch64] Emit division using the Newton series
11157         * config/aarch64/aarch64-protos.h
11158         (cpu_approx_modes): Add new member "division".
11159         (aarch64_emit_approx_div): Declare new function.
11160         * config/aarch64/aarch64.c
11161         (generic_approx_modes): New member "division".
11162         (exynosm1_approx_modes): Likewise.
11163         (xgene1_approx_modes): Likewise.
11164         (aarch64_emit_approx_div): Define new function.
11165         * config/aarch64/aarch64.md ("div<mode>3"): New expansion.
11166         * config/aarch64/aarch64-simd.md ("div<mode>3"): Likewise.
11167         * config/aarch64/aarch64.opt (-mlow-precision-div): Add new option.
11168         * doc/invoke.texi (-mlow-precision-div): Describe new option.
11170 2016-06-13  Evandro Menezes  <e.menezes@samsung.com>
11171             Wilco Dijkstra  <wilco.dijkstra@arm.com>
11173         [AArch64] Emit square root using the Newton series
11175         * config/aarch64/aarch64-protos.h
11176         (aarch64_emit_approx_rsqrt): Replace with new function
11177         "aarch64_emit_approx_sqrt".
11178         (cpu_approx_modes): New member "sqrt".
11179         * config/aarch64/aarch64.c
11180         (generic_approx_modes): New member "sqrt".
11181         (exynosm1_approx_modes): Likewise.
11182         (xgene1_approx_modes): Likewise.
11183         (aarch64_emit_approx_rsqrt): Replace with new function
11184         "aarch64_emit_approx_sqrt".
11185         (aarch64_override_options_after_change_1): Handle new option.
11186         * config/aarch64/aarch64-simd.md
11187         (rsqrt<mode>2): Use new function instead.
11188         (sqrt<mode>2): New expansion and insn definitions.
11189         * config/aarch64/aarch64.md: Likewise.
11190         * config/aarch64/aarch64.opt
11191         (mlow-precision-sqrt): Add new option description.
11192         * doc/invoke.texi (mlow-precision-sqrt): Likewise.
11194 2016-06-13  Evandro Menezes  <e.menezes@samsung.com>
11196         [AArch64] Add more choices for the reciprocal square root approximation
11198         Allow a target to prefer such operation depending on the operation mode.
11200         * config/aarch64/aarch64-protos.h
11201         (AARCH64_APPROX_MODE): New macro.
11202         (AARCH64_APPROX_{NONE,ALL}): Likewise.
11203         (cpu_approx_modes): New structure.
11204         (tune_params): New member "approx_modes".
11205         * config/aarch64/aarch64-tuning-flags.def
11206         (AARCH64_EXTRA_TUNE_APPROX_RSQRT): Remove macro.
11207         * config/aarch64/aarch64.c
11208         (generic_approx_modes): New core "cpu_approx_modes" structure.
11209         (exynosm1_approx_modes): Likewise.
11210         (xgene1_approx_modes): Likewise.
11211         (generic_tunings): New member "approx_modes".
11212         (cortexa35_tunings): Likewise.
11213         (cortexa53_tunings): Likewise.
11214         (cortexa57_tunings): Likewise.
11215         (cortexa72_tunings): Likewise.
11216         (exynosm1_tunings): Likewise.
11217         (thunderx_tunings): Likewise.
11218         (xgene1_tunings): Likewise.
11219         (use_rsqrt_p): New argument for the mode and use new member from
11220         "tune_params".
11221         (aarch64_builtin_reciprocal): Devise mode from builtin.
11222         (aarch64_optab_supported_p): New argument for the mode.
11223         * doc/invoke.texi (-mlow-precision-recip-sqrt): Reword description.
11225 2016-06-13  Kelvin Nilsen  <kelvin@gcc.gnu.org>
11227         * config/rs6000/rs6000.h (RS6000_BTM_COMMON): Add the
11228         RS6000_BTM_MODULO flag into the set of flags that are considered
11229         to be part of the common configuration.
11231 2016-06-13  Kelvin Nilsen  <kelvin@gcc.gnu.org>
11233         * config/rs6000/altivec.h (vec_absd): New macro for vector absolute
11234         difference unsigned.
11235         (vec_absdb): New macro for vector absolute difference unsigned
11236         byte.
11237         (vec_absdh): New macro for vector absolute difference unsigned
11238         half-word.
11239         (vec_absdw): New macro for vector absolute difference unsigned word.
11240         * config/rs6000/altivec.md (UNSPEC_VADU): New value.
11241         (vadu<mode>3): New insn.
11242         (*p9_vadu<mode>3): New insn.
11243         * config/rs6000/rs6000-builtin.def (vadub): New built-in
11244         definition.
11245         (vaduh): New built-in definition.
11246         (vaduw): New built-in definition.
11247         (vadu): New overloaded built-in definition.
11248         (vadub): New overloaded built-in definition.
11249         (vaduh): New overloaded built-in definition.
11250         (vaduw): New overloaded built-in definition.
11251         * config/rs6000/rs6000-c.c (altivec_overloaded_builtins): Add
11252         overloaded vector absolute difference unsigned functions.
11253         * doc/extend.texi (PowerPC AltiVec Built-in Functions): Document
11254         the ISA 3.0 vector absolute difference unsigned built-in functions.
11256 2016-06-13  Eric Botcazou  <ebotcazou@adacore.com>
11258         * tree-ssa-sccvn.c (vn_reference_lookup_3): Use a uniform test and
11259         update shared_lookup_references only once after changing operands.
11261 2016-06-13  Thomas Schwinge  <thomas@codesourcery.com>
11263         PR middle-end/71373
11264         * tree-nested.c (convert_nonlocal_omp_clauses)
11265         (convert_local_omp_clauses): Document missing OMP_CLAUSE_*.
11267         * tree-cfg.c (edge_to_cases_cleanup): Fix CASE_CHAIN typo.
11268         * tree.def (CASE_LABEL_EXPR): Likewise.
11270 2016-06-13  Bernd Edlinger  <bernd.edlinger@hotmail.de>
11272         PR bootstrap/71481
11273         * input.c (test_builtins): Fix an assertion.
11275 2016-06-13  Uros Bizjak  <ubizjak@gmail.com>
11277         * config/i386/i386.md (paritydi2): Use ix86_expand_setcc.
11278         (paritysi2): Ditto.
11279         (isinfxf2): Ditto.
11280         (isinf<mode>2): Ditto.
11282 2016-06-13  Uros Bizjak  <ubizjak@gmail.com>
11284         * ggc-tests.c (test_finalization): Only test need_finalization_p
11285         for GCC_VERSION >= 4003.
11287 2016-06-13  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
11289         * config/s390/vecintrin.h: Fix file description in comment.
11291 2016-06-13  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
11293         * config/s390/s390-builtin-types.def: Change builtin type naming
11294         scheme to match builtin-types.def.
11296 2016-06-13  Marc Glisse  <marc.glisse@inria.fr>
11298         * fold-const.c (optimize_minmax_comparison): Remove.
11299         (fold_comparison): Remove call to the above.
11300         * match.pd (MIN (X, Y) == X, MIN (X, 5) == 0, MIN (X, C1) < C2):
11301         New transformations.
11303 2016-06-13  Alan Hayward  <alan.hayward@arm.com>
11305         PR tree-optimization/71416
11306         * tree-vect-loop.c (vectorizable_live_operation): Let worklist have
11307         multiple entries
11309 2016-06-13  Martin Liska  <mliska@suse.cz>
11311         * predict.c (enum predictor_reason): Prefix enum with REASON_.
11312         (combine_predictions_for_insn): Likewise.
11313         (prune_predictions_for_bb): Likewise.
11314         (combine_predictions_for_bb): Likewise.
11316 2016-06-13  Richard Biener  <rguenther@suse.de>
11318         PR tree-optimization/71505
11319         * tree-vect-data-refs.c (vect_analyze_data_ref_accesses): Make
11320         assert match comment.
11322 2016-06-13  Marek Polacek  <polacek@redhat.com>
11324         PR middle-end/71476
11325         * gimplify.c (maybe_warn_switch_unreachable): Factored out of
11326         gimplify_switch_expr.
11327         (warn_switch_unreachable_r): New function.
11329 2016-06-13  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
11331         PR target/71379
11332         * config/s390/s390.c (s390_expand_builtin): Increase MAX_ARGS by
11333         one.
11335 2016-06-13  Richard Biener  <rguenther@suse.de>
11337         PR middle-end/64516
11338         * fold-const.c (fold_unary_loc): Preserve alignment when
11339         folding a VIEW_CONVERT_EXPR into a MEM_REF.
11341 2016-06-13  Martin Liska  <mliska@suse.cz>
11343         PR sanitizer/71458
11344         * toplev.c (process_options): Do not enable -fcheck-pointer-bounds
11345         w/ -fsanitize=bounds.
11347 2016-06-12  Uros Bizjak  <ubizjak@gmail.com>
11349         * config/i386/i386.c (ix86_init_builtins): Calculate
11350         FLOAT128_FTYPE_CONST_STRING function type only once.
11351         * doc/extend.texi (x86 Built-in Functions): Update text, __float128
11352         built-in functions are available for x86-32 and x86-64 targets.
11354 2016-06-12  Uros Bizjak  <ubizjak@gmail.com>
11356         PR target/71241
11357         * config/i386/i386.i386-builtin-types.def (CONST_STRING):
11358         New primitive type.
11359         (FLOAT128_FTYPE_CONST_STRING): New function type.
11360         * config/i386/i386.c (enum ix86_builtins) [IX86_BUILTIN_NANQ]: New.
11361         [IX86_BUILTIN_NANSQ]: Ditto.
11362         (ix86_fold_builtin): Handle IX86_BUILTIN_NANQ and IX86_BUILTIN_NANSQ.
11363         (ix86_init_builtin_types): Declare const_string_type_node.
11364         (ix86_init_builtins): Add __builtin_nanq and __builtin_nansq
11365         builtin functions.
11366         (ix86_expand_builtin): Handle IX86_BUILTIN_NANQ and IX86_BUILTIN_NANSQ.
11367         * doc/extend.texi (x86 Built-in Functions): Document
11368         __builtin_nanq and __builtin_nansq.
11370 2016-06-11  Jiong Wang  <jiong.wang@arm.com>
11372         PR target/71061
11373         * config/arm/arm-protos.h (arm_attr_length_pop_multi): New declaration.
11374         * config/arm/arm.c (arm_attr_length_pop_multi): New function to return
11375         length for pop patterns.
11376         (arm_attr_length_push_multi): Update comments.
11377         * config/arm/arm.md (*load_multiple_with_writeback): Set "length"
11378         attribute.
11379         (*pop_multiple_with_writeback_and_return): Likewise.
11380         (*pop_multiple_with_return): Likewise.
11382 2016-06-11  Segher Boessenkool  <segher@kernel.crashing.org>
11384         PR middle-end/71310
11385         * fold-const.c (optimize_bit_field_compare): Don't try to use
11386         word_mode unconditionally for reading the bit field, look at
11387         DECL_BIT_FIELD_REPRESENTATIVE instead.
11389 2016-06-11  Kugan Vivekanandarajah  <kuganv@linaro.org>
11391         PR middle-end/71478
11392         * tree-ssa-reassoc.c (reassociate_bb): Remove (-1) from ops list for
11393         vector integer type.
11395 2016-06-10  Jakub Jelinek  <jakub@redhat.com>
11397         PR middle-end/71494
11398         * tree-nested.c (convert_nonlocal_reference_stmt): For GIMPLE_GOTO
11399         without LABEL_DECL, set *handled_ops_p to false instead of true.
11401 2016-06-10  Martin Sebor  <msebor@redhat.com>
11403         PR c/71392
11404         * builtin-attrs.def (ATTR_NOTHROW_NONNULL_LEAF_LIST): New macro.
11405         (ATTR_NOTHROW_NONNULL_TYPEGENERIC_LEAF): Same.
11406         * builtins.def (BUILT_IN_SADD_OVERFLOW, BUILT_IN_SADDL_OVERFLOW): Use
11407         them.
11408         (BUILT_IN_SADDLL_OVERFLOW, BUILT_IN_SSUB_OVERFLOW): Same.
11409         (BUILT_IN_SSUBL_OVERFLOW, BUILT_IN_SSUBLL_OVERFLOW): Same.
11410         (BUILT_IN_SMUL_OVERFLOW, BUILT_IN_SMULL_OVERFLOW): Same.
11411         (BUILT_IN_SMULLL_OVERFLOW, BUILT_IN_UADD_OVERFLOW): Same.
11412         (BUILT_IN_UADDL_OVERFLOW, BUILT_IN_UADDLL_OVERFLOW): Same.
11413         (BUILT_IN_USUB_OVERFLOW, BUILT_IN_USUBL_OVERFLOW): Same.
11414         (BUILT_IN_USUBLL_OVERFLOW, BUILT_IN_UMUL_OVERFLOW): Same.
11415         (BUILT_IN_UMULL_OVERFLOW, BUILT_IN_UMULLL_OVERFLOW): Same.
11417 2016-06-10  Bernd Edlinger  <bernd.edlinger@hotmail.de>
11419         * config/arm/arm.h (pool_vector_label,
11420         return_used_this_function): Remove.
11422 2016-06-10  Jeff Law  <law@redhat.com>
11424         PR tree-optimization/71335
11425         * tree-ssa-threadbackward.c (profitable_jump_thread_path): Filter out
11426         zero length paths here.
11427         (convert_and_register_jump_thread_path): Remove hacks related to
11428         duplicated blocks in the jump thread path.
11429         (fsm_find_control_statement_thread_paths): Avoid putting the same
11430         block on the thread path twice, but ensure the thread path is
11431         unchanged from the caller's point of view.
11433 2016-06-10  Jan Hubicka  <hubicka@ucw.cz>
11435         * predict.c (predict_loops): Remove PRED_LOOP_BRANCH.
11436         * predict.def (PRED_LOOP_BRANCH): Remove.
11438 2016-06-10  David Malcolm  <dmalcolm@redhat.com>
11440         * Makefile.in (OBJS): Add ggc-tests.o.
11441         (GTFILES): Add ggc-tests.c.
11442         * ggc-tests.c: New file.
11443         * selftest-run-tests.c (selftest::run_tests): Call
11444         selftest::ggc_tests_c_tests.
11445         * selftest.h (selftest::ggc_tests_c_tests): New prototype.
11447 2016-06-10  Alexander Monakov  <amonakov@ispras.ru>
11449         * match.pd (-1 / B < A): Use :c to avoid pattern duplication.
11451 2016-06-10  Maxim Ostapenko  <m.ostapenko@samsung.com>
11453         PR sanitizer/71480
11454         * varasm.c (place_block_symbol): Adjust alignment for asan protected
11455         STRING_CSTs even if TREE_CONSTANT_POOL_ADDRESS_P.
11457 2016-06-10  Jan Hubicka  <hubicka@ucw.cz>
11459         * profile.c: Include cfgloop.h.
11460         (branch_prob): Compute estimated number of iterations.
11461         * tree-ssa-loop-niter.c (estimate_numbers_of_iterations_loop): Do not
11462         recompute estimate number of iterations from profile.
11464 2016-06-10  Bernd Edlinger  <bernd.edlinger@hotmail.de>
11466         PR inline-asm/68843
11467         * reg-stack.c (check_asm_stack_operands): Explicit input arguments
11468         must be grouped on top of stack.  Don't force early clobber
11469         on ordinary reg outputs.
11471 2016-06-10  Richard Biener  <rguenther@suse.de>
11473         * targhooks.c (default_builtin_vectorization_cost): Adjust
11474         vec_construct cost.
11476 2016-06-10  Richard Biener  <rguenther@suse.de>
11478         * gimple-fold.c (gimple_fold_builtin_memory_op): Make sure
11479         to fold the RHS to a constant if possible.
11481 2016-06-10  Thomas Schwinge  <thomas@codesourcery.com>
11483         PR middle-end/71373
11484         * tree-nested.c (convert_nonlocal_omp_clauses)
11485         (convert_local_omp_clauses): Handle OMP_CLAUSE_ASYNC,
11486         OMP_CLAUSE_WAIT, OMP_CLAUSE_INDEPENDENT, OMP_CLAUSE_AUTO,
11487         OMP_CLAUSE__CACHE_, OMP_CLAUSE_TILE.
11489         * gimplify.c (gimplify_adjust_omp_clauses): Discard
11490         OMP_CLAUSE_TILE.
11491         * omp-low.c (scan_sharing_clauses): Don't expect OMP_CLAUSE_TILE.
11493         * omp-low.c (scan_sharing_clauses): Don't expect
11494         OMP_CLAUSE__CACHE_.
11496 2016-06-10  Alan Hayward  <alan.hayward@arm.com>
11498         PR tree-optimization/71407
11499         PR tree-optimization/71416
11500         * tree-vect-loop.c (vectorizable_live_operation): Use vectype for
11501         BIT_FIELD_REF type.
11503 2016-06-10  Richard Biener  <rguenther@suse.de>
11505         PR middle-end/71477
11506         * cfgloop.c (alloc_loop): Initialize nb_iterations_likely_upper_bound.
11508 2016-06-09  Eric Botcazou  <ebotcazou@adacore.com>
11510         * df-problems.c (df_note_bb_compute): Guard use of DF_INSN_INFO_GET.
11512 2016-06-09  Vladimir Makarov  <vmakarov@redhat.com>
11513             Jiong Wang  <jiong.wang@arm.com>
11515         PR rtl-optimization/70751
11516         * lra-constraints.c (process_alt_operands): Recognize Non-pseudo
11517         spilled into memory.
11519 2016-06-09  Jonathan Yong  <10walls@gmail.com>
11521         Revert:
11522         2015-09-21  Jonathan Yong  <10walls@gmail.com>
11524         * config/i386/cygwin.h (STARTFILE_SPEC): Explicitly search
11525         sysroot/usr/lib/32api for additional win32 libraries,
11526         fixes failing Cygwin bootstrapping.
11528 2016-06-09  Marcin Baczyński  <marbacz@gmail.com>
11530         * diagnostic.h (diagnostic_line_cutoff, diagnostic_flush_buffer):
11531         Delete.
11533 2016-06-09  David Malcolm  <dmalcolm@redhat.com>
11535         PR bootstrap/71471
11536         * pretty-print.c (pp_indent): Specify that %p is printed in a
11537         host-dependent manner.
11538         (test_pp_format): Remove the test for %p.
11540 2016-06-09  Maciej W. Rozycki  <macro@imgtec.com>
11542         * config/mips/mips.c (mips_output_jump): Fix formatting.
11544 2016-06-09  Richard Biener  <rguenther@suse.de>
11546         PR tree-optimization/71462
11547         * tree-ssa-loop-manip.c (find_uses_to_rename): Guard against
11548         removed blocks.
11550 2016-06-09  Martin Liska  <mliska@suse.cz>
11552         * predict.c (dump_prediction): Add new argument.
11553         (enum predictor_reason): New enum.
11554         (struct predictor_hash): New struct.
11555         (predictor_hash::hash): New function.
11556         (predictor_hash::equal): Likewise.
11557         (not_removed_prediction_p): New function.
11558         (prune_predictions_for_bb): Likewise.
11559         (combine_predictions_for_bb): Prune predictions.
11561 2016-06-09  Martin Liska  <mliska@suse.cz>
11563         * predict.c (filter_predictions): New function.
11564         (remove_predictions_associated_with_edge): Use the filter
11565         function.
11566         (equal_edge_p): New function.
11568 2016-06-09  Stefan Bruens  <stefan.bruens@rwth-aachen.de>
11570         * doc/invoke.texi (ARM Options): Use lexicographical ordering.
11571         Correct usage of @samp vs @option, add @samp where appropriate.
11572         Add -march={armv6k,armv6z,arm6zk}, remove -march=ep9312.
11573         Add armv6s-m and document it, as it is no official ARM name.
11575 2016-06-09  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
11577         * ifcvt.c (struct noce_if_info): Add transform_name field.
11578         (noce_try_move): Set if_info->transform_name to the function name.
11579         (noce_try_ifelse_collapse): Likewise.
11580         (noce_try_store_flag): Likewise.
11581         (noce_try_inverse_constants): Likewise.
11582         (noce_try_store_flag_constants): Likewise.
11583         (noce_try_addcc): Likewise.
11584         (noce_try_store_flag_mask): Likewise.
11585         (noce_try_cmove): Likewise.
11586         (noce_try_cmove_arith): Likewise.
11587         (noce_try_minmax): Likewise.
11588         (noce_try_abs): Likewise.
11589         (noce_try_sign_mask): Likewise.
11590         (noce_try_bitop): Likewise.
11591         (noce_convert_multiple_sets): Likewise.
11592         (noce_process_if_block): Print if_info->transform_name to
11593         dump_file if transformation succeeded.
11595 2016-06-09  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
11597         * config/arm/cortex-a57.md (cortex_a57_alu):
11598         Handle csel type.
11600 2016-06-08  Martin Sebor  <msebor@redhat.com>
11601             Jakub Jelinek  <jakub@redhat.com>
11603         PR c++/70507
11604         PR c/68120
11605         * builtins.def (BUILT_IN_ADD_OVERFLOW_P, BUILT_IN_SUB_OVERFLOW_P,
11606         BUILT_IN_MUL_OVERFLOW_P): New builtins.
11607         * builtins.c: Include gimple-fold.h.
11608         (fold_builtin_arith_overflow): Handle
11609         BUILT_IN_{ADD,SUB,MUL}_OVERFLOW_P.
11610         (fold_builtin_3): Likewise.
11611         * doc/extend.texi (Integer Overflow Builtins): Document
11612         __builtin_{add,sub,mul}_overflow_p.
11614 2016-06-08  Jose E. Marchesi  <jose.marchesi@oracle.com>
11616         * config/sparc/driver-sparc.c (cpu_names): Fix the entry for the
11617         SPARC-M7 and add an entry for SPARC-S7 cpus (Sonoma).
11619 2016-06-08  Alan Lawrence  <alan.lawrence@arm.com>
11621         * config/aarch64/aarch64.c (aarch64_function_arg_alignment):
11622         Rewrite, looking one level down for records and arrays.
11624 2016-06-08  David Malcolm  <dmalcolm@redhat.com>
11626         * pretty-print.c: Include "selftest.h".
11627         (pp_format): Fix comment.
11628         (identifier_to_locale): Likewise.
11629         (selftest::test_basic_printing): New function.
11630         (selftest::assert_pp_format): New function.
11631         (selftest::test_pp_format): New function.
11632         (selftest::pretty_print_c_tests): New function.
11633         * selftest-run-tests.c (selftest::run_tests): Call
11634         selftest::pretty_print_c_tests.
11635         * selftest.h (pretty_print_c_tests): New declaration.
11637 2016-06-07  Jan Hubicka  <hubicka@ucw.cz>
11639         * invoke.texi (max-loop-headers-insns): Document.
11640         * params.def (PARAM_MAX_LOOP_HEADER_INSNS): New.
11641         * tree-ssa-loop-ch.c (should_duplicate_loop_header_p): Update comment.
11642         (ch_base::copy_headers): Use PARAM_MAX_LOOP_HEADER_INSNS.
11644 2016-06-08  Richard Biener  <rguenther@suse.de>
11646         * tree-vect-stmts.c (vectorizable_load): Remove restrictions
11647         on strided SLP loads and fall back to scalar loads in case
11648         we can't chunk them.
11650 2016-06-08  Richard Biener  <rguenther@suse.de>
11652         PR tree-optimization/71452
11653         * tree-ssa.c (non_rewritable_lvalue_p): Make sure that the
11654         type used for the SSA rewrite has enough precision to cover
11655         the dynamic type of the location.
11657 2016-06-08  Jakub Jelinek  <jakub@redhat.com>
11658             Richard Biener  <rguenther@suse.de>
11660         PR c++/71448
11661         * fold-const.c (fold_comparison): Handle CONSTANT_CLASS_P (base0)
11662         the same as DECL_P (base0) for indirect_base0.  Use equality_code
11663         in one further place.
11665 2016-06-08  Richard Sandiford  <richard.sandiford@arm.com>
11667         * expmed.c (store_bit_field_1): Do not restrict a multiword op0
11668         to one word if the field is known to overlap other words.
11669         (extract_bit_field_1): Likewise.
11670         (store_split_bit_field): Remove compensating code.
11671         (extract_split_bit_field): Likewise.
11673 2016-06-08  Bernd Schmidt  <bschmidt@redhat.com>
11675         PR debug/71432
11676         PR ada/71413
11677         * tree-ssa-strlen.c (handle_builtin_memcmp): Ignore debug insns.
11679 2016-06-08  Jiong Wang  <jiong.wang@arm.com>
11681         * config/aarch64/aarch64-builtins.def (faddp): New builtins for modes in
11682         VDQF.
11683         * config/aarch64/aarch64-simd.md (aarch64_faddp<mode>): New.
11684         (arch64_addpv4sf): Delete.
11685         (reduc_plus_scal_v4sf): Use "gen_aarch64_faddpv4sf" instead of
11686         "gen_aarch64_addpv4sf".
11687         * config/aarch64/arm_neon.h (vpadd_f32): Remove inline assembly.  Use
11688         builtin.
11689         (vpadds_f32): Likewise.
11690         (vpaddq_f32): Likewise.
11691         (vpaddq_f64): Likewise.
11693 2016-06-08  Jiong Wang  <jiong.wang@arm.com>
11695         * config/aarch64/aarch64-builtins.def (fabd): New builtins for modes
11696         VALLF.
11697         * config/aarch64/aarch64-simd.md (fabd<mode>_3): Extend modes from VDQF
11698         to VALLF.  Rename to "fabd<mode>3".
11699         "*fabd_scalar<mode>3): Delete.
11700         * config/aarch64/arm_neon.h (vabds_f32): Remove inline assembly.
11701         Use builtin.
11702         (vabdd_f64): Likewise.
11703         (vabd_f32): Likewise.
11704         (vabd_f64): Likewise.
11705         (vabdq_f32): Likewise.
11706         (vabdq_f64): Likewise.
11708 2016-06-08  Jiong Wang  <jiong.wang@arm.com>
11710         * config/aarch64/aarch64-builtins.def (rsqrts): New builtins for modes
11711         VALLF.
11712         * config/aarch64/aarch64-simd.md (aarch64_rsqrts_<mode>3): Rename to
11713         "aarch64_rsqrts<mode>".
11714         * config/aarch64/aarch64.c (get_rsqrts_type): Update gen* name.
11715         * config/aarch64/arm_neon.h (vrsqrtss_f32): Remove inline assembly.  Use
11716         builtin.
11717         (vrsqrtsd_f64): Likewise.
11718         (vrsqrts_f32): Likewise.
11719         (vrsqrts_f64): Likewise.
11720         (vrsqrtsq_f32): Likewise.
11721         (vrsqrtsq_f64): Likewise.
11723 2016-06-08  Jiong Wang  <jiong.wang@arm.com>
11725         * config/aarch64/aarch64-builtins.def (rsqrte): New builtins for modes
11726         VALLF.
11727         * config/aarch64/aarch64-simd.md (aarch64_rsqrte_<mode>2): Rename to
11728         "aarch64_rsqrte<mode>".
11729         * config/aarch64/aarch64.c (get_rsqrte_type): Update gen* name.
11730         * config/aarch64/arm_neon.h (vrsqrts_f32): Remove inline assembly.  Use
11731         builtin.
11732         (vrsqrted_f64): Likewise.
11733         (vrsqrte_f32): Likewise.
11734         (vrsqrte_f64): Likewise.
11735         (vrsqrteq_f32): Likewise.
11736         (vrsqrteq_f64): Likewise.
11738 2016-06-08  Jiong Wang  <jiong.wang@arm.com>
11740         * config/aarch64/aarch64-builtins.def (scvtf): Register vector modes.
11741         (ucvtf): Likewise.
11742         (fcvtzs): Likewise.
11743         (fcvtzu): Likewise.
11744         * config/aarch64/aarch64-simd.md
11745         (<FCVT_F2FIXED:fcvt_fixed_insn><VDQF:mode>3): New.
11746         (<FCVT_FIXED2F:fcvt_fixed_insn><VDQ_SDI:mode>3): Likewise.
11747         * config/aarch64/arm_neon.h (vcvt_n_f32_s32): Remove inline assembly.
11748         Use builtin.
11749         (vcvt_n_f32_u32): Likewise.
11750         (vcvt_n_s32_f32): Likewise.
11751         (vcvt_n_u32_f32): Likewise.
11752         (vcvtq_n_f32_s32): Likewise.
11753         (vcvtq_n_f32_u32): Likewise.
11754         (vcvtq_n_f64_s64): Likewise.
11755         (vcvtq_n_f64_u64): Likewise.
11756         (vcvtq_n_s32_f32): Likewise.
11757         (vcvtq_n_s64_f64): Likewise.
11758         (vcvtq_n_u32_f32): Likewise.
11759         (vcvtq_n_u64_f64): Likewise.
11760         * config/aarch64/iterators.md (VDQ_SDI): New mode iterator.
11761         (VSDQ_SDI): Likewise.
11762         (fcvt_target): Support V4DI, V4SI and V2SI.
11763         (FCVT_TARGET): Likewise.
11765 2016-06-08  Jiong Wang  <jiong.wang@arm.com>
11767         * config/aarch64/aarch64-builtins.c (TYPES_BINOP_USS): New
11768         (TYPES_BINOP_SUS): Likewise.
11769         (aarch64_simd_builtin_data): Update include file name.
11770         (aarch64_builtins): Likewise.
11771         * config/aarch64/aarch64-simd-builtins.def (scvtf): New entries
11772         for conversion between scalar float-point and fixed-point.
11773         (ucvtf): Likewise.
11774         (fcvtzs): Likewise.
11775         (fcvtzu): Likewise.
11776         * config/aarch64/aarch64.md
11777         (<FCVT_F2FIXED:fcvt_fixed_insn><GPF:mode>3: New
11778         pattern for conversion between scalar float to fixed-pointer.
11779         (<FCVT_FIXED2F:fcvt_fixed_insn><GPI:mode>: Likewise.
11780         (UNSPEC_FCVTZS): New UNSPEC enumeration.
11781         (UNSPEC_FCVTZU): Likewise.
11782         (UNSPEC_SCVTF): Likewise.
11783         (UNSPEC_UCVTF): Likewise.
11784         * config/aarch64/arm_neon.h (vcvtd_n_f64_s64): Remove inline assembly.
11785         Use builtin.
11786         (vcvtd_n_f64_u64): Likewise.
11787         (vcvtd_n_s64_f64): Likewise.
11788         (vcvtd_n_u64_f64): Likewise.
11789         (vcvtd_n_f32_s32): Likewise.
11790         (vcvts_n_f32_u32): Likewise.
11791         (vcvtd_n_s32_f32): Likewise.
11792         (vcvts_n_u32_f32): Likewise.
11793         * config/aarch64/iterators.md (fcvt_target): Support integer to float
11794         mapping.
11795         (FCVT_TARGET): Likewise.
11796         (FCVT_FIXED2F): New iterator.
11797         (FCVT_F2FIXED): Likewise.
11798         (fcvt_fixed_insn): New define_int_attr.
11800 2016-06-07  Jan Hubicka  <hubicka@ucw.cz>
11802         * predict.c (pass_strip_predict_hints::execute): Cleanup CFG if
11803         some statements was removed.
11805 2016-06-08  Alan Hayward  <alan.hayward@arm.com>
11807         * tree-vect-data-refs.c (vect_analyze_data_refs): Remove debug newline.
11808         * tree-vect-loop-manip.c (slpeel_make_loop_iterate_ntimes): likewise.
11809         (vect_can_advance_ivs_p): likewise.
11810         (vect_update_ivs_after_vectorizer): likewise.
11811         * tree-vect-loop.c (vect_determine_vectorization_factor): likewise.
11812         (vect_analyze_scalar_cycles_1): likewise.
11813         (vect_analyze_loop_operations): likewise.
11814         (report_vect_op): likewise.
11815         (vect_is_slp_reduction): likewise.
11816         (vect_is_simple_reduction): likewise.
11817         (get_initial_def_for_induction): likewise.
11818         (vect_transform_loop): likewise.
11819         * tree-vect-patterns.c (vect_recog_dot_prod_pattern): likewise.
11820         (vect_recog_sad_pattern): likewise.
11821         (vect_recog_widen_sum_pattern): likewise.
11822         (vect_recog_widening_pattern): likewise.
11823         (vect_recog_divmod_pattern): likewise.
11824         * tree-vect-slp.c (vect-build-slp_tree_1): likewise.
11825         (vect_analyze_slp_instance): likewise.
11826         (vect_transform_slp_perm_load): likewise.
11827         (vect_schedule_slp_instance): likewise.
11829 2016-06-07  Jan Hubicka  <hubicka@ucw.cz>
11831         * predict.c (predict_iv_comparison): Mention that heuristics is broken.
11832         (return_prediction): PRED_CONST_RETURN predict return as not taken.
11833         * predict.def (PRED_CONTINUE): Change hitrate 50->67
11834         (PRED_LOOP_BRANCH): Document predictor as broken.
11835         (PRED_LOOP_EXIT): Change hitrate 91->92.
11836         (PRED_LOOP_EXTRA_EXIT): Change hitrate 91->83.
11837         (PRED_POINTER, PRED_TREE_POINTER): Change hitrate 85->70.
11838         (PRED_OPCODE_POSITIVE): Change hitrate 79->64.
11839         (PRED_OPCODE_NONEQUAL): Change hitrate 91->66.
11840         (PRED_TREE_OPCODE_POSITIVE): Change hitrate 73->64
11841         (PRED_TREE_OPCODE_NONEQUAL): Chnage hitrate 72->66
11842         (PRED_CALL): Chane hitrate 71->67.
11843         (PRED_TREE_EARLY_RETURN): Document issues, change hitrate 61->54.
11844         (PRED_GOTO): Document as unused right now.
11845         (PRED_CONST_RETURN): Change hitrate 67->69
11846         (PRED_NEGATIVE_RETURN): Change hitrate 96->98
11847         (PRED_NULL_RETURN): Change hitrate 91->90.
11848         (PRED_LOOP_IV_COMPARE_GUESS): Change hitrate to 98.
11849         (PRED_FORTRAN_FAIL_ALLOC): Change hitrate to 62; document issues.
11850         (PRED_FORTRAN_SIZE_ZERO): Change hitrate to 99.
11852 2016-06-07  Bill Seurer  <seurer@linux.vnet.ibm.com>
11854         * config/rs6000/altivec.h: Add __builtin_vec_mul.
11855         * config/rs6000/rs6000-builtin.def (vec_mul): Change vec_mul to a
11856         special case Altivec builtin.
11857         * config/rs6000/rs6000-c.c (altivec_overloaded_builtins): Remove
11858         VSX_BUILTIN_VEC_MUL (replaced with special case code).
11859         * config/rs6000/rs6000-c.c (altivec_resolve_overloaded_builtin): Add
11860         code for ALTIVEC_BUILTIN_VEC_MUL.
11861         * config/rs6000/rs6000.c (altivec_init_builtins): Add definition
11862         for __builtin_vec_mul.
11864 2016-06-07  Peter Bergner  <bergner@vnet.ibm.com>
11866         * doc/invoke.texi (RS/6000 and PowerPC Options): Document -mhtm and
11867         -mno-htm.
11869 2016-06-07  David Malcolm  <dmalcolm@redhat.com>
11871         * spellcheck.c (selftest::test_find_closest_string): New function.
11872         (spellcheck_c_tests): Call the above.
11874 2016-06-07  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
11876         * simplify-rtx.c (simplify_cond_clz_ctz): Delete 'mode' local variable.
11878 2016-06-07  Jakub Jelinek  <jakub@redhat.com>
11880         * config/i386/sse.md (avx_vec_concat<mode>): Add v=v,vm and
11881         Yv=Yv,C alternatives.
11883 2016-06-07  Richard Biener  <rguenther@suse.de>
11885         PR c/61564
11886         * common.opt (ffast-math): Make Optimization.
11888 2016-06-07  Simon Dardis  <simon.dardis@imgtec.com>
11889             Prachi Godbole  <prachi.godbole@imgtec.com>
11891         * config/mips/p5600.md (p5600_fpu_fadd): Remove checking for
11892         `fabs' and `fneg' type attributes.
11893         (p5600_fpu_fabs): Add `fmove' to the comment.
11895 2016-06-07  Jan Hubicka  <hubicka@ucw.cz>
11897         * gimple.c: Include builtins.h
11898         (gimple_inexpensive_call_p): New function.
11899         * gimple.h (gimple_inexpensive_call_p): Declare.
11900         * tree-ssa-loop-ch.c (should_duplicate_loop_header_p): Use it.
11901         * tree-ssa-loop-ivcanon.c (tree_estimate_loop_size): Likewise;
11902         fix formatting.
11904 2016-06-07  Paolo Carlini  <paolo.carlini@oracle.com>
11906         * diagnostic.c (diagnostic_impl, diagnostic_n_impl): New.
11907         (inform, inform_at_rich_loc, inform_n, warning, warning_at,
11908         warning_at_rich_loc, warning_n, pedwarn, permerror,
11909         permerror_at_rich_loc, error, error_n, error_at, error_at_rich_loc,
11910         sorry, fatal_error, internal_error, internal_error_no_backtrace):
11911         Use the above.
11913 2016-06-07  Richard Biener  <rguenther@suse.de>
11915         PR tree-optimization/71428
11916         * tree-ssa-math-opts.c (perform_symbolic_merge): Properly distinguish
11917         BIT_FIELD_REF op vs. load.
11919 2016-06-07  Richard Biener  <rguenther@suse.de>
11921         PR middle-end/71423
11922         * match.pd ((X | ~Y) -> Y <= X): Properly invert the comparison
11923         for signed ops.
11925 2016-06-06  John David Anglin  <danglin@gcc.gnu.org>
11927         * config/pa/pa.md (call): Generate indirect long calls to non-local
11928         functions on TARGET_64BIT.
11929         (call_value): Likewise.
11931 2016-06-06  John David Anglin  <danglin@gcc.gnu.org>
11933         * config/pa/pa.md (call_val_reg_64bit): Remove "reg: DI " clobber from
11934         pattern and subsequent splitters.
11935         (call_val_reg_64bit_post_reload): Likewise.
11937 2016-06-07  Kugan Vivekanandarajah  <kuganv@linaro.org>
11939         PR middle-end/71408
11940         * tree-ssa-reassoc.c (zero_one_operation): Fix NEGATE_EXPR operand for
11941         propagate_op_to_single_use.
11943 2016-06-07  Kugan Vivekanandarajah  <kuganv@linaro.org>
11945         PR middle-end/71281
11946         * tree-ssa-reassoc.c (reassociate_bb): Set uid for negate stmt.
11948 2016-06-07  Uros Bizjak  <ubizjak@gmail.com>
11950         * config/i386/i386.h (enum ix86_enitity): Add X86_DIRFLAG.
11951         (enum x86_dirflag_state): New enum.
11952         (NUM_MODES_FOR_MODE_SWITCHING): Add X86_DIRFLAG_ANY.
11953         (machine_function): Remove needs_cld.
11954         (ix86_current_function_needs_cld): Remove.
11955         * config/i386/i386.c (ix86_set_func_type): Set
11956         ix86_optimize_mode_switching[X86_DIRFLAG] to 1.
11957         (ix86_expand_prologue): Do not emit CLD here.
11958         (ix86_dirflag_mode_needed): New function.
11959         (ix86_dirflag_mode_entry): Ditto.
11960         (ix86_mode_needed): Handle X86_DIRFLAG entity.
11961         (ix86_mode_after): Ditto.
11962         (ix86_mode_entry): Ditto.
11963         (ix86_mode_exit): Ditto.
11964         (ix86_emit_mode_set): Ditto.
11965         * config/i386/i386.md (strmov_singleop): Set
11966         ix86_optimize_mode_switching[X86_DIRFLAG] to 1 for TARGET_CLD.
11967         Do not set ix86_current_function_needs_cld.
11968         (rep_mov): Ditto.
11969         (strset_singleop): Ditto.
11970         (rep_stos): Ditto.
11971         (cmpstrnqi_nz_1): Ditto.
11972         (cmpstrnqi_1): Ditto.
11973         (strlenqi_1): Ditto.
11975 2016-06-06  Jakub Jelinek  <jakub@redhat.com>
11977         PR tree-optimization/71259
11978         * tree-vect-slp.c (vect_get_constant_vectors): For
11979         VECTOR_BOOLEAN_TYPE_P, return all ones constant instead of
11980         one for constant op, and use COND_EXPR for non-constant.
11982 2016-06-06  David Malcolm  <dmalcolm@redhat.com>
11984         * Makefile.in (OBJS): Add function-tests.o,
11985         hash-map-tests.o, hash-set-tests.o, rtl-tests.o,
11986         selftest-run-tests.o.
11987         (OBJS-libcommon): Add selftest.o.
11988         (OBJS-libcommon-target): Add selftest.o.
11989         (all.internal): Add "selftest".
11990         (all.cross): Likewise.
11991         (selftest): New phony target.
11992         (s-selftest): New target.
11993         (selftest-gdb): New phony target.
11994         (COLLECT2_OBJS): Add selftest.o.
11995         * bitmap.c: Include "selftest.h".
11996         (selftest::test_gc_alloc): New function.
11997         (selftest::test_set_range): New function.
11998         (selftest::test_clear_bit_in_middle): New function.
11999         (selftest::test_copying): New function.
12000         (selftest::test_bitmap_single_bit_set_p): New function.
12001         (selftest::bitmap_c_tests): New function.
12002         * common.opt (fself-test): New.
12003         * diagnostic-show-locus.c: Include "selftest.h".
12004         (make_range): New function.
12005         (test_range_contains_point_for_single_point): New function.
12006         (test_range_contains_point_for_single_line): New function.
12007         (test_range_contains_point_for_multiple_lines): New function.
12008         (assert_eq): New function.
12009         (test_get_line_width_without_trailing_whitespace): New function.
12010         (selftest::diagnostic_show_locus_c_tests): New function.
12011         * et-forest.c: Include "selftest.h".
12012         (selftest::test_single_node): New function.
12013         (selftest::test_simple_tree): New function.
12014         (selftest::test_disconnected_nodes): New function.
12015         (selftest::et_forest_c_tests): New function.
12016         * fold-const.c: Include "selftest.h".
12017         (selftest::assert_binop_folds_to_const): New function.
12018         (selftest::assert_binop_folds_to_nonlvalue): New function.
12019         (selftest::test_arithmetic_folding): New function.
12020         (selftest::fold_const_c_tests): New function.
12021         * function-tests.c: New file.
12022         * gimple.c: Include "selftest.h".
12023         Include "gimple-pretty-print.h".
12024         (selftest::verify_gimple_pp): New function.
12025         (selftest::test_assign_single): New function.
12026         (selftest::test_assign_binop): New function.
12027         (selftest::test_nop_stmt): New function.
12028         (selftest::test_return_stmt): New function.
12029         (selftest::test_return_without_value): New function.
12030         (selftest::gimple_c_tests): New function.
12031         * hash-map-tests.c: New file.
12032         * hash-set-tests.c: New file.
12033         * input.c: Include "selftest.h".
12034         (selftest::assert_loceq): New function.
12035         (selftest::test_accessing_ordinary_linemaps): New function.
12036         (selftest::test_unknown_location): New function.
12037         (selftest::test_builtins): New function.
12038         (selftest::test_reading_source_line): New function.
12039         (selftest::input_c_tests): New function.
12040         * rtl-tests.c: New file.
12041         * selftest-run-tests.c: New file.
12042         * selftest.c: New file.
12043         * selftest.h: New file.
12044         * spellcheck.c: Include "selftest.h".
12045         (selftest::levenshtein_distance_unit_test_oneway): New function,
12046         adapted from testsuite/gcc.dg/plugin/levenshtein_plugin.c.
12047         (selftest::levenshtein_distance_unit_test): Likewise.
12048         (selftest::spellcheck_c_tests): Likewise.
12049         * toplev.c: Include selftest.h.
12050         (toplev::run_self_tests): New.
12051         (toplev::main): Handle -fself-test.
12052         * toplev.h (toplev::run_self_tests): New.
12053         * tree.c: Include "selftest.h".
12054         (selftest::test_integer_constants): New function.
12055         (selftest::test_identifiers): New function.
12056         (selftest::test_labels): New function.
12057         (selftest::tree_c_tests): New function.
12058         * tree-cfg.c: Include "selftest.h".
12059         (selftest::push_fndecl): New function.
12060         (selftest::test_linear_chain): New function.
12061         (selftest::test_diamond): New function.
12062         (selftest::test_fully_connected): New function.
12063         (selftest::tree_cfg_c_tests): New function.
12064         * vec.c: Include "selftest.h".
12065         (selftest::safe_push_range): New function.
12066         (selftest::test_quick_push): New function.
12067         (selftest::test_safe_push): New function.
12068         (selftest::test_truncate): New function.
12069         (selftest::test_safe_grow_cleared): New function.
12070         (selftest::test_pop): New function.
12071         (selftest::test_safe_insert): New function.
12072         (selftest::test_ordered_remove): New function.
12073         (selftest::test_unordered_remove): New function.
12074         (selftest::test_block_remove): New function.
12075         (selftest::reverse_cmp): New function.
12076         (selftest::test_qsort): New function.
12077         (selftest::vec_c_tests): New function.c.
12078         * wide-int.cc: Include selftest.h and wide-int-print.h.
12079         (selftest::from_int <wide_int>): New function.
12080         (selftest::from_int <offset_int>): New function.
12081         (selftest::from_int <widest_int>): New function.
12082         (selftest::assert_deceq): New function.
12083         (selftest::assert_hexeq): New function.
12084         (selftest::test_printing <VALUE_TYPE>): New function template.
12085         (selftest::test_ops <VALUE_TYPE>): New function template.
12086         (selftest::test_comparisons <VALUE_TYPE>): New function template.
12087         (selftest::run_all_wide_int_tests <VALUE_TYPE>): New function
12088         template.
12089         (selftest::wide_int_cc_tests): New function.
12091 2016-06-06  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
12093         PR middle-end/37780
12094         * ifcvt.c (noce_try_ifelse_collapse): New function.
12095         Declare prototype.
12096         (noce_process_if_block): Call noce_try_ifelse_collapse.
12097         * simplify-rtx.c (simplify_cond_clz_ctz): New function.
12098         (simplify_ternary_operation): Use the above to simplify
12099         conditional CLZ/CTZ expressions.
12101 2016-06-06  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
12103         PR middle-end/37780
12104         * config/aarch64/aarch64.md (ctz<mode>2): Convert to
12105         define_insn_and_split.
12107 2016-06-06  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
12109         PR middle-end/37780
12110         * config/arm/arm.md (ctzsi2): Convert to define_insn_and_split.
12112 2016-06-06  Bernd Edlinger  <bernd.edlinger@hotmail.de>
12114         PR c/24414
12115         * cfgexpand.c (expand_asm_loc): Remove handling for ADDR_EXPR.
12116         Implicitly clobber memory for basic asm with non-empty assembler
12117         string.  Use targetm.md_asm_adjust also here.
12118         * compare-elim.c (arithmetic_flags_clobber_p): Use asm_noperands here.
12119         * final.c (final_scan_insn): Handle basic asm in PARALLEL block.
12120         * gimple.c (gimple_asm_clobbers_memory_p): Handle basic asm with
12121         non-empty assembler string.
12122         * ira.c (compute_regs_asm_clobbered): Use asm_noperands here.
12123         * recog.c (asm_noperands): Handle basic asm in PARALLEL block.
12124         (decode_asm_operands): Handle basic asm in PARALLEL block.
12125         (extract_insn): Handle basic asm in PARALLEL block.
12126         * doc/extend.texi: Mention new behavior of basic asm.
12127         * config/ia64/ia64 (rtx_needs_barrier): Handle ASM_INPUT here.
12128         * config/pa/pa.c (branch_to_delay_slot_p, branch_needs_nop_p,
12129         branch_needs_nop_p): Use asm_noperands.
12131 2016-06-06  Jose E. Marchesi  <jose.marchesi@oracle.com>
12133         * config/sparc/sparc.md (cpu): Add niagara7 cpu type.
12134         Include the M7 SPARC DFA scheduler.
12135         New attribute v3pipe.
12136         Annotate insns with v3pipe where appropriate.
12137         Define cpu_feature vis4.
12138         Add lzd instruction type and set it on clzdi_sp64 and clzsi_sp64.
12139         Add (V8QI "8") to vbits.
12140         Add insns {add,sub}v8qi3
12141         Add insns ss{add,sub}v8qi3
12142         Add insns us{add,sub}{v8qi,v4hi}3
12143         Add insns {min,max}{v8qi,v4hi,v2si}3
12144         Add insns {minu,maxu}{v8qi,v4hi,v2si}3
12145         Add insns fpcmp{le,gt,ule,ug,ule,ugt}{8,16,32}_vis.
12146         * config/sparc/niagara4.md: Add a comment explaining the
12147         discrepancy between the documented latenty numbers and the
12148         implemented ones.
12149         * config/sparc/niagara7.md: New file.
12150         * configure.ac (HAVE_AS_SPARC5_VIS4): Define if the assembler
12151         supports SPARC5 and VIS 4.0 instructions.
12152         * configure: Regenerate.
12153         * config.in: Likewise.
12154         * config.gcc: niagara7 is a supported cpu in sparc*-*-* targets.
12155         * config/sparc/sol2.h (ASM_CPU32_DEFAUILT_SPEC): Set for
12156         TARGET_CPU_niagara7.
12157         (ASM_CPU64_DEFAULT_SPEC): Likewise.
12158         (CPP_CPU_SPEC): Handle niagara7.
12159         (ASM_CPU_SPEC): Likewise.
12160         * config/sparc/sparc-opts.h (processor_type): Add
12161         PROCESSOR_NIAGARA7.
12162         (mvis4): New option.
12163         * config/sparc/sparc.h (TARGET_CPU_niagara7): Define.
12164         (AS_NIAGARA7_FLAG): Define.
12165         (ASM_CPU64_DEFAULT_SPEC): Set for niagara7.
12166         (CPP_CPU64_DEFAULT_SPEC): Likewise.
12167         (CPP_CPU_SPEC): Handle niagara7.
12168         (ASM_CPU_SPEC): Likewise.
12169         * config/sparc/sparc.c (niagara7_costs): Define.
12170         (sparc_option_override): Handle niagara7 and adjust cache-related
12171         parameters with better values for niagara cpus.  Also support VIS4.
12172         (sparc32_initialize_trampoline): Likewise.
12173         (sparc_use_sched_lookahead): Likewise.
12174         (sparc_issue_rate): Likewise.
12175         (sparc_register_move_cost): Likewise.
12176         (dump_target_flag_bits): Support VIS4.
12177         (sparc_vis_init_builtins): Likewise.
12178         (sparc_builtins): Likewise.
12179         * config/sparc/sparc-c.c (sparc_target_macros): Define __VIS__ for
12180         VIS4 4.0.
12181         * config/sparc/driver-sparc.c (cpu_names): Add SPARC-M7 and
12182         UltraSparc M7.
12183         * config/sparc/sparc.opt (sparc_processor_type): New value
12184         niagara7.
12185         * config/sparc/visintrin.h (__attribute__): Prototypes for the
12186         VIS4 builtins.
12187         * doc/invoke.texi (SPARC Options): Document -mcpu=niagara7 and
12188         -mvis4.
12189         * doc/extend.texi (SPARC VIS Built-in Functions): Document the
12190         VIS4 builtins.
12192 2016-06-06  Jonathan Wakely  <jwakely@redhat.com>
12194         * doc/sourcebuild.texi (Directives): Remove extra closing braces.
12196 2016-06-06  Richard Biener  <rguenther@suse.de>
12198         PR tree-optimization/71398
12199         * tree-ssa-loop-ivcanon.c (unloop_loops): First unloop, then
12200         remove edges.
12202 2016-06-05  James Bowman  <james.bowman@ftdichip.com>
12204         * config/ft32/ft32.c (ft32_setup_incoming_varargs,
12205         ft32_expand_prolog, ft32_expand_epilogue):
12206         Handle pretend_args.
12207         * config/ft32/ft32.h: Remove OUTGOING_REG_PARM_STACK_SPACE.
12208         * config/ft32/ft32.md: Add pretend_returner.
12210 2016-06-06  Uros Bizjak  <ubizjak@gmail.com>
12212         PR target/71389
12213         * config/i386/i386.c (ix86_avx256_split_vector_move_misalign):
12214         Copy op1 RTX to avoid invalid sharing.
12215         (ix86_expand_vector_move_misalign): Ditto.
12217 2016-06-05  John David Anglin  <danglin@gcc.gnu.org>
12219         * expr.c (move_by_pieces_d::generate): Mark mode parameter with
12220         ATTRIBUTE_UNUSED.
12222 2016-06-05  Jan Hubicka  <hubicka@ucw.cz>
12224         * predict.c (predicted_by_loop_heuristics_p): New function.
12225         (predict_iv_comparison): Use it.
12226         (predict_loops): Walk from innermost loops; do not predict edges
12227         leaving multiple loops multiple times; implement
12228         PRED_LOOP_ITERATIONS_MAX heuristics.
12229         * predict.def (PRED_LOOP_ITERATIONS_MAX): New predictor.
12231 2016-06-05  Jan Hubicka  <hubicka@ucw.cz>
12233         * cfg.c (check_bb_profile): Do not report mismatched profiles when
12234         only edges out of BB are EH edges.
12236 2016-06-04  Martin Sebor  <msebor@redhat.com>
12237             Marcin Baczyński  <marbacz@gmail.com>
12239         PR c/48116
12240         * doc/invoke.texi (-Wreturn-type): Mention not warning on return with
12241         a void expression in a void function.
12243 2016-06-03  Jan Hubicka  <hubicka@ucw.cz>
12245         * tree-ssa-loop-ch.c (should_duplicate_loop_header_p): Do not check
12246         aux; dump reasons of decisions.
12247         (should_duplicate_loop_header_p): Likewise.
12248         (do_while_loop_p): Likewise.
12249         (ch_base::copy_headers): Dump asi num insns duplicated.
12251 2016-06-04  Jakub Jelinek  <jakub@redhat.com>
12253         PR tree-optimization/71405
12254         * tree-ssa.c (execute_update_addresses_taken): For clobber with
12255         incompatible type, build a new clobber with the right type instead
12256         of building a VIEW_CONVERT_EXPR around it.
12258 2016-06-04  Oleg Endo  <olegendo@gcc.gnu.org>
12260         PR tree-optimization/52171
12261         * config/sh/sh.c (sh_use_by_pieces_infrastructure_p): Use
12262         by_pieces_ninsns instead of move_by_pieces_ninsns.
12264 2016-06-04  Oleg Endo  <olegendo@gcc.gnu.org>
12266         * config/sh/sh.c (sh_print_operand_address): Don't use hardcoded 'r0'
12267         for reg+reg addressing mode.
12269 2016-06-03  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
12271         * rs6000-c.c (c/c-tree.h): Add #include.
12272         (altivec_resolve_overloaded_builtin): Handle ARRAY_TYPE arguments
12273         in C++ when found in the base position of vec_ld or vec_st.
12275 2016-06-03  Jan Hubicka  <hubicka@ucw.cz>
12277         * tree-ssa-loop-niter.c (estimate_numbers_of_iterations_loop): Avoid
12278         use of profile unless profile status is PROFILE_READ.
12279         * profile.c (compute_branch_probabilities): Set profile status
12280         only after reporting predictor hitrates.
12282 2016-06-03  Joseph Myers  <joseph@codesourcery.com>
12284         PR target/71276
12285         PR target/71277
12286         * common.opt (ffp-int-builtin-inexact): New option.
12287         * doc/invoke.texi (-fno-fp-int-builtin-inexact): Document.
12288         * doc/md.texi (floor@var{m}2, btrunc@var{m}2, round@var{m}2)
12289         (ceil@var{m}2): Document dependence on this option.
12290         * ipa-inline-transform.c (inline_call): Handle
12291         flag_fp_int_builtin_inexact.
12292         * ipa-inline.c (can_inline_edge_p): Likewise.
12293         * config/i386/i386.md (rintxf2): Do not test
12294         flag_unsafe_math_optimizations.
12295         (rint<mode>2_frndint): New define_insn.
12296         (rint<mode>2): Do not test flag_unsafe_math_optimizations for 387
12297         or !flag_trapping_math for SSE.  Just use gen_rint<mode>2_frndint
12298         for 387 instead of extending and truncating.
12299         (frndintxf2_<rounding>): Test flag_fp_int_builtin_inexact ||
12300         !flag_trapping_math instead of flag_unsafe_math_optimizations.
12301         Change to frndint<mode>2_<rounding>.
12302         (frndintxf2_<rounding>_i387): Likewise.  Change to
12303         frndint<mode>2_<rounding>_i387.
12304         (<rounding_insn>xf2): Likewise.
12305         (<rounding_insn><mode>2): Test flag_fp_int_builtin_inexact ||
12306         !flag_trapping_math instead of flag_unsafe_math_optimizations for
12307         x87.  Test TARGET_ROUND || !flag_trapping_math ||
12308         flag_fp_int_builtin_inexact instead of !flag_trapping_math for
12309         SSE.  Use ROUND_NO_EXC in constant operand of
12310         gen_sse4_1_round<mode>2.  Just use gen_frndint<mode>2_<rounding>
12311         for 387 instead of extending and truncating.
12313 2016-06-03  H.J. Lu  <hongjiu.lu@intel.com>
12314             Julia Koval  <julia.koval@intel.com>
12316         PR target/66960
12317         PR target/67630
12318         PR target/67634
12319         PR target/67841
12320         PR target/68037
12321         PR target/68618
12322         PR target/68661
12323         PR target/69575
12324         PR target/69596
12325         PR target/69734
12326         * config/i386/i386-protos.h (ix86_epilogue_uses): New prototype.
12327         * config/i386/i386.c (ix86_conditional_register_usage): Preserve
12328         all registers, except for function return registers if there are
12329         no caller-saved registers.
12330         (ix86_set_func_type): New function.
12331         (ix86_set_current_function): Call ix86_set_func_type to set
12332         no_caller_saved_registers and func_type.  Call reinit_regs if
12333         caller-saved registers are changed.  Don't allow MPX, SSE, MMX
12334         nor x87 instructions in interrupt handler nor function with
12335         no_caller_saved_registers attribute.
12336         (ix86_function_ok_for_sibcall): Return false if there are no
12337         caller-saved registers.
12338         (type_natural_mode): Don't warn ABI change for MMX in interrupt
12339         handler.
12340         (ix86_function_arg_advance): Skip for callee in interrupt handler.
12341         (ix86_function_arg): Return special arguments in interrupt handler.
12342         (ix86_promote_function_mode): Promote pointer to word_mode only
12343         for normal functions.
12344         (ix86_can_use_return_insn_p): Don't use `ret' instruction in
12345         interrupt handler.
12346         (ix86_epilogue_uses): New function.
12347         (ix86_hard_regno_scratch_ok): Likewise.
12348         (ix86_save_reg): Preserve all registers in interrupt handler
12349         after reload.  Preserve all registers, except for function return
12350         registers, if there are no caller-saved registers after reload.
12351         (find_drap_reg): Always use callee-saved register if there are
12352         no caller-saved registers.
12353         (ix86_minimum_incoming_stack_boundary): Return MIN_STACK_BOUNDARY
12354         for interrupt handler.
12355         (ix86_expand_prologue): Don't allow DRAP in interrupt handler.
12356         Emit cld instruction if stringops are used in interrupt handler
12357         or interrupt handler isn't a leaf function.
12358         (ix86_expand_epilogue): Generate interrupt return for interrupt
12359         handler and pop the 'ERROR_CODE' off the stack before interrupt
12360         return in exception handler.
12361         (ix86_expand_call): Disallow calling interrupt handler directly.
12362         If there are no caller-saved registers, mark all registers that
12363         are clobbered by the call which returns as clobbered.
12364         (ix86_handle_no_caller_saved_registers_attribute): New function.
12365         (ix86_handle_interrupt_attribute): Likewise.
12366         (ix86_attribute_table): Add interrupt and no_caller_saved_registers
12367         attributes.
12368         (TARGET_HARD_REGNO_SCRATCH_OK): Likewise.
12369         * config/i386/i386.h (ACCUMULATE_OUTGOING_ARGS): Use argument
12370         accumulation in interrupt function if stack may be realigned to
12371         avoid DRAP.
12372         (EPILOGUE_USES): New.
12373         (function_type): New enum.
12374         (machine_function): Add func_type and no_caller_saved_registers.
12375         * config/i386/i386.md (UNSPEC_INTERRUPT_RETURN): New.
12376         (interrupt_return): New pattern.
12377         * doc/extend.texi: Document x86 interrupt and
12378         no_caller_saved_registers attributes.
12380 2016-06-03  Bernd Schmidt  <bschmidt@redhat.com>
12382         PR tree-optimization/52171
12383         * builtins.c (expand_cmpstrn_or_cmpmem): Delete, moved elsewhere.
12384         (expand_builtin_memcmp): New arg RESULT_EQ.  All callers changed.
12385         Look for constant strings.  Move some code to emit_block_cmp_hints
12386         and use it.
12387         * builtins.def (BUILT_IN_MEMCMP_EQ): New.
12388         * defaults.h (COMPARE_MAX_PIECES): New macro.
12389         * expr.c (move_by_pieces_d, store_by_pieces_d): Remove old structs.
12390         (move_by_pieces_1, store_by_pieces_1, store_by_pieces_2): Remvoe.
12391         (clear_by_pieces_1): Don't declare.  Move definition before use.
12392         (can_do_by_pieces): New static function.
12393         (can_move_by_pieces): Use it.  Return bool.
12394         (by_pieces_ninsns): Renamed from move_by_pieces_ninsns.  New arg
12395         OP.  All callers changed.  Handle COMPARE_BY_PIECES.
12396         (class pieces_addr); New.
12397         (pieces_addr::pieces_addr, pieces_addr::decide_autoinc,
12398         pieces_addr::adjust, pieces_addr::increment_address,
12399         pieces_addr::maybe_predec, pieces_addr::maybe_postinc): New member
12400         functions for it.
12401         (class op_by_pieces_d): New.
12402         (op_by_pieces_d::op_by_pieces_d, op_by_pieces_d::run): New member
12403         functions for it.
12404         (class move_by_pieces_d, class compare_by_pieces_d,
12405         class store_by_pieces_d): New subclasses of op_by_pieces_d.
12406         (move_by_pieces_d::prepare_mode, move_by_pieces_d::generate,
12407         move_by_pieces_d::finish_endp, store_by_pieces_d::prepare_mode,
12408         store_by_pieces_d::generate, store_by_pieces_d::finish_endp,
12409         compare_by_pieces_d::generate, compare_by_pieces_d::prepare_mode,
12410         compare_by_pieces_d::finish_mode): New member functions.
12411         (compare_by_pieces, emit_block_cmp_via_cmpmem): New static
12412         functions.
12413         (expand_cmpstrn_or_cmpmem): Moved here from builtins.c.
12414         (emit_block_cmp_hints): New function.
12415         (move_by_pieces, store_by_pieces, clear_by_pieces): Rewrite to just
12416         use the newly defined classes.
12417         * expr.h (by_pieces_constfn): New typedef.
12418         (can_store_by_pieces, store_by_pieces): Use it in arg declarations.
12419         (emit_block_cmp_hints, expand_cmpstrn_or_cmpmem): Declare.
12420         (move_by_pieces_ninsns): Don't declare.
12421         (can_move_by_pieces): Change return value to bool.
12422         * target.def (TARGET_USE_BY_PIECES_INFRASTRUCTURE_P): Update docs.
12423         (compare_by_pieces_branch_ratio): New hook.
12424         * target.h (enum by_pieces_operation): Add COMPARE_BY_PIECES.
12425         (by_pieces_ninsns): Declare.
12426         * targethooks.c (default_use_by_pieces_infrastructure_p): Handle
12427         COMPARE_BY_PIECES.
12428         (default_compare_by_pieces_branch_ratio): New function.
12429         * targhooks.h (default_compare_by_pieces_branch_ratio): Declare.
12430         * doc/tm.texi.in (STORE_MAX_PIECES, COMPARE_MAX_PIECES): Document.
12431         * doc/tm.texi: Regenerate.
12432         * tree-ssa-strlen.c: Include "builtins.h".
12433         (handle_builtin_memcmp): New static function.
12434         (strlen_optimize_stmt): Call it for BUILT_IN_MEMCMP.
12435         * tree.c (build_common_builtin_nodes): Create __builtin_memcmp_eq.
12437 2016-06-03  Alan Hayward  <alan.hayward@arm.com>
12439         * tree-vect-stmts.c (vect_stmt_relevant_p): Do not vectorize non live
12440         relevant stmts which are simple and invariant.
12441         * tree-vect-loop.c (vectorizable_live_operation): Check relevance
12442         instead of simple and invariant
12444 2016-06-03  Alan Hayward  <alan.hayward@arm.com>
12446         * tree-vect-loop.c (vect_analyze_loop_operations): Allow live stmts.
12447         (vectorizable_reduction): Check for new relevant state.
12448         (vectorizable_live_operation): vectorize live stmts using
12449         BIT_FIELD_REF.  Remove special case for gimple assigns stmts.
12450         * tree-vect-stmts.c (is_simple_and_all_uses_invariant): New function.
12451         (vect_stmt_relevant_p): Check for stmts which are only used live.
12452         (process_use): Use of a stmt does not inherit it's live value.
12453         (vect_mark_stmts_to_be_vectorized): Simplify relevance inheritance.
12454         (vect_analyze_stmt): Check for new relevant state.
12455         * tree-vectorizer.h (vect_relevant): New entry for a stmt which is used
12456         outside the loop, but not inside it.
12458 2016-06-03  Alan Hayward  <alan.hayward@arm.com>
12460         * tree-vectorizer.h (vect_get_vec_def_for_operand_1): New.
12461         * tree-vect-stmts.c (vect_get_vec_def_for_operand_1): New.
12462         (vect_get_vec_def_for_operand): Split out code.
12464 2016-06-03  Segher Boessenkool  <segher@kernel.crashing.org>
12466         * config/rs6000/rs6000.md (define_peepholes for two mfcr's): Delete.
12468 2016-06-03  Alan Hayward  <alan.hayward@arm.com>
12470         * tree-vect-stmts.c (vectorizable_call) Remove GOMP_SIMD_LANE code.
12472 2016-06-03  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
12474         * config/arm/thumb1.md (*thumb1_mulsi3): Fix typos in comment.
12476 2016-06-03  Jakub Jelinek  <jakub@redhat.com>
12478         PR middle-end/71387
12479         * cgraph.c (cgraph_edge::redirect_call_stmt_to_callee): If redirecting
12480         to noreturn e->callee->decl that has void return type and void
12481         arguments, adjust gimple_call_fntype and remove lhs even if it had
12482         previously addressable type.
12484 2016-06-02  Jeff Law  <law@redhat.com>
12486         PR tree-optimization/71328
12487         * tree-ssa-threadupdate.c (duplicate_thread_path): Fix off-by-one
12488         error when checking for a jump back onto the copied path.
12490 2016-06-02  David Malcolm  <dmalcolm@redhat.com>
12492         * config/microblaze/microblaze.c (get_branch_target): Add return
12493         NULL_RTX for the non-CALL_P case.
12494         (insert_wic_for_ilb_runout): Remove unused local "wic_addr1".
12495         (insert_wic): Remove unused local "j".
12497 2016-06-02  Martin Liska  <mliska@suse.cz>
12499         * predict.def: Fix typo in PRED_FORTRAN_FAIL_IO display name.
12501 2016-06-02  H.J. Lu  <hongjiu.lu@intel.com>
12502             Julia Koval  <julia.koval@intel.com>
12504         * function.c (assign_parm_setup_stack): Force source into a
12505         register if needed.
12506         * target.def (function_incoming_arg): Update documentation to
12507         allow arbitrary address computation based on hard register.
12508         * doc/tm.texi: Regenerated.
12510 2016-06-02  Martin Liska  <mliska@suse.cz>
12512         * predict.c (combine_predictions_for_bb): Fix first match in
12513         cases where a first predictor contains more than one occurence
12514         in list of predictors.  Take the best value in such case.
12516 2016-06-02  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
12518         PR rtl-optimization/71295
12519         * rtlanal.c (subreg_get_info): If taking a subreg at the requested
12520         offset would go over the size of the inner mode reject it.
12522 2016-06-02  Jakub Jelinek  <jakub@redhat.com>
12524         * config/i386/sse.md (*vec_concatv4si): Use v=v,v instead of
12525         x=x,x and v=v,m instead of x=x,m.
12527         * config/i386/sse.md (*vec_concatv2si_sse4_1): Add avx512dq v=Yv,rm
12528         alternative.  Change x=x,x alternative to v=Yv,Yv and x=rm,C
12529         alternative to v=rm,C.
12531         * config/i386/sse.md (*vec_concatv2di): Add x86_avx512dq v=Yv,rm
12532         alternative.  Change x=xm,C alternative to v=vm,C, x=x,x alternative
12533         to v=Yv,Yv and x=x,m to v=v,m.  Use maybe_evex prefix attribute
12534         instead of vex for the last two above mentioned alternatives.
12536 2016-06-02  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
12538         PR target/70830
12539         * config/arm/arm.c (arm_output_multireg_pop): Guard "pop" on update.
12541 2016-06-02  Segher Boessenkool  <segher@kernel.crashing.org>
12543         * config/rs6000/dfp.md (trunctddd2): Correct the "length" attribute.
12545 2016-06-01  David Malcolm  <dmalcolm@redhat.com>
12547         * config/rl78/rl78.c (rl78_expand_prologue): Convert local
12548         from int to unsigned.
12550 2016-05-31  Michael Meissner  <meissner@linux.vnet.ibm.com>
12552         * config/rs6000/vsx.md (vsx_splat_<mode>, V2DI/V2DF): Simplify
12553         alternatives, eliminating preferred register class.  Add support
12554         for the MTVSRDD instruction in ISA 3.0.
12555         (vsx_splat_v4si_internal): Use splat_input_operand instead of
12556         reg_or_indexed_operand.
12557         (vsx_splat_v4sf_internal): Likewise.
12559 2016-05-31  Michael Meissner  <meissner@linux.vnet.ibm.com>
12561         PR target/71186
12562         * config/rs6000/vsx.md (xxspltib_<mode>_nosplit): Add alternatives
12563         for loading up all 0's or all 1's.
12565 2016-06-01  Thomas Preud'homme  <thomas.preudhomme@arm.com>
12567         * doc/sourcebuild.texi (arm_acq_rel): Document new effective target.
12569 2016-06-01  Eduard Sanou  <dhole@openmailbox.org>
12571         * doc/cppenv.texi: Note that the `%s` in `date` is a non-standard
12572         extension.
12573         * gcc.c (driver_handle_option): Call set_source_date_epoch_envvar.
12574         * gcc.c (set_source_date_epoch_envvar): New function, sets
12575         the SOURCE_DATE_EPOCH environment variable to the current time.
12577 2016-06-01  Eric Botcazou  <ebotcazou@adacore.com>
12579         * tree-vect-loop.c (vect_determine_vectorization_factor): Also compute
12580         the factor for live Phi nodes.
12582 2016-06-01  Jan Hubicka  <hubicka@ucw.cz>
12584         * loop-dolop.c (doloop_optimize): Us likely max iteration bound.
12585         * tree-parloops.c (parallelize_loops): likewise.
12586         * tree-ssa-loop-unswitch.c (tree_unswitch_single_loop,
12587         tree_unswitch_outer_loop): likewise.
12589 2016-06-01  Jakub Jelinek  <jakub@redhat.com>
12591         PR middle-end/71371
12592         * gimplify.c (gimplify_omp_for): Temporarily clear gimplify_omp_ctxp
12593         around creation of the temporary.
12595 2016-06-01  Richard Biener  <rguenther@suse.de>
12597         PR tree-optimization/71366
12598         * tree-ssa-loop-ivcanon.c (edges_to_remove): New global.
12599         (unloop_loops): Move removing edges here ...
12600         (try_unroll_loop_completely): ... from here.
12601         (try_peel_loop): ... and here.
12602         (tree_unroll_loops_completely_1): Track parent loops via
12603         bitmap of header BBs.
12604         (tree_unroll_loops_completely): Adjust for that.
12606 2016-06-01  Kelvin Nilsen  <kelvin@gcc.gnu.org>
12608         * config/rs6000/altivec.h (vec_slv): New macro.
12609         (vec_srv): New macro.
12610         * config/rs6000/altivec.md (UNSPEC_VSLV): New value.
12611         (UNSPEC_VSRV): New value.
12612         (vslv): New insn.
12613         (vsrv): New insn.
12614         * config/rs6000/rs6000-builtin.def (vslv): New builtin definition.
12615         (vsrv): New builtin definition.
12616         * config/rs6000/rs6000-c.c (P9V_BUILTIN_VSLV): Macro expansion to
12617         define argument types for new builtin.
12618         (P9V_BUILTIN_VSRV): Macro expansion to define argument types for
12619         new builtin.
12620         * doc/extend.texi: Document the new vec_vslv and vec_srv built-in
12621         functions.
12623 2016-06-01  Uros Bizjak  <ubizjak@gmail.com>
12624             Jocelyn Mayer  <l_indien@magic.fr>
12626         PR target/67310
12627         * config/i386/driver-i386.c (host_detect_local_cpu): Correctly
12628         detect processor family for signature_CENTAUR_ebx.
12629         <case PROCESSOR_I486>: Pass c3, winchip2 or winchip-c6 for
12630         signature_CENTAUR_ebx.
12631         <case PROCESSOR _PENTIUMPRO>: Pass c3-2 for signature_CENTAUR_ebx.
12632         <default>: Pass x86-64 for has_longmode.
12634 2016-06-01  Nathan Sidwell  <nathan@acm.org>
12636         * config/nvptx/nvptx.c (nvptx_assemble_undefined_decl): Reject
12637         undefined weak.
12639 2016-06-01  Richard Biener  <rguenther@suse.de>
12641         PR tree-optimization/71261
12642         * tree-vect-patterns.c (check_bool_pattern): Gather a hash-set
12643         of stmts successfully put in the bool pattern.  Remove
12644         single-use restriction.
12645         (adjust_bool_pattern_cast): Add cast at the use site via the
12646         pattern def sequence.
12647         (adjust_bool_pattern): Remove recursion, maintain a hash-map
12648         of patterned defs.  Use the pattern def seqence instead of
12649         multiple independent patterns.
12650         (sort_after_uid): New qsort compare function.
12651         (adjust_bool_stmts): New function to process stmts in the bool
12652         pattern in IL order.
12653         (vect_recog_bool_pattern): Adjust.
12654         * tree-if-conv.c (ifcvt_split_def_stmt): Remove.
12655         (ifcvt_walk_pattern_tree): Likewise.
12656         (stmt_is_root_of_bool_pattern): Likewise.
12657         (ifcvt_repair_bool_pattern): Likewise.
12658         (tree_if_conversion): Do not call ifcvt_repair_bool_pattern.
12660 2016-06-01  Jan Hubicka  <hubicka@ucw.cz>
12662         * loop-unroll.c (decide_unroll_constant_iterations,
12663         decide_unroll_runtime_iterations, decide_unroll_stupid): Use
12664         likely upper bounds.
12665         * loop-iv.c (find_simple_exit): Dump likely upper bounds.
12667 2016-06-01  Thomas Schwinge  <thomas@codesourcery.com>
12669         * tree-core.h (enum omp_clause_code): Remove
12670         OMP_CLAUSE_DEVICE_RESIDENT.  Adjust all users.
12672 2016-06-01  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
12674         * config/arm/sync.md (arm_store_exclusive<mode>):
12675         Use 'H' output modifier on operands[2] rather than creating a new
12676         entry in out-of-bounds memory of the operands array.
12677         (arm_store_release_exclusivedi): Likewise.
12679 2016-06-01  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
12681         * config/arm/arm.c (arm_fusion_enabled_p): New function.
12682         * config/arm/arm-protos.h (arm_fusion_enabled_p): Declare prototype.
12683         * config/arm/crypto.md (crypto_<crypto_pattern>, CRYPTO_UNARY):
12684         Add "=w,0" alternative.  Enable it when AES/AESMC fusion is enabled.
12686 2016-06-01  Eric Botcazou  <ebotcazou@adacore.com>
12688         * tree-vect-loop.c (vect_determine_vectorization_factor): Also take
12689         into account live statements for mask producers.
12691 2016-06-01  Richard Biener  <rguenther@suse.de>
12693         PR tree-optimization/71311
12694         * match.pd (@0 < @1 && @0 < @2 -> @0 < min(@1,@2)): Add :c and
12695         restrict to non-INTEGER_CST @0.
12697 2016-06-01  Richard Biener  <rguenther@suse.de>
12699         * match.pd ((A & B) - (A & ~B) -> B - (A ^ B)): Add missing :c.
12700         (relational patterns): Use :c to avoid pattern duplications.
12702 2016-06-01  Richard Biener  <rguenther@suse.de>
12704         * genmatch.c (comparison_code_p): New predicate.
12705         (swap_tree_comparison): New function.
12706         (commutate): Add for_vec parameter to append new for entries.
12707         Support commutating relational operators by swapping it alongside
12708         operands.
12709         (lower_commutative): Adjust.
12710         (dt_simplify::gen): Do not pass artificial operators to gen
12711         functions.
12712         (decision_tree::gen): Do not add artificial operators as parameters.
12713         (parser::parse_expr): Verify operator commutativity when :c is
12714         applied.  Allow :C to override this.
12715         * match.pd: Adjust patterns to use :C instead of :c where required.
12717 2016-06-01  Patrick Palka  <ppalka@gcc.gnu.org>
12719         PR tree-optimization/71077
12720         * tree-ssa-threadedge.c (simplify_control_stmt_condition_1): In
12721         the combining step, use boolean_false_node and boolean_true_node
12722         as the designated false/true return values.
12724 2016-05-31  Jan Hubicka  <hubicka@ucw.cz>
12726         * predict.def (PRED_LOOP_EXTRA_EXIT): Define.
12727         * predict.c (predict_iv_comparison): Also check PRED_LOOP_EXTRA_EXIT.
12728         (predict_extra_loop_exits): Use PRED_LOOP_EXTRA_EXIT instead of
12729         PRED_LOOP_EXIT.
12731 2016-05-31  Jan Hubicka  <hubicka@ucw.cz>
12733         * doc/invoke.texi (-frename-registers): Drop -fpeel-loops from list
12734         of flags impliying the register renaming.
12735         * toplev.c (process_options): Do not imply flag_rename_registers with
12736         loop peeling.
12738 2016-05-31  Oleg Endo  <olegendo@gcc.gnu.org>
12740         * config/sh/sh.h (ASM_OUTPUT_SYMBOL_REF): Remove macro and use the
12741         default implementation.
12743 2016-05-31  Nathan Sidwell  <nathan@acm.org>
12745         * dwarf2out.c (cur_line_info_table): Add GTY marker.
12747 2016-05-31  Oleg Endo  <olegendo@gcc.gnu.org>
12749         * config/sh/constraints.md (b): Remove constraint.
12750         * config/sh/predicates.md (arith_reg_operand): Remove
12751         TARGET_REGISTER_P.
12752         * config/sh/sh-modes.def (PDI): Remove.
12753         * config/sh/sh.c (sh_target_reg_class,
12754         sh_optimize_target_register_callee_saved): Remove functions.
12755         (sh_option_override): Don't set MASK_SAVE_ALL_TARGET_REGS.
12756         (sh_expand_epilogue): Update comment.
12757         (sh_hard_regno_mode_ok, sh_register_move_cost, calc_live_regs,
12758         sh_secondary_reload): Remove TARGET_REGS related code.
12759         * config/sh/sh.h (FIRST_TARGET_REG, LAST_TARGET_REG,
12760         TARGET_REGISTER_P): Remove macros.
12761         (SH_DBX_REGISTER_NUMBER, REG_ALLOC_ORDER): Remove target regs.
12762         * config/sh/sh.md (PR_MEDIA_REG, T_MEDIA_REG, FR23_REG, TR0_REG,
12763         TR1_REG, TR2_REG): Remove constants.
12764         * config/sh/sh.opt (SAVE_ALL_TARGET_REGS): Remove.
12766 2016-05-31  Oleg Endo  <olegendo@gcc.gnu.org>
12768         * config/sh/sh.md (adddi3, subdi3, negdi2, abs<mode>2): Remove
12769         define_expand patterns.
12770         (adddi3_compact): Rename to adddi3.
12771         (subdi3_compact): Rename to subdi3.
12772         (*negdi2): Rename to negdi2.
12773         (*abs<mode>2): Rename to abs<mode>2.
12775 2016-05-31  Oleg Endo  <olegendo@gcc.gnu.org>
12777         * config/rx/rx.md (FETCHOP_NO_MINUS): New code iterator.
12778         (atomic_<fetchop_name>_fetchsi): Extract minus operator into ...
12779         (atomic_sub_fetchsi): ... this new pattern.
12780         (mvtc): Add CC_REG clobber.
12782 2016-05-31  Marek Polacek  <polacek@redhat.com>
12784         * gimplify.c (gimplify_switch_expr): Also handle GIMPLE_TRY.
12786 2016-05-31  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
12788         * config/aarch64/aarch64.c (aarch_macro_fusion_pair_p): Use
12789         aarch64_fusion_enabled_p to check for fusion capabilities.
12791 2016-05-31  Richard Biener  <rguenther@suse.de>
12793         PR tree-optimization/71352
12794         * tree-ssa-reassoc.c (zero_one_operation): Handle op equal to
12795         minus one and a negate.
12797 2016-05-31  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
12799         * config/aarch64/aarch64.c (aarch64_simd_attr_length_move): Delete.
12800         * config/aarch64/aarch64-protos.h (aarch64_simd_attr_length_move):
12801         Delete prototype.
12802         * config/aarch64/iterators.md (insn_count): Add descriptive comment.
12803         * config/aarch64/aarch64-simd.md (*aarch64_mov<mode>, VSTRUCT modes):
12804         Remove use of aarch64_simd_attr_length_move, set length attribute
12805         directly.
12806         (*aarch64_be_movoi): Likewise.
12807         (*aarch64_be_movci): Likewise.
12808         (*aarch64_be_movxi): Likewise.
12810 2016-05-31  Jan Hubicka  <hubicka@ucw.cz>
12812         * loop-init.c (gate): Do not enale RTL loop unroller with -fpeel-loops.
12813         It no longer does that.
12814         * toplev.c (process_options): Do not enable flag_web with -fpeel-loops.
12816 2016-05-31  Wladimir J. van der Laan  <laanwj@gmail.com>
12818         * config/aarch64/arm_neon.h (vdupb_laneq_s8): Remove spurious
12819         attribute __unused__.
12821 2016-05-31  Thomas Preud'homme  <thomas.preudhomme@arm.com>
12823         * config/arm/arm-protos.h (arm_arch_thumb1): Declare.
12824         * config/arm/arm.c (arm_arch_thumb1): Define.
12825         (arm_option_override): Initialize arm_arch_thumb1.
12826         * config/arm/arm.h (arm_arch_thumb1): Declare.
12827         (TARGET_ARM_ARCH_ISA_THUMB): Use arm_arch_thumb to determine if target
12828         support Thumb-1 ISA.
12830 2016-05-31  Kirill Yukhin  <kirill.yukhin@intel.com>
12832         PR target/71346
12833         * config/i386/sse.md (define_insn_and_split "*vec_extractv4sf_0"): Use
12834         `Yv' for scalar operand.
12836 2016-05-31  Tom de Vries  <tom@codesourcery.com>
12838         PR tree-optimization/69068
12839         * graphite-isl-ast-to-gimple.c (copy_bb_and_scalar_dependences): Handle
12840         phis with more than two args.
12842 2016-05-30  Andreas Tobler  <andreast@gcc.gnu.org>
12844         * config.gcc: Move hard float support for arm*hf*-*-freebsd* into
12845         armv6*-*-freebsd* for FreeBSD 11. Eliminate the arm*hf*-*-freebsd*
12846         target.
12848 2016-05-30  Jose E. Marchesi  <jose.marchesi@oracle.com>
12850         * config.gcc (sparc*-*-*): Support cpu_32, cpu_64, tune_32 and
12851         tune_64.
12852         * doc/install.texi (--with-cpu-32, --with-cpu-64): Document
12853         support on SPARC.
12854         * config/sparc/linux64.h (OPTION_DEFAULT_SPECS): Add entries for
12855         cpu_32, cpu_64, tune_32 and tune_64.
12856         * config/sparc/sol2.h (OPTION_DEFAULT_SPECS): Likewise.
12858 2016-05-30  Uros Bizjak  <ubizjak@gmail.com>
12860         * config/i386/sync.md (mfence_nosse): Use "lock orl $0, -4(%esp)".
12862 2016-05-30  Andi Kleen  <ak@linux.intel.com>
12864         * auto-profile.c (read_profile): Replace asserts with errors
12865         when file does not exist.
12866         * gcov-io.c (gcov_read_words): Dito.
12868 2016-05-30  Jan Hubicka  <hubicka@ucw.cz>
12870         * tree-cfg.c (print_loop): Print likely upper bounds.
12872 2016-05-30  Jan Hubicka  <hubicka@ucw.cz>
12874         * doc/invoke.texi (-fpeel-loops,-O3): Update documentation.
12875         * opts.c (default_options): Enable peel loops at -O3.
12876         * tree-ssa-loop-ivcanon.c (peeled_loops): New static var.
12877         (try_peel_loop): Do not re-peel already peeled loops;
12878         use likely upper bounds; fix profile updating.
12879         (pass_complete_unroll::execute): Initialize peeled_loops.
12881 2016-05-30  Martin Liska  <mliska@suse.cz>
12883         * tree-ssa-loop-ivopts.c (get_computation_cost_at): Scale
12884         computed costs by frequency of BB they belong to.
12885         (get_scaled_computation_cost_at): New function.
12887 2016-05-30  Alexander Monakov  <amonakov@ispras.ru>
12888             Marc Glisse  <marc.glisse@inria.fr>
12890         PR tree-optimization/71289
12891         * match.pd (-1 / B < A, A > -1 / B): New transformations.
12893 2016-05-30  Jan Hubicka  <hubicka@ucw.cz>
12895         * tree-vect-loop.c (vect_transform_loop): Update likely bounds.
12897 2016-05-30  Jan Hubicka  <hubicka@ucw.cz>
12899         * tree-ssa-loop-ivcanon.c (try_peel_loop): Correctly set wont_exit
12900         for peeled copies; avoid underflow when updating estimates; correctly
12901         scale loop profile.
12903 2016-05-30  Kugan Vivekanandarajah  <kuganv@linaro.org>
12905         * tree-ssa-reassoc.ci (swap_ops_for_binary_stmt): Fix typo from commit
12906         r236875. Corrected oe3 to oe2 as obvious.
12908 2016-05-30  Kugan Vivekanandarajah  <kuganv@linaro.org>
12910         PR middle-end/71269
12911         PR middle-end/71252
12912         * tree-ssa-reassoc.c (insert_stmt_before_use): Use find_insert_point so
12913         that inserted stmt will not dominate stmts that defines its operand.
12914         (rewrite_expr_tree): Add stmt_to_insert before adding the use stmt.
12915         (rewrite_expr_tree_parallel): Likewise.
12917 2016-05-30  Kugan Vivekanandarajah  <kuganv@linaro.org>
12919         PR middle-end/71252
12920         * tree-ssa-reassoc.c (swap_ops_for_binary_stmt): Fix swap such that
12921         all fields including stmt_to_insert are swapped.
12923 2016-05-30  Jan Hubicka  <hubicka@ucw.cz>
12925         * predict.h (force_edge_cold): Declare.
12926         * predict.c (force_edge_cold): New function.
12927         * tree-ssa-loop-ivcanon.c (try_unroll_loop_completely): Fix profile
12928         updating.
12929         (canonicalize_loop_induction_variables): Fix formating.
12931 2016-05-30  Eric Botcazou  <ebotcazou@adacore.com>
12933         * config/visium/visium.c (visium_split_double_add): Minor tweaks.
12934         (visium_expand_copysign): Use gen_int_mode directly.
12935         (visium_compute_frame_size): Minor tweaks.
12937 2016-05-30  Jan Hubicka  <hubicka@ucw.cz>
12939         * tree-vect-loop.c (vect_analyze_loop_2): Use
12940         likely_max_stmt_executions_int.
12942 2016-05-30  Tom de Vries  <tom@codesourcery.com>
12944         PR tree-optimization/69067
12945         * graphite-isl-ast-to-gimple.c (get_def_bb_for_const): Remove assert.
12947 2016-05-29  Uros Bizjak  <ubizjak@gmail.com>
12949         PR target/71245
12950         * config/i386/sync.md (define_peephole2 atomic_storedi_fpu):
12951         New peepholes to remove unneeded fild/fistp pairs.
12952         (define_peephole2 atomic_loaddi_fpu): Ditto.
12954 2016-05-27  Jan Hubicka  <hubicka@ucw.cz>
12956         * predict.c (maybe_hot_frequency_p): Avoid division.
12958 2016-05-28  Gerald Pfeifer  <gerald@pfeifer.com>
12960         * doc/install.texi: Use https for shop.fsf.org.
12962 2016-05-27  Jan Hubicka  <hubicka@ucw.cz>
12964         * tree-ssa-loop-ivopts.c (estimated_stmt_executions_int): Use
12965         likely_max_stmt_executions_int.
12967 2016-05-27  Jan Hubicka  <hubicka@ucw.cz>
12969         * tree-ssa-loop-prefetch.c (loop_prefetch_arrays): Use
12970         likely_max_stmt_executions_int.
12972 2016-05-27  Jan Hubicka  <hubicka@ucw.cz>
12974         * profile.c (compute_branch_probabilities): Do not report hitrates
12975         here.
12976         (branch_prob): Report hitrates here.
12977         * predict.c (gimple_predict_edge): Do not assert profile status;
12978         fix formatting issues.
12980 2016-05-27  Jan Hubicka  <hubicka@ucw.cz>
12982         * predict.c (edge_predicted_by_p): New function.
12983         (predict_paths_for_bb): Do not put multiple predictions of the same type
12984         on one edge.
12986 2016-05-27  Jan Hubicka  <hubicka@ucw.cz>
12988         * tree-ssa-loop-niter.c (number_of_iterations_exit): Revert accidental
12989         commit.
12991 2016-05-28  Alan Modra  <amodra@gmail.com>
12993         * dominance.c (verify_dominators): Don't segfault on NULL imm_bb.
12995 2016-05-28  Alan Modra  <amodra@gmail.com>
12997         PR rtl-optimization/71275
12998         * ira.c (ira): Free dominance info.
13000 2016-05-27  Gerald Pfeifer  <gerald@pfeifer.com>
13002         * doc/sourcebuild.texi: New address for upstream Go repository.
13004 2016-05-27  Thomas Preud'homme  <thomas.preudhomme@arm.com>
13006         * config/arm/arm.h (TARGET_ARM_V6M): Remove.
13007         (TARGET_ARM_V7M): Likewise.
13009 2016-05-26  Jeff Law  <law@redhat.com>
13011         * tree-ssa-threadedge.c: Remove include of tree-ssa-threadbackward.h.
13012         (thread_across_edge): Remove calls to find_jump_threads_backwards.
13013         * passes.def: Add jump threading passes before DOM/VRP.
13014         * tree-ssa-threadbackward.c (find_jump_threads_backwards): Change
13015         argument to a basic block from an edge.  Remove tests which are
13016         handled elsewhere.
13017         (pass_data_thread_jumps, class pass_thread_jumps): New.
13018         (pass_thread_jumps::gate, pass_thread_jumps::execute): New.
13019         (make_pass_thread_jumps): Likewise.
13020         * tree-pass.h (make_pass_thread_jumps): Declare.
13022 2016-05-27  Eric Botcazou  <ebotcazou@adacore.com>
13024         * config/visium/visium-protos.h (split_double_move): Rename into...
13025         (visium_split_double_move): ...this.
13026         (visium_split_double_add): Declare.
13027         * config/visium/visium.c (split_double_move): Rename into...
13028         (visium_split_double_move): ...this.
13029         (visium_split_double_add): New function.
13030         (visium_expand_copysign): Renumber operands for consistency.
13031         * config/visium/visium.md (DImode move splitter): Adjust to renaming.
13032         (DFmode move splitter): Likewise.
13033         (*addi3_insn): Split by means of visium_split_double_add.
13034         (*adddi3_insn_flags): Delete.
13035         (*plus_plus_sltu<subst_arith>): New insn.
13036         (*subdi3_insn): Split by means of visium_split_double_add.
13037         (subdi3_insn_flags): Delete.
13038         (*minus_minus_sltu<subst_arith>): New insn.
13039         (*negdi2_insn): Split by means of visium_split_double_add.
13040         (*negdi2_insn_flags): Delete.
13042 2016-05-27  Ulrich Weigand  <uweigand@de.ibm.com>
13044         * configure.ac: Treat a --with-headers option without argument
13045         the same as the default (i.e. consult sys-include directory).
13046         * configure: Regenerate.
13048 2016-05-27  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
13050         * config/aarch64/aarch64.c (aarch64_fusion_enabled_p): New function.
13051         * config/aarch64/aarch64-protos.h (aarch64_fusion_enabled_p): Declare
13052         prototype.
13053         * config/aarch64/aarch64-simd.md (aarch64_crypto_aes<aesmc_op>v16qi):
13054         Add "=w,0" alternative.  Enable it when AES/AESMC fusion is enabled.
13056 2016-05-27  Jiong Wang  <jiong.wang@arm.com>
13058         PR target/63596
13059         * config/aarch64/aarch64.c (aarch64_expand_builtin_va_start): Honor
13060         tree-stdarg analysis results.
13061         (aarch64_setup_incoming_varargs): Likewise.
13063 2016-05-27  Jiong Wang  <jiong.wang@arm.com>
13065         * config/aarch64/aarch64.c (aarch64_build_builtin_va_list): Initialize
13066         va_list_gpr_counter_field and va_list_fpr_counter_field.
13068 2016-05-27  Wilco Dijkstra  <wdijkstr@arm.com>
13070         PR67609
13071         * config/aarch64/aarch64.h (CANNOT_CHANGE_MODE_CLASS): Remove.
13072         * config/aarch64/aarch64.c
13073         (aarch64_cannot_change_mode_class): Remove function.
13074         * config/aarch64/aarch64-protos.h
13075         (aarch64_cannot_change_mode_class): Remove.
13077 2016-05-27  Jan Hubicka  <hubicka@ucw.cz>
13079         * cfgloop.c (record_niter_bound): Record likely upper bounds.
13080         (likely_max_stmt_executions_int, get_likely_max_loop_iterations,
13081         get_likely_max_loop_iterations_int): New.
13082         * cfgloop.h (struct loop): Add nb_iterations_likely_upper_bound,
13083         any_likely_upper_bound.
13084         (get_likely_max_loop_iterations_int, get_likely_max_loop_iterations):
13085         Declare.
13086         * cfgloopmanip.c (copy_loop_info): Copy likely upper bounds.
13087         * loop-unroll.c (unroll_loop_constant_iterations): Update likely
13088         upper bound.
13089         (unroll_loop_constant_iterations): Likewise.
13090         (unroll_loop_runtime_iterations): Likewise.
13091         * lto-streamer-in.c (input_cfg): Stream likely upper bounds.
13092         * lto-streamer-out.c (output_cfg): Likewise.
13093         * tree-ssa-loop-ivcanon.c (try_peel_loop): Update likely upper
13094         bounds.
13095         (canonicalize_loop_induction_variables): Dump likely upper bounds.
13096         * tree-ssa-loop-niter.c (record_estimate): Record likely upper bounds.
13097         (likely_max_loop_iterations): New.
13098         (likely_max_loop_iterations_int): New.
13099         (likely_max_stmt_executions): New.
13100         * tree-ssa-loop-niter.h (likely_max_loop_iterations,
13101         likely_max_loop_iterations_int, likely_max_stmt_executions_int,
13102         likely_max_stmt_executions): Declare.
13104 2016-05-27  Marek Polacek  <polacek@redhat.com>
13106         PR middle-end/71308
13107         * gimple-fold.c (gimple_fold_call): Check that LHS is not null.
13109 2016-05-27  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
13111         * config/s390/s390.md (2x risbg splitters): Use
13112         reg_overlap_mentioned_p instead of rtx_equal_p.
13114 2016-05-27  Dominik Vogt  <vogt@linux.vnet.ibm.com>
13116         * combine.c (make_compound_operation): Take known zero bits into
13117         account when checking for possible zero_extend.
13119 2016-05-27  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
13121         * config/aarch64/aarch64.md (ashl<mode>3, SHORT modes):
13122         Use const_int_operand for operand 2 predicate.  Simplify expand code
13123         as a result.
13125 2016-05-27  Ilya Enkovich  <ilya.enkovich@intel.com>
13127         PR middle-end/71279
13128         * fold-const.c (fold_ternary_loc): Don't fold VEC_COND_EXPR
13129         into comparison.
13131 2016-05-27  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
13133         * config/aarch64/aarch64-modes.def (CC_ZESWP, CC_SESWP): Delete.
13134         * config/aarch64/aarch64.c (aarch64_select_cc_mode): Remove condition
13135         that returns CC_SESWPmode and CC_ZESWPmode.
13136         (aarch64_get_condition_code_1): Remove handling of CC_SESWPmode
13137         and CC_SESWPmode.
13138         (aarch64_rtx_costs): Likewise.
13140 2016-05-26  Michael Meissner  <meissner@linux.vnet.ibm.com>
13142         * config/rs6000/rs6000.c (rs6000_emit_p9_fp_minmax): New function
13143         for ISA 3.0 min/max support.
13144         (rs6000_emit_p9_fp_cmove): New function for ISA 3.0 floating point
13145         conditional move support.
13146         (rs6000_emit_cmove): Call rs6000_emit_p9_fp_minmax and
13147         rs6000_emit_p9_fp_cmove if the ISA 3.0 instructions are
13148         available.
13149         * config/rs6000/rs6000.md (SFDF2): New iterator to allow doing
13150         conditional moves where the comparison type is different from move
13151         type.
13152         (fp_minmax): New code iterator for smin/smax.
13153         (minmax): New code attributes for min/max.
13154         (SMINMAX): Likewise.
13155         (smax<mode>3): Combine min, max insns into one insn using the
13156         fp_minmax code iterator.  Add support for ISA 3.0 min/max
13157         instructions that don't need -ffast-math.
13158         (s<minmax><mode>3): Likewise.
13159         (smax<mode>3_vsx): Likewise.
13160         (smin<mode>3): Likewise.
13161         (s<minmax><mode>3_vsx): Likewise.
13162         (smin<mode>3_vsx): Likewise.
13163         (pre-VSX min/max splitters): Likewise.
13164         (s<minmax><mode>3_fpr): Likewise.
13165         (movsfcc): Rewrite floating point conditional moves to combine
13166         SFmode/DFmode into a single insn.
13167         (mov<mode>cc): Likewise.
13168         (movdfcc): Likewise.
13169         (fselsfsf4): Combine FSEL cases into a single insn, using SFDF and
13170         SFDF2 iterators to handle all combinations.
13171         (fseldfsf4): Likewise.
13172         (fsel<SFDF:mode><SFDF2:mode>4): Likewise.
13173         (fseldfdf4): Likewise.
13174         (fselsfdf4): Likewise.
13175         (mov<SFDF:mode><SFDF2:mode>cc_p9): Add support for the ISA 3.0
13176         comparison instructions that set a 0/-1 mask, and use it for
13177         floating point conditional move via XXSEL.
13178         (fpmask<mode>): Likewise.
13179         (xxsel<mode>): Likewise.
13180         * config/rs6000/predicates.md (min_max_operator): Delete, no
13181         longer used.
13182         (fpmask_comparison_operaton): New insn for ISA 3.0 comparison
13183         instructions that generate a 0/-1 mask for use with XXSEL.
13184         * config/rs6000/rs6000.h (TARGET_MINMAX_SF): New helper macros to
13185         say whether floating point min/max is available, either through
13186         FSEL, ISA 2.06 min/max, and ISA 3.0 min/max instrucitons.
13187         (TARGET_MINMAX_DF): Likewise.
13189 2016-05-27  Alan Modra  <amodra@gmail.com>
13191         PR rtl-optimization/71275
13192         * ira.c (ira): Call loop_optimizer_init to set up bb_loop_depth
13193         for update_equiv_regs and combine_and_move_insns.
13195 2016-05-26  Uros Bizjak  <ubizjak@gmail.com>
13197         * config/i386/i386.md (*movqi_internal) <attr "isa">: Use
13198         if_then_else or cond RTXes to calculate attribute value.
13199         * config/i386/mmx.md (*vec_extractv2sf_1) <attr "prefix_rep">: Ditto.
13200         <attr "length_immediate>: Ditto.
13201         (*vec_extractv2sf_1) <attr "length_immediate">: Ditto.
13202         * config/i386/sse.md (sse_loadlps) <attr "length_immediate">: Ditto.
13203         (*vec_concatv2sf_sse4_1) <attr "isa">: Ditto.
13204         <attr "type">: Ditto.
13205         <attr "prefix_data16">: Ditto.
13206         <attr "prefix_extra">: Ditto.
13207         <attr "length_immediate">: Ditto.
13208         <attr "prefix">: Ditto.
13209         (vec_set<mode>_0) <attr "isa">: Ditto.
13210         <attr "prefix_extra">: Ditto.
13211         <attr "length_immediate">: Ditto.
13212         <attr "prefix">: Ditto.
13213         (*vec_interleave_highv2df) <attr "prefix_data16">: Ditto.
13214         (*vec_interleave_lowv2df) <attr "prefix_data16">: Ditto.
13215         (sse2_storelpd) <attr "prefix_data16">: Ditto.
13216         (sse2_loadhpd) <attr "prefix_data16">: Ditto.
13217         (sse2_loadlpd) <attr "prefix_data16">: Ditto.
13218         <attr "length_immediate">: Ditto.
13219         <attr "prefix">: Ditto.
13220         (sse2_movsd) <attr "length_immediate">: Ditto.
13221         <attr "prefix">: Ditto.
13222         (vec_concatv2df)  <attr "isa">: Ditto.
13223         <attr "prefix">: Ditto.
13224         (*vec_extractv4si) <attr "prefix_extra">: Ditto.
13225         (*vec_extractv2di_1) <attr "isa">: Ditto.
13226         <attr "type">: Ditto.
13227         <attr "length_immediate">: Ditto.
13228         <attr "prefix_rex">: Ditto.
13229         <attr "prefix_extra">: Ditto.
13230         (*vec_concatv2si_sse4_1) <attr "type">: Ditto.
13231         <attr "prefix_extra">: Ditto.
13232         <attr "length_immediate">: Ditto.
13233         (vec_concatv2di) <attr "isa">: Ditto.
13234         <attr "prefix_extra">: Ditto.
13235         <attr "length_immediate">: Ditto.
13236         <attr "prefix">: Ditto.
13238 2016-05-26  Martin Liska  <mliska@suse.cz>
13240         * tree-ssa-loop-ivopts.c (comp_cost::infinite_cost_p): New
13241         function.
13242         (operator+): Likewise.
13243         (operator-): Likewise.
13244         (comp_cost::operator+=): Likewise.
13245         (comp_cost::operator-=): Likewise.
13246         (comp_cost::operator/=): Likewise.
13247         (comp_cost::operator*=): Likewise.
13248         (operator<): Likewise.
13249         (operator==): Likewise.
13250         (operator<=): Likewise.
13251         (new_cost): Remove.
13252         (infinite_cost_p): Likewise.
13253         (add_costs): Likewise.
13254         (sub_costs): Likewise.
13255         (compare_costs): Likewise.
13256         (set_group_iv_cost): Use the newly introduced functions.
13257         (get_address_cost): Likewise.
13258         (get_shiftadd_cost): Likewise.
13259         (force_expr_to_var_cost): Likewise.
13260         (split_address_cost): Likewise.
13261         (ptr_difference_cost): Likewise.
13262         (difference_cost): Likewise.
13263         (get_computation_cost_at): Likewise.
13264         (determine_group_iv_cost_generic): Likewise.
13265         (determine_group_iv_cost_address): Likewise.
13266         (determine_group_iv_cost_cond): Likewise.
13267         (autoinc_possible_for_pair): Likewise.
13268         (determine_group_iv_costs): Likewise.
13269         (cheaper_cost_pair): Likewise.
13270         (iv_ca_recount_cost): Likewise.
13271         (iv_ca_set_no_cp): Likewise.
13272         (iv_ca_set_cp): Likewise.
13273         (iv_ca_cost): Likewise.
13274         (iv_ca_new): Likewise.
13275         (iv_ca_dump): Likewise.
13276         (iv_ca_narrow): Likewise.
13277         (iv_ca_prune): Likewise.
13278         (iv_ca_replace): Likewise.
13279         (try_add_cand_for): Likewise.
13280         (try_improve_iv_set): Likewise.
13281         (find_optimal_iv_set): Likewise.
13283 2016-05-26  Richard Sandiford  <richard.sandiford@arm.com>
13285         * tree-ssa-loop-ivopts.c (loop_body_includes_call): Don't assume
13286         that internal functions will clobber all caller-saved registers.
13288 2016-05-26  Wilco Dijkstra  <wdijkstr@arm.com>
13290         * config/aarch64/aarch64.c (aarch64_case_values_threshold):
13291         Return a better case_values_threshold when optimizing.
13293 2016-05-26  Wilco Dijkstra  <wdijkstr@arm.com>
13295         * config/aarch64/aarch64-simd.md (aarch64_combinez):
13296         Add ? to integer variant.
13297         (aarch64_combinez_be): Likewise.
13299 2016-05-26  Jakub Jelinek  <jakub@redhat.com>
13301         * config/i386/sse.md (*vcvtps2ph_store<mask_name>): Use v constraint
13302         instead of x constraint.
13303         (vcvtps2ph256<mask_name>): Likewise.
13305         * config/i386/sse.md (*ssse3_palignr<mode>_perm): Add avx512bw
13306         alternative.  Formatting fix.
13308         * config/i386/sse.md
13309         (<mask_codefor>avx512vl_shuf_<shuffletype>32x4_1<mask_name>): Rename
13310         to ...
13311         (avx512vl_shuf_<shuffletype>32x4_1<mask_name>): ... this.
13312         (*avx_vperm_broadcast_v4sf): Use v constraint instead of x.  Use
13313         maybe_evex prefix instead of vex.
13314         (*avx_vperm_broadcast_<mode>): Use v constraint instead of x.  Handle
13315         EXT_REX_SSE_REG_P (op0) case in the splitter.
13317 2016-05-25  Jeff Law  <law@redhat.com>
13319         PR tree-optimization/71272
13320         * tree-ssa-threadbackward.c (convert_and_register_jump_thread_path):
13321         Update comments.  Add test for empty path.
13323 2016-05-25  Bill Seurer  <seurer@linux.vnet.ibm.com>
13325         * config/rs6000/altivec.h (vec_cmpne): Add #define for vec_cmpne.
13326         * config/rs6000/rs6000-builtin.def (vec_cmpne): Add vec_cmpne as a
13327         special case builtin.
13328         * config/rs6000/rs6000-c.c (altivec_resolve_overloaded_builtin): Add
13329         code for ALTIVEC_BUILTIN_VEC_CMPNE.
13330         * config/rs6000/rs6000.c (altivec_init_builtins): Add definition
13331         for __builtin_vec_cmpne.
13333 2016-05-25  Eric Botcazou  <ebotcazou@adacore.com>
13335         * tree-ssa-phiopt.c (factor_out_conditional_conversion): Remove
13336         redundant test and bail out if the type of the new operand is not
13337         a GIMPLE register type after stripping a VIEW_CONVERT_EXPR.
13339 2016-05-25  Uros Bizjak  <ubizjak@gmail.com>
13341         * config/i386/i386.opt (ix86_target_flags_explicit): Remove.
13342         (x_ix86_target_flags_explicit): Remove.
13343         * config/i386/i386.c (ix86_function_specific_save): Do not copy
13344         x_ix86_target_flags_explicit.
13345         (ix86_function_specific_restore): Ditto.
13347 2016-05-25  Uros Bizjak  <ubizjak@gmail.com>
13348             H.J. Lu  <hongjiu.lu@intel.com>
13350         PR target/70738
13351         * common/config/i386/i386-common.c
13352         (OPTION_MASK_ISA_GENERAL_REGS_ONLY_UNSET): New.
13353         (ix86_handle_option) <case OPT_mgeneral_regs_only>: Disable
13354         MPX, MMX, SSE and x87 instructions for -mgeneral-regs-only.
13355         * config/i386/i386.opt (ix86_target_flags): Add new Variable.
13356         (-mgeneral-regs-only): Add new option.
13357         * config/i386/i386.c (ix86_option_override_internal): Don't enable
13358         x87 instructions if only general registers are allowed.
13359         (ix86_target_string): Add ix86_flags argument. Handle additional
13360         flags options through ix86_flags argument.  Update all callers.
13361         * doc/invoke.texi (x86 Options): Document -mgeneral-regs-only.
13363 2016-05-25  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
13365         PR rtl-optimization/66940
13366         * ifcvt.c (noce_get_alt_condition): Check that incrementing or
13367         decrementing desired_val will not overflow before performing these
13368         operations.
13370 2016-05-25  Ilya Verbin  <ilya.verbin@intel.com>
13372         * config/i386/i386-builtin-types.def: Add V16SI_FTYPE_V16SF,
13373         V8DF_FTYPE_V8DF_ROUND, V16SF_FTYPE_V16SF_ROUND, V16SI_FTYPE_V16SF_ROUND.
13374         * config/i386/i386.c (enum ix86_builtins): Add
13375         IX86_BUILTIN_CVTPS2DQ512_MASK, IX86_BUILTIN_FLOORPS512,
13376         IX86_BUILTIN_FLOORPD512, IX86_BUILTIN_CEILPS512, IX86_BUILTIN_CEILPD512,
13377         IX86_BUILTIN_TRUNCPS512, IX86_BUILTIN_TRUNCPD512,
13378         IX86_BUILTIN_CVTPS2DQ512, IX86_BUILTIN_VEC_PACK_SFIX512,
13379         IX86_BUILTIN_FLOORPS_SFIX512, IX86_BUILTIN_CEILPS_SFIX512,
13380         IX86_BUILTIN_ROUNDPS_AZ_SFIX512.
13381         (builtin_description bdesc_args): Add __builtin_ia32_floorps512,
13382         __builtin_ia32_ceilps512, __builtin_ia32_truncps512,
13383         __builtin_ia32_floorpd512, __builtin_ia32_ceilpd512,
13384         __builtin_ia32_truncpd512, __builtin_ia32_cvtps2dq512,
13385         __builtin_ia32_vec_pack_sfix512, __builtin_ia32_roundps_az_sfix512,
13386         __builtin_ia32_floorps_sfix512, __builtin_ia32_ceilps_sfix512.
13387         Change IX86_BUILTIN_CVTPS2DQ512 to IX86_BUILTIN_CVTPS2DQ512_MASK for
13388         __builtin_ia32_cvtps2dq512_mask.
13389         (ix86_expand_args_builtin): Handle V8DF_FTYPE_V8DF_ROUND,
13390         V16SF_FTYPE_V16SF_ROUND, V16SI_FTYPE_V16SF_ROUND, V16SI_FTYPE_V16SF.
13391         (ix86_builtin_vectorized_function): Handle builtins mentioned above.
13392         * config/i386/sse.md
13393         (<mask_codefor>avx512f_fix_notruncv16sfv16si<mask_name><round_name>):
13394         Rename to ...
13395         (avx512f_fix_notruncv16sfv16si<mask_name><round_name>): ... this.
13396         (<mask_codefor>avx512f_cvtpd2dq512<mask_name><round_name>): Rename
13397         to ...
13398         (avx512f_cvtpd2dq512<mask_name><round_name>): ... this.
13399         (avx512f_vec_pack_sfix_v8df): New define_expand.
13400         (avx512f_roundpd512): Rename to ...
13401         (avx512f_round<castmode>512): ... this.  Change iterator.
13402         (avx512f_roundps512_sfix): New define_expand.
13403         (round<mode>2_sfix): Change iterator.
13405 2016-05-25  Nick Clifton  <nickc@redhat.com>
13407         * config/msp430/msp430.c (msp430_attr): Produce an error if a
13408         static interrupt handler is detected.
13409         * config/msp430/msp430.h (LIB_SPEC): Do not use msp430.ld as the
13410         default linker script.
13411         * config/msp430/msp430.md (movpsihi2_lo): New pattern for loading
13412         the low part of a symbolic pointer.
13414 2016-05-25  Richard Biener  <rguenther@suse.de>
13416         PR tree-optimization/71261
13417         * tree-if-conv.c (ifcvt_split_def_stmt): Walk uses on the
13418         interesting stmt instead of immediate uses when looking
13419         for the use operand to replace.
13421 2016-05-25  Martin Liska  <mliska@suse.cz>
13423         * ipa-inline.c (edge_badness): Use 'w/' instead of 'w'.
13425 2016-05-25  Richard Biener  <rguenther@suse.de>
13427         PR tree-optimization/71264
13428         * tree-vect-stmts.c (vect_init_vector): Properly deal with
13429         vector type val.
13431 2016-05-25  Martin Liska  <mliska@suse.cz>
13433         PR tree-optimization/71239
13434         * tree.c (array_at_struct_end_p): Do not call operand_equal_p
13435         if DECL_SIZE is NULL.
13437 2016-05-25  Richard Biener  <rguenther@suse.de>
13439         * timevar.def (TV_TREE_LOOP_IFCVT): Add.
13440         * tree-if-conv.c (pass_data_if_conversion): Use it.
13442 2016-05-25  Bernd Edlinger  <bernd.edlinger@hotmail.de>
13444         * cgraph.c (cgraph_node::get_availability): Fix typo in comment.
13445         * symtab.c (symtab_node::binds_to_current_def_p): Likewise.
13446         * varpool.c (varpool_node::get_availability): Likewise.
13448 2016-05-24  Michael Meissner  <meissner@linux.vnet.ibm.com>
13450         * config/rs6000/altivec.md (VNEG iterator): New iterator for
13451         VNEGW/VNEGD instructions.
13452         (p9_neg<mode>2): New insns for ISA 3.0 VNEGW/VNEGD.
13453         (neg<mode>2): Add expander for V2DImode added in ISA 2.07, and
13454         support for ISA 3.0 VNEGW/VNEGD instructions.
13456 2016-05-24  Cesar Philippidis  <cesar@codesourcery.com>
13458         * gimplify.c (omp_notice_variable): Use zero-length arrays for data
13459         pointers inside OACC_DATA regions.
13460         (gimplify_scan_omp_clauses): Prune firstprivate clause associated
13461         with OACC_DATA, OACC_ENTER_DATA and OACC_EXIT data regions.
13462         (gimplify_adjust_omp_clauses): Fix typo in comment.
13464 2016-05-24  Michael Meissner  <meissner@linux.vnet.ibm.com>
13466         * config/rs6000/altivec.md (VParity): New mode iterator for vector
13467         parity built-in functions.
13468         (p9v_ctz<mode>2): Add support for ISA 3.0 vector count trailing
13469         zeros.
13470         (p9v_parity<mode>2): Likewise.
13471         * config/rs6000/vector.md (VEC_IP): New mode iterator for vector
13472         parity.
13473         (ctz<mode>2): ISA 3.0 expander for vector count trailing zeros.
13474         (parity<mode>2): ISA 3.0 expander for vector parity.
13475         * config/rs6000/rs6000-builtin.def (BU_P9_MISC_1): New macros for
13476         power9 built-ins.
13477         (BU_P9_64BIT_MISC_0): Likewise.
13478         (BU_P9_MISC_0): Likewise.
13479         (BU_P9V_AV_1): Likewise.
13480         (BU_P9V_AV_2): Likewise.
13481         (BU_P9V_AV_3): Likewise.
13482         (BU_P9V_AV_P): Likewise.
13483         (BU_P9V_VSX_1): Likewise.
13484         (BU_P9V_OVERLOAD_1): Likewise.
13485         (BU_P9V_OVERLOAD_2): Likewise.
13486         (BU_P9V_OVERLOAD_3): Likewise.
13487         (VCTZB): Add vector count trailing zeros support.
13488         (VCTZH): Likewise.
13489         (VCTZW): Likewise.
13490         (VCTZD): Likewise.
13491         (VPRTYBD): Add vector parity support.
13492         (VPRTYBQ): Likewise.
13493         (VPRTYBW): Likewise.
13494         (VCTZ): Add overloaded vector count trailing zeros support.
13495         (VPRTYB): Add overloaded vector parity support.
13496         * config/rs6000/rs6000-c.c (altivec_overloaded_builtins): Add
13497         overloaded vector count trailing zeros and parity instructions.
13498         * config/rs6000/rs6000.md (wd mode attribute): Add V1TI and TI for
13499         vector parity support.
13500         * config/rs6000/altivec.h (vec_vctz): Add ISA 3.0 vector count
13501         trailing zeros support.
13502         (vec_cntlz): Likewise.
13503         (vec_vctzb): Likewise.
13504         (vec_vctzd): Likewise.
13505         (vec_vctzh): Likewise.
13506         (vec_vctzw): Likewise.
13507         (vec_vprtyb): Add ISA 3.0 vector parity support.
13508         (vec_vprtybd): Likewise.
13509         (vec_vprtybw): Likewise.
13510         (vec_vprtybq): Likewise.
13511         * doc/extend.texi (PowerPC AltiVec Built-in Functions): Document
13512         the ISA 3.0 vector count trailing zeros and vector parity built-in
13513         functions.
13515 2016-05-24  Kugan Vivekanandarajah  <kuganv@linaro.org>
13517         * tree-ssa-reassoc.c (sort_by_operand_rank): Skip checking gimple_bb
13518         when there is stmt_to_insert.
13520 2016-05-24  Martin Sebor  <msebor@redhat.com>
13522         PR c++/71147
13523         * tree.h (complete_or_array_type_p): New inline function.
13525 2016-05-24  Jakub Jelinek  <jakub@redhat.com>
13527         * config/i386/i386.h (TARGET_AVOID_4BYTE_PREFIXES): Define.
13528         * config/i386/constraints.md (Yr): Test TARGET_AVOID_4BYTE_PREFIXES
13529         rather than X86_TUNE_AVOID_4BYTE_PREFIXES.
13531         * config/i386/sse.md (<sse4_1>_round<ssemodesuffix><avxsizesuffix>):
13532         Limit 1st alternative to noavx isa, split 2nd alternative into one
13533         noavx and one avx alternative, use *x and Bm in the former and
13534         x and m in the latter.
13536         * config/i386/sse.md (vec_set<mode>_0): Use sse4_noavx isa instead
13537         of sse4 for the first alternative, drop %v from the template
13538         and d operand modifier.  Split second alternative into one sse4_noavx
13539         and one avx alternative, use *x instead of *v in the former and v
13540         instead of *v in the latter.
13541         (*sse4_1_extractps): Use noavx isa instead of * for the first
13542         alternative, drop %v from the template.  Split second alternative into
13543         one noavx and one avx alternative, use *x instead of *v in the
13544         former and v instead of *v in the latter.
13545         (<vi8_sse4_1_avx2_avx512>_movntdqa): Guard the first 2 alternatives
13546         with noavx and the last one with avx.
13547         (sse4_1_phminposuw): Guard first alternative with noavx isa,
13548         split the second one into one noavx and one avx alternative,
13549         use *x and Bm in the former and x and m in the latter one.
13550         (<sse4_1>_ptest<mode>): Use noavx instead of * for the first two
13551         alternatives.
13553         * config/i386/sse.md (sse4_1_<code>v8qiv8hi2<mask_name>): Limit
13554         first two alternatives to noavx, use *x instead of *v in the second
13555         one, add avx alternative without *.
13556         (sse4_1_<code>v4qiv4si2<mask_name>, sse4_1_<code>v4hiv4si2<mask_name>,
13557         sse4_1_<code>v2qiv2di2<mask_name>, sse4_1_<code>v2hiv2di2<mask_name>,
13558         sse4_1_<code>v2siv2di2<mask_name>): Likewise.
13560 2016-05-24  Jeff Law  <law@redhat.com>
13562         * tree-ssa-threadbackwards.c (convert_and_register_jump_thread_path):
13563         New function, extracted from...
13564         (fsm_find_control_statement_thread_paths): Here.  Use the new function.
13565         Allow simple copies and constant initializations in the SSA chain.
13567 2016-05-24  Marek Polacek  <polacek@redhat.com>
13569         PR c/71249
13570         * gimplify.c (gimplify_switch_expr): Look into the innermost lexical
13571         scope.
13573 2016-05-24  Jakub Jelinek  <jakub@redhat.com>
13575         PR c++/71257
13576         * tree-vect-stmts.c (vectorizable_simd_clone_call): Handle
13577         SIMD_CLONE_ARG_TYPE_LINEAR_REF_CONSTANT_STEP like
13578         SIMD_CLONE_ARG_TYPE_LINEAR_CONSTANT_STEP.  Add
13579         SIMD_CLONE_ARG_TYPE_LINEAR_VAL_CONSTANT_STEP and
13580         SIMD_CLONE_ARG_TYPE_LINEAR_UVAL_CONSTANT_STEP cases explicitly.
13582 2016-05-24  Richard Biener  <rguenther@suse.de>
13584         PR tree-optimization/71240
13585         * tree-ssa-math-opts.c (init_symbolic_number): Verify the source
13586         has integral type.
13588 2016-05-24  Richard Biener  <rguenther@suse.de>
13590         PR tree-optimization/71230
13591         * tree-ssa-reassoc.c (zero_one_operation): Handle negate special ops.
13593 2016-05-24  Richard Sandiford  <richard.sandiford@arm.com>
13595         * tree-vectorizer.h (vectorizable_comparison): Delete.
13596         * tree-vect-loop.c (vectorizable_reduction): Remove redundant
13597         PURE_SLP_STMT check.
13598         * tree-vect-stmts.c (vectorizable_call): Likewise.
13599         (vectorizable_simd_clone_call): Likewise.
13600         (vectorizable_conversion): Likewise.
13601         (vectorizable_assignment): Likewise.
13602         (vectorizable_shift): Likewise.
13603         (vectorizable_operation): Likewise.
13604         (vectorizable_load): Likewise.
13605         (vectorizable_condition): Likewise.
13606         (vectorizable_store): Likewise.  Assert that we don't have
13607         hybrid SLP.
13608         (vectorizable_comparison): Make static.  Remove redundant
13609         PURE_SLP_STMT check.
13610         (vect_transform_stmt): Assert that we always have an slp_node
13611         if PURE_SLP_STMT.
13613 2016-05-24  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
13615         * config/arm/neon.md (ashldi3_neon):  Replace comparison of INTVAL of
13616         operands[2] against 1 with comparison against CONST1_RTX.
13617         (<shift>di3_neon): Likewise.
13618         * config/arm/predicates.md (const0_operand): Replace with comparison
13619         against CONST0_RTX.
13621 2016-05-24  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
13623         * config/arm/arm.md (ashldi3): Replace comparison of INTVAL of
13624         operands[2] against 1 with comparison against CONST1_RTX.
13625         (ashrdi3): Likewise.
13626         (lshrdi3): Likewise.
13627         (ashlsi3): Replace cast of INTVAL to unsigned HOST_WIDE_INT with
13628         UINTVAL.
13629         (ashrsi3): Likewise.
13630         (lshrsi3): Likewise.
13631         (rotrsi3): Likewise.
13632         (define_split above *compareqi_eq0): Likewise.
13633         (define_split above "prologue"): Likewise.
13634         * config/arm/arm.c (thumb1_size_rtx_costs): Likewise.
13635         * config/arm/predicates.md (shift_operator): Likewise.
13636         (shift_nomul_operator): Likewise.
13637         (sat_shift_operator): Likewise.
13638         (thumb1_cmp_operand): Likewise.
13639         (const_neon_scalar_shift_amount_operand): Replace manual range
13640         check with IN_RANGE.
13641         * config/arm/thumb1.md (define_peephole2 above *thumb_subdi3):
13642         Replace cast of INTVAL to unsigned HOST_WIDE_INT with UINTVAL.
13644 2016-05-24  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
13646         * config/arm/arm.md (andsi3): Replace cast of 1 to HOST_WIDE_INT
13647         with HOST_WIDE_INT_1.
13648         (insv): Likewise.
13649         * config/arm/arm.c (optimal_immediate_sequence): Replace cast of
13650         1 to unsigned HOST_WIDE_INT with HOST_WIDE_INT_1U.
13651         (arm_canonicalize_comparison): Likewise.
13652         (thumb1_rtx_costs): Replace cast of 1 to HOST_WIDE_INT with
13653         HOST_WIDE_INT_1.
13654         (thumb1_size_rtx_costs): Likewise.
13655         (vfp_const_double_index): Replace cast of 1 to unsigned
13656         HOST_WIDE_INT with HOST_WIDE_INT_1U.
13657         (get_jump_table_size): Replace cast of 1 to HOST_WIDE_INT with
13658         HOST_WIDE_INT_1.
13659         (arm_asan_shadow_offset): Replace cast of 1 to unsigned
13660         HOST_WIDE_INT with HOST_WIDE_INT_1U.
13661         * config/arm/neon.md (vec_set<mode>): Replace cast of 1 to
13662         HOST_WIDE_INT with HOST_WIDE_INT_1.
13664 2016-05-24  Marek Polacek  <polacek@redhat.com>
13666         * tree-cfg.h (should_remove_lhs_p): New predicate.
13667         * cgraph.c (cgraph_edge::redirect_call_stmt_to_callee): Use it.
13668         * gimplify.c (gimplify_modify_expr): Likewise.
13669         * tree-cfg.c (verify_gimple_call): Likewise.
13670         * tree-cfgcleanup.c (fixup_noreturn_call): Likewise.
13671         * gimple-fold.c: Include "tree-cfg.h".
13672         (gimple_fold_call): Use should_remove_lhs_p.
13674 2016-05-24  Richard Biener  <rguenther@suse.de>
13676         PR tree-optimization/71253
13677         * cfganal.h (control_dependences): Make robust against edge
13678         and BB removal.
13679         (control_dependences::control_dependences): Remove edge_list argument.
13680         (control_dependences::get_edge): Remove.
13681         (control_dependences::get_edge_src): Add.
13682         (control_dependences::get_edge_dest): Likewise.
13683         (control_dependences::m_el): Make a vector of edge src/dest index.
13684         * cfganal.c (control_dependences::find_control_dependence): Adjust.
13685         (control_dependences::control_dependences): Likewise.
13686         (control_dependences::~control_dependence): Likewise.
13687         (control_dependences::get_edge): Remove.
13688         (control_dependences::get_edge_src): Add.
13689         (control_dependences::get_edge_dest): Likewise.
13690         * tree-ssa-dce.c (mark_control_dependent_edges_necessary): Use
13691         get_edge_src.
13692         (perform_tree_ssa_dce): Adjust.
13693         * tree-loop-distribution.c (create_edge_for_control_dependence): Use
13694         get_edge_src.
13695         (pass_loop_distribution::execute): Adjust.  Do loop destroying
13696         conditional on changed.
13698 2016-05-24  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
13700         PR target/69857
13701         * config/arm/arm.c (gen_operands_ldrd_strd): Remove bogus early
13702         return.  Reindent transformation comment and mention the ARM state
13703         behavior.
13705 2016-05-24  Kugan Vivekanandarajah  <kuganv@linaro.org>
13707         PR middle-end/71252
13708         * tree-ssa-reassoc.c (rewrite_expr_tree_parallel): Add stmt_to_insert
13709         after build_and_add_sum creates new use stmt.
13711 2016-05-24  Richard Sandiford  <richard.sandiford@arm.com>
13713         * tree-vect-stmts.c (vectorizable_load): Reorder checks so that
13714         load_lanes/grouped_load classification comes first.  Don't check
13715         whether the vectorization factor is a multiple of the group size
13716         for load_lanes.
13718 2016-05-24  Richard Sandiford  <richard.sandiford@arm.com>
13720         * tree-vect-data-refs.c (vect_analyze_group_access_1): Set
13721         GROUP_GAP for single-element interleaving.
13722         * tree-vect-stmts.c (vectorizable_load): Remove force_peeling
13723         variable.
13725 2016-05-24  Richard Biener  <rguenther@suse.de>
13727         PR middle-end/70434
13728         PR c/69504
13729         * tree-ssa.c (non_rewritable_mem_ref_base): Make sure to mark
13730         bases which are accessed with non-invariant indices.
13731         * gimple-fold.c (maybe_canonicalize_mem_ref_addr): Re-write
13732         constant index ARRAY_REFs of vectors into BIT_FIELD_REFs.
13734 2016-05-24  Kugan Vivekanandarajah  <kuganv@linaro.org>
13736         PR middle-end/71170
13737         * tree-ssa-reassoc.c (struct operand_entry): Add field stmt_to_insert.
13738         (add_to_ops_vec): Add stmt_to_insert.
13739         (add_repeat_to_ops_vec): Init stmt_to_insert.
13740         (insert_stmt_before_use): New.
13741         (transform_add_to_multiply): Remove mult_stmt insertion and add it
13742         to ops vector.
13743         (get_ops): Init stmt_to_insert.
13744         (maybe_optimize_range_tests): Likewise.
13745         (rewrite_expr_tree): Insert stmt_to_insert before use stmt.
13746         (rewrite_expr_tree_parallel): Likewise.
13747         (reassociate_bb): Likewise.
13749 2016-05-23  Michael Meissner  <meissner@linux.vnet.ibm.com>
13751         PR target/71201
13752         * config/rs6000/altivec.md (altivec_vperm_<mode>_internal): Drop
13753         ISA 3.0 xxperm fusion alternative.
13754         (altivec_vperm_v8hiv16qi): Likewise.
13755         (altivec_vperm_<mode>_uns_internal): Likewise.
13756         (vperm_v8hiv4si): Likewise.
13757         (vperm_v16qiv8hi): Likewise.
13759 2016-05-23  Michael Meissner  <meissner@linux.vnet.ibm.com>
13760             Kelvin Nilsen  <kelvin@gcc.gnu.org>
13762         * config/rs6000/rs6000.c (rs6000_expand_vector_set): Generate
13763         vpermr/xxpermr on ISA 3.0.
13764         (altivec_expand_vec_perm_le): Likewise.
13765         * config/rs6000/altivec.md (UNSPEC_VPERMR): New unspec.
13766         (altivec_vpermr_<mode>_internal): Add VPERMR/XXPERMR support for
13767         ISA 3.0.
13769 2016-05-23  Uros Bizjak  <ubizjak@gmail.com>
13771         * config/i386/i386.h (IS_STACK_MODE): Enable for
13772         TARGET_MIX_SSE_I387.  Rewrite using X87_FLOAT_MODE_P and
13773         SSE_FLOAT_MODE_P macros.
13774         * config/i386/i386.c (ix86_preferred_reload_class): Use
13775         IS_STACK_MODE, INTEGER_CLASS_P, FLOAT_CLASS_P and Q_CLASS_P macros.
13776         Cleanup regclass processing for CONST_DOUBLE_P.
13777         (ix86_preferred_output_reload_class): Use IS_STACK_MODE macro.
13778         (ix86_rtx_costs): Remove redundant TARGET_80387 check
13779         with IS_STACK_MODE macro.
13780         * config/i386/i386.md: Replace SSE_FLOAT_MODE_P (DFmode)
13781         with TARGET_SSE2.
13782         (*movdf_internal): Use IS_STACK_MODE macro.
13783         (*movsf_internal): Ditto.
13785 2016-05-23  Marc Glisse  <marc.glisse@inria.fr>
13787         * match.pd (a * (1 << b), ~x & ~y, ~X ^ ~Y, (X ^ Y) ^ Y, ~ (-A),
13788         ~ (A - 1), ~(~X >> Y), ~(~X >>r Y)): Relax constraints.
13790 2016-05-23  Jeff Law  <law@redhat.com>
13792         * tree-ssa-threadbackward.c (profitable_jump_thread_path): New function
13793         extracted from ...
13794         (fsm_find_control_statement_thread_paths): Call it.
13796 2016-05-23  Martin Jambor  <mjambor@suse.cz>
13798         PR ipa/71234
13799         * ipa-cp.c (ipa_get_indirect_edge_target_1): Only check value of
13800         from_global_constant if t is not NULL.
13802 2016-05-23  Marek Polacek  <polacek@redhat.com>
13804         PR c/49859
13805         * common.opt (Wswitch-unreachable): New option.
13806         * doc/invoke.texi: Document -Wswitch-unreachable.
13807         * gimplify.c (gimplify_switch_expr): Implement the -Wswitch-unreachable
13808         warning.
13810 2016-05-23  Bin Cheng  <bin.cheng@arm.com>
13812         * tree-ssa-address.c (copy_ref_info): Check NULL TMR_STEP when
13813         TMR_INDEX is non-NULL.
13815 2016-05-23  Richard Biener  <rguenther@suse.de>
13817         PR tree-optimization/71230
13818         * tree-ssa-reassoc.c (acceptable_pow_call): Move initial condition...
13819         (try_special_add_to_ops): ... here.  Always test for single-use.
13821 2016-05-23  Martin Jambor  <mjambor@suse.cz>
13823         * hsa-gen.c (gen_hsa_insns_for_switch_stmt): Create an empty
13824         default block if a PHI node in the original one would be resized.
13826 2016-05-23  Venkataramanan Kumar  <venkataramanan.kumar@amd.com>
13828         PR tree-optimization/58135
13829         * tree-vect-slp.c: When group size is not multiple
13830         of vector size, allow splitting of store group at
13831         vector boundary.
13833 2016-05-23  Christophe Lyon  <christophe.lyon@linaro.org>
13835         * config/arm/arm_neon.h (vtst_p16, vtstq_p16): New.
13837 2016-05-22  Jakub Jelinek  <jakub@redhat.com>
13839         * config/i386/sse.md (vec_set_lo_<mode><mask_name>,
13840         vec_set_hi_<mode><mask_name>): Add && <mask_avx512dq_condition>
13841         condition.  For !TARGET_AVX512DQ, emit 32x4 instruction instead
13842         of 64x2.
13844         * config/i386/sse.md (vec_set_lo_v16hi, vec_set_hi_v16hi,
13845         vec_set_lo_v32qi, vec_set_hi_v32qi): Add alternative with
13846         v constraint instead of x and vinserti32x4 insn.
13848         * config/i386/sse.md (i128vldq): New mode iterator.
13849         (avx2_vbroadcasti128_<mode>, avx_vbroadcastf128_<mode>): Add
13850         avx512dq and avx512vl alternatives.
13852         * config/i386/sse.md (avx2_vec_dupv4df): Use v instead of x
13853         constraint, use maybe_evex prefix instead of vex.
13854         (vec_dupv4sf): Use v constraint instead of x for output
13855         operand except for noavx alternative, use Yv constraint
13856         instead of x for input.  Use maybe_evex prefix instead of vex.
13857         (*vec_dupv4si): Likewise.
13858         (*vec_dupv2di): Likewise.
13860 2016-05-22  Kugan Vivekanandarajah  <kuganv@linaro.org>
13862         PR middle-end/40921
13863         * tree-ssa-reassoc.c (try_special_add_to_ops): New.
13864         (linearize_expr_tree): Call try_special_add_to_ops.
13865         (reassociate_bb): Convert MULT_EXPR by (-1) to NEGATE_EXPR.
13867 2016-05-21  Senthil Kumar Selvaraj  <senthil_kumar.selvaraj@atmel.com>
13869         * config/avr/avr.c (avr_expand_prologue): Add INCOMING_FRAME_SP_OFFSET
13870         to computed stack_usage.
13872 2016-05-21  Pitchumani Sivanupandi  <pitchumani.s@atmel.com>
13874         PR target/71103
13875         * config/avr/avr.md (define_expand "mov<mode>"): If the source
13876         operand is subreg (symbol_ref) then move the symbol ref to register.
13878 2016-05-21  Jan Hubicka  <hubicka@ucw.cz>
13880         * tree.c (array_at_struct_end_p): Look through MEM_REF.
13882 2016-05-21  Kugan Vivekanandarajah  <kuganv@linaro.org>
13884         PR middle-end/71179
13885         * tree-ssa-reassoc.c (transform_add_to_multiply): Disallow float
13886         VECTOR type.
13888 2016-05-20  Eric Botcazou  <ebotcazou@adacore.com>
13890         * tree-vrp.c (compare_values_warnv): Simplify handling of symbolic
13891         ranges by calling get_single_symbol and tidy up.  Look more closely
13892         into NAME + CST1 vs CST2 comparisons if type overflow is undefined.
13894 2016-05-20  Jeff Law  <law@redhat.com>
13896         * bitmap.c (bitmap_find_bit): Remove useless test.
13898 2016-05-20  Segher Boessenkool  <segher@kernel.crashing.org>
13900         * function.c (thread_prologue_and_epilogue_insns): Commit the
13901         insertion of the epilogue.
13903 2016-05-20  Martin Jambor  <mjambor@suse.cz>
13905         PR tree-optimization/70884
13906         * tree-sra.c (initialize_constant_pool_replacements): Do not check
13907         should_scalarize_away_bitmap and cannot_scalarize_away_bitmap bits.
13908         (sort_and_splice_var_accesses): Do not consider multiple scalar reads
13909         of constant pool data as a reason for scalarization.
13911 2016-05-20  Eric Botcazou  <ebotcazou@adacore.com>
13913         * config/arm/arm.c (arm_expand_prologue): Set the stack usage to 0
13914         for naked functions.
13915         (thumb1_expand_prologue): Likewise.
13917 2016-05-20  Nathan Sidwell  <nathan@acm.org>
13919         * config/nvptx/nptx.c (nvptx_option_override): Only set
13920         flag_toplevel_reorder, if not explicitly specified.  Set
13921         flag_no_common, unless explicitly specified.
13923 2016-05-20  David Malcolm  <dmalcolm@redhat.com>
13925         * calls.c (can_implement_as_sibling_call_p): Mark param
13926         reg_parm_stack_space with ATTRIBUTE_UNUSED.
13928 2016-05-20  Uros Bizjak  <ubizjak@gmail.com>
13930         * config/i386/i386.c (ix86_rtx_costs) <case CONST_DOUBLE>:
13931         Use IS_STACK_MODE when calculating cost of standard 80387 constants.
13932         Fallthru to CONST_VECTOR case to calculate cost of standard SSE
13933         constants.
13934         <case CONST_WIDE_INT>: Calculate cost of (MEM (SYMBOL_REF)).
13935         (ix86_legitimate_constant_p): Use CASE_CONST_SCALAR_INT
13936         and CASE_CONST_ANY.
13938 2016-05-20  Cesar Philippidis  <cesar@codesourcery.com>
13940         * config/nvptx/nvptx.md (sincossf3): New pattern.
13942 2016-05-20  David Malcolm  <dmalcolm@redhat.com>
13944         * calls.c (maybe_complain_about_tail_call): New function.
13945         (initialize_argument_information): Call
13946         maybe_complain_about_tail_call when clearing *may_tailcall.
13947         (can_implement_as_sibling_call_p): Call
13948         maybe_complain_about_tail_call when returning false.
13949         (expand_call): Read CALL_EXPR_MUST_TAIL_CALL and, if set,
13950         ensure try_tail_call is set.  Call maybe_complain_about_tail_call
13951         if tail-call optimization fails.
13952         * cfgexpand.c (expand_call_stmt): Initialize
13953         CALL_EXPR_MUST_TAIL_CALL from gimple_call_must_tail_p.
13954         * gimple-pretty-print.c (dump_gimple_call): Dump
13955         gimple_call_must_tail_p.
13956         * gimple.c (gimple_build_call_from_tree): Call
13957         gimple_call_set_must_tail with the value of
13958         CALL_EXPR_MUST_TAIL_CALL.
13959         * gimple.h (enum gf_mask): Add GF_CALL_MUST_TAIL_CALL.
13960         (gimple_call_set_must_tail): New function.
13961         (gimple_call_must_tail_p): New function.
13962         * print-tree.c (print_node): Update printing of TREE_STATIC
13963         to reflect its use for CALL_EXPR_MUST_TAIL_CALL.
13964         * tree-core.h (struct tree_base): Add MUST_TAIL_CALL to the
13965         trailing comment listing applicable flags.
13966         * tree.h (CALL_EXPR_MUST_TAIL_CALL): New macro.
13968 2016-05-20  David Malcolm  <dmalcolm@redhat.com>
13970         * calls.c (expand_call): Move "Rest of purposes for tail call
13971         optimizations to fail" to...
13972         (can_implement_as_sibling_call_p): ...this new function, and
13973         split into multiple "if" statements.
13975 2016-05-20  Jan Hubicka  <hubicka@ucw.cz>
13977         * cfgloop.h (expected_loop_iterations_unbounded,
13978         expected_loop_iterations): Unconstify.
13979         * cfgloopanal.c (expected_loop_iterations_unbounded): Sanity check the
13980         profile with known upper bound; return 3 when profile is absent.
13981         (expected_loop_iterations): Update.
13983 2016-05-20  Jan Hubicka  <hubicka@ucw.cz>
13985         * loop-doloop.c (doloop_optimize): Use get_estimated_loop_iterations_int
13986         and get_max_loop_iterations_int.
13988 2016-05-20  Jan Hubicka  <hubicka@ucw.cz>
13990         * tree-ssa-loop-niter.c (idx_infer_loop_bounds): We can not produce
13991         realistic upper bounds here.
13993 2016-05-20  Jakub Jelinek  <jakub@redhat.com>
13995         PR c++/71210
13996         * gimple-fold.c (gimple_fold_call): Do not remove lhs of noreturn
13997         calls if the LHS is variable length or has addressable type.
13998         If targets[0]->decl is a noreturn call with void return type and
13999         zero arguments, adjust fntype and remove lhs in that case.
14001 2016-05-20  Marc Glisse  <marc.glisse@inria.fr>
14003         PR tree-optimization/71079
14004         PR tree-optimization/71206
14005         * match.pd ((X ^ Y) ^ (X ^ Z)): Convert the arguments.
14007 2016-05-20  Prathamesh Kulkarni  <prathamesh.kulkarni@linaro.org>
14009         * tree-vectorizer.c (get_vec_alignment_for_decl): New static function.
14010         (get_vec_alignment_for_array_decl): Likewise.
14011         (get_vec_alignment_for_record_decl): Likewise.
14012         (increase_alignment::execute): Move code to find alignment to
14013         get_vec_alignment_for_array_decl and call get_vec_alignment_for_decl.
14014         (type_align_map): New hash_map.
14016 2016-05-20  Richard Guenther  <rguenther@suse.de>
14018         PR tree-optimization/29756
14019         * tree.def (BIT_INSERT_EXPR): New tcc_expression tree code.
14020         * expr.c (expand_expr_real_2): Handle BIT_INSERT_EXPR.
14021         * fold-const.c (operand_equal_p): Likewise.
14022         (fold_ternary_loc): Add constant folding of BIT_INSERT_EXPR.
14023         * gimplify.c (gimplify_expr): Handle BIT_INSERT_EXPR.
14024         * tree-inline.c (estimate_operator_cost): Likewise.
14025         * tree-pretty-print.c (dump_generic_node): Likewise.
14026         * tree-ssa-operands.c (get_expr_operands): Likewise.
14027         * cfgexpand.c (expand_debug_expr): Likewise.
14028         * gimple-pretty-print.c (dump_ternary_rhs): Likewise.
14029         * gimple.c (get_gimple_rhs_num_ops): Handle BIT_INSERT_EXPR.
14030         * tree-cfg.c (verify_gimple_assign_ternary): Verify BIT_INSERT_EXPR.
14031         * tree-ssa.c (non_rewritable_lvalue_p): We can rewrite
14032         vector inserts using BIT_FIELD_REF or MEM_REF on the lhs.
14033         (execute_update_addresses_taken): Do it.
14035 2016-05-20  Richard Biener  <rguenther@suse.de>
14037         PR tree-optimization/71185
14038         * tree-ssa-loop-prefetch.c (gather_memory_references): Drop
14039         register operations.
14041 2016-05-20  Richard Biener  <rguenther@suse.de>
14043         * tree-if-conv.c (add_bb_predicate_gimplified_stmts): Use
14044         gimple_seq_add_seq_without_update.
14045         (release_bb_predicate): Assert we have no operands to free.
14046         (if_convertible_loop_p_1): Calculate post dominators later.
14047         Do not free BB predicates here.
14048         (combine_blocks): Do not recompute BB predicates.
14049         (version_loop_for_if_conversion): Save BB predicates around
14050         loop versioning.
14052 2016-05-19  Segher Boessenkool  <segher@kernel.crashing.org>
14054         * function.c (make_epilogue_seq): Remove epilogue_end parameter.
14055         (thread_prologue_and_epilogue_insns): Remove bb_flags.  Restructure
14056         code.  Ignore sibcalls on EDGE_IGNORE edges.
14057         * shrink-wrap.c (handle_simple_exit): New function.  Set EDGE_IGNORE
14058         on edges for sibcalls that run without prologue.  The rest of the
14059         function is combined from...
14060         (fix_fake_fallthrough_edge): ... this, and ...
14061         (try_shrink_wrapping): ... a part of this.  Remove the bb_with
14062         function argument, make it a local variable.
14064 2016-05-19  Sandra Loosemore  <sandra@codesourcery.com>
14066         * config/i386/cygming.h (DWARF2_UNWIND_INFO): Allow
14067         --disable-sjlj-exceptions for TARGET_BI_ARCH to select DWARF-2 EH
14068         for 32-bit mode and SEH for 64-bit.
14069         * config/i386/mingw32.h (SHARED_LIBGCC_UNDEFS_SPEC): Handle
14070         TARGET_64BIT_DEFAULT.
14072 2016-05-19  Ryan Burn  <contact@rnburn.com>
14074         * Makefile.in (GTFILES): Add cilk.h and cilk-common.c.
14075         * gengtype.c (open_base_files): Add cilk.h to ifiles.
14077 2016-05-19  Uros Bizjak  <ubizjak@gmail.com>
14079         * sched-deps.c (sched_analyze_2) <case TRAP_IF>: Also
14080         force pending loads from memory.
14082 2016-05-19  Kelvin Nilsen  <kelvin@gcc.gnu.org>
14084         * config/rs6000/altivec.md (UNSPEC_DARN): New unspec constant.
14085         (UNSPEC_DARN_32): New unspec constant.
14086         (UNSPEC_DARN_RAW): New unspec constant.
14087         (darn_32): New instruction.
14088         (darn_raw): New instruction.
14089         (darn): New instruction.
14090         * config/rs6000/rs6000-builtin.def (RS6000_BUILTIN_0): Add
14091         support and documentation for this macro.
14092         (BU_P9_MISC_1): New macro definition.
14093         (BU_P9_64BIT_MISC_0): New macro definition.
14094         (BU_P9_MISC_0): New macro definition.
14095         (darn_32): New builtin definition.
14096         (darn_raw): New builtin definition.
14097         (darn): New builtin definition.
14098         * config/rs6000/rs6000.c: Add #define RS6000_BUILTIN_0 and #undef
14099         RS6000_BUILTIN_0 directives to surround each occurrence of
14100         #include "rs6000-builtin.def".
14101         (rs6000_builtin_mask_calculate): Add in the RS6000_BTM_MODULO and
14102         RS6000_BTM_64BIT flags to the returned mask, depending on
14103         configuration.
14104         (def_builtin): Correct an error in the assignments made to the
14105         debugging variable attr_string.
14106         (rs6000_expand_builtin): Add support for no-operand built-in
14107         functions.
14108         (builtin_function_type): Remove fatal_error assertion that is no
14109         longer valid.
14110         (rs6000_common_init_builtins): Add support for no-operand built-in
14111         functions.
14112         * config/rs6000/rs6000.h (RS6000_BTM_MODULO): New macro
14113         definition.
14114         (RS6000_BTM_PURE): Enhance comment to clarify intent of this flag
14115         definition.
14116         (RS6000_BTM_64BIT): New macro definition.
14117         * doc/extend.texi: Document __builtin_darn (void),
14118         __builtin_darn_raw (void), and __builtin_darn_32 (void) built-in
14119         functions.
14121 2016-05-19  Jan Hubicka  <hubicka@ucw.cz>
14123         * tree-vect-loop.c (vect_analyze_loop_2): Use also
14124         max_loop_iterations_int.
14126 2016-05-19  Marek Polacek  <polacek@redhat.com>
14128         PR tree-optimization/71031
14129         * tree-vrp.c (extract_range_from_binary_expr_1): Turn assert into a
14130         condition and adjust the code a bit.
14132 2016-05-19  Martin Liska  <mliska@suse.cz>
14134         * tree-vect-stmts.c (vectorizable_simd_clone_call): Utilize
14135         auto_vec instead of vec.
14137 2016-05-19  Martin Liska  <mliska@suse.cz>
14139         * tree-parloops.c (oacc_entry_exit_ok): Release a vector.
14141 2016-05-19  Martin Liska  <mliska@suse.cz>
14143         * tree-if-conv.c (ifcvt_repair_bool_pattern): Utilize auto_vecs.
14145 2016-05-19  Martin Liska  <mliska@suse.cz>
14147         * ipa-pure-const.c (set_function_state): Remove an existing
14148         funct_state.
14149         (remove_node_data): Do not free it as it's released
14150         in set_function_state.
14152 2016-05-19  Martin Liska  <mliska@suse.cz>
14154         * tree-vect-slp.c (vect_attempt_slp_rearrange_stmts): Release
14155         bitmap.
14157 2016-05-19  Martin Liska  <mliska@suse.cz>
14159         * omp-simd-clone.c (simd_clone_adjust): Release vector.
14161 2016-05-19  Martin Liska  <mliska@suse.cz>
14163         * tree-ssa-reassoc.c (eliminate_duplicate_pair): Truncate
14164         an auto_vec instead of re-creating it.
14166 2016-05-19  Martin Liska  <mliska@suse.cz>
14168         * tree-ssa-loop-prefetch.c (determine_loop_nest_reuse): Use
14169         auto_vec instead of vec.
14171 2016-05-19  Martin Liska  <mliska@suse.cz>
14173         * lto-section-in.c (lto_get_section_data): Call
14174         lto_check_version with additional argument.
14175         * lto-streamer.c (lto_check_version): Add new argument.
14176         * lto-streamer.h (lto_check_version): Likewise.
14178 2016-05-19  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
14180         * config/arm/arm.c (arm_new_rtx_costs, SIGN_EXTEND case):
14181         Don't add cost of inner memory when handling sign-extended loads.
14183 2016-05-19  Ilya Enkovich  <ilya.enkovich@intel.com>
14185         PR rtl-optimization/71148
14186         * cse.c (cse_main): Free dominance info.
14187         (rest_of_handle_cse): Don't free dominance info.
14188         (rest_of_handle_cse2): Likewise.
14189         (rest_of_handle_cse_after_global_opts): Likewise.
14191 2016-05-19  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
14193         PR target/71056
14194         * config/arm/arm-builtins.c (arm_builtin_vectorized_function): Return
14195         NULL_TREE early if NEON is not available.  Remove now redundant check
14196         in ARM_CHECK_BUILTIN_MODE.
14198 2016-05-19  Maxim Ostapenko  <m.ostapenko@samsung.com>
14200         PR sanitizer/64354
14201         * cppbuiltin.c (define_builtin_macros_for_compilation_flags): Add new
14202         builtin __SANITIZE_THREAD__ macros for fsanitize=thread switch.
14203         * doc/cpp.texi: Document new macros.
14205 2016-05-19  Bin Cheng  <bin.cheng@arm.com>
14207         PR tree-optimization/69848
14208         * tree-vect-loop.c (vectorizable_reduction): Don't factor
14209         comparison expr out of VEC_COND_EXPR for COND_REDUCTION.
14211 2016-05-19  Segher Boessenkool  <segher@kernel.crashing.org>
14213         * function.c (thread_prologue_and_epilogue_insn): Move the
14214         "goto epilogue_done" one block later.
14216 2016-05-19  Richard Biener  <rguenther@suse.de>
14218         PR tree-optimization/70729
14219         * passes.def: Move LIM pass before PRE.  Remove no longer
14220         required copyprop and move first DCE out of the loop pipeline.
14222 2016-05-18  David Malcolm  <dmalcolm@redhat.com>
14224         PR driver/69265
14225         * Makefile.in (GCC_OBJS): Move spellcheck.o to...
14226         (OBJS-libcommon-target): ...here.
14227         * opts-common.c: Include spellcheck.h.
14228         (cmdline_handle_error): Build a vec of valid options and use it
14229         to suggest provide hints for misspelled arguments.
14231 2016-05-18  Jakub Jelinek  <jakub@redhat.com>
14233         PR c++/71100
14234         * cgraph.c (cgraph_edge::redirect_call_stmt_to_callee): Don't drop
14235         lhs if it has TREE_ADDRESSABLE type.
14237 2016-05-18  Uros Bizjak  <ubizjak@gmail.com>
14239         PR target/71145
14240         * config/alpha/alpha.md (trap): Add (use (reg:DI 29)).
14241         (*exception_receiver_1): Return "#" for TARGET_EXPLICIT_RELOCS.
14243 2016-05-18  Martin Jambor  <mjambor@suse.cz>
14245         PR ipa/69708
14246         * ipa-cp.c (ipa_get_jf_pass_through_result): Allow non-ip constant
14247         input for NOP_EXPR pass-through functions.
14248         * ipa-prop.c (ipa_compute_jump_functions_for_edge): Allow
14249         aggregate global constant VAR_DECLs in constant jump functions.
14251 2016-05-18  Martin Jambor  <mjambor@suse.cz>
14253         PR ipa/69708
14254         * ipa-prop.c (parm_preserved_before_stmt_p): Return true for loads
14255         from TREE_READONLY parameters.
14257 2016-05-18  Martin Jambor  <mjambor@suse.cz>
14259         PR ipa/69708
14260         * cgraph.h (cgraph_indirect_call_info): New field
14261         guaranteed_unmodified.
14262         * ipa-cp.c (ipa_get_indirect_edge_target_1): Also pass parameter value
14263         to ipa_find_agg_cst_for_param, check guaranteed_unmodified when
14264         appropriate.
14265         * ipa-inline-analysis.c (evaluate_conditions_for_known_args): Also
14266         pass the parameter value to ipa_find_agg_cst_for_param.
14267         * ipa-prop.c (ipa_load_from_parm_agg): New parameter
14268         guaranteed_unmodified, store AA results there instead of bailing out
14269         if present.
14270         (ipa_note_param_call): Also initialize guaranteed_unmodified flag.
14271         (ipa_analyze_indirect_call_uses): Also set guaranteed_unmodified flag.
14272         (find_constructor_constant_at_offset): New function.
14273         (ipa_find_agg_cst_from_init): Likewise.
14274         (ipa_find_agg_cst_for_param): Also seearch for aggregate values in
14275         static initializers of contants, report back through a new paameter
14276         from_global_constant if that was the case.
14277         (try_make_edge_direct_simple_call): Also pass parameter value to
14278         ipa_find_agg_cst_for_param, check guaranteed_unmodified when
14279         appropriate.
14280         (ipa_write_indirect_edge_info): Stream new flag guaranteed_unmodified.
14281         (ipa_read_indirect_edge_info): Likewise.
14282         * ipa-prop.h (ipa_find_agg_cst_for_param): Update declaration.
14283         (ipa_load_from_parm_agg): Likewise.
14285 2016-05-18  Jiong Wang  <jiong.wang@arm.com>
14287         PR rtl-optimization/71150
14288         * lra-constraint (process_addr_reg): Guard "in_class_p" with REG_P
14289         check.
14291 2016-05-18  Michael Meissner  <meissner@linux.vnet.ibm.com>
14293         PR target/70915
14294         * config/rs6000/constraints.md (wE constraint): New constraint
14295         for a vector constant that can be loaded with XXSPLTIB.
14296         (wM constraint): New constraint for a vector constant of a 1's.
14297         (wS constraint): New constraint for a vector constant that can be
14298         loaded with XXSPLTIB and a vector sign extend instruction.
14299         * config/rs6000/predicates.md (xxspltib_constant_split): New
14300         predicates for wE/wS constraints.
14301         (xxspltib_constant_nosplit): Likewise.
14302         (easy_vector_constant): Add support for constants that can be
14303         loaded via XXSPLTIB.
14304         (all_ones_constant): New predicate for vector constant with all
14305         1's set.
14306         (splat_input_operand): Add support for ISA 3.0 word splat operations.
14307         * config/rs6000/rs6000.c (xxspltib_constant_p): New function to
14308         return if a constant can be loaded with the ISA 3.0 XXSPLTIB
14309         instruction and possibly with a sign extension.
14310         (output_vec_const_move): Add support for XXSPLTIB. If we are
14311         loading up 0/-1 into Altivec registers, prefer using VSPLTISW
14312         instead of XXLXOR/XXLORC.
14313         (rs6000_expand_vector_init): Add support for ISA 3.0 word splat
14314         operations.
14315         (rs6000_legitimize_reload_address): Likewise.
14316         (rs6000_output_move_128bit): Use output_vec_const_move to emit
14317         constants.
14318         * config/rs6000/vsx.md (VSX_M): Add TImode (if -mvsx-timode) and
14319         combine VSX_M and VSX_M2 into one iterator.
14320         (VSX_M2): Likewise.
14321         (VSINT_84): New iterators for loading constants with XXSPLTIB.
14322         (VSINT_842): Likewise.
14323         (UNSPEC_VSX_SIGN_EXTEND): New UNSPEC.
14324         (xxspltib_v16qi): New insns to load up constants with the ISA 3.0
14325         XXSPLTIB instruction.
14326         (xxspltib_<mode>_nosplit): Likewise.
14327         (xxspltib_<mode>_split): New insn to load up constants with
14328         XXSPLTIB and a sign extend instruction.
14329         (vsx_mov<mode>): Replace single move that handled all vector types
14330         with separate 32-bit and 64-bit moves.  Combine the movti_<bit>
14331         moves (when -mvsx-timode is in effect) into the main vector
14332         moves.  Eliminate separate moves for <VSr> <VSa>, where the
14333         preferred register class (<VSr>) is listed first, and the
14334         secondary register class (<VSa>) is listed second with a '?' to
14335         discourage use.  Prefer loading 0/-1 in any VSX register for ISA
14336         3.0, and Altivec registers for ISA 2.06/2.07 (PR target/70915) so
14337         that if the register was involved in a slow operation, the
14338         clear/set operation does not wait for the slow operation to
14339         finish.  Adjust the length attributes for 32-bit mode.  Use
14340         rs6000_output_move_128bit and drop the use of the string
14341         instructions for 32-bit movti when -mvsx-timode is in effect.  Use
14342         spacing so that the alternatives and attributes don't generate
14343         long lines, and put things in columns, so that it is easier to
14344         match up the operands and attributes with the insn alternatives.
14345         (vsx_mov<mode>_64bit): Likewise.
14346         (vsx_mov<mode>_32bit): Likewise.
14347         (vsx_movti_64bit): Fold movti into normal vector moves.
14348         (vsx_movti_32bit): Likewise.
14349         (vsx_splat_<mode>, V4SI/V4SF modes): Add support for ISA 3.0 word
14350         splat instructions.
14351         (vsx_splat_v4si_internal): Likewise.
14352         (vsx_splat_v4sf_internal): Likewise.
14353         (vector fusion peepholes): Use VSX_M instead of VSX_M2.
14354         (vsx_sign_extend_qi_<mode>): New ISA 3.0 instructions to sign
14355         extend vector elements.
14356         (vsx_sign_extend_hi_<mode>): Likewise.
14357         (vsx_sign_extend_si_v2di): Likewise.
14358         * config/rs6000/rs6000-protos.h (xxspltib_constant_p): Add
14359         declaration.
14360         * doc/md.texi (PowerPC constraints): Document the wE, wM, and wS
14361         constraints.  Add trailing period to wL documentation.
14363 2016-05-18  Richard Sandiford  <richard.sandiford@arm.com>
14365         PR middle-end/71020
14366         * tree-dfa.h (replace_abnormal_ssa_names): Declare.
14367         * tree-dfa.c (replace_abnormal_ssa_names): New function.
14368         * tree-call-cdce.c: Include tree-dfa.h.
14369         (can_guard_call_p): New function, extracted from...
14370         (can_use_internal_fn): ...here.
14371         (shrink_wrap_one_built_in_call_with_conds): Remove failure path
14372         and return void.
14373         (shrink_wrap_one_built_in_call): Likewise.
14374         (use_internal_fn): Likewise.
14375         (shrink_wrap_conditional_dead_built_in_calls): Update accordingly
14376         and return void.  Call replace_abnormal_ssa_names.
14377         (pass_call_cdce::execute): Check can_guard_call_p during the
14378         initial walk.  Assume shrink_wrap_conditional_dead_built_in_calls
14379         will always change something.
14381 2016-05-18  Martin Jambor  <mjambor@suse.cz>
14383         PR ipa/70646
14384         * ipa-prop.c (determine_locally_known_aggregate_parts): Bail out early
14385         if parameter PARAM_IPA_MAX_AGG_ITEMS is zero.
14387 2016-05-18  Martin Jambor  <mjambor@suse.cz>
14389         PR ipa/70646
14390         * ipa-inline.h (condition): New field size.
14391         * ipa-inline-analysis.c (add_condition): New parameter SIZE, use it
14392         for comaprison and store it into the new condition.
14393         (evaluate_conditions_for_known_args): Use condition size to check
14394         access sizes for all but CHANGED conditions.
14395         (unmodified_parm_1): New parameter size_p, store access size into it.
14396         (unmodified_parm): Likewise.
14397         (unmodified_parm_or_parm_agg_item): Likewise.
14398         (eliminated_by_inlining_prob): Pass NULL to unmodified_parm as size_p.
14399         (set_cond_stmt_execution_predicate): Extract access sizes and store
14400         them to conditions.
14401         (set_switch_stmt_execution_predicate): Likewise.
14402         (will_be_nonconstant_expr_predicate): Likewise.
14403         (will_be_nonconstant_predicate): Likewise.
14404         (inline_read_section): Stream condition size.
14405         (inline_write_summary): Likewise.
14407 2016-05-18  Richard Biener  <rguenther@suse.de>
14409         * tree-ssa-loop-im.c (determine_max_movement): Properly add
14410         condition cost to PHI cost instead of total_cost.
14412 2016-05-18  Martin Liska  <mliska@suse.cz>
14414         PR fortran/70856
14415         * ipa-icf.c (sem_variable::merge): Set DECL_PT_UID for
14416         merged variables.
14418 2016-05-18  Richard Biener  <rguenther@suse.de>
14420         * lto-streamer.h (LTO_major_version): Bump to 6.
14422 2016-05-18  Segher Boessenkool  <segher@kernel.crashing.org>
14424         * function.c (make_split_prologue_seq, make_prologue_seq,
14425         make_epilogue_seq): New functions, factored out from...
14426         (thread_prologue_and_epilogue_insns): Here.
14428 2016-05-18  Segher Boessenkool  <segher@kernel.crashing.org>
14430         * function.c (rest_of_handle_thread_prologue_and_epilogue): Call
14431         cleanup_cfg with CLEANUP_EXPENSIVE after shrink-wrapping instead
14432         of before.  Add a comment.
14434 2016-05-18  Bin Cheng  <bin.cheng@arm.com>
14436         * tree-ssa-loop-ivopts.c (get_computation_cost_at): Check invariant
14437         expression pointer, not pointer to the pointer.
14439 2016-05-18  Jakub Jelinek  <jakub@redhat.com>
14441         * config/i386/sse.md (pbroadcast_evex_isa): New mode attr.
14442         (avx2_pbroadcast<mode>): Add another alternative with v instead
14443         of x constraints in it, using <pbroadcast_evex_isa> isa.
14444         (avx2_pbroadcast<mode>_1): Similarly, add two such alternatives.
14446         * config/i386/sse.md (<ssse3_avx2>_palignr<mode>): Use
14447         constraint x instead of v in second alternative, add avx512bw
14448         alternative.
14450         * config/i386/sse.md (<ssse3_avx2>_pshufb<mode>3<mask_name>): Use
14451         constraint x instead of v in second alternative, add avx512bw
14452         alternative.
14454         * config/i386/sse.md (*<ssse3_avx2>_pmulhrsw<mode>3<mask_name>): Use
14455         constraint x instead of v in second alternative, add avx512bw
14456         alternative.
14458         * config/i386/sse.md (avx2_pmaddubsw256, ssse3_pmaddubsw128): Add
14459         avx512bw alternative.
14461 2016-05-18  Kirill Yukhin  <kirill.yukhin@intel.com>
14463         * config/i386/sse.md (define_insn "*andnot<mode>3"): Extend static
14464         array to 128 chars.
14465         (define_insn "*andnottf3"): Ditto.
14466         (define_insn "*<code><mode>3"/any_logic): Ditto.
14467         (define_insn "*<code>tf3"/any_logic): Ditto.
14468         (define_insn "sse2_storehpd"): Use Yv constraint for scalar
14469         operand to block AVX-512VL insn variant emit when it is not enabled.
14471 2016-05-18  Kirill Yukhin  <kirill.yukhin@intel.com>
14473         * config/i386/sse.md (define_insn "*vec_concatv2sf_sse4_1"): Use 'Yv'
14474         constraint fot SF mode.
14476 2016-05-18  Petr Murzin  <petr.murzin@intel.com>
14477             Kirill Yukhin  <kirill.yukhin@intel.com>
14479         * config/i386/sse.md (define_insn "srcp14<mode>"): Use proper operand
14480         modifiers.
14481         (define_insn "rsqrt14<mode>"): Ditto.
14482         (define_insn "<mask_codefor>avx512dq_cvtps2qqv2di<mask_name>"): Ditto.
14483         (define_insn "<fixsuffix>fix_truncv2sfv2di2<mask_name>"): Ditto.
14484         (define_insn "avx512f_<code>v8div16qi2_mask_store"): Ditto.
14485         (define_insn "vec_set_hi_<mode><mask_name>"): Ditto.
14486         (define_insn "<mask_codefor>avx512dq_broadcast<mode><mask_name>"):
14487         Ditto.
14488         (define_insn "*avx512f_gatherdi<mode>"): Ditto.
14489         (define_insn "*avx512f_scatterdi<mode>"): Ditto.
14490         * config/i386/i386.c (ix86_print_operand): Expand check for size
14491         override codes for Intel syntax.
14493 2016-05-18  Richard Biener  <rguenther@suse.de>
14495         PR tree-optimization/71168
14496         * tree-loop-distribution.c (distribute_loop): Move *destroy_p
14497         initialization earlier.
14499 2016-05-18  James Greenhalgh  <james.greenhalgh@arm.com>
14501         * config/aarch64/aarch64-simd.md
14502         (aarch64_reduc_plus_internal<mode>): Rename to...
14503         (reduc_plus_scal): ...This, and remove previous implementation.
14505 2016-05-18  Richard Biener  <rguenther@suse.de>
14507         * passes.def: Put late dse and cd_dce in canonical order.
14509 2016-05-17  Jan Hubicka  <hubicka@ucw.cz>
14511         * ipa-inline-transform.c (preserve_function_body_p): Look for
14512         first non-thunk clone.
14513         (save_function_body): Save into first non-thunk.
14514         * lto-cgraph.c (lto_output_edge): When streaming thunk do not look
14515         up call stmt id.
14516         (lto_output_node): Inline thunks don't need body in every
14517         partition.
14518         * lto-streamer-in.c: Do not fixup thunk clones.
14519         * cgraphclones.c (cgraph_node::create_edge_including_clone): Skip
14520         thunks.
14521         * tree-inline.c (copy_bb): Be prepared for target node to be new after
14522         folding suceeds.
14524 2016-05-17  Kugan Vivekanandarajah  <kuganv@linaro.org>
14526         PR middle-end/63586
14527         * tree-ssa-reassoc.c (transform_add_to_multiply): New.
14528         (reassociate_bb): Call transform_add_to_multiply.
14530 2016-05-17  Kugan Vivekanandarajah  <kuganv@linaro.org>
14532         * config/aarch64/aarch64.c (all_extensions): Removed unused
14533         static variable.
14535 2016-05-17  Nathan Sidwell  <nathan@acm.org>
14537         * config/nvptx/nvptx.c (nvptx_function_arg_boundary): New.
14538         (TARGET_FUNCTION_ARG_BOUNDARY): Override.
14540 2016-05-17  Mikhail Maltsev  <maltsevm@gmail.com>
14542         PR tree-optimization/54579
14543         PR middle-end/55299
14544         * match.pd (~(~X >> Y), ~(~X >>r Y), ~(~X <<r Y)): New patterns.
14546 2016-05-17  Marek Polacek  <polacek@redhat.com>
14548         PR ipa/71146
14549         * tree-inline.c (expand_call_inline): Call
14550         maybe_remove_unused_call_args.
14552 2016-05-17  Jim Wilson  <jim.wilson@linaro.org>
14554         * doc/cpp.texi (__GNUC__): Major version changes are no longer rare.
14555         * doc/invoke.texi (-mnan=2008): Change signalling to signaling.
14556         * doc/md.texi (fmin@var{m}3): Likewise.
14558 2016-05-17  Marc Glisse  <marc.glisse@inria.fr>
14560         * match.pd (X & C): New transformation.
14562 2016-05-17  Marc Glisse  <marc.glisse@inria.fr>
14564         * match.pd (~X & Y): New transformation.
14566 2016-05-17  Marc Glisse  <marc.glisse@inria.fr>
14568         * tree-vrp.c (simplify_truth_ops_using_ranges): Set range
14569         information for new SSA_NAME.
14570         (simplify_conversion_using_ranges): Get range through get_range_info
14571         instead of get_value_range.
14573 2016-05-17  Jiong Wang  <jiong.wang@arm.com>
14575         * config/aarch64/arm_neon.h (vmvn_s8): Reimplement using C operator.
14576         Remove inline assembly.
14577         (vmvn_s16): Likewise.
14578         (vmvn_s32): Likewise.
14579         (vmvn_u8): Likewise.
14580         (vmvn_u16): Likewise.
14581         (vmvn_u32): Likewise.
14582         (vmvnq_s8): Likewise.
14583         (vmvnq_s16): Likewise.
14584         (vmvnq_s32): Likewise.
14585         (vmvnq_u8): Likewise.
14586         (vmvnq_u16): Likewise.
14587         (vmvnq_u32): Likewise.
14588         (vmvn_p8): Likewise.
14589         (vmvnq_p16): Likewise.
14591 2016-05-17  Jiong Wang  <jiong.wang@arm.com>
14593         * config/aarch64/aarch64-simd.md (vmul_n_f32): Remove inline assembly.
14594         Use builtin.
14595         (vmul_n_s16): Likewise.
14596         (vmul_n_s32): Likewise.
14597         (vmul_n_u16): Likewise.
14598         (vmul_n_u32): Likewise.
14599         (vmulq_n_f32): Likewise.
14600         (vmulq_n_f64): Likewise.
14601         (vmulq_n_s16): Likewise.
14602         (vmulq_n_s32): Likewise.
14603         (vmulq_n_u16): Likewise.
14604         (vmulq_n_u32): Likewise.
14606 2016-05-17  Jiong Wang  <jiong.wang@arm.com>
14608         * config/aarch64/aarch64-simd.md (*aarch64_mul3_elt_to_128df): Extend
14609         to all supported modes.  Rename to "*aarch64_mul3_elt_from_dup".
14611 2016-05-17  Jiong Wang  <jiong.wang@arm.com>
14613         * config/aarch64/aarch64-simd.md (*aarch64_fma4_elt_to_128df): Rename
14614         to *aarch64_fma4_elt_from_dup<mode>.
14615         (*aarch64_fnma4_elt_to_128df): Rename to
14616         *aarch64_fnma4_elt_from_dup<mode>.
14617         * config/aarch64/arm_neon.h (vfma_n_f64): New.
14618         (vfms_n_f32): Likewise.
14619         (vfms_n_f64): Likewise.
14620         (vfmsq_n_f32): Likewise.
14621         (vfmsq_n_f64): Likewise.
14623 2016-05-17  Gerald Pfeifer  <gerald@pfeifer.com>
14625         * wide-int.h: Change fixed_wide_int_storage from class to struct.
14627 2016-05-17  Richard Biener  <rguenther@suse.de>
14629         PR tree-optimization/71132
14630         * tree-loop-distribution.c (create_rdg_cd_edges): Pass in loop.
14631         Only add control dependences for blocks in the loop.
14632         (build_rdg): Adjust.
14633         (generate_code_for_partition): Return whether loop should
14634         be destroyed and delay that.
14635         (distribute_loop): Likewise.
14636         (pass_loop_distribution::execute): Record loops to be destroyed
14637         and perform delayed destroying of loops.
14639 2016-05-17  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
14641         PR target/70809
14642         * config/aarch64/aarch64-simd.md (aarch64_vmls<mode>): Delete.
14644 2016-05-17  James Greenhalgh  <james.greenhalgh@arm.com>
14646         * config/aarch64/aarch64-elf.h (ASM_OUTPUT_DEF): Delete.
14648 2016-05-17  Ilya Enkovich  <ilya.enkovich@intel.com>
14650         PR target/71114
14651         * config/i386/i386.c (dimode_scalar_chain::convert_op): Fix
14652         insertion point for instructions generated by validize_mem.
14654 2016-05-17  James Greenhalgh  <james.greenhalgh@arm.com>
14656         * config/aarch64/aarch64.c (SHIFT_COUNT_TRUNCATED): Wrap definition
14657         in brackets.
14659 2016-05-17  James Greenhalgh  <james.greenhalgh@arm.com>
14661         * config/aarch64/aarch64.c
14662         (aarch64_output_simd_mov_immediate): Make "buf_size" a variable
14663         rather than a macro.
14665 2016-05-16  Wilco Dijkstra  <wdijkstr@arm.com>
14667         * doc/invoke.texi (AArch64 Options): Various updates.
14669 2016-05-16  Jan Hubicka  <hubicka@ucw.cz>
14671         * ipa-inline-analysis.c (compute_inline_parameters): Disable inlinig
14672         into instrumentation thunks.
14673         * cif-code.def (CIF_CHKP): New.
14675 2016-05-16  Uros Bizjak  <ubizjak@gmail.com>
14677         * config/i386/xopintrin.h: Correct "unsinged" typo in the comments.
14679 2016-05-16  Martin Jambor  <mjambor@suse.cz>
14681         * hsa-gen.c (fillup_for_decl): Increase alignment to natural one.
14682         (get_symbol_for_decl): Sorry if a global symbol in under-aligned.
14684 2016-05-16  Marek Polacek  <polacek@redhat.com>
14686         * gimple.c (maybe_remove_unused_call_args): Fix typos in the
14687         commentary.
14689 2016-05-16  Martin Jambor  <mjambor@suse.cz>
14691         PR hsa/70857
14692         * omp-low.c (grid_expand_target_grid_body): Copy RESULT_DECL of
14693         the outlined kernel function.
14695 2016-05-16  Robert Suchanek  <robert.suchanek@imgtec.com>
14697         * config/mips/mips.h (ISA_HAS_LSA): Enable for -mmsa.
14698         (ISA_HAS_DLSA): Ditto.
14700 2016-05-16  Matthew Fortune  <matthew.fortune@imgtec.com>
14702         * config/mips/m5100.md (m51_int_load): Update the latency to 2.
14704 2016-05-16  Nathan Sidwell  <nathan@acm.org>
14706         * config/nvptx/nvptx.c (nvptx_mangle_decl_assembler_name): Revert.
14707         (nvptx_name_replacement): Restore.  Add comment.
14708         (write_fn_proto, write_fn_proto_from_insn,
14709         nvptx_output_call_insn): Restore
14710         (TARGET_MANGLE_DECL_ASSEMBLER_NAME): Delete.
14712 2016-05-16  Wilco Dijkstra  <wdijkstr@arm.com>
14714         * config/aarch64/aarch64.md
14715         (add<mode>3_compareC_cconly_imm): Remove use of %w.
14716         (add<mode>3_compareC_imm): Likewise.
14717         (<optab>si3_uxtw): Split into register and immediate variants.
14718         (andsi3_compare0_uxtw): Likewise.
14719         (and<mode>3_compare0): Likewise.
14720         (and<mode>3nr_compare0): Likewise.
14721         (stack_protect_test_<mode>): Don't use %x for memory operands.
14723 2016-05-16  Matthew Fortune  <matthew.fortune@imgtec.com>
14725         * config/mips/mips-cpus.def (p5600): Add multi-line brackets.
14727 2016-05-16  Wilco Dijkstra  <wdijkstr@arm.com>
14729         * config/aarch64/aarch64.md (aarch64_ashl_sisd_or_int_<mode>3):
14730         Split integer shifts into shift_reg and bfm.
14731         (aarch64_lshr_sisd_or_int_<mode>3): Likewise.
14732         (aarch64_ashr_sisd_or_int_<mode>3): Likewise.
14733         (ror<mode>3_insn): Likewise.
14734         (<optab>si3_insn_uxtw): Likewise.
14735         (<optab><mode>3_insn): Change to rotate_imm.
14736         (extr<mode>5_insn_alt): Likewise.
14737         (extrsi5_insn_uxtw): Likewise.
14738         (extrsi5_insn_uxtw_alt): Likewise.
14740 2016-05-16  Matthew Wahab  <matthew.wahab@arm.com>
14742         * doc/tm.texi: Regenerate.
14743         * doc/tm.texi.in (TARGET_INVALID_PARAMETER_TYPE): Remove.
14744         (TARGET_INVALID_RETURN_TYPE): Remove.
14745         * system.h: Poison TARGET_INVALID_PARAMETER_TYPE and
14746         TARGET_INVALID_RETURN_TYPE.
14747         * target.def (invalid_parameter_type): Remove.
14748         (invalid_return_type): Remove.
14750 2016-05-16  Jan Hubicka  <hubicka@ucw.cz>
14752         * ipa-inline-analysis.c (compute_inline_parameters): Be more reailistic
14753         on estimating thunk bodies; do not set inline_failed to CIF_THUNK for
14754         calls from thunk.
14755         * ipa-inline-transform.c (inline_call): When inlining into thunk produce
14756         gimple body.
14757         (preserve_function_body_p): No need to preserve function body
14758         * cif-codes.def (CIF_THUNK): Remove.
14759         * cgraphclones.c (duplicate_thunk_for_node): Thunks calls are inlinable.
14761 2016-05-16  Jan Hubicka  <hubicka@ucw.cz>
14763         * tree-inline.c (expand_call_inline): recurse after inlining thunk.
14765 2016-05-16  Jan Hubicka  <hubicka@ucw.cz>
14767         * tree.c (free_lang_data_in_decl): Also set target/optimization flags
14768         for thunks.
14770 2016-05-16  Jan Hubicka  <hubicka@ucw.cz>
14772         * ipa-inline.c (report_inline_failed_reason): Look into thunks, too
14773         (inline_small_functions): Do not look for function symbol when
14774         resetting caches.
14776 2016-05-16  Jan Hubicka  <hubicka@ucw.cz>
14778         * lto-cgraph.c (compute_ltrans_boundary, output_symtab): Fix handling
14779         of inline thunks
14781 2016-05-16  Matthew Wahab  <matthew.wahab@arm.com>
14782             Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>
14783             Jiong Wang  <jiong.wang@arm.com>
14785         * config/arm/arm-c.c (arm_cpu_builtins): Use def_or_undef_macro
14786         for __ARM_FP16_FORMAT_IEEE and __ARM_FP16_FORMAT_ALTERNATIVE.
14787         Define __ARM_FP16_ARGS when appropriate.
14788         * config/arm/arm.c (arm_invalid_parameter_type): Remove
14789         declaration.
14790         (arm_invalid_return_type): Likewise.
14791         (TARGET_INVALID_PARAMETER_TYPE): Remove.
14792         (TARGET_INVALID_RETURN_TYPE): Remove.
14793         (aapcs_vfp_sub_candidate): Allow HFmode.
14794         (aapcs_vfp_allocate): Add comment.  Support HFmode.
14795         (aapcs_vfp_allocate_return_reg): Likewise.
14796         (struct aapcs_cp_arg_layout): Slightly reword comments for
14797         is_return_candidate and allocate_return_reg.
14798         (output_mov_vfp): Update assert.
14799         (arm_hard_regno_mode_ok): Remove comment, update HF-mode
14800         condition.
14801         (arm_invalid_parameter_type): Remove.
14802         (amr_invalid_return_type): Remove.
14803         * config/arm/arm.h (TARGET_NEON_FP16): Fix definition.
14804         * config/arm/arm.md (*arm32_movhf): Disable for TARGET_VFP.
14805         * config/arm/vfp.md (*movhf_vfp): Enable for TARGET_VFP.
14807 2016-05-16  Matthew Wahab  <matthew.wahab@arm.com>
14809         * config/aarch64/aarch64.h (LEGITIMIZE_RELOAD_ADDRESS): Remove.
14810         * config/aarch64/arch64-protos.h
14811         (aarch64_legitimize_reload_address): Remove.
14812         * config/aarch64/aarch64.c (aarch64_legitimize_reload_address):
14813         Remove.
14815 2016-05-16  Eric Botcazou  <ebotcazou@adacore.com>
14817         * configure.ac: Add ACX_NONCANONICAL_HOST.
14818         * configure: Regenerate.
14819         * Makefile.in: Set host_noncanonical.
14821 2016-05-14  Uros Bizjak  <ubizjak@gmail.com>
14823         PR target/71097
14824         * config/i386/i386.md (*movtf_internal): Before register allocation,
14825         do not allow FP constants for CM_MEDIUM memory model, allow only
14826         standard FP constants for CM_LARGE and CM_LARGE_PIC models.
14827         (*movxf_internal): Ditto.
14828         (*movdf_internal): Ditto.
14829         (*movsf_internal): Ditto.
14831 2016-05-13  Segher Boessenkool  <segher@kernel.crashing.org>
14833         PR rtl-optimization/67483
14834         * combine.c (make_compound_operation): Don't call extract_left_shift
14835         with negative shift amounts.
14837 2016-05-13  Jakub Jelinek  <jakub@redhat.com>
14839         PR bootstrap/71071
14840         * fold-const.c (fold_checksum_tree): Allow modification
14841         of TYPE_ALIAS_SET during folding.
14843         * config/i386/i386.c (ix86_compute_frame_layout, ix86_expand_prologue,
14844         ix86_expand_split_stack_prologue): Use HOST_WIDE_INT_C macro.
14845         (ix86_split_to_parts): Likewise.  Fix up formatting.
14847 2016-05-13  H.J. Lu  <hongjiu.lu@intel.com>
14849         * tree-ssa-loop-ivopts.c (create_new_ivs): Cast to
14850         unsigned HOST_WIDE_INT with HOST_WIDE_INT_PRINT_UNSIGNED in
14851         printf format.
14853 2016-05-13  Nathan Sidwell  <nathan@acm.org>
14855         * config/nvptx/nvptx.c (nvptx_mangle_decl_assembler_name): New.
14856         (nvptx_name_replacement): Delete.
14857         (write_fn_proto, write_fn_proto_from_insn,
14858         nvptx_output_call_insn): Remove nvptx_name_replacement call.
14859         (TARGET_MANGLE_DECL_ASSEMBLER_NAME): Override.
14860         * langhooks.c (add_builtin_funcction_common): Call
14861         targetm.mangle_decl_assembler_name.
14863         * config/nvptx/nvptx.c (write_fn_proto): Handle
14864         BUILT_IN_ATOMIC_COMPARE_EXCHANGE_n oddity.
14866 2016-05-13  Martin Liska  <mliska@suse.cz>
14868         * tree-ssa-loop-ivopts.c (create_new_ivs): Use HOST_WIDE_INT_PRINT_DEC
14869         and PRIu64 in printf format.
14871 2016-05-13  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
14873         * tree-ssa-loop-ivanon.c (try_unroll_loop_completely): Typo fix in
14874         comment.
14876 2016-05-13  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
14878         * tree-ssa-loop-ivcanon.c (try_unroll_loop_completely):
14879         Change --param max-completely-peeled-times to
14880         --param max-completely-peel-times in dump file printing.
14882 2016-05-13  Richard Biener  <rguenther@suse.de>
14884         PR tree-optimization/42587
14885         * tree-ssa-math-opts.c (perform_symbolic_merge): Handle BIT_FIELD_REF.
14886         (find_bswap_or_nop_1): Likewise.
14887         (bswap_replace): Likewise.
14889 2016-05-13  Martin Liska  <mliska@suse.cz>
14891         * tree-vect-patterns.c (vect_recog_mask_conversion_pattern):
14892         Initialize a variable with default value.
14894 2016-05-13  Martin Liska  <mliska@suse.cz>
14896         * doc/invoke.texi: Enhance explanation of error recovery
14897         of sanitizers.
14899 2016-05-13  Martin Liska  <mliska@suse.cz>
14901         * tree-ssa-loop-ivopts.c (avg_loop_niter): Fix coding style.
14902         (struct cost_pair): Change inv_expr_id (int) to inv_expr
14903         (iv_inv_expr_ent *).
14904         (struct iv_inv_expr_ent): Comment struct fields.
14905         (sort_iv_inv_expr_ent): New function.
14906         (struct ivopts_data): Rename inv_expr_id to max_inv_expr_id.
14907         (struct iv_ca): Replace used_inv_expr and num_used_inv_expr with
14908         a hash_map between iv_inv_expr_ent and number of usages.
14909         (niter_for_exit): Fix coding style.
14910         (tree_ssa_iv_optimize_init): Use renamed variable.
14911         (determine_base_object): Fix coding style.
14912         (alloc_iv): Likewise.
14913         (find_interesting_uses_outside): Likewise.
14914         (add_candidate_1): Likewise.
14915         (add_standard_iv_candidates): Likewise.
14916         (set_group_iv_cost): Replace inv_expr_id with inv_expr.
14917         (prepare_decl_rtl): Fix coding style.
14918         (get_address_cost): Likewise.
14919         (get_shiftadd_cost): Likewise.
14920         (force_expr_to_var_cost): Likewise.
14921         (compare_aff_trees): Likewise.
14922         (get_expr_id): Restructure the function.
14923         (get_loop_invariant_expr_id): Renamed to
14924         get_loop_invariant_expr.
14925         (get_computation_cost_at): Replace usage of inv_expr_id with
14926         inv_expr.
14927         (get_computation_cost): Likewise.
14928         (determine_group_iv_cost_generic): Likewise.
14929         (determine_group_iv_cost_address): Likewise.
14930         (iv_period): Fix coding style.
14931         (iv_elimination_compare_lt): Likewise.
14932         (may_eliminate_iv): Likewise.
14933         (determine_group_iv_cost_cond):  Replace usage of inv_expr_id with
14934         inv_expr.
14935         (determine_group_iv_costs): Dump invariant expressions.
14936         (iv_ca_recount_cost): Use the newly added hash_map.
14937         (iv_ca_set_remove_invariants): Fix coding style.
14938         (iv_ca_set_add_invariants): Fix coding style.
14939         (iv_ca_set_no_cp): Utilize the newly added hash_map for used
14940         invariants.
14941         (iv_ca_set_cp): Likewise.
14942         (iv_ca_new): Initialize the newly added hash_map and remove
14943         initialization of fields.
14944         (iv_ca_free): Delete the hash_map.
14945         (iv_ca_dump): Dump invariant expressions.
14946         (iv_ca_extend): Fix coding style.
14947         (try_add_cand_for): Likewise.
14948         (create_new_ivs): Dump information about # of avg iterations and
14949         # of used invariant expressions.
14950         (rewrite_use_compare): Fix coding style.
14951         (free_loop_data): Set default value for max_inv_expr_id.
14953 2016-05-13  Ilya Enkovich  <ilya.enkovich@intel.com>
14955         * cse.c (rest_of_handle_cse): Use cleanup_cfg
14956         returned value cse_cfg_altered computation.
14957         (rest_of_handle_cse2): Likewise.
14958         (rest_of_handle_cse_after_global_opts): Likewise.
14960 2016-05-13  Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>
14962         PR target/53440
14963         * config/arm/arm.c (arm32_output_mi_thunk): New.
14964         (arm_output_mi_thunk): Rename to arm_thumb1_mi_thunk. Rework
14965         to split Thumb1 vs TARGET_32BIT functionality.
14966         (arm_thumb1_mi_thunk): New.
14968 2016-05-13  Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>
14970         * config/aarch64/aarch64.c (TARGET_OMIT_STRUCT_RETURN_REG): Set
14971         to true.
14973 2016-05-13  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
14975         PR target/71080
14976         * config/i386/i386.c (ix86_in_large_data_p): Guard against NULL exp.
14978 2016-05-13  Eric Botcazou  <ebotcazou@adacore.com>
14980         * builtins.c (expand_builtin_memcmp): Do not emit the call here.
14981         (expand_builtin_trap): Emit a regular call.
14982         (set_builtin_user_assembler_name): Remove obsolete cases.
14983         * dse.c (scan_insn): Adjust.
14984         * except.c: Include calls.h.
14985         (sjlj_emit_function_enter): If DONT_USE_BUILTIN_SETJMP is defined,
14986         emit a regular call to setjmp.
14987         * expr.c (emit_block_move_hints): Call emit_block_copy_via_libcall.
14988         (block_move_libcall_safe_for_call_parm): Use memcpy builtin.
14989         (emit_block_move_via_libcall): Delete.
14990         (block_move_fn): Delete.
14991         (init_block_move_fn): Likewise.
14992         (emit_block_move_libcall_fn): Likewise.
14993         (emit_block_op_via_libcall): New function.
14994         (set_storage_via_libcall): Tidy up and use memset builtin.
14995         (block_clear_fn): Delete.
14996         (init_block_clear_fn): Likewise.
14997         (clear_storage_libcall_fn): Likewise.
14998         (expand_assignment): Call emit_block_move_via_libcall.
14999         Do not include gt-expr.h.
15000         * expr.h (emit_block_op_via_libcall): Declare.
15001         (emit_block_copy_via_libcall): New inline function.
15002         (emit_block_move_via_libcall): Likewise.
15003         (emit_block_comp_via_libcall): Likewise.
15004         (block_clear_fn): Delete.
15005         (init_block_move_fn): Likewise.
15006         (init_block_clear_fn): Likewise.
15007         (emit_block_move_via_libcall): Likewise.
15008         (set_storage_via_libcall): Add default parameter value.
15009         * libfuncs.h (enum libfunc_index): Remove obsolete values.
15010         (abort_libfunc): Delete.
15011         (memcpy_libfunc): Likewise.
15012         (memmove_libfunc): Likewise.
15013         (memcmp_libfunc): Likewise.
15014         (memset_libfunc): Likewise.
15015         (setbits_libfunc): Likewise.
15016         (setjmp_libfunc): Likewise.
15017         (longjmp_libfunc): Likewise.
15018         (profile_function_entry_libfunc): Likewise.
15019         (profile_function_exit_libfunc): Likewise.
15020         (gcov_flush_libfunc): Likewise.
15021         * optabs-libfuncs.c (build_libfunc_function): Set DECL_ARTIFICIAL
15022         and DECL_VISIBILITY on the declaration.
15023         (init_optabs): Do not initialize obsolete libfuncs.
15024         * optabs.c (prepare_cmp_insn): Call emit_block_comp_via_libcall.
15025         * tree-core.h (ECF_RET1): Define.
15026         (ECF_TM_PURE): Adjust.
15027         (ECF_TM_BUILTIN): Likewise.
15028         * tree.c (set_call_expr_flags): Deal with ECF_RET1.
15029         (build_common_builtin_nodes): Initialize abort builtin.
15030         Add ECF_RET1 on memcpy, memmove and memset builtins.
15031         Pass final flags for alloca and alloca_with_align builtins.
15032         * config/alpha/alpha.c (alpha_init_libfuncs): Do not initialize
15033         obsolete builtins.
15034         * config/ia64/ia64.c (ia64_vms_init_libfuncs): Likewise.
15035         * config/i386/i386.c (ix86_expand_set_or_movmem): Adjust call to
15036         set_storage_via_libcall and call emit_block_copy_via_libcall.
15038 2016-05-12  Uros Bizjak  <ubizjak@gmail.com>
15040         * config/i386/i386.md (*call_got_x32): Change operand 0 to
15041         DImode before it is passed to ix86_output_call_operand.
15042         (*call_value_got_x32): Ditto for operand 1.
15044 2016-05-12  Jiong Wang  <jiong.wang@arm.com>
15046         PR rtl-optimization/70904
15047         * lra-constraint.c (process_addr_reg): Relax the restriction on subreg
15048         reload for wide mode.
15050 2016-05-12  Marek Polacek  <polacek@redhat.com>
15052         PR c/70756
15053         * langhooks-def.h (lhd_incomplete_type_error): Adjust declaration.
15054         * langhooks.c (lhd_incomplete_type_error): Add location parameter.
15055         * langhooks.h (incomplete_type_error): Likewise.
15056         * tree.c (size_in_bytes_loc): Renamed from size_in_bytes.  Add location
15057         parameter, pass it down to incomplete_type_error.
15058         * tree.h (size_in_bytes): New inline overload.
15059         (size_in_bytes_loc): Renamed from size_in_bytes.
15061 2016-05-12  Richard Biener  <rguenther@suse.de>
15063         PR tree-optimization/71059
15064         * tree-ssa-pre.c (phi_translate_1): Fully fold translated
15065         nary before looking up or entering the expression into the VN
15066         hashes.
15067         * tree-ssa-sccvn.c (vn_nary_build_or_lookup): Fix comment typo.
15068         Make sure to re-use NARYs without result as inserted by
15069         phi-translation.
15071 2016-05-12  Richard Biener  <rguenther@suse.de>
15073         PR tree-optimization/71062
15074         * tree-ssa-alias.h (struct pt_solution): Add vars_contains_restrict
15075         field.
15076         * tree-ssa-structalias.c (set_uids_in_ptset): Set
15077         vars_contains_restrict if the var is a restrict tag.
15078         * tree-ssa-alias.c (ptrs_compare_unequal): If vars_contains_restrict
15079         do not disambiguate pointers against it.
15080         (dump_points_to_solution): Re-structure and adjust for new
15081         vars_contains_restrict flag.
15082         * gimple-pretty-print.c (pp_points_to_solution): Likewise.
15084 2016-05-12  Martin Liska  <mliska@suse.cz>
15086         * doc/invoke.texi: Explain connection between
15087         -fsanitize-recover=address and ASAN_OPTIONS="halt_on_error=1".
15089 2016-05-12  Ilya Enkovich  <ilya.enkovich@intel.com>
15091         PR tree-optimization/71006
15092         * tree-vect-loop.c (vect_determine_vectorization_factor): Don't
15093         consider COND_EXPR as a mask producer.
15095 2016-05-12  Marek Polacek  <polacek@redhat.com>
15097         PR driver/71063
15098         * opts.c (common_handle_option): Detect missing argument for --help^.
15100 2016-05-12  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
15102         PR target/70830
15103         * config/arm/arm.c (arm_output_multireg_pop): Avoid POP instruction
15104         when popping the PC and within an interrupt handler routine.
15105         Add missing tab to output of "ldmfd".
15106         (output_return_instruction): Output LDMFD with SP update rather
15107         than POP when returning from interrupt handler.
15109 2016-05-12  Jakub Jelinek  <jakub@redhat.com>
15111         * config/i386/i386.md (isa): Add x64_avx512dq, enable if
15112         TARGET_64BIT && TARGET_AVX512DQ.
15113         * config/i386/sse.md (*vec_extract<mode>): Add avx512bw alternatives.
15114         (*vec_extract<PEXTR_MODE12:mode>_zext): Add avx512bw alternative.
15115         (*vec_extract<ssevecmodelower>_0, *vec_extractv4si_0_zext,
15116         *vec_extractv2di_0_sse): Use v constraint instead of x constraint.
15117         (*vec_extractv4si): Add avx512dq and avx512bw alternatives.
15118         (*vec_extractv4si_zext): Add avx512dq alternative.
15119         (*vec_extractv2di_1): Add x64_avx512dq and avx512bw alternatives,
15120         use v instead of x constraint in other alternatives where possible.
15122         * config/i386/sse.md (sse2_loadld): Use v instead of x
15123         constraint in alternatives 0,1,4.
15125         * config/i386/sse.md (pinsr_evex_isa): New mode attr.
15126         (<sse2p4_1>_pinsr<ssemodesuffix>): Add 2 alternatives with
15127         v constraints instead of x and <pinsr_evex_isa> isa attribute.
15129         PR target/71019
15130         * config/i386/sse.md (<sse2_avx2>_packssdw<mask_name>,
15131         <sse4_1_avx2>_packusdw<mask_name>): Make sure EVEX encoded insn
15132         is not emitted unless TARGET_AVX512BW.
15133         (<sse2_avx2>_packuswb<mask_name>, <sse2_avx2>_packsswb<mask_name>):
15134         Likewise.  For TARGET_AVX512BW, use "=v" constraint instead of "=x"
15135         for the result operand.
15137         * config/i386/sse.md (*vec_setv4sf_sse4_1, sse4_1_insertps): Use v
15138         constraint instead of x in avx alternatives.  Use maybe_evex instead
15139         of vex prefix.
15141         * config/i386/constraints.md (Yv): New constraint.
15142         * config/i386/i386.h (VALID_AVX512VL_128_REG_MODE): Allow
15143         TFmode and V1TImode in xmm16+ registers for TARGET_AVX512VL.
15144         * config/i386/i386.md (avx512fvecmode): New mode attr.
15145         (*pushtf): Use v constraint instead of x.
15146         (*movtf_internal): Likewise.  For TARGET_AVX512VL and
15147         xmm16+ registers, use vmovdqu64 or vmovdqa64 instructions.
15148         (*absneg<mode>2): Use Yv constraint instead of x constraint.
15149         (*absnegtf2_sse): Likewise.
15150         (copysign<mode>3_const, copysign<mode>3_var): Likewise.
15151         * config/i386/sse.md (*andnot<mode>3): Add avx512vl and
15152         avx512f alternatives.
15153         (*andnottf3, *<code><mode>3, *<code>tf3): Likewise.
15155 2016-05-12  Richard Biener  <rguenther@suse.de>
15157         PR tree-optimization/71060
15158         * tree-data-ref.c (initialize_data_dependence_relation): Do not
15159         require exact match of DR_BASE_OBJECT but only matching address and
15160         type.
15162 2016-05-12  Richard Biener  <rguenther@suse.de>
15164         PR tree-optimization/70986
15165         * cfganal.c: Include cfgloop.h.
15166         (dfs_find_deadend): Prefer to take edges exiting loops.
15168 2016-05-11  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
15170         * gcc.target/powerpc/pr70963.c: Require at least power8 at both
15171         compile and run time.
15173 2016-05-11  Mikhail Maltsev  <maltsevm@gmail.com>
15175         PR c/43651
15176         * doc/invoke.texi (Wduplicate-decl-specifier): Document new option.
15178 2016-05-11  Uros Bizjak  <ubizjak@gmail.com>
15180         * config/i386/i386.c (legitimize_pic_address): Use
15181         copy_to_suggested_reg instead of gen_movsi.
15183 2016-05-11  Michael Meissner  <meissner@linux.vnet.ibm.com>
15185         * config/rs6000/predicates.md (quad_memory_operand): Move most of
15186         the code into quad_address_p and call it to share code with
15187         vsx_quad_dform_memory_operand.
15188         (vsx_quad_dform_memory_operand): New predicate for ISA 3.0 vector
15189         d-form support.
15190         * config/rs6000/rs6000.opt (-mlra): Switch to being an option mask
15191         bit instead of being a separate word.  Split -mpower9-dform into
15192         two switches, -mpower9-dform-scalar and -mpower9-dform-vector.
15193         * config/rs6000/rs6000.c (RELOAD_REG_QUAD_OFFSET): New addr_mask
15194         for the register class supporting 128-bit quad word memory offsets.
15195         (mode_supports_vsx_dform_quad): Helper function to return if the
15196         register class uses quad word memory offsets.
15197         (rs6000_debug_addr_mask): Add support for quad word memory offsets.
15198         (rs6000_debug_reg_global): Always print if we are using LRA or not.
15199         (rs6000_setup_reg_addr_masks): If ISA 3.0 vector d-form
15200         instructions are enabled, set up the appropriate addr_masks for
15201         128-bit types.
15202         (rs6000_init_hard_regno_mode_ok): wb constraint is now based on
15203         -mpower9-dform-scalar, instead of -mpower9-dform.
15204         (rs6000_option_override_internal): Split -mpower9-dform into two
15205         switches, -mpower9-dform-scalar and -mpower9-dform-vector.  The
15206         -mpower9-dform switch sets or clears both.  If we are not using
15207         the LRA register allocator, do not enable -mpower9-dform-vector by
15208         default.  If we are using LRA, enable -mpower9-dform-vector and
15209         -mvsx-timode if it is appropriate.  Issue a warning if either
15210         -mpower9-dform-vector or -mvsx-timode are explicitly used without
15211         enabling LRA.
15212         (quad_address_offset_p): New helper function to return if the
15213         offset is legal for quad word memory instructions.
15214         (quad_address_p): New function to determin if GPR or vector
15215         register quad word memory addresses are legal.
15216         (mem_operand_gpr): Validate quad word address offsets.
15217         (reg_offset_addressing_ok_p): Add support for ISA 3.0 vector
15218         d-form (register + offset) instructions.
15219         (offsettable_ok_by_alignment): Likewise.
15220         (rs6000_legitimate_offset_address_p): Likewise.
15221         (legitimate_lo_sum_address_p): Likewise.
15222         (rs6000_legitimize_address): Likewise.
15223         (rs6000_legitimize_reload_address): Add more debug statements for
15224         -mdebug=addr.
15225         (rs6000_legitimate_address_p): Add support for ISA 3.0 vector
15226         d-form instructions.
15227         (rs6000_secondary_reload_memory): Add support for ISA 3.0 vector
15228         d-form instructions.  Distinguish different cases in debug
15229         output. (rs6000_secondary_reload_inner): Add support for ISA 3.0 vector
15230         d-form instructions.
15231         (rs6000_preferred_reload_class): Likewise.
15232         (rs6000_output_move_128bit): Add support for ISA 3.0 d-form
15233         instructions.  If ISA 3.0 is available, generate lxvx/stxvx instead
15234         of the ISA 2.06 indexed memory instructions.
15235         (rs6000_emit_prologue): If we have ISA 3.0 d-form instructions,
15236         use them to save/restore the saved vector registers instead of
15237         using Altivec instructions.
15238         (rs6000_emit_epilogue): Likewise.
15239         (rs6000_lra_p): Use TARGET_LRA instead of the old option word.
15240         (rs6000_opt_masks): Split -mpower9-dform into
15241         -mpower9-dform-scalar and -mpower9-dform-vector.
15242         (rs6000_print_options_internal): Print -mno-<switch> if <switch>
15243         was not selected.
15244         * config/rs6000/vsx.md (p9_vecload_<mode>): Delete hack to emit
15245         ISA 3.0 vector indexed memory instructions, and fold the code into
15246         the normal mov<mode> patterns.
15247         (p9_vecstore_<mode>): Likewise.
15248         (vsx_mov<mode>): Add support for ISA 3.0 vector d-form
15249         instructions.
15250         (vsx_movti_64bit): Likewise.
15251         (vsx_movti_32bit): Likewise.
15252         * config/rs6000/constraints.md (wO constraint): New constraint for
15253         ISA 3.0 vector d-form support.
15254         * config/rs6000/rs6000-cpus.def (ISA_3_0_MASKS_SERVER): Use
15255         -mpower9-dform-scalar instead of -mpower9-dform.  Add note not to
15256         include -mpower9-dform-vector until we switch over to LRA.
15257         (POWERPC_MASKS): Add -mlra. Split -mpower9-dform into two.
15258         switches, -mpower9-dform-scalar and -mpower9-dform-vector.
15259         * config/rs6000/rs6000-protos.h (quad_address_p): Add declaration.
15260         * doc/invoke.texi (RS/6000 and PowerPC Options): Add documentation
15261         for -mpower9-dform and -mlra.
15262         * doc/md.texi (wO constraint): Document wO constraint.
15264 2016-05-11  Alexander Monakov  <amonakov@ispras.ru>
15266         * genattr.c (main): Change 'rtx' to 'rtx_insn *' in prototypes of
15267         'insn_latency', 'maximal_insn_latency', 'min_insn_conflict_delay'.
15268         * genautomata.c (output_internal_insn_code_evaluation): Simplify.
15269         Move handling of non-insn arguments inline into the sole user:
15270         (output_trans_func): ...here.
15271         (output_min_insn_conflict_delay_func): Change 'rtx' to 'rtx_insn *'
15272         in emitted function prototype.
15273         (output_internal_insn_latency_func): Ditto.  Simplify.
15274         (output_internal_maximal_insn_latency_func): Ditto.  Delete
15275         always-unused argument.
15276         (output_insn_latency_func): Ditto.
15277         (output_maximal_insn_latency_func): Ditto.
15279 2016-05-11  Richard Biener  <rguenther@suse.de>
15281         PR tree-optimization/71055
15282         * tree-ssa-sccvn.c (vn_reference_lookup_3): When native-interpreting
15283         sth with precision not equal to access size verify we don't chop
15284         off bits.
15286 2016-05-11  Richard Biener  <rguenther@suse.de>
15288         PR debug/71057
15289         * dwarf2out.c (retry_incomplete_types): Set early_dwarf.
15290         (dwarf2out_finish): Move retry_incomplete_types call ...
15291         (dwarf2out_early_finish): ... here.
15293 2016-05-11  Richard Biener  <rguenther@suse.de>
15295         PR middle-end/71002
15296         * alias.c (reference_alias_ptr_type): Preserve alias-set zero
15297         if the langhook insists on it.
15298         * fold-const.c (make_bit_field_ref): Add arg for the original
15299         reference and preserve its alias-set.
15300         (decode_field_reference): Take exp by reference and adjust it
15301         to the original memory reference.
15302         (optimize_bit_field_compare): Adjust callers.
15303         (fold_truth_andor_1): Likewise.
15304         * gimplify.c (gimplify_expr): Adjust in-SSA form test.
15306 2016-05-11  Ilya Enkovich  <ilya.enkovich@intel.com>
15308         PR middle-end/70807
15309         * cfgrtl.h (delete_insn_and_edges): Now return bool.
15310         * cfgrtl.c (delete_insn_and_edges): Likewise.
15311         * config/i386/i386.c (convert_scalars_to_vector): Remove
15312         redundant code.
15313         * cse.c (cse_insn): Compute cse_cfg_altered.
15314         (delete_trivially_dead_insns): Likewise.
15315         (cse_cc_succs): Likewise.
15316         (rest_of_handle_cse): Free dominance info if required.
15317         (rest_of_handle_cse2): Likewise.
15318         (rest_of_handle_cse_after_global_opts): Likewise.
15320 2016-05-11  Alan Modra  <amodra@gmail.com>
15322         * config/rs6000/rs6000.c (is_complex_IBM_long_double,
15323         abi_v4_pass_in_fpr): New functions.
15324         (rs6000_function_arg_boundary): Exclude complex IBM long double
15325         from 64-bit alignment when ABI_V4.
15326         (rs6000_function_arg, rs6000_function_arg_advance_1,
15327         rs6000_gimplify_va_arg): Use abi_v4_pass_in_fpr.
15329 2016-05-10  Segher Boessenkool  <segher@kernel.crashing.org>
15331         PR rtl-optimization/71028
15332         * cfgcleanup.c (try_optimize_cfg): Do not flip a conditional
15333         jump with just a return in the fallthrough block if the branch
15334         block contains just a return as well.
15336 2016-05-10  Marc Glisse  <marc.glisse@inria.fr>
15338         * fold-const.c (fold_binary_loc) [(X ^ Y) & Y]: Remove and merge with...
15339         * match.pd ((X & Y) ^ Y): ... this.
15340         ((X & Y) & Y, (X | Y) | Y, (X ^ Y) ^ Y, (X & Y) & (X & Z), (X | Y)
15341         | (X | Z), (X ^ Y) ^ (X ^ Z)): New transformations.
15343 2016-05-10  David Malcolm  <dmalcolm@redhat.com>
15345         * read-md.c (require_char_ws): New function.
15346         (read_string): Simplify using require_char_ws.
15347         (handle_constants): Likewise.
15348         (handle_enum): Likewise.
15349         (handle_file): Likewise.
15350         * read-md.h (require_char_ws): New declaration.
15351         * read-rtl.c (read_conditions): Simplify using require_char_ws.
15352         (read_mapping): Likewise.
15353         (read_rtx_code): Likewise.
15354         (read_nested_rtx): Likewise.
15356 2016-05-10  James Norris  <jnorris@codesourcery.com>
15358         * config/rs6000/sysv4.h (CRTOFFLOADBEGIN): Define. Add crtoffloadbegin.o
15359         if offloading is enabled and -fopenacc or -fopenmp is specified.
15360         (CRTOFFLOADEND): Likewise.
15361         (STARTFILE_LINUX_SPEC): Add CRTOFFLOADBEGIN.
15362         (ENDFILE_LINUX_SPEC): Add CRTOFFLOADEND.
15364 2016-05-10  Uros Bizjak  <ubizjak@gmail.com>
15366         * config/i386/i386.c (legitimize_pic_address): Merge 64-bit and 32-bit
15367         gotoff_operand code paths.  Use copy_to_suggested_regs and
15368         expand_simple_binop where appropriate.  Cleanup.
15370 2016-05-10  Ilya Enkovich  <ilya.enkovich@intel.com>
15372         PR target/70799
15373         * config/i386/i386.c (dimode_scalar_to_vector_candidate_p): Allow
15374         integer constants.
15375         (dimode_scalar_chain::vector_const_cost): New.
15376         (dimode_scalar_chain::compute_convert_gain): Handle constants.
15377         (dimode_scalar_chain::convert_op): Likewise.
15378         (dimode_scalar_chain::convert_insn): Likewise.
15380 2016-05-10  Pierre-Marie de Rodat  <derodat@adacore.com>
15382         * dwarf2out.c (resolve_args_picking_1): Consider DW_OP_neg as an
15383         unary operation, not a binary one.
15385 2016-05-10  Ilya Enkovich  <ilya.enkovich@intel.com>
15387         PR middle-end/70877
15388         * tree-chkp.c (chkp_add_bounds_to_call_stmt): Handle
15389         calls with type casted fndecl.
15391 2016-05-10  Ilya Enkovich  <ilya.enkovich@intel.com>
15393         PR tree-optimization/70786
15394         * tree-chkp.c (chkp_find_bounds_1): Support WITH_SIZE_EXPR.
15395         * calls.c (initialize_argument_information): Bind bounds
15396         with corresponding args passed by reference.
15398 2016-05-10  Jakub Jelinek  <jakub@redhat.com>
15400         PR target/70927
15401         * config/i386/sse.md (<sse>_andnot<mode>3<mask_name>),
15402         *<code><mode>3<mask_name>): For !TARGET_AVX512DQ and EVEX encoding,
15403         use vp*[dq] instead of v*p[sd] instructions and adjust mode attribute
15404         accordingly.
15406 2016-05-10  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
15408         PR target/70963
15409         * config/rs6000/vsx.md (vsx_xvcvdpsxds_scale): Generate correct
15410         code for a zero scale factor.
15411         (vsx_xvcvdpuxds_scale): Likewise.
15413 2016-05-10  David Malcolm  <dmalcolm@redhat.com>
15415         * diagnostic-show-locus.c (layout::layout): Call show_ruler
15416         if show_ruler_p was set on the context.
15417         (layout::show_ruler): New method.
15418         * diagnostic.h (struct diagnostic_context): Add field
15419         "show_ruler_p".
15421 2016-05-10  Richard Biener  <rguenther@suse.de>
15423         PR tree-optimization/71039
15424         * tree-ssa-phiprop.c: Include tree-ssa-loop.h.
15425         (chk_uses): New function.
15426         (propagate_with_phi): Verify we can safely replicate the lhs of an
15427         aggregate assignment on all incoming edges.
15429 2016-05-10  Oleg Endo  <olegendo@gcc.gnu.org>
15431         * config/rx/rx-protos.h (is_interrupt_func, is_fast_interrupt_func):
15432         Forward declare.
15433         (rx_atomic_sequence): New class.
15434         * config/rx/rx.c (rx_print_operand): Use symbolic names for PSW bits.
15435         (is_interrupt_func, is_fast_interrupt_func): Make non-static and
15436         non-inline.
15437         (rx_atomic_sequence::rx_atomic_sequence,
15438         rx_atomic_sequence::~rx_atomic_sequence): New functions.
15439         * config/rx/rx.md (CTRLREG_PSW, CTRLREG_USP, CTRLREG_FPSW, CTRLREG_CPEN,
15440         CTRLREG_BPSW, CTRLREG_BPC, CTRLREG_ISP, CTRLREG_FINTV,
15441         CTRLREG_INTB): New constants.
15442         (FETCHOP): New code iterator.
15443         (fethcop_name, fetchop_name2): New iterator code attributes.
15444         (QIHI): New mode iterator.
15445         (atomic_exchange<mode>, atomic_exchangesi, xchg_mem<mode>,
15446         atomic_fetch_<fetchop_name>si, atomic_fetch_nandsi,
15447         atomic_<fetchop_name>_fetchsi, atomic_nand_fetchsi): New patterns.
15449 2016-05-10  Martin Liska  <mliska@suse.cz>
15451         * tree-inline.c (remap_dependence_clique): Do not remap
15452         debugging statements.
15454 2016-05-10  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
15456         * config/s390/s390.md ("*vec_cmp<insn_cmp>df_cconly")
15457         ("*fixuns_truncdfdi2_z13")
15458         ("*fixuns_trunc<FP:mode><GPR:mode>2_z196")
15459         ("*fix_truncdfdi2_bfp_z13", "*floatunsdidf2_z13")
15460         ("*extendsfdf2_z13"): Replace TARGET_Z13 with TARGET_VX.
15462 2016-05-10  Richard Biener  <rguenther@suse.de>
15464         PR tree-optimization/70497
15465         PR tree-optimization/28367
15466         * tree-ssa-sccvn.c (vn_nary_build_or_lookup): New function
15467         split out from ...
15468         (visit_reference_op_load): ... here.
15469         (vn_reference_lookup_3): Use it to handle subreg-like accesses
15470         with simplified BIT_FIELD_REFs.
15471         * tree-ssa-pre.c (eliminate_insert): Handle inserting BIT_FIELD_REFs.
15472         * tree-complex.c (extract_component): Handle BIT_FIELD_REFs
15473         correctly.
15475 2016-05-10  Pierre-Marie de Rodat  <derodat@adacore.com>
15477         * dwarf2out.c (add_abstract_origin_attribute): Adjust
15478         documentation comment.  For BLOCK nodes, add a
15479         DW_AT_abstract_origin attribute that points to the DIE generated
15480         for the origin BLOCK.
15481         (gen_lexical_block_die): Call add_abstract_origin_attribute for
15482         blocks from inlined functions.
15484 2016-05-10  Alan Modra  <amodra@gmail.com>
15486         PR target/70947
15487         * config/rs6000/rs6000.c (rs6000_expand_split_stack_prologue): Stop
15488         regrename modifying insns saving lr before __morestack call.
15489         * config/rs6000/rs6000.md (split_stack_return): Similarly for
15490         insns restoring lr after __morestack call.
15492 2016-05-09  Jakub Jelinek  <jakub@redhat.com>
15494         * config/i386/i386.md (set_got, set_got_labelled, lwp_llwpcb,
15495         lwp_lwpval<mode>3, lwp_lwpins<mode>3): Remove constraints from
15496         expanders.
15497         * config/i386/sse.md (vec_interleave_high<mode>,
15498         vec_interleave_low<mode>, <avx512>_vpermi2var<mode>3_maskz,
15499         <avx512>_vpermt2var<mode>3_maskz): Likewise.
15501 2016-05-04  Aaron Sawdey  <acsawdey@linux.vnet.ibm.com>
15503         * config/rs6000/rs6000.c (rs6000_reassociation_width): Add
15504         function for TARGET_SCHED_REASSOCIATION_WIDTH to enable
15505         parallel reassociation for power8 and forward.
15507 2016-05-09  Uros Bizjak  <ubizjak@gmail.com>
15509         * config/i386/i386.md (absneg splitters with general regs): Use
15510         general_reg_operand predicate.
15511         (btsq peephole2): Use x86_64_immediate_operand to check if new
15512         value is suitable for immediate operand.  Generate emitted insn
15513         using RTL expressions.
15514         (btcq peephole2): Ditto.
15515         (btrq peephole2): Ditto.  Generate correct immediate operand
15516         for AND masking.
15518 2016-05-09  Richard Sandiford  <richard.sandiford@arm.com>
15520         * cfgexpand.c (expand_debug_expr): Fix address offset for negative
15521         bitpos.
15523 2016-05-09  Richard Sandiford  <richard.sandiford@arm.com>
15525         * tree-affine.c (wide_int_constant_multiple_p): Add missing
15526         pointer dereference.
15528 2016-05-09  Richard Biener  <rguenther@suse.de>
15530         PR tree-optimization/70985
15531         * match.pd (BIT_FIELD_REF -> (type)): Disable on GIMPLE when
15532         op0 isn't a gimple register.
15534 2016-05-09  Prachi Godbole  <prachi.godbole@imgtec.com>
15536         * config/mips/i6400.md (i6400_fpu_intadd, i6400_fpu_logic)
15537         (i6400_fpu_div, i6400_fpu_cmp, i6400_fpu_float, i6400_fpu_store)
15538         (i6400_fpu_long_pipe, i6400_fpu_logic_l, i6400_fpu_float_l)
15539         (i6400_fpu_mult): New cpu units.
15540         (i6400_msa_add_d, i6400_msa_int_add, i6400_msa_short_logic3)
15541         (i6400_msa_short_logic2, i6400_msa_short_logic, i6400_msa_move)
15542         (i6400_msa_cmp, i6400_msa_short_float2, i6400_msa_div_d)
15543         (i6400_msa_div_w, i6400_msa_div_h, i6400_msa_div_b)
15544         (i6400_msa_copy, i6400_msa_branch, i6400_fpu_msa_store)
15545         (i6400_fpu_msa_load, i6400_fpu_msa_move, i6400_msa_long_logic1)
15546         (i6400_msa_long_logic2, i6400_msa_mult, i6400_msa_long_float2)
15547         (i6400_msa_long_float4, i6400_msa_long_float5)
15548         (i6400_msa_long_float8, i6400_msa_fdiv_df)
15549         (i6400_msa_fdiv_sf): New reservations.
15550         * config/mips/p5600.md (p5600_fpu_intadd, p5600_fpu_cmp)
15551         (p5600_fpu_float, p5600_fpu_logic_a, p5600_fpu_logic_b)
15552         (p5600_fpu_div, p5600_fpu_logic, p5600_fpu_float_a)
15553         (p5600_fpu_float_b, p5600_fpu_float_c, p5600_fpu_float_d)
15554         (p5600_fpu_mult, p5600_fpu_fdiv, p5600_fpu_load): New cpu units.
15555         (msa_short_int_add, msa_short_logic, msa_short_logic_move_v)
15556         (msa_short_cmp, msa_short_float2, msa_short_logic3)
15557         (msa_short_store4, msa_long_load, msa_short_store)
15558         (msa_long_logic, msa_long_float2, msa_long_float4)
15559         (msa_long_float5, msa_long_float8, msa_long_mult)
15560         (msa_long_fdiv, msa_long_div): New reservations.
15562 2016-05-09  Robert Suchanek  <robert.suchanek@imgtec.com>
15563             Sameera Deshpande  <sameera.deshpande@imgtec.com>
15564             Matthew Fortune  <matthew.fortune@imgtec.com>
15565             Graham Stott  <graham.stott@imgtec.com>
15566             Chao-ying Fu  <chao-ying.fu@imgtec.com>
15568         * config.gcc: Add MSA header file for mips*-*-* target.
15569         * config/mips/constraints.md (YI, YC, YZ, Unv5, Uuv5, Usv5, Uuv6)
15570         (Ubv8i, Urv8):  New constraints.
15571         * config/mips/mips-ftypes.def: Add function types for MSA
15572         builtins.
15573         * config/mips/mips-modes.def (V16QI, V8HI, V4SI, V2DI, V4SF)
15574         (V2DF, V32QI, V16HI, V8SI, V4DI, V8SF, V4DF): New modes.
15575         * config/mips/mips-msa.md: New file.
15576         * config/mips/mips-protos.h
15577         (mips_split_128bit_const_insns): New prototype.
15578         (mips_msa_idiv_insns): Likewise.
15579         (mips_split_128bit_move): Likewise.
15580         (mips_split_128bit_move_p): Likewise.
15581         (mips_split_msa_copy_d): Likewise.
15582         (mips_split_msa_insert_d): Likewise.
15583         (mips_split_msa_fill_d): Likewise.
15584         (mips_expand_msa_branch): Likewise.
15585         (mips_const_vector_same_val_p): Likewise.
15586         (mips_const_vector_same_bytes_p): Likewise.
15587         (mips_const_vector_same_int_p): Likewise.
15588         (mips_const_vector_shuffle_set_p): Likewise.
15589         (mips_const_vector_bitimm_set_p): Likewise.
15590         (mips_const_vector_bitimm_clr_p): Likewise.
15591         (mips_msa_vec_parallel_const_half): Likewise.
15592         (mips_msa_output_division): Likewise.
15593         (mips_ldst_scaled_shift): Likewise.
15594         (mips_expand_vec_cond_expr): Likewise.
15595         * config/mips/mips.c (enum mips_builtin_type): Add
15596         MIPS_BUILTIN_MSA_TEST_BRANCH.
15597         (mips_gen_const_int_vector_shuffle): New prototype.
15598         (mips_const_vector_bitimm_set_p): New function.
15599         (mips_const_vector_bitimm_clr_p): Likewise.
15600         (mips_const_vector_same_val_p): Likewise.
15601         (mips_const_vector_same_bytes_p): Likewise.
15602         (mips_const_vector_same_int_p): Likewise.
15603         (mips_const_vector_shuffle_set_p): Likewise.
15604         (mips_symbol_insns): Forbid loading symbols via immediate for
15605         MSA.
15606         (mips_valid_offset_p): Limit offset to 10-bit for MSA loads and
15607         stores.
15608         (mips_valid_lo_sum_p): Forbid loadings symbols via %lo(base) for
15609         MSA.
15610         (mips_lx_address_p): Add support load indexed address for MSA.
15611         (mips_address_insns): Add calculation of instructions needed for
15612         stores and loads for MSA.
15613         (mips_const_insns): Move CONST_DOUBLE below CONST_VECTOR.  Handle
15614         CONST_VECTOR for MSA and let it fall through.
15615         (mips_ldst_scaled_shift): New function.
15616         (mips_subword_at_byte): Likewise.
15617         (mips_msa_idiv_insns): Likewise.
15618         (mips_legitimize_move): Validate MSA moves.
15619         (mips_rtx_costs): Add UNGE, UNGT, UNLE, UNLT cases.  Add
15620         calculation of costs for MSA division.
15621         (mips_split_move_p): Check if MSA moves need splitting.
15622         (mips_split_move): Split MSA moves if necessary.
15623         (mips_split_128bit_move_p): New function.
15624         (mips_split_128bit_move): Likewise.
15625         (mips_split_msa_copy_d): Likewise.
15626         (mips_split_msa_insert_d): Likewise.
15627         (mips_split_msa_fill_d): Likewise.
15628         (mips_output_move): Handle MSA moves.
15629         (mips_expand_msa_branch): New function.
15630         (mips_print_operand): Add 'E', 'B', 'w', 'v' and 'V' modifiers.
15631         Reinstate 'y' modifier.
15632         (mips_file_start): Add MSA .gnu_attribute.
15633         (mips_hard_regno_mode_ok_p): Allow TImode and 128-bit vectors in
15634         FPRs.
15635         (mips_hard_regno_nregs): Always return 1 for MSA supported mode.
15636         (mips_class_max_nregs): Add register size for MSA supported mode.
15637         (mips_cannot_change_mode_class): Allow conversion between MSA
15638         vector modes and TImode.
15639         (mips_mode_ok_for_mov_fmt_p): Allow MSA to use move.v
15640         instruction.
15641         (mips_secondary_reload_class): Force MSA loads/stores via memory.
15642         (mips_preferred_simd_mode): Add preffered modes for MSA.
15643         (mips_vector_mode_supported_p): Add MSA supported modes.
15644         (mips_autovectorize_vector_sizes): New function.
15645         (mips_msa_output_division): Likewise.
15646         (MSA_BUILTIN, MIPS_BUILTIN_DIRECT_NO_TARGET)
15647         (MSA_NO_TARGET_BUILTIN, MSA_BUILTIN_TEST_BRANCH): New macros.
15648         (CODE_FOR_msa_adds_s_b, CODE_FOR_msa_adds_s_h)
15649         (CODE_FOR_msa_adds_s_w, CODE_FOR_msa_adds_s_d)
15650         (CODE_FOR_msa_adds_u_b, CODE_FOR_msa_adds_u_h)
15651         (CODE_FOR_msa_adds_u_w, CODE_FOR_msa_adds_u_du
15652         (CODE_FOR_msa_addv_b, CODE_FOR_msa_addv_h, CODE_FOR_msa_addv_w)
15653         (CODE_FOR_msa_addv_d, CODE_FOR_msa_and_v, CODE_FOR_msa_bmnz_v)
15654         (CODE_FOR_msa_bmnzi_b, CODE_FOR_msa_bmz_v, CODE_FOR_msa_bmzi_b)
15655         (CODE_FOR_msa_bnz_v, CODE_FOR_msa_bz_v, CODE_FOR_msa_bsel_v)
15656         (CODE_FOR_msa_bseli_b, CODE_FOR_msa_ceqi_h, CODE_FOR_msa_ceqi_w)
15657         (CODE_FOR_msa_ceqi_d, CODE_FOR_msa_clti_s_b)
15658         (CODE_FOR_msa_clti_s_h, CODE_FOR_msa_clti_s_w)
15659         (CODE_FOR_msa_clti_s_d, CODE_FOR_msa_clti_u_b)
15660         (CODE_FOR_msa_clti_u_h, CODE_FOR_msa_clti_u_w)
15661         (CODE_FOR_msa_clti_u_d, CODE_FOR_msa_clei_s_b)
15662         (CODE_FOR_msa_clei_s_h, CODE_FOR_msa_clei_s_w)
15663         (CODE_FOR_msa_clei_s_d, CODE_FOR_msa_clei_u_b)
15664         (CODE_FOR_msa_clei_u_h, CODE_FOR_msa_clei_u_w)
15665         (CODE_FOR_msa_clei_u_d, CODE_FOR_msa_div_s_b)
15666         (CODE_FOR_msa_div_s_h, CODE_FOR_msa_div_s_w)
15667         (CODE_FOR_msa_div_s_d, CODE_FOR_msa_div_u_b)
15668         (CODE_FOR_msa_div_u_h, CODE_FOR_msa_div_u_w)
15669         (CODE_FOR_msa_div_u_d, CODE_FOR_msa_fadd_w, CODE_FOR_msa_fadd_d)
15670         (CODE_FOR_msa_fexdo_w, CODE_FOR_msa_ftrunc_s_w)
15671         (CODE_FOR_msa_ftrunc_s_d, CODE_FOR_msa_ftrunc_u_w)
15672         (CODE_FOR_msa_ftrunc_u_d, CODE_FOR_msa_ffint_s_w)
15673         (CODE_FOR_msa_ffint_s_d, CODE_FOR_msa_ffint_u_w)
15674         (CODE_FOR_msa_ffint_u_d, CODE_FOR_msa_fsub_w)
15675         (CODE_FOR_msa_fsub_d, CODE_FOR_msa_fmsub_d, CODE_FOR_msa_fmadd_w)
15676         (CODE_FOR_msa_fmadd_d, CODE_FOR_msa_fmsub_w, CODE_FOR_msa_fmul_w)
15677         (CODE_FOR_msa_fmul_d, CODE_FOR_msa_fdiv_w, CODE_FOR_msa_fdiv_d)
15678         (CODE_FOR_msa_fmax_w, CODE_FOR_msa_fmax_d, CODE_FOR_msa_fmax_a_w)
15679         (CODE_FOR_msa_fmax_a_d, CODE_FOR_msa_fmin_w, CODE_FOR_msa_fmin_d)
15680         (CODE_FOR_msa_fmin_a_w, CODE_FOR_msa_fmin_a_d)
15681         (CODE_FOR_msa_fsqrt_w, CODE_FOR_msa_fsqrt_d)
15682         (CODE_FOR_msa_max_s_b, CODE_FOR_msa_max_s_h)
15683         (CODE_FOR_msa_max_s_w, CODE_FOR_msa_max_s_d)
15684         (CODE_FOR_msa_max_u_b, CODE_FOR_msa_max_u_h)
15685         (CODE_FOR_msa_max_u_w, CODE_FOR_msa_max_u_d)
15686         (CODE_FOR_msa_min_s_b, CODE_FOR_msa_min_s_h)
15687         (CODE_FOR_msa_min_s_w, CODE_FOR_msa_min_s_d)
15688         (CODE_FOR_msa_min_u_b, CODE_FOR_msa_min_u_h)
15689         (CODE_FOR_msa_min_u_w, CODE_FOR_msa_min_u_d)
15690         (CODE_FOR_msa_mod_s_b, CODE_FOR_msa_mod_s_h)
15691         (CODE_FOR_msa_mod_s_w, CODE_FOR_msa_mod_s_d)
15692         (CODE_FOR_msa_mod_u_b, CODE_FOR_msa_mod_u_h)
15693         (CODE_FOR_msa_mod_u_w, CODE_FOR_msa_mod_u_d)
15694         (CODE_FOR_msa_mod_s_b, CODE_FOR_msa_mod_s_h)
15695         (CODE_FOR_msa_mod_s_w, CODE_FOR_msa_mod_s_d)
15696         (CODE_FOR_msa_mod_u_b, CODE_FOR_msa_mod_u_h)
15697         (CODE_FOR_msa_mod_u_w, CODE_FOR_msa_mod_u_d)
15698         (CODE_FOR_msa_mulv_b, CODE_FOR_msa_mulv_h, CODE_FOR_msa_mulv_w)
15699         (CODE_FOR_msa_mulv_d, CODE_FOR_msa_nlzc_b, CODE_FOR_msa_nlzc_h)
15700         (CODE_FOR_msa_nlzc_w, CODE_FOR_msa_nlzc_d, CODE_FOR_msa_nor_v)
15701         (CODE_FOR_msa_or_v, CODE_FOR_msa_ori_b, CODE_FOR_msa_nori_b)
15702         (CODE_FOR_msa_pcnt_b, CODE_FOR_msa_pcnt_h, CODE_FOR_msa_pcnt_w)
15703         (CODE_FOR_msa_pcnt_d, CODE_FOR_msa_xor_v, CODE_FOR_msa_xori_b)
15704         (CODE_FOR_msa_sll_b, CODE_FOR_msa_sll_h, CODE_FOR_msa_sll_w)
15705         (CODE_FOR_msa_sll_d, CODE_FOR_msa_slli_b, CODE_FOR_msa_slli_h)
15706         (CODE_FOR_msa_slli_w, CODE_FOR_msa_slli_d, CODE_FOR_msa_sra_b)
15707         (CODE_FOR_msa_sra_h, CODE_FOR_msa_sra_w, CODE_FOR_msa_sra_d)
15708         (CODE_FOR_msa_srai_b, CODE_FOR_msa_srai_h, CODE_FOR_msa_srai_w)
15709         (CODE_FOR_msa_srai_d, CODE_FOR_msa_srl_b, CODE_FOR_msa_srl_h)
15710         (CODE_FOR_msa_srl_w, CODE_FOR_msa_srl_d, CODE_FOR_msa_srli_b)
15711         (CODE_FOR_msa_srli_h, CODE_FOR_msa_srli_w, CODE_FOR_msa_srli_d)
15712         (CODE_FOR_msa_subv_b, CODE_FOR_msa_subv_h, CODE_FOR_msa_subv_w)
15713         (CODE_FOR_msa_subv_d, CODE_FOR_msa_subvi_b, CODE_FOR_msa_subvi_h)
15714         (CODE_FOR_msa_subvi_w, CODE_FOR_msa_subvi_d, CODE_FOR_msa_move_v)
15715         (CODE_FOR_msa_vshf_b, CODE_FOR_msa_vshf_h, CODE_FOR_msa_vshf_w)
15716         (CODE_FOR_msa_vshf_d, CODE_FOR_msa_ilvod_d, CODE_FOR_msa_ilvev_d)
15717         (CODE_FOR_msa_pckod_d, CODE_FOR_msa_pckdev_d, CODE_FOR_msa_ldi_b)
15718         (CODE_FOR_msa_ldi_hi, CODE_FOR_msa_ldi_w)
15719         (CODE_FOR_msa_ldi_d): New code_aliasing macros.
15720         (mips_builtins): Add MSA sll_b, sll_h, sll_w, sll_d, slli_b,
15721         slli_h, slli_w, slli_d, sra_b, sra_h, sra_w, sra_d, srai_b,
15722         srai_h, srai_w, srai_d, srar_b, srar_h, srar_w, srar_d, srari_b,
15723         srari_h, srari_w, srari_d, srl_b, srl_h, srl_w, srl_d, srli_b,
15724         srli_h, srli_w, srli_d, srlr_b, srlr_h, srlr_w, srlr_d, srlri_b,
15725         srlri_h, srlri_w, srlri_d, bclr_b, bclr_h, bclr_w, bclr_d,
15726         bclri_b, bclri_h, bclri_w, bclri_d, bset_b, bset_h, bset_w,
15727         bset_d, bseti_b, bseti_h, bseti_w, bseti_d, bneg_b, bneg_h,
15728         bneg_w, bneg_d, bnegi_b, bnegi_h, bnegi_w, bnegi_d, binsl_b,
15729         binsl_h, binsl_w, binsl_d, binsli_b, binsli_h, binsli_w,
15730         binsli_d, binsr_b, binsr_h, binsr_w, binsr_d, binsri_b, binsri_h,
15731         binsri_w, binsri_d, addv_b, addv_h, addv_w, addv_d, addvi_b,
15732         addvi_h, addvi_w, addvi_d, subv_b, subv_h, subv_w, subv_d,
15733         subvi_b, subvi_h, subvi_w, subvi_d, max_s_b, max_s_h, max_s_w,
15734         max_s_d, maxi_s_b, maxi_s_h, maxi_s_w, maxi_s_d, max_u_b,
15735         max_u_h, max_u_w, max_u_d, maxi_u_b, maxi_u_h, maxi_u_w,
15736         maxi_u_d, min_s_b, min_s_h, min_s_w, min_s_d, mini_s_b, mini_s_h,
15737         mini_s_w, mini_s_d, min_u_b, min_u_h, min_u_w, min_u_d, mini_u_b,
15738         mini_u_h, mini_u_w, mini_u_d, max_a_b, max_a_h, max_a_w, max_a_d,
15739         min_a_b, min_a_h, min_a_w, min_a_d, ceq_b, ceq_h, ceq_w, ceq_d,
15740         ceqi_b, ceqi_h, ceqi_w, ceqi_d, clt_s_b, clt_s_h, clt_s_w,
15741         clt_s_d, clti_s_b, clti_s_h, clti_s_w, clti_s_d, clt_u_b,
15742         clt_u_h, clt_u_w, clt_u_d, clti_u_b, clti_u_h, clti_u_w,
15743         clti_u_d, cle_s_b, cle_s_h, cle_s_w, cle_s_d, clei_s_b, clei_s_h,
15744         clei_s_w, clei_s_d, cle_u_b, cle_u_h, cle_u_w, cle_u_d, clei_u_b,
15745         clei_u_h, clei_u_w, clei_u_d, ld_b, ld_h, ld_w, ld_d, st_b, st_h,
15746         st_w, st_d, sat_s_b, sat_s_h, sat_s_w, sat_s_d, sat_u_b, sat_u_h,
15747         sat_u_w, sat_u_d, add_a_b, add_a_h, add_a_w, add_a_d, adds_a_b,
15748         adds_a_h, adds_a_w, adds_a_d, adds_s_b, adds_s_h, adds_s_w,
15749         adds_s_d, adds_u_b, adds_u_h, adds_u_w, adds_u_d, ave_s_b,
15750         ave_s_h, ave_s_w, ave_s_d, ave_u_b, ave_u_h, ave_u_w, ave_u_d,
15751         aver_s_b, aver_s_h, aver_s_w, aver_s_d, aver_u_b, aver_u_h,
15752         aver_u_w, aver_u_d, subs_s_b, subs_s_h, subs_s_w, subs_s_d,
15753         subs_u_b, subs_u_h, subs_u_w, subs_u_d, subsuu_s_b, subsuu_s_h,
15754         subsuu_s_w, subsuu_s_d, subsus_u_b, subsus_u_h, subsus_u_w,
15755         subsus_u_d, asub_s_b, asub_s_h, asub_s_w, asub_s_d, asub_u_b,
15756         asub_u_h, asub_u_w, asub_u_d, mulv_b, mulv_h, mulv_w, mulv_d,
15757         maddv_b, maddv_h, maddv_w, maddv_d, msubv_b, msubv_h, msubv_w,
15758         msubv_d, div_s_b, div_s_h, div_s_w, div_s_d, div_u_b, div_u_h,
15759         div_u_w, div_u_d, hadd_s_h, hadd_s_w, hadd_s_d, hadd_u_h,
15760         hadd_u_w, hadd_u_d, hsub_s_h, hsub_s_w, hsub_s_d, hsub_u_h,
15761         hsub_u_w, hsub_u_d, mod_s_b, mod_s_h, mod_s_w, mod_s_d, mod_u_b,
15762         mod_u_h, mod_u_w, mod_u_d, dotp_s_h, dotp_s_w, dotp_s_d,
15763         dotp_u_h, dotp_u_w, dotp_u_d, dpadd_s_h, dpadd_s_w, dpadd_s_d,
15764         dpadd_u_h, dpadd_u_w, dpadd_u_d, dpsub_s_h, dpsub_s_w, dpsub_s_d,
15765         dpsub_u_h, dpsub_u_w, dpsub_u_d, sld_b, sld_h, sld_w, sld_d,
15766         sldi_b, sldi_h, sldi_w, sldi_d, splat_b, splat_h, splat_w,
15767         splat_d, splati_b, splati_h, splati_w, splati_d, pckev_b,
15768         pckev_h, pckev_w, pckev_d, pckod_b, pckod_h, pckod_w, pckod_d,
15769         ilvl_b, ilvl_h, ilvl_w, ilvl_d, ilvr_b, ilvr_h, ilvr_w, ilvr_d,
15770         ilvev_b, ilvev_h, ilvev_w, ilvev_d, ilvod_b, ilvod_h, ilvod_w,
15771         ilvod_d, vshf_b, vshf_h, vshf_w, vshf_d, and_v, andi_b, or_v,
15772         ori_b, nor_v, nori_b, xor_v, xori_b, bmnz_v, bmnzi_b, bmz_v,
15773         bmzi_b, bsel_v, bseli_b, shf_b, shf_h, shf_w, bnz_v, bz_v,
15774         fill_b, fill_h, fill_w, fill_d, pcnt_b, pcnt_h, pcnt_w,
15775         pcnt_d, nloc_b, nloc_h, nloc_w, nloc_d, nlzc_b, nlzc_h, nlzc_w,
15776         nlzc_d, copy_s_b, copy_s_h, copy_s_w, copy_s_d, copy_u_b,
15777         copy_u_h, copy_u_w, copy_u_d, insert_b, insert_h, insert_w,
15778         insert_d, insve_b, insve_h, insve_w, insve_d, bnz_b, bnz_h,
15779         bnz_w, bnz_d, bz_b, bz_h, bz_w, bz_d, ldi_b, ldi_h, ldi_w, ldi_d,
15780         fcaf_w, fcaf_d, fcor_w, fcor_d, fcun_w, fcun_d, fcune_w, fcune_d,
15781         fcueq_w, fcueq_d, fceq_w, fceq_d, fcne_w, fcne_d, fclt_w, fclt_d,
15782         fcult_w, fcult_d, fcle_w, fcle_d, fcule_w, fcule_d, fsaf_w,
15783         fsaf_d, fsor_w, fsor_d, fsun_w, fsun_d, fsune_w, fsune_d,
15784         fsueq_w, fsueq_d, fseq_w, fseq_d, fsne_w, fsne_d, fslt_w,
15785         fslt_d, fsult_w, fsult_d, fsle_w, fsle_d, fsule_w, fsule_d,
15786         fadd_w, fadd_d, fsub_w, fsub_d, fmul_w, fmul_d, fdiv_w, fdiv_d,
15787         fmadd_w, fmadd_d, fmsub_w, fmsub_d, fexp2_w, fexp2_d, fexdo_h,
15788         fexdo_w, ftq_h, ftq_w, fmin_w, fmin_d, fmin_a_w, fmin_a_d,
15789         fmax_w, fmax_d, fmax_a_w, fmax_a_d, mul_q_h, mul_q_w, mulr_q_h,
15790         mulr_q_w, madd_q_h, madd_q_w, maddr_q_h, maddr_q_w, msub_q_h,
15791         msub_q_w, msubr_q_h, msubr_q_w, fclass_w, fclass_d, fsqrt_w,
15792         fsqrt_d, frcp_w, frcp_d, frint_w, frint_d, frsqrt_w, frsqrt_d,
15793         flog2_w, flog2_d, fexupl_w, fexupl_d, fexupr_w, fexupr_d, ffql_w,
15794         ffql_d, ffqr_w, ffqr_d, ftint_s_w, ftint_s_d, ftint_u_w,
15795         ftint_u_d, ftrunc_s_w, ftrunc_s_d, ftrunc_u_w, ftrunc_u_d,
15796         ffint_s_w, ffint_s_d, ffint_u_w, ffint_u_d, ctcmsa, cfcmsa,
15797         move_v builtins.
15798         (mips_get_builtin_decl_index): New array.
15799         (MIPS_ATYPE_QI, MIPS_ATYPE_HI, MIPS_ATYPE_V2DI, MIPS_ATYPE_V4SI)
15800         (MIPS_ATYPE_V8HI, MIPS_ATYPE_V16QI, MIPS_ATYPE_V2DF)
15801         (MIPS_ATYPE_V4SF, MIPS_ATYPE_UV2DI, MIPS_ATYPE_UV4SI)
15802         (MIPS_ATYPE_UV8HI, MIPS_ATYPE_UV16QI): New.
15803         (mips_init_builtins): Initialize mips_get_builtin_decl_index
15804         array.
15805         (TARGET_VECTORIZE_BUILTIN_VECTORIZED_FUNCTION): Define target
15806         hook.
15807         (mips_expand_builtin_insn): Prepare operands for
15808         CODE_FOR_msa_addvi_b, CODE_FOR_msa_addvi_h, CODE_FOR_msa_addvi_w,
15809         CODE_FOR_msa_addvi_d, CODE_FOR_msa_clti_u_b,
15810         CODE_FOR_msa_clti_u_h, CODE_FOR_msa_clti_u_w,
15811         CODE_FOR_msa_clti_u_d, CODE_FOR_msa_clei_u_b,
15812         CODE_FOR_msa_clei_u_h, CODE_FOR_msa_clei_u_w,
15813         CODE_FOR_msa_clei_u_d, CODE_FOR_msa_maxi_u_b,
15814         CODE_FOR_msa_maxi_u_h, CODE_FOR_msa_maxi_u_w,
15815         CODE_FOR_msa_maxi_u_d, CODE_FOR_msa_mini_u_b,
15816         CODE_FOR_msa_mini_u_h, CODE_FOR_msa_mini_u_w,
15817         CODE_FOR_msa_mini_u_d, CODE_FOR_msa_subvi_b,
15818         CODE_FOR_msa_subvi_h, CODE_FOR_msa_subvi_w, CODE_FOR_msa_subvi_d,
15819         CODE_FOR_msa_ceqi_b, CODE_FOR_msa_ceqi_h, CODE_FOR_msa_ceqi_w,
15820         CODE_FOR_msa_ceqi_d, CODE_FOR_msa_clti_s_b,
15821         CODE_FOR_msa_clti_s_h, CODE_FOR_msa_clti_s_w,
15822         CODE_FOR_msa_clti_s_d, CODE_FOR_msa_clei_s_b,
15823         CODE_FOR_msa_clei_s_h, CODE_FOR_msa_clei_s_w,
15824         CODE_FOR_msa_clei_s_d, CODE_FOR_msa_maxi_s_b,
15825         CODE_FOR_msa_maxi_s_h, CODE_FOR_msa_maxi_s_w,
15826         CODE_FOR_msa_maxi_s_d, CODE_FOR_msa_mini_s_b,
15827         CODE_FOR_msa_mini_s_h, CODE_FOR_msa_mini_s_w,
15828         CODE_FOR_msa_mini_s_d, CODE_FOR_msa_andi_b, CODE_FOR_msa_ori_b,
15829         CODE_FOR_msa_nori_b, CODE_FOR_msa_xori_b, CODE_FOR_msa_bmzi_b,
15830         CODE_FOR_msa_bmnzi_b, CODE_FOR_msa_bseli_b, CODE_FOR_msa_fill_b,
15831         CODE_FOR_msa_fill_h, CODE_FOR_msa_fill_w, CODE_FOR_msa_fill_d,
15832         CODE_FOR_msa_ilvl_b, CODE_FOR_msa_ilvl_h, CODE_FOR_msa_ilvl_w,
15833         CODE_FOR_msa_ilvl_d, CODE_FOR_msa_ilvr_b, CODE_FOR_msa_ilvr_h,
15834         CODE_FOR_msa_ilvr_w, CODE_FOR_msa_ilvr_d, CODE_FOR_msa_ilvev_b,
15835         CODE_FOR_msa_ilvev_h, CODE_FOR_msa_ilvev_w, CODE_FOR_msa_ilvod_b,
15836         CODE_FOR_msa_ilvod_h, CODE_FOR_msa_ilvod_w, CODE_FOR_msa_pckev_b,
15837         CODE_FOR_msa_pckev_h, CODE_FOR_msa_pckev_w, CODE_FOR_msa_pckod_b,
15838         CODE_FOR_msa_pckod_h, CODE_FOR_msa_pckod_w, CODE_FOR_msa_slli_b,
15839         CODE_FOR_msa_slli_h, CODE_FOR_msa_slli_w, CODE_FOR_msa_slli_d,
15840         CODE_FOR_msa_srai_b, CODE_FOR_msa_srai_h, CODE_FOR_msa_srai_w,
15841         CODE_FOR_msa_srai_d, CODE_FOR_msa_srli_b, CODE_FOR_msa_srli_h,
15842         CODE_FOR_msa_srli_w, CODE_FOR_msa_srli_d, CODE_FOR_msa_insert_b,
15843         CODE_FOR_msa_insert_h, CODE_FOR_msa_insert_w,
15844         CODE_FOR_msa_insert_d, CODE_FOR_msa_insve_b,
15845         CODE_FOR_msa_insve_h, CODE_FOR_msa_insve_w, CODE_FOR_msa_insve_d,
15846         CODE_FOR_msa_shf_b, CODE_FOR_msa_shf_h, CODE_FOR_msa_shf_w,
15847         CODE_FOR_msa_shf_w_f, CODE_FOR_msa_vshf_b, CODE_FOR_msa_vshf_h,
15848         CODE_FOR_msa_vshf_w, CODE_FOR_msa_vshf_d.
15849         (mips_expand_builtin): Add case for MIPS_BULTIN_MSA_TEST_BRANCH.
15850         (mips_set_compression_mode): Disallow MSA with MIPS16 code.
15851         (mips_option_override): -mmsa requires -mfp64 and -mhard-float.
15852         These are set implicitly and an error is reported if overridden.
15853         (mips_expand_builtin_msa_test_branch): New function.
15854         (mips_expand_msa_shuffle): Likewise.
15855         (MAX_VECT_LEN): Increase maximum length of a vector to 16 bytes.
15856         (TARGET_SCHED_REASSOCIATION_WIDTH): Define target hook.
15857         (TARGET_VECTORIZE_AUTOVECTORIZE_VECTOR_SIZES): Likewise.
15858         (mips_expand_vec_unpack): Add support for MSA.
15859         (mips_expand_vector_init): Likewise.
15860         (mips_expand_vi_constant): Use CONST0_RTX (element_mode)
15861         instead of const0_rtx.
15862         (mips_msa_vec_parallel_const_half): New function.
15863         (mips_gen_const_int_vector): Likewise.
15864         (mips_gen_const_int_vector_shuffle): Likewise.
15865         (mips_expand_msa_cmp): Likewise.
15866         (mips_expand_vec_cond_expr): Likewise.
15867         * config/mips/mips.h
15868         (TARGET_CPU_CPP_BUILTINS): Add __mips_msa and __mips_msa_width.
15869         (OPTION_DEFAULT_SPECS): Ignore --with-fp-32 if -mmsa is
15870         specified.
15871         (ASM_SPEC): Pass mmsa and mno-msa to the assembler.
15872         (ISA_HAS_MSA): New macro.
15873         (UNITS_PER_MSA_REG): Likewise.
15874         (BITS_PER_MSA_REG): Likewise.
15875         (BIGGEST_ALIGNMENT): Redefine using ISA_HAS_MSA.
15876         (MSA_REG_FIRST): New macro.
15877         (MSA_REG_LAST): Likewise.
15878         (MSA_REG_NUM): Likewise.
15879         (MSA_REG_P): Likewise.
15880         (MSA_REG_RTX_P): Likewise.
15881         (MSA_SUPPORTED_MODE_P): Likewise.
15882         (HARD_REGNO_CALL_PART_CLOBBERED): Redefine using TARGET_MSA.
15883         (ADDITIONAL_REGISTER_NAMES): Add named registers $w0-$w31.
15884         * config/mips/mips.md: Include mips-msa.md.
15885         (alu_type): Add simd_add.
15886         (mode): Add V2DI, V4SI, V8HI, V16QI, V2DF, V4SF.
15887         (type): Add simd_div, simd_fclass, simd_flog2, simd_fadd,
15888         simd_fcvt, simd_fmul, simd_fmadd, simd_fdiv, simd_bitins,
15889         simd_bitmov, simd_insert, simd_sld, simd_mul, simd_fcmp,
15890         simd_fexp2, simd_int_arith, simd_bit, simd_shift, simd_splat,
15891         simd_fill, simd_permute, simd_shf, simd_sat, simd_pcnt,
15892         simd_copy, simd_branch, simd_cmsa, simd_fminmax, simd_logic,
15893         simd_move, simd_load, simd_store.  Choose "multi" for moves
15894         for "qword_mode".
15895         (qword_mode): New attribute.
15896         (insn_count): Add instruction count for quad moves.
15897         Increase the count for MIPS SIMD division.
15898         (UNITMODE): Add UNITMODEs for vector types.
15899         (addsub): New code iterator.
15900         * config/mips/mips.opt (mmsa): New option.
15901         * config/mips/msa.h: New file.
15902         * config/mips/mti-elf.h: Don't infer -mfpxx if -mmsa is
15903         specified.
15904         * config/mips/mti-linux.h: Likewise.
15905         * config/mips/predicates.md
15906         (const_msa_branch_operand): New constraint.
15907         (const_uimm3_operand): Likewise.
15908         (const_uimm4_operand): Likewise.
15909         (const_uimm5_operand): Likewise.
15910         (const_uimm8_operand): Likewise.
15911         (const_imm5_operand): Likewise.
15912         (aq10b_operand): Likewise.
15913         (aq10h_operand): Likewise.
15914         (aq10w_operand): Likewise.
15915         (aq10d_operand): Likewise.
15916         (const_m1_operand): Likewise.
15917         (reg_or_m1_operand): Likewise.
15918         (const_exp_2_operand): Likewise.
15919         (const_exp_4_operand): Likewise.
15920         (const_exp_8_operand): Likewise.
15921         (const_exp_16_operand): Likewise.
15922         (const_vector_same_val_operand): Likewise.
15923         (const_vector_same_simm5_operand): Likewise.
15924         (const_vector_same_uimm5_operand): Likewise.
15925         (const_vector_same_uimm6_operand): Likewise.
15926         (const_vector_same_uimm8_operand): Likewise.
15927         (par_const_vector_shf_set_operand): Likewise.
15928         (reg_or_vector_same_val_operand): Likewise.
15929         (reg_or_vector_same_simm5_operand): Likewise.
15930         (reg_or_vector_same_uimm6_operand): Likewise.
15931         * doc/extend.texi (MIPS SIMD Architecture Functions): New
15932         section.
15933         * doc/invoke.texi (-mmsa): Document new option.
15935 2016-05-09  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
15937         * configure.ac (enable_vtable_verify): Handle --enable-vtable-verify.
15938         * configure: Regenerate.
15939         * config.in: Regenerate.
15940         * gcc.c (VTABLE_VERIFICATION_SPEC) [!ENABLE_VTABLE_VERIFY]: Error
15941         on -fvtable-verify.
15942         * config/sol2.h [!ENABLE_VTABLE_VERIFY] (STARTFILE_VTV_SPEC): Define.
15943         (ENDFILE_VTV_SPEC): Define.
15945 2016-05-09  Kaushik Phatak  <kaushik.phatak@kpit.com>
15947         * config/rl78/rl78.c (rl78_expand_prologue): Save the MDUC related
15948         registers in all interrupt handlers if necessary.
15949         (rl78_option_override): Add warning.
15950         (MUST_SAVE_MDUC_REGISTERS): New macro.
15951         (rl78_expand_epilogue): Restore the MDUC registers if necessary.
15952         * config/rl78/rl78.c (check_mduc_usage): New function.
15953         (mduc_regs): New structure to hold MDUC register data.
15954         * config/rl78/rl78.md (is_g13_muldiv_insn): New attribute.
15955         (mulsi3_g13): Add is_g13_muldiv_insn attribute.
15956         (udivmodsi4_g13): Add is_g13_muldiv_insn attribute.
15957         (mulhi3_g13): Add is_g13_muldiv_insn attribute.
15958         * config/rl78/rl78.opt (msave-mduc-in-interrupts): New option.
15959         * doc/invoke.texi (RL78 Options): Add -msave-mduc-in-interrupts.
15961 2016-05-09  Bin Cheng  <bin.cheng@arm.com>
15963         * tree-if-conv.c (tree-ssa-loop.h): Include header file.
15964         (tree-ssa-loop-niter.h): Ditto.
15965         (idx_within_array_bound, ref_within_array_bound): New functions.
15966         (ifcvt_memrefs_wont_trap): Check if array ref is within bound.
15967         Factor out check on writable base object to ...
15968         (base_object_writable): ... here.
15970 2016-05-09  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
15972         * config/arm/arm.md (probe_stack): Add modes to set source
15973         and destination.
15975 2016-05-09  Bernd Schmidt  <bschmidt@redhat.com>
15977         * regrename.c (base_reg_class_for_rename): New static function.
15978         (scan_rtx_address, scan_rtx): Use it instead of base_reg_class.
15980 2016-05-08  Jan Hubicka  <hubicka@ucw.cz>
15982         * cgraph.c (thunk_adjust): Export.
15983         * cgraphclones.c (cgraph_node::create_clone): Clone thunk info.
15984         * cgraphunit.c (thunk_adjust): Export.
15985         (cgraph_node::assemble_thunks_and_aliases): Do not assemble inlined
15986         thunks.
15987         * ipa-inline-analyssi.c (compute_inline_parameters): Thunks are
15988         inlinable.
15989         * tree-inline.c (expand_call_inline): Expand thunks inline.
15991 2016-05-08  Uros Bizjak  <ubizjak@gmail.com>
15993         PR target/70998
15994         * config/i386/sse.md (*sse2_vd_cvtsd2ss): New insn pattern.
15995         (*sse2_vd_cvtss2sd): Ditto.
15996         * config/i386/i386.md
15997         (TARGET_SSE_PARTIAL_REG_DEPENDENCY float_truncate df->sf splitter):
15998         Generate *sse2_vd_cvtsd2ss pattern.
15999         (TARGET_SSE_PARTIAL_REG_DEPENDENCY float_extend sf->df splitter):
16000         Generate *sse2_vd_cvtss2sd pattern.
16002 2016-05-08  Oleg Endo  <olegendo@gcc.gnu.org>
16004         * config/sh/sh.h (GET_SH_ARG_CLASS): Convert macro into ...
16005         * config/sh/sh.c (get_sh_arg_class): ... this new function.  Update its
16006         users.
16008 2016-05-08  Oleg Endo  <olegendo@gcc.gnu.org>
16010         * config/sh/sh-protos.h (sh_media_register_for_return): Remove.
16011         * config/sh/sh.c: Define and declare variables on first use throughout
16012         the file.
16013         (current_function_interrupt): Change to bool type.
16014         (frame_insn): Rename to emit_frame_insn and update users.
16015         (push_regs): Use bool for 'interrupt_handler' argument.
16016         (save_schedule_s): Remove.
16017         (TARGET_ASM_UNALIGNED_DI_OP, TARGET_ASM_ALIGNED_DI_OP): Remove.
16018         (sh_option_override): Don't nullify targetm.asm_out.aligned_op.di and
16019         targetm.asm_out.unaligned_op.di.
16020         (gen_far_branch): Remove redundant forward declaration.
16021         (sh_media_register_for_return, MAX_SAVED_REGS, save_entry_s, save_entry,
16022         MAX_TEMPS, save_schedule_ssave_schedule): Remove.
16023         (sh_set_return_address, sh_function_ok_for_sibcall,
16024         scavenge_reg): Update comments.
16025         (sh_builtin_saveregs): Use TRAGET_FPU_ANY condition.
16026         (sh2a_get_function_vector_number, sh2a_function_vector_p): Use for loop.
16027         (sh_attr_renesas_p): Remove unnecessary parentheses.
16028         (branch_dest): Simplify.
16029         * config/sh/sh.h (sh_args): Remove byref, byref_regs, stack_regs fields.
16030         Change force_mem, prototype_p, outgoing, renesas_abi fields to bool.
16031         (CUMULATIVE_ARGS): Change macro to typedef.
16032         (current_function_interrupt): Change to bool type.
16033         (sh_arg_class, sh_args, CUMULATIVE_ARGS, current_function_interrupt):
16034         Surround with __cplusplus ifdef.
16035         (sh_compare_op0, sh_compare_op1): Remove.
16036         (EPILOGUE_USES): Use TARGET_FPU_ANY condition.
16038 2016-05-07  Jim Wilson  <jim.wilson@linaro.org>
16040         * config/arm/arm.md: (arch): Add neon.
16041         (arch_enabled): Return yes for arch neon when TARGET_NEON.
16042         * config/arm/vfp.md (movdf_vfp): Add w/G as alternative 3.  Add
16043         neon_move as type for alt 3.  Add arch attr enabling alt 3 for neon.
16044         Emit vmov.i64 for alt 3.  Renumber alternatives 3 to 8.  Adjust
16045         attributes for alt renumbering.  Mark alt 3 as non-predicable.
16046         (thumb2_movdf_vfp): Likewise.
16048 2016-05-07  Uros Bizjak  <ubizjak@gmail.com>
16050         * config/i386/i386.md (*addqi_1): Add preferred_for_speed attribute
16051         to disparage alternatives 3 and 4 for TARGET_PARTIAL_REG_STALL targets.
16052         (*andqi_1): Add preferred_for_speed attribute to disparage
16053         alternative 2 for TARGET_PARTIAL_REG_STALL targets.
16054         (*<code>qi_1): Ditto.
16055         (*one_cmplqi2_1): Add preferred_for_speed attribute to disparage
16056         alternative 1 for TARGET_PARTIAL_REG_STALL targets.
16057         (*ashlqi3_1): Ditto.
16058         (*swap<mode>): Merge from *swap<mode>_1 and *swap<mode>_2 patterns.
16059         Add preferred_for_size attribute to disparage alternative 0 and
16060         preferred_for_speed attribute to disparage alternative 1 for
16061         TARGET_PARTIAL_REG_STALL targets.
16063 2016-05-07  Tom de Vries  <tom@codesourcery.com>
16065         PR tree-optimization/70956
16066         * graphite-scop-detection.c (build_cross_bb_scalars_def): Handle NULL
16067         def.
16069 2016-05-07  Oleg Endo  <olegendo@gcc.gnu.org>
16071         * config/sh/sh-protos.h (sh_cbranch_distance): Declare new function.
16072         * config/sh/sh.c (sh_cbranch_distance): Implement it.
16073         * config/sh/sh.md (branch_zero): Remove define_attr.
16074         (define_delay): Disable delay slot if branch distance is one insn.
16076 2016-05-06  Uros Bizjak  <ubizjak@gmail.com>
16078         * config/i386/i386.md (LEAMODE): New mode attribute.
16079         (plus to LEA splitter): Rewrite splitter using LEAMODE mode attribute.
16080         (ashift to LEA splitter): Rewrte splitter using SWI mode iterator
16081         and LEAMODE mode attribute.  Use VOIDmode const_0_to_3_operand as
16082         operand 2 predicate.
16083         (*lea<mode>_general_2): Use VOIDmode for const248_operand.
16084         (*lea<mode>_general_3): Ditto.
16085         (*lea<mode>_general_4): Use VOIDmode for const_0_to_3_operand.
16087 2016-05-06  Jakub Jelinek  <jakub@redhat.com>
16089         * genmddump.c (main): Convert argv from char ** to const char **.
16091 2016-05-06  David Malcolm  <dmalcolm@redhat.com>
16093         * coretypes.h (OVERRIDE): New macro.
16094         (FINAL): New macro.
16096 2016-05-06  Eric Botcazou  <ebotcazou@adacore.com>
16098         * tree-ssa-coalesce.c (gimple_can_coalesce_p): In the optimized case,
16099         allow coalescing if the types are compatible.
16101 2016-05-06  David Malcolm  <dmalcolm@redhat.com>
16103         * pass_manager.h (pass_manager::register_pass_name): New method.
16104         (pass_manager::get_pass_by_name): New method.
16105         (pass_manager::create_pass_tab): New method.
16106         (pass_manager::m_name_to_pass_map): New field.
16107         * passes.c (name_to_pass_map): Delete global in favor of field
16108         "m_name_to_pass_map" of pass_manager.
16109         (register_pass_name): Rename from a function to...
16110         (pass_manager::register_pass_name): ...this method, updating
16111         for renaming of global "name_to_pass_map" to field
16112         "m_name_to_pass_map".
16113         (create_pass_tab): Rename from a function to...
16114         (pass_manager::create_pass_tab): ...this method, updating
16115         for renaming of global "name_to_pass_map" to field.
16116         (get_pass_by_name): Rename from a function to...
16117         (pass_manager::get_pass_by_name): ...this method.
16118         (enable_disable_pass): Convert use of get_pass_by_name to
16119         a method call, locating the pass_manager singleton.
16121 2016-05-06  David Malcolm  <dmalcolm@redhat.com>
16123         * genattr-common.c (main): Convert argv from char ** to const char **.
16124         * genattr.c (main): Likewise.
16125         * genattrtab.c (main): Likewise.
16126         * genautomata.c (initiate_automaton_gen): Likewise.
16127         (main): Likewise.
16128         * gencodes.c (main): Likewise.
16129         * genconditions.c (main): Likewise.
16130         * genconfig.c (main): Likewise.
16131         * genconstants.c (main): Likewise.
16132         * genemit.c (main): Likewise.
16133         * genenums.c (main): Likewise.
16134         * genextract.c (main): Likewise.
16135         * genflags.c (main): Likewise.
16136         * genmddeps.c (main): Likewise.
16137         * genopinit.c (main): Likewise.
16138         * genoutput.c (main): Likewise.
16139         * genpeep.c (main): Likewise.
16140         * genpreds.c (main): Likewise.
16141         * genrecog.c (main): Likewise.
16142         * gensupport.c (init_rtx_reader_args_cb): Likewise.
16143         (init_rtx_reader_args): Likewise.
16144         * gensupport.h (init_rtx_reader_args_cb): Likewise.
16145         (init_rtx_reader_args): Likewise.
16146         * gentarget-def.c (main): Likewise.
16147         * read-md.c (read_md_files): Likewise.
16148         * read-md.h (read_md_files): Likewise.
16150 2016-05-06  Uros Bizjak  <ubizjak@gmail.com>
16152         * config/i386/i386.md (int cmove peephole2s): Use general_reg_operand
16153         instead of register_and_not_any_fp_reg_operand as operand 0 predicate.
16154         * config/i386/predicates.md (register_and_not_any_fp_reg_operand):
16155         Remove unused predicate.
16156         (register_and_not_fp_reg_operand): Ditto.
16158 2016-05-06  Martin Liska  <mliska@suse.cz>
16160         * tree-if-conv.c (ifcvt_split_critical_edges): Use auto_vec
16161         instead of vec as the vector is local to the function.
16163 2016-05-06  Jakub Jelinek  <jakub@redhat.com>
16165         * config/i386/sse.md (*<code>v8hi3, *<code>v16qi3): Add
16166         avx512bw alternative.
16168         * config/i386/sse.md (<mask_codefor>ashr<mode>3<mask_name>): Move
16169         before the ashr<mode>3 pattern.
16171         * config/i386/sse.md (*avx2_pmaddwd, *sse2_pmaddwd): Use
16172         v instead of x in vex or maybe_vex alternatives, use
16173         maybe_evex instead of vex in prefix.
16175         * config/i386/sse.md (*vec_extractv4sf_0, *sse4_1_extractps,
16176         *vec_extractv4sf_mem, vec_extract_lo_v16hi, vec_extract_hi_v16hi,
16177         vec_extract_lo_v32qi, vec_extract_hi_v32qi): Use v instead of x
16178         in vex or maybe_vex alternatives, use maybe_evex instead of vex
16179         in prefix.
16181         * config/i386/sse.md (*vec_concatv2sf_sse4_1, *vec_concatv4sf): Use
16182         v instead of x in vex or maybe_vex alternatives, use
16183         maybe_evex instead of vex in prefix.
16185         * config/i386/sse.md (sse_shufps_<mode>, sse_storehps, sse_loadhps,
16186         sse_storelps, sse_movss, avx2_vec_dup<mode>, avx2_vec_dupv8sf_1,
16187         sse2_shufpd_<mode>, sse2_storehpd, sse2_storelpd, sse2_loadhpd,
16188         sse2_loadlpd, sse2_movsd): Use v instead of x in vex or maybe_vex
16189         alternatives, use maybe_evex instead of vex in prefix.
16191         * config/i386/sse.md (vec_interleave_lowv4sf,
16192         *vec_interleave_highv2df, *vec_interleave_lowv2df): Use
16193         v instead of x in vex or maybe_vex alternatives, use
16194         maybe_evex instead of vex in prefix.
16196         * config/i386/sse.md (sse_movhlps, sse_movlhps): Use
16197         v instead of x in vex or maybe_vex alternatives, use
16198         maybe_evex instead of vex in prefix.
16200         * config/i386/sse.md (*avx_cvtpd2dq256_2, *avx_cvtps2pd256_2): Use
16201         v constraint instead of x.
16203 2016-05-06  Nathan Sidwell  <nathan@codesourcery.com>
16205         * gimple.c (gimple_call_same_target_p): Unique functions are eq.
16206         * tree-ssa-tail-merge.c (same_succ::equal): Check pointer eq
16207         equality first.
16209 2016-05-06  Richard Biener  <rguenther@suse.de>
16211         PR tree-optimization/70948
16212         * tree-ssa-structalias.c (find_func_aliases_for_builtin_call):
16213         Properly clobber all fields of va_list for __builtin_va_start.
16215 2016-05-06  Yuri Rumyantsev  <ysrumyan@gmail.com>
16217         PR debug/70935
16218         * tree-ssa-loop-unswitch.c (find_loop_guard): Reject guard edge with
16219         loop latch destination.
16221 2016-05-06  Martin Liska  <mliska@suse.cz>
16223         * tree-ssa-uninit.c: Apply manual changes
16224         to the GNU coding style.
16225         (prune_uninit_phi_opnds): Rename from
16226         prune_uninit_phi_opnds_in_unrealizable_paths.
16228 2016-05-06  Oleg Endo  <olegendo@gcc.gnu.org>
16230         * config/sh/sh.opt (madjust-unroll, minvalid-symbols, msoft-atomic,
16231         mspace): Remove deprecated options.
16232         * doc/invoke.texi (SH options): Remove -mspace.
16234 2016-05-06  Oleg Endo  <olegendo@gcc.gnu.org>
16236         * config/sh/sh.md (ic_invalidate_line_sh4a): Fix insn length.
16238 2016-05-06  Oleg Endo  <olegendo@gcc.gnu.org>
16240         * config/sh/sh.md (*cmpeqsi_t): Remove combine insn pattern and similar
16241         corresponding combine split pattern.
16243 2016-05-06  Oleg Endo  <olegendo@gcc.gnu.org>
16245         PR target/58219
16246         * config/sh/predicates.md (long_displacement_mem_operand): New.
16247         * config/sh/sh.md (movsi_i): Allow for SH2A, disallow for any FPU.
16248         Add movi20, movi20s alternatives.  Adjust length attribute for
16249         alternatives.
16250         (movsi_ie): Allow for any FPU.  Adjust length attribute for
16251         alternatives.
16252         (movsi_i_lowpart): Add movi20, movi20s alternatives.  Adjust length
16253         attribute for alternatives.
16254         (*mov<mode>): Use long_displacement_mem_operand for length attribute.
16255         (*movdi_i, movdf_k, movdf_i4, movsf_i, movsf_ie, movsf_ie_ra): Adjust
16256         length attribute for alternatives.
16258 2016-05-06  Richard Biener  <rguenther@suse.de>
16260         PR tree-optimization/70960
16261         * tree-if-conv.c (ifcvt_walk_pattern_tree): Handle non-SSA ops.
16263 2016-05-06  Oleg Endo  <olegendo@gcc.gnu.org>
16265         PR target/52933
16266         * config/sh/sh.md (*cmp_div0s_7, *cmp_div0s_8): Add div0s variants.
16267         * config/sh/sh.c (sh_rtx_costs): Add another div0s case.
16269 2016-05-06  Marek Polacek  <polacek@redhat.com>
16271         PR sanitizer/70875
16272         * ubsan.c (get_ubsan_type_info_for_type): Remove assert.
16274 2016-05-06  Oleg Endo  <olegendo@gcc.gnu.org>
16276         PR target/54089
16277         * config/sh/sh.md (*rotcr): Add another variant.
16279 2016-05-06  Richard Biener  <rguenther@suse.de>
16281         PR middle-end/70931
16282         * dwarf2out.c (native_encode_initializer): Skip zero-sized fields.
16284 2016-05-06  Richard Biener  <rguenther@suse.de>
16286         PR middle-end/70941
16287         * fold-const.c (split_tree): Always convert to the original type
16288         before negating.
16290 2016-05-06  Richard Biener  <rguenther@suse.de>
16292         * fwprop.c (fwprop): Remove duplicate cleanup_cfg call.
16293         (fwprop_addr): Likewise.
16295 2016-05-06  Uros Bizjak  <ubizjak@gmail.com>
16297         PR target/70873
16298         * config/i386/i386-protos.h (ix86_standard_x87sse_constant_load_p):
16299         New prototype.
16300         * config/i386/i386.c (ix86_standard_x87sse_constant_load_p): New.
16301         * config/i386/i386.md (push mem splitter): Use find_constant_src in
16302         the splitter condition.
16303         (FP load splitter): Use ix86_standard_x87sse_constant_load_p in
16304         the splitter condition.
16305         (FP float_extend load splitter): Ditto.
16307 2016-05-05  Uros Bizjak  <ubizjak@gmail.com>
16309         * config/i386/i386.md (peehole2 patterns): Change true_regnum
16310         to REGNO in all peephole2 patterns.
16311         (post-reload splitters): Change true_regnum to REGNO in
16312         post-reload splitters.
16313         (zero_extend splitters): Use general_reg_operand and
16314         nonimmediate_gr_operand predicates.
16316 2016-05-05  Jakub Jelinek  <jakub@redhat.com>
16318         * config/i386/sse.md (<avx512>_fmadd_<mode>_mask3<round_name>): Use
16319         v constraint instead of x.
16321 2016-05-05  Alan Modra  <amodra@gmail.com>
16323         PR target/68662
16324         * config/rs6000/sysv4.h (SUBTARGET_OVERRIDE_OPTIONS): Don't
16325         set OPTION_MASK_RELOCATABLE when flag_pic == 2.  Set
16326         TARGET_NO_FP_IN_TOC for -mrelocatable.
16327         (MINIMAL_TOC_SECTION_ASM_OP): Remove redundant
16328         TARGET_RELOCATABLE test.
16329         (ASM_OUTPUT_SPECIAL_POOL_ENTRY_P): Likewise.
16330         (ASM_PREFERRED_EH_DATA_FORMAT): Likewise.
16331         * config/rs6000/linux64.h (MINIMAL_TOC_SECTION_ASM_OP): Likewise.
16332         (ASM_OUTPUT_SPECIAL_POOL_ENTRY_P): Likewise.
16333         (ASM_PREFERRED_EH_DATA_FORMAT): Likewise.
16334         * config/rs6000/freebsd64.h (MINIMAL_TOC_SECTION_ASM_OP): Likewise.
16335         (ASM_OUTPUT_SPECIAL_POOL_ENTRY_P): Likewise.
16336         (ASM_PREFERRED_EH_DATA_FORMAT): Likewise.
16337         * config/rs6000/predicates.md (easy_fp_constant): Likewise.
16338         * config/rs6000/rs6000.c (rs6000_elf_output_toc_section_asm_op):
16339         Likewise.
16340         (rs6000_assemble_integer): Update TARGET_RELOCATABLE test.
16341         (rs6000_stack_info): Likewise.
16342         (rs6000_elf_asm_out_constructor): Likewise.
16343         (rs6000_elf_asm_out_destructor): Likewise.
16344         (rs6000_elf_declare_function_name): Likewise.
16345         * config/rs6000/rs6000.md (load_toc_aix_di): Likewise.
16346         * config/rs6000/rs6000.h (MASK_RELOCATABLE, MASK_MINIMAL_TOC):
16347         Don't define.
16349 2016-05-05  Alan Modra  <amodra@gmail.com>
16351         * config/rs6000/rs6000.c (rs6000_frame_related): Rewrite.
16353 2016-05-05  Alan Modra  <amodra@gmail.com>
16355         * config/rs6000/rs6000.c (rs6000_savres_strategy): Don't use
16356         out-of-line gpr restore for one or two regs if that would add
16357         a save of lr.
16359 2016-05-04  Uros Bizjak  <ubizjak@gmail.com>
16361         PR target/70873
16362         * config/i386/i386.md
16363         (TARGET_SSE_PARTIAL_REG_DEPENDENCY float_extend sf->df peephole2):
16364         Change to post-epilogue_completed late splitter.  Use sse_reg_operand
16365         as operand 0 predicate.
16366         (TARGET_SSE_PARTIAL_REG_DEPENDENCY float_truncate df->sf peephole2):
16367         Ditto.
16368         (TARGET_SSE_PARTIAL_REG_DEPENDENCY float {si,di}->{sf,df} peephole2):
16369         Ditto.  Emit the pattern using RTX.
16371         (TARGET_USE_VECTOR_FP_CONVERTS float_extend sf->df splitter):
16372         Use sse_reg_opreand as operand 0 predicate.  Do not use true_regnum in
16373         the post-reload splitter.  Use lowpart_subreg instead of gen_rtx_REG.
16374         (TARGET_USE_VECTOR_FP_CONVERTS float_truncate df->sf splitter):
16375         Ditto.
16376         (TARGET_USE_VECTOR_CONVERTS float si->{sf,df} splitter): Use
16377         sse_reg_operand as operand 0 predicate.
16379         (TARGET_SPLIT_MEM_OPND_FOR_FP_CONVERTS float_extend sf->df peephole2):
16380         Use sse_reg_opreand as operand 0 predicate.  Use lowpart_subreg
16381         instead of gen_rtx_REG.
16382         (TARGET_SPLIT_MEM_OPND_FOR_FP_CONVERTS float_truncate sf->df peephole2):
16383         Ditto.
16385 2016-05-04  Segher Boessenkool  <segher@kernel.crashing.org>
16387         * function.c (emit_use_return_register_into_block): Delete.
16388         (gen_return_pattern): Delete.
16389         (emit_return_into_block): Delete.
16390         (active_insn_between): Delete.
16391         (convert_jumps_to_returns): Delete.
16392         (emit_return_for_exit): Delete.
16393         (thread_prologue_and_epilogue_insns): Delete all code dealing with
16394         simple_return for shrink-wrapped blocks.
16395         * shrink-wrap.c (try_shrink_wrapping): Insert simple_return at the
16396         end of blocks that need one.
16397         (get_unconverted_simple_return): Delete.
16398         (convert_to_simple_return): Delete.
16399         * shrink-wrap.c (get_unconverted_simple_return): Delete declaration.
16400         (convert_to_simple_return): Ditto.
16402 2016-05-04  Segher Boessenkool  <segher@kernel.crashing.org>
16404         * cfgcleanup.c (bb_is_just_return): New function.
16405         (try_optimize_cfg): Simplify jumps to return, branches to return,
16406         and branches around return.
16408 2016-05-04  Segher Boessenkool  <segher@kernel.crashing.org>
16410         * cfgcleanup.c (try_simplify_condjump): Don't try to simplify a
16411         branch to a return.
16413 2016-05-04  Jakub Jelinek  <jakub@redhat.com>
16415         PR c++/70906
16416         PR c++/70933
16417         * tree-core.h (enum operand_equal_flag): Add OEP_HASH_CHECK.
16418         * tree.c (inchash::add_expr): If !IS_EXPR_CODE_CLASS (tclass),
16419         assert flags & OEP_HASH_CHECK, instead of asserting it
16420         never happens.  Handle TARGET_EXPR.
16421         * fold-const.c (operand_equal_p): For hash verification,
16422         or in OEP_HASH_CHECK into flags.
16424 2016-05-04  Eric Botcazou  <ebotcazou@adacore.com>
16426         * tree-ssa-coalesce.c (gimple_can_coalesce_p): Fix reference in head
16427         comment.
16428         (compute_samebase_partition_bases): Fix typo.
16430 2016-05-04  Jakub Jelinek  <jakub@redhat.com>
16432         * config/i386/sse.md (vec_interleave_highv8sf,
16433         vec_interleave_lowv8sf, vec_interleave_highv4df,
16434         vec_interleave_lowv4df): Remove constraints from expanders.
16436         * config/i386/sse.md (sse2_movq128): Use v constraint instead of x.
16438 2016-05-04  Jan Hubicka  <hubicka@ucw.cz>
16440         * tree-inline.c (expand_call_inline): Fix path dealing with
16441         making lhs of call statement undefined.
16443 2016-05-04  Jan Hubicka  <hubicka@ucw.cz>
16445         * cgraph.c (cgraph_node::call_for_symbol_thunks_and_aliases):
16446         Check availability on NODE, too.
16447         * cgraph.h (symtab_node::call_for_symbol_and_aliases): Likewise.
16448         (cgraph_node::call_for_symbol_and_aliases): Likewise.
16449         (varpool_node::call_for_symbol_and_aliase): Likewise.
16450         * ipa-pure-const.c (add_new_function): Analyze all bodies.
16451         (propagate_pure_const): Propagate across interposable functions, too.
16452         (skip_function_for_local_pure_const): Do not skip interposable bodies
16453         with aliases.
16454         (pass_local_pure_const::execute): Update.
16456 2016-05-04  Marek Polacek  <polacek@redhat.com>
16458         * doc/invoke.texi: Document -Wdangling-else.
16460 2016-05-04  Thomas Preud'homme  <thomas.preudhomme@arm.com>
16462         * config.gcc: Error out when conflicting multilib is detected.  Do not
16463         loop over multilibs since no combination is legal.
16465 2016-05-04  Alan Modra  <amodra@gmail.com>
16467         * config/rs6000/rs6000.h (PIC_OFFSET_TABLE_REGNUM): Correct.
16468         * config/rs6000/sysv4.h (TARGET_TOC): Simplify.
16469         * config/rs6000/rs6000.c (rs6000_elf_output_toc_section_asm_op):
16470         Align .toc.
16472 2016-05-04  Matthew Fortune  <matthew.fortune@imgtec.com>
16474         * config/mips/mips-cpus.def (p5600): Avoid IMADD by default.
16475         Clean up p5600 comments.
16477 2016-05-04  Richard Biener  <rguenther@suse.de>
16479         * match.pd: Add BIT_FIELD_REF canonicalizations and vector
16480         constructor simplifications.
16481         * fold-const.c (fold_ternary_loc): Remove duplicate functionality here.
16483 2016-05-04  Oleg Endo  <olegendo@gcc.gnu.org>
16485         * config/sh/predicates (post_inc_mem, pre_dec_mem): New predicates.
16486         * config/sh/sh-protos.h (sh_find_set_of_reg): Return null result if
16487         result.set_rtx is null instead of aborting.
16488         * config/sh/sh.h (USE_LOAD_POST_INCREMENT, USE_STORE_PRE_DECREMENT):
16489         Always enable.
16490         (USE_LOAD_PRE_DECREMENT, USE_STORE_POST_INCREMENT): Enable for SH2A.
16491         * config/sh/sh.md (*extend<mode>si2_predec, *mov<mode>_load_predec,
16492         *mov<mode>_store_postinc): New patterns.
16494 2016-05-04  Marc Glisse  <marc.glisse@inria.fr>
16496         * match.pd ((A | B) & (A | C)): Generalize to BIT_XOR_EXPR.  Mark
16497         as commutative.  Check both conversions are NOP.
16498         ((A & B) OP (C & B)): Remove.
16500 2016-05-04  Alan Modra  <amodra@gmail.com>
16502         * combine.c (simplify_set): Correct WORD_REGISTER_OPERATIONS test.
16504 2016-05-04  Alan Modra  <amodra@gmail.com>
16506         PR target/70866
16507         * config/rs6000/rs6000.c (rs6000_stack_info): Don't set cr_save_p
16508         when cr2,3,4 are all fixed regs.
16510 2016-05-04  Bernd Schmidt  <bschmidt@redhat.com>
16512         PR rtl-optimization/57193
16513         * opts.c (default_options_table): Revert OPT_frename_registers change.
16514         * doc/invoke.texi (-frename-registers, -O2): Likewise.
16516 2016-05-03  Martin Sebor  <msebor@redhat.com>
16518         PR c++/66561
16519         * builtins.c (fold_builtin_FILE): New function.
16520         (fold_builtin_FUNCTION, fold_builtin_LINE): New functions.
16521         (fold_builtin_0): Call them.
16522         * gimplify.c (gimplify_call_expr): Remove the handling of
16523         BUILT_IN_FILE, BUILT_IN_FUNCTION, and BUILT_IN_LINE.
16525         PR c++/66561
16526         * doc/extend.texi (Other Builtins): Update __builtin_FILE,
16527         __builtin_FUNCTION, and __builtin_LINE to reflect they yield
16528         constants.
16530         PR c++/66639
16531         * doc/extend.texi (Function Names as Strings): Update __func__,
16532         __FUNCTION__, __PRETTY_FUNCTION__ to reflect they evaluate to
16533         constants.
16535 2016-05-03  Jakub Jelinek  <jakub@redhat.com>
16536             Richard Biener  <rguenther@suse.de>
16538         PR tree-optimization/70916
16539         * tree-if-conv.c: Include cfganal.h.
16540         (pass_if_conversion::execute): Call connect_infinite_loops_to_exit
16541         and remove_fake_exit_edges around the optimization pass.
16543 2016-05-03  Jan Hubicka  <hubicka@ucw.cz>
16545         * cgraph.c (symbol_table::create_edge): Set inline_failed.
16546         (cgraph_edge::make_direct): Likewise.
16547         (cgraph_edge::dump_edge_flags): Dump call_stmt_cannot_inline_p.
16548         * cgraphclones.c (duplicate_thunk_for_node): Set inline_failed.
16549         * cif-code.def (CIF_LTO_MISMATCHED_DECLARATIONS): New code
16550         (CIF_THUNK): New code.
16551         * ipa-inline-analysis.c (initialize_inline_failed): Preserve
16552         CIF_FINAL_ERROR codes; do not deal with call_stmt_cannot_inline_p.
16553         (compute_inline_parameters): Set inline_failed for thunks.
16554         (inline_analyze_function): Cleanup.
16555         * ipa-inline.c (can_inline_edge_p): Do not deal with
16556         call_stmt_cannot_inline_p.
16557         (can_early_inline_edge_p): Likewise.
16558         (early_inliner): Initialize inline_failed.
16559         * lto-cgraph.c (lto_output_edge): Sanity check inline_failed.
16561 2016-05-03  Uros Bizjak  <ubizjak@gmail.com>
16563         * config/i386/predicates.md (x87nonimm_ssenomem_operand): Rename
16564         from nonimm_ssenomem_operand.
16565         (nonimm_ssenomem_operand): New predicate.
16566         * config/i386/i386.md (extendsfdf2): Use nonimm_ssenomem_operand
16567         as operand 0 predicate.
16568         (*extendsfdf2): Merge from *extendsfdf2_mixed and *extendsfdf2_i387.
16569         Disable unsupported alternatives using "enabled" attribute.
16570         Use register_ssemem_operand as operand 0 predicate.
16571         (*fop_<mode>_1): Use x87nonimm_ssenomem_operand as operand 1 predicate.
16573 2016-05-03  Marek Polacek  <polacek@redhat.com>
16575         PR c/70859
16576         * input.c (expansion_point_location): New function.
16577         * input.h (expansion_point_location): Declare.
16579 2016-05-03  Pierre-Marie de Rodat  <derodat@adacore.com>
16581         * dwarf2out.c (resolve_args_picking_1): Replace the frame_offset
16582         occurence with frame_offset_ ones.
16584 2016-05-03  Alan Modra  <amodra@gmail.com>
16586         PR rtl-optimization/70890
16587         * ira.c (combine_and_move_insns): When moving def_insn, remove
16588         equivs on use_insn.
16590 2016-05-03  Dominik Vogt  <vogt@linux.vnet.ibm.com>
16592         * config/s390/s390.md ("*r<noxa>sbg_<mode>_sll")
16593         ("*r<noxa>sbg_<mode>_srl"): New define_insns.
16594         ("*r<noxa>sbg_<mode>_srl_bitmask"): Rename by adding "_bitmask".
16595         ("*r<noxa>sbg_<mode>_sll_bitmask"): Likewise.
16597 2016-05-03  Alan Modra  <amodra@gmail.com>
16599         * config/rs6000/rs6000.c (rs6000_savres_strategy): Correct condition
16600         for SAVE_MULTIPLE/STORE_MULTIPLE.
16602 2016-05-03  Jakub Jelinek  <jakub@redhat.com>
16604         * config/i386/i386.md (*truncdfsf_mixed, *truncdfsf_i387,
16605         *truncxfsf2_mixed, *truncxfdf2_mixed): Use v constraint instead of x.
16607 2016-05-03  Richard Biener  <rguenther@suse.de>
16609         * gimplify.h (get_initialized_tmp_var): Add allow_ssa parameter
16610         default true.
16611         (gimplify_arg): Likewise.
16612         * gimplify.c (gimplify_expr): Add overload with allow_ssa parameter,
16613         re-writing the result to a decl if required.
16614         (internal_get_tmp_var): Add allow_ssa parameter
16615         and override into_ssa with it.
16616         (get_formal_tmp_var): Adjust.
16617         (get_initialized_tmp_var): Add allow_ssa parameter.
16618         (gimplify_arg): Add allow_ssa parameter and avoid generating
16619         SSA names for the result false.
16620         (gimplify_call_expr): If the call may return twice do not
16621         gimplify parameters into SSA.
16622         (prepare_gimple_addressable): Do not allow an SSA name as temporary.
16623         (gimplify_modify_expr): Adjust assert.  For noreturn calls
16624         with a SSA name LHS adjust its def.
16625         (gimplify_save_expr): Do not allow an SSA name as save-expr result.
16626         (gimplify_one_sizepos): Do not allow an SSA name as a sizepos.
16627         (gimplify_body): Init GIMPLE SSA data structures and gimplify into-SSA.
16628         (gimplify_scan_omp_clauses): Make sure OMP_CLAUSE_SIZE is not
16629         an SSA name.  Likewise for OMP_CLAUSE_REDUCTION operands.
16630         (gimplify_omp_for): Likewise for OMP_CLAUSE_DECL.  Likewise
16631         for OMP_FOR_COND,  OMP_FOR_INCR and OMP_CLAUSE_LINEAR_STEP.
16632         (optimize_target_teams): Do not allow SSA names for clause operands.
16633         (gimplify_expr): Likewise for where we mark the result addressable.
16634         * passes.def (pass_init_datastructures): Remove.
16635         * tree-into-ssa.c (mark_def_sites): Ignore existing SSA names.
16636         (rewrite_stmt): Likewise.
16637         * tree-inline.c (initialize_cfun): Properly transfer SSA state.
16638         (replace_locals_op): Replace SSA names.
16639         (copy_gimple_seq_and_replace_locals): Init src_cfun.
16640         * gimple-low.c (lower_builtin_setjmp): Deal with SSA.
16641         * cgraph.c (release_function_body): Free CFG annotations only
16642         when we have a CFG.  Simplify.
16643         * gimple-fold.c (gimplify_and_update_call_from_tree): Use
16644         force_gimple_operand instead of get_initialized_tmp_var.
16645         * tree-pass.h (make_pass_init_datastructures): Remove.
16646         * tree-ssa.c (execute_init_datastructures): Remove.
16647         (pass_data_init_datastructures): Likewise.
16648         (class pass_init_datastructures): Likewise.
16649         (make_pass_init_datastructures): Likewise.
16650         * omp-low.c (create_omp_child_function): Init SSA data structures.
16651         (grid_expand_target_grid_body): Likewise.
16652         * tree-cfg.c (move_block_to_fn): Double-check the DEF is an SSA
16653         name before adding it to names_to_release.
16654         (remove_bb): Always release SSA defs.
16655         * tree-ssa-ccp.c (get_default_value): Check SSA_NAME_VAR
16656         before dereferencing it.
16657         * cgraphunit.c (init_lowered_empty_function): Always
16658         int SSA data structures.
16659         * tree-ssanames.c (release_defs): Remove assert that we are in
16660         SSA form.
16661         * trans-mem.c (diagnose_tm_1): Handle SSA name function.
16663 2016-05-03  Jakub Jelinek  <jakub@redhat.com>
16664             Uros Bizjak  <ubizjak@gmail.com>
16666         PR rtl-optimization/70467
16667         * config/i386/predicates.md (x86_64_hilo_int_operand,
16668         x86_64_hilo_general_operand): New predicates.
16669         * config/i386/constraints.md (Wd): New constraint.
16670         * config/i386/i386.md (mode attr di): Use Wd instead of e.
16671         (general_hilo_operand): New mode attr.
16672         (add<mode>3, sub<mode>3): Use <general_hilo_operand>
16673         instead of <general_operand>.
16674         (*add<dwi>3_doubleword, *sub<dwi>3_doubleword): Use
16675         x86_64_hilo_general_operand instead of <general_operand>.
16677 2016-05-03  Jakub Jelinek  <jakub@redhat.com>
16679         PR tree-optimization/70916
16680         * tree-if-conv.c (constant_or_ssa_name): Removed.
16681         (fold_build_cond_expr): Use is_gimple_val instead of
16682         constant_or_ssa_name.
16684         PR tree-optimization/70916
16685         * tree-vect-patterns.c (vect_recog_mask_conversion_pattern): Give up
16686         if COND_EXPR rhs1 is neither SSA_NAME nor COMPARISON_CLASS_P.
16688         PR target/49244
16689         * tree-ssa-ccp.c: Include stor-layout.h and optabs-query.h.
16690         (optimize_atomic_bit_test_and): New function.
16691         (pass_fold_builtins::execute): Use it.
16692         * optabs.def (atomic_bit_test_and_set_optab,
16693         atomic_bit_test_and_complement_optab,
16694         atomic_bit_test_and_reset_optab): New optabs.
16695         * internal-fn.def (ATOMIC_BIT_TEST_AND_SET,
16696         ATOMIC_BIT_TEST_AND_COMPLEMENT, ATOMIC_BIT_TEST_AND_RESET): New ifns.
16697         * builtins.h (expand_ifn_atomic_bit_test_and): New prototype.
16698         * builtins.c (expand_ifn_atomic_bit_test_and): New function.
16699         * internal-fn.c (expand_ATOMIC_BIT_TEST_AND_SET,
16700         expand_ATOMIC_BIT_TEST_AND_COMPLEMENT,
16701         expand_ATOMIC_BIT_TEST_AND_RESET): New functions.
16702         * doc/md.texi (atomic_bit_test_and_set@var{mode},
16703         atomic_bit_test_and_complement@var{mode},
16704         atomic_bit_test_and_reset@var{mode}): Document.
16705         * config/i386/sync.md (atomic_bit_test_and_set<mode>,
16706         atomic_bit_test_and_complement<mode>,
16707         atomic_bit_test_and_reset<mode>): New expanders.
16708         (atomic_bit_test_and_set<mode>_1,
16709         atomic_bit_test_and_complement<mode>_1,
16710         atomic_bit_test_and_reset<mode>_1): New insns.
16712 2016-05-03  Richard Sandiford  <richard.sandiford@arm.com>
16714         PR rtl-optimization/70687
16715         * combine.c (change_zero_ext): Check for scalar modes.  Use wide_int
16716         instead of unsigned HOST_WIDE_INT.
16718 2016-05-03  Bernd Schmidt  <bschmidt@redhat.com>
16720         PR rtl-optimization/44281
16721         * hard-reg-set.h (struct target_hard_regs): New field
16722         x_fixed_nonglobal_reg_set.
16723         (fixed_nonglobal_reg_set): New macro.
16724         * reginfo.c (init_reg_sets_1): Initialize it.
16725         * ira.c (setup_alloc_regs): Use fixed_nonglobal_reg_set instead
16726         of fixed_reg_set.
16727         * df-scan.c (df_insn_refs_collect): Asms may reference global regs.
16729 2016-05-03  Bin Cheng  <bin.cheng@arm.com>
16731         PR tree-optimization/56541
16732         * doc/invoke.texi (@item max-tree-if-conversion-phi-args): New item.
16733         * params.def (PARAM_MAX_TREE_IF_CONVERSION_PHI_ARGS): new param.
16734         * tree-if-conv.c (MAX_PHI_ARG_NUM): new macro.
16735         (any_complicated_phi): new static variable.
16736         (aggressive_if_conv): delete.
16737         (if_convertible_phi_p): support phis with more than two arguments.
16738         (if_convertible_bb_p): remvoe check on aggressive_if_conv and
16739         critical pred edges.
16740         (ifcvt_split_critical_edges): support phis with more than two
16741         arguments by checking new parameter.  only split critical edges
16742         if needed.
16743         (tree_if_conversion): handle simd pragma marked loop using new
16744         local variable aggressive_if_conv.  check any_complicated_phi.
16746 2016-05-03  Bin Cheng  <bin.cheng@arm.com>
16748         * tree-ssa-loop-ivopts.c (get_computation_cost_at): Check depends_on
16749         before using it.
16751 2016-05-03  Bin Cheng  <bin.cheng@arm.com>
16753         * tree-ssa-loop-ivopts.c (get_computation_cost_at): Don't clobber
16754         cbase.
16756 2016-05-03  Oleg Endo  <olegendo@gcc.gnu.org>
16758         * config/sh/sh.md (udivsi3, divsi3, mulsi3): Simplify.
16759         (mulhisi3, umulhisi3, (smulsi3_highpart, umulsi3_highpart): Convert to
16760         define_insn_and_split.
16761         (mulsi3_i): New define_insn_and_split.
16762         (mulsi3_call): Convert to define_insn.
16763         (mulsidi3, mulsidi3_compact, umulsidi3, umulsidi3_compact):
16764         Remove constraints.
16766 2016-05-02  Michael Meissner  <meissner@linux.vnet.ibm.com>
16768         * machmode.h (mode_complex): Add support to give the complex mode
16769         for a given mode.
16770         (GET_MODE_COMPLEX_MODE): Likewise.
16771         * stor-layout.c (layout_type): For COMPLEX_TYPE, use the mode
16772         stored by build_complex_type and gfc_build_complex_type instead of
16773         trying to figure out the appropriate mode based on the size. Raise
16774         an assertion error, if the type was not set.
16775         * genmodes.c (struct mode_data): Add field for the complex type of
16776         the given type.
16777         (blank_mode): Likewise.
16778         (make_complex_modes): Remember the complex mode created in the
16779         base type.
16780         (emit_mode_complex): Write out the mode_complex array to map a
16781         type mode to the complex version.
16782         (emit_insn_modes_c): Likewise.
16783         * tree.c (build_complex_type): Set the complex type to use before
16784         calling layout_type.
16785         * config/rs6000/rs6000.c (rs6000_hard_regno_nregs_internal): Add
16786         support for __float128 complex datatypes.
16787         (rs6000_hard_regno_mode_ok): Likewise.
16788         (rs6000_setup_reg_addr_masks): Likewise.
16789         (rs6000_complex_function_value): Likewise.
16790         * config/rs6000/rs6000.h (FLOAT128_IEEE_P): Likewise.
16791         __float128 and __ibm128 complex.
16792         (FLOAT128_IBM_P): Likewise.
16793         (ALTIVEC_ARG_MAX_RETURN): Likewise.
16794         * doc/extend.texi (Additional Floating Types): Document that
16795         -mfloat128 must be used to enable __float128.  Document complex
16796         __float128 and __ibm128 support.
16798 2016-05-02  Jakub Jelinek  <jakub@redhat.com>
16800         PR target/49244
16801         * gimple.c (gimple_builtin_call_types_compatible_p): Allow
16802         char/short arguments promoted to int because of promote_prototypes.
16804 2016-05-02  Uros Bizjak  <ubizjak@gmail.com>
16806         * config/i386/predicates.md (register_ssemem_operand): New predicate.
16807         * config/i386/i386.md (*cmpi<FPCMP:unord><MODEF:mode>): Merge from
16808         *cmpi<FPCMP:unord><MODEF:mode>_mixed and
16809         *cmpi<FPCMP:unord><X87MODEF:mode>_i387.  Disable unsupported
16810         alternatives using "enabled" attribute.  Use register_ssemem_operand
16811         as operand 1 predicate.
16812         (*cmpi<unord>xf_i387): Split XFmode pattern from
16813         *cmpi<FPCMP:unord><X87MODEF:mode>_i387.
16814         (*absneg<mode>2): Merge from *absneg<mode>2_mixed and
16815         *absneg<mode>2_i387.  Disable unsupported alternatives using
16816         "enabled" attribute.
16817         (*absnegxf2_i387): Split XFmode pattern from *absneg<mode>2_i387.
16819 2016-05-02  Nathan Sidwell  <nathan@codesourcery.com>
16821         * omp-low.c (lower_oacc_head_tail): Assert there is at least one
16822         marker.
16823         (oacc_loop_process): Check mask for loop termination.
16825 2016-05-02  Jan Hubicka  <hubicka@ucw.cz>
16827         * cif-code.def (CIF_THUNK): Add.
16828         * ipa-inline-analsysis.c (evaluate_conditions_for_known_args): Revert
16829         accidental change.
16831 2016-05-02  Jan Hubicka  <hubicka@ucw.cz>
16833         * ipa-inline-analysis.c (reset_inline_summary): Clear fp_expressions
16834         (dump_inline_summary): Dump it.
16835         (fp_expression_p): New predicate.
16836         (estimate_function_body_sizes): Use it.
16837         (inline_merge_summary): Merge fp_expressions.
16838         (inline_read_section): Read fp_expressions.
16839         (inline_write_summary): Write fp_expressions.
16840         * ipa-inline.c (can_inline_edge_p): Permit inlining across fp math
16841         codegen boundary if either caller or callee is !fp_expressions.
16842         * ipa-inline.h (inline_summary): Add fp_expressions.
16843         * ipa-inline-transform.c (inline_call): When inlining !fp_expressions
16844         to fp_expressions be sure the fp generation flags are updated.
16846 2016-05-02  Jakub Jelinek  <jakub@redhat.com>
16848         PR rtl-optimization/70467
16849         * cse.c (cse_insn): Handle no-op MEM moves after folding.
16851         PR rtl-optimization/70467
16852         * ipa-pure-const.c (check_call): Handle internal calls even in
16853         ipa mode like in local mode.
16855 2016-05-02  Bernd Edlinger  <bernd.edlinger@hotmail.de>
16857         * doc/install.texi: Document supported in-tree gmp/mpfr/mpc versions.
16859 2016-05-02  Marc Glisse  <marc.glisse@inria.fr>
16861         * match.pd (X u< X, X u> X): New transformations.
16863 2016-05-02  Marc Glisse  <marc.glisse@inria.fr>
16865         * flag-types.h (enum warn_strict_overflow_code): Move ...
16866         * coretypes.h: ... here.
16867         * fold-const.h (fold_overflow_warning): Declare.
16868         * fold-const.c (fold_overflow_warning): Make non-static.
16869         (fold_comparison): Move the transformation of X +- C1 CMP C2
16870         into X CMP C2 -+ C1 ...
16871         * match.pd: ... here.
16872         * gimple-fold.c (fold_stmt_1): Protect with
16873         fold_defer_overflow_warnings.
16875 2016-05-02  Nathan Sidwell  <nathan@codesourcery.com>
16877         * omp-low.c (struct oacc_loop): Add 'inner' field.
16878         (new_oacc_loop_raw): Initialize it to zero.
16879         (oacc_loop_fixed_partitions): Initialize it.
16880         (oacc_loop_auto_partitions): Partition outermost loop to outermost
16881         available partitioning.
16883 2016-05-02  Claudiu Zissulescu  <claziss@synopsys.com>
16885         * config/arc/arc.md (mulsidi3): Change operand 0 predicate to
16886         register_operand.
16887         (umulsidi3): Likewise.
16888         (indirect_jump): Fix jump instruction assembly patterns.
16890 2016-05-02  Thomas Schwinge  <thomas@codesourcery.com>
16892         PR target/70860
16893         * config/nvptx/nvptx.c (nvptx_libcall_value): Handle NULL cfun.
16894         (nvptx_function_value): Assert non-NULL cfun.
16896 2016-05-02  Eric Botcazou  <ebotcazou@adacore.com>
16898         PR rtl-optimization/70886
16899         * sched-deps.c (estimate_dep_weak): Canonicalize cselib values.
16901         * cselib.h (rtx_equal_for_cselib_1): Declare.
16902         (rtx_equal_for_cselib_p: New inline function.
16903         * cselib.c (rtx_equal_for_cselib_p): Delete.
16904         (rtx_equal_for_cselib_1): Make public.
16906 2016-05-02  Uros Bizjak  <ubizjak@gmail.com>
16908         * config/i386/predicates.md (nonimm_ssenomem_operand): New predicate.
16909         (register_mixssei387nonimm_operand): Remove predicate.
16910         * config/i386/i386.md (*fop_<mode>_comm): Merge from
16911         *fop_<mode>_comm_mixed and *fop_<mode>_comm_i387.  Disable unsupported
16912         alternatives using "enabled" attribute.  Also check X87_ENABLE_ARITH
16913         for TARGET_MIX_SSE_I387 alternatives.
16914         (*fop_<mode>_1): Merge from *fop_<mode>_1_mixed and *fop_<mode>_1_i387.
16915         Disable unsupported alternatives using "enabled" attribute.  Use
16916         nonimm_ssenomem_operand as operand 1 predicate.  Also check
16917         X87_ENABLE_ARITH for TARGET_MIX_SSE_I387 alternatives.
16919 2016-05-02  Richard Sandiford  <richard.sandiford@arm.com>
16921         * tree.c (cst_and_fits_in_hwi): Simplify.
16923 2016-05-02  Richard Sandiford  <richard.sandiford@arm.com>
16925         * tree.h (wi::to_wide): New function.
16926         * expr.c (expand_expr_real_1): Use wi::to_wide.
16927         * fold-const.c (int_const_binop_1): Likewise.
16928         (extract_muldiv_1): Likewise.
16930 2016-05-02  Richard Sandiford  <richard.sandiford@arm.com>
16932         * wide-int.h: Update offset_int and widest_int documentation.
16933         (WI_SIGNED_SHIFT_RESULT): New macro.
16934         (wi::binary_shift): Define signed_shift_result_type for
16935         shifts on offset_int- and widest_int-like types.
16936         (generic_wide_int): Support <<= and >>= if << and >> are supported.
16937         * tree.h (int_bit_position): Use shift operators instead of wi::
16938          shifts.
16939         * alias.c (adjust_offset_for_component_ref): Likewise.
16940         * expr.c (get_inner_reference): Likewise.
16941         * fold-const.c (fold_comparison): Likewise.
16942         * gimple-fold.c (fold_nonarray_ctor_reference): Likewise.
16943         * gimple-ssa-strength-reduction.c (restructure_reference): Likewise.
16944         * tree-dfa.c (get_ref_base_and_extent): Likewise.
16945         * tree-ssa-alias.c (indirect_ref_may_alias_decl_p): Likewise.
16946         (stmt_kills_ref_p): Likewise.
16947         * tree-ssa-ccp.c (bit_value_binop_1): Likewise.
16948         * tree-ssa-math-opts.c (find_bswap_or_nop_load): Likewise.
16949         * tree-ssa-sccvn.c (copy_reference_ops_from_ref): Likewise.
16950         (ao_ref_init_from_vn_reference): Likewise.
16952 2016-05-02  Richard Sandiford  <richard.sandiford@arm.com>
16954         * wide-int.h: Update offset_int and widest_int documentation.
16955         (WI_SIGNED_BINARY_PREDICATE_RESULT): New macro.
16956         (wi::binary_traits): Allow ordered comparisons between offset_int and
16957         offset_int, between widest_int and widest_int, and between either
16958         of these types and basic C types.
16959         (operator <, <=, >, >=): Define for the same combinations.
16960         * tree.h (tree_int_cst_lt): Use comparison operators instead
16961         of wi:: comparisons.
16962         (tree_int_cst_le): Likewise.
16963         * gimple-fold.c (fold_array_ctor_reference): Likewise.
16964         (fold_nonarray_ctor_reference): Likewise.
16965         * gimple-ssa-strength-reduction.c (record_increment): Likewise.
16966         * tree-affine.c (aff_comb_cannot_overlap_p): Likewise.
16967         * tree-parloops.c (try_transform_to_exit_first_loop_alt): Likewise.
16968         * tree-sra.c (completely_scalarize): Likewise.
16969         * tree-ssa-alias.c (stmt_kills_ref_p): Likewise.
16970         * tree-ssa-reassoc.c (extract_bit_test_mask): Likewise.
16971         * tree-vrp.c (extract_range_from_binary_expr_1): Likewise.
16972         (check_for_binary_op_overflow): Likewise.
16973         (search_for_addr_array): Likewise.
16974         * ubsan.c (ubsan_expand_objsize_ifn): Likewise.
16976 2016-05-02  Claudiu Zissulescu  <claziss@synopsys.com>
16978         * config/arc/arc.c (arc_preferred_simd_mode): Remove enum keyword.
16979         (arc_save_restore): Likewise.
16980         (arc_dwarf_register_span): Likewise.
16981         (arc_output_pic_addr_const): Initialize suffix variable.
16983 2016-05-02  Martin Liska  <mliska@suse.cz>
16985         * symbol-summary.h (function_summary::function_summary):
16986         Remove checking assert for all cgraph nodes.
16987         (function_summary::get): Check summary_uid.
16988         (symtab_insertion): Check summary_uid.
16990 2016-05-02  Claudiu Zissulescu  <claziss@synopsys.com>
16992         * config/arc/arc-protos.h (compact_memory_operand_p): Declare.
16993         * config/arc/arc.c (arc_output_commutative_cond_exec): Consider
16994         bmaskn instruction.
16995         (arc_dwarf_register_span): Remove enum keyword.
16996         (compact_memory_operand_p): New function.
16997         * config/arc/arc.h (reg_class): Add code density register classes.
16998         (REG_CLASS_NAMES): Likewise.
16999         (REG_CLASS_CONTENTS): Likewise.
17000         * config/arc/arc.md (*movqi_insn): Add code density instructions.
17001         (*movhi_insn, *movsi_insn, *movsf_insn): Likewise.
17002         (*extendhisi2_i, andsi3_i, cmpsi_cc_insn_mixed): Likewise.
17003         (*cmpsi_cc_c_insn, *movsi_ne): Likewise.
17004         * config/arc/constraints.md (C2p, Uts, Cm1, Cm3, Ucd): New
17005         constraints.
17006         (h, Rcd, Rsd, Rzd): New register constraints.
17007         (T): Use compact_memory_operand_p function.
17008         * config/arc/predicates.md (compact_load_memory_operand): Remove.
17010 2016-05-02  Oleg Endo  <olegendo@gcc.gnu.org>
17012         * config/sh/sh.md (*negnegt, *movtt): Remove.
17014 2016-05-02  Marek Polacek  <polacek@redhat.com>
17015             Tom de Vries  <tom@codesourcery.com>
17017         PR tree-optimization/70700
17018         * tree-ssa-structalias.c (dump_pred_graph): Fix getting varinfo for ids
17019         bigger than FIRST_REF_NODE.
17021 2016-05-02  Oleg Endo  <olegendo@gcc.gnu.org>
17023         PR target/52898
17024         * config/sh/sh.c (sh_option_override): Remove TARGET_CBRANCHDI4,
17025         TARGET_CMPEQDI_T.
17026         (prepare_cbranch_operands): Don't use scratch register.  Assume that
17027         function is used when pseudos can be created.
17028         (expand_cbranchdi4): Likewise.  Remove unused TARGET_CMPEQDI_T paths.
17029         * config/sh/sh.md (cbranchsi4): Allow only when pseudos can be created.
17030         (cbranchdi4, cbranchdi4_i): Simplify to single cbranchdi4
17031         define_expand.  Allow it only when pseudos can be created.
17032         * config/sh/sh.opt (mcbranchdi, mcmpeqdi): Delete.
17034 2016-05-01  Uros Bizjak  <ubizjak@gmail.com>
17036         * config/i386/constraints.md (BC): Only allow -1 operands.
17037         * config/i386/sse.md (mov<mode>_internal): Add (v,C) alternative.
17038         Add "enabled" attribute.  Update XI mode attribute calculation.
17039         * config/i386/i386.md (*movxi_internal_avx512f): Add (v,C) alternative.
17040         (*movoi_internal_avx): Update XI mode attribute calculation.
17041         (*movti_internal): Ditto.
17043 2016-05-01  Oleg Endo  <olegendo@gcc.gnu.org>
17045         * config/sh/sh.md (push, pop, ic_invalidate_line, cstoresi4, cstoredi4,
17046         cstoresf4, cstoredf4, fix_truncsfsi2): Remove constraints.
17048 2016-05-01  Eric Botcazou  <ebotcazou@adacore.com>
17050         * config/rs6000/rs6000.c (altivec_expand_lv_builtin): Do not use switch
17051         statement on instruction code.  Remove trailing spaces.
17052         (altivec_expand_stv_builtin): Likewise.
17054 2016-05-01  Oleg Endo  <olegendo@gcc.gnu.org>
17056         * config/sh/sh.h (TARGET_SH4): Remove and use default implementation.
17057         (TARGET_FPU_DOUBLE): Simplify.
17058         (BASE_ARG_REG, DOUBLE_TYPE_SIZE, OPTIMIZE_MODE_SWITCHING): Replace
17059         'TARGET_SH4 || TARGET_SH2A_DOUBLE' conditions with 'TARGET_FPU_DOUBLE'.
17060         * config/sh/sh.c: Replace 'TARGET_SH4 || TARGET_SH2A_DOUBLE' conditions
17061         with 'TARGET_FPU_DOUBLE'.
17062         * config/sh/sh.md: Likewise.
17064 2016-05-01  Yoshinori Sato  <ysato@users.sourceforge.jp>
17066         * config/sh/linux.h (SH_DIV_STRATEGY_DEFAULT,
17067         SH_DIV_STR_FOR_SIZE): Remove.
17068         * config/sh/netbsd-elf.h (SH_DIV_STRATEGY_DEFAULT,
17069         SH_DIV_STR_FOR_SIZE): Remove.
17071 2016-05-01  Oleg Endo  <olegendo@gcc.gnu.org>
17073         * config/sh/predicates.md (any_register_operand, zero_extend_operand,
17074         logical_reg_operand): Delete.
17075         (arith_operand, arith_reg_dest, arith_or_int_operand, cmpsi_operand,
17076         arith_reg_or_0_operand, arith_reg_or_0_or_1_operand, logical_operand,
17077         logical_and_operand, movsrc_no_disp_mem_operand): Rewrite using
17078         match_operand and match_test.
17079         (sh_const_vec, sh_1el_vec): Remove redundant checks.  Declare local
17080         variables on their first use.  Return bool values.
17081         * config/sh/sh.h (LOAD_EXTEND_OP): Update comment.
17082         * config/sh/sh.md (andsi3, iorsi3): Use arith_reg_dest for result and
17083         arith_reg_operand for input operand.  Remove empty constraints.
17084         (xorsi3): Delete.
17085         (*xorsi3_compact): Rename to xorsi3.
17086         (zero_extend<mode>si2): Use arith_reg_operand for input operand.
17087         (*zero_extend<mode>si2_disp_mem): Update comment.
17088         (mov_nop): Delete.
17090 2016-04-30  Oleg Endo  <olegendo@gcc.gnu.org>
17092         * config/sh/t-sh: Remove SH5 support.
17093         * config.gcc: Likewise.
17094         * configure: Likewise.
17096 2016-04-30  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
17098         * config/darwin.h (LINK_COMMAND_SPEC_A): Handle -fcilkplus.
17100 2016-04-30  Oleg Endo  <olegendo@gcc.gnu.org>
17102         * config/sh/sh.c (register_sh_passes, sh_option_override,
17103         sh_print_operand, prepare_move_operands,
17104         sh_can_follow_jump): Remove TARGET_SH1 checks.
17105         * config/sh/sh.h (TARGET_VARARGS_PRETEND_ARGS, VALID_REGISTER_P,
17106         PROMOTE_MODE): Likewise.
17107         * config/sh/sh.md (adddi3, addsi3, subdi3, subsi3, andsi3,
17108         movdi): Likewise.
17110 2016-04-30  Alan Modra  <amodra@gmail.com>
17112         * config/rs6000/rs6000.c (rs6000_savres_strategy): Force inline
17113         restoring when fixed_reg_p, but allow out-of-line or stmw save.
17114         Check for user regs later to avoid unnecessary looping over regs.
17115         Merge user reg check with non-saved reg check.  Don't force
17116         inline VR restore when static chain used.
17117         (rs6000_frame_related): Omit eh_frame info for user regs when
17118         saving.
17119         (fixed_regs_p): Delete.
17121 2016-04-30  Alan Modra  <amodra@gmail.com>
17123         * config/rs6000/rs6000.c (SAVRES_MULTIPLE): Replace with..
17124         (SAVE_STRATEGY, REST_STRATEGY): ..this.  Renumber and sort enum.
17125         Update all uses.
17127 2016-04-30  Alan Modra  <amodra@gmail.com>
17129         PR target/69645
17130         * config/rs6000/rs6000.c (fixed_reg_p): New function.
17131         (fixed_regs_p): Rename from global_regs_p.  Call fixed_reg_p.
17132         Update all uses.
17134 2016-04-30  Alan Modra  <amodra@gmail.com>
17136         * config/rs6000/rs6000.c (rs6000_conditional_register_usage):
17137         Remove redundant PIC_OFFSET_TABLE_REGNUM test.  Replace with
17138         flag_pic test for Darwin.
17140 2016-04-30  Alan Modra  <amodra@gmail.com>
17142         * regs.h (struct reg_info_t): Delete freq_calls_crossed and
17143         throw_calls_crossed.
17144         (REG_FREQ_CALLS_CROSSED): Delete.
17145         (REG_N_THROWING_CALLS_CROSSED): Delete.
17146         * regstat.c (regstat_bb_compute_ri): Don't calculate
17147         REG_FREQ_CALLS_CROSSED and REG_N_THROWING_CALLS_CROSSED.
17148         (dump_reg_info): Don't print call cross frequency.
17149         * ira.c (combine_and_move_insns): Don't set REG_FREQ_CALLS_CROSSED
17150         and REG_N_THROWING_CALLS_CROSSED.
17152 2016-04-30  Alan Modra  <amodra@gmail.com>
17154         * regs.h (struct reg_info_t): Delete live_length.
17155         (REG_LIVE_LENGTH): Delete macro.
17156         * regstat.c (regstat_bb_compute_ri): Delete artificial_uses,
17157         local_live, local_processed and local_live_last_luid params.
17158         Replace bb_index param with bb.  Don't set REG_LIVE_LENGTH.
17159         Formatting fixes.
17160         (regstat_compute_ri): Adjust for above.  Don't set
17161         REG_LIVE_LENGTH.
17162         (dump_reg_info): Don't print live length.
17163         * ira.c (update_equiv_regs): Replace test of REG_LIVE_LENGTH
17164         with test of setjmp_crosses.  Don't set REG_LIVE_LENGTH.
17165         Localize loop_depth var.
17167 2016-04-30  Alan Modra  <amodra@gmail.com>
17169         * ira.c (enum valid_equiv): New.
17170         (validate_equiv_mem): Return enum.
17171         (update_equiv_mem): Create replacement in more cases.
17172         (add_store_equivs): Update validate_equiv_mem call.
17174 2016-04-30  Alan Modra  <amodra@gmail.com>
17176         * ira.c (combine_and_move_insns): Rather than scanning insns,
17177         use DF infrastucture to find use and def insns.
17179 2016-04-30  Alan Modra  <amodra@gmail.com>
17181         ira.c (combine_and_move_insns): Move invariant conditions..
17182         (ira.c): ..to here.  Call combine_and_move_insns before
17183         add_store_equivs.  Call grow_reg_equivs later.  Allocate
17184         req_equiv later using max_reg_num() rather than global max_regno.
17185         (contains_replace_regs): Delete.
17186         (add_store_equivs): Remove contains_replace_regs test.
17188 2016-04-30  Alan Modra  <amodra@gmail.com>
17190         * ira.c (struct equiv_mem_data): New.
17191         (equiv_mem, equiv_mem_modified): Delete static vars.
17192         (validate_equiv_mem_from_store): Use "data" param to communicate..
17193         (validate_equiv_mem): ..from here.
17195 2016-04-30  Alan Modra  <amodra@gmail.com>
17197         * ira.c (add_store_equivs, combine_and_move_insns): New functions,
17198         split out from..
17199         (update_reg_equivs): ..here.  Move allocation and freeing of
17200         reg_equiv, and calls to grow_reg_equivs, init_alias_analysis,
17201         end_alias_analysis to..
17202         (ira): ..here.
17204 2016-04-30  Alan Modra  <amodra@gmail.com>
17206         * ira.c (pdx_subregs): Delete.
17207         (struct equivalence): Add pdx_subregs field.
17208         (set_paradoxical_subreg): Remove pdx_subregs param.  Update
17209         pdx_subregs access.
17210         (update_equiv_regs): Don't create or free pdx_subregs.  Update
17211         pdx_subregs access.
17213 2016-04-29  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
17215         * config/rs6000/altivec.h: Change definitions of vec_xl and
17216         vec_xst.
17217         * config/rs6000/rs6000-builtin.def (LD_ELEMREV_V2DF): New.
17218         (LD_ELEMREV_V2DI): New.
17219         (LD_ELEMREV_V4SF): New.
17220         (LD_ELEMREV_V4SI): New.
17221         (LD_ELEMREV_V8HI): New.
17222         (LD_ELEMREV_V16QI): New.
17223         (ST_ELEMREV_V2DF): New.
17224         (ST_ELEMREV_V2DI): New.
17225         (ST_ELEMREV_V4SF): New.
17226         (ST_ELEMREV_V4SI): New.
17227         (ST_ELEMREV_V8HI): New.
17228         (ST_ELEMREV_V16QI): New.
17229         (XL): New.
17230         (XST): New.
17231         * config/rs6000/rs6000-c.c (altivec_overloaded_builtins): Add
17232         descriptions for VSX_BUILTIN_VEC_XL and VSX_BUILTIN_VEC_XST.
17233         * config/rs6000/rs6000.c (rs6000_builtin_mask_calculate): Map from
17234         TARGET_P9_VECTOR to RS6000_BTM_P9_VECTOR.
17235         (altivec_expand_builtin): Add handling for
17236         VSX_BUILTIN_ST_ELEMREV_<MODE> and VSX_BUILTIN_LD_ELEMREV_<MODE>.
17237         (rs6000_invalid_builtin): Add error-checking for
17238         RS6000_BTM_P9_VECTOR.
17239         (altivec_init_builtins): Define builtins used to implement vec_xl
17240         and vec_xst.
17241         (rs6000_builtin_mask_names): Define power9-vector.
17242         * config/rs6000/rs6000.h (MASK_P9_VECTOR): Define.
17243         (RS6000_BTM_P9_VECTOR): Define.
17244         (RS6000_BTM_COMMON): Include RS6000_BTM_P9_VECTOR.
17245         * config/rs6000/vsx.md (vsx_ld_elemrev_v2di): New define_insn.
17246         (vsx_ld_elemrev_v2df): Likewise.
17247         (vsx_ld_elemrev_v4sf): Likewise.
17248         (vsx_ld_elemrev_v4si): Likewise.
17249         (vsx_ld_elemrev_v8hi): Likewise.
17250         (vsx_ld_elemrev_v16qi): Likewise.
17251         (vsx_st_elemrev_v2df): Likewise.
17252         (vsx_st_elemrev_v2di): Likewise.
17253         (vsx_st_elemrev_v4sf): Likewise.
17254         (vsx_st_elemrev_v4si): Likewise.
17255         (vsx_st_elemrev_v8hi): Likewise.
17256         (vsx_st_elemrev_v16qi): Likewise.
17257         * doc/extend.texi: Add prototypes for vec_xl and vec_xst.  Correct
17258         grammar.
17260 2016-04-29  Patrick Palka  <ppalka@gcc.gnu.org>
17262         * tree-ssa-threadedge.c (simplify_control_stmt_condition): Split
17263         out into ...
17264         (simplify_control_stmt_condition_1): ... here.  Recurse into
17265         BIT_AND_EXPRs and BIT_IOR_EXPRs.
17267 2016-04-29  David Edelsohn  <dje.gcc@gmail.com>
17269         PR target/69810
17270         * config/rs6000/rs6000.md (EXTQI): Don't allow extension to HImode.
17271         (zero_extendqi<mode>2_dot): Revert earlier conversion from
17272         define_insn_and_split to define_insn.
17273         (zero_extendqi<mode>2_dot2): Same.
17274         (extendqi<mode>2_dot): Same.
17275         (extendqi<mode>2_dot2): Same.
17277 2016-04-29  Uros Bizjak  <ubizjak@gmail.com>
17279         * config/i386/i386.md (unspec): Add UNSPEC_PROBE_STACK.
17280         (probe_stack): New expander.
17281         (probe_stack_<mode>): New insn pattern.
17283 2016-04-29  Uros Bizjak  <ubizjak@gmail.com>
17285         * config/i386/i386.md
17286         (operations with memory inputs setting flags peephole2):
17287         Remove uneeded REG_P checks.  Cleanup pattern generation.
17289 2016-04-29  Ilya Enkovich  <ilya.enkovich@intel.com>
17291         * tree-vect-loop.c (vect_transform_loop): Fix
17292         nb_iterations_upper_bound computation for vectorized loop.
17294 2016-04-29  Marek Polacek  <polacek@redhat.com>
17295             Jakub Jelinek  <jakub@redhat.com>
17297         PR sanitizer/70342
17298         * fold-const.c (tree_single_nonzero_warnv_p): For TARGET_EXPR, use
17299         TARGET_EXPR_SLOT as a base.
17301 2016-04-29  Andrew Burgess  <andrew.burgess@embecosm.com>
17303         * config/arc/arc.md (*loadqi_update): Replace use of 'rI' constraint
17304         with 'rCm2' constraints to limit possible immediate size.
17305         (*load_zeroextendqisi_update): Likewise.
17306         (*load_signextendqisi_update): Likewise.
17307         (*loadhi_update): Likewise.
17308         (*load_zeroextendhisi_update): Likewise.
17309         (*load_signextendhisi_update): Likewise.
17310         (*loadsi_update): Likewise.
17311         (*loadsf_update): Likewise.
17313 2016-04-29  Uros Bizjak  <ubizjak@gmail.com>
17315         * config/i386/predicates.md (constm1_operand): Fix comparison.
17317 2016-04-29  Claudiu Zissulescu  <claziss@synopsys.com>
17319         * testsuite/gcc.target/arc/ieee_eq.c: New test.
17321 2016-04-29  Oleg Endo  <olegendo@gcc.gnu.org>
17323         * common/config/sh/sh-common.c (sh_option_optimization_table): Remove
17324         remaining SH5 related settings.
17325         * config/sh/sh-protos.h (shmedia_cleanup_truncate,
17326         shmedia_prepare_call_address): Delete.
17327         * config/sh/sh.c (sh_print_operand, output_stack_adjust,
17328         DWARF_CIE_DATA_ALIGNMENT, LOCAL_ALIGNMENT): Update comments.
17329         * config/sh/sh.h (SUBTARGET_ASM_RELAX_SPEC,
17330         UNSUPPORTED_SH2A): Remove m5 checks.
17331         (sh_divide_strategy_e): Remove SH5 division strategies.
17332         (TARGET_PTRMEMFUNC_VBIT_LOCATION): Remove and use default.
17333         * config/sh/sh.md (divsf3): Reinstate define_expand pattern.
17335 2016-04-29  Dominik Vogt  <vogt@linux.vnet.ibm.com>
17337         * config/s390/s390.c (s390_rtx_costs): Update documentation.
17339 2016-04-29  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
17341         * config/s390/2964.md ("z13_unit_fxu", "z13_0"): Remove lder.
17342         * config/s390/s390.md ("movsi_larl", "*movsi_esa", "mov<mode>"):
17343         Change lder to ldr.
17344         * config/s390/vector.md ("mov<mode>"): Likewise.
17346 2016-04-29  Ulrich Weigand  <uweigand@de.ibm.com>
17348         * config/s390/constraints.md ("U", "W"): Invoke
17349         s390_mem_constraint with "ZR" and "ZT".
17350         * config/s390/s390.c (s390_check_qrst_address): Reject invalid
17351         addresses when using LRA.  Accept also short displacements for S
17352         and T constraints.  Do not check for long displacement target for
17353         S and T constraints.
17354         (s390_mem_constraint): Remove handling of U and W constraints.
17355         * config/s390/s390.md (various patterns): Remove the short
17356         displacement constraints (Q and R) if a long displacement
17357         constraint is present.  Add longdisp as required CPU capability.
17358         * config/s390/vector.md: Likewise.
17359         * config/s390/vx-builtins.md: Likewise.
17361 2016-04-29  Senthil Kumar Selvaraj  <senthil_kumar.selvaraj@atmel.com>
17363         PR target/60040
17364         * reload1.c (reload): Call finish_spills before
17365         restarting reload loop. Skip select_reload_regs
17366         if update_eliminables_and_spill returns true.
17368 2016-04-29  Claudiu Zissulescu  <claziss@synopsys.com>
17370         * config/arc/arc.h (UNSIGNED_INT12, UNSIGNED_INT16): Define.
17371         * config/arc/arc.md (umulhisi3): Use arc_short_operand predicate.
17372         (umulhisi3_imm): Update predicates and constraint letters.
17373         (umulhisi3_reg): Declare instruction as commutative.
17374         * config/arc/constraints.md (J12, J16): New constraints.
17375         * config/arc/predicates.md (short_unsigned_const_operand): New
17376         predicate.
17377         (arc_short_operand): Likewise.
17378         * testsuite/gcc.target/arc/umulsihi3_z.c: New file.
17380 2016-04-29  Richard Biener  <rguenther@suse.de>
17382         PR tree-optimization/13962
17383         PR tree-optimization/65686
17384         * tree-ssa-alias.h (ptrs_compare_unequal): Declare.
17385         * tree-ssa-alias.c (ptrs_compare_unequal): New function
17386         using PTA to compare pointers.
17387         * match.pd: Add pattern for pointer equality compare simplification
17388         using ptrs_compare_unequal.
17390 2016-04-29  Richard Biener  <rguenther@suse.de>
17392         * stor-layout.c (layout_type): Do not build a pointer-to-element
17393         type for arrays.
17395 2016-04-29  Uros Bizjak  <ubizjak@gmail.com>
17397         * config/i386/i386.md (Load+RegOp to Mov+MemOp peephole2):
17398         Use SWI mode iterator.  Use general_reg_operand predicate.
17399         (Load+RegOp to Mov+MemOp peephole2 with vector regs): Split
17400         peephole to MMX and SSE part.  Use mmx_reg_operand and sse_reg_operand
17401         predicates.
17403 2016-04-29  Jakub Jelinek  <jakub@redhat.com>
17405         PR middle-end/70843
17406         * fold-const.c (operand_equal_p): Don't verify hash value equality
17407         if arg0 == arg1.
17408         * tree.c (inchash::add_expr): Handle STATEMENT_LIST.  Ignore BLOCK
17409         and OMP_CLAUSE.
17411 2016-04-28  Jakub Jelinek  <jakub@redhat.com>
17413         PR target/70858
17414         * config/i386/i386.c (bdesc_special_args): Add | OPTION_MASK_ISA_64BIT
17415         to __builtin_ia32_lwpval64 and __builtin_ia32_lwpins64.
17416         (bdesc_args): Add | OPTION_MASK_ISA_64BIT to __builtin_ia32_bextr_u64,
17417         __builtin_ia32_bextri_u64, __builtin_ia32_bzhi_di,
17418         __builtin_ia32_pdep_di and __builtin_ia32_pext_di.
17420 2016-04-28  Segher Boessenkool  <segher@kernel.crashing.org>
17422         * config/rs6000/rs6000.c (compute_save_world_info): Rename info_ptr
17423         to info.  Don't initialize separate fields to 0.  Clean up
17424         formatting a bit.
17426 2016-04-28  Uros Bizjak  <ubizjak@gmail.com>
17428         * config/i386/i386.md (peephole2s for operations with memory inputs):
17429         Use SWI mode iterator.
17430         (peephole2s for operations with memory outputs): Ditto.
17431         Do not check for stack checking probe.
17433         (probe_stack): Remove expander.
17435 2016-04-28  Joern Rennecke  <joern.rennecke@embecosm.com>
17436             Andrew Burgess  <andrew.burgess@embecosm.com>
17438         * config/arc/arc.c (arc_print_operand): Print integer 'H' / 'L'
17439         operands as 32-bits.
17441 2016-04-28  Jason Merrill  <jason@redhat.com>
17443         * gdbinit.in: Skip line-map.h.
17445 2016-04-28  Joern Rennecke  <joern.rennecke@embecosm.com>
17446             Andrew Burgess  <andrew.burgess@embecosm.com>
17448         * config/arc/arc.c (arc_conditional_register_usage): Take
17449         TARGET_RRQ_CLASS into account.
17450         (arc_print_operand): Support printing 'p' and 's' operands.
17451         * config/arc/arc.h (TARGET_NPS_BITOPS_DEFAULT): Provide default
17452         as 0.
17453         (TARGET_RRQ_CLASS): Define.
17454         (IS_POWEROF2_OR_0_P): Define.
17455         * config/arc/arc.md (*movsi_insn): Add w/Clo, w/Chi, and w/Cbi
17456         alternatives.
17457         (*tst_movb): New define_insn.
17458         (*tst): Avoid recognition if it could prevent '*tst_movb'
17459         combination; replace c/CnL with c/Chs alternative.
17460         (*tst_bitfield_tst): New define_insn.
17461         (*tst_bitfield_asr): New define_insn.
17462         (*tst_bitfield): New define_insn.
17463         (andsi3_i): Add Rrq variant.
17464         (extzv): New define_expand.
17465         (insv): New define_expand.
17466         (*insv_i): New define_insn.
17467         (*movb): New define_insn.
17468         (*movb_signed): New define_insn.
17469         (*movb_high): New define_insn.
17470         (*movb_high_signed): New define_insn.
17471         (*movb_high_signed + 1): New define_split pattern.
17472         (*mrgb): New define_insn.
17473         (*mrgb + 1): New define_peephole2 pattern.
17474         (*mrgb + 2): New define_peephole2 pattern.
17475         * config/arc/arc.opt (mbitops): New option for nps400, uses
17476         TARGET_NPS_BITOPS_DEFAULT.
17477         * config/arc/constraints.md (q): Make register class conditional.
17478         (Rrq): New register constraint.
17479         (Chs): New constraint.
17480         (Clo): New constraint.
17481         (Chi): New constraint.
17482         (Cbf): New constraint.
17483         (Cbn): New constraint.
17484         (C18): New constraint.
17485         (Cbi): New constraint.
17487 2016-04-28  Segher Boessenkool  <segher@kernel.crashing.org>
17489         * cfganal.c (bitmap_intersection_of_succs): Delete assert checking
17490         dst->popcount.
17491         (bitmap_intersection_of_preds): Ditto.
17492         (bitmap_union_of_succs): Ditto.
17493         (bitmap_union_of_preds): Ditto.
17494         * sbitmap.c (do_popcount): Delete.
17495         (BITMAP_DEBUGGING): Delete.
17496         (sbitmap_verify_popcount): Delete.
17497         (sbitmap_alloc): Don't initialize the popcount field.
17498         (sbitmap_alloc_with_popcount): Delete.
17499         (sbitmap_resize): Don't resize the popcount array.
17500         (sbitmap_vector_alloc): Don't initialize the popcount field.
17501         (bitmap_copy): Don't copy the popcount array.
17502         (bitmap_clear): Don't clear the popcount array.
17503         (bitmap_clear): Delete the popcount array handling.
17504         (bitmap_ior_and_compl): Delete the popcount assert.
17505         (bitmap_not): Ditto.
17506         (bitmap_and_compl): Ditto.
17507         (bitmap_and): Delete the popcount array handling.
17508         (bitmap_xor): Ditto.
17509         (bitmap_ior): Ditto.
17510         (bitmap_or_and): Delete the popcount assert.
17511         (bitmap_and_or): Ditto.
17512         (popcount_table): Delete.
17513         (sbitmap_elt_popcount): Delete.
17514         * sbitmap.h (simple_bitmap_def): Delete the popcount field.
17515         (bitmap_set_bit): Delete the popcount assert.
17516         (bitmap_clear_bit): Ditto.
17517         (sbitmap_free): Don't free the popcount array.
17518         (sbitmap_alloc_with_popcount): Delete declaration.
17519         (sbitmap_popcount): Ditto.
17521 2016-04-28  Joern Rennecke  <joern.rennecke@embecosm.com>
17522             Andrew Burgess  <andrew.burgess@embecosm.com>
17524         * config/arc/arc.h (SYMBOL_FLAG_CMEM): Define.
17525         (TARGET_NPS_CMEM_DEFAULT): Provide default definition.
17526         * config/arc/arc.c (arc_address_cost): Return 0 for cmem_address.
17527         (arc_encode_section_info): Set SYMBOL_FLAG_CMEM where indicated.
17528         * config/arc/arc.opt (mcmem): New option.
17529         * config/arc/arc.md (*extendqihi2_i): Add r/Uex alternative,
17530         supply length for r/m alternative.
17531         (*extendqisi2_ac): Likewise.
17532         (*extendhisi2_i): Add r/Uex alternative, supply length for r/m and
17533         r/Uex alternative.
17534         (movqi_insn): Add r/Ucm and Ucm/?Rac alternatives.
17535         (movhi_insn): Likewise.
17536         (movsi_insn): Add r/Ucm,Ucm/w alternatives.
17537         (*zero_extendqihi2_i): Add r/Ucm alternative.
17538         (*zero_extendqisi2_ac): Likewise.
17539         (*zero_extendhisi2_i): Likewise.
17540         * config/arc/constraints.md (Uex): New memory constraint.
17541         (Ucm): New define_constraint.
17542         * config/arc/predicates.md (long_immediate_loadstore_operand):
17543         Return 0 for MEM with cmem_address address.
17544         (cmem_address_0): New predicates.
17545         (cmem_address_1): Likewise.
17546         (cmem_address_2): Likewise.
17547         (cmem_address): Likewise.
17549 2016-04-28  Segher Boessenkool  <segher@kernel.crashing.org>
17551         * config/rs6000/rs6000.c (machine_function): Rename
17552         insn_chain_scanned_p to spe_insn_chain_scanned_p.
17553         (rs6000_stack_info): Adjust.
17555 2016-04-28  Joern Rennecke  <joern.rennecke@embecosm.com>
17556             Andrew Burgess  <andrew.burgess@embecosm.com>
17558         * config/arc/constraints.md (Usd): Convert to define_constraint.
17559         (Us<): Likewise.
17560         (Us>): Likewise.
17562 2016-04-28  Jakub Jelinek  <jakub@redhat.com>
17564         PR target/70821
17565         * config/i386/sync.md (define_peephole2 *atomic_fetch_add_cmp<mode>):
17566         Add new peephole2 where the first insn is *mov<mode>_or instead of
17567         *mov<mode>_internal.
17569 2016-04-28  Segher Boesssenkool  <segher@kernel.crashing.org>
17571         * tracer.c (bb_seen): Make static.
17573 2016-04-28  Andrew Burgess  <andrew.burgess@embecosm.com>
17575         * common/config/arc/arc-common.c (arc_handle_option): Add NPS400
17576         support, setup defaults.
17577         * config/arc/arc-opts.h (enum processor_type): Add NPS400.
17578         * config/arc/arc.c (arc_init): Add NPS400 support.
17579         * config/arc/arc.h (CPP_SPEC): Add NPS400 defines.
17580         (TARGET_ARC700): NPS400 is also an ARC700.
17581         * config/arc/arc.opt: Add NPS400 options to -mcpu=.
17583 2016-04-28  Segher Boessenkool  <segher@kernel.crashing.org>
17585         PR target/70668
17586         * config/nds32/nds32.md (casesi): Don't access the operands array
17587         out of bounds.
17589 2016-04-28  Uros Bizjak  <ubizjak@gmail.com>
17591         * config/i386/i386.md (zeroing peephole2): Use general_reg_operand.
17592         (or $-1,reg peephole2): Ditto.
17593         (strict_low_part zeroing peephole2): Use SWI12 mode iterator.
17595 2016-04-28  Markus Trippelsdorf  <markus@trippelsdorf.de>
17597         * doc/extend.texi (Common Function Attributes) [optimize]:
17598         Discourage use of the optimize attribute.
17600 2016-04-28  Bill Seurer  <seurer@linux.vnet.ibm.com>
17602         * config/rs6000/rs6000-builtin.def (vec_adde): Change vec_adde to a
17603         special case builtin.
17604         * config/rs6000/rs6000-c.c (altivec_overloaded_builtins): Remove
17605         ALTIVEC_BUILTIN_VEC_ADDE.
17606         * config/rs6000/rs6000-c.c (altivec_resolve_overloaded_builtin): Add
17607         support for ALTIVEC_BUILTIN_VEC_ADDE.
17608         * config/rs6000/rs6000.c (altivec_init_builtins): Add definition
17609         for __builtin_vec_adde.
17611 2016-04-28  Jakub Jelinek  <jakub@redhat.com>
17613         * config/i386/i386.md (sse4_1_round<mode>2): Add avx512f alternative.
17614         * config/i386/sse.md (sse4_1_round<ssescalarmodesuffix>): Likewise.
17616 2016-04-28  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
17618         PR testsuite/70595
17619         * doc/sourcebuild.texi (Effective-Target Keywords, Other
17620         attributes): Document cilkplus_runtime.
17622 2016-04-28  Martin Jambor  <mjambor@suse.cz>
17624         * tree-cfg.c (verify_expr): Verify that local declarations belong to
17625         this function.  Call verify_expr on MEM_REFs and bases of other
17626         handled_components.
17628 2016-04-28  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
17630         * internal-fn.c (expand_arith_overflow): Convert preprocessor check
17631         for WORD_REGISTER_OPERATIONS to runtime check.
17633 2016-04-28  Claudiu Zissulescu  <claziss@synopsys.com>
17635         * config/arc/arc.h (ASM_SPEC): Pass mfpuda to assembler.
17637 2016-04-28  Claudiu Zissulescu  <claziss@synopsys.com>
17639         * config/arc/arc.c (arc_process_double_reg_moves): Fix for
17640         big-endian compilation.
17641         * config/arc/arc.md (addf3): Likewise.
17642         (subdf3): Likewise.
17643         (muldf3): Likewise.
17645 2016-04-28  Richard Biener  <rguenther@suse.de>
17647         PR tree-optimization/70840
17648         * match.pd: powi(-x, y) and powi(|x|,y) -> powi(x,y) if y is even;
17649         Fix pow(copysign(x, y), z) -> pow(x, z) and add powi variant;
17650         Mark x * pow(x,c) -> pow(x,c+1) commutative.
17651         Add powi(x,y) * powi(z,y) -> powi(x*z,y).
17653 2015-04-28  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
17655         * config/aarch64/aarch64.h (WORD_REGISTER_OPERATIONS): Define to 0
17656         and explain why in a comment.
17658 2016-04-28  Claudiu Zissulescu  <claziss@synopsys.com>
17660         * config/arc/arc.md (cpu_facility): Add fpx variant.
17661         (subdf3): Prohibit use reverse sub when assist operations option
17662         is enabled.
17663         * config/arc/fpx.md (subdf3_insn, *dsubh_peep2_insn): Allow drsub
17664         instructions only when FPX is enabled.
17665         * testsuite/gcc.target/arc/trsub.c: New test.
17667 2016-04-28  Uros Bizjak  <ubizjak@gmail.com>
17669         * config/i386/i386.md (*fop_<mode>_1_mixed): Do not check for
17670         mult_operator when calculating "type" attribute.
17671         (*fop_<mode>_1_i387): Ditto.
17672         (*fop_xf_1_i387): Ditto.
17673         (x87 stack loads peephole2): Add "reg = op (mem, reg)" peephole2.
17674         Use std::swap to swap operands.  Use RTL expressions to generate
17675         converted pattern.
17677 2016-04-28  Claudiu Zissulescu  <claziss@synopsys.com>
17678             Joern Rennecke  <joern.rennecke@embecosm.com>
17680         * config/arc/arc-protos.h (arc_legitimize_pic_address): Remove
17681         declaration.
17682         (emit_pic_move): Remove.
17683         (arc_eh_uses, insn_is_tls_gd_dispatch): Declare.
17684         * config/arc/arc.c (emit_pic_move): Removed.
17685         (TARGET_HAVE_TLS): Define.
17686         (arc_conditional_register_usage): Test for arc_tp_regno.
17687         (arc_print_operand, arc_print_operand_address): Handle TLS
17688         unspecs.
17689         (arc_needs_pcl_p): New function.
17690         (arc_legitimate_pc_offset_p): Use arc_needs_pcl_p.
17691         (arc_legitimate_pic_addr_p): Handle TLS unspecs.
17692         (arc_raw_symbolic_reference_mentioned_p): Likewise.
17693         (arc_get_tp, arc_emit_call_tls_get_addr): New function.
17694         (arc_legitimize_tls_address): Likewise.
17695         (DTPOFF_ZERO_SYM): Define.
17696         (arc_legitimize_pic_address): Make it static, handle TLS cases.
17697         (arc_output_pic_addr_const): Print TLS unspecs.
17698         (prepare_pic_move): New function, replaces emit_pic_move.
17699         (arc_legitimate_constant_p): Handle TLS unspecs.
17700         (arc_legitimate_address_p): Likewise.
17701         (arc_rewrite_small_data_p): Use assert for TLS constants.
17702         (prepare_move_operands): Use prepare_pic_move.
17703         (arc_legitimize_address): Legitimize tls addresses.
17704         (arc_epilogue_uses): Check for arc_tp_regno.
17705         (arc_eh_uses, insn_is_tls_gd_dispatch): New function.
17706         * config/arc/arc.h [DEFAULT_LIBC != LIBC_UCLIBC] (EXTRA_SPECS):
17707         Define.
17708         [DEFAULT_LIBC != LIBC_UCLIBC] (ARC_TLS_EXTRA_START_SPEC):
17709         Likewise.
17710         [DEFAULT_LIBC != LIBC_UCLIBC] (STARTFILE_SPEC): Add
17711         %(arc_tls_extra_start_spec).
17712         (TARGET_CPU_CPP_BUILTINS): Define __ARC_TLS_REGNO__.
17713         (REGNO_OK_FOR_BASE_P): Check for arc_tp_regno.
17714         (EH_USES): Define.
17715         (INSN_REFERENCES_ARE_DELAYED): Use insn_is_tls_gd_dispatch.
17716         * config/arc/arc.md (UNSPEC_TLS_GD, UNSPEC_TLS_LD, UNSPEC_TLS_IE)
17717         (UNSPEC_TLS_OFF): Add.
17718         (R10_REG): Define.
17719         (tls_load_tp_soft, tls_gd_load, tls_gd_get_addr, tls_gd_dispatch)
17720         (get_thread_pointersi): New patterns.
17721         * config/arc/arc.opt (mtp-regno): New option.
17722         * config/arc/predicates.md (move_src_operand): Handle TLS symbols.
17723         (move_dest_operand): Likewise.
17724         * configure: Regenerate.
17725         * configure.ac: Add arc*-*-* case to test for tls.
17726         * doc/invoke.texi (ARC options): Document mtp-regno.
17728 2016-04-28  Claudiu Zissulescu  <claziss@synopsys.com>
17730         * config/arc/arc.c (arc_vector_mode_supported_p): Add support for
17731         the new ARC HS SIMD instructions.
17732         (arc_preferred_simd_mode): New function.
17733         (arc_autovectorize_vector_sizes): Likewise.
17734         (TARGET_VECTORIZE_PREFERRED_SIMD_MODE)
17735         (TARGET_VECTORIZE_AUTOVECTORIZE_VECTOR_SIZES): Define.
17736         (arc_init_reg_tables): Accept new ARC HS SIMD modes.
17737         (arc_init_builtins): Add new SIMD builtin types.
17738         (arc_split_move): Handle 64 bit vector moves.
17739         * config/arc/arc.h (TARGET_PLUS_DMPY, TARGET_PLUS_MACD)
17740         (TARGET_PLUS_QMACW): Define.
17741         * config/arc/builtins.def (QMACH, QMACHU, QMPYH, QMPYHU, DMACH)
17742         (DMACHU, DMPYH, DMPYHU, DMACWH, DMACWHU, VMAC2H, VMAC2HU, VMPY2H)
17743         (VMPY2HU, VADDSUB2H, VSUBADD2H, VADDSUB, VSUBADD, VADDSUB4H)
17744         (VSUBADD4H): New builtins.
17745         * config/arc/simdext.md: Add new ARC HS SIMD instructions.
17746         * testsuite/gcc.target/arc/builtin_simdarc.c: New file.
17748 2016-04-28  Eduard Sanou  <dhole@openmailbox.org>
17749             Matthias Klose  <doko@debian.org>
17751         * doc/cppenv.texi: Document SOURCE_DATE_EPOCH environment variable.
17753 2016-04-28  Richard Biener  <rguenther@suse.de>
17755         PR middle-end/70777
17756         * fold-const.c (fold_binary_loc): Remove x*x to pow(x,2.0)
17757         canonicalization.
17759 2016-04-28  Oleg Endo  <olegendo@gcc.gnu.org>
17761         * common/config/sh/sh-common.c: Remove SH5 support.
17762         * config/sh/constraints.md: Likewise.
17763         * config/sh/config/sh/elf.h: Likewise.
17764         * config/sh/linux.h: Likewise.
17765         * config/sh/netbsd-elf.h: Likewise.
17766         * config/sh/predicates.md: Likewise.
17767         * config/sh/sh-c.c: Likewise.
17768         * config/sh/sh-protos.h: Likewise.
17769         * config/sh/sh.c: Likewise.
17770         * config/sh/sh.h: Likewise.
17771         * config/sh/sh.md: Likewise.
17772         * config/sh/sh.opt: Likewise.
17773         * config/sh/sync.md: Likewise.
17774         * config/sh/sh64.h: Delete.
17775         * config/sh/shmedia.h: Likewise.
17776         * config/sh/shmedia.md: Likewise.
17777         * config/sh/sshmedia.h: Likewise.
17778         * config/sh/t-netbsd-sh5-64: Likewise.
17779         * config/sh/t-sh64: Likewise.
17780         * config/sh/ushmedia.h: Likewise.
17782 2016-04-28  Uros Bizjak  <ubizjak@gmail.com>
17784         * config/i386/i386.md (sign_extend to memory peephole2s): Use
17785         general_reg_operand instead of register_operand predicate.
17787 2016-04-27  Prathamesh Kulkarni  <prathamesh.kulkarni@linaro.org>
17789         * params.def (MIN_PARTITION_SIZE): Set default value to 10000.
17791 2016-04-27  Marc Glisse  <marc.glisse@inria.fr>
17793         * match.pd (A - B > A, A + B < A): New transformations.
17795 2016-04-27  Patrick Palka  <ppalka@gcc.gnu.org>
17797         * genattrtab.c (write_test_expr): New parameter EMIT_PARENS
17798         which defaults to true.  Emit an outer pair of parentheses only if
17799         EMIT_PARENS.  When continuing a chain of && or || (or & or |),
17800         don't emit parentheses for the right-hand operand.
17802 2016-04-27  Jeff Law  <law@redhat.com>
17804         * tree-ssa-dom.c (record_temporary_equivalences): Fix typo in comment.
17806 2016-04-27  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
17808         * config/rs6000/altivec.md (altivec_lvx_<mode>): Remove.
17809         (altivec_lvx_<mode>_internal): Document.
17810         (altivec_lvx_<mode>_2op): New define_insn.
17811         (altivec_lvx_<mode>_1op): Likewise.
17812         (altivec_lvx_<mode>_2op_si): Likewise.
17813         (altivec_lvx_<mode>_1op_si): Likewise.
17814         (altivec_stvx_<mode>): Remove.
17815         (altivec_stvx_<mode>_internal): Document.
17816         (altivec_stvx_<mode>_2op): New define_insn.
17817         (altivec_stvx_<mode>_1op): Likewise.
17818         (altivec_stvx_<mode>_2op_si): Likewise.
17819         (altivec_stvx_<mode>_1op_si): Likewise.
17820         * config/rs6000/rs6000-c.c (altivec_resolve_overloaded_builtin):
17821         Expand vec_ld and vec_st during parsing.
17822         * config/rs6000/rs6000.c (altivec_expand_lvx_be): Commentary
17823         changes.
17824         (altivec_expand_stvx_be): Likewise.
17825         (altivec_expand_lv_builtin): Expand lvx built-ins to expose the
17826         address-masking behavior in RTL.
17827         (altivec_expand_stv_builtin): Expand stvx built-ins to expose the
17828         address-masking behavior in RTL.
17829         (altivec_expand_builtin): Change builtin code arguments for calls
17830         to altivec_expand_stv_builtin and altivec_expand_lv_builtin.
17831         (insn_is_swappable_p): Avoid incorrect swap optimization in the
17832         presence of lvx/stvx patterns.
17833         (alignment_with_canonical_addr): New function.
17834         (alignment_mask): Likewise.
17835         (find_alignment_op): Likewise.
17836         (recombine_lvx_pattern): Likewise.
17837         (recombine_stvx_pattern): Likewise.
17838         (recombine_lvx_stvx_patterns): Likewise.
17839         (rs6000_analyze_swaps): Perform a pre-pass to recognize lvx and
17840         stvx patterns from expand.
17841         * config/rs6000/vector.md (vector_altivec_load_<mode>): Use new
17842         expansions.
17843         (vector_altivec_store_<mode>): Likewise.
17845 2016-04-26  Evandro Menezes  <e.menezes@samsung.com>
17847         * config/aarch64/aarch64.md
17848         (*movhf_aarch64): Add "movi %0, #0" to zero up register and
17849         remove the "fp" attributes.
17850         (*movsf_aarch64): Add "movi %0, #0" to zero up register and
17851         add the "simd" attributes.
17852         (*movdf_aarch64): Likewise.
17853         (*movtf_aarch64): Remove the "fp" attributes.
17854         * testsuite/gcc.target/aarch64/fmovf-zero-reg.c: Update accordingly.
17855         * testsuite/gcc.target/aarch64/fmovd-zero-reg.c: Likewise.
17857 2016-04-27  David Malcolm  <dmalcolm@redhat.com>
17859         * emit-rtl.c (maybe_set_first_label_num): Strengthen param from
17860         rtx to rtx_code_label *.
17861         * rtl.h (maybe_set_first_label_num): Likewise.
17863 2016-04-27  David Malcolm  <dmalcolm@redhat.com>
17865         * df-core.c (df_add_problem): Make the problem param be const.
17866         (df_remove_problem): Make local "problem" be const.
17867         * df-problems.c (problem_RD): Make const.
17868         (problem_LR): Likewise.
17869         (problem_LIVE): Likewise.
17870         (problem_MIR): Likewise.
17871         (problem_CHAIN): Likewise.
17872         (problem_WORD_LR): Likewise.
17873         (problem_NOTE): Likewise.
17874         (problem_MD): Likewise.
17875         * df-scan.c (problem_SCAN): Likewise.
17876         * df.h (struct df_problem): Make field "dependent_problem" be
17877         const.
17878         (struct dataflow): Likewise for field "problem".
17879         (df_add_problem): Make param const.
17881 2016-04-27  Uros Bizjak  <ubizjak@gmail.com>
17883         * config/i386/i386.c (ix86_spill_class): Enable for TARGET_SSE2 when
17884         inter-unit moves to/from vector registers are enabled.  Do not disable
17885         for TARGET_MMX.
17887 2016-04-27  David Malcolm  <dmalcolm@redhat.com>
17889         * df.h (DF_SCAN, DF_LR, DF_LIVE, DF_RD, DF_CHAIN, DF_WORD_LR,
17890         DF_NOTE, DF_MD, DF_MIR, DF_LAST_PROBLEM_PLUS1): Convert from
17891         #define to...
17892         (enum df_problem_id): ...this new enum.
17893         (struct df_problem): Convert field "id" from "int" to
17894         enum df_problem_id.
17896 2016-04-27  David Malcolm  <dmalcolm@redhat.com>
17898         * rtl.def: Update comment for "things in the instruction chain" to
17899         reflect the removal of the leading "i" field for INSN_UID in
17900         r210360.  Fix bogus apostrophe.
17902 2016-04-27  Uros Bizjak  <ubizjak@gmail.com>
17904         * config/i386/i386.md
17905         (lea arith with mem operand + setcc peephole2): Set operator mode.
17907 2016-04-27  H.J. Lu  <hongjiu.lu@intel.com>
17909         PR target/70155
17910         * config/i386/i386.c (scalar_to_vector_candidate_p): Renamed to ...
17911         (dimode_scalar_to_vector_candidate_p): This.
17912         (timode_scalar_to_vector_candidate_p): New function.
17913         (scalar_to_vector_candidate_p): Likewise.
17914         (timode_check_non_convertible_regs): Likewise.
17915         (timode_remove_non_convertible_regs): Likewise.
17916         (remove_non_convertible_regs): Likewise.
17917         (remove_non_convertible_regs): Renamed to ...
17918         (dimode_remove_non_convertible_regs): This.
17919         (scalar_chain::~scalar_chain): Make it virtual.
17920         (scalar_chain::compute_convert_gain): Make it pure virtual.
17921         (scalar_chain::mark_dual_mode_def): Likewise.
17922         (scalar_chain::convert_insn): Likewise.
17923         (scalar_chain::convert_registers): Likewise.
17924         (scalar_chain::add_to_queue): Make it protected.
17925         (scalar_chain::emit_conversion_insns): Likewise.
17926         (scalar_chain::replace_with_subreg): Likewise.
17927         (scalar_chain::replace_with_subreg_in_insn): Likewise.
17928         (scalar_chain::convert_op): Likewise.
17929         (scalar_chain::convert_reg): Likewise.
17930         (scalar_chain::make_vector_copies): Likewise.
17931         (scalar_chain::convert_registers): New pure virtual function.
17932         (class dimode_scalar_chain): New class.
17933         (class timode_scalar_chain): Likewise.
17934         (scalar_chain::mark_dual_mode_def): Renamed to ...
17935         (dimode_scalar_chain::mark_dual_mode_def): This.
17936         (timode_scalar_chain::mark_dual_mode_def): New function.
17937         (timode_scalar_chain::convert_insn): Likewise.
17938         (dimode_scalar_chain::convert_registers): Likewise.
17939         (scalar_chain::compute_convert_gain): Renamed to ...
17940         (dimode_scalar_chain::compute_convert_gain): This.
17941         (scalar_chain::replace_with_subreg): Renamed to ...
17942         (dimode_scalar_chain::replace_with_subreg): This.
17943         (scalar_chain::replace_with_subreg_in_insn): Renamed to ...
17944         (dimode_scalar_chain::replace_with_subreg_in_insn): This.
17945         (scalar_chain::make_vector_copies): Renamed to ...
17946         (dimode_scalar_chain::make_vector_copies): This.
17947         (scalar_chain::convert_reg): Renamed to ...
17948         (dimode_scalar_chain::convert_reg ): This.
17949         (scalar_chain::convert_op): Renamed to ...
17950         (dimode_scalar_chain::convert_op): This.
17951         (scalar_chain::convert_insn): Renamed to ...
17952         (dimode_scalar_chain::convert_insn): This.
17953         (scalar_chain::convert): Call convert_registers.
17954         (convert_scalars_to_vector): Change to scalar_chain pointer to
17955         use timode_scalar_chain in 64-bit mode and dimode_scalar_chain
17956         in 32-bit mode.  Delete scalar_chain pointer.  Call
17957         free_dominance_info in 64-bit mode.
17958         (pass_stv::gate): Remove TARGET_64BIT check.
17959         (ix86_option_override): Put the 64-bit STV pass before the CSE
17960         pass.
17962 2016-04-27  Pierre-Marie de Rodat  <derodat@adacore.com>
17964         * dwarf2out.h (struct dw_loc_descr_node): Remove the
17965         dw_loc_frame_offset field.
17966         * dwarf2out.c (new_loc_descr): Likewise.
17967         (resolve_args_picking_1): Turn the VISITED hash set into a
17968         FRAME_OFFSET hash map. Use it to associate a frame offset to
17969         visited nodes. Remove uses of the CHECKING_P macro.
17970         (resolve_args_picking): Update call to resolve_args_picking_1.
17972 2016-04-27  Martin Liska  <mliska@suse.cz>
17974         * tree-ssa-loop-ivopts.c (iv_ca_dump): Fix level of indentation.
17975         (free_loop_data): Release vuses of groups.
17977 2016-04-27  Bin Cheng  <bin.cheng@arm.com>
17979         * tree-ssa-loop-ivopts.c (struct iv): Use pointer to struct iv_use
17980         instead of redundant use_id and boolean have_use_for.
17981         (struct iv_use): Change sub_id into group_id.  Remove field next.
17982         Move fields: related_cands, n_map_members, cost_map and selected
17983         to ...
17984         (struct iv_group): ... here.  New structure.
17985         (struct iv_common_cand): Use structure declaration directly.
17986         (struct ivopts_data, iv_ca, iv_ca_delta): Rename fields.
17987         (MAX_CONSIDERED_USES): Rename macro to ...
17988         (MAX_CONSIDERED_GROUPS): ... here.
17989         (n_iv_uses, iv_use, n_iv_cands, iv_cand): Delete.
17990         (dump_iv, dump_use, dump_cand): Refactor format of dump information.
17991         (dump_uses): Rename to ...
17992         (dump_groups): ... here.  Update all uses.
17993         (tree_ssa_iv_optimize_init, alloc_iv): Update all uses.
17994         (find_induction_variables): Refactor format of dump information.
17995         (record_sub_use): Delete.
17996         (record_use): Update all uses.
17997         (record_group): New function.
17998         (record_group_use, find_interesting_uses_op): Call above functions.
17999         Update all uses.
18000         (find_interesting_uses_cond): Ditto.
18001         (group_compare_offset): New function.
18002         (split_all_small_groups): Rename to ...
18003         (split_small_address_groups_p): ... here.  Update all uses.
18004         (split_address_groups):  Update all uses.
18005         (find_interesting_uses): Refactor format of dump information.
18006         (add_candidate_1): Update all uses.  Remove redundant check on iv,
18007         base and step.
18008         (add_candidate, record_common_cand): Remove redundant assert.
18009         (add_iv_candidate_for_biv): Update use.
18010         (add_iv_candidate_derived_from_uses): Update all uses.
18011         (add_iv_candidate_for_groups, record_important_candidates): Ditto.
18012         (alloc_use_cost_map): Ditto.
18013         (set_use_iv_cost, get_use_iv_cost): Rename to ...
18014         (set_group_iv_cost, get_group_iv_cost): ... here.  Update all uses.
18015         (determine_use_iv_cost_generic): Ditto.
18016         (determine_group_iv_cost_generic): Ditto.
18017         (determine_use_iv_cost_address): Ditto.
18018         (determine_group_iv_cost_address): Ditto.
18019         (determine_use_iv_cost_condition): Ditto.
18020         (determine_group_iv_cost_cond): Ditto.
18021         (determine_use_iv_cost): Ditto.
18022         (determine_group_iv_cost): Ditto.
18023         (set_autoinc_for_original_candidates): Update all uses.
18024         (find_iv_candidates): Update all uses.  Refactor dump information.
18025         (determine_use_iv_costs): Ditto.
18026         (determine_iv_costs): Ditto.
18027         (iv_ca_cand_for_use): Rename to ...
18028         (iv_ca_cand_for_group): ... here.  Update all uses.
18029         (iv_ca_add_use, iv_ca_add_group): Ditto.
18030         (iv_ca_set_cp, iv_ca_cost, iv_ca_delta_add): Update all uses.
18031         (iv_ca_delta_join, iv_ca_delta_reverse, iv_ca_delta_free): Ditto.
18032         (iv_ca_new, iv_ca_dump, iv_ca_extend, iv_ca_narrow): Ditto.
18033         (iv_ca_prune, cheaper_cost_with_cand, iv_ca_replace): Ditto.
18034         (try_add_cand_for, try_improve_iv_set, find_optimal_iv_set): Ditto.
18035         (create_new_iv, adjust_iv_update_pos): Ditto.
18036         (rewrite_use_address): Delete.
18037         (rewrite_use_address_1): Rename to ...
18038         (rewrite_use_address): ... here.
18039         (rewrite_use_compare): Update all uses.
18040         (rewrite_use): Delete.
18041         (rewrite_uses): Rename to ...
18042         (rewrite_groups): ... here.  Update all uses.
18043         (remove_unused_ivs, free_loop_data): Update all uses.
18044         (tree_ssa_iv_optimize_finalize, tree_ssa_iv_optimize_loop): Ditto.
18046 2016-04-27  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
18048         * rtlanal.c (nonzero_bits1): Convert preprocessor check
18049         for WORD_REGISTER_OPERATIONS to runtime check.
18051 2016-04-27  Richard Biener  <rguenther@suse.de>
18053         PR ipa/70760
18054         * tree-ssa-structalias.c (find_func_aliases_for_call): Use
18055         aggregate_value_p to determine if a function result is
18056         returned by reference.
18057         (ipa_pta_execute): Functions having their address taken are
18058         not automatically nonlocal.
18060 2016-04-27  Jakub Jelinek  <jakub@redhat.com>
18062         PR sanitizer/70683
18063         * tree-core.h (enum operand_equal_flag): Add OEP_NO_HASH_CHECK.
18064         * fold-const.c (operand_equal_p): If flag_checking and
18065         OEP_NO_HASH_CHECK is not set in flag, recurse with OEP_NO_HASH_CHECK
18066         and if it returns non-zero, assert iterative_hash_expr on both
18067         args is the same.
18069 2016-04-27  Bernd Schmidt  <bschmidt@redhat.com>
18071         * doc/invoke.texi (-frename-registers): Also enabled at -Os.
18073 2016-04-27  Nick Clifton  <nickc@redhat.com>
18075         PR middle-end/49889
18076         * varasm.c (merge_weak): Generate an error if an attempt is made
18077         to convert a non-weak static function into a weak, public function.
18079 2016-04-27  Prathamesh Kulkarni  <prathamesh.kulkarni@linaro.org>
18081         * params.def (MAX_PARTITION_SIZE): New param.
18082         * doc/invoke.texi: Document lto-max-partition.
18084 2016-04-27  Richard Biener  <rguenther@suse.de>
18086         PR ipa/70785
18087         * tree-ssa-structalias.c (refered_from_nonlocal_fn): New
18088         function cummulating used_from_other_partition, externally_visible
18089         and force_output from aliases.
18090         (refered_from_nonlocal_var): Likewise.
18091         (ipa_pta_execute): Use call_for_symbol_and_aliases to cummulate
18092         node flags properly.
18094 2016-04-27  Bernd Schmidt  <bschmidt@redhat.com>
18096         * doc/invoke.texi (Warning Options): Add -Wmemset-elt-size.
18097         (-Wmemset-elt-size): New item.
18099 2016-04-27  Eric Botcazou  <ebotcazou@adacore.com>
18101         PR ada/70759
18102         * stor-layout.h (internal_reference_types): Delete.
18103         * stor-layout.c (reference_types_internal): Likewise.
18104         (internal_reference_types): Likewise.
18105         (layout_type) <REFERENCE_TYPE>: Adjust.
18107 2016-04-27  Jakub Jelinek  <jakub@redhat.com>
18109         PR sanitizer/70683
18110         * tree.h (inchash::add_expr): Add FLAGS argument.
18111         * tree.c (inchash::add_expr): Likewise.  If not OEP_ADDRESS_OF,
18112         use STRIP_NOPS first.  For INTEGER_CST assert not OEP_ADDRESS_OF.
18113         For REAL_CST and !HONOR_SIGNED_ZEROS (t) hash +/- 0 the same.
18114         Formatting fix.  Adjust recursive calls.  For tcc_comparison,
18115         if swap_tree_comparison (code) is smaller than code, hash that
18116         and arguments in the other order.  Hash CONVERT_EXPR the same
18117         as NOP_EXPR.  For OEP_ADDRESS_OF hash MEM_REF with 0 offset
18118         of ADDR_EXPR of decl as the decl itself.  Add or remove
18119         OEP_ADDRESS_OF from recursive flags as needed.  For
18120         FMA_EXPR, WIDEN_MULT_{PLUS,MINUS}_EXPR hash the first two
18121         operands commutatively and only the third one normally.
18122         For internal CALL_EXPR hash in CALL_EXPR_IFN.
18124 2016-04-27  Sebastian Huber  <sebastian.huber@embedded-brains.de>
18126         * config/rtems.h (LIB_SPEC): Add -latomic.
18128 2016-04-27  Joel Sherrill  <joel@rtems.org>
18130         * config/microblaze/rtems.h: Redefine LINK_SPEC to avoid
18131         xilink.ld and flags not relevant to RTEMS.
18133 2016-04-26  Zhouyi Zhou  <yizhouzhou@ict.ac.cn>
18135         * toplev.c (backend_init_target): Avoid calling init_reload when using
18136         LRA.
18138 2016-04-26  Jakub Jelinek  <jakub@redhat.com>
18140         * reorg.c (try_merge_delay_insns): Declare i and j inside the
18141         for loops rather than one for the whole function.
18143 2016-04-26  Marc Glisse  <marc.glisse@inria.fr>
18145         * match.pd (X + CST CMP X): New transformation.
18147 2016-04-26  Marc Glisse  <marc.glisse@inria.fr>
18149         * genmatch.c (write_predicate): Add ATTRIBUTE_UNUSED.
18150         * fold-const.c (fold_binary_loc): Remove 2 transformations
18151         superseded by match.pd.
18152         * match.pd (x+x -> x*2): Generalize to integers.
18154 2016-04-26  Bernd Schmidt  <bschmidt@redhat.com>
18156         * config/i386/i386.md (operation on memory peephole): Duplicate an
18157         existing peephole and adapt it to match lea rather than an operation
18158         that clobbers CC.
18160         PR rtl-optimization/57193
18161         * opts.c (default_options_table): Add OPT_frename_registers at -O2
18162         and above.
18163         * doc/invoke.texi (-frename-registers, -O2): Update documentation.
18165 2016-04-26  Bin Cheng  <bin.cheng@arm.com>
18167         * tree-if-conv.c (any_pred_load_store): New static variable.
18168         (if_convertible_gimple_assign_stmt_p): Remove parameter.  Use
18169         any_pred_load_store instead of and_mask_load_store.
18170         (if_convertible_stmt_p, if_convertible_loop_p_1): Ditto.
18171         (if_convertible_loop_p, insert_gimplified_predicates): Ditto.
18172         (combine_blocks, tree_if_conversion): Ditto.
18174 2016-04-26  Bin Cheng  <bin.cheng@arm.com>
18176         PR tree-optimization/70771
18177         PR tree-optimization/70775
18178         * tree-if-conv.c (if_convertible_phi_p): Remove check on special
18179         virtual PHI nodes.  Delete parameter.
18180         (if_convertible_loop_p_1): Delete argument to above function.
18181         (predicate_all_scalar_phis): Delete code handling single-argument
18182         PHIs.
18183         (tree_if_conversion): Mark and update virtual SSA.
18185 2016-04-26  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
18187         PR target/61821
18188         * config/i386/i386.c (LARGECOMM_SECTION_ASM_OP): Define default.
18189         (x86_elf_aligned_common): Rename to ...
18190         (x86_elf_aligned_decl_common): ... this.
18191         Add decl arg.  Switch to .lbss for largecomm object.  Use
18192         LARGECOMM_SECTION_ASM_OP.
18193         * config/i386/i386-protos.h (x86_elf_aligned_common): Reflect
18194         renaming.
18195         * config/i386/x86-64.h (ASM_OUTPUT_ALIGNED_COMMON): Rename to ...
18196         (ASM_OUTPUT_ALIGNED_DECL_COMMON): ... this.
18197         Pass new decl arg.
18198         * config/i386/sol2.h (ASM_OUTPUT_ALIGNED_COMMON): Likewise.
18199         [!USE_GAS] (LARGECOMM_SECTION_ASM_OP): Define.
18201 2016-04-26  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
18203         PR target/59407
18204         * config/i386/i386.c (SECTION_LARGE): Define.
18205         (x86_64_elf_select_section): Set it for large data/bss sections.
18206         Only clear SECTION_WRITE for .lrodata.
18207         (x86_64_elf_section_type_flags): Set SECTION_LARGE for large
18208         data/bss sections.
18209         * config/i386/sol2.h (MACH_DEP_SECTION_ASM_FLAG): Define.
18210         * varasm.c (default_elf_asm_named_section): Grow flagchars.
18211         [MACH_DEP_SECTION_ASM_FLAG] Emit MACH_DEP_SECTION_ASM_FLAG for
18212         SECTION_MACH_DEP.
18213         * doc/tm.texi.in (Sections, MACH_DEP_SECTION_ASM_FLAG): Describe.
18214         * doc/tm.texi: Regenerate.
18216 2016-04-26  Jakub Jelinek  <jakub@redhat.com>
18218         PR bootstrap/70704
18219         * configure.ac (--enable-checking): Document extra flag, for
18220         non-release builds default to --enable-checking=yes,extra.
18221         If misc checking and extra checking, define CHECKING_P to 2 instead
18222         of 1.
18223         * common.opt (fchecking=): Add.
18224         * doc/invoke.texi (-fchecking=): Document.
18225         * doc/install.texi: Document --enable-checking changes.
18226         * configure: Regenerated.
18227         * config.in: Regenerated.
18229 2016-04-25  Uros Bizjak  <ubizjak@gmail.com>
18231         * config/i386/i386.md (*movxi_internal_avx512f): Use insn type
18232         attribute instead of which_alternative.
18233         * config/i386/sse.md (*mov<mode>_internal): Ditto.
18234         Use EXT_REX_SSE_REG_P where appropriate.
18236 2016-04-25  Uros Bizjak  <ubizjak@gmail.com>
18238         * config/i386/predicates.md (const0_operand): Do not match
18239         const_wide_int code.
18240         (const1_operand): Ditto.
18242 2016-04-25  Uros Bizjak  <ubizjak@gmail.com>
18244         * config/i386/i386.md (*movoi_internal_avx): Set mode attribute to XI
18245         for SSE constm1 operands and TARGET_AVX512VL.
18246         (*movti_internal): Ditto.
18247         (*mov<mode>_or): Use constm1_operand predicate.
18248         * config/i386/sse.md (*mov<mode>_internal): Set mode attribute to XI
18249         for SSE vector_all_ones operands and TARGET_AVX512VL.
18250         * config/i386/predicates.md (constm1_operand): New predicate.
18251         * config/i386/i386.c (standard_sse_constant_opcode): Simplify
18252         emission of constant -1 load.
18254 2016-04-25  Jason Merrill  <jason@redhat.com>
18256         * gdbinit.in: Skip is-a.h.
18258         * attribs.c (register_scoped_attributes): Fix logic.
18259         * attribs.h: Declare register_scoped_attributes.
18261 2016-04-25  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
18263         * config/rs6000/rs6000-builtin.def: Correct pasto error for
18264         stxvd2x and stxvw4x built-in functions.
18266 2016-04-25  DJ Delorie  <dj@redhat.com>
18268         * config/msp430/msp430.md (ashlhi3): Optimize one bit shifts.
18269         (ashrhi3): Likewise.
18270         (lshrhi3): Likewise.
18272 2016-04-25  Richard Biener  <rguenther@suse.de>
18274         PR tree-optimization/70780
18275         * tree-ssa-pre.c (compute_antic_aux): Also return true if the block
18276         wasn't visited yet.
18277         (compute_antic): Mark blocks with abnormal preds as visited as
18278         they have a final empty antic-in solution already.
18280 2016-04-25  Michael Collison  <michael.collison@linaro.org>
18282         * ChangeLog(2016-04-25): Fix ChangeLog formatting.
18284 2016-04-25  Michael Collison  <michael.collison@linaro.org>
18286         * config/arm/neon.md (widen_<us>sum<mode>): New patterns where
18287         mode is VQI to improve mixed mode vectorization.
18288         * config/arm/neon.md (vec_sel_widen_ssum_lo<VQI:mode><VW:mode>3): New
18289         define_insn to match low half of signed vaddw.
18290         * config/arm/neon.md (vec_sel_widen_ssum_hi<VQI:mode><VW:mode>3): New
18291         define_insn to match high half of signed vaddw.
18292         * config/arm/neon.md (vec_sel_widen_usum_lo<VQI:mode><VW:mode>3): New
18293         define_insn to match low half of unsigned vaddw.
18294         * config/arm/neon.md (vec_sel_widen_usum_hi<VQI:mode><VW:mode>3): New
18295         define_insn to match high half of unsigned vaddw.
18296         * config/arm/arm.c (arm_simd_vect_par_cnst_half): New function.
18297         (arm_simd_check_vect_par_cnst_half_p): Likewise.
18298         * config/arm/arm-protos.h (arm_simd_vect_par_cnst_half): Prototype
18299         for new function.
18300         (arm_simd_check_vect_par_cnst_half_p): Likewise.
18301         * config/arm/predicates.md (vect_par_constant_high): Support
18302         big endian and simplify by calling
18303         arm_simd_check_vect_par_cnst_half
18304         (vect_par_constant_low): Likewise.
18306 2016-04-25  Uros Bizjak  <ubizjak@gmail.com>
18308         * config/i386/i386.md (*lea<mode>_general_4): Use const_0_to_3_operand
18309         predicate for operand 2.
18311 2016-04-24  Uros Bizjak  <ubizjak@gmail.com>
18312             H.J. Lu  <hongjiu.lu@intel.com>
18314         * config/i386/i386-protos.h (standard_sse_constant_p): Add
18315         machine_mode argument.
18316         * config/i386/i386.c (standard_sse_constant_p): Return 2 for
18317         constm1_rtx operands.  For VOIDmode constants, get mode from
18318         pred_mode.  Check mode size if the mode is supported by ABI.
18319         (standard_sse_constant_opcode): Do not use standard_constant_p.
18320         Strictly check ABI support for all-ones operands.
18321         (ix86_legitimate_constant_p): Handle TImode, OImode and XImode
18322         immediates. Update calls to standard_sse_constant_p.
18323         (ix86_expand_vector_move): Update calls to standard_sse_constant_p.
18324         (ix86_rtx_costs): Ditto.
18325         * config/i386/i386.md (*movxi_internal_avx512f): Use
18326         nonimmediate_or_sse_const_operand instead of vector_move_operand.
18327         Use (v,BC) alternative instead of (v,C). Use register_operand
18328         checks instead of MEM_P.
18329         (*movoi_internal_avx): Use nonimmediate_or_sse_const_operand instead
18330         of vector_move_operand.  Add (v,BC) alternative and corresponding avx2
18331         isa attribute.  Use register_operand checks instead of MEM_P.
18332         (*movti_internal): Use nonimmediate_or_sse_const_operand for
18333         TARGET_SSE.  Improve TARGET_SSE insn constraint.  Add (v,BC)
18334         alternative and corresponding sse2 isa attribute.
18335         (*movtf_internal, *movdf_internal, *movsf_interal): Update calls
18336         to standard_sse_constant_p.
18337         (FP constant splitters): Ditto.
18338         * config/i386/constraints.md (BC): Do not use standard_sse_constant_p.
18339         (C): Ditto.
18340         * config/i386/predicates.md (constm1_operand): Remove.
18341         (nonimmediate_or_sse_const_operand): Rewrite using RTX.
18342         * config/i386/sse.md (*<avx512>_cvtmask2<ssemodesuffix><mode>): Use
18343         vector_all_ones_operand instead of constm1_operand.
18345 2016-04-24  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
18347         * print-rtl.c (print_rtx_insn_vec): New function.
18348         * print-rtl.h: New prototype.
18349         * store-motion.c (struct st_expr): Make avail_stores a vector.
18350         (st_expr_entry): Adjust.
18351         (free_st_expr_entry): Likewise.
18352         (print_store_motion_mems): Likewise.
18353         (find_moveable_store): Likewise.
18354         (compute_store_table): Likewise.
18355         (delete_store): Likewise.
18356         (build_store_vectors): Likewise.
18358 2016-04-24  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
18360         * reorg.c (try_merge_delay_insns): Make merged_insns a vector.
18362 2016-04-24  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
18364         * vec.h (vec_safe_contains): New function.
18365         (vec::contains): Likewise.
18366         (vec::begin): Likewise.
18367         (vec::end): Likewise.
18369 2016-04-23  Jakub Jelinek  <jakub@redhat.com>
18371         PR sanitizer/70712
18372         * cfgexpand.c (expand_stack_vars): Fix typo.
18374 2016-04-22  Szabolcs Nagy  <szabolcs.nagy@arm.com>
18376         * system.h (list, map, set, vector): Include conditionally.
18377         * auto-profile.c (INCLUDE_MAP, INCLUDE_SET): Define.
18378         * graphite-isl-ast-to-gimple.c (INCLUDE_MAP): Define.
18379         * ipa-icf.c (INCLUDE_LIST): Define.
18380         * config/aarch64/cortex-a57-fma-steering.c (INCLUDE_LIST): Define.
18381         * config/sh/sh.c (INCLUDE_VECTOR): Define.
18382         * config/sh/sh_treg_combine.cc (INCLUDE_ALGORITHM): Define.
18383         (INCLUDE_LIST, INCLUDE_VECTOR): Define.
18384         * cp/logic.cc (INCLUDE_LIST): Define.
18385         * fortran/trans-common.c (INCLUDE_MAP): Define.
18387 2016-04-22  Szabolcs Nagy  <szabolcs.nagy@arm.com>
18389         * auto-profile.c: Remove <string.h> include.
18390         * ipa-icf-gimple.c: Remove <list> include.
18391         * diagnostic.c: Remove <new> include.
18392         * genmatch.c: Likewise.
18393         * pretty-print.c: Likewise.
18394         * toplev.c: Likewise
18395         * c/c-objc-common.c: Likewise.
18396         * cp/error.c: Likewise.
18397         * fortran/error.c: Likewise.
18399 2016-04-22  Richard Biener  <rguenther@suse.de>
18401         * lto-streamer-in.c (input_ssa_names): Do not allocate
18402         GIMPLE_NOP for all SSA names.
18403         * lto-streamer-out.c (output_ssa_names): Do not output
18404         SSA names that should have been released.
18406 2016-04-22  Richard Biener  <rguenther@suse.de>
18408         PR tree-optimization/70740
18409         * tree-ssa-phiprop.c (propagate_with_phi): Handle inserted
18410         VDEF.
18412 2016-04-21  H.J. Lu  <hongjiu.lu@intel.com>
18414         PR target/70750
18415         * config/i386/predicates.md (call_insn_operand): Replace
18416         sibcall_memory_operand with memory_operand.
18418 2016-04-21  Patrick Palka  <ppalka@gcc.gnu.org>
18420         * tree-vrp.c (register_edge_assert_for_2): Remove redundant
18421         has_single_use() tests.
18422         (register_edge_assert_for_1): Likewise.
18423         (find_assert_locations_1): Check the liveness bitmap instead of
18424         checking has_single_use().
18426 2016-04-21  Kirill Yukhin  <kirill.yukhin@intel.com>
18428         PR target/70728
18429         * config/i386/sse.md (define_insn "<shift_insn><mode>3<mask_name>"):
18430         Extract AVX-512BW constraint from AVX.
18432 2016-04-21  Richard Biener  <rguenther@suse.de>
18434         PR tree-optimization/70725
18435         * tree-if-conv.c (if_convertible_phi_p): Adjust guard
18436         for phi_convertible_by_degenerating_args.
18437         (predicate_all_scalar_phis): Handle single-argument PHIs.
18439 2016-04-21  Richard Biener  <rguenther@suse.de>
18441         PR middle-end/70747
18442         * fold-const.c (fold_comparison): Return properly typed
18443         constant boolean.
18445 2016-04-21  Bin Cheng  <bin.cheng@arm.com>
18447         PR tree-optimization/70715
18448         * tree-ssa-loop-niter.c (loop_exits_before_overflow): Check equality
18449         after expanding BASE using expand_simple_operations.
18451 2016-04-21  Marc Glisse  <marc.glisse@inria.fr>
18453         * match.pd (min(-x, -y), max(-x, -y), min(~x, ~y), max(~x, ~y)):
18454         New transformations.
18456 2016-04-21  Marc Glisse  <marc.glisse@inria.fr>
18458         * match.pd (min(int_max, x), max(int_min, x)): New transformations.
18460 2016-04-20  Jan Hubicka  <jh@suse.cz>
18462         * ipa-inline.c (can_inline_edge_p): Pass caller info to
18463         ultiimate_alias_target.
18464         (update_callee_keys): Likewise.
18465         (lookup_recursive_calls): Likewise.
18466         (speculation_useful_p): Likewise.
18468 2016-04-20  Jan Hubicka  <jh@suse.cz>
18470         PR ipa/70018
18471         * cgraph.c (cgraph_set_nothrow_flag_1): Rename to ...
18472         (set_nothrow_flag_1): ... this; handle interposition correctly;
18473         recurse on aliases and thunks.
18474         (cgraph_node::set_nothrow_flag): New.
18475         * ipa-pure-const.c (ignore_edge_for_nothrow): Ignore calls to
18476         functions compiled with non-call exceptions that binds to current
18477         def.
18478         (propagate_nothrow): Be safe WRT interposition.
18479         * cgraph.h (set_nothrow_flag): Update prototype.
18481 2016-04-18  Jan Hubicka  <jh@suse.cz>
18483         * tree-ssa-loop-unswitch.c (tree_unswitch_single_loop): Use also
18484         max_loop_iterations_int.
18485         (tree_unswitch_outer_loop): Likewise.
18487 2016-04-20  Bin Cheng  <bin.cheng@arm.com>
18489         PR tree-optimization/69489
18490         * tree-if-conv.c (phi_convertible_by_degenerating_args): New.
18491         (if_convertible_phi_p): Call phi_convertible_by_degenerating_args.
18492         Revise dump message.
18493         (if_convertible_bb_p): Remove check on edge count of basic block's
18494         predecessors.
18496 2016-04-20  Bin Cheng  <bin.cheng@arm.com>
18498         PR tree-optimization/56625
18499         PR tree-optimization/69489
18500         * tree-data-ref.h (DR_INNERMOST): New macro.
18501         * tree-if-conv.c (innermost_loop_behavior_hash): New class for
18502         hashing struct innermost_loop_behavior.
18503         (ref_DR_map): Remove.
18504         (innermost_DR_map): New map.
18505         (baseref_DR_map): Revise comment.
18506         (hash_memrefs_baserefs_and_store_DRs_read_written_info): Store DR
18507         to innermost_DR_map accroding to its innermost loop behavior.
18508         (ifcvt_memrefs_wont_trap): Get DR from innermost_DR_map according
18509         to its innermost loop behavior.
18510         (if_convertible_loop_p_1): Remove intialization for ref_DR_map.
18511         Add initialization for innermost_DR_map.  Record memory reference
18512         in DR_BASE_ADDRESS if the reference is compound one or it doesn't
18513         have innermost loop behavior.
18514         (if_convertible_loop_p): Remove release for ref_DR_map.  Release
18515         innermost_DR_map.
18517 2016-04-20  Uros Bizjak  <ubizjak@gmail.com>
18519         * config/i386/i386.md (*lea<mode>_general_1): Rename from
18520         *lea_general_1.  Use explicit SWI12 mode interator.
18521         (*lea<mode>_general_2): Rename from *lea_general_2.
18522         Use explicit SWI12 mode interator.
18523         (*lea<mode>_general_3): Rename from *lea_general_3.
18524         Use explicit SWI12 mode interator.
18525         (*lea<SWI12:mode>_general_4): Split from *lea_general_4.
18526         Use explicit SWI12 mode interator.
18527         (*lea<SWI48:mode>_general_4): Split from *lea_general_4.
18528         Use explicit SWI48 mode interator.
18530 2016-04-20  H.J. Lu  <hongjiu.lu@intel.com>
18532         * config/i386/i386.c (ix86_avx256_split_vector_move_misalign):
18533         Short-cut unaligned load and store cases.  Handle all integer
18534         vector modes.
18535         (ix86_expand_vector_move_misalign): Short-cut unaligned load
18536         and store cases.  Call ix86_avx256_split_vector_move_misalign
18537         directly without checking mode class.
18539 2016-04-20  Andrew Pinski  <apinski@cavium.com>
18540             Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
18542         PR target/64971
18543         * config/aarch64/aarch64.md (sibcall): Force call
18544         address to be DImode for ILP32.
18545         (sibcall_value): Likewise.
18547 2016-04-20  H.J. Lu  <hongjiu.lu@intel.com>
18549         * doc/invoke.texi: Replace -skip-rax-setup with -mskip-rax-setup.
18551 2016-04-20  Richard Biener  <rguenther@suse.de>
18553         * gimple-match.h (maybe_build_generic_op): Adjust prototype.
18554         * gimple-match-head.c (maybe_build_generic_op): Pass all ops
18555         by reference, clear op1 and op2 when GENERICizing BIT_FIELD_REF.
18556         (maybe_push_res_to_seq): Adjust.
18557         * gimple-fold.c (maybe_build_generic_op): Likewise.
18559 2016-04-20  Marek Polacek  <polacek@redhat.com>
18561         * tree-if-conv.c (is_false_predicate): For NULL_TREE return false
18562         rather than true.
18564 2016-04-20  Ilya Enkovich  <ilya.enkovich@intel.com>
18566         * config/i386/sse.md (vec_unpacks_lo_hi): Always
18567         use kmovw to support AVX512F target.
18569 2016-04-20  Bin Cheng  <bin.cheng@arm.com>
18571         * tree-scalar-evolution.c (interpret_rhs_expr): Handle BIT_AND_EXPR.
18573 2016-04-20  Marek Polacek  <polacek@redhat.com>
18575         PR tree-optimization/70725
18576         * tree-if-conv.c (is_false_predicate): New function.
18577         (predicate_mem_writes): Use it.
18579 2016-04-20  Richard Biener  <rguenther@suse.de>
18581         PR tree-optimization/70726
18582         * tree-vect-stmts.c (vectorizable_shift): Do not use scalar
18583         shift amounts from a pattern stmt operand.
18585 2016-04-20  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
18587         PR target/70674
18588         * config/s390/s390.c (s390_restore_gprs_from_fprs): Pick the new
18589         stack_restore_from_fpr pattern when restoring r15.
18590         (s390_optimize_prologue): Strip away the memory barrier in the
18591         parallel when trying to get rid of restore insns.
18592         * config/s390/s390.md ("stack_restore_from_fpr"): New insn
18593         definition for loading the stack pointer from an FPR.  Compared to
18594         the normal move insn this pattern includes a full memory barrier.
18596 2016-04-19  Jakub Jelinek  <jakub@redhat.com>
18598         PR middle-end/70680
18599         * gimplify.c (gimplify_omp_for): Call omp_notice_variable for
18600         implicitly linear or lastprivate iterator on the outer context.
18602 2016-04-19  H.J. Lu  <hongjiu.lu@intel.com>
18604         * config/i386/i386.c (ix86_legitimate_combined_insn): Remove
18605         alignment check.
18606         * config/i386/i386.md (ssememalign): Removed.
18607         * config/i386/sse.md: Remove ssememalign attribute from patterns.
18609 2016-04-19  H.J. Lu  <hongjiu.lu@intel.com>
18611         PR target/69201
18612         * config/i386/avx512bwintrin.h (_mm512_mask_loadu_epi16): Pass
18613         const short * to __builtin_ia32_loaddquhi512_mask.
18614         (_mm512_maskz_loadu_epi16): Likewise.
18615         (_mm512_mask_storeu_epi16): Pass short * to
18616         __builtin_ia32_storedquhi512_mask.
18617         (_mm512_mask_loadu_epi8): Pass const char * to
18618         __builtin_ia32_loaddquqi512_mask.
18619         (_mm512_maskz_loadu_epi8): Likewise.
18620         (_mm512_mask_storeu_epi8): Pass char * to
18621         __builtin_ia32_storedquqi512_mask.
18622         * config/i386/avx512fintrin.h (_mm512_loadu_pd): Pass
18623         const double * to __builtin_ia32_loadupd512_mask.
18624         (_mm512_mask_loadu_pd): Likewise.
18625         (_mm512_maskz_loadu_pd): Likewise.
18626         (_mm512_storeu_pd): Pass double * to
18627         __builtin_ia32_storeupd512_mask.
18628         (_mm512_mask_storeu_pd): Likewise.
18629         (_mm512_loadu_ps): Pass const float * to
18630         __builtin_ia32_loadups512_mask.
18631         (_mm512_mask_loadu_ps): Likewise.
18632         (_mm512_maskz_loadu_ps): Likewise.
18633         (_mm512_storeu_ps): Pass float * to
18634         __builtin_ia32_storeups512_mask.
18635         (_mm512_mask_storeu_ps): Likewise.
18636         (_mm512_mask_loadu_epi64): Pass const long long * to
18637         __builtin_ia32_loaddqudi512_mask.
18638         (_mm512_maskz_loadu_epi64): Likewise.
18639         (_mm512_mask_storeu_epi64): Pass long long *
18640         to __builtin_ia32_storedqudi512_mask.
18641         (_mm512_loadu_si512): Pass const int * to
18642         __builtin_ia32_loaddqusi512_mask.
18643         (_mm512_mask_loadu_epi32): Likewise.
18644         (_mm512_maskz_loadu_epi32): Likewise.
18645         (_mm512_storeu_si512): Pass int * to
18646         __builtin_ia32_storedqusi512_mask.
18647         (_mm512_mask_storeu_epi32): Likewise.
18648         * config/i386/avx512vlbwintrin.h (_mm256_mask_storeu_epi8): Pass
18649         char * to __builtin_ia32_storedquqi256_mask.
18650         (_mm_mask_storeu_epi8): Likewise.
18651         (_mm256_mask_loadu_epi16): Pass const short * to
18652         __builtin_ia32_loaddquhi256_mask.
18653         (_mm256_maskz_loadu_epi16): Likewise.
18654         (_mm_mask_loadu_epi16): Pass const short * to
18655         __builtin_ia32_loaddquhi128_mask.
18656         (_mm_maskz_loadu_epi16): Likewise.
18657         (_mm256_mask_loadu_epi8): Pass const char * to
18658         __builtin_ia32_loaddquqi256_mask.
18659         (_mm256_maskz_loadu_epi8): Likewise.
18660         (_mm_mask_loadu_epi8): Pass const char * to
18661         __builtin_ia32_loaddquqi128_mask.
18662         (_mm_maskz_loadu_epi8): Likewise.
18663         (_mm256_mask_storeu_epi16): Pass short * to.
18664         __builtin_ia32_storedquhi256_mask.
18665         (_mm_mask_storeu_epi16): Pass short * to.
18666         __builtin_ia32_storedquhi128_mask.
18667         * config/i386/avx512vlintrin.h (_mm256_mask_loadu_pd): Pass
18668         const double * to __builtin_ia32_loadupd256_mask.
18669         (_mm256_maskz_loadu_pd): Likewise.
18670         (_mm_mask_loadu_pd): Pass onst double * to
18671         __builtin_ia32_loadupd128_mask.
18672         (_mm_maskz_loadu_pd): Likewise.
18673         (_mm256_mask_storeu_pd): Pass double * to
18674         __builtin_ia32_storeupd256_mask.
18675         (_mm_mask_storeu_pd): Pass double * to
18676         __builtin_ia32_storeupd128_mask.
18677         (_mm256_mask_loadu_ps): Pass const float * to
18678         __builtin_ia32_loadups256_mask.
18679         (_mm256_maskz_loadu_ps): Likewise.
18680         (_mm_mask_loadu_ps): Pass const float * to
18681         __builtin_ia32_loadups128_mask.
18682         (_mm_maskz_loadu_ps): Likewise.
18683         (_mm256_mask_storeu_ps): Pass float * to
18684         __builtin_ia32_storeups256_mask.
18685         (_mm_mask_storeu_ps): ass float * to
18686         __builtin_ia32_storeups128_mask.
18687         (_mm256_mask_loadu_epi64): Pass const long long * to
18688         __builtin_ia32_loaddqudi256_mask.
18689         (_mm256_maskz_loadu_epi64): Likewise.
18690         (_mm_mask_loadu_epi64): Pass const long long * to
18691         __builtin_ia32_loaddqudi128_mask.
18692         (_mm_maskz_loadu_epi64): Likewise.
18693         (_mm256_mask_storeu_epi64): Pass long long * to
18694         __builtin_ia32_storedqudi256_mask.
18695         (_mm_mask_storeu_epi64): Pass long long * to
18696         __builtin_ia32_storedqudi128_mask.
18697         (_mm256_mask_loadu_epi32): Pass const int * to
18698         __builtin_ia32_loaddqusi256_mask.
18699         (_mm256_maskz_loadu_epi32): Likewise.
18700         (_mm_mask_loadu_epi32): Pass const int * to
18701         __builtin_ia32_loaddqusi128_mask.
18702         (_mm_maskz_loadu_epi32): Likewise.
18703         (_mm256_mask_storeu_epi32): Pass int * to
18704         __builtin_ia32_storedqusi256_mask.
18705         (_mm_mask_storeu_epi32): Pass int * to
18706         __builtin_ia32_storedqusi128_mask.
18707         * config/i386/i386-builtin-types.def (PCSHORT): New.
18708         (PINT64): Likewise.
18709         (V64QI_FTYPE_PCCHAR_V64QI_UDI): Likewise.
18710         (V32HI_FTYPE_PCSHORT_V32HI_USI): Likewise.
18711         (V32QI_FTYPE_PCCHAR_V32QI_USI): Likewise.
18712         (V16SF_FTYPE_PCFLOAT_V16SF_UHI): Likewise.
18713         (V8DF_FTYPE_PCDOUBLE_V8DF_UQI): Likewise.
18714         (V16SI_FTYPE_PCINT_V16SI_UHI): Likewise.
18715         (V16HI_FTYPE_PCSHORT_V16HI_UHI): Likewise.
18716         (V16QI_FTYPE_PCCHAR_V16QI_UHI): Likewise.
18717         (V8SF_FTYPE_PCFLOAT_V8SF_UQI): Likewise.
18718         (V8DI_FTYPE_PCINT64_V8DI_UQI): Likewise.
18719         (V8SI_FTYPE_PCINT_V8SI_UQI): Likewise.
18720         (V8HI_FTYPE_PCSHORT_V8HI_UQI): Likewise.
18721         (V4DF_FTYPE_PCDOUBLE_V4DF_UQI): Likewise.
18722         (V4SF_FTYPE_PCFLOAT_V4SF_UQI): Likewise.
18723         (V4DI_FTYPE_PCINT64_V4DI_UQI): Likewise.
18724         (V4SI_FTYPE_PCINT_V4SI_UQI): Likewise.
18725         (V2DF_FTYPE_PCDOUBLE_V2DF_UQI): Likewise.
18726         (V2DI_FTYPE_PCINT64_V2DI_UQI): Likewise.
18727         (VOID_FTYPE_PDOUBLE_V8DF_UQI): Likewise.
18728         (VOID_FTYPE_PDOUBLE_V4DF_UQI): Likewise.
18729         (VOID_FTYPE_PDOUBLE_V2DF_UQI): Likewise.
18730         (VOID_FTYPE_PFLOAT_V16SF_UHI): Likewise.
18731         (VOID_FTYPE_PFLOAT_V8SF_UQI): Likewise.
18732         (VOID_FTYPE_PFLOAT_V4SF_UQI): Likewise.
18733         (VOID_FTYPE_PINT64_V8DI_UQI): Likewise.
18734         (VOID_FTYPE_PINT64_V4DI_UQI): Likewise.
18735         (VOID_FTYPE_PINT64_V2DI_UQI): Likewise.
18736         (VOID_FTYPE_PINT_V16SI_UHI): Likewise.
18737         (VOID_FTYPE_PINT_V8SI_UHI): Likewise.
18738         (VOID_FTYPE_PINT_V4SI_UHI): Likewise.
18739         (VOID_FTYPE_PSHORT_V32HI_USI): Likewise.
18740         (VOID_FTYPE_PSHORT_V16HI_UHI): Likewise.
18741         (VOID_FTYPE_PSHORT_V8HI_UQI): Likewise.
18742         (VOID_FTYPE_PCHAR_V64QI_UDI): Likewise.
18743         (VOID_FTYPE_PCHAR_V32QI_USI): Likewise.
18744         (VOID_FTYPE_PCHAR_V16QI_UHI): Likewise.
18745         (V64QI_FTYPE_PCV64QI_V64QI_UDI): Removed.
18746         (V32HI_FTYPE_PCV32HI_V32HI_USI): Likewise.
18747         (V32QI_FTYPE_PCV32QI_V32QI_USI): Likewise.
18748         (V16HI_FTYPE_PCV16HI_V16HI_UHI): Likewise.
18749         (V16QI_FTYPE_PCV16QI_V16QI_UHI): Likewise.
18750         (V8HI_FTYPE_PCV8HI_V8HI_UQI): Likewise.
18751         (VOID_FTYPE_PV32HI_V32HI_USI): Likewise.
18752         (VOID_FTYPE_PV16HI_V16HI_UHI): Likewise.
18753         (VOID_FTYPE_PV8HI_V8HI_UQI): Likewise.
18754         (VOID_FTYPE_PV64QI_V64QI_UDI): Likewise.
18755         (VOID_FTYPE_PV32QI_V32QI_USI): Likewise.
18756         (VOID_FTYPE_PV16QI_V16QI_UHI): Likewise.
18757         * config/i386/i386.c (ix86_emit_save_reg_using_mov): Don't
18758         use UNSPEC_STOREU.
18759         (ix86_emit_restore_sse_regs_using_mov): Don't use UNSPEC_LOADU.
18760         (ix86_avx256_split_vector_move_misalign): Don't use unaligned
18761         load nor store.
18762         (ix86_expand_vector_move_misalign): Likewise.
18763         (bdesc_special_args): Use CODE_FOR_movvNXY_internal and pointer
18764         to scalar function prototype for unaligned load/store builtins.
18765         (ix86_expand_special_args_builtin): Updated.
18766         * config/i386/sse.md (UNSPEC_LOADU): Removed.
18767         (UNSPEC_STOREU): Likewise.
18768         (VI_ULOADSTORE_BW_AVX512VL): Likewise.
18769         (VI_ULOADSTORE_F_AVX512VL): Likewise.
18770         (ssescalarsize): Handle V4TI, V2TI and V1TI.
18771         (<sse>_loadu<ssemodesuffix><avxsizesuffix><mask_name>): Likewise.
18772         (*<sse>_loadu<ssemodesuffix><avxsizesuffix><mask_name>): Likewise.
18773         (<sse>_storeu<ssemodesuffix><avxsizesuffix>): Likewise.
18774         (<avx512>_storeu<ssemodesuffix><avxsizesuffix>_mask): Likewise.
18775         (<sse2_avx_avx512f>_loaddqu<mode><mask_name>): Likewise.
18776         (*<sse2_avx_avx512f>_loaddqu<mode><mask_name>"): Likewise.
18777         (sse2_avx_avx512f>_storedqu<mode>): Likewise.
18778         (<avx512>_storedqu<mode>_mask): Likewise.
18779         (*sse4_2_pcmpestr_unaligned): Likewise.
18780         (*sse4_2_pcmpistr_unaligned): Likewise.
18781         (*mov<mode>_internal): Renamed to ...
18782         (mov<mode>_internal): This.  Remove check of AVX and IAMCU on
18783         misaligned operand.  Replace vmovdqu64 with vmovdqu<ssescalarsize>.
18784         (movsd/movhpd to movupd peephole): Don't use UNSPEC_LOADU.
18785         (movlpd/movhpd to movupd peephole): Don't use UNSPEC_STOREU.
18787 2016-04-19  Richard Biener  <rguenther@suse.de>
18789         PR tree-optimization/70171
18790         * tree-ssa-phiprop.c: Include stor-layout.h.
18791         (phiprop_insert_phi): Handle the aggregate copy case.
18792         (propagate_with_phi): Likewise.
18794 2016-04-19  Uros Bizjak  <ubizjak@gmail.com>
18796         * config/i386/i386.c (ix86_decompose_address): Use lowpart_subreg
18797         instead of simplify_gen_subreg (... , 0).
18798         (ix86_delegitimize_address): Ditto.
18799         (ix86_split_divmod): Ditto.
18800         (ix86_split_copysign_const): Ditto.
18801         (ix86_split_copysign_var): Ditto.
18802         (ix86_expand_args_builtin): Ditto.
18803         (ix86_expand_round_builtin): Ditto.
18804         (ix86_expand_special_args_builtin): Ditto.
18805         * config/i386/i386.md (TARGET_USE_VECTOR_FP_CONVERTS splitters): Ditto.
18806         (TARGET_SSE_PARTIAL_REG_DEPENDENCY splitters and peephole2s): Ditto.
18807         (udivmodqi4): Ditto.
18808         (absneg splitters): Ditto.
18809         (*jcc_bt<mode>_1): Ditto.
18811 2016-04-19  Richard Biener  <rguenther@suse.de>
18813         PR tree-optimization/70724
18814         * tree-ssa-sccvn.c (scc_vn_restore_ssa_info): Split SSA info
18815         restoring out from ...
18816         (free_scc_vn): ... here.
18817         * tree-ssa-sccvn.h (scc_vn_restore_ssa_info): Declare.
18818         * tres-ssa-pre.c (pass_pre::execute): Restore SSA info before
18819         tail merging.
18820         (pass_fre::execute): Restore SSA info.
18822 2016-04-19  Richard Biener  <rguenther@suse.de>
18824         * gimple-walk.h (struct walk_stmt_info): Add stmt member.
18825         * gimple-walk.c (walk_gimple_op): Initialize it.
18826         (walk_gimple_asm): Set wi->is_lhs before each callback invocation.
18827         * tree-inline.c (remap_gimple_op_r): Set SSA_NAME_DEF_STMT when
18828         remapping SSA names of defs.
18829         (copy_bb): Remove walk over all SSA defs and SSA_NAME_DEF_STMT
18830         adjustment.
18832 2016-04-18  Vladimir Makarov  <vmakarov@redhat.com>
18834         PR middle-end/70689
18835         * lra-constraints.c (equiv_substition_p): New.
18836         (process_alt_operands): Use it.
18837         (swap_operands): Swap it.
18838         (curr_insn_transform): Update it.
18840 2016-04-18  Michael Matz  <matz@suse.de>
18842         * tree.h (TYPE_ALIGN, DECL_ALIGN): Return shifted amount.
18843         (SET_TYPE_ALIGN, SET_DECL_ALIGN): New.
18844         * tree-core.h (tree_type_common.align): Use bit-field.
18845         (tree_type_common.spare): New.
18846         (tree_decl_common.off_align): Make smaller.
18847         (tree_decl_common.align): Use bit-field.
18849         * expr.c (expand_expr_addr_expr_1): Use SET_TYPE_ALIGN.
18850         * omp-low.c (install_var_field): Use SET_DECL_ALIGN.
18851         (scan_sharing_clauses): Ditto.
18852         (finish_taskreg_scan): Use SET_DECL_ALIGN and SET_TYPE_ALIGN.
18853         (omp_finish_file): Ditto.
18854         * stor-layout.c (do_type_align): Use SET_DECL_ALIGN.
18855         (layout_decl): Ditto.
18856         (relayout_decl): Ditto.
18857         (finalize_record_size): Use SET_TYPE_ALIGN.
18858         (finalize_type_size): Ditto.
18859         (finish_builtin_struct): Ditto.
18860         (layout_type): Ditto.
18861         (initialize_sizetypes): Ditto.
18862         * targhooks.c (std_gimplify_va_arg_expr): Use SET_TYPE_ALIGN.
18863         * tree-nested.c (insert_field_into_struct): Use SET_TYPE_ALIGN.
18864         (lookup_field_for_decl): Use SET_DECL_ALIGN.
18865         (get_chain_field): Ditto.
18866         (get_trampoline_type): Ditto.
18867         (get_nl_goto_field): Ditto.
18868         * tree-streamer-in.c (unpack_ts_decl_common_value_fields): Use
18869         SET_DECL_ALIGN.
18870         (unpack_ts_type_common_value_fields): Use SET_TYPE_ALIGN.
18871         * gimple-expr.c (copy_var_decl): Use SET_DECL_ALIGN.
18872         * tree.c (make_node_stat): Use SET_DECL_ALIGN and SET_TYPE_ALIGN.
18873         (build_qualified_type): Use SET_TYPE_ALIGN.
18874         (build_aligned_type, build_range_type_1): Ditto.
18875         (build_atomic_base): Ditto.
18876         (build_common_tree_nodes): Ditto.
18877         * cfgexpand.c (align_local_variable): Use SET_DECL_ALIGN.
18878         (expand_one_stack_var_at): Ditto.
18879         * coverage.c (build_var): Use SET_DECL_ALIGN.
18880         * except.c (init_eh): Ditto.
18881         * function.c (assign_parm_setup_block): Ditto.
18882         * symtab.c (increase_alignment_1): Ditto.
18883         * tree-ssa-ccp.c (fold_builtin_alloca_with_align): Ditto.
18884         * tree-vect-stmts.c (ensure_base_align): Ditto.
18885         * varasm.c (align_variable): Ditto.
18886         (assemble_variable): Ditto.
18887         (build_constant_desc): Ditto.
18888         (output_constant_def_contents): Ditto.
18890         * config/arm/arm.c (arm_relayout_function): Use SET_DECL_ALIGN.
18891         * config/avr/avr.c (avr_adjust_type_node): Use SET_TYPE_ALIGN.
18892         * config/mips/mips.c (mips_std_gimplify_va_arg_expr): Ditto.
18893         * config/msp430/msp430.c (msp430_gimplify_va_arg_expr): Ditto.
18894         * config/spu/spu.c (spu_build_builtin_va_list): Use SET_DECL_ALIGN.
18896 2016-04-18  H.J. Lu  <hongjiu.lu@intel.com>
18898         PR target/70708
18899         * config/i386/sse.md (sse2_loadlpd): Accept load from "xm" and
18900         replace %vmovsd with "%vmovq".
18901         (vec_concatv2df): Likewise.
18903 2016-04-18  Uros Bizjak  <ubizjak@gmail.com>
18905         * config/i386/mmx.md (*vec_extractv2sf_0): Use gen_lowpart.
18906         (*vec_extractv2si_0): Ditto.
18907         * config/i386/sse.md (*vec_extractv4sf_0): Ditto.
18908         (zero_extended_scalar_load_operand splitters): Ditto.
18909         (vec_extract splitters): Ditto.
18910         (*vec_extractv4si_0_zext): Ditto.
18911         (avx_<castmode><avxsizesuffix>_<castmode>): Use gen_lowpart
18912         and lowpart_subreg.
18913         (avx512f_<castmode><avxsizesuffix>_<castmode>): Ditto.
18914         (avx512f_<castmode><avxsizesuffix>_256<castmode>): Ditto.
18915         (*sse4_1_extractps): Use lowpart_subreg.
18916         * config/i386/i386.md (x87 floatsplitter): Use gen_lowpart.
18918 2016-04-18  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
18920         * doc/install.texi (Specific, i?86-*-solaris2.10): Update gas and
18921         gld requirements.
18922         (Specific, *-*-solaris2*): Update Solaris 11 bundled gcc versions.
18923         Mention Solaris 11 packaging changes.
18924         Update gas and gld requirements.
18925         Remove reference to pre-Solaris 10 bug.
18926         (Specific, sparc-sun-solaris2*): Remove reference to pre-Solaris 10
18927         systems and bugs.
18928         (Specific, sparc64-*-solaris2*): Remove reference to bootstrap
18929         with cc.
18931 2016-04-17  Jan Hubicka  <jh@suse.cz>
18933         * tree-ssa-loop-ivopts.c (avg_loop_niter): Use also
18934         max_loop_iterations_int.
18936 2016-04-18  Richard Biener  <rguenther@suse.de>
18938         PR tree-optimization/43434
18939         * tree-ssa-structalias.c (struct vls_data): New.
18940         (visit_loadstore): Handle all pointer-based accesses.
18941         (compute_dependence_clique): Compute a bitmap of restrict tags
18942         assigned bases and pass it to visit_loadstore.
18944 2016-04-18  Matthew Wahab  <matthew.wahab@arm.com>
18946         PR target/70711
18947         * config/arm/bpabi.h (BE8_LINK_SPEC): Add entries for armv8+crc,
18948         armv8.1-a and armv8.1-a+crc.
18950 2016-04-18  Richard Biener  <rguenther@suse.de>
18952         PR tree-optimization/70701
18953         * tree-ssa-sccvn.c (vn_reference_lookup_3): Resolve fully constant
18954         references after translating through a memcpy.
18956 2016-04-18  Richard Biener  <rguenther@suse.de>
18958         * tree-ssa-pre.c (postorder, postorder_num): Make locals ...
18959         (compute_antic): ... here.  For partial antic use regular
18960         postorder and scrap iteration.
18961         (compute_partial_antic_aux): Remove unused return value.
18962         (init_pre): Do not allocate postorder.
18963         (fini_pre): Do not free postorder.
18965 2016-04-18  Richard Biener  <rguenther@suse.de>
18967         PR middle-end/37870
18968         * expmed.c (extract_bit_field_1): Remove broken case
18969         using a wider MODE_INT mode.
18971 2016-04-18  Segher Boessenkool  <segher@kernel.crashing.org>
18973         * has-brig.c (lendian16): Don't try to use __builtin_bswap16
18974         unless compiling with at least GCC-4.8.
18976 2016-04-17  Jan Hubicka  <jh@suse.cz>
18978         PR bootstrap/70706
18979         * graphite.c (graphite_finalize): Update call to
18980         tree_estimate_probability.
18981         * predict.h (tree_estimate_probability): Update prototype.
18983 2016-04-17  Jan Hubicka  <jh@suse.cz>
18985         * predict.c (combine_predictions_for_bb): Add dry_run parmaeter.
18986         (tree_estimate_probability): Likewise.
18987         (pass_profile::execute): Update.
18988         (report_predictor_hitrates): New function.
18989         * profile.c (compute_branch_probabilities): Use it.
18990         * predict.h (report_predictor_hitrates): Declare.
18992 2016-04-17  Jan Hubicka  <jh@suse.cz>
18994         PR ipa/70018
18995         * cgraph.h (cgraph_node::set_const_flag,
18996         cgraph_node::set_pure_flag): Update prototype to return bool;
18997         update comment.
18998         * cgraph.c (cgraph_node::call_for_symbol_thunks_and_aliases): Thunks
18999         of interposable symbol are interposable, too.
19000         (cgraph_set_const_flag_1): Rename to ...
19001         (set_const_flag_1): ... this one; change to self recursive function
19002         instead of call_for_symbol_thunks_and_aliases. Handle correctly
19003         clearnig the flag in all variants and also virtual thunks of const
19004         functions are pure; track if any change was done.
19005         (cgraph_node::set_const_flag): Update.
19006         (struct set_pure_flag_info): New struct.
19007         (cgraph_set_pure_flag_1): Rename to ...
19008         (set_pure_flag_1): ... this one; take set_pure_flag_info parameter
19009         rather than pointer encoded flags; track if any changes was done;
19010         handle correctly clearning flag and setting flag of aliases already
19011         declared const.
19012         (cgraph_node::set_pure_flag): Update.
19013         (cgraph_node::set_nothrow_flag): Handle correctly clearning the flag.
19015 2016-04-17  Tom de Vries  <tom@codesourcery.com>
19017         PR other/70433
19018         * pretty-print.c (pp_write_text_as_dot_label_to_stream): Escape
19019         backslash in label.
19021 2016-04-17  Tom de Vries  <tom@codesourcery.com>
19023         * pretty-print.c (pp_write_text_as_dot_label_to_stream): Classify chars
19024         '{}<> ' as escape-for-record.
19026 2016-04-17  Tom de Vries  <tom@codesourcery.com>
19028         * pretty-print.c (pp_write_text_as_dot_label_to_stream): Simplify loop
19029         structure.
19031 2016-04-17  Tom de Vries  <tom@codesourcery.com>
19033         PR other/70185
19034         * tree-pass.h (class opt_pass): Remove graph_dump_initialized member.
19035         * dumpfile.h (struct dump_file_info): Add graph_dump_initialized field.
19036         * dumpfile.c (dump_files): Initialize graph_dump_initialized field.
19037         * passes.c (finish_optimization_passes): Only call
19038         finish_graph_dump_file if dfi->graph_dump_initialized.
19039         (execute_function_dump, pass_init_dump_file): Use
19040         dfi->graph_dump_initialized instead of pass->graph_dump_initialized.
19042 2016-04-17  Tom de Vries  <tom@codesourcery.com>
19044         PR tree-optimization/70256
19045         * tree-ssa-structalias.c (dump_varinfo, debug_varinfo, dump_varmap)
19046         (debug_varmap): New function.
19048 2016-04-17  Tom de Vries  <tom@codesourcery.com>
19050         PR other/70183
19051         * passes.c (pass_manager::register_pass): Propagate pflags.
19053 2016-04-17  Tom de Vries  <tom@codesourcery.com>
19055         PR other/68875
19056         * pass_manager.h (TERMINATE_PASS_LIST): Add pass argument.
19057         * passes.c (pass_manager::pass_manager): Declare and init p_start in
19058         INSERT_PASSES_AFTER.  Add pass parameter to TERMINATE_PASS_LIST, and
19059         check if it's equal to p_start.
19060         * passes.def: Add arguments to TERMINATE_PASS_LISTs.
19062 2016-04-15  Jan Hubicka  <jh@suse.cz>
19064         PR ipa/70018
19065         * cgraph.c (cgraph_set_const_flag_1): Only set as pure if
19066         function does not bind to current def.
19067         * ipa-pure-const.c (worse_state): Add FROM and TO parameters;
19068         handle conservatively calls to functions that does not need to bind
19069         to current def.
19070         (check_call): Update call of worse_state.
19071         (ignore_edge_for_nothrow): Update.
19072         (ignore_edge_for_pure_const): Likewise.
19073         (propagate_pure_const): Update calls to worse_state.
19074         (skip_function_for_local_pure_const): Reformat comments.
19076 2016-04-15  Jan Hubicka  <jh@suse.cz>
19078         PR ipa/70018
19079         * cgraph.c (cgraph_node::get_availability): Add REF parameter.
19080         (cgraph_node::function_symbol): Likewise.
19081         (cgraph_node::function_or_virtual_thunk_symbol): Likewise.
19082         * cgraph.h (symtab_node::get_availabbility): Add REF parameter.
19083         (symtab_node::ultimate_alias_target): Add REF parameter.
19084         (symtab_node::binds_to_current_def_p): Declare.
19085         (symtab_node;:ultimate_alias_target_1): Add REF parameter.
19086         (cgraph_node::function_symbol): Likewise.
19087         (cgraph_node::function_or_virtual_thunk_symbol): Likewise.
19088         (cgraph_node::get_availability): Likewise.
19089         (cgraph_edge::binds_to_current_def_p): New inline function.
19090         (varpool_node::get_availability): Add REF parameter.
19091         (varpool_node::ultimate_alias_target): Likewise.
19092         * symtab.c (symtab_node::ultimate_alias_target_1): Likewise.
19093         (symtab_node::binds_to_current_def_p): Likewise.
19094         * varpool.c (varpool_node::get_availability): Likewise.
19096 2016-04-15  Kirill Yukhin  <kirill.yukhin@intel.com>
19098         PR target/70662
19099         * config/i386/sse.md(define_insn "<avx512>_vec_dup<mode><mask_name>"):
19100         Fix mode size check.
19102 2016-04-15  Jakub Jelinek  <jakub@redhat.com>
19104         * BASE-VER: Set to 7.0.0.
19106 2016-04-15  Alexander Monakov  <amonakov@ispras.ru>
19108         * config/nvptx/nvptx.opt (moptimize): Add a period at end of help text.
19110 2016-04-15  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
19112         * doc/invoke.texi (ARM Options): Add note on deprecation of pre-ARMv4T
19113         architecture revisions.
19115 2016-04-15  Bernd Schmidt  <bschmidt@redhat.com>
19117         * config/i386/i386-protos.h (ix86_using_red_zone): Declare.
19118         * config/i386/i386.c (ix86_using_red_zone): No longer static.
19119         * config/i386/i386.md (stack decrement to push peepholes): Guard
19120         with !x86_using_red_zone ().
19122 2016-04-15  Jakub Jelinek  <jakub@redhat.com>
19124         PR c++/70675
19125         * tree-pretty-print.c (do_niy): Add FLAGS argument, pass it down
19126         to dump_generic_node.
19127         (NIY): Pass also flags to do_niy.
19129 2016-04-15  Thomas Schwinge  <thomas@codesourcery.com>
19131         * omp-low.c (simd_clone_struct_alloc, simd_clone_struct_copy)
19132         (simd_clone_vector_of_formal_parm_types)
19133         (simd_clone_clauses_extract, simd_clone_compute_base_data_type)
19134         (simd_clone_mangle, simd_clone_create)
19135         (simd_clone_adjust_return_type, create_tmp_simd_array)
19136         (simd_clone_adjust_argument_types, simd_clone_init_simd_arrays)
19137         (struct modify_stmt_info, ipa_simd_modify_stmt_ops)
19138         (ipa_simd_modify_function_body, simd_clone_linear_addend)
19139         (simd_clone_adjust, expand_simd_clones, ipa_omp_simd_clone)
19140         (pass_data_omp_simd_clone, class pass_omp_simd_clone)
19141         (pass_omp_simd_clone::gate, make_pass_omp_simd_clone): Move into...
19142         * omp-simd-clone.c: ... this new file.
19143         (simd_clone_vector_of_formal_parm_types): Make it static.
19144         * Makefile.in (OBJS): Add omp-simd-clone.o.
19146 2016-04-15  Kirill Yukhin  <kirill.yukhin@intel.com>
19148         PR target/70662
19149         * config/i386/sse.md: Use proper memory operand modifiers.
19152 2016-04-15  Richard Biener  <rguenther@suse.de>
19153         Alan Modra  <amodra@gmail.com>
19155         PR tree-optimization/70130
19156         * tree-vect-data-refs.c (vect_supportable_dr_alignment): Detect
19157         when alignment stays not the same and no not use the realign
19158         scheme then.
19160 2016-04-14  Michael Meissner  <meissner@linux.vnet.ibm.com>
19162         PR target/70669
19163         * config/rs6000/rs6000.c (rs6000_init_hard_regno_mode_ok): Add
19164         direct move handlers for KFmode. Change TFmode handlers test from
19165         FLOAT128_IEEE_P to FLOAT128_VECTOR_P.
19167 2016-04-14  Jakub Jelinek  <jakub@redhat.com>
19169         PR c++/70594
19170         * ipa-utils.h (polymorphic_ctor_dtor_p): New prototype.
19171         * ipa-polymorphic-call.c (polymorphic_ctor_dtor_p): New function.
19172         (inlined_polymorphic_ctor_dtor_block_p): Use it.
19173         * tree-ssa-live.c (remove_unused_scope_block_p): When
19174         in_ctor_dtor_block, avoid discarding not just BLOCKs with
19175         BLOCK_ABSTRACT_ORIGIN being FUNCTION_DECL, but even when
19176         block_ultimate_origin is FUNCTION_DECL.
19177         (remove_unused_locals): If current_function_decl is
19178         polymorphic_ctor_dtor_p, pass initial true to
19179         remove_unused_scope_block_p' is_ctor_dtor_block.
19181 2016-04-14  Martin Sebor  <msebor@redhat.com>
19183         PR c++/69517
19184         PR c++/70019
19185         PR c++/70588
19186         * doc/extend.texi (Variable Length): Revert.
19188 2016-04-14  Marek Polacek  <polacek@redhat.com>
19189             Jan Hubicka  <hubicka@ucw.cz>
19191         PR c++/70029
19192         * tree.c (verify_type): Disable the canonical type of main variant
19193         check.
19195 2016-04-14  Jason Merrill  <jason@redhat.com>
19197         * cfgexpand.c, expr.c: Revert previous change.
19199 2016-04-14  Cesar Philippidis  <cesar@codesourcery.com>
19201         PR middle-end/70643
19202         * omp-low.c (lower_oacc_reductions): Check for TREE_CONSTANT
19203         when building a mem ref for the incoming reduction variable.
19205 2016-04-14  Richard Biener  <rguenther@suse.de>
19207         PR tree-optimization/70614
19208         * tree-scalar-evolution.c (analyze_evolution_in_loop): Terminate
19209         loop if the evolution dropped to chrec_dont_know.
19210         (interpret_condition_phi): Likewise.
19212 2016-04-14  Richard Biener  <rguenther@suse.de>
19214         PR tree-optimization/70623
19215         * tree-ssa-pre.c (changed_blocks): Make global ...
19216         (compute_antic): ... local here.  Move and fix worklist
19217         handling here.  Do not clear EDGE_DFS_BACK or call mark_dfs_back_edges.
19218         (compute_antic_aux): Add dumping for MAX assumed succs.  Remove
19219         worklist handling, dump when ANTIC_IN changed.
19220         (compute_partial_antic_aux): Remove worklist handling.
19221         (init_pre): Do not compute post dominators.  Add a comment about
19222         the CFG order chosen.
19223         (fini_pre): Do not free post dominators.
19225 2016-04-13  Martin Sebor  <msebor@redhat.com>
19227         PR c++/69517
19228         PR c++/70019
19229         PR c++/70588
19230         * doc/extend.texi (Variable Length): Document C++ specifics.
19232 2016-04-13  Jakub Jelinek  <jakub@redhat.com>
19234         PR c++/70641
19235         * ipa-pure-const.c (pass_nothrow::execute): Call maybe_clean_eh_stmt
19236         on all recursive call stmts.  Return TODO_cleanup_cfg if any dead
19237         eh edges have been purged.
19239         PR c++/70594
19240         * tree-sra.c (create_access_replacement,
19241         get_replaced_param_substitute): Set DECL_NAMELESS on repl if it
19242         gets fancy name.
19243         * tree-pretty-print.c (dump_fancy_name): New function.
19244         (dump_decl_name, dump_generic_node): Use it.
19246 2016-04-13  Jason Merrill  <jason@redhat.com>
19248         * cfgexpand.c (pass_expand::execute): Handle attribute "abi warning".
19249         * expr.c (expand_expr_real_1): Likewise.
19251 2016-04-13  Ilya Enkovich  <ilya.enkovich@intel.com>
19253         * config/i386/i386.md (kunpckhi): Swap operands.
19254         (kunpcksi): Likewise.
19255         (kunpckdi): Likewise.
19256         * config/i386/sse.md (vec_pack_trunc_qi): Likewise.
19257         (vec_pack_trunc_<mode>): Likewise.
19259 2016-04-13  Jakub Jelinek  <jakub@redhat.com>
19261         PR debug/70628
19262         * explow.c (convert_memory_address_addr_space_1): Formatting fix.
19264         PR middle-end/70633
19265         * gimplify.c (gimplify_init_constructor): Clear TREE_STATIC if
19266         gimplification turns some element into non-constant.
19268         PR debug/70628
19269         * rtl.h (convert_memory_address_addr_space_1): New prototype.
19270         * explow.c (convert_memory_address_addr_space_1): No longer static,
19271         add NO_EMIT argument and don't call convert_modes if true, pass
19272         it down recursively, remove break after return.
19273         (convert_memory_address_addr_space): Adjust caller.
19274         * simplify-rtx.c (simplify_unary_operation_1): Call
19275         convert_memory_address_addr_space_1 instead of convert_memory_address,
19276         if it returns NULL, don't simplify.
19278 2016-04-12  Eric Botcazou  <ebotcazou@adacore.com>
19280         PR target/70630
19281         * config/sparc/sparc.c (sparc_compute_frame_size): Add parentheses.
19283 2016-04-12  Jakub Jelinek  <jakub@redhat.com>
19285         * config/i386/i386.c (ix86_simd_clone_compute_vecsize_and_simdlen):
19286         Bump the upper SIMDLEN limits, so that if the return type or
19287         characteristic type if the return type is void can be passed in
19288         all available SSE2/AVX/AVX2/AVX512-F registers, the SIMDLEN is
19289         allowed.
19291 2016-04-12  Michael Meissner  <meissner@linux.vnet.ibm.com>
19293         PR target/70640
19294         * config/rs6000/rs6000.md (ieee_128bit_vsx_neg<mode>2_internal):
19295         Do not use "=" constraint on an input constraint.
19296         (ieee_128bit_vsx_abs<mode>2_internal): Likewise.
19297         (ieee_128bit_vsx_nabs<mode>2_internal): Likewise.
19298         (ieee_128bit_vsx_nabs<mode>2): Correct splitter so that it
19299         generates (neg (abs ...)) instead of (abs ...).
19301 2016-04-12  Jakub Jelinek  <jakub@redhat.com>
19303         PR rtl-optimization/70596
19304         * lra-spills.c (spill_pseudos): Don't delete debug insns, instead
19305         just invalidate LRA data and reset them.  Adjust dump wording.
19307 2016-04-12  Martin Liska  <mliska@suse.cz>
19309         Revert
19310         2016-03-30  Jan Hubicka  <hubicka@ucw.cz>
19312         * tree-ssa-loop-niter.c (idx_infer_loop_bounds): We can't get realistic
19313         estimates here.
19314         * tree-ssa-loop-unswitch.c (tree_unswitch_single_loop): Use also
19315         max_loop_iterations_int.
19316         (tree_unswitch_outer_loop): Likewise.
19317         * tree-ssa-loop-ivopts.c (avg_loop_niter): Likewise.
19318         * tree-vect-loop.c (vect_analyze_loop_2): Likewise.
19320 2016-04-12  Tom de Vries  <tom@codesourcery.com>
19322         PR tree-optimization/68756
19323         * graphite-isl-ast-to-gimple.c (copy_cond_phi_args): Use new_expr
19324         instead of new_name.
19326 2016-04-12  Jakub Jelinek  <jakub@redhat.com>
19328         PR tree-optimization/70602
19329         * tree-sra.c (generate_subtree_copies): Don't write anything into
19330         constant pool decls.
19332         * omp-low.c (lower_omp_target): Use GOMP_MAP_FIRSTPRIVATE_INT
19333         regardless whether there are depend clauses or not.
19335 2016-04-11  Michael Meissner  <meissner@linux.vnet.ibm.com>
19337         PR target/70381
19338         * config/rs6000/rs6000.c (rs6000_opt_masks): Disable using the
19339         target attribute and pragma from changing the -mfloat128
19340         and -mfloat128-hardware options.
19342         * doc/extend.texi (Additional Floating Types): Document PowerPC
19343         __float128 restrictions.
19345 2016-04-11  James Greenhalgh  <james.greenhalgh@arm.com>
19347         PR target/70133
19348         * config/aarch64/driver-aarch64.c
19349         (aarch64_get_extension_string_for_isa_flags): New.
19350         (arch_extension): Rename to...
19351         (aarch64_arch_extension): ...This.
19352         (ext_to_feat_string): Rename to...
19353         (aarch64_extensions): ...This.
19354         (aarch64_core_data): Keep track of architecture extension flags.
19355         (cpu_data): Rename to...
19356         (aarch64_cpu_data): ...This.
19357         (aarch64_arch_driver_info): Keep track of architecture extension
19358         flags.
19359         (get_arch_name_from_id): Rename to...
19360         (get_arch_from_id): ...This, change return type.
19361         (host_detect_local_cpu): Update and reformat for renames, handle
19362         extensions through common infrastructure.
19364 2016-04-11  James Greenhalgh  <james.greenhalgh@arm.com>
19366         PR target/70133
19367         * config/aarch64/aarch64-common.c (aarch64_option_extension): Keep
19368         track of a canonical flag name.
19369         (all_extensions): Likewise.
19370         (arch_to_arch_name): Also track extension flags enabled by the arch.
19371         (all_architectures): Likewise.
19372         (aarch64_parse_extension): Move to here.
19373         (aarch64_get_extension_string_for_isa_flags): Take a new argument,
19374         rework.
19375         (aarch64_rewrite_selected_cpu): Update for above change.
19376         * config/aarch64/aarch64-option-extensions.def: Rework the way flags
19377         are handled, such that the single explicit value enabled by an
19378         extension is kept seperate from the implicit values it also enables.
19379         * config/aarch64/aarch64-protos.h (aarch64_parse_opt_result): Move
19380         to here.
19381         (aarch64_parse_extension): New.
19382         * config/aarch64/aarch64.c (aarch64_parse_opt_result): Move from
19383         here to config/aarch64/aarch64-protos.h.
19384         (aarch64_parse_extension): Move from here to
19385         common/config/aarch64/aarch64-common.c.
19386         (aarch64_option_print): Update.
19387         (aarch64_declare_function_name): Likewise.
19388         (aarch64_start_file): Likewise.
19389         * config/aarch64/driver-aarch64.c (arch_extension): Keep track of
19390         the canonical flag for extensions.
19391         * config.gcc (aarch64*-*-*): Extend regex for capturing extension
19392         flags.
19394 2016-04-11  James Greenhalgh  <james.greenhalgh@arm.com>
19396         * config/aarch64/aarch64.h (AARCH64_FL_FOR_ARCH8_1): Also add
19397         AARCH64_FL_CRC.
19399 2016-04-09  Tom de Vries  <tom@codesourcery.com>
19401         PR tree-optimization/68953
19402         * graphite-sese-to-poly.c (pdr_add_memory_accesses): Order accesses from
19403         first to last subscript.
19405 2016-04-09  Jakub Jelinek  <jakub@redhat.com>
19407         PR tree-optimization/70586
19408         * tree-ssa-ifcombine.c (bb_no_side_effects_p): Return false
19409         for any calls.
19411 2016-04-08  Cesar Philippidis  <cesar@codesourcery.com>
19413         PR lto/70289
19414         PR ipa/70348
19415         PR tree-optimization/70373
19416         PR middle-end/70533
19417         PR middle-end/70534
19418         PR middle-end/70535
19419         * gimplify.c (gimplify_adjust_omp_clauses): Add or adjust data
19420         clauses for acc parallel reductions as necessary.  Error on those
19421         that are private.
19422         * omp-low.c (scan_sharing_clauses): Don't install variables which
19423         are used in acc parallel reductions.
19424         (lower_rec_input_clauses): Remove dead code.
19425         (lower_oacc_reductions): Add support for reference reductions.
19426         (lower_reduction_clauses): Remove dead code.
19427         (lower_omp_target): Don't remap variables appearing in acc parallel
19428         reductions.
19429         * tree.h (OMP_CLAUSE_MAP_IN_REDUCTION): New macro.
19431 2016-04-08  Jakub Jelinek  <jakub@redhat.com>
19433         PR middle-end/70593
19434         * tree-ssa-coalesce.c (build_ssa_conflict_graph): For stmt
19435         with multiple SSA_NAME defs, force the outputs other than first
19436         to be live before calling live_track_process_def on each output.
19438         PR rtl-optimization/70574
19439         * fwprop.c (forward_propagate_and_simplify): Don't add
19440         REG_EQUAL note if DF_REF_REG (use) is a paradoxical subreg.
19441         (try_fwprop_subst): Don't add REG_EQUAL note if there are any
19442         paradoxical subregs within *loc.
19444 2016-04-08  Thomas Schwinge  <thomas@codesourcery.com>
19446         * config/arc/arc.h (LINK_COMMAND_SPEC): Use gt to ignore
19447         -ftree-parallelize-loops={0,1}.
19448         * config/darwin.h (LINK_COMMAND_SPEC_A): Likewise.
19449         * config/i386/mingw32.h (GOMP_SELF_SPECS): Likewise.
19450         * config/ia64/hpux.h (LIB_SPEC): Likewise.
19451         * config/pa/pa-hpux11.h (LIB_SPEC): Likewise.
19452         * config/pa/pa64-hpux.h (LIB_SPEC): Likewise.
19454 2016-04-08  Maxim Ostapenko  <m.ostapenko@samsung.com>
19456         PR sanitizer/70541
19457         * asan.c (instrument_derefs): If we get unknown location, extract it
19458         with EXPR_LOCATION.
19459         (maybe_instrument_call): Instrument gimple_call's arguments if needed.
19461 2016-04-08  Tom de Vries  <tom@codesourcery.com>
19463         * omp-low.c (lower_omp_target): Set TREE_NO_WARNING for oacc
19464         implicit firstprivate clause.
19466 2016-04-08  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
19468         PR target/70566
19469         * config/arm/thumb2.md (tst + branch-> lsls + branch
19470         peephole below *orsi_not_shiftsi_si): Require that condition
19471         register is dead after the peephole.
19472         (second peephole after the above): Likewise.
19474 2016-04-08  Alan Modra  <amodra@gmail.com>
19476         PR target/70117
19477         * builtins.c (fold_builtin_classify): For IBM extended precision,
19478         look at just the high-order double to test for NaN.
19479         (fold_builtin_interclass_mathfn): Similarly for Inf.  For isnormal
19480         test just the high double for Inf but both doubles for subnormal
19481         limit.
19483 2016-04-07  Jakub Jelinek  <jakub@redhat.com>
19485         * cgraph.h (struct cgraph_simd_clone): Add mask_mode field.
19486         * omp-low.c (simd_clone_init_simd_arrays, simd_clone_adjust): Handle
19487         node->simdclone->mask_mode != VOIDmode masks.
19488         (simd_clone_adjust_argument_types): Likewise.  Move sc var definition
19489         earlier, use it instead of node->simdclone.
19490         * config/i386/i386.c (ix86_simd_clone_compute_vecsize_and_simdlen):
19491         Set clonei->mask_mode.
19493 2016-04-06  Patrick Palka  <ppalka@gcc.gnu.org>
19495         PR c/70436
19496         * parser.c (cp_parser_iteration_statement): New parameter IF_P.
19497         Pass it through to cp_parser_already_scoped_statement.
19498         (cp_parser_already_scoped_statement): New parameter IF_P.  Pass
19499         it through to cp_parser_statement.
19500         (cp_parser_statement): Pass IF_P through to
19501         cp_parser_iteration_statement.
19502         (cp_parser_pragma): Adjust call to
19503         cp_parser_iteration_statement.
19505 2016-04-06  Patrick Palka  <ppalka@gcc.gnu.org>
19507         PR c/70436
19508         * gimplify.c (gimplify_omp_ordered): Add explicit braces to
19509         resolve a future -Wparentheses warning.
19510         * omp-low.c (scan_sharing_clauses): Likewise.
19511         * tree-parloops.c (eliminate_local_variables): Likewise.
19513 2016-04-06  Vladimir Makarov  <vmakarov@redhat.com>
19515         PR rtl-optimization/70398
19516         * lra-constraints.c (process_address_1): Check zero scale and code
19517         for reloading with zero scale.
19519 2016-04-06  Uros Bizjak  <ubizjak@gmail.com>
19521         * config/i386/sse.md (shuffletype): Add V32HI and V4TI modes.
19522         (ssescalarsize): Add V8SF, V4SF, V4DF and V2DF modes.
19524 2016-04-06  Jakub Jelinek  <jakub@redhat.com>
19526         * config/i386/i386.c (ix86_simd_clone_compute_vecsize_and_simdlen):
19527         Add support for AVX512F clones, include them by default for
19528         exported OpenMP declare simd functions.  For AVX2 allow simdlen 32
19529         and use it if charasteric type is 8-bit, for AVX512F allow simdlen
19530         up to 128.
19532         PR middle-end/70550
19533         * tree.h (OMP_CLAUSE_FIRSTPRIVATE_IMPLICIT): Define.
19534         * gimplify.c (gimplify_adjust_omp_clauses_1): Set it for implicit
19535         firstprivate clauses.
19536         * omp-low.c (lower_send_clauses): Set TREE_NO_WARNING for
19537         OMP_CLAUSE_FIRSTPRIVATE_IMPLICIT !by_ref vars in task contexts.
19538         (lower_omp_target): Set TREE_NO_WARNING for
19539         non-addressable possibly uninitialized vars which are copied into
19540         addressable temporaries or copied for GOMP_MAP_FIRSTPRIVATE_INT.
19542 2016-04-05  John David Anglin  <danglin@gcc.gnu.org>
19544         * config/pa/predicates.md (integer_store_memory_operand): Accept
19545         REG+D operands with a large offset when reload_in_progress is true.
19546         (floating_point_store_memory_operand): Likewise.
19548 2016-04-05  Jakub Jelinek  <jakub@redhat.com>
19550         PR c++/70336
19551         * match.pd (nested int casts): Limit to GIMPLE.
19553 2016-04-05  Jan Hubicka  <hubicka@ucw.cz>
19555         PR ipa/66223
19556         * ipa-devirt.c (maybe_record_node): Fix comment; use
19557         SANITIZE_UNREACHABLE instead of SANITIZE_UNDEFINED.
19559 2016-04-05  Jakub Jelinek  <jakub@redhat.com>
19561         PR rtl-optimization/70542
19562         * ree.c (add_removable_extension): For VECTOR_MODE_P punt
19563         if there are any uses other than insn or debug insns.
19565 2016-04-05  Marc Glisse  <marc.glisse@inria.fr>
19566             Jakub Jelinek  <jakub@redhat.com>
19568         PR tree-optimization/70509
19569         * simplify-rtx.c (simplify_binary_operation_1) <case VEC_SELECT>:
19570         Shift HOST_WIDE_INT_1U instead of 1.
19572 2016-04-05  Zdenek Sojka  <zsojka@seznam.cz>
19574         PR tree-optimization/70509
19575         * tree-ssa-forwprop.c (simplify_bitfield_ref): Use bitsize_int instead
19576         of the vector base type for index.
19578 2016-04-05  Uros Bizjak  <ubizjak@gmail.com>
19580         PR target/70510
19581         * config/i386/sse.md (iptr): Add V64QI, V32HI, V16SI and V8DI modes.
19583 2016-04-05  Richard Biener  <rguenther@suse.de>
19585         PR tree-optimization/70526
19586         * tree-sra.c (build_ref_for_offset): Use prev_base to
19587         extract the alias pointer type.
19589 2016-04-05  Richard Biener  <rguenther@suse.de>
19591         * dse.c (struct store_info): Remove alias_set member.
19592         (struct read_info_type): Likewise.
19593         (clear_alias_group, clear_alias_mode_table, clear_alias_mode_holder,
19594         spill_deleted, clear_alias_set_lookup): Remove.
19595         (get_group_info): Remove dead base == NULL_RTX case.
19596         (dse_step0): Remove initialization of removed variables.
19597         (delete_dead_store_insn): Reomve alias set dumping.
19598         (free_read_records): Remove alias_set handling.
19599         (canon_address): Remove alias_set_out parameter.
19600         (record_store): Remove spill_alias_set, it's always zero.
19601         (check_mem_read_rtx): Likewise.
19602         (dse_step2): Rename from ...
19603         (dse_step2_nospill): ... this.  Adjust.
19604         (scan_stores): Rename from ...
19605         (scan_stores_nospill): ... this.
19606         (scan_reads): Rename from ...
19607         (scan_reads_nospill): ... this.
19608         (scan_stores_spill, scan_reads_spill): Remove.
19609         (dse_step3_scan): Remove for_spills argument which is always false.
19610         (dse_step3): Likewise.
19611         (dse_step5): Rename from ...
19612         (dse_step5_nospill): ... this.  Remove alias_set handling.
19613         (rest_of_handle_dse): Adjust.
19615 2016-04-05  Jakub Jelinek  <jakub@redhat.com>
19617         PR target/70525
19618         * config/i386/sse.md (*andnot<mode>3): Simplify assertions.
19619         Use vpandn<ssemodesuffix> for V16SI/V8DImode, vpandnq for
19620         V32HI/V64QImode, don't use <mask_operand3_1>, fix up formatting.
19621         (*andnot<mode>3_mask): Remove insn with VI12_AVX512VL iterator.
19623 2016-04-05  Richard Biener  <rguenther@suse.de>
19625         PR middle-end/70499
19626         * gimplify-me.c (gimple_regimplify_operands): Do not rewrite
19627         non-register type temporaries into SSA.
19629 2016-04-04  Jan Hubicka  <hubicka@ucw.cz>
19631         PR ipa/66223
19632         * ipa-devirt.c (maybe_record_node): Do not optimize cxa_pure_virtual
19633         calls when sanitizing.
19634         (possible_polymorphic_call_target_p): Fix formatting.
19636 2016-04-04  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
19637             Jakub Jelinek  <jakub@redhat.com>
19639         PR middle-end/70457
19640         * tree-inline.c (estimate_num_insn): Use gimple_call_builtin_p
19641         to ensure a call statement is compatible with a built-in's
19642         prototype.
19643         * tree-ssa-math-opts.c (pass_optimize_windening_mul::execute):
19644         Likewise.
19646 2016-04-04  Richard Biener  <rguenther@suse.de>
19648         PR rtl-optimization/70484
19649         * rtl.h (canon_output_dependence): Declare.
19650         * alias.c (canon_output_dependence): New function.
19651         * dse.c (record_store): Use canon_output_dependence rather
19652         than canon_true_dependence.
19654 2016-03-30  Jan Hubicka  <hubicka@ucw.cz>
19656         PR ipa/68881
19657         * cgraph.h (symtab_node::copy_visibility_from): New function.
19658         * symtab.c (symtab_node::copy_visibility_from): New function.
19659         * ipa-visibility.c (optimize_weakref): New function.
19660         (function_and_variable_visibility): Use it.
19662 2016-04-04  Martin Liska  <mliska@suse.cz>
19664         PR hsa/70402
19665         * hsa-gen.c (gen_hsa_insns_for_switch_stmt): Guard index
19666         value that is really in range handled by SBR instruction.
19667         * hsa-brig.c (emit_switch_insn): Do not emit unconditional jump.
19668         * hsa-dump.c (dump_hsa_insn_1): Do not dump default BB.
19669         * hsa.h (hsa_insn_sbr::m_default_bb): Remove field.
19671 2016-04-03  Oleg Endo  <olegendo@gcc.gnu.org>
19673         PR target/70416
19674         PR target/67391
19675         * config/sh/sh.md (*addsi3): Allow pattern when reload_in_progress is
19676         set, but not for SP_REG operands.
19678 2016-04-02  Martin Sebor  <msebor@redhat.com>
19680         PR c++/67376
19681         * fold-const.c (maybe_nonzero_address): New function.
19682         (fold_comparison): Call it.  Fold equality and relational
19683         expressions involving null pointers.
19684         (tree_single_nonzero_warnv_p): Call maybe_nonzero_address.
19686 2016-03-31  Evandro Menezes  <e.menezes@samsung.com>
19688         Fix the predicate "aarch64_simd_reg_or_zero" to correctly validate
19689         the "Y" constraint (scalar FP 0.0 immediate).
19691         * config/aarch64/predicates.md (aarch64_simd_reg_or_zero):
19692         Add the "const_double" to the list of operand constraints.
19694 2016-04-01  Jakub Jelinek  <jakub@redhat.com>
19696         PR rtl-optimization/70467
19697         * config/i386/i386.md (*add<dwi>3_doubleword, *sub<dwi>3_doubleword):
19698         If low word of the last operand is 0, just emit addition/subtraction
19699         for the high word.
19701 2016-04-01  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
19703         PR target/70404
19704         * config/s390/s390.c (s390_expand_insv): Check for everything
19705         constant instead of just VOIDmode stuff.
19707 2016-04-01  Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>
19709         PR target/70496
19710         * config/arm/arm.h (ASM_APP_OFF): Handle TARGET_ARM and TARGET_THUMB.
19712 2016-04-01  Nathan Sidwell  <nathan@acm.org>
19714         * tree.def (TRY_CATCH_EXPR): Correct documentation.
19716 2016-03-31  Vladimir Makarov  <vmakarov@redhat.com>
19718         PR rtl-optimization/70461
19719         * ira-color.c (allocno_copy_cost_saving): Use allocno class if it
19720         is necessary.
19722 2016-03-31  Martin Liska  <mliska@suse.cz>
19724         PR hsa/70399
19725         * hsa-brig.c (hsa_op_immed::emit_to_buffer): Emit either
19726         a tree value or an immediate integer value to a buffer
19727         that is eventually copied to a BRIG section.
19728         (emit_immediate_operand): Call the function here.
19729         * hsa-dump.c (dump_hsa_immed): Remove checking assert.
19730         * hsa-gen.c (hsa_op_immed::hsa_op_immed): Remove initialization
19731         of class' fields that are removed.
19732         (hsa_op_immed::~hsa_op_immed): Remove deinitialization.
19733         * hsa.h (class hsa_op_immed): Remove m_brig_repr and
19734         m_brig_repr_size fields.
19736 2016-03-31  Martin Liska  <mliska@suse.cz>
19738         PR hsa/70391
19739         * hsa-gen.c (hsa_function_representation::update_dominance): New
19740         function.
19741         (convert_addr_to_flat_segment): Likewise.
19742         (gen_hsa_memory_set): New alignment argument.
19743         (gen_hsa_ctor_assignment): Likewise.
19744         (gen_hsa_insns_for_single_assignment): Provide alignment
19745         to gen_hsa_ctor_assignment.
19746         (gen_hsa_insns_for_direct_call): Add new argument.
19747         (expand_lhs_of_string_op): New function.
19748         (expand_string_operation_builtin): Likewise.
19749         (expand_memory_copy): New function.
19750         (expand_memory_set): New function.
19751         (gen_hsa_insns_for_call): Use HOST_WIDE_INT.
19752         (convert_switch_statements): Change signature.
19753         (generate_hsa): Use a return value of the function.
19754         (pass_gen_hsail::execute): Do not call
19755         convert_switch_statements here.
19756         * hsa-regalloc.c (hsa_regalloc): Call update_dominance.
19757         * hsa.h (hsa_function_representation::m_modified_cfg): New flag.
19758         (hsa_function_representation::update_dominance): New function.
19760 2016-03-31  Martin Liska  <mliska@suse.cz>
19762         PR hsa/70391
19763         * hsa-brig.c (emit_directive_variable): Emit alignment
19764         according to hsa_symbol::m_align.
19765         * hsa-dump.c (hsa_byte_alignment): Move the function to another file.
19766         (dump_hsa_symbol): Dump alignment of HSA symbols.
19767         * hsa-gen.c (get_symbol_for_decl): Set-up alignment of a symbol.
19768         (gen_hsa_addr_with_align): New function.
19769         (hsa_bitmemref_alignment): Use newly added function.
19770         (gen_hsa_insns_for_load): Likewise.
19771         (gen_hsa_insns_for_store): Likewise.
19772         (gen_hsa_memory_copy): New argument added.
19773         (gen_hsa_insns_for_single_assignment): Respect
19774         alignment for assignments processed via gen_hsa_memory_copy.
19775         (gen_hsa_insns_for_direct_call): Likewise.
19776         (gen_hsa_insns_for_return): Likewise.
19777         (gen_function_def_parameters): Set default alignment.
19778         * hsa.c (hsa_object_alignment): New function.
19779         (hsa_byte_alignment): Pasted function.
19780         * hsa.h (hsa_symbol::m_align): New field.
19782 2016-03-31  Bin Cheng  <bin.cheng@arm.com>
19784         * tree-ssa-loop-ivopts.c (get_computation_cost_at): Initialize
19785         scratch field for goto case.
19787 2016-03-31  James Greenhalgh  <james.greenhalgh@arm.com>
19789         * config/arm/linux-elf.h (ASM_OUTPUT_DEF): Delete.
19791 2016-03-31  Ilya Enkovich  <enkovich.gnu@gmail.com>
19793         PR target/70442
19794         * config/i386/i386.c (scalar_chain::convert_op): Fix description.
19795         (scalar_chain::convert_insn): Call convert_op for reg
19796         moves to handle undefined registers.
19798 2016-03-31  Nathan Sidwell  <nathan@acm.org>
19800         PR c++/70393
19801         * varasm.c (output_constructor_regular_field): Flush bitfield earlier.
19802         Assert we don't want to move backwards.
19804 2016-03-31  Kirill Yukhin  <kirill.yukhin@intel.com>
19806         PR target/70453
19807         * config/i386/sse.md (define_mode_attr shuffletype): Fix typo.
19809 2016-03-31  Jakub Jelinek  <jakub@redhat.com>
19811         PR rtl-optimization/70460
19812         * ira.c (indirect_jump_optimize): Don't substitute LABEL_REF
19813         with operand from REG_LABEL_OPERAND, instead substitute
19814         SET_SRC or REG_EQUAL note content if it is a LABEL_REF.
19815         Don't do anything for REG_NON_LOCAL_GOTO jumps.
19817 2016-03-31  Martin Liska  <mliska@suse.cz>
19819         * passes.c (execute_one_pass): Do not call
19820         todo_after for a discarded function.
19822 2016-03-31  Bin Cheng  <bin.cheng@arm.com>
19824         * tree-ssa-loop-ivopts.c (struct comp_cost): New scrach field.
19825         (no_cost, infinite_cost): Initialize the new field.
19826         (get_computation_cost_at): Record setup cost.
19827         (determine_use_iv_cost_address): Skip cost computation for sub
19828         uses if we can estimate it without losing accuracy.
19830 2016-03-30  Jan Hubicka  <hubicka@ucw.cz>
19832         * tree-ssa-loop-niter.c (idx_infer_loop_bounds): We can't get realistic
19833         estimates here.
19834         * tree-ssa-loop-unswitch.c (tree_unswitch_single_loop): Use also
19835         max_loop_iterations_int.
19836         (tree_unswitch_outer_loop): Likewise.
19837         * tree-ssa-loop-ivopts.c (avg_loop_niter): Likewise.
19838         * tree-vect-loop.c (vect_analyze_loop_2): Likewise.
19840 2016-03-30  Richard Biener  <rguenther@suse.de>
19842         PR middle-end/70450
19843         * fold-const.c (extract_muldiv_1): Fix thinko in wide_int::from usage.
19845 2016-03-30  Jakub Jelinek  <jakub@redhat.com>
19847         PR target/70421
19848         * config/i386/i386.c (ix86_expand_vector_set): Fix up argument order
19849         in gen_blendm expander.
19851 2016-03-30  Nick Clifton  <nickc@redhat.com>
19853         PR target/62254
19854         * config/arm/arm.c (arm_reload_out_hi): Add code to handle the
19855         case where we are already provided with an SImode SUBREG.
19857 2016-03-30  H.J. Lu  <hongjiu.lu@intel.com>
19859         PR target/70439
19860         * config/i386/i386.c (ix86_expand_epilogue): Properly check
19861         conflict between DRAP register and __builtin_eh_return.
19863 2016-03-30  Michael Matz  <matz@suse.de>
19864             Richard Biener  <rguenther@suse.de>
19866         PR ipa/12392
19867         * ipa-polymorphic-call.c (struct type_change_info): Change
19868         speculative to an unsigned allowing to limit the work we do.
19869         (csftc_abort_walking_p): New inline function..
19870         (check_stmt_for_type_change): Limit the number of may-defs
19871         skipped for speculative devirtualization to
19872         max-speculative-devirt-maydefs.
19873         * params.def (max-speculative-devirt-maydefs): New param.
19874         * doc/invoke.texi (--param max-speculative-devirt-maydefs): Document.
19876 2016-03-30  Mike Stump  <mrs@gcc.gnu.org>
19878         PR target/63890
19879         * config/i386/i386.h (ACCUMULATE_OUTGOING_ARGS): Use when profiling
19880         and TARGET_MACHO.
19882 2016-03-30  Patrick Palka  <ppalka@gcc.gnu.org>
19884         PR tree-optimization/59124
19885         * tree-vrp.c (register_edge_assert_for_2): For NAME != CST1
19886         where NAME = A +- CST2 add the assertion A != (CST1 -+ CST2).
19888 2016-03-29  Jeff Law  <law@redhat.com>
19890         * tree-ssa-coalesce.c (struct ssa_conflicts): Fix typo in comment.
19892 2016-03-10  Jan Hubicka  <hubicka@ucw.cz>
19894         * tree-ssa-loop-ivcanon.c (try_peel_loop): Change type of peel
19895         to HOST_WIDE_INT.
19897 2016-03-29  Thomas Schwinge  <thomas@codesourcery.com>
19899         * config/gnu.h (CPP_SPEC, LIB_SPEC): Don't override.
19900         * config/i386/gnu.h (STARTFILE_SPEC): Use gcrt1.o instead of
19901         gcrt0.o if linking dynamically.
19903 2016-03-10  Jan Hubicka  <hubicka@ucw.cz>
19905         PR ipa/70283
19906         * ipa-devirt.c (methods_equal_p): New function.
19907         (compare_virtual_tables): Use it.
19908         * cgraph.h (symbol_table::symbol_suffix_separator): Declare.
19909         * cgraphclones.c (clone_function_name_1): Use
19910         symbol_table::symbol_suffix_separator.
19911         * coverage.c (build_var): Likewise.
19912         * symtab.c (symbol_table::symbol_suffix_separator): New.
19914 2016-03-29  Jakub Jelinek  <jakub@redhat.com>
19916         PR rtl-optimization/70429
19917         * combine.c (simplify_shift_const_1): For ASHIFTRT don't optimize
19918         (cst1 >> count) >> cst2 into (cst1 >> cst2) >> count if
19919         mode != result_mode.
19921         PR c++/70353
19922         * tree-inline.c (remap_decls): Don't add_local_decl if cfun is null.
19924         PR tree-optimization/70405
19925         * ssa-iterators.h (num_imm_uses): Add missing braces.
19927 2016-03-29  Vladimir Makarov  <vmakarov@redhat.com>
19929         PR rtl-optimization/68695
19930         * ira-color.c (allocno_copy_cost_saving): New.
19931         (improve_allocation): Use it.
19933 2016-03-29  Richard Henderson  <rth@redhat.com>
19935         PR middle-end/70355
19936         * lower-subreg.c (simplify_subreg_concatn): Reject paradoxical subregs.
19938 2016-03-29  Richard Biener  <rguenther@suse.de>
19940         PR middle-end/70424
19941         * ipa-prop.c (ipa_compute_jump_functions_for_edge): Always
19942         use alignment returned by get_pointer_alignment_1 if it is
19943         bigger than BITS_PER_UNIT.
19944         * builtins.c (get_pointer_alignment_1): Do not return true
19945         for alignment extracted from SSA info.
19947 2016-03-28  James Bowman  <james.bowman@ftdichip.com>
19949         * config/ft32/ft32.opt (mnodiv): New.
19950         * config/ft32/ft32.md (*divsi3, *modsi3): Qualify with TARGET_NODIV.
19951         * doc/invoke.texi (FT32 Options -mnodiv): New.
19953 2016-03-28  Kirill Yukhin  <kirill.yukhin@intel.com>
19955         PR target/70406
19956         * config/i386/i386.md (define_split, andn): Fix modes.
19958 2016-03-26  Richard Biener  <rguenther@suse.de>
19959             Prathamesh Kulkarni  <prathamesh.kulkarni@linaro.org>
19961         PR ipa/70366
19962         * ipa-inline-transform.c (inline_call): Pass opts_for_fn (to->decl)
19963         instead of
19964         TREE_OPTIMIZATION (DECL_FUNCTION_SPECIFIC_OPTIMIZATION (to->decl))
19965         as 2nd argument to cl_optimization_restore().
19967 2016-03-25  Richard Henderson  <rth@redhat.com>
19969         PR target/70120
19970         * config/aarch64/aarch64.c (aarch64_asm_output_pool_epilogue): New.
19971         * config/aarch64/aarch64-protos.h: Declare it.
19972         * config/aarch64/aarch64.h (ASM_OUTPUT_POOL_EPILOGUE): New.
19974 2016-03-25  Alan Modra  <amodra@gmail.com>
19976         PR target/70052
19977         * config/rs6000/constraints.md (j): Simplify.
19978         * config/rs6000/predicates.md (easy_fp_constant): Exclude
19979         decimal float 0.D.
19980         * config/rs6000/rs6000.md (zero_fp): New mode_attr.
19981         (mov<mode>_hardfloat, mov<mode>_hardfloat32, mov<mode>_hardfloat64,
19982          mov<mode>_64bit_dm, mov<mode>_32bit): Use zero_fp in place of j
19983         in all constraint alternatives.
19984         (movtd_64bit_nodm): Delete "j" constraint alternative.
19986 2016-03-24  Aldy Hernandez  <aldyh@redhat.com>
19988         * tree-ssa-propagate.c: Enhance docs for
19989         SSA_PROP_NOT_INTERESTING.
19991 2016-03-24  Aldy Hernandez  <aldyh@redhat.com>
19993         * doc/extend.texi: Fix typo in documentation to pure attribute.
19995 2016-03-24  John David Anglin  <danglin@gcc.gnu.org>
19997         PR target/70319
19998         * config/pa/pa.md (bswapdi2): Use a scratch register.
20000 2016-03-24  Richard Henderson  <rth@redhat.com>
20002         PR middle-end/69845
20003         * fold-const.c (extract_muldiv_1): Correct test for multiplication
20004         overflow.
20006 2016-03-24  Uros Bizjak  <ubizjak@gmail.com>
20008         * config/i386/i386.md (*anddi3_doubleword): Generate AND insn
20009         using ix86_expand_binary_operator instead of gen_andsi3.
20011 2016-03-24  Richard Biener  <rguenther@suse.de>
20013         PR tree-optimization/70396
20014         * tree-vect-stmts.c (vectorizable_comparison): Use
20015         get_vectype_for_scalar_type.
20017 2016-03-24  Richard Biener  <rguenther@suse.de>
20019         PR middle-end/70370
20020         * gimplify.c (gimplify_asm_expr): Handle !allows_mem outputs
20021         with register bases.
20023 2016-03-24  Richard Biener  <rguenther@suse.de>
20025         PR tree-optimization/70372
20026         * tree-ssa-reassoc.c (eliminate_plus_minus_pair): Use
20027         build_all_ones_cst to also handle vector types correctly.
20029 2016-03-23  Michael Meissner  <meissner@linux.vnet.ibm.com>
20031         PR target/70381
20032         * config/rs6000/rs6000-cpus.def (ISA_2_6_MASKS_SERVER): Do not set
20033         -mfloat128 here.
20035 2016-03-23  Marek Polacek  <polacek@redhat.com>
20037         PR c++/69884
20038         * doc/invoke.texi: Document -Wignored-attributes.
20040 2016-03-23  Bin Cheng  <bin.cheng@arm.com>
20042         PR tree-optimization/69042
20043         * params.def (PARAM_IV_CONSIDER_ALL_CANDIDATES_BOUND): Increase the
20044         parameter from 30 to 40.
20046 2016-03-23  Bin Cheng  <bin.cheng@arm.com>
20048         PR tree-optimization/69042
20049         * tree-ssa-loop-ivopts.c (add_iv_candidate_for_use): Add IV cand
20050         for use with constant offset stripped in base.
20052 2016-03-23  Richard Biener  <rguenther@suse.de>
20054         PR middle-end/70251
20055         * match.pd (A + (B vcmp C ? 1 : 0) -> A - (B vcmp C)): Adjust
20056         mode compatibility check.
20057         (A - (B vcmp C ? 1 : 0) -> A + (B vcmp C)): Likewise.
20059 2016-03-23  Jeff Law  <law@redhat.com>
20061         PR tree-optimization/64058
20062         * tree-ssa-coalesce.c (struct coalesce_pair): Add new field
20063         CONFLICT_COUNT.
20064         (struct ssa_conflicts): Move up earlier in the file.
20065         (conflicts_, var_map_): New static variables.
20066         (initialize_conflict_count): New function to initialize the
20067         CONFLICT_COUNT field for each conflict pair.
20068         (compare_pairs): Lazily initialize the conflict count and use it
20069         as the first tie-breaker.
20070         (sort_coalesce_list): Add new arguments conflicts, map.  Initialize
20071         and wipe conflicts_ and map_ around the call to qsort.  Remove
20072         special case for 2 coalesce pairs.
20073         * bitmap.c (bitmap_count_unique_bits): New function.
20074         (bitmap_count_bits_in_word): New function, extracted from
20075         bitmap_count_bits.
20076         (bitmap_count_bits): Use bitmap_count_bits_in_word.
20077         * bitmap.h (bitmap_count_unique_bits): Declare it.
20079 2016-03-23  Ilya Enkovich  <enkovich.gnu@gmail.com>
20081         PR target/69917
20082         * config/i386/sol2.h (ASM_OUTPUT_DEF_FROM_DECLS): Follow
20083         transparent alias chain for decl assembler name.
20084         * config/sol2.c (solaris_assemble_visibility): Likewise.
20086 2016-03-23  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
20088         * config/arm/arm1020e.md (1020call_op): Reduce reservation
20089         duration.
20090         (v10_fdivs): Likewise.
20091         (v10_fdivd): Likewise.
20093 2016-03-23  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
20095         PR driver/70132
20096         * config/arm/driver-arm.c (host_detect_local_cpu): Reorder exit logic
20097         to not call fclose twice on file.
20099 2016-03-23  Jakub Jelinek  <jakub@redhat.com>
20101         PR tree-optimization/70354
20102         * tree-vect-patterns.c (vect_recog_vector_vector_shift_pattern): If
20103         oprnd0 is wider than oprnd1 and there is a cast from the wider
20104         type to oprnd1, mask it with the mask of the narrower type.
20106         PR target/70321
20107         * config/i386/i386.md (*anddi3_doubleword, *<code>di3_doubleword):
20108         Optimize TARGET_STV splitters, if high or low word of last argument
20109         is 0 or -1.
20111 2016-03-22  Jeff Law  <law@redhat.com>
20113         PR target/70232
20114         tree-ssa-threadbackward.c
20115         (fsm_find_control_statement_thread_paths): Correctly distinguish
20116         between old style jump threads vs FSM jump threads.
20118 2016-03-22  Ilya Enkovich  <enkovich.gnu@gmail.com>
20120         PR target/70302
20121         * config/i386/i386.c (scalar_chain::convert_op): Support
20122         uninitialized register usage case.
20124 2016-03-22  Richard Biener  <rguenther@suse.de>
20126         PR middle-end/70251
20127         * genmatch.c (gen_transform): Adjust last parameter to a three-state
20128         int...
20129         (capture::gen_transform): ... to change behavior when substituting
20130         a condition into cond or not-cond expr context.
20131         (dt_simplify::gen_1): Adjust.
20132         * gimple-match-head.c: Include gimplify.h for unshare_expr.
20133         * match.pd (A + (B vcmp C ? 1 : 0) -> A - (B vcmp C)): Revert
20134         last change and instead change to
20135         A + (B vcmp C ? 1 : 0) -> A - (B vcmp C ? -1 : 0).
20136         (A - (B vcmp C ? 1 : 0) -> A + (B vcmp C)): Likewise.
20138 2016-03-22  Anthony Green  <green@moxielogic.com>
20140         * config/moxie/moxiebox.h (CC1_SPEC): Define.  Fix endianness
20141         issue for moxiebox targets.
20142         (CC1PLUS_SPEC): Ditto.
20144 2016-03-22  Richard Biener  <rguenther@suse.de>
20146         PR middle-end/70333
20147         * fold-const.c (extract_muldiv_1): Properly perform multiplication
20148         in the wide type.
20150 2016-03-22  Kirill Yukhin  <kirill.yukhin@intel.com>
20152         * config/i386/i386.c (def_builtin): Remove duplicated functionality.
20154 2016-03-22  Kirill Yukhin  <kirill.yukhin@intel.com>
20156         PR target/70325
20157         * config/i386/i386.c (def_builtin): Handle
20158         OPTION_MASK_ISA_AVX512VL to be and-ed with other
20159         bits.
20160         (const struct builtin_description bdesc_special_args[]):
20161         Remove duplicate ISA bits.
20163 2016-03-22  Jakub Jelinek  <jakub@redhat.com>
20165         PR target/70329
20166         * config/i386/i386.c (ix86_expand_vecop_qihi): Don't bother computing
20167         d.perm[i] for i >= d.nelt.  If not full_interleave, compute d.perm[i]
20168         in a way that works also for AVX512BW.
20170         PR target/70300
20171         * config/i386/i386.md (cvtsd2ss splitter): Unpack in destination
20172         instead of source if operands[1] is xmm16 and above and
20173         !TARGET_AVX512VL.  Use avx512f_vec_dupv16sf_1 instead of
20174         vec_interleave_lowv4sf if we need to unpack xmm16 and above.
20176         PR c++/70295
20177         * gimplify.c (gimplify_modify_expr): Call gimple_set_no_warning
20178         on assign if (*from_p) is a comparison, set it to
20179         TREE_NO_WARNING (*from_p).
20181 2016-03-21  Jakub Jelinek  <jakub@redhat.com>
20183         PR middle-end/70326
20184         * lra.c (restore_scratches): Ignore deleted insns.
20186 2016-03-21  Marc Glisse  <marc.glisse@inria.fr>
20187             Jakub Jelinek  <jakub@redhat.com>
20189         PR tree-optimization/70317
20190         * match.pd (cmp @0 @0): Pass @0 instead of TYPE_MODE (TREE_TYPE (@0))
20191         to HONOR_NANS.
20193 2016-03-21  Uros Bizjak  <ubizjak@gmail.com>
20195         PR target/70327
20196         * config/i386/i386.md (movxi): Use ix86_expand_vector_move instead
20197         of ix86_expand_move.
20198         (movoi): Ditto.
20199         (movti): Use general_operand for operand 1 predicate.
20201 2016-03-21  Martin Liska  <mliska@suse.cz>
20203         * hsa-dump.c (dump_hsa_insn_1): dump default branch of SBR
20204         insns.
20205         (dump_hsa_symbol): Dump BRIG offset of hsa_symbols.
20207 2016-03-21  Martin Liska  <mliska@suse.cz>
20209         PR ipa/70306
20210         * ipa-icf.c (sem_function::parse): Skip static
20211         constructors and destructors.
20213 2016-03-21  Jakub Jelinek  <jakub@redhat.com>
20215         PR target/70296
20216         * config/rs6000/rs6000-c.c (rs6000_macro_to_expand): If IDENT is
20217         function-like macro, peek following token(s) if it is followed
20218         by CPP_OPEN_PAREN token with optional padding in between, and
20219         if not, don't treat it like a macro.
20221 2016-03-21  Thomas Schwinge  <thomas@codesourcery.com>
20222             Alexander Monakov  <amonakov@ispras.ru>
20224         * config/nvptx/nvptx.c (nvptx_option_override): Don't emit sorry
20225         for the stabs debug format.
20227 2016-03-21  Richard Biener  <rguenther@suse.de>
20229         PR tree-optimization/70310
20230         * tree-vect-generic.c (expand_vector_condition): Fold the built
20231         condition.
20233 2016-03-21  Kirill Yukhin  <kirill.yukhin@intel.com>
20235         PR target/70293
20236         * config/i386/sse.md: (define_insn "*vec_dup<mode>"/AVX2):
20237         Block third alternative for AVX-512VL target,
20239 2016-03-21  Martin Liska  <mliska@suse.cz>
20241         PR hsa/70234
20242         * hsa-brig.c (emit_function_directives): Mark unemitted
20243         global variables for emission.
20244         * hsa-gen.c (hsa_symbol::hsa_symbol): Initialize a new flag.
20245         (get_symbol_for_decl): Likewise.
20246         * hsa.h (struct hsa_symbol): New flag.
20248 2016-03-21  Richard Biener  <rguenther@suse.de>
20250         PR tree-optimization/70288
20251         * tree-ssa-loop-ivcanon.c (tree_estimate_loop_size): Make sure
20252         we do not estimate unsimplified all-constant conditionals or
20253         switches as optimized away.
20255 2016-03-21  Andrey Belevantsev  <abel@ispras.ru>
20257         PR rtl-optimization/69102
20258         * sched-deps.c (sched_analyze_insn): Do not set last_args_size field
20259         when we have a readonly dependency context.
20261 2016-03-18  Jeff Law  <law@redhat.com>
20263         PR rtl-optimization/70263
20264         * ira.c (memref_used_between_p): Assert we found END in the insn chain.
20265         (update_equiv_regs): When trying to move a store to after the insn
20266         that sets the source of the store, make sure the store occurs after
20267         the insn that sets the source of the store.  When successful note
20268         the REG_EQUIV note created in the dump file.
20270 2016-03-16  David Wohlferd  <dw@LimeGreenSocks.com>
20271             Bernd Schmidt  <bschmidt@redhat.com>
20273         * doc/extend.texi: Document more potential problems with basic asms.
20275 2016-03-18  Bernd Schmidt  <bschmidt@redhat.com>
20277         PR rtl-optimization/70278
20278         * lra-constraints.c (split_reg): Handle the case where biggest_mode is
20279         VOIDmode.
20281 2016-03-18  Jason Merrill  <jason@redhat.com>
20283         * calls.c (load_register_parameters): Fix zero size sibcall logic.
20285 2016-03-18  Kirill Yukhin  <kirill.yukhin@intel.com>
20287         * config/i386/sse.md: Use vpbroadcastq for broadcasting DF
20288         values to 128b regs.
20290 2016-03-18  Ilya Enkovich  <enkovich.gnu@gmail.com>
20292         PR tree-optimization/70252
20293         * tree-vect-stmts.c (supportable_widening_operation): Check resulting
20294         boolean vector has a proper number of elements.
20295         (supportable_narrowing_operation): Likewise.
20297 2016-03-18  Tom de Vries  <tom@codesourcery.com>
20299         PR ipa/70269
20300         * cgraph.c (cgraph_node::get_body): Set dump_file to NULL after save.
20302 2016-03-18  Jakub Jelinek  <jakub@redhat.com>
20304         * reload1.c (emit_input_reload_insns): Use simplify_replace_rtx
20305         instead of replace_rtx for DEBUG_INSNs.
20307 2016-03-18  Venkataramanan Kumar  <venkataramanan.kumar@amd.com>
20309         * config/i386/znver1.md : Fix latencies of FP/SSE/AVX
20310         load type reservations.
20312 2016-03-17  John David Anglin  <danglin@gcc.gnu.org>
20314         PR target/70188
20315         * config/pa/constraints.md: Revert 2015-02-13 change.  Use
20316         define_constraint for "Q" and "T" constraints.
20318 2016-03-17  Evandro Menezes  <e.menezes@samsung.com>
20320         Tweak the pipeline model for Exynos M1
20322         * config/aarch64/aarch64.c (exynosm1_tunings):  Enable weak prefetching
20323         model.
20325 2016-03-17  David Malcolm  <dmalcolm@redhat.com>
20327         PR c/70264
20328         * diagnostic-show-locus.c (compatible_locations_p): Handle the case
20329         where one or both locations aren't within a line_map.
20331 2016-03-17  H.J. Lu  <hongjiu.lu@intel.com>
20333         PR driver/70192
20334         * opts.c (finish_options): Don't set flag_pie to the default if
20335         -fpic, -fPIC, -fno-pic or -fno-PIC is used.  Set flag_pic to 0
20336         if it is -1.
20338 2016-03-17  Joern Rennecke  <joern.rennecke@embecosm.com>
20340         * config/i386/i386.md (*movv4qicc_insn+1..36): Pass
20341         true as ALL_REGS argument to replace_rtx.
20343 2016-03-17  Richard Biener  <rguenther@suse.de>
20345         PR debug/70271
20346         * dwarf2out.c (dwarf2out_early_finish): Process deferred_asm_name
20347         last.
20349 2016-03-17  Jakub Jelinek  <jakub@redhat.com>
20351         PR target/70245
20352         * rtl.h (replace_rtx): Add ALL_REGS argument.
20353         * rtlanal.c (replace_rtx): Likewise.  If true, use REGNO
20354         equality and assert mode is the same, instead of just rtx pointer
20355         equality.
20356         * config/i386/i386.md (mov + arithmetics with load peephole): Pass
20357         true as ALL_REGS argument to replace_rtx.
20359 2016-03-17  Ilya Enkovich  <enkovich.gnu@gmail.com>
20361         * match.pd (A + (B vcmp C ? 1 : 0) -> A - (B vcmp C)): Apply
20362         for boolean vector with vector mode only.
20363         (A - (B vcmp C ? 1 : 0) -> A + (B vcmp C)): Likewise.
20365 2016-03-17  Nick Clifton  <nickc@redhat.com>
20367         PR target/70162
20368         * config/rx/rx.c (rx_print_integer): Print negative constants in
20369         decimal.
20371 2016-03-17  Jakub Jelinek  <jakub@redhat.com>
20373         PR target/70261
20374         * rtlanal.c (replace_rtx): Revert 2016-03-16 change.
20376 2016-03-16  Richard Henderson  <rth@redhat.com>
20377             Richard Biener  <rguenth@suse.de>
20379         PR middle-end/70240
20380         PR middle-end/68215
20381         PR tree-opt/68714
20382         * gimplify.c (gimplify_expr) [VEC_COND_EXPR]: Gimplify the
20383         first operand as is_gimple_condexpr.
20385         PR middle-end/70240
20386         PR middle-end/68215
20387         Revert r231575
20388         2015-12-11  Eric Botcazou  <ebotcazou@adacore.com>
20389         * tree-vect-generic.c (tree_vec_extract): Remove GSI parameter.
20390         Do not gimplify the result.
20391         (do_unop): Adjust call to tree_vec_extract.
20392         (do_binop): Likewise.
20393         (do_compare): Likewise.
20394         (do_plus_minus): Likewise.
20395         (do_negate): Likewise.
20396         (expand_vector_condition): Likewise.
20397         (do_cond): Likewise.
20399 2016-03-16  Richard Henderson  <rth@redhat.com>
20401         PR target/70048
20402         * config/aarch64/aarch64.c (virt_or_elim_regno_p): New.
20403         (aarch64_classify_address): Use it.
20404         (aarch64_legitimize_address): Force all subexpressions of PLUS
20405         into registers.  Simplify as (sfp+const)+reg or (reg+reg)+const.
20407 2016-03-16  Jakub Jelinek  <jakub@redhat.com>
20408             Richard Biener  <rguenth@suse.de>
20410         PR target/70245
20411         * rtlanal.c (replace_rtx): For REG, if from is a REG,
20412         return to even if only REGNO is equal, and assert
20413         mode is the same.
20415 2016-03-11  Jeff Law  <law@redhat.com>
20417         PR rtl-optimization/70224
20418         * reorg.c (relax_delay_slots): Pass right argument to CROSSING_JUMP_P.
20420 2016-03-16  Richard Henderson  <rth@redhat.com>
20422         PR middle-end/70199
20423         * function.h (struct function): Add has_forced_label_in_static.
20424         * gimplify.c (force_labels_r): Set it.
20425         * lto-streamer-in.c (input_struct_function_base): Read it.
20426         * lto-streamer-out.c (output_struct_function_base): Write it.
20427         * tree-inline.c (has_label_address_in_static_1): Remove.
20428         (copy_forbidden): Remove fndecl parameter; test
20429         has_forced_label_in_static.
20430         (inline_forbidden_p): Update call to copy_forbidden.
20431         (tree_versionable_function_p): Likewise.
20432         * ipa-chkp.c (chkp_instrumentable_p): Likewise.
20433         (chkp_versioning): Likewise.
20434         * tree-inline.h (copy_forbidden): Update decl.
20436 2016-03-16  Marek Polacek  <polacek@redhat.com>
20438         PR c/70093
20439         * cgraphunit.c (cgraph_node::expand_thunk): Also build call to the
20440         function being thunked if the result type doesn't have fixed size.
20441         * gimplify.c (gimplify_modify_expr): Also set LHS if the result type
20442         doesn't have fixed size.
20444 2016-03-16  Bin Cheng  <bin.cheng@arm.com>
20446         * tree-vect-loop.c (vect_analyze_loop_2): Fix wrong dump info by
20447         reporting malformed loop nest.
20449 2016-03-16  Tom de Vries  <tom@codesourcery.com>
20451         PR lto/70187
20452         * ipa-devirt.c (possible_polymorphic_call_targets): Move
20453         nodes.length () == 1 test to before first nodes[0] access.
20455 2016-03-16  Tom de Vries  <tom@codesourcery.com>
20457         PR tree-optimization/68715
20458         * graphite-scop-detection.c (scop_detection::merge_sese): Add missing
20459         single_pred_p test.
20461 2016-03-16  Tom de Vries  <tom@codesourcery.com>
20463         PR tree-optimization/68809
20464         * graphite-scop-detection.c (same_close_phi_node): Test if result types
20465         are the same.
20467 2016-03-16  Carlos O'Donell  <carlos@redhat.com>
20468             Sandra Loosemore  <sandra@codesourcery.com>
20470         * doc/extend.texi (Common Function Attributes): Describe ifunc impact
20471         on leaf attribute. Mention ELF interposition problems.
20473 2016-03-16  Alan Modra  <amodra@gmail.com>
20475         PR rtl-optimization/69195
20476         PR rtl-optimization/47992
20477         * ira.c (indirect_jump_optimize): Ignore artificial defs.
20478         Add comments.
20480 2016-03-15  Eric Botcazou  <ebotcazou@adacore.com>
20482         PR bootstrap/69513
20483         * dwarf2out.c (flush_limbo_die_list): Really flush the limbo list.
20485 2016-03-15  Senthil Kumar Selvaraj  <senthil_kumar.selvaraj@atmel.com>
20487         * config/avr/avr.md (rotl<mode>3): Set mode for operand 2.
20489 2016-03-15  Jakub Jelinek  <jakub@redhat.com>
20491         PR rtl-optimization/70222
20492         * combine.c (simplify_shift_const_1): For A >> B >> C LSHIFTRT
20493         optimization if mode is different from result_mode, queue up masking
20494         of the result in outer_op.  Formatting fix.
20496         PR middle-end/70239
20497         * tree-ssa-sccvn.c (VN_INFO_GET): Use safe_grow_cleared instead
20498         of safe_grow.
20500 2016-03-15  Andrey Belevantsev  <abel@ispras.ru>
20502         PR rtl-optimization/69032
20503         * sel-sched-ir.c (get_seqno_by_preds): Include both insn and head when
20504         looping backwards over basic block insns.
20506 2016-03-15  Andrey Belevantsev  <abel@ispras.ru>
20508         PR target/66660
20509         * sel-sched-ir.c (merge_expr): Avoid changing the speculative pattern
20510         to non-speculative when propagating trap bits.
20512 2016-03-15  Andrey Belevantsev  <abel@ispras.ru>
20514         PR rtl-optimization/63384
20515         * sel-sched.c (invoke_aftermath_hooks): Do not decrease issue_more on
20516         DEBUG_INSN_P insns.
20518 2016-03-15  Andrey Belevantsev  <abel@ispras.ru>
20520         PR target/64411
20521         * sched-deps.c (get_implicit_reg_pending_clobbers): New function,
20522         factored out from ...
20523         (sched_analyze_insn): ... here.
20524         * sched-int.h (get_implicit_reg_pending_clobbers): Declare it.
20525         * sel-sched-ir.c (setup_id_implicit_regs): New function, use
20526         get_implicit_reg_pending_clobbers in it.
20527         (setup_id_reg_sets): Use setup_id_implicit_regs.
20528         (deps_init_id): Ditto.
20530 2016-03-15  Tom de Vries  <tom@codesourcery.com>
20532         PR ipa/70161
20533         * cgraph.c (cgraph_node::get_body): Save, reset and restore
20534         dump_file_name.
20535         * passes.c (execute_one_ipa_transform_pass): Add missing argument to
20536         execute_function_dump.
20537         (execute_one_pass): Don't dump function if it will be dumped after ipa
20538         transform.
20540 2016-03-15  Segher Boessenkool  <segher@kernel.crashing.org>
20542         * genrecog.c (match_pattern_2): If pred is NULL don't call
20543         safe_predicate_mode on it.
20545 2016-03-14  Jakub Jelinek  <jakub@redhat.com>
20547         PR middle-end/70219
20548         * lra-constraints.c (delete_move_and_clobber): Change assertion
20549         to also allow dregno == 0.
20551 2016-03-14  Richard Henderson  <rth@redhat.com>
20553         PR tree-opt/68714
20554         * tree-ssa-reassoc.c (ovce_extract_ops, optimize_vec_cond_expr): New.
20555         (can_reassociate_p): Allow ANY_INTEGRAL_TYPE_P.
20556         (reassociate_bb): Use optimize_vec_cond_expr; avoid
20557         optimize_range_tests, attempt_builtin_copysign and attempt_builtin_powi
20558         on vectors.
20560 2016-03-14  Bernd Schmidt  <bschmidt@redhat.com>
20562         PR target/70083
20563         * lra-lives.c (process_bb_lives): Also update biggest mode for hard
20564         regs.
20565         (lra_create_live_ranges_1): initialize hard register biggest_mode to
20566         VOIDmode.
20567         * lra-constraints.c (split_reg): For hard regs, try to find the
20568         biggest single-register mode used in the function.
20570 2016-03-14  Richard Biener  <rguenther@suse.de>
20572         PR tree-optimization/56365
20573         * tree-ssa-phiopt.c (minmax_replacement): Handle alternate
20574         constants to compare against.
20576 2016-03-14  Segher Boessenkool  <segher@kernel.crashing.org>
20578         PR target/70098
20579         * config/rs6000/rs6000.md (*ctr<mode>_internal1, *ctr<mode>_internal2,
20580         *ctr<mode>_internal5, *ctr<mode>_internal6): Also allow "d" as output.
20581         (define_split for the GPR case): Use int_reg_operand instead of
20582         gpc_reg_operand for the output.
20584 2016-03-14  Tom de Vries  <tom@codesourcery.com>
20586         PR tree-optimization/70045
20587         * graphite-isl-ast-to-gimple.c (graphite_create_new_loop_guard): Unshare
20588         create_empty_if_region_on_edge argument.
20590 2016-03-13  Eric Botcazou  <ebotcazou@adacore.com>
20592         * config/arm/vxworks.h (STACK_CHECK_STATIC_BUILTIN): Define.
20593         (STACK_CHECK_PROTECT): Likewise.
20594         * config/i386/vxworks.h (STACK_CHECK_STATIC_BUILTIN): Likewise
20595         (STACK_CHECK_PROTECT): Likewise.
20596         * config/rs6000/vxworks.h (STACK_CHECK_STATIC_BUILTIN): Likewise
20597         (STACK_CHECK_PROTECT): Likewise.
20598         * config/rs6000/vxworksae.h (STACK_CHECK_PROTECT): Likewise.
20599         * config/sparc/vxworks.h (STACK_CHECK_STATIC_BUILTIN): Likewise.
20600         (STACK_CHECK_PROTECT): Likewise.
20602 2016-03-12  Andrey Belevantsev  <abel@ispras.ru>
20604         PR rtl-optimization/69307
20605         * sel-sched.c (choose_best_pseudo_reg): Properly check for hard
20606         registers in modes that span more than one register.
20608 2016-03-12  Vladimir Makarov  <vmakarov@redhat.com>
20610         PR target/69614
20611         * lra-constraints.c (delete_move_and_clobber): New.
20612         (remove_inheritance_pseudos): Use it.
20614 2016-03-12  Eric Botcazou  <ebotcazou@adacore.com>
20616         PR ada/70017
20617         * calls.c (emit_library_call_value_1): Clear the ECF_NOTHROW flag if
20618         the libcall is LCT_THROW.
20619         * explow.c (probe_stack_range): Pass LCT_THROW to emit_library_call
20620         for the checking routine.
20622 2016-03-11  Michael Meissner  <meissner@linux.vnet.ibm.com>
20624         PR target/70131
20625         * config/rs6000/rs6000.md (round32<mode>2_fprs): Do not do the
20626         optimization if we have direct move.
20627         (roundu32<mode>2_fprs): Likewise.
20629 2016-03-11  Bernd Schmidt  <bschmidt@redhat.com>
20631         PR target/70123
20632         * lra-remat.c (operand_to_remat): Disallow hard regs in the value t
20633         be rematerialized.
20634         (reg_overlap_for_remat_p): Renamed from input_regno_present_p.
20635         Arguments swapped.  All callers changed.  Take reg_renumber into
20636         account, and Calculate and compare register ranges for hard regs.
20638 2016-03-11  Jeff Law  <law@redhat.com>
20640         PR tree-optimization/70190
20641         * tree-ssa-threadbackward.c (fsm_find_control_statement_thread_paths):
20642         Handle cases where we can not extract the taken edge, even though we
20643         found a constant value.
20645         PR tree-optimization/64058
20646         * tree-ssa-coalesce.c (struct coalesce_pair): Add new field INDEX.
20647         (num_coalesce_pairs): Move up earlier in file.
20648         (find_coalesce_pair): Initialize the INDEX field for each pair
20649         discovered.
20650         (compare_pairs): No longer sort on the elements in each pair.
20651         Instead break ties with the index of the coalesce pair.
20653 2016-03-11  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
20655         PR target/70002
20656         * config/aarch64/aarch64-protos.h
20657         (aarch64_save_restore_target_globals): New prototype.
20658         * config/aarch64/aarch64-c.c (aarch64_pragma_target_parse):
20659         Call the above when popping pragma.
20660         * config/aarch64/aarch64.c (aarch64_save_restore_target_globals):
20661         New function.
20662         (aarch64_set_current_function): Rewrite using the above.
20664 2016-03-11  Jakub Jelinek  <jakub@redhat.com>
20666         PR tree-optimization/70177
20667         * gimple-expr.h (extract_ops_from_tree_1): Renamed to ...
20668         (extract_ops_from_tree): ... this.  In the 2 argument
20669         overload remove _1 suffix.
20670         * gimple-expr.c (extract_ops_from_tree_1): Renamed to ...
20671         (extract_ops_from_tree): ... this.
20672         * gimple.c (gimple_build_assign, gimple_assign_set_rhs_from_tree):
20673         Adjust callers.
20674         * tree-ssa-loop-niter.c (derive_constant_upper_bound): Likewise.
20675         * tree-ssa-forwprop.c (defcodefor_name): Call 3 operand
20676         extract_ops_from_tree instead of 2 operand one.
20678 2016-03-11  Alan Lawrence  <alan.lawrence@arm.com>
20680         PR tree-optimization/70013
20681         * tree-sra.c (analyze_access_subtree): Also set grp_unscalarized_data
20682         for constant-pool entries.
20684 2016-03-11  Jakub Jelinek  <jakub@redhat.com>
20686         PR rtl-optimization/70174
20687         * expmed.c (store_bit_field_using_insv): Use gen_lowpart_if_possible
20688         followed by gen_lowpart on force_reg instead of just gen_lowpart.
20690         PR tree-optimization/70169
20691         * tree-ssa-loop.c (gen_lsm_tmp_name): Handle FUNCTION_DECL and
20692         LABEL_DECL like VAR_DECL.  Emit nothing instead of gcc_unreachable
20693         for unknown codes.
20695 2016-03-11  Ilya Enkovich  <enkovich.gnu@gmail.com>
20696             Jakub Jelinek  <jakub@redhat.com>
20698         PR target/70160
20699         * config/i386/i386.c (scalar_chain::convert_reg): Skip uses
20700         of uninitialized values.
20702 2016-03-11  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
20704         * config/s390/s390.md ("trunctddd2"): Turn former define_insn into
20705         define_expand.
20706         ("*trunctddd2"): New pattern definition.
20707         ("trunctdsd2"): Set prep_for_short_prec rounding mode for the
20708         TD->DD truncation.
20710 2016-03-11  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
20712         * config/s390/s390.md (BFP_RND_*, DFP_RND_*): Add new constant
20713         definitions for BFP and DFP rounding modes.
20714         ("fixuns_truncdddi2", "fixuns_trunctddi2")
20715         ("fixuns_trunc<BFP:mode><GPR:mode>2", "fixuns_trunc<mode>si2")
20716         ("fix_trunc<DSF:mode><GPR:mode>2", "fix_trunc<mode>di2")
20717         ("fix_trunctf<mode>2"): Use the new constants instead of magic
20718         numbers.
20720 2016-03-11  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
20722         * config/s390/constraints.md: Adjust comment.
20723         ("Y"): Adjust comment.  Rename s390_decompose_shift_count to
20724         s390_decompose_addrstyle_without_index.
20725         * config/s390/predicates.md (shift_count_or_setmem_operand):
20726         Rename to setmem_operand.
20727         * config/s390/s390-protos.h
20728         (s390_decompose_shift_count): Rename to
20729         s390_decompose_addrstyle_without_index.
20730         * config/s390/s390.c (s390_decompose_shift_count)
20731         (s390_mem_constraint, print_shift_count_operand)
20732         (print_operand_address, print_operand): Rename
20733         s390_decompose_shift_count to
20734         s390_decompose_addrstyle_without_index and rename
20735         print_shift_count_operand to print_addrstyle_operand troughout the
20736         file.
20737         * config/s390/s390.md ("setmem_long_<P:mode>", "*setmem_long")
20738         ("*setmem_long_and", "*setmem_long_31z", "*setmem_long_and_31z"):
20739         Rename shift_count_or_setmem_operand to setmem_operand.
20740         * config/s390/vx-builtins.md ("vec_insert<mode>")
20741         ("vec_promote<mode>"): Replace shift_count_or_setmem_operand with
20742         nonmemory_operand.
20744 2016-03-10  Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>
20746         PR target/70168
20747         * config/rs6000/rs6000.c (rs6000_expand_atomic_compare_and_swap):
20748         Handle overlapping retval and newval.
20750 2016-03-10  Nick Clifton  <nickc@redhat.com>
20752         PR target/7044
20753         * config/aarch64/aarch64.c
20754         (aarch64_override_options_after_change_1): When forcing
20755         flag_omit_frame_pointer to be true, use a special value that can
20756         be detected if this function is called again, thus preventing
20757         flag_omit_leaf_frame_pointer from being forced to be false.
20759 2016-03-10  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
20761         * common/config/aarch64/aarch64-common.c (aarch64_handle_option):
20762         Set x_flag_omit_leaf_frame_pointer when handling
20763         -momit-leaf-frame-pointer.
20765 2016-03-10  Jan Hubicka  <hubicka@ucw.cz>
20767         PR lto/69589
20768         * cgraph.c (cgraph_node::dump): Dump split_part and
20769         indirect_call_target.
20770         * cgraph.h (cgraph_node): Add indirect_call_target flag.
20771         * ipa.c (has_addr_references_p): Cleanup.
20772         (is_indirect_call_target_p): New.
20773         (walk_polymorphic_call_targets): Do not mark virtuals that may be
20774         called indirectly as local.
20775         (symbol_table::remove_unreachable_nodes): Compute indirect_call_target.
20777 2016-03-10  Jan Hubicka  <hubicka@ucw.cz>
20779         PR ipa/69630
20780         * ipa-devirt.c (possible_polymorphic_call_targets): Do not ICE
20781         on cxa_pure_virtual.
20783 2016-03-10  Jan Hubicka  <hubicka@ucw.cz>
20785         PR lto/69589
20786         * tree.c (free_lang_data_in_decl): Clear visibility of TYPE_DECL.
20788 2016-03-10  Jan Hubicka  <hubicka@ucw.cz>
20790         PR lto/69589
20791         * tree.c (need_assembler_name_p): Only record main variant type names.
20793 2016-03-10  Christophe Lyon  <christophe.lyon@linaro.org>
20795         PR target/70113.
20796         * config/aarch64/aarch64.h (TARGET_FIX_ERR_A53_843419_DEFAULT):
20797         Always define to 0 or 1.
20798         (TARGET_FIX_ERR_A53_843419): New macro.
20799         * config/aarch64/aarch64-elf-raw.h
20800         (TARGET_FIX_ERR_A53_843419_DEFAULT): Update for above changes.
20801         * config/aarch64/aarch64-linux.h: Likewise.
20802         * config/aarch64/aarch64.c
20803         (aarch64_override_options_after_change_1): Do not default
20804         aarch64_nopcrelative_literal_loads to true if Cortex-A53 erratum
20805         843419 is on.
20806         (aarch64_attributes): Handle fix-cortex-a53-843419.
20807         (aarch64_can_inline_p): Likewise.
20808         * config/aarch64/aarch64.opt (aarch64_fix_a53_err843419): Save.
20810 2016-03-10  Alan Lawrence  <alan.lawrence@arm.com>
20811             Jakub Jelinek  <jakub@redhat.com>
20813         * common.opt (funconstrained-commons, flag_unconstrained_commons): New.
20814         * tree.c (array_at_struct_end_p): Do not limit to size of decl for
20815         DECL_COMMONS if flag_unconstrained_commons is set.
20816         * tree-dfa.c (get_ref_base_and_extent): Likewise.
20817         * doc/invoke.texi (Optimize Options): Add -funconstrained-commons.
20818         (funconstrained-commons): Document.
20820 2016-03-10  Christophe Lyon  <christophe.lyon@linaro.org>
20822         * config/aarch64/t-aarch64 (OPTIONS_H_EXTRA): Add
20823         aarch64-fusion-pairs.def and aarch64-tuning-flags.def
20825 2016-03-10  Ilya Enkovich  <enkovich.gnu@gmail.com>
20827         * tree-vect-stmts.c (vectorizable_mask_load_store): Check mask
20828         has a proper number of elements.
20830 2016-03-10  Alan Modra  <amodra@gmail.com>
20832         PR rtl-optimization/69195
20833         PR rtl-optimization/47992
20834         * ira.c (recorded_label_ref): Delete.
20835         (update_equiv_regs): Return void.
20836         (indirect_jump_optimize): New function.
20837         (ira): Call indirect_jump_optimize and delete_trivially_dead_insns
20838         before regstat_compute_ri.  Don't rebuild_jump_labels here.
20839         Delete update_regstat.
20841 2016-03-10  Richard Biener  <rguenther@suse.de>
20843         PR tree-optimization/70128
20844         * tree-ssa-structalias.c (set_uids_in_ptset): Set
20845         vars_contains_nonlocal for any FUNCTION_DECL or LABEL_DECL.
20847 2016-03-09  Jakub Jelinek  <jakub@redhat.com>
20849         PR tree-optimization/70152
20850         * tree-sra.c (replace_removed_params_ssa_names): Copy over
20851         SSA_NAME_OCCURS_IN_ABNORMAL_PHI from old_name to new_name.
20853         PR target/70086
20854         * config/i386/i386.md (truncdfsf2 splitter): Use gen_vec_concatv2df
20855         instead of gen_sse2_loadlpd.
20856         * config/i386/sse.md (*vec_concatv2df): Rename to...
20857         (vec_concatv2df): ... this.
20859         PR tree-optimization/70127
20860         * fold-const.c (operand_equal_p): Revert the 2015-10-28 change.
20862 2016-03-09  David Malcolm  <dmalcolm@redhat.com>
20864         PR c/68473
20865         PR c++/70105
20866         * diagnostic-show-locus.c (compatible_locations_p): New function.
20867         (layout::layout): Sanitize ranges using compatible_locations_p.
20869 2016-03-09  David Malcolm  <dmalcolm@redhat.com>
20871         PR c/68473
20872         PR c++/70105
20873         * diagnostic-show-locus.c (layout_range::layout_range): Replace
20874         location_range param with three const expanded_locations * and a
20875         bool.
20876         (layout::layout): Replace call to
20877         rich_location::lazily_expand_location with get_expanded_location.
20878         Extract the range and perform location expansion here, passing
20879         the results to the layout_range ctor.
20880         * diagnostic.c (source_range::debug): Delete.
20881         * diagnostic.h (diagnostic_expand_location): Reimplement in terms
20882         of rich_location::get_expanded_location.
20883         * gcc-rich-location.c (get_range_for_expr): Delete.
20884         (gcc_rich_location::add_expr): Reimplement to avoid the
20885         rich_location::add_range overload that took a location_range,
20886         passing a location_t instead.
20888 2016-03-09  Richard Biener  <rguenther@suse.de>
20889         Jakub Jelinek  <jakub@redhat.com>
20891         PR tree-optimization/70138
20892         * tree-vect-loop-manip.c (vect_update_ivs_after_vectorizer):
20893         Also skip vect_double_reduction_def.
20895 2016-03-09  Jakub Jelinek  <jakub@redhat.com>
20897         PR target/70049
20898         * config/i386/sse.md (*vec_extract<mode>): Use %0 instead of %k0
20899         if the operand is "m".
20901 2016-03-09  Nathan Sidwell  <nathan@acm.org>
20903         * config/nvptx/nvptx.c (nvptx_option_override): Don't kill debug level.
20905 2016-03-09  Venkataramanan Kumar  <venkataramanan.kumar@amd.com>
20907         * config/i386/i386.c (processor_target_table): Fix cost table
20908         intialization order for znver1.
20910 2016-03-08  Jakub Jelinek  <jakub@redhat.com>
20912         * ipa-polymorphic-call.c (walk_ssa_copies): Fix spelling
20913         - becuase -> because.
20914         * ipa-reference.c (ignore_module_statics): Likewise.
20915         * cgraph.c (cgraph_node::get_body): Likewise.
20916         * ipa-inline.c (early_inliner): Likewise.
20917         * ipa-devirt.c (types_same_for_odr): Likewise.
20918         * tree-streamer-out.c (pack_ts_type_common_value_fields): Likewise.
20919         * config/i386/i386.h (ACCUMULATE_OUTGOING_ARGS): Likewise.
20921 2016-03-08  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
20923         * tree-ssa-math-opts.c: Fix typo in comment.
20925 2016-03-08  Jakub Jelinek  <jakub@redhat.com>
20927         PR target/70110
20928         * config/i386/i386.c (scalar_chain::make_vector_copies,
20929         scalar_chain::convert_reg): Call end_sequence in between
20930         get_insns and emit_conversion_insns rather than after both
20931         calls.
20933 2016-03-07  Uros Bizjak  <ubizjak@gmail.com>
20935         PR target/70064
20936         * config/i386/i386.h (machine_function): Add
20937         pc_thunk_call_expanded flag.
20938         (ix86_pc_thunk_call_expanded): New define.
20939         * config/i386/i386.md (set_got, set_got_labelled): New expanders.
20940         (*set_got): Rename insn pattern from set_got.
20941         (*set_got_labelled): Rename inst pattern from set_got_labelled.
20942         * config/i386/i386.c (ix86_compute_frame_layout): Use
20943         ix86_pc_thunk_call_expanded to prevent red-zone.
20945 2016-03-07  Martin Jambor  <mjambor@suse.cz>
20947         * hsa.h (hsa_get_ctor_statements): Declare.
20948         (hsa_get_dtor_statements): Likewise.
20949         (hsa_get_kernel_dispatch_type): Likewise.
20950         * hsa.c (hsa_get_ctor_statements): New function.
20951         (hsa_get_dtor_statements): Likewise.
20952         (hsa_get_kernel_dispatch_type): Likewise.
20953         * hsa-brig.c (hsa_cdtor_statements): Removed.
20954         (hsa_output_libgomp_mapping): Use hsa_get_ctor_statements and
20955         hsa_get_dtor_statements.
20956         * hsa-gen.c (hsa_kernel_dispatch_type): Removed.
20957         (get_hsa_kernel_dispatch_offset): Use hsa_get_kernel_dispatch_type.
20959 2016-03-07  Andre Vieira  <andre.simoesdiasvieira@arm.com>
20961         * config/arm/arm-cores.def (cortex-r8): New.
20962         * config/arm/arm-tables.opt (cortex-r8): Regenerate.
20963         * config/arm/arm-tune.md: Likewise.
20964         * doc/invoke.texi: Add cortex-r8 to list of cpu values.
20966 2016-03-07  Martin Sebor  <msebor@redhat.com>
20968         PR rtl-optimization/19705
20969         * doc/invoke.texi (Options That Control Optimization): Clarify
20970         -fno-branch-count-reg.
20972 2016-02-26  Richard Biener  <rguenther@suse.de>
20973             Jeff Law  <law@redhat.com>
20975         PR tree-optimization/69740
20976         * cfghooks.c (remove_edge): Request loop fixups if we delete
20977         an edge that might turn an irreducible loop into a natural
20978         loop.
20979         * cfgloop.h (check_verify_loop_structure): Clear LOOPS_NEED_FIXUP.
20980         Move after definition of loops_state_clear.
20982 2016-03-07  Bin Cheng  <bin.cheng@arm.com>
20984         PR rtl-optimization/69052
20985         * rtlanal.c (commutative_operand_precedence): Set higher precedence
20986         to CONST_WIDE_INT.
20988 2016-03-07  Tom de Vries  <tom@codesourcery.com>
20990         PR tree-optimization/70116
20991         * tree-ssa-tail-merge.c (merge_stmts_p): New function, handling
20992         is_tm_ending stmts and ubsan/asan internal functions.
20993         (find_duplicate): Use it.  Don't test is_tm_ending here.
20995 2016-03-07  Richard Biener  <rguenther@suse.de>
20997         PR tree-optimization/70115
20998         * tree-ssa-loop-ivcanon.c (propagate_into_all_uses): Remove.
20999         (propagate_constants_for_unrolling): Use replace_uses_by.
21001 2016-03-07  Nathan Sidwell  <nathan@codesourcery.com>
21003         PR middle-end/69916
21004         * omp-low.c (struct oacc_loop): Add ifns.
21005         (new_oacc_loop_raw): Initialize it.
21006         (finish_oacc_loop): Clear mask & flags if no ifns.
21007         (oacc_loop_discover_walk): Count IFN_GOACC_LOOP calls.
21008         (oacc_loop_xform_loop): Add ifns arg & adjust.
21009         (oacc_loop_process): Adjust oacc_loop_xform_loop call.
21011 2016-03-07  Richard Henderson  <rth@redhat.com>
21013         PR rtl-opt/70061
21014         * tree-outofssa.c (emit_partition_copy): Flush pending stack adjust.
21015         (insert_value_copy_on_edge): Likewise.
21017 2016-03-07  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
21019         * config/arm/arm_neon.h: Show error if using with soft-float ABI.
21021 2016-03-07  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
21023         PR target/62281
21024         * config/i386/sol2.h (STACK_REALIGN_DEFAULT): Define.
21026 2016-03-05  Venkataramanan Kumar  <Venkataramanan.kumar@amd.com>
21028         * config/i386/i386.c (znver1_cost): Fix Multiply cost.
21030 2016-03-05  Venkataramanan Kumar  <Venkataramanan.kumar@amd.com>
21032         Fix sseimul type attribute.
21033         * config/i386/znver1.md
21034         (znver1_sseimul, znver1_sseimul_avx256, znver1_sseimul_load,
21035         znver1_sseimul_avx256_load) : Fix the type attribute.
21036         (znver1_sseimul_di, znver1_sseimul_load_di): Fix type attribute,
21037         pipe usage and latency.
21039 2016-03-05  Jakub Jelinek  <jakub@redhat.com>
21041         PR c++/70084
21042         * tree-inline.c (copy_tree_body_r): When cancelling ADDR_EXPR
21043         of INDIRECT_REF and ADDR_EXPR changed type, fold_convert it
21044         to the right type.
21046 2016-03-04  Bernd Schmidt  <bschmidt@redhat.com>
21048         PR c/69973
21049         * targhooks.c (default_vector_alignment): Limit to MAX_OFILE_ALIGNMENT.
21051         PR rtl-optimization/69941
21052         * postreload.c (reload_combine_recognize_pattern): Ensure all uses of
21053         the reg share its mode.
21055 2016-03-04  Jeff Law  <law@redhat.com>
21057         PR tree-optimization/69196
21058         * tree-ssa-threadbackward.c (fsm_find_control_statement_thread_paths):
21059         If the both SSA_NAMEs are anonymous, then consider them unassociated
21060         and include the PHI in the statement count.
21062 2016-03-05  Tom de Vries  <tom@codesourcery.com>
21064         * omp-low.c (check_omp_nesting_restrictions): Check for non-oacc
21065         construct in oacc routine.  Check for oacc region in oacc routine.
21067 2016-03-04  Jakub Jelinek  <jakub@redhat.com>
21069         PR target/70062
21070         * config/i386/i386.c (decide_alg): Add RECUR argument.  Revert
21071         2016-02-22 changes, instead don't recurse if RECUR is already true.
21072         Don't change *dynamic_check if RECUR.  Adjust recursive caller
21073         to pass true to the new argument.
21074         (ix86_expand_set_or_movmem): Adjust decide_alg caller.
21076         PR target/70059
21077         * config/i386/sse.md (vec_set_lo_<mode><mask_name>,
21078         <extract_type_2>_vinsert<shuffletype><extract_suf_2>_mask): Formatting
21079         fixes.
21080         (vec_set_hi_<mode><mask_name>): Likewise.  Swap VEC_CONCAT operands.
21082 2016-03-04  Bernd Schmidt  <bschmidt@redhat.com>
21084         PR rtl-optimization/57676
21085         * lra-assigns.c (lra_assign): Guard test for maximum iterations
21086         with flag_checking.
21088 2016-03-04  Ilya Enkovich  <enkovich.gnu@gmail.com>
21090         * tree-vect-patterns.c (search_type_for_mask): Handle
21091         comparison of booleans.
21093 2016-03-04  Jakub Jelinek  <jakub@redhat.com>
21095         * doc/extend.texi (__builtin_alloca, __builtin_alloca_with_align):
21096         Fix @xref usage.
21098         PR debug/69947
21099         * dwarf2out.c (prune_unused_types_walk_loc_descr): Handle
21100         all other ops that have dw_val_class_die_ref operands,
21101         and DW_OP_GNU_entry_value.
21103 2016-03-03  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
21105         PR rtl-optimization/69904
21106         * config/arm/arm.c (arm_cannot_copy_insn_p):
21107         Return true for load-exclusive instructions.
21109 2016-03-03  Jakub Jelinek  <jakub@redhat.com>
21111         PR target/70021
21112         * tree-vect-stmts.c (vect_mark_relevant): Remove USED_IN_PATTERN
21113         argument, if STMT_VINFO_IN_PATTERN_P (stmt_info), always mark
21114         the pattern no matter if it is used just by non-pattern, pattern
21115         or mix thereof.
21116         (process_use, vect_mark_stmts_to_be_vectorized): Adjust callers.
21117         * tree-vect-patterns.c (vect_recog_vector_vector_shift_pattern): If
21118         oprnd1 def_stmt is in pattern, don't look through it.
21120 2016-03-03  Marek Polacek  <polacek@redhat.com>
21122         PR middle-end/70050
21123         * match.pd (X % -Y): Add INTEGRAL_TYPE_P check.
21125 2016-03-03  Martin Liska  <mliska@suse.cz>
21127         PR tree-optimization/70043
21128         * tree-vect-loop.c (optimize_mask_stores): Move iterator to
21129         previous statement if we see a debug statement.
21131 2016-03-03  Richard Biener  <rguenther@suse.de>
21133         PR tree-optimization/55936
21134         * tree-vrp.c (compare_name_with_value): Add use_equiv_p
21135         parameter and guard unsafe equivalence use.
21136         (vrp_evaluate_conditional_warnv_with_ops): Always use
21137         safe equivalences but not via the quadratic compare_names
21138         helper.
21140 2016-03-03  Michael Collison  <michael.collison@linaro.org>
21142         PR target/70014
21143         * config/arm/arm.md (*subsi3_carryin_const): Change predicate
21144         for operand 1 to s_register_operand. Change predicate for operand
21145         2 to arm_not_immediate_operand.
21147 2016-03-02  H.J. Lu  <hongjiu.lu@intel.com>
21149         * doc/tm.texi: Regenerated.
21151 2016-03-02  Richard Henderson  <rth@redhat.com>
21153         PR rtl-opt/67145
21154         * simplify-rtx.c (simplify_plus_minus): Allow reassoc without
21155         simplification when all args are positive non-fixed registers.
21157 2016-03-02  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
21159         * target.def (lra_p): Specify that new ports should use LRA.
21161 2016-03-02  Jakub Jelinek  <jakub@redhat.com>
21163         PR libgomp/69555
21164         * gimplify.c (gimplify_decl_expr): For decls with REFERENCE_TYPE, also
21165         gimplify_type_sizes the type they refer to.
21166         (omp_notice_variable): Handle reference vars to VLAs.
21167         * omp-low.c (lower_omp_target): Emit setup of OMP_CLAUSE_PRIVATE
21168         reference to VLA decls in the second pass instead of first pass.
21170 2016-03-02  Tom de Vries  <tom@codesourcery.com>
21172         PR tree-optimization/68659
21173         * graphite-isl-ast-to-gimple.c (collect_all_ssa_names): Handle
21174         new_expr == NULL_TREE.
21175         (get_new_name): Handle ADDR_EXPR.
21177 2016-03-02  Bin Cheng  <bin.cheng@arm.com>
21179         PR rtl-optimization/69052
21180         * loop-invariant.c (canonicalize_address): New function.
21181         (inv_can_prop_to_addr_use): Check validity of address expression
21182         which is canonicalized by above function.
21184 2016-03-02  Alan Modra  <amodra@gmail.com>
21186         PR ipa/69990
21187         * ipa-icf.c (sem_variable::merge): Do not merge an alias with
21188         larger alignment.
21190 2016-03-02  Jakub Jelinek  <jakub@redhat.com>
21192         PR target/70028
21193         * config/i386/i386.md (kmovw): Move m constraint to 2nd alternative.
21194         (*movhi_internal): Put mask moves from and to memory separately
21195         from moves from/to GPRs.
21197 2016-03-02  Richard Biener  <rguenther@suse.de>
21199         * genmatch.c (dt_node::gen_kids): Fix match code-gen for embedded
21200         GENERIC expressions in GIMPLE.
21202 2016-03-02  Richard Biener  <rguenther@suse.de>
21204         * config/i386/i386.c (type_natural_mode): Fix typo.
21206 2016-03-02  Nick Clifton  <nickc@redhat.com>
21208         * config.gcc (mep-*-elf): Add newlib-stdint.h to tm_file.
21210 2016-03-02  Richard Biener  <rguenther@suse.de>
21211             Uros Bizjak  <ubizjak@gmail.com>
21213         PR target/67278
21214         * config/i386/i386.c (type_natural_mode): Handle XFmode vectors.
21216 2016-03-02  Richard Biener  <rguenther@suse.de>
21218         PR middle-end/67278
21219         * tree-cfg.c (verify_expr): Adjust BIT_FIELD_REF case.
21221 2016-03-02  Marek Polacek  <polacek@redhat.com>
21223         PR c/67854
21224         * gimplify.c (gimplify_va_arg_expr): Use expanded location for the
21225         "is promoted to" warning.
21227 2016-03-01  DJ Delorie  <dj@redhat.com>
21229         * config.gcc: Deprecate mep-*.
21231 2016-03-01  Vladimir Makarov  <vmakarov@redhat.com>
21233         PR middle-end/70025
21234         * lra-constraints.c (regno_val_use_in): New.
21235         (match_reload): Use it instead of regno_use_in.
21237 2016-03-01  Eric Botcazou  <ebotcazou@adacore.com>
21239         PR rtl-optimization/70007
21240         * gcse.c (compute_ld_motion_mems): Tidy up and also invalidate memory
21241         references present in REG_EQUAL notes attached to non-SET patterns.
21243 2016-03-01  Jeff Law  <law@redhat.com>
21245         PR tree-optimization/69196
21246         * tree-ssa-threadbackward.c (fsm_find_control_statement_thread_paths):
21247         Appropriately clamp the number of statements to copy when the
21248         thread path does not traverse a loop backedge.
21250         PR tree-optimization/69196
21251         * tree-ssa-threadbackward.c (fsm_find_control_statement_thread_paths):
21252         Do count some PHIs in the thread path against the insn count.  Decrease
21253         final statement count by one as the control statement in the last
21254         block will get removed.  Remove special cased code for handling PHIs
21255         in the last block.
21257 2016-03-01  Uros Bizjak  <ubizjak@gmail.com>
21259         PR target/70027
21260         * config/i386/i386.c (ix86_output_call_insn): Add -masm=intel
21261         asm dialect alternatives to explicit GOTPCREL calls.
21263 2016-03-01  Eric Botcazou  <ebotcazou@adacore.com>
21265         PR ada/70017
21266         * ira.c (do_reload): Issue warning for generic stack checking here...
21267         * reload1.c (reload): ...instead of here and streamline it.
21269 2016-03-01  Nick Clifton  <nickc@redhat.com>
21271         * config.gcc (cr16-*-elf): Add newlib-stdint.h to tm_file.
21273 2016-03-01  Richard Biener  <rguenther@suse.de>
21275         PR tree-optimization/69983
21276         * tree-chrec.c (eq_evolutions_p): Handle conversions, compare
21277         types and fall back to operand_equal_p.
21279 2016-03-01  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
21281         Revert
21282         2016-03-01  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
21284         * config/s390/constraints.md ("jm8"): New constraint.
21285         * config/s390/predicates.md ("const_int_8bitset_operand"): New
21286         predicate.
21287         * config/s390/s390.md ("*setmem_long", "*setmem_long_and"): Merge
21288         into ...
21289         ("*setmem_long<setmem_and>"): New pattern.
21290         ("*setmem_long_31z", "*setmem_long_and_31z"): Merge
21291         into ...
21292         ("*setmem_long_31z<setmem_and>"): New pattern.
21293         * config/s390/subst.md ("setmem_31z_subst", "setmem_and_subst"):
21294         New substitution rules with the required attributes.
21297 2016-03-01  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
21299         Revert
21300         2016-03-01  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
21302         * gensupport.c (process_substs_on_one_elem): Split loop to
21303         complete mark_operands_used_in_match_dup on all expressions in the
21304         vector first.
21305         (adjust_operands_numbers): Inline into process_substs_on_one_elem
21306         and remove function.
21308 2016-03-01  Richard Biener  <rguenther@suse.de>
21310         PR middle-end/70022
21311         * fold-const.c (fold_indirect_ref_1): Fix range checking for
21312         vector BIT_FIELD_REF extract.
21314 2016-03-01  Richard Biener  <rguenther@suse.de>
21316         PR tree-optimization/69994
21317         * tree-ssa-reassoc.c (ops_equal_values_p): Handle missing case.
21319 2016-03-01  Ilya Enkovich  <enkovich.gnu@gmail.com>
21321         PR tree-optimization/69956
21322         * tree-vect-stmts.c (supportable_widening_operation): Support
21323         multi-step conversion of boolean vectors.
21324         (supportable_narrowing_operation): Likewise.
21326 2016-03-01  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
21328         * config/s390/s390.c (s390_decompose_address): Don't accept SImode
21329         anymore.
21331 2016-03-01  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
21333         * config/s390/subst.md (DSI_VI): New mode iterator.
21334         ("addr_style_op_subst"): Use DSI_VI instead of DSI.
21335         * config/s390/vector.md ("vec_set<mode>"): Move expander before
21336         the insn definition.
21337         ("*vec_set<mode>"): Change predicate and add alternative to
21338         support only either register or const_int operands as element
21339         selector.
21340         ("*vec_set<mode>_plus"): New pattern to support reg + const_int
21341         operands.
21342         ("vec_extract<mode>"): New expander.
21343         ("*vec_extract<mode>"): New insn definition supporting reg and
21344         const_int element selectors.
21345         ("*vec_extract<mode>_plus"): New insn definition supporting
21346         reg+const_int element selectors.
21347         ("rotl<mode>3", "ashl<mode>3", "ashr<mode>3"): Merge into the
21348         following expander+insn definition.
21349         ("<vec_shifts_name><mode>3"): New expander.
21350         ("*<vec_shifts_name><mode>3<addr_style_op>"): New insn definition.
21352 2016-03-01  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
21354         * config/s390/s390.md ("*tabort_1"): Change predicate to
21355         nonmemory_operand.  Add a second alternative to cover
21356         register as well as const int operands.
21357         ("*tabort_1_plus"): New pattern definition.
21359 2016-03-01  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
21361         * config/s390/s390.md ("*ashrdi3_cc_31")
21362         ("*ashrdi3_cconly_31""*ashrdi3_cc_31_and")
21363         ("*ashrdi3_cconly_31_and", "*ashrdi3_31_and", "*ashrdi3_31"):
21364         Merge insn definitions into ...
21365         ("*ashrdi3_31<addr_style_op_cc><masked_op_cc><setcc><cconly>"):
21366         New pattern definition.
21367         ("*ashr<mode>3_cc", "*ashr<mode>3_cconly", "ashr<mode>3", )
21368         ("*ashr<mode>3_cc_and", "*ashr<mode>3_cconly_and")
21369         ("*ashr<mode>3_and"): Merge insn definitions into ...
21370         ("*ashr<mode>3<addr_style_op_cc><masked_op_cc><setcc><cconly>"):
21371         New pattern definition.
21372         * config/s390/subst.md ("addr_style_op_cc_subst")
21373         ("masked_op_cc_subst", "setcc_subst", "cconly_subst"): New
21374         substitutions patterns plus attributes.
21375         Add ashiftrt to SUBST iterator.
21377 2016-03-01  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
21379         * config/s390/s390.md ("<shift><mode>3"): Change predicate of
21380         op2 to nonmemory_operand.
21381         ("*<shift>di3_31", "*<shift>di3_31_and"):
21382         Merge into single pattern definition ...
21383         ("*<shift>di3_31<addr_style_op><masked_op>"): New pattern.
21384         ("*<shift><mode>3", "*<shift><mode>3_and"): Merge into single
21385         pattern definition ...
21386         ("*<shift><mode>3<addr_style_op><masked_op>"): New pattern.
21387         * config/s390/subst.md: Add ashift and lshiftrt to SUBST
21388         iterator.
21390 2016-03-01  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
21392         * config/s390/predicates.md (const_int_6bitset_operand): New
21393         predicate.
21394         * config/s390/s390.md: Include subst.md.
21395         ("rotl<mode>3"): New expander.
21396         ("rotl<mode>3", "*rotl<mode>3_and"): Merge insn definitions into
21397         ...
21398         ("*rotl<mode>3<addr_style_op><masked_op>"): New insn definition.
21399         * config/s390/subst.md: New file.
21401 2016-03-01  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
21403         * config/s390/s390.md ("op_type", "atype", "length" attributes):
21404         Remove RRR type.  It doesn't really exist.
21405         ("RRer", "f0", "v0", "vf", "vd", "op1", "Rf"): Remove mode
21406         attributes.
21407         ("BFP", "DFP", "nDSF", "nDFDI"): Add mode attributes.
21408         ("*cmp<mode>_ccs", "floatdi<mode>2", "add<mode>3")
21409         ("*add<mode>3_cc", "*add<mode>3_cconly", "sub<mode>3")
21410         ("*sub<mode>3_cc", "*sub<mode>3_cconly", "mul<mode>3")
21411         ("fma<mode>4", "fms<mode>4", "div<mode>3", "*neg<mode>2")
21412         ("*abs<mode>2", "*negabs<mode>2", "sqrt<mode>2"): Override
21413         `enabled' attribute.
21415 2016-03-01  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
21417         * gensupport.c (process_substs_on_one_elem): Split loop to
21418         complete mark_operands_used_in_match_dup on all expressions in the
21419         vector first.
21420         (adjust_operands_numbers): Inline into process_substs_on_one_elem
21421         and remove function.
21423 2016-02-29  Eric Botcazou  <ebotcazou@adacore.com>
21425         PR target/69706
21426         * config/sparc/sparc.c (NWORDS_UP): Rename to...
21427         (CEIL_NWORDS): ...this.  Use CEIL macro.
21428         (compute_fp_layout): Adjust to above renaming.
21429         (function_arg_union_value): Likewise.
21430         (sparc_arg_partial_bytes): Likewise.
21431         (sparc_function_arg_advance): Likewise.
21433 2016-02-29  Jeff Law  <law@redhat.com>
21435         PR tree-optimization/70005
21436         * tree-ssa-uncprop.c (associate_equivalences_with_edges): Handle case
21437         where an object with a boolean range is compared against a value
21438         outside [0..1].
21440         PR tree-optimization/69999
21441         * gimple-ssa-split-paths.c (split_paths): When duplicating a block
21442         with an outgoing edge marked with EDGE_IRREDUCIBLE_LOOP, schedule
21443         loop cleanups.
21445 2016-02-29  Richard Biener  <rguenther@suse.de>
21447         PR tree-optimization/69994
21448         * tree-ssa-reassoc.c (gimple_nop_conversion_p): New function.
21449         (get_unary_op): Look through nop conversions.
21450         (ops_equal_values_p): New function, look for equality diregarding
21451         nop conversions.
21452         (eliminate_plus_minus_pair): Use ops_equal_values_p
21453         (repropagate_negates): Do not use get_unary_op here.
21455 2016-02-29  Martin Liska  <mliska@suse.cz>
21457         * system.h: Poison ENABLE_CHECKING macro.
21459 2016-02-29  Martin Liska  <mliska@suse.cz>
21461         * hsa-gen.c (gen_body_from_gimple): Dump only if TDF_DETAILS
21462         is presented in dump flags.
21463         * hsa-regalloc.c (linear_scan_regalloc): Likewise.
21464         (hsa_regalloc): Likewise.
21466 2016-02-19  Richard Biener  <rguenther@suse.de>
21468         PR tree-optimization/69980
21469         * tree-vect-slp.c (vect_attempt_slp_rearrange_stmts): Update
21470         permutation of those we need to keep.
21472 2016-02-29  Eric Botcazou  <ebotcazou@adacore.com>
21474         PR target/69706
21475         * config/sparc/sparc.c (ROUND_ADVANCE): Rename to...
21476         (NWORDS_UP): ...this
21477         (init_cumulative_args): Minor tweaks.
21478         (sparc_promote_function_mode): Likewise.
21479         (scan_record_type): Delete.
21480         (traverse_record_type): New function template.
21481         (classify_data_t): New structure type.
21482         (classify_registers): New inline function.
21483         (function_arg_slotno): In 64-bit mode, bail out early if FP slots are
21484         exhausted.  Instantiate traverse_record_type on classify_registers and
21485         deal with the case of a structure passed in slot #15 with no FP field
21486         in the first word.
21487         (assign_data_t): New structure type.
21488         (compute_int_layout): New static function.
21489         (compute_fp_layout): Likewise.
21490         (count_registers): New inline function.
21491         (assign_int_registers): New static function.
21492         (assign_fp_registers): Likewise.
21493         (assign_registers): New inline function.
21494         (function_arg_record_value_1): Delete.
21495         (function_arg_record_value_2): Likewise.
21496         (function_arg_record_value_3): Likewise.
21497         (function_arg_record_value): Adjust to above changes.  Instantiate
21498         traverse_record_type on count_registers to first count the number of
21499         registers to be used and then on assign_registers to assign them.
21500         (function_arg_union_value): Adjust to above renaming.
21501         (sparc_function_arg_1); Minor tweaks.  Remove commented out code.
21502         (sparc_arg_partial_bytes): Adjust to above renaming.  Deal with the
21503         case of a structure passed in slot #15
21504         (sparc_function_arg_advance): Likewise.
21505         (function_arg_padding): Minor tweak.
21507 2016-02-29  Richard Biener  <rguenther@suse.de>
21509         PR tree-optimization/69720
21510         * tree-vect-loop.c (get_initial_def_for_reduction): Avoid
21511         the adjustment_def path for possibly vectorized defs.
21512         (vect_create_epilog_for_reduction): Handle vectorized initial
21513         defs properly.
21515 2016-02-28  Eric Botcazou  <ebotcazou@adacore.com>
21517         * config/i386/cygming.h (STACK_REALIGN_DEFAULT): Define.
21519 2016-02-27  Jeff Law  <law@redhat.com>
21521         Revert
21522         2016-02-26  Richard Biener  <rguenther@suse.de>
21523                     Jeff Law  <law@redhat.com>
21525         PR tree-optimization/69740
21526         * cfghooks.c (remove_edge): Request loop fixups if we delete
21527         an edge that might turn an irreducible loop into a natural
21528         loop.
21530 2016-02-27  Jakub Jelinek  <jakub@redhat.com>
21532         PR rtl-optimization/69896
21533         * tree-vect-generic.c (get_compute_type): Avoid single element
21534         vector types.
21536 2016-02-26  Evandro Menezes  <e.menezes@samsung.com>
21538         Rename the AArch64 tuning option and related functions to enable the
21539         Newton series for the reciprocal square root to reflect its
21540         approximative characteristic.
21542         * config/aarch64/aarch64-protos.h (aarch64_emit_swrsqrt): Rename
21543         function to "aarch64_emit_approx_rsqrt".
21544         * config/aarch64/aarch64-tuning-flags.def: Rename tuning flag to
21545         AARCH64_EXTRA_TUNE_APPROX_RSQRT.
21546         * config/aarch64/aarch64.c (exynosm1_tunigs): Use new flag name.
21547         (xgene1_tunings): Likewise.
21548         (use_rsqrt_p): Likewise.
21549         (aarch64_emit_swrsqrt): Use new function name.
21550         * config/aarch64/aarch64-simd.md (aarch64_rsqrts_*): Likewise.
21551         * config/aarch64/aarch64.opt (mlow-precision-recip-sqrt): Reword the
21552         text explaining this option.
21553         * doc/invoke.texi (-mlow-precision-recip-sqrt): Likewise.
21555 2016-02-26  Jakub Jelinek  <jakub@redhat.com>
21557         PR target/69969
21558         * config/rs6000/rs6000.c (rs6000_option_override_internal): Don't
21559         complain about -mallow-movmisalign without -mvsx if
21560         TARGET_ALLOW_MOVMISALIGN was not set explicitly.
21562 2016-02-26  Joel Sherrill  <joel@rtems.org>
21564         * config.gcc: Add x86_64-*-rtems*.
21565         * config/i386/rtems-64.h: New file.
21567 2016-02-26  Joel Sherrill  <joel@rtems.org>
21569         * config.gcc: Add aarch64-*-rtems*.
21570         * config/aarch64/rtems.h: New file.
21572 2016-02-26  Segher Boessenkool  <segher@kernel.crashing.org>
21574         PR target/69946
21575         * config/rs6000/rs6000.c (rs6000_insn_for_shift_mask): Print rlwinm
21576         shift amount using %h.  Add comment.
21578 2016-02-26  Richard Biener  <rguenther@suse.de>
21579             Jeff Law  <law@redhat.com>
21581         PR tree-optimization/69740
21582         * cfghooks.c (remove_edge): Request loop fixups if we delete
21583         an edge that might turn an irreducible loop into a natural
21584         loop.
21586 2016-02-26  Martin Jambor  <mjambor@suse.cz>
21588         PR middle-end/69920
21589         * tree-sra.c (sra_modify_assign): Do not remove loads of
21590         uninitialized aggregates to SSA_NAMEs.
21592 2016-02-26  Richard Henderson  <rth@redhat.com>
21594         PR target/69709
21595         * config/s390/s390.md (risbg and risbgn splitters): Allocate new
21596         pseudo in case the target rtx matches the source of the left
21597         shift.
21599 2016-02-26  Martin Jambor  <mjambor@suse.cz>
21601         PR hsa/69568
21602         * hsa.h (hsa_type_packed_p): Declare.
21603         * hsa.c (hsa_type_packed_p): New function.
21604         * hsa-gen.c (mem_type_for_type): Use unsigned type for packed
21605         loads.
21606         (gen_hsa_insns_for_store): Use hsa_type_packed_p.
21607         * hsa-brig.c (emit_basic_insn): Likewise.
21609 2016-02-26  Martin Jambor  <mjambor@suse.cz>
21611         pr hsa/69674
21612         * hsa-gen.c (gen_hsa_phi_from_gimple_phi): Use proper hsa type for
21613         pointers.
21614         (gen_hsa_addr): Allow integer constants in TMR_INDEX2.
21616 2016-02-26  Martin Jambor  <mjambor@suse.cz>
21618         * hsa.h (is_a_helper): New overload for hsa_op_immed for
21619         hsa_op_with_type operands.
21620         (hsa_unsigned_type_for_type): Declare.
21621         * hsa.c (hsa_unsigned_type_for_type): New function.
21622         * hsa-gen.c (gen_hsa_binary_operation): Use hsa_unsigned_type_for_type.
21623         (gen_hsa_insns_for_operation_assignment): Satisfy constrains of
21624         the finalizer.  Do not emit extra move.
21626 2016-02-26  Martin Jambor  <mjambor@suse.cz>
21628         * hsa-gen.c (gen_hsa_ternary_atomic_for_builtin): Fail in presence of
21629         atomic operations in private segment.
21631 2016-02-26  Martin Jambor  <mjambor@suse.cz>
21633         * omp-low.c (grid_find_ungridifiable_statement): Store problematic
21634         statements to wi->info.  Also disallow omp simd constructs.
21635         (grid_target_follows_gridifiable_pattern): Use wi.info to dump reason
21636         for not gridifying.  Dump special string for omp_for.
21638 2016-02-26  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
21640         PR target/69245
21641         * config/aarch64/aarch64.c (aarch64_set_current_function):
21642         Save/restore target globals when switching to
21643         target_option_default_node.
21645 2016-02-26  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
21647         PR target/69613
21648         * config/aarch64/aarch64.c (aarch64_shift_truncation_mask):
21649         Return 0 if !SHIFT_COUNT_TRUNCATED.
21651 2016-02-26  Jakub Jelinek  <jakub@redhat.com>
21652             Eric Botcazou  <ebotcazou@adacore.com>
21654         PR rtl-optimization/69891
21655         * dse.c (scan_insn): If we can't figure out memset arguments
21656         or they are non-constant, call clear_rhs_from_active_local_stores.
21658 2016-02-26  Martin Liska  <mliska@suse.cz>
21660         * doc/extend.texi: Mention clog10, clog10f an clog10l
21661         in Builtins section.
21663 2016-02-26  Martin Liska  <mliska@suse.cz>
21665         * dwarf2out.c (new_loc_descr): Replace ENABLE_CHECKING with
21666         CHECKING_P.
21667         (resolve_args_picking_1): Likewise.
21668         * dwarf2out.h (struct GTY): Likewise.
21670 2016-02-26  Martin Liska  <mliska@suse.cz>
21672         * hsa-gen.c (generate_hsa): Replace ENABLE_CHECKING macro
21673         with flag_checking.
21674         * hsa-regalloc.c (linear_scan_regalloc): Likewise.
21676 2016-02-26  Markus Trippelsdorf  <markus@trippelsdorf.de>
21677             Martin Liska  <mliska@suse.cz>
21679         * doc/install.texi: Mention --enable-valgrind-annotations.
21681 2016-02-26  Richard Biener  <rguenther@suse.de>
21683         PR tree-optimization/69551
21684         * tree-ssa-structalias.c (get_constraint_for_ssa_var): When
21685         looking through aliases adjust DECL_PT_UID to refer to the
21686         ultimate alias target.
21688 2016-02-25  Martin Liska  <mliska@suse.cz>
21690         PR middle-end/69919
21691         * alloc-pool.c (after_memory_report): New variable.
21692         * alloc-pool.h (base_pool_allocator ::release): Do not use
21693         the infrastructure if after_memory_report.
21694         * toplev.c (toplev::main): Mark after memory report.
21696 2016-02-25  Richard Biener  <rguenther@suse.de>
21698         PR tree-optimization/48795
21699         * tree-vrp.c (check_array_ref): Use array_at_struct_end_p.
21701 2016-02-25  Ilya Verbin  <ilya.verbin@intel.com>
21703         PR driver/68463
21704         * config/gnu-user.h (CRTOFFLOADBEGIN): Define.  Add crtoffloadbegin.o if
21705         offloading is enabled and -fopenacc or -fopenmp is specified.
21706         (CRTOFFLOADEND): Likewise.
21707         (GNU_USER_TARGET_STARTFILE_SPEC): Add CRTOFFLOADBEGIN.
21708         (GNU_USER_TARGET_ENDFILE_SPEC): Add CRTOFFLOADEND.
21709         * lto-wrapper.c (offloadbegin, offloadend): Remove static vars.
21710         (offload_objects_file_name): New static var.
21711         (tool_cleanup): Remove offload_objects_file_name file.
21712         (find_offloadbeginend): Replace with ...
21713         (find_crtoffloadtable): ... this.
21714         (run_gcc): Remove offload_argc and offload_argv.
21715         Get offload_objects_file_name from -foffload-objects=... option.
21716         Read names of object files with offload from this file, pass them to
21717         compile_images_for_offload_targets.  Don't call find_offloadbeginend and
21718         don't pass offloadbegin and offloadend to the linker.  Don't pass
21719         offload non-LTO files to the linker, because now they're not claimed.
21721 2016-02-25  Jan Hubicka  <hubicka@ucw.cz>
21723         PR ipa/69630
21724         * ipa-devirt.c (possible_polymorphic_call_targets): Do not ICE
21725         on builtin_unreachable.
21727 2016-02-25  Jakub Jelinek  <jakub@redhat.com>
21729         PR rtl-optimization/69896
21730         * regcprop.c: Include cfgrtl.h.
21731         (copyprop_hardreg_forward_1): If noop_p insn uses narrower
21732         than remembered mode, either delete it (if noop_move_p), or
21733         treat like copy_p but not noop_p instruction.
21735 2016-02-24  Jakub Jelinek  <jakub@redhat.com>
21737         PR debug/69705
21738         * dwarf2out.c (gen_variable_die): Work around buggy LTO
21739         - allow NULL decl for Fortran DW_TAG_common_block variables.
21741 2016-02-24  Jason Merrill  <jason@redhat.com>
21743         * common.opt (flifetime-dse): Add -flifetime-dse=1.
21745 2016-02-24  Richard Biener  <rguenther@suse.de>
21746             Jakub Jelinek  <jakub@redhat.com>
21748         PR middle-end/69760
21749         * tree-scalar-evolution.c (interpret_rhs_expr): Re-write
21750         conditionally executed ops to well-defined overflow behavior.
21752 2016-02-24  Jakub Jelinek  <jakub@redhat.com>
21754         PR middle-end/69915
21755         * tree.c (build_vector_from_ctor): Fix handling of VECTOR_CST
21756         elements.
21758 2016-02-24  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
21760         PR rtl-optimization/69886
21761         * gcse.c (can_assign_to_reg_without_clobbers_p): Accept mode
21762         argument.  Use it when checking validity of set instructions.
21763         (want_to_gcse_p): Pass mode to can_assign_to_reg_without_clobbers_p.
21764         (compute_ld_motion_mems): Update can_assign_to_reg_without_clobbers_p
21765         callsite.
21766         * rtl.h (can_assign_to_reg_without_clobbers_p): Update prototype.
21767         * store-motion.c (find_moveable_store): Update
21768         can_assign_to_reg_without_clobbers_p callsite.
21770 2016-02-24  Richard Biener  <rguenther@suse.de>
21772         PR middle-end/68963
21773         * tree-ssa-loop-niter.c (derive_constant_upper_bound_ops): Fix
21774         bogus check.
21775         (record_nonwrapping_iv): Do not fall back to the low/high bound
21776         for non-constant IV bases if the stmt is not always executed.
21778 2016-02-24  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
21780         * config/arm/arm-cores.def (cortex-a32): New entry.
21781         * config/arm/arm-tables.opt: Regenerate.
21782         * config/arm/arm-tune.md: Regenerate.
21783         * config/arm/bpabi.h (BE8_LINK_SPEC): Add mcpu=cortex-a32.
21784         * config/arm/t-aprofile: Handle mcpu=cortex-a32.
21785         * doc/invoke.texi (ARM Options): Document cortex-a32 as value
21786         for -mcpu and -mtune.
21788 2016-02-24  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
21790         PR target/69875
21791         * config/arm/arm.h (TARGET_HAVE_LPAE): Define.
21792         * config/arm/unspecs.md (VUNSPEC_LDRD_ATOMIC): New value.
21793         * config/arm/sync.md (arm_atomic_loaddi2_ldrd): New pattern.
21794         (atomic_loaddi_1): Delete.
21795         (atomic_loaddi): Rewrite expander using the above changes.
21797 2016-02-24  Jakub Jelinek  <jakub@redhat.com>
21799         PR c/69918
21800         * params.def (PARAM_MAX_SSA_NAME_QUERY_DEPTH): Bump default from
21801         2 to 3.
21803 2016-02-24  Jakub Jelinek  <jakub@redhat.com>
21804             Richard Biener  <rguenth@suse.de>
21806         PR middle-end/69909
21807         * expr.c (expand_expr_real_1) <normal_inner_ref>: Avoid
21808         set_mem_attributes if tem is SSA_NAME which got expanded
21809         as a MEM.
21811 2016-02-24  Richard Biener  <rguenther@suse.de>
21813         PR tree-optimization/69907
21814         * tree-vect-stmts.c (vectorizable_load): Check for gaps at the
21815         end of permutations for BB vectorization.
21817 2016-02-24  Christian Bruel  <christian.bruel@st.com>
21819         * config/arm/arm-c.c (arm_option_override): Initialize
21820         target_option_current_node.
21821         * config/arm/arm.c (arm_pragma_target_parse): Replace
21822         build_target_option_node call by target_option_current_node.
21823         Set target_option_current_node.
21824         Fix comments.
21826 2016-02-23  David Edelsohn  <dje.gcc@gmail.com>
21828         PR target/69810
21829         * config/rs6000/rs6000.md (zero_extendqi<mode>2_dot): Convert from
21830         define_insn_and_split to define_insn.
21831         (zero_extendqi<mode>2_dot2): Same.
21832         (extendqi<mode>2_dot): Same.
21833         (extendqi<mode>2_dot2): Same.
21835 2016-02-23  Evandro Menezes  <e.menezes@samsung.com>
21837         * config/arm/exynos-m1.md: Change cost of STP, fix bypass for stores
21838         and add bypass for AES{D,E} and AESMC pairs.
21839         * config/aarch64/aarch64.c (exynosm1_tunings): Enable fusion of AES{D,E}
21840         and AESMC pairs.
21842 2016-02-23  Evandro Menezes  <e.menezes@samsung.com>
21844         * config/aarch64/aarch64.c (exynosm1_tunings): Enable the Newton
21845         series for reciprocal square root in Exynos M1.
21847 2016-02-23  Martin Sebor  <msebor@redhat.com>
21849         PR c/69759
21850         * doc/extend.texi (Other Builtins): Document __builtin_alloca and
21851         __builtin_alloca_with_align.
21853 2016-02-23  Richard Henderson  <rth@redhat.com>
21855         * config/i386/i386-c.c (ix86_target_macros): Remove __SEG_TLS.
21856         (ix86_register_pragmas): Remove __seg_tls.
21857         * config/i386/i386-protos.h (ADDR_SPACE_SEG_TLS): Remove.
21858         * config/i386/i386.c (ix86_print_operand_address_as): Don't handle it.
21859         (ix86_addr_space_subset_p, TARGET_ADDR_SPACE_SUBSET_P): Remove.
21860         (ix86_addr_space_convert, TARGET_ADDR_SPACE_CONVERT): Remove.
21861         (ix86_addr_space_debug, TARGET_ADDR_SPACE_DEBUG): Remove.
21862         * doc/extend.texi (__seg_tls): Remove item.
21864 2016-02-23  Richard Biener  <rguenther@suse.de>
21866         * alloc-pool.h (struct allocation_object): Make id member
21867         conditional on CHECKING_P again.
21868         (get_instance): Adjust.
21869         (base_pool_allocator): Likewise.
21871 2016-02-23  Thomas Schwinge  <thomas@codesourcery.com>
21873         * tree-parloops.c (create_parallel_loop, gen_parallel_loop)
21874         (parallelize_loops): In OpenACC kernels mode, set n_threads to
21875         zero.
21876         (pass_parallelize_loops::gate): In OpenACC kernels mode, gate on
21877         flag_openacc.
21878         * tree-ssa-loop.c (gate_oacc_kernels): Likewise.
21880 2016-02-23  Richard Biener  <rguenther@suse.de>
21882         * mem-stats.h (struct mem_usage): Use PRIu64 for printing size_t.
21883         * bitmap.h (struct bitmap_usage): Likewise.
21884         (bitmap_move): Declare.
21885         * bitmap.c (register_overhead): Take size_t argument.
21886         (bitmap_move): New function.
21887         * df-problems.c (df_rd_transfer_function): Use bitmap_move
21888         to properly account overhead.
21889         * tree.c (free_node): Use tree_size.
21891 2016-02-23  Jakub Jelinek  <jakub@redhat.com>
21893         PR c++/69902
21894         * fold-const.c (fold_truth_not_expr): Propagate TREE_NO_WARNING
21895         when inverting comparison.
21897         PR c/69900
21898         * common.opt (Wunreachable-code): Add Warning flag.
21900 2016-02-23  Mark Wielaard  <mjw@redhat.com>
21901             Jakub Jelinek  <jakub@redhat.com>
21903         PR c/69911
21904         * cgraphunit.c (check_global_declaration): Check main_input_filename
21905         and DECL_SOURCE_FILE are not NULL.
21907 2016-02-23  Martin Jambor  <mjambor@suse.cz>
21909         PR tree-optimization/69666
21910         * tree-sra.c (sra_modify_assign): Do not attempt to create
21911         default_def replacements for unscalarizable regions.
21913 2016-02-20  Mark Wielaard  <mjw@redhat.com>
21915         PR c/28901
21916         * cgraphunit.c (check_global_declaration): Check level of
21917         warn_unused_const_variable and main_input_filename.
21918         * doc/invoke.texi (Warning Options): Add -Wunused-const-variable=.
21919         (-Wunused-variable): For C implies -Wunused-const-variable=1.
21920         (-Wunused-const-variable): Explain levels 1 and 2.
21922 2016-02-22  Jakub Jelinek  <jakub@redhat.com>
21924         PR target/69888
21925         * config/i386/i386.c (decide_alg): Ensure we don't recurse with
21926         identical arguments.  Formatting and spelling fixes.
21928         PR target/69885
21929         * doc/md.texi (ashl@var{m}3): Document that mode of operand 2 must
21930         be specified.
21932         PR target/69894
21933         PR target/69895
21934         * config/m68k/t-opts (OPTIONS_H_EXTRA): Add m68k-microarchs.def
21935         and m68k-devices.def.
21936         * config/c6x/t-c6x (OPTIONS_H_EXTRA): Add c6x-isas.def.
21937         * config/aarch64/t-aarch64 (OPTIONS_H_EXTRA): Add aarch64-arches.def.
21939 2016-02-22  Cesar Philippidis  <cesar@codesourcery.com>
21941         * config/nvptx/nvptx.c (nvptx_gen_shuffle): Add support for QImode
21942         and HImode registers.
21944 2016-02-22  Richard Biener  <rguenther@suse.de>
21946         PR tree-optimization/69882
21947         * tree-vect-slp.c (vect_attempt_slp_rearrange_stmts): Properly
21948         preserve permutations present because of gaps.
21949         (vect_supported_load_permutation_p): Always continue checking
21950         permutations after vect_attempt_slp_rearrange_stmts.
21952 2016-02-22  Bin Cheng  <bin.cheng@arm.com>
21954         * tree-vect-loop.c (vect_estimate_min_profitable_iters): Dump
21955         min_profitable_estimate, rather than min_profitable_iters.
21957 2016-02-22  Jakub Jelinek  <jakub@redhat.com>
21959         PR target/69885
21960         * config/m68k/m68k.md (ashldi3, ashrdi3, lshrdi3): Use
21961         SImode for last match_operand.
21963 2016-02-22  Martin Liska  <mliska@suse.cz>
21965         * hsa-gen.c (gen_hsa_clrsb): In case of zero value,
21966         return bitsize - 1 as the return value.
21968 2016-02-22  Oleg Endo  <olegendo@gcc.gnu.org>
21970         PR target/69806
21971         PR target/54089
21972         * config/sh/sh.c (sh_lshrsi_clobbers_t_reg_p, sh_dynamicalize_shift_p):
21973         Handle negative shift counts.
21974         * config/sh/sh.md (ashlsi3, lshrsi3_n, lshrsi3_n_clobbers_t): Don't use
21975         force_reg on the shift constant.
21976         (lshrsi3): Likewise.  Expand into lshrsi3_n* instead of lshrsi3_d.
21977         (lshrsi3_d): Handle negative shift counts.
21979 2016-02-22  Richard Biener  <rguenther@suse.de>
21980             Tom de Vries  <tom@codesourcery.com>
21982         * graph.c: Include dumpfile.h.
21983         (print_graph_cfg): Split into three overloads.
21984         * gdbhooks.py (class DotFn): Add and instantiate, adding command dot-fn.
21986 2016-02-22  Tom de Vries  <tom@codesourcery.com>
21988         * gdbhooks.py (class DumpFn): Add and instantiate, adding command
21989         dump-fn.
21991 2016-02-22  Richard Biener  <rguenther@suse.de>
21993         PR ipa/37448
21994         * ipa-inline-transform.c (inline_call): When not updating
21995         overall summaries adjust self size by the growth estimate.
21996         * ipa-inline.c (inline_to_all_callers_1): Add to the callers
21997         hash-set, do not update overall summaries here.  Renamed from ...
21998         (inline_to_all_callers): ... this which is now wrapping the
21999         above and performing delayed overall summary update.
22000         (early_inline_small_functions): Delay updating of the overall
22001         summary.
22003 2016-02-21  Markus Trippelsdorf  <markus@trippelsdorf.de>
22005         * tree-chkp.c (chkp_mark_invalid_bounds_walker): Initialize
22006         variable.
22008 2016-02-19  Jakub Jelinek  <jakub@redhat.com>
22010         PR driver/69805
22011         * gcc.c (LINK_COMMAND_SPEC, GOMP_SELF_SPECS): Use
22012         :%* in %:gt() argument.
22013         (greater_than_spec_func): Adjust for expecting only numbers,
22014         if there are more than two numbers, compare the last two.
22016 2016-02-19  Jonathan Wakely  <jwakely@redhat.com>
22018         * doc/invoke.texi (C++ Dialect Options): Clarify interaction of
22019         -Wnarrowing with -std.
22021 2016-02-19  Jakub Jelinek  <jakub@redhat.com>
22023         PR c++/69851
22024         * expr.c (store_field): Don't use bit-field path if exp is
22025         COMPONENT_REF with TREE_ADDRESSABLE type, where TYPE_SIZE is
22026         different from bitsize, but DECL_SIZE of FIELD_DECL is bitsize
22027         and the assignment can be performed by bitwise copy.  Formatting
22028         fix.
22030         PR middle-end/69838
22031         * lra.c (lra_process_new_insns): If non-call exceptions are enabled,
22032         call copy_reg_eh_region_note_forward on before and/or after sequences
22033         and remove note from insn if it no longer can throw.
22035         PR target/69820
22036         * config/i386/sse.md (VI_512): Only include V64QImode and V32HImode
22037         if TARGET_AVX512BW.
22039 2016-02-19  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
22041         * config/s390/vector.md: Add missing commutative operand markers
22042         to the patterns which qualify for one.
22043         * config/s390/vx-builtins.md: Likewise.
22045 2016-02-19  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
22047         * config/s390/vector.md (VI, VI_QHS): Add single element vector
22048         types to mode iterators.
22049         (vec_double): ... and mode attribute.
22050         * config/s390/vx-builtins.md (non_vec_int): Likewise.
22052 2016-02-19  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
22054         * config/s390/vector.md ("<ti*>add<mode>3", "<ti*>sub<mode>3"):
22055         Change the predicate of op2 from nonimmediate to general and let
22056         reload fix it if necessary.
22058 2016-02-19  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
22060         * config/s390/vecintrin.h (vec_sub_u128): Define missing macro.
22062 2016-02-19  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
22064         * config/s390/s390.c (s390_expand_vcond): Use the compare operand
22065         mode.
22067 2016-02-19  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
22069         * config/s390/s390-protos.h: Add s390_expand_vec_movstr prototype.
22070         * config/s390/s390.c (s390_expand_vec_movstr): New function.
22071         * config/s390/s390.md ("movstr<P:mode>"): Call
22072         s390_expand_vec_movstr.
22074 2016-02-19  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
22076         * config/s390/s390.md: Add missing output modifier for operand 1
22077         to print it as address properly.
22079 2016-02-19  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
22081         * config/s390/2827.md: Rename ooo_* insn attributes to zEC12_*.
22082         * config/s390/2964.md: New file.
22083         * config/s390/s390.c (s390_get_sched_attrmask): Use the right set
22084         of insn grouping attributes depending on the CPU level.
22085         (s390_get_unit_mask): New function.
22086         (s390_sched_score): Remove the OOO from the scheduling macros.
22087         Add loop to calculate a score for the instruction mix.
22088         (s390_sched_reorder): Likewise plus improve debug output.
22089         (s390_sched_variable_issue): Rename macros as above.  Calculate
22090         the unit distances after actually scheduling an insn.  Improve
22091         debug output.
22092         (s390_sched_init): Clear last_scheduled_unit_distance array.
22093         * config/s390/s390.md: Include 2964.md.
22095 2016-02-18  Jakub Jelinek  <jakub@redhat.com>
22097         PR target/69671
22098         * config/i386/sse.md (*<floatsuffix>floatv2div2sf2_mask_1,
22099         *avx512vl_<code>v2div2qi2_mask_1, *avx512vl_<code><mode>v4qi2_mask_1,
22100         *avx512vl_<code><mode>v8qi2_mask_1, *avx512vl_<code><mode>v4hi2_mask_1,
22101         *avx512vl_<code>v2div2hi2_mask_1, *avx512vl_<code>v2div2si2_mask_1,
22102         *avx512f_<code>v8div16qi2_mask_1): New insns.
22104 2016-02-18  Michael Meissner  <meissner@linux.vnet.ibm.com>
22106         PR target/68404
22107         * config/rs6000/predicates.md (fusion_gpr_addis): Revert
22108         2016-02-09 change.
22110         * config/rs6000/rs6000.md (fusion_gpr_load_<mode>): Remove
22111         earlyclobber from target.  Use wF constraint for fused memory
22112         address.
22113         (fusion_gpr_<P:mode>_<GPR_FUSION:mode>_load): Likewise.
22115 2016-02-18  Jakub Jelinek  <jakub@redhat.com>
22116             Martin Liska  <mliska@suse.cz>
22118         PR sanitizer/69863
22119         * cfgexpand.c (asan_sanitize_stack_p): New function.
22120         (partition_stack_vars): Use the function.
22121         (expand_stack_vars): Likewise.
22122         (defer_stack_allocation): Likewise.
22123         (expand_used_vars): Likewise.
22125 2016-02-18  Richard Biener  <rguenther@suse.de>
22127         PR middle-end/69553
22128         * fold-const.c (operand_equal_p): Properly compare offsets for
22129         IMAGPART_EXPR and ARRAY_REF.
22131 2016-02-18  Nick Clifton  <nickc@redhat.com>
22133         PR target/62254
22134         PR target/69610
22135         * config/arm/arm.c (arm_option_override_internal): Disable
22136         interworking if the target does not support thumb instructions.
22137         (arm_reload_in_hi): Handle the case where a register to register
22138         move needs reloading because there is no simple pattern to handle
22139         it.
22140         (arm_reload_out_hi): Likewise.
22142 2016-02-18  Richard Biener  <rguenther@suse.de>
22144         PR middle-end/69854
22145         * match.pd: Don't use fold_binary or fold_unary for folding
22146         constants.
22148 2016-02-17  Jakub Jelinek  <jakub@redhat.com>
22150         PR c++/69850
22151         * gimplify.c (gimplify_cond_expr): Call gimple_set_no_warning
22152         on the cond_stmt from TREE_NO_WARNING on COND_EXPR_COND.
22153         * gimple-ssa-nonnull-compare.c (do_warn_nonnull_compare): Don't
22154         warn on gimple_no_warning_p statements.
22156 2016-02-17  Jonathan Wakely  <jwakely@redhat.com>
22158         * doc/extend.texi (C++ Attributes): Correct description of
22159         warn_unused type attribute.
22161 2016-02-17  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
22163         * config/rs6000/altivec.md (*altivec_lvxl_<mode>_internal): Output
22164         correct instruction.
22166 2016-02-17  Richard Biener  <rguenther@suse.de>
22168         PR rtl-optimization/69609
22169         * bb-reorder.c (struct bbro_basic_block_data): Add priority member.
22170         (find_traces_1_round): When ending a trace update cached priority
22171         of successors.
22172         (bb_to_key): Use cached priority when available.
22173         (copy_bb): Initialize cached priority.
22174         (reorder_basic_blocks_software_trace_cache): Likewise.
22176 2016-02-17  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
22178         PR target/69161
22179         * config/aarch64/predicates.md (aarch64_comparison_operator_mode):
22180         New predicate.
22181         (aarch64_comparison_operator): Break overly long line into two.
22182         (aarch64_comparison_operation): Likewise.
22183         * config/aarch64/aarch64.md (cstorecc4): Use
22184         aarch64_comparison_operator_mode instead of
22185         aarch64_comparison_operator.
22186         (cstore<mode>4): Likewise.
22187         (aarch64_cstore<mode>): Likewise.
22188         (*cstoresi_insn_uxtw): Likewise.
22189         (cstore<mode>_neg): Likewise.
22190         (*cstoresi_neg_uxtw): Likewise.
22192 2016-02-17  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
22194         PR target/69161
22195         * config/arm/predicates.md (arm_comparison_operator_mode):
22196         New predicate.
22197         * config/arm/arm.md (*mov_scc): Use arm_comparison_operator_mode
22198         instead of arm_comparison_operator.
22199         (*mov_negscc): Likewise.
22200         (*mov_notscc): Likewise.
22201         * config/arm/thumb2.md (*thumb2_mov_scc): Likewise.
22202         (*thumb2_mov_negscc): Likewise.
22203         (*thumb2_mov_negscc_strict_it): Likewise.
22204         (*thumb2_mov_notscc): Likewise.
22205         (*thumb2_mov_notscc_strict_it): Likewise.
22207 2016-02-17  Wilco Dijkstra  <wdijkstr@arm.com>
22209         * config/aarch64/aarch64.c (aarch64_internal_mov_immediate):
22210         Add missing return.
22212 2016-02-17  Eric Botcazou  <ebotcazou@adacore.com>
22214         * config/visium/visium.c (machine_libfunc_index): New enum.
22215         (machine_libfuncs): New structure.
22216         (visium_libfuncs): New static variable.
22217         (TARGET_INIT_LIBFUNCS): Define to...
22218         (visium_init_libfuncs): ...this.  New function.
22219         (expand_block_move_4): Use the appropriate libfunc.
22220         (expand_block_move_2): Likewise.
22221         (expand_block_move_1): Likewise.
22222         (expand_block_set_4): Likewise.
22223         (expand_block_set_2): Likewise.
22224         (expand_block_set_1): Likewise.
22225         (visium_trampoline_init): Likewise.
22227 2016-02-17  Nick Clifton  <nickc@redhat.com>
22229         * config/msp430/msp430.c (msp430_mcu_data): Sync with data from
22230         TI's devices.csv file as of March 2016.
22232 2016-02-16  Kelvin Nilsen  <kelvin@gcc.gnu.org>
22234         PR Target/48344
22235         * opts-global.c (handle_common_deferred_options): Introduce and
22236         initialize two global variables to remember command-line options
22237         specifying a stack-limiting register.
22238         * opts.h: Add extern declarations of the two new global variables.
22239         * emit-rtl.c (init_emit_once): Initialize the stack_limit_rtx
22240         variable based on the values of the two new global variables.
22242 2016-02-16  Jakub Jelinek  <jakub@redhat.com>
22244         PR c/69835
22245         * common.opt (Wnonnull-compare): New warning.
22246         * doc/invoke.texi (-Wnonnull): Remove text about comparison
22247         of arguments against NULL.
22248         (-Wnonnull-compare): Document.
22249         * Makefile.in (OBJS): Add gimple-ssa-nonnull-compare.o.
22250         * tree-pass.h (make_pass_warn_nonnull_compare): Declare.
22251         * passes.def (pass_warn_nonnull_compare): Add.
22252         * gimple-ssa-nonnull-compare.c: New file.
22254 2016-02-16  James Greenhalgh  <james.greenhalgh@arm.com>
22256         * config/aarch64/aarch64.c (cortexa57_tunings): Remove
22257         AARCH64_EXTRA_TUNE_RECIP_SQRT.
22259 2016-02-16  James Greenhalgh  <james.greenhalgh@arm.com>
22261         * config/aarch64/aarch64.c (use_rsqrt_p): Always use software
22262         reciprocal sqrt for -mlow-precision-recip-sqrt.
22264 2016-02-16  James Greenhalgh  <james.greenhalgh@arm.com>
22265             Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>
22267         * config/aarch64/aarch64.c (aarch64_expand_vector_init): Refactor,
22268         always use lane loads to construct non-constant vectors.
22270 2016-02-16  James Greenhalgh  <james.greenhalgh@arm.com>
22272         * config/aarch64/aarch64.md
22273         (arch64_sqrdml<SQRDMLH_AS:rdma_as>h_lane<mode>): Fix register
22274         constraints for operand 3.
22275         (aarch64_sqrdml<SQRDMLH_AS:rdma_as>h_laneq<mode>): Likewise.
22277 2016-02-16  Jakub Jelinek  <jakub@redhat.com>
22278             Richard Biener  <rguenther@suse.de>
22280         PR tree-optimization/69820
22281         * tree-vect-patterns.c (type_conversion_p): Return false if
22282         *orig_type is unsigned single precision or boolean.
22283         (vect_recog_dot_prod_pattern, vect_recog_widen_mult_pattern):
22284         Formatting fix.
22286 2016-02-16  Jakub Jelinek  <jakub@redhat.com>
22288         PR rtl-optimization/69764
22289         PR rtl-optimization/69771
22290         * optabs.c (expand_binop): Ensure for shift optabs invalid CONST_INT
22291         op1 is valid for GET_MODE_INNER (mode) and force it into a reg.
22293 2016-02-16  Richard Biener  <rguenther@suse.de>
22295         PR tree-optimization/69776
22296         * tree-ssa-alias.c (indirect_ref_may_alias_decl_p): Get alias
22297         sets from caller.
22298         (indirect_refs_may_alias_p): Likewise.
22299         (refs_may_alias_p_1): Pass alias sets as from ao_ref.
22300         * tree-ssa-sccvn.c (vn_reference_lookup): Also adjust vr alias-set
22301         according to tbaa_p.
22302         * tree-ssa-dom.c (lookup_avail_expr): Add tbaa_p flag.
22303         (optimize_stmt): For redundant store discovery do not allow tbaa.
22305 2016-02-16  Bernd Schmidt  <bschmidt@redhat.com>
22307         PR tree-optimization/69714
22308         * tree-ssa-math-opts.c (find_bswap_or_nop): Revert previous change.
22309         Return NULL if we have irrelevant high bytes on BIG_ENDIAN.
22311 2016-02-16  Claudiu Zissulescu  <claziss@synopsys.com>
22313         * config/arc/arc-modes.def (CC_FPU, CC_FPU_UNEQ): New modes.
22314         * config/arc/arc-opts.h (FPU_SP, FPU_SF, FPU_SC, FPU_SD, FPU_DP)
22315         (FPU_DF, FPU_DC, FPU_DD, FXP_DP): Define.
22316         * config/arc/arc.c (arc_init): Check FPU options.
22317         (get_arc_condition_code): Handle new CC_FPU* modes.
22318         (arc_select_cc_mode): Likewise.
22319         (arc_conditional_register_usage): Allow 64 bit datum into even-odd
22320         register pair only. Allow access for ARCv2 accumulator.
22321         (gen_compare_reg): Whenever we have FPU support use FPU compare
22322         instructions.
22323         (arc_reorg): Don't generate brcc insns when FPU compare
22324         instructions are involved.
22325         * config/arc/arc.h (TARGET_DPFP): Add TARGET_FP_DPAX condition.
22326         (TARGET_OPTFPE): Add condition when ARC EM can use optimized
22327         floating point emulation.
22328         (ACC_REG_FIRST, ACC_REG_LAST, ACCL_REGNO, ACCH_REGNO): Define.
22329         (REVERSE_CONDITION): Add new CC_FPU* modes.
22330         (TARGET_FP_SP_BASE): Define.
22331         (TARGET_FP_DP_BASE): Likewise.
22332         (TARGET_FP_SP_FUSED): Likewise.
22333         (TARGET_FP_DP_FUSED): Likewise.
22334         (TARGET_FP_SP_CONV): Likewise.
22335         (TARGET_FP_DP_CONV): Likewise.
22336         (TARGET_FP_SP_SQRT): Likewise.
22337         (TARGET_FP_DP_SQRT): Likewise.
22338         (TARGET_FP_DP_AX): Likewise.
22339         * config/arc/arc.md (ARCV2_ACC): New constant.
22340         (type): New fpu type attribute.
22341         (SDF): Conditional iterator.
22342         (cstore<mode>, cbranch<mode>): Change expand condition.
22343         (addsf3, subsf3, mulsf3, adddf3, subdf3, muldf3): New expands,
22344         handles FPU/FPX cases as well.
22345         * config/arc/arc.opt (mfpu): New option.
22346         * config/arc/fpx.md (addsf3_fpx, subsf3_fpx, mulsf3_fpx):
22347         Renamed.
22348         (adddf3, muldf3, subdf3): Removed.
22349         * config/arc/predicates.md (proper_comparison_operator): Recognize
22350         CC_FPU* modes.
22351         * config/arc/fpu.md: New file.
22352         * doc/invoke.texi (ARC Options): Document mfpu option.
22354 2016-02-16  Richard Biener  <rguenther@suse.de>
22356         PR rtl-optimization/69291
22357         * ifcvt.c (noce_try_store_flag_constants): Re-instantiate
22358         noce_operand_ok check.
22360 2016-02-16  Tom de Vries  <tom@codesourcery.com>
22362         PR lto/67709
22363         * omp-low.c (simd_clone_create): Remove call to
22364         symtab->call_cgraph_insertion_hooks.
22366 2016-02-16  Jakub Jelinek  <jakub@redhat.com>
22368         PR tree-optimization/69802
22369         * tree-ssa-reassoc.c (update_range_test): If op is
22370         SSA_NAME_IS_DEFAULT_DEF, give up unless tem is a positive
22371         op == 1 test of precision 1 integral op, otherwise handle
22372         that case as op itself.  Fix up formatting.
22373         (optimize_range_tests_to_bit_test, optimize_range_tests): Fix
22374         up formatting.
22376 2016-02-16  Richard Biener  <rguenther@suse.de>
22378         PR tree-optimization/69586
22379         * tree-vrp.c (register_edge_assert_for_2): Handle all integral
22380         types for conversion sources.
22382 2016-02-16  Richard Biener  <rguenther@suse.de>
22384         PR middle-end/69801
22385         * fold-const.c (operand_equal_p): For COND_EXPR zero operand
22386         mask OEP_ADDRESS_OF.
22388 2016-02-16  Alan Modra  <amodra@gmail.com>
22390         PR target/68973
22391         * config/rs6000/rs6000.md (reload_vsx_from_gprsf): Rewrite splitter.
22392         (p8_mtvsrd_df, p8_mtvsrd_sf): New.
22393         (p8_mtvsrd_1, p8_mtvsrd_2): Delete.
22394         (p8_mtvsrwz): New.
22395         (p8_mtvsrwz_1, p8_mtvsrwz_2): Delete.
22396         (p8_xxpermdi_<mode>): Take two DF inputs rather than one TF.
22397         (p8_fmrgow_<mode>): Likewise.
22398         (reload_vsx_from_gpr<mode>): Make clobber IF.  Adjust for above
22399         changes.
22400         (reload_fpr_from_gpr<mode>): Similarly. Use "d" for op0 constraint.
22401         (reload_vsx_from_gprsf): Use p8_mtvsrd_sf rather than attempting
22402         to use movdi_internal64.  Remove op0_di.
22403         * config/rs6000/vsx.md (vsx_xscvspdpn_directmove): Make op1 SFmode.
22405 2016-02-15  Evandro Menezes  <e.menezes@samsung.com>
22407         Add support for the FCCMP insn types
22409         * config/aarch64/aarch64.md (fccmp): Change insn type.
22410         (fccmpe): Likewise.
22411         * config/aarch64/thunderx.md (thunderx_fcmp): Add "fccmp{s,d}" types.
22412         * config/arm/cortex-a53.md (cortex_a53_fpalu): Likewise.
22413         * config/arm/cortex-a57.md (cortex_a57_fp_cmp): Likewise.
22414         * config/arm/xgene1.md (xgene1_fcmp): Likewise.
22415         * config/arm/exynos-m1.md (exynos_m1_fp_ccmp): New insn reservation.
22416         * config/arm/types.md (fccmps): Add new insn type.
22417         (fccmpd): Likewise.
22419 2016-02-15  Bernd Edlinger  <bernd.edlinger@hotmail.de>
22421         * alias.c (get_alias_set): Fix a typo in comment.
22423 2016-02-15  Richard Biener  <rguenther@suse.de>
22425         PR tree-optimization/69595
22426         * match.pd: Complete range test simplification to true.
22428 2016-02-15  Bernd Schmidt  <bschmidt@redhat.com>
22430         PR rtl-optimization/69648
22431         * lra-constraints.c (update_ebb_live_info): Don't remove sets of
22432         pic_offset_table_rtx.
22434         PR rtl-optimization/69752
22435         * ira.c (update_equiv_regs): When looking for more than a single SET,
22436         also take other side effects into account.
22438 2016-02-15  Marcin Kościelnicki  <koriakin@0x04.net>
22440         * config/s390/s390.c (s390_function_profiler): Add a new sequence
22441         for z900+ CPUs in 31-bit mode.
22443 2016-02-15  Marcin Kościelnicki  <koriakin@0x04.net>
22445         * common/config/s390/s390-common.c (s390_supports_split_stack):
22446         New function.
22447         (TARGET_SUPPORTS_SPLIT_STACK): New macro.
22448         * config/s390/s390-protos.h: Add s390_expand_split_stack_prologue.
22449         * config/s390/s390.c (struct machine_function): New field
22450         split_stack_varargs_pointer.
22451         (s390_register_info): Mark r12 as clobbered if it'll be used as temp
22452         in s390_emit_prologue.
22453         (s390_emit_prologue): Use r12 as temp if r1 is taken by split-stack
22454         vararg pointer.
22455         (morestack_ref): New global.
22456         (SPLIT_STACK_AVAILABLE): New macro.
22457         (s390_expand_split_stack_prologue): New function.
22458         (s390_live_on_entry): New function.
22459         (s390_va_start): Use split-stack vararg pointer if appropriate.
22460         (s390_asm_file_end): Emit the split-stack note sections.
22461         (TARGET_EXTRA_LIVE_ON_ENTRY): New macro.
22462         * config/s390/s390.md (UNSPEC_STACK_CHECK): New unspec.
22463         (UNSPECV_SPLIT_STACK_CALL): New unspec.
22464         (UNSPECV_SPLIT_STACK_DATA): New unspec.
22465         (split_stack_prologue): New expand.
22466         (split_stack_space_check): New expand.
22467         (split_stack_data): New insn.
22468         (split_stack_call): New expand.
22469         (split_stack_call_*): New insn.
22470         (split_stack_cond_call): New expand.
22471         (split_stack_cond_call_*): New insn.
22473 2016-02-15  Richard Biener  <rguenther@suse.de>
22475         PR tree-optimization/69783
22476         * tree-vect-data-refs.c (vect_prune_runtime_alias_test_list):
22477         Add trivially correct cases.
22479 2016-02-15  Tom de Vries  <tom@codesourcery.com>
22481         PR lto/69655
22482         * lto-cgraph.c (input_offload_tables): Add and handle bool parameter
22483         do_force_output.
22484         * lto-streamer.h (input_offload_tables): Add and handle bool parameter.
22486 2016-02-15  Richard Biener  <rguenther@suse.de>
22488         PR tree-optimization/69776
22489         * tree-ssa-sccvn.h (vn_reference_lookup): Adjust prototype.
22490         * tree-ssa-sccvn.c (vn_reference_lookup): Add parameter to
22491         indicate whether we can use TBAA to disambiguate against stores.
22492         Use alias-set zero if not.
22493         (visit_reference_op_store): Do not use TBAA when looking up
22494         redundant stores.
22495         * tree-ssa-pre.c (compute_avail): Use TBAA here.
22496         (eliminate_dom_walker::before_dom_children): But not when looking
22497         up redundant stores.
22499 2016-02-14  John David Anglin  <danglin@gcc.gnu.org>
22501         * config/pa/pa.md (absqi2, absghi2, bswaphi2, bswapsi2, bswapdi2): New.
22503 2016-02-14  Venkataramanan Kumar  <venkataramanan.kumar@amd.com>
22505         *  config/i386/znver1.md
22506         (znver1_pop, znver1_pop_mem,
22507         znver1_load_imov_double_store,
22508         znver1_load_imov_direct_store,
22509         znver1_load_imov_direct_load,
22510         znver1_load_imov_double_load): Add new.
22511         (znver1_insn, znver1_insn_load): Add icmov type.
22512         (znver1_sseavx_fma,
22513         znver1_sseavx_fma_load,
22514         znver1_avx256_fma,
22515         znver1_avx256_fma_load): Fix pipe usage.
22517 2016-02-14  Alan Modra  <amodra@gmail.com>
22519         PR target/68973
22520         * reload.c (find_reloads_address_1): For pre/post-inc/dec
22521         with an invalid hard reg, reload just the reg not the entire
22522         pre/post-inc/dec address expression.
22524 2016-02-13  Oleg Endo  <olegendo@gcc.gnu.org>
22526         PR target/67260
22527         * config/sh/sh.md (sibcall_value_pcrel): Replace =&k scratch reg with
22528         fixed R1_REG scratch reg.
22529         (sibcall_value_pcrel_fdpic): Likewise.
22531 2016-02-13  Oleg Endo  <olegendo@gcc.gnu.org>
22533         PR target/67636
22534         PR target/64345
22535         * config/sh/sh.md (*zero_extract_3): New insn_and_split pattern.
22537 2016-02-12  Walter Lee  <walt@tilera.com>
22539         * config/tilepro/t-tilepro: Replace CC_FOR_BUILD with CXX_FOR_BUILD.
22540         * config/tilegx/t-tilegx: Likewise.
22542 2016-02-12  David Malcolm  <dmalcolm@redhat.com>
22544         PR other/69554
22545         * diagnostic-show-locus.c (struct line_span): New struct.
22546         (layout::get_first_line): Delete.
22547         (layout::get_last_line): Delete.
22548         (layout::get_num_line_spans): New member function.
22549         (layout::get_line_span): Likewise.
22550         (layout::print_heading_for_line_span_index_p): Likewise.
22551         (layout::get_expanded_location): Likewise.
22552         (layout::calculate_line_spans): Likewise.
22553         (layout::m_first_line): Delete.
22554         (layout::m_last_line): Delete.
22555         (layout::m_line_spans): New field.
22556         (layout::layout): Update comment.  Replace m_first_line and
22557         m_last_line with m_line_spans, replacing their initialization
22558         with a call to calculate_line_spans.
22559         (diagnostic_show_locus): When printing source lines and
22560         annotations, rather than looping over a single span
22561         of lines, instead loop over each line_span within
22562         the layout, with an inner loop over the lines within them.
22563         Call the context's start_span callback when changing line spans.
22564         * diagnostic.c (diagnostic_initialize): Initialize start_span.
22565         (diagnostic_build_prefix): Break out the building of the location
22566         part of the string into...
22567         (diagnostic_get_location_text): ...this new function, rewriting
22568         it from nested ternary expressions to a sequence of "if"
22569         statements.
22570         (default_diagnostic_start_span_fn): New function.
22571         * diagnostic.h (diagnostic_start_span_fn): New typedef.
22572         (diagnostic_context::start_span): New field.
22573         (default_diagnostic_start_span_fn): New prototype.
22575 2016-02-12  David Malcolm  <dmalcolm@redhat.com>
22577         PR driver/69779
22578         * gcc.c (driver::finalize): Fix cleanup of "specs".
22580 2016-02-12  David Malcolm  <dmalcolm@redhat.com>
22582         PR driver/69265
22583         PR driver/69453
22584         * gcc.c (driver::driver): Initialize m_option_suggestions.
22585         (driver::~driver): Clean up m_option_suggestions.
22586         (suggest_option): Convert to...
22587         (driver::suggest_option): ...this, and split out into
22588         driver::build_option_suggestions and find_closest_string.
22589         (driver::build_option_suggestions): New function, from
22590         first half of suggest_option.  Special-case
22591         OPT_fsanitize_ and OPT_fsanitize_recover_, making use of
22592         the sanitizer_opts array.  For options of enum types, add the
22593         various enum values to the candidate strings.
22594         (driver::handle_unrecognized_options): Remove "const".
22595         * gcc.h (driver::handle_unrecognized_options): Likewise.
22596         (driver::build_option_suggestions): New decl.
22597         (driver::suggest_option): New decl.
22598         (driver::m_option_suggestions): New field.
22599         * opts-common.c (add_misspelling_candidates): New function.
22600         * opts.c (sanitizer_opts): Remove decl of struct sanitizer_opts_s
22601         and make non-static.
22602         * opts.h (sanitizer_opts): New array decl.
22603         (add_misspelling_candidates): New function decl.
22604         * spellcheck.c (find_closest_string): New function.
22605         * spellcheck.h (find_closest_string): New function decl.
22607 2016-02-12  Jakub Jelinek  <jakub@redhat.com>
22609         PR rtl-optimization/69764
22610         PR rtl-optimization/69771
22611         * optabs.c (expand_binop_directly): For shift_optab_p, force
22612         convert_modes with VOIDmode if xop1 has VOIDmode.
22614 2016-02-12  Ilya Enkovich  <enkovich.gnu@gmail.com>
22616         PR target/69729
22617         * lto-streamer-out.c (lto_output): Use thunk.add_pointer_bounds_args
22618         to correctly determine instrumentation thunks.
22620 2016-02-12  Jakub Jelinek  <jakub@redhat.com>
22622         PR ipa/69241
22623         * ipa-split.c (split_function): If split part returns TREE_ADDRESSABLE
22624         type by reference, force lhs on the call.
22626         PR ipa/68672
22627         * ipa-split.c (split_function): Don't compute/use main_part_return_p.
22628         Compute retval and retbnd early in all cases if split_part_return_p
22629         and return_bb is not EXIT.  Remove all clobber stmts and reset
22630         all debug stmts that refer to SSA_NAMEs defined in split part,
22631         except if it is retval, in that case replace the old retval with the
22632         lhs of the call to the split part.
22634 2016-02-12  Kugan Vivekanandarajah  <kuganv@linaro.org>
22636         revert:
22637         2016-02-12  Kugan Vivekanandarajah  <kuganv@linaro.org>
22639         PR middle-end/66726
22640         * tree-ssa-reassoc.c (optimize_range_tests): Handle tcc_compare stmt
22641         whose result is used in PHI.
22642         (maybe_optimize_range_tests): Likewise.
22643         (final_range_test_p): Likweise.
22645 2016-02-12  Kugan Vivekanandarajah  <kuganv@linaro.org>
22647         PR middle-end/66726
22648         * tree-ssa-reassoc.c (optimize_range_tests): Handle tcc_compare stmt
22649         whose result is used in PHI.
22650         (maybe_optimize_range_tests): Likewise.
22651         (final_range_test_p): Likweise.
22653 2016-02-12  Jakub Jelinek  <jakub@redhat.com>
22655         * cgraph.c: Spelling fixes - behaviour -> behavior and
22656         neighbour -> neighbor.
22657         * target.def: Likewise.
22658         * sel-sched.c: Likewise.
22659         * config/mips/mips.c: Likewise.
22660         * config/arc/arc.md: Likewise.
22661         * config/arm/cortex-a57.md: Likewise.
22662         * config/arm/arm.c: Likewise.
22663         * config/arm/neon.md: Likewise.
22664         * config/arm/arm-c.c: Likewise.
22665         * config/vms/vms-c.c: Likewise.
22666         * config/s390/s390.c: Likewise.
22667         * config/i386/znver1.md: Likewise.
22668         * config/i386/i386.c: Likewise.
22669         * config/ia64/hpux-unix2003.h: Likewise.
22670         * config/msp430/msp430.md: Likewise.
22671         * config/rx/rx.c: Likewise.
22672         * config/rx/rx.md: Likewise.
22673         * config/aarch64/aarch64-simd.md: Likewise.
22674         * config/aarch64/aarch64.c: Likewise.
22675         * config/nvptx/nvptx.c: Likewise.
22676         * config/bfin/bfin.c: Likewise.
22677         * config/cris/cris.opt: Likewise.
22678         * config/rs6000/rs6000.c: Likewise.
22679         * target.h: Likewise.
22680         * spellcheck.c: Likewise.
22681         * ira-build.c: Likewise.
22682         * tree-inline.c: Likewise.
22683         * builtins.c: Likewise.
22684         * lra-constraints.c: Likewise.
22685         * explow.c: Likewise.
22686         * hwint.h: Likewise.
22687         * targhooks.c: Likewise.
22688         * tree-vect-data-refs.c: Likewise.
22689         * expr.c: Likewise.
22690         * doc/tm.texi: Likewise.
22691         * doc/extend.texi: Likewise.
22692         * doc/install.texi: Likewise.
22693         * doc/md.texi: Likewise.
22694         * tree-ssa-tail-merge.c: Likewise.
22695         * sched-int.h: Likewise.
22696         * match.pd: Likewise.
22697         * sched-ebb.c: Likewise.
22698         * target.def (omit_struct_return_reg): Likewise.
22699         * gimple-ssa-isolate-paths.c: Likewise.
22700         (find_implicit_erroneous_behaviour): Renamed to...
22701         (find_implicit_erroneous_behavior): ... this.
22702         (find_explicit_erroneous_behaviour): Renamed to...
22703         (find_explicit_erroneous_behavior): ... this.
22704         (gimple_ssa_isolate_erroneous_paths): Adjust caller.
22706 2016-02-11  Segher Boessenkool  <segher@kernel.crashing.org>
22708         PR rtl-optimization/64682
22709         PR rtl-optimization/69567
22710         PR rtl-optimization/69737
22711         * combine.c (distribute_notes) <REG_DEAD>: If the register is set
22712         in I2 as well, just lose it.
22714 2016-02-11  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
22716         * config/aarch64/aarch64.c (aarch64_last_printed_arch_string):
22717         New variable.
22718         (aarch64_last_printed_tune_string): Likewise.
22719         (aarch64_declare_function_name): Only output .arch assembler
22720         directive if it will be different from the previously output
22721         directive.  Same for .tune comment but only if -dA is set.
22722         (aarch64_start_file): New function.
22723         (TARGET_ASM_FILE_START): Define.
22725 2016-02-11  David Malcolm  <dmalcolm@redhat.com>
22727         PR plugins/69758
22728         * Makefile.in (PLUGIN_HEADERS): Add params.list.
22730 2016-02-11  Jakub Jelinek  <jakub@redhat.com>
22732         PR target/65313
22733         * tree-vect-slp.c (vect_schedule_slp_instance): Avoid
22734         -Wmaybe-uninitialized warning.
22736 2016-02-11  Oleg Endo  <olegendo@gcc.gnu.org>
22738         PR target/69713
22739         * config/sh/sh.md (casesi_worker_0): Add T_REG use.
22741 2016-02-11  Richard Biener  <rguenther@suse.de>
22743         PR rtl-optimization/69291
22744         * ifcvt.c (noce_try_store_flag_constants): Do not allow
22745         subexpressions affected by changing the result.
22747 2016-02-10  Vladimir Makarov  <vmakarov@redhat.com>
22749         PR target/69148
22750         * lra-constraints.c (curr_insn_transform): Find in/out operands
22751         for secondary memory moves.  Update dups.
22753 2016-02-10  Yuri Rumyantsev  <ysrumyan@gmail.com>
22755         PR tree-optimization/69652
22756         * tree-vect-loop.c (optimize_mask_stores): Move declaration of STMT1
22757         to nested loop, did source re-formatting, skip debug statements,
22758         add check on statement with volatile operand, remove dead scalar
22759         statements.
22761 2016-02-10  Jakub Jelinek  <jakub@redhat.com>
22762             Patrick Palka  <ppalka@gcc.gnu.org>
22764         PR ipa/69241
22765         PR c++/69649
22766         * gimplify.c (gimplify_modify_expr): Set lhs even for noreturn
22767         calls if the return type is TREE_ADDRESSABLE.
22768         * cgraphunit.c (cgraph_node::expand_thunk): Likewise.
22769         * ipa-split.c (split_function): Fix doubled "we" in comment.
22770         Use void return type for the split part even if
22771         !split_point->split_part_set_retval.
22773 2016-02-10  Bin Cheng  <bin.cheng@arm.com>
22775         PR tree-optimization/68021
22776         * tree-ssa-loop-ivopts.c (get_computation_aff): Set ratio to 1 if
22777         when computing the value of biv cand by itself.
22779 2016-02-10  Wilco Dijkstra  <wdijkstr@arm.com>
22781         * config/aarch64/aarch64.c (cortexa53_tunings): Enable AES fusion.
22782         (cortexa57_tunings): Likewise.
22783         (cortexa72_tunings): Likewise.
22784         (arch_macro_fusion_pair_p): Add support for AES fusion.
22785         * config/aarch64/aarch64-fusion-pairs.def: Add AES_AESMC entry.
22786         * config/arm/aarch-common.c (aarch_crypto_can_dual_issue):
22787         Allow virtual registers before reload so early scheduling works.
22788         * config/arm/cortex-a57.md (cortex_a57_crypto_simple): Use
22789         correct latency and pipeline.
22790         (cortex_a57_crypto_complex): Likewise.
22791         (cortex_a57_crypto_xor): Likewise.
22792         (define_bypass): Add AES bypass.
22794 2016-02-10  Richard Biener  <rguenther@suse.de>
22796         PR tree-optimization/69726
22797         * passes.def: Add DCE pass before late uninit.
22798         * match.pd: Add A ? B : (!A ? C : X) -> A ? B : C patterns to
22799         really fixup if-conversions job.
22801 2016-02-10  Wilco Dijkstra  <wdijkstr@arm.com>
22803         * config/arm/arm.c (arm_cortex_a53_tune): Enable AES fusion.
22804         (arm_cortex_a57_tune): Likewise.
22805         (aarch_macro_fusion_pair_p): Add support for AES fusion.
22806         * config/arm/arm-protos.h (fuse_ops): Add FUSE_AES_AESMC.
22808 2016-02-10  Eric Botcazou  <ebotcazou@adacore.com>
22810         * timevar.def (TV_PHASE_DBGINFO): Delete.
22811         (TV_PHASE_CHECK_DBGINFO): Likewise.
22812         * varpool.c (varpool_node::assemble_decl): Do not change timevar.
22814 2016-02-10  Richard Biener  <rguenther@suse.de>
22816         PR tree-optimization/69719
22817         * tree-vect-data-refs.c (vect_prune_runtime_alias_test_list):
22818         Adjust previous fix by ensuring that dr_a1 is left of dr_a2.
22820 2016-02-09  Andrew Pinski  <apinski@cavium.com>
22822         PR tree-opt/69282
22823         * optabs-tree.c (expand_vec_cond_expr_p): Don't early return if
22824         get_vcond_mask_icode returns false.
22826 2016-02-09  Michael Meissner  <meissner@linux.vnet.ibm.com>
22828         PR target/68404
22829         * config/rs6000/predicates.md (fusion_gpr_addis): Prevent fusing
22830         an ADDIS that adds a pointer to a large constant that sets the
22831         upper16 bits with a load operation.
22833 2016-02-09  Charles Baylis  <charles.baylis@linaro.org>
22835         PR target/68532
22836         * config/arm/arm.c (arm_evpc_neon_vzip): Allow for big endian lane
22837         order.
22838         * config/arm/arm_neon.h (vzipq_s8): Adjust shuffle patterns for big
22839         endian.
22840         (vzipq_s16): Likewise.
22841         (vzipq_s32): Likewise.
22842         (vzipq_f32): Likewise.
22843         (vzipq_u8): Likewise.
22844         (vzipq_u16): Likewise.
22845         (vzipq_u32): Likewise.
22846         (vzipq_p8): Likewise.
22847         (vzipq_p16): Likewise.
22849 2016-02-09  Charles Baylis  <charles.baylis@linaro.org>
22851         PR target/68532
22852         * config/arm/arm.c (neon_endian_lane_map): New function.
22853         (neon_vector_pair_endian_lane_map): New function.
22854         (arm_evpc_neon_vuzp): Allow for big endian lane order.
22855         * config/arm/arm_neon.h (vuzpq_s8): Adjust shuffle patterns for big
22856         endian.
22857         (vuzpq_s16): Likewise.
22858         (vuzpq_s32): Likewise.
22859         (vuzpq_f32): Likewise.
22860         (vuzpq_u8): Likewise.
22861         (vuzpq_u16): Likewise.
22862         (vuzpq_u32): Likewise.
22863         (vuzpq_p8): Likewise.
22864         (vuzpq_p16): Likewise.
22866 2016-02-11  Alexandre Oliva  <aoliva@redhat.com>
22868         PR target/69634
22869         * regstat.c (regstat_bb_compute_calls_crossed): Disregard
22870         debug insns.
22872 2016-02-09  Uros Bizjak  <ubizjak@gmail.com>
22874         * config/i386/i386.md (insv<mode>_1): Use gen_int_mode to
22875         truncate const_int operand 1 to QImode.
22877 2016-02-09  Eric Botcazou  <ebotcazou@adacore.com>
22879         * gimple-ssa-backprop.c (optimize_phi): Do not replace an argument
22880         corresponding to an abnormal edge.
22882 2016-02-09  Tom de Vries  <tom@codesourcery.com>
22884         PR tree-optimization/69599
22885         * tree-ssa-structalias.c (fndecl_maybe_in_other_partition): New
22886         function.
22887         (find_func_aliases_for_builtin_call, find_func_clobbers)
22888         (ipa_pta_execute):  Handle case that foo and foo._0 are not in same lto
22889         partition.
22891 2016-02-09  Richard Biener  <rguenther@suse.de>
22893         PR tree-optimization/69715
22894         * tree-ssa.c (execute_update_addresses_taken): Mark non-decl
22895         LHS on calls as non-rewritable.
22897 2016-02-09  Tom de Vries  <tom@codesourcery.com>
22899         PR lto/69707
22900         * lto-wrapper.c (append_diag_options): New function.
22901         (compile_offload_image): Call append_diag_options.
22903 2016-02-08  Sandra Loosemore  <sandra@codesourcery.com>
22905         PR other/69722
22906         * doc/extend.texi (Flag Output Operands): Correct sectioning.
22907         Minor copy-edit to fix verb tenses.
22909 2016-02-08  Jakub Jelinek  <jakub@redhat.com>
22911         PR tree-optimization/69209
22912         * ipa-split.c (split_function): If split part is not
22913         returning retval, retval has gimple type but is not
22914         gimple value, force it into a SSA_NAME first.
22916 2016-02-08  Nicklas Bo Jensen  <nbjensen@gmail.com>
22918         * doc/tree-ssa.texi (Preserving the virtual SSA form): Remove
22919         outdated section.
22921 2016-02-08  Jason Merrill  <jason@redhat.com>
22923         PR c++/69631
22924         * convert.c (convert_to_integer_1): Check dofold on truncation
22925         distribution.
22926         (convert_to_pointer_maybe_fold, convert_to_real_maybe_fold)
22927         (convert_to_integer_maybe_fold, convert_to_complex_maybe_fold):
22928         Rename from *_nofold.
22929         * convert.h (convert_to_pointer_nofold, convert_to_integer_nofold)
22930         (convert_to_real_nofold, convert_to_complex_nofold): New inlines.
22932 2016-02-08  Bernd Schmidt  <bschmidt@redhat.com>
22934         PR target/60410
22935         * tree.c (build_common_tree_nodes): Remove short_double argument.
22936         All callers changed.
22937         * tree.h (build_common_tree_nodes): Adjust declaration.
22938         * doc/invoke.texi (-fshort-double): Remove documentation.
22939         * config/mips/t-img-elf (MULTILIB_OPTIONS, MULTILIB_DIRNAMES,
22940         MULTILIB_EXCEPTIONS): Remove -fshort-double variant.
22941         * lto-wrapper.c (merge_and_complain, append_compiler_options)
22942         (append_linker_options): Don't handle OPT_fshort_double.
22944         PR rtl-optimization/68730
22945         * lra-remat.c (insn_to_cand_activation): New static variable.
22946         (lra_remat): Allocate and free it.
22947         (create_cand): New arg activation. Initialize a field in
22948         insn_to_cand_activation if it is nonnull.
22949         (create_cands): Pass the activation insn to create_cand when making
22950         a candidate involving an output reload.  Reorganize code a little.
22951         (do_remat): Keep track of active status of candidates in a separate
22952         bitmap.
22954 2016-02-08  Richard Biener  <rguenther@suse.de>
22956         PR tree-optimization/69719
22957         * tree-vect-data-refs.c (vect_prune_runtime_alias_test_list):
22958         Properly use absolute of the difference of the two offsets to
22959         compare or adjust the segment length.
22961 2016-02-08  Richard Biener  <rguenther@suse.de>
22962             Jeff Law  <law@redhat.com>
22964         PR target/68273
22965         * tree-ssanames.c (make_ssa_name_fn): Always use unqualified
22966         types for anonymous SSA names.
22968 2016-02-08   Richard Biener  <rguenther@suse.de>
22970         PR rtl-optimization/69274
22971         * ira.c (ira_setup_alts): Do not change recog_data.operand order.
22973 2016-02-08  Jeff Law  <law@redhat.com>
22975         PR tree-optimization/65917
22976         * tree-ssa-dom.c (record_temporary_equivalences): Record both
22977         equivalences from if (x == y) style conditionals.
22978         (loop_depth_of_name): Remove.
22979         (record_equality): Remove loop depth check.
22980         * tree-ssa-scopedtables.h (const_and_copies): Refine comments.
22981         (const_and_copies::record_const_or_copy_raw): New member function.
22982         * tree-ssa-scopedtables.c
22983         (const_and_copies::record_const_or_copy_raw): New, factored out of
22984         (const_and_copies::record_const_or_copy): Call new member function.
22986 2016-02-05  Jeff Law  <law@redhat.com>
22988         PR tree-optimization/68541
22989         * gimple-ssa-split-paths.c: Include tree-cfg.h and params.h.
22990         (count_stmts_in_block): New function.
22991         (poor_ifcvt_candidate_code): Likewise.
22992         (is_feasible_trace): Add some heuristics to determine when path
22993         splitting is profitable.
22994         (find_block_to_duplicate_for_splitting_paths): Make sure the graph
22995         is a diamond with a single exit.
22997 2016-02-05  Martin Sebor  <msebor@redhat.com>
22999         PR c++/69662
23000         * doc/invoke.texi: Update -Wplacement-new to take an optional
23001         argument.
23003 2016-02-06  Richard Henderson  <rth@redhat.com>
23005         PR c/69643
23006         * tree.c (tree_nop_conversion_p): Do not strip casts into or
23007         out of non-standard address spaces.
23009 2016-02-05  Jakub Jelinek  <jakub@redhat.com>
23011         PR rtl-optimization/69691
23012         * lra-eliminations.c (move_plus_up): Don't add the addend twice.
23014 2016-02-05  Pat Haugen  <pthaugen@us.ibm.com>
23016         * config/rs6000/crypto.md (crypto_vpermxor_<mode>): Correct insn type.
23017         * config/rs6000/rs6000.md (mov<mode>_hardfloat): Likewise.
23018         (*ieee128_mfvsrd_64bit): Likewise.
23019         (*ieee128_mfvsrd_32bit): Likewise.
23021 2016-02-05  Ilya Enkovich  <enkovich.gnu@gmail.com>
23023         PR target/69369
23024         Revert r232560:
23025         2016-01-19  Jan Hubicka  <hubicka@ucw.cz>
23027         * cgraphunit.c (cgraph_node::reset): Clear thunk info and
23028         instrumented_version.
23030 2016-01-05  Jeremy Bennett  <jeremy.bennett@embecosm.com>
23032         * doc/invoke.texi (Optimize Options): In table of --param options
23033         rename second occurrence of tracer-min-branch-ratio to
23034         tracer-min-branch-probability, rename
23035         tracer-min-branch-ratio-feedback to
23036         tracer-min-branch-probability-feedback and clarify description,
23037         rename sched-spec-state-edge-prob-cutoff to
23038         sched-state-edge-prob-cutoff, rename selsched-max-insns-to-rename
23039         to selsched-insns-to-rename, rename lto-minpartition to
23040         lto-min-partition, delete reorder-blocks-duplicate and
23041         reorder-blocks-duplicate-feedback.
23043 2016-02-05  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
23045         * config/s390/s390.c (s390_register_info_set_ranges): Remove
23046         superfluous loops.
23048 2016-02-05  Dominik Vogt  <vogt@linux.vnet.ibm.com>
23050         * doc/extend.texi: S/390: Correct some typos.
23052 2016-02-05  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
23054         * config/s390/s390.c (s390_emit_call): Add missing 64 bit check.
23056 2016-02-05  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
23058         PR target/69625
23059         * config/s390/s390.c (SAVE_SLOT_NONE, SAVE_SLOT_STACK): New defines.
23060         (s390_register_info_gprtofpr): Use new macros above.
23061         (s390_register_info_stdarg_fpr): Adjust max_fpr to better match
23062         its name.
23063         (s390_register_info_stdarg_gpr): Adjust max_gpr to better match
23064         its name.  Adjust restore and save gpr ranges.
23065         (s390_register_info_set_ranges): New function.
23066         (s390_register_info): Use new macros above.  Call
23067         s390_register_info_set_ranges.
23068         (s390_optimize_register_info): Likewise.
23069         (s390_hard_regno_rename_ok): Use new macros.
23070         (s390_hard_regno_scratch_ok): Likewise.
23071         (s390_emit_epilogue): Likewise.
23072         (s390_can_use_return_insn): Likewise.
23073         (s390_optimize_prologue): Likewise.
23074         * config/s390/s390.md (GPR2_REGNUM, GPR6_REGNUM): New constants.
23076 2016-02-05  Jakub Jelinek  <jakub@redhat.com>
23078         PR bootstrap/69677
23079         * config/i386/i386.c (convert_scalars_to_vector): Readd stack
23080         alignment fixes.
23081         (ix86_option_override_internal): Disable TARGET_STV even for
23082         -m{incoming,preferred}-stack-boundary=3.
23084 2016-02-03  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
23086         * config.gcc: Mark deprecated rtems targets as obsolete.
23088 2016-02-04  Segher Boessenkool  <segher@kernel.crashing.org>
23090         PR rtl-optimization/64682
23091         PR rtl-optimization/69567
23092         * combine.c (distribute_notes) <REG_DEAD>: Place the death note
23093         before I2 only if the register is both used and set in I2.
23095 2016-02-04  DJ Delorie  <dj@redhat.com>
23097         * config/msp430/msp430.c (msp430_start_function): Add function type.
23099 2016-02-04  Jakub Jelinek  <jakub@redhat.com>
23101         PR fortran/69368
23102         * tree-dfa.c (get_ref_base_and_extent): Remove unreachable code.
23104 2016-02-04  Uros Bizjak  <ubizjak@gmail.com>
23106         PR rtl-optimization/69577
23107         Revert:
23108         2015-10-29  Richard Henderson  <rth@redhat.com>
23110         PR target/68124
23111         PR rtl-opt/67609
23112         * config/i386/i386.c (ix86_cannot_change_mode_class): Tighten
23113         sse check to the exact conditions of PR 67609.
23115 2016-02-04  Michael Meissner  <meissner@linux.vnet.ibm.com>
23117         PR target/69667
23118         * config/rs6000/rs6000.md (mov<mode>_64bit_dm): Use 'd' constraint
23119         instead of 'ws', and 'wh' instead of 'wm' since TFmode/IFmode are
23120         not allowed into the traditional Altivec registers.
23121         (movtd_64bit_nodm): Likewise.
23122         (mov<mode>_32bit, FMOVE128_FPR iterator): Likewise.
23124 2016-02-04  David Malcolm  <dmalcolm@redhat.com>
23126         * config/aarch64/cortex-a57-fma-steering.c
23127         (aarch64_register_fma_steering): Remove "static" from arguments
23128         to register_pass.
23130 2016-02-04  Wilco Dijkstra  <wdijkstr@arm.com>
23132         PR target/69619
23133         * ccmp.c (expand_ccmp_expr_1): Avoid evaluating gs0/gs1
23134         twice when complex.
23136 2016-02-04  Mike Frysinger  <vapier@gentoo.org>
23138         * doc/invoke.texi: Delete -mno-fma4.
23140 2016-02-04  Richard Sandiford  <richard.sandiford@arm.com>
23142         PR rtl-optimization/69577
23143         * reginfo.c (record_subregs_of_mode): Add a partial_def parameter.
23144         (find_subregs_of_mode): Update accordingly.  Iterate over partial
23145         definitions.
23147 2016-02-04  Alan Lawrence  <alan.lawrence@arm.com>
23149         * config/arm/arm-protos.h (neon_reinterpret): Remove.
23150         * config/arm/arm.c (neon_reinterpret): Remove.
23151         * config/arm/arm_neon_builtins.def (vreinterpretv8qi, vreinterpretv4hi,
23152         vreinterpretv2si, vreinterpretv2sf, vreinterpretdi, vreinterpretv16qi,
23153         vreinterpretv8hi, vreinterpretv4si, vreinterpretv4sf, vreinterpretv2di,
23154         vreinterpretti): Remove.
23155         * config/arm/neon.md (neon_vreinterpretv8qi<mode>,
23156         neon_vreinterpretv4hi<mode>, neon_vreinterpretv2si<mode>,
23157         neon_vreinterpretv2sf<mode>, neon_vreinterpretdi<mode>,
23158         neon_vreinterpretti<mode>, neon_vreinterpretv16qi<mode>,
23159         neon_vreinterpretv8hi<mode>, neon_vreinterpretv4si<mode>,
23160         neon_vreinterpretv4sf<mode>, neon_vreinterpretv2di<mode>): Remove.
23161         * config/arm/arm_neon.h (vreinterpret_p8_p16, vreinterpret_p8_f32,
23162         vreinterpret_p8_p64, vreinterpret_p8_s64, vreinterpret_p8_u64,
23163         vreinterpret_p8_s8, vreinterpret_p8_s16, vreinterpret_p8_s32,
23164         vreinterpret_p8_u8, vreinterpret_p8_u16, vreinterpret_p8_u32,
23165         vreinterpret_p16_p8, vreinterpret_p16_f32, vreinterpret_p16_p64,
23166         vreinterpret_p16_s64, vreinterpret_p16_u64, vreinterpret_p16_s8,
23167         vreinterpret_p16_s16, vreinterpret_p16_s32, vreinterpret_p16_u8,
23168         vreinterpret_p16_u16, vreinterpret_p16_u32, vreinterpret_f32_p8,
23169         vreinterpret_f32_p16, vreinterpret_f32_p64, vreinterpret_f32_s64,
23170         vreinterpret_f32_u64, vreinterpret_f32_s8, vreinterpret_f32_s16,
23171         vreinterpret_f32_s32, vreinterpret_f32_u8, vreinterpret_f32_u16,
23172         vreinterpret_f32_u32, vreinterpret_p64_p8, vreinterpret_p64_p16,
23173         vreinterpret_p64_f32, vreinterpret_p64_s64, vreinterpret_p64_u64,
23174         vreinterpret_p64_s8, vreinterpret_p64_s16, vreinterpret_p64_s32,
23175         vreinterpret_p64_u8, vreinterpret_p64_u16, vreinterpret_p64_u32,
23176         vreinterpret_s64_p8, vreinterpret_s64_p16, vreinterpret_s64_f32,
23177         vreinterpret_s64_p64, vreinterpret_s64_u64, vreinterpret_s64_s8,
23178         vreinterpret_s64_s16, vreinterpret_s64_s32, vreinterpret_s64_u8,
23179         vreinterpret_s64_u16, vreinterpret_s64_u32, vreinterpret_u64_p8,
23180         vreinterpret_u64_p16, vreinterpret_u64_f32, vreinterpret_u64_p64,
23181         vreinterpret_u64_s64, vreinterpret_u64_s8, vreinterpret_u64_s16,
23182         vreinterpret_u64_s32, vreinterpret_u64_u8, vreinterpret_u64_u16,
23183         vreinterpret_u64_u32, vreinterpret_s8_p8, vreinterpret_s8_p16,
23184         vreinterpret_s8_f32, vreinterpret_s8_p64, vreinterpret_s8_s64,
23185         vreinterpret_s8_u64, vreinterpret_s8_s16, vreinterpret_s8_s32,
23186         vreinterpret_s8_u8, vreinterpret_s8_u16, vreinterpret_s8_u32,
23187         vreinterpret_s16_p8, vreinterpret_s16_p16, vreinterpret_s16_f32,
23188         vreinterpret_s16_p64, vreinterpret_s16_s64, vreinterpret_s16_u64,
23189         vreinterpret_s16_s8, vreinterpret_s16_s32, vreinterpret_s16_u8,
23190         vreinterpret_s16_u16, vreinterpret_s16_u32, vreinterpret_s32_p8,
23191         vreinterpret_s32_p16, vreinterpret_s32_f32, vreinterpret_s32_p64,
23192         vreinterpret_s32_s64, vreinterpret_s32_u64, vreinterpret_s32_s8,
23193         vreinterpret_s32_s16, vreinterpret_s32_u8, vreinterpret_s32_u16,
23194         vreinterpret_s32_u32, vreinterpret_u8_p8, vreinterpret_u8_p16,
23195         vreinterpret_u8_f32, vreinterpret_u8_p64, vreinterpret_u8_s64,
23196         vreinterpret_u8_u64, vreinterpret_u8_s8, vreinterpret_u8_s16,
23197         vreinterpret_u8_s32, vreinterpret_u8_u16, vreinterpret_u8_u32,
23198         vreinterpret_u16_p8, vreinterpret_u16_p16, vreinterpret_u16_f32,
23199         vreinterpret_u16_p64, vreinterpret_u16_s64, vreinterpret_u16_u64,
23200         vreinterpret_u16_s8, vreinterpret_u16_s16, vreinterpret_u16_s32,
23201         vreinterpret_u16_u8, vreinterpret_u16_u32, vreinterpret_u32_p8,
23202         vreinterpret_u32_p16, vreinterpret_u32_f32, vreinterpret_u32_p64,
23203         vreinterpret_u32_s64, vreinterpret_u32_u64, vreinterpret_u32_s8,
23204         vreinterpret_u32_s16, vreinterpret_u32_s32, vreinterpret_u32_u8,
23205         vreinterpret_u32_u16, vreinterpretq_p8_p16, vreinterpretq_p8_f32,
23206         vreinterpretq_p8_p64, vreinterpretq_p8_p128, vreinterpretq_p8_s64,
23207         vreinterpretq_p8_u64, vreinterpretq_p8_s8, vreinterpretq_p8_s16,
23208         vreinterpretq_p8_s32, vreinterpretq_p8_u8, vreinterpretq_p8_u16,
23209         vreinterpretq_p8_u32, vreinterpretq_p16_p8, vreinterpretq_p16_f32,
23210         vreinterpretq_p16_p64, vreinterpretq_p16_p128, vreinterpretq_p16_s64,
23211         vreinterpretq_p16_u64, vreinterpretq_p16_s8, vreinterpretq_p16_s16,
23212         vreinterpretq_p16_s32, vreinterpretq_p16_u8, vreinterpretq_p16_u16,
23213         vreinterpretq_p16_u32, vreinterpretq_f32_p8, vreinterpretq_f32_p16,
23214         vreinterpretq_f32_p64, vreinterpretq_f32_p128, vreinterpretq_f32_s64,
23215         vreinterpretq_f32_u64, vreinterpretq_f32_s8, vreinterpretq_f32_s16,
23216         vreinterpretq_f32_s32, vreinterpretq_f32_u8, vreinterpretq_f32_u16,
23217         vreinterpretq_f32_u32, vreinterpretq_p64_p8, vreinterpretq_p64_p16,
23218         vreinterpretq_p64_f32, vreinterpretq_p64_p128, vreinterpretq_p64_s64,
23219         vreinterpretq_p64_u64, vreinterpretq_p64_s8, vreinterpretq_p64_s16,
23220         vreinterpretq_p64_s32, vreinterpretq_p64_u8, vreinterpretq_p64_u16,
23221         vreinterpretq_p64_u32, vreinterpretq_p128_p8, vreinterpretq_p128_p16,
23222         vreinterpretq_p128_f32, vreinterpretq_p128_p64, vreinterpretq_p128_s64,
23223         vreinterpretq_p128_u64, vreinterpretq_p128_s8, vreinterpretq_p128_s16,
23224         vreinterpretq_p128_s32, vreinterpretq_p128_u8, vreinterpretq_p128_u16,
23225         vreinterpretq_p128_u32, vreinterpretq_s64_p8, vreinterpretq_s64_p16,
23226         vreinterpretq_s64_f32, vreinterpretq_s64_p64, vreinterpretq_s64_p128,
23227         vreinterpretq_s64_u64, vreinterpretq_s64_s8, vreinterpretq_s64_s16,
23228         vreinterpretq_s64_s32, vreinterpretq_s64_u8, vreinterpretq_s64_u16,
23229         vreinterpretq_s64_u32, vreinterpretq_u64_p8, vreinterpretq_u64_p16,
23230         vreinterpretq_u64_f32, vreinterpretq_u64_p64, vreinterpretq_u64_p128,
23231         vreinterpretq_u64_s64, vreinterpretq_u64_s8, vreinterpretq_u64_s16,
23232         vreinterpretq_u64_s32, vreinterpretq_u64_u8, vreinterpretq_u64_u16,
23233         vreinterpretq_u64_u32, vreinterpretq_s8_p8, vreinterpretq_s8_p16,
23234         vreinterpretq_s8_f32, vreinterpretq_s8_p64, vreinterpretq_s8_p128,
23235         vreinterpretq_s8_s64, vreinterpretq_s8_u64, vreinterpretq_s8_s16,
23236         vreinterpretq_s8_s32, vreinterpretq_s8_u8, vreinterpretq_s8_u16,
23237         vreinterpretq_s8_u32, vreinterpretq_s16_p8, vreinterpretq_s16_p16,
23238         vreinterpretq_s16_f32, vreinterpretq_s16_p64, vreinterpretq_s16_p128,
23239         vreinterpretq_s16_s64, vreinterpretq_s16_u64, vreinterpretq_s16_s8,
23240         vreinterpretq_s16_s32, vreinterpretq_s16_u8, vreinterpretq_s16_u16,
23241         vreinterpretq_s16_u32, vreinterpretq_s32_p8, vreinterpretq_s32_p16,
23242         vreinterpretq_s32_f16, vreinterpretq_s32_f32, vreinterpretq_s32_p64,
23243         vreinterpretq_s32_p128, vreinterpretq_s32_s64, vreinterpretq_s32_u64,
23244         vreinterpretq_s32_s8, vreinterpretq_s32_s16, vreinterpretq_s32_u8,
23245         vreinterpretq_s32_u16, vreinterpretq_s32_u32, vreinterpretq_u8_p8,
23246         vreinterpretq_u8_p16, vreinterpretq_u8_f32, vreinterpretq_u8_p64,
23247         vreinterpretq_u8_p128, vreinterpretq_u8_s64, vreinterpretq_u8_u64,
23248         vreinterpretq_u8_s8, vreinterpretq_u8_s16, vreinterpretq_u8_s32,
23249         vreinterpretq_u8_u16, vreinterpretq_u8_u32, vreinterpretq_u16_p8,
23250         vreinterpretq_u16_p16, vreinterpretq_u16_f32, vreinterpretq_u16_p64,
23251         vreinterpretq_u16_p128, vreinterpretq_u16_s64, vreinterpretq_u16_u64,
23252         vreinterpretq_u16_s8, vreinterpretq_u16_s16, vreinterpretq_u16_s32,
23253         vreinterpretq_u16_u8, vreinterpretq_u16_u32, vreinterpretq_u32_p8,
23254         vreinterpretq_u32_p16, vreinterpretq_u32_f32, vreinterpretq_u32_p64,
23255         vreinterpretq_u32_p128, vreinterpretq_u32_s64, vreinterpretq_u32_u64,
23256         vreinterpretq_u32_s8, vreinterpretq_u32_s16, vreinterpretq_u32_s32,
23257         vreinterpretq_u32_u8, vreinterpretq_u32_u16): Rewrite using casts.
23259 2016-02-04  Martin Liska  <mliska@suse.cz>
23261         PR sanitizer/69276
23262         * asan.c (has_stmt_been_instrumented_p): Instrument gimple calls
23263         that are gimple_store_p.
23264         (maybe_instrument_call): Likewise.
23266 2016-02-04  Bin Cheng  <bin.cheng@arm.com>
23268         * config/aarch64/aarch64.c (aarch64_legitimize_address): Force
23269         register scaling out of memory reference and comment why.
23271 2016-02-04  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
23273         PR target/65932
23274         PR target/67714
23275         * cse.c (cse_insn): Pass NULL to fold_rtx when initially
23276         folding the source of a SET.
23278 2016-02-04  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
23280         PR target/65932
23281         PR target/67714
23282         * config/arm/arm.c (arm_new_rtx_costs, MULT case): Properly extract
23283         the operands of the SIGN_EXTENDs from a SMUL[TB][TB] rtx.
23285 2016-02-04  Jim Wilson  <jim.wilson@linaro.org>
23287         PR target/65932
23288         PR target/67714
23289         * config/arm/arm.h (PROMOTE_MODE): Don't set UNSIGNEDP for QImode and
23290         HImode.
23292 2016-02-04  Christian Bruel  <christian.bruel@st.com>
23294         * config/arm/arm-c.c (arm_reset_previous_fndecl): Style fix and typo.
23295         * config/arm/arm.c (arm_set_current_function): Likewise.
23297 2016-02-04  Jakub Jelinek  <jakub@redhat.com>
23298             Ilya Enkovich  <enkovich.gnu@gmail.com>
23299             H.J. Lu  <hongjiu.lu@intel.com>
23301         PR target/69454
23302         * config/i386/i386.c (convert_scalars_to_vector): Remove
23303         stack alignment fixes.
23304         (ix86_option_override_internal): Disable TARGET_STV if stack
23305         might not be aligned enough.
23306         (ix86_minimum_alignment): Assert that TARGET_STV is false.
23308 2016-02-04  Victoria Stepanyan  <victoria.stepanyan@amd.com>
23310         * config/i386/x86-tune.def: Disable default prefetching
23311         for -march=znver1.
23313 2016-02-03  Michael Meissner  <meissner@linux.vnet.ibm.com>
23314             Vladimir Makarov  <vmakarov@redhat.com>
23316         PR target/69461
23317         * config/rs6000/rs6000.c (rs6000_legitimate_address_p): Fix thinko
23318         in validating fused toc addresses.
23320 2016-02-03  Jakub Jelinek  <jakub@redhat.com>
23322         PR c/69627
23323         * diagnostic-show-locus.c (layout::get_state_at_point): Don't read
23324         range->m_caret fields if range->m_show_caret_p is false.
23326         PR target/69644
23327         * config/rs6000/rs6000.c (rs6000_expand_atomic_compare_and_swap):
23328         Force oldval into register if it does not satisfy reg_or_short_operand
23329         predicate.  Fix up formatting.
23331 2016-02-03  Vladimir Makarov  <vmakarov@redhat.com>
23332             Alexandre Oliva  <aoliva@redhat.com>
23334         PR target/69461
23335         * lra-constraints.c (simplify_operand_subreg): Check additionally
23336         address validity after potential reloading.
23337         (process_address_1): Check insns validity.  In case of failure do
23338         nothing.
23340 2016-02-03  Kirill Yukhin  <kirill.yukhin@intel.com>
23342         PR target/69118
23343         * config/i386/sse.md (define_insn "avx512f_maskcmp<mode>3"):
23344         Fix target.
23346 2016-02-02  Jakub Jelinek  <jakub@redhat.com>
23348         * wide-int.cc (canonize_uhwi): New function.
23349         (wi::divmod_internal): Use it.
23351 2016-02-02  James Norris  <jnorris@codesourcery.com>
23353         * gimplify.c (omp_notice_variable): Add usage check.
23355 2016-02-02  Alexander Monakov  <amonakov@ispras.ru>
23357         * config/nvptx/nvptx.c (nvptx_print_operand): Treat LEU, GEU, LTU, GTU
23358         like LE, GE, LT, GT when emitting relational operator.
23360 2016-02-02  Wilco Dijkstra  <wdijkstr@arm.com>
23362         * ira-costs.c (find_costs_and_classes): Add extra argument.
23363         * target.def (ira_change_pseudo_allocno_class): Add parameter.
23364         * targhooks.h (ira_change_pseudo_allocno_class): Likewise.
23365         * targhooks.c (ira_change_pseudo_allocno_class): Likewise.
23366         * config/aarch64/aarch64.c (aarch64_ira_change_pseudo_allocno_class)
23367         Add best_class parameter, and return it if not ALL_REGS.
23368         * config/mips/mips.c (mips_ira_change_pseudo_allocno_class):
23369         Add parameter.
23370         * doc/tm.texi (TARGET_IRA_CHANGE_PSEUDO_ALLOCNO_CLASS):
23371         Update target hook.
23373 2016-02-02  Wilco Dijkstra  <wdijkstr@arm.com>
23375         * config/aarch64/aarch64.c
23376         (TARGET_IRA_CHANGE_PSEUDO_ALLOCNO_CLASS): New define.
23377         (aarch64_ira_change_pseudo_allocno_class): New function.
23379 2016-02-02  Uros Bizjak  <ubizjak@gmail.com>
23381         PR target/67032
23382         * config/i386/i386.c (geode_cost): Increase cost of MMX and SSE moves.
23384 2016-02-02  Senthil Kumar Selvaraj  <senthil_kumar.selvaraj@atmel.com>
23386         * config/avr/avr.c (avr_option_override): Set
23387         PARAM_ALLOW_STORE_DATA_RACES to 1.
23389 2016-02-02  Richard Biener  <rguenther@suse.de>
23391         PR tree-optimization/69595
23392         * match.pd: Add range test simplifications to true/false.
23394 2016-02-02  Thomas Schwinge  <thomas@codesourcery.com>
23396         * omp-builtins.def (BUILT_IN_GOACC_HOST_DATA): Remove.
23397         * omp-low.c (expand_omp_target): Use BUILT_IN_GOACC_DATA_START
23398         instead.
23400 2016-02-02  Richard Biener  <rguenther@suse.de>
23402         PR tree-optimization/69606
23403         * tree-ssa-math-opts.c (bswap_replace): Clear flow sensitive
23404         info on the result before moving a stmt.
23406 2016-02-02  Yuri Rumyantsev  <ysrumyan@gmail.com>
23408         PR middle-end/68542
23409         * config/i386/i386.c (ix86_expand_branch): Add support for conditional
23410         branch with vector comparison.
23411         * config/i386/sse.md (VI48_AVX): New mode iterator.
23412         (define_expand "cbranch<mode>4): Add support for conditional branch
23413         with vector comparison.
23414         * tree-vect-loop.c (optimize_mask_stores): New function.
23415         * tree-vect-stmts.c (vectorizable_mask_load_store): Initialize
23416         has_mask_store field of vect_info.
23417         * tree-vectorizer.c (vectorize_loops): Invoke optimaze_mask_stores for
23418         vectorized loops having masked stores after vec_info destroy.
23419         * tree-vectorizer.h (loop_vec_info): Add new has_mask_store field and
23420         correspondent macros.
23421         (optimize_mask_stores): Add prototype.
23423 2016-02-02  Alan Modra  <amodra@gmail.com>
23425         PR target/69548
23426         * config/rs6000/predicates.md (quad_int_reg_operand): Don't
23427         allow subregs.
23429 2016-02-02  Alan Modra  <amodra@gmail.com>
23431         PR target/68662
23432         * config/rs6000/rs6000.c (need_toc_init): New var, set it
23433         whenever toc_label_name used.
23434         (rs6000_file_start): Don't set up toc section here,
23435         (rs6000_output_function_epilogue): do so here instead,
23436         (rs6000_xcoff_file_start): and here.
23437         * config/rs6000/rs6000.md (load_toc_aix_si): Set need_toc_init.
23438         (load_toc_aix_di): Likewise.
23440 2016-02-01  Jakub Jelinek  <jakub@redhat.com>
23442         PR rtl-optimization/69592
23443         * rtlanal.c (nonzero_bits_binary_arith_p): New inline function.
23444         (cached_nonzero_bits): Use it instead of ARITHMETIC_P.
23445         (num_sign_bit_copies_binary_arith_p): New inline function.
23446         (cached_num_sign_bit_copies): Use it instead of ARITHMETIC_P.
23448 2016-02-01  Jeff Law  <law@redhat.com>
23450         PR tree-optimization/69580
23451         * params.def (FSM_MAXIMUM_PHI_ARGUMENTS): New param.
23452         * tree-ssa-threadbackward.c
23453         (fsm_find_control_statement_thread_paths): Do not try to walk
23454         through large PHI nodes.
23456 2016-02-01  Jakub Jelinek  <jakub@redhat.com>
23458         * ifcvt.c (bb_ok_for_noce_convert_multiple_sets): Return false
23459         when count is incremented above limit, don't analyze further
23460         insns afterwards.
23462         * omp-low.c (oacc_parse_default_dims): Avoid
23463         -Wsign-compare warning, make sure value fits into int
23464         rather than just unsigned int.
23466 2016-02-01  Bin Cheng  <bin.cheng@arm.com>
23468         PR tree-optimization/67921
23469         * fold-const.c (split_tree): New parameters.  Convert pointer
23470         type variable part to proper type before negating.
23471         (fold_binary_loc): Pass new arguments to split_tree.
23473 2016-02-01  Nathan Sidwell  <nathan@codesourcery.com>
23475         * config/nvptx/nvptx.c (PTX_GANG_DEFAULT): New.
23476         (nvptx_goacc_validate_dims): Extend to handle global defaults.
23477         * target.def (OACC_VALIDATE_DIMS): Extend documentation.
23478         * doc/tm.texti: Rebuilt.
23479         * doc/invoke.texi (fopenacc-dim): Document.
23480         * lto-wrapper.c (merge_and_complain): Add OPT_fopenacc_dim_ case.
23481         (append_compiler_options): Likewise.
23482         * omp-low.c (oacc_default_dims, oacc_min_dims): New.
23483         (oacc_parse_default_dims): New.
23484         (oacc_validate_dims): Add USED arg.  Select non-unity default when
23485         possible.
23486         (oacc_loop_fixed_partitions): Return mask of used partitions.
23487         (oacc_loop_auto_partitions): Emit dump info.
23488         (oacc_loop_partition): Return mask of used partitions.
23489         (execute_oacc_device_lower): Parse default dimension arg.  Adjust
23490         loop partitioning and validation calls.
23492 2016-02-01  Richard Biener  <rguenther@suse.de>
23494         PR middle-end/69556
23495         * match.pd: Guard (C1/X)*C2 -> (C1*C2)/X with single_use.
23497 2016-02-01  Richard Biener  <rguenther@suse.de>
23499         PR tree-optimization/69574
23500         * tree-chrec.c (hide_evolution_in_other_loops_than_loop): Instead
23501         of asserting return chrec_dont_know.
23503 2016-02-01  Martin Liska  <mliska@suse.cz>
23505         * mem-stats-traits.h: Add copyright header.
23506         * mem-stats.h: Likewise.
23508 2016-02-01  Richard Biener  <rguenther@suse.de>
23510         PR tree-optimization/69579
23511         * tree-ssa-loop-ivcanon.c (propagate_constants_for_unrolling):
23512         Do not propagate through abnormal PHI results.
23514 2016-02-01  Eric Botcazou  <ebotcazou@adacore.com>
23516         * postreload.c (reload_cse_simplify): Remove dead code.
23518 2016-02-01  Jakub Jelinek  <jakub@redhat.com>
23520         PR rtl-optimization/69570
23521         * ifcvt.c (bb_ok_for_noce_convert_multiple_sets): Return true only
23522         if there is more than one set, not if there is a single set.
23524 2016-02-01  Richard Henderson  <rth@redhat.com>
23526         PR rtl-opt/69535
23527         * combine.c (make_compound_operation): When looking through a
23528         subreg, make sure to re-extend to the width of the outer mode.
23530 2016-01-30  Jakub Jelinek  <jakub@redhat.com>
23532         PR tree-optimization/69546
23533         * wide-int.cc (wi::divmod_internal): For unsigned division
23534         where both operands fit into uhwi, if o1 is 1 and o0 has
23535         msb set, if divident_prec is larger than bits per hwi,
23536         clear another quotient word and return 2 instead of 1.
23537         Similarly for remainder with msb in HWI set, if dividend_prec
23538         is larger than bits per hwi.
23540 2016-01-29  Martin Jambor  <mjambor@suse.cz>
23542         * hsa-gen.c (get_memory_order_name): Mask with MEMMODEL_BASE_MASK.
23543         Use short lowercase names.
23544         (get_memory_order): Mask with MEMMODEL_BASE_MASK.  Support
23545         MEMMODEL_CONSUME with acquire semantics and MEMMODEL_SEQ_CST with
23546         acq_rel one.  Protect warning agains segfaults if
23547         get_memory_order_name returns NULL.
23548         (gen_hsa_ternary_atomic_for_builtin): Support with MEMMODEL_SEQ_CST
23549         with release semantics.  Do not warn if get_memory_order already did.
23550         (gen_hsa_insns_for_call): Support with MEMMODEL_SEQ_CST with acquire
23551         semantics.  Fix check for relaxed or acquire semantics.  Do not warn
23552         if get_memory_order already did.
23554 2016-01-29  Sebastian Pop  <s.pop@samsung.com>
23556         * doc/install.texi: Document that isl-0.16 is supported.
23558 2016-01-29  Vladimir Makarov  <vmakarov@redhat.com>
23560         PR target/69299
23561         * config/i386/constraints.md (Bm): Describe as special memory
23562         constraint.
23563         * doc/md.texi (DEFINE_SPECIAL_MEMORY_CONSTRAINT): Describe it.
23564         * genoutput.c (main): Process DEFINE_SPECIAL_MEMORY_CONSTRAINT.
23565         * genpreds.c (struct constraint_data): Add is_special_memory.
23566         (have_special_memory_constraints, special_memory_start): New
23567         static vars.
23568         (special_memory_end): Ditto.
23569         (add_constraint): Add new arg is_special_memory.  Add code to
23570         process its true value.  Update have_special_memory_constraints.
23571         (process_define_constraint): Pass the new arg.
23572         (process_define_register_constraint): Ditto.
23573         (choose_enum_order): Process special memory.
23574         (write_tm_preds_h): Generate enum const CT_SPECIAL_MEMORY and
23575         function insn_extra_special_memory_constraint.
23576         (main): Process DEFINE_SPECIAL_MEMORY_CONSTRAINT.
23577         * gensupport.c (process_rtx): Process
23578         DEFINE_SPECIAL_MEMORY_CONSTRAINT.
23579         * ira-costs.c (record_reg_classes): Process CT_SPECIAL_MEMORY.
23580         * ira-lives.c (single_reg_class): Use
23581         insn_extra_special_memory_constraint.
23582         * ira.c (ira_setup_alts): Process CT_SPECIAL_MEMORY.
23583         * lra-constraints.c (process_alt_operands): Ditto.
23584         (curr_insn_transform): Use insn_extra_special_memory_constraint.
23585         * recog.c (asm_operand_ok, preprocess_constraints): Process
23586         CT_SPECIAL_MEMORY.
23587         * reload.c (find_reloads): Ditto.
23588         * rtl.def (DEFINE_SPECIFAL_MEMORY_CONSTRAINT): New.
23589         * stmt.c (parse_input_constraint): Use
23590         insn_extra_special_memory_constraint.
23592 2016-01-29  H.J. Lu  <hongjiu.lu@intel.com>
23594         PR target/69530
23595         * lra-splill.c (lra_final_code_change): Revert r229087 by
23596         removing all sub-registers.
23598 2016-01-29  Steve Ellcey  <sellcey@imgtec.com>
23600         PR target/65604
23601         * config/mips/mips.c (mips_output_division): Check flag_delayed_branch.
23603 2016-01-29  Jakub Jelinek  <jakub@redhat.com>
23605         PR target/69551
23606         * config/i386/i386.c (ix86_expand_vector_set) <case V4SImode>: For
23607         SSE1, copy target into the temporary reg first before recursing
23608         on it.
23610 2016-01-29  H.J. Lu  <hongjiu.lu@intel.com>
23612         * config/i386/sse.md (sse2_cvtps2pd<mask_name>): Replace vBm
23613         with vm.
23615 2016-01-29  Jonathan Wakely  <jwakely@redhat.com>
23617         * ginclude/stdarg.h: Test __cplusplus instead of
23618         __GXX_EXPERIMENTAL_CXX0X__.
23620 2016-01-29  Richard Biener  <rguenther@suse.de>
23622         PR tree-optimization/69547
23623         * tree-ssa-dce.c (mark_aliased_reaching_defs_necessary_1):
23624         Do not mark clobbers necessary.
23625         (mark_all_reaching_defs_necessary_1): Likewise.
23627 2016-01-29  Dominik Vogt  <vogt@linux.vnet.ibm.com>
23629         * config/s390/s390-c.c (s390_resolve_overloaded_builtin): Format
23630         declaration name with %qs and print it in both error messages.
23631         Also fix indentation.
23633 2016-01-29  Dominik Vogt  <vogt@linux.vnet.ibm.com>
23635         PR other/69006
23636         * config/s390/s390-c.c (s390_resolve_overloaded_builtin): Remove
23637         trailing blank line from error message.
23639 2016-01-29  Jonathan Wakely  <jwakely@redhat.com>
23641         PR c++/69462
23642         * ginclude/float.h: Also provide FLT_EVAL_METHOD and DECIMAL_DIG
23643         for C++-11.
23645 2016-01-29  Richard Biener  <rguenther@suse.de>
23647         PR middle-end/69537
23648         * match.pd: Allow all integral types when simplifying a
23649         widening or sign-changing conversion.
23651 2016-01-28  Sebastian Pop  <s.pop@samsung.com>
23653         * graphite-isl-ast-to-gimple.c (get_rename_from_scev): Revert assert
23654         back to setting codegen_error to fail codegen.
23656 2016-01-28  Uros Bizjak  <ubizjak@gmail.com>
23658         PR target/69459
23659         * config/i386/constraints.md (C): Only accept constant zero operand.
23660         (BC): New constraint.
23661         * config/i386/sse.md (*mov<mode>_internal): Use BC constraint
23662         instead of C constraint.
23663         * doc/md.texi (Machine Constraints): Update description
23664         of C constraint.
23666 2016-01-28  Steve Ellcey  <sellcey@imgtec.com>
23668         PR target/68400
23669         * config/mips/mips.c (and_operands_ok): Add MIPS16 check.
23671 2016-01-28  Jakub Jelinek  <jakub@redhat.com>
23673         PR middle-end/69542
23674         * lra-remat.c (calculate_local_reg_remat_bb_data): Only consider
23675         non-debug insns.
23677 2016-01-28  Pat Haugen  <pthaugen@us.ibm.com>
23679         * config/rs6000/rs6000.c (output_cbranch): Don't statically predict
23680         branches if using guessed profile.
23682 2016-01-28  H.J. Lu  <hongjiu.lu@intel.com>
23684         * graphite-optimize-isl.c (optimize_isl): Fix dump.
23686 2016-01-28  Richard Henderson  <rth@redhat.com>
23688         PR target/69305
23689         * config/aarch64/aarch64-modes.def (CC_Cmode): New
23690         * config/aarch64/aarch64-protos.h: Update.
23691         * config/aarch64/aarch64.c (aarch64_zero_extend_const_eq): New.
23692         (aarch64_select_cc_mode): Add check for use of CC_Cmode.
23693         (aarch64_get_condition_code_1): Handle CC_Cmode.
23694         * config/aarch64/aarch64.md (addti3): Use adddi3_compareC.
23695         (*add<mode>3_compareC_cconly_imm): New.
23696         (*add<mode>3_compareC_cconly): New.
23697         (*add<mode>3_compareC_imm): New.
23698         (add<mode>3_compareC): New.
23699         (add<mode>3_carryin, *addsi3_carryin_uxtw): Sort compare operand
23700         to be first.  Use aarch64_carry_operation.
23701         (*add<mode>3_carryin_alt1, *addsi3_carryin_alt1_uxtw): Remove.
23702         (*add<mode>3_carryin_alt2, *addsi3_carryin_alt2_uxtw): Remove.
23703         (*add<mode>3_carryin_alt3, *addsi3_carryin_alt3_uxtw): Remove.
23704         (subti3): Use subdi3_compare1.
23705         (*sub<mode>3_compare0): Rename from sub<mode>3_compare0.
23706         (sub<mode>3_compare1): New.
23707         (*sub<mode>3_carryin0, *subsi3_carryin_uxtw): New.
23708         (*sub<mode>3_carryin): Use aarch64_borrow_operation.
23709         (*subsi3_carryin_uxtw): Likewise.
23710         (*ngc<mode>, *ngcsi_uxtw): Likewise.
23711         (*sub<mode>3_carryin_alt, *subsi3_carryin_alt_uxtw): New.
23712         * config/aarch64/iterators.md (DWI): New.
23713         * config/aarch64/predicates.md (aarch64_carry_operation): New.
23714         (aarch64_borrow_operation): New.
23716 2016-01-28  Abderrazek Zaafrani  <a.zaafrani@samsung.com>
23718         * graphite-optimize-isl.c (optimize_isl): Print a different debug
23719         message when isl does not return a valid schedule.
23721 2016-01-28  Sebastian Pop  <s.pop@samsung.com>
23723         * graphite-isl-ast-to-gimple.c (class translate_isl_ast_to_gimple):
23724         Remove comments from class declarations: they are already in the code
23725         close by the defs.
23727 2016-01-28  Sebastian Pop  <s.pop@samsung.com>
23729         * graphite-isl-ast-to-gimple.c (binary_op_to_tree): Call
23730         codegen_error_p.
23731         (ternary_op_to_tree): Same.
23732         (unary_op_to_tree): Same.
23733         (nary_op_to_tree): Same.
23734         (gcc_expression_from_isl_expr_op): Same.
23735         (gcc_expression_from_isl_expression): Same.
23736         (graphite_create_new_loop): Same.
23737         (graphite_create_new_loop_guard): Same.
23738         (build_iv_mapping): Same.
23739         (graphite_create_new_guard): Same.
23740         (translate_isl_ast_to_gimple::copy_loop_phi_nodes): Same.
23741         (translate_isl_ast_to_gimple::translate_pending_phi_nodes): Same.
23743 2016-01-28  Sebastian Pop  <s.pop@samsung.com>
23745         * graphite-isl-ast-to-gimple.c (get_rename_from_scev): Assert
23746         instead of setting codegen_error to fail codegen.
23748 2016-01-28  Jason Merrill  <jason@redhat.com>
23750         * tree.h (BINFO_FLAG_0): Rename from BINFO_MARKED.
23752 2016-01-28  Wilco Dijkstra  <wdijkstr@arm.com>
23754         * config/aarch64/aarch64.c (aarch64_if_then_else_costs):
23755         Remove CONST_INT_P check in CCMP cost calculation.
23757 2016-01-28  Wilco Dijkstra  <wdijkstr@arm.com>
23759         * config/aarch64/aarch64.c (generic_vector_cost):
23760         Set vec_permute_cost.
23761         (cortexa57_vector_cost): Likewise.
23762         (exynosm1_vector_cost): Likewise.
23763         (xgene1_vector_cost): Likewise.
23764         (aarch64_builtin_vectorization_cost): Use vec_permute_cost.
23765         * config/aarch64/aarch64-protos.h (cpu_vector_cost):
23766         Add vec_permute_cost entry.
23768 2016-01-28  Wilco Dijkstra  <wdijkstr@arm.com>
23770         * config/aarch64/aarch64.md (ccmp<mode>): Disassemble
23771         immediate as %1.
23772         (add<mode>3_compare0): Likewise.
23773         (addsi3_compare0_uxtw): Likewise.
23774         (add<mode>3nr_compare0): Likewise.
23775         (compare_neg<mode>): Likewise.
23776         (<optab><mode>3): Likewise.
23778 2016-01-28  Ilya Enkovich  <enkovich.gnu@gmail.com>
23780         * tree-vect-stmts.c (vectorizable_comparison): Add
23781         NULL check for vectype.
23783 2016-01-28  Richard Biener  <rguenther@suse.de>
23785         PR tree-optimization/69466
23786         * tree-vect-loop-manip.c (slpeel_duplicate_current_defs_from_edges):
23787         Account for PHIs we couldn't duplicate.
23789 2016-01-28  Martin Liska  <mliska@suse.cz>
23791         PR pch/68758
23792         * ggc-common.c (gt_pch_save): Use ENABLE_VALGRIND_ANNOTATIONS macro
23793         instead of ENABLE_VALGRIND_CHECKING.
23795 2016-01-27  Richard Henderson  <rth@redhat.com>
23797         PR rtl-opt/69447
23798         * lra-remat.c (subreg_regs): New.
23799         (dump_candidates_and_remat_bb_data): Dump it.
23800         (operand_to_remat): Reject if operand in subreg_regs.
23801         (set_bb_regs): Collect subreg_regs.
23802         (lra_remat): Init and free subreg_regs.  Compute
23803         calculate_local_reg_remat_bb_data before create_cands.
23805 2016-01-27  H.J. Lu  <hongjiu.lu@intel.com>
23807         PR target/68986
23808         * config/i386/i386.c (ix86_update_stack_boundary): Don't
23809         change stack_alignment_needed for __tls_get_addr call.
23811 2016-01-27  Segher Boessenkool  <segher@kernel.crashing.org>
23813         * config/rs6000/rs6000.c (print_operand): Rollback 's' removal.
23815 2016-01-27  Jeff Law  <law@redhat.com>
23817         PR tree-optimization/68398
23818         PR tree-optimization/69196
23819         * params.def (PARAM_FSM_SCALE_PATH_STMTS): New parameter.
23820         (PARAM_FSM_SCALE_PATH_BLOCKS): Likewise.
23821         * tree-ssa-threadbackward.c (fsm_find_control_statement_thread_paths):
23822         Only count PHIs in the last block in the path.  The others will
23823         const/copy propagate away.  Add heuristic to allow more irreducible
23824         subloops to be created when it is likely profitable to do so.
23826         * tree-ssa-threadbackward.c (fsm_find_control_statement_thread_paths):
23827         Fix typo in comment.  Use gsi_after_labels and remove the GIMPLE_LABEL
23828         check from within the loop.  Use gsi_next_nondebug rather than gsi_next.
23830 2016-01-27  Jakub Jelinek  <jakub@redhat.com>
23832         PR lto/69254
23833         * sanitizer.def: Add BEGIN_SANITIZER_BUILTINS and
23834         END_SANITIZER_BUILTINS markers using DEF_BUILTIN_STUB.
23835         * asan.c (DEF_BUILTIN_STUB): Temporarily define.
23836         * tree-streamer-in.c: Include asan.h.
23837         (streamer_get_builtin_tree): For builtins in sanitizer
23838         range call initialize_sanitizer_builtins and retry.
23840 2016-01-27  Ian Lance Taylor  <iant@google.com>
23842         * common.opt (fkeep-gc-roots-live): New undocumented option.
23843         * tree-ssa-loop-ivopts.c (add_candidate_1): If
23844         -fkeep-gc-roots-live, skip pointers.
23845         (add_iv_candidate_for_biv): Handle add_candidate_1 returning
23846         NULL.
23848 2016-01-27  Uros Bizjak  <ubizjak@gmail.com>
23850         PR target/69512
23851         * config/i386/i386.md (*zext<mode>_doubleword_and): New pattern.
23852         (*zext<mode>_doubleword): Disable for TARGET_ZERO_EXTEND_WITH_AND.
23854 2016-01-27  Thomas Klausner  <wiz@NetBSD.org>
23856         PR target/68380
23857         * configure.ac: NetBSD provides SSP in its C library.
23858         * configure: Updated.
23860 2016-01-27  Richard Biener  <rguenther@suse.de>
23862         PR tree-optimization/69166
23863         * tree-vect-loop.c (vect_is_simple_reduction): Always check
23864         reduction code for commutativity / associativity.
23866 2016-01-27  Martin Jambor  <mjambor@suse.cz>
23868         PR tree-optimization/69355
23869         * tree-sra.c (analyze_access_subtree): Correct hole detection when
23870         total_scalarization fails.
23872 2016-01-27  David Edelsohn  <dje.gcc@gmail.com>
23874         * config/rs6000/driver-rs6000.c (detect_processor_aix): Add
23875         power9.
23877 2016-01-27  Christian Bruel  <christian.bruel@st.com>
23879         PR target/69245
23880         * config/arm/arm-c.c (arm_pragma_target_parse): Add comments.
23881         Move arm_reset_previous_fndecl and set_target_option_current_node in
23882         the conditional part.  Call save_restore_target_globals.
23883         * config/arm/arm.c (arm_set_current_function):
23884         Refactor to better support #pragma target and attribute mix.
23885         Call save_restore_target_globals.
23886         * config/arm/arm-protos.h (save_restore_target_globals): New function.
23888 2016-01-27  Martin Liska  <mliska@suse.cz>
23890         * hsa.c (hsa_summary_t::link_functions): Create IPA_REF_ADDR
23891         reference for an HSA kernel and its host function.
23893 2016-01-27  Jakub Jelinek  <jakub@redhat.com>
23895         PR tree-optimization/69399
23896         * wide-int.h (wi::lrshift): For larger precisions, only
23897         use fast path if shift is known to be < HOST_BITS_PER_WIDE_INT.
23899 2016-01-27  Claudiu Zissulescu  <claziss@synopsys.com>
23901         * config/arc/predicates.md (proper_comparison_operator): Reject
23902         constant-constant comparison.
23904 2016-01-26  Tom de Vries  <tom@codesourcery.com>
23906         PR tree-optimization/69110
23907         * tree-data-ref.c (initialize_data_dependence_relation): Handle
23908         DR_NUM_DIMENSIONS == 0.
23910 2016-01-26  Abderrazek Zaafrani  <a.zaafrani@samsung.com>
23911             Sebastian Pop  <s.pop@samsung.com>
23913         * graphite-isl-ast-to-gimple.c (ternary_op_to_tree): Handle
23914         isl_ast_op_cond and isl_ast_op_select.
23915         (gcc_expression_from_isl_expr_op): Same.
23917 2016-01-26  Jason Merrill  <jason@redhat.com>
23919         PR c++/68782
23920         * tree.c (recompute_constructor_flags): Split out from
23921         build_constructor.
23922         (verify_constructor_flags): New.
23923         * tree.h: Declare them.
23925 2016-01-26  Iain Buclaw  <ibuclaw@gdcproject.org>
23927         PR rtl-optimization/69217
23928         * var-tracking.c (tracked_record_parameter_p): Don't segfault if there
23929         are no TYPE_FIELDS set for the record type.
23931 2016-01-26  Jakub Jelinek  <jakub@redhat.com>
23933         PR target/68662
23934         * config/rs6000/rs6000.c (rs6000_option_override_internal): Initialize
23935         toc_label_name unconditionally.
23936         (rs6000_emit_load_toc_table): Call ggc_strdup on toc_label_name for
23937         SYMBOL_REF string.  Use toc_label_name instead of constructing
23938         LCTOC1.
23939         (rs6000_elf_declare_function_name): Use toc_label_name instead of
23940         constructing LCTOC1.
23942 2016-01-26  Martin Sebor  <msebor@redhat.com>
23944         PR other/69477
23945         * doc/extend.texi (Common Type Attributes): Move text that talks about
23946         attribute packed from attribute aligned to the section discussing
23947         the former attribute for clarity.
23949 2016-01-26  Richard Henderson  <rth@redhat.com>
23951         PR middle-end/60908
23952         * trans-mem.c (tm_region_init): Mark entry block as visited.
23954 2016-01-26  David Malcolm  <dmalcolm@redhat.com>
23956         PR other/69006
23957         * diagnostic-show-locus.c (layout::print_source_line): Replace
23958         call to pp_newline with call to layout::print_newline.
23959         (layout::print_annotation_line): Likewise.
23960         (layout::move_to_column): Likewise.
23961         (layout::print_any_fixits): After printing any fixits, print a
23962         trailing newline, if necessary.
23963         (layout::print_newline): New method, resetting any colorization
23964         before a newline.
23965         (diagnostic_show_locus): Move the pp_newline to before the
23966         early bailout.  Remove dummy block enclosing the layout instance.
23967         * diagnostic.c (default_diagnostic_finalizer): Replace invocation
23968         of pp_newline_and_flush with pp_flush.
23969         (diagnostic_append_note): Delete use of pp_newline.
23970         (diagnostic_append_note_at_rich_loc): Delete.
23971         * diagnostic.h (diagnostic_append_note_at_rich_loc): Delete.
23972         * pretty-print.h (output_buffer_append_r): Reset buff->line_length
23973         when newline characters are added to the buffer.
23975 2016-01-26  Michael Matz  <matz@suse.de>
23977         * configure.ac (ac_cv_std_swap_in_utility): New test.
23978         * system.h (<algorithm>): Check HAVE_SWAP_IN_UTILITY as well.
23979         * configure: Regenerate.
23980         * config.in: Regenerate.
23982 2016-01-26  Claudiu Zissulescu  <claziss@synopsys.com>
23984         * config/arc/arc.md (cstoresi4): Force operand into register.
23985         (arcset<code>): Fix predicate.
23986         (arcsetltu): Likewise.
23987         (arcsetgeu): Likewise.
23988         (arcsethi): Likewise.
23989         (arcsetls): Likewise.
23991 2016-01-26  Jakub Jelinek  <jakub@redhat.com>
23993         PR tree-optimization/69483
23994         * gimple-fold.c (canonicalize_constructor_val): Return NULL
23995         if base has error_mark_node type.
23997 2016-01-26  Christophe Lyon  <christophe.lyon@linaro.org>
23999         PR target/68620
24000         * config/arm/arm.c (neon_valid_immediate): Handle FP16 vectors.
24001         * config/arm/arm_neon.h (__ARM_NUM_LANES, __arm_lane, arm_lanq):
24002         New helper macros.
24003         (vget_lane_f16): Handle big-endian.
24004         (vgetq_lane_f16): Likewise.
24005         (vset_lane_f16): Likewise.
24006         (vsetq_lane_f16): Likewise.
24007         * config/arm/iterators.md (VQXMOV): Add V8HF.
24008         (VDQ): Add V4HF and V8HF.
24009         (V_reg): Handle V4HF and V8HF.
24010         (Is_float_mode): Likewise.
24011         * config/arm/neon.md (movv4hf, movv8hf, neon_vdup_nv4hf,
24012         neon_vdup_nv8hf): New patterns.
24013         (vec_set<mode>_internal, vec_extract<mode>, neon_vld1_dup<mode>):
24014         Use VD_LANE iterator.
24015         (neon_vld1_dup<mode>): Use VQ2 iterator.
24017 2016-01-26  Nathan Sidwell  <nathan@acm.org>
24019         * omp-low.h (oacc_fn_attrib_kernels_p): Declare.
24020         (set_oacc_fn_attrib): Add IS_KERNEL arg.
24021         * omp-low.c (set_oacc_fn_attrib): Add IS_KERNEL arg.
24022         (oacc_fn_attrib_kernels_p, oacc_fn_attrib_level): New.
24023         (expand_omp_target): Pass is_kernel to set_oacc_fn_attrib.
24024         (oacc_validate_dims): Add LEVEL arg, don't return level.
24025         (new_oacc_loop_routine): Use oacc_fn_attrib_level, not
24026         oacc_validate_dims.
24027         (execute_oacc_device_lower): Adjust, add more dump output.
24028         * tree-ssa-loop.c (gate_oacc_kernels): Use
24029         oacc_fn_attrib_kernels_p.
24030         * tree-parloops.c (create_parallel_loop): Adjust
24031         set_oacc_fn_attrib call.
24033 2016-01-26  Jakub Jelinek  <jakub@redhat.com>
24035         PR lto/69254
24036         * lto-wrapper.c (merge_and_complain): Handle -fcilkplus.
24037         (append_compiler_options): Handle -fcilkplus.
24038         (append_linker_options): Ignore -fno-{openmp,openacc,cilkplus}.
24040 2016-01-26  Nick Clifton  <nickc@redhat.com>
24042         PR target/66655
24043         * config/i386/winnt.c (i386_pe_binds_local_p): If a function has
24044         been marked as DECL_ONE_ONLY but we do not the means to make it
24045         so, then do not allow it to bind locally.
24047 2016-01-26  Jakub Jelinek  <jakub@redhat.com>
24049         PR lto/69254
24050         * opts.h (parse_sanitizer_options): New prototype.
24051         * opts.c (sanitizer_opts): New array.
24052         (parse_sanitizer_options): New function.
24053         (common_handle_option): Use parse_sanitizer_options.
24055 2016-01-26  H.J. Lu  <hongjiu.lu@intel.com>
24057         PR target/68986
24058         * config/i386/i386.c (ix86_compute_frame_layout): Move stack
24059         alignment adjustment to ...
24060         (ix86_update_stack_boundary): Here.  Don't over-align stack for
24061         __tls_get_addr.
24062         (ix86_finalize_stack_realign_flags): Use stack_alignment_needed
24063         if __tls_get_addr is called.
24065 2016-01-26  Christian Bruel  <christian.bruel@st.com>
24067         * doc/sourcebuild.texi (arm_crypto_pragma_ok): Remove.
24069 2016-01-26  Eric Botcazou  <ebotcazou@adacore.com>
24071         * config/ia64/ia64.c (ia64_expand_vecint_compare): Use gen_int_mode.
24073 2016-01-26  Richard Biener  <rguenther@suse.de>
24075         PR middle-end/69467
24076         * match.pd: Guard X * CST CMP 0 pattern with single_use.
24078 2016-01-26  Richard Biener  <rguenther@suse.de>
24080         PR tree-optimization/69452
24081         * tree-ssa-loop-im.c (move_computations_dom_walker): Remove.
24082         (move_computations_dom_walker::before_dom_children): Rename
24083         to ...
24084         (move_computations_worker): This.
24085         (move_computations): Perform an RPO rather than a DOM walk.
24087 2016-01-26  Jakub Jelinek  <jakub@redhat.com>
24089         PR target/69442
24090         * combine.c (combine_instructions): For REG_EQUAL note with
24091         SET_DEST being ZERO_EXTRACT, also temporarily set SET_DEST
24092         to the underlying register.
24093         * doc/rtl.texi (REG_EQUAL): Document the behavior of
24094         REG_EQUAL/REG_EQUIV notes if SET_DEST is ZERO_EXTRACT.
24096 2016-01-26  Roger Ferrer Ibáñez  <rofirrim@gmail.com>
24098         PR target/67896
24099         * config/aarch64/aarch64-builtins.c
24100         (aarch64_init_simd_builtin_types): Do not set structural
24101         equality to __Poly{8,16,64,128}_t types.
24103 2016-01-26  Richard Sandiford  <richard.sandiford@arm.com>
24105         PR tree-optimization/69400
24106         * wide-int.cc (wi_pack): Take the precision as argument and
24107         perform canonicalization here rather than in the callers.
24108         Use the main loop to handle all full-width HWIs.  Add a
24109         zero HWI if in_len isn't a full result.
24110         (wi::divmod_internal): Update accordingly.
24111         (wi::mul_internal): Likewise.  Simplify.
24113 2016-01-25  Aditya Kumar  <aditya.k7@samsung.com>
24114             Sebastian Pop  <s.pop@samsung.com>
24116         * graphite-poly.c (apply_poly_transforms): Simplify.
24117         (print_isl_set): Use more readable format: ISL_YAML_STYLE_BLOCK.
24118         (print_isl_map): Same.
24119         (print_isl_union_map): Same.
24120         (print_isl_schedule): New.
24121         (debug_isl_schedule): New.
24122         * graphite-dependences.c (scop_get_reads): Do not call
24123         isl_union_map_add_map that is undocumented isl functionality.
24124         (scop_get_must_writes): Same.
24125         (scop_get_may_writes): Same.
24126         (scop_get_original_schedule): Remove.
24127         (scop_get_dependences): Do not call isl_union_map_compute_flow that
24128         is deprecated in isl 0.15.  Instead, use isl_union_access_* interface.
24129         (compute_deps): Remove.
24130         * graphite-isl-ast-to-gimple.c (print_schedule_ast): New.
24131         (debug_schedule_ast): New.
24132         (translate_isl_ast_to_gimple::scop_to_isl_ast): Call
24133         set_separate_option.
24134         (graphite_regenerate_ast_isl): Add dump.
24135         (translate_isl_ast_to_gimple::scop_to_isl_ast): Generate code
24136         from scop->transformed_schedule.
24137         (graphite_regenerate_ast_isl): Add more dump.
24138         * graphite-optimize-isl.c (optimize_isl): Set
24139         scop->transformed_schedule.  Check whether schedules are equal.
24140         (apply_poly_transforms): Move here.
24141         * graphite-poly.c (apply_poly_transforms): ... from here.
24142         (free_poly_bb): Static.
24143         (free_scop): Static.
24144         (pbb_number_of_iterations_at_time): Remove.
24145         (print_isl_ast): New.
24146         (debug_isl_ast): New.
24147         (debug_scop_pbb): New.
24148         * graphite-scop-detection.c (print_edge): Move.
24149         (print_sese): Move.
24150         * graphite-sese-to-poly.c (build_pbb_scattering_polyhedrons): Remove.
24151         (build_scop_scattering): Remove.
24152         (create_pw_aff_from_tree): Assert instead of bailing out.
24153         (add_condition_to_pbb): Remove unused code, do not fail.
24154         (add_conditions_to_domain): Same.
24155         (add_conditions_to_constraints): Remove.
24156         (build_scop_context): New.
24157         (add_iter_domain_dimension): New.
24158         (build_iteration_domains): Initialize pbb->iterators.
24159         Call add_conditions_to_domain.
24160         (nested_in): New.
24161         (loop_at): New.
24162         (index_outermost_in_loop): New.
24163         (index_pbb_in_loop): New.
24164         (outermost_pbb_in): New.
24165         (add_in_sequence): New.
24166         (add_outer_projection): New.
24167         (outer_projection_mupa): New.
24168         (add_loop_schedule): New.
24169         (build_schedule_pbb): New.
24170         (build_schedule_loop): New.
24171         (embed_in_surrounding_loops): New.
24172         (build_schedule_loop_nest): New.
24173         (build_original_schedule): New.
24174         (build_poly_scop): Call build_original_schedule.
24175         * graphite.h: Declare print_isl_schedule and debug_isl_schedule.
24176         (free_poly_dr): Remove.
24177         (struct poly_bb): Add iterators.  Remove schedule, transformed, saved.
24178         (free_poly_bb): Remove.
24179         (debug_loop_vec): Remove.
24180         (print_isl_ast): Declare.
24181         (debug_isl_ast): Declare.
24182         (scop_do_interchange): Remove.
24183         (scop_do_strip_mine): Remove.
24184         (scop_do_block): Remove.
24185         (flatten_all_loops): Remove.
24186         (optimize_isl): Remove.
24187         (pbb_number_of_iterations_at_time): Remove.
24188         (debug_scop_pbb): Declare.
24189         (print_schedule_ast): Declare.
24190         (debug_schedule_ast): Declare.
24191         (struct scop): Remove schedule.  Add original_schedule,
24192         transformed_schedule.
24193         (free_gimple_poly_bb): Remove.
24194         (print_generated_program): Remove.
24195         (debug_generated_program): Remove.
24196         (unify_scattering_dimensions): Remove.
24197         * sese.c (print_edge): ... here.
24198         (print_sese): ... here.
24199         (debug_edge): ... here.
24200         (debug_sese): ... here.
24201         * sese.h (print_edge): Declare.
24202         (print_sese): Declare.
24203         (dump_edge): Declare.
24204         (dump_sese): Declare.
24206 2016-01-25  Aditya Kumar  <aditya.k7@samsung.com>
24207             Sebastian Pop  <s.pop@samsung.com>
24209         * Makefile.in: Set ISLVER in site.exp.
24211 2016-01-25  Jakub Jelinek  <jakub@redhat.com>
24213         * omp-low.c (lower_omp_target) <case USE_DEVICE_PTR>: Set
24214         DECL_VALUE_EXPR of new_var even for the non-array case.  Look
24215         through DECL_VALUE_EXPR for expansion.
24217 2016-01-25  Bernd Edlinger  <bernd.edlinger@hotmail.de>
24219         * config/mips/mips.c (mips_compute_frame_info): Skip re-computing
24220         the frame info after reload completed.
24222 2016-01-25  Jeff Law  <law@redhat.com>
24224         PR tree-optimization/69196
24225         PR tree-optimization/68398
24226         * tree-ssa-threadupdate.h (enum bb_dom_status): Moved here from
24227         tree-ssa-threadupdate.c.
24228         (determine_bb_domination_status): Prototype
24229         * tree-ssa-threadupdate.c (enum bb_dom_status): Remove
24230         (determine_bb_domination_status): No longer static.
24231         (valid_jump_thread_path): Remove code to detect characteristics
24232         of the jump thread path not associated with correctness.
24233         * tree-ssa-threadbackward.c (fsm_find_control_statment_thread_paths):
24234         Correct test for thread path length.  Count PHIs for real operands as
24235         statements that need to be copied.  Do not count ASSERT_EXPRs.
24236         Look at all the blocks in the thread path.  Compute and selectively
24237         filter thread paths based on threading through the latch, threading
24238         a multiway branch or crossing a multiway branch.
24240 2016-01-25  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
24242         * config/rs6000/rs6000.c (rs6000_keep_leaf_when_profiled):  Add
24243         decl with __attribute__ ((unused)) annotation.
24245 2016-01-25  Ilya Enkovich  <enkovich.gnu@gmail.com>
24247         PR target/69421
24248         * tree-vect-stmts.c (vectorizable_condition): Check vectype
24249         of operands is compatible with a statement vectype.
24251 2016-01-25  Eric Botcazou  <ebotcazou@adacore.com>
24253         * doc/extend.texi (scalar_storage_order type attribute): Fix typo and
24254         improve wording for mixed storage order support.
24256 2016-01-25  Bilyan Borisov  <bilyan.borisov@arm.com>
24258         * config/aarch64/arm_neon.h (vcvt_s64_f64): New intrinsic.
24259         (vcvt_u64_f64): Likewise.
24260         (vcvta_s64_f64): Likewise.
24261         (vcvta_u64_f64): Likewise.
24262         (vcvtm_s64_f64): Likewise.
24263         (vcvtm_u64_f64): Likewise.
24264         (vcvtn_s64_f64): Likewise.
24265         (vcvtn_u64_f64): Likewise.
24266         (vcvtp_s64_f64): Likewise.
24267         (vcvtp_u64_f64): Likewise.
24269 2016-01-25  Claudiu Zissulescu  <claziss@synopsys.com>
24271         * config/arc/arc.c (TARGET_DWARF_REGISTER_SPAN): Define.
24272         (arc_init): Check validity mll64 option.
24273         (arc_save_restore): Use double load/store instruction.
24274         (arc_expand_movmem): Likewise.
24275         (arc_split_move): Don't split if we have double load/store
24276         instructions. Returns a boolean.
24277         (arc_process_double_reg_moves): Change function to return boolean
24278         instead of a sequence of instructions.
24279         (arc_dwarf_register_span): New function.
24280         * config/arc/arc-protos.h (arc_split_move): Change prototype.
24281         * config/arc/arc.h (TARGET_CPU_CPP_BUILTINS): Define __ARC_LL64__.
24282         * config/arc/arc.md (*movdi_insn): Emit ldd/std instructions.
24283         (*movdf_insn): Likewise.
24284         * config/arc/arc.opt (mll64): New option.
24285         * config/arc/predicates.md (even_register_operand): New predicate.
24286         * doc/invoke.texi (ARC Options): Add mll64 documentation.
24288 2016-01-25  Richard Biener  <rguenther@suse.de>
24290         PR lto/69393
24291         * dwarf2out.c (is_naming_typedef_decl): Not when DECL_NAMELESS.
24292         * tree-streamer-out.c (pack_ts_base_value_fields): Stream
24293         DECL_NAMELESS.
24294         * tree-streamer-in.c (unpack_ts_base_value_fields): Likewise.
24296 2016-01-25  Richard Biener  <rguenther@suse.de>
24298         PR tree-optimization/69376
24299         * tree-ssa-sccvn.h (struct vn_ssa_aux): Add range_info_anti_range_p
24300         flag.
24301         (VN_INFO_ANTI_RANGE_P): New inline.
24302         (VN_INFO_RANGE_TYPE): Likewise.
24303         * tree-ssa-sccvn.c (set_ssa_val_to): Also record and copy
24304         SSA_NAME_ANTI_RANGE_P.
24305         (free_scc_vn): Restore SSA_NAME_ANTI_RANGE_P.
24306         * tree-ssa-pre.c (eliminate_dom_walker::before_dom_children):
24307         Properly query VN_INFO_RANGE_TYPE.
24309 2016-01-25  Nick Clifton  <nickc@redhat.com>
24311         PR target/66655
24312         * config/i386/cygming.h (MAKE_DECL_ONE_ONLY): Remove definition.
24314 2016-01-23  Tom de Vries  <tom@codesourcery.com>
24316         PR tree-optimization/69426
24317         * tree-parloops.c (eliminate_local_variables_stmt): Handle vdef of
24318         removed clobber.
24320 2016-01-23  Jakub Jelinek  <jakub@redhat.com>
24322         * tree-ssanames.c (release_free_names_and_compact_live_names): Replace
24323         "the the" with "the" in the comments.
24324         * ipa-devirt.c (build_type_inheritance_graph,
24325         update_type_inheritance_graph): Likewise.
24326         * tree.c (build_function_type_list_1): Likewise.
24327         * cfgloopmanip.c (scale_loop_profile): Likewise.
24328         * tree-ssa-loop-ivopts.c (get_shiftadd_cost): Likewise.
24329         * gimple-ssa-split-paths.c
24330         (find_block_to_duplicate_for_splitting_paths): Likewise.
24331         * tree-sra.c (init_subtree_with_zero, clobber_subtree): Likewise.
24332         * expr.c (convert_move): Likewise.
24333         * var-tracking.c (vt_stack_adjustments): Likewise.
24334         * tree-vect-data-refs.c (vect_enhance_data_refs_alignment): Likewise.
24335         * tree-vrp.c (test_for_singularity): Likewise.
24337         * tree-vect-stmts.c (vectorizable_condition): Build a VEC_COND_EXPR
24338         directly instead of building a temporary tree.
24340         PR bootstrap/69434
24341         * genrecog.c: Define INCLUDE_ALGORITHM before including system.h,
24342         remove <algorithm> include.
24344 2016-01-22  Jakub Jelinek  <jakub@redhat.com>
24346         PR target/69432
24347         * config/i386/i386.c: Include dojump.h.
24348         (expand_small_movmem_or_setmem,
24349         expand_set_or_movmem_prologue_epilogue_by_misaligned_moves): Spelling
24350         fixes.
24351         (ix86_expand_set_or_movmem): Call do_pending_stack_adjust () early
24352         if dynamic_check != -1.
24354 2016-01-21  Jeff Law  <law@redhat.com>
24356         PR middle-end/69347
24357         * tree-ssa-dom.c (back_propagate_equivalences): Factored out of
24358         record_temporary_equivalences.  Rewritten to avoid unnecessary calls
24359         into dominated_by_p.
24360         (cprop_into_successor_phis): Avoid unnecessary tests.
24362 2016-01-22  Richard Henderson  <rth@redhat.com>
24364         PR target/69416
24365         * config/aarch64/aarch64.md (UNSPEC_NZCV): New.
24366         (ccmp<mode>, fccmp<mode>, fccmpe<mode>): Use it.
24368 2016-01-22  Michael Matz  <matz@suse.de>
24370         * system.h (string, algorithm): Include only conditionally.
24371         (new): Include always under C++.
24372         * bb-reorder.c (toplevel): Define INCLUDE_ALGORITHM.
24373         * final.c (toplevel): Ditto.
24374         * ipa-chkp.c (toplevel): Define INCLUDE_STRING.
24375         * genconditions.c (write_header): Make gencondmd.c define
24376         INCLUDE_STRING.
24377         * mem-stats.h (mem_usage::print_dash_line): Don't use std::string.
24379         * config/aarch64/aarch64.c (toplevel): Define INCLUDE_STRING.
24380         * common/config/aarch64/aarch64-common.c (toplevel): Ditto.
24382 2016-01-22  Christian Bruel  <christian.bruel@st.com>
24384         PR target/68674
24385         * expr.c (expand_expr_real_1): Reset DECL_MODE if VECTOR_TYPE_P changed.
24387 2016-01-22  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
24389         PR target/69403
24390         * config/arm/thumb2.md (*thumb2_ior_scc_strict_it): Convert to
24391         define_insn_and_split.  Ensure operands[1] and operands[0] do not
24392         get assigned the same register.
24394 2016-01-22  Kugan Vivekanandarajah  <kuganv@linaro.org>
24396         * ipa-prop.c (ipa_set_jf_constant): Remove redundant unshare_expr.
24398 2016-01-22  Christian Bruel  <christian.bruel@st.com>
24400         * config/arm/arm-c.c (arm_pragma_target_parse):
24401         Remove warn_builtin_macro_redefined overwrite.
24403 2016-01-22  Eric Botcazou  <ebotcazou@adacore.com>
24405         * ipa-inline.c (can_inline_edge_p): Back out overzealous check on
24406         flag_non_call_exceptions compatibility.
24408 2016-01-22  Jakub Jelinek  <jakub@redhat.com>
24410         PR debug/66668
24411         * dwarf2out.c (add_child_die_after): New function.
24412         (dwarf_qual_info_t): New type.
24413         (dwarf_qual_info): New variable.
24414         (qualified_die_p): New function.
24415         (modified_type_die): For -fdebug-types-section, ensure
24416         canonical order of qualifiers.  Put qualified DIEs adjacent
24417         to the corresponding non-qualified type DIE and search there
24418         for existing qualified DIEs.
24420 2016-01-22  Eric Botcazou  <ebotcazou@adacore.com>
24422         * doc/extend.texi (scalar_storage_order type attribute): Document
24423         restriction on type punning and aliasing, and remove future tense.
24425 2016-01-21  Roman Zhuykov  <zhroma@ispras.ru>
24427         PR target/69252
24428         * modulo-sched.c (optimize_sc): Allow branch-scheduling to add a new
24429         first stage.
24431 2016-01-21  Jeff Law  <law@redhat.com>
24433         PR middle-end/69347
24434         * tree-ssa-dom.c (dom_opt_dom_walker::thread_across_edge): Avoid
24435         useless call to record_temporary_equivalences.
24436         * tree-ssa-threadbackward.c (find_jump_threads_backwards): Just
24437         allocate 10 slots in the bb_path vector and let it grow as needed.
24438         (fsm_find_control_statement_thread_paths): Similarly for the next_path
24439         vector.
24441 2016-01-21  David Edelsohn  <dje.gcc@gmail.com>
24443         * configure.ac (gcc_cv_as_powerpc_mfcrf, gcc_cv_as_machine_directive):
24444         Detangle.
24445         * configure: Regenerate.
24447 2016-01-21  Pat Haugen  <pthaugen@us.ibm.com>
24449         * config/rs6000/aix71.h (ASM_CPU_SPEC): Add entry for Power9.
24450         * config/rs6000/driver-rs6000.c (struct asm_names): Likewise.
24452 2016-01-21  Bernd Schmidt  <bschmidt@redhat.com>
24454         PR middle-end/66178
24455         * expr.c (expand_expr_real_2) [PLUS_EXPR, MINUS_EXPR]: Don't
24456         drop EXPAND_INITIALIZER.
24457         * rtl.h (contains_symbolic_reference_p): Declare.
24458         * rtlanal.c (contains_symbolic_reference_p): New function.
24459         * simplify-rtx.c (simplify_binary_operation_1): Don't turn
24460         a subtraction into a NOT if symbolic constants are involved.
24462 2016-01-21  Anton Blanchard  <anton@samba.org>
24463             Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
24465         PR target/63354
24466         * config/rs6000/linux64.h (TARGET_KEEP_LEAF_WHEN_PROFILED): New
24467         #define.
24468         * config/rs6000/rs6000.c (rs6000_keep_leaf_when_profiled): New
24469         function.
24471 2016-01-21  Ajit Agarwal  <ajitkum@xilinx.com>
24473         * config/microblaze/microblaze.c
24474         (get_branch_target): New.
24475         (insert_wic_for_ilb_runout): New.
24476         (insert_wic): New.
24477         (microblaze_machine_dependent_reorg): New.
24478         (TARGET_MACHINE_DEPENDENT_REORG): Define macro.
24479         * config/microblaze/microblaze.md
24480         (UNSPEC_IPREFETCH): Define.
24481         (iprefetch): New pattern
24482         * config/microblaze/microblaze.opt
24483         (mxl-prefetch): New flag.
24485 2016-01-21  Ajit Agarwal  <ajitkum@xilinx.com>
24487         * config/microblaze/microblaze.h
24488         (FIXED_REGISTERS): Update in macro.
24489         (CALL_USED_REGISTERS): Update in macro.
24491 2016-01-21  Yuri Rumyantsev  <ysrumyan@gmail.com>
24493         PR rtl-optimization/68920
24494         * ifcvt.c (cond_move_process_if_block): Limit number of conditional
24495         moves.
24497 2016-01-21  Vladimir Makarov  <vmakarov@redhat.com>
24499         PR rtl-optimization/68990
24500         * lra-coalesce.c (lra_coalesce): Invalidate value for the result
24501         pseudo instead of inheritance ones.
24503 2016-01-21  Bernd Edlinger  <bernd.edlinger@hotmail.de>
24504             Nick Clifton  <nickc@redhat.com>
24506         PR target/69129
24507         PR target/69012
24508         * config/mips/mips.c (mips_compute_frame_info): Initialise
24509         args_size and hard_frame_pointer_offset fields of the frame
24510         structure before calling mips_global_pointer.
24512 2016-01-21  David Edelsohn  <dje.gcc@gmail.com>
24514         * configure.ac (gcc_cv_as_dwloc): Test support for debug frame section
24515         label reference.
24516         * configure: Regenerate.
24518 2016-01-21  Richard Biener  <rguenther@suse.de>
24520         * graphite-optimize-isl.c (get_schedule_map): Fix typo.
24522 2016-01-21  Marcin Kościelnicki  <koriakin@0x04.net>
24524         * config/s390/s390.c (s390_asm_declare_function_size): Add code
24525         to actually emit the .size directive.
24527 2016-01-21   Stefan Sørensen  <stefan.sorensen@spectralink.com>
24528              Jakub Jelinek  <jakub@redhat.com>
24530         PR target/69187
24531         PR target/65624
24532         * config/arm/arm-builtins.c (arm_expand_neon_builtin): Increase
24533         args array size by one to avoid buffer overflow.
24535 2016-01-21  Marcin Kościelnicki  <koriakin@0x04.net>
24537         * config/s390/s390.md (pool_section_start): Use switch_to_section
24538         to select proper read-only data section instead of hardcoding
24539         .rodata.
24540         (pool_section_end): Use switch_to_section to match the above.
24542 2016-01-21  Richard Biener  <rguenther@suse.de>
24544         PR tree-optimization/69378
24545         * tree-ssa-sccvn.c (dominated_by_p_w_unex): New function.
24546         (set_ssa_val_to): Use it for dominance checks taking into
24547         account not executable edges.
24549 2016-01-21  Jakub Jelinek  <jakub@redhat.com>
24551         PR c++/69355
24552         * tree-dfa.c (get_ref_base_and_extent): Use GET_MODE_BITSIZE (mode)
24553         for bitsize instead of GET_MODE_PRECISION (mode).
24555 2016-01-20  Martin Sebor  <msebor@redhat.com>
24557         PR c/52291
24558         * extend.texi (__sync Builtins): Clarify the semantics of
24559         __sync_fetch_and_OP built-ins on pointers.
24560         (__atomic Builtins): Same.
24562 2016-01-21  Aditya Kumar  <aditya.k7@samsung.com>
24563             Sebastian Pop  <s.pop@samsung.com>
24565         * graphite-isl-ast-to-gimple.c (enum phi_node_kind): New.
24566         (class translate_isl_ast_to_gimple): Use phi_node_kind instead of bool.
24567         (is_valid_rename): Same.
24568         (translate_isl_ast_to_gimple::get_rename): Same.
24569         (translate_isl_ast_to_gimple::rename_all_uses): Same.
24570         (translate_isl_ast_to_gimple::rename_uses): Same.
24571         (get_new_name): Check for close_phi nodes.
24572         (copy_loop_phi_args): Use phi_node_kind.
24573         (translate_isl_ast_to_gimple::copy_loop_close_phi_args): Same.
24574         (translate_isl_ast_to_gimple::copy_cond_phi_args): Same.
24576 2016-01-21  Aditya Kumar  <aditya.k7@samsung.com>
24577             Sebastian Pop  <s.pop@samsung.com>
24579         Revert commit r229783.
24580         * graphite-isl-ast-to-gimple.c (gcc_expression_from_isl_ast_expr_id):
24581         Remove use of parameter_rename_map.
24582         (copy_def): Remove.
24583         (copy_internal_parameters): Remove.
24584         (graphite_regenerate_ast_isl): Remove call to copy_internal_parameters.
24585         * sese.c (new_sese_info): Do not initialize parameter_rename_map.
24586         (free_sese_info): Do not free parameter_rename_map.
24587         (set_rename): Do not use parameter_rename_map.
24588         (rename_uses): Update call to set_rename.
24589         (graphite_copy_stmts_from_block): Do not use parameter_rename_map.
24590         * sese.h (parameter_rename_map_t): Remove.
24591         (struct sese_info_t): Remove field parameter_rename_map.
24593 2016-01-21  Aditya Kumar  <aditya.k7@samsung.com>
24594             Sebastian Pop  <s.pop@samsung.com>
24596         * graphite-isl-ast-to-gimple.c: Fix comment.
24597         * graphite-scop-detection.c (defined_in_loop_p): New.
24598         (canonicalize_loop_closed_ssa): Do not add close phi nodes for SSA
24599         names defined in loop.
24601 2016-01-21  Aditya Kumar  <aditya.k7@samsung.com>
24602             Sebastian Pop  <s.pop@samsung.com>
24604         * graphite-scop-detection.c (scop_detection::harmful_loop_in_region):
24605         Discard unstructured if-then-else regions.
24607 2016-01-21  Aditya Kumar  <aditya.k7@samsung.com>
24608             Sebastian Pop  <s.pop@samsung.com>
24610         * graphite-sese-to-poly.c (set_scop_parameter_dim): Remove.
24611         (cleanup_loop_iter_dom): Remove.
24612         (build_loop_iteration_domains): Remove.
24613         (build_scop_context): Remove.
24614         (build_scop_iteration_domain): Remove.
24615         (add_loop_constraints): New.
24616         (build_iteration_domains): New.
24617         (build_poly_scop): Call build_iteration_domains.
24619 2016-01-21  Aditya Kumar  <aditya.k7@samsung.com>
24620             Sebastian Pop  <s.pop@samsung.com>
24622         * graphite-scop-detection.c
24623         (scop_detection::harmful_loop_in_region): Free dom and loops.
24624         (scop_detection::loop_body_is_valid_scop): Free bbs.
24626 2016-01-21  Aditya Kumar  <aditya.k7@samsung.com>
24627             Sebastian Pop  <s.pop@samsung.com>
24629         * graphite-scop-detection.c (record_loop_in_sese): New.
24630         (gather_bbs::before_dom_children): Call record_loop_in_sese.
24631         (build_scops): Remove call to build_sese_loop_nests.
24632         * sese.c (sese_record_loop): Remove.
24633         (build_sese_loop_nests): Remove.
24634         (new_sese_info): Remove region->loops.
24635         (free_sese_info): Same.
24636         * sese.h (sese_contains_loop): Same.
24637         (build_sese_loop_nests): Remove.
24638         (sese_contains_loop): Remove.
24640 2016-01-21  Aditya Kumar  <aditya.k7@samsung.com>
24641             Sebastian Pop  <s.pop@samsung.com>
24643         * graphite-scop-detection.c (loop_is_valid_scop): Renamed
24644         loop_is_valid_in_scop.
24645         (scop_detection::harmful_stmt_in_region): Renamed
24646         harmful_loop_in_region.
24647         Call loop_is_valid_in_scop.
24649 2016-01-21  Aditya Kumar  <aditya.k7@samsung.com>
24650             Sebastian Pop  <s.pop@samsung.com>
24652         * graphite-isl-ast-to-gimple.c (translate_isl_ast): Also handle
24653         isl_ast_node_mark.
24655 2016-01-21  Aditya Kumar  <aditya.k7@samsung.com>
24656             Sebastian Pop  <s.pop@samsung.com>
24658         * graphite-poly.c (new_poly_bb): Remove use of PBB_IS_REDUCTION.
24659         * graphite.h (struct poly_bb): Remove field is_reduction.
24660         (PBB_IS_REDUCTION): Remove.
24662 2016-01-21  Aditya Kumar  <aditya.k7@samsung.com>
24663             Sebastian Pop  <s.pop@samsung.com>
24665         * graphite-dependences.c (constrain_domain): Add call to isl_*_coalesce.
24666         (add_pdr_constraints): Same.
24667         (scop_get_reads): Same.
24668         (scop_get_must_writes): Same.
24669         (scop_get_may_writes): Same.
24670         (scop_get_original_schedule): Same.
24671         (extend_schedule): Same.
24672         (apply_schedule_on_deps): Same.
24673         (carries_deps): Same.
24674         (compute_deps): Same.
24675         (scop_get_dependences): Same.
24676         * graphite-isl-ast-to-gimple.c
24677         (translate_isl_ast_to_gimple::generate_isl_schedule): Same.
24678         * graphite-optimize-isl.c (get_schedule_for_band): Same.
24679         (get_schedule_for_band_list): Same.
24680         (get_schedule_map): Same.
24681         (apply_schedule_map_to_scop): Same.
24682         * graphite-sese-to-poly.c (build_pbb_scattering_polyhedrons): Same.
24683         (build_loop_iteration_domains): Same.
24684         (add_condition_to_pbb): Same.
24685         (add_param_constraints): Same.
24686         (pdr_add_memory_accesses): Same.
24687         (pdr_add_data_dimensions): Same.
24689 2016-01-20  Sandra Loosemore  <sandra@codesourcery.com>
24691         * doc/invoke.texi (Instrumentation Options): Clarify -mmpx linking
24692         requirements.
24694 2016-01-20  Sandra Loosemore  <sandra@codesourcery.com>
24696         * common.opt (feliminate-dwarf2-dups): Replace references to
24697         "DWARF 2" with just "DWARF".
24698         * config/ia64/ia64.opt (mdwarf2-asm): Likewise.
24699         * doc/extend.texi: Likewise.
24700         * doc/cpp.texi: Likewise.
24701         * doc/invoke.texi: Likewise.
24702         (Option Summary): Add -gdwarf to list of Debugging Options.
24703         (Debugging Options): Document -gdwarf.
24704         * doc/contrib.texi: Spell "DWARF" like that.
24706 2016-01-21  Jakub Jelinek  <jakub@redhat.com>
24708         * omp-low.c (expand_omp_target): Avoid -Wmaybe-uninitialized
24709         warning.  Fix up formatting.
24711         PR middle-end/67653
24712         * gimplify.c (gimplify_asm_expr): Warn if it is too late to
24713         attempt to mark memory input operand addressable and
24714         call prepare_gimple_addressable in that case.  Don't adjust
24715         input_location for diagnostics, use error_at instead.
24717 2016-01-20  Peter Bergner  <bergner@vnet.ibm.com>
24719         * config/rs6000/ppc-auxv.h: New file.
24720         * config/rs6000/rs6000-builtin.def (cpu_init): Add new builtin.
24721         (cpu_is): Likewise.
24722         (cpu_supports): Likewise.
24723         * config/rs6000/rs6000.c: include "ppc-auxv.h".
24724         (cpu_is_info): New variable.
24725         (cpu_supports_info): Likewise.
24726         (tcb_verification_symbol): Likewise.
24727         (cpu_builtin_p): Likewise.
24728         (cpu_expand_builtin): New function.
24729         (rs6000_expand_ternop_builtin): Add support for CPU builtin functions.
24730         (rs6000_init_builtins): Likewise.
24731         (rs6000_elf_file_end): Emit HWCAP in TCB verification symbol.
24732         * config/rs6000/rs6000.h (TLS_REGNUM): New define.
24733         * configure.ac (gcc_cv_libc_provides_hwcap_in_tcb): New test.
24734         * configure: Regenerate.
24735         * config.in: Likewise.
24736         * doc/extend.texi (PowerPC Built-in Functions): Document
24737         __builtin_cpu_init, __builtin_cpu_is and __builtin_cpu_supports.
24739 2016-01-20  David Edelsohn  <dje.gcc@gmail.com>
24741         PR target/68609
24742         * config/rs6000/rs6000.c (rs6000_emit_swsqrt): Add vector sqrt
24743         domain check.
24744         * config/rs6000/vector.md (sqrt<mode>2): Call rs6000_emit_swsqrt
24745         for V4SFmode.
24747 2016-01-20  Richard Henderson  <rth@redhat.com>
24749         PR bootstrap/69343
24750         PR bootstrap/69339
24751         PR tree-opt/68964
24752         Revert:
24753         * tree.c (tm_define_builtin): New.
24754         (find_tm_vector_type): New.
24755         (build_tm_vector_builtins): New.
24756         (build_common_builtin_nodes): Call it.
24758 2016-01-20  Christophe Lyon  <christophe.lyon@linaro.org>
24760         * doc/sourcebuild.texi (arm_crypto_pragma_ok): Document new entry.
24761         (arm_fp_ok): Likewise.
24762         (arm_fp): Likewise.
24763         (arm_crypto): Likewise.
24765 2016-01-20  Ilya Enkovich  <enkovich.gnu@gmail.com>
24766             Richard Biener  <rguenther@suse.de>
24768         PR tree-optimization/69328
24769         * tree-vect-stmts.c (vect_is_simple_cond): Check compared
24770         vectors have same number of elements.
24771         (vectorizable_condition): Fix masked version recognition.
24773 2016-01-20  Richard Biener  <rguenther@suse.de>
24775         PR tree-optimization/69345
24776         * tree-ssa-sccvn.h (VN_INFO_RANGE_INFO): New inline function.
24777         (VN_INFO_PTR_INFO): Likewise.
24778         * tree-ssa-sccvn.c (set_ssa_val_to): Avoid clearing points-to
24779         info when it is equal between non-dominating SSA names.
24780         * tree-ssa-pre.c (eliminate_dom_walker::before_dom_children):
24781         Make sure to look at original SSA infos.
24783 2016-01-20  Jeff Law  <law@redhat.com>
24785         PR target/25114
24786         * config/m68k/predicates.md (pow2_m1_operand): New predicate
24787         extracted from ...
24788         (reg_or_pow2_m1_operand): Call pow2_m1_operand.
24789         (pc_or_label_operand): New predicate.
24790         * config/m68k/m68k.md: Add new peephole2 patterns for GTU/LEU
24791         tests for small integers that are 2^n - 1.
24793 2016-01-20  Jonathan Wakely  <jwakely@redhat.com>
24795         * doc/invoke.texi (Options Summary): Add '.' after @xref.
24797 2016-01-19  Jeff Law  <law@redhat.com>
24799         PR middle-end/69347
24800         * tree-ssa-threadbackwards.c
24801         (fsm_find_control_statement_thread_paths): Do not try to lookup
24802         FSM paths for SSA_NAMEs appearing in abnormal PHIs.
24804 2016-01-20  Kugan Vivekanandarajah  <kuganv@linaro.org>
24806         * doc/lto.texi: Remove text that says only Gold has linker plugin
24807         support.
24809 2016-01-19  Eric Botcazou  <ebotcazou@adacore.com>
24811         * dwarf2out.c (need_endianity_attribute_p): New inline predicate.
24812         (base_type_die): Add REVERSE parameter and attach DW_AT_endianity to
24813         the DIE accordingly.
24814         (modified_type_die): Add REVERSE parameter and pass it recursively,
24815         as well as to base_type_die.  Adjust presence check accordingly.
24816         (base_type_for_mode): Adjust call to modified_type_die.
24817         (add_type_attribute): Add REVERSE parameter and pass it to
24818         modified_type_die.
24819         (generic_parameter_die): Adjust call to add_type_attribute.
24820         (add_scalar_info): Likewise.
24821         (add_subscript_info): Likewise.
24822         (gen_array_type_die): Likewise.
24823         (gen_descr_array_type_die): Likewise.
24824         (gen_entry_point_die): Likewise.
24825         (gen_enumeration_type_die): Likewise.
24826         (gen_formal_parameter_die): Likewise.
24827         (gen_subprogram_die): Likewise.
24828         (gen_variable_die ): Likewise.
24829         (gen_const_die): Likewise.
24830         (gen_field_die): Likewise.
24831         (gen_pointer_type_die): Likewise.
24832         (gen_reference_type_die): Likewise.
24833         (gen_ptr_to_mbr_type_die): Likewise.
24834         (gen_inheritance_die): Likewise.
24835         (gen_subroutine_type_die): Likewise.
24836         (gen_typedef_die): Likewise.
24837         (force_type_die): Adjust call to modified_type_die.
24839 2016-01-19  Sandra Loosemore  <sandra@codesourcery.com>
24841         * doc/standards.texi: Copy-editing for grammar, markup, and sentence
24842         flow throughout the file.  Fix broken link to Objective-C 2.0
24843         documentation.
24844         * doc/invoke.texi: More copy-editing; fix numerous typos and spelling
24845         errors.
24847 2016-01-19  Wilco Dijkstra  <wdijkstr@arm.com>
24849         * ccmp.c (expand_ccmp_expr_1): Avoid spurious unused warnings.
24851 2016-01-19  Jan Hubicka  <hubicka@ucw.cz>
24853         PR ipa/66223
24854         * ipa-devirt.c (is_cxa_pure_virtual_p): New function.
24855         (maybe_record_node): Record cxa_pure_virtual as the only possible
24856         target if there are not ohter candidates.
24857         (possible_polymorphic_call_target_p): Accept cxa_pure_virtual.
24859 2016-01-19  Richard Biener  <rguenther@suse.de>
24861         * hsa-gen.c (get_memory_order_name): Use MEMMODEL_ constants.
24862         (get_memory_order): Likewise.
24864 2016-01-19  Kirill Yukhin  <kirill.yukhin@intel.com>
24866         * tree-vect-stmts.c (vectorizable_store): Check
24867         rhs vectype.
24869 2016-01-19  David Malcolm  <dmalcolm@redhat.com>
24871         PR jit/68446
24872         * gcc.c (driver::decode_argv): Add call to
24873         init_opts_obstack before init_options_struct.
24874         * opts.c (init_opts_obstack): Remove idempotency.
24875         (init_options_struct): Replace call to init_opts_obstack
24876         with a gcc_assert to verify that it has already been called.
24877         * toplev.c (toplev::main): Add call to init_opts_obstack before
24878         calls to init_options_struct.
24879         (toplev::finalize): Move cleanup of opts_obstack next to
24880         cleanup of save_decoded_options, clearing the latter, and
24881         save_decoded_options_count.
24883 2016-01-19  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
24885         PR target/69135
24886         * config/arm/vfp.md (l<vrint_pattern><su_optab><mode>si2): Set "conds"
24887         attribute to unconditional.  Remove %? from output template.
24889 2015-01-19  Wilco Dijkstra  <wdijkstr@arm.com>
24890             Jiong Wang  <jiong.wang@arm.com>
24892         * ccmp.c (expand_ccmp_expr_1): Cost the instruction sequences
24893         generated from different expand order.
24895 2015-01-19  Wilco Dijkstra  <wdijkstr@arm.com>
24897         * /config/aarch64/aarch64.c (aarch64_if_then_else_costs):
24898         Add support for CCMP costing.
24900 2015-01-19  Wilco Dijkstra  <wdijkstr@arm.com>
24902         * ccmp.c (ccmp_candidate_p): Remove integer-only restriction.
24903         * config/aarch64/aarch64.md (fccmp<mode>): New pattern.
24904         (fccmpe<mode>): Likewise.
24905         (fcmp): Rename to fcmp and globalize pattern.
24906         (fcmpe): Likewise.
24907         * config/aarch64/aarch64.c (aarch64_gen_ccmp_first): Add FP support.
24908         (aarch64_gen_ccmp_next): Add FP support.
24910 2015-01-19  Wilco Dijkstra  <wdijkstr@arm.com>
24912         * target.def (gen_ccmp_first): Update documentation.
24913         (gen_ccmp_next): Likewise.
24914         * doc/tm.texi (gen_ccmp_first): Update documentation.
24915         (gen_ccmp_next): Likewise.
24916         * ccmp.c (expand_ccmp_expr): Extract cmp_code from return value of
24917         expand_ccmp_expr_1.  Improve comments.
24918         * config/aarch64/aarch64.md (ccmp_and): Use if_then_else for ccmp.
24919         (ccmp_ior<mode>): Remove pattern.
24920         (cmp<mode>): Remove expand.
24921         (cmp): Globalize pattern.
24922         (cstorecc4): Use cc_register.
24923         (mov<mode>cc): Remove ccmp_cc_register check.
24924         * config/aarch64/aarch64.c (aarch64_get_condition_code_1):
24925         Simplify after removal of CC_DNE/* modes.
24926         (aarch64_ccmp_mode_to_code): Remove.
24927         (aarch64_print_operand): Remove 'K' case.  Merge 'm' and 'M' cases.
24928         In 'k' case use integer as condition.
24929         (aarch64_nzcv_codes): Remove inverted cases.
24930         (aarch64_code_to_ccmode): Remove.
24931         (aarch64_gen_ccmp_first): Use cmp pattern directly.  Return the correct
24932         comparison with CC register to be used in folowing CCMP/branch/CSEL.
24933         (aarch64_gen_ccmp_next): Use previous comparison and mode in CCMP
24934         pattern.  Return the comparison with CC register.  Invert conditions
24935         when bitcode is OR.
24936         * config/aarch64/aarch64-modes.def: Remove CC_DNE/* modes.
24937         * config/aarch64/predicates.md (ccmp_cc_register): Remove.
24939 2016-01-19  Jan Hubicka  <hubicka@ucw.cz>
24941         * cgraphunit.c (cgraph_node::reset): Clear thunk info and
24942         instrumented_version.
24944 2016-01-19  Richard Biener  <rguenther@suse.de>
24946         PR tree-optimization/69336
24947         * tree-ssa-scopedtables.c (avail_expr_hash): Handle all
24948         handled components with get_ref_base_and_extent.
24949         (equal_mem_array_ref_p): Adjust.
24951 2016-01-19  Jakub Jelinek  <jakub@redhat.com>
24953         PR debug/65779
24954         * shrink-wrap.c: Include valtrack.h.
24955         (move_insn_for_shrink_wrap): Add DEBUG argument.  If
24956         MAY_HAVE_DEBUG_INSNS, call dead_debug_add on DEBUG_INSNs
24957         in between insn and where it will be moved to.  Call
24958         dead_debug_insert_temp.
24959         (prepare_shrink_wrap): Adjust caller.  Call dead_debug_local_init
24960         first and dead_debug_local_finish at the end.
24961         For uses and defs bitmap, handle all regs in between REGNO and
24962         END_REGNO, not just the first one.
24964 2016-01-19  Richard Biener  <rguenther@suse.de>
24966         PR tree-optimization/69352
24967         * tree-ssa-scopedtables.c (avail_expr_hash): Check for size == -1.
24968         (equal_mem_array_ref_p): Constrain size and max size properly.
24969         Compare the reverse flag.
24971 2016-01-19  Bernd Schmidt  <bschmidt@redhat.com>
24973         * ira.c (ira): Update regstat data if we deleted insns.
24975 2016-01-19  Jakub Jelinek  <jakub@redhat.com>
24977         PR rtl-optimization/68955
24978         PR rtl-optimization/64557
24979         * dse.c (record_store, check_mem_read_rtx): Don't call get_addr
24980         here.  Fix up formatting.
24981         * alias.c (get_addr): Handle VALUE +/- CONST_SCALAR_INT_P.
24983 2016-01-19  Jan Hubicka  <hubicka@ucw.cz>
24985         PR lto/69133
24986         * cgraphunit.c (cgraph_node::expand_thunk): When forcing gimple
24987         assume that the node has body.
24988         * cgraph.c (cgraph_node::get_untransformed_body): Use gimple_body_p
24989         check.
24991 2016-01-19  Jan Hubicka  <hubicka@ucw.cz>
24993         * lto-streamer-out.c (lto_output): Do not stream instrumentation
24994         thunks.
24996 2016-01-19  Jan Hubicka  <hubicka@ucw.cz>
24998         * symtab.c (symtab_node::asm_name): Do not call printable name directly.
24999         (symtab_node::name): Report name as unnamed if DECL_NAME is not set.
25001 2016-01-19  Martin Jambor  <mjambor@suse.cz>
25002             Martin Liska  <mliska@suse.cz>
25003             Michael Matz  <matz@suse.de>
25005         * Makefile.in (OBJS): Add new source files.
25006         (GTFILES): Add hsa.c.
25007         * common.opt (disable_hsa): New variable.
25008         (-Whsa): New warning.
25009         * config.in (ENABLE_HSA): New.
25010         * configure.ac: Treat hsa differently from other accelerators.
25011         (OFFLOAD_TARGETS): Define ENABLE_OFFLOADING according to
25012         $enable_offloading.
25013         (ENABLE_HSA): Define ENABLE_HSA according to $enable_hsa.
25014         * doc/install.texi (Configuration): Document --with-hsa-runtime,
25015         --with-hsa-runtime-include, --with-hsa-runtime-lib and
25016         --with-hsa-kmt-lib.
25017         * doc/invoke.texi (-Whsa): Document.
25018         (hsa-gen-debug-stores): Likewise.
25019         * lto-wrapper.c (compile_images_for_offload_targets): Do not attempt
25020         to invoke offload compiler for hsa acclerator.
25021         * opts.c (common_handle_option): Determine whether HSA offloading
25022         should be performed.
25023         * params.def (PARAM_HSA_GEN_DEBUG_STORES): New parameter.
25024         * builtin-types.def (BT_FN_VOID_UINT_PTR_INT_PTR): New.
25025         (BT_FN_VOID_INT_OMPFN_SIZE_PTR_PTR_PTR_UINT_PTR_INT_INT): Removed.
25026         (BT_FN_VOID_INT_OMPFN_SIZE_PTR_PTR_PTR_UINT_PTR_PTR): New.
25027         * gimple-low.c (lower_stmt): Also handle GIMPLE_OMP_GRID_BODY.
25028         * gimple-pretty-print.c (dump_gimple_omp_for): Also handle
25029         GF_OMP_FOR_KIND_GRID_LOOP.
25030         (dump_gimple_omp_block): Also handle GIMPLE_OMP_GRID_BODY.
25031         (pp_gimple_stmt_1): Likewise.
25032         * gimple-walk.c (walk_gimple_stmt): Likewise.
25033         * gimple.c (gimple_build_omp_grid_body): New function.
25034         (gimple_copy): Also handle GIMPLE_OMP_GRID_BODY.
25035         * gimple.def (GIMPLE_OMP_GRID_BODY): New.
25036         * gimple.h (enum gf_mask): Added GF_OMP_PARALLEL_GRID_PHONY,
25037         GF_OMP_FOR_KIND_GRID_LOOP, GF_OMP_FOR_GRID_PHONY and
25038         GF_OMP_TEAMS_GRID_PHONY.
25039         (gimple_statement_omp_single_layout): Updated comments.
25040         (gimple_build_omp_grid_body): New function.
25041         (gimple_has_substatements): Also handle GIMPLE_OMP_GRID_BODY.
25042         (gimple_omp_for_grid_phony): New function.
25043         (gimple_omp_for_set_grid_phony): Likewise.
25044         (gimple_omp_parallel_grid_phony): Likewise.
25045         (gimple_omp_parallel_set_grid_phony): Likewise.
25046         (gimple_omp_teams_grid_phony): Likewise.
25047         (gimple_omp_teams_set_grid_phony): Likewise.
25048         (gimple_return_set_retbnd): Also handle GIMPLE_OMP_GRID_BODY.
25049         * omp-builtins.def (BUILT_IN_GOMP_OFFLOAD_REGISTER): New.
25050         (BUILT_IN_GOMP_OFFLOAD_UNREGISTER): Likewise.
25051         (BUILT_IN_GOMP_TARGET): Updated type.
25052         * omp-low.c: Include symbol-summary.h, hsa.h and params.h.
25053         (adjust_for_condition): New function.
25054         (get_omp_for_step_from_incr): Likewise.
25055         (extract_omp_for_data): Moved parts to adjust_for_condition and
25056         get_omp_for_step_from_incr.
25057         (build_outer_var_ref): Handle GIMPLE_OMP_GRID_BODY.
25058         (fixup_child_record_type): Bail out if receiver_decl is NULL.
25059         (scan_sharing_clauses): Handle OMP_CLAUSE__GRIDDIM_.
25060         (scan_omp_parallel): Do not create child functions for phony
25061         constructs.
25062         (check_omp_nesting_restrictions): Handle GIMPLE_OMP_GRID_BODY.
25063         (scan_omp_1_op): Checking assert we are not remapping to
25064         ERROR_MARK.  Also also handle GIMPLE_OMP_GRID_BODY.
25065         (parallel_needs_hsa_kernel_p): New function.
25066         (expand_parallel_call): Register apprpriate parallel child
25067         functions as HSA kernels.
25068         (grid_launch_attributes_trees): New type.
25069         (grid_attr_trees): New variable.
25070         (grid_create_kernel_launch_attr_types): New function.
25071         (grid_insert_store_range_dim): Likewise.
25072         (grid_get_kernel_launch_attributes): Likewise.
25073         (get_target_argument_identifier_1): Likewise.
25074         (get_target_argument_identifier): Likewise.
25075         (get_target_argument_value): Likewise.
25076         (push_target_argument_according_to_value): Likewise.
25077         (get_target_arguments): Likewise.
25078         (expand_omp_target): Call get_target_arguments instead of looking
25079         up for teams and thread limit.
25080         (grid_expand_omp_for_loop): New function.
25081         (grid_arg_decl_map): New type.
25082         (grid_remap_kernel_arg_accesses): New function.
25083         (grid_expand_target_kernel_body): New function.
25084         (expand_omp): Call it.
25085         (lower_omp_for): Do not emit phony constructs.
25086         (lower_omp_taskreg): Do not emit phony constructs but create for them
25087         a temporary variable receiver_decl.
25088         (lower_omp_taskreg): Do not emit phony constructs.
25089         (lower_omp_teams): Likewise.
25090         (lower_omp_grid_body): New function.
25091         (lower_omp_1): Call it.
25092         (grid_reg_assignment_to_local_var_p): New function.
25093         (grid_seq_only_contains_local_assignments): Likewise.
25094         (grid_find_single_omp_among_assignments_1): Likewise.
25095         (grid_find_single_omp_among_assignments): Likewise.
25096         (grid_find_ungridifiable_statement): Likewise.
25097         (grid_target_follows_gridifiable_pattern): Likewise.
25098         (grid_remap_prebody_decls): Likewise.
25099         (grid_copy_leading_local_assignments): Likewise.
25100         (grid_process_kernel_body_copy): Likewise.
25101         (grid_attempt_target_gridification): Likewise.
25102         (grid_gridify_all_targets_stmt): Likewise.
25103         (grid_gridify_all_targets): Likewise.
25104         (execute_lower_omp): Call grid_gridify_all_targets.
25105         (make_gimple_omp_edges): Handle GIMPLE_OMP_GRID_BODY.
25106         * tree-core.h (omp_clause_code): Added OMP_CLAUSE__GRIDDIM_.
25107         (tree_omp_clause): Added union field dimension.
25108         * tree-pretty-print.c (dump_omp_clause): Handle OMP_CLAUSE__GRIDDIM_.
25109         * tree.c (omp_clause_num_ops): Added number of arguments of
25110         OMP_CLAUSE__GRIDDIM_.
25111         (omp_clause_code_name): Added name of OMP_CLAUSE__GRIDDIM_.
25112         (walk_tree_1): Handle OMP_CLAUSE__GRIDDIM_.
25113         * tree.h (OMP_CLAUSE_GRIDDIM_DIMENSION): New.
25114         (OMP_CLAUSE_SET_GRIDDIM_DIMENSION): Likewise.
25115         (OMP_CLAUSE_GRIDDIM_SIZE): Likewise.
25116         (OMP_CLAUSE_GRIDDIM_GROUP): Likewise.
25117         * passes.def: Schedule pass_ipa_hsa and pass_gen_hsail.
25118         * tree-pass.h (make_pass_gen_hsail): Declare.
25119         (make_pass_ipa_hsa): Likewise.
25120         * ipa-hsa.c: New file.
25121         * lto-section-in.c (lto_section_name): Add hsa section name.
25122         * lto-streamer.h (lto_section_type): Add hsa section.
25123         * timevar.def (TV_IPA_HSA): New.
25124         * hsa-brig-format.h: New file.
25125         * hsa-brig.c: New file.
25126         * hsa-dump.c: Likewise.
25127         * hsa-gen.c: Likewise.
25128         * hsa.c: Likewise.
25129         * hsa.h: Likewise.
25130         * toplev.c (compile_file): Call hsa_output_brig.
25131         * hsa-regalloc.c: New file.
25133 2016-01-18  Jeff Law  <law@redhat.com>
25135         PR tree-optimization/69320
25136         * tree-ssa-dom.c (record_edge_info): For comparisons against a boolean
25137         ranged object, do nothing if the RHS constant is not [0..1].
25138         (optimize_stmt): Comparing a boolean ranged object against a
25139         constant outside [0..1] results in a compile-time constant.
25141         * tree-ssanames.c (ssa_name_has_boolean_range): Remove unnecessary
25142         test.
25144 2016-01-18  Sandra Loosemore  <sandra@codesourcery.com>
25146         * doc/invoke.texi (Invoking GCC): Add new section to menu.
25147         (Option Summary): Update to reflect new section and moved options.
25148         (C++ Dialect Options): Move -fstats to new section.
25149         (Debugging Options): Move all dump, statistics, and other GCC
25150         developer options to new section.  Rewrite section introduction
25151         and re-order remaining options to put the more basic ones first.
25152         (Optimization Options): Move -fira-verbose and -flto-report* to
25153         new section.
25154         (Developer Options): New section incorporating moved options.
25155         * doc/cppopts.texi (-dM): Update cross-reference.
25157 2016-01-18  Richard Henderson  <rth@redhat.com>
25159         PR target/69176
25160         * config/aarch64/aarch64.md (add<GPI>3): Move long immediate
25161         operands to pseudo only if CSE is expected.  Split long immediate
25162         operands only after reload, and for the stack pointer.
25163         (*add<GPI>3_pluslong): Remove.
25164         (*addsi3_aarch64, *adddi3_aarch64): Merge into...
25165         (*add<GPI>3_aarch64): ... here.  Add r/rk/Upl alternative.
25166         (*addsi3_aarch64_uxtw): Add r/rk/Upl alternative.
25167         (*add<GPI>3 peepholes): New.
25168         (*add<GPI>3 splitters): New.
25169         * config/aarch64/constraints.md (Upl): New.
25170         * config/aarch64/predicates.md (aarch64_pluslong_strict_immedate): New.
25172 2016-01-18  Richard Biener  <rguenther@suse.de>
25174         PR tree-optimization/69297
25175         * tree-vect-slp.c (vect_bb_slp_scalar_cost): Count each scalar
25176         stmt at most once.
25177         (vect_bb_vectorization_profitable_p): Clear visited flag again.
25179 2016-01-18  Yuri Rumyantsev  <ysrumyan@gmail.com>
25181         PR middle-end/68542
25182         * fold-const.c (fold_binary_op_with_conditional_arg): Bail out for case
25183         of mixind vector and scalar types.
25184         (fold_relational_const): Add handling of vector
25185         comparison with boolean result.
25186         * tree-cfg.c (verify_gimple_comparison): Add argument CODE, allow
25187         comparison of vector operands with boolean result for EQ/NE only.
25188         (verify_gimple_assign_binary): Adjust call for verify_gimple_comparison.
25189         (verify_gimple_cond): Likewise.
25190         * tree-vrp.c (extract_code_and_val_from_cond_with_ops): Modify check on
25191         valid type of VAL.
25193 2016-01-18  Joseph Myers  <joseph@codesourcery.com>
25195         * config/mips/mips.h (ISA_HAS_PAIRED_SINGLE): Require
25196         !TARGET_OCTEON.
25198 2016-01-18  Richard Biener  <rguenther@suse.de>
25200         PR middle-end/69308
25201         * gimple.c (gimple_could_trap_p_1): Handle GIMPLE_COND.
25203 2016-01-18  Tom de Vries  <tom@codesourcery.com>
25205         * passes.def: Add pass_parallelize_loops to pass_oacc_kernels.
25207 2016-01-18  Tom de Vries  <tom@codesourcery.com>
25209         * omp-low.c (set_oacc_fn_attrib): Make extern.
25210         * omp-low.h (set_oacc_fn_attrib): Declare.
25211         * tree-parloops.c (struct reduction_info): Add reduc_addr field.
25212         (create_call_for_reduction_1): Handle case that reduc_addr is non-NULL.
25213         (create_parallel_loop, gen_parallel_loop, try_create_reduction_list):
25214         Add and handle function parameter oacc_kernels_p.
25215         (find_reduc_addr, get_omp_data_i_param): New function.
25216         (ref_conflicts_with_region, oacc_entry_exit_ok_1)
25217         (oacc_entry_exit_single_gang, oacc_entry_exit_ok): New function.
25218         (parallelize_loops): Add and handle function parameter oacc_kernels_p.
25219         Calculate dominance info.  Skip loops that are not in a kernels region
25220         in oacc_kernels_p mode.  Skip inner loops of parallelized loops.
25221         (pass_parallelize_loops::execute): Call parallelize_loops with
25222         oacc_kernels_p argument.
25223         (pass_parallelize_loops::clone, pass_parallelize_loops::set_pass_param):
25224         New member function.
25225         (pass_parallelize_loops::bool oacc_kernels_p): New member var.
25226         * passes.def: Add argument to pass_parallelize_loops instantation.
25228 2016-01-18  Tom de Vries  <tom@codesourcery.com>
25230         * tree-parloops.c (pass_parallelize_loops::execute): Allow
25231         pass_parallelize_loops to be run outside the loop pipeline.
25233 2016-01-18  Alan Lawrence  <alan.lawrence@arm.com>
25235         * tree-scalar-evolution.c (follow_copies_to_constant): New.
25236         (analyze_initial_condition, analyze_scalar_evolution_1): Call previous.
25238 2016-01-18  Alan Lawrence  <alan.lawrence@arm.com>
25240         PR target/63679
25241         * tree-ssa-scopedtables.c (avail_expr_hash): Hash MEM_REF and ARRAY_REF
25242         using get_ref_base_and_extent.
25243         (equal_mem_array_ref_p): New.
25244         (hashable_expr_equal_p): Add call to previous.
25246 2016-01-18  Alan Lawrence  <alan.lawrence@arm.com>
25248         PR target/63679
25249         * tree-sra.c (disqualified_constants, constant_decl_p): New.
25250         (sra_initialize): Allocate disqualified_constants.
25251         (sra_deinitialize): Free disqualified_constants.
25252         (disqualify_candidate): Update disqualified_constants when appropriate.
25253         (create_access): Scan for constant-pool entries as we go along.
25254         (scalarizable_type_p): Add check against type_contains_placeholder_p.
25255         (maybe_add_sra_candidate): Allow constant-pool entries.
25256         (load_assign_lhs_subreplacements): Bind debug for constant pool vars.
25257         (initialize_constant_pool_replacements): New.
25258         (sra_modify_assign): Avoid mangling assignments created by previous,
25259         and don't generate writes into constant pool.
25260         (sra_modify_function_body): Call initialize_constant_pool_replacements.
25262 2016-01-18  Ilya Enkovich  <enkovich.gnu@gmail.com>
25264         * config/i386/i386.c (scalar_to_vector_candidate_p): Support
25265         andnot instruction.
25266         (scalar_chain::convert_op): Likewise.
25267         * config/i386/i386.md (*andndi3_doubleword): New.
25269 2016-01-18  Richard Biener  <rguenther@suse.de>
25271         PR tree-optimization/69170
25272         * tree-vect-slp.c (vect_build_slp_tree): Verify we are not
25273         building a vector from scalar results of a pattern stmt.
25275 2016-01-18  Jakub Jelinek  <jakub@redhat.com>
25277         * haifa-sched.c (autopref_multipass_init): Work around
25278         -Wmaybe-uninitialized warning.
25280 2016-01-18  Thomas Preud'homme  <thomas.preudhomme@arm.com>
25282         * config/arm/arm.c (thumb1_reorg): Check that the comparison is
25283         against the constant 0.
25285 2016-01-17  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
25287         PR tree-optimization/68799
25288         * gimple-ssa-strength-reduction.c (create_phi_basis): Directly
25289         look up phi candidates in the statement-candidate map.
25290         (phi_add_costs): Likewise.
25291         (record_phi_increments): Likewise.
25292         (phi_incr_cost): Likewise.
25293         (ncd_with_phi): Likewise.
25294         (all_phi_incrs_profitable): Likewise.
25296 2016-01-17  Jakub Jelinek  <jakub@redhat.com>
25298         * omp-low.c (mark_loops_in_oacc_kernels_region): Work around
25299         -Wmaybe-uninitialized warning.
25301 2016-01-16  Sandra Loosemore  <sandra@codesourcery.com>
25303         * doc/invoke.texi (Invoking GCC): Add new section to menu.
25304         (Option Summary): Update to reflect new section and moved options.
25305         (C++ Dialect Options): Move -fvtable-verify and related options.
25306         (Debugging Options): Move Sanitizer, Pointer Bounds Checker,
25307         and profiling-related options.
25308         (Optimization Options): Move profile generation options and
25309         -fstack-protector and related options.
25310         (Instrumentation Options): New section incorporating moved options.
25311         (Code Generation Options): Move -finstrument-functions and
25312         related options, -fstack-check, -fstack-limit*, and -fbounds-check.
25314 2016-01-16  Tom de Vries  <tom@codesourcery.com>
25316         * passes.def: Move pass_expand_omp_ssa out of pass_parallelize_loops.
25318 2016-01-16  Tom de Vries  <tom@codesourcery.com>
25320         * omp-low.c (expand_omp_atomic_fetch_op):  Release defs of update stmt.
25322 2016-01-16  Richard Sandiford  <richard.sandiford@arm.com>
25324         * hash-table.h (hash_table::empty): Turn into an inline wrapper
25325         that checks whether the table is already empty.  Rename the
25326         original implementation to...
25327         (hash_table::empty_slot): ...this new private function.
25329 2016-01-15  David Malcolm  <dmalcolm@redhat.com>
25331         PR diagnostic/68899
25332         * diagnostic-show-locus.c (layout::print_source_line): Move x
25333         offset of line until after call to
25334         get_line_width_without_trailing_whitespace.
25336 2016-01-15  Jeff Law  <law@redhat.com>
25338         PR tree-optimization/69270
25339         * tree-ssanames.c (ssa_name_has_boolean_range): Moved here from
25340         tree-ssa-dom.c.  Improve test for [0..1] ranve from VRP.
25341         * tree-ssa-dom.c (ssa_name_has_boolean_range): Remove.
25342         * tree-ssanames.h (ssa_name_has_boolean_range): Prototype.
25343         * tree-ssa-uncprop.c (associate_equivalences_with_edges): Use
25344         ssa_name_has_boolean_range and constant_boolean_node.
25346 2016-01-15  Vladimir Makarov  <vmakarov@redhat.com>
25348         PR rtl-optimization/69030
25349         * lra-spills.c (remove_pseudos): Check nrefs and make the function
25350         returning bool.
25351         (spill_pseudos): Delete debug insn for dead pseudo.
25352         (lra_spill): Initiate spill_hard_reg and slots memory separately.
25354 2016-01-15  Jiong Wang  <jiong.wang@arm.com>
25356         * config/aarch64/aarch64-builtins.c (aarch64_types_unopus_qualifiers):
25357         New.
25358         (TYPES_UNOPUS): Likewise.
25359         * config/aarch64/aarch64-simd-builtins.def (lbtruncuv2sf): Correct
25360         builtin type, from UNOP to UNOPUS.
25361         (lbtruncuv4sf): Likewise.
25362         (lbtruncuv2df): Likewise.
25363         (lrounduv2sf): Likewise.
25364         (lrounduv4sf): Likewise.
25365         (lrounduv2df): Likewise.
25366         (lroundusf): Likewise.
25367         (lroundusf): Likewise.
25368         (lceiluv2sf): Likewise.
25369         (lceiluv4sf): Likewise.
25370         (lceiluv2df): Likewise.
25371         (lceilusf): Likewise.
25372         (lceiludf): Likewise.
25373         (lflooruv2sf): Likewise.
25374         (lflooruv4sf): Likewise.
25375         (lflooruv2df): Likewise.
25376         (lfloorusf): Likewise.
25377         (lfloorudf): Likewise.
25378         (lfrintnuv2sf): Likewise.
25379         (lfrintnuv4sf): Likewise.
25380         (lfrintnuv2df): Likewise.
25381         (lfrintnusf): Likewise.
25382         (lfrintnudf): Likewise.
25383         * config/aarch64/arm_neon.h (vcvt_u32_f32): Remove unncessary type
25384         conversion.
25385         (vcvtq_u32_f32): Likewise.
25386         (vcvtq_u64_f64): Likewise.
25387         (vcvta_u32_f32): Likewise.
25388         (vcvtaq_u32_f32): Likewise.
25389         (vcvtaq_u64_f64): Likewise.
25390         (vcvtm_u32_f32): Likewise.
25391         (vcvtmq_u32_f32): Likewise.
25392         (vcvtmq_u64_f64): Likewise.
25393         (vcvtn_u32_f32): Likwise.
25394         (vcvtnq_u32_f32): Likewise.
25395         (vcvtnq_u64_f64): Likewise.
25396         (vcvtp_u32_f32): Likewise.
25397         (vcvtpq_u32_f32): Likewise.
25398         (vcvtpq_u64_f64): Likewise.
25399         (vcvtmd_u64_f64): Likewise.
25400         (vcvtms_u32_f32): Likewise.
25401         (vcvtad_u64_f64): Likewise.
25402         (vcvtas_u32_f32): Likewise.
25403         (vcvtnd_u64_f64): Likewise.
25404         (vcvtns_u32_f32): Likewise.
25405         (vcvtpd_u64_f64): Likewise.
25406         (vcvtps_u32_f32): Likewise.
25408 2016-01-15  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
25410         * config/aarch64/aarch64.c (aarch64_if_then_else_costs): Handle
25411         CSEL of zero_extended registers.
25413 2016-01-15  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
25415         * config/aarch64/aarch64.c (aarch64_rtx_costs, COMPARE case):
25416         Handle COMPARE of ZERO_EXTRACT against zero form of TST-immediate.
25418 2016-01-15  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
25420         * config/aarch64/aarch64.c (aarch64_process_one_target_attr): Return
25421         false when argument string is not found in the attributes table
25422         at all.
25424 2016-01-15  David Edelsohn  <dje.gcc@gmail.com>
25426         PR target/68609
25427         * config/rs6000/rs6000.c (rs6000_emit_msub): Delete.
25428         (rs6000_emit_swsqrt): Convert to Goldschmidt's Algorithm
25429         * config/rs6000/rs6000.md (sqrt<mode>2): Limit swsqrt to high
25430         precision estimate.
25432 2016-01-15  Richard Biener  <rguenther@suse.de>
25434         PR tree-optimization/66856
25435         * tree-vect-loop.c (vect_transform_loop): Free SLP instances here.
25436         * tree-vect-slp.c (vect_free_slp_tree): Decrement stmt reference count.
25437         (vect_create_new_slp_node): Increment stmt reference count.
25438         (vect_get_and_check_slp_defs): Make sure stmts are nor already in
25439         an SLP tree before swapping operands.
25440         (vect_build_slp_tree): Likewise.
25441         (destroy_bb_vec_info): Free stmt info after SLP instances.
25442         * tree-vect-stmts.c (new_stmt_vec_info): Initialize reference count.
25443         * tree-vectorizer.h (struct _stmt_vec_info): Add num_slp_uses field.
25444         (STMT_VINFO_NUM_SLP_USES): New macro.
25446 2016-01-15  Richard Biener  <rguenther@suse.de>
25448         PR debug/69137
25449         * dwarf2out.c (add_linkage_name_raw): New function split out from ...
25450         (add_linkage_name): ... here.
25451         (gen_typedef_die): Use add_linkage_name_raw instead of
25452         add_linkage_attr to delay DECL_ASSEMBLER_NAME computation
25453         if necessary.
25455 2016-01-15  Cesar Philippidis  <cesar@codesourcery.com>
25457         * gimplify.c (oacc_default_clause): Decode reference and pointer
25458         types for both kernels and parallel regions.
25460 2016-01-15  Richard Sandiford  <richard.sandiford@arm.com>
25462         PR middle-end/69246
25463         * calls.c (emit_call_1): Force n_popped to zero for sibcalls.
25465 2016-01-15  Ilya Enkovich  <enkovich.gnu@gmail.com>
25467         * config/i386/i386.c (scalar_chain::compute_convert_gain): Fix typo.
25468         (convert_scalars_to_vector): Likewise.
25470 2016-01-15  Jonathan Wakely  <jwakely@redhat.com>
25472         * doc/extend.texi (Type Traits): Fix grammar.
25474 2016-01-15  Martin Jambor  <mjambor@suse.cz>
25476         * tree-inline.c (remap_decl): Use existing dclarations if
25477         remapping a type and prevent_decl_creation_for_types.
25478         (replace_locals_stmt): Do an initial remapping of non-VLA typed
25479         decls first.  Do real remapping with
25480         prevent_decl_creation_for_types set.
25481         * tree-inline.h (copy_body_data): New field
25482         prevent_decl_creation_for_types, moved remap_var_for_cilk to avoid
25483         padding.
25485 2016-01-15  Dominik Vogt  <vogt@linux.vnet.ibm.com>
25487         * config/s390/s390.opt (mmvcle): More verbose help text.
25489 2016-01-15  Dominik Vogt  <vogt@linux.vnet.ibm.com>
25491         * config/s390/s390.opt: Add period to -mzvector option text.
25493 2016-01-15  Richard Biener  <rguenther@suse.de>
25495         PR tree-optimization/68961
25496         * tree-vect-slp.c (vect_analyze_slp_cost_1): Consider cost
25497         of invariants in stores again.
25499 2016-01-15  Sebastian Huber  <sebastian.huber@embedded-brains.de>
25501         * config/arm/t-rtems: Add cortex-m7/fpv5-d16 multilib.
25503 2016-01-15  Ilya Enkovich  <enkovich.gnu@gmail.com>
25505         * config/i386/i386.c (ix86_expand_branch): Don't split
25506         DI mode xor instruction to SI mode.
25508 2016-01-15  Jan Hubicka  <hubicka@ucw.cz>
25510         PR ipa/68148
25511         * ipa-icf.c (sem_function::merge): Virtual functions may become
25512         reachable even if they address is not taken and there are no
25513         idrect calls.
25515 2016-01-15  Jan Hubicka  <hubicka@ucw.cz>
25517         * lto-streamer-out.c (subtract_estimated_size): New function.
25518         (get_symbol_initial_value): Use it.
25520 2016-01-15  Christian Bruel  <christian.bruel@st.com>
25522         PR target/65837
25523         * config/arm/arm-builtins.c (ARM_BUILTIN_CRYPTO_BASE): New enum tag.
25524         (arm_init_neon_builtins_internal): Rename arm_init_neon_builtins,
25525         (arm_init_crypto_builtins_internal): Rename arm_init_crypto_builtins.
25526         use add_builtin_function_ext_scope instead of add_builtin_function.
25527         (neon_set_p, neon_crypto_set_p): Remove.
25528         (arm_init_builtins): Always call arm_init_neon_builtins and
25529         arm_init_crypto_builtins.
25530         (arm_expand_builtin): Check that builtins are allowed for the arch.
25531         * config/arm/arm-protos.h (arm_init_neon_builtins): Remove prototype.
25532         * config/arm/arm.c (arm_valid_target_attribute_tree): Remove
25533         arm_init_neon_builtins call.
25535 2016-01-15  Richard Biener  <rguenther@suse.de>
25537         PR tree-optimization/69117
25538         * tree-ssa-sccvn.h (struct vn_ssa_aux): Add info member.
25539         * tree-ssa-sccvn.c (set_ssa_val_to): Save and adjust SSA name info
25540         of the leader conservatively.
25541         (free_scc_vn): Restore original SSA name infos.
25543 2016-01-14  Jeff Law  <law@redhat.com>
25545         PR tree-optimization/69270
25546         * tree-ssa-dom.c (ssa_name_has_boolean_range): If the type has a
25547         single bit of precision, verify it's also unsigned.
25548         (record_edge_info): Use constant_boolean_node rather than fold_convert
25549         to convert boolean_true/boolean_false to the right type.
25551 2016-01-14  Richard Henderson  <rth@redhat.com>
25553         PR rtl-opt/69014
25554         * loop-doloop.c (record_reg_sets): New.
25555         (doloop_optimize): Reject the transform if the sequence
25556         clobbers registers live at the end of the loop block.
25557         (doloop_optimize_loops): Enable df_live if needed.
25559 2016-01-14  Michael Meissner  <meissner@linux.vnet.ibm.com>
25561         * config/rs6000/rs6000-builtin.def: Revert 2016-01-13 change.
25562         * config/rs6000/rs6000.c: Likewise.
25563         * config/rs6000/rs6000.h: Likewise.
25564         * config/rs6000/rs6000.md: Likewise.
25565         * doc/extend.texi: Likewsie.
25567 2016-01-14  Jeff Law  <law@redhat.com>
25569         * tree-ssa-dom.c (ssa_name_has_boolean_range): Fix comment
25570         typo.
25572 2016-01-14  Richard Henderson  <rth@redhat.com>
25574         PR c/69272
25575         PR tree-opt/68964
25576         * trans-mem.c (tm_log_emit_stmt): Fix unit size to bit size.
25577         * tree.c (build_tm_vector_builtins): Use builtin_decl_explicit_p
25578         instead of builtin_decl_declared_p to test for declaration.
25580 2016-01-14  Nicklas Bo Jensen  <nbjensen@gmail.com>
25582         * doc/loop.texi (Loop Analysis and Representation): Document
25583         loop_depth function.
25585 2016-01-14  Tom de Vries  <tom@codesourcery.com>
25587         PR tree-optimization/68773
25588         * omp-low.c (expand_omp_target): Don't set force_output.
25589         * varpool.c (varpool_node::get_create): Same.
25590         * lto-cgraph.c (input_offload_tables): Mark entries in offload_vars and
25591         offload_funcs with force_output.
25593 2016-01-14  Jakub Jelinek  <jakub@redhat.com>
25595         PR debug/69244
25596         * lra-eliminations.c (move_plus_up): Don't change anything if either
25597         the outer or inner subreg mode is not MODE_INT.
25598         * dwarf2out.c (mem_loc_descriptor): For SUBREG, if outer mode is
25599         integral <= DWARF2_ADDR_SIZE, convert to untyped afterwards.
25601 2016-01-14  Alan Lawrence  <alan.lawrence@arm.com>
25603         * doc/md.texi (reduc_smin_@var{m}, reduc_smax_@var{m},
25604         reduc_umin_@var{m}, reduc_umax_@var{m}, reduc_splus_@var{m},
25605         reduc_uplus_@var{m}): Remove.
25606         * expr.c (expand_expr_real_2): Remove expansion path for
25607         reduc_[us](min|max|plus) optabs.
25608         * optabs-tree.c (scalar_reduc_to_vector): Remove.
25609         * optabs-tree.h (scalar_reduc_to_vector): Remove.
25610         * optabs.def (reduc_smax_optab, reduc_smin_optab, reduc_splus_optab,
25611         reduc_umax_optab, reduc_umin_optab, reduc_uplus_optab): Remove.
25612         * tree-vect-loop.c (vectorizable_reduction): Remove test for
25613         reduc_[us](min|max|plus) optabs.
25615 2016-01-14  Alan Lawrence  <alan.lawrence@arm.com>
25617         * config/mips/mips-ps-3d.md (reduc_splus_v2sf): Remove.
25618         (reduc_plus_scal_v2sf): New.
25619         (reduc_smax_v2sf): Rename to...
25620         (reduc_smax_scal_v2sf): ...here, make result SFmode, add vec_extract.
25621         (reduc_smin_v2sf): Rename to...
25622         (reduc_smin_scal_v2sf): ...here, make result SFmode, add vec_extract.
25624 2016-01-14  Jan Hubicka  <hubicka@ucw.cz>
25626         * alias.c (compare_base_symbol_refs): New function.
25627         (rtx_equal_for_memref_p, base_alias_check, memrefs_conflict_p): Use
25628         it.
25630 2016-01-14  Jakub Jelinek  <jakub@redhat.com>
25632         PR middle-end/68146
25633         PR tree-optimization/69155
25634         * tree-complex.c: Include cfganal.h.
25635         (phis_to_revisit): New variable.
25636         (extract_component): Add phiarg_p argument.  Assert that returned
25637         SSA_NAME has non-NULL SSA_NAME_DEF_STMT unless phiarg_p is true.
25638         (update_phi_components): Partly rewrite to use loop over real/imag
25639         components instead of code duplication.  If extract_component returns
25640         SSA_NAME with NULL SSA_NAME_DEF_STMT, store SSA_NAME_VAR or
25641         create_tmp_reg into the PHI node instead, and mention the phi triplet
25642         in phis_to_revisit.
25643         (tree_lower_complex): Walk bbs in rpo order.  Adjust phis recorded
25644         in phis_to_revisit at the end.
25646 2016-01-14  Richard Biener  <rguenther@suse.de>
25648         PR tree-optimization/68060
25649         * tree-vect-loop.c (vect_is_simple_reduction): Check the
25650         outer loop reduction is only used in the inner loop before
25651         detecting a double reduction.
25653 2016-01-14  Jakub Jelinek  <jakub@redhat.com>
25655         PR target/68269
25656         * combine.c (expand_field_assignment): Punt if compute_mode is
25657         unsupported scalar mode.
25659 2016-01-14  Richard Biener  <rguenther@suse.de>
25661         PR tree-optimization/66856
25662         * tree-vect-slp.c (vect_build_slp_tree): Refactor to build
25663         SLP node only if it built successfully.
25664         (vect_analyze_slp_instance): Adjust.
25666 2016-01-14  Jeff Law  <law@redhat.com>
25668         PR tree-optimization/69270
25669         * tree-ssa-dom.c (ssa_name_has_boolean_range): New function.
25670         (record_edge_info): Use it.  Convert boolean_{true,false}_node
25671         to the type of op0.
25673 2016-01-13  Jan Hubicka  <hubicka@ucw.cz>
25675         PR ipa/66487
25676         * ipa-polymorphic-call.c (inlined_polymorphic_ctor_dtor_block_p):
25677         use block_ultimate_origin
25678         (noncall-stmt_may_be_vtbl_ptr_store): Likewise.
25680 2016-01-13  Sandra Loosemore  <sandra@codesourcery.com>
25682         * doc/invoke.texi (Submodel Options): Rename section to
25683         "Machine-Dependent Options" to better reflect its content.
25684         Rewrite introductory text to remove archaic CPU names.
25685         Update references.
25687 2016-01-13  Sandra Loosemore  <sandra@codesourcery.com>
25689         * doc/invoke.texi (Code Gen Options): Move section up in file,
25690         before target-specific options.  Update menu and option summary
25691         to reflect the new section ordering.
25693 2016-01-13  Jonathan Wakely  <jwakely@redhat.com>
25695         * doc/invoke.texi (C Dialect Options): Adjust -std default for C++.
25696         (C++ Dialect Options): Add cross-reference to -std option.
25697         * doc/standards.texi (C++ Language): Document C++14 support.
25699 2016-01-13  Michael Meissner  <meissner@linux.vnet.ibm.com>
25701         * config/rs6000/rs6000-builtin.def (BU_FLOAT128_2): Add support
25702         for pack/unpack functions for __ibm128.
25703         (PACK_IF): Likewise.
25704         (UNPACK_IF): Likewise.
25706         * config/rs6000/rs6000.c (rs6000_builtin_mask_calculate): Add
25707         support for __ibm128 pack/unpack functions.
25708         (rs6000_invalid_builtin): Likewise.
25709         (rs6000_init_builtins): Likewise.
25710         (rs6000_opt_masks): Likewise.
25712         * config/rs6000/rs6000.h (MASK_FLOAT128): Add short name.
25713         (RS6000_BTM_FLOAT128): Add support for __ibm128 pack/unpack
25714         functions
25715         (RS6000_BTM_COMMON): Likewise.
25717         * config/rs6000/rs6000.md (f128_vsx): New mode attribute.
25718         (unpack<mode>): Use FMOVE128_FPR iterator instead of FMOVE128, to
25719         disallow __builtin_{pack,unpack}_longdouble if long double is IEEE
25720         128-bit floating point.  Add support for the double values to be
25721         in Altivec registers for TF/IF packing and unpacking, but restrict
25722         TD packing sub-fields to be FPR registers.  Don't allow overlapped
25723         register support for packing.  Allow pack inputs to be memory
25724         locations.  Don't build generator functions for unpack<mode>_dm
25725         and unpack<mode>_nodm.
25726         (unpack<mode>_dm): Likewise.
25727         (unpack<mode>_nodm): Likewise.
25728         (pack<mode>): Likewise.
25730         * config/rs6000/rs6000-builtin.def (__builtin_pack_ibm128): Add
25731         built-in functions to pack/unpack explicit __ibm128 values.
25732         (__builtin_unpack_ibm128): Likewise.
25734         * doc/extend.texi (PowerPC Built-in Functions): Document
25735         __builtin_pack_ibm128 and __builtin_unpack_ibm128.
25737 2016-01-13  Bernd Schmidt  <bschmidt@redhat.com>
25739         PR c/66208
25740         * c-common.c (check_function_nonnull): Remove unnecessary declaration.
25741         Add new arg loc and pass it down as context.
25742         (check_nonnull_arg): Don't mark ctx arg as unused. Use it as a pointer
25743         to the location to use for the warning.
25744         (check_function_arguments): New arg loc.  All callers changed.  Pass
25745         it to check_function_nonnull.
25746         * c-common.h (check_function_arguments): Adjust declaration.
25748 2016-01-13  Jakub Jelinek  <jakub@redhat.com>
25750         PR tree-optimization/69156
25751         * gimple.c (validate_type): Removed.
25752         (gimple_builtin_call_types_compatible_p): Use
25753         useless_type_conversion_p instead of validate_type.
25754         * value-prof.c (gimple_stringop_fixed_value): Fold
25755         icall_size to correct type.
25757 2016-01-13  Jonathan Wakely  <jwakely@redhat.com>
25759         * doc/extend.texi (__atomic Builtins): Clarify compare_exchange
25760         effects.
25762 2016-01-13  Richard Henderson  <rth@redhat.com>
25764         PR tree-opt/68964
25765         * target.def (builtin_tm_load, builtin_tm_store): Remove.
25766         * config/i386/i386.c (ix86_builtin_tm_load): Remove.
25767         (ix86_builtin_tm_store): Remove.
25768         (TARGET_VECTORIZE_BUILTIN_TM_LOAD): Remove.
25769         (TARGET_VECTORIZE_BUILTIN_TM_STORE): Remove.
25770         * doc/tm.texi.in (TARGET_VECTORIZE_BUILTIN_TM_LOAD): Remove.
25771         (TARGET_VECTORIZE_BUILTIN_TM_STORE): Remove.
25772         * doc/tm.texi: Rebuild.
25774         * gtm-builtins.def (BUILT_IN_TM_MEMCPY_RNWT): New.
25775         (BUILT_IN_TM_MEMCPY_RTWN): New.
25776         * trans-mem.c (tm_log_emit_stmt): Rearrange code for better
25777         fallback from vector to integer helpers.
25778         (build_tm_load): Handle vector types directly, instead of
25779         via target hook.
25780         (build_tm_store): Likewise.
25781         (expand_assign_tm): Prepare for register types not handled by
25782         the above.  Copy them to memory and use memcpy.
25783         * tree.c (tm_define_builtin): New.
25784         (find_tm_vector_type): New.
25785         (build_tm_vector_builtins): New.
25786         (build_common_builtin_nodes): Call it.
25788 2016-01-13  Uros Bizjak  <ubizjak@gmail.com>
25790         * config/i386/i386.h (TARGET_FLT_EVAL_METHOD): Return -1 for
25791         TARGET_SSE_MATH without TARGET_SSE2.  Rewrite.
25793 2016-01-13  Tom de Vries  <tom@codesourcery.com>
25795         PR tree-optimization/69169
25796         * tree-ssa-structalias.c (create_variable_info_for_1): Add and handle
25797         handled_struct_type param.
25798         (create_variable_info_for, intra_create_variable_infos): Call
25799         create_variable_info_for_1 with extra arg.
25801 2016-01-13  Yvan Roux  <yvan.roux@linaro.org>
25803         * config/arm/arm-arches.def: Remove spurious whitespace in "armv8.1-a"
25804         and "armv8.1-a+crc" entries.
25806 2016-01-13  Alexander Fomin  <alexander.fomin@intel.com>
25808         PR target/69228
25809         * config/i386/sse.md (define_expand "avx512pf_gatherpf<mode>sf"):
25810         Change first operand predicate from register_or_constm1_operand
25811         to register_operand.
25812         (define_expand "avx512pf_gatherpf<mode>df"): Likewise.
25813         (define_expand "avx512pf_scatterpf<mode>sf"): Likewise.
25814         (define_expand "avx512pf_scatterpf<mode>df"): Likewise.
25815         (define_insn "*avx512pf_gatherpf<mode>sf"): Remove.
25816         (define_insn "*avx512pf_gatherpf<mode>df"): Likewise.
25817         (define_insn "*avx512pf_scatterpf<mode>sf"): Likewise.
25818         (define_insn "*avx512pf_scatterpf<mode>df"): Likewise.
25819         * config/i386/i386.c (ix86_expand_builtin): Remove first operand
25820         comparison with constm1_rtx from vec_prefetch_gen part.
25822 2016-01-13  Richard Biener  <rguenther@suse.de>
25824         PR tree-optimization/69013
25825         * tree-ssa-uninit.c (prune_uninit_phi_opnds_in_unrealizable_paths):
25826         Exchange assert for a test.
25828 2016-01-13  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
25830         PR target/69247
25831         * config/s390/s390.md (bswaphi splitter): Use simplify_gen_subreg.
25833 2016-01-13  Richard Biener  <rguenther@suse.de>
25835         PR tree-optimization/69242
25836         * tree-ssa-sccvn.c (visit_reference_op_load): Replace bogus
25837         assert with a check.
25839 2016-01-13  Richard Biener  <rguenther@suse.de>
25841         PR tree-optimization/69186
25842         * tree-vect-data-refs.c (vect_enhance_data_refs_alignment):
25843         Properly guard vect_update_misalignment_for_peel call.
25845 2016-01-12  Jeff Law  <law@redhat.com>
25847         PR tree-optimization/pr67755
25848         * tree-ssa-threadupdate.c (struct ssa_local_info_t): Add new field
25849         "need_profile_correction".
25850         (thread_block_1): Initialize new field to false by default.  If we
25851         have multiple thread paths through a common joiner to different
25852         final targets, then set new field to true.
25853         (compute_path_counts): Only do count adjustment when it's really
25854         needed.
25856 2016-01-12  Sandra Loosemore  <sandra@codesourcery.com>
25858         * doc/invoke.texi (Spec Files): Move section down in file, past
25859         all command-line option descriptions.
25861 2016-01-12  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
25863         PR middle-end/54809
25864         * doc/gty.texi: Remove documentation of mark_hook.
25865         * gengtype.c (struct write_types_data): Remove code to support
25866         mark_hook attribute.
25867         (walk_type): Likewise.
25868         (write_func_for_structure): Likewise.
25870 2016-01-12  Sandra Loosemore  <sandra@codesourcery.com>
25872         * doc/invoke.texi (Option Summary) Move -no-canonical-prefixes to
25873         Directory Options, and -specs= to Overall Options.
25874         (Overall Options): Adjust similarly.  Reorder to group related
25875         options together.  Make -specs= cross-reference the spec file details.
25876         (Directory Options): Adjust similarly.
25878 2016-01-12  Jeff Law  <law@redhat.com>
25880         * tree-ssa-threadupdate.c: Various whitespace and typo fixes.
25882 2016-01-12  Olivier Hainque  <hainque@adacore.com>
25884         * gcc.c (spec_undefvar_allowed): New global.
25885         (process_command): Set to true when running for --version or --help,
25886         alone or together.
25887         (getenv_spec_function): When the variable is not defined, use the
25888         variable name as the variable value if we're allowed not to issue
25889         a fatal error.
25891 2016-01-12  Bin Cheng  <bin.cheng@arm.com>
25893         PR tree-optimization/68911
25894         * tree-vrp.c (adjust_range_with_scev): Check overflow in range
25895         information computed for expression "init + nit * step".
25897 2016-01-12  Sandra Loosemore  <sandra@codesourcery.com>
25899         * doc/invoke.texi (Invoking GCC): Copy-edit.  Incorporate information
25900         about name of GCC executable.  Remove deleted node from menu.
25901         (Directory Options) <-B>: Remove cross-reference to deleted node.
25902         (Target Options): Delete section.
25904 2016-01-12  Christian Bruel  <christian.bruel@st.com>
25906         PR target/69180
25907         * config/arm/arm-c.c (arm_pragma_target_parse): Set NODE_CONDITIONAL
25908         for __ARM_NEON_FP, __ARM_FP, _ARM_FEATURE_LDREX.
25910 2016-01-12  Jakub Jelinek  <jakub@redhat.com>
25912         PR target/69198
25913         * config/i386/i386.c (ix86_expand_special_args_builtin): Ensure
25914         aligned_mem is properly set for AVX512-VL floating point masked
25915         stores.
25917         PR target/69175
25918         * ifcvt.c (cond_exec_process_if_block): When removing the last
25919         insn from then_bb, remove also any possible barriers that follow it.
25921 2016-01-12  H.J. Lu  <hongjiu.lu@intel.com>
25923         PR target/68456
25924         PR target/69226
25925         * config/i386/iamcu.h (SIZE_TYPE): New macro.
25926         (PTRDIFF_TYPE): Likewise.
25927         (WCHAR_TYPE): Likewise.
25928         (WCHAR_TYPE_SIZE): Likewise.
25929         (STDINT_LONG32): Likewise.
25931 2016-01-12  Richard Biener  <rguenther@suse.de>
25933         PR tree-optimization/69053
25934         * tree-vect-loop.c (get_initial_def_for_reduction): Properly
25935         convert initial value for cond reductions.
25937 2016-01-12  Richard Biener  <rguenther@suse.de>
25939         PR tree-optimization/69007
25940         * tree-vect-patterns.c (vect_vect_recog_func_ptrs): Move
25941         widen_sum after dot_prod and sad.
25943 2016-01-12  Richard Biener  <rguenther@suse.de>
25945         PR tree-optimization/69168
25946         * tree-vect-loop.c (vect_analyze_loop_2): Reset both main and
25947         pattern stmt SLP type.
25948         * tree-vect-slp.c (vect_detect_hybrid_slp_stmts): Patterns may
25949         end up unused so cope with that case.
25951 2016-01-12  Richard Biener  <rguenther@suse.de>
25953         PR tree-optimization/69157
25954         * tree-vect-stmts.c (vectorizable_mask_load_store): Check
25955         stmts def type only during analyze phase.
25956         (vectorizable_call): Likewise.
25957         (vectorizable_simd_clone_call): Likewise.
25958         (vectorizable_conversion): Likewise.
25959         (vectorizable_assignment): Likewise.
25960         (vectorizable_shift): Likewise.
25961         (vectorizable_operation): Likewise.
25962         (vectorizable_store): Likewise.
25963         (vectorizable_load): Likewise.
25965 2016-01-12  Richard Biener  <rguenther@suse.de>
25967         PR tree-optimization/69174
25968         * tree-vect-stmts.c (vect_mark_relevant): Remove excessive vertical
25969         space.
25970         (vectorizable_load): Properly compute the number of loads needed
25971         for permuted strided SLP loads and do not spuriously assign
25972         to SLP_TREE_VEC_STMTS.
25974 2016-01-12  Andris Pavenis  <andris.pavenis@iki.fi>
25976         * config/i386/djgpp.h (PREFERRED_DEBUGGING_TYPE): Define to DWARF2
25977         (TARGET_ASM_OUTPUT_IDENT): Define to default_asm_output_ident_directive
25978         (MD_EXEC_PREFIX): Remove.
25979         (MD_STARTFILE_PREFIX) Removee.
25980         (FILE_NAME_ABSOLUTE_P): Remove.
25981         (CPP_SPEC): Do not read macros from sys/version.h.
25982         (LINK_COMMAND_SPEC): Remove.
25983         (LOCAL_INCLUDE_DIR): Remove.
25984         (TARGET_ASM_NAMED_SECTION): Define to i386_djgpp_asm_named_section
25985         (TARGET_OS_CPP_BUILTINS): Add DJGPP (non ISO only), __DJGPP, __DJGPP__, unix.
25986         (POST_LINK_SPEC): Define to invoke stubify after linker
25987         (LIBSTDCXX): Remove define
25988         (DBX_REGISTER_NUMBER): Define to svr4_dbx_register_map.
25989         (DEFAULT_PCC_STRUCT_RETURN): Define to 1.
25990         (SUBTARGET_OVERRIDE_OPTIONS): Remove warning about -mbnu2210.
25991         (SUBTARGET_OVERRIDE_OPTIONS): Ignore -fPIC and generate message.
25992         (SUBTARGET_OVERRIDE_OPTIONS): Default to DWARF2 debugging info.
25993         (IX86_MAYBE_NO_LIBGCC_TFMODE): Remove.
25994         (i386_djgpp_asm_named_section): Add propotype of new procedure
25996         * config/i386/xm-djgpp.h (NATIVE_SYSTEM_HEADER_DIR): Define.
25997         (MD_EXEC_PREFIX): Define (moved from config/i386/djgpp.h).
25998         (STANDARD_STARTFILE_PREFIX_1): Define (moved from MD_STARTFILE_PREFIX
25999         in config/i386/djgpp.h).
26000         (STANDARD_STARTFILE_PREFIX_2): Define identical to
26001         STANDARD_STARTFILE_PREFIX_1.
26002         (LOCAL_INCLUDE_DIR): Define (moved from config/i386/djgpp.h).
26003         (GCC_DRIVER_HOST_INITIALIZATION): Fix reporting fatal
26004         installation errors.
26005         (MAX_OFILE_ALIGNMENT): Define to 128.
26006         (HAVE_FTW_H): Undefine as DJGPP do not have nftw, but have ftw.h.
26008         * config/i386/djgpp.c: New file. Add implementation of
26009         i386_djgpp_asm_named_section.
26011         * config/i386/djgpp.opt: Remove obsolete option -mbnu210.
26013         * config/i386/t-djgpp: New file. Add djgpp.o to EXTRA_OBJS.
26014         Add rule for building djgpp.o.
26016 2016-01-11  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
26018         * config/rs6000/rs6000.c (v2df_reduction_p): New function.
26019         (rtx_is_swappable_p): Reductions are swappable.
26020         (insn_is_swappable_p): V2DF reductions are swappable.
26022 2016-01-11  John David Anglin  <danglin@gcc.gnu.org>
26024         * config/pa/pa.c (pa_emit_move_sequence): Handle floating point
26025         reloads for other unsupported memory operands.
26027 2016-01-12  Kugan Vivekanandarajah  <kuganv@linaro.org>
26028             Jim Wilson  <jim.wilson@linaro.org>
26030         PR target/69194
26031         * config/arm/arm-builtins.c (arm_expand_neon_args): Call
26032         copy_to_mode_reg instead of force_reg.
26034 2016-01-11  H.J. Lu  <hongjiu.lu@intel.com>
26036         PR target/69225
26037         * config/i386/i386.h (TARGET_FLT_EVAL_METHOD): Set to 2 only if
26038         TARGET_80387 is true.
26040 2016-01-11  Jakub Jelinek  <jakub@redhat.com>
26042         PR target/69071
26043         * lra-eliminations.c (move_plus_up): Only move plus up
26044         if subreg of the constant can be simplified into constant
26045         and use the simplified subreg of the constant instead of
26046         the original constant.
26048         * fold-const.c (fold_convertible_p): Don't return true
26049         for conversion of VECTOR_TYPE to same sized integral type.
26050         (fold_convert_loc): Fix up formatting.  Fold conversion of
26051         VECTOR_TYPE to same sized integral type using VIEW_CONVERT_EXPR
26052         instead of NOP_EXPR.
26054         PR tree-optimization/69214
26055         * tree-vrp.c (simplify_cond_using_ranges): Don't propagate
26056         innerop into a comparison if SSA_NAME_OCCURS_IN_ABNORMAL_PHI.
26057         Formatting fix.
26059         PR tree-optimization/69207
26060         * tree-vect-slp.c (vect_get_constant_vectors): For
26061         VECTOR_BOOLEAN_TYPE_P, assert op has integral type instead of
26062         fold_convertible_p to vector_type's element type, and always
26063         use VCE for non-VECTOR_BOOLEAN_TYPE_P.
26065 2016-01-11  Richard Biener  <rguenther@suse.de>
26067         PR tree-optimization/69173
26068         * tree-vect-loop.c (vect_fixup_scalar_cycles_with_patterns): Only
26069         fixup the cycle if all stmts are in a pattern.
26071 2016-01-11  Uros Bizjak  <ubizjak@gmail.com>
26073         PR middle-end/68999
26074         * alias.c (base_alias_check): Move check for addresses with
26075         alignment ANDs before the call for compare_base_decls.
26076         (memrefs_conflict_p): Return -1 for different decls
26077         that went through alignment adjustments.
26079 2016-01-11  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
26081         PR rtl-optimization/68796
26082         * config/aarch64/aarch64.md (*and<mode>_compare0): New pattern.
26083         * config/aarch64/aarch64.c (aarch64_select_cc_mode): Handle HImode
26084         and QImode comparisons against zero with CC_NZmode.
26085         * config/aarch64/iterators.md (short_mask): New mode_attr.
26087 2016-01-11  H.J. Lu  <hongjiu.lu@intel.com>
26089         * config/i386/sse.md (<avx512>_load<mode>_mask): Remove snprintf.
26090         (<avx512>_store<mode>_mask): Likewise.
26092 2016-01-11  Bernd Schmidt  <bschmidt@redhat.com>
26093             Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
26095         PR rtl-optimization/68841
26096         * ifcvt.c (struct noce_if_info): Add orig_x field.
26097         (bbs_ok_for_cmove_arith): Add to_rename parameter.
26098         Don't record conflicts on to_rename if it's present.
26099         Allow memory destinations in sets.
26100         (noce_try_cmove_arith): Call bbs_ok_for_cmove_arith even on simple
26101         blocks, passing orig_x to the checks.
26102         (noce_process_if_block): Set if_info->orig_x appropriately.
26104 2016-01-11  Tom de Vries  <tom@codesourcery.com>
26106         PR tree-optimization/69069
26107         * tree-parloops.c (create_parallel_loop): Add missing phi args.
26109 2016-01-11  Yuri Rumyantsev  <ysrumyan@gmail.com>
26111         PR rtl-optimization/68920
26112         * config/i386/i386.c (ix86_option_override_internal): Restrict number
26113         of conditional moves for  RTL if-conversion to 1 for
26114         TARGET_ONE_IF_CONV_INSN.
26115         * config/i386/i386.h (TARGET_ONE_IF_CONV_INSN): New macros.
26116         * config/i386/x86-tune.def (X86_TUNE_ONE_IF_CONV_INSN): New macros.
26117         * params.def (PARAM_MAX_RTL_IF_CONVERSION_INSNS) : Introduce new
26118         parameter to restirct number of conditional moves for
26119         RTL if-conversion.
26120         * doc/invoke.texi (max-rtl-if-conversion-insns): Document it.
26121         * ifcvt.c (bb_ok_for_noce_convert_multiple_sets): Limit number of
26122         conditionl moves.
26124 2016-01-11  Alexandre Oliva  <aoliva@redhat.com>
26126         PR bootstrap/69123
26127         * var-tracking.c (drop_overlapping_mem_locs): Operate on all
26128         onepart vars.  Fix typo in comment.  Fix reversed condition in
26129         unshare test.
26130         (dataflow_set_remove_mem_locs): Operate on all onepart vars.
26132         PR bootstrap/69123
26133         * var-tracking.c (dump_onepart_variable_differences): New.
26134         (dataflow_set_different): If a detailed dump is requested,
26135         delay early returns and dump differences between onepart
26136         variables present before and after, and added variables.
26138 2016-01-11  Ilya Enkovich  <enkovich.gnu@gmail.com>
26140         PR target/69010
26141         * expr.c (expand_expr_real_1): For boolean vector constants
26142         with a scalar mode use const_scalar_mask_from_tree.
26143         (const_scalar_mask_from_tree): New.
26144         * optabs.c (expand_vec_cond_mask_expr): Use mask mode
26145         assigned to a mask type to handle constants.
26147 2016-01-11  Martin Jambor  <mjambor@suse.cz>
26149         PR ipa/69044
26150         * ipa-cp.c (estimate_local_effects): Do not clone for removal of
26151         useless parameters if we cannot change function signature.
26153 2016-01-11  Martin Jambor  <mjambor@suse.cz>
26155         PR ipa/66616
26156         * cgraphclones.c (duplicate_thunk_for_node): Copy can_change_signature
26157         flag.
26159 2016-01-11  Tom de Vries  <tom@codesourcery.com>
26161         PR tree-optimization/69109
26162         * tree-parloops.c (try_transform_to_exit_first_loop_alt): Don't allow
26163         latch with phi.
26165 2016-01-11  Tom de Vries  <tom@codesourcery.com>
26167         PR tree-optimization/69108
26168         * tree-parloops.c (gather_scalar_reductions): Handle case that outer phi
26169         res is not used in a phi.
26171 2016-01-11  Yury Gribov  <y.gribov@samsung.com>
26173         PR 67425
26174         * common.opt (frandom-seed): Fix parameter name.
26175         * doc/invoke.texi (frandom-seed): Ditto and describe parameter.
26177 2016-01-11  Tom de Vries  <tom@codesourcery.com>
26179         PR tree-optimization/69058
26180         * tree-parloops.c (pass_parallelize_loops::execute): Return 0 if libgomp
26181         not supported.
26183 2016-01-11  Andrew Burgess  <andrew.burgess@embecosm.com>
26185         * config/arc/arc.opt (mdiv-rem): Add period to the end.
26186         (mcode-density): Likewise.
26188 2016-01-10  Tom de Vries  <tom@codesourcery.com>
26190         PR tree-optimization/69062
26191         * tree-parloops.c (loop_has_phi_with_address_arg): New function.
26192         (parallelize_loops): Don't paralelize loop that has phi with address
26193         arg.
26195 2016-01-10  Tom de Vries  <tom@codesourcery.com>
26197         PR tree-optimization/69039
26198         * tree-parloops.c (try_create_reduction_list): Only allow single exit
26199         phi for reduction.
26201 2016-01-09  John David Anglin  <danglin@gcc.gnu.org>
26203         PR middle-end/68743
26204         * match.pd: Require target has function_c99_misc before doing
26205         truncl(extend(x)) and trunc(extend(x)) -> extend(truncf(x)), etc.
26207 2016-01-09  Gerald Pfeifer  <gerald@pfeifer.com>
26209         * configure.ac (isl_options_set_schedule_serialize_sccs): Also
26210         use GMPINC.
26211         * configure: Regenerate.
26213 2016-01-09  Jakub Jelinek  <jakub@redhat.com>
26215         PR middle-end/50865
26216         PR tree-optimization/69097
26217         * fold-const.h (expr_not_equal_to): New prototype.
26218         * fold-const.c: Include stringpool.h and tree-ssanames.h.
26219         (expr_not_equal_to): New function.
26220         * match.pd (X % -Y is the same as X % Y): Don't optimize
26221         unless X is known not to be equal to minimum or Y is known
26222         not to be equal to -1.
26223         * tree-vrp.c (simplify_div_or_mod_using_ranges): Add GSI argument.
26224         fold TRUNC_MOD_EXPR if the second argument is not a power of two.
26225         (simplify_stmt_using_ranges): Adjust caller.
26226         (vrp_finalize): Call set_value_range on SSA_NAMEs before calling
26227         substitute_and_fold.
26229 2016-01-09  Jan Hubicka  <hubicka@ucw.cz>
26231         * ipa-icf.c (sem_item_optimizer::merge_classes): Do not ICE on VAR_DECL
26232         w/o DECL_NAME.
26234 2016-01-08  Jakub Jelinek  <jakub@redhat.com>
26236         PR tree-optimization/69167
26237         * gimple-fold.c (replace_stmt_with_simplification): Also punt if
26238         new SSA_NAME_OCCURS_IN_ABNORMAL_PHI SSA_NAMEs appear in operands of
26239         ops[0] comparison.
26240         * gimple-match-head.c (maybe_push_res_to_seq): Likewise.
26242 2016-01-08  Alan Lawrence  <alan.lawrence@arm.com>
26243             Richard Biener  <rguenther@suse.de>
26245         PR tree-optimization/68707
26246         * tree-vect-slp.c (vect_analyze_slp_instance): Cancel permuted SLP
26247         instances that can be handled via vect_load_lanes.
26249 2016-01-08  Uros Bizjak  <ubizjak@gmail.com>
26251         * symtab.c (symtab_node::equal_address_to): Return -1 instead of 2
26252         if we can't determine address equivalence.
26253         * alias.c (compare_base_decl): Update for changed return value of
26254         symtab_node::equal_address_to.
26256 2016-01-08  Jason Merrill  <jason@redhat.com>
26258         PR c++/68983
26259         PR c++/67557
26260         * function.c (assign_temp): Guard against TREE_ADDRESSABLE types here.
26261         * expr.c (store_field): Not here.
26262         * tree-cfgcleanup.c (fixup_noreturn_call): Don't clear LHS of a
26263         call with TREE_ADDRESSABLE type.
26264         * tree-cfg.c (verify_gimple_call): Adjust.
26266 2016-01-08  Olivier Hainque  <hainque@adacore.com>
26268         * config/vxworks.h (VXWORKS_LIBGCC_SPEC): Don't link shared RTPs with
26269         libc_internal.
26271 2016-01-08  Alan Lawrence  <alan.lawrence@arm.com>
26273         * gcc.target/rs6000/paired.md (reduc_smax_v2sf): Rename to...
26274         (reduc_smax_scal_v2sf): ...here, make result SFmode, extract element.
26275         (reduc_smin_v2sf): Rename to...
26276         (reduc_smin_scal_v2sf): ...here, make result SFmode, extract element.
26277         (reduc_splus_v2sf): Rename to...
26278         (reduc_plus_scal_v2sf): ...here, make result SFmode, extract element.
26280 2016-01-08  Jakub Jelinek  <jakub@redhat.com>
26282         PR tree-optimization/69162
26283         * gimplify.c (gimplify_va_arg_expr): Encode original type of
26284         valist argument in another argument.
26285         (gimplify_modify_expr): Adjust for the above change.  Cleanup.
26286         * tree-stdarg.c (expand_ifn_va_arg_1): Use new 3rd argument
26287         to determine the va_list type, build a MEM_REF instead of
26288         build_fold_indirect_ref.
26290         PR tree-optimization/69172
26291         * gimple-fold.c (gimple_fold_builtin_memory_chk): Pass type to
26292         gimple_build.
26294 2016-01-08  Thomas Preud'homme  <thomas.preudhomme@arm.com>
26296         PR tree-optimization/67781
26297         * tree-ssa-math-opts.c (find_bswap_or_nop): Zero out bytes in cmpxchg
26298         and cmpnop in two steps: first the ones not accessed in original
26299         gimple expression in a endian independent way and then the ones not
26300         accessed in the final result in an endian-specific way.
26302 2016-01-08  Jakub Jelinek  <jakub@redhat.com>
26304         PR tree-optimization/69083
26305         * tree-vect-slp.c (vect_get_constant_vectors): For
26306         VECTOR_BOOLEAN_TYPE_P assert op is fold_convertible_p to vector_type's
26307         element type.  If op is fold_convertible_p to vector_type's element
26308         type, use NOP_EXPR instead of VCE.
26310 2016-01-08  Segher Boessenkool  <segher@kernel.crashing.org>
26312         PR rtl-optimization/67778
26313         PR rtl-optimization/68634
26314         PR rtl-optimization/68909
26315         * shrink-wrap.c (try_shrink_wrapping): Add comment.  Don't pop
26316         block from the stack until done with it.  Remove a superfluous
26317         bitmap set.  Remove a superfluous bitmap test.
26319 2016-01-07  Martin Sebor  <msebor@redhat.com>
26321         PR c/68966
26322         * doc/extend.texi (__atomic Builtins, __sync Builtins): Document
26323         constraint on the type of arguments.
26325 2016-01-07  Andreas Tobler  <andreast@gcc.gnu.org>
26327         * config/arm/freebsd.h: Rename SUBTARGET_OVERRIDE_OPTIONS to
26328         SUBTARGET_OVERRIDE_INTERNAL_OPTIONS. Adjust to check
26329         unaligned_access on the gcc_options set.
26330         * config/arm/arm.c (arm_option_override_internal): Use
26331         SUBTARGET_OVERRIDE_INTERNAL_OPTIONS.
26333 2016-01-07  Uros Bizjak  <ubizjak@gmail.com>
26335         PR target/69140
26336         * config/i386/i386.c (ix86_frame_pointer_required): Enable
26337         frame pointer for TARGET_64BIT_MS_ABI when stack is misaligned.
26339 2016-01-07  Uros Bizjak  <ubizjak@gmail.com>
26341         Revert
26342         2016-01-06  Uros Bizjak  <ubizjak@gmail.com>
26344         PR target/69140
26345         * config/i386/i386.c (ix86_expand_prologue): Declare fs.sp_valid
26346         depending on frame_pointer_needed before remaining integer and SSE
26347         registers are saved.
26349 2016-01-07  Sandra Loosemore  <sandra@codesourcery.com>
26351         PR 1078
26352         * doc/extend.texi (Nvidia PDX Function Attributes): New section.
26354 2016-01-07  H.J. Lu  <hongjiu.lu@intel.com>
26356         PR target/69171
26357         * config/i386/sse.md (<sse>_sqrt<mode>2<mask_name><round_name>):
26358         Use the "xBm" constraint.
26359         (float<sseintvecmodelower><mode>2<mask_name><round_name):
26360         Likewise.
26361         (sse_cvtsi2ss<round_name>): Use round_nimm_scalar_predicate.
26362         (sse_cvtsi2ssq<round_name>): Likewise.
26363         (sse_cvtss2si<round_name>): Likewise.
26364         (sse_cvtss2siq<round_name>): Likewise.
26365         (sse2_cvtsi2sdq<round_name>): Likewise.
26366         (sse2_cvtsd2si<round_name>): Likewise.
26367         (sse2_cvtsd2siq<round_name>): Likewise.
26368         * config/i386/subst.md (round_nimm_scalar_predicate): New
26369         predicate.
26371 2015-12-15  Bernd Schmidt  <bschmidt@redhat.com>
26373         PR middle-end/67639
26374         * varasm.c (make_decl_rtl): Mark invalid register vars as
26375         DECL_EXTERNAL.
26377         PR rtl-optimization/66206
26378         * bt-load.c (find_btr_use): Change first arg to be a pointer to an rtx.
26379         All callers changed.
26381 2016-01-07  Jakub Jelinek  <jakub@redhat.com>
26383         PR tree-optimization/69141
26384         * tree-ssa-pre.c: Include langhooks.h.
26385         (eliminate_dom_walker::before_dom_children): Use
26386         lang_hooks.decl_printable_name instead of
26387         cgraph_node::get ()->name ().
26389         PR middle-end/68960
26390         * gimple-expr.c (copy_var_decl): If var has DECL_USER_ALIGN set, copy
26391         it and DECL_ALIGN too.
26393 2016-01-06  Robert Suchanek  <robert.suchanek@imgtec.com>
26395         * config/mips/mips-ftypes.def: Sort to lexicographical order.
26397 2016-01-06  Uros Bizjak  <ubizjak@gmail.com>
26399         PR target/69140
26400         * config/i386/i386.c (ix86_expand_prologue): Declare fs.sp_valid
26401         depending on frame_pointer_needed before remaining integer and SSE
26402         registers are saved.
26404 2015-01-06  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
26406         * config/rs6000/vsx.md (*p9_vecload_<mode>): Replace VSX_M
26407         mode iterator with VSX_M2.
26408         (*p9_vecstore_<mode>): Likewise.
26409         (*vsx_le_permute_<mode>): Restrict to !TARGET_P9_VECTOR.
26410         (*vsx_le_perm_load_<mode> for VSX_LE_128): Likewise.
26411         (*vsx_le_perm_store_<mode> for VSX_LE_128): Likewise.
26412         (define_split for VSX_LE128 stores): Likewise.
26413         (define_peephole2 for TImode LE swaps): Likewise.
26414         (define_split for VSX_LE128 post-reload stores): Likewise.
26416 2016-01-06  Marek Polacek  <polacek@redhat.com>
26418         PR sanitizer/69099
26419         * convert.c (convert_to_integer_1): Adjust call to
26420         ubsan_instrument_float_cast.  Use NULL_TREE instead of NULL.
26421         * ubsan.c (ubsan_instrument_float_cast): Drop the ARG parameter.  Use
26422         EXPR instead of ARG.
26423         * ubsan.h (ubsan_instrument_float_cast): Adjust declaration.
26425 2016-01-05  Sandra Loosemore  <sandra@codesourcery.com>
26427         PR 1078
26428         * doc/extend.texi (RL78 Variable Attributes): New section.
26430 2016-01-05  Marek Polacek  <polacek@redhat.com>
26432         PR c/69104
26433         * builtins.c (get_memmodel): Use expansion point location rather than
26434         the input location.  Call warning_at rather than warning.
26435         (expand_builtin_atomic_compare_exchange): Likewise.
26436         (expand_builtin_atomic_load): Likewise.
26437         (expand_builtin_atomic_store): Likewise.
26438         (expand_builtin_atomic_clear): Likewise.
26440 2016-01-05  H.J. Lu  <hongjiu.lu@intel.com>
26442         PR target/68991
26443         * config/i386/i386.c (ix86_expand_vector_logical_operator):
26444         Replace nonimmediate_operand with vector_operand.
26445         * config/i386/predicates.md (vector_operand): New predicate.
26446         (general_vector_operand): Replace nonimmediate_operand with
26447         vector_operand.
26448         * config/i386/sse.md: Replace nonimmediate_operand with
26449         vector_operand and m constraint with Bm constraint on SSE
26450         patterns with 16-byte memory operand.
26451         * config/i386/subst.md (round_nimm_predicate): Replace
26452         nonimmediate_operand with vector_operand.
26453         (round_saeonly_nimm_predicate): Likewise.
26454         (round_saeonly_nimm_scalar_predicate): New.
26456 2016-01-05  H.J. Lu  <hongjiu.lu@intel.com>
26458         PR target/68991
26459         * config/i386/constraints.md (Bm): New constraint.
26460         * config/i386/predicates.md (vector_memory_operand): New
26461         predicate.
26462         * config/i386/sse.md: Replace xm with xBm in plusminus and
26463         any_logic patterns.
26465 2016-01-05  Sandra Loosemore  <sandra@codesourcery.com>
26467         PR 1078
26468         * doc/extend.texi (V850 Function Attributes): New section.
26469         (V850 Variable Attributes): New section.
26471 2016-01-05  Sandra Loosemore  <sandra@codesourcery.com>
26473         PR 1078
26474         * doc/extend.texi (MicroBlaze Function Attributes): Document
26475         interrupt_handler and fast_interrupt attributes.
26477 2016-01-05  Sergei Trofimovich  <siarheit@google.com>
26479         PR other/60465
26480         * config/ia64/ia64.c (ia64_expand_load_address): Use gprel64
26481         for local symbolic operands.
26482         * config/ia64/predicates.md (local_symbolic_operand64): New
26483         predicate.
26485 2016-01-05  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
26487         PR rtl-optimization/68651
26488         * combine.c (combine_simplify_rtx): Canonicalize x + x into
26489         x << 1.
26491 2016-01-05  Nathan Sidwell  <nathan@acm.org>
26493         * alias.c (compare_base_decls): Use symtab_node::get.
26495 2016-01-05  Nick Clifton  <nickc@redhat.com>
26497         PR target/68770
26498         * ira-costs.c (copy_cost): Initialise the t_icode field of the
26499         secondary_reload_info structure.
26501         PR target/66655
26502         * config/i386/cygming.h (MAKE_DECL_ONE_ONLY): Define to use weak
26503         decls if weak support is available.
26505 2016-01-04  Martin Sebor  <msebor@redhat.com>
26507         * doc/invoke.texi (Warning Options): Document -Winvalid-memory-model.
26509 2016-01-04  Michael Meissner  <meissner@linux.vnet.ibm.com>
26511         * config/rs6000/rs6000-cpus.def (ISA_3_0_MASKS_SERVER): Add
26512         OPTION_MASK_P9_DFORM.
26514         * config/rs6000/constraints.md (wo constraint): New constraint for
26515         ISA 3.0 (power9).
26517         * config/rs6000/rs6000.c (rs6000_debug_reg_global): Add support
26518         for wo constraint.
26519         (rs6000_init_hard_regno_mode_ok): Likewise.
26521         * config/rs6000/rs6000.h (r6000_reg_class_enum): Add support for
26522         wo constraint.
26524         * config/rs6000/altivec.md (altivec_vperm_<mode>): Clean up vperm
26525         expanders not to have constraints.  Add support for ISA 3.0 xxperm
26526         instruction.  Add support for fusing xxlor with xxperm.
26527         (altivec_vperm_<mode>_internal): Likewise.
26528         (altivec_vperm_v8hiv16qi): Likewise.
26529         (altivec_vperm_<mode>v16q): Likewise.
26530         (altivec_vperm_<mode>_uns): Likewise.
26531         (vperm_v8hiv4si): Likewise.
26532         (vperm_v16qiv8hi): Likewise.
26534         * doc/md.texi (RS/6000 constraints): Document wo constraint.
26536 2016-01-04  Jakub Jelinek  <jakub@redhat.com>
26538         Update copyright years.
26540         * gcc.c (process_command): Update copyright notice dates.
26541         * gcov-dump.c (print_version): Ditto.
26542         * gcov.c (print_version): Ditto.
26543         * gcov-tool.c (print_version): Ditto.
26544         * gengtype.c (create_file): Ditto.
26545         * doc/cpp.texi: Bump @copying's copyright year.
26546         * doc/cppinternals.texi: Ditto.
26547         * doc/gcc.texi: Ditto.
26548         * doc/gccint.texi: Ditto.
26549         * doc/gcov.texi: Ditto.
26550         * doc/install.texi: Ditto.
26551         * doc/invoke.texi: Ditto.
26553 2016-01-04  Eric Botcazou  <ebotcazou@adacore.com>
26555         * config/arm/arm.c (aapcs_vfp_allocate_return_reg): Treat all integer
26556         modes larger than TImode as TImode if NEON is not enabled.
26558 2016-01-04  Eric Botcazou  <ebotcazou@adacore.com>
26560         PR target/69100
26561         * config/sparc/sparc.h (FUNCTION_ARG_REGNO_P): Return true in 64-bit
26562         mode for %f0-%f31 only if TARGET_FPU.
26564 2016-01-04  Eric Botcazou  <ebotcazou@adacore.com>
26566         PR target/69072
26567         * config/sparc/sparc.c (scan_record_type): Take into account subfields
26568         to compute the PACKED_P predicate.
26569         (function_arg_record_value): Minor tweaks.
26571 2016-01-04  Thomas Preud'homme  <thomas.preudhomme@arm.com>
26573         * doc/install.texi (--with-multilib-list): Describe the meaning of the
26574         option for arm*-*-* targets.
26576 2016-01-03  Sandra Loosemore  <sandra@codesourcery.com>
26578         * doc/extend.texi (Common Function Attributes): Move docs for
26579         MSP430-specific attributes to....
26580         (MSP430 Function Attributes): ...here.  Delete the redundant
26581         entries and copy-edit the remaining text.
26582         (MSP430 Variable Attributes): Use uniform format for index
26583         entries and add a cross-reference to the corresponding function
26584         attribute docs.
26586 2016-01-03  Vladimír Čunát  <vcunat@gmail.com>
26588         * doc/invoke.texi (RS/6000 and PowerPC Options): Fix
26589         -finite-math typo.
26590         (x86 Options): Likewise.
26592 2016-01-01  Sandra Loosemore  <sandra@codesourcery.com>
26594         PR 1078
26596         * extend.texi (Common Function Attributes) <no_stack_limit>: New.
26597         * invoke.texi (Code Gen Options) <-fno-stack-limit>: Add pointer
26598         to corresponding attribute.
26600 2016-01-01  Sandra Loosemore  <sandra@codesourcery.com>
26602         * doc/extend.texi (Common Function Attributes) <noplt>: Move
26603         to correct alphabetization of table.  Copy-edit and correct
26604         markup.
26605         <stack_protect>: Likewise.
26606         <target_clones>: Likewise.
26607         <simd>: Likewise.
26608         * doc/invoke.texi (Optimize Options) <-fstack-protector-explicit>:
26609         Correct punctuation.
26610         (Code Gen Options) <-fno-plt>: Copy-edit.
26612 2016-01-01  Bernd Edlinger  <bernd.edlinger@hotmail.de>
26614         PR target/68917
26615         * config/tilegx/tilegx.md (clzsi2): Don't create DI subregs of
26616         SI values.  Explicitly convert SI to DI and vice-versa.
26618 2016-01-01  Jakub Jelinek  <jakub@redhat.com>
26620         PR tree-optimization/69070
26621         * tree-ssa-math-opts.c (gimple_expand_builtin_pow): Only test
26622         REAL_VALUE_ISSIGNALING_NAN on arg0 if arg0 is a REAL_CST.
26624         PR sanitizer/69055
26625         * ubsan.c (ubsan_instrument_float_cast): Call
26626         initialize_sanitizer_builtins.
26628         PR target/69015
26629         * ifcvt.c (find_cond_trap): Give up if returnjump_p (jump).
26631 Copyright (C) 2016 Free Software Foundation, Inc.
26633 Copying and distribution of this file, with or without modification,
26634 are permitted in any medium without royalty provided the copyright
26635 notice and this notice are preserved.